Start with an existing dataset of user-item ratings, such as our toy books dataset, MovieLens, Jester [http://eigentaste.berkeley.edu/dataset/] or another dataset of your choosing. Implement at least two of these recommendation algorithms:
. Content-Based Filtering . User-User Collaborative Filtering . Item-Item Collaborative Filtering
The following demonstration is a film recommender system designed to help users find movies based upon user to movie rankings contained in the MovieLens dataset. Techniques covered are user-user and item-item collaborative filtering methods. The recommenderlab library is used for the model training and prediction logic.
Select an existing dataset containing user-item ratings and implement at least two of these recommendation algorithms. Also evaluate and compare different approaches
Load the sample dataset with titles and ratings for movies from Movielens. To a void memory issues in R, used the smallest but relevant MovieLens Latest Datasets (“ml-latest-small.zip”) - Small: 100,000 ratings and 3,600 tag applications applied to 9,000 movies by 600 users.
The data contains following:
Primarily will be using movies.csv and ratings.csv to build a recommendation system.
kable(head(Movies,10)) %>%
kable_styling(bootstrap_options = c("striped","hover","condensed","responsive"),full_width = F,position = "left",font_size = 12) %>%
row_spec(0, background ="gray")| movieId | title | genres |
|---|---|---|
| 1 | Toy Story (1995) | Adventure|Animation|Children|Comedy|Fantasy |
| 2 | Jumanji (1995) | Adventure|Children|Fantasy |
| 3 | Grumpier Old Men (1995) | Comedy|Romance |
| 4 | Waiting to Exhale (1995) | Comedy|Drama|Romance |
| 5 | Father of the Bride Part II (1995) | Comedy |
| 6 | Heat (1995) | Action|Crime|Thriller |
| 7 | Sabrina (1995) | Comedy|Romance |
| 8 | Tom and Huck (1995) | Adventure|Children |
| 9 | Sudden Death (1995) | Action |
| 10 | GoldenEye (1995) | Action|Adventure|Thriller |
DT::datatable(Movies, options = list(pagelength=5))#datatable(Books)DT::datatable(select(Movies, movieId:genres), options = list(pagelength=5))sqldf("select * from Movies") ## movieId
## 1 1
## 2 2
## 3 3
## 4 4
## 5 5
## 6 6
## 7 7
## 8 8
## 9 9
## 10 10
## 11 11
## 12 12
## 13 13
## 14 14
## 15 15
## 16 16
## 17 17
## 18 18
## 19 19
## 20 20
## 21 21
## 22 22
## 23 23
## 24 24
## 25 25
## 26 26
## 27 27
## 28 28
## 29 29
## 30 30
## 31 31
## 32 32
## 33 34
## 34 36
## 35 38
## 36 39
## 37 40
## 38 41
## 39 42
## 40 43
## 41 44
## 42 45
## 43 46
## 44 47
## 45 48
## 46 49
## 47 50
## 48 52
## 49 53
## 50 54
## 51 55
## 52 57
## 53 58
## 54 60
## 55 61
## 56 62
## 57 63
## 58 64
## 59 65
## 60 66
## 61 68
## 62 69
## 63 70
## 64 71
## 65 72
## 66 73
## 67 74
## 68 75
## 69 76
## 70 77
## 71 78
## 72 79
## 73 80
## 74 81
## 75 82
## 76 83
## 77 85
## 78 86
## 79 87
## 80 88
## 81 89
## 82 92
## 83 93
## 84 94
## 85 95
## 86 96
## 87 97
## 88 99
## 89 100
## 90 101
## 91 102
## 92 103
## 93 104
## 94 105
## 95 106
## 96 107
## 97 108
## 98 110
## 99 111
## 100 112
## 101 113
## 102 116
## 103 117
## 104 118
## 105 119
## 106 121
## 107 122
## 108 123
## 109 125
## 110 126
## 111 128
## 112 129
## 113 132
## 114 135
## 115 137
## 116 140
## 117 141
## 118 144
## 119 145
## 120 146
## 121 147
## 122 148
## 123 149
## 124 150
## 125 151
## 126 152
## 127 153
## 128 154
## 129 155
## 130 156
## 131 157
## 132 158
## 133 159
## 134 160
## 135 161
## 136 162
## 137 163
## 138 164
## 139 165
## 140 166
## 141 168
## 142 169
## 143 170
## 144 171
## 145 172
## 146 173
## 147 174
## 148 175
## 149 176
## 150 177
## 151 178
## 152 179
## 153 180
## 154 181
## 155 183
## 156 184
## 157 185
## 158 186
## 159 187
## 160 188
## 161 189
## 162 190
## 163 191
## 164 193
## 165 194
## 166 195
## 167 196
## 168 198
## 169 199
## 170 201
## 171 202
## 172 203
## 173 204
## 174 205
## 175 206
## 176 207
## 177 208
## 178 209
## 179 210
## 180 211
## 181 212
## 182 213
## 183 214
## 184 215
## 185 216
## 186 217
## 187 218
## 188 219
## 189 220
## 190 222
## 191 223
## 192 224
## 193 225
## 194 227
## 195 228
## 196 229
## 197 230
## 198 231
## 199 232
## 200 233
## 201 234
## 202 235
## 203 236
## 204 237
## 205 238
## 206 239
## 207 240
## 208 241
## 209 242
## 210 243
## 211 246
## 212 247
## 213 248
## 214 249
## 215 250
## 216 251
## 217 252
## 218 253
## 219 254
## 220 255
## 221 256
## 222 257
## 223 258
## 224 259
## 225 260
## 226 261
## 227 262
## 228 263
## 229 265
## 230 266
## 231 267
## 232 269
## 233 270
## 234 271
## 235 272
## 236 273
## 237 274
## 238 275
## 239 276
## 240 277
## 241 278
## 242 279
## 243 280
## 244 281
## 245 282
## 246 283
## 247 284
## 248 285
## 249 287
## 250 288
## 251 289
## 252 290
## 253 291
## 254 292
## 255 293
## 256 294
## 257 295
## 258 296
## 259 298
## 260 299
## 261 300
## 262 301
## 263 302
## 264 303
## 265 304
## 266 305
## 267 306
## 268 307
## 269 308
## 270 310
## 271 311
## 272 312
## 273 313
## 274 314
## 275 315
## 276 316
## 277 317
## 278 318
## 279 319
## 280 320
## 281 321
## 282 322
## 283 324
## 284 325
## 285 326
## 286 327
## 287 328
## 288 329
## 289 330
## 290 331
## 291 332
## 292 333
## 293 334
## 294 335
## 295 336
## 296 337
## 297 338
## 298 339
## 299 340
## 300 341
## 301 342
## 302 343
## 303 344
## 304 345
## 305 346
## 306 347
## 307 348
## 308 349
## 309 350
## 310 351
## 311 352
## 312 353
## 313 354
## 314 355
## 315 356
## 316 357
## 317 358
## 318 359
## 319 360
## 320 361
## 321 362
## 322 363
## 323 364
## 324 365
## 325 366
## 326 367
## 327 368
## 328 369
## 329 370
## 330 371
## 331 372
## 332 373
## 333 374
## 334 376
## 335 377
## 336 378
## 337 379
## 338 380
## 339 381
## 340 382
## 341 383
## 342 384
## 343 385
## 344 386
## 345 387
## 346 388
## 347 389
## 348 390
## 349 391
## 350 393
## 351 405
## 352 406
## 353 407
## 354 408
## 355 409
## 356 410
## 357 412
## 358 413
## 359 414
## 360 415
## 361 416
## 362 417
## 363 418
## 364 419
## 365 420
## 366 421
## 367 422
## 368 423
## 369 424
## 370 425
## 371 426
## 372 427
## 373 428
## 374 429
## 375 430
## 376 431
## 377 432
## 378 433
## 379 434
## 380 435
## 381 436
## 382 437
## 383 438
## 384 440
## 385 441
## 386 442
## 387 444
## 388 445
## 389 446
## 390 448
## 391 449
## 392 450
## 393 451
## 394 452
## 395 453
## 396 454
## 397 455
## 398 456
## 399 457
## 400 458
## 401 459
## 402 460
## 403 461
## 404 464
## 405 466
## 406 467
## 407 468
## 408 469
## 409 470
## 410 471
## 411 472
## 412 473
## 413 474
## 414 475
## 415 476
## 416 477
## 417 478
## 418 479
## 419 480
## 420 481
## 421 482
## 422 484
## 423 485
## 424 486
## 425 487
## 426 488
## 427 489
## 428 490
## 429 491
## 430 492
## 431 493
## 432 494
## 433 495
## 434 496
## 435 497
## 436 499
## 437 500
## 438 501
## 439 502
## 440 504
## 441 505
## 442 506
## 443 507
## 444 508
## 445 509
## 446 510
## 447 511
## 448 512
## 449 513
## 450 514
## 451 515
## 452 516
## 453 517
## 454 518
## 455 519
## 456 520
## 457 521
## 458 522
## 459 523
## 460 524
## 461 526
## 462 527
## 463 528
## 464 529
## 465 531
## 466 532
## 467 533
## 468 534
## 469 535
## 470 536
## 471 537
## 472 538
## 473 539
## 474 540
## 475 541
## 476 542
## 477 543
## 478 544
## 479 546
## 480 547
## 481 548
## 482 549
## 483 550
## 484 551
## 485 552
## 486 553
## 487 555
## 488 556
## 489 558
## 490 562
## 491 563
## 492 564
## 493 567
## 494 568
## 495 569
## 496 573
## 497 574
## 498 575
## 499 577
## 500 579
## 501 580
## 502 581
## 503 583
## 504 585
## 505 586
## 506 587
## 507 588
## 508 589
## 509 590
## 510 592
## 511 593
## 512 594
## 513 595
## 514 596
## 515 597
## 516 599
## 517 600
## 518 602
## 519 605
## 520 606
## 521 608
## 522 609
## 523 610
## 524 611
## 525 612
## 526 613
## 527 615
## 528 616
## 529 617
## 530 618
## 531 619
## 532 626
## 533 627
## 534 628
## 535 631
## 536 632
## 537 633
## 538 634
## 539 635
## 540 636
## 541 637
## 542 638
## 543 639
## 544 640
## 545 645
## 546 647
## 547 648
## 548 649
## 549 650
## 550 653
## 551 656
## 552 661
## 553 662
## 554 663
## 555 665
## 556 667
## 557 668
## 558 670
## 559 671
## 560 673
## 561 674
## 562 678
## 563 679
## 564 680
## 565 685
## 566 688
## 567 691
## 568 692
## 569 694
## 570 695
## 571 697
## 572 698
## 573 700
## 574 703
## 575 704
## 576 706
## 577 707
## 578 708
## 579 709
## 580 710
## 581 711
## 582 714
## 583 715
## 584 718
## 585 719
## 586 720
## 587 722
## 588 724
## 589 725
## 590 726
## 591 728
## 592 731
## 593 733
## 594 735
## 595 736
## 596 737
## 597 741
## 598 742
## 599 743
## 600 745
## 601 747
## 602 748
## 603 750
## 604 757
## 605 759
## 606 760
## 607 761
## 608 762
## 609 764
## 610 765
## 611 766
## 612 773
## 613 775
## 614 778
## 615 779
## 616 780
## 617 781
## 618 782
## 619 783
## 620 784
## 621 785
## 622 786
## 623 788
## 624 790
## 625 791
## 626 795
## 627 798
## 628 799
## 629 800
## 630 801
## 631 802
## 632 803
## 633 804
## 634 805
## 635 806
## 636 808
## 637 809
## 638 810
## 639 813
## 640 818
## 641 823
## 642 824
## 643 828
## 644 829
## 645 830
## 646 832
## 647 833
## 648 835
## 649 836
## 650 837
## 651 838
## 652 839
## 653 840
## 654 841
## 655 842
## 656 848
## 657 849
## 658 851
## 659 852
## 660 858
## 661 861
## 662 866
## 663 867
## 664 869
## 665 870
## 666 875
## 667 876
## 668 879
## 669 880
## 670 881
## 671 882
## 672 885
## 673 886
## 674 888
## 675 889
## 676 891
## 677 892
## 678 893
## 679 896
## 680 897
## 681 898
## 682 899
## 683 900
## 684 901
## 685 902
## 686 903
## 687 904
## 688 905
## 689 906
## 690 907
## 691 908
## 692 909
## 693 910
## 694 911
## 695 912
## 696 913
## 697 914
## 698 915
## 699 916
## 700 917
## 701 918
## 702 919
## 703 920
## 704 921
## 705 922
## 706 923
## 707 924
## 708 926
## 709 927
## 710 928
## 711 929
## 712 930
## 713 931
## 714 932
## 715 933
## 716 934
## 717 935
## 718 936
## 719 937
## 720 938
## 721 940
## 722 941
## 723 942
## 724 943
## 725 944
## 726 945
## 727 946
## 728 947
## 729 948
## 730 949
## 731 950
## 732 951
## 733 952
## 734 953
## 735 954
## 736 955
## 737 956
## 738 959
## 739 961
## 740 963
## 741 965
## 742 968
## 743 969
## 744 970
## 745 971
## 746 973
## 747 976
## 748 979
## 749 981
## 750 982
## 751 984
## 752 986
## 753 987
## 754 988
## 755 990
## 756 991
## 757 993
## 758 994
## 759 996
## 760 998
## 761 999
## 762 1003
## 763 1004
## 764 1005
## 765 1006
## 766 1007
## 767 1008
## 768 1009
## 769 1010
## 770 1011
## 771 1012
## 772 1013
## 773 1014
## 774 1015
## 775 1016
## 776 1017
## 777 1018
## 778 1019
## 779 1020
## 780 1021
## 781 1022
## 782 1023
## 783 1024
## 784 1025
## 785 1027
## 786 1028
## 787 1029
## 788 1030
## 789 1031
## 790 1032
## 791 1033
## 792 1034
## 793 1035
## 794 1036
## 795 1037
## 796 1040
## 797 1041
## 798 1042
## 799 1043
## 800 1046
## 801 1047
## 802 1049
## 803 1050
## 804 1051
## 805 1053
## 806 1054
## 807 1055
## 808 1056
## 809 1057
## 810 1059
## 811 1060
## 812 1061
## 813 1064
## 814 1066
## 815 1068
## 816 1073
## 817 1076
## 818 1077
## 819 1078
## 820 1079
## 821 1080
## 822 1081
## 823 1082
## 824 1083
## 825 1084
## 826 1085
## 827 1086
## 828 1088
## 829 1089
## 830 1090
## 831 1091
## 832 1092
## 833 1093
## 834 1094
## 835 1095
## 836 1096
## 837 1097
## 838 1099
## 839 1100
## 840 1101
## 841 1103
## 842 1104
## 843 1105
## 844 1107
## 845 1111
## 846 1112
## 847 1114
## 848 1116
## 849 1117
## 850 1119
## 851 1120
## 852 1121
## 853 1123
## 854 1124
## 855 1125
## 856 1126
## 857 1127
## 858 1128
## 859 1129
## 860 1130
## 861 1131
## 862 1132
## 863 1135
## 864 1136
## 865 1137
## 866 1140
## 867 1144
## 868 1147
## 869 1148
## 870 1150
## 871 1151
## 872 1156
## 873 1161
## 874 1162
## 875 1163
## 876 1167
## 877 1170
## 878 1171
## 879 1172
## 880 1173
## 881 1175
## 882 1176
## 883 1177
## 884 1178
## 885 1179
## 886 1180
## 887 1183
## 888 1184
## 889 1185
## 890 1186
## 891 1187
## 892 1188
## 893 1189
## 894 1190
## 895 1191
## 896 1192
## 897 1193
## 898 1194
## 899 1196
## 900 1197
## 901 1198
## 902 1199
## 903 1200
## 904 1201
## 905 1202
## 906 1203
## 907 1204
## 908 1206
## 909 1207
## 910 1208
## 911 1209
## 912 1210
## 913 1211
## 914 1212
## 915 1213
## 916 1214
## 917 1215
## 918 1216
## 919 1217
## 920 1218
## 921 1219
## 922 1220
## 923 1221
## 924 1222
## 925 1223
## 926 1224
## 927 1225
## 928 1226
## 929 1227
## 930 1228
## 931 1230
## 932 1231
## 933 1232
## 934 1233
## 935 1234
## 936 1235
## 937 1236
## 938 1237
## 939 1238
## 940 1240
## 941 1241
## 942 1242
## 943 1243
## 944 1244
## 945 1245
## 946 1246
## 947 1247
## 948 1248
## 949 1249
## 950 1250
## 951 1251
## 952 1252
## 953 1253
## 954 1254
## 955 1255
## 956 1256
## 957 1257
## 958 1258
## 959 1259
## 960 1260
## 961 1261
## 962 1262
## 963 1263
## 964 1264
## 965 1265
## 966 1266
## 967 1267
## 968 1268
## 969 1269
## 970 1270
## 971 1271
## 972 1272
## 973 1273
## 974 1274
## 975 1275
## 976 1276
## 977 1277
## 978 1278
## 979 1279
## 980 1280
## 981 1281
## 982 1282
## 983 1283
## 984 1284
## 985 1285
## 986 1286
## 987 1287
## 988 1288
## 989 1289
## 990 1290
## 991 1291
## 992 1292
## 993 1293
## 994 1295
## 995 1296
## 996 1297
## 997 1298
## 998 1299
## 999 1300
## 1000 1301
## 1001 1302
## 1002 1303
## 1003 1304
## 1004 1305
## 1005 1306
## 1006 1307
## 1007 1310
## 1008 1312
## 1009 1318
## 1010 1320
## 1011 1321
## 1012 1322
## 1013 1323
## 1014 1324
## 1015 1325
## 1016 1326
## 1017 1327
## 1018 1328
## 1019 1329
## 1020 1330
## 1021 1331
## 1022 1332
## 1023 1333
## 1024 1334
## 1025 1335
## 1026 1336
## 1027 1337
## 1028 1339
## 1029 1340
## 1030 1341
## 1031 1342
## 1032 1343
## 1033 1344
## 1034 1345
## 1035 1346
## 1036 1347
## 1037 1348
## 1038 1349
## 1039 1350
## 1040 1351
## 1041 1352
## 1042 1353
## 1043 1354
## 1044 1355
## 1045 1356
## 1046 1357
## 1047 1358
## 1048 1359
## 1049 1361
## 1050 1363
## 1051 1365
## 1052 1366
## 1053 1367
## 1054 1370
## 1055 1371
## 1056 1372
## 1057 1373
## 1058 1374
## 1059 1375
## 1060 1376
## 1061 1377
## 1062 1378
## 1063 1379
## 1064 1380
## 1065 1381
## 1066 1382
## 1067 1385
## 1068 1387
## 1069 1388
## 1070 1389
## 1071 1390
## 1072 1391
## 1073 1392
## 1074 1393
## 1075 1394
## 1076 1395
## 1077 1396
## 1078 1397
## 1079 1398
## 1080 1399
## 1081 1401
## 1082 1405
## 1083 1406
## 1084 1407
## 1085 1408
## 1086 1409
## 1087 1411
## 1088 1412
## 1089 1413
## 1090 1414
## 1091 1415
## 1092 1416
## 1093 1417
## 1094 1419
## 1095 1422
## 1096 1423
## 1097 1425
## 1098 1426
## 1099 1427
## 1100 1428
## 1101 1429
## 1102 1430
## 1103 1431
## 1104 1432
## 1105 1437
## 1106 1438
## 1107 1439
## 1108 1440
## 1109 1441
## 1110 1442
## 1111 1445
## 1112 1446
## 1113 1447
## 1114 1449
## 1115 1453
## 1116 1454
## 1117 1456
## 1118 1457
## 1119 1458
## 1120 1459
## 1121 1460
## 1122 1461
## 1123 1464
## 1124 1465
## 1125 1466
## 1126 1468
## 1127 1473
## 1128 1474
## 1129 1475
## 1130 1476
## 1131 1477
## 1132 1479
## 1133 1480
## 1134 1483
## 1135 1484
## 1136 1485
## 1137 1487
## 1138 1488
## 1139 1489
## 1140 1490
## 1141 1493
## 1142 1495
## 1143 1496
## 1144 1497
## 1145 1498
## 1146 1499
## 1147 1500
## 1148 1502
## 1149 1503
## 1150 1507
## 1151 1513
## 1152 1514
## 1153 1515
## 1154 1516
## 1155 1517
## 1156 1518
## 1157 1519
## 1158 1526
## 1159 1527
## 1160 1529
## 1161 1533
## 1162 1537
## 1163 1541
## 1164 1542
## 1165 1544
## 1166 1545
## 1167 1546
## 1168 1547
## 1169 1549
## 1170 1550
## 1171 1551
## 1172 1552
## 1173 1554
## 1174 1556
## 1175 1562
## 1176 1564
## 1177 1565
## 1178 1566
## 1179 1569
## 1180 1571
## 1181 1572
## 1182 1573
## 1183 1574
## 1184 1580
## 1185 1581
## 1186 1582
## 1187 1583
## 1188 1584
## 1189 1585
## 1190 1586
## 1191 1587
## 1192 1588
## 1193 1589
## 1194 1590
## 1195 1591
## 1196 1592
## 1197 1593
## 1198 1594
## 1199 1596
## 1200 1597
## 1201 1598
## 1202 1599
## 1203 1600
## 1204 1601
## 1205 1602
## 1206 1603
## 1207 1604
## 1208 1605
## 1209 1606
## 1210 1608
## 1211 1609
## 1212 1610
## 1213 1611
## 1214 1612
## 1215 1613
## 1216 1614
## 1217 1615
## 1218 1616
## 1219 1617
## 1220 1619
## 1221 1620
## 1222 1621
## 1223 1623
## 1224 1624
## 1225 1625
## 1226 1626
## 1227 1627
## 1228 1629
## 1229 1631
## 1230 1633
## 1231 1635
## 1232 1639
## 1233 1641
## 1234 1642
## 1235 1643
## 1236 1644
## 1237 1645
## 1238 1646
## 1239 1647
## 1240 1648
## 1241 1649
## 1242 1650
## 1243 1652
## 1244 1653
## 1245 1654
## 1246 1655
## 1247 1656
## 1248 1658
## 1249 1659
## 1250 1660
## 1251 1661
## 1252 1662
## 1253 1663
## 1254 1665
## 1255 1667
## 1256 1670
## 1257 1671
## 1258 1672
## 1259 1673
## 1260 1674
## 1261 1675
## 1262 1676
## 1263 1677
## 1264 1678
## 1265 1679
## 1266 1680
## 1267 1681
## 1268 1682
## 1269 1683
## 1270 1684
## 1271 1685
## 1272 1686
## 1273 1687
## 1274 1688
## 1275 1689
## 1276 1690
## 1277 1693
## 1278 1694
## 1279 1695
## 1280 1696
## 1281 1699
## 1282 1701
## 1283 1702
## 1284 1703
## 1285 1704
## 1286 1707
## 1287 1711
## 1288 1713
## 1289 1717
## 1290 1718
## 1291 1719
## 1292 1721
## 1293 1722
## 1294 1726
## 1295 1727
## 1296 1729
## 1297 1730
## 1298 1731
## 1299 1732
## 1300 1733
## 1301 1734
## 1302 1735
## 1303 1739
## 1304 1746
## 1305 1747
## 1306 1748
## 1307 1752
## 1308 1753
## 1309 1754
## 1310 1755
## 1311 1757
## 1312 1759
## 1313 1760
## 1314 1762
## 1315 1767
## 1316 1769
## 1317 1770
## 1318 1771
## 1319 1772
## 1320 1777
## 1321 1779
## 1322 1783
## 1323 1784
## 1324 1785
## 1325 1791
## 1326 1792
## 1327 1793
## 1328 1794
## 1329 1797
## 1330 1798
## 1331 1799
## 1332 1801
## 1333 1804
## 1334 1805
## 1335 1806
## 1336 1807
## 1337 1809
## 1338 1810
## 1339 1812
## 1340 1816
## 1341 1821
## 1342 1824
## 1343 1825
## 1344 1826
## 1345 1827
## 1346 1829
## 1347 1831
## 1348 1833
## 1349 1834
## 1350 1835
## 1351 1836
## 1352 1837
## 1353 1839
## 1354 1840
## 1355 1841
## 1356 1844
## 1357 1845
## 1358 1848
## 1359 1855
## 1360 1856
## 1361 1857
## 1362 1858
## 1363 1859
## 1364 1860
## 1365 1862
## 1366 1863
## 1367 1866
## 1368 1867
## 1369 1870
## 1370 1873
## 1371 1875
## 1372 1876
## 1373 1881
## 1374 1882
## 1375 1883
## 1376 1884
## 1377 1885
## 1378 1887
## 1379 1888
## 1380 1889
## 1381 1891
## 1382 1892
## 1383 1893
## 1384 1894
## 1385 1895
## 1386 1897
## 1387 1900
## 1388 1902
## 1389 1904
## 1390 1906
## 1391 1907
## 1392 1909
## 1393 1910
## 1394 1911
## 1395 1912
## 1396 1913
## 1397 1914
## 1398 1916
## 1399 1917
## 1400 1918
## 1401 1919
## 1402 1920
## 1403 1921
## 1404 1922
## 1405 1923
## 1406 1924
## 1407 1926
## 1408 1927
## 1409 1928
## 1410 1929
## 1411 1931
## 1412 1932
## 1413 1933
## 1414 1934
## 1415 1936
## 1416 1937
## 1417 1938
## 1418 1939
## 1419 1940
## 1420 1941
## 1421 1942
## 1422 1944
## 1423 1945
## 1424 1946
## 1425 1947
## 1426 1948
## 1427 1949
## 1428 1950
## 1429 1951
## 1430 1952
## 1431 1953
## 1432 1954
## 1433 1955
## 1434 1956
## 1435 1957
## 1436 1958
## 1437 1959
## 1438 1960
## 1439 1961
## 1440 1962
## 1441 1963
## 1442 1964
## 1443 1965
## 1444 1966
## 1445 1967
## 1446 1968
## 1447 1969
## 1448 1970
## 1449 1971
## 1450 1972
## 1451 1973
## 1452 1974
## 1453 1975
## 1454 1976
## 1455 1977
## 1456 1978
## 1457 1979
## 1458 1980
## 1459 1981
## 1460 1982
## 1461 1983
## 1462 1984
## 1463 1985
## 1464 1986
## 1465 1987
## 1466 1990
## 1467 1991
## 1468 1992
## 1469 1993
## 1470 1994
## 1471 1995
## 1472 1996
## 1473 1997
## 1474 1998
## 1475 1999
## 1476 2000
## 1477 2001
## 1478 2002
## 1479 2003
## 1480 2004
## 1481 2005
## 1482 2006
## 1483 2007
## 1484 2008
## 1485 2009
## 1486 2010
## 1487 2011
## 1488 2012
## 1489 2013
## 1490 2014
## 1491 2015
## 1492 2016
## 1493 2017
## 1494 2018
## 1495 2019
## 1496 2020
## 1497 2021
## 1498 2022
## 1499 2023
## 1500 2024
## 1501 2025
## 1502 2026
## 1503 2027
## 1504 2028
## 1505 2032
## 1506 2033
## 1507 2034
## 1508 2035
## 1509 2036
## 1510 2037
## 1511 2038
## 1512 2040
## 1513 2041
## 1514 2042
## 1515 2043
## 1516 2044
## 1517 2046
## 1518 2048
## 1519 2050
## 1520 2051
## 1521 2052
## 1522 2053
## 1523 2054
## 1524 2055
## 1525 2056
## 1526 2057
## 1527 2058
## 1528 2059
## 1529 2060
## 1530 2064
## 1531 2065
## 1532 2066
## 1533 2067
## 1534 2068
## 1535 2069
## 1536 2070
## 1537 2071
## 1538 2072
## 1539 2073
## 1540 2074
## 1541 2075
## 1542 2076
## 1543 2077
## 1544 2078
## 1545 2080
## 1546 2081
## 1547 2082
## 1548 2083
## 1549 2084
## 1550 2085
## 1551 2087
## 1552 2088
## 1553 2089
## 1554 2090
## 1555 2091
## 1556 2092
## 1557 2093
## 1558 2094
## 1559 2095
## 1560 2096
## 1561 2097
## 1562 2098
## 1563 2099
## 1564 2100
## 1565 2102
## 1566 2103
## 1567 2104
## 1568 2105
## 1569 2106
## 1570 2107
## 1571 2108
## 1572 2109
## 1573 2110
## 1574 2111
## 1575 2112
## 1576 2114
## 1577 2115
## 1578 2116
## 1579 2117
## 1580 2118
## 1581 2119
## 1582 2120
## 1583 2121
## 1584 2122
## 1585 2123
## 1586 2124
## 1587 2125
## 1588 2126
## 1589 2130
## 1590 2131
## 1591 2132
## 1592 2133
## 1593 2134
## 1594 2135
## 1595 2136
## 1596 2137
## 1597 2138
## 1598 2139
## 1599 2140
## 1600 2141
## 1601 2142
## 1602 2143
## 1603 2144
## 1604 2145
## 1605 2146
## 1606 2147
## 1607 2148
## 1608 2149
## 1609 2150
## 1610 2151
## 1611 2152
## 1612 2153
## 1613 2154
## 1614 2155
## 1615 2156
## 1616 2159
## 1617 2160
## 1618 2161
## 1619 2162
## 1620 2163
## 1621 2164
## 1622 2165
## 1623 2166
## 1624 2167
## 1625 2169
## 1626 2170
## 1627 2171
## 1628 2172
## 1629 2174
## 1630 2175
## 1631 2176
## 1632 2177
## 1633 2178
## 1634 2179
## 1635 2180
## 1636 2181
## 1637 2182
## 1638 2183
## 1639 2184
## 1640 2185
## 1641 2186
## 1642 2187
## 1643 2188
## 1644 2190
## 1645 2193
## 1646 2194
## 1647 2195
## 1648 2196
## 1649 2201
## 1650 2202
## 1651 2203
## 1652 2204
## 1653 2205
## 1654 2206
## 1655 2207
## 1656 2208
## 1657 2210
## 1658 2211
## 1659 2212
## 1660 2226
## 1661 2227
## 1662 2231
## 1663 2232
## 1664 2236
## 1665 2239
## 1666 2240
## 1667 2241
## 1668 2243
## 1669 2244
## 1670 2245
## 1671 2247
## 1672 2248
## 1673 2249
## 1674 2252
## 1675 2253
## 1676 2255
## 1677 2256
## 1678 2257
## 1679 2259
## 1680 2260
## 1681 2261
## 1682 2262
## 1683 2263
## 1684 2264
## 1685 2265
## 1686 2266
## 1687 2267
## 1688 2268
## 1689 2269
## 1690 2271
## 1691 2272
## 1692 2273
## 1693 2275
## 1694 2278
## 1695 2279
## 1696 2280
## 1697 2281
## 1698 2282
## 1699 2283
## 1700 2286
## 1701 2287
## 1702 2288
## 1703 2289
## 1704 2290
## 1705 2291
## 1706 2292
## 1707 2294
## 1708 2295
## 1709 2296
## 1710 2297
## 1711 2298
## 1712 2300
## 1713 2301
## 1714 2302
## 1715 2303
## 1716 2304
## 1717 2306
## 1718 2307
## 1719 2310
## 1720 2311
## 1721 2312
## 1722 2313
## 1723 2314
## 1724 2315
## 1725 2316
## 1726 2318
## 1727 2320
## 1728 2321
## 1729 2322
## 1730 2323
## 1731 2324
## 1732 2325
## 1733 2327
## 1734 2328
## 1735 2329
## 1736 2330
## 1737 2331
## 1738 2332
## 1739 2333
## 1740 2334
## 1741 2335
## 1742 2336
## 1743 2337
## 1744 2338
## 1745 2339
## 1746 2340
## 1747 2342
## 1748 2344
## 1749 2346
## 1750 2347
## 1751 2348
## 1752 2349
## 1753 2350
## 1754 2351
## 1755 2352
## 1756 2353
## 1757 2354
## 1758 2355
## 1759 2356
## 1760 2357
## 1761 2358
## 1762 2359
## 1763 2360
## 1764 2361
## 1765 2362
## 1766 2363
## 1767 2364
## 1768 2365
## 1769 2366
## 1770 2367
## 1771 2368
## 1772 2369
## 1773 2370
## 1774 2371
## 1775 2372
## 1776 2373
## 1777 2374
## 1778 2375
## 1779 2376
## 1780 2377
## 1781 2378
## 1782 2379
## 1783 2380
## 1784 2381
## 1785 2382
## 1786 2383
## 1787 2384
## 1788 2385
## 1789 2387
## 1790 2388
## 1791 2389
## 1792 2390
## 1793 2391
## 1794 2392
## 1795 2393
## 1796 2394
## 1797 2395
## 1798 2396
## 1799 2398
## 1800 2399
## 1801 2400
## 1802 2401
## 1803 2402
## 1804 2403
## 1805 2404
## 1806 2405
## 1807 2406
## 1808 2407
## 1809 2408
## 1810 2409
## 1811 2410
## 1812 2411
## 1813 2412
## 1814 2413
## 1815 2414
## 1816 2415
## 1817 2416
## 1818 2417
## 1819 2418
## 1820 2419
## 1821 2420
## 1822 2421
## 1823 2422
## 1824 2423
## 1825 2424
## 1826 2425
## 1827 2427
## 1828 2428
## 1829 2429
## 1830 2430
## 1831 2431
## 1832 2432
## 1833 2433
## 1834 2435
## 1835 2436
## 1836 2439
## 1837 2442
## 1838 2443
## 1839 2445
## 1840 2446
## 1841 2447
## 1842 2448
## 1843 2450
## 1844 2451
## 1845 2453
## 1846 2454
## 1847 2455
## 1848 2456
## 1849 2457
## 1850 2458
## 1851 2459
## 1852 2460
## 1853 2462
## 1854 2463
## 1855 2465
## 1856 2467
## 1857 2468
## 1858 2469
## 1859 2470
## 1860 2471
## 1861 2472
## 1862 2473
## 1863 2474
## 1864 2475
## 1865 2476
## 1866 2477
## 1867 2478
## 1868 2481
## 1869 2482
## 1870 2483
## 1871 2485
## 1872 2488
## 1873 2490
## 1874 2491
## 1875 2492
## 1876 2493
## 1877 2494
## 1878 2495
## 1879 2496
## 1880 2497
## 1881 2498
## 1882 2500
## 1883 2501
## 1884 2502
## 1885 2503
## 1886 2504
## 1887 2505
## 1888 2506
## 1889 2511
## 1890 2512
## 1891 2513
## 1892 2514
## 1893 2515
## 1894 2516
## 1895 2517
## 1896 2518
## 1897 2520
## 1898 2521
## 1899 2522
## 1900 2523
## 1901 2524
## 1902 2525
## 1903 2526
## 1904 2527
## 1905 2528
## 1906 2529
## 1907 2530
## 1908 2531
## 1909 2532
## 1910 2533
## 1911 2534
## 1912 2535
## 1913 2537
## 1914 2538
## 1915 2539
## 1916 2540
## 1917 2541
## 1918 2542
## 1919 2544
## 1920 2546
## 1921 2548
## 1922 2549
## 1923 2550
## 1924 2551
## 1925 2552
## 1926 2553
## 1927 2554
## 1928 2555
## 1929 2557
## 1930 2558
## 1931 2559
## 1932 2560
## 1933 2561
## 1934 2563
## 1935 2565
## 1936 2566
## 1937 2567
## 1938 2568
## 1939 2570
## 1940 2571
## 1941 2572
## 1942 2573
## 1943 2574
## 1944 2575
## 1945 2577
## 1946 2579
## 1947 2580
## 1948 2581
## 1949 2582
## 1950 2583
## 1951 2585
## 1952 2586
## 1953 2587
## 1954 2589
## 1955 2590
## 1956 2593
## 1957 2594
## 1958 2596
## 1959 2597
## 1960 2598
## 1961 2599
## 1962 2600
## 1963 2605
## 1964 2606
## 1965 2607
## 1966 2609
## 1967 2611
## 1968 2612
## 1969 2613
## 1970 2614
## 1971 2615
## 1972 2616
## 1973 2617
## 1974 2618
## 1975 2620
## 1976 2622
## 1977 2623
## 1978 2624
## 1979 2625
## 1980 2628
## 1981 2629
## 1982 2630
## 1983 2632
## 1984 2633
## 1985 2634
## 1986 2639
## 1987 2640
## 1988 2641
## 1989 2642
## 1990 2643
## 1991 2644
## 1992 2648
## 1993 2651
## 1994 2652
## 1995 2654
## 1996 2655
## 1997 2656
## 1998 2657
## 1999 2659
## 2000 2660
## 2001 2661
## 2002 2662
## 2003 2664
## 2004 2665
## 2005 2668
## 2006 2669
## 2007 2670
## 2008 2671
## 2009 2672
## 2010 2674
## 2011 2676
## 2012 2677
## 2013 2681
## 2014 2682
## 2015 2683
## 2016 2686
## 2017 2687
## 2018 2688
## 2019 2690
## 2020 2691
## 2021 2692
## 2022 2693
## 2023 2694
## 2024 2695
## 2025 2696
## 2026 2697
## 2027 2698
## 2028 2699
## 2029 2700
## 2030 2701
## 2031 2702
## 2032 2706
## 2033 2707
## 2034 2708
## 2035 2709
## 2036 2710
## 2037 2712
## 2038 2713
## 2039 2716
## 2040 2717
## 2041 2718
## 2042 2719
## 2043 2720
## 2044 2722
## 2045 2723
## 2046 2724
## 2047 2725
## 2048 2726
## 2049 2727
## 2050 2728
## 2051 2729
## 2052 2730
## 2053 2731
## 2054 2732
## 2055 2733
## 2056 2734
## 2057 2735
## 2058 2736
## 2059 2737
## 2060 2738
## 2061 2739
## 2062 2740
## 2063 2741
## 2064 2742
## 2065 2743
## 2066 2744
## 2067 2745
## 2068 2746
## 2069 2747
## 2070 2748
## 2071 2749
## 2072 2750
## 2073 2751
## 2074 2752
## 2075 2754
## 2076 2757
## 2077 2759
## 2078 2761
## 2079 2762
## 2080 2763
## 2081 2764
## 2082 2765
## 2083 2766
## 2084 2769
## 2085 2770
## 2086 2771
## 2087 2772
## 2088 2774
## 2089 2775
## 2090 2779
## 2091 2782
## 2092 2784
## 2093 2786
## 2094 2787
## 2095 2788
## 2096 2789
## 2097 2790
## 2098 2791
## 2099 2792
## 2100 2793
## 2101 2794
## 2102 2795
## 2103 2796
## 2104 2797
## 2105 2798
## 2106 2799
## 2107 2800
## 2108 2801
## 2109 2802
## 2110 2803
## 2111 2804
## 2112 2805
## 2113 2806
## 2114 2807
## 2115 2808
## 2116 2810
## 2117 2812
## 2118 2813
## 2119 2815
## 2120 2816
## 2121 2817
## 2122 2818
## 2123 2819
## 2124 2820
## 2125 2822
## 2126 2824
## 2127 2826
## 2128 2827
## 2129 2828
## 2130 2829
## 2131 2835
## 2132 2836
## 2133 2837
## 2134 2839
## 2135 2840
## 2136 2841
## 2137 2843
## 2138 2844
## 2139 2846
## 2140 2847
## 2141 2848
## 2142 2851
## 2143 2852
## 2144 2856
## 2145 2857
## 2146 2858
## 2147 2859
## 2148 2860
## 2149 2861
## 2150 2862
## 2151 2863
## 2152 2865
## 2153 2866
## 2154 2867
## 2155 2868
## 2156 2870
## 2157 2871
## 2158 2872
## 2159 2874
## 2160 2875
## 2161 2876
## 2162 2877
## 2163 2878
## 2164 2879
## 2165 2880
## 2166 2881
## 2167 2882
## 2168 2883
## 2169 2884
## 2170 2885
## 2171 2886
## 2172 2887
## 2173 2888
## 2174 2889
## 2175 2890
## 2176 2891
## 2177 2892
## 2178 2893
## 2179 2894
## 2180 2896
## 2181 2897
## 2182 2898
## 2183 2899
## 2184 2900
## 2185 2901
## 2186 2902
## 2187 2903
## 2188 2905
## 2189 2906
## 2190 2907
## 2191 2908
## 2192 2912
## 2193 2915
## 2194 2916
## 2195 2917
## 2196 2918
## 2197 2919
## 2198 2921
## 2199 2922
## 2200 2924
## 2201 2925
## 2202 2926
## 2203 2927
## 2204 2928
## 2205 2929
## 2206 2930
## 2207 2931
## 2208 2932
## 2209 2935
## 2210 2936
## 2211 2937
## 2212 2939
## 2213 2940
## 2214 2941
## 2215 2942
## 2216 2943
## 2217 2944
## 2218 2946
## 2219 2947
## 2220 2948
## 2221 2949
## 2222 2950
## 2223 2951
## 2224 2952
## 2225 2953
## 2226 2956
## 2227 2959
## 2228 2961
## 2229 2962
## 2230 2964
## 2231 2965
## 2232 2966
## 2233 2967
## 2234 2968
## 2235 2969
## 2236 2970
## 2237 2971
## 2238 2972
## 2239 2973
## 2240 2974
## 2241 2975
## 2242 2976
## 2243 2977
## 2244 2978
## 2245 2979
## 2246 2982
## 2247 2983
## 2248 2984
## 2249 2985
## 2250 2986
## 2251 2987
## 2252 2988
## 2253 2989
## 2254 2990
## 2255 2991
## 2256 2992
## 2257 2993
## 2258 2995
## 2259 2996
## 2260 2997
## 2261 3000
## 2262 3002
## 2263 3003
## 2264 3004
## 2265 3005
## 2266 3006
## 2267 3007
## 2268 3008
## 2269 3010
## 2270 3011
## 2271 3013
## 2272 3014
## 2273 3015
## 2274 3016
## 2275 3017
## 2276 3018
## 2277 3019
## 2278 3020
## 2279 3021
## 2280 3022
## 2281 3024
## 2282 3028
## 2283 3029
## 2284 3030
## 2285 3031
## 2286 3032
## 2287 3033
## 2288 3034
## 2289 3035
## 2290 3036
## 2291 3037
## 2292 3038
## 2293 3039
## 2294 3040
## 2295 3041
## 2296 3042
## 2297 3043
## 2298 3044
## 2299 3045
## 2300 3046
## 2301 3048
## 2302 3051
## 2303 3052
## 2304 3053
## 2305 3054
## 2306 3055
## 2307 3056
## 2308 3057
## 2309 3060
## 2310 3061
## 2311 3062
## 2312 3063
## 2313 3064
## 2314 3066
## 2315 3067
## 2316 3068
## 2317 3070
## 2318 3071
## 2319 3072
## 2320 3073
## 2321 3074
## 2322 3075
## 2323 3076
## 2324 3077
## 2325 3078
## 2326 3079
## 2327 3081
## 2328 3082
## 2329 3083
## 2330 3086
## 2331 3087
## 2332 3088
## 2333 3089
## 2334 3090
## 2335 3091
## 2336 3093
## 2337 3094
## 2338 3095
## 2339 3096
## 2340 3097
## 2341 3098
## 2342 3099
## 2343 3100
## 2344 3101
## 2345 3102
## 2346 3103
## 2347 3104
## 2348 3105
## 2349 3106
## 2350 3107
## 2351 3108
## 2352 3109
## 2353 3111
## 2354 3112
## 2355 3113
## 2356 3114
## 2357 3115
## 2358 3117
## 2359 3120
## 2360 3125
## 2361 3127
## 2362 3129
## 2363 3130
## 2364 3132
## 2365 3134
## 2366 3135
## 2367 3138
## 2368 3141
## 2369 3142
## 2370 3143
## 2371 3145
## 2372 3146
## 2373 3147
## 2374 3148
## 2375 3150
## 2376 3152
## 2377 3153
## 2378 3155
## 2379 3156
## 2380 3157
## 2381 3158
## 2382 3159
## 2383 3160
## 2384 3161
## 2385 3162
## 2386 3163
## 2387 3165
## 2388 3167
## 2389 3168
## 2390 3169
## 2391 3171
## 2392 3173
## 2393 3174
## 2394 3175
## 2395 3176
## 2396 3177
## 2397 3178
## 2398 3179
## 2399 3181
## 2400 3182
## 2401 3183
## 2402 3185
## 2403 3186
## 2404 3189
## 2405 3190
## 2406 3192
## 2407 3194
## 2408 3196
## 2409 3197
## 2410 3198
## 2411 3200
## 2412 3201
## 2413 3203
## 2414 3204
## 2415 3206
## 2416 3208
## 2417 3210
## 2418 3211
## 2419 3213
## 2420 3214
## 2421 3217
## 2422 3219
## 2423 3221
## 2424 3223
## 2425 3224
## 2426 3225
## 2427 3230
## 2428 3235
## 2429 3238
## 2430 3240
## 2431 3241
## 2432 3243
## 2433 3244
## 2434 3246
## 2435 3247
## 2436 3248
## 2437 3249
## 2438 3250
## 2439 3251
## 2440 3252
## 2441 3253
## 2442 3254
## 2443 3255
## 2444 3256
## 2445 3257
## 2446 3258
## 2447 3259
## 2448 3260
## 2449 3261
## 2450 3262
## 2451 3263
## 2452 3264
## 2453 3265
## 2454 3266
## 2455 3267
## 2456 3268
## 2457 3269
## 2458 3270
## 2459 3271
## 2460 3272
## 2461 3273
## 2462 3274
## 2463 3275
## 2464 3276
## 2465 3280
## 2466 3281
## 2467 3283
## 2468 3284
## 2469 3285
## 2470 3286
## 2471 3287
## 2472 3289
## 2473 3294
## 2474 3295
## 2475 3296
## 2476 3298
## 2477 3299
## 2478 3300
## 2479 3301
## 2480 3302
## 2481 3303
## 2482 3306
## 2483 3307
## 2484 3308
## 2485 3310
## 2486 3313
## 2487 3315
## 2488 3316
## 2489 3317
## 2490 3323
## 2491 3324
## 2492 3325
## 2493 3326
## 2494 3327
## 2495 3328
## 2496 3329
## 2497 3330
## 2498 3331
## 2499 3334
## 2500 3338
## 2501 3341
## 2502 3342
## 2503 3344
## 2504 3345
## 2505 3347
## 2506 3350
## 2507 3353
## 2508 3354
## 2509 3355
## 2510 3357
## 2511 3358
## 2512 3359
## 2513 3360
## 2514 3361
## 2515 3362
## 2516 3363
## 2517 3364
## 2518 3365
## 2519 3368
## 2520 3370
## 2521 3372
## 2522 3374
## 2523 3378
## 2524 3379
## 2525 3384
## 2526 3385
## 2527 3386
## 2528 3387
## 2529 3388
## 2530 3389
## 2531 3390
## 2532 3391
## 2533 3392
## 2534 3393
## 2535 3394
## 2536 3395
## 2537 3396
## 2538 3397
## 2539 3398
## 2540 3400
## 2541 3401
## 2542 3402
## 2543 3403
## 2544 3404
## 2545 3405
## 2546 3406
## 2547 3408
## 2548 3409
## 2549 3410
## 2550 3412
## 2551 3414
## 2552 3415
## 2553 3417
## 2554 3418
## 2555 3420
## 2556 3421
## 2557 3422
## 2558 3423
## 2559 3424
## 2560 3425
## 2561 3426
## 2562 3428
## 2563 3429
## 2564 3430
## 2565 3431
## 2566 3432
## 2567 3433
## 2568 3434
## 2569 3435
## 2570 3436
## 2571 3438
## 2572 3439
## 2573 3440
## 2574 3441
## 2575 3442
## 2576 3444
## 2577 3445
## 2578 3446
## 2579 3447
## 2580 3448
## 2581 3449
## 2582 3450
## 2583 3451
## 2584 3452
## 2585 3453
## 2586 3454
## 2587 3455
## 2588 3456
## 2589 3459
## 2590 3461
## 2591 3462
## 2592 3466
## 2593 3467
## 2594 3468
## 2595 3469
## 2596 3470
## 2597 3471
## 2598 3473
## 2599 3474
## 2600 3475
## 2601 3476
## 2602 3477
## 2603 3478
## 2604 3479
## 2605 3480
## 2606 3481
## 2607 3483
## 2608 3484
## 2609 3489
## 2610 3492
## 2611 3494
## 2612 3496
## 2613 3497
## 2614 3498
## 2615 3499
## 2616 3500
## 2617 3501
## 2618 3502
## 2619 3503
## 2620 3504
## 2621 3505
## 2622 3506
## 2623 3507
## 2624 3508
## 2625 3510
## 2626 3511
## 2627 3512
## 2628 3513
## 2629 3514
## 2630 3515
## 2631 3516
## 2632 3519
## 2633 3521
## 2634 3524
## 2635 3525
## 2636 3526
## 2637 3527
## 2638 3528
## 2639 3529
## 2640 3531
## 2641 3534
## 2642 3535
## 2643 3536
## 2644 3537
## 2645 3538
## 2646 3539
## 2647 3543
## 2648 3544
## 2649 3545
## 2650 3546
## 2651 3548
## 2652 3549
## 2653 3550
## 2654 3551
## 2655 3552
## 2656 3553
## 2657 3554
## 2658 3555
## 2659 3556
## 2660 3557
## 2661 3559
## 2662 3563
## 2663 3564
## 2664 3565
## 2665 3566
## 2666 3567
## 2667 3568
## 2668 3569
## 2669 3571
## 2670 3572
## 2671 3573
## 2672 3574
## 2673 3576
## 2674 3577
## 2675 3578
## 2676 3580
## 2677 3581
## 2678 3584
## 2679 3586
## 2680 3587
## 2681 3590
## 2682 3591
## 2683 3592
## 2684 3593
## 2685 3594
## 2686 3596
## 2687 3597
## 2688 3598
## 2689 3599
## 2690 3604
## 2691 3606
## 2692 3608
## 2693 3609
## 2694 3614
## 2695 3615
## 2696 3616
## 2697 3617
## 2698 3618
## 2699 3619
## 2700 3622
## 2701 3623
## 2702 3624
## 2703 3625
## 2704 3626
## 2705 3627
## 2706 3628
## 2707 3629
## 2708 3632
## 2709 3633
## 2710 3634
## 2711 3635
## 2712 3637
## 2713 3638
## 2714 3639
## 2715 3640
## 2716 3641
## 2717 3643
## 2718 3646
## 2719 3648
## 2720 3649
## 2721 3652
## 2722 3653
## 2723 3654
## 2724 3655
## 2725 3658
## 2726 3660
## 2727 3661
## 2728 3662
## 2729 3663
## 2730 3664
## 2731 3667
## 2732 3668
## 2733 3669
## 2734 3671
## 2735 3672
## 2736 3673
## 2737 3674
## 2738 3675
## 2739 3676
## 2740 3677
## 2741 3678
## 2742 3679
## 2743 3680
## 2744 3681
## 2745 3682
## 2746 3683
## 2747 3684
## 2748 3685
## 2749 3686
## 2750 3687
## 2751 3688
## 2752 3689
## 2753 3690
## 2754 3691
## 2755 3692
## 2756 3693
## 2757 3694
## 2758 3695
## 2759 3696
## 2760 3697
## 2761 3698
## 2762 3699
## 2763 3700
## 2764 3701
## 2765 3702
## 2766 3703
## 2767 3704
## 2768 3705
## 2769 3706
## 2770 3707
## 2771 3708
## 2772 3709
## 2773 3710
## 2774 3711
## 2775 3712
## 2776 3713
## 2777 3714
## 2778 3715
## 2779 3716
## 2780 3717
## 2781 3719
## 2782 3720
## 2783 3723
## 2784 3724
## 2785 3725
## 2786 3726
## 2787 3727
## 2788 3728
## 2789 3729
## 2790 3730
## 2791 3731
## 2792 3732
## 2793 3733
## 2794 3735
## 2795 3736
## 2796 3737
## 2797 3738
## 2798 3739
## 2799 3740
## 2800 3741
## 2801 3742
## 2802 3743
## 2803 3744
## 2804 3745
## 2805 3746
## 2806 3747
## 2807 3751
## 2808 3752
## 2809 3753
## 2810 3754
## 2811 3755
## 2812 3756
## 2813 3758
## 2814 3760
## 2815 3761
## 2816 3763
## 2817 3764
## 2818 3765
## 2819 3766
## 2820 3767
## 2821 3768
## 2822 3769
## 2823 3770
## 2824 3771
## 2825 3773
## 2826 3774
## 2827 3783
## 2828 3784
## 2829 3785
## 2830 3786
## 2831 3787
## 2832 3788
## 2833 3789
## 2834 3790
## 2835 3791
## 2836 3792
## 2837 3793
## 2838 3794
## 2839 3795
## 2840 3797
## 2841 3798
## 2842 3799
## 2843 3801
## 2844 3802
## 2845 3806
## 2846 3807
## 2847 3808
## 2848 3809
## 2849 3810
## 2850 3811
## 2851 3812
## 2852 3813
## 2853 3814
## 2854 3816
## 2855 3819
## 2856 3821
## 2857 3822
## 2858 3823
## 2859 3824
## 2860 3825
## 2861 3826
## 2862 3827
## 2863 3830
## 2864 3831
## 2865 3832
## 2866 3833
## 2867 3834
## 2868 3835
## 2869 3836
## 2870 3837
## 2871 3838
## 2872 3839
## 2873 3840
## 2874 3841
## 2875 3843
## 2876 3844
## 2877 3845
## 2878 3846
## 2879 3847
## 2880 3849
## 2881 3851
## 2882 3852
## 2883 3855
## 2884 3857
## 2885 3858
## 2886 3859
## 2887 3861
## 2888 3862
## 2889 3863
## 2890 3864
## 2891 3865
## 2892 3868
## 2893 3869
## 2894 3870
## 2895 3871
## 2896 3872
## 2897 3873
## 2898 3877
## 2899 3879
## 2900 3882
## 2901 3884
## 2902 3888
## 2903 3889
## 2904 3893
## 2905 3894
## 2906 3895
## 2907 3896
## 2908 3897
## 2909 3898
## 2910 3899
## 2911 3900
## 2912 3901
## 2913 3906
## 2914 3908
## 2915 3909
## 2916 3910
## 2917 3911
## 2918 3912
## 2919 3914
## 2920 3915
## 2921 3916
## 2922 3917
## 2923 3918
## 2924 3919
## 2925 3920
## 2926 3922
## 2927 3925
## 2928 3926
## 2929 3927
## 2930 3928
## 2931 3929
## 2932 3930
## 2933 3932
## 2934 3933
## 2935 3937
## 2936 3938
## 2937 3939
## 2938 3940
## 2939 3941
## 2940 3942
## 2941 3943
## 2942 3945
## 2943 3946
## 2944 3947
## 2945 3948
## 2946 3949
## 2947 3950
## 2948 3951
## 2949 3952
## 2950 3953
## 2951 3955
## 2952 3957
## 2953 3958
## 2954 3959
## 2955 3962
## 2956 3963
## 2957 3964
## 2958 3965
## 2959 3966
## 2960 3967
## 2961 3968
## 2962 3969
## 2963 3971
## 2964 3972
## 2965 3973
## 2966 3974
## 2967 3977
## 2968 3978
## 2969 3979
## 2970 3980
## 2971 3981
## 2972 3983
## 2973 3984
## 2974 3985
## 2975 3986
## 2976 3987
## 2977 3988
## 2978 3989
## 2979 3990
## 2980 3991
## 2981 3992
## 2982 3993
## 2983 3994
## 2984 3996
## 2985 3997
## 2986 3998
## 2987 3999
## 2988 4000
## 2989 4002
## 2990 4003
## 2991 4005
## 2992 4006
## 2993 4007
## 2994 4008
## 2995 4009
## 2996 4010
## 2997 4011
## 2998 4012
## 2999 4014
## 3000 4015
## 3001 4016
## 3002 4017
## 3003 4018
## 3004 4019
## 3005 4020
## 3006 4021
## 3007 4022
## 3008 4023
## 3009 4024
## 3010 4025
## 3011 4027
## 3012 4029
## 3013 4030
## 3014 4031
## 3015 4032
## 3016 4033
## 3017 4034
## 3018 4035
## 3019 4036
## 3020 4037
## 3021 4039
## 3022 4040
## 3023 4041
## 3024 4042
## 3025 4043
## 3026 4046
## 3027 4047
## 3028 4051
## 3029 4052
## 3030 4053
## 3031 4054
## 3032 4055
## 3033 4056
## 3034 4061
## 3035 4062
## 3036 4063
## 3037 4064
## 3038 4065
## 3039 4066
## 3040 4067
## 3041 4068
## 3042 4069
## 3043 4074
## 3044 4077
## 3045 4078
## 3046 4079
## 3047 4080
## 3048 4081
## 3049 4082
## 3050 4083
## 3051 4084
## 3052 4085
## 3053 4086
## 3054 4089
## 3055 4090
## 3056 4091
## 3057 4092
## 3058 4093
## 3059 4102
## 3060 4103
## 3061 4104
## 3062 4105
## 3063 4109
## 3064 4110
## 3065 4111
## 3066 4113
## 3067 4115
## 3068 4116
## 3069 4117
## 3070 4121
## 3071 4123
## 3072 4124
## 3073 4125
## 3074 4126
## 3075 4127
## 3076 4128
## 3077 4129
## 3078 4130
## 3079 4131
## 3080 4132
## 3081 4133
## 3082 4135
## 3083 4138
## 3084 4139
## 3085 4141
## 3086 4142
## 3087 4143
## 3088 4144
## 3089 4146
## 3090 4147
## 3091 4148
## 3092 4149
## 3093 4152
## 3094 4153
## 3095 4154
## 3096 4155
## 3097 4156
## 3098 4157
## 3099 4158
## 3100 4159
## 3101 4160
## 3102 4161
## 3103 4164
## 3104 4166
## 3105 4167
## 3106 4168
## 3107 4171
## 3108 4174
## 3109 4175
## 3110 4178
## 3111 4180
## 3112 4181
## 3113 4184
## 3114 4187
## 3115 4189
## 3116 4190
## 3117 4191
## 3118 4193
## 3119 4194
## 3120 4195
## 3121 4197
## 3122 4198
## 3123 4200
## 3124 4202
## 3125 4203
## 3126 4204
## 3127 4205
## 3128 4207
## 3129 4210
## 3130 4211
## 3131 4212
## 3132 4214
## 3133 4215
## 3134 4217
## 3135 4218
## 3136 4219
## 3137 4220
## 3138 4221
## 3139 4223
## 3140 4224
## 3141 4225
## 3142 4226
## 3143 4228
## 3144 4229
## 3145 4231
## 3146 4232
## 3147 4233
## 3148 4234
## 3149 4235
## 3150 4236
## 3151 4237
## 3152 4238
## 3153 4239
## 3154 4240
## 3155 4241
## 3156 4242
## 3157 4243
## 3158 4246
## 3159 4247
## 3160 4248
## 3161 4251
## 3162 4252
## 3163 4254
## 3164 4255
## 3165 4256
## 3166 4259
## 3167 4260
## 3168 4262
## 3169 4263
## 3170 4265
## 3171 4267
## 3172 4268
## 3173 4270
## 3174 4273
## 3175 4275
## 3176 4276
## 3177 4278
## 3178 4280
## 3179 4282
## 3180 4284
## 3181 4285
## 3182 4289
## 3183 4290
## 3184 4291
## 3185 4292
## 3186 4293
## 3187 4294
## 3188 4296
## 3189 4297
## 3190 4298
## 3191 4299
## 3192 4300
## 3193 4304
## 3194 4305
## 3195 4306
## 3196 4307
## 3197 4308
## 3198 4310
## 3199 4312
## 3200 4313
## 3201 4316
## 3202 4317
## 3203 4321
## 3204 4322
## 3205 4323
## 3206 4325
## 3207 4326
## 3208 4327
## 3209 4329
## 3210 4333
## 3211 4334
## 3212 4337
## 3213 4338
## 3214 4339
## 3215 4340
## 3216 4342
## 3217 4343
## 3218 4344
## 3219 4345
## 3220 4347
## 3221 4349
## 3222 4350
## 3223 4351
## 3224 4353
## 3225 4354
## 3226 4355
## 3227 4356
## 3228 4357
## 3229 4359
## 3230 4361
## 3231 4366
## 3232 4367
## 3233 4368
## 3234 4369
## 3235 4370
## 3236 4371
## 3237 4372
## 3238 4373
## 3239 4374
## 3240 4378
## 3241 4380
## 3242 4381
## 3243 4383
## 3244 4384
## 3245 4386
## 3246 4387
## 3247 4388
## 3248 4389
## 3249 4390
## 3250 4392
## 3251 4393
## 3252 4394
## 3253 4395
## 3254 4396
## 3255 4397
## 3256 4399
## 3257 4402
## 3258 4403
## 3259 4404
## 3260 4406
## 3261 4407
## 3262 4408
## 3263 4409
## 3264 4410
## 3265 4412
## 3266 4419
## 3267 4420
## 3268 4422
## 3269 4424
## 3270 4426
## 3271 4427
## 3272 4428
## 3273 4429
## 3274 4432
## 3275 4433
## 3276 4434
## 3277 4436
## 3278 4437
## 3279 4438
## 3280 4439
## 3281 4440
## 3282 4441
## 3283 4442
## 3284 4443
## 3285 4444
## 3286 4445
## 3287 4446
## 3288 4447
## 3289 4448
## 3290 4449
## 3291 4450
## 3292 4451
## 3293 4452
## 3294 4453
## 3295 4454
## 3296 4458
## 3297 4459
## 3298 4462
## 3299 4463
## 3300 4464
## 3301 4465
## 3302 4466
## 3303 4467
## 3304 4470
## 3305 4471
## 3306 4473
## 3307 4474
## 3308 4475
## 3309 4476
## 3310 4477
## 3311 4478
## 3312 4480
## 3313 4482
## 3314 4483
## 3315 4484
## 3316 4487
## 3317 4488
## 3318 4489
## 3319 4490
## 3320 4492
## 3321 4495
## 3322 4496
## 3323 4497
## 3324 4498
## 3325 4499
## 3326 4500
## 3327 4502
## 3328 4504
## 3329 4505
## 3330 4506
## 3331 4508
## 3332 4509
## 3333 4511
## 3334 4516
## 3335 4517
## 3336 4518
## 3337 4519
## 3338 4520
## 3339 4521
## 3340 4522
## 3341 4523
## 3342 4524
## 3343 4526
## 3344 4527
## 3345 4529
## 3346 4531
## 3347 4533
## 3348 4534
## 3349 4535
## 3350 4537
## 3351 4541
## 3352 4544
## 3353 4545
## 3354 4546
## 3355 4552
## 3356 4553
## 3357 4557
## 3358 4558
## 3359 4562
## 3360 4563
## 3361 4564
## 3362 4565
## 3363 4568
## 3364 4571
## 3365 4572
## 3366 4573
## 3367 4574
## 3368 4577
## 3369 4578
## 3370 4580
## 3371 4581
## 3372 4583
## 3373 4584
## 3374 4585
## 3375 4587
## 3376 4589
## 3377 4591
## 3378 4593
## 3379 4594
## 3380 4595
## 3381 4597
## 3382 4599
## 3383 4600
## 3384 4602
## 3385 4603
## 3386 4605
## 3387 4608
## 3388 4610
## 3389 4611
## 3390 4612
## 3391 4613
## 3392 4614
## 3393 4615
## 3394 4616
## 3395 4617
## 3396 4619
## 3397 4621
## 3398 4622
## 3399 4623
## 3400 4624
## 3401 4625
## 3402 4626
## 3403 4628
## 3404 4629
## 3405 4630
## 3406 4632
## 3407 4634
## 3408 4635
## 3409 4636
## 3410 4638
## 3411 4639
## 3412 4640
## 3413 4641
## 3414 4642
## 3415 4643
## 3416 4644
## 3417 4645
## 3418 4646
## 3419 4649
## 3420 4653
## 3421 4654
## 3422 4658
## 3423 4660
## 3424 4661
## 3425 4662
## 3426 4663
## 3427 4666
## 3428 4670
## 3429 4671
## 3430 4672
## 3431 4673
## 3432 4675
## 3433 4676
## 3434 4677
## 3435 4678
## 3436 4679
## 3437 4681
## 3438 4683
## 3439 4686
## 3440 4687
## 3441 4688
## 3442 4689
## 3443 4690
## 3444 4695
## 3445 4697
## 3446 4699
## 3447 4700
## 3448 4701
## 3449 4703
## 3450 4704
## 3451 4705
## 3452 4708
## 3453 4709
## 3454 4710
## 3455 4711
## 3456 4713
## 3457 4714
## 3458 4715
## 3459 4717
## 3460 4718
## 3461 4719
## 3462 4720
## 3463 4721
## 3464 4722
## 3465 4723
## 3466 4725
## 3467 4727
## 3468 4728
## 3469 4732
## 3470 4733
## 3471 4734
## 3472 4735
## 3473 4736
## 3474 4738
## 3475 4740
## 3476 4741
## 3477 4743
## 3478 4744
## 3479 4745
## 3480 4748
## 3481 4749
## 3482 4750
## 3483 4754
## 3484 4756
## 3485 4757
## 3486 4759
## 3487 4765
## 3488 4766
## 3489 4769
## 3490 4770
## 3491 4771
## 3492 4772
## 3493 4773
## 3494 4774
## 3495 4775
## 3496 4776
## 3497 4777
## 3498 4780
## 3499 4782
## 3500 4783
## 3501 4784
## 3502 4785
## 3503 4786
## 3504 4787
## 3505 4788
## 3506 4789
## 3507 4792
## 3508 4794
## 3509 4795
## 3510 4796
## 3511 4798
## 3512 4799
## 3513 4800
## 3514 4801
## 3515 4802
## 3516 4803
## 3517 4804
## 3518 4808
## 3519 4809
## 3520 4810
## 3521 4811
## 3522 4812
## 3523 4813
## 3524 4814
## 3525 4815
## 3526 4816
## 3527 4818
## 3528 4821
## 3529 4822
## 3530 4823
## 3531 4825
## 3532 4826
## 3533 4827
## 3534 4828
## 3535 4830
## 3536 4831
## 3537 4833
## 3538 4835
## 3539 4836
## 3540 4840
## 3541 4844
## 3542 4845
## 3543 4846
## 3544 4847
## 3545 4848
## 3546 4849
## 3547 4850
## 3548 4852
## 3549 4855
## 3550 4857
## 3551 4860
## 3552 4862
## 3553 4863
## 3554 4864
## 3555 4865
## 3556 4866
## 3557 4867
## 3558 4871
## 3559 4873
## 3560 4874
## 3561 4876
## 3562 4877
## 3563 4878
## 3564 4879
## 3565 4880
## 3566 4881
## 3567 4883
## 3568 4885
## 3569 4886
## 3570 4887
## 3571 4888
## 3572 4889
## 3573 4890
## 3574 4893
## 3575 4896
## 3576 4898
## 3577 4899
## 3578 4900
## 3579 4901
## 3580 4902
## 3581 4903
## 3582 4909
## 3583 4911
## 3584 4912
## 3585 4914
## 3586 4915
## 3587 4916
## 3588 4917
## 3589 4919
## 3590 4920
## 3591 4921
## 3592 4925
## 3593 4926
## 3594 4927
## 3595 4928
## 3596 4929
## 3597 4932
## 3598 4936
## 3599 4939
## 3600 4941
## 3601 4942
## 3602 4945
## 3603 4946
## 3604 4947
## 3605 4951
## 3606 4952
## 3607 4953
## 3608 4954
## 3609 4956
## 3610 4957
## 3611 4958
## 3612 4959
## 3613 4961
## 3614 4962
## 3615 4963
## 3616 4964
## 3617 4965
## 3618 4966
## 3619 4967
## 3620 4969
## 3621 4970
## 3622 4971
## 3623 4973
## 3624 4974
## 3625 4975
## 3626 4976
## 3627 4977
## 3628 4978
## 3629 4979
## 3630 4980
## 3631 4981
## 3632 4985
## 3633 4987
## 3634 4988
## 3635 4989
## 3636 4990
## 3637 4991
## 3638 4992
## 3639 4993
## 3640 4994
## 3641 4995
## 3642 4998
## 3643 5004
## 3644 5007
## 3645 5008
## 3646 5009
## 3647 5010
## 3648 5011
## 3649 5012
## 3650 5013
## 3651 5014
## 3652 5015
## 3653 5016
## 3654 5021
## 3655 5023
## 3656 5025
## 3657 5026
## 3658 5027
## 3659 5028
## 3660 5033
## 3661 5034
## 3662 5039
## 3663 5040
## 3664 5041
## 3665 5046
## 3666 5047
## 3667 5048
## 3668 5049
## 3669 5051
## 3670 5053
## 3671 5054
## 3672 5055
## 3673 5059
## 3674 5060
## 3675 5062
## 3676 5063
## 3677 5064
## 3678 5065
## 3679 5066
## 3680 5068
## 3681 5069
## 3682 5071
## 3683 5072
## 3684 5073
## 3685 5074
## 3686 5075
## 3687 5076
## 3688 5077
## 3689 5080
## 3690 5081
## 3691 5083
## 3692 5088
## 3693 5092
## 3694 5093
## 3695 5094
## 3696 5095
## 3697 5096
## 3698 5099
## 3699 5102
## 3700 5103
## 3701 5105
## 3702 5106
## 3703 5107
## 3704 5108
## 3705 5109
## 3706 5110
## 3707 5111
## 3708 5112
## 3709 5113
## 3710 5114
## 3711 5116
## 3712 5120
## 3713 5121
## 3714 5127
## 3715 5128
## 3716 5131
## 3717 5134
## 3718 5135
## 3719 5136
## 3720 5137
## 3721 5139
## 3722 5146
## 3723 5147
## 3724 5151
## 3725 5152
## 3726 5155
## 3727 5156
## 3728 5159
## 3729 5165
## 3730 5168
## 3731 5170
## 3732 5171
## 3733 5177
## 3734 5178
## 3735 5181
## 3736 5187
## 3737 5189
## 3738 5197
## 3739 5198
## 3740 5202
## 3741 5205
## 3742 5209
## 3743 5212
## 3744 5213
## 3745 5214
## 3746 5218
## 3747 5219
## 3748 5220
## 3749 5221
## 3750 5222
## 3751 5224
## 3752 5225
## 3753 5226
## 3754 5231
## 3755 5237
## 3756 5238
## 3757 5239
## 3758 5240
## 3759 5241
## 3760 5244
## 3761 5246
## 3762 5247
## 3763 5248
## 3764 5250
## 3765 5254
## 3766 5255
## 3767 5256
## 3768 5258
## 3769 5264
## 3770 5265
## 3771 5266
## 3772 5267
## 3773 5268
## 3774 5269
## 3775 5272
## 3776 5275
## 3777 5278
## 3778 5279
## 3779 5282
## 3780 5283
## 3781 5284
## 3782 5285
## 3783 5288
## 3784 5291
## 3785 5292
## 3786 5293
## 3787 5294
## 3788 5296
## 3789 5297
## 3790 5298
## 3791 5299
## 3792 5300
## 3793 5303
## 3794 5304
## 3795 5307
## 3796 5308
## 3797 5309
## 3798 5311
## 3799 5312
## 3800 5313
## 3801 5316
## 3802 5319
## 3803 5321
## 3804 5322
## 3805 5323
## 3806 5324
## 3807 5325
## 3808 5328
## 3809 5329
## 3810 5333
## 3811 5334
## 3812 5337
## 3813 5338
## 3814 5339
## 3815 5341
## 3816 5345
## 3817 5346
## 3818 5347
## 3819 5348
## 3820 5349
## 3821 5353
## 3822 5356
## 3823 5357
## 3824 5358
## 3825 5361
## 3826 5363
## 3827 5364
## 3828 5365
## 3829 5372
## 3830 5373
## 3831 5375
## 3832 5377
## 3833 5378
## 3834 5379
## 3835 5380
## 3836 5382
## 3837 5384
## 3838 5385
## 3839 5387
## 3840 5388
## 3841 5389
## 3842 5390
## 3843 5391
## 3844 5397
## 3845 5398
## 3846 5400
## 3847 5401
## 3848 5404
## 3849 5409
## 3850 5410
## 3851 5414
## 3852 5415
## 3853 5416
## 3854 5417
## 3855 5418
## 3856 5419
## 3857 5420
## 3858 5421
## 3859 5422
## 3860 5423
## 3861 5424
## 3862 5425
## 3863 5427
## 3864 5428
## 3865 5433
## 3866 5434
## 3867 5435
## 3868 5437
## 3869 5438
## 3870 5440
## 3871 5442
## 3872 5443
## 3873 5444
## 3874 5445
## 3875 5446
## 3876 5447
## 3877 5448
## 3878 5449
## 3879 5450
## 3880 5451
## 3881 5452
## 3882 5454
## 3883 5455
## 3884 5456
## 3885 5458
## 3886 5459
## 3887 5460
## 3888 5461
## 3889 5462
## 3890 5463
## 3891 5464
## 3892 5465
## 3893 5466
## 3894 5468
## 3895 5470
## 3896 5471
## 3897 5472
## 3898 5475
## 3899 5476
## 3900 5477
## 3901 5478
## 3902 5479
## 3903 5480
## 3904 5481
## 3905 5483
## 3906 5485
## 3907 5486
## 3908 5489
## 3909 5490
## 3910 5493
## 3911 5497
## 3912 5498
## 3913 5499
## 3914 5500
## 3915 5501
## 3916 5502
## 3917 5503
## 3918 5504
## 3919 5505
## 3920 5506
## 3921 5507
## 3922 5508
## 3923 5512
## 3924 5513
## 3925 5515
## 3926 5521
## 3927 5522
## 3928 5523
## 3929 5524
## 3930 5525
## 3931 5527
## 3932 5528
## 3933 5529
## 3934 5530
## 3935 5531
## 3936 5532
## 3937 5537
## 3938 5538
## 3939 5539
## 3940 5540
## 3941 5541
## 3942 5543
## 3943 5544
## 3944 5548
## 3945 5550
## 3946 5553
## 3947 5556
## 3948 5560
## 3949 5562
## 3950 5563
## 3951 5564
## 3952 5568
## 3953 5569
## 3954 5570
## 3955 5572
## 3956 5573
## 3957 5574
## 3958 5575
## 3959 5577
## 3960 5580
## 3961 5581
## 3962 5582
## 3963 5584
## 3964 5585
## 3965 5588
## 3966 5589
## 3967 5590
## 3968 5591
## 3969 5596
## 3970 5597
## 3971 5601
## 3972 5602
## 3973 5603
## 3974 5604
## 3975 5607
## 3976 5608
## 3977 5609
## 3978 5610
## 3979 5611
## 3980 5612
## 3981 5613
## 3982 5614
## 3983 5615
## 3984 5617
## 3985 5618
## 3986 5619
## 3987 5620
## 3988 5621
## 3989 5625
## 3990 5628
## 3991 5629
## 3992 5630
## 3993 5632
## 3994 5633
## 3995 5635
## 3996 5636
## 3997 5637
## 3998 5638
## 3999 5640
## 4000 5643
## 4001 5644
## 4002 5646
## 4003 5649
## 4004 5650
## 4005 5651
## 4006 5657
## 4007 5663
## 4008 5664
## 4009 5665
## 4010 5666
## 4011 5667
## 4012 5668
## 4013 5669
## 4014 5670
## 4015 5672
## 4016 5673
## 4017 5675
## 4018 5678
## 4019 5679
## 4020 5680
## 4021 5682
## 4022 5684
## 4023 5685
## 4024 5688
## 4025 5689
## 4026 5690
## 4027 5693
## 4028 5694
## 4029 5696
## 4030 5699
## 4031 5700
## 4032 5704
## 4033 5706
## 4034 5707
## 4035 5710
## 4036 5712
## 4037 5720
## 4038 5721
## 4039 5723
## 4040 5733
## 4041 5735
## 4042 5736
## 4043 5741
## 4044 5742
## 4045 5745
## 4046 5746
## 4047 5747
## 4048 5749
## 4049 5752
## 4050 5755
## 4051 5764
## 4052 5767
## 4053 5768
## 4054 5771
## 4055 5772
## 4056 5773
## 4057 5779
## 4058 5780
## 4059 5782
## 4060 5784
## 4061 5785
## 4062 5786
## 4063 5787
## 4064 5788
## 4065 5791
## 4066 5792
## 4067 5796
## 4068 5797
## 4069 5799
## 4070 5801
## 4071 5802
## 4072 5803
## 4073 5804
## 4074 5809
## 4075 5810
## 4076 5812
## 4077 5816
## 4078 5817
## 4079 5818
## 4080 5820
## 4081 5826
## 4082 5828
## 4083 5829
## 4084 5833
## 4085 5836
## 4086 5838
## 4087 5839
## 4088 5840
## 4089 5841
## 4090 5843
## 4091 5847
## 4092 5849
## 4093 5853
## 4094 5856
## 4095 5863
## 4096 5867
## 4097 5872
## 4098 5873
## 4099 5874
## 4100 5875
## 4101 5876
## 4102 5878
## 4103 5879
## 4104 5880
## 4105 5881
## 4106 5882
## 4107 5883
## 4108 5884
## 4109 5888
## 4110 5889
## 4111 5890
## 4112 5891
## 4113 5893
## 4114 5896
## 4115 5899
## 4116 5900
## 4117 5901
## 4118 5902
## 4119 5903
## 4120 5909
## 4121 5912
## 4122 5915
## 4123 5919
## 4124 5922
## 4125 5925
## 4126 5927
## 4127 5929
## 4128 5932
## 4129 5938
## 4130 5941
## 4131 5942
## 4132 5943
## 4133 5944
## 4134 5945
## 4135 5947
## 4136 5949
## 4137 5951
## 4138 5952
## 4139 5953
## 4140 5954
## 4141 5955
## 4142 5956
## 4143 5957
## 4144 5959
## 4145 5961
## 4146 5962
## 4147 5963
## 4148 5965
## 4149 5968
## 4150 5969
## 4151 5970
## 4152 5971
## 4153 5974
## 4154 5975
## 4155 5979
## 4156 5980
## 4157 5984
## 4158 5986
## 4159 5988
## 4160 5989
## 4161 5990
## 4162 5991
## 4163 5992
## 4164 5993
## 4165 5994
## 4166 5995
## 4167 5999
## 4168 6001
## 4169 6002
## 4170 6003
## 4171 6005
## 4172 6006
## 4173 6009
## 4174 6012
## 4175 6013
## 4176 6014
## 4177 6016
## 4178 6020
## 4179 6021
## 4180 6022
## 4181 6023
## 4182 6025
## 4183 6027
## 4184 6030
## 4185 6031
## 4186 6033
## 4187 6035
## 4188 6036
## 4189 6039
## 4190 6040
## 4191 6041
## 4192 6042
## 4193 6044
## 4194 6049
## 4195 6051
## 4196 6055
## 4197 6057
## 4198 6058
## 4199 6059
## 4200 6060
## 4201 6062
## 4202 6063
## 4203 6064
## 4204 6067
## 4205 6070
## 4206 6078
## 4207 6086
## 4208 6090
## 4209 6093
## 4210 6095
## 4211 6100
## 4212 6101
## 4213 6104
## 4214 6107
## 4215 6111
## 4216 6116
## 4217 6119
## 4218 6122
## 4219 6123
## 4220 6124
## 4221 6125
## 4222 6140
## 4223 6141
## 4224 6143
## 4225 6145
## 4226 6148
## 4227 6153
## 4228 6155
## 4229 6156
## 4230 6157
## 4231 6158
## 4232 6159
## 4233 6162
## 4234 6163
## 4235 6166
## 4236 6169
## 4237 6170
## 4238 6178
## 4239 6181
## 4240 6182
## 4241 6183
## 4242 6184
## 4243 6185
## 4244 6186
## 4245 6187
## 4246 6188
## 4247 6192
## 4248 6193
## 4249 6195
## 4250 6196
## 4251 6197
## 4252 6201
## 4253 6202
## 4254 6203
## 4255 6204
## 4256 6210
## 4257 6212
## 4258 6213
## 4259 6214
## 4260 6215
## 4261 6216
## 4262 6217
## 4263 6218
## 4264 6219
## 4265 6220
## 4266 6222
## 4267 6223
## 4268 6225
## 4269 6228
## 4270 6232
## 4271 6234
## 4272 6235
## 4273 6237
## 4274 6238
## 4275 6239
## 4276 6241
## 4277 6242
## 4278 6244
## 4279 6245
## 4280 6246
## 4281 6249
## 4282 6250
## 4283 6251
## 4284 6252
## 4285 6254
## 4286 6263
## 4287 6264
## 4288 6265
## 4289 6266
## 4290 6267
## 4291 6268
## 4292 6269
## 4293 6270
## 4294 6271
## 4295 6273
## 4296 6279
## 4297 6280
## 4298 6281
## 4299 6283
## 4300 6285
## 4301 6286
## 4302 6287
## 4303 6288
## 4304 6289
## 4305 6290
## 4306 6291
## 4307 6294
## 4308 6295
## 4309 6296
## 4310 6297
## 4311 6298
## 4312 6299
## 4313 6300
## 4314 6301
## 4315 6302
## 4316 6303
## 4317 6305
## 4318 6306
## 4319 6308
## 4320 6310
## 4321 6313
## 4322 6314
## 4323 6315
## 4324 6316
## 4325 6319
## 4326 6320
## 4327 6322
## 4328 6323
## 4329 6324
## 4330 6327
## 4331 6329
## 4332 6330
## 4333 6331
## 4334 6332
## 4335 6333
## 4336 6334
## 4337 6335
## 4338 6336
## 4339 6337
## 4340 6338
## 4341 6339
## 4342 6341
## 4343 6342
## 4344 6344
## 4345 6345
## 4346 6347
## 4347 6348
## 4348 6349
## 4349 6350
## 4350 6357
## 4351 6358
## 4352 6365
## 4353 6367
## 4354 6368
## 4355 6370
## 4356 6371
## 4357 6373
## 4358 6374
## 4359 6375
## 4360 6376
## 4361 6377
## 4362 6378
## 4363 6379
## 4364 6380
## 4365 6382
## 4366 6383
## 4367 6385
## 4368 6386
## 4369 6387
## 4370 6390
## 4371 6395
## 4372 6400
## 4373 6402
## 4374 6405
## 4375 6407
## 4376 6408
## 4377 6410
## 4378 6412
## 4379 6415
## 4380 6417
## 4381 6422
## 4382 6424
## 4383 6425
## 4384 6427
## 4385 6428
## 4386 6429
## 4387 6433
## 4388 6434
## 4389 6436
## 4390 6440
## 4391 6442
## 4392 6448
## 4393 6449
## 4394 6452
## 4395 6453
## 4396 6454
## 4397 6460
## 4398 6461
## 4399 6464
## 4400 6465
## 4401 6466
## 4402 6476
## 4403 6477
## 4404 6480
## 4405 6482
## 4406 6483
## 4407 6484
## 4408 6493
## 4409 6502
## 4410 6503
## 4411 6506
## 4412 6509
## 4413 6510
## 4414 6514
## 4415 6515
## 4416 6516
## 4417 6517
## 4418 6523
## 4419 6527
## 4420 6528
## 4421 6530
## 4422 6533
## 4423 6534
## 4424 6535
## 4425 6536
## 4426 6537
## 4427 6538
## 4428 6539
## 4429 6541
## 4430 6542
## 4431 6545
## 4432 6547
## 4433 6548
## 4434 6549
## 4435 6550
## 4436 6551
## 4437 6552
## 4438 6553
## 4439 6554
## 4440 6557
## 4441 6558
## 4442 6559
## 4443 6560
## 4444 6561
## 4445 6563
## 4446 6564
## 4447 6565
## 4448 6566
## 4449 6567
## 4450 6568
## 4451 6571
## 4452 6572
## 4453 6573
## 4454 6574
## 4455 6577
## 4456 6578
## 4457 6579
## 4458 6581
## 4459 6582
## 4460 6583
## 4461 6584
## 4462 6586
## 4463 6587
## 4464 6588
## 4465 6591
## 4466 6592
## 4467 6593
## 4468 6595
## 4469 6596
## 4470 6597
## 4471 6598
## 4472 6603
## 4473 6604
## 4474 6609
## 4475 6611
## 4476 6612
## 4477 6614
## 4478 6615
## 4479 6616
## 4480 6617
## 4481 6618
## 4482 6619
## 4483 6620
## 4484 6624
## 4485 6625
## 4486 6628
## 4487 6629
## 4488 6631
## 4489 6636
## 4490 6638
## 4491 6639
## 4492 6643
## 4493 6644
## 4494 6645
## 4495 6650
## 4496 6654
## 4497 6656
## 4498 6658
## 4499 6659
## 4500 6660
## 4501 6662
## 4502 6663
## 4503 6664
## 4504 6665
## 4505 6666
## 4506 6667
## 4507 6668
## 4508 6669
## 4509 6670
## 4510 6671
## 4511 6678
## 4512 6679
## 4513 6684
## 4514 6686
## 4515 6687
## 4516 6688
## 4517 6689
## 4518 6691
## 4519 6692
## 4520 6695
## 4521 6696
## 4522 6699
## 4523 6702
## 4524 6705
## 4525 6706
## 4526 6707
## 4527 6708
## 4528 6709
## 4529 6710
## 4530 6711
## 4531 6713
## 4532 6715
## 4533 6718
## 4534 6720
## 4535 6721
## 4536 6722
## 4537 6723
## 4538 6724
## 4539 6731
## 4540 6732
## 4541 6734
## 4542 6744
## 4543 6746
## 4544 6748
## 4545 6750
## 4546 6751
## 4547 6752
## 4548 6753
## 4549 6754
## 4550 6755
## 4551 6760
## 4552 6763
## 4553 6764
## 4554 6765
## 4555 6768
## 4556 6769
## 4557 6770
## 4558 6772
## 4559 6773
## 4560 6774
## 4561 6775
## 4562 6776
## 4563 6777
## 4564 6780
## 4565 6782
## 4566 6783
## 4567 6785
## 4568 6786
## 4569 6787
## 4570 6788
## 4571 6789
## 4572 6790
## 4573 6791
## 4574 6793
## 4575 6794
## 4576 6796
## 4577 6797
## 4578 6798
## 4579 6800
## 4580 6803
## 4581 6804
## 4582 6807
## 4583 6808
## 4584 6809
## 4585 6810
## 4586 6811
## 4587 6812
## 4588 6814
## 4589 6816
## 4590 6817
## 4591 6818
## 4592 6820
## 4593 6821
## 4594 6827
## 4595 6832
## 4596 6835
## 4597 6836
## 4598 6837
## 4599 6849
## 4600 6850
## 4601 6851
## 4602 6852
## 4603 6853
## 4604 6856
## 4605 6857
## 4606 6858
## 4607 6860
## 4608 6862
## 4609 6863
## 4610 6867
## 4611 6868
## 4612 6869
## 4613 6870
## 4614 6872
## 4615 6873
## 4616 6874
## 4617 6879
## 4618 6880
## 4619 6881
## 4620 6882
## 4621 6883
## 4622 6884
## 4623 6885
## 4624 6886
## 4625 6887
## 4626 6888
## 4627 6889
## 4628 6890
## 4629 6893
## 4630 6898
## 4631 6899
## 4632 6902
## 4633 6909
## 4634 6911
## 4635 6912
## 4636 6918
## 4637 6920
## 4638 6927
## 4639 6932
## 4640 6934
## 4641 6935
## 4642 6936
## 4643 6938
## 4644 6939
## 4645 6942
## 4646 6944
## 4647 6945
## 4648 6946
## 4649 6947
## 4650 6948
## 4651 6949
## 4652 6950
## 4653 6951
## 4654 6952
## 4655 6953
## 4656 6954
## 4657 6957
## 4658 6958
## 4659 6959
## 4660 6961
## 4661 6962
## 4662 6963
## 4663 6965
## 4664 6966
## 4665 6967
## 4666 6969
## 4667 6970
## 4668 6971
## 4669 6973
## 4670 6974
## 4671 6975
## 4672 6978
## 4673 6979
## 4674 6981
## 4675 6982
## 4676 6983
## 4677 6984
## 4678 6985
## 4679 6986
## 4680 6987
## 4681 6989
## 4682 6990
## 4683 6992
## 4684 6993
## 4685 6994
## 4686 6996
## 4687 6997
## 4688 6998
## 4689 6999
## 4690 7000
## 4691 7001
## 4692 7004
## 4693 7005
## 4694 7007
## 4695 7008
## 4696 7009
## 4697 7010
## 4698 7012
## 4699 7013
## 4700 7015
## 4701 7016
## 4702 7017
## 4703 7018
## 4704 7019
## 4705 7020
## 4706 7022
## 4707 7023
## 4708 7024
## 4709 7025
## 4710 7026
## 4711 7027
## 4712 7028
## 4713 7030
## 4714 7031
## 4715 7032
## 4716 7033
## 4717 7034
## 4718 7036
## 4719 7037
## 4720 7038
## 4721 7040
## 4722 7041
## 4723 7044
## 4724 7045
## 4725 7046
## 4726 7047
## 4727 7048
## 4728 7049
## 4729 7050
## 4730 7051
## 4731 7052
## 4732 7053
## 4733 7054
## 4734 7055
## 4735 7056
## 4736 7057
## 4737 7058
## 4738 7059
## 4739 7060
## 4740 7061
## 4741 7062
## 4742 7063
## 4743 7064
## 4744 7065
## 4745 7067
## 4746 7069
## 4747 7070
## 4748 7071
## 4749 7072
## 4750 7073
## 4751 7074
## 4752 7075
## 4753 7076
## 4754 7078
## 4755 7079
## 4756 7080
## 4757 7082
## 4758 7083
## 4759 7084
## 4760 7085
## 4761 7086
## 4762 7087
## 4763 7088
## 4764 7089
## 4765 7090
## 4766 7091
## 4767 7092
## 4768 7093
## 4769 7096
## 4770 7099
## 4771 7101
## 4772 7102
## 4773 7103
## 4774 7104
## 4775 7107
## 4776 7108
## 4777 7109
## 4778 7114
## 4779 7115
## 4780 7116
## 4781 7117
## 4782 7118
## 4783 7121
## 4784 7122
## 4785 7123
## 4786 7124
## 4787 7125
## 4788 7127
## 4789 7131
## 4790 7132
## 4791 7134
## 4792 7137
## 4793 7139
## 4794 7141
## 4795 7142
## 4796 7143
## 4797 7147
## 4798 7149
## 4799 7150
## 4800 7151
## 4801 7153
## 4802 7154
## 4803 7155
## 4804 7156
## 4805 7158
## 4806 7160
## 4807 7161
## 4808 7162
## 4809 7163
## 4810 7164
## 4811 7165
## 4812 7167
## 4813 7169
## 4814 7171
## 4815 7173
## 4816 7175
## 4817 7176
## 4818 7177
## 4819 7178
## 4820 7179
## 4821 7181
## 4822 7184
## 4823 7190
## 4824 7191
## 4825 7192
## 4826 7193
## 4827 7202
## 4828 7205
## 4829 7206
## 4830 7208
## 4831 7209
## 4832 7211
## 4833 7212
## 4834 7215
## 4835 7216
## 4836 7217
## 4837 7218
## 4838 7219
## 4839 7222
## 4840 7223
## 4841 7225
## 4842 7228
## 4843 7234
## 4844 7235
## 4845 7236
## 4846 7238
## 4847 7243
## 4848 7245
## 4849 7247
## 4850 7248
## 4851 7251
## 4852 7254
## 4853 7255
## 4854 7256
## 4855 7257
## 4856 7258
## 4857 7259
## 4858 7260
## 4859 7261
## 4860 7262
## 4861 7263
## 4862 7264
## 4863 7265
## 4864 7266
## 4865 7282
## 4866 7285
## 4867 7292
## 4868 7293
## 4869 7294
## 4870 7297
## 4871 7299
## 4872 7301
## 4873 7302
## 4874 7303
## 4875 7304
## 4876 7305
## 4877 7306
## 4878 7307
## 4879 7308
## 4880 7310
## 4881 7311
## 4882 7312
## 4883 7315
## 4884 7316
## 4885 7317
## 4886 7318
## 4887 7319
## 4888 7320
## 4889 7321
## 4890 7323
## 4891 7324
## 4892 7325
## 4893 7326
## 4894 7327
## 4895 7328
## 4896 7333
## 4897 7335
## 4898 7336
## 4899 7340
## 4900 7344
## 4901 7345
## 4902 7346
## 4903 7347
## 4904 7348
## 4905 7349
## 4906 7352
## 4907 7354
## 4908 7357
## 4909 7360
## 4910 7361
## 4911 7362
## 4912 7364
## 4913 7366
## 4914 7367
## 4915 7368
## 4916 7369
## 4917 7371
## 4918 7372
## 4919 7373
## 4920 7375
## 4921 7376
## 4922 7377
## 4923 7379
## 4924 7380
## 4925 7381
## 4926 7382
## 4927 7386
## 4928 7387
## 4929 7390
## 4930 7394
## 4931 7395
## 4932 7396
## 4933 7411
## 4934 7414
## 4935 7419
## 4936 7438
## 4937 7439
## 4938 7440
## 4939 7443
## 4940 7444
## 4941 7445
## 4942 7448
## 4943 7449
## 4944 7450
## 4945 7451
## 4946 7454
## 4947 7455
## 4948 7457
## 4949 7458
## 4950 7459
## 4951 7460
## 4952 7477
## 4953 7479
## 4954 7481
## 4955 7482
## 4956 7486
## 4957 7487
## 4958 7492
## 4959 7493
## 4960 7541
## 4961 7560
## 4962 7561
## 4963 7562
## 4964 7564
## 4965 7566
## 4966 7569
## 4967 7570
## 4968 7572
## 4969 7573
## 4970 7579
## 4971 7581
## 4972 7584
## 4973 7587
## 4974 7614
## 4975 7615
## 4976 7616
## 4977 7618
## 4978 7619
## 4979 7620
## 4980 7624
## 4981 7636
## 4982 7646
## 4983 7647
## 4984 7649
## 4985 7650
## 4986 7657
## 4987 7669
## 4988 7698
## 4989 7700
## 4990 7701
## 4991 7702
## 4992 7704
## 4993 7705
## 4994 7706
## 4995 7707
## 4996 7708
## 4997 7713
## 4998 7714
## 4999 7716
## 5000 7720
## 5001 7727
## 5002 7728
## 5003 7730
## 5004 7742
## 5005 7743
## 5006 7745
## 5007 7748
## 5008 7749
## 5009 7753
## 5010 7756
## 5011 7757
## 5012 7762
## 5013 7766
## 5014 7767
## 5015 7772
## 5016 7773
## 5017 7781
## 5018 7782
## 5019 7786
## 5020 7789
## 5021 7792
## 5022 7802
## 5023 7810
## 5024 7811
## 5025 7812
## 5026 7815
## 5027 7820
## 5028 7822
## 5029 7826
## 5030 7831
## 5031 7832
## 5032 7833
## 5033 7834
## 5034 7835
## 5035 7839
## 5036 7840
## 5037 7841
## 5038 7842
## 5039 7843
## 5040 7844
## 5041 7845
## 5042 7846
## 5043 7879
## 5044 7882
## 5045 7883
## 5046 7884
## 5047 7888
## 5048 7889
## 5049 7891
## 5050 7894
## 5051 7895
## 5052 7896
## 5053 7899
## 5054 7900
## 5055 7916
## 5056 7920
## 5057 7924
## 5058 7925
## 5059 7926
## 5060 7930
## 5061 7932
## 5062 7934
## 5063 7936
## 5064 7937
## 5065 7938
## 5066 7939
## 5067 7940
## 5068 7943
## 5069 7944
## 5070 7951
## 5071 7976
## 5072 7979
## 5073 7980
## 5074 7981
## 5075 7982
## 5076 7983
## 5077 7984
## 5078 7986
## 5079 7987
## 5080 7988
## 5081 7991
## 5082 7993
## 5083 8008
## 5084 8010
## 5085 8011
## 5086 8012
## 5087 8014
## 5088 8015
## 5089 8016
## 5090 8019
## 5091 8024
## 5092 8025
## 5093 8033
## 5094 8035
## 5095 8042
## 5096 8043
## 5097 8044
## 5098 8045
## 5099 8057
## 5100 8092
## 5101 8093
## 5102 8094
## 5103 8117
## 5104 8118
## 5105 8119
## 5106 8121
## 5107 8125
## 5108 8126
## 5109 8128
## 5110 8131
## 5111 8132
## 5112 8136
## 5113 8137
## 5114 8138
## 5115 8142
## 5116 8143
## 5117 8147
## 5118 8153
## 5119 8154
## 5120 8157
## 5121 8158
## 5122 8167
## 5123 8169
## 5124 8183
## 5125 8188
## 5126 8189
## 5127 8190
## 5128 8191
## 5129 8195
## 5130 8196
## 5131 8197
## 5132 8199
## 5133 8207
## 5134 8225
## 5135 8228
## 5136 8232
## 5137 8235
## 5138 8236
## 5139 8238
## 5140 8239
## 5141 8241
## 5142 8253
## 5143 8254
## 5144 8261
## 5145 8264
## 5146 8266
## 5147 8268
## 5148 8270
## 5149 8275
## 5150 8290
## 5151 8293
## 5152 8302
## 5153 8327
## 5154 8331
## 5155 8335
## 5156 8336
## 5157 8337
## 5158 8338
## 5159 8340
## 5160 8341
## 5161 8360
## 5162 8361
## 5163 8362
## 5164 8363
## 5165 8364
## 5166 8366
## 5167 8368
## 5168 8369
## 5169 8370
## 5170 8371
## 5171 8372
## 5172 8373
## 5173 8375
## 5174 8376
## 5175 8378
## 5176 8379
## 5177 8380
## 5178 8382
## 5179 8383
## 5180 8385
## 5181 8387
## 5182 8391
## 5183 8402
## 5184 8405
## 5185 8410
## 5186 8424
## 5187 8425
## 5188 8426
## 5189 8427
## 5190 8446
## 5191 8447
## 5192 8450
## 5193 8451
## 5194 8454
## 5195 8456
## 5196 8458
## 5197 8459
## 5198 8461
## 5199 8462
## 5200 8463
## 5201 8464
## 5202 8465
## 5203 8477
## 5204 8481
## 5205 8482
## 5206 8484
## 5207 8487
## 5208 8491
## 5209 8492
## 5210 8493
## 5211 8494
## 5212 8495
## 5213 8500
## 5214 8501
## 5215 8502
## 5216 8506
## 5217 8507
## 5218 8511
## 5219 8512
## 5220 8518
## 5221 8521
## 5222 8526
## 5223 8528
## 5224 8529
## 5225 8530
## 5226 8531
## 5227 8532
## 5228 8533
## 5229 8534
## 5230 8535
## 5231 8542
## 5232 8571
## 5233 8574
## 5234 8575
## 5235 8577
## 5236 8578
## 5237 8580
## 5238 8581
## 5239 8582
## 5240 8587
## 5241 8588
## 5242 8591
## 5243 8593
## 5244 8596
## 5245 8600
## 5246 8601
## 5247 8604
## 5248 8605
## 5249 8607
## 5250 8609
## 5251 8610
## 5252 8611
## 5253 8614
## 5254 8617
## 5255 8620
## 5256 8622
## 5257 8623
## 5258 8626
## 5259 8632
## 5260 8633
## 5261 8636
## 5262 8638
## 5263 8640
## 5264 8641
## 5265 8643
## 5266 8644
## 5267 8645
## 5268 8650
## 5269 8656
## 5270 8665
## 5271 8666
## 5272 8667
## 5273 8670
## 5274 8677
## 5275 8684
## 5276 8685
## 5277 8690
## 5278 8695
## 5279 8711
## 5280 8712
## 5281 8713
## 5282 8714
## 5283 8718
## 5284 8720
## 5285 8724
## 5286 8727
## 5287 8730
## 5288 8738
## 5289 8743
## 5290 8748
## 5291 8753
## 5292 8754
## 5293 8755
## 5294 8765
## 5295 8771
## 5296 8772
## 5297 8773
## 5298 8774
## 5299 8778
## 5300 8781
## 5301 8782
## 5302 8783
## 5303 8784
## 5304 8795
## 5305 8796
## 5306 8798
## 5307 8799
## 5308 8800
## 5309 8804
## 5310 8807
## 5311 8808
## 5312 8809
## 5313 8810
## 5314 8813
## 5315 8814
## 5316 8815
## 5317 8827
## 5318 8830
## 5319 8831
## 5320 8832
## 5321 8833
## 5322 8835
## 5323 8836
## 5324 8838
## 5325 8840
## 5326 8844
## 5327 8848
## 5328 8860
## 5329 8861
## 5330 8864
## 5331 8865
## 5332 8866
## 5333 8869
## 5334 8870
## 5335 8873
## 5336 8874
## 5337 8875
## 5338 8879
## 5339 8880
## 5340 8894
## 5341 8905
## 5342 8906
## 5343 8907
## 5344 8908
## 5345 8910
## 5346 8911
## 5347 8912
## 5348 8914
## 5349 8915
## 5350 8916
## 5351 8917
## 5352 8918
## 5353 8919
## 5354 8920
## 5355 8921
## 5356 8928
## 5357 8933
## 5358 8934
## 5359 8937
## 5360 8938
## 5361 8939
## 5362 8943
## 5363 8946
## 5364 8947
## 5365 8948
## 5366 8949
## 5367 8950
## 5368 8951
## 5369 8952
## 5370 8954
## 5371 8955
## 5372 8957
## 5373 8958
## 5374 8959
## 5375 8961
## 5376 8964
## 5377 8965
## 5378 8966
## 5379 8967
## 5380 8968
## 5381 8969
## 5382 8970
## 5383 8972
## 5384 8973
## 5385 8974
## 5386 8977
## 5387 8978
## 5388 8979
## 5389 8981
## 5390 8982
## 5391 8983
## 5392 8984
## 5393 8985
## 5394 8987
## 5395 8989
## 5396 8998
## 5397 9004
## 5398 9005
## 5399 9008
## 5400 9010
## 5401 9018
## 5402 25746
## 5403 25750
## 5404 25752
## 5405 25753
## 5406 25757
## 5407 25769
## 5408 25771
## 5409 25773
## 5410 25782
## 5411 25788
## 5412 25795
## 5413 25797
## 5414 25805
## 5415 25825
## 5416 25826
## 5417 25827
## 5418 25833
## 5419 25834
## 5420 25841
## 5421 25850
## 5422 25855
## 5423 25856
## 5424 25865
## 5425 25870
## 5426 25886
## 5427 25887
## 5428 25898
## 5429 25905
## 5430 25906
## 5431 25923
## 5432 25927
## 5433 25937
## 5434 25940
## 5435 25946
## 5436 25947
## 5437 25952
## 5438 25959
## 5439 25962
## 5440 25963
## 5441 25996
## 5442 25999
## 5443 26002
## 5444 26003
## 5445 26038
## 5446 26048
## 5447 26052
## 5448 26059
## 5449 26073
## 5450 26078
## 5451 26082
## 5452 26084
## 5453 26085
## 5454 26095
## 5455 26116
## 5456 26122
## 5457 26124
## 5458 26131
## 5459 26133
## 5460 26142
## 5461 26147
## 5462 26150
## 5463 26151
## 5464 26152
## 5465 26158
## 5466 26159
## 5467 26169
## 5468 26171
## 5469 26172
## 5470 26176
## 5471 26183
## 5472 26184
## 5473 26195
## 5474 26198
## 5475 26225
## 5476 26231
## 5477 26236
## 5478 26237
## 5479 26242
## 5480 26249
## 5481 26258
## 5482 26265
## 5483 26283
## 5484 26285
## 5485 26303
## 5486 26308
## 5487 26313
## 5488 26317
## 5489 26322
## 5490 26326
## 5491 26340
## 5492 26344
## 5493 26347
## 5494 26350
## 5495 26357
## 5496 26359
## 5497 26365
## 5498 26366
## 5499 26375
## 5500 26386
## 5501 26391
## 5502 26394
## 5503 26399
## 5504 26401
## 5505 26409
## 5506 26413
## 5507 26422
## 5508 26429
## 5509 26444
## 5510 26453
## 5511 26464
## 5512 26467
## 5513 26471
## 5514 26472
## 5515 26492
## 5516 26498
## 5517 26504
## 5518 26510
## 5519 26523
## 5520 26524
## 5521 26527
## 5522 26528
## 5523 26539
## 5524 26542
## 5525 26547
## 5526 26554
## 5527 26555
## 5528 26562
## 5529 26564
## 5530 26567
## 5531 26578
## 5532 26585
## 5533 26587
## 5534 26590
## 5535 26593
## 5536 26599
## 5537 26603
## 5538 26606
## 5539 26612
## 5540 26614
## 5541 26622
## 5542 26629
## 5543 26630
## 5544 26631
## 5545 26645
## 5546 26649
## 5547 26662
## 5548 26676
## 5549 26680
## 5550 26681
## 5551 26686
## 5552 26693
## 5553 26694
## 5554 26695
## 5555 26696
## 5556 26700
## 5557 26701
## 5558 26704
## 5559 26712
## 5560 26713
## 5561 26717
## 5562 26726
## 5563 26729
## 5564 26732
## 5565 26736
## 5566 26741
## 5567 26743
## 5568 26745
## 5569 26750
## 5570 26761
## 5571 26764
## 5572 26765
## 5573 26776
## 5574 26777
## 5575 26778
## 5576 26782
## 5577 26791
## 5578 26792
## 5579 26796
## 5580 26797
## 5581 26810
## 5582 26812
## 5583 26819
## 5584 26828
## 5585 26838
## 5586 26840
## 5587 26849
## 5588 26854
## 5589 26861
## 5590 26865
## 5591 26870
## 5592 26871
## 5593 26875
## 5594 26887
## 5595 26900
## 5596 26901
## 5597 26903
## 5598 26913
## 5599 26928
## 5600 26940
## 5601 26947
## 5602 26958
## 5603 26965
## 5604 26974
## 5605 26985
## 5606 26999
## 5607 27002
## 5608 27003
## 5609 27006
## 5610 27008
## 5611 27020
## 5612 27022
## 5613 27032
## 5614 27036
## 5615 27074
## 5616 27075
## 5617 27105
## 5618 27124
## 5619 27134
## 5620 27140
## 5621 27155
## 5622 27156
## 5623 27176
## 5624 27178
## 5625 27186
## 5626 27193
## 5627 27246
## 5628 27251
## 5629 27255
## 5630 27266
## 5631 27306
## 5632 27311
## 5633 27317
## 5634 27320
## 5635 27328
## 5636 27329
## 5637 27368
## 5638 27369
## 5639 27370
## 5640 27373
## 5641 27397
## 5642 27408
## 5643 27416
## 5644 27420
## 5645 27426
## 5646 27434
## 5647 27441
## 5648 27450
## 5649 27473
## 5650 27478
## 5651 27480
## 5652 27482
## 5653 27491
## 5654 27513
## 5655 27523
## 5656 27537
## 5657 27539
## 5658 27549
## 5659 27555
## 5660 27563
## 5661 27584
## 5662 27592
## 5663 27595
## 5664 27604
## 5665 27611
## 5666 27618
## 5667 27619
## 5668 27627
## 5669 27644
## 5670 27660
## 5671 27664
## 5672 27667
## 5673 27674
## 5674 27683
## 5675 27685
## 5676 27689
## 5677 27692
## 5678 27695
## 5679 27704
## 5680 27705
## 5681 27706
## 5682 27708
## 5683 27716
## 5684 27721
## 5685 27722
## 5686 27728
## 5687 27731
## 5688 27741
## 5689 27744
## 5690 27746
## 5691 27751
## 5692 27762
## 5693 27768
## 5694 27769
## 5695 27772
## 5696 27773
## 5697 27776
## 5698 27778
## 5699 27784
## 5700 27788
## 5701 27790
## 5702 27793
## 5703 27801
## 5704 27802
## 5705 27803
## 5706 27808
## 5707 27815
## 5708 27816
## 5709 27820
## 5710 27821
## 5711 27822
## 5712 27826
## 5713 27829
## 5714 27830
## 5715 27831
## 5716 27834
## 5717 27837
## 5718 27838
## 5719 27839
## 5720 27846
## 5721 27850
## 5722 27865
## 5723 27866
## 5724 27869
## 5725 27873
## 5726 27878
## 5727 27879
## 5728 27882
## 5729 27899
## 5730 27904
## 5731 27905
## 5732 27912
## 5733 30707
## 5734 30745
## 5735 30749
## 5736 30793
## 5737 30803
## 5738 30810
## 5739 30812
## 5740 30816
## 5741 30818
## 5742 30820
## 5743 30822
## 5744 30825
## 5745 30846
## 5746 30848
## 5747 30850
## 5748 30883
## 5749 30890
## 5750 30892
## 5751 30894
## 5752 30898
## 5753 30994
## 5754 31000
## 5755 31030
## 5756 31038
## 5757 31049
## 5758 31083
## 5759 31086
## 5760 31101
## 5761 31114
## 5762 31116
## 5763 31123
## 5764 31150
## 5765 31162
## 5766 31184
## 5767 31193
## 5768 31221
## 5769 31223
## 5770 31225
## 5771 31260
## 5772 31297
## 5773 31309
## 5774 31364
## 5775 31367
## 5776 31410
## 5777 31420
## 5778 31422
## 5779 31424
## 5780 31427
## 5781 31431
## 5782 31433
## 5783 31435
## 5784 31437
## 5785 31445
## 5786 31522
## 5787 31545
## 5788 31553
## 5789 31590
## 5790 31610
## 5791 31617
## 5792 31658
## 5793 31660
## 5794 31664
## 5795 31685
## 5796 31692
## 5797 31694
## 5798 31696
## 5799 31698
## 5800 31700
## 5801 31702
## 5802 31737
## 5803 31804
## 5804 31851
## 5805 31867
## 5806 31878
## 5807 31903
## 5808 31909
## 5809 31921
## 5810 31923
## 5811 31925
## 5812 31952
## 5813 31973
## 5814 32009
## 5815 32011
## 5816 32017
## 5817 32019
## 5818 32022
## 5819 32029
## 5820 32031
## 5821 32058
## 5822 32060
## 5823 32116
## 5824 32139
## 5825 32160
## 5826 32179
## 5827 32213
## 5828 32234
## 5829 32243
## 5830 32289
## 5831 32291
## 5832 32294
## 5833 32296
## 5834 32298
## 5835 32300
## 5836 32302
## 5837 32314
## 5838 32371
## 5839 32387
## 5840 32392
## 5841 32440
## 5842 32442
## 5843 32456
## 5844 32460
## 5845 32469
## 5846 32511
## 5847 32515
## 5848 32554
## 5849 32582
## 5850 32584
## 5851 32587
## 5852 32589
## 5853 32596
## 5854 32598
## 5855 32600
## 5856 32620
## 5857 32632
## 5858 32649
## 5859 32657
## 5860 32659
## 5861 32666
## 5862 32728
## 5863 32743
## 5864 32770
## 5865 32799
## 5866 32862
## 5867 32875
## 5868 32892
## 5869 32898
## 5870 32906
## 5871 32914
## 5872 32917
## 5873 33004
## 5874 33085
## 5875 33090
## 5876 33124
## 5877 33126
## 5878 33132
## 5879 33138
## 5880 33145
## 5881 33148
## 5882 33154
## 5883 33158
## 5884 33162
## 5885 33164
## 5886 33166
## 5887 33171
## 5888 33188
## 5889 33201
## 5890 33237
## 5891 33294
## 5892 33310
## 5893 33312
## 5894 33421
## 5895 33435
## 5896 33437
## 5897 33493
## 5898 33495
## 5899 33499
## 5900 33558
## 5901 33564
## 5902 33615
## 5903 33629
## 5904 33639
## 5905 33644
## 5906 33646
## 5907 33649
## 5908 33660
## 5909 33669
## 5910 33672
## 5911 33677
## 5912 33679
## 5913 33681
## 5914 33683
## 5915 33725
## 5916 33779
## 5917 33781
## 5918 33794
## 5919 33801
## 5920 33815
## 5921 33826
## 5922 33830
## 5923 33834
## 5924 33836
## 5925 33838
## 5926 33880
## 5927 33893
## 5928 33896
## 5929 33903
## 5930 33966
## 5931 34018
## 5932 34048
## 5933 34072
## 5934 34129
## 5935 34143
## 5936 34148
## 5937 34150
## 5938 34153
## 5939 34162
## 5940 34164
## 5941 34271
## 5942 34292
## 5943 34312
## 5944 34319
## 5945 34321
## 5946 34323
## 5947 34326
## 5948 34330
## 5949 34332
## 5950 34334
## 5951 34336
## 5952 34338
## 5953 34359
## 5954 34397
## 5955 34405
## 5956 34437
## 5957 34450
## 5958 34482
## 5959 34520
## 5960 34523
## 5961 34528
## 5962 34530
## 5963 34532
## 5964 34534
## 5965 34536
## 5966 34540
## 5967 34542
## 5968 34800
## 5969 34811
## 5970 35015
## 5971 35347
## 5972 35807
## 5973 35836
## 5974 35957
## 5975 36276
## 5976 36289
## 5977 36363
## 5978 36397
## 5979 36401
## 5980 36477
## 5981 36509
## 5982 36517
## 5983 36519
## 5984 36525
## 5985 36527
## 5986 36529
## 5987 36533
## 5988 36535
## 5989 36537
## 5990 36708
## 5991 36850
## 5992 36931
## 5993 37211
## 5994 37240
## 5995 37380
## 5996 37382
## 5997 37384
## 5998 37386
## 5999 37444
## 6000 37475
## 6001 37477
## 6002 37495
## 6003 37545
## 6004 37720
## 6005 37727
## 6006 37729
## 6007 37731
## 6008 37733
## 6009 37736
## 6010 37739
## 6011 37741
## 6012 37830
## 6013 37844
## 6014 37853
## 6015 37857
## 6016 38038
## 6017 38061
## 6018 38095
## 6019 38159
## 6020 38164
## 6021 38198
## 6022 38294
## 6023 38304
## 6024 38388
## 6025 38583
## 6026 38798
## 6027 38886
## 6028 38992
## 6029 39183
## 6030 39231
## 6031 39234
## 6032 39292
## 6033 39307
## 6034 39381
## 6035 39400
## 6036 39414
## 6037 39427
## 6038 39435
## 6039 39444
## 6040 39446
## 6041 39449
## 6042 39516
## 6043 39715
## 6044 39801
## 6045 39869
## 6046 40148
## 6047 40278
## 6048 40339
## 6049 40412
## 6050 40414
## 6051 40478
## 6052 40491
## 6053 40578
## 6054 40581
## 6055 40583
## 6056 40597
## 6057 40614
## 6058 40617
## 6059 40629
## 6060 40697
## 6061 40723
## 6062 40732
## 6063 40815
## 6064 40819
## 6065 40826
## 6066 40851
## 6067 40870
## 6068 40946
## 6069 40955
## 6070 40959
## 6071 40962
## 6072 40966
## 6073 41014
## 6074 41285
## 6075 41527
## 6076 41566
## 6077 41569
## 6078 41571
## 6079 41573
## 6080 41617
## 6081 41627
## 6082 41712
## 6083 41716
## 6084 41724
## 6085 41769
## 6086 41828
## 6087 41863
## 6088 41997
## 6089 42002
## 6090 42004
## 6091 42007
## 6092 42009
## 6093 42011
## 6094 42013
## 6095 42015
## 6096 42018
## 6097 42176
## 6098 42191
## 6099 42285
## 6100 42418
## 6101 42422
## 6102 42556
## 6103 42559
## 6104 42602
## 6105 42632
## 6106 42638
## 6107 42718
## 6108 42723
## 6109 42725
## 6110 42728
## 6111 42730
## 6112 42732
## 6113 42734
## 6114 42738
## 6115 42740
## 6116 42761
## 6117 42943
## 6118 42946
## 6119 43289
## 6120 43333
## 6121 43376
## 6122 43396
## 6123 43419
## 6124 43460
## 6125 43549
## 6126 43556
## 6127 43558
## 6128 43560
## 6129 43677
## 6130 43679
## 6131 43684
## 6132 43708
## 6133 43744
## 6134 43836
## 6135 43869
## 6136 43871
## 6137 43904
## 6138 43908
## 6139 43912
## 6140 43914
## 6141 43917
## 6142 43919
## 6143 43921
## 6144 43928
## 6145 43930
## 6146 43932
## 6147 43936
## 6148 44004
## 6149 44020
## 6150 44022
## 6151 44189
## 6152 44191
## 6153 44193
## 6154 44195
## 6155 44197
## 6156 44199
## 6157 44204
## 6158 44225
## 6159 44238
## 6160 44241
## 6161 44243
## 6162 44301
## 6163 44397
## 6164 44399
## 6165 44511
## 6166 44555
## 6167 44597
## 6168 44613
## 6169 44633
## 6170 44657
## 6171 44665
## 6172 44694
## 6173 44709
## 6174 44719
## 6175 44731
## 6176 44759
## 6177 44761
## 6178 44773
## 6179 44777
## 6180 44788
## 6181 44828
## 6182 44840
## 6183 44849
## 6184 44851
## 6185 44864
## 6186 44889
## 6187 44929
## 6188 44931
## 6189 44937
## 6190 44943
## 6191 44972
## 6192 44974
## 6193 45028
## 6194 45062
## 6195 45074
## 6196 45081
## 6197 45106
## 6198 45175
## 6199 45183
## 6200 45186
## 6201 45208
## 6202 45210
## 6203 45221
## 6204 45361
## 6205 45382
## 6206 45431
## 6207 45440
## 6208 45442
## 6209 45447
## 6210 45499
## 6211 45501
## 6212 45503
## 6213 45517
## 6214 45635
## 6215 45648
## 6216 45658
## 6217 45662
## 6218 45666
## 6219 45668
## 6220 45672
## 6221 45720
## 6222 45722
## 6223 45726
## 6224 45728
## 6225 45730
## 6226 45732
## 6227 45880
## 6228 45928
## 6229 45950
## 6230 45969
## 6231 46062
## 6232 46105
## 6233 46231
## 6234 46322
## 6235 46335
## 6236 46337
## 6237 46347
## 6238 46367
## 6239 46530
## 6240 46559
## 6241 46572
## 6242 46574
## 6243 46578
## 6244 46664
## 6245 46723
## 6246 46772
## 6247 46850
## 6248 46855
## 6249 46862
## 6250 46865
## 6251 46948
## 6252 46965
## 6253 46967
## 6254 46970
## 6255 46972
## 6256 46974
## 6257 46976
## 6258 47044
## 6259 47099
## 6260 47122
## 6261 47124
## 6262 47200
## 6263 47202
## 6264 47254
## 6265 47261
## 6266 47382
## 6267 47384
## 6268 47404
## 6269 47423
## 6270 47446
## 6271 47465
## 6272 47491
## 6273 47516
## 6274 47518
## 6275 47538
## 6276 47566
## 6277 47610
## 6278 47629
## 6279 47640
## 6280 47644
## 6281 47646
## 6282 47721
## 6283 47725
## 6284 47736
## 6285 47774
## 6286 47793
## 6287 47810
## 6288 47894
## 6289 47937
## 6290 47950
## 6291 47952
## 6292 47970
## 6293 47978
## 6294 47997
## 6295 47999
## 6296 48001
## 6297 48032
## 6298 48043
## 6299 48045
## 6300 48082
## 6301 48142
## 6302 48150
## 6303 48161
## 6304 48214
## 6305 48262
## 6306 48304
## 6307 48319
## 6308 48322
## 6309 48326
## 6310 48342
## 6311 48385
## 6312 48394
## 6313 48412
## 6314 48414
## 6315 48416
## 6316 48516
## 6317 48518
## 6318 48520
## 6319 48560
## 6320 48593
## 6321 48596
## 6322 48598
## 6323 48638
## 6324 48649
## 6325 48678
## 6326 48696
## 6327 48698
## 6328 48738
## 6329 48741
## 6330 48744
## 6331 48774
## 6332 48780
## 6333 48783
## 6334 48872
## 6335 48877
## 6336 48879
## 6337 48883
## 6338 48982
## 6339 48997
## 6340 49013
## 6341 49110
## 6342 49130
## 6343 49132
## 6344 49220
## 6345 49263
## 6346 49265
## 6347 49272
## 6348 49274
## 6349 49276
## 6350 49278
## 6351 49280
## 6352 49284
## 6353 49286
## 6354 49314
## 6355 49347
## 6356 49389
## 6357 49396
## 6358 49524
## 6359 49530
## 6360 49647
## 6361 49649
## 6362 49651
## 6363 49666
## 6364 49688
## 6365 49735
## 6366 49772
## 6367 49793
## 6368 49822
## 6369 49824
## 6370 49910
## 6371 49917
## 6372 49932
## 6373 49957
## 6374 49961
## 6375 50003
## 6376 50005
## 6377 50064
## 6378 50068
## 6379 50147
## 6380 50158
## 6381 50160
## 6382 50189
## 6383 50274
## 6384 50354
## 6385 50356
## 6386 50440
## 6387 50442
## 6388 50445
## 6389 50514
## 6390 50601
## 6391 50610
## 6392 50613
## 6393 50658
## 6394 50685
## 6395 50740
## 6396 50792
## 6397 50794
## 6398 50796
## 6399 50798
## 6400 50800
## 6401 50802
## 6402 50804
## 6403 50806
## 6404 50842
## 6405 50851
## 6406 50872
## 6407 50912
## 6408 50923
## 6409 50942
## 6410 50954
## 6411 50999
## 6412 51024
## 6413 51037
## 6414 51077
## 6415 51080
## 6416 51082
## 6417 51084
## 6418 51086
## 6419 51088
## 6420 51091
## 6421 51167
## 6422 51174
## 6423 51255
## 6424 51314
## 6425 51357
## 6426 51412
## 6427 51471
## 6428 51498
## 6429 51540
## 6430 51545
## 6431 51562
## 6432 51573
## 6433 51575
## 6434 51662
## 6435 51666
## 6436 51694
## 6437 51698
## 6438 51705
## 6439 51709
## 6440 51834
## 6441 51884
## 6442 51903
## 6443 51925
## 6444 51927
## 6445 51931
## 6446 51933
## 6447 51935
## 6448 51937
## 6449 51939
## 6450 52042
## 6451 52241
## 6452 52245
## 6453 52279
## 6454 52281
## 6455 52283
## 6456 52287
## 6457 52299
## 6458 52319
## 6459 52328
## 6460 52375
## 6461 52435
## 6462 52458
## 6463 52462
## 6464 52579
## 6465 52604
## 6466 52644
## 6467 52668
## 6468 52694
## 6469 52712
## 6470 52715
## 6471 52722
## 6472 52724
## 6473 52730
## 6474 52767
## 6475 52784
## 6476 52831
## 6477 52867
## 6478 52885
## 6479 52950
## 6480 52952
## 6481 52967
## 6482 52973
## 6483 52975
## 6484 53000
## 6485 53022
## 6486 53024
## 6487 53121
## 6488 53123
## 6489 53125
## 6490 53127
## 6491 53129
## 6492 53138
## 6493 53140
## 6494 53143
## 6495 53161
## 6496 53280
## 6497 53318
## 6498 53322
## 6499 53326
## 6500 53355
## 6501 53435
## 6502 53447
## 6503 53450
## 6504 53453
## 6505 53460
## 6506 53464
## 6507 53466
## 6508 53468
## 6509 53519
## 6510 53550
## 6511 53574
## 6512 53578
## 6513 53808
## 6514 53883
## 6515 53894
## 6516 53921
## 6517 53953
## 6518 53956
## 6519 53972
## 6520 53974
## 6521 53993
## 6522 53996
## 6523 54001
## 6524 54004
## 6525 54116
## 6526 54121
## 6527 54185
## 6528 54190
## 6529 54256
## 6530 54259
## 6531 54272
## 6532 54274
## 6533 54276
## 6534 54281
## 6535 54286
## 6536 54354
## 6537 54372
## 6538 54503
## 6539 54617
## 6540 54648
## 6541 54686
## 6542 54732
## 6543 54734
## 6544 54736
## 6545 54745
## 6546 54768
## 6547 54771
## 6548 54780
## 6549 54785
## 6550 54787
## 6551 54796
## 6552 54881
## 6553 54908
## 6554 54910
## 6555 54934
## 6556 54962
## 6557 54995
## 6558 54997
## 6559 54999
## 6560 55020
## 6561 55036
## 6562 55052
## 6563 55061
## 6564 55067
## 6565 55069
## 6566 55071
## 6567 55080
## 6568 55094
## 6569 55110
## 6570 55112
## 6571 55116
## 6572 55118
## 6573 55156
## 6574 55167
## 6575 55190
## 6576 55205
## 6577 55207
## 6578 55232
## 6579 55241
## 6580 55245
## 6581 55247
## 6582 55250
## 6583 55253
## 6584 55259
## 6585 55261
## 6586 55267
## 6587 55269
## 6588 55272
## 6589 55274
## 6590 55276
## 6591 55278
## 6592 55280
## 6593 55282
## 6594 55290
## 6595 55292
## 6596 55294
## 6597 55363
## 6598 55391
## 6599 55442
## 6600 55444
## 6601 55451
## 6602 55492
## 6603 55553
## 6604 55555
## 6605 55577
## 6606 55620
## 6607 55687
## 6608 55721
## 6609 55729
## 6610 55765
## 6611 55768
## 6612 55805
## 6613 55814
## 6614 55820
## 6615 55830
## 6616 55844
## 6617 55854
## 6618 55872
## 6619 55908
## 6620 55946
## 6621 55995
## 6622 56003
## 6623 56012
## 6624 56022
## 6625 56060
## 6626 56145
## 6627 56152
## 6628 56156
## 6629 56169
## 6630 56171
## 6631 56174
## 6632 56176
## 6633 56251
## 6634 56274
## 6635 56286
## 6636 56333
## 6637 56336
## 6638 56339
## 6639 56367
## 6640 56379
## 6641 56389
## 6642 56563
## 6643 56587
## 6644 56607
## 6645 56620
## 6646 56715
## 6647 56757
## 6648 56775
## 6649 56782
## 6650 56788
## 6651 56801
## 6652 56805
## 6653 56837
## 6654 56869
## 6655 56908
## 6656 56915
## 6657 56921
## 6658 56941
## 6659 56949
## 6660 57147
## 6661 57183
## 6662 57243
## 6663 57274
## 6664 57326
## 6665 57368
## 6666 57421
## 6667 57499
## 6668 57502
## 6669 57504
## 6670 57522
## 6671 57526
## 6672 57528
## 6673 57532
## 6674 57536
## 6675 57637
## 6676 57640
## 6677 57669
## 6678 57772
## 6679 57843
## 6680 57910
## 6681 57951
## 6682 58025
## 6683 58047
## 6684 58078
## 6685 58103
## 6686 58105
## 6687 58107
## 6688 58154
## 6689 58156
## 6690 58162
## 6691 58191
## 6692 58287
## 6693 58291
## 6694 58293
## 6695 58295
## 6696 58297
## 6697 58299
## 6698 58301
## 6699 58303
## 6700 58306
## 6701 58309
## 6702 58315
## 6703 58332
## 6704 58347
## 6705 58351
## 6706 58376
## 6707 58404
## 6708 58425
## 6709 58492
## 6710 58554
## 6711 58559
## 6712 58627
## 6713 58655
## 6714 58783
## 6715 58803
## 6716 58806
## 6717 58826
## 6718 58839
## 6719 58842
## 6720 58870
## 6721 58876
## 6722 58879
## 6723 58964
## 6724 58972
## 6725 58975
## 6726 58998
## 6727 59014
## 6728 59016
## 6729 59018
## 6730 59022
## 6731 59026
## 6732 59037
## 6733 59103
## 6734 59118
## 6735 59126
## 6736 59129
## 6737 59131
## 6738 59141
## 6739 59143
## 6740 59220
## 6741 59258
## 6742 59295
## 6743 59306
## 6744 59315
## 6745 59333
## 6746 59336
## 6747 59369
## 6748 59387
## 6749 59421
## 6750 59429
## 6751 59440
## 6752 59501
## 6753 59549
## 6754 59604
## 6755 59615
## 6756 59667
## 6757 59725
## 6758 59727
## 6759 59731
## 6760 59738
## 6761 59784
## 6762 59810
## 6763 59814
## 6764 59900
## 6765 59915
## 6766 59947
## 6767 59985
## 6768 59995
## 6769 60030
## 6770 60037
## 6771 60040
## 6772 60046
## 6773 60069
## 6774 60072
## 6775 60074
## 6776 60126
## 6777 60128
## 6778 60141
## 6779 60161
## 6780 60289
## 6781 60291
## 6782 60293
## 6783 60303
## 6784 60333
## 6785 60363
## 6786 60365
## 6787 60389
## 6788 60397
## 6789 60408
## 6790 60471
## 6791 60487
## 6792 60514
## 6793 60516
## 6794 60522
## 6795 60538
## 6796 60647
## 6797 60674
## 6798 60684
## 6799 60735
## 6800 60737
## 6801 60753
## 6802 60756
## 6803 60760
## 6804 60766
## 6805 60803
## 6806 60818
## 6807 60832
## 6808 60857
## 6809 60885
## 6810 60894
## 6811 60904
## 6812 60937
## 6813 60941
## 6814 60943
## 6815 60950
## 6816 60979
## 6817 61011
## 6818 61024
## 6819 61026
## 6820 61071
## 6821 61073
## 6822 61123
## 6823 61132
## 6824 61160
## 6825 61167
## 6826 61210
## 6827 61236
## 6828 61240
## 6829 61246
## 6830 61248
## 6831 61250
## 6832 61255
## 6833 61257
## 6834 61262
## 6835 61289
## 6836 61319
## 6837 61323
## 6838 61348
## 6839 61350
## 6840 61352
## 6841 61394
## 6842 61401
## 6843 61406
## 6844 61465
## 6845 61628
## 6846 61692
## 6847 61697
## 6848 61705
## 6849 61729
## 6850 61818
## 6851 61986
## 6852 62008
## 6853 62081
## 6854 62113
## 6855 62155
## 6856 62208
## 6857 62250
## 6858 62293
## 6859 62299
## 6860 62336
## 6861 62344
## 6862 62374
## 6863 62376
## 6864 62383
## 6865 62394
## 6866 62434
## 6867 62437
## 6868 62439
## 6869 62511
## 6870 62553
## 6871 62586
## 6872 62644
## 6873 62662
## 6874 62718
## 6875 62792
## 6876 62799
## 6877 62834
## 6878 62836
## 6879 62849
## 6880 62956
## 6881 62970
## 6882 62999
## 6883 63033
## 6884 63062
## 6885 63072
## 6886 63082
## 6887 63113
## 6888 63131
## 6889 63179
## 6890 63222
## 6891 63239
## 6892 63276
## 6893 63312
## 6894 63393
## 6895 63433
## 6896 63436
## 6897 63479
## 6898 63515
## 6899 63540
## 6900 63768
## 6901 63808
## 6902 63826
## 6903 63853
## 6904 63859
## 6905 63876
## 6906 63992
## 6907 64010
## 6908 64030
## 6909 64032
## 6910 64034
## 6911 64114
## 6912 64116
## 6913 64167
## 6914 64197
## 6915 64231
## 6916 64249
## 6917 64278
## 6918 64285
## 6919 64497
## 6920 64499
## 6921 64501
## 6922 64575
## 6923 64614
## 6924 64620
## 6925 64622
## 6926 64695
## 6927 64716
## 6928 64839
## 6929 64957
## 6930 64969
## 6931 64983
## 6932 64993
## 6933 64997
## 6934 65037
## 6935 65088
## 6936 65126
## 6937 65130
## 6938 65133
## 6939 65135
## 6940 65188
## 6941 65193
## 6942 65216
## 6943 65225
## 6944 65230
## 6945 65261
## 6946 65350
## 6947 65359
## 6948 65514
## 6949 65577
## 6950 65585
## 6951 65588
## 6952 65596
## 6953 65601
## 6954 65631
## 6955 65642
## 6956 65651
## 6957 65682
## 6958 65685
## 6959 65738
## 6960 65740
## 6961 65802
## 6962 65810
## 6963 65882
## 6964 65982
## 6965 66090
## 6966 66097
## 6967 66171
## 6968 66198
## 6969 66203
## 6970 66240
## 6971 66297
## 6972 66310
## 6973 66320
## 6974 66335
## 6975 66371
## 6976 66427
## 6977 66509
## 6978 66511
## 6979 66544
## 6980 66665
## 6981 66744
## 6982 66783
## 6983 66785
## 6984 66798
## 6985 66915
## 6986 66934
## 6987 66943
## 6988 67087
## 6989 67168
## 6990 67186
## 6991 67193
## 6992 67197
## 6993 67255
## 6994 67267
## 6995 67295
## 6996 67361
## 6997 67408
## 6998 67508
## 6999 67534
## 7000 67618
## 7001 67665
## 7002 67695
## 7003 67734
## 7004 67788
## 7005 67799
## 7006 67888
## 7007 67923
## 7008 67997
## 7009 68073
## 7010 68135
## 7011 68157
## 7012 68159
## 7013 68194
## 7014 68205
## 7015 68237
## 7016 68269
## 7017 68319
## 7018 68347
## 7019 68358
## 7020 68444
## 7021 68480
## 7022 68486
## 7023 68522
## 7024 68536
## 7025 68552
## 7026 68554
## 7027 68597
## 7028 68600
## 7029 68650
## 7030 68659
## 7031 68791
## 7032 68793
## 7033 68835
## 7034 68848
## 7035 68872
## 7036 68886
## 7037 68932
## 7038 68945
## 7039 68952
## 7040 68954
## 7041 68959
## 7042 69069
## 7043 69118
## 7044 69122
## 7045 69131
## 7046 69134
## 7047 69140
## 7048 69211
## 7049 69224
## 7050 69227
## 7051 69251
## 7052 69275
## 7053 69278
## 7054 69304
## 7055 69306
## 7056 69394
## 7057 69406
## 7058 69436
## 7059 69453
## 7060 69469
## 7061 69481
## 7062 69495
## 7063 69516
## 7064 69524
## 7065 69526
## 7066 69529
## 7067 69604
## 7068 69606
## 7069 69640
## 7070 69644
## 7071 69654
## 7072 69685
## 7073 69712
## 7074 69720
## 7075 69746
## 7076 69757
## 7077 69784
## 7078 69805
## 7079 69844
## 7080 69849
## 7081 69860
## 7082 69904
## 7083 69951
## 7084 69953
## 7085 69988
## 7086 70015
## 7087 70159
## 7088 70183
## 7089 70206
## 7090 70208
## 7091 70286
## 7092 70293
## 7093 70301
## 7094 70305
## 7095 70334
## 7096 70336
## 7097 70361
## 7098 70451
## 7099 70492
## 7100 70521
## 7101 70533
## 7102 70545
## 7103 70565
## 7104 70599
## 7105 70637
## 7106 70641
## 7107 70663
## 7108 70687
## 7109 70697
## 7110 70703
## 7111 70708
## 7112 70728
## 7113 70862
## 7114 70932
## 7115 70946
## 7116 70984
## 7117 70990
## 7118 70994
## 7119 71033
## 7120 71057
## 7121 71106
## 7122 71108
## 7123 71129
## 7124 71131
## 7125 71135
## 7126 71147
## 7127 71156
## 7128 71160
## 7129 71205
## 7130 71211
## 7131 71248
## 7132 71252
## 7133 71254
## 7134 71264
## 7135 71268
## 7136 71282
## 7137 71302
## 7138 71304
## 7139 71327
## 7140 71341
## 7141 71379
## 7142 71429
## 7143 71438
## 7144 71453
## 7145 71462
## 7146 71464
## 7147 71466
## 7148 71468
## 7149 71484
## 7150 71494
## 7151 71500
## 7152 71518
## 7153 71520
## 7154 71530
## 7155 71535
## 7156 71550
## 7157 71579
## 7158 71619
## 7159 71640
## 7160 71668
## 7161 71732
## 7162 71745
## 7163 71810
## 7164 71823
## 7165 71838
## 7166 71867
## 7167 71899
## 7168 71902
## 7169 71910
## 7170 71970
## 7171 71999
## 7172 72011
## 7173 72104
## 7174 72129
## 7175 72142
## 7176 72165
## 7177 72167
## 7178 72171
## 7179 72178
## 7180 72224
## 7181 72226
## 7182 72294
## 7183 72308
## 7184 72330
## 7185 72356
## 7186 72378
## 7187 72395
## 7188 72405
## 7189 72407
## 7190 72424
## 7191 72479
## 7192 72489
## 7193 72554
## 7194 72591
## 7195 72601
## 7196 72603
## 7197 72605
## 7198 72624
## 7199 72641
## 7200 72692
## 7201 72694
## 7202 72696
## 7203 72701
## 7204 72714
## 7205 72720
## 7206 72731
## 7207 72733
## 7208 72737
## 7209 72874
## 7210 72919
## 7211 72921
## 7212 72982
## 7213 72998
## 7214 73015
## 7215 73017
## 7216 73023
## 7217 73042
## 7218 73106
## 7219 73160
## 7220 73211
## 7221 73266
## 7222 73268
## 7223 73290
## 7224 73319
## 7225 73321
## 7226 73323
## 7227 73344
## 7228 73386
## 7229 73431
## 7230 73488
## 7231 73499
## 7232 73501
## 7233 73515
## 7234 73569
## 7235 73676
## 7236 73681
## 7237 73741
## 7238 73804
## 7239 73808
## 7240 73822
## 7241 73854
## 7242 73858
## 7243 73876
## 7244 73881
## 7245 73929
## 7246 74075
## 7247 74089
## 7248 74095
## 7249 74154
## 7250 74226
## 7251 74228
## 7252 74275
## 7253 74282
## 7254 74324
## 7255 74342
## 7256 74370
## 7257 74450
## 7258 74452
## 7259 74458
## 7260 74508
## 7261 74510
## 7262 74530
## 7263 74532
## 7264 74545
## 7265 74553
## 7266 74580
## 7267 74624
## 7268 74647
## 7269 74668
## 7270 74677
## 7271 74683
## 7272 74685
## 7273 74688
## 7274 74696
## 7275 74698
## 7276 74727
## 7277 74750
## 7278 74754
## 7279 74789
## 7280 74791
## 7281 74795
## 7282 74851
## 7283 74868
## 7284 74916
## 7285 74946
## 7286 74948
## 7287 75341
## 7288 75389
## 7289 75395
## 7290 75416
## 7291 75446
## 7292 75803
## 7293 75805
## 7294 75813
## 7295 75816
## 7296 75947
## 7297 75985
## 7298 76030
## 7299 76054
## 7300 76060
## 7301 76077
## 7302 76091
## 7303 76093
## 7304 76143
## 7305 76173
## 7306 76175
## 7307 76251
## 7308 76293
## 7309 76301
## 7310 76738
## 7311 76743
## 7312 76751
## 7313 76763
## 7314 77177
## 7315 77191
## 7316 77201
## 7317 77206
## 7318 77233
## 7319 77266
## 7320 77364
## 7321 77414
## 7322 77421
## 7323 77427
## 7324 77455
## 7325 77561
## 7326 77667
## 7327 77688
## 7328 77709
## 7329 77795
## 7330 77798
## 7331 77800
## 7332 77841
## 7333 77846
## 7334 77866
## 7335 77881
## 7336 77893
## 7337 77931
## 7338 78034
## 7339 78039
## 7340 78041
## 7341 78088
## 7342 78103
## 7343 78105
## 7344 78116
## 7345 78142
## 7346 78160
## 7347 78174
## 7348 78209
## 7349 78218
## 7350 78264
## 7351 78266
## 7352 78316
## 7353 78349
## 7354 78467
## 7355 78469
## 7356 78499
## 7357 78544
## 7358 78574
## 7359 78620
## 7360 78626
## 7361 78637
## 7362 78703
## 7363 78746
## 7364 78772
## 7365 78836
## 7366 78893
## 7367 78959
## 7368 79006
## 7369 79008
## 7370 79057
## 7371 79073
## 7372 79091
## 7373 79132
## 7374 79134
## 7375 79139
## 7376 79185
## 7377 79224
## 7378 79242
## 7379 79251
## 7380 79259
## 7381 79274
## 7382 79293
## 7383 79299
## 7384 79333
## 7385 79357
## 7386 79428
## 7387 79501
## 7388 79536
## 7389 79553
## 7390 79572
## 7391 79590
## 7392 79592
## 7393 79677
## 7394 79684
## 7395 79695
## 7396 79702
## 7397 79798
## 7398 79868
## 7399 79879
## 7400 79895
## 7401 79897
## 7402 79946
## 7403 80083
## 7404 80094
## 7405 80124
## 7406 80126
## 7407 80139
## 7408 80162
## 7409 80166
## 7410 80219
## 7411 80241
## 7412 80363
## 7413 80454
## 7414 80463
## 7415 80478
## 7416 80489
## 7417 80549
## 7418 80551
## 7419 80553
## 7420 80572
## 7421 80584
## 7422 80586
## 7423 80590
## 7424 80615
## 7425 80693
## 7426 80727
## 7427 80748
## 7428 80831
## 7429 80834
## 7430 80839
## 7431 80846
## 7432 80858
## 7433 80860
## 7434 80862
## 7435 80864
## 7436 80880
## 7437 80906
## 7438 80917
## 7439 80969
## 7440 81018
## 7441 81087
## 7442 81132
## 7443 81156
## 7444 81158
## 7445 81191
## 7446 81229
## 7447 81257
## 7448 81383
## 7449 81417
## 7450 81456
## 7451 81512
## 7452 81520
## 7453 81535
## 7454 81537
## 7455 81562
## 7456 81564
## 7457 81591
## 7458 81681
## 7459 81782
## 7460 81784
## 7461 81786
## 7462 81788
## 7463 81791
## 7464 81819
## 7465 81831
## 7466 81834
## 7467 81845
## 7468 81847
## 7469 81910
## 7470 81932
## 7471 81949
## 7472 82041
## 7473 82053
## 7474 82088
## 7475 82093
## 7476 82095
## 7477 82152
## 7478 82167
## 7479 82169
## 7480 82202
## 7481 82242
## 7482 82366
## 7483 82378
## 7484 82459
## 7485 82461
## 7486 82499
## 7487 82527
## 7488 82534
## 7489 82641
## 7490 82667
## 7491 82684
## 7492 82744
## 7493 82765
## 7494 82767
## 7495 82848
## 7496 82852
## 7497 82854
## 7498 82857
## 7499 83086
## 7500 83132
## 7501 83134
## 7502 83177
## 7503 83270
## 7504 83349
## 7505 83369
## 7506 83374
## 7507 83480
## 7508 83601
## 7509 83613
## 7510 83796
## 7511 83803
## 7512 83827
## 7513 83910
## 7514 83969
## 7515 83976
## 7516 84152
## 7517 84156
## 7518 84187
## 7519 84189
## 7520 84240
## 7521 84246
## 7522 84273
## 7523 84374
## 7524 84392
## 7525 84414
## 7526 84512
## 7527 84523
## 7528 84553
## 7529 84601
## 7530 84615
## 7531 84637
## 7532 84696
## 7533 84716
## 7534 84772
## 7535 84799
## 7536 84844
## 7537 84847
## 7538 84942
## 7539 84944
## 7540 84950
## 7541 84952
## 7542 84954
## 7543 85020
## 7544 85022
## 7545 85025
## 7546 85056
## 7547 85131
## 7548 85179
## 7549 85213
## 7550 85259
## 7551 85261
## 7552 85295
## 7553 85316
## 7554 85334
## 7555 85342
## 7556 85354
## 7557 85367
## 7558 85394
## 7559 85397
## 7560 85399
## 7561 85401
## 7562 85412
## 7563 85414
## 7564 85438
## 7565 85510
## 7566 85565
## 7567 85736
## 7568 85774
## 7569 85780
## 7570 85788
## 7571 85796
## 7572 85881
## 7573 85885
## 7574 86000
## 7575 86014
## 7576 86028
## 7577 86059
## 7578 86066
## 7579 86068
## 7580 86142
## 7581 86190
## 7582 86237
## 7583 86279
## 7584 86286
## 7585 86290
## 7586 86293
## 7587 86295
## 7588 86298
## 7589 86320
## 7590 86332
## 7591 86345
## 7592 86347
## 7593 86355
## 7594 86377
## 7595 86487
## 7596 86504
## 7597 86548
## 7598 86593
## 7599 86628
## 7600 86644
## 7601 86668
## 7602 86721
## 7603 86781
## 7604 86815
## 7605 86817
## 7606 86833
## 7607 86835
## 7608 86864
## 7609 86880
## 7610 86882
## 7611 86892
## 7612 86898
## 7613 86911
## 7614 86922
## 7615 86960
## 7616 87028
## 7617 87192
## 7618 87194
## 7619 87197
## 7620 87222
## 7621 87232
## 7622 87234
## 7623 87287
## 7624 87298
## 7625 87304
## 7626 87306
## 7627 87413
## 7628 87430
## 7629 87444
## 7630 87483
## 7631 87485
## 7632 87520
## 7633 87522
## 7634 87529
## 7635 87660
## 7636 87785
## 7637 87834
## 7638 87867
## 7639 87869
## 7640 87876
## 7641 87960
## 7642 88069
## 7643 88094
## 7644 88108
## 7645 88125
## 7646 88129
## 7647 88140
## 7648 88163
## 7649 88179
## 7650 88235
## 7651 88267
## 7652 88272
## 7653 88327
## 7654 88345
## 7655 88356
## 7656 88405
## 7657 88448
## 7658 88515
## 7659 88593
## 7660 88672
## 7661 88697
## 7662 88699
## 7663 88744
## 7664 88746
## 7665 88785
## 7666 88810
## 7667 88812
## 7668 88911
## 7669 88932
## 7670 88954
## 7671 89028
## 7672 89030
## 7673 89039
## 7674 89047
## 7675 89072
## 7676 89085
## 7677 89087
## 7678 89090
## 7679 89118
## 7680 89190
## 7681 89208
## 7682 89281
## 7683 89305
## 7684 89343
## 7685 89386
## 7686 89388
## 7687 89427
## 7688 89470
## 7689 89492
## 7690 89580
## 7691 89582
## 7692 89586
## 7693 89678
## 7694 89745
## 7695 89753
## 7696 89759
## 7697 89761
## 7698 89774
## 7699 89804
## 7700 89837
## 7701 89840
## 7702 89862
## 7703 89864
## 7704 89898
## 7705 89904
## 7706 89939
## 7707 89945
## 7708 90057
## 7709 90243
## 7710 90245
## 7711 90249
## 7712 90343
## 7713 90345
## 7714 90353
## 7715 90357
## 7716 90374
## 7717 90376
## 7718 90384
## 7719 90403
## 7720 90405
## 7721 90428
## 7722 90430
## 7723 90439
## 7724 90469
## 7725 90471
## 7726 90522
## 7727 90524
## 7728 90528
## 7729 90531
## 7730 90576
## 7731 90600
## 7732 90603
## 7733 90630
## 7734 90647
## 7735 90717
## 7736 90719
## 7737 90738
## 7738 90746
## 7739 90769
## 7740 90809
## 7741 90863
## 7742 90866
## 7743 90888
## 7744 90890
## 7745 90943
## 7746 90945
## 7747 91077
## 7748 91079
## 7749 91094
## 7750 91104
## 7751 91126
## 7752 91128
## 7753 91233
## 7754 91261
## 7755 91266
## 7756 91273
## 7757 91323
## 7758 91325
## 7759 91337
## 7760 91353
## 7761 91355
## 7762 91386
## 7763 91414
## 7764 91470
## 7765 91483
## 7766 91485
## 7767 91488
## 7768 91500
## 7769 91529
## 7770 91535
## 7771 91542
## 7772 91571
## 7773 91622
## 7774 91628
## 7775 91630
## 7776 91653
## 7777 91658
## 7778 91660
## 7779 91666
## 7780 91671
## 7781 91688
## 7782 91690
## 7783 91784
## 7784 91842
## 7785 91860
## 7786 91869
## 7787 91873
## 7788 91890
## 7789 91935
## 7790 91947
## 7791 91974
## 7792 91976
## 7793 91978
## 7794 91981
## 7795 92008
## 7796 92046
## 7797 92048
## 7798 92094
## 7799 92192
## 7800 92198
## 7801 92234
## 7802 92243
## 7803 92259
## 7804 92264
## 7805 92309
## 7806 92348
## 7807 92391
## 7808 92420
## 7809 92422
## 7810 92427
## 7811 92439
## 7812 92475
## 7813 92494
## 7814 92507
## 7815 92509
## 7816 92535
## 7817 92637
## 7818 92643
## 7819 92665
## 7820 92674
## 7821 92681
## 7822 92694
## 7823 92730
## 7824 92760
## 7825 92938
## 7826 92954
## 7827 93006
## 7828 93008
## 7829 93022
## 7830 93040
## 7831 93114
## 7832 93134
## 7833 93139
## 7834 93193
## 7835 93208
## 7836 93242
## 7837 93270
## 7838 93272
## 7839 93287
## 7840 93297
## 7841 93320
## 7842 93326
## 7843 93363
## 7844 93443
## 7845 93502
## 7846 93510
## 7847 93512
## 7848 93563
## 7849 93598
## 7850 93610
## 7851 93721
## 7852 93723
## 7853 93740
## 7854 93766
## 7855 93790
## 7856 93805
## 7857 93819
## 7858 93831
## 7859 93838
## 7860 93840
## 7861 93855
## 7862 93980
## 7863 93982
## 7864 93988
## 7865 94011
## 7866 94015
## 7867 94018
## 7868 94070
## 7869 94122
## 7870 94130
## 7871 94150
## 7872 94160
## 7873 94262
## 7874 94266
## 7875 94323
## 7876 94325
## 7877 94405
## 7878 94478
## 7879 94494
## 7880 94503
## 7881 94661
## 7882 94677
## 7883 94735
## 7884 94777
## 7885 94780
## 7886 94799
## 7887 94810
## 7888 94833
## 7889 94864
## 7890 94867
## 7891 94896
## 7892 94919
## 7893 94931
## 7894 94953
## 7895 94959
## 7896 94985
## 7897 95004
## 7898 95067
## 7899 95088
## 7900 95105
## 7901 95135
## 7902 95145
## 7903 95147
## 7904 95149
## 7905 95163
## 7906 95165
## 7907 95167
## 7908 95170
## 7909 95175
## 7910 95182
## 7911 95193
## 7912 95199
## 7913 95201
## 7914 95207
## 7915 95218
## 7916 95307
## 7917 95309
## 7918 95311
## 7919 95313
## 7920 95377
## 7921 95441
## 7922 95449
## 7923 95473
## 7924 95475
## 7925 95497
## 7926 95499
## 7927 95508
## 7928 95510
## 7929 95519
## 7930 95543
## 7931 95558
## 7932 95583
## 7933 95624
## 7934 95633
## 7935 95654
## 7936 95690
## 7937 95717
## 7938 95720
## 7939 95738
## 7940 95744
## 7941 95761
## 7942 95771
## 7943 95780
## 7944 95796
## 7945 95839
## 7946 95843
## 7947 95858
## 7948 95873
## 7949 95875
## 7950 95939
## 7951 95949
## 7952 95965
## 7953 96004
## 7954 96007
## 7955 96020
## 7956 96079
## 7957 96084
## 7958 96110
## 7959 96114
## 7960 96121
## 7961 96150
## 7962 96281
## 7963 96283
## 7964 96373
## 7965 96411
## 7966 96417
## 7967 96430
## 7968 96432
## 7969 96448
## 7970 96471
## 7971 96488
## 7972 96518
## 7973 96520
## 7974 96530
## 7975 96563
## 7976 96567
## 7977 96588
## 7978 96606
## 7979 96608
## 7980 96610
## 7981 96616
## 7982 96655
## 7983 96691
## 7984 96726
## 7985 96728
## 7986 96737
## 7987 96811
## 7988 96815
## 7989 96821
## 7990 96829
## 7991 96832
## 7992 96861
## 7993 96917
## 7994 96935
## 7995 96945
## 7996 96964
## 7997 96975
## 7998 97024
## 7999 97168
## 8000 97172
## 8001 97188
## 8002 97194
## 8003 97225
## 8004 97230
## 8005 97285
## 8006 97304
## 8007 97306
## 8008 97328
## 8009 97470
## 8010 97643
## 8011 97665
## 8012 97701
## 8013 97742
## 8014 97752
## 8015 97757
## 8016 97785
## 8017 97836
## 8018 97858
## 8019 97860
## 8020 97866
## 8021 97870
## 8022 97904
## 8023 97913
## 8024 97921
## 8025 97923
## 8026 97936
## 8027 97938
## 8028 97950
## 8029 97988
## 8030 98061
## 8031 98083
## 8032 98122
## 8033 98124
## 8034 98154
## 8035 98160
## 8036 98175
## 8037 98203
## 8038 98230
## 8039 98239
## 8040 98243
## 8041 98279
## 8042 98296
## 8043 98361
## 8044 98491
## 8045 98499
## 8046 98503
## 8047 98585
## 8048 98604
## 8049 98607
## 8050 98623
## 8051 98633
## 8052 98697
## 8053 98799
## 8054 98809
## 8055 98836
## 8056 98908
## 8057 98961
## 8058 99005
## 8059 99007
## 8060 99030
## 8061 99087
## 8062 99106
## 8063 99112
## 8064 99114
## 8065 99117
## 8066 99122
## 8067 99130
## 8068 99145
## 8069 99149
## 8070 99191
## 8071 99415
## 8072 99437
## 8073 99532
## 8074 99574
## 8075 99636
## 8076 99638
## 8077 99721
## 8078 99728
## 8079 99750
## 8080 99764
## 8081 99813
## 8082 99846
## 8083 99853
## 8084 99910
## 8085 99917
## 8086 99992
## 8087 100044
## 8088 100068
## 8089 100083
## 8090 100106
## 8091 100159
## 8092 100163
## 8093 100194
## 8094 100226
## 8095 100277
## 8096 100302
## 8097 100304
## 8098 100306
## 8099 100326
## 8100 100383
## 8101 100390
## 8102 100397
## 8103 100487
## 8104 100498
## 8105 100507
## 8106 100527
## 8107 100553
## 8108 100556
## 8109 100579
## 8110 100611
## 8111 100714
## 8112 100737
## 8113 100810
## 8114 100843
## 8115 100882
## 8116 100906
## 8117 101025
## 8118 101070
## 8119 101072
## 8120 101074
## 8121 101076
## 8122 101088
## 8123 101112
## 8124 101142
## 8125 101283
## 8126 101360
## 8127 101362
## 8128 101415
## 8129 101423
## 8130 101525
## 8131 101529
## 8132 101531
## 8133 101577
## 8134 101612
## 8135 101739
## 8136 101741
## 8137 101765
## 8138 101864
## 8139 101884
## 8140 101895
## 8141 101962
## 8142 101973
## 8143 102007
## 8144 102025
## 8145 102033
## 8146 102058
## 8147 102066
## 8148 102070
## 8149 102084
## 8150 102088
## 8151 102123
## 8152 102125
## 8153 102165
## 8154 102194
## 8155 102217
## 8156 102278
## 8157 102338
## 8158 102378
## 8159 102407
## 8160 102445
## 8161 102481
## 8162 102590
## 8163 102602
## 8164 102666
## 8165 102684
## 8166 102686
## 8167 102716
## 8168 102720
## 8169 102735
## 8170 102742
## 8171 102747
## 8172 102749
## 8173 102760
## 8174 102800
## 8175 102802
## 8176 102819
## 8177 102823
## 8178 102852
## 8179 102880
## 8180 102903
## 8181 102984
## 8182 102993
## 8183 103027
## 8184 103042
## 8185 103048
## 8186 103075
## 8187 103085
## 8188 103107
## 8189 103137
## 8190 103141
## 8191 103171
## 8192 103210
## 8193 103219
## 8194 103221
## 8195 103228
## 8196 103233
## 8197 103235
## 8198 103245
## 8199 103249
## 8200 103253
## 8201 103335
## 8202 103339
## 8203 103341
## 8204 103366
## 8205 103372
## 8206 103384
## 8207 103449
## 8208 103483
## 8209 103502
## 8210 103539
## 8211 103543
## 8212 103596
## 8213 103602
## 8214 103606
## 8215 103609
## 8216 103624
## 8217 103655
## 8218 103685
## 8219 103688
## 8220 103755
## 8221 103772
## 8222 103801
## 8223 103810
## 8224 103819
## 8225 103865
## 8226 103883
## 8227 103980
## 8228 103984
## 8229 104017
## 8230 104069
## 8231 104074
## 8232 104076
## 8233 104078
## 8234 104129
## 8235 104141
## 8236 104211
## 8237 104218
## 8238 104241
## 8239 104243
## 8240 104245
## 8241 104272
## 8242 104283
## 8243 104303
## 8244 104337
## 8245 104339
## 8246 104374
## 8247 104419
## 8248 104457
## 8249 104644
## 8250 104760
## 8251 104780
## 8252 104837
## 8253 104841
## 8254 104863
## 8255 104875
## 8256 104879
## 8257 104906
## 8258 104908
## 8259 104913
## 8260 104925
## 8261 104944
## 8262 105020
## 8263 105037
## 8264 105121
## 8265 105197
## 8266 105211
## 8267 105213
## 8268 105246
## 8269 105250
## 8270 105254
## 8271 105325
## 8272 105351
## 8273 105355
## 8274 105468
## 8275 105504
## 8276 105540
## 8277 105585
## 8278 105593
## 8279 105653
## 8280 105720
## 8281 105731
## 8282 105746
## 8283 105755
## 8284 105801
## 8285 105835
## 8286 105844
## 8287 105954
## 8288 106002
## 8289 106062
## 8290 106072
## 8291 106100
## 8292 106144
## 8293 106330
## 8294 106438
## 8295 106441
## 8296 106487
## 8297 106489
## 8298 106491
## 8299 106540
## 8300 106542
## 8301 106594
## 8302 106642
## 8303 106648
## 8304 106696
## 8305 106766
## 8306 106782
## 8307 106785
## 8308 106839
## 8309 106873
## 8310 106883
## 8311 106889
## 8312 106916
## 8313 106918
## 8314 106920
## 8315 106927
## 8316 107013
## 8317 107069
## 8318 107141
## 8319 107159
## 8320 107314
## 8321 107338
## 8322 107348
## 8323 107406
## 8324 107408
## 8325 107410
## 8326 107412
## 8327 107436
## 8328 107447
## 8329 107449
## 8330 107462
## 8331 107565
## 8332 107630
## 8333 107702
## 8334 107723
## 8335 107771
## 8336 107780
## 8337 107846
## 8338 107945
## 8339 107951
## 8340 107953
## 8341 107962
## 8342 107997
## 8343 107999
## 8344 108078
## 8345 108090
## 8346 108156
## 8347 108188
## 8348 108190
## 8349 108192
## 8350 108540
## 8351 108601
## 8352 108689
## 8353 108715
## 8354 108727
## 8355 108729
## 8356 108795
## 8357 108928
## 8358 108932
## 8359 108945
## 8360 108949
## 8361 108981
## 8362 109042
## 8363 109161
## 8364 109183
## 8365 109187
## 8366 109191
## 8367 109241
## 8368 109282
## 8369 109295
## 8370 109313
## 8371 109317
## 8372 109372
## 8373 109374
## 8374 109383
## 8375 109416
## 8376 109483
## 8377 109487
## 8378 109569
## 8379 109576
## 8380 109578
## 8381 109596
## 8382 109633
## 8383 109673
## 8384 109687
## 8385 109723
## 8386 109846
## 8387 109848
## 8388 109850
## 8389 109853
## 8390 109864
## 8391 109895
## 8392 109897
## 8393 109941
## 8394 109968
## 8395 109971
## 8396 110102
## 8397 110127
## 8398 110130
## 8399 110281
## 8400 110286
## 8401 110297
## 8402 110330
## 8403 110350
## 8404 110387
## 8405 110501
## 8406 110541
## 8407 110553
## 8408 110586
## 8409 110591
## 8410 110603
## 8411 110611
## 8412 110655
## 8413 110669
## 8414 110718
## 8415 110730
## 8416 110746
## 8417 110771
## 8418 110773
## 8419 110781
## 8420 110826
## 8421 110882
## 8422 111113
## 8423 111146
## 8424 111320
## 8425 111360
## 8426 111362
## 8427 111364
## 8428 111375
## 8429 111384
## 8430 111443
## 8431 111551
## 8432 111617
## 8433 111622
## 8434 111659
## 8435 111663
## 8436 111680
## 8437 111732
## 8438 111743
## 8439 111759
## 8440 111781
## 8441 111785
## 8442 111795
## 8443 111800
## 8444 111817
## 8445 111844
## 8446 111913
## 8447 111921
## 8448 112006
## 8449 112070
## 8450 112138
## 8451 112171
## 8452 112175
## 8453 112183
## 8454 112290
## 8455 112303
## 8456 112316
## 8457 112326
## 8458 112334
## 8459 112370
## 8460 112421
## 8461 112450
## 8462 112454
## 8463 112460
## 8464 112497
## 8465 112512
## 8466 112515
## 8467 112552
## 8468 112556
## 8469 112580
## 8470 112623
## 8471 112727
## 8472 112749
## 8473 112788
## 8474 112804
## 8475 112818
## 8476 112852
## 8477 112868
## 8478 112897
## 8479 112911
## 8480 112940
## 8481 113159
## 8482 113186
## 8483 113207
## 8484 113225
## 8485 113252
## 8486 113275
## 8487 113278
## 8488 113280
## 8489 113313
## 8490 113345
## 8491 113348
## 8492 113350
## 8493 113374
## 8494 113378
## 8495 113394
## 8496 113416
## 8497 113453
## 8498 113532
## 8499 113565
## 8500 113573
## 8501 113604
## 8502 113705
## 8503 113741
## 8504 113780
## 8505 113829
## 8506 113849
## 8507 113862
## 8508 114028
## 8509 114044
## 8510 114060
## 8511 114066
## 8512 114074
## 8513 114126
## 8514 114180
## 8515 114184
## 8516 114246
## 8517 114265
## 8518 114335
## 8519 114396
## 8520 114494
## 8521 114554
## 8522 114601
## 8523 114627
## 8524 114662
## 8525 114670
## 8526 114678
## 8527 114707
## 8528 114713
## 8529 114762
## 8530 114795
## 8531 114818
## 8532 114847
## 8533 114925
## 8534 114935
## 8535 115065
## 8536 115111
## 8537 115122
## 8538 115149
## 8539 115151
## 8540 115170
## 8541 115203
## 8542 115210
## 8543 115216
## 8544 115231
## 8545 115502
## 8546 115569
## 8547 115617
## 8548 115664
## 8549 115667
## 8550 115680
## 8551 115713
## 8552 115727
## 8553 115819
## 8554 115828
## 8555 115877
## 8556 115969
## 8557 116044
## 8558 116138
## 8559 116169
## 8560 116207
## 8561 116411
## 8562 116413
## 8563 116419
## 8564 116505
## 8565 116529
## 8566 116668
## 8567 116718
## 8568 116724
## 8569 116738
## 8570 116797
## 8571 116799
## 8572 116817
## 8573 116823
## 8574 116849
## 8575 116887
## 8576 116897
## 8577 116941
## 8578 116963
## 8579 116977
## 8580 116985
## 8581 117107
## 8582 117109
## 8583 117133
## 8584 117176
## 8585 117192
## 8586 117364
## 8587 117368
## 8588 117444
## 8589 117466
## 8590 117511
## 8591 117529
## 8592 117531
## 8593 117533
## 8594 117545
## 8595 117572
## 8596 117590
## 8597 117630
## 8598 117646
## 8599 117849
## 8600 117851
## 8601 117867
## 8602 117877
## 8603 117881
## 8604 117887
## 8605 117895
## 8606 117922
## 8607 118082
## 8608 118166
## 8609 118198
## 8610 118248
## 8611 118270
## 8612 118290
## 8613 118326
## 8614 118354
## 8615 118512
## 8616 118530
## 8617 118572
## 8618 118696
## 8619 118700
## 8620 118702
## 8621 118706
## 8622 118784
## 8623 118814
## 8624 118834
## 8625 118862
## 8626 118880
## 8627 118888
## 8628 118894
## 8629 118896
## 8630 118900
## 8631 118924
## 8632 118930
## 8633 118985
## 8634 118997
## 8635 119068
## 8636 119141
## 8637 119145
## 8638 119153
## 8639 119155
## 8640 119167
## 8641 119218
## 8642 119655
## 8643 119714
## 8644 119828
## 8645 119964
## 8646 120130
## 8647 120138
## 8648 120466
## 8649 120478
## 8650 120625
## 8651 120635
## 8652 120637
## 8653 120761
## 8654 120783
## 8655 120799
## 8656 120807
## 8657 120813
## 8658 120827
## 8659 120919
## 8660 121007
## 8661 121035
## 8662 121097
## 8663 121099
## 8664 121129
## 8665 121169
## 8666 121171
## 8667 121231
## 8668 121253
## 8669 121338
## 8670 121342
## 8671 121372
## 8672 121374
## 8673 121469
## 8674 121715
## 8675 121781
## 8676 122092
## 8677 122246
## 8678 122260
## 8679 122433
## 8680 122490
## 8681 122627
## 8682 122882
## 8683 122884
## 8684 122886
## 8685 122888
## 8686 122890
## 8687 122892
## 8688 122896
## 8689 122898
## 8690 122900
## 8691 122902
## 8692 122904
## 8693 122906
## 8694 122912
## 8695 122916
## 8696 122918
## 8697 122920
## 8698 122922
## 8699 122924
## 8700 122926
## 8701 122932
## 8702 123200
## 8703 123310
## 8704 123545
## 8705 123553
## 8706 123947
## 8707 124273
## 8708 124404
## 8709 124484
## 8710 124851
## 8711 124853
## 8712 124859
## 8713 125221
## 8714 125914
## 8715 125916
## 8716 125970
## 8717 125974
## 8718 126088
## 8719 126090
## 8720 126142
## 8721 126420
## 8722 126426
## 8723 126430
## 8724 126482
## 8725 126548
## 8726 126577
## 8727 126921
## 8728 127052
## 8729 127096
## 8730 127098
## 8731 127108
## 8732 127114
## 8733 127116
## 8734 127130
## 8735 127132
## 8736 127134
## 8737 127136
## 8738 127146
## 8739 127152
## 8740 127164
## 8741 127172
## 8742 127180
## 8743 127184
## 8744 127194
## 8745 127198
## 8746 127202
## 8747 127204
## 8748 127212
## 8749 127298
## 8750 127319
## 8751 127323
## 8752 127390
## 8753 128087
## 8754 128089
## 8755 128097
## 8756 128099
## 8757 128197
## 8758 128360
## 8759 128366
## 8760 128488
## 8761 128512
## 8762 128520
## 8763 128542
## 8764 128592
## 8765 128594
## 8766 128620
## 8767 128695
## 8768 128736
## 8769 128832
## 8770 128838
## 8771 128842
## 8772 128852
## 8773 128900
## 8774 128902
## 8775 128908
## 8776 128914
## 8777 128944
## 8778 128968
## 8779 128975
## 8780 128991
## 8781 129011
## 8782 129229
## 8783 129250
## 8784 129313
## 8785 129333
## 8786 129354
## 8787 129397
## 8788 129428
## 8789 129514
## 8790 129657
## 8791 129659
## 8792 129737
## 8793 129779
## 8794 129937
## 8795 130050
## 8796 130052
## 8797 130073
## 8798 130083
## 8799 130087
## 8800 130444
## 8801 130450
## 8802 130452
## 8803 130482
## 8804 130490
## 8805 130498
## 8806 130518
## 8807 130520
## 8808 130576
## 8809 130578
## 8810 130634
## 8811 130686
## 8812 130840
## 8813 130842
## 8814 130970
## 8815 130976
## 8816 130978
## 8817 131013
## 8818 131023
## 8819 131098
## 8820 131104
## 8821 131130
## 8822 131237
## 8823 131439
## 8824 131480
## 8825 131578
## 8826 131610
## 8827 131656
## 8828 131714
## 8829 131724
## 8830 131739
## 8831 131749
## 8832 131796
## 8833 131826
## 8834 131920
## 8835 131934
## 8836 132046
## 8837 132084
## 8838 132153
## 8839 132157
## 8840 132333
## 8841 132335
## 8842 132362
## 8843 132422
## 8844 132424
## 8845 132454
## 8846 132462
## 8847 132488
## 8848 132496
## 8849 132584
## 8850 132618
## 8851 132660
## 8852 132796
## 8853 132800
## 8854 132888
## 8855 133115
## 8856 133195
## 8857 133217
## 8858 133281
## 8859 133365
## 8860 133377
## 8861 133419
## 8862 133545
## 8863 133645
## 8864 133712
## 8865 133716
## 8866 133771
## 8867 133780
## 8868 133782
## 8869 133798
## 8870 133802
## 8871 133832
## 8872 133867
## 8873 133879
## 8874 134004
## 8875 134019
## 8876 134021
## 8877 134041
## 8878 134095
## 8879 134109
## 8880 134130
## 8881 134158
## 8882 134170
## 8883 134184
## 8884 134214
## 8885 134246
## 8886 134248
## 8887 134252
## 8888 134326
## 8889 134334
## 8890 134368
## 8891 134393
## 8892 134515
## 8893 134524
## 8894 134528
## 8895 134775
## 8896 134783
## 8897 134796
## 8898 134808
## 8899 134847
## 8900 134849
## 8901 134853
## 8902 134859
## 8903 134861
## 8904 134881
## 8905 135133
## 8906 135137
## 8907 135143
## 8908 135198
## 8909 135216
## 8910 135288
## 8911 135436
## 8912 135456
## 8913 135518
## 8914 135532
## 8915 135534
## 8916 135536
## 8917 135567
## 8918 135569
## 8919 135777
## 8920 135787
## 8921 135803
## 8922 135815
## 8923 135861
## 8924 135885
## 8925 135887
## 8926 135937
## 8927 136012
## 8928 136016
## 8929 136018
## 8930 136020
## 8931 136024
## 8932 136297
## 8933 136305
## 8934 136341
## 8935 136353
## 8936 136355
## 8937 136359
## 8938 136443
## 8939 136445
## 8940 136447
## 8941 136449
## 8942 136469
## 8943 136471
## 8944 136503
## 8945 136511
## 8946 136540
## 8947 136556
## 8948 136562
## 8949 136564
## 8950 136598
## 8951 136602
## 8952 136654
## 8953 136664
## 8954 136666
## 8955 136778
## 8956 136786
## 8957 136800
## 8958 136816
## 8959 136834
## 8960 136838
## 8961 136840
## 8962 136850
## 8963 136859
## 8964 136864
## 8965 136912
## 8966 136958
## 8967 137218
## 8968 137337
## 8969 137345
## 8970 137517
## 8971 137595
## 8972 137857
## 8973 137859
## 8974 137863
## 8975 138036
## 8976 138186
## 8977 138204
## 8978 138208
## 8979 138210
## 8980 138396
## 8981 138546
## 8982 138610
## 8983 138632
## 8984 138702
## 8985 138798
## 8986 138835
## 8987 138966
## 8988 139052
## 8989 139130
## 8990 139157
## 8991 139385
## 8992 139415
## 8993 139511
## 8994 139640
## 8995 139642
## 8996 139644
## 8997 139655
## 8998 139717
## 8999 139747
## 9000 139855
## 9001 139857
## 9002 139859
## 9003 139915
## 9004 139994
## 9005 140016
## 9006 140038
## 9007 140110
## 9008 140133
## 9009 140162
## 9010 140174
## 9011 140237
## 9012 140247
## 9013 140265
## 9014 140267
## 9015 140289
## 9016 140301
## 9017 140359
## 9018 140481
## 9019 140523
## 9020 140525
## 9021 140541
## 9022 140561
## 9023 140627
## 9024 140711
## 9025 140715
## 9026 140725
## 9027 140737
## 9028 140816
## 9029 140850
## 9030 140852
## 9031 140928
## 9032 140956
## 9033 141004
## 9034 141131
## 9035 141400
## 9036 141408
## 9037 141422
## 9038 141513
## 9039 141544
## 9040 141646
## 9041 141668
## 9042 141688
## 9043 141718
## 9044 141749
## 9045 141799
## 9046 141810
## 9047 141816
## 9048 141818
## 9049 141820
## 9050 141830
## 9051 141836
## 9052 141844
## 9053 141846
## 9054 141866
## 9055 141890
## 9056 141928
## 9057 141994
## 9058 142020
## 9059 142056
## 9060 142074
## 9061 142115
## 9062 142196
## 9063 142222
## 9064 142366
## 9065 142372
## 9066 142420
## 9067 142422
## 9068 142424
## 9069 142444
## 9070 142448
## 9071 142456
## 9072 142488
## 9073 142507
## 9074 142509
## 9075 142536
## 9076 142550
## 9077 142558
## 9078 142598
## 9079 142602
## 9080 142831
## 9081 142961
## 9082 142997
## 9083 143001
## 9084 143031
## 9085 143245
## 9086 143255
## 9087 143257
## 9088 143355
## 9089 143365
## 9090 143367
## 9091 143385
## 9092 143410
## 9093 143458
## 9094 143472
## 9095 143511
## 9096 143525
## 9097 143559
## 9098 143859
## 9099 143896
## 9100 143969
## 9101 144210
## 9102 144222
## 9103 144262
## 9104 144352
## 9105 144478
## 9106 144522
## 9107 144606
## 9108 144620
## 9109 144714
## 9110 144716
## 9111 144734
## 9112 144976
## 9113 145080
## 9114 145150
## 9115 145283
## 9116 145418
## 9117 145491
## 9118 145724
## 9119 145745
## 9120 145839
## 9121 145935
## 9122 145951
## 9123 145994
## 9124 146024
## 9125 146028
## 9126 146210
## 9127 146244
## 9128 146309
## 9129 146656
## 9130 146662
## 9131 146682
## 9132 146684
## 9133 146688
## 9134 146730
## 9135 146986
## 9136 147002
## 9137 147142
## 9138 147196
## 9139 147250
## 9140 147282
## 9141 147286
## 9142 147300
## 9143 147326
## 9144 147328
## 9145 147330
## 9146 147372
## 9147 147374
## 9148 147376
## 9149 147378
## 9150 147380
## 9151 147382
## 9152 147384
## 9153 147410
## 9154 147657
## 9155 147662
## 9156 147936
## 9157 148166
## 9158 148172
## 9159 148238
## 9160 148424
## 9161 148482
## 9162 148592
## 9163 148626
## 9164 148632
## 9165 148652
## 9166 148667
## 9167 148671
## 9168 148675
## 9169 148709
## 9170 148775
## 9171 148881
## 9172 148888
## 9173 148956
## 9174 148978
## 9175 148982
## 9176 149011
## 9177 149144
## 9178 149146
## 9179 149330
## 9180 149334
## 9181 149350
## 9182 149352
## 9183 149354
## 9184 149380
## 9185 149406
## 9186 149508
## 9187 149566
## 9188 149590
## 9189 149612
## 9190 149830
## 9191 149902
## 9192 150254
## 9193 150401
## 9194 150548
## 9195 150554
## 9196 150596
## 9197 150604
## 9198 150696
## 9199 150993
## 9200 151311
## 9201 151315
## 9202 151317
## 9203 151455
## 9204 151479
## 9205 151501
## 9206 151557
## 9207 151559
## 9208 151653
## 9209 151687
## 9210 151695
## 9211 151739
## 9212 151745
## 9213 151759
## 9214 151763
## 9215 151769
## 9216 151777
## 9217 151781
## 9218 152037
## 9219 152063
## 9220 152065
## 9221 152071
## 9222 152077
## 9223 152079
## 9224 152081
## 9225 152083
## 9226 152085
## 9227 152091
## 9228 152105
## 9229 152173
## 9230 152270
## 9231 152284
## 9232 152372
## 9233 152591
## 9234 152658
## 9235 152711
## 9236 152970
## 9237 153070
## 9238 153236
## 9239 153386
## 9240 153408
## 9241 154065
## 9242 154358
## 9243 154975
## 9244 155064
## 9245 155168
## 9246 155288
## 9247 155358
## 9248 155509
## 9249 155589
## 9250 155659
## 9251 155743
## 9252 155774
## 9253 155812
## 9254 155820
## 9255 155892
## 9256 156025
## 9257 156371
## 9258 156387
## 9259 156553
## 9260 156605
## 9261 156607
## 9262 156609
## 9263 156675
## 9264 156706
## 9265 156726
## 9266 156781
## 9267 156783
## 9268 157108
## 9269 157110
## 9270 157122
## 9271 157130
## 9272 157172
## 9273 157200
## 9274 157270
## 9275 157296
## 9276 157312
## 9277 157340
## 9278 157369
## 9279 157407
## 9280 157432
## 9281 157699
## 9282 157775
## 9283 157865
## 9284 158022
## 9285 158027
## 9286 158035
## 9287 158238
## 9288 158254
## 9289 158388
## 9290 158398
## 9291 158402
## 9292 158528
## 9293 158721
## 9294 158783
## 9295 158813
## 9296 158830
## 9297 158842
## 9298 158872
## 9299 158874
## 9300 158882
## 9301 158956
## 9302 158966
## 9303 158972
## 9304 159061
## 9305 159069
## 9306 159077
## 9307 159093
## 9308 159161
## 9309 159193
## 9310 159403
## 9311 159415
## 9312 159441
## 9313 159510
## 9314 159690
## 9315 159717
## 9316 159755
## 9317 159779
## 9318 159811
## 9319 159817
## 9320 159849
## 9321 159858
## 9322 159976
## 9323 160080
## 9324 160271
## 9325 160289
## 9326 160341
## 9327 160400
## 9328 160422
## 9329 160438
## 9330 160440
## 9331 160527
## 9332 160563
## 9333 160565
## 9334 160567
## 9335 160569
## 9336 160571
## 9337 160573
## 9338 160644
## 9339 160646
## 9340 160684
## 9341 160718
## 9342 160730
## 9343 160836
## 9344 160848
## 9345 160872
## 9346 160954
## 9347 160978
## 9348 160980
## 9349 161008
## 9350 161024
## 9351 161032
## 9352 161044
## 9353 161127
## 9354 161131
## 9355 161290
## 9356 161354
## 9357 161580
## 9358 161582
## 9359 161594
## 9360 161634
## 9361 161830
## 9362 161918
## 9363 161922
## 9364 161966
## 9365 162082
## 9366 162344
## 9367 162350
## 9368 162414
## 9369 162478
## 9370 162578
## 9371 162590
## 9372 162598
## 9373 162600
## 9374 162602
## 9375 162606
## 9376 162828
## 9377 162968
## 9378 162982
## 9379 163056
## 9380 163072
## 9381 163112
## 9382 163134
## 9383 163386
## 9384 163527
## 9385 163639
## 9386 163645
## 9387 163653
## 9388 163809
## 9389 163925
## 9390 163937
## 9391 163981
## 9392 163985
## 9393 164179
## 9394 164200
## 9395 164226
## 9396 164280
## 9397 164367
## 9398 164375
## 9399 164540
## 9400 164647
## 9401 164655
## 9402 164707
## 9403 164753
## 9404 164881
## 9405 164909
## 9406 164917
## 9407 165075
## 9408 165101
## 9409 165103
## 9410 165139
## 9411 165343
## 9412 165347
## 9413 165483
## 9414 165489
## 9415 165529
## 9416 165549
## 9417 165551
## 9418 165635
## 9419 165639
## 9420 165645
## 9421 165671
## 9422 165843
## 9423 165947
## 9424 165959
## 9425 165969
## 9426 166015
## 9427 166024
## 9428 166183
## 9429 166203
## 9430 166291
## 9431 166461
## 9432 166492
## 9433 166526
## 9434 166528
## 9435 166534
## 9436 166558
## 9437 166568
## 9438 166635
## 9439 166643
## 9440 166705
## 9441 166946
## 9442 167018
## 9443 167036
## 9444 167064
## 9445 167296
## 9446 167370
## 9447 167380
## 9448 167538
## 9449 167570
## 9450 167634
## 9451 167706
## 9452 167732
## 9453 167746
## 9454 167772
## 9455 167790
## 9456 167854
## 9457 168026
## 9458 168090
## 9459 168144
## 9460 168174
## 9461 168218
## 9462 168248
## 9463 168250
## 9464 168252
## 9465 168254
## 9466 168266
## 9467 168326
## 9468 168350
## 9469 168358
## 9470 168366
## 9471 168418
## 9472 168456
## 9473 168492
## 9474 168608
## 9475 168612
## 9476 168632
## 9477 168712
## 9478 168846
## 9479 169034
## 9480 169180
## 9481 169670
## 9482 169904
## 9483 169912
## 9484 169958
## 9485 169982
## 9486 169984
## 9487 169992
## 9488 170289
## 9489 170297
## 9490 170355
## 9491 170357
## 9492 170399
## 9493 170401
## 9494 170411
## 9495 170551
## 9496 170597
## 9497 170697
## 9498 170705
## 9499 170777
## 9500 170813
## 9501 170817
## 9502 170827
## 9503 170837
## 9504 170875
## 9505 170897
## 9506 170907
## 9507 170937
## 9508 170939
## 9509 170945
## 9510 170957
## 9511 170993
## 9512 171011
## 9513 171023
## 9514 171251
## 9515 171495
## 9516 171631
## 9517 171695
## 9518 171701
## 9519 171749
## 9520 171751
## 9521 171759
## 9522 171763
## 9523 171765
## 9524 171811
## 9525 171867
## 9526 171891
## 9527 171917
## 9528 172013
## 9529 172215
## 9530 172229
## 9531 172233
## 9532 172253
## 9533 172321
## 9534 172461
## 9535 172497
## 9536 172547
## 9537 172577
## 9538 172583
## 9539 172585
## 9540 172587
## 9541 172589
## 9542 172591
## 9543 172637
## 9544 172705
## 9545 172793
## 9546 172825
## 9547 172875
## 9548 172881
## 9549 172887
## 9550 172909
## 9551 173145
## 9552 173197
## 9553 173205
## 9554 173209
## 9555 173235
## 9556 173253
## 9557 173255
## 9558 173291
## 9559 173307
## 9560 173317
## 9561 173351
## 9562 173355
## 9563 173535
## 9564 173619
## 9565 173751
## 9566 173873
## 9567 173925
## 9568 173941
## 9569 173963
## 9570 174045
## 9571 174053
## 9572 174055
## 9573 174141
## 9574 174403
## 9575 174479
## 9576 174551
## 9577 174681
## 9578 174727
## 9579 174737
## 9580 174815
## 9581 174909
## 9582 175197
## 9583 175199
## 9584 175293
## 9585 175303
## 9586 175387
## 9587 175397
## 9588 175401
## 9589 175431
## 9590 175435
## 9591 175475
## 9592 175485
## 9593 175569
## 9594 175577
## 9595 175585
## 9596 175661
## 9597 175693
## 9598 175705
## 9599 175707
## 9600 175743
## 9601 175781
## 9602 176051
## 9603 176101
## 9604 176329
## 9605 176371
## 9606 176389
## 9607 176413
## 9608 176415
## 9609 176419
## 9610 176423
## 9611 176579
## 9612 176601
## 9613 176621
## 9614 176751
## 9615 176805
## 9616 176935
## 9617 177185
## 9618 177285
## 9619 177593
## 9620 177615
## 9621 177763
## 9622 177765
## 9623 177939
## 9624 178061
## 9625 178111
## 9626 178129
## 9627 178323
## 9628 178613
## 9629 178615
## 9630 178827
## 9631 179053
## 9632 179073
## 9633 179119
## 9634 179133
## 9635 179135
## 9636 179211
## 9637 179401
## 9638 179427
## 9639 179491
## 9640 179511
## 9641 179709
## 9642 179749
## 9643 179813
## 9644 179815
## 9645 179817
## 9646 179819
## 9647 179953
## 9648 180031
## 9649 180045
## 9650 180095
## 9651 180231
## 9652 180263
## 9653 180265
## 9654 180297
## 9655 180497
## 9656 180777
## 9657 180985
## 9658 180987
## 9659 181065
## 9660 181139
## 9661 181315
## 9662 181413
## 9663 181659
## 9664 181719
## 9665 182293
## 9666 182297
## 9667 182299
## 9668 182639
## 9669 182715
## 9670 182727
## 9671 182731
## 9672 182749
## 9673 182793
## 9674 182823
## 9675 183011
## 9676 183197
## 9677 183199
## 9678 183227
## 9679 183295
## 9680 183301
## 9681 183317
## 9682 183611
## 9683 183635
## 9684 183897
## 9685 183911
## 9686 183959
## 9687 184015
## 9688 184053
## 9689 184245
## 9690 184253
## 9691 184257
## 9692 184349
## 9693 184471
## 9694 184641
## 9695 184721
## 9696 184791
## 9697 184931
## 9698 184987
## 9699 184997
## 9700 185029
## 9701 185031
## 9702 185033
## 9703 185135
## 9704 185435
## 9705 185473
## 9706 185585
## 9707 186587
## 9708 187031
## 9709 187541
## 9710 187593
## 9711 187595
## 9712 187717
## 9713 188189
## 9714 188301
## 9715 188675
## 9716 188751
## 9717 188797
## 9718 188833
## 9719 189043
## 9720 189111
## 9721 189333
## 9722 189381
## 9723 189547
## 9724 189713
## 9725 190183
## 9726 190207
## 9727 190209
## 9728 190213
## 9729 190215
## 9730 190219
## 9731 190221
## 9732 191005
## 9733 193565
## 9734 193567
## 9735 193571
## 9736 193573
## 9737 193579
## 9738 193581
## 9739 193583
## 9740 193585
## 9741 193587
## 9742 193609
## title
## 1 Toy Story (1995)
## 2 Jumanji (1995)
## 3 Grumpier Old Men (1995)
## 4 Waiting to Exhale (1995)
## 5 Father of the Bride Part II (1995)
## 6 Heat (1995)
## 7 Sabrina (1995)
## 8 Tom and Huck (1995)
## 9 Sudden Death (1995)
## 10 GoldenEye (1995)
## 11 American President, The (1995)
## 12 Dracula: Dead and Loving It (1995)
## 13 Balto (1995)
## 14 Nixon (1995)
## 15 Cutthroat Island (1995)
## 16 Casino (1995)
## 17 Sense and Sensibility (1995)
## 18 Four Rooms (1995)
## 19 Ace Ventura: When Nature Calls (1995)
## 20 Money Train (1995)
## 21 Get Shorty (1995)
## 22 Copycat (1995)
## 23 Assassins (1995)
## 24 Powder (1995)
## 25 Leaving Las Vegas (1995)
## 26 Othello (1995)
## 27 Now and Then (1995)
## 28 Persuasion (1995)
## 29 City of Lost Children, The (Cité des enfants perdus, La) (1995)
## 30 Shanghai Triad (Yao a yao yao dao waipo qiao) (1995)
## 31 Dangerous Minds (1995)
## 32 Twelve Monkeys (a.k.a. 12 Monkeys) (1995)
## 33 Babe (1995)
## 34 Dead Man Walking (1995)
## 35 It Takes Two (1995)
## 36 Clueless (1995)
## 37 Cry, the Beloved Country (1995)
## 38 Richard III (1995)
## 39 Dead Presidents (1995)
## 40 Restoration (1995)
## 41 Mortal Kombat (1995)
## 42 To Die For (1995)
## 43 How to Make an American Quilt (1995)
## 44 Seven (a.k.a. Se7en) (1995)
## 45 Pocahontas (1995)
## 46 When Night Is Falling (1995)
## 47 Usual Suspects, The (1995)
## 48 Mighty Aphrodite (1995)
## 49 Lamerica (1994)
## 50 Big Green, The (1995)
## 51 Georgia (1995)
## 52 Home for the Holidays (1995)
## 53 Postman, The (Postino, Il) (1994)
## 54 Indian in the Cupboard, The (1995)
## 55 Eye for an Eye (1996)
## 56 Mr. Holland's Opus (1995)
## 57 Don't Be a Menace to South Central While Drinking Your Juice in the Hood (1996)
## 58 Two if by Sea (1996)
## 59 Bio-Dome (1996)
## 60 Lawnmower Man 2: Beyond Cyberspace (1996)
## 61 French Twist (Gazon maudit) (1995)
## 62 Friday (1995)
## 63 From Dusk Till Dawn (1996)
## 64 Fair Game (1995)
## 65 Kicking and Screaming (1995)
## 66 Misérables, Les (1995)
## 67 Bed of Roses (1996)
## 68 Big Bully (1996)
## 69 Screamers (1995)
## 70 Nico Icon (1995)
## 71 Crossing Guard, The (1995)
## 72 Juror, The (1996)
## 73 White Balloon, The (Badkonake sefid) (1995)
## 74 Things to Do in Denver When You're Dead (1995)
## 75 Antonia's Line (Antonia) (1995)
## 76 Once Upon a Time... When We Were Colored (1995)
## 77 Angels and Insects (1995)
## 78 White Squall (1996)
## 79 Dunston Checks In (1996)
## 80 Black Sheep (1996)
## 81 Nick of Time (1995)
## 82 Mary Reilly (1996)
## 83 Vampire in Brooklyn (1995)
## 84 Beautiful Girls (1996)
## 85 Broken Arrow (1996)
## 86 In the Bleak Midwinter (1995)
## 87 Hate (Haine, La) (1995)
## 88 Heidi Fleiss: Hollywood Madam (1995)
## 89 City Hall (1996)
## 90 Bottle Rocket (1996)
## 91 Mr. Wrong (1996)
## 92 Unforgettable (1996)
## 93 Happy Gilmore (1996)
## 94 Bridges of Madison County, The (1995)
## 95 Nobody Loves Me (Keiner liebt mich) (1994)
## 96 Muppet Treasure Island (1996)
## 97 Catwalk (1996)
## 98 Braveheart (1995)
## 99 Taxi Driver (1976)
## 100 Rumble in the Bronx (Hont faan kui) (1995)
## 101 Before and After (1996)
## 102 Anne Frank Remembered (1995)
## 103 Young Poisoner's Handbook, The (1995)
## 104 If Lucy Fell (1996)
## 105 Steal Big, Steal Little (1995)
## 106 Boys of St. Vincent, The (1992)
## 107 Boomerang (1992)
## 108 Chungking Express (Chung Hing sam lam) (1994)
## 109 Flirting With Disaster (1996)
## 110 NeverEnding Story III, The (1994)
## 111 Jupiter's Wife (1994)
## 112 Pie in the Sky (1996)
## 113 Jade (1995)
## 114 Down Periscope (1996)
## 115 Man of the Year (1995)
## 116 Up Close and Personal (1996)
## 117 Birdcage, The (1996)
## 118 Brothers McMullen, The (1995)
## 119 Bad Boys (1995)
## 120 Amazing Panda Adventure, The (1995)
## 121 Basketball Diaries, The (1995)
## 122 Awfully Big Adventure, An (1995)
## 123 Amateur (1994)
## 124 Apollo 13 (1995)
## 125 Rob Roy (1995)
## 126 Addiction, The (1995)
## 127 Batman Forever (1995)
## 128 Beauty of the Day (Belle de jour) (1967)
## 129 Beyond Rangoon (1995)
## 130 Blue in the Face (1995)
## 131 Canadian Bacon (1995)
## 132 Casper (1995)
## 133 Clockers (1995)
## 134 Congo (1995)
## 135 Crimson Tide (1995)
## 136 Crumb (1994)
## 137 Desperado (1995)
## 138 Devil in a Blue Dress (1995)
## 139 Die Hard: With a Vengeance (1995)
## 140 Doom Generation, The (1995)
## 141 First Knight (1995)
## 142 Free Willy 2: The Adventure Home (1995)
## 143 Hackers (1995)
## 144 Jeffrey (1995)
## 145 Johnny Mnemonic (1995)
## 146 Judge Dredd (1995)
## 147 Jury Duty (1995)
## 148 Kids (1995)
## 149 Living in Oblivion (1995)
## 150 Lord of Illusions (1995)
## 151 Love & Human Remains (1993)
## 152 Mad Love (1995)
## 153 Mallrats (1995)
## 154 Mighty Morphin Power Rangers: The Movie (1995)
## 155 Mute Witness (1994)
## 156 Nadja (1994)
## 157 Net, The (1995)
## 158 Nine Months (1995)
## 159 Party Girl (1995)
## 160 Prophecy, The (1995)
## 161 Reckless (1995)
## 162 Safe (1995)
## 163 Scarlet Letter, The (1995)
## 164 Showgirls (1995)
## 165 Smoke (1995)
## 166 Something to Talk About (1995)
## 167 Species (1995)
## 168 Strange Days (1995)
## 169 Umbrellas of Cherbourg, The (Parapluies de Cherbourg, Les) (1964)
## 170 Three Wishes (1995)
## 171 Total Eclipse (1995)
## 172 To Wong Foo, Thanks for Everything! Julie Newmar (1995)
## 173 Under Siege 2: Dark Territory (1995)
## 174 Unstrung Heroes (1995)
## 175 Unzipped (1995)
## 176 Walk in the Clouds, A (1995)
## 177 Waterworld (1995)
## 178 White Man's Burden (1995)
## 179 Wild Bill (1995)
## 180 Browning Version, The (1994)
## 181 Bushwhacked (1995)
## 182 Burnt by the Sun (Utomlyonnye solntsem) (1994)
## 183 Before the Rain (Pred dozhdot) (1994)
## 184 Before Sunrise (1995)
## 185 Billy Madison (1995)
## 186 Babysitter, The (1995)
## 187 Boys on the Side (1995)
## 188 Cure, The (1995)
## 189 Castle Freak (1995)
## 190 Circle of Friends (1995)
## 191 Clerks (1994)
## 192 Don Juan DeMarco (1995)
## 193 Disclosure (1994)
## 194 Drop Zone (1994)
## 195 Destiny Turns on the Radio (1995)
## 196 Death and the Maiden (1994)
## 197 Dolores Claiborne (1995)
## 198 Dumb & Dumber (Dumb and Dumber) (1994)
## 199 Eat Drink Man Woman (Yin shi nan nu) (1994)
## 200 Exotica (1994)
## 201 Exit to Eden (1994)
## 202 Ed Wood (1994)
## 203 French Kiss (1995)
## 204 Forget Paris (1995)
## 205 Far From Home: The Adventures of Yellow Dog (1995)
## 206 Goofy Movie, A (1995)
## 207 Hideaway (1995)
## 208 Fluke (1995)
## 209 Farinelli: il castrato (1994)
## 210 Gordy (1995)
## 211 Hoop Dreams (1994)
## 212 Heavenly Creatures (1994)
## 213 Houseguest (1994)
## 214 Immortal Beloved (1994)
## 215 Heavyweights (Heavy Weights) (1995)
## 216 Hunted, The (1995)
## 217 I.Q. (1994)
## 218 Interview with the Vampire: The Vampire Chronicles (1994)
## 219 Jefferson in Paris (1995)
## 220 Jerky Boys, The (1995)
## 221 Junior (1994)
## 222 Just Cause (1995)
## 223 Kid in King Arthur's Court, A (1995)
## 224 Kiss of Death (1995)
## 225 Star Wars: Episode IV - A New Hope (1977)
## 226 Little Women (1994)
## 227 Little Princess, A (1995)
## 228 Ladybird Ladybird (1994)
## 229 Like Water for Chocolate (Como agua para chocolate) (1992)
## 230 Legends of the Fall (1994)
## 231 Major Payne (1995)
## 232 My Crazy Life (Mi vida loca) (1993)
## 233 Love Affair (1994)
## 234 Losing Isaiah (1995)
## 235 Madness of King George, The (1994)
## 236 Mary Shelley's Frankenstein (Frankenstein) (1994)
## 237 Man of the House (1995)
## 238 Mixed Nuts (1994)
## 239 Milk Money (1994)
## 240 Miracle on 34th Street (1994)
## 241 Miami Rhapsody (1995)
## 242 My Family (1995)
## 243 Murder in the First (1995)
## 244 Nobody's Fool (1994)
## 245 Nell (1994)
## 246 New Jersey Drive (1995)
## 247 New York Cop (Nyû Yôku no koppu) (1993)
## 248 Beyond Bedlam (1993)
## 249 Nina Takes a Lover (1994)
## 250 Natural Born Killers (1994)
## 251 Only You (1994)
## 252 Once Were Warriors (1994)
## 253 Poison Ivy II (1996)
## 254 Outbreak (1995)
## 255 Léon: The Professional (a.k.a. The Professional) (Léon) (1994)
## 256 Perez Family, The (1995)
## 257 Pyromaniac's Love Story, A (1995)
## 258 Pulp Fiction (1994)
## 259 Pushing Hands (Tui shou) (1992)
## 260 Priest (1994)
## 261 Quiz Show (1994)
## 262 Picture Bride (Bijo photo) (1994)
## 263 Queen Margot (Reine Margot, La) (1994)
## 264 Quick and the Dead, The (1995)
## 265 Roommates (1995)
## 266 Ready to Wear (Pret-A-Porter) (1994)
## 267 Three Colors: Red (Trois couleurs: Rouge) (1994)
## 268 Three Colors: Blue (Trois couleurs: Bleu) (1993)
## 269 Three Colors: White (Trzy kolory: Bialy) (1994)
## 270 Rent-a-Kid (1995)
## 271 Relative Fear (1994)
## 272 Stuart Saves His Family (1995)
## 273 Swan Princess, The (1994)
## 274 Secret of Roan Inish, The (1994)
## 275 Specialist, The (1994)
## 276 Stargate (1994)
## 277 Santa Clause, The (1994)
## 278 Shawshank Redemption, The (1994)
## 279 Shallow Grave (1994)
## 280 Suture (1993)
## 281 Strawberry and Chocolate (Fresa y chocolate) (1993)
## 282 Swimming with Sharks (1995)
## 283 Sum of Us, The (1994)
## 284 National Lampoon's Senior Trip (1995)
## 285 To Live (Huozhe) (1994)
## 286 Tank Girl (1995)
## 287 Tales from the Crypt Presents: Demon Knight (1995)
## 288 Star Trek: Generations (1994)
## 289 Tales from the Hood (1995)
## 290 Tom & Viv (1994)
## 291 Village of the Damned (1995)
## 292 Tommy Boy (1995)
## 293 Vanya on 42nd Street (1994)
## 294 Underneath (1995)
## 295 Walking Dead, The (1995)
## 296 What's Eating Gilbert Grape (1993)
## 297 Virtuosity (1995)
## 298 While You Were Sleeping (1995)
## 299 War, The (1994)
## 300 Double Happiness (1994)
## 301 Muriel's Wedding (1994)
## 302 Baby-Sitters Club, The (1995)
## 303 Ace Ventura: Pet Detective (1994)
## 304 Adventures of Priscilla, Queen of the Desert, The (1994)
## 305 Backbeat (1993)
## 306 Bitter Moon (1992)
## 307 Bullets Over Broadway (1994)
## 308 Clear and Present Danger (1994)
## 309 Client, The (1994)
## 310 Corrina, Corrina (1994)
## 311 Crooklyn (1994)
## 312 Crow, The (1994)
## 313 Cobb (1994)
## 314 Flintstones, The (1994)
## 315 Forrest Gump (1994)
## 316 Four Weddings and a Funeral (1994)
## 317 Higher Learning (1995)
## 318 I Like It Like That (1994)
## 319 I Love Trouble (1994)
## 320 It Could Happen to You (1994)
## 321 Jungle Book, The (1994)
## 322 Wonderful, Horrible Life of Leni Riefenstahl, The (Macht der Bilder: Leni Riefenstahl, Die) (1993)
## 323 Lion King, The (1994)
## 324 Little Buddha (1993)
## 325 Wes Craven's New Nightmare (Nightmare on Elm Street Part 7: Freddy's Finale, A) (1994)
## 326 Mask, The (1994)
## 327 Maverick (1994)
## 328 Mrs. Parker and the Vicious Circle (1994)
## 329 Naked Gun 33 1/3: The Final Insult (1994)
## 330 Paper, The (1994)
## 331 Reality Bites (1994)
## 332 Red Rock West (1992)
## 333 Richie Rich (1994)
## 334 River Wild, The (1994)
## 335 Speed (1994)
## 336 Speechless (1994)
## 337 Timecop (1994)
## 338 True Lies (1994)
## 339 When a Man Loves a Woman (1994)
## 340 Wolf (1994)
## 341 Wyatt Earp (1994)
## 342 Bad Company (1995)
## 343 Man of No Importance, A (1994)
## 344 S.F.W. (1994)
## 345 Low Down Dirty Shame, A (1994)
## 346 Boys Life (1995)
## 347 Colonel Chabert, Le (1994)
## 348 Faster Pussycat! Kill! Kill! (1965)
## 349 Jason's Lyric (1994)
## 350 Street Fighter (1994)
## 351 Highlander III: The Sorcerer (a.k.a. Highlander: The Final Dimension) (1994)
## 352 Federal Hill (1994)
## 353 In the Mouth of Madness (1995)
## 354 8 Seconds (1994)
## 355 Above the Rim (1994)
## 356 Addams Family Values (1993)
## 357 Age of Innocence, The (1993)
## 358 Airheads (1994)
## 359 Air Up There, The (1994)
## 360 Another Stakeout (1993)
## 361 Bad Girls (1994)
## 362 Barcelona (1994)
## 363 Being Human (1993)
## 364 Beverly Hillbillies, The (1993)
## 365 Beverly Hills Cop III (1994)
## 366 Black Beauty (1994)
## 367 Blink (1994)
## 368 Blown Away (1994)
## 369 Blue Chips (1994)
## 370 Blue Sky (1994)
## 371 Body Snatchers (1993)
## 372 Boxing Helena (1993)
## 373 Bronx Tale, A (1993)
## 374 Cabin Boy (1994)
## 375 Calendar Girl (1993)
## 376 Carlito's Way (1993)
## 377 City Slickers II: The Legend of Curly's Gold (1994)
## 378 Clean Slate (1994)
## 379 Cliffhanger (1993)
## 380 Coneheads (1993)
## 381 Color of Night (1994)
## 382 Cops and Robbersons (1994)
## 383 Cowboy Way, The (1994)
## 384 Dave (1993)
## 385 Dazed and Confused (1993)
## 386 Demolition Man (1993)
## 387 Even Cowgirls Get the Blues (1993)
## 388 Fatal Instinct (1993)
## 389 Farewell My Concubine (Ba wang bie ji) (1993)
## 390 Fearless (1993)
## 391 Fear of a Black Hat (1994)
## 392 With Honors (1994)
## 393 Flesh and Bone (1993)
## 394 Widows' Peak (1994)
## 395 For Love or Money (1993)
## 396 Firm, The (1993)
## 397 Free Willy (1993)
## 398 Fresh (1994)
## 399 Fugitive, The (1993)
## 400 Geronimo: An American Legend (1993)
## 401 Getaway, The (1994)
## 402 Getting Even with Dad (1994)
## 403 Go Fish (1994)
## 404 Hard Target (1993)
## 405 Hot Shots! Part Deux (1993)
## 406 Live Nude Girls (1995)
## 407 Englishman Who Went Up a Hill But Came Down a Mountain, The (1995)
## 408 House of the Spirits, The (1993)
## 409 House Party 3 (1994)
## 410 Hudsucker Proxy, The (1994)
## 411 I'll Do Anything (1994)
## 412 In the Army Now (1994)
## 413 In the Line of Fire (1993)
## 414 In the Name of the Father (1993)
## 415 Inkwell, The (1994)
## 416 What's Love Got to Do with It? (1993)
## 417 Jimmy Hollywood (1994)
## 418 Judgment Night (1993)
## 419 Jurassic Park (1993)
## 420 Kalifornia (1993)
## 421 Killing Zoe (1994)
## 422 Lassie (1994)
## 423 Last Action Hero (1993)
## 424 Life with Mikey (1993)
## 425 Lightning Jack (1994)
## 426 M. Butterfly (1993)
## 427 Made in America (1993)
## 428 Malice (1993)
## 429 Man Without a Face, The (1993)
## 430 Manhattan Murder Mystery (1993)
## 431 Menace II Society (1993)
## 432 Executive Decision (1996)
## 433 In the Realm of the Senses (Ai no corrida) (1976)
## 434 What Happened Was... (1994)
## 435 Much Ado About Nothing (1993)
## 436 Mr. Wonderful (1993)
## 437 Mrs. Doubtfire (1993)
## 438 Naked (1993)
## 439 Next Karate Kid, The (1994)
## 440 No Escape (1994)
## 441 North (1994)
## 442 Orlando (1992)
## 443 Perfect World, A (1993)
## 444 Philadelphia (1993)
## 445 Piano, The (1993)
## 446 Poetic Justice (1993)
## 447 Program, The (1993)
## 448 Puppet Masters, The (1994)
## 449 Radioland Murders (1994)
## 450 Ref, The (1994)
## 451 Remains of the Day, The (1993)
## 452 Renaissance Man (1994)
## 453 Rising Sun (1993)
## 454 Road to Wellville, The (1994)
## 455 RoboCop 3 (1993)
## 456 Robin Hood: Men in Tights (1993)
## 457 Romeo Is Bleeding (1993)
## 458 Romper Stomper (1992)
## 459 Ruby in Paradise (1993)
## 460 Rudy (1993)
## 461 Savage Nights (Nuits fauves, Les) (1992)
## 462 Schindler's List (1993)
## 463 Scout, The (1994)
## 464 Searching for Bobby Fischer (1993)
## 465 Secret Garden, The (1993)
## 466 Serial Mom (1994)
## 467 Shadow, The (1994)
## 468 Shadowlands (1993)
## 469 Short Cuts (1993)
## 470 Simple Twist of Fate, A (1994)
## 471 Sirens (1994)
## 472 Six Degrees of Separation (1993)
## 473 Sleepless in Seattle (1993)
## 474 Sliver (1993)
## 475 Blade Runner (1982)
## 476 Son in Law (1993)
## 477 So I Married an Axe Murderer (1993)
## 478 Striking Distance (1993)
## 479 Super Mario Bros. (1993)
## 480 Surviving the Game (1994)
## 481 Terminal Velocity (1994)
## 482 Thirty-Two Short Films About Glenn Gould (1993)
## 483 Threesome (1994)
## 484 Nightmare Before Christmas, The (1993)
## 485 Three Musketeers, The (1993)
## 486 Tombstone (1993)
## 487 True Romance (1993)
## 488 War Room, The (1993)
## 489 Pagemaster, The (1994)
## 490 Welcome to the Dollhouse (1995)
## 491 Germinal (1993)
## 492 Chasers (1994)
## 493 Kika (1993)
## 494 Bhaji on the Beach (1993)
## 495 Little Big League (1994)
## 496 Ciao, Professore! (Io speriamo che me la cavo) (1992)
## 497 Spanking the Monkey (1994)
## 498 Little Rascals, The (1994)
## 499 Andre (1994)
## 500 Escort, The (Scorta, La) (1993)
## 501 Princess Caraboo (1994)
## 502 Celluloid Closet, The (1995)
## 503 Dear Diary (Caro Diario) (1994)
## 504 Brady Bunch Movie, The (1995)
## 505 Home Alone (1990)
## 506 Ghost (1990)
## 507 Aladdin (1992)
## 508 Terminator 2: Judgment Day (1991)
## 509 Dances with Wolves (1990)
## 510 Batman (1989)
## 511 Silence of the Lambs, The (1991)
## 512 Snow White and the Seven Dwarfs (1937)
## 513 Beauty and the Beast (1991)
## 514 Pinocchio (1940)
## 515 Pretty Woman (1990)
## 516 Wild Bunch, The (1969)
## 517 Love and a .45 (1994)
## 518 Great Day in Harlem, A (1994)
## 519 One Fine Day (1996)
## 520 Candyman: Farewell to the Flesh (1995)
## 521 Fargo (1996)
## 522 Homeward Bound II: Lost in San Francisco (1996)
## 523 Heavy Metal (1981)
## 524 Hellraiser: Bloodline (1996)
## 525 Pallbearer, The (1996)
## 526 Jane Eyre (1996)
## 527 Bread and Chocolate (Pane e cioccolata) (1973)
## 528 Aristocats, The (1970)
## 529 Flower of My Secret, The (La flor de mi secreto) (1995)
## 530 Two Much (1995)
## 531 Ed (1996)
## 532 Thin Line Between Love and Hate, A (1996)
## 533 Last Supper, The (1995)
## 534 Primal Fear (1996)
## 535 All Dogs Go to Heaven 2 (1996)
## 536 Land and Freedom (Tierra y libertad) (1995)
## 537 Denise Calls Up (1995)
## 538 Theodore Rex (1995)
## 539 Family Thing, A (1996)
## 540 Frisk (1995)
## 541 Sgt. Bilko (1996)
## 542 Jack and Sarah (1995)
## 543 Girl 6 (1996)
## 544 Diabolique (1996)
## 545 Nelly & Monsieur Arnaud (1995)
## 546 Courage Under Fire (1996)
## 547 Mission: Impossible (1996)
## 548 Cold Fever (Ã\201 köldum klaka) (1995)
## 549 Moll Flanders (1996)
## 550 Dragonheart (1996)
## 551 Eddie (1996)
## 552 James and the Giant Peach (1996)
## 553 Fear (1996)
## 554 Kids in the Hall: Brain Candy (1996)
## 555 Underground (1995)
## 556 Bloodsport 2 (a.k.a. Bloodsport II: The Next Kumite) (1996)
## 557 Song of the Little Road (Pather Panchali) (1955)
## 558 World of Apu, The (Apur Sansar) (1959)
## 559 Mystery Science Theater 3000: The Movie (1996)
## 560 Space Jam (1996)
## 561 Barbarella (1968)
## 562 Some Folks Call It a Sling Blade (1993)
## 563 Run of the Country, The (1995)
## 564 Alphaville (Alphaville, une étrange aventure de Lemmy Caution) (1965)
## 565 It's My Party (1996)
## 566 Operation Dumbo Drop (1995)
## 567 Mrs. Winterbourne (1996)
## 568 Solo (1996)
## 569 Substitute, The (1996)
## 570 True Crime (1996)
## 571 Feeling Minnesota (1996)
## 572 Delta of Venus (1995)
## 573 Angus (1995)
## 574 Boys (1996)
## 575 Quest, The (1996)
## 576 Sunset Park (1996)
## 577 Mulholland Falls (1996)
## 578 Truth About Cats & Dogs, The (1996)
## 579 Oliver & Company (1988)
## 580 Celtic Pride (1996)
## 581 Flipper (1996)
## 582 Dead Man (1995)
## 583 Horseman on the Roof, The (Hussard sur le toit, Le) (1995)
## 584 Visitors, The (Visiteurs, Les) (1993)
## 585 Multiplicity (1996)
## 586 Wallace & Gromit: The Best of Aardman Animation (1996)
## 587 Haunted World of Edward D. Wood Jr., The (1996)
## 588 Craft, The (1996)
## 589 Great White Hype, The (1996)
## 590 Last Dance (1996)
## 591 Cold Comfort Farm (1995)
## 592 Heaven's Prisoners (1996)
## 593 Rock, The (1996)
## 594 Cemetery Man (Dellamorte Dellamore) (1994)
## 595 Twister (1996)
## 596 Barb Wire (1996)
## 597 Ghost in the Shell (Kôkaku kidôtai) (1995)
## 598 Thinner (1996)
## 599 Spy Hard (1996)
## 600 Wallace & Gromit: A Close Shave (1995)
## 601 Stupids, The (1996)
## 602 Arrival, The (1996)
## 603 Dr. Strangelove or: How I Learned to Stop Worrying and Love the Bomb (1964)
## 604 Ashes of Time (Dung che sai duk) (1994)
## 605 Maya Lin: A Strong Clear Vision (1994)
## 606 Stalingrad (1993)
## 607 Phantom, The (1996)
## 608 Striptease (1996)
## 609 Heavy (1995)
## 610 Jack (1996)
## 611 I Shot Andy Warhol (1996)
## 612 Touki Bouki (1973)
## 613 Spirits of the Dead (1968)
## 614 Trainspotting (1996)
## 615 'Til There Was You (1997)
## 616 Independence Day (a.k.a. ID4) (1996)
## 617 Stealing Beauty (1996)
## 618 Fan, The (1996)
## 619 Hunchback of Notre Dame, The (1996)
## 620 Cable Guy, The (1996)
## 621 Kingpin (1996)
## 622 Eraser (1996)
## 623 Nutty Professor, The (1996)
## 624 Unforgettable Summer, An (Un été inoubliable) (1994)
## 625 Last Klezmer: Leopold Kozlowski, His Life and Music, The (1994)
## 626 Somebody to Love (1994)
## 627 Daylight (1996)
## 628 Frighteners, The (1996)
## 629 Lone Star (1996)
## 630 Harriet the Spy (1996)
## 631 Phenomenon (1996)
## 632 Walking and Talking (1996)
## 633 She's the One (1996)
## 634 Time to Kill, A (1996)
## 635 American Buffalo (1996)
## 636 Alaska (1996)
## 637 Fled (1996)
## 638 Kazaam (1996)
## 639 Larger Than Life (1996)
## 640 Very Brady Sequel, A (1996)
## 641 Collector, The (La collectionneuse) (1967)
## 642 Kaspar Hauser (1993)
## 643 Adventures of Pinocchio, The (1996)
## 644 Joe's Apartment (1996)
## 645 First Wives Club, The (1996)
## 646 Ransom (1996)
## 647 High School High (1996)
## 648 Foxfire (1996)
## 649 Chain Reaction (1996)
## 650 Matilda (1996)
## 651 Emma (1996)
## 652 Crow: City of Angels, The (1996)
## 653 House Arrest (1996)
## 654 Eyes Without a Face (Yeux sans visage, Les) (1959)
## 655 Tales from the Crypt Presents: Bordello of Blood (1996)
## 656 Spitfire Grill, The (1996)
## 657 Escape from L.A. (1996)
## 658 Basquiat (1996)
## 659 Tin Cup (1996)
## 660 Godfather, The (1972)
## 661 Supercop (Police Story 3: Supercop) (Jing cha gu shi III: Chao ji jing cha) (1992)
## 662 Bound (1996)
## 663 Carpool (1996)
## 664 Kansas City (1996)
## 665 Gone Fishin' (1997)
## 666 Nothing to Lose (1994)
## 667 Supercop 2 (Project S) (Chao ji ji hua) (1993)
## 668 Relic, The (1997)
## 669 Island of Dr. Moreau, The (1996)
## 670 First Kid (1996)
## 671 Trigger Effect, The (1996)
## 672 Bogus (1996)
## 673 Bulletproof (1996)
## 674 Land Before Time III: The Time of the Great Giving (1995)
## 675 1-900 (06) (1994)
## 676 Halloween: The Curse of Michael Myers (Halloween 6: The Curse of Michael Myers) (1995)
## 677 Twelfth Night (1996)
## 678 Mother Night (1996)
## 679 Wild Reeds (Les roseaux sauvages) (1994)
## 680 For Whom the Bell Tolls (1943)
## 681 Philadelphia Story, The (1940)
## 682 Singin' in the Rain (1952)
## 683 American in Paris, An (1951)
## 684 Funny Face (1957)
## 685 Breakfast at Tiffany's (1961)
## 686 Vertigo (1958)
## 687 Rear Window (1954)
## 688 It Happened One Night (1934)
## 689 Gaslight (1944)
## 690 Gay Divorcee, The (1934)
## 691 North by Northwest (1959)
## 692 Apartment, The (1960)
## 693 Some Like It Hot (1959)
## 694 Charade (1963)
## 695 Casablanca (1942)
## 696 Maltese Falcon, The (1941)
## 697 My Fair Lady (1964)
## 698 Sabrina (1954)
## 699 Roman Holiday (1953)
## 700 Little Princess, The (1939)
## 701 Meet Me in St. Louis (1944)
## 702 Wizard of Oz, The (1939)
## 703 Gone with the Wind (1939)
## 704 My Favorite Year (1982)
## 705 Sunset Blvd. (a.k.a. Sunset Boulevard) (1950)
## 706 Citizen Kane (1941)
## 707 2001: A Space Odyssey (1968)
## 708 All About Eve (1950)
## 709 Women, The (1939)
## 710 Rebecca (1940)
## 711 Foreign Correspondent (1940)
## 712 Notorious (1946)
## 713 Spellbound (1945)
## 714 Affair to Remember, An (1957)
## 715 To Catch a Thief (1955)
## 716 Father of the Bride (1950)
## 717 Band Wagon, The (1953)
## 718 Ninotchka (1939)
## 719 Love in the Afternoon (1957)
## 720 Gigi (1958)
## 721 Adventures of Robin Hood, The (1938)
## 722 Mark of Zorro, The (1940)
## 723 Laura (1944)
## 724 Ghost and Mrs. Muir, The (1947)
## 725 Lost Horizon (1937)
## 726 Top Hat (1935)
## 727 To Be or Not to Be (1942)
## 728 My Man Godfrey (1936)
## 729 Giant (1956)
## 730 East of Eden (1955)
## 731 Thin Man, The (1934)
## 732 His Girl Friday (1940)
## 733 Around the World in 80 Days (1956)
## 734 It's a Wonderful Life (1946)
## 735 Mr. Smith Goes to Washington (1939)
## 736 Bringing Up Baby (1938)
## 737 Penny Serenade (1941)
## 738 Of Human Bondage (1934)
## 739 Little Lord Fauntleroy (1936)
## 740 Inspector General, The (1949)
## 741 39 Steps, The (1935)
## 742 Night of the Living Dead (1968)
## 743 African Queen, The (1951)
## 744 Beat the Devil (1953)
## 745 Cat on a Hot Tin Roof (1958)
## 746 Meet John Doe (1941)
## 747 Farewell to Arms, A (1932)
## 748 Nothing Personal (1995)
## 749 Dangerous Ground (1997)
## 750 Picnic (1955)
## 751 Pompatus of Love, The (1996)
## 752 Fly Away Home (1996)
## 753 Bliss (1997)
## 754 Grace of My Heart (1996)
## 755 Maximum Risk (1996)
## 756 Michael Collins (1996)
## 757 Infinity (1996)
## 758 Big Night (1996)
## 759 Last Man Standing (1996)
## 760 Set It Off (1996)
## 761 2 Days in the Valley (1996)
## 762 Extreme Measures (1996)
## 763 Glimmer Man, The (1996)
## 764 D3: The Mighty Ducks (1996)
## 765 Chamber, The (1996)
## 766 Apple Dumpling Gang, The (1975)
## 767 Davy Crockett, King of the Wild Frontier (1955)
## 768 Escape to Witch Mountain (1975)
## 769 Love Bug, The (1969)
## 770 Herbie Rides Again (1974)
## 771 Old Yeller (1957)
## 772 Parent Trap, The (1961)
## 773 Pollyanna (1960)
## 774 Homeward Bound: The Incredible Journey (1993)
## 775 Shaggy Dog, The (1959)
## 776 Swiss Family Robinson (1960)
## 777 That Darn Cat! (1965)
## 778 20,000 Leagues Under the Sea (1954)
## 779 Cool Runnings (1993)
## 780 Angels in the Outfield (1994)
## 781 Cinderella (1950)
## 782 Winnie the Pooh and the Blustery Day (1968)
## 783 Three Caballeros, The (1945)
## 784 Sword in the Stone, The (1963)
## 785 Robin Hood: Prince of Thieves (1991)
## 786 Mary Poppins (1964)
## 787 Dumbo (1941)
## 788 Pete's Dragon (1977)
## 789 Bedknobs and Broomsticks (1971)
## 790 Alice in Wonderland (1951)
## 791 Fox and the Hound, The (1981)
## 792 Freeway (1996)
## 793 Sound of Music, The (1965)
## 794 Die Hard (1988)
## 795 Lawnmower Man, The (1992)
## 796 Secret Agent, The (1996)
## 797 Secrets & Lies (1996)
## 798 That Thing You Do! (1996)
## 799 To Gillian on Her 37th Birthday (1996)
## 800 Beautiful Thing (1996)
## 801 Long Kiss Goodnight, The (1996)
## 802 Ghost and the Darkness, The (1996)
## 803 Looking for Richard (1996)
## 804 Trees Lounge (1996)
## 805 Normal Life (1996)
## 806 Get on the Bus (1996)
## 807 Shadow Conspiracy (1997)
## 808 Jude (1996)
## 809 Everyone Says I Love You (1996)
## 810 William Shakespeare's Romeo + Juliet (1996)
## 811 Swingers (1996)
## 812 Sleepers (1996)
## 813 Aladdin and the King of Thieves (1996)
## 814 Shall We Dance (1937)
## 815 Crossfire (1947)
## 816 Willy Wonka & the Chocolate Factory (1971)
## 817 Innocents, The (1961)
## 818 Sleeper (1973)
## 819 Bananas (1971)
## 820 Fish Called Wanda, A (1988)
## 821 Monty Python's Life of Brian (1979)
## 822 Victor/Victoria (1982)
## 823 Candidate, The (1972)
## 824 Great Race, The (1965)
## 825 Bonnie and Clyde (1967)
## 826 Old Man and the Sea, The (1958)
## 827 Dial M for Murder (1954)
## 828 Dirty Dancing (1987)
## 829 Reservoir Dogs (1992)
## 830 Platoon (1986)
## 831 Weekend at Bernie's (1989)
## 832 Basic Instinct (1992)
## 833 Doors, The (1991)
## 834 Crying Game, The (1992)
## 835 Glengarry Glen Ross (1992)
## 836 Sophie's Choice (1982)
## 837 E.T. the Extra-Terrestrial (1982)
## 838 Christmas Carol, A (1938)
## 839 Days of Thunder (1990)
## 840 Top Gun (1986)
## 841 Rebel Without a Cause (1955)
## 842 Streetcar Named Desire, A (1951)
## 843 Children of the Corn IV: The Gathering (1996)
## 844 Loser (1991)
## 845 Microcosmos (Microcosmos: Le peuple de l'herbe) (1996)
## 846 Palookaville (1996)
## 847 Funeral, The (1996)
## 848 Single Girl, A (Fille seule, La) (1995)
## 849 Eighth Day, The (Huitième jour, Le) (1996)
## 850 Drunks (1995)
## 851 People vs. Larry Flynt, The (1996)
## 852 Glory Daze (1995)
## 853 Perfect Candidate, A (1996)
## 854 On Golden Pond (1981)
## 855 Return of the Pink Panther, The (1975)
## 856 Drop Dead Fred (1991)
## 857 Abyss, The (1989)
## 858 Fog, The (1980)
## 859 Escape from New York (1981)
## 860 Howling, The (1980)
## 861 Jean de Florette (1986)
## 862 Manon of the Spring (Manon des sources) (1986)
## 863 Private Benjamin (1980)
## 864 Monty Python and the Holy Grail (1975)
## 865 Hustler White (1996)
## 866 Entertaining Angels: The Dorothy Day Story (1996)
## 867 Line King: The Al Hirschfeld Story, The (1996)
## 868 When We Were Kings (1996)
## 869 Wallace & Gromit: The Wrong Trousers (1993)
## 870 Return of Martin Guerre, The (Retour de Martin Guerre, Le) (1982)
## 871 Lesson Faust (1994)
## 872 Children Are Watching Us, The (Bambini ci guardano, I) (1944)
## 873 Tin Drum, The (Blechtrommel, Die) (1979)
## 874 Ruling Class, The (1972)
## 875 Mina Tannenbaum (1994)
## 876 Dear God (1996)
## 877 Best of the Best 3: No Turning Back (1995)
## 878 Bob Roberts (1992)
## 879 Cinema Paradiso (Nuovo cinema Paradiso) (1989)
## 880 Cook the Thief His Wife & Her Lover, The (1989)
## 881 Delicatessen (1991)
## 882 Double Life of Veronique, The (Double Vie de Véronique, La) (1991)
## 883 Enchanted April (1992)
## 884 Paths of Glory (1957)
## 885 Grifters, The (1990)
## 886 Hear My Song (1991)
## 887 English Patient, The (1996)
## 888 Mediterraneo (1991)
## 889 My Left Foot (1989)
## 890 Sex, Lies, and Videotape (1989)
## 891 Passion Fish (1992)
## 892 Strictly Ballroom (1992)
## 893 Thin Blue Line, The (1988)
## 894 Tie Me Up! Tie Me Down! (áÃ\201tame!) (1990)
## 895 Madonna: Truth or Dare (1991)
## 896 Paris Is Burning (1990)
## 897 One Flew Over the Cuckoo's Nest (1975)
## 898 Cheech and Chong's Up in Smoke (1978)
## 899 Star Wars: Episode V - The Empire Strikes Back (1980)
## 900 Princess Bride, The (1987)
## 901 Raiders of the Lost Ark (Indiana Jones and the Raiders of the Lost Ark) (1981)
## 902 Brazil (1985)
## 903 Aliens (1986)
## 904 Good, the Bad and the Ugly, The (Buono, il brutto, il cattivo, Il) (1966)
## 905 Withnail & I (1987)
## 906 12 Angry Men (1957)
## 907 Lawrence of Arabia (1962)
## 908 Clockwork Orange, A (1971)
## 909 To Kill a Mockingbird (1962)
## 910 Apocalypse Now (1979)
## 911 Once Upon a Time in the West (C'era una volta il West) (1968)
## 912 Star Wars: Episode VI - Return of the Jedi (1983)
## 913 Wings of Desire (Himmel über Berlin, Der) (1987)
## 914 Third Man, The (1949)
## 915 Goodfellas (1990)
## 916 Alien (1979)
## 917 Army of Darkness (1993)
## 918 Big Blue, The (Grand bleu, Le) (1988)
## 919 Ran (1985)
## 920 Killer, The (Die xue shuang xiong) (1989)
## 921 Psycho (1960)
## 922 Blues Brothers, The (1980)
## 923 Godfather: Part II, The (1974)
## 924 Full Metal Jacket (1987)
## 925 Grand Day Out with Wallace and Gromit, A (1989)
## 926 Henry V (1989)
## 927 Amadeus (1984)
## 928 Quiet Man, The (1952)
## 929 Once Upon a Time in America (1984)
## 930 Raging Bull (1980)
## 931 Annie Hall (1977)
## 932 Right Stuff, The (1983)
## 933 Stalker (1979)
## 934 Boot, Das (Boat, The) (1981)
## 935 Sting, The (1973)
## 936 Harold and Maude (1971)
## 937 Trust (1990)
## 938 Seventh Seal, The (Sjunde inseglet, Det) (1957)
## 939 Local Hero (1983)
## 940 Terminator, The (1984)
## 941 Dead Alive (Braindead) (1992)
## 942 Glory (1989)
## 943 Rosencrantz and Guildenstern Are Dead (1990)
## 944 Manhattan (1979)
## 945 Miller's Crossing (1990)
## 946 Dead Poets Society (1989)
## 947 Graduate, The (1967)
## 948 Touch of Evil (1958)
## 949 Femme Nikita, La (Nikita) (1990)
## 950 Bridge on the River Kwai, The (1957)
## 951 8 1/2 (8ý) (1963)
## 952 Chinatown (1974)
## 953 Day the Earth Stood Still, The (1951)
## 954 Treasure of the Sierra Madre, The (1948)
## 955 Bad Taste (1987)
## 956 Duck Soup (1933)
## 957 Better Off Dead... (1985)
## 958 Shining, The (1980)
## 959 Stand by Me (1986)
## 960 M (1931)
## 961 Evil Dead II (Dead by Dawn) (1987)
## 962 Great Escape, The (1963)
## 963 Deer Hunter, The (1978)
## 964 Diva (1981)
## 965 Groundhog Day (1993)
## 966 Unforgiven (1992)
## 967 Manchurian Candidate, The (1962)
## 968 Pump Up the Volume (1990)
## 969 Arsenic and Old Lace (1944)
## 970 Back to the Future (1985)
## 971 Fried Green Tomatoes (1991)
## 972 Patton (1970)
## 973 Down by Law (1986)
## 974 Akira (1988)
## 975 Highlander (1986)
## 976 Cool Hand Luke (1967)
## 977 Cyrano de Bergerac (1990)
## 978 Young Frankenstein (1974)
## 979 Night on Earth (1991)
## 980 Raise the Red Lantern (Da hong deng long gao gao gua) (1991)
## 981 Great Dictator, The (1940)
## 982 Fantasia (1940)
## 983 High Noon (1952)
## 984 Big Sleep, The (1946)
## 985 Heathers (1989)
## 986 Somewhere in Time (1980)
## 987 Ben-Hur (1959)
## 988 This Is Spinal Tap (1984)
## 989 Koyaanisqatsi (a.k.a. Koyaanisqatsi: Life Out of Balance) (1983)
## 990 Some Kind of Wonderful (1987)
## 991 Indiana Jones and the Last Crusade (1989)
## 992 Being There (1979)
## 993 Gandhi (1982)
## 994 Unbearable Lightness of Being, The (1988)
## 995 Room with a View, A (1986)
## 996 Real Genius (1985)
## 997 Pink Floyd: The Wall (1982)
## 998 Killing Fields, The (1984)
## 999 My Life as a Dog (Mitt liv som hund) (1985)
## 1000 Forbidden Planet (1956)
## 1001 Field of Dreams (1989)
## 1002 Man Who Would Be King, The (1975)
## 1003 Butch Cassidy and the Sundance Kid (1969)
## 1004 Paris, Texas (1984)
## 1005 Until the End of the World (Bis ans Ende der Welt) (1991)
## 1006 When Harry Met Sally... (1989)
## 1007 Hype! (1996)
## 1008 Female Perversions (1996)
## 1009 Blue Juice (1995)
## 1010 Alienó (a.k.a. Alien 3) (1992)
## 1011 American Werewolf in London, An (1981)
## 1012 Amityville 1992: It's About Time (1992)
## 1013 Amityville 3-D (1983)
## 1014 Amityville: Dollhouse (1996)
## 1015 Amityville: A New Generation (1993)
## 1016 Amityville II: The Possession (1982)
## 1017 Amityville Horror, The (1979)
## 1018 Amityville Curse, The (1990)
## 1019 Blood for Dracula (Andy Warhol's Dracula) (1974)
## 1020 April Fool's Day (1986)
## 1021 Audrey Rose (1977)
## 1022 Believers, The (1987)
## 1023 Birds, The (1963)
## 1024 Blob, The (1958)
## 1025 Blood Beach (1981)
## 1026 Body Parts (1991)
## 1027 Body Snatcher, The (1945)
## 1028 Dracula (Bram Stoker's Dracula) (1992)
## 1029 Bride of Frankenstein, The (Bride of Frankenstein) (1935)
## 1030 Burnt Offerings (1976)
## 1031 Candyman (1992)
## 1032 Cape Fear (1991)
## 1033 Cape Fear (1962)
## 1034 Carrie (1976)
## 1035 Cat People (1982)
## 1036 Nightmare on Elm Street, A (1984)
## 1037 Nosferatu (Nosferatu, eine Symphonie des Grauens) (1922)
## 1038 Vampire in Venice (Nosferatu a Venezia) (Nosferatu in Venice) (1986)
## 1039 Omen, The (1976)
## 1040 Blood and Wine (Blood & Wine) (1996)
## 1041 Albino Alligator (1996)
## 1042 Mirror Has Two Faces, The (1996)
## 1043 Breaking the Waves (1996)
## 1044 Nightwatch (1997)
## 1045 Star Trek: First Contact (1996)
## 1046 Shine (1996)
## 1047 Sling Blade (1996)
## 1048 Jingle All the Way (1996)
## 1049 Paradise Lost: The Child Murders at Robin Hood Hills (1996)
## 1050 Preacher's Wife, The (1996)
## 1051 Ridicule (1996)
## 1052 Crucible, The (1996)
## 1053 101 Dalmatians (1996)
## 1054 Die Hard 2 (1990)
## 1055 Star Trek: The Motion Picture (1979)
## 1056 Star Trek VI: The Undiscovered Country (1991)
## 1057 Star Trek V: The Final Frontier (1989)
## 1058 Star Trek II: The Wrath of Khan (1982)
## 1059 Star Trek III: The Search for Spock (1984)
## 1060 Star Trek IV: The Voyage Home (1986)
## 1061 Batman Returns (1992)
## 1062 Young Guns (1988)
## 1063 Young Guns II (1990)
## 1064 Grease (1978)
## 1065 Grease 2 (1982)
## 1066 Marked for Death (1990)
## 1067 Under Siege (1992)
## 1068 Jaws (1975)
## 1069 Jaws 2 (1978)
## 1070 Jaws 3-D (1983)
## 1071 My Fellow Americans (1996)
## 1072 Mars Attacks! (1996)
## 1073 Citizen Ruth (1996)
## 1074 Jerry Maguire (1996)
## 1075 Raising Arizona (1987)
## 1076 Tin Men (1987)
## 1077 Sneakers (1992)
## 1078 Bastard Out of Carolina (1996)
## 1079 In Love and War (1996)
## 1080 Marvin's Room (1996)
## 1081 Ghosts of Mississippi (1996)
## 1082 Beavis and Butt-Head Do America (1996)
## 1083 La Cérémonie (1995)
## 1084 Scream (1996)
## 1085 Last of the Mohicans, The (1992)
## 1086 Michael (1996)
## 1087 Hamlet (1996)
## 1088 Some Mother's Son (1996)
## 1089 Whole Wide World, The (1996)
## 1090 Mother (1996)
## 1091 Thieves (Voleurs, Les) (1996)
## 1092 Evita (1996)
## 1093 Portrait of a Lady, The (1996)
## 1094 Walkabout (1971)
## 1095 Murder at 1600 (1997)
## 1096 Hearts and Minds (1996)
## 1097 Fierce Creatures (1997)
## 1098 Zeus and Roxanne (1997)
## 1099 Turbulence (1997)
## 1100 Angel Baby (1995)
## 1101 First Strike (Police Story 4: First Strike) (Ging chaat goo si 4: Ji gaan daan yam mo) (1996)
## 1102 Underworld (1996)
## 1103 Beverly Hills Ninja (1997)
## 1104 Metro (1997)
## 1105 Cement Garden, The (1993)
## 1106 Dante's Peak (1997)
## 1107 Meet Wally Sparks (1997)
## 1108 Amos & Andrew (1993)
## 1109 Benny & Joon (1993)
## 1110 Prefontaine (1997)
## 1111 McHale's Navy (1997)
## 1112 Kolya (Kolja) (1996)
## 1113 Gridlock'd (1997)
## 1114 Waiting for Guffman (1996)
## 1115 Beautician and the Beast, The (1997)
## 1116 SubUrbia (1997)
## 1117 Pest, The (1997)
## 1118 Fools Rush In (1997)
## 1119 Touch (1997)
## 1120 Absolute Power (1997)
## 1121 That Darn Cat (1997)
## 1122 Vegas Vacation (National Lampoon's Las Vegas Vacation) (1997)
## 1123 Lost Highway (1997)
## 1124 Rosewood (1997)
## 1125 Donnie Brasco (1997)
## 1126 Booty Call (1997)
## 1127 Best Men (1997)
## 1128 Jungle2Jungle (a.k.a. Jungle 2 Jungle) (1997)
## 1129 Kama Sutra: A Tale of Love (1996)
## 1130 Private Parts (1997)
## 1131 Love Jones (1997)
## 1132 Saint, The (1997)
## 1133 Smilla's Sense of Snow (1997)
## 1134 Crash (1996)
## 1135 Daytrippers, The (1996)
## 1136 Liar Liar (1997)
## 1137 Selena (1997)
## 1138 Devil's Own, The (1997)
## 1139 Cats Don't Dance (1997)
## 1140 B*A*P*S (1997)
## 1141 Love and Other Catastrophes (1996)
## 1142 Turbo: A Power Rangers Movie (1997)
## 1143 Anna Karenina (1997)
## 1144 Double Team (1997)
## 1145 Inventing the Abbotts (1997)
## 1146 Anaconda (1997)
## 1147 Grosse Pointe Blank (1997)
## 1148 Kissed (1996)
## 1149 8 Heads in a Duffel Bag (1997)
## 1150 Paradise Road (1997)
## 1151 Romy and Michele's High School Reunion (1997)
## 1152 Temptress Moon (Feng Yue) (1996)
## 1153 Volcano (1997)
## 1154 Children of the Revolution (1996)
## 1155 Austin Powers: International Man of Mystery (1997)
## 1156 Breakdown (1997)
## 1157 Broken English (1996)
## 1158 Fathers' Day (1997)
## 1159 Fifth Element, The (1997)
## 1160 Nowhere (1997)
## 1161 Promise, The (La promesse) (1996)
## 1162 Shall We Dance? (Shall We Dansu?) (1996)
## 1163 Addicted to Love (1997)
## 1164 Brassed Off (1996)
## 1165 Lost World: Jurassic Park, The (1997)
## 1166 Ponette (1996)
## 1167 Schizopolis (1996)
## 1168 Shiloh (1997)
## 1169 Rough Magic (1995)
## 1170 Trial and Error (1997)
## 1171 Buddy (1997)
## 1172 Con Air (1997)
## 1173 Pillow Book, The (1996)
## 1174 Speed 2: Cruise Control (1997)
## 1175 Batman & Robin (1997)
## 1176 For Roseanna (Roseanna's Grave) (1997)
## 1177 Head Above Water (1996)
## 1178 Hercules (1997)
## 1179 My Best Friend's Wedding (1997)
## 1180 When the Cat's Away (Chacun cherche son chat) (1996)
## 1181 Contempt (Mépris, Le) (1963)
## 1182 Face/Off (1997)
## 1183 Fall (1997)
## 1184 Men in Black (a.k.a. MIB) (1997)
## 1185 Out to Sea (1997)
## 1186 Wild America (1997)
## 1187 Simple Wish, A (1997)
## 1188 Contact (1997)
## 1189 Love Serenade (1996)
## 1190 G.I. Jane (1997)
## 1191 Conan the Barbarian (1982)
## 1192 George of the Jungle (1997)
## 1193 Cop Land (1997)
## 1194 Event Horizon (1997)
## 1195 Spawn (1997)
## 1196 Air Bud (1997)
## 1197 Picture Perfect (1997)
## 1198 In the Company of Men (1997)
## 1199 Career Girls (1997)
## 1200 Conspiracy Theory (1997)
## 1201 Desperate Measures (1998)
## 1202 Steel (1997)
## 1203 She's So Lovely (1997)
## 1204 Hoodlum (1997)
## 1205 Leave It to Beaver (1997)
## 1206 Mimic (1997)
## 1207 Money Talks (1997)
## 1208 Excess Baggage (1997)
## 1209 Kull the Conqueror (1997)
## 1210 Air Force One (1997)
## 1211 187 (One Eight Seven) (1997)
## 1212 Hunt for Red October, The (1990)
## 1213 My Own Private Idaho (1991)
## 1214 Kiss Me, Guido (1997)
## 1215 Star Maps (1997)
## 1216 In & Out (1997)
## 1217 Edge, The (1997)
## 1218 Peacemaker, The (1997)
## 1219 L.A. Confidential (1997)
## 1220 Seven Years in Tibet (1997)
## 1221 Kiss the Girls (1997)
## 1222 Soul Food (1997)
## 1223 Wishmaster (1997)
## 1224 Thousand Acres, A (1997)
## 1225 Game, The (1997)
## 1226 Fire Down Below (1997)
## 1227 U Turn (1997)
## 1228 MatchMaker, The (1997)
## 1229 Assignment, The (1997)
## 1230 Ulee's Gold (1997)
## 1231 Ice Storm, The (1997)
## 1232 Chasing Amy (1997)
## 1233 Full Monty, The (1997)
## 1234 Indian Summer (a.k.a. Alive & Kicking) (1996)
## 1235 Mrs. Brown (a.k.a. Her Majesty, Mrs. Brown) (1997)
## 1236 I Know What You Did Last Summer (1997)
## 1237 The Devil's Advocate (1997)
## 1238 RocketMan (a.k.a. Rocket Man) (1997)
## 1239 Playing God (1997)
## 1240 House of Yes, The (1997)
## 1241 Fast, Cheap & Out of Control (1997)
## 1242 Washington Square (1997)
## 1243 Year of the Horse (1997)
## 1244 Gattaca (1997)
## 1245 FairyTale: A True Story (1997)
## 1246 Phantoms (1998)
## 1247 Swept from the Sea (1997)
## 1248 Life Less Ordinary, A (1997)
## 1249 Hurricane Streets (1997)
## 1250 Eve's Bayou (1997)
## 1251 Switchback (1997)
## 1252 Gang Related (1997)
## 1253 Stripes (1981)
## 1254 Bean (1997)
## 1255 Mad City (1997)
## 1256 Welcome to Sarajevo (1997)
## 1257 Deceiver (1997)
## 1258 Rainmaker, The (1997)
## 1259 Boogie Nights (1997)
## 1260 Witness (1985)
## 1261 Incognito (1997)
## 1262 Starship Troopers (1997)
## 1263 Critical Care (1997)
## 1264 Joy Luck Club, The (1993)
## 1265 Chairman of the Board (1998)
## 1266 Sliding Doors (1998)
## 1267 Mortal Kombat: Annihilation (1997)
## 1268 Truman Show, The (1998)
## 1269 Wings of the Dove, The (1997)
## 1270 Mrs. Dalloway (1997)
## 1271 I Love You, I Love You Not (1996)
## 1272 Red Corner (1997)
## 1273 Jackal, The (1997)
## 1274 Anastasia (1997)
## 1275 Man Who Knew Too Little, The (1997)
## 1276 Alien: Resurrection (1997)
## 1277 Amistad (1997)
## 1278 Apostle, The (1997)
## 1279 Artemisia (1997)
## 1280 Bent (1997)
## 1281 Butcher Boy, The (1997)
## 1282 Deconstructing Harry (1997)
## 1283 Flubber (1997)
## 1284 For Richer or Poorer (1997)
## 1285 Good Will Hunting (1997)
## 1286 Home Alone 3 (1997)
## 1287 Midnight in the Garden of Good and Evil (1997)
## 1288 Mouse Hunt (1997)
## 1289 Scream 2 (1997)
## 1290 Stranger in the House (1997)
## 1291 Sweet Hereafter, The (1997)
## 1292 Titanic (1997)
## 1293 Tomorrow Never Dies (1997)
## 1294 Postman, The (1997)
## 1295 Horse Whisperer, The (1998)
## 1296 Jackie Brown (1997)
## 1297 Kundun (1997)
## 1298 Mr. Magoo (1997)
## 1299 Big Lebowski, The (1998)
## 1300 Afterglow (1997)
## 1301 My Life in Pink (Ma vie en rose) (1997)
## 1302 Great Expectations (1998)
## 1303 3 Ninjas: High Noon On Mega Mountain (1998)
## 1304 Senseless (1998)
## 1305 Wag the Dog (1997)
## 1306 Dark City (1998)
## 1307 Hard Rain (1998)
## 1308 Half Baked (1998)
## 1309 Fallen (1998)
## 1310 Shooting Fish (1997)
## 1311 Fallen Angels (Duo luo tian shi) (1995)
## 1312 Four Days in September (O Que Ãâ° Isso, Companheiro?) (1997)
## 1313 Spice World (1997)
## 1314 Deep Rising (1998)
## 1315 Music From Another Room (1998)
## 1316 Replacement Killers, The (1998)
## 1317 B. Monkey (1998)
## 1318 Night Flier (1997)
## 1319 Blues Brothers 2000 (1998)
## 1320 Wedding Singer, The (1998)
## 1321 Sphere (1998)
## 1322 Palmetto (1998)
## 1323 As Good as It Gets (1997)
## 1324 King of New York (1990)
## 1325 Twilight (1998)
## 1326 U.S. Marshals (1998)
## 1327 Welcome to Woop-Woop (1997)
## 1328 Love and Death on Long Island (1997)
## 1329 Everest (1998)
## 1330 Hush (1998)
## 1331 Suicide Kings (1997)
## 1332 Man in the Iron Mask, The (1998)
## 1333 Newton Boys, The (1998)
## 1334 Wild Things (1998)
## 1335 Paulie (1998)
## 1336 Cool, Dry Place, A (1998)
## 1337 Fireworks (Hana-bi) (1997)
## 1338 Primary Colors (1998)
## 1339 Wide Awake (1998)
## 1340 Two Girls and a Guy (1997)
## 1341 Object of My Affection, The (1998)
## 1342 Homegrown (1998)
## 1343 The Players Club (1998)
## 1344 Barney's Great Adventure (1998)
## 1345 Big One, The (1997)
## 1346 Chinese Box (1997)
## 1347 Lost in Space (1998)
## 1348 Mercury Rising (1998)
## 1349 Spanish Prisoner, The (1997)
## 1350 City of Angels (1998)
## 1351 Last Days of Disco, The (1998)
## 1352 Odd Couple II, The (1998)
## 1353 My Giant (1998)
## 1354 He Got Game (1998)
## 1355 Gingerbread Man, The (1998)
## 1356 Live Flesh (Carne trémula) (1997)
## 1357 Zero Effect (1998)
## 1358 Borrowers, The (1997)
## 1359 Krippendorf's Tribe (1998)
## 1360 Kurt & Courtney (1998)
## 1361 Real Blonde, The (1997)
## 1362 Mr. Nice Guy (Yat goh ho yan) (1997)
## 1363 Taste of Cherry (Ta'm e guilass) (1997)
## 1364 Character (Karakter) (1997)
## 1365 Species II (1998)
## 1366 Major League: Back to the Minors (1998)
## 1367 Big Hit, The (1998)
## 1368 Tarzan and the Lost City (1998)
## 1369 Dancer, Texas Pop. 81 (1998)
## 1370 Misérables, Les (1998)
## 1371 Clockwatchers (1997)
## 1372 Deep Impact (1998)
## 1373 Quest for Camelot (1998)
## 1374 Godzilla (1998)
## 1375 Bulworth (1998)
## 1376 Fear and Loathing in Las Vegas (1998)
## 1377 Opposite of Sex, The (1998)
## 1378 Almost Heroes (1998)
## 1379 Hope Floats (1998)
## 1380 Insomnia (1997)
## 1381 Ugly, The (1997)
## 1382 Perfect Murder, A (1998)
## 1383 Beyond Silence (Jenseits der Stille) (1996)
## 1384 Six Days Seven Nights (1998)
## 1385 Can't Hardly Wait (1998)
## 1386 High Art (1998)
## 1387 Children of Heaven, The (Bacheha-Ye Aseman) (1997)
## 1388 Dream for an Insomniac (1996)
## 1389 Henry Fool (1997)
## 1390 Mr. Jealousy (1997)
## 1391 Mulan (1998)
## 1392 X-Files: Fight the Future, The (1998)
## 1393 I Went Down (1997)
## 1394 Dr. Dolittle (1998)
## 1395 Out of Sight (1998)
## 1396 Picnic at Hanging Rock (1975)
## 1397 Smoke Signals (1998)
## 1398 Buffalo '66 (a.k.a. Buffalo 66) (1998)
## 1399 Armageddon (1998)
## 1400 Lethal Weapon 4 (1998)
## 1401 Madeline (1998)
## 1402 Small Soldiers (1998)
## 1403 Pi (1998)
## 1404 Whatever (1998)
## 1405 There's Something About Mary (1998)
## 1406 Plan 9 from Outer Space (1959)
## 1407 Broadway Melody, The (1929)
## 1408 All Quiet on the Western Front (1930)
## 1409 Cimarron (1931)
## 1410 Grand Hotel (1932)
## 1411 Mutiny on the Bounty (1935)
## 1412 Great Ziegfeld, The (1936)
## 1413 Life of Emile Zola, The (1937)
## 1414 You Can't Take It with You (1938)
## 1415 Mrs. Miniver (1942)
## 1416 Going My Way (1944)
## 1417 Lost Weekend, The (1945)
## 1418 Best Years of Our Lives, The (1946)
## 1419 Gentleman's Agreement (1947)
## 1420 Hamlet (1948)
## 1421 All the King's Men (1949)
## 1422 From Here to Eternity (1953)
## 1423 On the Waterfront (1954)
## 1424 Marty (1955)
## 1425 West Side Story (1961)
## 1426 Tom Jones (1963)
## 1427 Man for All Seasons, A (1966)
## 1428 In the Heat of the Night (1967)
## 1429 Oliver! (1968)
## 1430 Midnight Cowboy (1969)
## 1431 French Connection, The (1971)
## 1432 Rocky (1976)
## 1433 Kramer vs. Kramer (1979)
## 1434 Ordinary People (1980)
## 1435 Chariots of Fire (1981)
## 1436 Terms of Endearment (1983)
## 1437 Out of Africa (1985)
## 1438 Last Emperor, The (1987)
## 1439 Rain Man (1988)
## 1440 Driving Miss Daisy (1989)
## 1441 Take the Money and Run (1969)
## 1442 Klute (1971)
## 1443 Repo Man (1984)
## 1444 Metropolitan (1990)
## 1445 Labyrinth (1986)
## 1446 Breakfast Club, The (1985)
## 1447 Nightmare on Elm Street 2: Freddy's Revenge, A (1985)
## 1448 Nightmare on Elm Street 3: Dream Warriors, A (1987)
## 1449 Nightmare on Elm Street 4: The Dream Master, A (1988)
## 1450 Nightmare on Elm Street 5: The Dream Child, A (1989)
## 1451 Freddy's Dead: The Final Nightmare (Nightmare on Elm Street Part 6: Freddy's Dead, A) (1991)
## 1452 Friday the 13th (1980)
## 1453 Friday the 13th Part 2 (1981)
## 1454 Friday the 13th Part 3: 3D (1982)
## 1455 Friday the 13th Part IV: The Final Chapter (1984)
## 1456 Friday the 13th Part V: A New Beginning (1985)
## 1457 Friday the 13th Part VI: Jason Lives (1986)
## 1458 Friday the 13th Part VII: The New Blood (1988)
## 1459 Friday the 13th Part VIII: Jason Takes Manhattan (1989)
## 1460 Halloween (1978)
## 1461 Halloween II (1981)
## 1462 Halloween III: Season of the Witch (1982)
## 1463 Halloween 4: The Return of Michael Myers (1988)
## 1464 Halloween 5: The Revenge of Michael Myers (1989)
## 1465 Prom Night (1980)
## 1466 Prom Night IV: Deliver Us From Evil (1992)
## 1467 Child's Play (1988)
## 1468 Child's Play 2 (1990)
## 1469 Child's Play 3 (1991)
## 1470 Poltergeist (1982)
## 1471 Poltergeist II: The Other Side (1986)
## 1472 Poltergeist III (1988)
## 1473 Exorcist, The (1973)
## 1474 Exorcist II: The Heretic (1977)
## 1475 Exorcist III, The (1990)
## 1476 Lethal Weapon (1987)
## 1477 Lethal Weapon 2 (1989)
## 1478 Lethal Weapon 3 (1992)
## 1479 Gremlins (1984)
## 1480 Gremlins 2: The New Batch (1990)
## 1481 Goonies, The (1985)
## 1482 Mask of Zorro, The (1998)
## 1483 Polish Wedding (1998)
## 1484 This World, Then the Fireworks (1997)
## 1485 Soylent Green (1973)
## 1486 Metropolis (1927)
## 1487 Back to the Future Part II (1989)
## 1488 Back to the Future Part III (1990)
## 1489 Poseidon Adventure, The (1972)
## 1490 Freaky Friday (1977)
## 1491 Absent-Minded Professor, The (1961)
## 1492 Apple Dumpling Gang Rides Again, The (1979)
## 1493 Babes in Toyland (1961)
## 1494 Bambi (1942)
## 1495 Seven Samurai (Shichinin no samurai) (1954)
## 1496 Dangerous Liaisons (1988)
## 1497 Dune (1984)
## 1498 Last Temptation of Christ, The (1988)
## 1499 Godfather: Part III, The (1990)
## 1500 Rapture, The (1991)
## 1501 Lolita (1997)
## 1502 Disturbing Behavior (1998)
## 1503 Jane Austen's Mafia! (1998)
## 1504 Saving Private Ryan (1998)
## 1505 Barefoot Executive, The (1971)
## 1506 Black Cauldron, The (1985)
## 1507 Black Hole, The (1979)
## 1508 Blackbeard's Ghost (1968)
## 1509 Blank Check (1994)
## 1510 Candleshoe (1977)
## 1511 Cat from Outer Space, The (1978)
## 1512 Computer Wore Tennis Shoes, The (1969)
## 1513 Condorman (1981)
## 1514 D2: The Mighty Ducks (1994)
## 1515 Darby O'Gill and the Little People (1959)
## 1516 Devil and Max Devlin, The (1981)
## 1517 Flight of the Navigator (1986)
## 1518 Great Mouse Detective, The (1986)
## 1519 Herbie Goes Bananas (1980)
## 1520 Herbie Goes to Monte Carlo (1977)
## 1521 Hocus Pocus (1993)
## 1522 Honey, I Blew Up the Kid (1992)
## 1523 Honey, I Shrunk the Kids (1989)
## 1524 Hot Lead and Cold Feet (1978)
## 1525 In Search of the Castaways (1962)
## 1526 Incredible Journey, The (1963)
## 1527 Negotiator, The (1998)
## 1528 Parent Trap, The (1998)
## 1529 BASEketball (1998)
## 1530 Roger & Me (1989)
## 1531 Purple Rose of Cairo, The (1985)
## 1532 Out of the Past (1947)
## 1533 Doctor Zhivago (1965)
## 1534 Fanny and Alexander (Fanny och Alexander) (1982)
## 1535 Trip to Bountiful, The (1985)
## 1536 Tender Mercies (1983)
## 1537 And the Band Played On (1993)
## 1538 'burbs, The (1989)
## 1539 Fandango (1985)
## 1540 Night Porter, The (Portiere di notte, Il) (1974)
## 1541 Mephisto (1981)
## 1542 Blue Velvet (1986)
## 1543 Journey of Natty Gann, The (1985)
## 1544 Jungle Book, The (1967)
## 1545 Lady and the Tramp (1955)
## 1546 Little Mermaid, The (1989)
## 1547 Mighty Ducks, The (1992)
## 1548 Muppet Christmas Carol, The (1992)
## 1549 Newsies (1992)
## 1550 101 Dalmatians (One Hundred and One Dalmatians) (1961)
## 1551 Peter Pan (1953)
## 1552 Popeye (1980)
## 1553 Rescuers Down Under, The (1990)
## 1554 Rescuers, The (1977)
## 1555 Return from Witch Mountain (1978)
## 1556 Return of Jafar, The (1994)
## 1557 Return to Oz (1985)
## 1558 Rocketeer, The (1991)
## 1559 Shaggy D.A., The (1976)
## 1560 Sleeping Beauty (1959)
## 1561 Something Wicked This Way Comes (1983)
## 1562 Son of Flubber (1963)
## 1563 Song of the South (1946)
## 1564 Splash (1984)
## 1565 Steamboat Willie (1928)
## 1566 Tall Tale (1995)
## 1567 Tex (1982)
## 1568 Tron (1982)
## 1569 Swing Kids (1993)
## 1570 Halloween H20: 20 Years Later (Halloween 7: The Revenge of Laurie Strode) (1998)
## 1571 L.A. Story (1991)
## 1572 Jerk, The (1979)
## 1573 Dead Men Don't Wear Plaid (1982)
## 1574 Man with Two Brains, The (1983)
## 1575 Grand Canyon (1991)
## 1576 Outsiders, The (1983)
## 1577 Indiana Jones and the Temple of Doom (1984)
## 1578 Lord of the Rings, The (1978)
## 1579 1984 (Nineteen Eighty-Four) (1984)
## 1580 Dead Zone, The (1983)
## 1581 Maximum Overdrive (1986)
## 1582 Needful Things (1993)
## 1583 Cujo (1983)
## 1584 Children of the Corn (1984)
## 1585 All Dogs Go to Heaven (1989)
## 1586 Addams Family, The (1991)
## 1587 Ever After: A Cinderella Story (1998)
## 1588 Snake Eyes (1998)
## 1589 Atlantic City (1980)
## 1590 Autumn Sonata (Höstsonaten) (1978)
## 1591 Who's Afraid of Virginia Woolf? (1966)
## 1592 Adventures in Babysitting (1987)
## 1593 Weird Science (1985)
## 1594 Doctor Dolittle (1967)
## 1595 Nutty Professor, The (1963)
## 1596 Charlotte's Web (1973)
## 1597 Watership Down (1978)
## 1598 Secret of NIMH, The (1982)
## 1599 Dark Crystal, The (1982)
## 1600 American Tail, An (1986)
## 1601 American Tail: Fievel Goes West, An (1991)
## 1602 Legend (1985)
## 1603 Sixteen Candles (1984)
## 1604 Pretty in Pink (1986)
## 1605 St. Elmo's Fire (1985)
## 1606 Clan of the Cave Bear, The (1986)
## 1607 House (1986)
## 1608 House II: The Second Story (1987)
## 1609 Gods Must Be Crazy, The (1980)
## 1610 Gods Must Be Crazy II, The (1989)
## 1611 Air Bud: Golden Receiver (1998)
## 1612 Avengers, The (1998)
## 1613 How Stella Got Her Groove Back (1998)
## 1614 Slums of Beverly Hills, The (1998)
## 1615 Best Man, The (Testimone dello sposo, Il) (1998)
## 1616 Henry: Portrait of a Serial Killer (1986)
## 1617 Rosemary's Baby (1968)
## 1618 NeverEnding Story, The (1984)
## 1619 NeverEnding Story II: The Next Chapter, The (1990)
## 1620 Attack of the Killer Tomatoes! (1978)
## 1621 Surf Nazis Must Die (1987)
## 1622 Your Friends and Neighbors (1998)
## 1623 Return to Paradise (1998)
## 1624 Blade (1998)
## 1625 Dead Man on Campus (1998)
## 1626 Wrongfully Accused (1998)
## 1627 Next Stop Wonderland (1998)
## 1628 Strike! (a.k.a. All I Wanna Do, The Hairy Bird) (1998)
## 1629 Beetlejuice (1988)
## 1630 DéjàVu (1997)
## 1631 Rope (1948)
## 1632 Family Plot (1976)
## 1633 Frenzy (1972)
## 1634 Topaz (1969)
## 1635 Torn Curtain (1966)
## 1636 Marnie (1964)
## 1637 Wrong Man, The (1956)
## 1638 Man Who Knew Too Much, The (1956)
## 1639 Trouble with Harry, The (1955)
## 1640 I Confess (1953)
## 1641 Strangers on a Train (1951)
## 1642 Stage Fright (1950)
## 1643 54 (1998)
## 1644 Why Do Fools Fall In Love? (1998)
## 1645 Willow (1988)
## 1646 Untouchables, The (1987)
## 1647 Dirty Work (1998)
## 1648 Knock Off (1998)
## 1649 Paradine Case, The (1947)
## 1650 Lifeboat (1944)
## 1651 Shadow of a Doubt (1943)
## 1652 Saboteur (1942)
## 1653 Mr. & Mrs. Smith (1941)
## 1654 Suspicion (1941)
## 1655 Jamaica Inn (1939)
## 1656 Lady Vanishes, The (1938)
## 1657 Sabotage (1936)
## 1658 Secret Agent (1936)
## 1659 Man Who Knew Too Much, The (1934)
## 1660 Ring, The (1927)
## 1661 Lodger: A Story of the London Fog, The (1927)
## 1662 Rounders (1998)
## 1663 Cube (1997)
## 1664 Simon Birch (1998)
## 1665 Swept Away (Travolti da un insolito destino nell'azzurro mare d'Agosto) (1975)
## 1666 My Bodyguard (1980)
## 1667 Class (1983)
## 1668 Broadcast News (1987)
## 1669 Allnighter, The (1987)
## 1670 Working Girl (1988)
## 1671 Married to the Mob (1988)
## 1672 Say Anything... (1989)
## 1673 My Blue Heaven (1990)
## 1674 Hero (1992)
## 1675 Toys (1992)
## 1676 Young Doctors in Love (1982)
## 1677 Parasite (1982)
## 1678 No Small Affair (1984)
## 1679 Blame It on Rio (1984)
## 1680 Wisdom (1986)
## 1681 One Crazy Summer (1986)
## 1682 About Last Night... (1986)
## 1683 Seventh Sign, The (1988)
## 1684 We're No Angels (1989)
## 1685 Nothing But Trouble (1991)
## 1686 Butcher's Wife, The (1991)
## 1687 Mortal Thoughts (1991)
## 1688 Few Good Men, A (1992)
## 1689 Indecent Proposal (1993)
## 1690 Permanent Midnight (1998)
## 1691 One True Thing (1998)
## 1692 Rush Hour (1998)
## 1693 Six-String Samurai (1998)
## 1694 Ronin (1998)
## 1695 Urban Legend (1998)
## 1696 Clay Pigeons (1998)
## 1697 Monument Ave. (1998)
## 1698 Pecker (1998)
## 1699 Sheltering Sky, The (1990)
## 1700 Fiendish Plot of Dr. Fu Manchu, The (1980)
## 1701 Them! (1954)
## 1702 Thing, The (1982)
## 1703 Player, The (1992)
## 1704 Stardust Memories (1980)
## 1705 Edward Scissorhands (1990)
## 1706 Overnight Delivery (1998)
## 1707 Antz (1998)
## 1708 Impostors, The (1998)
## 1709 Night at the Roxbury, A (1998)
## 1710 What Dreams May Come (1998)
## 1711 Strangeland (1998)
## 1712 Producers, The (1968)
## 1713 History of the World: Part I (1981)
## 1714 My Cousin Vinny (1992)
## 1715 Nashville (1975)
## 1716 Love Is the Devil (1998)
## 1717 Holy Man (1998)
## 1718 One Tough Cop (1998)
## 1719 Mighty, The (1998)
## 1720 2010: The Year We Make Contact (1984)
## 1721 Children of a Lesser God (1986)
## 1722 Elephant Man, The (1980)
## 1723 Beloved (1998)
## 1724 Bride of Chucky (Child's Play 4) (1998)
## 1725 Practical Magic (1998)
## 1726 Happiness (1998)
## 1727 Apt Pupil (1998)
## 1728 Pleasantville (1998)
## 1729 Soldier (1998)
## 1730 Cruise, The (1998)
## 1731 Life Is Beautiful (La Vita è bella) (1997)
## 1732 Orgazmo (1997)
## 1733 Tales from the Darkside: The Movie (1990)
## 1734 Vampires (1998)
## 1735 American History X (1998)
## 1736 Hands on a Hard Body (1996)
## 1737 Living Out Loud (1998)
## 1738 Belly (1998)
## 1739 Gods and Monsters (1998)
## 1740 Siege, The (1998)
## 1741 Waterboy, The (1998)
## 1742 Elizabeth (1998)
## 1743 Velvet Goldmine (1998)
## 1744 I Still Know What You Did Last Summer (1998)
## 1745 I'll Be Home For Christmas (1998)
## 1746 Meet Joe Black (1998)
## 1747 Hard Core Logo (1996)
## 1748 Runaway Train (1985)
## 1749 Stepford Wives, The (1975)
## 1750 Pope of Greenwich Village, The (1984)
## 1751 Sid and Nancy (1986)
## 1752 Mona Lisa (1986)
## 1753 Heart Condition (1990)
## 1754 Nights of Cabiria (Notti di Cabiria, Le) (1957)
## 1755 Big Chill, The (1983)
## 1756 Enemy of the State (1998)
## 1757 Rugrats Movie, The (1998)
## 1758 Bug's Life, A (1998)
## 1759 Celebrity (1998)
## 1760 Central Station (Central do Brasil) (1998)
## 1761 Savior (1998)
## 1762 Waking Ned Devine (a.k.a. Waking Ned) (1998)
## 1763 Celebration, The (Festen) (1998)
## 1764 Pink Flamingos (1972)
## 1765 Glen or Glenda (1953)
## 1766 Godzilla (Gojira) (1954)
## 1767 Godzilla 1985: The Legend Is Reborn (Gojira) (Godzilla) (Return of Godzilla, The) (1984)
## 1768 King Kong vs. Godzilla (Kingukongu tai Gojira) (1962)
## 1769 King Kong (1933)
## 1770 King Kong (1976)
## 1771 King Kong Lives (1986)
## 1772 Desperately Seeking Susan (1985)
## 1773 Emerald Forest, The (1985)
## 1774 Fletch (1985)
## 1775 Fletch Lives (1989)
## 1776 Red Sonja (1985)
## 1777 Gung Ho (1986)
## 1778 Money Pit, The (1986)
## 1779 View to a Kill, A (1985)
## 1780 Lifeforce (1985)
## 1781 Police Academy (1984)
## 1782 Police Academy 2: Their First Assignment (1985)
## 1783 Police Academy 3: Back in Training (1986)
## 1784 Police Academy 4: Citizens on Patrol (1987)
## 1785 Police Academy 5: Assignment: Miami Beach (1988)
## 1786 Police Academy 6: City Under Siege (1989)
## 1787 Babe: Pig in the City (1998)
## 1788 Home Fries (1998)
## 1789 Very Bad Things (1998)
## 1790 Steam: The Turkish Bath (Hamam) (1997)
## 1791 Psycho (1998)
## 1792 Little Voice (1998)
## 1793 Simple Plan, A (1998)
## 1794 Jack Frost (1998)
## 1795 Star Trek: Insurrection (1998)
## 1796 Prince of Egypt, The (1998)
## 1797 Rushmore (1998)
## 1798 Shakespeare in Love (1998)
## 1799 Miracle on 34th Street (1947)
## 1800 Santa Claus: The Movie (1985)
## 1801 Prancer (1989)
## 1802 Pale Rider (1985)
## 1803 Rambo: First Blood Part II (1985)
## 1804 First Blood (Rambo: First Blood) (1982)
## 1805 Rambo III (1988)
## 1806 Jewel of the Nile, The (1985)
## 1807 Romancing the Stone (1984)
## 1808 Cocoon (1985)
## 1809 Cocoon: The Return (1988)
## 1810 Rocky II (1979)
## 1811 Rocky III (1982)
## 1812 Rocky IV (1985)
## 1813 Rocky V (1990)
## 1814 Clue (1985)
## 1815 Young Sherlock Holmes (1985)
## 1816 Violets Are Blue... (1986)
## 1817 Back to School (1986)
## 1818 Heartburn (1986)
## 1819 Nothing in Common (1986)
## 1820 Extremities (1986)
## 1821 Karate Kid, The (1984)
## 1822 Karate Kid, Part II, The (1986)
## 1823 Karate Kid, Part III, The (1989)
## 1824 Christmas Vacation (National Lampoon's Christmas Vacation) (1989)
## 1825 You've Got Mail (1998)
## 1826 General, The (1998)
## 1827 Thin Red Line, The (1998)
## 1828 Faculty, The (1998)
## 1829 Mighty Joe Young (1998)
## 1830 Mighty Joe Young (1949)
## 1831 Patch Adams (1998)
## 1832 Stepmom (1998)
## 1833 Civil Action, A (1998)
## 1834 Hurlyburly (1998)
## 1835 Tea with Mussolini (1999)
## 1836 Affliction (1997)
## 1837 Hilary and Jackie (1998)
## 1838 Playing by Heart (1998)
## 1839 At First Sight (1999)
## 1840 In Dreams (1999)
## 1841 Varsity Blues (1999)
## 1842 Virus (1999)
## 1843 Howard the Duck (1986)
## 1844 Gate, The (1987)
## 1845 Boy Who Could Fly, The (1986)
## 1846 Fly, The (1958)
## 1847 Fly, The (1986)
## 1848 Fly II, The (1989)
## 1849 Running Scared (1986)
## 1850 Armed and Dangerous (1986)
## 1851 Texas Chainsaw Massacre, The (1974)
## 1852 Texas Chainsaw Massacre 2, The (1986)
## 1853 Texas Chainsaw Massacre: The Next Generation (a.k.a. The Return of the Texas Chainsaw Massacre) (1994)
## 1854 Ruthless People (1986)
## 1855 Deadly Friend (1986)
## 1856 Name of the Rose, The (Name der Rose, Der) (1986)
## 1857 Jumpin' Jack Flash (1986)
## 1858 Peggy Sue Got Married (1986)
## 1859 Crocodile Dundee (1986)
## 1860 Crocodile Dundee II (1988)
## 1861 Tough Guys (1986)
## 1862 Soul Man (1986)
## 1863 Color of Money, The (1986)
## 1864 52 Pick-Up (1986)
## 1865 Heartbreak Ridge (1986)
## 1866 Firewalker (1986)
## 1867 áThree Amigos! (1986)
## 1868 My Name Is Joe (1998)
## 1869 Still Crazy (1998)
## 1870 Day of the Beast, The (DÃÂa de la Bestia, El) (1995)
## 1871 She's All That (1999)
## 1872 Peeping Tom (1960)
## 1873 Payback (1999)
## 1874 Simply Irresistible (1999)
## 1875 20 Dates (1998)
## 1876 Harmonists, The (1997)
## 1877 Last Days, The (1998)
## 1878 Fantastic Planet, The (Planète sauvage, La) (1973)
## 1879 Blast from the Past (1999)
## 1880 Message in a Bottle (1999)
## 1881 My Favorite Martian (1999)
## 1882 Jawbreaker (1999)
## 1883 October Sky (1999)
## 1884 Office Space (1999)
## 1885 Apple, The (Sib) (1998)
## 1886 200 Cigarettes (1999)
## 1887 8MM (1999)
## 1888 Other Sister, The (1999)
## 1889 Long Goodbye, The (1973)
## 1890 Ballad of Narayama, The (Narayama bushiko) (1983)
## 1891 Pet Sematary (1989)
## 1892 Pet Sematary II (1992)
## 1893 Children of the Corn II: The Final Sacrifice (1993)
## 1894 Children of the Corn III (1994)
## 1895 Christine (1983)
## 1896 Night Shift (1982)
## 1897 Airport (1970)
## 1898 Airport 1975 (1974)
## 1899 Airport '77 (1977)
## 1900 Rollercoaster (1977)
## 1901 Towering Inferno, The (1974)
## 1902 Alligator (1980)
## 1903 Meteor (1979)
## 1904 Westworld (1973)
## 1905 Logan's Run (1976)
## 1906 Planet of the Apes (1968)
## 1907 Beneath the Planet of the Apes (1970)
## 1908 Battle for the Planet of the Apes (1973)
## 1909 Conquest of the Planet of the Apes (1972)
## 1910 Escape from the Planet of the Apes (1971)
## 1911 Avalanche (1978)
## 1912 Earthquake (1974)
## 1913 Beyond the Poseidon Adventure (1979)
## 1914 Dancemaker (1998)
## 1915 Analyze This (1999)
## 1916 Corruptor, The (1999)
## 1917 Cruel Intentions (1999)
## 1918 Lock, Stock & Two Smoking Barrels (1998)
## 1919 School of Flesh, The (Ãâ°cole de la chair, L') (1998)
## 1920 Deep End of the Ocean, The (1999)
## 1921 Rage: Carrie 2, The (1999)
## 1922 Wing Commander (1999)
## 1923 Haunting, The (1963)
## 1924 Dead Ringers (1988)
## 1925 My Boyfriend's Back (1993)
## 1926 Village of the Damned (1960)
## 1927 Children of the Damned (1963)
## 1928 Baby Geniuses (1999)
## 1929 I Stand Alone (Seul contre tous) (1998)
## 1930 Forces of Nature (1999)
## 1931 King and I, The (1999)
## 1932 Ravenous (1999)
## 1933 True Crime (1999)
## 1934 Dangerous Beauty (1998)
## 1935 King and I, The (1956)
## 1936 Doug's 1st Movie (1999)
## 1937 EDtv (1999)
## 1938 Mod Squad, The (1999)
## 1939 Walk on the Moon, A (1999)
## 1940 Matrix, The (1999)
## 1941 10 Things I Hate About You (1999)
## 1942 Tango (1998)
## 1943 Out-of-Towners, The (1999)
## 1944 Dreamlife of Angels, The (Vie rêvée des anges, La) (1998)
## 1945 Metroland (1997)
## 1946 Following (1998)
## 1947 Go (1999)
## 1948 Never Been Kissed (1999)
## 1949 Twin Dragons (Shuang long hui) (1992)
## 1950 Cookie's Fortune (1999)
## 1951 Lovers of the Arctic Circle, The (Los Amantes del CÃÂrculo Polar) (1998)
## 1952 Goodbye Lover (1999)
## 1953 Life (1999)
## 1954 Friends & Lovers (1999)
## 1955 Hideous Kinky (1998)
## 1956 Monster, The (Mostro, Il) (1994)
## 1957 Open Your Eyes (Abre los ojos) (1997)
## 1958 SLC Punk! (1998)
## 1959 Lost & Found (1999)
## 1960 Pushing Tin (1999)
## 1961 Election (1999)
## 1962 eXistenZ (1999)
## 1963 Entrapment (1999)
## 1964 Idle Hands (1999)
## 1965 Get Real (1998)
## 1966 King of Masks, The (Bian Lian) (1996)
## 1967 Winslow Boy, The (1999)
## 1968 Mildred Pierce (1945)
## 1969 Night of the Comet (1984)
## 1970 Chopping Mall (a.k.a. Killbots) (1986)
## 1971 My Science Project (1985)
## 1972 Dick Tracy (1990)
## 1973 Mummy, The (1999)
## 1974 Castle, The (1997)
## 1975 This Is My Father (1998)
## 1976 William Shakespeare's A Midsummer Night's Dream (1999)
## 1977 Trippin' (1999)
## 1978 After Life (Wandafuru raifu) (1998)
## 1979 Black Mask (Hak hap) (1996)
## 1980 Star Wars: Episode I - The Phantom Menace (1999)
## 1981 Love Letter, The (1999)
## 1982 Besieged (a.k.a. L' Assedio) (1998)
## 1983 Saragossa Manuscript, The (Rekopis znaleziony w Saragossie) (1965)
## 1984 Mummy, The (1932)
## 1985 Mummy, The (1959)
## 1986 Mommie Dearest (1981)
## 1987 Superman (1978)
## 1988 Superman II (1980)
## 1989 Superman III (1983)
## 1990 Superman IV: The Quest for Peace (1987)
## 1991 Dracula (1931)
## 1992 Frankenstein (1931)
## 1993 Frankenstein Meets the Wolf Man (1943)
## 1994 Curse of Frankenstein, The (1957)
## 1995 Wolf Man, The (1941)
## 1996 Howling II: Your Sister Is a Werewolf (1985)
## 1997 Tarantula (1955)
## 1998 Rocky Horror Picture Show, The (1975)
## 1999 It Came from Hollywood (1982)
## 2000 Thing from Another World, The (1951)
## 2001 It Came from Outer Space (1953)
## 2002 War of the Worlds, The (1953)
## 2003 Invasion of the Body Snatchers (1956)
## 2004 Earth vs. the Flying Saucers (1956)
## 2005 Swamp Thing (1982)
## 2006 Pork Chop Hill (1959)
## 2007 Run Silent Run Deep (1958)
## 2008 Notting Hill (1999)
## 2009 Thirteenth Floor, The (1999)
## 2010 Loss of Sexual Innocence, The (1999)
## 2011 Instinct (1999)
## 2012 Buena Vista Social Club (1999)
## 2013 Free Enterprise (1998)
## 2014 Limbo (1999)
## 2015 Austin Powers: The Spy Who Shagged Me (1999)
## 2016 Red Violin, The (Violon rouge, Le) (1998)
## 2017 Tarzan (1999)
## 2018 General's Daughter, The (1999)
## 2019 Ideal Husband, An (1999)
## 2020 Legend of 1900, The (a.k.a. The Legend of the Pianist on the Ocean) (Leggenda del pianista sull'oceano) (1998)
## 2021 Run Lola Run (Lola rennt) (1998)
## 2022 Trekkies (1997)
## 2023 Big Daddy (1999)
## 2024 Boys, The (1998)
## 2025 Dinner Game, The (Dîner de cons, Le) (1998)
## 2026 My Son the Fanatic (1997)
## 2027 Zone 39 (1997)
## 2028 Arachnophobia (1990)
## 2029 South Park: Bigger, Longer and Uncut (1999)
## 2030 Wild Wild West (1999)
## 2031 Summer of Sam (1999)
## 2032 American Pie (1999)
## 2033 Arlington Road (1999)
## 2034 Autumn Tale, An (Conte d'automne) (1998)
## 2035 Muppets From Space (1999)
## 2036 Blair Witch Project, The (1999)
## 2037 Eyes Wide Shut (1999)
## 2038 Lake Placid (1999)
## 2039 Ghostbusters (a.k.a. Ghost Busters) (1984)
## 2040 Ghostbusters II (1989)
## 2041 Drop Dead Gorgeous (1999)
## 2042 Haunting, The (1999)
## 2043 Inspector Gadget (1999)
## 2044 Deep Blue Sea (1999)
## 2045 Mystery Men (1999)
## 2046 Runaway Bride (1999)
## 2047 Twin Falls Idaho (1999)
## 2048 Killing, The (1956)
## 2049 Killer's Kiss (1955)
## 2050 Spartacus (1960)
## 2051 Lolita (1962)
## 2052 Barry Lyndon (1975)
## 2053 400 Blows, The (Les quatre cents coups) (1959)
## 2054 Jules and Jim (Jules et Jim) (1961)
## 2055 Vibes (1988)
## 2056 Mosquito Coast, The (1986)
## 2057 Golden Child, The (1986)
## 2058 Brighton Beach Memoirs (1986)
## 2059 Assassination (1987)
## 2060 Crimes of the Heart (1986)
## 2061 Color Purple, The (1985)
## 2062 Kindred, The (1986)
## 2063 No Mercy (1986)
## 2064 Ménage (Tenue de soirée) (1986)
## 2065 Native Son (1986)
## 2066 Otello (1986)
## 2067 Mission, The (1986)
## 2068 Little Shop of Horrors (1986)
## 2069 Little Shop of Horrors, The (1960)
## 2070 Allan Quatermain and the Lost City of Gold (1987)
## 2071 Morning After, The (1986)
## 2072 Radio Days (1987)
## 2073 From the Hip (1987)
## 2074 Outrageous Fortune (1987)
## 2075 Deadtime Stories (1987)
## 2076 Frances (1982)
## 2077 Dick (1999)
## 2078 Iron Giant, The (1999)
## 2079 Sixth Sense, The (1999)
## 2080 Thomas Crown Affair, The (1999)
## 2081 Thomas Crown Affair, The (1968)
## 2082 Acid House, The (1998)
## 2083 Adventures of Sebastian Cole, The (1998)
## 2084 Yards, The (2000)
## 2085 Bowfinger (1999)
## 2086 Brokedown Palace (1999)
## 2087 Detroit Rock City (1999)
## 2088 Better Than Chocolate (1999)
## 2089 Head On (1998)
## 2090 Heaven Can Wait (1978)
## 2091 Pit and the Pendulum (1961)
## 2092 Masque of the Red Death, The (1964)
## 2093 Haunted Honeymoon (1986)
## 2094 Cat's Eye (1985)
## 2095 Monty Python's And Now for Something Completely Different (1971)
## 2096 Damien: Omen II (1978)
## 2097 Final Conflict, The (a.k.a. Omen III: The Final Conflict) (1981)
## 2098 Airplane! (1980)
## 2099 Airplane II: The Sequel (1982)
## 2100 American Werewolf in Paris, An (1997)
## 2101 European Vacation (aka National Lampoon's European Vacation) (1985)
## 2102 National Lampoon's Vacation (1983)
## 2103 Funny Farm (1988)
## 2104 Big (1988)
## 2105 Problem Child (1990)
## 2106 Problem Child 2 (1991)
## 2107 Little Nemo: Adventures in Slumberland (1992)
## 2108 Oscar and Lucinda (a.k.a. Oscar & Lucinda) (1997)
## 2109 Tequila Sunrise (1988)
## 2110 Pelican Brief, The (1993)
## 2111 Christmas Story, A (1983)
## 2112 Mickey Blue Eyes (1999)
## 2113 Teaching Mrs. Tingle (1999)
## 2114 Universal Soldier: The Return (1999)
## 2115 Universal Soldier (1992)
## 2116 Perfect Blue (1997)
## 2117 In Too Deep (1999)
## 2118 Source, The (1999)
## 2119 Iron Eagle (1986)
## 2120 Iron Eagle II (1988)
## 2121 Aces: Iron Eagle III (1992)
## 2122 Iron Eagle IV (1995)
## 2123 Three Days of the Condor (3 Days of the Condor) (1975)
## 2124 Hamlet (1964)
## 2125 Medicine Man (1992)
## 2126 On the Ropes (1999)
## 2127 13th Warrior, The (1999)
## 2128 Astronaut's Wife, The (1999)
## 2129 Dudley Do-Right (1999)
## 2130 Muse, The (1999)
## 2131 Chill Factor (1999)
## 2132 Outside Providence (1999)
## 2133 Bedrooms & Hallways (1998)
## 2134 West Beirut (West Beyrouth) (1998)
## 2135 Stigmata (1999)
## 2136 Stir of Echoes (1999)
## 2137 Black Cat, White Cat (Crna macka, beli macor) (1998)
## 2138 Minus Man, The (1999)
## 2139 Adventures of Milo and Otis, The (Koneko monogatari) (1986)
## 2140 Only Angels Have Wings (1939)
## 2141 Othello (Tragedy of Othello: The Moor of Venice, The) (1952)
## 2142 Saturn 3 (1980)
## 2143 Soldier's Story, A (1984)
## 2144 I Saw What You Did (1965)
## 2145 Yellow Submarine (1968)
## 2146 American Beauty (1999)
## 2147 Stop Making Sense (1984)
## 2148 Blue Streak (1999)
## 2149 For Love of the Game (1999)
## 2150 Caligula (1979)
## 2151 Hard Day's Night, A (1964)
## 2152 Sugar Town (1999)
## 2153 Buddy Holly Story, The (1978)
## 2154 Fright Night (1985)
## 2155 Fright Night Part II (1988)
## 2156 Barefoot in the Park (1967)
## 2157 Deliverance (1972)
## 2158 Excalibur (1981)
## 2159 Pajama Game, The (1957)
## 2160 Sommersby (1993)
## 2161 Thumbelina (1994)
## 2162 Tommy (1975)
## 2163 Hell Night (1981)
## 2164 Armour of God II: Operation Condor (Operation Condor) (Fei ying gai wak) (1991)
## 2165 Armour of God (Long xiong hu di) (1987)
## 2166 Double Jeopardy (1999)
## 2167 Jakob the Liar (1999)
## 2168 Mumford (1999)
## 2169 Dog Park (1998)
## 2170 Guinevere (1999)
## 2171 Adventures of Elmo in Grouchland, The (1999)
## 2172 Simon Sez (1999)
## 2173 Drive Me Crazy (1999)
## 2174 Mystery, Alaska (1999)
## 2175 Three Kings (1999)
## 2176 Happy, Texas (1999)
## 2177 New Rose Hotel (1998)
## 2178 Plunkett & MaCleane (1999)
## 2179 Romance (1999)
## 2180 Alvarez Kelly (1966)
## 2181 And the Ship Sails On (E la nave va) (1983)
## 2182 Dark Half, The (1993)
## 2183 Gulliver's Travels (1939)
## 2184 Monkey Shines (1988)
## 2185 Phantasm (1979)
## 2186 Psycho II (1983)
## 2187 Psycho III (1986)
## 2188 Sanjuro (Tsubaki Sanjûrô) (1962)
## 2189 Random Hearts (1999)
## 2190 Superstar (1999)
## 2191 Boys Don't Cry (1999)
## 2192 Limey, The (1999)
## 2193 Risky Business (1983)
## 2194 Total Recall (1990)
## 2195 Body Heat (1981)
## 2196 Ferris Bueller's Day Off (1986)
## 2197 Year of Living Dangerously, The (1982)
## 2198 High Plains Drifter (1973)
## 2199 Hang 'Em High (1968)
## 2200 Drunken Master (Jui kuen) (1978)
## 2201 Conformist, The (Conformista, Il) (1970)
## 2202 Hairspray (1988)
## 2203 Brief Encounter (1946)
## 2204 Razor's Edge, The (1984)
## 2205 Reds (1981)
## 2206 Return with Honor (1998)
## 2207 Time of the Gypsies (Dom za vesanje) (1989)
## 2208 Days of Heaven (1978)
## 2209 Lady Eve, The (1941)
## 2210 Sullivan's Travels (1941)
## 2211 Palm Beach Story, The (1942)
## 2212 Niagara (1953)
## 2213 Gilda (1946)
## 2214 South Pacific (1958)
## 2215 Flashdance (1983)
## 2216 Indochine (1992)
## 2217 Dirty Dozen, The (1967)
## 2218 Help! (1965)
## 2219 Goldfinger (1964)
## 2220 From Russia with Love (1963)
## 2221 Dr. No (1962)
## 2222 Blue Lagoon, The (1980)
## 2223 Fistful of Dollars, A (Per un pugno di dollari) (1964)
## 2224 Sydney (Hard Eight) (1996)
## 2225 Home Alone 2: Lost in New York (1992)
## 2226 Someone to Watch Over Me (1987)
## 2227 Fight Club (1999)
## 2228 Story of Us, The (1999)
## 2229 Fever Pitch (1997)
## 2230 Julien Donkey-Boy (1999)
## 2231 Omega Code, The (1999)
## 2232 Straight Story, The (1999)
## 2233 Bad Seed, The (1956)
## 2234 Time Bandits (1981)
## 2235 Man and a Woman, A (Un homme et une femme) (1966)
## 2236 Fitzcarraldo (1982)
## 2237 All That Jazz (1979)
## 2238 Red Sorghum (Hong gao liang) (1987)
## 2239 Crimes and Misdemeanors (1989)
## 2240 Bats (1999)
## 2241 Best Man, The (1999)
## 2242 Bringing Out the Dead (1999)
## 2243 Crazy in Alabama (1999)
## 2244 Three to Tango (1999)
## 2245 Body Shots (1999)
## 2246 Guardian, The (1990)
## 2247 Ipcress File, The (1965)
## 2248 On Any Sunday (1971)
## 2249 RoboCop (1987)
## 2250 RoboCop 2 (1990)
## 2251 Who Framed Roger Rabbit? (1988)
## 2252 Melvin and Howard (1980)
## 2253 For Your Eyes Only (1981)
## 2254 Licence to Kill (1989)
## 2255 Live and Let Die (1973)
## 2256 Rawhead Rex (1986)
## 2257 Thunderball (1965)
## 2258 House on Haunted Hill (1999)
## 2259 Music of the Heart (1999)
## 2260 Being John Malkovich (1999)
## 2261 Princess Mononoke (Mononoke-hime) (1997)
## 2262 My Best Fiend (Mein liebster Feind) (1999)
## 2263 Train of Life (Train de vie) (1998)
## 2264 Bachelor, The (1999)
## 2265 Bone Collector, The (1999)
## 2266 Insider, The (1999)
## 2267 American Movie (1999)
## 2268 Last Night (1998)
## 2269 Rosetta (1999)
## 2270 They Shoot Horses, Don't They? (1969)
## 2271 Bride of Re-Animator (1990)
## 2272 Bustin' Loose (1981)
## 2273 Coma (1978)
## 2274 Creepshow (1982)
## 2275 Creepshow 2 (1987)
## 2276 Re-Animator (1985)
## 2277 Drugstore Cowboy (1989)
## 2278 Falling Down (1993)
## 2279 Funhouse, The (1981)
## 2280 General, The (1926)
## 2281 Piranha (1978)
## 2282 Taming of the Shrew, The (1967)
## 2283 Nighthawks (1981)
## 2284 Yojimbo (1961)
## 2285 Repossessed (1990)
## 2286 Omega Man, The (1971)
## 2287 Spaceballs (1987)
## 2288 Robin Hood (1973)
## 2289 Mister Roberts (1955)
## 2290 Quest for Fire (Guerre du feu, La) (1981)
## 2291 Little Big Man (1970)
## 2292 Face in the Crowd, A (1957)
## 2293 Trading Places (1983)
## 2294 Meatballs (1979)
## 2295 Meatballs Part II (1984)
## 2296 Meatballs III (1987)
## 2297 Meatballs 4 (1992)
## 2298 Dead Again (1991)
## 2299 Peter's Friends (1992)
## 2300 Incredibly True Adventure of Two Girls in Love, The (1995)
## 2301 Under the Rainbow (1981)
## 2302 Anywhere But Here (1999)
## 2303 Dogma (1999)
## 2304 Messenger: The Story of Joan of Arc, The (1999)
## 2305 Pokémon: The First Movie (1998)
## 2306 Felicia's Journey (1999)
## 2307 Oxygen (1999)
## 2308 Where's Marlowe? (1998)
## 2309 Commitments, The (1991)
## 2310 Holiday Inn (1942)
## 2311 Longest Day, The (1962)
## 2312 Poison Ivy (1992)
## 2313 Poison Ivy: New Seduction (1997)
## 2314 Tora! Tora! Tora! (1970)
## 2315 Women on the Verge of a Nervous Breakdown (Mujeres al borde de un ataque de nervios) (1988)
## 2316 Verdict, The (1982)
## 2317 Adventures of Buckaroo Banzai Across the 8th Dimension, The (1984)
## 2318 Stand and Deliver (1988)
## 2319 Moonstruck (1987)
## 2320 Sandpiper, The (1965)
## 2321 Jeremiah Johnson (1972)
## 2322 Repulsion (1965)
## 2323 Irma la Douce (1963)
## 2324 42 Up (1998)
## 2325 Liberty Heights (1999)
## 2326 Mansfield Park (1999)
## 2327 Sleepy Hollow (1999)
## 2328 World Is Not Enough, The (1999)
## 2329 All About My Mother (Todo sobre mi madre) (1999)
## 2330 Babes in Toyland (1934)
## 2331 Scrooged (1988)
## 2332 Harvey (1950)
## 2333 Bicycle Thieves (a.k.a. The Bicycle Thief) (a.k.a. The Bicycle Thieves) (Ladri di biciclette) (1948)
## 2334 Matewan (1987)
## 2335 Kagemusha (1980)
## 2336 McCabe & Mrs. Miller (1971)
## 2337 Maurice (1987)
## 2338 Grapes of Wrath, The (1940)
## 2339 My Man Godfrey (1957)
## 2340 Shop Around the Corner, The (1940)
## 2341 Natural, The (1984)
## 2342 Shampoo (1975)
## 2343 River Runs Through It, A (1992)
## 2344 Fatal Attraction (1987)
## 2345 Jagged Edge (1985)
## 2346 Stanley & Iris (1990)
## 2347 Midnight Run (1988)
## 2348 Awakenings (1990)
## 2349 Come See the Paradise (1990)
## 2350 Backdraft (1991)
## 2351 Fisher King, The (1991)
## 2352 River, The (1984)
## 2353 Places in the Heart (1984)
## 2354 'night Mother (1986)
## 2355 End of Days (1999)
## 2356 Toy Story 2 (1999)
## 2357 Flawless (1999)
## 2358 Ride with the Devil (1999)
## 2359 Distinguished Gentleman, The (1992)
## 2360 End of the Affair, The (1999)
## 2361 Holy Smoke (1999)
## 2362 Sweet and Lowdown (1999)
## 2363 Bonfire of the Vanities (1990)
## 2364 Daddy Long Legs (1919)
## 2365 Grand Illusion (La grande illusion) (1937)
## 2366 Great Santini, The (1979)
## 2367 Stealing Home (1988)
## 2368 Two Jakes, The (1990)
## 2369 U2: Rattle and Hum (1988)
## 2370 Hell in the Pacific (1968)
## 2371 Cradle Will Rock (1999)
## 2372 Deuce Bigalow: Male Gigolo (1999)
## 2373 Green Mile, The (1999)
## 2374 Cider House Rules, The (1999)
## 2375 War Zone, The (1999)
## 2376 Last Picture Show, The (1971)
## 2377 7th Voyage of Sinbad, The (1958)
## 2378 Anna and the King (1999)
## 2379 Bicentennial Man (1999)
## 2380 Stuart Little (1999)
## 2381 Emperor and the Assassin, The (Jing ke ci qin wang) (1999)
## 2382 Fantasia 2000 (1999)
## 2383 Magnolia (1999)
## 2384 Onegin (1999)
## 2385 Simpatico (1999)
## 2386 Topsy-Turvy (1999)
## 2387 Boiling Point (1993)
## 2388 Carnal Knowledge (1971)
## 2389 Easy Rider (1969)
## 2390 The Falcon and the Snowman (1985)
## 2391 Room at the Top (1959)
## 2392 Any Given Sunday (1999)
## 2393 Man on the Moon (1999)
## 2394 Galaxy Quest (1999)
## 2395 Talented Mr. Ripley, The (1999)
## 2396 Next Friday (2000)
## 2397 Hurricane, The (1999)
## 2398 Angela's Ashes (1999)
## 2399 Titus (1999)
## 2400 Mr. Death: The Rise and Fall of Fred A. Leuchter, Jr. (1999)
## 2401 Third Miracle, The (1999)
## 2402 Snow Falling on Cedars (1999)
## 2403 Girl, Interrupted (1999)
## 2404 My Dog Skip (1999)
## 2405 Supernova (2000)
## 2406 Terrorist, The (a.k.a. Malli) (Theeviravaathi) (1998)
## 2407 Way We Were, The (1973)
## 2408 Stalag 17 (1953)
## 2409 Presidio, The (1988)
## 2410 Papillon (1973)
## 2411 Last Detail, The (1973)
## 2412 Five Easy Pieces (1970)
## 2413 Dead Calm (1989)
## 2414 Boys from Brazil, The (1978)
## 2415 Against All Odds (1984)
## 2416 Loaded Weapon 1 (National Lampoon's Loaded Weapon 1) (1993)
## 2417 Fast Times at Ridgemont High (1982)
## 2418 Cry in the Dark, A (1988)
## 2419 Batman: Mask of the Phantasm (1993)
## 2420 American Flyers (1985)
## 2421 Star Is Born, A (1937)
## 2422 Pacific Heights (1990)
## 2423 Draughtsman's Contract, The (1982)
## 2424 Zed & Two Noughts, A (1985)
## 2425 Woman in the Dunes (Suna no onna) (1964)
## 2426 Down to You (2000)
## 2427 Odessa File, The (1974)
## 2428 Where the Buffalo Roam (1980)
## 2429 Eye of the Beholder (1999)
## 2430 Big Tease, The (1999)
## 2431 Cup, The (Phörpa) (1999)
## 2432 Encino Man (1992)
## 2433 Goodbye Girl, The (1977)
## 2434 Malcolm X (1992)
## 2435 Sister Act (1992)
## 2436 Sister Act 2: Back in the Habit (1993)
## 2437 Hand That Rocks the Cradle, The (1992)
## 2438 Alive (1993)
## 2439 Agnes of God (1985)
## 2440 Scent of a Woman (1992)
## 2441 Wayne's World (1992)
## 2442 Wayne's World 2 (1993)
## 2443 League of Their Own, A (1992)
## 2444 Patriot Games (1992)
## 2445 Bodyguard, The (1992)
## 2446 Death Becomes Her (1992)
## 2447 Far and Away (1992)
## 2448 Howards End (1992)
## 2449 Singles (1992)
## 2450 Twin Peaks: Fire Walk with Me (1992)
## 2451 White Men Can't Jump (1992)
## 2452 Buffy the Vampire Slayer (1992)
## 2453 Hard-Boiled (Lat sau san taam) (1992)
## 2454 Man Bites Dog (C'est arrivé près de chez vous) (1992)
## 2455 Mariachi, El (1992)
## 2456 Stop! Or My Mom Will Shoot (1992)
## 2457 Forever Young (1992)
## 2458 Cutting Edge, The (1992)
## 2459 Of Mice and Men (1992)
## 2460 Bad Lieutenant (1992)
## 2461 Scream 3 (2000)
## 2462 Single White Female (1992)
## 2463 Boondock Saints, The (2000)
## 2464 Gun Shy (2000)
## 2465 Baby, The (1973)
## 2466 Brandon Teena Story, The (1998)
## 2467 Minnie and Moskowitz (1971)
## 2468 They Might Be Giants (1971)
## 2469 Beach, The (2000)
## 2470 Snow Day (2000)
## 2471 Tigger Movie, The (2000)
## 2472 Not One Less (Yi ge dou bu neng shao) (1999)
## 2473 Eaten Alive (1977)
## 2474 Raining Stones (1993)
## 2475 To Sir with Love (1967)
## 2476 Boiler Room (2000)
## 2477 Hanging Up (2000)
## 2478 Pitch Black (2000)
## 2479 Whole Nine Yards, The (2000)
## 2480 Beautiful People (1999)
## 2481 Black Tar Heroin: The Dark End of the Street (2000)
## 2482 Circus, The (1928)
## 2483 City Lights (1931)
## 2484 Flamingo Kid, The (1984)
## 2485 Kid, The (1921)
## 2486 Class Reunion (1982)
## 2487 Happy Go Lovely (1951)
## 2488 Reindeer Games (2000)
## 2489 Wonder Boys (2000)
## 2490 Chain of Fools (2000)
## 2491 Drowning Mona (2000)
## 2492 Next Best Thing, The (2000)
## 2493 What Planet Are You From? (2000)
## 2494 Beyond the Mat (1999)
## 2495 Ghost Dog: The Way of the Samurai (1999)
## 2496 The Year My Voice Broke (1987)
## 2497 Splendor in the Grass (1961)
## 2498 My Tutor (1983)
## 2499 Key Largo (1948)
## 2500 For All Mankind (1989)
## 2501 Born Yesterday (1950)
## 2502 Birdy (1984)
## 2503 Blood Feast (1963)
## 2504 Charlie, the Lonesome Cougar (1967)
## 2505 Never Cry Wolf (1983)
## 2506 Raisin in the Sun, A (1961)
## 2507 Closer You Get, The (2000)
## 2508 Mission to Mars (2000)
## 2509 Ninth Gate, The (1999)
## 2510 East-West (Est-ouest) (1999)
## 2511 Defending Your Life (1991)
## 2512 Breaking Away (1979)
## 2513 Hoosiers (a.k.a. Best Shot) (1986)
## 2514 Bull Durham (1988)
## 2515 Dog Day Afternoon (1975)
## 2516 American Graffiti (1973)
## 2517 Asphalt Jungle, The (1950)
## 2518 Searchers, The (1956)
## 2519 Big Country, The (1958)
## 2520 Betrayed (1988)
## 2521 Bridge at Remagen, The (1969)
## 2522 Daughters of the Dust (1991)
## 2523 Ogre, The (Unhold, Der) (1996)
## 2524 On the Beach (1959)
## 2525 Taking of Pelham One Two Three, The (1974)
## 2526 Volunteers (1985)
## 2527 JFK (1991)
## 2528 Who's Harry Crumb? (1989)
## 2529 Harry and the Hendersons (1987)
## 2530 Let's Get Harry (1986)
## 2531 Shanghai Surprise (1986)
## 2532 Who's That Girl? (1987)
## 2533 She-Devil (1989)
## 2534 Date with an Angel (1987)
## 2535 Blind Date (1987)
## 2536 Nadine (1987)
## 2537 Muppet Movie, The (1979)
## 2538 Great Muppet Caper, The (1981)
## 2539 Muppets Take Manhattan, The (1984)
## 2540 We're Back! A Dinosaur's Story (1993)
## 2541 Baby... Secret of the Lost Legend (1985)
## 2542 Turtle Diary (1985)
## 2543 Raise the Titanic (1980)
## 2544 Titanic (1953)
## 2545 Night to Remember, A (1958)
## 2546 Captain Horatio Hornblower R.N. (1951)
## 2547 Erin Brockovich (2000)
## 2548 Final Destination (2000)
## 2549 Soft Fruit (1999)
## 2550 Bear, The (Ours, L') (1988)
## 2551 Love Is a Many-Splendored Thing (1955)
## 2552 Mirror, The (Zerkalo) (1975)
## 2553 Crimson Pirate, The (1952)
## 2554 Thelma & Louise (1991)
## 2555 ...And Justice for All (1979)
## 2556 Animal House (1978)
## 2557 She's Gotta Have It (1986)
## 2558 School Daze (1988)
## 2559 Do the Right Thing (1989)
## 2560 Mo' Better Blues (1990)
## 2561 Jungle Fever (1991)
## 2562 Champ, The (1979)
## 2563 Creature Comforts (1989)
## 2564 Death Wish (1974)
## 2565 Death Wish 2 (1982)
## 2566 Death Wish 3 (1985)
## 2567 Death Wish 4: The Crackdown (1987)
## 2568 Death Wish 5: The Face of Death (1994)
## 2569 Double Indemnity (1944)
## 2570 Dying Young (1991)
## 2571 Teenage Mutant Ninja Turtles (1990)
## 2572 Teenage Mutant Ninja Turtles II: The Secret of the Ooze (1991)
## 2573 Teenage Mutant Ninja Turtles III (1993)
## 2574 Red Dawn (1984)
## 2575 Band of the Hand (1986)
## 2576 Bloodsport (1988)
## 2577 Eyes of Laura Mars (1978)
## 2578 Funny Bones (1995)
## 2579 Good Earth, The (1937)
## 2580 Good Morning, Vietnam (1987)
## 2581 Good Mother, The (1988)
## 2582 Grumpy Old Men (1993)
## 2583 Guess Who's Coming to Dinner (1967)
## 2584 Romeo Must Die (2000)
## 2585 Here on Earth (2000)
## 2586 Whatever It Takes (2000)
## 2587 Buddy Boy (1999)
## 2588 Color of Paradise, The (Rang-e khoda) (1999)
## 2589 Gothic (1986)
## 2590 Lord of the Flies (1963)
## 2591 Modern Times (1936)
## 2592 Heart and Souls (1993)
## 2593 Hud (1963)
## 2594 Hustler, The (1961)
## 2595 Inherit the Wind (1960)
## 2596 Dersu Uzala (1975)
## 2597 Close Encounters of the Third Kind (1977)
## 2598 Jonah Who Will Be 25 in the Year 2000 (Jonas qui aura 25 ans en l'an 2000) (1976)
## 2599 Retroactive (1997)
## 2600 Place in the Sun, A (1951)
## 2601 Jacob's Ladder (1990)
## 2602 Empire Records (1995)
## 2603 Bamba, La (1987)
## 2604 Ladyhawke (1985)
## 2605 Lucas (1986)
## 2606 High Fidelity (2000)
## 2607 Road to El Dorado, The (2000)
## 2608 Skulls, The (2000)
## 2609 Hook (1991)
## 2610 Son of the Sheik, The (1926)
## 2611 True Grit (1969)
## 2612 Madame Sousatzka (1988)
## 2613 Max Dugan Returns (1983)
## 2614 Midnight Express (1978)
## 2615 Misery (1990)
## 2616 Mr. Saturday Night (1992)
## 2617 Murphy's Romance (1985)
## 2618 My Life (1993)
## 2619 Solaris (Solyaris) (1972)
## 2620 Network (1976)
## 2621 No Way Out (1987)
## 2622 North Dallas Forty (1979)
## 2623 Odd Couple, The (1968)
## 2624 Outlaw Josey Wales, The (1976)
## 2625 Frequency (2000)
## 2626 Ready to Rumble (2000)
## 2627 Return to Me (2000)
## 2628 Rules of Engagement (2000)
## 2629 Joe Gould's Secret (2000)
## 2630 Me Myself I (2000)
## 2631 Bell, Book and Candle (1958)
## 2632 Force 10 from Navarone (1978)
## 2633 Mystery Train (1989)
## 2634 Arthur (1981)
## 2635 Bachelor Party (1984)
## 2636 Parenthood (1989)
## 2637 Predator (1987)
## 2638 Prince of Tides, The (1991)
## 2639 Postman Always Rings Twice, The (1981)
## 2640 All the Vermeers in New York (1990)
## 2641 28 Days (2000)
## 2642 American Psycho (2000)
## 2643 Keeping the Faith (2000)
## 2644 Where the Money Is (2000)
## 2645 East is East (1999)
## 2646 Filth and the Fury, The (2000)
## 2647 Diner (1982)
## 2648 Shakes the Clown (1992)
## 2649 Cabaret (1972)
## 2650 What Ever Happened to Baby Jane? (1962)
## 2651 Auntie Mame (1958)
## 2652 Guys and Dolls (1955)
## 2653 The Hunger (1983)
## 2654 Marathon Man (1976)
## 2655 Caddyshack (1980)
## 2656 Gossip (2000)
## 2657 Love and Basketball (2000)
## 2658 U-571 (2000)
## 2659 Virgin Suicides, The (1999)
## 2660 Jennifer 8 (1992)
## 2661 Limelight (1952)
## 2662 Crow: Salvation, The (2000)
## 2663 Flintstones in Viva Rock Vegas, The (2000)
## 2664 Where the Heart Is (2000)
## 2665 Big Kahuna, The (2000)
## 2666 Bossa Nova (2000)
## 2667 Smiling Fish and Goat on Fire (1999)
## 2668 Idiots, The (Idioterne) (1998)
## 2669 Time Code (2000)
## 2670 Carnosaur (1993)
## 2671 Carnosaur 2 (1995)
## 2672 Carnosaur 3: Primal Species (1996)
## 2673 Hidden, The (1987)
## 2674 Two Moon Junction (1988)
## 2675 Gladiator (2000)
## 2676 Up at the Villa (2000)
## 2677 Human Traffic (1999)
## 2678 Breathless (1983)
## 2679 The Idolmaker (1980)
## 2680 Inferno (1980)
## 2681 Lords of Flatbush, The (1974)
## 2682 Mr. Mom (1983)
## 2683 Time Masters (Maîtres du temps, Les) (1982)
## 2684 Battlefield Earth (2000)
## 2685 Center Stage (2000)
## 2686 Screwed (2000)
## 2687 Whipped (2000)
## 2688 Hamlet (2000)
## 2689 Anchors Aweigh (1945)
## 2690 Gypsy (1962)
## 2691 On the Town (1949)
## 2692 Pee-wee's Big Adventure (1985)
## 2693 Regret to Inform (1998)
## 2694 Honeymoon in Vegas (1992)
## 2695 Dinosaur (2000)
## 2696 Loser (2000)
## 2697 Road Trip (2000)
## 2698 Small Time Crooks (2000)
## 2699 Hollywood Knights, The (1980)
## 2700 Twelve Chairs, The (1970)
## 2701 Mission: Impossible II (2000)
## 2702 Shanghai Noon (2000)
## 2703 Better Living Through Circuitry (1999)
## 2704 8 ý Women (a.k.a. 8 1/2 Women) (a.k.a. Eight and a Half Women) (1999)
## 2705 Carnival of Souls (1962)
## 2706 Flying Tigers (1942)
## 2707 Gold Rush, The (1925)
## 2708 Monsieur Verdoux (1947)
## 2709 On Her Majesty's Secret Service (1969)
## 2710 Seven Days in May (1964)
## 2711 Spy Who Loved Me, The (1977)
## 2712 Vagabond (Sans toit ni loi) (1985)
## 2713 Moonraker (1979)
## 2714 Man with the Golden Gun, The (1974)
## 2715 King in New York, A (1957)
## 2716 Woman of Paris, A (1923)
## 2717 Fighting Seabees, The (1944)
## 2718 Big Momma's House (2000)
## 2719 Abominable Snowman, The (Abominable Snowman of the Himalayas, The) (1957)
## 2720 American Gigolo (1980)
## 2721 City of the Living Dead (a.k.a. Gates of Hell, The) (Paura nella cittÃÂ dei morti viventi) (1980)
## 2722 Endless Summer, The (1966)
## 2723 Guns of Navarone, The (1961)
## 2724 Blow-Out (La grande bouffe) (1973)
## 2725 Quatermass and the Pit (1967)
## 2726 Puppet Master (1989)
## 2727 Puppet Master II (1991)
## 2728 Puppet Master III: Toulon's Revenge (1991)
## 2729 Puppet Master 4 (1993)
## 2730 Puppet Master 5: The Final Chapter (1994)
## 2731 Rent-A-Cop (1988)
## 2732 Romeo and Juliet (1968)
## 2733 Stay Tuned (1992)
## 2734 Blazing Saddles (1974)
## 2735 Benji (1974)
## 2736 Benji the Hunted (1987)
## 2737 For the Love of Benji (1977)
## 2738 White Christmas (1954)
## 2739 Eraserhead (1977)
## 2740 Baraka (1992)
## 2741 Man with the Golden Arm, The (1955)
## 2742 Decline of Western Civilization, The (1981)
## 2743 Decline of Western Civilization Part II: The Metal Years, The (1988)
## 2744 For a Few Dollars More (Per qualche dollaro in più) (1965)
## 2745 Magnum Force (1973)
## 2746 Blood Simple (1984)
## 2747 Fabulous Baker Boys, The (1989)
## 2748 Prizzi's Honor (1985)
## 2749 Flatliners (1990)
## 2750 Light Years (Gandahar) (1988)
## 2751 Porky's (1982)
## 2752 Porky's II: The Next Day (1983)
## 2753 Porky's Revenge (1985)
## 2754 Private School (1983)
## 2755 Class of Nuke 'Em High (1986)
## 2756 Toxic Avenger, The (1985)
## 2757 Toxic Avenger, Part II, The (1989)
## 2758 Toxic Avenger Part III: The Last Temptation of Toxie, The (1989)
## 2759 Night of the Creeps (1986)
## 2760 Predator 2 (1990)
## 2761 Running Man, The (1987)
## 2762 Starman (1984)
## 2763 Brother from Another Planet, The (1984)
## 2764 Alien Nation (1988)
## 2765 Mad Max (1979)
## 2766 Road Warrior, The (Mad Max 2) (1981)
## 2767 Mad Max Beyond Thunderdome (1985)
## 2768 Bird on a Wire (1990)
## 2769 Angel Heart (1987)
## 2770 9 1/2 Weeks (Nine 1/2 Weeks) (1986)
## 2771 Firestarter (1984)
## 2772 Sleepwalkers (1992)
## 2773 Action Jackson (1988)
## 2774 Sarafina! (1992)
## 2775 Soapdish (1991)
## 2776 Long Walk Home, The (1990)
## 2777 Clara's Heart (1988)
## 2778 Burglar (1987)
## 2779 Fatal Beauty (1987)
## 2780 Gone in 60 Seconds (2000)
## 2781 Love's Labour's Lost (2000)
## 2782 Sunshine (1999)
## 2783 Hamlet (1990)
## 2784 Coming Home (1978)
## 2785 American Pop (1981)
## 2786 Assault on Precinct 13 (1976)
## 2787 Near Dark (1987)
## 2788 One False Move (1992)
## 2789 Shaft (1971)
## 2790 Conversation, The (1974)
## 2791 Cutter's Way (1981)
## 2792 Fury, The (1978)
## 2793 Paper Chase, The (1973)
## 2794 Serpico (1973)
## 2795 Ace in the Hole (Big Carnival, The) (1951)
## 2796 Lonely Are the Brave (1962)
## 2797 Sugarland Express, The (1974)
## 2798 Trouble in Paradise (1932)
## 2799 Big Trouble in Little China (1986)
## 2800 Badlands (1973)
## 2801 Battleship Potemkin (1925)
## 2802 Boys and Girls (2000)
## 2803 Shaft (2000)
## 2804 Titan A.E. (2000)
## 2805 Butterfly (La lengua de las mariposas) (1999)
## 2806 Jesus' Son (1999)
## 2807 Chicken Run (2000)
## 2808 Me, Myself & Irene (2000)
## 2809 Patriot, The (2000)
## 2810 Adventures of Rocky and Bullwinkle, The (2000)
## 2811 Perfect Storm, The (2000)
## 2812 Golden Bowl, The (2000)
## 2813 Communion (1989)
## 2814 Kentucky Fried Movie, The (1977)
## 2815 Blood In, Blood Out (1993)
## 2816 F/X (1986)
## 2817 F/X2 (a.k.a. F/X 2 - The Deadly Art of Illusion) (1991)
## 2818 Hot Spot, The (1990)
## 2819 Missing in Action (1984)
## 2820 Missing in Action 2: The Beginning (1985)
## 2821 Braddock: Missing in Action III (1988)
## 2822 Thunderbolt and Lightfoot (1974)
## 2823 Dreamscape (1984)
## 2824 The Golden Voyage of Sinbad (1973)
## 2825 House Party (1990)
## 2826 House Party 2 (1991)
## 2827 Croupier (1998)
## 2828 Kid, The (2000)
## 2829 Scary Movie (2000)
## 2830 But I'm a Cheerleader (1999)
## 2831 Shower (Xizao) (1999)
## 2832 Blow-Up (Blowup) (1966)
## 2833 Pawnbroker, The (1964)
## 2834 Groove (2000)
## 2835 Footloose (1984)
## 2836 Duel in the Sun (1946)
## 2837 X-Men (2000)
## 2838 Chuck & Buck (2000)
## 2839 Five Senses, The (1999)
## 2840 In Crowd, The (2000)
## 2841 What Lies Beneath (2000)
## 2842 Pokémon the Movie 2000 (2000)
## 2843 Anatomy of a Murder (1959)
## 2844 Freejack (1992)
## 2845 Mackenna's Gold (1969)
## 2846 Sinbad and the Eye of the Tiger (1977)
## 2847 Two Women (Ciociara, La) (1960)
## 2848 What About Bob? (1991)
## 2849 White Sands (1992)
## 2850 Breaker Morant (1980)
## 2851 Everything You Always Wanted to Know About Sex * But Were Afraid to Ask (1972)
## 2852 Interiors (1978)
## 2853 Love and Death (1975)
## 2854 Official Story, The (La historia oficial) (1985)
## 2855 Tampopo (1985)
## 2856 Nutty Professor II: The Klumps (2000)
## 2857 Girl on the Bridge, The (Fille sur le pont, La) (1999)
## 2858 Wonderland (1999)
## 2859 Autumn in New York (2000)
## 2860 Coyote Ugly (2000)
## 2861 Hollow Man (2000)
## 2862 Space Cowboys (2000)
## 2863 Psycho Beach Party (2000)
## 2864 Saving Grace (2000)
## 2865 Black Sabbath (Tre volti della paura, I) (1963)
## 2866 Brain That Wouldn't Die, The (1962)
## 2867 Bronco Billy (1980)
## 2868 Crush, The (1993)
## 2869 Kelly's Heroes (1970)
## 2870 Phantasm II (1988)
## 2871 Phantasm III: Lord of the Dead (1994)
## 2872 Phantasm IV: Oblivion (1998)
## 2873 Pumpkinhead (1988)
## 2874 Air America (1990)
## 2875 Sleepaway Camp (1983)
## 2876 Steel Magnolias (1989)
## 2877 And God Created Woman (Et Dieu... créa la femme) (1956)
## 2878 Easy Money (1983)
## 2879 Ilsa, She Wolf of the SS (1974)
## 2880 The Spiral Staircase (1945)
## 2881 I'm the One That I Want (2000)
## 2882 Tao of Steve, The (2000)
## 2883 Affair of Love, An (Liaison pornographique, Une) (1999)
## 2884 Bless the Child (2000)
## 2885 Cecil B. DeMented (2000)
## 2886 Eyes of Tammy Faye, The (2000)
## 2887 Replacements, The (2000)
## 2888 About Adam (2000)
## 2889 Cell, The (2000)
## 2890 Godzilla 2000 (Gojira ni-sen mireniamu) (1999)
## 2891 Original Kings of Comedy, The (2000)
## 2892 Naked Gun: From the Files of Police Squad!, The (1988)
## 2893 Naked Gun 2 1/2: The Smell of Fear, The (1991)
## 2894 Our Town (1940)
## 2895 Shane (1953)
## 2896 Suddenly, Last Summer (1959)
## 2897 Cat Ballou (1965)
## 2898 Supergirl (1984)
## 2899 Art of War, The (2000)
## 2900 Bring It On (2000)
## 2901 Crew, The (2000)
## 2902 Skipped Parts (2000)
## 2903 Highlander: Endgame (Highlander IV) (2000)
## 2904 Nurse Betty (2000)
## 2905 Solas (1999)
## 2906 Watcher, The (2000)
## 2907 Way of the Gun, The (2000)
## 2908 Almost Famous (2000)
## 2909 Bait (2000)
## 2910 Circus (2000)
## 2911 Crime and Punishment in Suburbia (2000)
## 2912 Duets (2000)
## 2913 Under Suspicion (2000)
## 2914 Urban Legends: Final Cut (2000)
## 2915 Woman on Top (2000)
## 2916 Dancer in the Dark (2000)
## 2917 Best in Show (2000)
## 2918 Beautiful (2000)
## 2919 Broken Hearts Club, The (2000)
## 2920 Girlfight (2000)
## 2921 Remember the Titans (2000)
## 2922 Hellraiser (1987)
## 2923 Hellbound: Hellraiser II (1988)
## 2924 Hellraiser III: Hell on Earth (1992)
## 2925 Faraway, So Close (In weiter Ferne, so nah!) (1993)
## 2926 Bikini Beach (1964)
## 2927 Stranger Than Paradise (1984)
## 2928 Voyage to the Bottom of the Sea (1961)
## 2929 Fantastic Voyage (1966)
## 2930 Abbott and Costello Meet Frankenstein (1948)
## 2931 Bank Dick, The (1940)
## 2932 Creature from the Black Lagoon, The (1954)
## 2933 Invisible Man, The (1933)
## 2934 Killer Shrews, The (1959)
## 2935 Runaway (1984)
## 2936 Slumber Party Massacre, The (1982)
## 2937 Slumber Party Massacre II (1987)
## 2938 Slumber Party Massacre III (1990)
## 2939 Sorority House Massacre (1986)
## 2940 Sorority House Massacre II (1990)
## 2941 Bamboozled (2000)
## 2942 Digimon: The Movie (2000)
## 2943 Get Carter (2000)
## 2944 Get Carter (1971)
## 2945 Meet the Parents (2000)
## 2946 Requiem for a Dream (2000)
## 2947 Tigerland (2000)
## 2948 Two Family House (2000)
## 2949 Contender, The (2000)
## 2950 Dr. T and the Women (2000)
## 2951 Ladies Man, The (2000)
## 2952 Billy Jack (1971)
## 2953 Billy Jack Goes to Washington (1977)
## 2954 Time Machine, The (1960)
## 2955 Ghoulies II (1987)
## 2956 Unsinkable Molly Brown, The (1964)
## 2957 Adventures of Ichabod and Mr. Toad, The (1949)
## 2958 Strange Love of Martha Ivers, The (1946)
## 2959 Detour (1945)
## 2960 Billy Elliot (2000)
## 2961 Bedazzled (2000)
## 2962 Pay It Forward (2000)
## 2963 Private Eyes, The (1981)
## 2964 Legend of Drunken Master, The (Jui kuen II) (1994)
## 2965 Book of Shadows: Blair Witch 2 (2000)
## 2966 Little Vampire, The (2000)
## 2967 Charlie's Angels (2000)
## 2968 Legend of Bagger Vance, The (2000)
## 2969 Little Nicky (2000)
## 2970 Men of Honor (2000)
## 2971 Red Planet (2000)
## 2972 You Can Count on Me (2000)
## 2973 Diamonds Are Forever (1971)
## 2974 Eagle Has Landed, The (1976)
## 2975 6th Day, The (2000)
## 2976 Bounce (2000)
## 2977 How the Grinch Stole Christmas (a.k.a. The Grinch) (2000)
## 2978 One Day in September (1999)
## 2979 Rugrats in Paris: The Movie (2000)
## 2980 102 Dalmatians (2000)
## 2981 Malèna (2000)
## 2982 Quills (2000)
## 2983 Unbreakable (2000)
## 2984 Crouching Tiger, Hidden Dragon (Wo hu cang long) (2000)
## 2985 Dungeons & Dragons (2000)
## 2986 Proof of Life (2000)
## 2987 Vertical Limit (2000)
## 2988 Bounty, The (1984)
## 2989 Planes, Trains & Automobiles (1987)
## 2990 She's Having a Baby (1988)
## 2991 Living Daylights, The (1987)
## 2992 Transformers: The Movie (1986)
## 2993 Wall Street (1987)
## 2994 Born on the Fourth of July (1989)
## 2995 Talk Radio (1988)
## 2996 Brewster's Millions (1985)
## 2997 Snatch (2000)
## 2998 Punchline (1988)
## 2999 Chocolat (2000)
## 3000 Dude, Where's My Car? (2000)
## 3001 Emperor's New Groove, The (2000)
## 3002 Pollock (2000)
## 3003 What Women Want (2000)
## 3004 Finding Forrester (2000)
## 3005 Gift, The (2000)
## 3006 Before Night Falls (2000)
## 3007 Cast Away (2000)
## 3008 Family Man, The (2000)
## 3009 House of Mirth, The (2000)
## 3010 Miss Congeniality (2000)
## 3011 O Brother, Where Art Thou? (2000)
## 3012 State and Main (2000)
## 3013 Dracula 2000 (2000)
## 3014 All the Pretty Horses (2000)
## 3015 Everlasting Piece, An (2000)
## 3016 Thirteen Days (2000)
## 3017 Traffic (2000)
## 3018 Claim, The (2000)
## 3019 Shadow of the Vampire (2000)
## 3020 House of Games (1987)
## 3021 Annie (1982)
## 3022 Don't Tell Mom the Babysitter's Dead (1991)
## 3023 Officer and a Gentleman, An (1982)
## 3024 Alamo, The (1960)
## 3025 At Close Range (1986)
## 3026 Friendly Persuasion (1956)
## 3027 Gettysburg (1993)
## 3028 Horrors of Spider Island (Ein Toter Hing im Netz) (1960)
## 3029 Antitrust (2001)
## 3030 Double Take (2001)
## 3031 Save the Last Dance (2001)
## 3032 Panic (2000)
## 3033 Pledge, The (2001)
## 3034 The Man in the Moon (1991)
## 3035 Mystic Pizza (1988)
## 3036 Prelude to a Kiss (1992)
## 3037 Coffy (1973)
## 3038 Foxy Brown (1974)
## 3039 I'm Gonna Git You Sucka (1988)
## 3040 Untamed Heart (1993)
## 3041 Sugar & Spice (2001)
## 3042 Wedding Planner, The (2001)
## 3043 Legend of Rita, The (Stille nach dem Schuß, Die) (1999)
## 3044 With a Friend Like Harry... (Harry, un ami qui vous veut du bien) (2000)
## 3045 Amazing Grace and Chuck (1987)
## 3046 Amazon Women on the Moon (1987)
## 3047 Baby Boom (1987)
## 3048 Back to the Beach (1987)
## 3049 Barfly (1987)
## 3050 Best Seller (1987)
## 3051 Beverly Hills Cop II (1987)
## 3052 Beverly Hills Cop (1984)
## 3053 Big Easy, The (1987)
## 3054 Born in East L.A. (1987)
## 3055 Brave Little Toaster, The (1987)
## 3056 Can't Buy Me Love (1987)
## 3057 Cherry 2000 (1987)
## 3058 Cop (1988)
## 3059 Eddie Murphy Raw (1987)
## 3060 Empire of the Sun (1987)
## 3061 Ernest Goes to Camp (1987)
## 3062 Evil Dead, The (1981)
## 3063 Flowers in the Attic (1987)
## 3064 Fourth Protocol, The (1987)
## 3065 Gardens of Stone (1987)
## 3066 Glass Menagerie, The (1987)
## 3067 Hiding Out (1987)
## 3068 Hollywood Shuffle (1987)
## 3069 Hope and Glory (1987)
## 3070 Innerspace (1987)
## 3071 Ishtar (1987)
## 3072 Jaws: The Revenge (1987)
## 3073 Leonard Part 6 (1987)
## 3074 Less Than Zero (1987)
## 3075 Like Father, Like Son (1987)
## 3076 Lost Boys, The (1987)
## 3077 Made in Heaven (1987)
## 3078 Maid to Order (1987)
## 3079 Making Mr. Right (1987)
## 3080 Mannequin (1987)
## 3081 Masters of the Universe (1987)
## 3082 Monster Squad, The (1987)
## 3083 My Demon Lover (1987)
## 3084 No Man's Land (1987)
## 3085 Head Over Heels (2001)
## 3086 Left Behind: The Movie (2000)
## 3087 Valentine (2001)
## 3088 In the Mood For Love (Fa yeung nin wa) (2000)
## 3089 Million Dollar Hotel, The (2001)
## 3090 Nico and Dani (Krámpack) (2000)
## 3091 Hannibal (2001)
## 3092 Saving Silverman (Evil Woman) (2001)
## 3093 Vatel (2000)
## 3094 Down to Earth (2001)
## 3095 Recess: School's Out (2001)
## 3096 Sweet November (2001)
## 3097 Company Man (2000)
## 3098 Price of Milk, The (2000)
## 3099 Monkeybone (2001)
## 3100 3000 Miles to Graceland (2001)
## 3101 Widow of St. Pierre, The (Veuve de Saint-Pierre, La) (2000)
## 3102 Mexican, The (2001)
## 3103 Caveman's Valentine, The (2001)
## 3104 Series 7: The Contenders (2001)
## 3105 15 Minutes (2001)
## 3106 Get Over It (2001)
## 3107 Long Night's Journey Into Day (2000)
## 3108 Avalon (1990)
## 3109 Gray's Anatomy (1996)
## 3110 Of Mice and Men (1939)
## 3111 Reform School Girls (1986)
## 3112 Tapeheads (1988)
## 3113 Bishop's Wife, The (1947)
## 3114 Lilies of the Field (1963)
## 3115 Greatest Story Ever Told, The (1965)
## 3116 Elmer Gantry (1960)
## 3117 Alfie (1966)
## 3118 Fantasticks, The (1995)
## 3119 I Know Where I'm Going! (1945)
## 3120 Abominable Dr. Phibes, The (1971)
## 3121 Real Life (1979)
## 3122 Battle Beyond the Stars (1980)
## 3123 Double Impact (1991)
## 3124 Fuzz (1972)
## 3125 Harley Davidson and the Marlboro Man (1991)
## 3126 Losin' It (1983)
## 3127 Mermaids (1990)
## 3128 Navy Seals (1990)
## 3129 Manhunter (1986)
## 3130 Reversal of Fortune (1990)
## 3131 Death on the Nile (1978)
## 3132 Revenge of the Nerds (1984)
## 3133 Revenge of the Nerds II: Nerds in Paradise (1987)
## 3134 4 Little Girls (1997)
## 3135 River's Edge (1986)
## 3136 Girls Just Want to Have Fun (1985)
## 3137 Longest Yard, The (1974)
## 3138 Necessary Roughness (1991)
## 3139 Enemy at the Gates (2001)
## 3140 Exit Wounds (2001)
## 3141 Dish, The (2001)
## 3142 Memento (2000)
## 3143 Heartbreakers (2001)
## 3144 Say It Isn't So (2001)
## 3145 Someone Like You (2001)
## 3146 Spy Kids (2001)
## 3147 Tomcats (2001)
## 3148 Tailor of Panama, The (2001)
## 3149 Amores Perros (Love's a Bitch) (2000)
## 3150 Keep the River on Your Right: A Modern Cannibal Tale (2000)
## 3151 Gleaners & I, The (Les glaneurs et la glaneuse) (2000)
## 3152 Along Came a Spider (2001)
## 3153 Blow (2001)
## 3154 Just Visiting (2001)
## 3155 Pokémon 3: The Movie (2001)
## 3156 Beautiful Creatures (2000)
## 3157 Brigham City (2001)
## 3158 Bridget Jones's Diary (2001)
## 3159 Joe Dirt (2001)
## 3160 Josie and the Pussycats (2001)
## 3161 Chopper (2000)
## 3162 Circle, The (Dayereh) (2000)
## 3163 Crocodile Dundee in Los Angeles (2001)
## 3164 Freddy Got Fingered (2001)
## 3165 Center of the World, The (2001)
## 3166 Luzhin Defence, The (2000)
## 3167 Visit, The (2000)
## 3168 Scarface (1983)
## 3169 Days of Wine and Roses (1962)
## 3170 Driven (2001)
## 3171 One Night at McCool's (2001)
## 3172 Town & Country (2001)
## 3173 Mummy Returns, The (2001)
## 3174 Under the Sand (2000)
## 3175 Krull (1983)
## 3176 Lost in America (1985)
## 3177 Triumph of the Will (Triumph des Willens) (1934)
## 3178 World According to Garp, The (1982)
## 3179 Fellini Satyricon (1969)
## 3180 Frankie and Johnny (1966)
## 3181 Frankie and Johnny (1991)
## 3182 City of Women, The (CittÃÂ delle donne, La) (1980)
## 3183 For the Boys (1991)
## 3184 Nine to Five (a.k.a. 9 to 5) (1980)
## 3185 Norma Rae (1979)
## 3186 Summer Rental (1985)
## 3187 5,000 Fingers of Dr. T, The (1953)
## 3188 Love Story (1970)
## 3189 Pelle the Conqueror (Pelle erobreren) (1987)
## 3190 Rififi (Du rififi chez les hommes) (1955)
## 3191 Knight's Tale, A (2001)
## 3192 Bread and Roses (2000)
## 3193 Startup.com (2001)
## 3194 Angel Eyes (2001)
## 3195 Shrek (2001)
## 3196 Fast Food, Fast Women (2000)
## 3197 Moulin Rouge (2001)
## 3198 Pearl Harbor (2001)
## 3199 Himalaya (Himalaya - l'enfance d'un chef) (1999)
## 3200 Man Who Cried, The (2000)
## 3201 Ice Castles (1978)
## 3202 Love Potion #9 (1992)
## 3203 City Slickers (1991)
## 3204 Eight Men Out (1988)
## 3205 Horse Soldiers, The (1959)
## 3206 Night, The (Notte, La) (1960)
## 3207 Mississippi Burning (1988)
## 3208 Magnificent Seven, The (1960)
## 3209 Rio Bravo (1959)
## 3210 Throw Momma from the Train (1987)
## 3211 Yi Yi (2000)
## 3212 Sand Pebbles, The (1966)
## 3213 Twelve O'Clock High (1949)
## 3214 Von Ryan's Express (1965)
## 3215 Animal, The (2001)
## 3216 Big Eden (2000)
## 3217 Evolution (2001)
## 3218 Swordfish (2001)
## 3219 Anniversary Party, The (2001)
## 3220 Divided We Fall (MusÃÂme si pomáhat) (2000)
## 3221 Catch-22 (1970)
## 3222 Forgotten Silver (1996)
## 3223 Point Break (1991)
## 3224 Uncommon Valor (1983)
## 3225 Unlawful Entry (1992)
## 3226 Youngblood (1986)
## 3227 Gentlemen Prefer Blondes (1953)
## 3228 How to Marry a Millionaire (1953)
## 3229 Seven Year Itch, The (1955)
## 3230 Tootsie (1982)
## 3231 Atlantis: The Lost Empire (2001)
## 3232 Lara Croft: Tomb Raider (2001)
## 3233 Dr. Dolittle 2 (2001)
## 3234 Fast and the Furious, The (2001)
## 3235 A.I. Artificial Intelligence (2001)
## 3236 Baby Boy (2001)
## 3237 Crazy/Beautiful (2001)
## 3238 Pootie Tang (2001)
## 3239 Let It Snow (1999)
## 3240 Sexy Beast (2000)
## 3241 Princess and the Warrior, The (Krieger und die Kaiserin, Der) (2000)
## 3242 Closet, The (Placard, Le) (2001)
## 3243 Crimson Rivers, The (Rivières pourpres, Les) (2000)
## 3244 Lumumba (2000)
## 3245 Cats & Dogs (2001)
## 3246 Kiss of the Dragon (2001)
## 3247 Scary Movie 2 (2001)
## 3248 Lost and Delirious (2001)
## 3249 Rape Me (Baise-moi) (2000)
## 3250 Alice (1990)
## 3251 Another Woman (1988)
## 3252 Beach Blanket Bingo (1965)
## 3253 Big Deal on Madonna Street (I Soliti Ignoti) (1958)
## 3254 Cannonball Run, The (1981)
## 3255 Cannonball Run II (1984)
## 3256 Diary of a Chambermaid (Journal d'une femme de chambre, Le) (1964)
## 3257 Dr. Goldfoot and the Bikini Machine (1965)
## 3258 Fall of the House of Usher, The (House of Usher) (1960)
## 3259 Faust (1926)
## 3260 Man Who Shot Liberty Valance, The (1962)
## 3261 Salvador (1986)
## 3262 September (1987)
## 3263 Shadows and Fog (1991)
## 3264 Something Wild (1986)
## 3265 Thing with Two Heads, The (1972)
## 3266 All That Heaven Allows (1955)
## 3267 Barefoot Contessa, The (1954)
## 3268 Cries and Whispers (Viskningar och rop) (1972)
## 3269 Garden of the Finzi-Continis, The (Giardino dei Finzi-Contini, Il) (1970)
## 3270 Kiss Me Deadly (1955)
## 3271 Lion in Winter, The (1968)
## 3272 Misfits, The (1961)
## 3273 Moby Dick (1956)
## 3274 Sweet Smell of Success (1957)
## 3275 Written on the Wind (1956)
## 3276 10th Victim, The (La decima vittima) (1965)
## 3277 Obsession (1976)
## 3278 Suspiria (1977)
## 3279 Fist of Fury (Chinese Connection, The) (Jing wu men) (1972)
## 3280 Christiane F. (a.k.a. We Children from Bahnhof Zoo) (Christiane F. - Wir Kinder vom Bahnhof Zoo) (1981)
## 3281 Big Boss, The (Fists of Fury) (Tang shan da xiong) (1971)
## 3282 Game of Death (1978)
## 3283 Last Dragon, The (1985)
## 3284 Outland (1981)
## 3285 Way of the Dragon, The (a.k.a. Return of the Dragon) (Meng long guo jiang) (1972)
## 3286 T-Rex: Back to the Cretaceous (1998)
## 3287 Final Fantasy: The Spirits Within (2001)
## 3288 Legally Blonde (2001)
## 3289 Score, The (2001)
## 3290 Adanggaman (2000)
## 3291 Bully (2001)
## 3292 Jump Tomorrow (2001)
## 3293 Made (2001)
## 3294 Michael Jordan to the Max (2000)
## 3295 More (1998)
## 3296 Africa: The Serengeti (1994)
## 3297 Alaska: Spirit of the Wild (1997)
## 3298 18 Again! (1988)
## 3299 1969 (1988)
## 3300 Accidental Tourist, The (1988)
## 3301 Accused, The (1988)
## 3302 Above the Law (1988)
## 3303 Adventures of Baron Munchausen, The (1988)
## 3304 Ariel (1988)
## 3305 Arthur 2: On the Rocks (1988)
## 3306 Bat*21 (1988)
## 3307 Beaches (1988)
## 3308 Beast of War, The (Beast, The) (1988)
## 3309 Big Business (1988)
## 3310 Big Top Pee-Wee (1988)
## 3311 Biloxi Blues (1988)
## 3312 Blob, The (1988)
## 3313 Bright Lights, Big City (1988)
## 3314 Caddyshack II (1988)
## 3315 Camille Claudel (1988)
## 3316 Cocktail (1988)
## 3317 Colors (1988)
## 3318 Coming to America (1988)
## 3319 Couch Trip, The (1988)
## 3320 Critters (1986)
## 3321 Crossing Delancey (1988)
## 3322 D.O.A. (1988)
## 3323 Dead Heat (1988)
## 3324 Dead Pool, The (1988)
## 3325 Dirty Rotten Scoundrels (1988)
## 3326 Drowning by Numbers (1988)
## 3327 Ernest Saves Christmas (1988)
## 3328 Feds (1988)
## 3329 For Keeps (1988)
## 3330 Frantic (1988)
## 3331 Gorillas in the Mist (1988)
## 3332 Great Outdoors, The (1988)
## 3333 High Spirits (1988)
## 3334 Johnny Be Good (1988)
## 3335 Lady in White (a.k.a. The Mystery of the Lady in White) (1988)
## 3336 The Lair of the White Worm (1988)
## 3337 Land Before Time, The (1988)
## 3338 License to Drive (1988)
## 3339 Little Nikita (1988)
## 3340 Masquerade (1988)
## 3341 Milagro Beanfield War (1988)
## 3342 Moon Over Parador (1988)
## 3343 My Stepmother Is an Alien (1988)
## 3344 Night in the Life of Jimmy Reardon, A (1988)
## 3345 Bagdad Cafe (Out of Rosenheim) (1987)
## 3346 Red Heat (1988)
## 3347 Return of the Living Dead, The (1985)
## 3348 Return to Snowy River (a.k.a. The Man From Snowy River II) (1988)
## 3349 Man from Snowy River, The (1982)
## 3350 Running on Empty (1988)
## 3351 Serpent and the Rainbow, The (1988)
## 3352 Short Circuit 2 (1988)
## 3353 Short Circuit (1986)
## 3354 Vanishing, The (Spoorloos) (1988)
## 3355 Tetsuo, the Ironman (Tetsuo) (1988)
## 3356 They Live (1988)
## 3357 Tucker: The Man and His Dream (1988)
## 3358 Twins (1988)
## 3359 Without a Clue (1988)
## 3360 Young Einstein (1988)
## 3361 Always (1989)
## 3362 American Ninja (1985)
## 3363 Best of the Best (1989)
## 3364 Bill & Ted's Excellent Adventure (1989)
## 3365 Black Rain (1989)
## 3366 Blaze (1989)
## 3367 Blind Fury (1989)
## 3368 Casualties of War (1989)
## 3369 Chances Are (1989)
## 3370 Cyborg (1989)
## 3371 Dad (1989)
## 3372 Disorganized Crime (1989)
## 3373 Dream a Little Dream (1989)
## 3374 Dream Team, The (1989)
## 3375 Earth Girls Are Easy (1988)
## 3376 Eddie and the Cruisers (1983)
## 3377 Erik the Viking (1989)
## 3378 Family Business (1989)
## 3379 Farewell to the King (1989)
## 3380 Fat Man and Little Boy (1989)
## 3381 Gleaming the Cube (1989)
## 3382 Great Balls of Fire! (1989)
## 3383 Gross Anatomy (a.k.a. A Cut Above) (1989)
## 3384 Harlem Nights (1989)
## 3385 Her Alibi (1989)
## 3386 How to Get Ahead in Advertising (1989)
## 3387 Innocent Man, An (1989)
## 3388 January Man, The (1989)
## 3389 Johnny Handsome (1989)
## 3390 Jesus of Montreal (Jésus de Montréal) (1989)
## 3391 K-9 (1989)
## 3392 Kickboxer (1989)
## 3393 Last Exit to Brooklyn (1989)
## 3394 Lean on Me (1989)
## 3395 Let It Ride (1989)
## 3396 Little Monsters (1989)
## 3397 Look Who's Talking (1989)
## 3398 Loverboy (1989)
## 3399 Major League (1989)
## 3400 Meet the Feebles (1989)
## 3401 Millennium (1989)
## 3402 Miracle Mile (1989)
## 3403 New York Stories (1989)
## 3404 Next of Kin (1989)
## 3405 No Holds Barred (1989)
## 3406 Package, The (1989)
## 3407 Penn & Teller Get Killed (1989)
## 3408 Pink Cadillac (1989)
## 3409 Punisher, The (1989)
## 3410 Jurassic Park III (2001)
## 3411 America's Sweethearts (2001)
## 3412 Brother (2000)
## 3413 Ghost World (2001)
## 3414 Hedwig and the Angry Inch (2000)
## 3415 Planet of the Apes (2001)
## 3416 Bread and Tulips (Pane e tulipani) (2000)
## 3417 Cure (1997)
## 3418 Greenfingers (2000)
## 3419 Wet Hot American Summer (2001)
## 3420 Return of the Musketeers, The (1989)
## 3421 Road House (1989)
## 3422 Santa Sangre (1989)
## 3423 Scenes from the Class Struggle in Beverly Hills (1989)
## 3424 Sea of Love (1989)
## 3425 See No Evil, Hear No Evil (1989)
## 3426 She's Out of Control (1989)
## 3427 Skin Deep (1989)
## 3428 Stepfather, The (1987)
## 3429 Sweetie (1989)
## 3430 Tall Guy, The (1989)
## 3431 Tango & Cash (1989)
## 3432 Three Fugitives (1989)
## 3433 Troop Beverly Hills (1989)
## 3434 Turner & Hooch (1989)
## 3435 UHF (1989)
## 3436 Uncle Buck (1989)
## 3437 War of the Roses, The (1989)
## 3438 Wizard, The (1989)
## 3439 Weekend at Bernie's II (1993)
## 3440 Billy Liar (1963)
## 3441 Black Robe (1991)
## 3442 Cat o' Nine Tails, The (Gatto a nove code, Il) (1971)
## 3443 Cotton Club, The (1984)
## 3444 Who'll Stop the Rain (1978)
## 3445 Basket Case (1982)
## 3446 Original Sin (2001)
## 3447 Princess Diaries, The (2001)
## 3448 Rush Hour 2 (2001)
## 3449 Chocolat (1988)
## 3450 Hatari! (1962)
## 3451 Cage aux Folles, La (1978)
## 3452 Marat/Sade (1966)
## 3453 Paint Your Wagon (1969)
## 3454 Shootist, The (1976)
## 3455 Theremin: An Electronic Odyssey (1993)
## 3456 Altered States (1980)
## 3457 Any Which Way You Can (1980)
## 3458 Awakening, The (1980)
## 3459 Battle Creek Brawl (Big Brawl, The) (1980)
## 3460 American Pie 2 (2001)
## 3461 Osmosis Jones (2001)
## 3462 Others, The (2001)
## 3463 American Outlaws (2001)
## 3464 All Over the Guy (2001)
## 3465 Deep End, The (2001)
## 3466 Session 9 (2001)
## 3467 Captain Corelli's Mandolin (2001)
## 3468 Rat Race (2001)
## 3469 Bubble Boy (2001)
## 3470 Curse of the Jade Scorpion, The (2001)
## 3471 Jay and Silent Bob Strike Back (2001)
## 3472 Ghosts of Mars (2001)
## 3473 Summer Catch (2001)
## 3474 Happy Accidents (2000)
## 3475 Maybe Baby (2000)
## 3476 Together (Tillsammans) (2000)
## 3477 Tortilla Soup (2001)
## 3478 Jeepers Creepers (2001)
## 3479 O (2001)
## 3480 3 Ninjas (1992)
## 3481 3 Ninjas Kick Back (1994)
## 3482 3 Ninjas Knuckle Up (1995)
## 3483 Wicker Man, The (1973)
## 3484 Musketeer, The (2001)
## 3485 Rock Star (2001)
## 3486 Two Can Play That Game (2001)
## 3487 L.I.E. (2001)
## 3488 Our Lady of the Assassins (Virgen de los sicarios, La) (2000)
## 3489 Into the Arms of Strangers: Stories of the Kindertransport (2000)
## 3490 Glass House, The (2001)
## 3491 Hardball (2001)
## 3492 Dinner Rush (2000)
## 3493 Haiku Tunnel (2001)
## 3494 Big Trouble (2002)
## 3495 Glitter (2001)
## 3496 Training Day (2001)
## 3497 American Astronaut, The (2001)
## 3498 Liam (2000)
## 3499 Sidewalks of New York (2001)
## 3500 Endurance: Shackleton's Legendary Antarctic Expedition, The (2000)
## 3501 French Lieutenant's Woman, The (1981)
## 3502 Great Silence, The (Grande silenzio, Il) (1969)
## 3503 Legend of Hell House, The (1973)
## 3504 Little Man Tate (1991)
## 3505 Moscow Does Not Believe in Tears (Moskva slezam ne verit) (1979)
## 3506 Phantom of the Paradise (1974)
## 3507 13 Ghosts (1960)
## 3508 Opera (1987)
## 3509 Father Goose (1964)
## 3510 Grass Is Greener, The (1960)
## 3511 Indiscreet (1958)
## 3512 It's a Mad, Mad, Mad, Mad World (1963)
## 3513 King Solomon's Mines (1937)
## 3514 Little Foxes, The (1941)
## 3515 Operation Petticoat (1959)
## 3516 Play Misty for Me (1971)
## 3517 Pocketful of Miracles (1961)
## 3518 Vanishing, The (1993)
## 3519 Silkwood (1983)
## 3520 I Never Promised You a Rose Garden (1977)
## 3521 Quadrophenia (1979)
## 3522 SpaceCamp (1986)
## 3523 When Worlds Collide (1951)
## 3524 Don't Say a Word (2001)
## 3525 Hearts in Atlantis (2001)
## 3526 Zoolander (2001)
## 3527 Extreme Days (2001)
## 3528 Joy Ride (2001)
## 3529 Max Keeble's Big Move (2001)
## 3530 Serendipity (2001)
## 3531 Swamp, The (Ciénaga, La) (2001)
## 3532 Big Red One, The (1980)
## 3533 Boogeyman, The (1980)
## 3534 Party, The (Boum, La) (1980)
## 3535 Brubaker (1980)
## 3536 Can't Stop the Music (1980)
## 3537 Changeling, The (1980)
## 3538 Coal Miner's Daughter (1980)
## 3539 Competition, The (1980)
## 3540 Last Metro, The (Dernier métro, Le) (1980)
## 3541 Bandits (2001)
## 3542 Corky Romano (2001)
## 3543 Iron Monkey (Siu nin Wong Fei-hung ji: Tit Ma Lau) (1993)
## 3544 Fat Girl (Ã\200 ma soeur!) (2001)
## 3545 Mulholland Drive (2001)
## 3546 My First Mister (2001)
## 3547 Spriggan (Supurigan) (1998)
## 3548 Bones (2001)
## 3549 Dirty Harry (1971)
## 3550 Fiddler on the Roof (1971)
## 3551 Making the Grade (1984)
## 3552 Not Without My Daughter (1991)
## 3553 Female Trouble (1975)
## 3554 Titanica (1992)
## 3555 From Hell (2001)
## 3556 Last Castle, The (2001)
## 3557 Riding in Cars with Boys (2001)
## 3558 Focus (2001)
## 3559 Waking Life (2001)
## 3560 K-PAX (2001)
## 3561 Thirteen Ghosts (a.k.a. Thir13en Ghosts) (2001)
## 3562 Better Than Sex (2000)
## 3563 Donnie Darko (2001)
## 3564 High Heels and Low Lifes (2001)
## 3565 Life as a House (2001)
## 3566 Man Who Wasn't There, The (2001)
## 3567 Town is Quiet, The (Ville est tranquille, La) (2000)
## 3568 Domestic Disturbance (2001)
## 3569 Monsters, Inc. (2001)
## 3570 One, The (2001)
## 3571 Tape (2001)
## 3572 Heist (2001)
## 3573 Shallow Hal (2001)
## 3574 When a Stranger Calls (1979)
## 3575 Harry Potter and the Sorcerer's Stone (a.k.a. Harry Potter and the Philosopher's Stone) (2001)
## 3576 Novocaine (2001)
## 3577 Black Knight (2001)
## 3578 Out Cold (2001)
## 3579 Spy Game (2001)
## 3580 Devil's Backbone, The (Espinazo del diablo, El) (2001)
## 3581 In the Bedroom (2001)
## 3582 Incredible Shrinking Woman, The (1981)
## 3583 Jabberwocky (1977)
## 3584 Funny Girl (1968)
## 3585 Breathless (Ã\200 bout de souffle) (1960)
## 3586 Beastmaster, The (1982)
## 3587 Midway (1976)
## 3588 MacArthur (1977)
## 3589 Subway (1985)
## 3590 Now, Voyager (1942)
## 3591 Little Women (1933)
## 3592 Cheap Detective, The (1978)
## 3593 Everybody's Famous! (Iedereen beroemd!) (2000)
## 3594 Last Wave, The (1977)
## 3595 That Obscure Object of Desire (Cet obscur objet du désir) (1977)
## 3596 Toy, The (1982)
## 3597 Dressed to Kill (1980)
## 3598 Fame (1980)
## 3599 Final Countdown, The (1980)
## 3600 Flash Gordon (1980)
## 3601 Angry Red Planet, The (1959)
## 3602 Enforcer, The (1976)
## 3603 Eye for an Eye, An (1981)
## 3604 Gauntlet, The (1977)
## 3605 Lord of the Flies (1990)
## 3606 Morons From Outer Space (1985)
## 3607 People That Time Forgot, The (1977)
## 3608 Ocean's Eleven (a.k.a. Ocean's 11) (1960)
## 3609 Stunt Man, The (1980)
## 3610 Sudden Impact (1983)
## 3611 Behind Enemy Lines (2001)
## 3612 Affair of the Necklace, The (2001)
## 3613 Pornstar: The Legend of Ron Jeremy (2001)
## 3614 Texas Rangers (2001)
## 3615 Ocean's Eleven (2001)
## 3616 Baran (2001)
## 3617 Business of Strangers, The (2001)
## 3618 Incredible Shrinking Man, The (1957)
## 3619 No Man's Land (2001)
## 3620 And Then There Were None (1945)
## 3621 Blue Angel, The (Blaue Engel, Der) (1930)
## 3622 Moscow on the Hudson (1984)
## 3623 Amelie (Fabuleux destin d'Amélie Poulain, Le) (2001)
## 3624 Not Another Teen Movie (2001)
## 3625 Vanilla Sky (2001)
## 3626 Iris (2001)
## 3627 Kandahar (Safar e Ghandehar) (2001)
## 3628 Lantana (2001)
## 3629 Royal Tenenbaums, The (2001)
## 3630 Bill & Ted's Bogus Journey (1991)
## 3631 Clockwise (1986)
## 3632 Sheena (1984)
## 3633 Spacehunter: Adventures in the Forbidden Zone (1983)
## 3634 White Water Summer (1987)
## 3635 How High (2001)
## 3636 Jimmy Neutron: Boy Genius (2001)
## 3637 Joe Somebody (2001)
## 3638 Kate & Leopold (2001)
## 3639 Lord of the Rings: The Fellowship of the Ring, The (2001)
## 3640 Majestic, The (2001)
## 3641 Beautiful Mind, A (2001)
## 3642 Defiant Ones, The (1958)
## 3643 Party, The (1968)
## 3644 Topkapi (1964)
## 3645 Witness for the Prosecution (1957)
## 3646 Ali (2001)
## 3647 Black Hawk Down (2001)
## 3648 Charlotte Gray (2001)
## 3649 Yentl (1983)
## 3650 Gosford Park (2001)
## 3651 I Am Sam (2001)
## 3652 Monster's Ball (2001)
## 3653 Shipping News, The (2001)
## 3654 Murder by Death (1976)
## 3655 Waterdance, The (1992)
## 3656 Orange County (2002)
## 3657 Brotherhood of the Wolf (Pacte des loups, Le) (2001)
## 3658 Another 48 Hrs. (1990)
## 3659 What Time Is It There? (Ni neibian jidian) (2001)
## 3660 Russia House, The (1990)
## 3661 Truly, Madly, Deeply (1991)
## 3662 Dragonslayer (1981)
## 3663 Conan the Destroyer (1984)
## 3664 Fire and Ice (1983)
## 3665 Impostor (2002)
## 3666 Kung Pow: Enter the Fist (2002)
## 3667 Snow Dogs (2002)
## 3668 48 Hrs. (1982)
## 3669 Italian for Beginners (Italiensk for begyndere) (2000)
## 3670 Blankman (1994)
## 3671 Brainstorm (1983)
## 3672 Dragon: The Bruce Lee Story (1993)
## 3673 Little Dieter Needs to Fly (1997)
## 3674 M*A*S*H (a.k.a. MASH) (1970)
## 3675 Seconds (1966)
## 3676 One-Eyed Jacks (1961)
## 3677 The Count of Monte Cristo (2002)
## 3678 Mothman Prophecies, The (2002)
## 3679 Walk to Remember, A (2002)
## 3680 Beijing Bicycle (Shiqi sui de dan che) (2001)
## 3681 Escaflowne: The Movie (Escaflowne) (2000)
## 3682 Maelström (2000)
## 3683 Metropolis (2001)
## 3684 Son's Room, The (Stanza del figlio, La) (2001)
## 3685 Storytelling (2001)
## 3686 Waydowntown (2000)
## 3687 Adventures of Huck Finn, The (1993)
## 3688 Cousins (1989)
## 3689 Slackers (2002)
## 3690 Birthday Girl (2001)
## 3691 Rare Birds (2001)
## 3692 Going Places (Valseuses, Les) (1974)
## 3693 Big Fat Liar (2002)
## 3694 Collateral Damage (2002)
## 3695 Rollerball (2002)
## 3696 Scotland, Pa. (2001)
## 3697 Baby's Day Out (1994)
## 3698 Heidi (1937)
## 3699 Rookie of the Year (1993)
## 3700 Sandlot, The (1993)
## 3701 Don't Look Now (1973)
## 3702 Crossroads (2002)
## 3703 Hart's War (2002)
## 3704 John Q (2002)
## 3705 Return to Never Land (2002)
## 3706 Super Troopers (2001)
## 3707 Good Son, The (1993)
## 3708 Last Orders (2001)
## 3709 After the Fox (Caccia alla volpe) (1966)
## 3710 Bad and the Beautiful, The (1952)
## 3711 Designing Woman (1957)
## 3712 Sleuth (1972)
## 3713 Stroszek (1977)
## 3714 Dragonfly (2002)
## 3715 Queen of the Damned (2002)
## 3716 How to Kill Your Neighbor's Dog (2000)
## 3717 Mean Machine (2001)
## 3718 Monsoon Wedding (2001)
## 3719 Wendigo (2001)
## 3720 Scratch (2001)
## 3721 Bad News Bears, The (1976)
## 3722 Vampire Hunter D: Bloodlust (Banpaia hantâ D) (2000)
## 3723 Wild Strawberries (Smultronstället) (1957)
## 3724 40 Days and 40 Nights (2002)
## 3725 We Were Soldiers (2002)
## 3726 Big Bird Cage, The (1972)
## 3727 Big Doll House, The (1971)
## 3728 Ferngully: The Last Rainforest (1992)
## 3729 Zombie (a.k.a. Zombie 2: The Dead Are Among Us) (Zombi 2) (1979)
## 3730 Royal Wedding (1951)
## 3731 All About the Benjamins (2002)
## 3732 Time Machine, The (2002)
## 3733 Magnificent Ambersons, The (1942)
## 3734 Fun (1994)
## 3735 Hangar 18 (1980)
## 3736 Hopscotch (1980)
## 3737 Humanoids from the Deep (1980)
## 3738 Little Darlings (1980)
## 3739 Long Good Friday, The (1980)
## 3740 Mon oncle d'Amérique (1980)
## 3741 Motel Hell (1980)
## 3742 Ffolkes (1979)
## 3743 Octagon, The (1980)
## 3744 Oh, God! Book II (1980)
## 3745 Oh, God! (1977)
## 3746 Ice Age (2002)
## 3747 Resident Evil (2002)
## 3748 Showtime (2002)
## 3749 Harrison's Flowers (2000)
## 3750 Kissing Jessica Stein (2001)
## 3751 Promises (2001)
## 3752 And Your Mother Too (Y tu mamá también) (2001)
## 3753 All the Right Moves (1983)
## 3754 Road to Morocco (1942)
## 3755 Taps (1981)
## 3756 Return of the Secaucus 7 (1980)
## 3757 Rude Boy (1980)
## 3758 Running Scared (1980)
## 3759 Seems Like Old Times (1980)
## 3760 Shogun Assassin (1980)
## 3761 Smokey and the Bandit II (1980)
## 3762 Smokey and the Bandit (1977)
## 3763 Smokey and the Bandit III (1983)
## 3764 Stir Crazy (1980)
## 3765 Blade II (2002)
## 3766 Sorority Boys (2002)
## 3767 Stolen Summer (2002)
## 3768 George Washington (2000)
## 3769 Clockstoppers (2002)
## 3770 Death to Smoochy (2002)
## 3771 Panic Room (2002)
## 3772 Rookie, The (2002)
## 3773 No Such Thing (2001)
## 3774 Piano Teacher, The (La pianiste) (2001)
## 3775 Time Out (L'emploi du temps) (2001)
## 3776 Boxcar Bertha (1972)
## 3777 Fraternity Vacation (1985)
## 3778 Impromptu (1991)
## 3779 High Crimes (2002)
## 3780 National Lampoon's Van Wilder (2002)
## 3781 Crush (2001)
## 3782 Lucky Break (2001)
## 3783 Atomic Cafe, The (1982)
## 3784 Rashomon (Rashômon) (1950)
## 3785 Slap Shot (1977)
## 3786 Changing Lanes (2002)
## 3787 Frailty (2001)
## 3788 Sweetest Thing, The (2002)
## 3789 Cat's Meow, The (2002)
## 3790 Human Nature (2001)
## 3791 My Big Fat Greek Wedding (2002)
## 3792 3:10 to Yuma (1957)
## 3793 Joe Versus the Volcano (1990)
## 3794 Rome, Open City (a.k.a. Open City) (Roma, cittÃÂ aperta) (1945)
## 3795 Taking Care of Business (1990)
## 3796 Three Men and a Baby (1987)
## 3797 Three Men and a Little Lady (1990)
## 3798 Watcher in the Woods, The (1980)
## 3799 Murder by Numbers (2002)
## 3800 The Scorpion King (2002)
## 3801 Enigma (2001)
## 3802 Nine Queens (Nueve reinas) (2000)
## 3803 Triumph of Love, The (2001)
## 3804 World Traveler (2001)
## 3805 Jason X (2002)
## 3806 Life or Something Like It (2002)
## 3807 Dogtown and Z-Boyz (2001)
## 3808 Rain (2001)
## 3809 Salton Sea, The (2002)
## 3810 Bob le Flambeur (1955)
## 3811 Cadillac Man (1990)
## 3812 Delirious (1991)
## 3813 Full Moon in Blue Water (1988)
## 3814 Husbands and Wives (1992)
## 3815 Lenny (1974)
## 3816 Triumph of the Spirit (1989)
## 3817 Wild Orchid (1990)
## 3818 Deuces Wild (2002)
## 3819 Hollywood Ending (2002)
## 3820 Spider-Man (2002)
## 3821 Butterflies Are Free (1972)
## 3822 Giant Spider Invasion, The (1975)
## 3823 Iron Will (1994)
## 3824 Mountains of the Moon (1990)
## 3825 White Fang (1991)
## 3826 New Guy, The (2002)
## 3827 Unfaithful (2002)
## 3828 Lady and the Duke, The (Anglaise et le duc, L') (2001)
## 3829 Calamity Jane (1953)
## 3830 Cranes Are Flying, The (Letyat zhuravli) (1957)
## 3831 Harvey Girls, The (1946)
## 3832 About a Boy (2002)
## 3833 Star Wars: Episode II - Attack of the Clones (2002)
## 3834 Believer, The (2001)
## 3835 Importance of Being Earnest, The (2002)
## 3836 Every Which Way But Loose (1978)
## 3837 I Want to Live! (1958)
## 3838 Last Waltz, The (1978)
## 3839 Enough (2002)
## 3840 Insomnia (2002)
## 3841 Spirit: Stallion of the Cimarron (2002)
## 3842 CQ (2001)
## 3843 Thirteen Conversations About One Thing (a.k.a. 13 Conversations) (2001)
## 3844 Monkey Business (1952)
## 3845 Requiem for a Heavyweight (1962)
## 3846 Sum of All Fears, The (2002)
## 3847 Undercover Brother (2002)
## 3848 84 Charing Cross Road (1987)
## 3849 Rapid Fire (1992)
## 3850 Silent Running (1972)
## 3851 Bad Company (2002)
## 3852 Divine Secrets of the Ya-Ya Sisterhood (2002)
## 3853 Cherish (2002)
## 3854 Fast Runner, The (Atanarjuat) (2001)
## 3855 Bourne Identity, The (2002)
## 3856 Scooby-Doo (2002)
## 3857 Windtalkers (2002)
## 3858 Dangerous Lives of Altar Boys, The (2002)
## 3859 Emperor's New Clothes, The (2001)
## 3860 Gangster No. 1 (2000)
## 3861 Harvard Man (2001)
## 3862 Dark Blue World (Tmavomodrý svet) (2001)
## 3863 Caveman (1981)
## 3864 Cheech & Chong's The Corsican Brothers (1984)
## 3865 Silver Bullet (Stephen King's Silver Bullet) (1985)
## 3866 Sorry, Wrong Number (1948)
## 3867 Hombre (1967)
## 3868 Manhattan Project, The (1986)
## 3869 Men at Work (1990)
## 3870 She Wore a Yellow Ribbon (1949)
## 3871 V. I. Warshawski (1991)
## 3872 Juwanna Mann (2002)
## 3873 Lilo & Stitch (2002)
## 3874 Minority Report (2002)
## 3875 Rabbit-Proof Fence (2002)
## 3876 Sunshine State (2002)
## 3877 Hey Arnold! The Movie (2002)
## 3878 Mr. Deeds (2002)
## 3879 Lovely & Amazing (2001)
## 3880 Pumpkin (2002)
## 3881 Look Who's Talking Now (1993)
## 3882 Mo' Money (1992)
## 3883 Object of Beauty, The (1991)
## 3884 Wagons East (1994)
## 3885 Like Mike (2002)
## 3886 Men in Black II (a.k.a. MIIB) (a.k.a. MIB 2) (2002)
## 3887 Powerpuff Girls, The (2002)
## 3888 Me Without You (2001)
## 3889 Crocodile Hunter: Collision Course, The (2002)
## 3890 Reign of Fire (2002)
## 3891 Road to Perdition (2002)
## 3892 All About Lily Chou-Chou (Riri Shushu no subete) (2001)
## 3893 My Wife is an Actress (Ma Femme est une Actrice) (2001)
## 3894 20 Million Miles to Earth (1957)
## 3895 The Importance of Being Earnest (1952)
## 3896 Perfect (1985)
## 3897 1776 (1972)
## 3898 Z (1969)
## 3899 Halloween: Resurrection (Halloween 8) (2002)
## 3900 Sex and Lucia (LucÃÂa y el sexo) (2001)
## 3901 Eight Legged Freaks (2002)
## 3902 K-19: The Widowmaker (2002)
## 3903 Stuart Little 2 (2002)
## 3904 Austin Powers in Goldmember (2002)
## 3905 Kid Stays in the Picture, The (2002)
## 3906 Tadpole (2002)
## 3907 Who Is Cletis Tout? (2001)
## 3908 Nosferatu the Vampyre (Nosferatu: Phantom der Nacht) (1979)
## 3909 The Big Bus (1976)
## 3910 In Like Flint (1967)
## 3911 Our Man Flint (1965)
## 3912 Red Beard (Akahige) (1965)
## 3913 Robin and Marian (1976)
## 3914 Top Secret! (1984)
## 3915 Master of Disguise, The (2002)
## 3916 Signs (2002)
## 3917 Last Kiss, The (Ultimo bacio, L') (2001)
## 3918 Spy Kids 2: The Island of Lost Dreams (2002)
## 3919 Good Girl, The (2002)
## 3920 Blood Work (2002)
## 3921 xXx (2002)
## 3922 24 Hour Party People (2002)
## 3923 Secret Ballot (Raye makhfi) (2001)
## 3924 Martin Lawrence Live: Runteldat (2002)
## 3925 Songs From the Second Floor (SÃÂ¥nger frÃÂ¥n andra vÃÂ¥ningen) (2000)
## 3926 Principal, The (1987)
## 3927 Rollerball (1975)
## 3928 Adventures of Pluto Nash, The (2002)
## 3929 Blue Crush (2002)
## 3930 Mostly Martha (Bella Martha) (2001)
## 3931 Possession (2002)
## 3932 One Hour Photo (2002)
## 3933 Serving Sara (2002)
## 3934 Simone (S1m0ne) (2002)
## 3935 Undisputed (2002)
## 3936 Amy's O (a.k.a. Amy's Orgasm) (2001)
## 3937 Satin Rouge (2002)
## 3938 Care Bears Movie, The (1985)
## 3939 Care Bears Movie II: A New Generation (1986)
## 3940 Clash of the Titans (1981)
## 3941 Hot Shots! (1991)
## 3942 Swarm, The (1978)
## 3943 Time After Time (1979)
## 3944 Down and Out in Beverly Hills (1986)
## 3945 Love Me Tender (1956)
## 3946 Stakeout (1987)
## 3947 FearDotCom (a.k.a. Fear.com) (a.k.a. Fear Dot Com) (2002)
## 3948 Ã\200 nous la liberté (Freedom for Us) (1931)
## 3949 Snipes (2001)
## 3950 City by the Sea (2002)
## 3951 Swimfan (2002)
## 3952 Johnny Dangerously (1984)
## 3953 Last House on the Left, The (1972)
## 3954 Thesis (Tesis) (1996)
## 3955 Barbershop (2002)
## 3956 Stealing Harvard (2002)
## 3957 Transporter, The (2002)
## 3958 Alias Betty (Betty Fisher et autres histoires) (2001)
## 3959 Igby Goes Down (2002)
## 3960 Aspen Extreme (1993)
## 3961 Betsy's Wedding (1990)
## 3962 Captain Ron (1992)
## 3963 Ernest Goes to Jail (1990)
## 3964 Ernest Scared Stupid (1991)
## 3965 Hills Have Eyes, The (1977)
## 3966 Indian Summer (1993)
## 3967 Mack, The (1973)
## 3968 Monkey Trouble (1994)
## 3969 Spaced Invaders (1990)
## 3970 Suburban Commando (1991)
## 3971 Yearling, The (1946)
## 3972 Ladykillers, The (1955)
## 3973 Lavender Hill Mob, The (1951)
## 3974 Man in the White Suit, The (1951)
## 3975 Son of the Bride (Hijo de la novia, El) (2001)
## 3976 Das Experiment (Experiment, The) (2001)
## 3977 Ballistic: Ecks vs. Sever (2002)
## 3978 Banger Sisters, The (2002)
## 3979 Four Feathers, The (2002)
## 3980 Trapped (2002)
## 3981 8 Women (2002)
## 3982 His Secret Life (a.k.a. Ignorant Fairies, The) (Fate ignoranti, Le) (2001)
## 3983 Invincible (2001)
## 3984 Secretary (2002)
## 3985 Spirited Away (Sen to Chihiro no kamikakushi) (2001)
## 3986 Trials of Henry Kissinger, The (2002)
## 3987 Sweet Home Alabama (2002)
## 3988 Tuxedo, The (2002)
## 3989 Moonlight Mile (2002)
## 3990 Wasabi (2001)
## 3991 Jonah: A VeggieTales Movie (2002)
## 3992 Red Dragon (2002)
## 3993 Bloody Sunday (2002)
## 3994 Heaven (2002)
## 3995 Man from Elysian Fields, The (2001)
## 3996 Welcome to Collinwood (2002)
## 3997 Flirting (1991)
## 3998 Godzilla vs. Mothra (Mosura tai Gojira) (1964)
## 3999 Godzilla, King of the Monsters! (Kaijû-ô Gojira) (1956)
## 4000 Powaqqatsi (1988)
## 4001 Pride of the Yankees, The (1942)
## 4002 Valmont (1989)
## 4003 Horror of Dracula (Dracula) (1958)
## 4004 Strange Brew (1983)
## 4005 Incredible Mr. Limpet, The (1964)
## 4006 Flashback (1990)
## 4007 Below (2002)
## 4008 Brown Sugar (2002)
## 4009 Knockaround Guys (2002)
## 4010 Rules of Attraction, The (2002)
## 4011 Tuck Everlasting (2002)
## 4012 White Oleander (2002)
## 4013 Bowling for Columbine (2002)
## 4014 Comedian (2002)
## 4015 Pokemon 4 Ever (a.k.a. Pokémon 4: The Movie) (2002)
## 4016 Punch-Drunk Love (2002)
## 4017 Swept Away (2002)
## 4018 Formula 51 (2001)
## 4019 Ring, The (2002)
## 4020 Auto Focus (2002)
## 4021 Grey Zone, The (2001)
## 4022 Naqoyqatsi (2002)
## 4023 Real Women Have Curves (2002)
## 4024 Tully (2000)
## 4025 Billy Bathgate (1991)
## 4026 Grave of the Fireflies (Hotaru no haka) (1988)
## 4027 Saturday Night Fever (1977)
## 4028 Staying Alive (1983)
## 4029 Urban Cowboy (1980)
## 4030 Tom Horn (1980)
## 4031 The Pumaman (1980)
## 4032 Without Warning (a.k.a. Alien Warning) (a.k.a. It Came Without Warning) (1980)
## 4033 ...All the Marbles (1981)
## 4034 Absence of Malice (1981)
## 4035 Banana Joe (1981)
## 4036 Blow Out (1981)
## 4037 Friend Is a Treasure, A (Chi Trova Un Amico, Trova un Tesoro) (Who Finds a Friend Finds a Treasure) (1981)
## 4038 Chosen, The (1981)
## 4039 Continental Divide (1981)
## 4040 Eyewitness (Janitor, The) (1981)
## 4041 Faces of Death (1978)
## 4042 Faces of Death 3 (1985)
## 4043 Woman Next Door, The (Femme d'àcôté, La) (1981)
## 4044 First Monday in October (1981)
## 4045 Four Seasons, The (1981)
## 4046 Galaxy of Terror (Quest) (1981)
## 4047 Gallipoli (1981)
## 4048 Ghost Story (1981)
## 4049 Gregory's Girl (1981)
## 4050 Happy Birthday to Me (1981)
## 4051 Looker (1981)
## 4052 Teddy Bear (Mis) (1981)
## 4053 Modern Problems (1981)
## 4054 My Bloody Valentine (1981)
## 4055 My Dinner with André (1981)
## 4056 Neighbors (1981)
## 4057 Piranha II: The Spawning (1981)
## 4058 Polyester (1981)
## 4059 Professional, The (Le professionnel) (1981)
## 4060 Ghost Ship (2002)
## 4061 Jackass: The Movie (2002)
## 4062 Paid in Full (2002)
## 4063 Truth About Charlie, The (2002)
## 4064 All or Nothing (2002)
## 4065 Frida (2002)
## 4066 Roger Dodger (2002)
## 4067 Casino Royale (1967)
## 4068 Company of Wolves, The (1984)
## 4069 Exodus (1960)
## 4070 Russians Are Coming, the Russians Are Coming, The (1966)
## 4071 World of Henry Orient, The (1964)
## 4072 I Spy (2002)
## 4073 Santa Clause 2, The (2002)
## 4074 Femme Fatale (2002)
## 4075 8 Mile (2002)
## 4076 Far from Heaven (2002)
## 4077 Harry Potter and the Chamber of Secrets (2002)
## 4078 Ararat (2002)
## 4079 Crime of Father Amaro, The (Crimen del padre Amaro, El) (2002)
## 4080 Standing in the Shadows of Motown (2002)
## 4081 Rio Grande (1950)
## 4082 Blackrock (1997)
## 4083 Men with Brooms (2002)
## 4084 Dog Soldiers (2002)
## 4085 Houseboat (1958)
## 4086 Madame Bovary (1991)
## 4087 My Father's Glory (La gloire de mon père) (1990)
## 4088 My Mother's Castle (Château de ma mère, Le) (1990)
## 4089 Return to the Blue Lagoon (1991)
## 4090 Toy Soldiers (1991)
## 4091 Ragtime (1981)
## 4092 I'm Starting From Three (Ricomincio da Tre) (1981)
## 4093 Scanners (1981)
## 4094 Do You Remember Dolly Bell? (Sjecas li se, Dolly Bell) (1981)
## 4095 Take This Job and Shove It (1981)
## 4096 Thief (1981)
## 4097 Die Another Day (2002)
## 4098 The Emperor's Club (2002)
## 4099 Friday After Next (2002)
## 4100 Personal Velocity (2002)
## 4101 Quiet American, The (2002)
## 4102 Talk to Her (Hable con Ella) (2002)
## 4103 Eight Crazy Nights (Adam Sandler's Eight Crazy Nights) (2002)
## 4104 Extreme Ops (2002)
## 4105 Solaris (2002)
## 4106 Treasure Planet (2002)
## 4107 They (2002)
## 4108 Chopper Chicks in Zombietown (1989)
## 4109 Brother (Brat) (1997)
## 4110 Cruel Romance, A (Zhestokij Romans) (1984)
## 4111 Elling (2001)
## 4112 I Spit on Your Grave (Day of the Woman) (1978)
## 4113 Last Seduction, The (1994)
## 4114 New Waterford Girl (1999)
## 4115 Zulu (1964)
## 4116 Analyze That (2002)
## 4117 Empire (2002)
## 4118 Adaptation (2002)
## 4119 Equilibrium (2002)
## 4120 Visitor Q (Bizita Q) (2001)
## 4121 Hit the Bank (Vabank) (1981)
## 4122 Victory (a.k.a. Escape to Victory) (1981)
## 4123 Android (1982)
## 4124 Attila (Attila Flagello di Dio) (1982)
## 4125 Beast Within, The (1982)
## 4126 Best Little Whorehouse in Texas, The (1982)
## 4127 Party 2, The (Boum 2, La) (1982)
## 4128 Burden of Dreams (1982)
## 4129 Deathtrap (1982)
## 4130 Drumline (2002)
## 4131 Hot Chick, The (2002)
## 4132 Maid in Manhattan (2002)
## 4133 Star Trek: Nemesis (2002)
## 4134 About Schmidt (2002)
## 4135 Evelyn (2002)
## 4136 Intact (Intacto) (2001)
## 4137 Morvern Callar (2002)
## 4138 Lord of the Rings: The Two Towers, The (2002)
## 4139 Devils on the Doorstep (Guizi lai le) (2000)
## 4140 25th Hour (2002)
## 4141 Antwone Fisher (2002)
## 4142 Gangs of New York (2002)
## 4143 Two Weeks Notice (2002)
## 4144 Narc (2002)
## 4145 Blue Steel (1990)
## 4146 Body of Evidence (1993)
## 4147 Children's Hour, The (1961)
## 4148 Duellists, The (1977)
## 4149 Miami Blues (1990)
## 4150 My Girl 2 (1994)
## 4151 My Girl (1991)
## 4152 My Neighbor Totoro (Tonari no Totoro) (1988)
## 4153 Thief of Bagdad, The (1940)
## 4154 War and Peace (1956)
## 4155 Attack of the Crab Monsters (1957)
## 4156 Black Christmas (1974)
## 4157 Story of O, The (Histoire d'O) (1975)
## 4158 Fat City (1972)
## 4159 Quicksilver (1986)
## 4160 Catch Me If You Can (2002)
## 4161 Pinocchio (2002)
## 4162 Chicago (2002)
## 4163 Hours, The (2002)
## 4164 Max (2002)
## 4165 Nicholas Nickleby (2002)
## 4166 Pianist, The (2002)
## 4167 Heavy Metal 2000 (2000)
## 4168 King of Comedy, The (1983)
## 4169 Love Liza (2002)
## 4170 Confessions of a Dangerous Mind (2002)
## 4171 Blue Collar Comedy Tour: The Movie (2003)
## 4172 Just Married (2003)
## 4173 City of Lost Souls, The (Hyôryuu-gai) (2000)
## 4174 Guy Thing, A (2003)
## 4175 Kangaroo Jack (2003)
## 4176 National Security (2003)
## 4177 City of God (Cidade de Deus) (2002)
## 4178 Alice Adams (1935)
## 4179 American Friend, The (Amerikanische Freund, Der) (1977)
## 4180 American Me (1992)
## 4181 Band of Outsiders (Bande ÃÂ part) (1964)
## 4182 CB4 - The Movie (1993)
## 4183 Dogfight (1991)
## 4184 Girls! Girls! Girls! (1962)
## 4185 Imitation of Life (1959)
## 4186 Mystery Date (1991)
## 4187 Pépé le Moko (1937)
## 4188 Secret Admirer (1985)
## 4189 Woman in Red, The (1984)
## 4190 Darkness Falls (2003)
## 4191 Amen. (2002)
## 4192 Blind Spot: Hitler's Secretary (Im toten Winkel - Hitlers Sekretärin) (2002)
## 4193 Blind Date (1984)
## 4194 Ethan Frome (1993)
## 4195 Harder They Come, The (1973)
## 4196 Sugar Hill (1994)
## 4197 Biker Boyz (2003)
## 4198 Final Destination 2 (2003)
## 4199 Recruit, The (2003)
## 4200 Guru, The (2002)
## 4201 Lost in La Mancha (2002)
## 4202 May (2002)
## 4203 Harder They Fall, The (1956)
## 4204 Ordinary Decent Criminal (2000)
## 4205 Tokyo Decadence (Topâzu) (1992)
## 4206 Firefox (1982)
## 4207 I, the Jury (1982)
## 4208 Kiss Me Goodbye (1982)
## 4209 Last Unicorn, The (1982)
## 4210 Dragon Lord (a.k.a. Dragon Strike) (Long Xiao Ye) (1982)
## 4211 Midsummer Night's Sex Comedy, A (1982)
## 4212 Missing (1982)
## 4213 Monty Python Live at the Hollywood Bowl (1982)
## 4214 Night of the Shooting Stars (Notte di San Lorenzo, La) (1982)
## 4215 Paradise (1982)
## 4216 Pirate Movie, The (1982)
## 4217 Santa Claus Is a Stinker (Le Père Noël est une ordure) (1982)
## 4218 Richard Pryor Live on the Sunset Strip (1982)
## 4219 Sunless (Sans Soleil) (1983)
## 4220 Savannah Smiles (1982)
## 4221 Secret Policeman's Other Ball, The (1982)
## 4222 Tenebre (1982)
## 4223 They Call Me Bruce? (a.k.a. A Fistful of Chopsticks) (1982)
## 4224 Trail of the Pink Panther (1982)
## 4225 Venom (1982)
## 4226 White Dog (1982)
## 4227 Zapped! (1982)
## 4228 How to Lose a Guy in 10 Days (2003)
## 4229 Shanghai Knights (2003)
## 4230 Daredevil (2003)
## 4231 Jungle Book 2, The (2003)
## 4232 All the Real Girls (2003)
## 4233 Gerry (2002)
## 4234 He Loves Me... He Loves Me Not (Ã\200 la folie... pas du tout) (2002)
## 4235 Dennis the Menace (1993)
## 4236 Black Stallion Returns, The (1983)
## 4237 Black Stallion, The (1979)
## 4238 Patch of Blue, A (1965)
## 4239 Red Badge of Courage, The (1951)
## 4240 Thrill of It All, The (1963)
## 4241 Pillow Talk (1959)
## 4242 Man Who Fell to Earth, The (1976)
## 4243 Dark Blue (2003)
## 4244 Gods and Generals (2003)
## 4245 Life of David Gale, The (2003)
## 4246 Old School (2003)
## 4247 Open Hearts (Elsker dig for evigt) (2002)
## 4248 Poolhall Junkies (2002)
## 4249 Stone Reader (2002)
## 4250 Cradle 2 the Grave (2003)
## 4251 Spider (2002)
## 4252 Lady Jane (1986)
## 4253 Late Marriage (Hatuna Meuheret) (2001)
## 4254 Life Stinks (1991)
## 4255 Meteor Man, The (1993)
## 4256 Volcano High (Whasango) (2001)
## 4257 Bringing Down the House (2003)
## 4258 Tears of the Sun (2003)
## 4259 Irreversible (Irréversible) (2002)
## 4260 Laurel Canyon (2002)
## 4261 Nowhere in Africa (Nirgendwo in Afrika) (2001)
## 4262 Safety of Objects, The (2001)
## 4263 Bend It Like Beckham (2002)
## 4264 Hunted, The (2003)
## 4265 Willard (2003)
## 4266 Prozac Nation (2001)
## 4267 Spun (2001)
## 4268 King of Kings (1961)
## 4269 Talk of the Town, The (1942)
## 4270 Born Free (1966)
## 4271 Equus (1977)
## 4272 Europa Europa (Hitlerjunge Salomon) (1990)
## 4273 Glenn Miller Story, The (1953)
## 4274 Green Card (1990)
## 4275 Journey to the Center of the Earth (1959)
## 4276 Pauline at the Beach (Pauline ÃÂ la Plage) (1983)
## 4277 Ringu (Ring) (1998)
## 4278 Salaam Bombay! (1988)
## 4279 Sweet Charity (1969)
## 4280 Talent for the Game (1991)
## 4281 Boat Trip (2003)
## 4282 Dreamcatcher (2003)
## 4283 Piglet's Big Movie (2003)
## 4284 View from the Top (2003)
## 4285 Awful Truth, The (1937)
## 4286 Basic (2003)
## 4287 Core, The (2003)
## 4288 Head of State (2003)
## 4289 What a Girl Wants (2003)
## 4290 Assassination Tango (2002)
## 4291 Raising Victor Vargas (2002)
## 4292 Stevie (2002)
## 4293 Akira Kurosawa's Dreams (Dreams) (1990)
## 4294 Day for Night (La Nuit Américaine) (1973)
## 4295 In a Lonely Place (1950)
## 4296 Good Thief, The (2002)
## 4297 Man Apart, A (2003)
## 4298 Phone Booth (2002)
## 4299 Cowboy Bebop: The Movie (Cowboy Bebop: Tengoku no Tobira) (2001)
## 4300 Levity (2003)
## 4301 Man Without a Past, The (Mies vailla menneisyyttä) (2002)
## 4302 Anger Management (2003)
## 4303 Better Luck Tomorrow (2002)
## 4304 Ghosts of the Abyss (2003)
## 4305 House of 1000 Corpses (2003)
## 4306 Lilya 4-Ever (Lilja 4-ever) (2002)
## 4307 Bulletproof Monk (2003)
## 4308 Chasing Papi (a.k.a. Papi Chulo) (2003)
## 4309 Mighty Wind, A (2003)
## 4310 Holes (2003)
## 4311 Malibu's Most Wanted (2003)
## 4312 Winged Migration (Peuple migrateur, Le) (2001)
## 4313 Flickering Lights (Blinkende lygter) (2000)
## 4314 Straw Dogs (1971)
## 4315 Beginning of the End (1957)
## 4316 Andromeda Strain, The (1971)
## 4317 Fahrenheit 451 (1966)
## 4318 I Am Trying to Break Your Heart (2002)
## 4319 Legal Eagles (1986)
## 4320 Memories of Me (1988)
## 4321 Sibling Rivalry (1990)
## 4322 Undercover Blues (1993)
## 4323 Wildcats (1986)
## 4324 Wiz, The (1978)
## 4325 My Father the Hero (Mon père, ce héros.) (1991)
## 4326 Scenes from a Mall (1991)
## 4327 Confidence (2003)
## 4328 Identity (2003)
## 4329 It Runs in the Family (2003)
## 4330 Decade Under the Influence, A (2003)
## 4331 Manic (2001)
## 4332 People I Know (2002)
## 4333 Spellbound (2002)
## 4334 Lizzie McGuire Movie, The (2003)
## 4335 X2: X-Men United (2003)
## 4336 Blue Car (2002)
## 4337 Dancer Upstairs, The (2002)
## 4338 Marooned in Iraq (Gomgashtei dar Aragh) (2002)
## 4339 Owning Mahowny (2003)
## 4340 Daddy Day Care (2003)
## 4341 Man on the Train (Homme du train, L') (2002)
## 4342 Shape of Things, The (2003)
## 4343 Trip, The (2002)
## 4344 101 Reykjavik (101 ReykjavÃÂk) (2000)
## 4345 Chorus Line, A (1985)
## 4346 Beat Street (1984)
## 4347 Breakin' 2: Electric Boogaloo (1984)
## 4348 Breakin' (1984)
## 4349 Laputa: Castle in the Sky (Tenkû no shiro Rapyuta) (1986)
## 4350 High Society (1956)
## 4351 Kiss Me Kate (1953)
## 4352 Matrix Reloaded, The (2003)
## 4353 Down with Love (2003)
## 4354 Cinemania (2002)
## 4355 Spanish Apartment, The (L'auberge espagnole) (2002)
## 4356 Pokémon Heroes (2003)
## 4357 Bruce Almighty (2003)
## 4358 In-Laws, The (2003)
## 4359 Gigantic (A Tale of Two Johns) (2002)
## 4360 Respiro (2002)
## 4361 Finding Nemo (2003)
## 4362 Italian Job, The (2003)
## 4363 Wrong Turn (2003)
## 4364 Capturing the Friedmans (2003)
## 4365 Together (Han ni Zai Yiki) (2002)
## 4366 2 Fast 2 Furious (Fast and the Furious 2, The) (2003)
## 4367 Whale Rider (2002)
## 4368 Nevada Smith (1966)
## 4369 Once a Thief (Zong heng si hai) (1991)
## 4370 Silk Stockings (1957)
## 4371 Crazies, The (a.k.a. Code Name: Trixie) (1973)
## 4372 Murder on a Sunday Morning (Un coupable idéal) (2001)
## 4373 Siam Sunset (1999)
## 4374 Treasure Island (1950)
## 4375 Walk, Don't Run (1966)
## 4376 Animals are Beautiful People (1974)
## 4377 Car Wash (1976)
## 4378 Destry Rides Again (1939)
## 4379 Intervista (1987)
## 4380 Live Wire (1992)
## 4381 Shenandoah (1965)
## 4382 Oscar (1991)
## 4383 6th Man, The (Sixth Man, The) (1997)
## 4384 Railway Children, The (1970)
## 4385 Two Mules for Sister Sara (1970)
## 4386 Winchester '73 (1950)
## 4387 Man with the Movie Camera, The (Chelovek s kino-apparatom) (1929)
## 4388 Objective, Burma! (1945)
## 4389 This Boy's Life (1993)
## 4390 Barton Fink (1991)
## 4391 Belle époque (1992)
## 4392 Flight of the Phoenix, The (1965)
## 4393 From the Terrace (1960)
## 4394 Long, Hot Summer, The (1958)
## 4395 Man of Aran (1934)
## 4396 Music Box (1989)
## 4397 Trial, The (Procès, Le) (1962)
## 4398 Unforgiven, The (1960)
## 4399 Good Burger (1997)
## 4400 Jubilee (1977)
## 4401 Mississippi Masala (1991)
## 4402 Shattered (1991)
## 4403 Song of Bernadette, The (1943)
## 4404 Thoroughly Modern Millie (1967)
## 4405 Dumb and Dumberer: When Harry Met Lloyd (2003)
## 4406 From Justin to Kelly (2003)
## 4407 Hollywood Homicide (2003)
## 4408 Alex and Emma (2003)
## 4409 28 Days Later (2002)
## 4410 Charlie's Angels: Full Throttle (2003)
## 4411 Fulltime Killer (Chuen jik sat sau) (2001)
## 4412 Ali: Fear Eats the Soul (Angst essen Seele auf) (1974)
## 4413 Bodies, Rest & Motion (1993)
## 4414 Ring of Terror (1962)
## 4415 You Only Live Once (1937)
## 4416 Anastasia (1956)
## 4417 Babe, The (1992)
## 4418 Mr. Baseball (1992)
## 4419 Scaramouche (1952)
## 4420 Start the Revolution Without Me (1970)
## 4421 Tenant, The (Locataire, Le) (1976)
## 4422 What's Up, Doc? (1972)
## 4423 Hulk (2003)
## 4424 Legally Blonde 2: Red, White & Blonde (2003)
## 4425 Sinbad: Legend of the Seven Seas (2003)
## 4426 Terminator 3: Rise of the Machines (2003)
## 4427 Swimming Pool (2003)
## 4428 Pirates of the Caribbean: The Curse of the Black Pearl (2003)
## 4429 League of Extraordinary Gentlemen, The (a.k.a. LXG) (2003)
## 4430 Cuckoo, The (Kukushka) (2002)
## 4431 I Capture the Castle (2003)
## 4432 Northfork (2003)
## 4433 Bad Boys II (2003)
## 4434 How to Deal (2003)
## 4435 Johnny English (2003)
## 4436 Anarchist Cookbook, The (2002)
## 4437 Dirty Pretty Things (2002)
## 4438 Embalmer, The (Imbalsamatore, L') (2002)
## 4439 Garage Days (2002)
## 4440 Born to Be Wild (1995)
## 4441 Curly Sue (1991)
## 4442 Little Giants (1994)
## 4443 Loose Cannons (1990)
## 4444 Mouse That Roared, The (1959)
## 4445 Masked & Anonymous (2003)
## 4446 Lara Croft Tomb Raider: The Cradle of Life (2003)
## 4447 Seabiscuit (2003)
## 4448 Spy Kids 3-D: Game Over (2003)
## 4449 Buffalo Soldiers (2001)
## 4450 Camp (2003)
## 4451 Mondays in the Sun (Lunes al sol, Los) (2002)
## 4452 Scorched (2003)
## 4453 Avanti! (1972)
## 4454 Eve of Destruction (1991)
## 4455 Kickboxer 2: The Road Back (1991)
## 4456 Kiss Me, Stupid (1964)
## 4457 One, Two, Three (1961)
## 4458 Private Life of Sherlock Holmes, The (1970)
## 4459 Remo Williams: The Adventure Begins (1985)
## 4460 Blood of Heroes, The (Salute of the Jugger, The) (1989)
## 4461 What's Up, Tiger Lily? (1966)
## 4462 American Wedding (American Pie 3) (2003)
## 4463 Gigli (2003)
## 4464 And Now... Ladies and Gentlemen... (2002)
## 4465 Magdalene Sisters, The (2002)
## 4466 Secret Lives of Dentists, The (2002)
## 4467 Freaky Friday (2003)
## 4468 S.W.A.T. (2003)
## 4469 Divorce, Le (2003)
## 4470 Princess Blade, The (Shura Yukihime) (2001)
## 4471 Step Into Liquid (2002)
## 4472 Double Life, A (1947)
## 4473 Hawks and Sparrows (Uccellacci e Uccellini) (1966)
## 4474 Gospel According to St. Matthew, The (Vangelo secondo Matteo, Il) (1964)
## 4475 Umberto D. (1952)
## 4476 Brother's Keeper (1992)
## 4477 I Love You to Death (1990)
## 4478 Freddy vs. Jason (2003)
## 4479 Grind (2003)
## 4480 Open Range (2003)
## 4481 Shaolin Soccer (Siu lam juk kau) (2001)
## 4482 Uptown Girls (2003)
## 4483 American Splendor (2003)
## 4484 Agent Cody Banks (2003)
## 4485 Camp Nowhere (1994)
## 4486 Hot Dog... The Movie (1984)
## 4487 House of Wax (1953)
## 4488 Man's Best Friend (1993)
## 4489 Sure Thing, The (1985)
## 4490 Valley Girl (1983)
## 4491 Wait Until Dark (1967)
## 4492 Tokyo Story (Tôkyô monogatari) (1953)
## 4493 Green Ray, The (Rayon vert, Le) (1986)
## 4494 THX 1138 (1971)
## 4495 Kind Hearts and Coronets (1949)
## 4496 Atragon (Kaitei Gunkan) (1963)
## 4497 Attack of the Puppet People (1958)
## 4498 10 (1979)
## 4499 Tremors (1990)
## 4500 Red Shoes, The (1948)
## 4501 Pink Panther, The (1963)
## 4502 Pink Panther Strikes Again, The (1976)
## 4503 Commando (1985)
## 4504 Dracula (1979)
## 4505 Discreet Charm of the Bourgeoisie, The (Charme discret de la bourgeoisie, Le) (1972)
## 4506 Waco: The Rules of Engagement (1997)
## 4507 Road Home, The (Wo de fu qin mu qin) (1999)
## 4508 Ikiru (1952)
## 4509 Comic Book Villains (2002)
## 4510 Angel at My Table, An (1990)
## 4511 Handmaid's Tale, The (1990)
## 4512 Revolution OS (2001)
## 4513 Death in Venice (Morte a Venezia) (1971)
## 4514 Medallion, The (2003)
## 4515 My Boss's Daughter (2003)
## 4516 Autumn Spring (Babàléto) (2001)
## 4517 Battle of Shaker Heights, The (2003)
## 4518 Dust (2001)
## 4519 Stoked: The Rise and Fall of Gator (2002)
## 4520 Jeepers Creepers 2 (2003)
## 4521 Bollywood/Hollywood (2002)
## 4522 Once Upon a Time in the Midlands (2002)
## 4523 Dickie Roberts: Former Child Star (2003)
## 4524 Party Monster (2003)
## 4525 Taking Sides (2001)
## 4526 Cabin Fever (2002)
## 4527 Matchstick Men (2003)
## 4528 Once Upon a Time in Mexico (2003)
## 4529 Dummy (2002)
## 4530 Lost in Translation (2003)
## 4531 Millennium Actress (Sennen joyû) (2001)
## 4532 Children of the Night (1991)
## 4533 Gotcha! (1985)
## 4534 Kuffs (1992)
## 4535 Once Upon a Time in China (Wong Fei Hung) (1991)
## 4536 Once Upon a Time in China II (Wong Fei-hung Ji Yi: Naam yi dong ji keung) (1992)
## 4537 Once Upon a Time in China III (Wong Fei-hung tsi sam: Siwong tsangba) (1993)
## 4538 Paper Moon (1973)
## 4539 Day of the Dead (1985)
## 4540 Hello, Dolly! (1969)
## 4541 Memoirs of an Invisible Man (1992)
## 4542 Once Bitten (1985)
## 4543 Squirm (1976)
## 4544 Brood, The (1979)
## 4545 Anything Else (2003)
## 4546 Cold Creek Manor (2003)
## 4547 Fighting Temptations, The (2003)
## 4548 Secondhand Lions (2003)
## 4549 Underworld (2003)
## 4550 Bubba Ho-tep (2002)
## 4551 In This World (2002)
## 4552 Duplex (2003)
## 4553 Rundown, The (2003)
## 4554 Under the Tuscan Sun (2003)
## 4555 Luther (2003)
## 4556 Mambo Italiano (2003)
## 4557 My Life Without Me (2003)
## 4558 To Be and to Have (ÃÅ tre et avoir) (2002)
## 4559 Triplets of Belleville, The (Les triplettes de Belleville) (2003)
## 4560 Videodrome (1983)
## 4561 Life and Debt (2001)
## 4562 Lagaan: Once Upon a Time in India (2001)
## 4563 Judgment at Nuremberg (1961)
## 4564 Brief History of Time, A (1991)
## 4565 Leningrad Cowboys Go America (1989)
## 4566 Rules of the Game, The (La règle du jeu) (1939)
## 4567 Seven Brides for Seven Brothers (1954)
## 4568 Kiss of the Spider Woman (1985)
## 4569 All the President's Men (1976)
## 4570 Angie (1994)
## 4571 Apartment, The (Appartement, L') (1996)
## 4572 Avalon (2001)
## 4573 Babette's Feast (Babettes gæstebud) (1987)
## 4574 Beethoven (1992)
## 4575 Beethoven's 2nd (1993)
## 4576 Boyz N the Hood (1991)
## 4577 Bugsy (1991)
## 4578 Bugsy Malone (1976)
## 4579 Cobra (1986)
## 4580 Phenomena (a.k.a. Creepers) (1985)
## 4581 Crimewave (1985)
## 4582 Monty Python's The Meaning of Life (1983)
## 4583 Where Eagles Dare (1968)
## 4584 Tightrope (1984)
## 4585 Sleeping with the Enemy (1991)
## 4586 PCU (1994)
## 4587 Rookie, The (1990)
## 4588 City Heat (1984)
## 4589 Three O'Clock High (1987)
## 4590 White Hunter, Black Heart (1990)
## 4591 Come and See (Idi i smotri) (1985)
## 4592 Ginger Snaps (2000)
## 4593 More American Graffiti (1979)
## 4594 It's Pat (1994)
## 4595 Regarding Henry (1991)
## 4596 Alien Contamination (1980)
## 4597 Amazing Transparent Man, The (1960)
## 4598 Love Affair (1939)
## 4599 Scrooge (1970)
## 4600 Leap of Faith (1992)
## 4601 Gas, Food, Lodging (1992)
## 4602 In Cold Blood (1967)
## 4603 Campus Man (1987)
## 4604 Yankee Doodle Dandy (1942)
## 4605 Ninja Scroll (Jûbei ninpûchô) (1995)
## 4606 Knife in the Water (Nóz w wodzie) (1962)
## 4607 Mobsters (1991)
## 4608 Out of Time (2003)
## 4609 School of Rock (2003)
## 4610 Station Agent, The (2003)
## 4611 Wonderland (2003)
## 4612 Bus 174 (Ãânibus 174) (2002)
## 4613 Mystic River (2003)
## 4614 House of the Dead, The (2003)
## 4615 Intolerable Cruelty (2003)
## 4616 Kill Bill: Vol. 1 (2003)
## 4617 Runaway Jury (2003)
## 4618 Texas Chainsaw Massacre, The (2003)
## 4619 Pieces of April (2003)
## 4620 Returner (Ritaanaa) (2002)
## 4621 Sylvia (2003)
## 4622 Veronica Guerin (2003)
## 4623 In the Cut (2003)
## 4624 Beyond Borders (2003)
## 4625 Radio (2003)
## 4626 Scary Movie 3 (2003)
## 4627 Brother Bear (2003)
## 4628 Elephant (2003)
## 4629 Italian Job, The (1969)
## 4630 Sweet Sixteen (2002)
## 4631 Alien from L.A. (1988)
## 4632 Interstate 60 (2002)
## 4633 Eye, The (Gin gwai) (Jian gui) (2002)
## 4634 Jolson Story, The (1946)
## 4635 You'll Never Get Rich (1941)
## 4636 Unvanquished, The (Aparajito) (1957)
## 4637 Cercle Rouge, Le (Red Circle, The) (1970)
## 4638 Human Stain, The (2003)
## 4639 Shattered Glass (2003)
## 4640 Matrix Revolutions, The (2003)
## 4641 Revolution Will Not Be Televised, The (a.k.a. Chavez: Inside the Coup) (2003)
## 4642 Elf (2003)
## 4643 Billabong Odyssey (2003)
## 4644 Gloomy Sunday (Ein Lied von Liebe und Tod) (1999)
## 4645 Love Actually (2003)
## 4646 Father of the Bride (1991)
## 4647 My Architect: A Son's Journey (2003)
## 4648 Looney Tunes: Back in Action (2003)
## 4649 Master and Commander: The Far Side of the World (2003)
## 4650 Tupac: Resurrection (2003)
## 4651 Big Empty, The (2003)
## 4652 Missing, The (2003)
## 4653 Cat in the Hat, The (2003)
## 4654 Gothika (2003)
## 4655 21 Grams (2003)
## 4656 Barbarian Invasions, The (Les invasions barbares) (2003)
## 4657 Bad Santa (2003)
## 4658 Haunted Mansion, The (2003)
## 4659 Timeline (2003)
## 4660 Damage (Fatale) (1992)
## 4661 OT: Our Town (2002)
## 4662 Devil's Playground (2002)
## 4663 Journeys with George (2002)
## 4664 Darkman (1990)
## 4665 Dead of Night (1945)
## 4666 Dernier Combat, Le (Last Battle, The) (1983)
## 4667 Desk Set (1957)
## 4668 Europa (Zentropa) (1991)
## 4669 Final Analysis (1992)
## 4670 Freshman, The (1990)
## 4671 Funny Games (1997)
## 4672 Slacker (1991)
## 4673 WarGames (1983)
## 4674 Ordet (Word, The) (1955)
## 4675 Forbidden Games (Jeux interdits) (1952)
## 4676 Jane Eyre (1944)
## 4677 Tale of Two Cities, A (1935)
## 4678 Passion of Joan of Arc, The (Passion de Jeanne d'Arc, La) (1928)
## 4679 Ben-Hur: A Tale of the Christ (1925)
## 4680 Cabinet of Dr. Caligari, The (Cabinet des Dr. Caligari., Das) (1920)
## 4681 Gorky Park (1983)
## 4682 The Great Train Robbery (1978)
## 4683 Guarding Tess (1994)
## 4684 Hannah and Her Sisters (1986)
## 4685 Hard Way, The (1991)
## 4686 Highlander II: The Quickening (1991)
## 4687 Hoffa (1992)
## 4688 House of Cards (1993)
## 4689 Housesitter (1992)
## 4690 Hudson Hawk (1991)
## 4691 Invasion of the Body Snatchers (1978)
## 4692 Kindergarten Cop (1990)
## 4693 King Ralph (1991)
## 4694 Last Boy Scout, The (1991)
## 4695 Last Tango in Paris (Ultimo tango a Parigi) (1972)
## 4696 Lorenzo's Oil (1992)
## 4697 Lover, The (Amant, L') (1992)
## 4698 Mr. Destiny (1990)
## 4699 Night of the Hunter, The (1955)
## 4700 Only the Lonely (1991)
## 4701 Over the Top (1987)
## 4702 Passenger 57 (1992)
## 4703 Presumed Innocent (1990)
## 4704 Project X (1987)
## 4705 Proof (1991)
## 4706 Battle Royale (Batoru rowaiaru) (2000)
## 4707 Wedding Banquet, The (Xi yan) (1993)
## 4708 Salo, or The 120 Days of Sodom (Salò o le 120 giornate di Sodoma) (1976)
## 4709 Midnight Clear, A (1992)
## 4710 Summer School (1987)
## 4711 Silverado (1985)
## 4712 Quick Change (1990)
## 4713 Radio Flyer (1992)
## 4714 Real McCoy, The (1993)
## 4715 Revenge (1990)
## 4716 Secret of My Succe$s, The (a.k.a. The Secret of My Success) (1987)
## 4717 Show Me Love (Fucking Ãâ¦mÃÂ¥l) (1998)
## 4718 Teen Wolf (1985)
## 4719 High Heels (Tacones lejanos) (1991)
## 4720 Things You Can Tell Just by Looking at Her (2000)
## 4721 To Live and Die in L.A. (1985)
## 4722 Trapped in Paradise (1994)
## 4723 Wild at Heart (1990)
## 4724 Witches, The (1990)
## 4725 Witches of Eastwick, The (1987)
## 4726 Year of the Dragon (1985)
## 4727 Nothing to Lose (1997)
## 4728 Flying Down to Rio (1933)
## 4729 Follow the Fleet (1936)
## 4730 What's New, Pussycat (1965)
## 4731 Mary of Scotland (1936)
## 4732 Roberta (1935)
## 4733 Little Women (1949)
## 4734 Swing Time (1936)
## 4735 Public Enemy, The (1931)
## 4736 Midsummer Night's Dream, A (1935)
## 4737 Life with Father (1947)
## 4738 National Velvet (1944)
## 4739 Jesus Christ Superstar (1973)
## 4740 Dark Victory (1939)
## 4741 Birdman of Alcatraz (1962)
## 4742 Aguirre: The Wrath of God (Aguirre, der Zorn Gottes) (1972)
## 4743 Beauty and the Beast (La belle et la bête) (1946)
## 4744 Birth of a Nation, The (1915)
## 4745 Juliet of the Spirits (Giulietta degli spiriti) (1965)
## 4746 Macbeth (a.k.a. Tragedy of Macbeth, The) (1971)
## 4747 Red River (1948)
## 4748 Woman Under the Influence, A (1974)
## 4749 Stagecoach (1939)
## 4750 Shot in the Dark, A (1964)
## 4751 Navigator, The (1924)
## 4752 Court Jester, The (1956)
## 4753 Bullitt (1968)
## 4754 Jezebel (1938)
## 4755 Hunchback of Notre Dame, The (1939)
## 4756 42nd Street (1933)
## 4757 That Touch of Mink (1962)
## 4758 Sweet Dreams (1985)
## 4759 Play It Again, Sam (1972)
## 4760 Send Me No Flowers (1964)
## 4761 Pygmalion (1938)
## 4762 Passage to India, A (1984)
## 4763 Black Orpheus (Orfeu Negro) (1959)
## 4764 Amarcord (1973)
## 4765 Hero (Ying xiong) (2002)
## 4766 Horse Feathers (1932)
## 4767 Anna Karenina (1935)
## 4768 Front Page, The (1974)
## 4769 Rivers and Tides (2001)
## 4770 Nausicaä of the Valley of the Wind (Kaze no tani no Naushika) (1984)
## 4771 Doc Hollywood (1991)
## 4772 Dragnet (1987)
## 4773 Madhouse (1990)
## 4774 1941 (1979)
## 4775 Foul Play (1978)
## 4776 Crime Story (Zhong an zu) (1993)
## 4777 Beyond the Clouds (Al di lÃÂ delle nuvole) (1996)
## 4778 Collector, The (1965)
## 4779 Deep Red (Profondo rosso) (1975)
## 4780 Diabolique (Les diaboliques) (1955)
## 4781 Leprechaun (1993)
## 4782 Wings of Honneamise (Ãâritsu uchûgun Oneamisu no tsubasa) (1987)
## 4783 Adam's Rib (1949)
## 4784 King of Hearts (1966)
## 4785 Naked Lunch (1991)
## 4786 Grass (1999)
## 4787 Spring Forward (1999)
## 4788 Run (1991)
## 4789 Summer Place, A (1959)
## 4790 Night at the Opera, A (1935)
## 4791 Element of Crime, The (Forbrydelsens Element) (1984)
## 4792 Cooler, The (2003)
## 4793 In America (2002)
## 4794 My Flesh and Blood (2003)
## 4795 Honey (2003)
## 4796 Last Samurai, The (2003)
## 4797 Big Fish (2003)
## 4798 Something's Gotta Give (2003)
## 4799 Stuck on You (2003)
## 4800 Girl with a Pearl Earring (2003)
## 4801 Lord of the Rings: The Return of the King, The (2003)
## 4802 Mona Lisa Smile (2003)
## 4803 Calendar Girls (2003)
## 4804 Fog of War: Eleven Lessons from the Life of Robert S. McNamara, The (2003)
## 4805 House of Sand and Fog (2003)
## 4806 Monster (2003)
## 4807 Cheaper by the Dozen (2003)
## 4808 Cold Mountain (2003)
## 4809 Paycheck (2003)
## 4810 Peter Pan (2003)
## 4811 Company, The (2003)
## 4812 Japanese Story (2003)
## 4813 Chasing Liberty (2004)
## 4814 Aileen: Life and Death of a Serial Killer (2003)
## 4815 Along Came Polly (2004)
## 4816 Torque (2004)
## 4817 Crimson Gold (Talaye sorgh) (2003)
## 4818 Osama (2003)
## 4819 Great Gatsby, The (1974)
## 4820 Wuthering Heights (1992)
## 4821 Ship of Fools (1965)
## 4822 This Property is Condemned (1966)
## 4823 Jane Eyre (1970)
## 4824 Blame It on the Bellboy (1992)
## 4825 Only the Strong (1993)
## 4826 Adventures of Ford Fairlane, The (1990)
## 4827 Beyond Re-Animator (2003)
## 4828 Wind and the Lion, The (1975)
## 4829 Mon Oncle (My Uncle) (1958)
## 4830 Dr. Jekyll and Mr. Hyde (1941)
## 4831 M. Hulotâ\200\231s Holiday (Mr. Hulot's Holiday) (Vacances de Monsieur Hulot, Les) (1953)
## 4832 People Will Talk (1951)
## 4833 I Was a Male War Bride (1949)
## 4834 To Have and Have Not (1944)
## 4835 High Sierra (1941)
## 4836 Dark Passage (1947)
## 4837 Ox-Bow Incident, The (1943)
## 4838 They Drive by Night (1940)
## 4839 Reefer Madness (a.k.a. Tell Your Children) (1938)
## 4840 D.O.A. (1950)
## 4841 Pumping Iron (1977)
## 4842 Cool World (1992)
## 4843 Strada, La (1954)
## 4844 Ichi the Killer (Koroshiya 1) (2001)
## 4845 Boy and His Dog, A (1975)
## 4846 Ashes and Diamonds (Popiól i diament) (1958)
## 4847 Intolerance: Love's Struggle Throughout the Ages (1916)
## 4848 Tormented (1960)
## 4849 Chitty Chitty Bang Bang (1968)
## 4850 Suriyothai (a.k.a. Legend of Suriyothai, The) (2001)
## 4851 Where the Day Takes You (1992)
## 4852 The Butterfly Effect (2004)
## 4853 Win a Date with Tad Hamilton! (2004)
## 4854 Touching the Void (2003)
## 4855 Big Bounce, The (2004)
## 4856 Perfect Score, The (2004)
## 4857 You Got Served (2004)
## 4858 Latter Days (2003)
## 4859 Barbershop 2: Back in Business (2004)
## 4860 Catch That Kid (2004)
## 4861 Miracle (2004)
## 4862 An Amazing Couple (2002)
## 4863 Dreamers, The (2003)
## 4864 Lost Skeleton of Cadavra, The (2002)
## 4865 Hip Hop Witch, Da (2000)
## 4866 Thirteen (2003)
## 4867 Best Defense (1984)
## 4868 50 First Dates (2004)
## 4869 Welcome to Mooseport (2004)
## 4870 Kitchen Stories (Salmer fra kjøkkenet) (2003)
## 4871 Monsieur Ibrahim (Monsieur Ibrahim et les fleurs du Coran) (2003)
## 4872 Diary of a Country Priest (Journal d'un curé de campagne) (1951)
## 4873 Thief of Bagdad, The (1924)
## 4874 The Diary of Anne Frank (1959)
## 4875 Allegro non troppo (1977)
## 4876 Black Widow (1987)
## 4877 Herod's Law (Ley de Herodes, La) (2000)
## 4878 Flesh & Blood (1985)
## 4879 King Solomon's Mines (1985)
## 4880 Raw Deal (1986)
## 4881 Goodbye, Mr. Chips (1939)
## 4882 Follow Me, Boys! (1966)
## 4883 Against the Ropes (2004)
## 4884 Confessions of a Teenage Drama Queen (2004)
## 4885 EuroTrip (2004)
## 4886 Passion of the Christ, The (2004)
## 4887 Club Dread (2004)
## 4888 Dirty Dancing: Havana Nights (2004)
## 4889 Twisted (2004)
## 4890 Good bye, Lenin! (2003)
## 4891 Hidalgo (2004)
## 4892 Starsky & Hutch (2004)
## 4893 Reckoning, The (2004)
## 4894 Persona (1966)
## 4895 Passion of Anna, The (Passion, En) (1969)
## 4896 Corbeau, Le (Raven, The) (1943)
## 4897 Pickup on South Street (1953)
## 4898 Damned, The (La Caduta degli dei) (1969)
## 4899 Just One of the Guys (1985)
## 4900 Wrong Arm of the Law, The (1963)
## 4901 Agent Cody Banks 2: Destination London (2004)
## 4902 Girl Next Door, The (2004)
## 4903 Secret Window (2004)
## 4904 Spartan (2004)
## 4905 Broken Wings (Knafayim Shvurot) (2002)
## 4906 Wilbur Wants to Kill Himself (2002)
## 4907 Mad Dog and Glory (1993)
## 4908 Peyton Place (1957)
## 4909 Dawn of the Dead (2004)
## 4910 Eternal Sunshine of the Spotless Mind (2004)
## 4911 Taking Lives (2004)
## 4912 Intermission (2003)
## 4913 Jersey Girl (2004)
## 4914 Ladykillers, The (2004)
## 4915 Never Die Alone (2004)
## 4916 Scooby-Doo 2: Monsters Unleashed (2004)
## 4917 Dogville (2003)
## 4918 Ned Kelly (2003)
## 4919 Hellboy (2004)
## 4920 Prince & Me, The (2004)
## 4921 Walking Tall (2004)
## 4922 United States of Leland, The (2003)
## 4923 The Alamo (2004)
## 4924 Ella Enchanted (2004)
## 4925 Whole Ten Yards, The (2004)
## 4926 I'm Not Scared (Io non ho paura) (2003)
## 4927 Ten Commandments, The (1956)
## 4928 Dawn of the Dead (1978)
## 4929 Prey for Rock & Roll (2003)
## 4930 Those Magnificent Men in Their Flying Machines (1965)
## 4931 Cheaper by the Dozen (1950)
## 4932 Scenes From a Marriage (Scener ur ett äktenskap) (1973)
## 4933 Munchies (1987)
## 4934 Going in Style (1979)
## 4935 After Hours (1985)
## 4936 Kill Bill: Vol. 2 (2004)
## 4937 Punisher, The (2004)
## 4938 Paper Clips (2004)
## 4939 This So-Called Disaster (2003)
## 4940 13 Going on 30 (2004)
## 4941 Man on Fire (2004)
## 4942 Envy (2004)
## 4943 Godsend (2004)
## 4944 Laws of Attraction (2004)
## 4945 Mean Girls (2004)
## 4946 Van Helsing (2004)
## 4947 Mudge Boy, The (2003)
## 4948 Breakin' All the Rules (2004)
## 4949 Troy (2004)
## 4950 Carandiru (2003)
## 4951 Coffee and Cigarettes (2003)
## 4952 Eye See You (D-Tox) (2002)
## 4953 Watch on the Rhine (1943)
## 4954 Enemy Mine (1985)
## 4955 Enter the Dragon (1973)
## 4956 Happy Together (a.k.a. Buenos Aires Affair) (Chun gwong cha sit) (1997)
## 4957 Henry & June (1990)
## 4958 Martin (1977)
## 4959 Three Faces of Eve, The (1957)
## 4960 100 Girls (2000)
## 4961 Fail-Safe (1964)
## 4962 Paperhouse (1988)
## 4963 Dobermann (1997)
## 4964 Kwaidan (Kaidan) (1964)
## 4965 28 Up (1985)
## 4966 You Only Live Twice (1967)
## 4967 Octopussy (1983)
## 4968 Wit (2001)
## 4969 Never Say Never Again (1983)
## 4970 Pride and Prejudice (1940)
## 4971 Fountainhead, The (1949)
## 4972 Woman of the Year (1942)
## 4973 Samouraï, Le (Godson, The) (1967)
## 4974 Oklahoma! (1955)
## 4975 Desert Hearts (1985)
## 4976 Body Double (1984)
## 4977 Chaplin (1992)
## 4978 Miracle Worker, The (1962)
## 4979 Monster in a Box (1992)
## 4980 School Ties (1992)
## 4981 Raising Cain (1992)
## 4982 Rose Red (2002)
## 4983 Noises Off... (1992)
## 4984 Babylon 5: In the Beginning (1998)
## 4985 Witchfinder General (Conquerer Worm, The) (1968)
## 4986 Versus (2000)
## 4987 Pride and Prejudice (1995)
## 4988 China Syndrome, The (1979)
## 4989 Wages of Fear, The (Salaire de la peur, Le) (1953)
## 4990 Look Who's Talking Too (1990)
## 4991 Bells of St. Mary's, The (1945)
## 4992 Delta Force, The (1986)
## 4993 Pat and Mike (1952)
## 4994 Animal Crackers (1930)
## 4995 He Said, She Said (1991)
## 4996 Bedazzled (1967)
## 4997 Cat People (1942)
## 4998 Camelot (1967)
## 4999 Lonely Guy, The (1984)
## 5000 Four Musketeers, The (1974)
## 5001 Protocol (1984)
## 5002 Postman Always Rings Twice, The (1946)
## 5003 Matinee (1993)
## 5004 Baxter (1989)
## 5005 Explorers (1985)
## 5006 Scent of Green Papaya, The (Mùi du du xhan - L'odeur de la papaye verte) (1993)
## 5007 Pierrot le fou (1965)
## 5008 Weekend (a.k.a. Le Week-end) (Week End) (1967)
## 5009 Tuesdays with Morrie (1999)
## 5010 Alexander Nevsky (Aleksandr Nevskiy) (1938)
## 5011 Jason and the Argonauts (1963)
## 5012 Tinker, Tailor, Soldier, Spy (1979)
## 5013 Throne of Blood (Kumonosu jô) (1957)
## 5014 Best of Youth, The (La meglio gioventù) (2003)
## 5015 Undercurrent (1946)
## 5016 Bang, Bang, You're Dead (2002)
## 5017 Twister (1990)
## 5018 Sniper (1993)
## 5019 Genghis Blues (1999)
## 5020 11'09"01 - September 11 (2002)
## 5021 Parallax View, The (1974)
## 5022 Warriors, The (1979)
## 5023 Babylon 5: A Call to Arms (1999)
## 5024 Babylon 5: The River of Souls (1998)
## 5025 Babylon 5: Thirdspace (1998)
## 5026 True Stories (1986)
## 5027 Virgin Spring, The (Jungfrukällan) (1960)
## 5028 Mogambo (1953)
## 5029 Secret Life of Walter Mitty, The (1947)
## 5030 Another Thin Man (1939)
## 5031 Thin Man Goes Home, The (1945)
## 5032 Shadow of the Thin Man (1941)
## 5033 After the Thin Man (1936)
## 5034 Song of the Thin Man (1947)
## 5035 Love Crazy (1941)
## 5036 Gunga Din (1939)
## 5037 Children of Dune (2003)
## 5038 Dune (2000)
## 5039 Lammbock (2001)
## 5040 Legend, The (Legend of Fong Sai-Yuk, The) (Fong Sai Yuk) (1993)
## 5041 Tremors II: Aftershocks (1996)
## 5042 Tremors 3: Back to Perfection (2001)
## 5043 Notorious C.H.O. (2002)
## 5044 The Plague of the Zombies (1966)
## 5045 I Walked with a Zombie (1943)
## 5046 Highway 61 (1991)
## 5047 How to Succeed in Business Without Really Trying (1967)
## 5048 Pat Garrett and Billy the Kid (1973)
## 5049 Last Man on Earth, The (Ultimo uomo della Terra, L') (1964)
## 5050 Duck, You Sucker (1971)
## 5051 Bring Me the Head of Alfredo Garcia (1974)
## 5052 Ride the High Country (1962)
## 5053 Master of the Flying Guillotine (Du bi quan wang da po xue di zi) (1975)
## 5054 Frankenstein Must Be Destroyed (1969)
## 5055 Gidget (1959)
## 5056 Desperate Living (1977)
## 5057 Stray Dog (Nora inu) (1949)
## 5058 Hidden Fortress, The (Kakushi-toride no san-akunin) (1958)
## 5059 High and Low (Tengoku to jigoku) (1963)
## 5060 People Under the Stairs, The (1991)
## 5061 Dark Days (2000)
## 5062 Zelig (1983)
## 5063 Shame (Skammen) (1968)
## 5064 Silence, The (Tystnaden) (1963)
## 5065 Winter Light (Nattvardsgästerna) (1963)
## 5066 Through a Glass Darkly (SÃÂ¥som i en spegel) (1961)
## 5067 The Magician (1958)
## 5068 Killers, The (1946)
## 5069 Night of the Iguana, The (1964)
## 5070 Nightbreed (1990)
## 5071 Ken Park (2002)
## 5072 Monterey Pop (1968)
## 5073 Bridge Too Far, A (1977)
## 5074 Infernal Affairs (Mou gaan dou) (2002)
## 5075 Tale of Two Sisters, A (Janghwa, Hongryeon) (2003)
## 5076 Broadway Danny Rose (1984)
## 5077 From Beyond (1986)
## 5078 Robot Jox (1990)
## 5079 Dolls (1987)
## 5080 Space Truckers (1996)
## 5081 Death Race 2000 (1975)
## 5082 Bucket Of Blood, A (1959)
## 5083 Brigadoon (1954)
## 5084 Power of One, The (1992)
## 5085 Weather Underground, The (2002)
## 5086 Kikujiro (Kikujirô no natsu) (1999)
## 5087 Spring, Summer, Fall, Winter... and Spring (Bom yeoreum gaeul gyeoul geurigo bom) (2003)
## 5088 Phantom Tollbooth, The (1970)
## 5089 Getaway, The (1972)
## 5090 Dark Water (Honogurai mizu no soko kara) (2002)
## 5091 Thing Called Love, The (1993)
## 5092 The Thief (1997)
## 5093 How to Steal a Million (1966)
## 5094 Stendhal Syndrome, The (Sindrome di Stendhal, La) (1996)
## 5095 Mean Streets (1973)
## 5096 Jack the Bear (1993)
## 5097 I Am a Fugitive from a Chain Gang (1932)
## 5098 Hamburger Hill (1987)
## 5099 Sweet Bird of Youth (1962)
## 5100 Frankenstein Unbound (1990)
## 5101 Shiri (Swiri) (1999)
## 5102 Bad Day at Black Rock (1955)
## 5103 In China They Eat Dogs (I Kina spiser de hunde) (1999)
## 5104 Delta Force 2 (Delta Force 2: The Colombian Connection) (1990)
## 5105 Crossroads (1986)
## 5106 Seducing Doctor Lewis (Grande séduction, La) (2003)
## 5107 Sunrise: A Song of Two Humans (1927)
## 5108 Shock Corridor (1963)
## 5109 Au revoir les enfants (1987)
## 5110 Pursuit of Happiness (2001)
## 5111 Gladiator (1992)
## 5112 Indestructible Man (1956)
## 5113 Wasp Woman, The (1959)
## 5114 Attack of the Giant Leeches (1959)
## 5115 Dead or Alive: Hanzaisha (1999)
## 5116 Lola Montès (1955)
## 5117 Charly (1968)
## 5118 Lust for Life (1956)
## 5119 Dolce Vita, La (1960)
## 5120 Jin Roh: The Wolf Brigade (Jin-Rô) (1998)
## 5121 Rush (1991)
## 5122 Captain Blood (1935)
## 5123 *batteries not included (1987)
## 5124 Educating Rita (1983)
## 5125 Sansho the Bailiff (Sanshô dayû) (1954)
## 5126 Zazie dans le métro (1960)
## 5127 Americanization of Emily, The (1964)
## 5128 Anne of the Thousand Days (1969)
## 5129 Avventura, L' (Adventure, The) (1960)
## 5130 Beyond the Valley of the Dolls (1970)
## 5131 Hiroshima Mon Amour (1959)
## 5132 Ugetsu (Ugetsu monogatari) (1953)
## 5133 Day of the Jackal, The (1973)
## 5134 Night of the Living Dead (1990)
## 5135 Maltese Falcon, The (a.k.a. Dangerous Female) (1931)
## 5136 I Love You Again (1940)
## 5137 Safety Last! (1923)
## 5138 While the City Sleeps (1956)
## 5139 Little Murders (1971)
## 5140 Viridiana (1961)
## 5141 Masterminds (1997)
## 5142 Lupin III: The Castle Of Cagliostro (Rupan sansei: Kariosutoro no shiro) (1979)
## 5143 Arizona Dream (1993)
## 5144 3 Women (Three Women) (1977)
## 5145 Grey Gardens (1975)
## 5146 Purple Rain (1984)
## 5147 Point of No Return (1993)
## 5148 Hairdresser's Husband, The (Le mari de la coiffeuse) (1990)
## 5149 College (1927)
## 5150 Mitchell (1975)
## 5151 Used People (1992)
## 5152 Front Page, The (1931)
## 5153 Dolls (2002)
## 5154 Man Who Came to Dinner, The (1942)
## 5155 Make Way for Tomorrow (1937)
## 5156 Major and the Minor, The (1942)
## 5157 Caine Mutiny, The (1954)
## 5158 Black Narcissus (1947)
## 5159 Escape from Alcatraz (1979)
## 5160 Oliver Twist (1948)
## 5161 Shrek 2 (2004)
## 5162 Day After Tomorrow, The (2004)
## 5163 Raising Helen (2004)
## 5164 Soul Plane (2004)
## 5165 Baadasssss! (How to Get the Man's Foot Outta Your Ass) (2003)
## 5166 Saved! (2004)
## 5167 Harry Potter and the Prisoner of Azkaban (2004)
## 5168 Mindhunters (2004)
## 5169 Blind Swordsman: Zatoichi, The (Zatôichi) (2003)
## 5170 Chronicles of Riddick, The (2004)
## 5171 Garfield: The Movie (2004)
## 5172 Stepford Wives, The (2004)
## 5173 Hunting of the President, The (2004)
## 5174 Napoleon Dynamite (2004)
## 5175 Doctor, The (1991)
## 5176 Dresser, The (1983)
## 5177 Father Hood (1993)
## 5178 Hello Again (1987)
## 5179 Hope Springs (2003)
## 5180 Lover Come Back (1961)
## 5181 Police Academy: Mission to Moscow (1994)
## 5182 Big Wednesday (1978)
## 5183 Book of Love (1990)
## 5184 Hour of the Wolf (Vargtimmen) (1968)
## 5185 Suddenly (1954)
## 5186 Divorcee, The (1930)
## 5187 Meet the Applegates (1991)
## 5188 Robot Carnival (Roboto kânibauru) (1987)
## 5189 Americathon (1979)
## 5190 Sands of Iwo Jima (1949)
## 5191 This Island Earth (1955)
## 5192 Anthony Adverse (1936)
## 5193 Blackboard Jungle (1955)
## 5194 Luna Papa (1999)
## 5195 Investigation of a Citizen Above Suspicion (Indagine su un cittadino al di sopra di ogni sospetto) (1970)
## 5196 To Each His Own (1946)
## 5197 Heiress, The (1949)
## 5198 Dragon Seed (1944)
## 5199 Executive Suite (1954)
## 5200 Johnny Belinda (1948)
## 5201 Super Size Me (2004)
## 5202 Johnny Eager (1942)
## 5203 Jetée, La (1962)
## 5204 Northwest Passage (1940)
## 5205 Picture of Dorian Gray, The (1945)
## 5206 Human Condition I, The (Ningen no joken I) (1959)
## 5207 Please Don't Eat the Daisies (1960)
## 5208 White Heat (1949)
## 5209 Christmas Carol, A (Scrooge) (1951)
## 5210 Memphis Belle (1990)
## 5211 Cincinnati Kid, The (1965)
## 5212 Animal Factory (2000)
## 5213 Godzilla vs. Mechagodzilla (Gojira tai Mekagojira) (1974)
## 5214 Hitcher, The (1986)
## 5215 Show Boat (1951)
## 5216 Fear X (2003)
## 5217 Freaks (1932)
## 5218 Immigrant, The (1917)
## 5219 Silent Movie (1976)
## 5220 Anna Christie (1930)
## 5221 Dr. Jekyll and Mr. Hyde (1931)
## 5222 Around the World in 80 Days (2004)
## 5223 Dodgeball: A True Underdog Story (2004)
## 5224 Terminal, The (2004)
## 5225 Dear Frankie (2004)
## 5226 White Chicks (2004)
## 5227 Door in the Floor, The (2004)
## 5228 Notebook, The (2004)
## 5229 Two Brothers (Deux frères) (2004)
## 5230 De-Lovely (2004)
## 5231 Day at the Races, A (1937)
## 5232 Bob & Carol & Ted & Alice (1969)
## 5233 Claymation Christmas Celebration, A (1987)
## 5234 Happenstance (Battement d'ailes du papillon, Le) (2001)
## 5235 Comandante (2003)
## 5236 Undead (2003)
## 5237 Into the Woods (1991)
## 5238 Pirates of Silicon Valley (1999)
## 5239 Manufacturing Consent: Noam Chomsky and the Media (1992)
## 5240 Mayor of the Sunset Strip (2003)
## 5241 Killing Me Softly (2002)
## 5242 Philadelphia Experiment, The (1984)
## 5243 Juice (1992)
## 5244 Revenge of the Pink Panther (1978)
## 5245 Angels with Dirty Faces (1938)
## 5246 Zero de conduite (Zero for Conduct) (Zéro de conduite: Jeunes diables au collège) (1933)
## 5247 Taxi (1998)
## 5248 Taxi 3 (2003)
## 5249 Tokyo Godfathers (2003)
## 5250 Our Hospitality (1923)
## 5251 All of Me (1984)
## 5252 Farmer's Daughter, The (1947)
## 5253 Overboard (1987)
## 5254 Butterfield 8 (1960)
## 5255 Exterminating Angel, The (Ã\201ngel exterminador, El) (1962)
## 5256 Fahrenheit 9/11 (2004)
## 5257 Roxanne (1987)
## 5258 Dr. Terror's House of Horrors (1965)
## 5259 Secret Society (2002)
## 5260 Last Starfighter, The (1984)
## 5261 Spider-Man 2 (2004)
## 5262 Before Sunset (2004)
## 5263 King Arthur (2004)
## 5264 Anchorman: The Legend of Ron Burgundy (2004)
## 5265 Cinderella Story, A (2004)
## 5266 I, Robot (2004)
## 5267 Maria Full of Grace (Maria, Llena eres de gracia) (2004)
## 5268 Long Day's Journey Into Night (1962)
## 5269 Short Film About Killing, A (Krótki film o zabijaniu) (1988)
## 5270 Bourne Supremacy, The (2004)
## 5271 Catwoman (2004)
## 5272 A Home at the End of the World (2004)
## 5273 Testament of Dr. Mabuse, The (Das Testament des Dr. Mabuse) (1933)
## 5274 Flash Gordon Conquers the Universe (1940)
## 5275 Man Escaped, A (Un condamné àmort s'est échappé ou Le vent souffle où il veut) (1956)
## 5276 Miracle of Marcelino, The (Marcelino pan y vino) (1955)
## 5277 Slaughterhouse-Five (1972)
## 5278 Bachelor and the Bobby-Soxer, The (1947)
## 5279 Mr. Blandings Builds His Dream House (1948)
## 5280 My Favorite Wife (1940)
## 5281 New Adventures of Pippi Longstocking, The (1988)
## 5282 Night and Day (1946)
## 5283 Snake Pit, The (1948)
## 5284 Super, The (1991)
## 5285 Leopard, The (Gattopardo, Il) (1963)
## 5286 Day of the Locust, The (1975)
## 5287 To End All Wars (2001)
## 5288 Woman Is a Woman, A (femme est une femme, Une) (1961)
## 5289 Biggles (1986)
## 5290 Yesterday, Today and Tomorrow (Ieri, oggi, domani) (1963)
## 5291 Unprecedented: The 2000 Presidential Election (2002)
## 5292 Prime of Miss Jean Brodie, The (1969)
## 5293 My Voyage to Italy (Il mio viaggio in Italia) (1999)
## 5294 This Gun for Hire (1942)
## 5295 Sherlock Holmes: Terror by Night (1946)
## 5296 Spy Who Came in from the Cold, The (1965)
## 5297 Sherlock Holmes and the Secret Weapon (1942)
## 5298 Sherlock Holmes: The Woman in Green (1945)
## 5299 Sherlock Holmes: Dressed to Kill (1946)
## 5300 Manchurian Candidate, The (2004)
## 5301 Thunderbirds (2004)
## 5302 Village, The (2004)
## 5303 Garden State (2004)
## 5304 Musa the Warrior (Musa) (2001)
## 5305 Funny Thing Happened on the Way to the Forum, A (1966)
## 5306 Collateral (2004)
## 5307 Little Black Book (2004)
## 5308 Code 46 (2003)
## 5309 Story of Women (Affaire de femmes, Une) (1988)
## 5310 Harold and Kumar Go to White Castle (2004)
## 5311 Princess Diaries 2: Royal Engagement, The (2004)
## 5312 Danny Deckchair (2003)
## 5313 AVP: Alien vs. Predator (2004)
## 5314 We Don't Live Here Anymore (2004)
## 5315 Without a Paddle (2004)
## 5316 Exorcist: The Beginning (2004)
## 5317 Bill Cosby, Himself (1983)
## 5318 Anacondas: The Hunt for the Blood Orchid (2004)
## 5319 Suspect Zero (2004)
## 5320 Warriors of Heaven and Earth (Tian di ying xiong) (2003)
## 5321 Vanity Fair (2004)
## 5322 Paparazzi (2004)
## 5323 Wicker Park (2004)
## 5324 Alice Doesn't Live Here Anymore (1974)
## 5325 Who's That Knocking at My Door? (1967)
## 5326 Camera Buff (Amator) (1979)
## 5327 Vitelloni, I (a.k.a. The Young and the Passionate) (1953)
## 5328 Cellular (2004)
## 5329 Resident Evil: Apocalypse (2004)
## 5330 Mr. 3000 (2004)
## 5331 Sky Captain and the World of Tomorrow (2004)
## 5332 Wimbledon (2004)
## 5333 First Daughter (2004)
## 5334 Forgotten, The (2004)
## 5335 Motorcycle Diaries, The (Diarios de motocicleta) (2004)
## 5336 Shaun of the Dead (2004)
## 5337 Come Back, Little Sheba (1952)
## 5338 Murder on the Orient Express (1974)
## 5339 Mask (1985)
## 5340 Orca: The Killer Whale (1977)
## 5341 1492: Conquest of Paradise (1992)
## 5342 Cannibal Holocaust (1980)
## 5343 Shark Tale (2004)
## 5344 Ladder 49 (2004)
## 5345 I Heart Huckabees (2004)
## 5346 Raise Your Voice (2004)
## 5347 Taxi (2004)
## 5348 Primer (2004)
## 5349 Stage Beauty (2004)
## 5350 Shall We Dance? (2004)
## 5351 Team America: World Police (2004)
## 5352 Eulogy (2004)
## 5353 P.S. (2004)
## 5354 Country Girl, The (1954)
## 5355 Rose Tattoo, The (1955)
## 5356 Fearless Vampire Killers, The (1967)
## 5357 Decline of the American Empire, The (Déclin de l'empire américain, Le) (1986)
## 5358 Bebe's Kids (1992)
## 5359 Friday Night Lights (2004)
## 5360 Tarnation (2003)
## 5361 Final Cut, The (2004)
## 5362 Being Julia (2004)
## 5363 Surviving Christmas (2004)
## 5364 Grudge, The (2004)
## 5365 Alfie (2004)
## 5366 Sideways (2004)
## 5367 The Machinist (2004)
## 5368 Vera Drake (2004)
## 5369 Falling Angels (2003)
## 5370 Lightning in a Bottle (2004)
## 5371 Undertow (2004)
## 5372 Saw (2004)
## 5373 Ray (2004)
## 5374 Birth (2004)
## 5375 Incredibles, The (2004)
## 5376 Callas Forever (2002)
## 5377 Polar Express, The (2004)
## 5378 Kinsey (2004)
## 5379 Seed of Chucky (Child's Play 5) (2004)
## 5380 After the Sunset (2004)
## 5381 Bridget Jones: The Edge of Reason (2004)
## 5382 Finding Neverland (2004)
## 5383 National Treasure (2004)
## 5384 Bad Education (La mala educación) (2004)
## 5385 SpongeBob SquarePants Movie, The (2004)
## 5386 Alexander (2004)
## 5387 Christmas with the Kranks (2004)
## 5388 Guerrilla: The Taking of Patty Hearst (2004)
## 5389 Closer (2004)
## 5390 I Am David (2003)
## 5391 House of Flying Daggers (Shi mian mai fu) (2004)
## 5392 Ocean's Twelve (2004)
## 5393 Blade: Trinity (2004)
## 5394 Bush's Brain (2004)
## 5395 Damn Yankees! (1958)
## 5396 That's Entertainment (1974)
## 5397 D.A.R.Y.L. (1985)
## 5398 Fire in the Sky (1993)
## 5399 Invisible Man Returns, The (1940)
## 5400 Love Me If You Dare (Jeux d'enfants) (2003)
## 5401 Control Room (2004)
## 5402 Hunchback of Notre Dame, The (1923)
## 5403 Sherlock Jr. (1924)
## 5404 Freshman, The (1925)
## 5405 Greed (1924)
## 5406 Jazz Singer, The (1927)
## 5407 Steamboat Bill, Jr. (1928)
## 5408 Andalusian Dog, An (Chien andalou, Un) (1929)
## 5409 Little Caesar (1931)
## 5410 Boudu Saved From Drowning (Boudu sauvé des eaux) (1932)
## 5411 Scarface (1932)
## 5412 Dinner at Eight (1933)
## 5413 Gold Diggers of 1933 (1933)
## 5414 Atalante, L' (1934)
## 5415 Fury (1936)
## 5416 Libeled Lady (1936)
## 5417 Mr. Deeds Goes to Town (1936)
## 5418 Camille (1936)
## 5419 Captains Courageous (1937)
## 5420 Stage Door (1937)
## 5421 Holiday (1938)
## 5422 Roaring Twenties, The (1939)
## 5423 Wuthering Heights (1939)
## 5424 Letter, The (1940)
## 5425 Here Comes Mr. Jordan (1941)
## 5426 Random Harvest (1942)
## 5427 Tales of Manhattan (1942)
## 5428 Day of Wrath (Vredens dag) (1943)
## 5429 Miracle of Morgan's Creek, The (1944)
## 5430 Mr. Skeffington (1944)
## 5431 Great Expectations (1946)
## 5432 Stranger, The (1946)
## 5433 Easter Parade (1948)
## 5434 Lady from Shanghai, The (1947)
## 5435 Three Musketeers, The (1948)
## 5436 Unfaithfully Yours (1948)
## 5437 Letter to Three Wives, A (1949)
## 5438 Annie Get Your Gun (1950)
## 5439 King Solomon's Mines (1950)
## 5440 Young and the Damned, The (Olvidados, Los) (1950)
## 5441 Star Is Born, A (1954)
## 5442 The Wild One (1953)
## 5443 Confidential Report (1955)
## 5444 Night and Fog (Nuit et brouillard) (1955)
## 5445 Teacher's Pet (1958)
## 5446 Human Condition II, The (Ningen no joken II) (1959)
## 5447 Pickpocket (1959)
## 5448 When a Woman Ascends the Stairs (Onna ga kaidan wo agaru toki) (1960)
## 5449 Human Condition III, The (Ningen no joken III) (1961)
## 5450 Advise and Consent (1962)
## 5451 Harakiri (Seppuku) (1962)
## 5452 Music Man, The (1962)
## 5453 Mutiny on the Bounty (1962)
## 5454 Carabineers, The (Carabiniers, Les) (1963)
## 5455 Hush... Hush, Sweet Charlotte (1964)
## 5456 Onibaba (1964)
## 5457 Robinson Crusoe on Mars (1964)
## 5458 Battle of Algiers, The (La battaglia di Algeri) (1966)
## 5459 Charlie Brown Christmas, A (1965)
## 5460 Major Dundee (1965)
## 5461 Thousand Clowns, A (1965)
## 5462 Andrei Rublev (Andrey Rublyov) (1969)
## 5463 Au Hasard Balthazar (1966)
## 5464 Batman (1966)
## 5465 Closely Watched Trains (Ostre sledované vlaky) (1966)
## 5466 Tokyo Drifter (Tôkyô nagaremono) (1966)
## 5467 Branded to Kill (Koroshi no rakuin) (1967)
## 5468 Play Time (a.k.a. Playtime) (1967)
## 5469 Point Blank (1967)
## 5470 Titicut Follies (1967)
## 5471 Asterix and Cleopatra (Astérix et Cléopâtre) (1968)
## 5472 Diamond Arm, The (Brilliantovaya ruka) (1968)
## 5473 Sympathy for the Devil (1968)
## 5474 Yours, Mine and Ours (1968)
## 5475 Claire's Knee (Genou de Claire, Le) (1970)
## 5476 Performance (1970)
## 5477 White Sun of the Desert, The (Beloe solntse pustyni) (1970)
## 5478 Zabriskie Point (1970)
## 5479 Duel (1971)
## 5480 They Call Me Trinity (1971)
## 5481 Topo, El (1970)
## 5482 Dr. Phibes Rises Again (1972)
## 5483 Charley Varrick (1973)
## 5484 Dark Star (1974)
## 5485 Sisters (1973)
## 5486 Turkish Delight (Turks fruit) (1973)
## 5487 California Split (1974)
## 5488 Emmanuelle (1974)
## 5489 Gone in 60 Seconds (1974)
## 5490 Holy Mountain, The (Montaña sagrada, La) (1973)
## 5491 Twelve Tasks of Asterix, The (Les douze travaux d'Astérix) (1976)
## 5492 French Connection II (1975)
## 5493 Irony of Fate, or Enjoy Your Bath! (Ironiya sudby, ili S legkim parom!) (1975)
## 5494 Passenger, The (Professione: reporter) (1975)
## 5495 Trilogy of Terror (1975)
## 5496 1900 (Novecento) (1976)
## 5497 Futureworld (1976)
## 5498 Harlan County U.S.A. (1976)
## 5499 Silver Streak (1976)
## 5500 High Anxiety (1977)
## 5501 New York, New York (1977)
## 5502 Turning Point, The (1977)
## 5503 Five Deadly Venoms (1978)
## 5504 Last Hurrah for Chivalry (Hao xia) (1979)
## 5505 Clonus Horror, The (1979)
## 5506 Snake in the Eagle's Shadow (Se ying diu sau) (1978)
## 5507 Hair (1979)
## 5508 Love at First Bite (1979)
## 5509 Hitch Hikers Guide to the Galaxy, The (1981)
## 5510 Smiley's People (1982)
## 5511 Blue Thunder (1983)
## 5512 Day After, The (1983)
## 5513 Eddie Murphy Delirious (1983)
## 5514 Norte, El (1984)
## 5515 Twilight Zone: The Movie (1983)
## 5516 Boy Meets Girl (1984)
## 5517 Cloak & Dagger (1984)
## 5518 Ewok Adventure, The (a.k.a. Caravan of Courage: An Ewok Adventure) (1984)
## 5519 Silent Night, Deadly Night (1984)
## 5520 Times of Harvey Milk, The (1984)
## 5521 What Have I Done to Deserve This? (ÿQué he hecho yo para merecer esto!!) (1984)
## 5522 Anne of Green Gables (1985)
## 5523 Death of a Salesman (1985)
## 5524 Ewoks: The Battle for Endor (1985)
## 5525 Police Story (Ging chaat goo si) (1985)
## 5526 Quiet Earth, The (1985)
## 5527 Spies Like Us (1985)
## 5528 White Nights (1985)
## 5529 'Round Midnight (1986)
## 5530 Club Paradise (1986)
## 5531 Sacrifice, The (Offret - Sacraficatio) (1986)
## 5532 Better Tomorrow, A (Ying hung boon sik) (1986)
## 5533 Decalogue, The (Dekalog) (1989)
## 5534 G.I. Joe: The Movie (1987)
## 5535 Hell Comes to Frogtown (1988)
## 5536 Law of Desire (Ley del deseo, La) (1987)
## 5537 Prince of Darkness (1987)
## 5538 Chinese Ghost Story, A (Sinnui yauwan) (1987)
## 5539 Better Tomorrow II, A (Ying hung boon sik II) (1987)
## 5540 Bourne Identity, The (1988)
## 5541 Dominick and Eugene (1988)
## 5542 Killer Klowns from Outer Space (1988)
## 5543 Moonwalker (1988)
## 5544 Alice (Neco z Alenky) (1988)
## 5545 Life Is a Long Quiet River (La vie est un long fleuve tranquille) (1988)
## 5546 Lonesome Dove (1989)
## 5547 Kiki's Delivery Service (Majo no takkyûbin) (1989)
## 5548 Almost an Angel (1990)
## 5549 Cry-Baby (1990)
## 5550 Bullet in the Head (1990)
## 5551 Ghost Dad (1990)
## 5552 It (1990)
## 5553 Ju Dou (1990)
## 5554 Krays, The (1990)
## 5555 Lionheart (1990)
## 5556 Nuns on the Run (1990)
## 5557 Patlabor: The Movie (Kidô keisatsu patorebâ: The Movie) (1989)
## 5558 State of Grace (1990)
## 5559 35 Up (1991)
## 5560 Days of Being Wild (A Fei jingjyuhn) (1990)
## 5561 Begotten (1990)
## 5562 Dutch (1991)
## 5563 Hearts of Darkness: A Filmmakers Apocalypse (1991)
## 5564 Johnny Stecchino (1991)
## 5565 Riki-Oh: The Story of Ricky (Lik Wong) (1991)
## 5566 Mannequin 2: On the Move (1991)
## 5567 Only Yesterday (Omohide poro poro) (1991)
## 5568 Other People's Money (1991)
## 5569 Quigley Down Under (1990)
## 5570 Prime Suspect 2 (1992)
## 5571 Captain America (1990)
## 5572 City Hunter (Sing si lip yan) (1993)
## 5573 Porco Rosso (Crimson Pig) (Kurenai no buta) (1992)
## 5574 Stolen Children (Ladro di bambini, Il) (1992)
## 5575 Ladybugs (1992)
## 5576 Mambo Kings, The (1992)
## 5577 Shining Through (1992)
## 5578 Sidekicks (1992)
## 5579 Heart in Winter, A (Un coeur en hiver) (1992)
## 5580 Visions of Light: The Art of Cinematography (1992)
## 5581 Bad Boy Bubby (1993)
## 5582 Barbarians at the Gate (1993)
## 5583 Fortress (1992)
## 5584 Mr. Nanny (1993)
## 5585 Snapper, The (1993)
## 5586 Sonatine (Sonachine) (1993)
## 5587 Stand, The (1994)
## 5588 Darkman II: Return of Durant, The (1995)
## 5589 Freaked (1993)
## 5590 Fist of Legend (Jing wu ying xiong) (1994)
## 5591 Major League II (1994)
## 5592 My Father the Hero (1994)
## 5593 Pure Formality, A (Pura formalitÃÂ , Una) (1994)
## 5594 Langoliers, The (1995)
## 5595 Last Wedding, The (Kivenpyörittäjän kylä) (1995)
## 5596 Last of the Dogmen (1995)
## 5597 Whisper of the Heart (Mimi wo sumaseba) (1995)
## 5598 Street Fighter II: The Animated Movie (Sutorîto Faitâ II gekijô-ban) (1994)
## 5599 Summer's Tale, A (Conte d'été) (1996)
## 5600 Late Shift, The (1996)
## 5601 Pusher (1996)
## 5602 Emma (1996)
## 5603 Boxer, The (1997)
## 5604 Gummo (1997)
## 5605 Nirvana (1997)
## 5606 Lion King II: Simba's Pride, The (1998)
## 5607 From the Earth to the Moon (1998)
## 5608 Beowulf (1999)
## 5609 RKO 281 (1999)
## 5610 From Dusk Till Dawn 2: Texas Blood Money (1999)
## 5611 Gia (1998)
## 5612 Thursday (1998)
## 5613 Who Am I? (Wo shi shei) (1998)
## 5614 Merlin (1998)
## 5615 Brave New World (1998)
## 5616 Addams Family Reunion (1998)
## 5617 Purgatory (1999)
## 5618 Bleeder (1999)
## 5619 Dark Portals: The Chronicles of Vidocq (Vidocq) (2001)
## 5620 Candyman 3: Day of the Dead (1999)
## 5621 Batman/Superman Movie, The (1998)
## 5622 Neon Genesis Evangelion: The End of Evangelion (Shin seiki Evangelion Gekijô-ban: Air/Magokoro wo, kimi ni) (1997)
## 5623 Style Wars (1983)
## 5624 In July (Im Juli) (2000)
## 5625 Kirikou and the Sorceress (Kirikou et la sorcière) (1998)
## 5626 Taxi 2 (2000)
## 5627 If These Walls Could Talk 2 (2000)
## 5628 10th Kingdom, The (2000)
## 5629 Wind Will Carry Us, The (Bad ma ra khahad bord) (1999)
## 5630 2046 (2004)
## 5631 Bartleby (2001)
## 5632 Batman Beyond: Return of the Joker (2000)
## 5633 Audition (Ãâdishon) (1999)
## 5634 Nine Lives of Tomas Katz, The (2000)
## 5635 Monday (2000)
## 5636 Paradise Lost 2: Revelations (2000)
## 5637 Asterix & Obelix: Mission Cleopatra (Astérix & Obélix: Mission Cléopâtre) (2002)
## 5638 Daria: Is It Fall Yet? (2000)
## 5639 Late Night Shopping (2001)
## 5640 61* (2001)
## 5641 Joint Security Area (Gongdong gyeongbi guyeok JSA) (2000)
## 5642 Ripley's Game (2002)
## 5643 Jalla! Jalla! (2000)
## 5644 Teknolust (2002)
## 5645 Accidental Spy, The (Dak miu mai shing) (2001)
## 5646 Darkness (2002)
## 5647 Blood: The Last Vampire (2000)
## 5648 Blueberry (2004)
## 5649 American Psycho II: All American Girl (2002)
## 5650 Ali G Indahouse (2002)
## 5651 Dead or Alive 2: Tôbôsha (2000)
## 5652 Cube 2: Hypercube (2002)
## 5653 Pulse (Kairo) (2001)
## 5654 Dog Days (Hundstage) (2001)
## 5655 My Sassy Girl (Yeopgijeogin geunyeo) (2001)
## 5656 Nothing (2003)
## 5657 Undertaking Betty (Plots with a View) (2002)
## 5658 Dead or Alive: Final (2002)
## 5659 Fubar (2002)
## 5660 Happiness of the Katakuris, The (Katakuri-ke no kôfuku) (2001)
## 5661 Dead End (2003)
## 5662 Sympathy for Mr. Vengeance (Boksuneun naui geot) (2002)
## 5663 Jesus Christ Vampire Hunter (2001)
## 5664 Suicide Club (Jisatsu saakuru) (2001)
## 5665 Battlestar Galactica (2003)
## 5666 Sound of Thunder, A (2005)
## 5667 Lion King 1ý, The (2004)
## 5668 Oasis (2002)
## 5669 Remember Me (Ricordati di me) (2003)
## 5670 Animatrix, The (2003)
## 5671 Brown Bunny, The (2003)
## 5672 Ju-on: The Curse (2000)
## 5673 11:14 (2003)
## 5674 Tremors 4: The Legend Begins (2004)
## 5675 Bring It On Again (2004)
## 5676 Crimson Rivers 2: Angels of the Apocalypse (Rivières pourpres II - Les anges de l'apocalypse, Les) (2004)
## 5677 And Starring Pancho Villa as Himself (2003)
## 5678 Nicotina (2003)
## 5679 Battle Royale 2: Requiem (Batoru rowaiaru II: Chinkonka) (2003)
## 5680 In Hell (2003)
## 5681 Lemony Snicket's A Series of Unfortunate Events (2004)
## 5682 Helen of Troy (2003)
## 5683 Green Butchers, The (Grønne slagtere, De) (2003)
## 5684 Very Long Engagement, A (Un long dimanche de fiançailles) (2004)
## 5685 Last Life in the Universe (Ruang rak noi nid mahasan) (2003)
## 5686 Ghost in the Shell 2: Innocence (a.k.a. Innocence) (Inosensu) (2004)
## 5687 Cat Returns, The (Neko no ongaeshi) (2002)
## 5688 Twilight Samurai, The (Tasogare Seibei) (2002)
## 5689 Facing Windows (Finestra di fronte, La) (2003)
## 5690 Ginger Snaps: Unleashed (2004)
## 5691 'Salem's Lot (2004)
## 5692 Comic Book: The Movie (2004)
## 5693 Intimate Strangers (Confidences trop intimes) (2004)
## 5694 Down to the Bone (2004)
## 5695 Ju-on: The Grudge (2002)
## 5696 Old Boy (2003)
## 5697 Red Lights (Feux rouges) (2004)
## 5698 Ginger Snaps Back: The Beginning (2004)
## 5699 One Missed Call (Chakushin ari) (2003)
## 5700 Jacket, The (2005)
## 5701 Millions (2004)
## 5702 Starship Troopers 2: Hero of the Federation (2004)
## 5703 Ong-Bak: The Thai Warrior (Ong Bak) (2003)
## 5704 Infernal Affairs 2 (Mou gaan dou II) (2003)
## 5705 Sea Inside, The (Mar adentro) (2004)
## 5706 Spanglish (2004)
## 5707 Chorus, The (Choristes, Les) (2004)
## 5708 Saints and Soldiers (2003)
## 5709 Story of the Weeping Camel, The (Geschichte vom weinenden Kamel, Die) (2003)
## 5710 Interpreter, The (2005)
## 5711 Open Water (2003)
## 5712 Touch of Pink (2004)
## 5713 Slasher (2004)
## 5714 Bobby Jones, Stroke of Genius (2004)
## 5715 Layer Cake (2004)
## 5716 Return, The (Vozvrashcheniye) (2003)
## 5717 Flight of the Phoenix (2004)
## 5718 Mean Creek (2004)
## 5719 Ring Two, The (2005)
## 5720 Corporation, The (2003)
## 5721 Yes Men, The (2003)
## 5722 Azumi (2003)
## 5723 In My Father's Den (2004)
## 5724 Tae Guk Gi: The Brotherhood of War (Taegukgi hwinalrimyeo) (2004)
## 5725 Metallica: Some Kind of Monster (2004)
## 5726 Born into Brothels (2004)
## 5727 DiG! (2004)
## 5728 Riding Giants (2004)
## 5729 What the #$*! Do We Know!? (a.k.a. What the Bleep Do We Know!?) (2004)
## 5730 Scanner Darkly, A (2006)
## 5731 Casshern (2004)
## 5732 Outfoxed: Rupert Murdoch's War on Journalism (2004)
## 5733 Million Dollar Baby (2004)
## 5734 Gozu (Gokudô kyôfu dai-gekijô: Gozu) (2003)
## 5735 Hotel Rwanda (2004)
## 5736 Charlie and the Chocolate Factory (2005)
## 5737 3-Iron (Bin-jip) (2004)
## 5738 Life Aquatic with Steve Zissou, The (2004)
## 5739 Aviator, The (2004)
## 5740 Phantom of the Opera, The (2004)
## 5741 Beyond the Sea (2004)
## 5742 Woodsman, The (2004)
## 5743 In Good Company (2004)
## 5744 Meet the Fockers (2004)
## 5745 Assassination of Richard Nixon, The (2004)
## 5746 Love Song for Bobby Long, A (2004)
## 5747 Merchant of Venice, The (2004)
## 5748 Fat Albert (2004)
## 5749 Keys to the House, The (Chiavi di casa, Le) (2004)
## 5750 In the Realms of the Unreal (2004)
## 5751 White Noise (2005)
## 5752 Upside of Anger, The (2005)
## 5753 Little Miss Marker (1980)
## 5754 Sweet Liberty (1986)
## 5755 I Remember Mama (1948)
## 5756 Smooth Talk (1985)
## 5757 Out Cold (1989)
## 5758 Man Trouble (1992)
## 5759 Battles Without Honor & Humanity (Jingi naki tatakai) (1973)
## 5760 Stander (2003)
## 5761 Imaginary Heroes (2004)
## 5762 Sergeant York (1941)
## 5763 Ruby & Quentin (Tais-toi!) (2003)
## 5764 Wizards (1977)
## 5765 Life and Death of Peter Sellers, The (2004)
## 5766 Appleseed (Appurushîdo) (2004)
## 5767 Many Adventures of Winnie the Pooh, The (1977)
## 5768 Elektra (2005)
## 5769 Racing Stripes (2005)
## 5770 Coach Carter (2005)
## 5771 Boys Town (1938)
## 5772 Gold Diggers of 1935 (1935)
## 5773 Rocco and His Brothers (Rocco e i suoi fratelli) (1960)
## 5774 Memories of Murder (Salinui chueok) (2003)
## 5775 Chase, The (1994)
## 5776 Downfall (Untergang, Der) (2004)
## 5777 Assault on Precinct 13 (2005)
## 5778 Are We There Yet? (2005)
## 5779 Alone in the Dark (2005)
## 5780 Hide and Seek (2005)
## 5781 Boogeyman (2005)
## 5782 Wedding Date, The (2005)
## 5783 Rory O'Shea Was Here (Inside I'm Dancing) (2004)
## 5784 Nobody Knows (Dare mo shiranai) (2004)
## 5785 Employee of the Month (2004)
## 5786 Marriage of Maria Braun, The (Ehe der Maria Braun, Die) (1979)
## 5787 Trou, Le (Hole, The) (Night Watch, The) (1960)
## 5788 Double Dragon (1994)
## 5789 Hands Off the Loot (Touchez pas au grisbi) (1954)
## 5790 Purple Butterfly (Zi hudie) (2003)
## 5791 El Cid (1961)
## 5792 Howl's Moving Castle (Hauru no ugoku shiro) (2004)
## 5793 Steamboy (Suchîmubôi) (2004)
## 5794 Gorgeous (Boh lee chun) (1999)
## 5795 Hitch (2005)
## 5796 Uncle Nino (2003)
## 5797 Bride & Prejudice (2004)
## 5798 Constantine (2005)
## 5799 Son of the Mask (2005)
## 5800 Because of Winn-Dixie (2005)
## 5801 Turtles Can Fly (Lakposhtha hâm parvaz mikonand) (2004)
## 5802 Bunny Lake Is Missing (1965)
## 5803 Night Watch (Nochnoy dozor) (2004)
## 5804 Sons of the Desert (1933)
## 5805 Man of the House (2005)
## 5806 Kung Fu Hustle (Gong fu) (2004)
## 5807 Zelary (2003)
## 5808 Dr. Giggles (1992)
## 5809 Seven-Per-Cent Solution, The (1976)
## 5810 Three Musketeers, The (1973)
## 5811 Royal Flash (1975)
## 5812 Control (Kontroll) (2003)
## 5813 Germany Year Zero (Germania anno zero) (Deutschland im Jahre Null) (1948)
## 5814 Tyler Perry's Diary of a Mad Black Woman (2005)
## 5815 Cursed (2005)
## 5816 Pacifier, The (2005)
## 5817 Be Cool (2005)
## 5818 Gunner Palace (2004)
## 5819 Hostage (2005)
## 5820 Robots (2005)
## 5821 Class Action (1991)
## 5822 Cat and the Canary, The (1927)
## 5823 Oh, God! You Devil (1984)
## 5824 Agony and the Ecstasy, The (1965)
## 5825 Twentieth Century (1934)
## 5826 Elevator to the Gallows (a.k.a. Frantic) (Ascenseur pour l'échafaud) (1958)
## 5827 Cube Zero (2004)
## 5828 Julia (1977)
## 5829 Stealing Rembrandt (Rembrandt) (2003)
## 5830 Ice Princess (2005)
## 5831 Melinda and Melinda (2004)
## 5832 Milk and Honey (2003)
## 5833 Miss Congeniality 2: Armed and Fabulous (2005)
## 5834 Guess Who (2005)
## 5835 D.E.B.S. (2004)
## 5836 League of Ordinary Gentlemen, A (2004)
## 5837 Incident at Loch Ness (2004)
## 5838 Call Northside 777 (1948)
## 5839 Sword of Doom, The (Dai-bosatsu tôge) (1966)
## 5840 800 Bullets (800 Balas) (2002)
## 5841 If Looks Could Kill (1991)
## 5842 Greedy (1994)
## 5843 Pom Poko (a.k.a. Raccoon War, The) (Heisei tanuki gassen pompoko) (1994)
## 5844 Knockin' on Heaven's Door (1997)
## 5845 We're No Angels (1955)
## 5846 Touch of Zen, A (Xia nu) (1971)
## 5847 Walker (1987)
## 5848 Memories (Memorîzu) (1995)
## 5849 Wild Parrots of Telegraph Hill, The (2003)
## 5850 Ballad of Jack and Rose, The (2005)
## 5851 Sin City (2005)
## 5852 Beauty Shop (2005)
## 5853 Sahara (2005)
## 5854 Fever Pitch (2005)
## 5855 Eros (2004)
## 5856 Not on the Lips (Pas sur la bouche) (2003)
## 5857 Electra Glide in Blue (1973)
## 5858 Special Day, A (Giornata particolare, Una) (1977)
## 5859 Man Who Planted Trees, The (Homme qui plantait des arbres, L') (1987)
## 5860 Tanguy (2001)
## 5861 National Lampoon's Lady Killers (National Lampoon's Gold Diggers) (2003)
## 5862 Little Girl Who Lives Down the Lane, The (1976)
## 5863 Ringu 0: Bâsudei (2000)
## 5864 Brothers (Brødre) (2004)
## 5865 Maidens in Uniform (Mädchen in Uniform) (1931)
## 5866 With Six You Get Eggroll (1968)
## 5867 Holiday (Jour de fête) (1949)
## 5868 Ivan's Childhood (a.k.a. My Name is Ivan) (Ivanovo detstvo) (1962)
## 5869 Trip to the Moon, A (Voyage dans la lune, Le) (1902)
## 5870 Ascent, The (Voskhozhdeniye) (1977)
## 5871 Carrie (2002)
## 5872 Boccaccio '70 (1962)
## 5873 Hitchhiker's Guide to the Galaxy, The (2005)
## 5874 Amityville Horror, The (2005)
## 5875 Mutant Aliens (2001)
## 5876 Before the Fall (NaPolA - Elite für den Führer) (2004)
## 5877 Frisco Kid, The (1979)
## 5878 State Property 2 (2005)
## 5879 Palindromes (2004)
## 5880 Lot Like Love, A (2005)
## 5881 King's Ransom (2005)
## 5882 Enron: The Smartest Guys in the Room (2005)
## 5883 xXx: State of the Union (2005)
## 5884 Kingdom of Heaven (2005)
## 5885 House of Wax (2005)
## 5886 Crash (2004)
## 5887 Mysterious Skin (2004)
## 5888 Mischief (1985)
## 5889 Between Your Legs (Entre las piernas) (1999)
## 5890 San Francisco (1936)
## 5891 Vampire Hunter D (1985)
## 5892 Common Thread, A (a.k.a. Sequins) (Brodeuses) (2004)
## 5893 Cocoanuts, The (1929)
## 5894 Dear Wendy (2005)
## 5895 Los Angeles Plays Itself (2003)
## 5896 Unleashed (Danny the Dog) (2005)
## 5897 Star Wars: Episode III - Revenge of the Sith (2005)
## 5898 Kicking & Screaming (2005)
## 5899 Monster-in-Law (2005)
## 5900 Snow Walker, The (2003)
## 5901 Divorce - Italian Style (Divorzio all'italiana) (1961)
## 5902 Madagascar (2005)
## 5903 Airborne (1993)
## 5904 Mad Hot Ballroom (2005)
## 5905 Dominion: Prequel to the Exorcist (2005)
## 5906 Longest Yard, The (2005)
## 5907 Saving Face (2004)
## 5908 Cinderella Man (2005)
## 5909 Sisterhood of the Traveling Pants, The (2005)
## 5910 Lords of Dogtown (2005)
## 5911 Rock School (2005)
## 5912 Mr. & Mrs. Smith (2005)
## 5913 Adventures of Sharkboy and Lavagirl 3-D, The (2005)
## 5914 High Tension (Haute tension) (Switchblade Romance) (2003)
## 5915 It's All Gone Pete Tong (2004)
## 5916 Eddie Izzard: Dress to Kill (1999)
## 5917 Quo Vadis (1951)
## 5918 Batman Begins (2005)
## 5919 Godzilla: Final Wars (Gojira: Fainaru uôzu) (2004)
## 5920 Perfect Man, The (2005)
## 5921 Saint Ralph (2004)
## 5922 Herbie: Fully Loaded (2005)
## 5923 Land of the Dead (2005)
## 5924 Bewitched (2005)
## 5925 Rize (2005)
## 5926 Me and You and Everyone We Know (2005)
## 5927 Perfect Crime, The (Crimen Ferpecto) (Ferpect Crime) (2004)
## 5928 3 Extremes (Three... Extremes) (Saam gaang yi) (2004)
## 5929 Edukators, The (Die Fetten Jahre sind vorbei) (2004)
## 5930 Cop and ý (1993)
## 5931 At the Circus (1939)
## 5932 War of the Worlds (2005)
## 5933 March of the Penguins (Marche de l'empereur, La) (2005)
## 5934 Rebound (2005)
## 5935 Dark Water (2005)
## 5936 Beat That My Heart Skipped, The (battre mon coeur s'est arrêté, De) (2005)
## 5937 Fantastic Four (2005)
## 5938 Murderball (2005)
## 5939 Wedding Crashers (2005)
## 5940 Happy Endings (2005)
## 5941 Hustle & Flow (2005)
## 5942 Hardware (1990)
## 5943 Calcium Kid, The (2004)
## 5944 Island, The (2005)
## 5945 Bad News Bears (2005)
## 5946 Devil's Rejects, The (2005)
## 5947 Last Days (2005)
## 5948 November (2004)
## 5949 Sky High (2005)
## 5950 Stealth (2005)
## 5951 Must Love Dogs (2005)
## 5952 Aristocrats, The (2005)
## 5953 Georgy Girl (1966)
## 5954 Order, The (2001)
## 5955 Serenity (2005)
## 5956 Broken Flowers (2005)
## 5957 Miracles - Mr. Canton and Lady Rose (1989)
## 5958 Browning Version, The (1951)
## 5959 Dukes of Hazzard, The (2005)
## 5960 The Chumscrubber (2005)
## 5961 Junebug (2005)
## 5962 Deuce Bigalow: European Gigolo (2005)
## 5963 Skeleton Key, The (2005)
## 5964 Four Brothers (2005)
## 5965 The Great Raid (2005)
## 5966 Pretty Persuasion (2005)
## 5967 Grizzly Man (2005)
## 5968 Private Resort (1985)
## 5969 Pusher II: With Blood on My Hands (2004)
## 5970 Duma (2005)
## 5971 Animal Farm (1954)
## 5972 Teahouse of the August Moon, The (1956)
## 5973 40-Year-Old Virgin, The (2005)
## 5974 Red Eye (2005)
## 5975 Hidden (a.k.a. Cache) (Caché) (2005)
## 5976 Asterix & Obelix vs. Caesar (Astérix et Obélix contre César) (1999)
## 5977 Kin-Dza-Dza! (1986)
## 5978 Valiant (2005)
## 5979 Brothers Grimm, The (2005)
## 5980 Baxter, The (2005)
## 5981 Cave, The (2005)
## 5982 Constant Gardener, The (2005)
## 5983 Transporter 2 (2005)
## 5984 Just Like Heaven (2005)
## 5985 Proof (2005)
## 5986 Lord of War (2005)
## 5987 Cry_Wolf (a.k.a. Cry Wolf) (2005)
## 5988 Everything Is Illuminated (2005)
## 5989 Thumbsucker (2005)
## 5990 Family Guy Presents Stewie Griffin: The Untold Story (2005)
## 5991 Police Story 2 (Ging chaat goo si juk jaap) (1988)
## 5992 New Police Story (Xin jing cha gu shi) (2004)
## 5993 Go West (1940)
## 5994 Why We Fight (2005)
## 5995 Doom (2005)
## 5996 Domino (2005)
## 5997 Waiting... (2005)
## 5998 Aeon Flux (2005)
## 5999 Frankenstein 90 (1984)
## 6000 Unfinished Life, An (2005)
## 6001 Man, The (2005)
## 6002 Survive Style 5+ (2004)
## 6003 Woyzeck (1979)
## 6004 Exorcism of Emily Rose, The (2005)
## 6005 Flightplan (2005)
## 6006 Corpse Bride (2005)
## 6007 Green Street Hooligans (a.k.a. Hooligans) (2005)
## 6008 History of Violence, A (2005)
## 6009 Oliver Twist (2005)
## 6010 Greatest Game Ever Played, The (2005)
## 6011 Capote (2005)
## 6012 Final Fantasy VII: Advent Children (2004)
## 6013 Roll Bounce (2005)
## 6014 Into the Blue (2005)
## 6015 MirrorMask (2005)
## 6016 Wallace & Gromit in The Curse of the Were-Rabbit (2005)
## 6017 Kiss Kiss Bang Bang (2005)
## 6018 Bittersweet Life, A (Dalkomhan insaeng) (2005)
## 6019 Short Film About Love, A (Krótki film o milosci) (1988)
## 6020 All This, and Heaven Too (1940)
## 6021 Darwin's Nightmare (2004)
## 6022 Beowulf & Grendel (2005)
## 6023 No Direction Home: Bob Dylan (2005)
## 6024 Goal! The Dream Begins (Goal!) (2005)
## 6025 Wraith, The (1986)
## 6026 In Her Shoes (2005)
## 6027 Squid and the Whale, The (2005)
## 6028 Two for the Money (2005)
## 6029 Brokeback Mountain (2005)
## 6030 Elizabethtown (2005)
## 6031 North Country (2005)
## 6032 Good Night, and Good Luck. (2005)
## 6033 Dreamer: Inspired by a True Story (2005)
## 6034 Proposition, The (2005)
## 6035 Fog, The (2005)
## 6036 Shopgirl (2005)
## 6037 Stay (2005)
## 6038 Legend of Zorro, The (2005)
## 6039 Weather Man, The (2005)
## 6040 Saw II (2005)
## 6041 Prime (2005)
## 6042 Don't Move (Non ti muovere) (2004)
## 6043 American Pie Presents: Band Camp (American Pie 4: Band Camp) (2005)
## 6044 Great Yokai War, The (Yôkai daisensô) (2005)
## 6045 Manderlay (2005)
## 6046 Revolver (2005)
## 6047 Jarhead (2005)
## 6048 Chicken Little (2005)
## 6049 Dead Man's Shoes (2004)
## 6050 Joyeux Noël (Merry Christmas) (2005)
## 6051 Night of the Lepus (1972)
## 6052 Match Factory Girl, The (Tulitikkutehtaan tyttö) (1990)
## 6053 Sword of the Beast (Kedamono no ken) (1965)
## 6054 Just Friends (2005)
## 6055 Syriana (2005)
## 6056 One-Way Ticket to Mombasa (Menolippu Mombasaan) (2002)
## 6057 Derailed (2005)
## 6058 Creep (2004)
## 6059 Pride & Prejudice (2005)
## 6060 Babylon 5
## 6061 Wolf Creek (2005)
## 6062 Descent, The (2005)
## 6063 Harry Potter and the Goblet of Fire (2005)
## 6064 Walk the Line (2005)
## 6065 Rent (2005)
## 6066 Zathura (2005)
## 6067 C.R.A.Z.Y. (2005)
## 6068 Sarah Silverman: Jesus Is Magic (2005)
## 6069 Breakfast on Pluto (2005)
## 6070 Ice Harvest, The (2005)
## 6071 Yours, Mine and Ours (2005)
## 6072 Libertine, The (2004)
## 6073 Bird with the Crystal Plumage, The (Uccello dalle piume di cristallo, L') (1970)
## 6074 Match Point (2005)
## 6075 Paradise Now (2005)
## 6076 Chronicles of Narnia: The Lion, the Witch and the Wardrobe, The (2005)
## 6077 King Kong (2005)
## 6078 Memoirs of a Geisha (2005)
## 6079 Family Stone, The (2005)
## 6080 Havoc (2005)
## 6081 Samurai Rebellion (Jôi-uchi: Hairyô tsuma shimatsu) (1967)
## 6082 Room for Romeo Brass, A (1999)
## 6083 Matador, The (2005)
## 6084 Wal-Mart: The High Cost of Low Price (2005)
## 6085 Mozart and the Whale (2005)
## 6086 Don't Look Now: We're Being Shot At (La grande vadrouille) (1966)
## 6087 Three Burials of Melquiades Estrada, The (2006)
## 6088 Munich (2005)
## 6089 Producers, The (2005)
## 6090 Transamerica (2005)
## 6091 Rumor Has It... (2005)
## 6092 Cheaper by the Dozen 2 (2005)
## 6093 Fun with Dick and Jane (2005)
## 6094 Ringer, The (2005)
## 6095 Casanova (2005)
## 6096 Mrs. Henderson Presents (2005)
## 6097 Ear, The (Ucho) (1970)
## 6098 Luxo Jr. (1986)
## 6099 Dentist, The (1996)
## 6100 New World, The (2005)
## 6101 Voices of a Distant Star (Hoshi no koe) (2003)
## 6102 7 Faces of Dr. Lao (1964)
## 6103 Samurai Assassin (Samurai) (1965)
## 6104 Boys of Baraka, The (2005)
## 6105 Lady Vengeance (Sympathy for Lady Vengeance) (Chinjeolhan geumjassi) (2005)
## 6106 Grand Theft Parsons (2003)
## 6107 District 13 (Banlieue 13) (2004)
## 6108 Hostel (2005)
## 6109 Grandma's Boy (2006)
## 6110 Tristan & Isolde (2006)
## 6111 Glory Road (2006)
## 6112 Last Holiday (2006)
## 6113 Hoodwinked! (2005)
## 6114 Underworld: Evolution (2006)
## 6115 Looking for Comedy in the Muslim World (2005)
## 6116 Casper Meets Wendy (1998)
## 6117 Revolution (1985)
## 6118 Project A ('A' gai waak) (1983)
## 6119 Bird People in China, The (Chûgoku no chôjin) (1998)
## 6120 Water (2005)
## 6121 Sophie Scholl: The Final Days (Sophie Scholl - Die letzten Tage) (2005)
## 6122 World's Fastest Indian, The (2005)
## 6123 Bandidas (2006)
## 6124 Tristram Shandy: A Cock and Bull Story (2005)
## 6125 Helter Skelter (2004)
## 6126 Annapolis (2006)
## 6127 Big Momma's House 2 (2006)
## 6128 Nanny McPhee (2005)
## 6129 Tuskegee Airmen, The (1995)
## 6130 Final Destination 3 (2006)
## 6131 Something New (2006)
## 6132 Block Party (a.k.a. Dave Chappelle's Block Party) (2005)
## 6133 Imagine Me & You (2005)
## 6134 Pink Panther, The (2006)
## 6135 Curious George (2006)
## 6136 Firewall (2006)
## 6137 When a Stranger Calls (2006)
## 6138 London (2005)
## 6139 Freedomland (2006)
## 6140 Winter Passing (2005)
## 6141 Eight Below (2006)
## 6142 Date Movie (2006)
## 6143 Running Scared (2006)
## 6144 Ultraviolet (2006)
## 6145 Just My Luck (2006)
## 6146 Pulse (2006)
## 6147 16 Blocks (2006)
## 6148 Failure to Launch (2006)
## 6149 Ultimate Avengers (2006)
## 6150 Ice Age 2: The Meltdown (2006)
## 6151 Ask the Dust (2006)
## 6152 V for Vendetta (2006)
## 6153 She's the Man (2006)
## 6154 Thank You for Smoking (2006)
## 6155 Find Me Guilty (2006)
## 6156 Inside Man (2006)
## 6157 Tsotsi (2005)
## 6158 Aquamarine (2006)
## 6159 Leprechaun 2 (1994)
## 6160 Leprechaun 3 (1995)
## 6161 Leprechaun 4: In Space (1997)
## 6162 Lights in the Dusk (Laitakaupungin valot) (2006)
## 6163 Hills Have Eyes, The (2006)
## 6164 Shaggy Dog, The (2006)
## 6165 Unknown White Male (2005)
## 6166 Lives of Others, The (Das leben der Anderen) (2006)
## 6167 Youth of the Beast (Yaju no seishun) (1963)
## 6168 Take the Lead (2006)
## 6169 Devil and Daniel Johnston, The (2005)
## 6170 Mouchette (1967)
## 6171 Lucky Number Slevin (2006)
## 6172 Volver (2006)
## 6173 Akeelah and the Bee (2006)
## 6174 Brainstorm (2001)
## 6175 Stay Alive (2006)
## 6176 Basic Instinct 2 (2006)
## 6177 Brick (2005)
## 6178 Dead Hate the Living!, The (2000)
## 6179 Evil Aliens (2005)
## 6180 This Film Is Not Yet Rated (2006)
## 6181 Slither (2006)
## 6182 Benchwarmers, The (2006)
## 6183 Renaissance (2006)
## 6184 Go for Zucker! (Alles auf Zucker!) (2004)
## 6185 Friends with Money (2006)
## 6186 Reefer Madness: The Movie Musical (2005)
## 6187 Candy (2006)
## 6188 Secrets of a Soul (Geheimnisse einer Seele) (1926)
## 6189 Child, The (L'enfant) (2005)
## 6190 9/11 (2002)
## 6191 Scary Movie 4 (2006)
## 6192 Hard Candy (2005)
## 6193 Prairie Home Companion, A (2006)
## 6194 Sentinel, The (2006)
## 6195 Wild, The (2006)
## 6196 Silent Hill (2006)
## 6197 American Dreamz (2006)
## 6198 Kinky Boots (2005)
## 6199 Protector, The (a.k.a. Warrior King) (Tom yum goong) (2005)
## 6200 Mission: Impossible III (2006)
## 6201 RV (2006)
## 6202 United 93 (2006)
## 6203 Stick It (2006)
## 6204 American Haunting, An (2005)
## 6205 Down in the Valley (2005)
## 6206 Over the Hedge (2006)
## 6207 Art School Confidential (2006)
## 6208 Poseidon (2006)
## 6209 Da Vinci Code, The (2006)
## 6210 X-Men: The Last Stand (2006)
## 6211 Break-Up, The (2006)
## 6212 Peaceful Warrior (2006)
## 6213 Cars (2006)
## 6214 Notorious Bettie Page, The (2005)
## 6215 Game 6 (2005)
## 6216 On a Clear Day (2005)
## 6217 Omen, The (2006)
## 6218 Nacho Libre (2006)
## 6219 Lake House, The (2006)
## 6220 Click (2006)
## 6221 Devil Wears Prada, The (2006)
## 6222 Pirates of the Caribbean: Dead Man's Chest (2006)
## 6223 You, Me and Dupree (2006)
## 6224 Clerks II (2006)
## 6225 Lady in the Water (2006)
## 6226 My Super Ex-Girlfriend (2006)
## 6227 Marie Antoinette (2006)
## 6228 Who Killed the Electric Car? (2006)
## 6229 Inconvenient Truth, An (2006)
## 6230 Career Opportunities (1991)
## 6231 High School Musical (2006)
## 6232 I Am a Sex Addict (2005)
## 6233 Stoned (2005)
## 6234 Jet Li's Fearless (Huo Yuan Jia) (2006)
## 6235 Fast and the Furious: Tokyo Drift, The (Fast and the Furious 3, The) (2006)
## 6236 Garfield: A Tail of Two Kitties (2006)
## 6237 Metal: A Headbanger's Journey (2005)
## 6238 Public Eye, The (1992)
## 6239 Superman Returns (2006)
## 6240 Road to Guantanamo, The (2006)
## 6241 Edmond (2005)
## 6242 OH in Ohio, The (2006)
## 6243 Little Miss Sunshine (2006)
## 6244 Fallen Idol, The (1948)
## 6245 Babel (2006)
## 6246 Strangers with Candy (2005)
## 6247 Wordplay (2006)
## 6248 Army of Shadows (L'armée des ombres) (1969)
## 6249 Orchestra Rehearsal (Prova d'orchestra) (1978)
## 6250 Little Man (2006)
## 6251 Monster House (2006)
## 6252 Snakes on a Plane (2006)
## 6253 Scoop (2006)
## 6254 Talladega Nights: The Ballad of Ricky Bobby (2006)
## 6255 Night at the Museum (2006)
## 6256 World Trade Center (2006)
## 6257 Stranger than Fiction (2006)
## 6258 Miami Vice (2006)
## 6259 Pursuit of Happyness, The (2006)
## 6260 John Tucker Must Die (2006)
## 6261 Ant Bully, The (2006)
## 6262 Crank (2006)
## 6263 Secret Life of Words, The (2005)
## 6264 Chaos (2005)
## 6265 Night Listener, The (2006)
## 6266 Step Up (2006)
## 6267 Zoom (2006)
## 6268 Mind Game (2004)
## 6269 Half Nelson (2006)
## 6270 Moustache, La (2005)
## 6271 Tideland (2005)
## 6272 Adam's Apples (Adams æbler) (2005)
## 6273 Material Girls (2006)
## 6274 Accepted (2006)
## 6275 Crime Busters (1977)
## 6276 Born to Kill (1947)
## 6277 Illusionist, The (2006)
## 6278 The Queen (2006)
## 6279 Beerfest (2006)
## 6280 Invincible (2006)
## 6281 Idlewild (2006)
## 6282 Red Balloon, The (Ballon rouge, Le) (1956)
## 6283 Angel-A (2005)
## 6284 Chump at Oxford, A (1940)
## 6285 Icicle Thief, The (Ladri di saponette) (1989)
## 6286 Puffy Chair, The (2006)
## 6287 Wicker Man, The (2006)
## 6288 Wind That Shakes the Barley, The (2006)
## 6289 Severance (2006)
## 6290 Hollywoodland (2006)
## 6291 Covenant, The (2006)
## 6292 Last Kiss, The (2006)
## 6293 SherryBaby (2006)
## 6294 Idiocracy (2006)
## 6295 Jesus Camp (2006)
## 6296 Bow, The (Hwal) (2005)
## 6297 Tiger and the Snow, The (La tigre e la neve) (2005)
## 6298 Fountain, The (2006)
## 6299 Fear City: A Family-Style Comedy (La cité de la peur) (1994)
## 6300 Science of Sleep, The (La science des rêves) (2006)
## 6301 Black Dahlia, The (2006)
## 6302 Woods, The (2006)
## 6303 Gridiron Gang (2006)
## 6304 Land of Plenty (Angst and Alienation in America) (2004)
## 6305 Bridge, The (2006)
## 6306 Apocalypto (2006)
## 6307 Flyboys (2006)
## 6308 Jackass Number Two (2006)
## 6309 All the King's Men (2006)
## 6310 Conversations with Other Women (2005)
## 6311 Borat: Cultural Learnings of America for Make Benefit Glorious Nation of Kazakhstan (2006)
## 6312 Pan's Labyrinth (Laberinto del fauno, El) (2006)
## 6313 Guardian, The (2006)
## 6314 Open Season (2006)
## 6315 School for Scoundrels (2006)
## 6316 Departed, The (2006)
## 6317 Texas Chainsaw Massacre: The Beginning, The (2006)
## 6318 Employee of the Month (2006)
## 6319 Running With Scissors (2006)
## 6320 Man of the Year (2006)
## 6321 Marine, The (2006)
## 6322 Infamous (2006)
## 6323 Fellini's Casanova (Il Casanova di Federico Fellini) (1976)
## 6324 Chapayev (1934)
## 6325 Feast (2005)
## 6326 Little Children (2006)
## 6327 Deliver Us from Evil (2006)
## 6328 Last King of Scotland, The (2006)
## 6329 U.S. vs. John Lennon, The (2006)
## 6330 Shortbus (2006)
## 6331 Children of Men (2006)
## 6332 Prestige, The (2006)
## 6333 Flags of Our Fathers (2006)
## 6334 13 Tzameti (2005)
## 6335 Saw III (2006)
## 6336 Catch a Fire (2006)
## 6337 Death of a President (2006)
## 6338 Flushed Away (2006)
## 6339 Perfume: The Story of a Murderer (2006)
## 6340 Santa Clause 3: The Escape Clause, The (2006)
## 6341 Mom and Dad Save the World (1992)
## 6342 Good Year, A (2006)
## 6343 Shut Up & Sing (2006)
## 6344 For Your Consideration (2006)
## 6345 Fuck (2005)
## 6346 Shooting Dogs (a.k.a. Beyond the Gates) (2005)
## 6347 Casino Royale (2006)
## 6348 Happy Feet (2006)
## 6349 Let's Go to Prison (2006)
## 6350 DéjàVu (Deja Vu) (2006)
## 6351 Bobby (2006)
## 6352 10 Items or Less (2006)
## 6353 Holiday, The (2006)
## 6354 Harsh Times (2006)
## 6355 Fast Food Nation (2006)
## 6356 The Great Train Robbery (1903)
## 6357 Tenacious D in The Pick of Destiny (2006)
## 6358 Nativity Story, The (2006)
## 6359 Blood Diamond (2006)
## 6360 Charlotte's Web (2006)
## 6361 Eragon (2006)
## 6362 Rocky Balboa (2006)
## 6363 Fur: An Imaginary Portrait of Diane Arbus (2006)
## 6364 Dam Busters, The (1955)
## 6365 Another Gay Movie (2006)
## 6366 Painted Veil, The (2006)
## 6367 We Are Marshall (2006)
## 6368 Good Shepherd, The (2006)
## 6369 Dreamgirls (2006)
## 6370 Freedom Writers (2007)
## 6371 When the Levees Broke: A Requiem in Four Acts (2006)
## 6372 Inland Empire (2006)
## 6373 History Boys, The (2006)
## 6374 Notes on a Scandal (2006)
## 6375 DOA: Dead or Alive (2006)
## 6376 Curse of the Golden Flower (Man cheng jin dai huang jin jia) (2006)
## 6377 Good German, The (2006)
## 6378 Letters from Iwo Jima (2006)
## 6379 Black Christmas (2006)
## 6380 Stomp the Yard (2007)
## 6381 Miss Potter (2006)
## 6382 American Pie Presents The Naked Mile (American Pie 5: The Naked Mile) (2006)
## 6383 Venus (2006)
## 6384 The Return of Don Camillo (1953)
## 6385 The Little World of Don Camillo (1952)
## 6386 Primeval (2007)
## 6387 Alpha Dog (2007)
## 6388 Hitcher, The (2007)
## 6389 After the Wedding (Efter brylluppet) (2006)
## 6390 Bridge to Terabithia (2007)
## 6391 Beer League (2006)
## 6392 Dead Meat (2004)
## 6393 49 Up (2005)
## 6394 Waitress (2007)
## 6395 Seven Up! (1964)
## 6396 Catch and Release (2006)
## 6397 Smokin' Aces (2006)
## 6398 Blood and Chocolate (2007)
## 6399 Epic Movie (2007)
## 6400 Messengers, The (2007)
## 6401 Because I Said So (2007)
## 6402 Hannibal Rising (2007)
## 6403 Norbit (2007)
## 6404 Boss of It All, The (Direktøren for det hele) (2006)
## 6405 Cocaine Cowboys (2006)
## 6406 Ratatouille (2007)
## 6407 Paris, I Love You (Paris, je t'aime) (2006)
## 6408 Astronaut Farmer, The (2007)
## 6409 Wake Up, Ron Burgundy (2004)
## 6410 It's a Boy Girl Thing (2006)
## 6411 Ugly Duckling and Me!, The (2006)
## 6412 The Odyssey (1997)
## 6413 Unknown (2006)
## 6414 Ghost Rider (2007)
## 6415 Breach (2007)
## 6416 Tyler Perry's Daddy's Little Girls (2007)
## 6417 Music and Lyrics (2007)
## 6418 Number 23, The (2007)
## 6419 Reno 911!: Miami (2007)
## 6420 Black Snake Moan (2006)
## 6421 My Father and My Son (Babam ve oglum) (2005)
## 6422 Factory Girl (2006)
## 6423 Hot Fuzz (2007)
## 6424 Golden Door (Nuovomondo) (2006)
## 6425 Citizen X (1995)
## 6426 Next (2007)
## 6427 Amazing Grace (2006)
## 6428 2001 Maniacs (2005)
## 6429 Zodiac (2007)
## 6430 Pusher III: I'm the Angel of Death (2005)
## 6431 Babylon 5: The Gathering (1993)
## 6432 Meshes of the Afternoon (1943)
## 6433 Wild Hogs (2007)
## 6434 300 (2007)
## 6435 Abandoned, The (2006)
## 6436 Starter for 10 (2006)
## 6437 Last Mimzy, The (2007)
## 6438 Priceless (Hors de prix) (2006)
## 6439 Host, The (Gwoemul) (2006)
## 6440 Becoming Jane (2007)
## 6441 Namesake, The (2006)
## 6442 I Think I Love My Wife (2007)
## 6443 Premonition (2007)
## 6444 Dead Silence (2007)
## 6445 Reign Over Me (2007)
## 6446 Pride (2007)
## 6447 Shooter (2007)
## 6448 Hills Have Eyes II, The (2007)
## 6449 TMNT (Teenage Mutant Ninja Turtles) (2007)
## 6450 Black Book (Zwartboek) (2006)
## 6451 Lookout, The (2007)
## 6452 Blades of Glory (2007)
## 6453 Are We Done Yet? (2007)
## 6454 Grindhouse (2007)
## 6455 Reaping, The (2007)
## 6456 Meet the Robinsons (2007)
## 6457 American Hardcore (2006)
## 6458 Inglorious Bastards (Quel maledetto treno blindato) (1978)
## 6459 Sunshine (2007)
## 6460 Hoax, The (2007)
## 6461 How the Grinch Stole Christmas! (1966)
## 6462 Disturbia (2007)
## 6463 Aqua Teen Hunger Force Colon Movie Film for Theaters (2007)
## 6464 Vie en Rose, La (Môme, La) (2007)
## 6465 Fracture (2007)
## 6466 Vacancy (2007)
## 6467 In the Land of Women (2007)
## 6468 Mr. Bean's Holiday (2007)
## 6469 Invisible, The (2007)
## 6470 Kickin It Old Skool (2007)
## 6471 Spider-Man 3 (2007)
## 6472 Lucky You (2007)
## 6473 It's a Very Merry Muppet Christmas Movie (2002)
## 6474 21 Up (1977)
## 6475 Sharkwater (2006)
## 6476 Maniac Cop (1988)
## 6477 Ex, The (2007)
## 6478 Paprika (Papurika) (2006)
## 6479 Day Watch (Dnevnoy dozor) (2006)
## 6480 This Is England (2006)
## 6481 Away from Her (2006)
## 6482 Knocked Up (2007)
## 6483 Hairspray (2007)
## 6484 28 Weeks Later (2007)
## 6485 Wheels on Meals (Kuai can che) (1984)
## 6486 Jonestown: The Life and Death of Peoples Temple (2006)
## 6487 Shrek the Third (2007)
## 6488 Once (2006)
## 6489 Pirates of the Caribbean: At World's End (2007)
## 6490 Bug (2007)
## 6491 Mr. Brooks (2007)
## 6492 Librarian: Return to King Solomon's Mines, The (2006)
## 6493 Librarian: Quest for the Spear, The (2004)
## 6494 Fay Grim (2006)
## 6495 I'm a Cyborg, But That's OK (Saibogujiman kwenchana) (2006)
## 6496 Breed, The (2006)
## 6497 Cashback (2006)
## 6498 Ocean's Thirteen (2007)
## 6499 Them (Ils) (2006)
## 6500 Sun Alley (Sonnenallee) (1999)
## 6501 Hostel: Part II (2007)
## 6502 Paranoid Park (2007)
## 6503 Legend of Sleepy Hollow, The (1980)
## 6504 Starcrash (a.k.a. Star Crash) (1978)
## 6505 Surf's Up (2007)
## 6506 Fantastic Four: Rise of the Silver Surfer (2007)
## 6507 Nancy Drew (2007)
## 6508 Fido (2006)
## 6509 Death Proof (2007)
## 6510 Rescue Dawn (2006)
## 6511 TV Set, The (2006)
## 6512 Valet, The (La doublure) (2006)
## 6513 Bring It On: All or Nothing (2006)
## 6514 Power of Nightmares, The: The Rise of the Politics of Fear (2004)
## 6515 Sicko (2007)
## 6516 Mighty Heart, A (2007)
## 6517 1408 (2007)
## 6518 Death at a Funeral (2007)
## 6519 Live Free or Die Hard (2007)
## 6520 License to Wed (2007)
## 6521 Evan Almighty (2007)
## 6522 Transformers (2007)
## 6523 Harry Potter and the Order of the Phoenix (2007)
## 6524 I Now Pronounce You Chuck and Larry (2007)
## 6525 First Snow (2006)
## 6526 Broken Arrow (1950)
## 6527 Manufactured Landscapes (2006)
## 6528 Across the Universe (2007)
## 6529 Hot Rod (2007)
## 6530 Stardust (2007)
## 6531 Simpsons Movie, The (2007)
## 6532 I Know Who Killed Me (2007)
## 6533 No Reservations (2007)
## 6534 Charlie Bartlett (2007)
## 6535 Bourne Ultimatum, The (2007)
## 6536 China Blue (2005)
## 6537 Tell No One (Ne le dis ÃÂ personne) (2006)
## 6538 Superbad (2007)
## 6539 Brice Man, The (Brice de Nice) (2005)
## 6540 Rush Hour 3 (2007)
## 6541 Last Legion, The (2007)
## 6542 Balls of Fury (2007)
## 6543 Sydney White (2007)
## 6544 Kingdom, The (2007)
## 6545 Rocket Science (2007)
## 6546 Daddy Day Camp (2007)
## 6547 Invasion, The (2007)
## 6548 Nanny Diaries, The (2007)
## 6549 Halloween (2007)
## 6550 Death Sentence (2007)
## 6551 2 Days in Paris (2007)
## 6552 King of Kong, The (2007)
## 6553 Taxi 4 (2007)
## 6554 Behind the Mask: The Rise of Leslie Vernon (2006)
## 6555 Brothers Solomon, The (2007)
## 6556 Nines, The (2007)
## 6557 Planet Terror (2007)
## 6558 3:10 to Yuma (2007)
## 6559 Shoot 'Em Up (2007)
## 6560 Ten, The (2007)
## 6561 Gotti (1996)
## 6562 Atonement (2007)
## 6563 Electroma (2006)
## 6564 Requiem (2006)
## 6565 4 Months, 3 Weeks and 2 Days (4 luni, 3 saptamâni si 2 zile) (2007)
## 6566 No End in Sight (2007)
## 6567 Brave One, The (2007)
## 6568 In the Valley of Elah (2007)
## 6569 December Boys (2007)
## 6570 Shanghai Kiss (2007)
## 6571 Hunting Party, The (2007)
## 6572 Eastern Promises (2007)
## 6573 Unreasonable Man, An (2006)
## 6574 Tekkonkinkreet (Tekkon kinkurîto) (2006)
## 6575 Love and Other Disasters (2006)
## 6576 Interview (2007)
## 6577 Cashback (2004)
## 6578 Resident Evil: Extinction (2007)
## 6579 Mr. Woodcock (2007)
## 6580 Good Luck Chuck (2007)
## 6581 Into the Wild (2007)
## 6582 Game Plan, The (2007)
## 6583 Lust, Caution (Se, jie) (2007)
## 6584 Seeker: The Dark Is Rising, The (2007)
## 6585 Heartbreak Kid, The (2007)
## 6586 Dan in Real Life (2007)
## 6587 Darjeeling Limited, The (2007)
## 6588 We Own the Night (2007)
## 6589 Elizabeth: The Golden Age (2007)
## 6590 Michael Clayton (2007)
## 6591 Sleuth (2007)
## 6592 Lars and the Real Girl (2007)
## 6593 30 Days of Night (2007)
## 6594 Gone Baby Gone (2007)
## 6595 Comebacks, The (2007)
## 6596 Weirdsville (2007)
## 6597 Assassination of Jesse James by the Coward Robert Ford, The (2007)
## 6598 10th & Wolf (2006)
## 6599 Persepolis (2007)
## 6600 Control (2007)
## 6601 The Jane Austen Book Club (2007)
## 6602 Last Winter, The (2006)
## 6603 Black Sheep (2006)
## 6604 Edge of Heaven, The (Auf der anderen Seite) (2007)
## 6605 Saw IV (2007)
## 6606 For the Bible Tells Me So (2007)
## 6607 My Kid Could Paint That (2007)
## 6608 Elite Squad (Tropa de Elite) (2007)
## 6609 King of California (2007)
## 6610 American Gangster (2007)
## 6611 Bee Movie (2007)
## 6612 Before the Devil Knows You're Dead (2007)
## 6613 Diving Bell and the Butterfly, The (Scaphandre et le papillon, Le) (2007)
## 6614 No Country for Old Men (2007)
## 6615 Be Kind Rewind (2008)
## 6616 Itty Bitty Titty Committee (2007)
## 6617 Fugitive, The (1947)
## 6618 August Rush (2007)
## 6619 Man from Earth, The (2007)
## 6620 Lions For Lambs (2007)
## 6621 Beowulf (2007)
## 6622 Southland Tales (2006)
## 6623 Evening with Kevin Smith 2: Evening Harder, An (2006)
## 6624 Harrison Bergeron (1995)
## 6625 I Served the King of England (Obsluhoval jsem anglického krále) (2006)
## 6626 Mist, The (2007)
## 6627 Enchanted (2007)
## 6628 Hitman (2007)
## 6629 Awake (2007)
## 6630 Golden Compass, The (2007)
## 6631 I Am Legend (2007)
## 6632 Alvin and the Chipmunks (2007)
## 6633 Futurama: Bender's Big Score (2007)
## 6634 Margot at the Wedding (2007)
## 6635 I'm Not There (2007)
## 6636 Savages, The (2007)
## 6637 Wrong Turn 2: Dead End (2007)
## 6638 Orphanage, The (Orfanato, El) (2007)
## 6639 Juno (2007)
## 6640 Maxed Out: Hard Times, Easy Credit and the Era of Predatory Lenders (2006)
## 6641 My Blueberry Nights (2007)
## 6642 Helvetica (2007)
## 6643 Bucket List, The (2007)
## 6644 Kite Runner, The (2007)
## 6645 Deaths of Ian Stone, The (2007)
## 6646 Wristcutters: A Love Story (2006)
## 6647 Sweeney Todd: The Demon Barber of Fleet Street (2007)
## 6648 National Treasure: Book of Secrets (2007)
## 6649 There Will Be Blood (2007)
## 6650 Charlie Wilson's War (2007)
## 6651 AVPR: Aliens vs. Predator - Requiem (2007)
## 6652 Walk Hard: The Dewey Cox Story (2007)
## 6653 As You Like It (2006)
## 6654 Drained (O cheiro do Ralo) (2006)
## 6655 Dedication (2007)
## 6656 Water Horse: Legend of the Deep, The (2007)
## 6657 Battlestar Galactica: Razor (2007)
## 6658 P.S. I Love You (2007)
## 6659 27 Dresses (2008)
## 6660 Cassandra's Dream (2007)
## 6661 Like Stars on Earth (Taare Zameen Par) (2007)
## 6662 Band's Visit, The (Bikur Ha-Tizmoret) (2007)
## 6663 [REC] (2007)
## 6664 In the Name of the King: A Dungeon Siege Tale (2008)
## 6665 Cloverfield (2008)
## 6666 Hatchet (2006)
## 6667 Heaven and Earth (Ten to Chi to) (1990)
## 6668 Cat Soup (Nekojiru-so) (2001)
## 6669 Girl Who Leapt Through Time, The (Toki o kakeru shôjo) (2006)
## 6670 First Sunday (2008)
## 6671 Untraceable (2008)
## 6672 Rambo (Rambo 4) (2008)
## 6673 Meet the Spartans (2008)
## 6674 Strange Wilderness (2008)
## 6675 Signal, The (2007)
## 6676 Hellboy II: The Golden Army (2008)
## 6677 In Bruges (2008)
## 6678 World on a Wire (Welt am Draht) (1973)
## 6679 Rise of the Footsoldier (2007)
## 6680 Teeth (2007)
## 6681 Fool's Gold (2008)
## 6682 Jumper (2008)
## 6683 Definitely, Maybe (2008)
## 6684 Air I Breathe, The (2007)
## 6685 Vantage Point (2008)
## 6686 Spiderwick Chronicles, The (2008)
## 6687 Step Up 2 the Streets (2008)
## 6688 Other Boleyn Girl, The (2008)
## 6689 Semi-Pro (2008)
## 6690 Run Fatboy Run (2007)
## 6691 Taxi to the Dark Side (2007)
## 6692 Descent (2007)
## 6693 College Road Trip (2008)
## 6694 10,000 BC (2008)
## 6695 Bank Job, The (2008)
## 6696 Doomsday (2008)
## 6697 Horton Hears a Who! (2008)
## 6698 Funny Games U.S. (2007)
## 6699 Counterfeiters, The (Die Fälscher) (2007)
## 6700 Mongol (2007)
## 6701 War Dance (2007)
## 6702 Love Guru, The (2008)
## 6703 Diary of the Dead (2007)
## 6704 Penelope (2006)
## 6705 City of Men (Cidade dos Homens) (2007)
## 6706 Zeitgeist: The Movie (2007)
## 6707 Justice League: The New Frontier (2008)
## 6708 Heima (2007)
## 6709 Snow Angels (2007)
## 6710 Class, The (Klass) (2007)
## 6711 Dark Knight, The (2008)
## 6712 Never Back Down (2008)
## 6713 Drillbit Taylor (2008)
## 6714 Youth Without Youth (2007)
## 6715 21 (2008)
## 6716 Smart People (2008)
## 6717 Shepherd: Border Patrol, The (2008)
## 6718 Leatherheads (2008)
## 6719 Assembly (Ji jie hao) (2007)
## 6720 Zebraman (2004)
## 6721 Stop-Loss (2008)
## 6722 Shine a Light (2008)
## 6723 Inside (Ã\200 l'intérieur) (2007)
## 6724 Nim's Island (2008)
## 6725 Ruins, The (2008)
## 6726 Forgetting Sarah Marshall (2008)
## 6727 Superhero Movie (2008)
## 6728 Street Kings (2008)
## 6729 Visitor, The (2007)
## 6730 Harold & Kumar Escape from Guantanamo Bay (2008)
## 6731 99 francs (2007)
## 6732 Speed Racer (2008)
## 6733 Forbidden Kingdom, The (2008)
## 6734 Happy-Go-Lucky (2008)
## 6735 Religulous (2008)
## 6736 Outpost (2008)
## 6737 Are You Scared? (2006)
## 6738 Son of Rambow (2007)
## 6739 Super High Me (2007)
## 6740 Outsourced (2006)
## 6741 Baby Mama (2008)
## 6742 Expelled: No Intelligence Allowed (2008)
## 6743 Prom Night (2008)
## 6744 Iron Man (2008)
## 6745 Made of Honor (2008)
## 6746 Redbelt (2008)
## 6747 Taken (2008)
## 6748 Fall, The (2006)
## 6749 What Happens in Vegas... (2008)
## 6750 American Pie Presents Beta House (American Pie 6: Beta House) (2007)
## 6751 Bella (2006)
## 6752 Chronicles of Narnia: Prince Caspian, The (2008)
## 6753 Shelter (2007)
## 6754 Girl Next Door, The (2007)
## 6755 Indiana Jones and the Kingdom of the Crystal Skull (2008)
## 6756 Nina's Heavenly Delights (2006)
## 6757 Sex and the City (2008)
## 6758 Strangers, The (2008)
## 6759 Bigger, Stronger, Faster* (2008)
## 6760 All the Boys Love Mandy Lane (2006)
## 6761 Kung Fu Panda (2008)
## 6762 Recount (2008)
## 6763 Ex Drummer (2007)
## 6764 You Don't Mess with the Zohan (2008)
## 6765 Stuck (2007)
## 6766 Protector, The (1985)
## 6767 Chaos Theory (2007)
## 6768 Boy A (2007)
## 6769 Spiral (2007)
## 6770 Happening, The (2008)
## 6771 Incredible Hulk, The (2008)
## 6772 Children of Huang Shi, The (2008)
## 6773 WALL÷E (2008)
## 6774 Wanted (2008)
## 6775 Hancock (2008)
## 6776 Get Smart (2008)
## 6777 Young People Fucking (a.k.a. YPF) (2007)
## 6778 St. Trinian's (2007)
## 6779 Futurama: The Beast with a Billion Backs (2008)
## 6780 Kit Kittredge: An American Girl (2008)
## 6781 Gonzo: The Life and Work of Dr. Hunter S. Thompson (2008)
## 6782 Wackness, The (2008)
## 6783 Strange Circus (Kimyô na sâkasu) (2005)
## 6784 Encounters at the End of the World (2008)
## 6785 Zombie Strippers! (2008)
## 6786 Frosty the Snowman (1969)
## 6787 Battle for Haditha (2007)
## 6788 Mamma Mia! (2008)
## 6789 Welcome to the Sticks (Bienvenue chez les Ch'tis) (2008)
## 6790 Rogue (2007)
## 6791 It's the Great Pumpkin, Charlie Brown (1966)
## 6792 Journey to the Center of the Earth (2008)
## 6793 Meet Dave (2008)
## 6794 Machine Girl, The (Kataude mashin gâru) (2008)
## 6795 Shrooms (2007)
## 6796 Transsiberian (2008)
## 6797 Stargate: Continuum (2008)
## 6798 Watchmen (2009)
## 6799 Shotgun Stories (2007)
## 6800 Watching the Detectives (2007)
## 6801 Felon (2008)
## 6802 Step Brothers (2008)
## 6803 X-Files: I Want to Believe, The (2008)
## 6804 Man on Wire (2008)
## 6805 Little Drummer Boy, The (1968)
## 6806 Hogfather (Terry Pratchett's Hogfather) (2006)
## 6807 Pathology (2008)
## 6808 Tracey Fragments, The (2007)
## 6809 Zone, The (La Zona) (2007)
## 6810 Edge of Love, The (2008)
## 6811 Heart of a Dog (Sobachye serdtse) (1988)
## 6812 Mummy: Tomb of the Dragon Emperor, The (2008)
## 6813 Midnight Meat Train, The (2008)
## 6814 Frozen River (2008)
## 6815 Vicky Cristina Barcelona (2008)
## 6816 Batman: Gotham Knight (2008)
## 6817 Walker, The (2007)
## 6818 Pineapple Express (2008)
## 6819 Red Cliff (Chi bi) (2008)
## 6820 Sisterhood of the Traveling Pants 2, The (2008)
## 6821 Hell Ride (2008)
## 6822 High School Musical 2 (2007)
## 6823 Tropic Thunder (2008)
## 6824 Star Wars: The Clone Wars (2008)
## 6825 Henry Poole is Here (2008)
## 6826 Mutant Chronicles (2008)
## 6827 Waltz with Bashir (Vals im Bashir) (2008)
## 6828 Let the Right One In (LÃÂ¥t den rätte komma in) (2008)
## 6829 Hamlet 2 (2008)
## 6830 Death Race (2008)
## 6831 House Bunny, The (2008)
## 6832 Rocker, The (2008)
## 6833 I.O.U.S.A. (a.k.a. IOUSA) (2008)
## 6834 Mirrors (2008)
## 6835 Sukiyaki Western Django (2008)
## 6836 Somers Town (2008)
## 6837 Burn After Reading (2008)
## 6838 Disaster Movie (2008)
## 6839 Babylon A.D. (2008)
## 6840 Traitor (2008)
## 6841 Onion Movie, The (2008)
## 6842 Spirit, The (2008)
## 6843 John Adams (2008)
## 6844 Bangkok Dangerous (2008)
## 6845 Sunflower (Xiang ri kui) (2005)
## 6846 Altered (2006)
## 6847 Righteous Kill (2008)
## 6848 Lakeview Terrace (2008)
## 6849 Ghost Town (2008)
## 6850 Crow, The: Wicked Prayer (2005)
## 6851 Appaloosa (2008)
## 6852 Dead Fury (2008)
## 6853 Eagle Eye (2008)
## 6854 How to Lose Friends & Alienate People (2008)
## 6855 Nick and Norah's Infinite Playlist (2008)
## 6856 Sound of the Mountain (Thunder of the Mountain, The) (Yama no oto) (1954)
## 6857 Gomorrah (Gomorra) (2008)
## 6858 Duchess, The (2008)
## 6859 Alone in the Dark II (2008)
## 6860 FLCL (2000)
## 6861 Rachel Getting Married (2008)
## 6862 Body of Lies (2008)
## 6863 City of Ember (2008)
## 6864 20,000 Leagues Under the Sea (1916)
## 6865 Max Payne (2008)
## 6866 Zack and Miri Make a Porno (2008)
## 6867 W. (2008)
## 6868 My Best Friend's Girl (2008)
## 6869 Synecdoche, New York (2008)
## 6870 Secret Life of Bees, The (2008)
## 6871 American Carol, An (2008)
## 6872 Wave, The (Welle, Die) (2008)
## 6873 Tokyo-Ga (1985)
## 6874 Angus, Thongs and Perfect Snogging (2008)
## 6875 Pride and Glory (2008)
## 6876 Express, The (2008)
## 6877 Babylon 5: The Legend of the Rangers: To Live and Die in Starlight (2002)
## 6878 Babylon 5: The Lost Tales - Voices in the Dark (2007)
## 6879 RocknRolla (2008)
## 6880 Futurama: Bender's Game (2008)
## 6881 Tin Man (2007)
## 6882 Madagascar: Escape 2 Africa (2008)
## 6883 Blindness (2008)
## 6884 Changeling (2008)
## 6885 Road, The (2009)
## 6886 Slumdog Millionaire (2008)
## 6887 Quantum of Solace (2008)
## 6888 Role Models (2008)
## 6889 Tokyo! (2008)
## 6890 JCVD (2008)
## 6891 Cinderella (1997)
## 6892 Crows Zero (Kurôzu zero) (2007)
## 6893 Krabat (2008)
## 6894 Camp Rock (2008)
## 6895 Farscape: The Peacekeeper Wars (2004)
## 6896 Saw V (2008)
## 6897 Sex Drive (2008)
## 6898 The Island (2006)
## 6899 Beverly Hills Chihuahua (2008)
## 6900 Tattooed Life (Irezumi ichidai) (1965)
## 6901 Class, The (Entre les murs) (2008)
## 6902 Splinter (2008)
## 6903 Australia (2008)
## 6904 Bolt (2008)
## 6905 Milk (2008)
## 6906 Twilight (2008)
## 6907 Children, The (2008)
## 6908 Transporter 3 (2008)
## 6909 Four Christmases (2008)
## 6910 Boy in the Striped Pajamas, The (Boy in the Striped Pyjamas, The) (2008)
## 6911 Fireproof (2008)
## 6912 Igor (2008)
## 6913 Dinotopia (2002)
## 6914 Hunger (2008)
## 6915 Punisher: War Zone (2008)
## 6916 Shrek the Halls (2007)
## 6917 Pervert's Guide to Cinema, The (2006)
## 6918 Wallace and Gromit in 'A Matter of Loaf and Death' (2008)
## 6919 Day the Earth Stood Still, The (2008)
## 6920 Che: Part One (2008)
## 6921 Che: Part Two (2008)
## 6922 Doubt (2008)
## 6923 Gran Torino (2008)
## 6924 Frost/Nixon (2008)
## 6925 Reader, The (2008)
## 6926 Sword of the Stranger (Sutorejia: Mukô hadan) (2007)
## 6927 Seven Pounds (2008)
## 6928 Wrestler, The (2008)
## 6929 Curious Case of Benjamin Button, The (2008)
## 6930 Yes Man (2008)
## 6931 Valkyrie (2008)
## 6932 5 Centimeters per Second (Byôsoku 5 senchimêtoru) (2007)
## 6933 War of the Worlds (2005)
## 6934 Ben X (2007)
## 6935 Bedtime Stories (2008)
## 6936 Choke (2008)
## 6937 Revolutionary Road (2008)
## 6938 Blackadder Back & Forth (1999)
## 6939 Blackadder's Christmas Carol (1988)
## 6940 Dear Zachary: A Letter to a Son About His Father (2008)
## 6941 Wild Child (2008)
## 6942 Defiance (2008)
## 6943 Zeitgeist: Addendum (2008)
## 6944 Marley & Me (2008)
## 6945 Ponyo (Gake no ue no Ponyo) (2008)
## 6946 General Died at Dawn, The (1936)
## 6947 Earthsea (Legend of Earthsea) (2004)
## 6948 Ip Man (2008)
## 6949 Tale of Despereaux, The (2008)
## 6950 Bride Wars (2009)
## 6951 Gamers, The: Dorkness Rising (2008)
## 6952 Mesrine: Killer Instinct (L'instinct de mort) (2008)
## 6953 My Bloody Valentine 3-D (2009)
## 6954 Battle in Seattle (2007)
## 6955 Timecrimes (CronocrÃÂmenes, Los) (2007)
## 6956 Fire and Ice (2008)
## 6957 Underworld: Rise of the Lycans (2009)
## 6958 Inkheart (2008)
## 6959 Revenge of the Nerds III: The Next Generation (1992)
## 6960 Revenge of the Nerds IV: Nerds in Love (1994)
## 6961 Paul Blart: Mall Cop (2009)
## 6962 Notorious (2009)
## 6963 Uninvited, The (2009)
## 6964 Outlander (2008)
## 6965 Eden Lake (2008)
## 6966 Coraline (2009)
## 6967 Push (2009)
## 6968 International, The (2009)
## 6969 He's Just Not That Into You (2009)
## 6970 Dead Like Me: Life After Death (2009)
## 6971 Futurama: Into the Wild Green Yonder (2009)
## 6972 Frontière(s) (2007)
## 6973 11th Hour, The (2007)
## 6974 Afro Samurai: Resurrection (2009)
## 6975 Departures (Okuribito) (2008)
## 6976 My Name Is Bruce (2007)
## 6977 Funny People (2009)
## 6978 Berlin Calling (2008)
## 6979 Nuremberg (2000)
## 6980 Away We Go (2009)
## 6981 Divo, Il (2008)
## 6982 Friday the 13th (2009)
## 6983 Good, the Bad, the Weird, The (Joheunnom nabbeunnom isanghannom) (2008)
## 6984 Pink Panther 2, The (2009)
## 6985 Rock-A-Doodle (1991)
## 6986 Dr. Horrible's Sing-Along Blog (2008)
## 6987 Cottage, The (2008)
## 6988 I Love You, Man (2009)
## 6989 Dance of the Dead (2008)
## 6990 Haunting in Connecticut, The (2009)
## 6991 Duplicity (2009)
## 6992 Knowing (2009)
## 6993 Girl with the Dragon Tattoo, The (Män som hatar kvinnor) (2009)
## 6994 Sunshine Cleaning (2008)
## 6995 Kung Fu Panda: Secrets of the Furious Five (2008)
## 6996 Echelon Conspiracy (2009)
## 6997 Monsters vs. Aliens (2009)
## 6998 Baader Meinhof Komplex, Der (2008)
## 6999 Big Stan (2007)
## 7000 Strictly Sexual (2008)
## 7001 Anvil! The Story of Anvil (2008)
## 7002 Observe and Report (2009)
## 7003 Adventureland (2009)
## 7004 Confessions of a Shopaholic (2009)
## 7005 The Butterfly Effect 3: Revelations (2009)
## 7006 Man on the Flying Trapeze (1935)
## 7007 Fast & Furious (Fast and the Furious 4, The) (2009)
## 7008 In the Loop (2009)
## 7009 Pirate Radio (2009)
## 7010 17 Again (2009)
## 7011 Inglourious Basterds (2009)
## 7012 State of Play (2009)
## 7013 Damned United, The (2009)
## 7014 Crank: High Voltage (2009)
## 7015 Moon (2009)
## 7016 Young Victoria, The (2009)
## 7017 X-Men Origins: Wolverine (2009)
## 7018 Sin Nombre (2009)
## 7019 Star Trek (2009)
## 7020 Great Buck Howard, The (2008)
## 7021 Flatfoot on the Nile (Piedone d'Egitto) (1980)
## 7022 Red Cliff Part II (Chi Bi Xia: Jue Zhan Tian Xia) (2009)
## 7023 Earth (2007)
## 7024 Stanley Kubrick: A Life in Pictures (2001)
## 7025 Crossing Over (2009)
## 7026 Angels & Demons (2009)
## 7027 Scorpio (1973)
## 7028 Balls Out: Gary the Tennis Coach (2009)
## 7029 Powder Blue (2009)
## 7030 Fanboys (2009)
## 7031 Terminator Salvation (2009)
## 7032 Night at the Museum: Battle of the Smithsonian (2009)
## 7033 Were the World Mine (2008)
## 7034 Brothers Bloom, The (2008)
## 7035 Paisan (PaisÃÂ ) (1946)
## 7036 I Do: How to Get Married and Stay Single (Prête-moi ta main) (2006)
## 7037 Soloist, The (2009)
## 7038 Neon Genesis Evangelion: Death & Rebirth (Shin seiki Evangelion Gekijô-ban: Shito shinsei) (1997)
## 7039 Drag Me to Hell (2009)
## 7040 Up (2009)
## 7041 Fullmetal Alchemist the Movie: Conqueror of Shamballa (Gekijô-ban hagane no renkinjutsushi: Shanbara wo yuku mono) (2005)
## 7042 Fired Up (2009)
## 7043 In the Electric Mist (2009)
## 7044 Hangover, The (2009)
## 7045 Killshot (2008)
## 7046 Antichrist (2009)
## 7047 Sweeney Todd (2006)
## 7048 Boy Eats Girl (2005)
## 7049 Marius and Jeanette (Marius et Jeannette) (1997)
## 7050 Ernest Rides Again (1993)
## 7051 Special (2006)
## 7052 Dead Snow (Død snø) (2009)
## 7053 Land of the Lost (2009)
## 7054 Imagine That (2009)
## 7055 Taking of Pelham 1 2 3, The (2009)
## 7056 Stoning of Soraya M., The (2008)
## 7057 Proposal, The (2009)
## 7058 Year One (2009)
## 7059 Land That Time Forgot, The (1975)
## 7060 Garfield's Pet Force (2009)
## 7061 Hurt Locker, The (2008)
## 7062 Breakfast with Scot (2007)
## 7063 Limits of Control, The (2009)
## 7064 Raiders of the Lost Ark: The Adaptation (1989)
## 7065 Transformers: Revenge of the Fallen (2009)
## 7066 Home (2009)
## 7067 Whatever Works (2009)
## 7068 Ghosts of Girlfriends Past (2009)
## 7069 Public Enemies (2009)
## 7070 Ice Age: Dawn of the Dinosaurs (2009)
## 7071 Prison Break: The Final Break (2009)
## 7072 Daria: Is It College Yet? (2002)
## 7073 My Sister's Keeper (2009)
## 7074 Hood of Horror (2006)
## 7075 Watchmen: Tales of the Black Freighter (2009)
## 7076 (500) Days of Summer (2009)
## 7077 Brüno (Bruno) (2009)
## 7078 Librarian, The: The Curse of the Judas Chalice (2008)
## 7079 Harry Potter and the Half-Blood Prince (2009)
## 7080 Roots (1977)
## 7081 Eichmann (2007)
## 7082 Open Water 2: Adrift (2006)
## 7083 Imaginarium of Doctor Parnassus, The (2009)
## 7084 9to5: Days in Porn (a.k.a. 9 to 5: Days in Porn) (2008)
## 7085 Humpday (2009)
## 7086 Polytechnique (2009)
## 7087 Orphan (2009)
## 7088 Ugly Truth, The (2009)
## 7089 Collector, The (2009)
## 7090 Perfect Getaway, A (2009)
## 7091 District 9 (2009)
## 7092 Julie & Julia (2009)
## 7093 Obsessed (2009)
## 7094 Race to Witch Mountain (2009)
## 7095 Hannah Montana: The Movie (2009)
## 7096 G.I. Joe: The Rise of Cobra (2009)
## 7097 12 Rounds (2009)
## 7098 Max Manus (2008)
## 7099 Winds of the Wasteland (1936)
## 7100 Lost in Austen (2008)
## 7101 Evangelion: 1.0 You Are (Not) Alone (Evangerion shin gekijôban: Jo) (2007)
## 7102 Deal, The (2008)
## 7103 Goods: Live Hard, Sell Hard, The (2009)
## 7104 Time Traveler's Wife, The (2009)
## 7105 I Can't Think Straight (2007)
## 7106 Miss March (2009)
## 7107 I Love You, Beth Cooper (2009)
## 7108 Paper Heart (2009)
## 7109 G-Force (2009)
## 7110 Christopher Columbus: The Discovery (1992)
## 7111 Tetro (2009)
## 7112 Bronson (2009)
## 7113 It Might Get Loud (2008)
## 7114 My Life in Ruins (2009)
## 7115 Troll 2 (1990)
## 7116 Taking Woodstock (2009)
## 7117 If These Walls Could Talk (1996)
## 7118 Halloween II (2009)
## 7119 Secret in Their Eyes, The (El secreto de sus ojos) (2009)
## 7120 9 (2009)
## 7121 Frequently Asked Questions About Time Travel (2009)
## 7122 White Ribbon, The (Das weiße Band) (2009)
## 7123 Green Lantern: First Flight (2009)
## 7124 Most Hated Family in America, The (2007)
## 7125 Pandorum (2009)
## 7126 Death of a Cyclist (Muerte de un ciclista) (1955)
## 7127 Men Who Stare at Goats, The (2009)
## 7128 Hunt For Gollum, The (2009)
## 7129 Jennifer's Body (2009)
## 7130 Informant!, The (2009)
## 7131 Extract (2009)
## 7132 Final Destination, The (Final Destination 4) (Final Destination in 3-D, The) (2009)
## 7133 Gamer (2009)
## 7134 Cloudy with a Chance of Meatballs (2009)
## 7135 Tyler Perry's I Can Do Bad All by Myself (2009)
## 7136 Food, Inc. (2008)
## 7137 Attack of the 50 Foot Woman (1958)
## 7138 Thirst (Bakjwi) (2009)
## 7139 Bright Star (2009)
## 7140 Blood Creek (a.k.a. Town Creek) (2009)
## 7141 Paranormal Activity (2009)
## 7142 World's Greatest Dad (2009)
## 7143 Still Walking (Aruitemo aruitemo) (2008)
## 7144 Blood of the Beasts (Sang des bêtes, Le) (1949)
## 7145 Cove, The (2009)
## 7146 Serious Man, A (2009)
## 7147 City Island (2009)
## 7148 Ink (2009)
## 7149 Metropia (2009)
## 7150 Haunted World of El Superbeasto, The (2009)
## 7151 Trick 'r Treat (2007)
## 7152 Whip It (2009)
## 7153 Invention of Lying, The (2009)
## 7154 Surrogates (2009)
## 7155 Zombieland (2009)
## 7156 Assassination of a High School President (2008)
## 7157 Education, An (2009)
## 7158 Coco Before Chanel (Coco avant Chanel) (2009)
## 7159 Burma VJ: Reporting from a Closed Country (Burma VJ: Reporter i et lukket land) (2008)
## 7160 Couples Retreat (2009)
## 7161 I Sell the Dead (2008)
## 7162 Where the Wild Things Are (2009)
## 7163 Legionnaire (1998)
## 7164 New York, I Love You (2009)
## 7165 Law Abiding Citizen (2009)
## 7166 Misfortunates, The (De helaasheid der dingen) (2009)
## 7167 Mary and Max (2009)
## 7168 Spread (2009)
## 7169 Tournament, The (2009)
## 7170 Princess and the Pirate, The (1944)
## 7171 Aelita: The Queen of Mars (Aelita) (1924)
## 7172 Up in the Air (2009)
## 7173 Balance (1989)
## 7174 Saw VI (2009)
## 7175 Love Exposure (Ai No Mukidashi) (2008)
## 7176 Cirque du Freak: The Vampire's Assistant (2009)
## 7177 Boondock Saints II: All Saints Day, The (2009)
## 7178 Black Dynamite (2009)
## 7179 Welcome to Dongmakgol (2005)
## 7180 Gentlemen Broncos (2009)
## 7181 Fantastic Mr. Fox (2009)
## 7182 Christmas Carol, A (2009)
## 7183 Battlestar Galactica: The Plan (2009)
## 7184 Private Lives of Pippa Lee, The (2009)
## 7185 Partly Cloudy (2009)
## 7186 2012 (2009)
## 7187 Precious (2009)
## 7188 Bad Lieutenant: Port of Call New Orleans (2009)
## 7189 Twilight Saga: New Moon, The (2009)
## 7190 Derailed (2002)
## 7191 Messenger, The (2009)
## 7192 Ninja Assassin (2009)
## 7193 Cell 211 (Celda 211) (2009)
## 7194 Patriot, The (1998)
## 7195 Teenage Mutant Ninja Turtles: Turtles Forever (2009)
## 7196 Merry Madagascar (2009)
## 7197 Brothers (2009)
## 7198 Garage (2007)
## 7199 Blind Side, The (2009)
## 7200 Mickey's Once Upon a Christmas (1999)
## 7201 Shrink (2009)
## 7202 Old Dogs (2009)
## 7203 Planet 51 (2009)
## 7204 Earthlings (2006)
## 7205 Single Man, A (2009)
## 7206 Lovely Bones, The (2009)
## 7207 Invictus (2009)
## 7208 Princess and the Frog, The (2009)
## 7209 Peacekeeper, The (1997)
## 7210 Did You Hear About the Morgans? (2009)
## 7211 Snow White (1916)
## 7212 Alice (2009)
## 7213 Avatar (2009)
## 7214 It's Complicated (2009)
## 7215 Sherlock Holmes (2009)
## 7216 Crazy Heart (2009)
## 7217 Alvin and the Chipmunks: The Squeakquel (2009)
## 7218 American Pie Presents: The Book of Love (American Pie 7: The Book of Love) (2009)
## 7219 Sorority Babes in the Slimeball Bowl-O-Rama (1988)
## 7220 Pontypool (2008)
## 7221 Youth in Revolt (2009)
## 7222 Daybreakers (2010)
## 7223 Hachiko: A Dog's Story (a.k.a. Hachi: A Dog's Tale) (2009)
## 7224 Leap Year (2010)
## 7225 Book of Eli, The (2010)
## 7226 Girl Who Kicked the Hornet's Nest, The (Luftslottet som sprängdes) (2009)
## 7227 Prophet, A (Un Prophète) (2009)
## 7228 Staten Island (2009)
## 7229 Maiden Heist, The (2009)
## 7230 Blood: The Last Vampire (2009)
## 7231 MacGyver: Lost Treasure of Atlantis (1994)
## 7232 Pekka ja Pätkä Suezilla (1958)
## 7233 Bart Got a Room (2008)
## 7234 Project A 2 ('A' gai wak juk jap) (1987)
## 7235 Robin-B-Hood (Bo bui gai wak) (2006)
## 7236 Concert, Le (2009)
## 7237 Ninja (2009)
## 7238 Asterix at the Olympic Games (Astérix aux jeux olympiques) (2008)
## 7239 Chaser, The (Chugyeogja) (2008)
## 7240 Meantime (1984)
## 7241 Rudolph, the Red-Nosed Reindeer (1964)
## 7242 Dennis the Menace Christmas, A (2007)
## 7243 Undisputed II: Last Man Standing (2006)
## 7244 3 Idiots (2009)
## 7245 Legion (2010)
## 7246 Stan Helsing (2009)
## 7247 Peter Pan (1960)
## 7248 Wicked City (Yôjû toshi) (1987)
## 7249 When in Rome (2010)
## 7250 Dream of Light (a.k.a. Quince Tree Sun, The) (Sol del membrillo, El) (1992)
## 7251 Triangle (2009)
## 7252 I Love You Phillip Morris (2009)
## 7253 Anne of Green Gables: The Sequel (a.k.a. Anne of Avonlea) (1987)
## 7254 Temple Grandin (2010)
## 7255 Captain Newman, M.D. (1963)
## 7256 House of the Devil, The (2009)
## 7257 Valentine's Day (2010)
## 7258 Wolfman, The (2010)
## 7259 Shutter Island (2010)
## 7260 Persuasion (2007)
## 7261 Girl Who Played with Fire, The (Flickan som lekte med elden) (2009)
## 7262 Percy Jackson & the Olympians: The Lightning Thief (2010)
## 7263 Cop Out (2010)
## 7264 Ghost Writer, The (2010)
## 7265 Secret of Kells, The (2009)
## 7266 Spy Next Door, The (2010)
## 7267 Agora (2009)
## 7268 Motherhood (2009)
## 7269 District 13: Ultimatum (Banlieue 13 - Ultimatum) (2009)
## 7270 Yes Men Fix the World, The (2009)
## 7271 Mike Bassett: England Manager (2001)
## 7272 Crazies, The (2010)
## 7273 Dear John (2010)
## 7274 Last Train Home (2009)
## 7275 Tooth Fairy (2010)
## 7276 Gentlemen of Fortune (Dzhentlmeny udachi) (1972)
## 7277 [REC]ò (2009)
## 7278 Room, The (2003)
## 7279 Alice in Wonderland (2010)
## 7280 Town Called Panic, A (Panique au village) (2009)
## 7281 Green Zone (2010)
## 7282 From Paris with Love (2010)
## 7283 Dorian Gray (2009)
## 7284 Greenberg (2010)
## 7285 She's Out of My League (2010)
## 7286 Harry Brown (2009)
## 7287 Remember Me (2010)
## 7288 Burrowers, The (2008)
## 7289 Frozen (2010)
## 7290 Generation X (1996)
## 7291 Little Ashes (2008)
## 7292 Our Family Wedding (2010)
## 7293 Bounty Hunter, The (2010)
## 7294 Leaves of Grass (2009)
## 7295 Women in Trouble (2009)
## 7296 Mondo Cane (1962)
## 7297 Repo Men (2010)
## 7298 Case 39 (2009)
## 7299 Oceans (Océans) (2009)
## 7300 Slammin' Salmon, The (2009)
## 7301 Hot Tub Time Machine (2010)
## 7302 Mother (Madeo) (2009)
## 7303 How to Train Your Dragon (2010)
## 7304 Bone Man, The (Der Knochenmann) (2009)
## 7305 Micmacs (Micmacs ÃÂ tire-larigot) (2009)
## 7306 Clash of the Titans (2010)
## 7307 Kick-Ass (2010)
## 7308 Date Night (2010)
## 7309 Emperor's New Groove 2: Kronk's New Groove, The (2005)
## 7310 Steam of Life (Miesten vuoro) (2010)
## 7311 Mortadelo & Filemon: The Big Adventure (La gran aventura de Mortadelo y Filemón) (2003)
## 7312 American Drug War: The Last White Hope (2007)
## 7313 Runaways, The (2010)
## 7314 Wild China (2008)
## 7315 Death at a Funeral (2010)
## 7316 Valhalla Rising (2009)
## 7317 Diary of a Wimpy Kid (2010)
## 7318 Union: The Business Behind Getting High, The (2007)
## 7319 Disgrace (2008)
## 7320 Losers, The (2010)
## 7321 Last Song, The (2010)
## 7322 Cyrus (2010)
## 7323 Human Centipede, The (First Sequence) (2009)
## 7324 Exit Through the Gift Shop (2010)
## 7325 Iron Man 2 (2010)
## 7326 MacGruber (2010)
## 7327 Three Men and a Cradle (3 hommes et un couffin) (1985)
## 7328 Sky Crawlers, The (Sukai kurora) (2008)
## 7329 Cargo (2009)
## 7330 Nightmare on Elm Street, A (2010)
## 7331 Four Lions (2010)
## 7332 St Trinian's 2: The Legend of Fritton's Gold (2009)
## 7333 12 Angry Men (1997)
## 7334 Robin Hood (2010)
## 7335 Lovers & Leavers (Kuutamolla) (2002)
## 7336 Merantau (2009)
## 7337 Stingray Sam (2009)
## 7338 Cemetery Junction (2010)
## 7339 Blue Valentine (2010)
## 7340 Killers (2010)
## 7341 Buried (2010)
## 7342 Shake Hands with the Devil (2007)
## 7343 Prince of Persia: The Sands of Time (2010)
## 7344 Please Give (2010)
## 7345 Baarìa (2009)
## 7346 Ricky Gervais Live: Animals (2003)
## 7347 Sex and the City 2 (2010)
## 7348 Get Him to the Greek (2010)
## 7349 Unthinkable (2010)
## 7350 Back-up Plan, The (2010)
## 7351 Splice (2009)
## 7352 Letters to Juliet (2010)
## 7353 Exam (2009)
## 7354 Jonah Hex (2010)
## 7355 A-Team, The (2010)
## 7356 Toy Story 3 (2010)
## 7357 Ricky Gervais Live 3: Fame (2007)
## 7358 Winter's Bone (2010)
## 7359 Scalphunters, The (1968)
## 7360 Barking Dogs Never Bite (Flandersui gae) (2000)
## 7361 Shrek Forever After (a.k.a. Shrek: The Final Chapter) (2010)
## 7362 TiMER (2009)
## 7363 Best Worst Movie (2009)
## 7364 Twilight Saga: Eclipse, The (2010)
## 7365 Enter the Void (2009)
## 7366 Last Airbender, The (2010)
## 7367 Endgame (2009)
## 7368 Empire of Dreams: The Story of the 'Star Wars' Trilogy (2004)
## 7369 South Park: Imaginationland (2008)
## 7370 Predators (2010)
## 7371 When You're Strange (2009)
## 7372 Despicable Me (2010)
## 7373 Inception (2010)
## 7374 Grown Ups (2010)
## 7375 Sorcerer's Apprentice, The (2010)
## 7376 Knight and Day (2010)
## 7377 Karate Kid, The (2010)
## 7378 Kids Are All Right, The (2010)
## 7379 Serbian Film, A (Srpski film) (2010)
## 7380 Cherrybomb (2009)
## 7381 Batman: Under the Red Hood (2010)
## 7382 Salt (2010)
## 7383 No. 1 Ladies' Detective Agency, The (2008)
## 7384 Watch Out for the Automobile (Beregis avtomobilya) (1966)
## 7385 Mr. Nobody (2009)
## 7386 Dinner for Schmucks (2010)
## 7387 Deadly Outlaw: Rekka (a.k.a. Violent Fire) (Jitsuroku Andô Noboru kyôdô-den: Rekka) (2002)
## 7388 Hellsinki (Rööperi) (2009)
## 7389 Ip Man 2 (2010)
## 7390 Ramona and Beezus (2010)
## 7391 Rebound, The (2009)
## 7392 Other Guys, The (2010)
## 7393 Two Escobars, The (2010)
## 7394 Paper Man (2009)
## 7395 Expendables, The (2010)
## 7396 Scott Pilgrim vs. the World (2010)
## 7397 I Killed My Mother (J'ai tué ma mère) (2009)
## 7398 Heartless (2009)
## 7399 Piranha (Piranha 3D) (2010)
## 7400 Extraordinary Adventures of Adèle Blanc-Sec, The (2010)
## 7401 Get Low (2009)
## 7402 Joneses, The (2009)
## 7403 Dragon Ball Z: Dead Zone (Doragon bôru Z 1: Ora no Gohan wo kaese) (1989)
## 7404 Last Exorcism, The (2010)
## 7405 Sisters (Syostry) (2001)
## 7406 American, The (2010)
## 7407 Jackass 2.5 (2007)
## 7408 Horde, The (La Horde) (2009)
## 7409 Switch, The (2010)
## 7410 Machete (2010)
## 7411 Going the Distance (2010)
## 7412 Resident Evil: Afterlife (2010)
## 7413 Princess (Prinsessa) (2010)
## 7414 Social Network, The (2010)
## 7415 Man Vanishes, A (Ningen Johatsu) (1967)
## 7416 Town, The (2010)
## 7417 Easy A (2010)
## 7418 Eat Pray Love (2010)
## 7419 Howl (2010)
## 7420 I'm Still Here (2010)
## 7421 Patrik Age 1.5 (Patrik 1,5) (2008)
## 7422 Flipped (2010)
## 7423 Wall Street: Money Never Sleeps (2010)
## 7424 Legend of the Guardians: The Owls of Ga'Hoole (2010)
## 7425 It's Kind of a Funny Story (2010)
## 7426 Middle Men (2009)
## 7427 Alice in Wonderland (1933)
## 7428 Let Me In (2010)
## 7429 Sintel (2010)
## 7430 Secretariat (2010)
## 7431 Devil (2010)
## 7432 You Again (2010)
## 7433 Life as We Know It (2010)
## 7434 Catfish (2010)
## 7435 You Will Meet a Tall Dark Stranger (2010)
## 7436 Stone (2010)
## 7437 Inside Job (2010)
## 7438 Monsters (2010)
## 7439 Never Let Me Go (2010)
## 7440 Illusionist, The (L'illusionniste) (2010)
## 7441 Luck by Chance (2009)
## 7442 Rubber (2010)
## 7443 Jackass 3D (2010)
## 7444 Restrepo (2010)
## 7445 Waiting for 'Superman' (2010)
## 7446 Red (2010)
## 7447 In a Better World (Hævnen) (2010)
## 7448 Heartbreaker (L'Arnacoeur) (2010)
## 7449 Paranormal Activity 2 (2010)
## 7450 Heartbeats (Les amours imaginaires) (2010)
## 7451 Hereafter (2010)
## 7452 Undisputed III: Redemption (2010)
## 7453 Saw VII 3D - The Final Chapter (2010)
## 7454 Due Date (2010)
## 7455 127 Hours (2010)
## 7456 Megamind (2010)
## 7457 Black Swan (2010)
## 7458 I Shot Jesse James (1949)
## 7459 Unstoppable (2010)
## 7460 Morning Glory (2010)
## 7461 Certified Copy (Copie conforme) (2010)
## 7462 Next Three Days, The (2010)
## 7463 Somewhere (2010)
## 7464 Biutiful (2010)
## 7465 First Beautiful Thing, The (La prima cosa bella) (2010)
## 7466 Harry Potter and the Deathly Hallows: Part 1 (2010)
## 7467 King's Speech, The (2010)
## 7468 Tangled (2010)
## 7469 Art of the Steal, The (2009)
## 7470 Fighter, The (2010)
## 7471 Romantics, The (2010)
## 7472 Loved Ones, The (2009)
## 7473 Casino Jack (2010)
## 7474 Vincent Wants to Sea (Vincent will meer) (2010)
## 7475 London Boulevard (2010)
## 7476 Skyline (2010)
## 7477 Beastly (2011)
## 7478 Love and Other Drugs (2010)
## 7479 Chronicles of Narnia: The Voyage of the Dawn Treader, The (2010)
## 7480 Tourist, The (2010)
## 7481 Rare Exports: A Christmas Tale (Rare Exports) (2010)
## 7482 Hatchet II (2010)
## 7483 All Good Things (2010)
## 7484 True Grit (2010)
## 7485 Tron: Legacy (2010)
## 7486 How Do You Know (2010)
## 7487 Barney's Version (2010)
## 7488 Company Men, The (2010)
## 7489 One-Armed Swordsman, The (Dubei dao) (1967)
## 7490 I Saw the Devil (Akmareul boatda) (2010)
## 7491 Trash Humpers (2009)
## 7492 Faster (2010)
## 7493 Little Big Soldier (Da bing xiao jiang) (2010)
## 7494 Rabbit Hole (2010)
## 7495 One Week (1920)
## 7496 Little Fockers (2010)
## 7497 Gulliver's Travels (2010)
## 7498 Sweetgrass (2009)
## 7499 Burlesque (2010)
## 7500 Secret World of Arrietty, The (Kari-gurashi no Arietti) (2010)
## 7501 Tucker & Dale vs Evil (2010)
## 7502 Yogi Bear (2010)
## 7503 Made in Dagenham (2010)
## 7504 Green Hornet, The (2011)
## 7505 Way Back, The (2010)
## 7506 Warrior's Way, The (2010)
## 7507 Season of the Witch (2011)
## 7508 Amer (2009)
## 7509 Cowboys & Aliens (2011)
## 7510 Anything for Her (Pour elle) (2008)
## 7511 Day & Night (2010)
## 7512 Marwencol (2010)
## 7513 Dilemma, The (2011)
## 7514 Down Argentine Way (1940)
## 7515 Trip, The (2010)
## 7516 Limitless (2011)
## 7517 Happy People: A Year in the Taiga (2010)
## 7518 Evangelion: 2.0 You Can (Not) Advance (Evangerion shin gekijôban: Ha) (2009)
## 7519 I Spit on Your Grave (2010)
## 7520 Even the Rain (También la lluvia) (2010)
## 7521 It Happened on Fifth Avenue (1947)
## 7522 Zeitgeist: Moving Forward (2011)
## 7523 No Strings Attached (2011)
## 7524 Lincoln Lawyer, The (2011)
## 7525 All-Star Superman (2011)
## 7526 Girls About Town (1931)
## 7527 Kill! (Kiru) (1968)
## 7528 Pekka ja Pätkä salapoliiseina (1957)
## 7529 Unknown (2011)
## 7530 Cedar Rapids (2011)
## 7531 Gnomeo & Juliet (2011)
## 7532 Burke and Hare (2010)
## 7533 Castaway on the Moon (Kimssi pyoryugi) (2009)
## 7534 Paul (2011)
## 7535 Asphyx, The (1973)
## 7536 Brother 2 (Brat 2) (2000)
## 7537 Emma (2009)
## 7538 Drive Angry (2011)
## 7539 Rango (2011)
## 7540 Take Me Home Tonight (2011)
## 7541 Confessions (Kokuhaku) (2010)
## 7542 Adjustment Bureau, The (2011)
## 7543 Mechanic, The (2011)
## 7544 Hall Pass (2011)
## 7545 Eagle, The (2011)
## 7546 I Am Number Four (2011)
## 7547 Battle: Los Angeles (2011)
## 7548 Summer Wars (Samâ wôzu) (2009)
## 7549 Sunset Limited, The (2011)
## 7550 Winnie the Pooh and the Honey Tree (1966)
## 7551 Mars Needs Moms (2011)
## 7552 Scooby-Doo! Curse of the Lake Monster (2010)
## 7553 Winnie the Pooh and Tigger Too (1974)
## 7554 Hard Ticket to Hawaii (1987)
## 7555 Elite Squad: The Enemy Within (Tropa de Elite 2 - O Inimigo Agora Ãâ° Outro) (2010)
## 7556 Mesrine: Public Enemy #1 (L'ennemi public nð1) (2008)
## 7557 Just Go with It (2011)
## 7558 Cave of Forgotten Dreams (2010)
## 7559 Red Riding Hood (2011)
## 7560 Big Mommas: Like Father, Like Son (2011)
## 7561 Super (2010)
## 7562 Troll Hunter, The (Trolljegeren) (2010)
## 7563 Source Code (2011)
## 7564 Jane Eyre (2011)
## 7565 Sucker Punch (2011)
## 7566 Chalet Girl (2011)
## 7567 BURN-E (2008)
## 7568 Senna (2010)
## 7569 Family Guy Presents: It's a Trap (2010)
## 7570 Insidious (2010)
## 7571 Hobo with a Shotgun (2011)
## 7572 Win Win (2011)
## 7573 Room in Rome (Habitación en Roma) (2010)
## 7574 Boy (2010)
## 7575 Diary of a Wimpy Kid: Rodrick Rules (2011)
## 7576 Henry's Crime (2010)
## 7577 Hop (2011)
## 7578 Playing the Victim (Izobrazhaya zhertvu) (2006)
## 7579 Films to Keep You Awake: The Christmas Tale (PelÃÂculas para no dormir: Cuento de navidad) (2005)
## 7580 13 Assassins (Jûsan-nin no shikaku) (2010)
## 7581 Hanna (2011)
## 7582 Connections (1978)
## 7583 Into Eternity (2010)
## 7584 Daffy Duck's Quackbusters (1988)
## 7585 American: The Bill Hicks Story (2009)
## 7586 Arthur (2011)
## 7587 Scream 4 (2011)
## 7588 Rio (2011)
## 7589 Melancholia (2011)
## 7590 Thor (2011)
## 7591 Louis C.K.: Hilarious (2010)
## 7592 Louis C.K.: Chewed Up (2008)
## 7593 Atlas Shrugged: Part 1 (2011)
## 7594 Louis C.K.: Shameless (2007)
## 7595 Mildred Pierce (2011)
## 7596 Voices from the List (2004)
## 7597 Water for Elephants (2011)
## 7598 African Cats (2011)
## 7599 Kill the Irishman (2011)
## 7600 Fast Five (Fast and the Furious 5, The) (2011)
## 7601 Louis Theroux: Law & Disorder (2008)
## 7602 Idiots and Angels (2008)
## 7603 Incendies (2010)
## 7604 Soul Surfer (2011)
## 7605 Something Borrowed (2011)
## 7606 Bridesmaids (2011)
## 7607 Priest (2011)
## 7608 Mothra (Mosura) (1961)
## 7609 Pirates of the Caribbean: On Stranger Tides (2011)
## 7610 Midnight in Paris (2011)
## 7611 The Man from Nowhere (2010)
## 7612 Tree of Life, The (2011)
## 7613 Hangover Part II, The (2011)
## 7614 Nothing to Declare (Rien àdéclarer) (2010)
## 7615 Across the Hall (2009)
## 7616 Roommate, The (2011)
## 7617 Attack the Block (2011)
## 7618 The Way (2010)
## 7619 Let the Bullets Fly (2010)
## 7620 Kung Fu Panda 2 (2011)
## 7621 X-Men: First Class (2011)
## 7622 Submarine (2010)
## 7623 American Grindhouse (2010)
## 7624 Everything Must Go (2010)
## 7625 Beginners (2010)
## 7626 Super 8 (2011)
## 7627 Bernie (1996)
## 7628 Green Lantern (2011)
## 7629 Elektra Luxx (2010)
## 7630 Mr. Popper's Penguins (2011)
## 7631 Bad Teacher (2011)
## 7632 Transformers: Dark of the Moon (2011)
## 7633 Larry Crowne (2011)
## 7634 Your Highness (2011)
## 7635 Too Big to Fail (2011)
## 7636 Takers (2010)
## 7637 My Life as McDull (Mak dau goo si) (2001)
## 7638 Zookeeper (2011)
## 7639 Horrible Bosses (2011)
## 7640 Cars 2 (2011)
## 7641 Between the Folds (2008)
## 7642 Delhi Belly (2011)
## 7643 Upside Down: The Creation Records Story (2010)
## 7644 Monte Carlo (2011)
## 7645 Harry Potter and the Deathly Hallows: Part 2 (2011)
## 7646 Drive (2011)
## 7647 Captain America: The First Avenger (2011)
## 7648 Crazy, Stupid, Love. (2011)
## 7649 One Day (2011)
## 7650 Guard, The (2011)
## 7651 Winnie the Pooh (2011)
## 7652 Woman, The (2011)
## 7653 New One-Armed Swordsman, The (Xin du bi dao) (1971)
## 7654 Mike's New Car (2002)
## 7655 Smurfs, The (2011)
## 7656 Friends with Benefits (2011)
## 7657 Paper Birds (Pájaros de papel) (2010)
## 7658 Blitz (2011)
## 7659 Yellow Sea, The (a.k.a. The Murderer) (Hwanghae) (2010)
## 7660 Our Idiot Brother (2011)
## 7661 SUBWAYStories: Tales from the Underground (1997)
## 7662 Death Race 2 (2010)
## 7663 Rise of the Planet of the Apes (2011)
## 7664 Terri (2011)
## 7665 Change-Up, The (2011)
## 7666 Help, The (2011)
## 7667 30 Minutes or Less (2011)
## 7668 My Afternoons with Margueritte (La tête en friche) (2010)
## 7669 Final Destination 5 (2011)
## 7670 Very Harold & Kumar 3D Christmas, A (2011)
## 7671 Don't Be Afraid of the Dark (2010)
## 7672 Fright Night (2011)
## 7673 Another Earth (2011)
## 7674 Hesher (2010)
## 7675 Stake Land (2010)
## 7676 Debt, The (2011)
## 7677 Colombiana (2011)
## 7678 Bill Cunningham New York (2011)
## 7679 Skin I Live In, The (La piel que habito) (2011)
## 7680 Conan the Barbarian (2011)
## 7681 Walled In (2009)
## 7682 Birdemic: Shock and Terror (2010)
## 7683 Inbetweeners Movie, The (2011)
## 7684 Red State (2011)
## 7685 Pearl Jam Twenty (2011)
## 7686 I Don't Know How She Does It (2011)
## 7687 Shark Night 3D (2011)
## 7688 Contagion (2011)
## 7689 Moneyball (2011)
## 7690 Neds (2010)
## 7691 Cold Fish (Tsumetai nettaigyo) (2010)
## 7692 Phineas and Ferb the Movie: Across the 2nd Dimension (2011)
## 7693 Northanger Abbey (2007)
## 7694 Avengers, The (2012)
## 7695 Tinker Tailor Soldier Spy (2011)
## 7696 Separation, A (Jodaeiye Nader az Simin) (2011)
## 7697 Dangerous Method, A (2011)
## 7698 Warrior (2011)
## 7699 Ides of March, The (2011)
## 7700 Kill List (2011)
## 7701 Killer Elite (2011)
## 7702 Bellflower (2011)
## 7703 50/50 (2011)
## 7704 Generation P (2011)
## 7705 The Artist (2011)
## 7706 Gigi (1949)
## 7707 BlinkyTM (2011)
## 7708 Take Shelter (2011)
## 7709 Three Outlaw Samurai (Sanbiki no samurai) (1964)
## 7710 Antonio GaudÃÂ (1985)
## 7711 Real Steel (2011)
## 7712 Footloose (2011)
## 7713 Thing, The (2011)
## 7714 Beautiful Boy (2010)
## 7715 Tyrannosaur (2011)
## 7716 Martha Marcy May Marlene (2011)
## 7717 We Need to Talk About Kevin (2011)
## 7718 Behind Enemy Lines II: Axis of Evil (2006)
## 7719 Three Musketeers, The (2011)
## 7720 In Time (2011)
## 7721 Margaret (2011)
## 7722 Carnage (2011)
## 7723 Margin Call (2011)
## 7724 Paranormal Activity 3 (2011)
## 7725 Puncture (2011)
## 7726 Johnny English Reborn (2011)
## 7727 Abduction (2011)
## 7728 This Must Be the Place (2011)
## 7729 Shame (2011)
## 7730 What's Your Number? (2011)
## 7731 Headhunters (Hodejegerne) (2011)
## 7732 Batman: Year One (2011)
## 7733 Miss Representation (2011)
## 7734 Puss in Boots (2011)
## 7735 Tower Heist (2011)
## 7736 J. Edgar (2011)
## 7737 Double, The (2011)
## 7738 Adventures of Tintin, The (2011)
## 7739 Starsuckers (2009)
## 7740 Tomboy (2011)
## 7741 George Harrison: Living in the Material World (2011)
## 7742 Hugo (2011)
## 7743 Immortals (2011)
## 7744 Jack and Jill (2011)
## 7745 Into the Abyss (2011)
## 7746 Sign of Four, The (1987)
## 7747 Descendants, The (2011)
## 7748 Like Crazy (2011)
## 7749 Muppets, The (2011)
## 7750 Twilight Saga: Breaking Dawn - Part 1, The (2011)
## 7751 War Horse (2011)
## 7752 Rum Diary, The (2011)
## 7753 Lifted (2006)
## 7754 Hipsters (Stilyagi) (2008)
## 7755 Another Cinderella Story (2008)
## 7756 Bunraku (2010)
## 7757 Sitter, The (2011)
## 7758 Extremely Loud and Incredibly Close (2011)
## 7759 Play the Game (2009)
## 7760 Asterix in America (a.k.a Asterix Conquers America) (Astérix et les Indiens) (1994)
## 7761 Asterix and the Vikings (Astérix et les Vikings) (2006)
## 7762 Happy Feet Two (2011)
## 7763 Arthur Christmas (2011)
## 7764 Violet & Daisy (2011)
## 7765 Bullet to the Head (2012)
## 7766 Expendables 2, The (2012)
## 7767 Snowman, The (1982)
## 7768 The Hunger Games (2012)
## 7769 Dark Knight Rises, The (2012)
## 7770 Bourne Legacy, The (2012)
## 7771 Sherlock Holmes: A Game of Shadows (2011)
## 7772 Coriolanus (2011)
## 7773 Young Adult (2011)
## 7774 New Year's Eve (2011)
## 7775 Mission: Impossible - Ghost Protocol (2011)
## 7776 We Bought a Zoo (2011)
## 7777 Girl with the Dragon Tattoo, The (2011)
## 7778 Darkest Hour, The (2011)
## 7779 Last Holiday (1950)
## 7780 Alvin and the Chipmunks: Chipwrecked (2011)
## 7781 Salvation Boulevard (2011)
## 7782 Friends with Kids (2011)
## 7783 Girl Walks Into a Bar (2011)
## 7784 Contraband (2012)
## 7785 Way South, The (De weg naar het zuiden) (1981)
## 7786 Being Elmo: A Puppeteer's Journey (2011)
## 7787 Joyful Noise (2012)
## 7788 Iron Lady, The (2011)
## 7789 Albatross (2011)
## 7790 Revenant, The (2009)
## 7791 Underworld: Awakening (2012)
## 7792 Grey, The (2012)
## 7793 Man on a Ledge (2012)
## 7794 Sacrifice (Zhao shi gu er) (2010)
## 7795 Haywire (2011)
## 7796 Contact High (2009)
## 7797 Whistleblower, The (2010)
## 7798 Einstein and Eddington (2008)
## 7799 Apollo 18 (2011)
## 7800 Seeking Justice (2011)
## 7801 Red Tails (2012)
## 7802 Flowers of War, The (Jin lÃÂng shÃÂ san chai) (2011)
## 7803 Intouchables (2011)
## 7804 One for the Money (2012)
## 7805 Innkeepers, The (2011)
## 7806 Puss in Boots (Nagagutsu o haita neko) (1969)
## 7807 Grave Encounters (2011)
## 7808 Chronicle (2012)
## 7809 Woman in Black, The (2012)
## 7810 Woman in Love (Rubbeldiekatz) (2011)
## 7811 Art of Getting By, The (2011)
## 7812 All Watched Over by Machines of Loving Grace (2011)
## 7813 Dylan Moran: Monster (2004)
## 7814 Safe House (2012)
## 7815 Vow, The (2012)
## 7816 Louis C.K.: Live at the Beacon Theater (2011)
## 7817 Pitfall (Otoshiana) (1962)
## 7818 Monsieur Lazhar (2011)
## 7819 For a Good Time, Call... (2012)
## 7820 Janie Jones (2010)
## 7821 Journey 2: The Mysterious Island (2012)
## 7822 Perfect Sense (2011)
## 7823 Rollo and the Woods Sprite (Rölli ja metsänhenki) (2001)
## 7824 Atomic Brain, The (1963)
## 7825 Ghost Rider: Spirit of Vengeance (2012)
## 7826 Prayers for Bobby (2009)
## 7827 Very Potter Musical, A (2009)
## 7828 Very Potter Sequel, A (2010)
## 7829 Miss Nobody (2010)
## 7830 Civil War, The (1990)
## 7831 Ro.Go.Pa.G. (1963)
## 7832 Women on the 6th Floor, The (Les Femmes du 6ème Ãâ°tage) (2010)
## 7833 Mega Shark vs. Crocosaurus (2010)
## 7834 Red Hill (2010)
## 7835 Mickey's The Prince and the Pauper (1990)
## 7836 Gone (2012)
## 7837 Project X (2012)
## 7838 Dr. Seuss' The Lorax (2012)
## 7839 Big Year, The (2011)
## 7840 Act of Valor (2012)
## 7841 Trailer Park Boys (1999)
## 7842 This Means War (2012)
## 7843 John Carter (2012)
## 7844 Goon (2011)
## 7845 Ledge, The (2011)
## 7846 21 Jump Street (2012)
## 7847 Jeff, Who Lives at Home (2012)
## 7848 Lockout (2012)
## 7849 Snowtown (Snowtown Murders, The) (2011)
## 7850 Space Battleship Yamato (2010)
## 7851 Jiro Dreams of Sushi (2011)
## 7852 Damsels in Distress (2011)
## 7853 Salmon Fishing in the Yemen (2011)
## 7854 Wrath of the Titans (2012)
## 7855 Detachment (2011)
## 7856 Iron Sky (2012)
## 7857 Absentia (2011)
## 7858 American Reunion (American Pie 4) (2012)
## 7859 The Raid: Redemption (2011)
## 7860 Cabin in the Woods, The (2012)
## 7861 God Bless America (2011)
## 7862 Three Stooges, The (2012)
## 7863 Raven, The (2012)
## 7864 North & South (2004)
## 7865 Big Bang, The (2011)
## 7866 Mirror Mirror (2012)
## 7867 Battleship (2012)
## 7868 Best Exotic Marigold Hotel, The (2011)
## 7869 Comic-Con Episode IV: A Fan's Hope (2011)
## 7870 Bully (2011)
## 7871 Hysteria (2011)
## 7872 Dante's Inferno: An Animated Epic (2010)
## 7873 Atomic Submarine, The (1959)
## 7874 Five-Year Engagement, The (2012)
## 7875 Think Like a Man (2012)
## 7876 Lucky One, The (2012)
## 7877 Safe (2012)
## 7878 Dark Shadows (2012)
## 7879 96 Minutes (2011)
## 7880 Decoy Bride, The (2011)
## 7881 Rocket Singh: Salesman of the Year (2009)
## 7882 Dictator, The (2012)
## 7883 Walking with Monsters (2005)
## 7884 Men in Black III (M.III.B.) (M.I.B.ó) (2012)
## 7885 Snow White and the Huntsman (2012)
## 7886 Sound of My Voice (2011)
## 7887 Eva (2011)
## 7888 Pirates! Band of Misfits, The (2012)
## 7889 Prometheus (2012)
## 7890 Pact, The (2012)
## 7891 Bernie (2011)
## 7892 Inhale (2010)
## 7893 Take This Waltz (2011)
## 7894 Wanderlust (2012)
## 7895 Moonrise Kingdom (2012)
## 7896 Get the Gringo (2012)
## 7897 Superman/Doomsday (2007)
## 7898 Thousand Words, A (2012)
## 7899 Safety Not Guaranteed (2012)
## 7900 Madagascar 3: Europe's Most Wanted (2012)
## 7901 Your Sister's Sister (2011)
## 7902 Dragon Ball: The Curse Of The Blood Rubies (Doragon bôru: Shenron no densetsu) (1986)
## 7903 Dragon Ball: Sleeping Princess in Devil's Castle (Doragon bôru: Majinjô no nemuri hime) (1987)
## 7904 Superman/Batman: Public Enemies (2009)
## 7905 Dragon Ball: Mystical Adventure (Doragon bôru: Makafushigi dai bôken) (1988)
## 7906 Dragon Ball Z the Movie: The World's Strongest (a.k.a. Dragon Ball Z: The Strongest Guy in The World) (Doragon bôru Z: Kono yo de ichiban tsuyoi yatsu) (1990)
## 7907 Brave (2012)
## 7908 Beauty and the Beast: The Enchanted Christmas (1997)
## 7909 Front of the Class (2008)
## 7910 Dragon Ball Z the Movie: The Tree of Might (Doragon bôru Z 3: Chikyû marugoto chô kessen) (1990)
## 7911 Pocahontas II: Journey to a New World (1998)
## 7912 What to Expect When You're Expecting (2012)
## 7913 To Rome with Love (2012)
## 7914 Abraham Lincoln: Vampire Hunter (2012)
## 7915 First Position (2011)
## 7916 Rock of Ages (2012)
## 7917 Seeking a Friend for the End of the World (2012)
## 7918 Presto (2008)
## 7919 Jack-Jack Attack (2005)
## 7920 One Man Band (2005)
## 7921 Ted (2012)
## 7922 Magic Mike (2012)
## 7923 Dragon Ball Z: The Return of Cooler (Doragon bôru Z 6: Gekitotsu! Hyakuoku pawâ no senshi) (1992)
## 7924 Dragon Ball Z: Cooler's Revenge (Doragon bôru Z 5: Tobikkiri no saikyô tai saikyô) (1991)
## 7925 Dragon Ball Z: Super Android 13! (Doragon bôru Z 7: Kyokugen batoru!! San dai sûpâ saiyajin) (1992)
## 7926 Dragon Ball Z: Broly - The Legendary Super Saiyan (Doragon bôru Z 8: Moetsukiro!! Nessen retsusen-chô gekisen) (1993)
## 7927 Cleanskin (2012)
## 7928 Amazing Spider-Man, The (2012)
## 7929 Dragon Ball Z: Bojack Unbound (Doragon bôru Z 9: Ginga girigiri!! Butchigiri no sugoi yatsu) (1993)
## 7930 Ice Age 4: Continental Drift (2012)
## 7931 Beasts of the Southern Wild (2012)
## 7932 Savages (2012)
## 7933 Firm, The (2009)
## 7934 Spirit Camp (2009)
## 7935 Geri's Game (1997)
## 7936 Some Guy Who Kills People (2011)
## 7937 Treasure Island (2012)
## 7938 Watch, The (2012)
## 7939 Adventures of Mary-Kate and Ashley, The: The Case of the Christmas Caper (1995)
## 7940 2 Days in New York (2012)
## 7941 Killer Joe (2011)
## 7942 Dragon Ball Z: Broly Second Coming (Doragon bôru Z 10: Kiken na futari! Sûpâ senshi wa nemurenai) (1994)
## 7943 Dragon Ball Z: Bio-Broly (Doragon bôru Z 11: Sûpâ senshi gekiha! Katsu no wa ore da) (1994)
## 7944 Anaconda: The Offspring (2008)
## 7945 Christmas Carol, A (1999)
## 7946 Goodbye Charlie (1964)
## 7947 For the Birds (2000)
## 7948 Ruby Sparks (2012)
## 7949 Total Recall (2012)
## 7950 Angels' Share, The (2012)
## 7951 Immature, The (Immaturi) (2011)
## 7952 Dragon Ball Z: Bardock - The Father of Goku (Doragon bôru Z: Tatta hitori no saishuu kessen - Furiiza ni itonda Z senshi Kakarotto no chichi) (1990)
## 7953 Dragon Ball Z: The History of Trunks (Doragon bôru Z: Zetsubô e no hankô!! Nokosareta chô senshi - Gohan to Torankusu) (1993)
## 7954 Dragon Ball GT: A Hero's Legacy (Doragon bôru GT: Gokû gaiden! Yûki no akashi wa sû-shin-chû) (1997)
## 7955 Sidewalls (Medianeras) (2011)
## 7956 Skyfall (2012)
## 7957 Hands Over the City (Le mani sulla cittÃÂ ) (1963)
## 7958 Campaign, The (2012)
## 7959 Brake (2012)
## 7960 Hope Springs (2012)
## 7961 Queen of Versailles, The (2012)
## 7962 ParaNorman (2012)
## 7963 Diary of a Wimpy Kid: Dog Days (2012)
## 7964 Broken (2012)
## 7965 6 Days to Air: The Making of South Park (2011)
## 7966 Premium Rush (2012)
## 7967 Odd Life of Timothy Green, The (2012)
## 7968 Lawless (2012)
## 7969 Piranha 3DD (a.k.a. Piranha DD) (2012)
## 7970 Prime Suspect 3 (1993)
## 7971 Searching for Sugar Man (2012)
## 7972 Prime Suspect 6: The Last Witness (2003)
## 7973 Prime Suspect: The Lost Child (1995)
## 7974 Conception (2011)
## 7975 Paradise Lost 3: Purgatory (2011)
## 7976 Words, The (2012)
## 7977 Pitch Perfect (2012)
## 7978 Samsara (2011)
## 7979 Runaway Brain (1995)
## 7980 Looper (2012)
## 7981 That's My Boy (2012)
## 7982 Robot & Frank (2012)
## 7983 Resident Evil: Retribution (2012)
## 7984 Lola Versus (2012)
## 7985 Master, The (2012)
## 7986 Dredd (2012)
## 7987 End of Watch (2012)
## 7988 V/H/S (2012)
## 7989 Perks of Being a Wallflower, The (2012)
## 7990 Hunt, The (Jagten) (2012)
## 7991 Holy Motors (2012)
## 7992 Taken 2 (2012)
## 7993 House at the End of the Street (2012)
## 7994 My Left Eye Sees Ghosts (Ngo joh aan gin diy gwai) (2002)
## 7995 Love Lasts Three Years (L'amour dure trois ans) (2011)
## 7996 Tall Man, The (2012)
## 7997 LOL (2012)
## 7998 Rust and Bone (De rouille et d'os) (2012)
## 7999 Marley (2012)
## 8000 Frankenweenie (2012)
## 8001 Sinister (2012)
## 8002 Thing: Terror Takes Shape, The (1998)
## 8003 Hotel Transylvania (2012)
## 8004 Side by Side (2012)
## 8005 Take Aim at the Police Van (Sono gosôsha wo nerae: 'Jûsangô taihisen' yori) (1960)
## 8006 Argo (2012)
## 8007 Seven Psychopaths (2012)
## 8008 Liberal Arts (2012)
## 8009 Catch .44 (2011)
## 8010 [REC]ó 3 Génesis (2012)
## 8011 Asterix & Obelix: God Save Britannia (Astérix et Obélix: Au service de Sa Majesté) (2012)
## 8012 Paranormal Activity 4 (2012)
## 8013 Alex Cross (2012)
## 8014 Cloud Atlas (2012)
## 8015 'Hellboy': The Seeds of Creation (2004)
## 8016 Silent Hill: Revelation 3D (2012)
## 8017 Here Comes the Boom (2012)
## 8018 Mental (2012)
## 8019 Killing Them Softly (2012)
## 8020 Imposter, The (2012)
## 8021 Sessions, The (Surrogate, The) (2012)
## 8022 Smashed (2012)
## 8023 Wreck-It Ralph (2012)
## 8024 Silver Linings Playbook (2012)
## 8025 Flight (2012)
## 8026 Anna Karenina (2012)
## 8027 Life of Pi (2012)
## 8028 Man with the Iron Fists, The (2012)
## 8029 Bay, The (2012)
## 8030 Himizu (2011)
## 8031 Jackass 3.5 (2011)
## 8032 Indie Game: The Movie (2012)
## 8033 Batman: The Dark Knight Returns, Part 1 (2012)
## 8034 Lincoln (2012)
## 8035 Nature Calls (2012)
## 8036 Vamps (2012)
## 8037 Twilight Saga: Breaking Dawn - Part 2, The (2012)
## 8038 10 Years (2011)
## 8039 Red Dawn (2012)
## 8040 Rise of the Guardians (2012)
## 8041 Fantastic Fear of Everything, A (2012)
## 8042 Deadfall (2012)
## 8043 Byzantium (2012)
## 8044 Paperman (2012)
## 8045 Fearless Hyena, The (Xiao quan guai zhao) (1979)
## 8046 Half a Loaf of Kung Fu (Dian zhi gong fu gan chian chan) (1980)
## 8047 Hitchcock (2012)
## 8048 From Up on Poppy Hill (Kokuriko-zaka kara) (2011)
## 8049 Redline (2009)
## 8050 Winners and Sinners (Qi mou miao ji: Wu fu xing) (1983)
## 8051 My Lucky Stars (Fuk sing go jiu) (1985)
## 8052 Money Money Money (L'aventure, c'est l'aventure) (1972)
## 8053 Liar's Autobiography: The Untrue Story of Monty Python's Graham Chapman, A (2012)
## 8054 Hobbit: An Unexpected Journey, The (2012)
## 8055 Hyde Park on Hudson (2012)
## 8056 How to Make Love to a Woman (2010)
## 8057 Zero Dark Thirty (2012)
## 8058 Fire with Fire (2012)
## 8059 Warm Bodies (2013)
## 8060 Wrong (2012)
## 8061 Playing for Keeps (2012)
## 8062 Guilt Trip, The (2012)
## 8063 Jack Reacher (2012)
## 8064 Django Unchained (2012)
## 8065 This Is 40 (2012)
## 8066 I Bought a Vampire Motorcycle (1990)
## 8067 Ice Cream Man (1995)
## 8068 Impossible, The (Imposible, Lo) (2012)
## 8069 Misérables, Les (2012)
## 8070 Campfire Tales (1997)
## 8071 Parental Guidance (2012)
## 8072 John Dies at the End (2012)
## 8073 Misérables, Les (2000)
## 8074 Promised Land (2012)
## 8075 English Vinglish (2012)
## 8076 Fish Story (Fisshu sutôrî) (2009)
## 8077 Texas Chainsaw 3D (2013)
## 8078 Gangster Squad (2013)
## 8079 Iceman, The (2012)
## 8080 It's Such a Beautiful Day (2012)
## 8081 Batman: The Dark Knight Returns, Part 2 (2013)
## 8082 Everything or Nothing: The Untold Story of 007 (2012)
## 8083 Codependent Lesbian Space Alien Seeks Same (2011)
## 8084 Last Stand, The (2013)
## 8085 Upstream Color (2013)
## 8086 Shadow Dancer (2012)
## 8087 Human Planet (2011)
## 8088 Comme un chef (2012)
## 8089 Movie 43 (2013)
## 8090 Pervert's Guide to Ideology, The (2012)
## 8091 Sightseers (2012)
## 8092 Hansel & Gretel: Witch Hunters (2013)
## 8093 Jim Jefferies: Fully Functional (EPIX) (2012)
## 8094 Why Stop Now (2012)
## 8095 Tabu (2012)
## 8096 Upside Down (2012)
## 8097 Liability, The (2012)
## 8098 Angst (1983)
## 8099 Stand Up Guys (2012)
## 8100 Side Effects (2013)
## 8101 Identity Thief (2013)
## 8102 ABCs of Death, The (2012)
## 8103 Beautiful Creatures (2013)
## 8104 Good Day to Die Hard, A (2013)
## 8105 21 and Over (2013)
## 8106 Safe Haven (2013)
## 8107 Frozen Planet (2011)
## 8108 Act of Killing, The (2012)
## 8109 Universal Soldier: Day of Reckoning (2012)
## 8110 Escape from Planet Earth (2013)
## 8111 Before Midnight (2013)
## 8112 Snitch (2013)
## 8113 Dark Skies (2013)
## 8114 Oh Boy (A Coffee in Berlin) (2012)
## 8115 Journey to the West: Conquering the Demons (Daai wa sai you chi Chui mo chun kei) (2013)
## 8116 Maniac Cop 2 (1990)
## 8117 Jack the Giant Slayer (2013)
## 8118 Wadjda (2012)
## 8119 Unintentional Kidnapping of Mrs. Elfriede Ott, The (Die Unabsichtliche Entführung der Frau Elfriede Ott) (2010)
## 8120 Legend of Sleepy Hollow, The (1949)
## 8121 G.I. Joe: Retaliation (2013)
## 8122 Stoker (2013)
## 8123 Oz the Great and Powerful (2013)
## 8124 Croods, The (2013)
## 8125 Incredible Burt Wonderstone, The (2013)
## 8126 Call, The (2013)
## 8127 Olympus Has Fallen (2013)
## 8128 First Time, The (2012)
## 8129 Mezzo Forte (1998)
## 8130 Place Beyond the Pines, The (2012)
## 8131 Brass Teapot, The (2012)
## 8132 Phil Spector (2013)
## 8133 Host, The (2013)
## 8134 Admission (2013)
## 8135 Evil Dead (2013)
## 8136 Trance (2013)
## 8137 Perfect Plan, A (Plan parfait, Un) (2012)
## 8138 Oblivion (2013)
## 8139 Dark Tide (2012)
## 8140 42 (2013)
## 8141 Wolf Children (Okami kodomo no ame to yuki) (2012)
## 8142 Disconnect (2012)
## 8143 Invincible Iron Man, The (2007)
## 8144 Yongary: Monster from the Deep (1967)
## 8145 Pain & Gain (2013)
## 8146 Hulk Vs. (2009)
## 8147 Resolution (2012)
## 8148 Grabbers (2012)
## 8149 Justice League: Doom (2012)
## 8150 Grandmaster, The (Yi dai zong shi) (2013)
## 8151 This Is the End (2013)
## 8152 Iron Man 3 (2013)
## 8153 English Teacher, The (2013)
## 8154 Mud (2012)
## 8155 Bill Hicks: Revelations (1993)
## 8156 Pawn (2013)
## 8157 Shaolin Temple (Shao Lin si) (1976)
## 8158 Syrup (2013)
## 8159 Great Gatsby, The (2013)
## 8160 Star Trek Into Darkness (2013)
## 8161 Internship, The (2013)
## 8162 Darkon (2006)
## 8163 Mimino (1977)
## 8164 Ivan Vasilievich: Back to the Future (Ivan Vasilievich menyaet professiyu) (1973)
## 8165 Only God Forgives (2013)
## 8166 Hangover Part III, The (2013)
## 8167 Fast & Furious 6 (Fast and the Furious 6, The) (2013)
## 8168 Epic (2013)
## 8169 Captain America (1979)
## 8170 Tie Xi Qu: West of the Tracks (Tiexi qu) (2003)
## 8171 Rink, The (1916)
## 8172 Captain America II: Death Too Soon (1979)
## 8173 Down Terrace (2009)
## 8174 Frances Ha (2012)
## 8175 Lords of Salem, The (2012)
## 8176 Behind the Candelabra (2013)
## 8177 As I Was Moving Ahead Occasionally I Saw Brief Glimpses of Beauty (2000)
## 8178 With Great Power: The Stan Lee Story (2012)
## 8179 After Earth (2013)
## 8180 Now You See Me (2013)
## 8181 Inhuman Resources (Redd Inc.) (2012)
## 8182 Way, Way Back, The (2013)
## 8183 Much Ado About Nothing (2012)
## 8184 Man of Steel (2013)
## 8185 Kings of Summer, The (2013)
## 8186 Purge, The (2013)
## 8187 Rapture-Palooza (2013)
## 8188 20 Feet from Stardom (Twenty Feet from Stardom) (2013)
## 8189 Bling Ring, The (2013)
## 8190 Monsters University (2013)
## 8191 Schlussmacher (2013)
## 8192 Fullmetal Alchemist: The Sacred Star of Milos (2011)
## 8193 Maniac (2012)
## 8194 Not Suitable for Children (2012)
## 8195 Pacific Rim (2013)
## 8196 LEGO Batman: The Movie - DC Heroes Unite (2013)
## 8197 Best Offer, The (Migliore offerta, La) (2013)
## 8198 Adam and Eve (National Lampoon's Adam & Eve) (2005)
## 8199 World War Z (2013)
## 8200 Elysium (2013)
## 8201 Despicable Me 2 (2013)
## 8202 White House Down (2013)
## 8203 World's End, The (2013)
## 8204 Redemption (Hummingbird) (2013)
## 8205 Heat, The (2013)
## 8206 Lone Ranger, The (2013)
## 8207 Passion (2012)
## 8208 V/H/S/2 (2013)
## 8209 Knot, The (2012)
## 8210 The Spectacular Now (2013)
## 8211 Lifeguard, The (2013)
## 8212 Sharknado (2013)
## 8213 Craig Ferguson: I'm Here To Help (2013)
## 8214 Stuck in Love (2012)
## 8215 Class Act (1992)
## 8216 Fruitvale Station (2013)
## 8217 R.I.P.D. (2013)
## 8218 Field in England, A (2013)
## 8219 Conjuring, The (2013)
## 8220 Turbo (2013)
## 8221 Wolverine, The (2013)
## 8222 Drinking Buddies (2013)
## 8223 Red 2 (2013)
## 8224 Coffee Town (2013)
## 8225 Revenge for Jolly! (2012)
## 8226 2 Guns (2013)
## 8227 Blue Jasmine (2013)
## 8228 Great Beauty, The (Grande Bellezza, La) (2013)
## 8229 3 dev adam (Three Giant Men) (1973)
## 8230 Louis C.K.: Oh My God (2013)
## 8231 Percy Jackson: Sea of Monsters (2013)
## 8232 Smurfs 2, The (2013)
## 8233 Alan Partridge: Alpha Papa (2013)
## 8234 Man of Tai Chi (2013)
## 8235 Batman: Mystery of the Batwoman (2003)
## 8236 We're the Millers (2013)
## 8237 Grown Ups 2 (2013)
## 8238 Kick-Ass 2 (2013)
## 8239 Riddick (2013)
## 8240 Planes (2013)
## 8241 Blackfish (2013)
## 8242 Wind Rises, The (Kaze tachinu) (2013)
## 8243 Jobs (2013)
## 8244 Lee Daniels' The Butler (2013)
## 8245 In a World... (2013)
## 8246 About Time (2013)
## 8247 Justice League: Crisis on Two Earths (2010)
## 8248 You're Next (2011)
## 8249 Maria Bamford: The Special Special Special! (2012)
## 8250 Getaway (2013)
## 8251 Mystery of the Third Planet, The (Tayna tretey planety) (1981)
## 8252 Rage of Honor (1987)
## 8253 Gravity (2013)
## 8254 What If (2013)
## 8255 History of Future Folk, The (2012)
## 8256 Prisoners (2013)
## 8257 Austenland (2013)
## 8258 Insidious: Chapter 2 (2013)
## 8259 Rush (2013)
## 8260 Family, The (2013)
## 8261 Short Term 12 (2013)
## 8262 Collision Course (1989)
## 8263 To Do List, The (2013)
## 8264 Inescapable (2012)
## 8265 Nebraska (2013)
## 8266 Enough Said (2013)
## 8267 Don Jon (2013)
## 8268 Mood Indigo (L'écume des jours) (2013)
## 8269 Century of the Self, The (2002)
## 8270 Crystal Fairy & the Magical Cactus and 2012 (2013)
## 8271 Bad Milo (Bad Milo!) (2013)
## 8272 Runner Runner (2013)
## 8273 Blue Is the Warmest Color (La vie d'Adèle) (2013)
## 8274 Cloudy with a Chance of Meatballs 2 (2013)
## 8275 Captain Phillips (2013)
## 8276 All Dogs Christmas Carol, An (1998)
## 8277 Machete Kills (Machete 2) (2013)
## 8278 Filth (2013)
## 8279 Escape Plan (2013)
## 8280 Thief of Paris, The (Le voleur) (1967)
## 8281 Carrie (2013)
## 8282 UnHung Hero (2013)
## 8283 Counselor, The (2013)
## 8284 Escape From Tomorrow (2013)
## 8285 Double, The (2013)
## 8286 12 Years a Slave (2013)
## 8287 All Is Lost (2013)
## 8288 Ender's Game (2013)
## 8289 Jackass Presents: Bad Grandpa (2013)
## 8290 Thor: The Dark World (2013)
## 8291 Dallas Buyers Club (2013)
## 8292 Selfish Giant, The (2013)
## 8293 Last Vegas (2013)
## 8294 Philomena (2013)
## 8295 Book Thief, The (2013)
## 8296 The Hunger Games: Catching Fire (2013)
## 8297 Hobbit: The Desolation of Smaug, The (2013)
## 8298 47 Ronin (2013)
## 8299 Delivery Man (2013)
## 8300 Charlie Countryman (2013)
## 8301 Red Flag (2012)
## 8302 Day of the Doctor, The (2013)
## 8303 Guilty of Romance (Koi no tsumi) (2011)
## 8304 Frozen (2013)
## 8305 Inside Llewyn Davis (2013)
## 8306 Wolf of Wall Street, The (2013)
## 8307 Homefront (2013)
## 8308 Mandela: Long Walk to Freedom (2013)
## 8309 Evangelion: 3.0 You Can (Not) Redo (2012)
## 8310 All is Bright (2013)
## 8311 Tim's Vermeer (2013)
## 8312 American Hustle (2013)
## 8313 Secret Life of Walter Mitty, The (2013)
## 8314 Her (2013)
## 8315 RoboGeisha (Robo-geisha) (2009)
## 8316 Christmas Carol, A (1977)
## 8317 Lone Survivor (2013)
## 8318 Saving Mr. Banks (2013)
## 8319 Zatoichi and the Chest of Gold (Zatôichi senryô-kubi) (Zatôichi 6) (1964)
## 8320 Oldboy (2013)
## 8321 Dampfnudelblues (2013)
## 8322 Anchorman 2: The Legend Continues (2013)
## 8323 Snowpiercer (2013)
## 8324 Only Old Men Are Going to Battle (V boy idut odni stariki) (1973)
## 8325 Guest from the Future (Gostya iz buduschego) (1985)
## 8326 Kidnapping, Caucasian Style (Kavkazskaya plennitsa) (1967)
## 8327 Haunter (2013)
## 8328 Wrong Cops (2013)
## 8329 Muppet Christmas: Letters to Santa, A (2008)
## 8330 Ninja: Shadow of a Tear (2013)
## 8331 Fuck You, Goethe (Fack Ju Göhte) (2013)
## 8332 High School (2010)
## 8333 Grudge Match (2013)
## 8334 Highlander: The Search for Vengeance (2007)
## 8335 Only Lovers Left Alive (2013)
## 8336 Cats (1998)
## 8337 MacGyver: Trail to Doomsday (1994)
## 8338 Bad Karma (2012)
## 8339 Hunting Elephants (2013)
## 8340 Dragon Ball Z: Battle of Gods (2013)
## 8341 Freezer (2014)
## 8342 We Are What We Are (2013)
## 8343 Dragon ball Z 04: Lord Slug (1991)
## 8344 Chinese Puzzle (Casse-tête chinois) (2013)
## 8345 Dragon Ball: The Path to Power (Doragon bôru: Saikyô e no michi) (1996)
## 8346 Ride Along (2014)
## 8347 Jack Ryan: Shadow Recruit (2014)
## 8348 Divergent (2014)
## 8349 Hotel Chevalier (Part 1 of 'The Darjeeling Limited') (2007)
## 8350 Ernest & Célestine (Ernest et Célestine) (2012)
## 8351 Drift (2013)
## 8352 I, Frankenstein (2014)
## 8353 Better Living Through Chemistry (2014)
## 8354 Nymphomaniac: Volume I (2013)
## 8355 Enemy (2013)
## 8356 Wonder Woman (2009)
## 8357 Monuments Men, The (2014)
## 8358 The Lego Movie (2014)
## 8359 RoboCop (2014)
## 8360 Art of the Steal, The (2013)
## 8361 Nymphomaniac: Volume II (2013)
## 8362 Knights of Badassdom (2013)
## 8363 Venus in Fur (La Vénus àla fourrure) (2013)
## 8364 Date and Switch (2014)
## 8365 Zero Theorem, The (2013)
## 8366 Winter's Tale (2014)
## 8367 On the Other Side of the Tracks (De l'autre côté du périph) (2012)
## 8368 GLOW: The Story of the Gorgeous Ladies of Wrestling (2012)
## 8369 Cold Comes the Night (2013)
## 8370 Chouchou (2003)
## 8371 Someone Marry Barry (2014)
## 8372 About Last Night (2014)
## 8373 Grand Budapest Hotel, The (2014)
## 8374 Oversimplification of Her Beauty, An (2012)
## 8375 Bring It On: Fight to the Finish (2009)
## 8376 That Awkward Moment (2014)
## 8377 Interstellar (2014)
## 8378 3 Days to Kill (2014)
## 8379 Welcome to the Jungle (2013)
## 8380 Non-Stop (2014)
## 8381 Wrinkles (Arrugas) (2011)
## 8382 Garden of Words, The (Koto no ha no niwa) (2013)
## 8383 300: Rise of an Empire (2014)
## 8384 Particle Fever (2013)
## 8385 Bag Man, The (2014)
## 8386 Mr. Peabody & Sherman (2014)
## 8387 Under the Skin (2013)
## 8388 Need for Speed (2014)
## 8389 Barefoot (2014)
## 8390 Veronica Mars (2014)
## 8391 Bad Words (2013)
## 8392 Son of God (2014)
## 8393 Puss in Boots: The Three Diablos (2012)
## 8394 Why Don't You Play In Hell? (Jigoku de naze warui) (2013)
## 8395 Ocho apellidos vascos (2014)
## 8396 Captain America: The Winter Soldier (2014)
## 8397 Noah (2014)
## 8398 Nut Job, The (2014)
## 8399 King of Comedy (Hei kek ji wong) (1999)
## 8400 13 Sins (2014)
## 8401 Muppets Most Wanted (2014)
## 8402 Me and you (io e te) (2012)
## 8403 Free to Play (2014)
## 8404 Unknown Known, The (2013)
## 8405 The Raid 2: Berandal (2014)
## 8406 Brain Smasher... A Love Story (Bouncer and the Lady, The) (1993)
## 8407 The Amazing Spider-Man 2 (2014)
## 8408 Calvary (2014)
## 8409 Oculus (2013)
## 8410 God's Not Dead (2014)
## 8411 Cold in July (2014)
## 8412 Rio 2 (2014)
## 8413 Honest Liar, An (2014)
## 8414 Fading Gigolo (2013)
## 8415 Transcendence (2014)
## 8416 Hatchet III (2013)
## 8417 Other Woman, The (2014)
## 8418 Haunted House 2, A (2014)
## 8419 Mulan II (2004)
## 8420 Brick Mansions (2014)
## 8421 Locke (2013)
## 8422 Neighbors (2014)
## 8423 Alpha and Omega 3: The Great Wolf Games (2014)
## 8424 Mom's Night Out (2014)
## 8425 Lucy (2014)
## 8426 X-Men: Days of Future Past (2014)
## 8427 Godzilla (2014)
## 8428 Walk of Shame (2014)
## 8429 Blue Ruin (2013)
## 8430 Chef (2014)
## 8431 Afflicted (2013)
## 8432 Blended (2014)
## 8433 Begin Again (2013)
## 8434 Maleficent (2014)
## 8435 Zombeavers (2014)
## 8436 At Middleton (2013)
## 8437 Dance of Reality, The (Danza de la realidad, La) (2013)
## 8438 A Million Ways to Die in the West (2014)
## 8439 Edge of Tomorrow (2014)
## 8440 Mission: Impossible - Rogue Nation (2015)
## 8441 Midnight Chronicles (2009)
## 8442 Million Dollar Arm (2014)
## 8443 G.B.F. (2013)
## 8444 Jimi: All Is by My Side (2013)
## 8445 Bad Asses (Bad Ass 2) (2014)
## 8446 Lilting (2014)
## 8447 The Fault in Our Stars (2014)
## 8448 Tangled Ever After (2012)
## 8449 Maps to the Stars (2014)
## 8450 22 Jump Street (2014)
## 8451 Equalizer, The (2014)
## 8452 How to Train Your Dragon 2 (2014)
## 8453 Birdman: Or (The Unexpected Virtue of Ignorance) (2014)
## 8454 Boyhood (2014)
## 8455 Think Like a Man Too (2014)
## 8456 Jersey Boys (2014)
## 8457 Nick Fury: Agent of S.H.I.E.L.D. (1998)
## 8458 Internet's Own Boy: The Story of Aaron Swartz, The (2014)
## 8459 Transformers: Age of Extinction (2014)
## 8460 Frank (2014)
## 8461 They Came Together (2014)
## 8462 Honey (Miele) (2013)
## 8463 Planes: Fire & Rescue (2014)
## 8464 Tammy (2014)
## 8465 Colourful (Karafuru) (2010)
## 8466 Babadook, The (2014)
## 8467 Whiplash (2014)
## 8468 Gone Girl (2014)
## 8469 Angriest Man in Brooklyn, The (2014)
## 8470 Dawn of the Planet of the Apes (2014)
## 8471 Deliver Us from Evil (2014)
## 8472 And So It Goes (2014)
## 8473 Sex Tape (2014)
## 8474 I Origins (2014)
## 8475 Purge: Anarchy, The (2014)
## 8476 Guardians of the Galaxy (2014)
## 8477 Signal, The (2014)
## 8478 The Expendables 3 (2014)
## 8479 Hercules (2014)
## 8480 A Most Wanted Man (2014)
## 8481 Life After Beth (2014)
## 8482 Felony (2013)
## 8483 Get on Up (2014)
## 8484 Magic in the Moonlight (2014)
## 8485 Housebound (2014)
## 8486 The Hundred-Foot Journey (2014)
## 8487 Batman: Assault on Arkham (2014)
## 8488 White Frog (2012)
## 8489 Den, The (2013)
## 8490 Jupiter Ascending (2015)
## 8491 Teenage Mutant Ninja Turtles (2014)
## 8492 I'll Follow You Down (2013)
## 8493 Old Lady and the Pigeons, The (La vieille dame et les pigeons) (1997)
## 8494 Giver, The (2014)
## 8495 Pretty One, The (2013)
## 8496 Revenge of the Green Dragons (2014)
## 8497 Let's Be Cops (2014)
## 8498 Inbetweeners 2, The (2014)
## 8499 Sacrament, The (2013)
## 8500 Sin City: A Dame to Kill For (2014)
## 8501 If I Stay (2014)
## 8502 Two Days, One Night (Deux jours, une nuit) (2014)
## 8503 Coherence (2013)
## 8504 As Above, So Below (2014)
## 8505 One I Love, The (2014)
## 8506 Headshot (2011)
## 8507 Guest, The (2014)
## 8508 Pride (2014)
## 8509 Honeymoon (2014)
## 8510 The Drop (2014)
## 8511 20,000 Days on Earth (2014)
## 8512 The Skeleton Twins (2014)
## 8513 Beautiful Losers (2008)
## 8514 Maze Runner, The (2014)
## 8515 Camp X-Ray (2014)
## 8516 Walk Among the Tombstones, A (2014)
## 8517 Laggies (2014)
## 8518 La cravate (1957)
## 8519 Cesar Chavez (2014)
## 8520 Who Am I (Kein System Ist Sicher) (2014)
## 8521 Tale of Princess Kaguya, The (Kaguyahime no monogatari) (2013)
## 8522 This Is Where I Leave You (2014)
## 8523 Angel's Egg (Tenshi no tamago) (1985)
## 8524 American Sniper (2014)
## 8525 Tusk (2014)
## 8526 Hector and the Search for Happiness (2014)
## 8527 Horns (2014)
## 8528 Annabelle (2014)
## 8529 Two Night Stand (2014)
## 8530 Dracula Untold (2014)
## 8531 Stretch (2014)
## 8532 Autómata (Automata) (2014)
## 8533 Captive, The (2014)
## 8534 Predestination (2014)
## 8535 Justin and the Knights of Valour (2013)
## 8536 Ward 13 (2003)
## 8537 What We Do in the Shadows (2014)
## 8538 John Wick (2014)
## 8539 Plastic (2014)
## 8540 Judge, The (2014)
## 8541 Culture High, The (2014)
## 8542 Fury (2014)
## 8543 Salvation, The (2014)
## 8544 St. Vincent (2014)
## 8545 Rewrite, The (2014)
## 8546 Nightcrawler (2014)
## 8547 Big Hero 6 (2014)
## 8548 The Book of Life (2014)
## 8549 Love, Rosie (2014)
## 8550 Time Lapse (2014)
## 8551 Ex Machina (2015)
## 8552 Crippled Avengers (Can que) (Return of the 5 Deadly Venoms) (1981)
## 8553 Mr Hublot (2013)
## 8554 Copenhagen (2014)
## 8555 Simpsons: The Longest Daycare, The (2012)
## 8556 Generation War (2013)
## 8557 Christmas in Connecticut (1992)
## 8558 Leviathan (2014)
## 8559 Reign of Assassins (2010)
## 8560 Zulu (2013)
## 8561 Tangerines (2013)
## 8562 Life Partners (2014)
## 8563 Drive Hard (2014)
## 8564 New Kids Nitro (2011)
## 8565 Stalingrad (2013)
## 8566 Dead Snow 2: Red vs. Dead (2014)
## 8567 Volga - Volga (1938)
## 8568 You Are the Apple of My Eye (2011)
## 8569 DeadHeads (2011)
## 8570 The Imitation Game (2014)
## 8571 Inherent Vice (2014)
## 8572 Rudderless (2014)
## 8573 The Hunger Games: Mockingjay - Part 1 (2014)
## 8574 Sex Ed (2014)
## 8575 Exodus: Gods and Kings (2014)
## 8576 Wild Tales (2014)
## 8577 Jetsons: The Movie (1990)
## 8578 Ski School (1991)
## 8579 Dumb and Dumber To (2014)
## 8580 The Longest Week (2014)
## 8581 Miss Meadows (2014)
## 8582 Too Many Cooks (2014)
## 8583 Painted Skin (2008)
## 8584 The Theory of Everything (2014)
## 8585 Doctor Who: The Time of the Doctor (2013)
## 8586 Virunga (2014)
## 8587 The Madagascar Penguins in a Christmas Caper (2005)
## 8588 Song of the Sea (2014)
## 8589 In the Heart of the Sea (2015)
## 8590 Hello Ladies: The Movie (2014)
## 8591 Jurassic World (2015)
## 8592 Watermark (2014)
## 8593 Citizenfour (2014)
## 8594 Asterix: The Land of the Gods (Astérix: Le domaine des dieux) (2014)
## 8595 Hit by Lightning (2014)
## 8596 Horrible Bosses 2 (2014)
## 8597 Double Trouble (1992)
## 8598 Dragonheart 2: A New Beginning (2000)
## 8599 La Belle Verte (1996)
## 8600 Penguins of Madagascar (2014)
## 8601 '71 (2014)
## 8602 The Rabbi's Cat (Le chat du rabbin) (2011)
## 8603 Still Alice (2014)
## 8604 Paddington (2014)
## 8605 Maze Runner: Scorch Trials (2015)
## 8606 Ice Age: A Mammoth Christmas (2011)
## 8607 The Voices (2014)
## 8608 Courier (1987)
## 8609 The Green Prince (2014)
## 8610 Dying of the Light (2014)
## 8611 Hellbenders (2012)
## 8612 Omega Doom (1996)
## 8613 By the Gun (2014)
## 8614 Kill the Messenger (2014)
## 8615 Bring It On: In It To Win It (2007)
## 8616 Fans (1999)
## 8617 The Mule (2014)
## 8618 The Hobbit: The Battle of the Five Armies (2014)
## 8619 Selma (2014)
## 8620 Unbroken (2014)
## 8621 Black Sea (2015)
## 8622 Good Copy Bad Copy (2007)
## 8623 Playing It Cool (2014)
## 8624 National Lampoon's Bag Boy (2007)
## 8625 Closer to the Moon (2013)
## 8626 Girl Walks Home Alone at Night, A (2014)
## 8627 Dave Chappelle: For What it's Worth (2004)
## 8628 Scooby-Doo! Abracadabra-Doo (2010)
## 8629 Mommy (2014)
## 8630 Wild (2014)
## 8631 Top Five (2014)
## 8632 Bill Burr: I'm Sorry You Feel That Way (2014)
## 8633 Big Eyes (2014)
## 8634 Into the Woods (2014)
## 8635 Men, Women & Children (2014)
## 8636 The Interview (2014)
## 8637 Kingsman: The Secret Service (2015)
## 8638 Bill Burr: You People Are All the Same (2012)
## 8639 Night at the Museum: Secret of the Tomb (2014)
## 8640 Paradox (2010)
## 8641 The Punisher: Dirty Laundry (2012)
## 8642 Seventh Son (2014)
## 8643 Corner Gas: The Movie (2014)
## 8644 A Man Called Blade (1977)
## 8645 A Merry Friggin' Christmas (2014)
## 8646 Into the Forest of Fireflies' Light (2011)
## 8647 PK (2014)
## 8648 Chappie (2015)
## 8649 The Salt of the Earth (2014)
## 8650 The Fool (2014)
## 8651 Taken 3 (2015)
## 8652 Blackhat (2015)
## 8653 By the Law (1926)
## 8654 Son of a Gun (2014)
## 8655 Terminator Genisys (2015)
## 8656 John Mulaney: New In Town (2012)
## 8657 Patton Oswalt: My Weakness Is Strong (2009)
## 8658 The Hound of the Baskervilles (1988)
## 8659 Man on High Heels (2014)
## 8660 Space Buddies (2009)
## 8661 Houdini (2014)
## 8662 To Grandmother's House We Go (1992)
## 8663 101 Dalmatians II: Patch's London Adventure (2003)
## 8664 The Hungover Games (2014)
## 8665 The Duke of Burgundy (2014)
## 8666 Red Army (2014)
## 8667 It Follows (2014)
## 8668 The Town that Dreaded Sundown (2014)
## 8669 Carry on Cabby (1963)
## 8670 Carry on Cruising (1962)
## 8671 Bill Burr: Let It Go (2010)
## 8672 Bill Burr: Why Do I Do This? (2008)
## 8673 Killer Movie (2008)
## 8674 Sebastian Maniscalco: What's Wrong with People? (2012)
## 8675 Stuart Little 3: Call of the Wild (2005)
## 8676 Guy X (2005)
## 8677 Tooth Fairy 2 (2012)
## 8678 The Diary of Anne Frank (2009)
## 8679 The Deadly Bees (1967)
## 8680 Wicked Blood (2014)
## 8681 Oblivion 2: Backlash (1996)
## 8682 Mad Max: Fury Road (2015)
## 8683 Insidious: Chapter 3 (2015)
## 8684 Star Wars: Episode VII - The Force Awakens (2015)
## 8685 Ben-hur (2016)
## 8686 Warcraft (2016)
## 8687 Avengers: Age of Ultron (2015)
## 8688 Pirates of the Caribbean: Dead Men Tell No Tales (2017)
## 8689 Justice League (2017)
## 8690 Ant-Man (2015)
## 8691 Fantastic Four (2015)
## 8692 Deadpool (2016)
## 8693 Black Panther (2017)
## 8694 Avengers: Infinity War - Part I (2018)
## 8695 Thor: Ragnarok (2017)
## 8696 Guardians of the Galaxy 2 (2017)
## 8697 Captain America: Civil War (2016)
## 8698 Doctor Strange (2016)
## 8699 X-Men: Apocalypse (2016)
## 8700 Untitled Spider-Man Reboot (2017)
## 8701 Elsa & Fred (2014)
## 8702 Jim Jefferies: I Swear to God (2009)
## 8703 Tornado! (1996)
## 8704 The Blue Lagoon (1949)
## 8705 In the Name of the King III (2014)
## 8706 Cake (2014)
## 8707 Kevin Smith: Too Fat For 40 (2010)
## 8708 Snowflake, the White Gorilla (2011)
## 8709 Kenny & Company (1976)
## 8710 Delirium (2014)
## 8711 Why Man Creates (1968)
## 8712 The Gambler (2014)
## 8713 The Beast of Hollow Mountain (1956)
## 8714 Mortdecai (2015)
## 8715 Fifty Shades of Grey (2015)
## 8716 Halloweentown (1998)
## 8717 Halloweentown High (2004)
## 8718 A Flintstones Christmas Carol (1994)
## 8719 Hedgehog in the Fog (1975)
## 8720 The Cave of the Golden Rose (1991)
## 8721 American Heist (2015)
## 8722 Solyaris (1968)
## 8723 The Pacific (2010)
## 8724 Strange Magic (2015)
## 8725 The DUFF (2015)
## 8726 Daddy, I'm A Zombie (2012)
## 8727 The Fox and the Hound 2 (2006)
## 8728 Operation 'Y' & Other Shurik's Adventures (1965)
## 8729 Project Almanac (2015)
## 8730 Louis C.K.: Live at The Comedy Store (2015)
## 8731 Brooklyn (2015)
## 8732 The End of the Tour (2015)
## 8733 Experimenter (2015)
## 8734 Mistress America (2015)
## 8735 Zipper (2015)
## 8736 A Walk in the Woods (2015)
## 8737 True Story (2015)
## 8738 Kurt Cobain: Montage of Heck (2015)
## 8739 Going Clear: Scientology and the Prison of Belief (2015)
## 8740 What Happened, Miss Simone? (2015)
## 8741 A Story of Children and Film (2013)
## 8742 Story of Film: An Odyssey, The (2011)
## 8743 Eden (2014)
## 8744 The D Train (2015)
## 8745 Dope (2015)
## 8746 Me and Earl and the Dying Girl (2015)
## 8747 The Overnight (2015)
## 8748 The Stanford Prison Experiment (2015)
## 8749 A Pigeon Sat on a Branch Reflecting on Existence (2014)
## 8750 The Loft (2014)
## 8751 Vice (2015)
## 8752 Family Guy Presents: Blue Harvest (2007)
## 8753 Trinity and Sartana Are Coming (1972)
## 8754 Kevin Hart: I'm a Grown Little Man (2009)
## 8755 Jim Norton: American Degenerate (2013)
## 8756 Jim Jefferies: BARE (2014)
## 8757 Hard Promises (1991)
## 8758 The Hateful Eight (2015)
## 8759 Patton Oswalt: Tragedy Plus Comedy Equals Time (2014)
## 8760 Wild Card (2015)
## 8761 Paper Towns (2015)
## 8762 The Wedding Ringer (2015)
## 8763 Wyrmwood (2015)
## 8764 The Boy Next Door (2015)
## 8765 Boy Meets Girl (2015)
## 8766 Victoria (2015)
## 8767 The Dark Valley (2014)
## 8768 I'm Here (2010)
## 8769 The Last Five Years (2014)
## 8770 Crimson Peak (2015)
## 8771 Dragonheart 3: The Sorcerer's Curse (2015)
## 8772 Chris Rock: Bigger & Blacker (1999)
## 8773 The Natural Love (1996)
## 8774 The Forgotten Space (2010)
## 8775 Cloudburst (2011)
## 8776 Tom Segura: Completely Normal (2014)
## 8777 Honey, We Shrunk Ourselves (1997)
## 8778 Stitch! The Movie (2003)
## 8779 Hot Tub Time Machine 2 (2015)
## 8780 Johnny Express (2014)
## 8781 Eddie Izzard: Glorious (1997)
## 8782 Northmen - A Viking Saga (2014)
## 8783 Superfast! (2015)
## 8784 Reality (2014)
## 8785 Julia (2014)
## 8786 Focus (2015)
## 8787 Marvel One-Shot: Item 47 (2012)
## 8788 The Second Best Exotic Marigold Hotel (2015)
## 8789 George Carlin: It's Bad for Ya! (2008)
## 8790 Tracers (2015)
## 8791 McFarland, USA (2015)
## 8792 Unfinished Business (2015)
## 8793 Ghost in the Shell Arise - Border 1: Ghost Pain (2013)
## 8794 Run All Night (2015)
## 8795 Digging Up the Marrow (2014)
## 8796 Clown (2014)
## 8797 Cinderella (2015)
## 8798 Kidnapping Mr. Heineken (2015)
## 8799 The Cobbler (2015)
## 8800 Ruby Red (2013)
## 8801 Pan (2015)
## 8802 While We're Young (2014)
## 8803 Too Late for Tears (1949)
## 8804 Insurgent (2015)
## 8805 La vérité si je mens ! (1997)
## 8806 The Amazing Screw-On Head (2006)
## 8807 Home (2015)
## 8808 Midnight Special (2015)
## 8809 Gunman, The (2015)
## 8810 Furious 7 (2015)
## 8811 The Final Girls (2015)
## 8812 Spring (2015)
## 8813 Power/Rangers (2015)
## 8814 George Carlin: Life Is Worth Losing (2005)
## 8815 Legend No. 17 (2013)
## 8816 Love and Pigeons (1985)
## 8817 Get Hard (2015)
## 8818 That Sugar Film (2014)
## 8819 Saving Santa (2013)
## 8820 The Brain (1969)
## 8821 Tom and Jerry: A Nutcracker Tale (2007)
## 8822 What Men Talk About (2010)
## 8823 Kill Me Three Times (2014)
## 8824 Poker Night (2014)
## 8825 Reckless Kelly (1994)
## 8826 Willy/Milly (1986)
## 8827 Shaun the Sheep Movie (2015)
## 8828 Last Knights (2015)
## 8829 The Jinx: The Life and Deaths of Robert Durst (2015)
## 8830 Batman vs. Robin (2015)
## 8831 Libre et assoupi (2014)
## 8832 Woman in Gold (2015)
## 8833 Iliza Shlesinger: Freezing Hot (2015)
## 8834 The Road Within (2014)
## 8835 The Malibu Bikini Shop (1986)
## 8836 Tomorrowland (2015)
## 8837 Let It Be Me (1995)
## 8838 Buzzard (2015)
## 8839 Paul Blart: Mall Cop 2 (2015)
## 8840 Seve (2014)
## 8841 Breathe (2014)
## 8842 Patlabor 2: The Movie (1993)
## 8843 Da Sweet Blood of Jesus (2014)
## 8844 The Longest Ride (2015)
## 8845 Girltrash: All Night Long (2014)
## 8846 Sword of Vengeance (2014)
## 8847 Lovesick (2014)
## 8848 Danny Collins (2015)
## 8849 The Even Stevens Movie (2003)
## 8850 Kite (2014)
## 8851 Man Up (2015)
## 8852 San Andreas (2015)
## 8853 Welcome to Me (2014)
## 8854 Comedy Central Roast of James Franco (2013)
## 8855 We Could Be King (2014)
## 8856 Hitman: Agent 47 (2015)
## 8857 B/W (2015)
## 8858 Ricki and the Flash (2015)
## 8859 Partisan (2015)
## 8860 Infini (2015)
## 8861 Pitch Perfect 2 (2015)
## 8862 Just Before I Go (2014)
## 8863 Carol (2015)
## 8864 Office Romance (1977)
## 8865 Bootleggers (1961)
## 8866 The Lobster (2015)
## 8867 Güeros (2014)
## 8868 Maggie (2015)
## 8869 Hot Pursuit (2015)
## 8870 Slow West (2015)
## 8871 The Green Inferno (2014)
## 8872 Barely Lethal (2015)
## 8873 Carry On Don't Lose Your Head (1966)
## 8874 What Love Is (2007)
## 8875 The Monkey King (1964)
## 8876 5 to 7 (2014)
## 8877 Afonya (1975)
## 8878 My Love (2006)
## 8879 Radio Day (2008)
## 8880 The Martian (2015)
## 8881 Return to Sender (2015)
## 8882 Kung Fury (2015)
## 8883 Elections Day (2007)
## 8884 Youth (2015)
## 8885 Survivor (2015)
## 8886 Hot Girls Wanted (2015)
## 8887 That Munchhausen (1979)
## 8888 The Taming of the Scoundrel (1980)
## 8889 Phir Hera Pheri (2006)
## 8890 Spy (2015)
## 8891 Trainwreck (2015)
## 8892 BMX Bandits (1983)
## 8893 Turtle Power: The Definitive History of the Teenage Mutant Ninja Turtles (2014)
## 8894 Aloha (2015)
## 8895 Dragon Blade (2015)
## 8896 Entourage (2015)
## 8897 Bitter Lake (2015)
## 8898 No Way Jose (2015)
## 8899 Ghost Graduation (2012)
## 8900 Duck Amuck (1953)
## 8901 Inside Out (2015)
## 8902 The Wolfpack (2015)
## 8903 Trevor Noah: African American (2013)
## 8904 Love & Mercy (2014)
## 8905 The Hunger Games: Mockingjay - Part 2 (2015)
## 8906 Pixels (2015)
## 8907 Fantastic Beasts and Where to Find Them (2016)
## 8908 The Hairdresser (2010)
## 8909 The Star Wars Holiday Special (1978)
## 8910 Mr. Holmes (2015)
## 8911 The Secret Life of Pets (2016)
## 8912 Ghost in the Shell: Stand Alone Complex - The Laughing Man (2005)
## 8913 Self/less (2015)
## 8914 The Last Witch Hunter (2015)
## 8915 Krampus (2015)
## 8916 Suicide Squad (2016)
## 8917 Independence Day: Resurgence (2016)
## 8918 Star Trek Beyond (2016)
## 8919 Golmaal (2006)
## 8920 Bruce Lee: A Warrior's Journey (2000)
## 8921 Five Element Ninjas (1982)
## 8922 The Magnificent Ruffians (1979)
## 8923 Ted 2 (2015)
## 8924 Absolutely Anything (2015)
## 8925 Minions (2015)
## 8926 The Silence of the Hams (1994)
## 8927 Bloodsport III (1996)
## 8928 The Good Dinosaur (2015)
## 8929 Black Mass (2015)
## 8930 Spectre (2015)
## 8931 The Professional: Golgo 13 (1983)
## 8932 Mortal Kombat: The Journey Begins (1995)
## 8933 Sharknado 3: Oh Hell No! (2015)
## 8934 Scooby-Doo! and the Samurai Sword (2009)
## 8935 Scooby-Doo! and the Loch Ness Monster (2004)
## 8936 Big Top Scooby-Doo! (2012)
## 8937 Scooby-Doo Goes Hollywood (1979)
## 8938 Gabriel Iglesias: Hot and Fluffy (2007)
## 8939 George Carlin: Back in Town (1996)
## 8940 George Carlin: You Are All Diseased (1999)
## 8941 Ghost in the Shell 2.0 (2008)
## 8942 Larry David: Curb Your Enthusiasm (1999)
## 8943 Kevin Hart: Laugh at My Pain (2011)
## 8944 Tom and Jerry: Shiver Me Whiskers (2006)
## 8945 Jeff Dunham: All Over the Map (2014)
## 8946 The FP (2012)
## 8947 Kung Fu Panda: Secrets of the Masters (2011)
## 8948 Steve Jobs (2015)
## 8949 Macbeth (2015)
## 8950 Vacation (2015)
## 8951 Creep (2014)
## 8952 The Face of an Angel (2015)
## 8953 Wild Horses (2015)
## 8954 Search Party (2014)
## 8955 The Squeeze (2015)
## 8956 Careful What You Wish For (2015)
## 8957 Robot Overlords (2014)
## 8958 Bad Asses on the Bayou (2015)
## 8959 The Eye: Infinity (2005)
## 8960 Kiss me Kismet (2006)
## 8961 Da geht noch was! (2013)
## 8962 Villain (1971)
## 8963 The Lovers (2015)
## 8964 Batman v Superman: Dawn of Justice (2016)
## 8965 God Loves Caviar (2012)
## 8966 Mortuary (1983)
## 8967 April Morning (1988)
## 8968 Amy (2015)
## 8969 That Demon Within (2014)
## 8970 Carnival Magic (1981)
## 8971 Magic Mike XXL (2015)
## 8972 The Jungle Book (2016)
## 8973 Dragon Ball Z Gaiden: The Plot to Destroy the Saiyans (1993)
## 8974 Dragon Ball Z: Resurrection of F (2015)
## 8975 The Man from U.N.C.L.E. (2015)
## 8976 Sorrow (2015)
## 8977 7 Days in Hell (2015)
## 8978 The Walk (2015)
## 8979 13 Hours (2016)
## 8980 There Will Come a Day (2013)
## 8981 The Opposite Sex (2014)
## 8982 The Gallows (2015)
## 8983 Tokyo Tribe (2014)
## 8984 Feast (2014)
## 8985 Joe Dirt 2: Beautiful Loser (2015)
## 8986 Return to Treasure Island (1988)
## 8987 Nasu: Summer in Andalusia (2003)
## 8988 Dark Places (2015)
## 8989 Afro Samurai (2007)
## 8990 Massu Engira Maasilamani (2015)
## 8991 The Revenant (2015)
## 8992 Irrational Man (2015)
## 8993 Exte: Hair Extensions (2007)
## 8994 Ooops! Noah is Gone... (2015)
## 8995 Southpaw (2015)
## 8996 Sicario (2015)
## 8997 Goodnight Mommy (Ich seh ich seh) (2014)
## 8998 10 Cent Pistol (2015)
## 8999 Before We Go (2014)
## 9000 Anomalisa (2015)
## 9001 Colonia (2016)
## 9002 Ghost in the Shell Arise - Border 2: Ghost Whispers (2013)
## 9003 How to Make Love Like an Englishman (2014)
## 9004 Fracchia contro Dracula (1985)
## 9005 Always Watching: A Marble Hornets Story (2015)
## 9006 Madly in Love (1981)
## 9007 The Intern (2015)
## 9008 Hollywood Chainsaw Hookers (1988)
## 9009 Love (2015)
## 9010 Room (2015)
## 9011 The Runner (2015)
## 9012 The Gift (2015)
## 9013 George Carlin: Jammin' in New York (1992)
## 9014 The Witch (2015)
## 9015 Men & Chicken (2015)
## 9016 The Escort (2015)
## 9017 Doctor Who: The Waters of Mars (2009)
## 9018 Family Guy Presents: Something, Something, Something, Dark Side (2009)
## 9019 Visit, The (2015)
## 9020 Secret in Their Eyes (2015)
## 9021 The Electric Hotel (1908)
## 9022 Jeff Ross Roasts Criminals: Live at Brazos County Jail (2015)
## 9023 Battle For Sevastopol (2015)
## 9024 American Ultra (2015)
## 9025 Straight Outta Compton (2015)
## 9026 Cop Car (2015)
## 9027 The Lost Room (2006)
## 9028 Tangerine (2015)
## 9029 Every Secret Thing (2014)
## 9030 964 Pinocchio (1991)
## 9031 Joy (2015)
## 9032 Ready Player One
## 9033 Victor Frankenstein (2015)
## 9034 Guardians (2016)
## 9035 Invincible Shaolin (1978)
## 9036 Scouts Guide to the Zombie Apocalypse (2015)
## 9037 Suffragette (2015)
## 9038 Fort Tilden (2014)
## 9039 Turbo Kid (2015)
## 9040 The Unauthorized Saved by the Bell Story (2014)
## 9041 War Room (2015)
## 9042 Legend (2015)
## 9043 Deathgasm (2015)
## 9044 The Danish Girl (2015)
## 9045 Cooties (2015)
## 9046 Autumn Marathon (1979)
## 9047 12 Chairs (1976)
## 9048 Ordinary Miracle (1978)
## 9049 Old Men: Robbers (1971)
## 9050 Unbelievable Adventures of Italians in Russia (1974)
## 9051 It Can't Be! (1975)
## 9052 12 Chairs (1971)
## 9053 Steve Jobs: The Man in the Machine (2015)
## 9054 Green Room (2015)
## 9055 Beasts of No Nation (2015)
## 9056 Bloodsucking Bastards (2015)
## 9057 Saving Christmas (2014)
## 9058 Oscar (1967)
## 9059 Iron Man & Hulk: Heroes United (2013)
## 9060 Knock Knock (2015)
## 9061 The Blue Planet (2001)
## 9062 Cornered! (2009)
## 9063 Demolition (2016)
## 9064 Cigarette Burns (2005)
## 9065 Our Brand Is Crisis (2015)
## 9066 High Rise (2015)
## 9067 The Night Before (2015)
## 9068 Into the Forest (2015)
## 9069 The Editor (2015)
## 9070 Everest (2015)
## 9071 The Brand New Testament (2015)
## 9072 Spotlight (2015)
## 9073 Pawn Sacrifice (2015)
## 9074 Hardcore Henry (2015)
## 9075 Burnt (2015)
## 9076 Ryuzo and the Seven Henchmen (2015)
## 9077 If I Were a Rich Man (2002)
## 9078 Last Shift (2014)
## 9079 F*ck You, Goethe 2 (2015)
## 9080 Garam Masala (2005)
## 9081 Life Eternal (2015)
## 9082 Hotel Transylvania 2 (2015)
## 9083 Anti-Social (2015)
## 9084 Jump In! (2007)
## 9085 The Little Prince (2015)
## 9086 Narcopolis (2014)
## 9087 Ashby (2015)
## 9088 Wonder Woman (2017)
## 9089 The Circle (2016)
## 9090 Silence (2016)
## 9091 Bridge of Spies (2015)
## 9092 Hyena Road
## 9093 The Great Hypnotist (2014)
## 9094 Into the Grizzly Maze (2015)
## 9095 Human (2015)
## 9096 Chasuke's Journey (2015)
## 9097 L.A. Slasher (2015)
## 9098 Hail, Caesar! (2016)
## 9099 How To Change The World (2015)
## 9100 Er ist wieder da (2015)
## 9101 Just Eat It: A Food Waste Story (2014)
## 9102 Bros Before Hos (2013)
## 9103 Slow Learners (2015)
## 9104 Unforgiven (2013)
## 9105 Sex, Drugs & Taxation (2013)
## 9106 Sky High (2003)
## 9107 Confessions of a Dangerous Mind (2002)
## 9108 Goosebumps (2015)
## 9109 The Perfect Guy (2015)
## 9110 Rock the Kasbah (2015)
## 9111 Freaks of Nature (2015)
## 9112 Bone Tomahawk (2015)
## 9113 Extraordinary Tales (2015)
## 9114 The Dressmaker (2015)
## 9115 Nowitzki: The Perfect Shot (2014)
## 9116 Trumbo (2015)
## 9117 Our Lips Are Sealed (2000)
## 9118 Idaho Transfer (1973)
## 9119 Witch Hunt (1999)
## 9120 Concussion (2015)
## 9121 Peanuts Movie, The (2015)
## 9122 Bloodsport: The Dark Kumite (1999)
## 9123 Formula of Love (1984)
## 9124 A Man from Boulevard des Capucines (1987)
## 9125 The Adventures of Sherlock Holmes and Dr. Watson: The Hound of the Baskervilles (1981)
## 9126 Blue Mountain State: The Rise of Thadland (2015)
## 9127 Dil To Pagal Hai (1997)
## 9128 The Boy and the Beast (2015)
## 9129 Creed (2015)
## 9130 Dragons: Gift of the Night Fury (2011)
## 9131 Twinsters (2015)
## 9132 Cosmic Scrat-tastrophe (2015)
## 9133 Solace (2015)
## 9134 Lost in the Sun (2015)
## 9135 Le Maître d'école (1981)
## 9136 Eros (2004)
## 9137 Those Happy Days (2006)
## 9138 The Girls (1961)
## 9139 The Adventures of Sherlock Holmes and Doctor Watson
## 9140 What Men Still Talk About (2011)
## 9141 The Adventures of Sherlock Holmes and Doctor Watson: The Treasures of Agra (1983)
## 9142 Adventures Of Sherlock Holmes And Dr. Watson: The Twentieth Century Approaches (1986)
## 9143 The Adventures of Sherlock Holmes and Doctor Watson: King of Blackmailers (1980)
## 9144 The Adventures of Sherlock Holmes and Dr. Watson: Bloody Signature (1979)
## 9145 Sherlock Holmes and Dr. Watson: Acquaintance (1979)
## 9146 Doctor Who: Last Christmas (2014)
## 9147 Doctor Who: The Doctor, the Widow and the Wardrobe (2011)
## 9148 Doctor Who: A Christmas Carol (2010)
## 9149 Doctor Who: Planet of the Dead (2009)
## 9150 Doctor Who: The Next Doctor (2008)
## 9151 Doctor Who: Voyage Of The Damned (2007)
## 9152 Doctor Who: The Runaway Bride (2007)
## 9153 A Perfect Day (2015)
## 9154 Masked Avengers (1981)
## 9155 Return of the One-Armed Swordsman (1969)
## 9156 The Lord's Lantern in Budapest (1999)
## 9157 Hitchcock/Truffaut (2015)
## 9158 The 5th Wave (2016)
## 9159 A Very Murray Christmas (2015)
## 9160 Chi-Raq (2015)
## 9161 Truth (2015)
## 9162 Just Jim (2015)
## 9163 Big Short, The (2015)
## 9164 Applesauce (2015)
## 9165 The Ridiculous 6 (2015)
## 9166 John Mulaney: The Comeback Kid (2015)
## 9167 Saw (2003)
## 9168 North Pole: Open For Christmas (2015)
## 9169 Mojave (2015)
## 9170 Wizards of Waverly Place: The Movie (2009)
## 9171 World of Tomorrow (2015)
## 9172 Zoolander 2 (2016)
## 9173 How to Be Single (2016)
## 9174 Blue Exorcist: The Movie (2012)
## 9175 Devil Dog: The Hound of Hell (1978)
## 9176 He Never Died (2015)
## 9177 Parasyte: Part 1 (2014)
## 9178 Parasyte: Part 2 (2015)
## 9179 A Cosmic Christmas (1977)
## 9180 Nocturnal Animals
## 9181 Lumberjack Man (2015)
## 9182 Daddy's Home (2015)
## 9183 Sisters (2015)
## 9184 'Tis the Season for Love (2015)
## 9185 Kung Fu Panda 3 (2016)
## 9186 Spellbound (2011)
## 9187 Unicorn City (2012)
## 9188 Standoff (2016)
## 9189 Swelter (2014)
## 9190 Pride and Prejudice and Zombies (2016)
## 9191 Garm Wars: The Last Druid (2014)
## 9192 The Devil's Candy (2015)
## 9193 Close Range (2015)
## 9194 Sherlock: The Abominable Bride (2016)
## 9195 The Love Bug (1997)
## 9196 Doctor Who: The Husbands of River Song (2015)
## 9197 Moonwalkers (2015)
## 9198 Tomorrow (2015)
## 9199 Anacleto: Agente secreto (2015)
## 9200 Wiener-Dog (2016)
## 9201 Ride Along 2 (2016)
## 9202 Maggie's Plan (2015)
## 9203 Eddie the Eagle (2016)
## 9204 The Flash 2 - Revenge of the Trickster (1991)
## 9205 Exposed (2016)
## 9206 Stonewall (2015)
## 9207 Frankenstein (2015)
## 9208 Welcome to Happiness (2015)
## 9209 Risen (2016)
## 9210 The Survivalist (2015)
## 9211 Dirty Grandpa (2016)
## 9212 Reptilicus (1961)
## 9213 Requiem for the American Dream (2015)
## 9214 Death Note Rewrite: Genshisuru Kami (2007)
## 9215 Three from Prostokvashino (1978)
## 9216 The Finest Hours (2016)
## 9217 Ghost in the Shell: Solid State Society (2006)
## 9218 Grease Live (2016)
## 9219 Gods of Egypt (2016)
## 9220 Embrace of the Serpent (2016)
## 9221 Race (2016)
## 9222 10 Cloverfield Lane (2016)
## 9223 London Has Fallen (2016)
## 9224 Zootopia (2016)
## 9225 Whiskey Tango Foxtrot (2016)
## 9226 Desierto (2016)
## 9227 The Brothers Grimsby (2016)
## 9228 Dad's Army (1971)
## 9229 Michael Jackson's Thriller (1983)
## 9230 The Wait (2015)
## 9231 War and Peace (2016)
## 9232 Southbound (2016)
## 9233 Ip Man 3 (2015)
## 9234 Santa's Little Helper (2015)
## 9235 Who Killed Chea Vichea? (2010)
## 9236 Hunt for the Wilderpeople (2016)
## 9237 Rabbits (2002)
## 9238 Genius Party (2007)
## 9239 Long Live Ghosts! (1977)
## 9240 Tears for Sale (2008)
## 9241 Dad's Army (2016)
## 9242 The Barkley Marathons: The Race That Eats Its Young (2015)
## 9243 Merci Patron ! (2016)
## 9244 The Neon Demon (2016)
## 9245 Fraktus (2012)
## 9246 Eye in the Sky (2016)
## 9247 Camino (2016)
## 9248 Mr. Right (2016)
## 9249 Noin 7 veljestä (1968)
## 9250 Florence Foster Jenkins (2016)
## 9251 My Big Fat Greek Wedding 2 (2016)
## 9252 Neon Bull (2015)
## 9253 Get a Job (2016)
## 9254 Keanu (2016)
## 9255 Me Him Her (2015)
## 9256 Ice Age: The Great Egg-Scapade (2016)
## 9257 Everybody Wants Some (2016)
## 9258 Sing Street (2016)
## 9259 Zoom (2015)
## 9260 Paterson
## 9261 The Huntsman Winter's War (2016)
## 9262 Neighbors 2: Sorority Rising (2016)
## 9263 Project X (1968)
## 9264 The Trust (2016)
## 9265 Hush (2016)
## 9266 Jimmy Carr: Telling Jokes (2009)
## 9267 Jimmy Carr: Making People Laugh (2010)
## 9268 Texas - Doc Snyder hält die Welt in Atem (1993)
## 9269 00 Schneider - Jagd auf Nihil Baxter (1994)
## 9270 The Man Who Knew Infinity (2016)
## 9271 Despite the Falling Snow (2016)
## 9272 Wizards of the Lost Kingdom II (1989)
## 9273 Money Monster (2016)
## 9274 Barbershop: The Next Cut (2016)
## 9275 Finding Dory (2016)
## 9276 The Boss (2016)
## 9277 The Angry Birds Movie (2016)
## 9278 Bakuman (2015)
## 9279 I Am Wrath (2016)
## 9280 Precious Cargo (2016)
## 9281 Snowden (2016)
## 9282 Tenchi Muyô! In Love (1996)
## 9283 Ratchet & Clank (2016)
## 9284 Kicking Off (2016)
## 9285 SORI: Voice from the Heart (2016)
## 9286 Gintama: The Final Chapter - Be Forever Yorozuya (2013)
## 9287 The Nice Guys (2016)
## 9288 Kindergarten Cop 2 (2016)
## 9289 Buck Rogers in the 25th Century (1979)
## 9290 World of Glory (1991)
## 9291 The Crew (2016)
## 9292 The Shallows (2016)
## 9293 Gen-X Cops (1999)
## 9294 The Handmaiden (2016)
## 9295 Alice Through the Looking Glass (2016)
## 9296 The BFG (2016)
## 9297 My Scientology Movie (2016)
## 9298 Sausage Party (2016)
## 9299 Karate Bullfighter (1975)
## 9300 All Yours (2016)
## 9301 Kill Command (2016)
## 9302 Captain Fantastic (2016)
## 9303 Toni Erdmann (2016)
## 9304 The Wailing (2016)
## 9305 Comedy of the Strict Regime (1993)
## 9306 The Meddler (2016)
## 9307 Now You See Me 2 (2016)
## 9308 Ali Wong: Baby Cobra (2016)
## 9309 Café Society (2016)
## 9310 Neo Tokyo (1987)
## 9311 Swiss Army Man (2016)
## 9312 The Do-Over (2016)
## 9313 Death Smiles on a Murderer (1973)
## 9314 Teenage Mutant Ninja Turtles: Out of the Shadows (2016)
## 9315 The Fundamentals of Caring (2016)
## 9316 Popstar: Never Stop Never Stopping (2016)
## 9317 A Midsummer Night's Dream (2016)
## 9318 The Bremen Town Musicians (1969)
## 9319 Planet Earth (2006)
## 9320 Bo Burnham: Make Happy (2016)
## 9321 The Conjuring 2 (2016)
## 9322 Pelé: Birth of a Legend (2016)
## 9323 Ghostbusters (2016)
## 9324 Central Intelligence (2016)
## 9325 O.J.: Made in America (2016)
## 9326 Bloodmoon (1997)
## 9327 Genius (2016)
## 9328 The Wooden Horse (1950)
## 9329 Jason Bourne (2016)
## 9330 The Maid's Room (2014)
## 9331 Sympathy for the Underdog (1971)
## 9332 The Legend of Tarzan (2016)
## 9333 The Purge: Election Year (2016)
## 9334 Mike & Dave Need Wedding Dates (2016)
## 9335 Ice Age: Collision Course (2016)
## 9336 Lights Out (2016)
## 9337 Pete's Dragon (2016)
## 9338 Indignation (2016)
## 9339 Goat (2016)
## 9340 Marauders (2016)
## 9341 Piper (2016)
## 9342 The Adderall Diaries (2015)
## 9343 Hazard (2005)
## 9344 The Red Turtle (2016)
## 9345 Satanic (2016)
## 9346 Nerve (2016)
## 9347 Hellevator (2004)
## 9348 Sully (2016)
## 9349 The Forbidden Dance (1990)
## 9350 Jim Jefferies: Freedumb (2016)
## 9351 The Grandmother (1970)
## 9352 Webmaster (1998)
## 9353 The Infiltrator (2016)
## 9354 War Dogs (2016)
## 9355 Vigilante Diaries (2016)
## 9356 Batman: The Killing Joke (2016)
## 9357 Bad Moms (2016)
## 9358 Hell or High Water (2016)
## 9359 Kingsglaive: Final Fantasy XV (2016)
## 9360 Don't Breathe (2016)
## 9361 Body (2015)
## 9362 Sharknado 4: The 4th Awakens (2016)
## 9363 The Edge of Seventeen (2016)
## 9364 Elle (2016)
## 9365 Train to Busan (2016)
## 9366 Tom Segura: Mostly Stories (2016)
## 9367 The Magnificent Seven (2016)
## 9368 Moonlight
## 9369 Masterminds (2016)
## 9370 Kubo and the Two Strings (2016)
## 9371 Bridget Jones's Baby (2016)
## 9372 Deepwater Horizon (2016)
## 9373 Miss Peregrine's Home for Peculiar Children (2016)
## 9374 The Girl on the Train (2016)
## 9375 The Accountant (2016)
## 9376 Imperium (2016)
## 9377 Kizumonogatari Part 1: Tekketsu (2016)
## 9378 Steins;Gate the Movie: The Burden of Déjàvu (2013)
## 9379 Shin Godzilla (2016)
## 9380 Winnie Pooh (1969)
## 9381 Winnie the Pooh Goes Visiting (1971)
## 9382 Your Name. (2016)
## 9383 Winnie the Pooh and the Day of Concern (1972)
## 9384 Comedy Central Roast of David Hasselhoff (2010)
## 9385 DC Super Hero Girls: Hero of the Year (2016)
## 9386 Hacksaw Ridge (2016)
## 9387 David Cross: Making America Great Again (2016)
## 9388 Over the Garden Wall (2013)
## 9389 Wings, Legs and Tails (1986)
## 9390 Blair Witch (2016)
## 9391 31 (2016)
## 9392 ARQ (2016)
## 9393 Arrival (2016)
## 9394 Storks (2016)
## 9395 Maximum Ride (2016)
## 9396 Endless Poetry (2016)
## 9397 The Girl with All the Gifts (2016)
## 9398 All Roads Lead to Rome (2016)
## 9399 Amanda Knox (2016)
## 9400 Dirty 30 (2016)
## 9401 Gimme Danger (2016)
## 9402 Go Figure (2005)
## 9403 Anything for Love (2016)
## 9404 Night Guards (2016)
## 9405 La La Land (2016)
## 9406 13th (2016)
## 9407 London Town (2016)
## 9408 Inferno (2016)
## 9409 Keeping Up with the Joneses (2016)
## 9410 Wild Oats (2016)
## 9411 The Rocky Horror Picture Show: Let's Do the Time Warp Again (2016)
## 9412 Jack Reacher: Never Go Back (2016)
## 9413 Joe Rogan: Triggered (2016)
## 9414 Ethel & Ernest (2016)
## 9415 Flowers for Algernon (2000)
## 9416 Manchester by the Sea (2016)
## 9417 Lion (2016)
## 9418 The Thinning (2016)
## 9419 While You Were Fighting: A Thor Mockumentary (2016)
## 9420 Bad Santa 2 (2016)
## 9421 Ice Guardians (2016)
## 9422 Risk (2016)
## 9423 The True Memoirs of an International Assassin (2016)
## 9424 Alesha Popovich and Tugarin the Dragon (2004)
## 9425 HyperNormalisation (2016)
## 9426 The African Doctor (2016)
## 9427 Whiplash (2013)
## 9428 Junior and Karlson (1968)
## 9429 Sapphire Blue (2014)
## 9430 A Silent Voice (2016)
## 9431 Moana (2016)
## 9432 Office Christmas Party (2016)
## 9433 The Space Between Us (2016)
## 9434 Rogue One: A Star Wars Story (2016)
## 9435 Split (2017)
## 9436 Underworld: Blood Wars (2016)
## 9437 Miss Sloane (2016)
## 9438 Passengers (2016)
## 9439 Hidden Figures (2016)
## 9440 Fences (2016)
## 9441 The Founder (2016)
## 9442 Why Him? (2016)
## 9443 Sing (2016)
## 9444 I Am Not Your Negro (2017)
## 9445 Iron Man (1931)
## 9446 Assassin's Creed (2016)
## 9447 A Dog's Purpose (2017)
## 9448 Microwave Massacre (1983)
## 9449 The OA
## 9450 Fist Fight (2017)
## 9451 Shakespeare Behind Bars (2005)
## 9452 A Street Cat Named Bob (2016)
## 9453 The Lego Batman Movie (2017)
## 9454 The Spirit of Christmas (1995)
## 9455 The Good Boy (2016)
## 9456 Dana Carvey: Straight White Male, 60 (2016)
## 9457 Marvel One-Shot: Agent Carter (2013)
## 9458 Kizumonogatari II: Passionate Blood (2016)
## 9459 Joe Rogan: Live (2006)
## 9460 Jim Gaffigan: Cinco (2017)
## 9461 Kizumonogatari III: Cold Blood (2017)
## 9462 John Wick: Chapter Two (2017)
## 9463 Get Out (2017)
## 9464 Logan (2017)
## 9465 Kong: Skull Island (2017)
## 9466 T2: Trainspotting (2017)
## 9467 The Big Sick (2017)
## 9468 100 Streets (2016)
## 9469 Saturn 3 (1980)
## 9470 Beauty and the Beast (2017)
## 9471 The Boss Baby (2017)
## 9472 Mercury Plains (2016)
## 9473 Call Me by Your Name (2017)
## 9474 Mudbound (2017)
## 9475 Ghost in the Shell (2017)
## 9476 Bill Burr: Walk Your Way Out (2017)
## 9477 Fifty Shades Darker (2017)
## 9478 Neal Brennan: 3 Mics (2017)
## 9479 Lemonade (2016)
## 9480 American Fable (2017)
## 9481 The Void (2016)
## 9482 Guyver: Dark Hero (1994)
## 9483 Denis Leary: No Cure for Cancer (1993)
## 9484 Buster's Mal Heart (2017)
## 9485 Power Rangers (2017)
## 9486 Alien: Covenant (2017)
## 9487 Free Fire (2017)
## 9488 Species III (2004)
## 9489 Ultimate Avengers 2 (2006)
## 9490 Mulholland Dr. (1999)
## 9491 Dave Chappelle: The Age of Spin (2017)
## 9492 CHiPS (2017)
## 9493 Table 19 (2017)
## 9494 Dave Chappelle: Deep in the Heart of Texas (2017)
## 9495 The Quiet Family (1998)
## 9496 A Plasticine Crow (1981)
## 9497 Gifted (2017)
## 9498 Band of Brothers (2001)
## 9499 There Once Was a Dog (1982)
## 9500 Baywatch (2017)
## 9501 Snatched (2017)
## 9502 The Mummy (2017)
## 9503 Life-Size (2000)
## 9504 The Fate of the Furious (2017)
## 9505 Sandy Wexler (2017)
## 9506 Betting on Zero (2016)
## 9507 Win It All (2017)
## 9508 Captain Underpants: The First Epic Movie (2017)
## 9509 It Comes at Night (2017)
## 9510 Cars 3 (2017)
## 9511 Mini's First Time (2006)
## 9512 Planet Earth II (2016)
## 9513 The Hero (2017)
## 9514 Nobody Speak: Hulk Hogan, Gawker and Trials of a Free Press (2017)
## 9515 Cosmos
## 9516 Maria Bamford: Old Baby
## 9517 Robin Williams: Live on Broadway (2002)
## 9518 The Death of Louis XIV (2016)
## 9519 Death Note: Desu nôto (2006â\200â2007)
## 9520 Munna bhai M.B.B.S. (2003)
## 9521 The Beguiled (2017)
## 9522 Baby Driver (2017)
## 9523 Okja (2017)
## 9524 Embassy (2013)
## 9525 Rough Night (2017)
## 9526 Generation Iron 2
## 9527 Mystère àla Tour Eiffel (2015)
## 9528 Stefan Zweig: Farewell to Europe (2016)
## 9529 Saved by the Bell: Hawaiian Style (1992)
## 9530 Plain Clothes (1988)
## 9531 The Prime Gig (2000)
## 9532 The Night Before (1988)
## 9533 Late Night with Conan O'Brien: The Best of Triumph the Insult Comic Dog (2004)
## 9534 Get Me Roger Stone (2017)
## 9535 T2 3-D: Battle Across Time (1996)
## 9536 Despicable Me 3 (2017)
## 9537 Last Year's Snow Was Falling (1983)
## 9538 Investigation Held by Kolobki (1986)
## 9539 Karlson Returns (1970)
## 9540 Vacations in Prostokvashino (1980)
## 9541 Winter in Prostokvashino (1984)
## 9542 The Godfather Trilogy: 1972-1990 (1992)
## 9543 Priklyucheniya Kapitana Vrungelya (1979)
## 9544 Tickling Giants (2017)
## 9545 Vovka in the Kingdom of Far Far Away (1965)
## 9546 Adventures of Mowgli: The Kidnapping (1968)
## 9547 A Detective Story (2003)
## 9548 Final Flight of the Osiris (2003)
## 9549 Kid's Story (2003)
## 9550 Cheburashka (1971)
## 9551 War for the Planet of the Apes (2017)
## 9552 The Square (2017)
## 9553 The Meyerowitz Stories (2017)
## 9554 War Machine (2017)
## 9555 Tokyo Idols (2017)
## 9556 Vir Das: Abroad Understanding (2017)
## 9557 Norm Macdonald: Hitler's Dog, Gossip & Trickery (2017)
## 9558 Valerian and the City of a Thousand Planets (2017)
## 9559 The Gracefield Incident (2015)
## 9560 Shadow World (2016)
## 9561 Wow! A Talking Fish! (1983)
## 9562 Travels of an Ant (1983)
## 9563 The Adventures of Sherlock Holmes and Doctor Watson: The Hunt for the Tiger (1980)
## 9564 Fugitives (1986)
## 9565 Tiger Raid (2016)
## 9566 Gulliver's Travels (1996)
## 9567 Seven Sisters (2017)
## 9568 Atomic Blonde (2017)
## 9569 Empties (2007)
## 9570 Goon: Last of the Enforcers (2017)
## 9571 Black Mirror: White Christmas (2014)
## 9572 Dunkirk (2017)
## 9573 Belladonna of Sadness (1973)
## 9574 The Putin Interviews (2017)
## 9575 Unedited Footage of a Bear (2014)
## 9576 Obsession (1965)
## 9577 Oh, Hello: On Broadway (2017)
## 9578 Good Time (2017)
## 9579 Don Camillo in Moscow (1965)
## 9580 The House (2017)
## 9581 Logan Lucky (2017)
## 9582 The Dark Tower (2017)
## 9583 Annabelle: Creation (2017)
## 9584 Gena the Crocodile (1969)
## 9585 It (2017)
## 9586 On the Trail of the Bremen Town Musicians (1973)
## 9587 In the blue sea, in the white foam. (1984)
## 9588 Wolf and Calf (1984)
## 9589 Bobik Visiting Barbos (1977)
## 9590 The Magic Ring (1982)
## 9591 The Emoji Movie (2017)
## 9592 Death Note (2017)
## 9593 Wind River (2017)
## 9594 Rory Scovel Tries Stand-Up for the First Time (2017)
## 9595 Shot Caller (2017)
## 9596 The Hitman's Bodyguard (2017)
## 9597 Rick and Morty: State of Georgia Vs. Denver Fenton Allen (2016)
## 9598 Themroc (1973)
## 9599 A German Life (2016)
## 9600 Self-criticism of a Bourgeois Dog (2017)
## 9601 Der Herr Karl (1961)
## 9602 LEGO DC Super Hero Girls: Brain Drain (2017)
## 9603 Kingsman: The Golden Circle (2017)
## 9604 Ari Shaffir: Double Negative (2017)
## 9605 Blade Runner 2049 (2017)
## 9606 The Nut Job 2: Nutty by Nature (2017)
## 9607 Bliss (2012)
## 9608 Alles Inklusive (2014)
## 9609 Mother! (2017)
## 9610 Icarus (2017)
## 9611 Cage Dive (2017)
## 9612 Black Mirror
## 9613 Boniface's Holiday (1965)
## 9614 American Made (2017)
## 9615 Little Boxes (2017)
## 9616 Geostorm (2017)
## 9617 Maz Jobrani: Immigrant (2017)
## 9618 Sword Art Online The Movie: Ordinal Scale (2017)
## 9619 Three Billboards Outside Ebbing, Missouri (2017)
## 9620 Lady Bird (2017)
## 9621 Murder on the Orient Express (2017)
## 9622 Coco (2017)
## 9623 The Night Is Short, Walk on Girl (2017)
## 9624 I, Tonya (2017)
## 9625 Fireworks, Should We See It from the Side or the Bottom? (2017)
## 9626 Adventures in Plymptoons! (2011)
## 9627 Gaga: Five Foot Two (2017)
## 9628 Dave Chappelle: Killin' Them Softly (2000)
## 9629 Front Cover (2016)
## 9630 Paddington 2 (2017)
## 9631 2048: Nowhere to Run (2017)
## 9632 Male Hunt (1964)
## 9633 The Death of Stalin (2017)
## 9634 Loving Vincent (2017)
## 9635 Blue Planet II (2017)
## 9636 Christina P: Mother Inferior (2017)
## 9637 Jumanji: Welcome to the Jungle (2017)
## 9638 Dane Cook: Troublemaker (2014)
## 9639 Mayhem (2017)
## 9640 Emerald Green (2016)
## 9641 Wonder Wheel (2017)
## 9642 Creep 2 (2017)
## 9643 LBJ (2017)
## 9644 Roman J. Israel, Esq. (2017)
## 9645 Darkest Hour (2017)
## 9646 Star Wars: The Last Jedi (2017)
## 9647 A Bad Moms Christmas (2017)
## 9648 The Shape of Water (2017)
## 9649 Molly's Game (2017)
## 9650 Wonder (2017)
## 9651 Daddy's Home 2 (2017)
## 9652 The Shining (1997)
## 9653 Jim & Andy: The Great Beyond (2017)
## 9654 The Disaster Artist (2017)
## 9655 The Post (2017)
## 9656 Die Frauen von Ravensbrück (2005)
## 9657 The Greatest Showman (2017)
## 9658 Ferdinand (2017)
## 9659 Jack Whitehall: At Large (2017)
## 9660 Lynne Koplitz: Hormonal Beast (2017)
## 9661 Phantom Thread (2017)
## 9662 Too Funny to Fail: The Life and Death of The Dana Carvey Show (2017)
## 9663 Craig Ferguson: Tickle Fight (2017)
## 9664 Serving in Silence: The Margarethe Cammermeyer Story (1995)
## 9665 Hare-um Scare-um (1939)
## 9666 Porky in Wackyland (1938)
## 9667 Porky's Hare Hunt (1938)
## 9668 The Second Renaissance Part II (2003)
## 9669 Annihilation (2018)
## 9670 A Christmas Story Live! (2017)
## 9671 Pixel Perfect (2004)
## 9672 Judd Apatow: The Return (2017)
## 9673 The Purple Sea (2009)
## 9674 Bright (2017)
## 9675 The Commuter (2018)
## 9676 Dave Chappelle: Equanimity (2017)
## 9677 Quest (2017)
## 9678 Dave Chappelle: The Bird Revelation (2017)
## 9679 Insidious: The Last Key (2018)
## 9680 The Tale of the Bunny Picnic (1986)
## 9681 Patti Rocks (1988)
## 9682 Game Night (2018)
## 9683 Maze Runner: The Death Cure (2018)
## 9684 Isle of Dogs (2018)
## 9685 The Clapper (2018)
## 9686 Tom Segura: Disgraceful (2018)
## 9687 When We First Met (2018)
## 9688 Battle Planet (2008)
## 9689 De platte jungle (1978)
## 9690 The Cloverfield Paradox (2018)
## 9691 Making a Murderer (2015)
## 9692 Elsa & Fred (2005)
## 9693 Tomb Raider (2018)
## 9694 Fullmetal Alchemist 2018 (2017)
## 9695 First Reformed (2017)
## 9696 Fred Armisen: Standup for Drummers (2018)
## 9697 Death Wish (2018)
## 9698 A Wrinkle in Time (2018)
## 9699 Love, Simon (2018)
## 9700 A Quiet Place (2018)
## 9701 Alpha (2018)
## 9702 I Kill Giants (2018)
## 9703 Sherlock - A Study in Pink (2010)
## 9704 Game Over, Man! (2018)
## 9705 Blockers (2018)
## 9706 Pacific Rim: Uprising (2018)
## 9707 Rampage (2018)
## 9708 Jurassic World: Fallen Kingdom (2018)
## 9709 Incredibles 2 (2018)
## 9710 Deadpool 2 (2018)
## 9711 Solo: A Star Wars Story (2018)
## 9712 Won't You Be My Neighbor? (2018)
## 9713 Sorry to Bother You (2018)
## 9714 Ant-Man and the Wasp (2018)
## 9715 Dogman (2018)
## 9716 Mamma Mia: Here We Go Again! (2018)
## 9717 Tag (2018)
## 9718 The Man Who Killed Don Quixote (2018)
## 9719 Boundaries (2018)
## 9720 Spiral (2018)
## 9721 Mission: Impossible - Fallout (2018)
## 9722 SuperFly (2018)
## 9723 Iron Soldier (2010)
## 9724 BlacKkKlansman (2018)
## 9725 The Darkest Minds (2018)
## 9726 Tilt (2011)
## 9727 Jeff Ross Roasts the Border (2017)
## 9728 John From (2015)
## 9729 Liquid Truth (2017)
## 9730 Bunny (1998)
## 9731 Hommage ÃÂ Zgougou (et salut ÃÂ Sabine Mamou) (2002)
## 9732 Gintama (2017)
## 9733 Gintama: The Movie (2010)
## 9734 anohana: The Flower We Saw That Day - The Movie (2013)
## 9735 Silver Spoon (2014)
## 9736 Love Live! The School Idol Movie (2015)
## 9737 Jon Stewart Has Left the Building (2015)
## 9738 Black Butler: Book of the Atlantic (2017)
## 9739 No Game No Life: Zero (2017)
## 9740 Flint (2017)
## 9741 Bungo Stray Dogs: Dead Apple (2018)
## 9742 Andrew Dice Clay: Dice Rules (1991)
## genres
## 1 Adventure|Animation|Children|Comedy|Fantasy
## 2 Adventure|Children|Fantasy
## 3 Comedy|Romance
## 4 Comedy|Drama|Romance
## 5 Comedy
## 6 Action|Crime|Thriller
## 7 Comedy|Romance
## 8 Adventure|Children
## 9 Action
## 10 Action|Adventure|Thriller
## 11 Comedy|Drama|Romance
## 12 Comedy|Horror
## 13 Adventure|Animation|Children
## 14 Drama
## 15 Action|Adventure|Romance
## 16 Crime|Drama
## 17 Drama|Romance
## 18 Comedy
## 19 Comedy
## 20 Action|Comedy|Crime|Drama|Thriller
## 21 Comedy|Crime|Thriller
## 22 Crime|Drama|Horror|Mystery|Thriller
## 23 Action|Crime|Thriller
## 24 Drama|Sci-Fi
## 25 Drama|Romance
## 26 Drama
## 27 Children|Drama
## 28 Drama|Romance
## 29 Adventure|Drama|Fantasy|Mystery|Sci-Fi
## 30 Crime|Drama
## 31 Drama
## 32 Mystery|Sci-Fi|Thriller
## 33 Children|Drama
## 34 Crime|Drama
## 35 Children|Comedy
## 36 Comedy|Romance
## 37 Drama
## 38 Drama|War
## 39 Action|Crime|Drama
## 40 Drama
## 41 Action|Adventure|Fantasy
## 42 Comedy|Drama|Thriller
## 43 Drama|Romance
## 44 Mystery|Thriller
## 45 Animation|Children|Drama|Musical|Romance
## 46 Drama|Romance
## 47 Crime|Mystery|Thriller
## 48 Comedy|Drama|Romance
## 49 Adventure|Drama
## 50 Children|Comedy
## 51 Drama
## 52 Drama
## 53 Comedy|Drama|Romance
## 54 Adventure|Children|Fantasy
## 55 Drama|Thriller
## 56 Drama
## 57 Comedy|Crime
## 58 Comedy|Romance
## 59 Comedy
## 60 Action|Sci-Fi|Thriller
## 61 Comedy|Romance
## 62 Comedy
## 63 Action|Comedy|Horror|Thriller
## 64 Action
## 65 Comedy|Drama
## 66 Drama|War
## 67 Drama|Romance
## 68 Comedy|Drama
## 69 Action|Sci-Fi|Thriller
## 70 Documentary
## 71 Action|Crime|Drama|Thriller
## 72 Drama|Thriller
## 73 Children|Drama
## 74 Crime|Drama|Romance
## 75 Comedy|Drama
## 76 Drama|Romance
## 77 Drama|Romance
## 78 Action|Adventure|Drama
## 79 Children|Comedy
## 80 Comedy
## 81 Action|Thriller
## 82 Drama|Horror|Thriller
## 83 Comedy|Horror|Romance
## 84 Comedy|Drama|Romance
## 85 Action|Adventure|Thriller
## 86 Comedy|Drama
## 87 Crime|Drama
## 88 Documentary
## 89 Drama|Thriller
## 90 Adventure|Comedy|Crime|Romance
## 91 Comedy
## 92 Mystery|Sci-Fi|Thriller
## 93 Comedy
## 94 Drama|Romance
## 95 Comedy|Drama
## 96 Adventure|Children|Comedy|Musical
## 97 Documentary
## 98 Action|Drama|War
## 99 Crime|Drama|Thriller
## 100 Action|Adventure|Comedy|Crime
## 101 Drama|Mystery
## 102 Documentary
## 103 Crime|Drama
## 104 Comedy|Romance
## 105 Comedy
## 106 Drama
## 107 Comedy|Romance
## 108 Drama|Mystery|Romance
## 109 Comedy
## 110 Adventure|Children|Fantasy
## 111 Documentary
## 112 Comedy|Romance
## 113 Thriller
## 114 Comedy
## 115 Documentary
## 116 Drama|Romance
## 117 Comedy
## 118 Comedy
## 119 Action|Comedy|Crime|Drama|Thriller
## 120 Adventure|Children
## 121 Drama
## 122 Drama
## 123 Crime|Drama|Thriller
## 124 Adventure|Drama|IMAX
## 125 Action|Drama|Romance|War
## 126 Drama|Horror
## 127 Action|Adventure|Comedy|Crime
## 128 Drama
## 129 Adventure|Drama|War
## 130 Comedy|Drama
## 131 Comedy|War
## 132 Adventure|Children
## 133 Crime|Drama|Mystery
## 134 Action|Adventure|Mystery|Sci-Fi
## 135 Drama|Thriller|War
## 136 Documentary
## 137 Action|Romance|Western
## 138 Crime|Film-Noir|Mystery|Thriller
## 139 Action|Crime|Thriller
## 140 Comedy|Crime|Drama
## 141 Action|Drama|Romance
## 142 Adventure|Children|Drama
## 143 Action|Adventure|Crime|Thriller
## 144 Comedy|Drama
## 145 Action|Sci-Fi|Thriller
## 146 Action|Crime|Sci-Fi
## 147 Comedy
## 148 Drama
## 149 Comedy
## 150 Horror
## 151 Comedy|Drama
## 152 Drama|Romance
## 153 Comedy|Romance
## 154 Action|Children
## 155 Comedy|Horror|Thriller
## 156 Drama
## 157 Action|Crime|Thriller
## 158 Comedy|Romance
## 159 Comedy
## 160 Fantasy|Horror|Mystery
## 161 Comedy|Fantasy
## 162 Thriller
## 163 Drama|Romance
## 164 Drama
## 165 Comedy|Drama
## 166 Comedy|Drama|Romance
## 167 Horror|Sci-Fi
## 168 Action|Crime|Drama|Mystery|Sci-Fi|Thriller
## 169 Drama|Musical|Romance
## 170 Drama|Fantasy
## 171 Drama|Romance
## 172 Comedy
## 173 Action
## 174 Comedy|Drama
## 175 Documentary
## 176 Drama|Romance
## 177 Action|Adventure|Sci-Fi
## 178 Drama
## 179 Western
## 180 Drama
## 181 Adventure|Comedy|Crime|Mystery
## 182 Drama
## 183 Drama|War
## 184 Drama|Romance
## 185 Comedy
## 186 Drama|Thriller
## 187 Comedy|Drama
## 188 Drama
## 189 Horror
## 190 Drama|Romance
## 191 Comedy
## 192 Comedy|Drama|Romance
## 193 Drama|Thriller
## 194 Action|Thriller
## 195 Comedy
## 196 Drama|Thriller
## 197 Drama|Thriller
## 198 Adventure|Comedy
## 199 Comedy|Drama|Romance
## 200 Drama
## 201 Comedy
## 202 Comedy|Drama
## 203 Action|Comedy|Romance
## 204 Comedy|Romance
## 205 Adventure|Children
## 206 Animation|Children|Comedy|Romance
## 207 Thriller
## 208 Children|Drama
## 209 Drama|Musical
## 210 Children|Comedy|Fantasy
## 211 Documentary
## 212 Crime|Drama
## 213 Comedy
## 214 Drama|Romance
## 215 Children|Comedy
## 216 Action
## 217 Comedy|Romance
## 218 Drama|Horror
## 219 Drama
## 220 Comedy
## 221 Comedy|Sci-Fi
## 222 Mystery|Thriller
## 223 Adventure|Children|Comedy|Fantasy|Romance
## 224 Crime|Drama|Thriller
## 225 Action|Adventure|Sci-Fi
## 226 Drama
## 227 Children|Drama
## 228 Drama
## 229 Drama|Fantasy|Romance
## 230 Drama|Romance|War|Western
## 231 Comedy
## 232 Drama
## 233 Drama|Romance
## 234 Drama
## 235 Comedy|Drama
## 236 Drama|Horror|Sci-Fi
## 237 Comedy
## 238 Comedy
## 239 Comedy|Romance
## 240 Drama
## 241 Comedy
## 242 Drama
## 243 Drama|Thriller
## 244 Comedy|Drama|Romance
## 245 Drama
## 246 Crime|Drama
## 247 Action|Crime
## 248 Drama|Horror
## 249 Comedy|Romance
## 250 Action|Crime|Thriller
## 251 Comedy|Romance
## 252 Crime|Drama
## 253 Drama|Thriller
## 254 Action|Drama|Sci-Fi|Thriller
## 255 Action|Crime|Drama|Thriller
## 256 Comedy|Romance
## 257 Comedy|Romance
## 258 Comedy|Crime|Drama|Thriller
## 259 Drama
## 260 Drama
## 261 Drama
## 262 Drama|Romance
## 263 Drama|Romance
## 264 Action|Thriller|Western
## 265 Comedy|Drama
## 266 Comedy
## 267 Drama
## 268 Drama
## 269 Comedy|Drama
## 270 Comedy
## 271 Horror|Thriller
## 272 Comedy
## 273 Animation|Children
## 274 Children|Drama|Fantasy|Mystery
## 275 Action|Drama|Thriller
## 276 Action|Adventure|Sci-Fi
## 277 Comedy|Drama|Fantasy
## 278 Crime|Drama
## 279 Comedy|Drama|Thriller
## 280 Film-Noir|Thriller
## 281 Drama
## 282 Comedy|Drama
## 283 Comedy|Drama
## 284 Comedy
## 285 Drama
## 286 Action|Comedy|Sci-Fi
## 287 Horror|Thriller
## 288 Adventure|Drama|Sci-Fi
## 289 Action|Crime|Horror
## 290 Drama
## 291 Horror|Sci-Fi
## 292 Comedy
## 293 Drama
## 294 Mystery|Thriller
## 295 Drama|War
## 296 Drama
## 297 Action|Sci-Fi|Thriller
## 298 Comedy|Romance
## 299 Adventure|Drama|War
## 300 Drama
## 301 Comedy
## 302 Children
## 303 Comedy
## 304 Comedy|Drama
## 305 Drama|Musical
## 306 Drama|Film-Noir|Romance
## 307 Comedy
## 308 Action|Crime|Drama|Thriller
## 309 Drama|Mystery|Thriller
## 310 Comedy|Drama|Romance
## 311 Comedy|Drama
## 312 Action|Crime|Fantasy|Thriller
## 313 Drama
## 314 Children|Comedy|Fantasy
## 315 Comedy|Drama|Romance|War
## 316 Comedy|Romance
## 317 Drama
## 318 Comedy|Drama|Romance
## 319 Action|Comedy
## 320 Comedy|Drama|Romance
## 321 Adventure|Children|Romance
## 322 Documentary
## 323 Adventure|Animation|Children|Drama|Musical|IMAX
## 324 Drama
## 325 Drama|Horror|Mystery|Thriller
## 326 Action|Comedy|Crime|Fantasy
## 327 Adventure|Comedy|Western
## 328 Drama
## 329 Action|Comedy
## 330 Comedy|Drama
## 331 Comedy|Drama|Romance
## 332 Thriller
## 333 Children|Comedy
## 334 Action|Thriller
## 335 Action|Romance|Thriller
## 336 Comedy|Romance
## 337 Action|Sci-Fi|Thriller
## 338 Action|Adventure|Comedy|Romance|Thriller
## 339 Drama|Romance
## 340 Drama|Horror|Romance|Thriller
## 341 Western
## 342 Action|Crime|Drama
## 343 Drama
## 344 Drama
## 345 Action|Comedy
## 346 Drama
## 347 Drama|Romance|War
## 348 Action|Crime|Drama
## 349 Crime|Drama
## 350 Action|Adventure|Fantasy
## 351 Action|Fantasy
## 352 Drama
## 353 Horror|Thriller
## 354 Drama
## 355 Crime|Drama
## 356 Children|Comedy|Fantasy
## 357 Drama
## 358 Comedy
## 359 Comedy
## 360 Comedy|Thriller
## 361 Western
## 362 Comedy|Romance
## 363 Drama
## 364 Comedy
## 365 Action|Comedy|Crime|Thriller
## 366 Adventure|Children|Drama
## 367 Thriller
## 368 Action|Thriller
## 369 Drama
## 370 Drama|Romance
## 371 Horror|Sci-Fi|Thriller
## 372 Drama|Mystery|Romance|Thriller
## 373 Drama
## 374 Comedy
## 375 Comedy|Drama
## 376 Crime|Drama
## 377 Adventure|Comedy|Western
## 378 Comedy
## 379 Action|Adventure|Thriller
## 380 Comedy|Sci-Fi
## 381 Drama|Thriller
## 382 Comedy
## 383 Action|Comedy|Drama
## 384 Comedy|Romance
## 385 Comedy
## 386 Action|Adventure|Sci-Fi
## 387 Comedy|Romance
## 388 Comedy
## 389 Drama|Romance
## 390 Drama
## 391 Comedy
## 392 Comedy|Drama
## 393 Drama|Mystery|Romance
## 394 Drama
## 395 Comedy|Romance
## 396 Drama|Thriller
## 397 Adventure|Children|Drama
## 398 Crime|Drama|Thriller
## 399 Thriller
## 400 Drama|Western
## 401 Action|Adventure|Crime|Drama|Romance|Thriller
## 402 Comedy
## 403 Drama|Romance
## 404 Action|Adventure|Crime|Thriller
## 405 Action|Comedy|War
## 406 Comedy
## 407 Comedy|Romance
## 408 Drama|Romance
## 409 Comedy
## 410 Comedy
## 411 Comedy|Drama
## 412 Comedy|War
## 413 Action|Thriller
## 414 Drama
## 415 Comedy|Drama
## 416 Drama|Musical
## 417 Comedy|Crime|Drama
## 418 Action|Crime|Thriller
## 419 Action|Adventure|Sci-Fi|Thriller
## 420 Drama|Thriller
## 421 Crime|Drama|Thriller
## 422 Adventure|Children
## 423 Action|Adventure|Comedy|Fantasy
## 424 Comedy
## 425 Comedy|Western
## 426 Drama|Romance
## 427 Comedy
## 428 Thriller
## 429 Drama
## 430 Comedy|Mystery
## 431 Action|Crime|Drama
## 432 Action|Adventure|Thriller
## 433 Drama
## 434 Comedy|Drama|Romance|Thriller
## 435 Comedy|Romance
## 436 Comedy|Romance
## 437 Comedy|Drama
## 438 Drama
## 439 Action|Children|Romance
## 440 Action|Drama|Sci-Fi
## 441 Comedy
## 442 Drama|Fantasy|Romance
## 443 Crime|Drama|Thriller
## 444 Drama
## 445 Drama|Romance
## 446 Drama
## 447 Action|Drama
## 448 Horror|Sci-Fi
## 449 Comedy|Mystery|Romance
## 450 Comedy
## 451 Drama|Romance
## 452 Comedy|Drama
## 453 Action|Drama|Mystery
## 454 Comedy
## 455 Action|Crime|Drama|Sci-Fi|Thriller
## 456 Comedy
## 457 Crime|Thriller
## 458 Action|Drama
## 459 Drama
## 460 Drama
## 461 Drama
## 462 Drama|War
## 463 Comedy|Drama
## 464 Drama
## 465 Children|Drama
## 466 Comedy|Crime|Horror
## 467 Action|Adventure|Fantasy|Mystery
## 468 Drama|Romance
## 469 Drama
## 470 Drama
## 471 Drama
## 472 Drama
## 473 Comedy|Drama|Romance
## 474 Thriller
## 475 Action|Sci-Fi|Thriller
## 476 Comedy|Drama|Romance
## 477 Comedy|Romance|Thriller
## 478 Action|Crime
## 479 Action|Adventure|Children|Comedy|Fantasy|Sci-Fi
## 480 Action|Adventure|Thriller
## 481 Action|Mystery|Thriller
## 482 Drama|Musical
## 483 Comedy|Romance
## 484 Animation|Children|Fantasy|Musical
## 485 Action|Adventure|Comedy|Romance
## 486 Action|Drama|Western
## 487 Crime|Thriller
## 488 Documentary
## 489 Action|Adventure|Animation|Children|Fantasy
## 490 Comedy|Drama
## 491 Drama|Romance
## 492 Comedy
## 493 Comedy|Drama
## 494 Comedy|Drama
## 495 Comedy|Drama
## 496 Drama
## 497 Comedy|Drama
## 498 Children|Comedy
## 499 Adventure|Children|Drama
## 500 Crime|Thriller
## 501 Drama
## 502 Documentary
## 503 Comedy|Drama
## 504 Comedy
## 505 Children|Comedy
## 506 Comedy|Drama|Fantasy|Romance|Thriller
## 507 Adventure|Animation|Children|Comedy|Musical
## 508 Action|Sci-Fi
## 509 Adventure|Drama|Western
## 510 Action|Crime|Thriller
## 511 Crime|Horror|Thriller
## 512 Animation|Children|Drama|Fantasy|Musical
## 513 Animation|Children|Fantasy|Musical|Romance|IMAX
## 514 Animation|Children|Fantasy|Musical
## 515 Comedy|Romance
## 516 Adventure|Western
## 517 Action|Comedy|Crime
## 518 Documentary
## 519 Drama|Romance
## 520 Fantasy|Horror
## 521 Comedy|Crime|Drama|Thriller
## 522 Adventure|Children
## 523 Action|Adventure|Animation|Horror|Sci-Fi
## 524 Action|Horror|Sci-Fi
## 525 Comedy
## 526 Drama|Romance
## 527 Comedy|Drama
## 528 Animation|Children
## 529 Comedy|Drama
## 530 Comedy|Romance
## 531 Comedy
## 532 Comedy
## 533 Drama|Thriller
## 534 Crime|Drama|Mystery|Thriller
## 535 Adventure|Animation|Children|Fantasy|Musical|Romance
## 536 Drama|War
## 537 Comedy
## 538 Comedy
## 539 Comedy|Drama
## 540 Drama
## 541 Comedy
## 542 Romance
## 543 Comedy|Drama
## 544 Drama|Thriller
## 545 Drama
## 546 Action|Crime|Drama|War
## 547 Action|Adventure|Mystery|Thriller
## 548 Comedy|Drama
## 549 Drama
## 550 Action|Adventure|Fantasy
## 551 Comedy
## 552 Adventure|Animation|Children|Fantasy|Musical
## 553 Thriller
## 554 Comedy
## 555 Comedy|Drama|War
## 556 Action
## 557 Drama
## 558 Drama
## 559 Comedy|Sci-Fi
## 560 Adventure|Animation|Children|Comedy|Fantasy|Sci-Fi
## 561 Adventure|Comedy|Sci-Fi
## 562 Drama|Thriller
## 563 Drama
## 564 Drama|Mystery|Romance|Sci-Fi|Thriller
## 565 Drama
## 566 Action|Adventure|Comedy|War
## 567 Comedy|Romance
## 568 Action|Sci-Fi|Thriller
## 569 Action|Crime|Drama
## 570 Mystery|Thriller
## 571 Drama|Romance
## 572 Drama
## 573 Comedy
## 574 Drama
## 575 Action|Adventure
## 576 Drama
## 577 Crime|Drama|Thriller
## 578 Comedy|Romance
## 579 Adventure|Animation|Children|Comedy|Musical
## 580 Comedy
## 581 Adventure|Children
## 582 Drama|Mystery|Western
## 583 Drama|Romance
## 584 Comedy|Fantasy|Sci-Fi
## 585 Comedy
## 586 Adventure|Animation|Comedy
## 587 Documentary
## 588 Drama|Fantasy|Horror|Thriller
## 589 Comedy
## 590 Drama
## 591 Comedy
## 592 Crime|Thriller
## 593 Action|Adventure|Thriller
## 594 Horror
## 595 Action|Adventure|Romance|Thriller
## 596 Action|Sci-Fi
## 597 Animation|Sci-Fi
## 598 Horror|Thriller
## 599 Comedy
## 600 Animation|Children|Comedy
## 601 Comedy
## 602 Action|Sci-Fi|Thriller
## 603 Comedy|War
## 604 Drama
## 605 Documentary
## 606 Drama|War
## 607 Action|Adventure
## 608 Comedy|Crime
## 609 Drama|Romance
## 610 Comedy|Drama
## 611 Drama
## 612 Drama
## 613 Horror|Mystery
## 614 Comedy|Crime|Drama
## 615 Drama|Romance
## 616 Action|Adventure|Sci-Fi|Thriller
## 617 Drama
## 618 Drama|Thriller
## 619 Animation|Children|Drama|Musical|Romance
## 620 Comedy|Thriller
## 621 Comedy
## 622 Action|Drama|Thriller
## 623 Comedy|Fantasy|Romance|Sci-Fi
## 624 Drama
## 625 Documentary
## 626 Drama
## 627 Action|Adventure|Drama|Thriller
## 628 Comedy|Horror|Thriller
## 629 Drama|Mystery|Western
## 630 Children|Comedy
## 631 Drama|Romance
## 632 Comedy|Drama|Romance
## 633 Comedy|Romance
## 634 Drama|Thriller
## 635 Crime|Drama
## 636 Adventure|Children
## 637 Action|Adventure
## 638 Children|Comedy|Fantasy
## 639 Comedy
## 640 Comedy
## 641 Drama
## 642 Drama|Mystery
## 643 Adventure|Children
## 644 Comedy|Fantasy|Musical
## 645 Comedy
## 646 Crime|Thriller
## 647 Comedy
## 648 Drama
## 649 Action|Adventure|Thriller
## 650 Children|Comedy|Fantasy
## 651 Comedy|Drama|Romance
## 652 Action|Thriller
## 653 Children|Comedy
## 654 Horror
## 655 Comedy|Horror
## 656 Drama
## 657 Action|Adventure|Sci-Fi|Thriller
## 658 Drama
## 659 Comedy|Drama|Romance
## 660 Crime|Drama
## 661 Action|Comedy|Crime|Thriller
## 662 Crime|Drama|Romance|Thriller
## 663 Comedy|Crime
## 664 Crime|Drama|Musical|Thriller
## 665 Comedy
## 666 Action|Crime|Drama
## 667 Action|Comedy|Crime|Thriller
## 668 Horror|Thriller
## 669 Sci-Fi|Thriller
## 670 Children|Comedy
## 671 Drama|Thriller
## 672 Children|Drama|Fantasy
## 673 Action|Comedy|Crime
## 674 Adventure|Animation|Children|Musical
## 675 Drama|Romance
## 676 Horror|Thriller
## 677 Comedy|Drama|Romance
## 678 Drama
## 679 Drama
## 680 Adventure|Drama|Romance|War
## 681 Comedy|Drama|Romance
## 682 Comedy|Musical|Romance
## 683 Musical|Romance
## 684 Comedy|Musical
## 685 Drama|Romance
## 686 Drama|Mystery|Romance|Thriller
## 687 Mystery|Thriller
## 688 Comedy|Romance
## 689 Drama|Thriller
## 690 Comedy|Musical|Romance
## 691 Action|Adventure|Mystery|Romance|Thriller
## 692 Comedy|Drama|Romance
## 693 Comedy|Crime
## 694 Comedy|Crime|Mystery|Romance|Thriller
## 695 Drama|Romance
## 696 Film-Noir|Mystery
## 697 Comedy|Drama|Musical|Romance
## 698 Comedy|Romance
## 699 Comedy|Drama|Romance
## 700 Children|Drama
## 701 Musical
## 702 Adventure|Children|Fantasy|Musical
## 703 Drama|Romance|War
## 704 Comedy
## 705 Drama|Film-Noir|Romance
## 706 Drama|Mystery
## 707 Adventure|Drama|Sci-Fi
## 708 Drama
## 709 Comedy
## 710 Drama|Mystery|Romance|Thriller
## 711 Drama|Film-Noir|Mystery|Thriller
## 712 Film-Noir|Romance|Thriller
## 713 Mystery|Romance|Thriller
## 714 Drama|Romance
## 715 Crime|Mystery|Romance|Thriller
## 716 Comedy
## 717 Comedy|Musical
## 718 Comedy|Romance
## 719 Comedy|Romance
## 720 Musical
## 721 Action|Adventure|Romance
## 722 Adventure
## 723 Crime|Film-Noir|Mystery
## 724 Drama|Fantasy|Romance
## 725 Drama
## 726 Comedy|Musical|Romance
## 727 Comedy|Drama|War
## 728 Comedy|Romance
## 729 Drama|Romance|Western
## 730 Drama
## 731 Comedy|Crime
## 732 Comedy|Romance
## 733 Adventure|Comedy
## 734 Children|Drama|Fantasy|Romance
## 735 Drama
## 736 Comedy|Romance
## 737 Drama|Romance
## 738 Drama
## 739 Drama
## 740 Musical
## 741 Drama|Mystery|Thriller
## 742 Horror|Sci-Fi|Thriller
## 743 Adventure|Comedy|Romance|War
## 744 Adventure|Comedy|Crime|Drama|Romance
## 745 Drama
## 746 Comedy|Drama
## 747 Romance|War
## 748 Drama|War
## 749 Drama
## 750 Drama
## 751 Comedy|Drama
## 752 Adventure|Children
## 753 Drama|Romance
## 754 Comedy|Drama
## 755 Action|Adventure|Thriller
## 756 Drama
## 757 Drama
## 758 Comedy|Drama
## 759 Action|Crime|Drama|Thriller
## 760 Action|Crime
## 761 Crime|Film-Noir
## 762 Drama|Thriller
## 763 Action|Thriller
## 764 Children|Comedy
## 765 Drama
## 766 Children|Comedy|Western
## 767 Adventure|Western
## 768 Adventure|Children|Fantasy
## 769 Children|Comedy
## 770 Children|Comedy|Fantasy|Romance
## 771 Children|Drama
## 772 Children|Comedy|Romance
## 773 Children|Comedy|Drama
## 774 Adventure|Children|Drama
## 775 Children|Comedy
## 776 Adventure|Children
## 777 Children|Comedy|Mystery
## 778 Adventure|Drama|Sci-Fi
## 779 Comedy
## 780 Children|Comedy
## 781 Animation|Children|Fantasy|Musical|Romance
## 782 Animation|Children|Musical
## 783 Animation|Children|Musical
## 784 Animation|Children|Fantasy|Musical
## 785 Adventure|Drama
## 786 Children|Comedy|Fantasy|Musical
## 787 Animation|Children|Drama|Musical
## 788 Adventure|Animation|Children|Musical
## 789 Adventure|Children|Musical
## 790 Adventure|Animation|Children|Fantasy|Musical
## 791 Animation|Children|Drama
## 792 Comedy|Crime|Drama|Thriller
## 793 Musical|Romance
## 794 Action|Crime|Thriller
## 795 Action|Horror|Sci-Fi|Thriller
## 796 Drama
## 797 Drama
## 798 Comedy|Drama
## 799 Drama|Romance
## 800 Drama|Romance
## 801 Action|Drama|Thriller
## 802 Action|Adventure
## 803 Documentary|Drama
## 804 Drama
## 805 Crime|Drama|Romance
## 806 Drama
## 807 Thriller
## 808 Drama
## 809 Comedy|Musical|Romance
## 810 Drama|Romance
## 811 Comedy|Drama
## 812 Thriller
## 813 Animation|Children|Comedy|Fantasy|Musical|Romance
## 814 Comedy|Musical|Romance
## 815 Crime|Film-Noir
## 816 Children|Comedy|Fantasy|Musical
## 817 Drama|Horror|Thriller
## 818 Comedy|Sci-Fi
## 819 Comedy|War
## 820 Comedy|Crime
## 821 Comedy
## 822 Comedy|Musical|Romance
## 823 Drama
## 824 Comedy|Musical
## 825 Crime|Drama
## 826 Adventure|Drama
## 827 Crime|Mystery|Thriller
## 828 Drama|Musical|Romance
## 829 Crime|Mystery|Thriller
## 830 Drama|War
## 831 Comedy
## 832 Crime|Mystery|Thriller
## 833 Drama
## 834 Drama|Romance|Thriller
## 835 Drama
## 836 Drama
## 837 Children|Drama|Sci-Fi
## 838 Children|Drama|Fantasy
## 839 Action|Drama|Romance
## 840 Action|Romance
## 841 Drama
## 842 Drama
## 843 Horror
## 844 Comedy
## 845 Documentary
## 846 Action|Comedy|Drama
## 847 Crime|Drama
## 848 Drama
## 849 Drama
## 850 Drama
## 851 Comedy|Drama
## 852 Drama
## 853 Documentary
## 854 Drama
## 855 Comedy|Crime
## 856 Comedy|Fantasy
## 857 Action|Adventure|Sci-Fi|Thriller
## 858 Horror
## 859 Action|Adventure|Sci-Fi|Thriller
## 860 Horror|Mystery
## 861 Drama|Mystery
## 862 Drama
## 863 Comedy
## 864 Adventure|Comedy|Fantasy
## 865 Romance
## 866 Drama
## 867 Documentary
## 868 Documentary
## 869 Animation|Children|Comedy|Crime
## 870 Drama
## 871 Animation|Comedy|Drama|Fantasy
## 872 Drama
## 873 Drama|War
## 874 Comedy|Drama
## 875 Drama
## 876 Comedy
## 877 Action
## 878 Comedy
## 879 Drama
## 880 Comedy|Drama
## 881 Comedy|Drama|Romance
## 882 Drama|Fantasy|Romance
## 883 Drama|Romance
## 884 Drama|War
## 885 Crime|Drama|Film-Noir
## 886 Comedy
## 887 Drama|Romance|War
## 888 Comedy|Drama
## 889 Drama
## 890 Drama
## 891 Drama
## 892 Comedy|Romance
## 893 Documentary
## 894 Crime|Drama|Romance
## 895 Documentary|Musical
## 896 Documentary
## 897 Drama
## 898 Comedy
## 899 Action|Adventure|Sci-Fi
## 900 Action|Adventure|Comedy|Fantasy|Romance
## 901 Action|Adventure
## 902 Fantasy|Sci-Fi
## 903 Action|Adventure|Horror|Sci-Fi
## 904 Action|Adventure|Western
## 905 Comedy
## 906 Drama
## 907 Adventure|Drama|War
## 908 Crime|Drama|Sci-Fi|Thriller
## 909 Drama
## 910 Action|Drama|War
## 911 Action|Drama|Western
## 912 Action|Adventure|Sci-Fi
## 913 Drama|Fantasy|Romance
## 914 Film-Noir|Mystery|Thriller
## 915 Crime|Drama
## 916 Horror|Sci-Fi
## 917 Action|Adventure|Comedy|Fantasy|Horror
## 918 Adventure|Drama|Romance
## 919 Drama|War
## 920 Action|Crime|Drama|Thriller
## 921 Crime|Horror
## 922 Action|Comedy|Musical
## 923 Crime|Drama
## 924 Drama|War
## 925 Adventure|Animation|Children|Comedy|Sci-Fi
## 926 Action|Drama|Romance|War
## 927 Drama
## 928 Drama|Romance
## 929 Crime|Drama
## 930 Drama
## 931 Comedy|Romance
## 932 Drama
## 933 Drama|Mystery|Sci-Fi
## 934 Action|Drama|War
## 935 Comedy|Crime
## 936 Comedy|Drama|Romance
## 937 Comedy|Drama|Romance
## 938 Drama
## 939 Comedy
## 940 Action|Sci-Fi|Thriller
## 941 Comedy|Fantasy|Horror
## 942 Drama|War
## 943 Comedy|Drama
## 944 Comedy|Drama|Romance
## 945 Crime|Drama|Film-Noir|Thriller
## 946 Drama
## 947 Comedy|Drama|Romance
## 948 Crime|Film-Noir|Thriller
## 949 Action|Crime|Romance|Thriller
## 950 Adventure|Drama|War
## 951 Drama|Fantasy
## 952 Crime|Film-Noir|Mystery|Thriller
## 953 Drama|Sci-Fi|Thriller
## 954 Action|Adventure|Drama|Western
## 955 Comedy|Horror|Sci-Fi
## 956 Comedy|Musical|War
## 957 Comedy|Romance
## 958 Horror
## 959 Adventure|Drama
## 960 Crime|Film-Noir|Thriller
## 961 Action|Comedy|Fantasy|Horror
## 962 Action|Adventure|Drama|War
## 963 Drama|War
## 964 Action|Drama|Mystery|Romance|Thriller
## 965 Comedy|Fantasy|Romance
## 966 Drama|Western
## 967 Crime|Thriller|War
## 968 Comedy|Drama
## 969 Comedy|Mystery|Thriller
## 970 Adventure|Comedy|Sci-Fi
## 971 Comedy|Crime|Drama
## 972 Drama|War
## 973 Comedy|Drama|Film-Noir
## 974 Action|Adventure|Animation|Sci-Fi
## 975 Action|Adventure|Fantasy
## 976 Drama
## 977 Comedy|Drama|Romance
## 978 Comedy|Fantasy
## 979 Comedy|Drama
## 980 Drama
## 981 Comedy|Drama|War
## 982 Animation|Children|Fantasy|Musical
## 983 Drama|Western
## 984 Crime|Film-Noir|Mystery
## 985 Comedy
## 986 Drama|Romance
## 987 Action|Adventure|Drama
## 988 Comedy
## 989 Documentary
## 990 Drama|Romance
## 991 Action|Adventure
## 992 Comedy|Drama
## 993 Drama
## 994 Drama
## 995 Drama|Romance
## 996 Comedy
## 997 Drama|Musical
## 998 Drama|War
## 999 Comedy|Drama
## 1000 Drama|Sci-Fi
## 1001 Children|Drama|Fantasy
## 1002 Adventure|Drama
## 1003 Action|Western
## 1004 Drama|Romance
## 1005 Adventure|Drama|Sci-Fi
## 1006 Comedy|Romance
## 1007 Documentary
## 1008 Drama
## 1009 Comedy|Drama
## 1010 Action|Horror|Sci-Fi|Thriller
## 1011 Comedy|Horror|Thriller
## 1012 Horror
## 1013 Horror
## 1014 Horror
## 1015 Horror
## 1016 Horror
## 1017 Drama|Horror|Mystery|Thriller
## 1018 Horror
## 1019 Horror
## 1020 Horror
## 1021 Horror
## 1022 Horror|Thriller
## 1023 Horror|Thriller
## 1024 Horror|Sci-Fi
## 1025 Horror|Mystery
## 1026 Horror|Thriller
## 1027 Drama|Horror|Thriller
## 1028 Fantasy|Horror|Romance|Thriller
## 1029 Drama|Horror|Sci-Fi
## 1030 Horror
## 1031 Horror|Thriller
## 1032 Thriller
## 1033 Crime|Drama|Thriller
## 1034 Drama|Fantasy|Horror|Thriller
## 1035 Drama|Fantasy|Horror
## 1036 Horror|Thriller
## 1037 Horror
## 1038 Horror
## 1039 Horror|Mystery|Thriller
## 1040 Crime|Drama|Thriller
## 1041 Crime|Thriller
## 1042 Comedy|Drama|Romance
## 1043 Drama|Mystery
## 1044 Horror|Thriller
## 1045 Action|Adventure|Sci-Fi|Thriller
## 1046 Drama|Romance
## 1047 Drama
## 1048 Children|Comedy
## 1049 Documentary
## 1050 Drama
## 1051 Drama
## 1052 Drama
## 1053 Adventure|Children|Comedy
## 1054 Action|Adventure|Thriller
## 1055 Adventure|Sci-Fi
## 1056 Action|Mystery|Sci-Fi
## 1057 Action|Sci-Fi
## 1058 Action|Adventure|Sci-Fi|Thriller
## 1059 Action|Adventure|Sci-Fi
## 1060 Adventure|Comedy|Sci-Fi
## 1061 Action|Crime
## 1062 Action|Comedy|Western
## 1063 Action|Western
## 1064 Comedy|Musical|Romance
## 1065 Comedy|Musical|Romance
## 1066 Action|Drama
## 1067 Action|Drama|Thriller
## 1068 Action|Horror
## 1069 Horror|Thriller
## 1070 Action|Horror
## 1071 Comedy
## 1072 Action|Comedy|Sci-Fi
## 1073 Comedy|Drama
## 1074 Drama|Romance
## 1075 Comedy
## 1076 Comedy|Drama
## 1077 Action|Comedy|Crime|Drama|Sci-Fi
## 1078 Drama
## 1079 Romance|War
## 1080 Drama
## 1081 Drama
## 1082 Adventure|Animation|Comedy|Crime
## 1083 Crime|Drama|Mystery|Thriller
## 1084 Comedy|Horror|Mystery|Thriller
## 1085 Action|Romance|War|Western
## 1086 Comedy|Drama|Fantasy|Romance
## 1087 Crime|Drama|Romance
## 1088 Drama
## 1089 Drama
## 1090 Comedy
## 1091 Crime|Drama|Romance
## 1092 Drama|Musical
## 1093 Drama
## 1094 Adventure|Drama
## 1095 Crime|Drama|Mystery|Thriller
## 1096 Drama
## 1097 Comedy
## 1098 Children
## 1099 Action|Thriller
## 1100 Drama
## 1101 Action|Adventure|Comedy|Thriller
## 1102 Comedy|Thriller
## 1103 Action|Comedy
## 1104 Action|Comedy|Crime|Drama|Thriller
## 1105 Drama
## 1106 Action|Thriller
## 1107 Comedy
## 1108 Comedy
## 1109 Comedy|Romance
## 1110 Drama
## 1111 Comedy|War
## 1112 Comedy|Drama
## 1113 Crime
## 1114 Comedy
## 1115 Comedy|Romance
## 1116 Comedy|Drama
## 1117 Comedy
## 1118 Comedy|Drama|Romance
## 1119 Drama|Fantasy|Romance
## 1120 Mystery|Thriller
## 1121 Children|Comedy|Mystery
## 1122 Comedy
## 1123 Crime|Drama|Fantasy|Film-Noir|Mystery|Romance
## 1124 Action|Drama
## 1125 Crime|Drama
## 1126 Comedy|Romance
## 1127 Action|Comedy|Crime|Drama
## 1128 Children|Comedy
## 1129 Romance
## 1130 Comedy|Drama
## 1131 Romance
## 1132 Action|Romance|Sci-Fi|Thriller
## 1133 Drama|Thriller
## 1134 Drama|Thriller
## 1135 Comedy|Drama|Mystery|Romance
## 1136 Comedy
## 1137 Drama|Musical
## 1138 Action|Drama|Thriller
## 1139 Animation|Children|Musical
## 1140 Comedy
## 1141 Romance
## 1142 Action|Adventure|Children
## 1143 Drama|Romance
## 1144 Action
## 1145 Drama|Romance
## 1146 Action|Adventure|Thriller
## 1147 Comedy|Crime|Romance
## 1148 Drama|Romance
## 1149 Comedy
## 1150 Drama|War
## 1151 Comedy
## 1152 Romance
## 1153 Action|Drama|Thriller
## 1154 Comedy
## 1155 Action|Adventure|Comedy
## 1156 Action|Thriller
## 1157 Drama
## 1158 Comedy
## 1159 Action|Adventure|Comedy|Sci-Fi
## 1160 Comedy|Drama
## 1161 Drama
## 1162 Comedy|Drama|Romance
## 1163 Comedy|Romance
## 1164 Comedy|Drama|Romance
## 1165 Action|Adventure|Sci-Fi|Thriller
## 1166 Drama
## 1167 Comedy
## 1168 Children|Drama
## 1169 Drama|Romance
## 1170 Comedy|Romance
## 1171 Adventure|Children|Drama
## 1172 Action|Adventure|Thriller
## 1173 Drama|Romance
## 1174 Action|Romance|Thriller
## 1175 Action|Adventure|Fantasy|Thriller
## 1176 Comedy|Drama|Romance
## 1177 Comedy|Thriller
## 1178 Adventure|Animation|Children|Comedy|Musical
## 1179 Comedy|Romance
## 1180 Comedy|Romance
## 1181 Drama
## 1182 Action|Crime|Drama|Thriller
## 1183 Romance
## 1184 Action|Comedy|Sci-Fi
## 1185 Comedy
## 1186 Adventure|Children
## 1187 Children|Fantasy
## 1188 Drama|Sci-Fi
## 1189 Comedy
## 1190 Action|Drama
## 1191 Action|Adventure|Fantasy
## 1192 Children|Comedy
## 1193 Action|Crime|Drama|Thriller
## 1194 Horror|Sci-Fi|Thriller
## 1195 Action|Adventure|Sci-Fi|Thriller
## 1196 Children|Comedy
## 1197 Comedy|Romance
## 1198 Comedy|Drama
## 1199 Drama
## 1200 Drama|Mystery|Romance|Thriller
## 1201 Crime|Drama|Thriller
## 1202 Action
## 1203 Drama|Romance
## 1204 Crime|Drama|Film-Noir
## 1205 Comedy
## 1206 Horror|Sci-Fi|Thriller
## 1207 Action|Comedy
## 1208 Adventure|Romance
## 1209 Action|Adventure
## 1210 Action|Thriller
## 1211 Drama|Thriller
## 1212 Action|Adventure|Thriller
## 1213 Drama|Romance
## 1214 Comedy
## 1215 Drama
## 1216 Comedy
## 1217 Adventure|Drama
## 1218 Action|Thriller|War
## 1219 Crime|Film-Noir|Mystery|Thriller
## 1220 Adventure|Drama|War
## 1221 Crime|Drama|Mystery|Thriller
## 1222 Drama
## 1223 Horror
## 1224 Drama
## 1225 Drama|Mystery|Thriller
## 1226 Action|Drama|Thriller
## 1227 Crime|Drama|Mystery
## 1228 Comedy|Romance
## 1229 Action|Thriller
## 1230 Drama
## 1231 Drama
## 1232 Comedy|Drama|Romance
## 1233 Comedy|Drama
## 1234 Comedy|Drama
## 1235 Drama|Romance
## 1236 Horror|Mystery|Thriller
## 1237 Drama|Mystery|Thriller
## 1238 Children|Comedy|Romance|Sci-Fi
## 1239 Crime|Drama|Thriller
## 1240 Comedy|Drama
## 1241 Documentary
## 1242 Drama
## 1243 Documentary
## 1244 Drama|Sci-Fi|Thriller
## 1245 Children|Drama|Fantasy
## 1246 Drama|Horror|Thriller
## 1247 Drama|Romance
## 1248 Romance|Thriller
## 1249 Drama
## 1250 Drama
## 1251 Crime|Mystery|Thriller
## 1252 Crime
## 1253 Comedy|War
## 1254 Comedy
## 1255 Action|Drama
## 1256 Drama|War
## 1257 Crime|Drama|Thriller
## 1258 Drama
## 1259 Drama
## 1260 Drama|Romance|Thriller
## 1261 Crime|Thriller
## 1262 Action|Sci-Fi
## 1263 Comedy|Drama
## 1264 Drama|Romance
## 1265 Comedy
## 1266 Drama|Romance
## 1267 Action|Adventure|Fantasy
## 1268 Comedy|Drama|Sci-Fi
## 1269 Drama|Romance
## 1270 Drama|Romance
## 1271 Drama|Romance
## 1272 Crime|Thriller
## 1273 Action|Thriller
## 1274 Adventure|Animation|Children|Drama|Musical
## 1275 Comedy|Crime|Thriller
## 1276 Action|Horror|Sci-Fi
## 1277 Drama|Mystery
## 1278 Drama
## 1279 Drama
## 1280 Drama|War
## 1281 Comedy|Drama
## 1282 Comedy|Drama
## 1283 Children|Comedy|Fantasy
## 1284 Comedy
## 1285 Drama|Romance
## 1286 Children|Comedy
## 1287 Crime|Drama|Mystery
## 1288 Children|Comedy
## 1289 Comedy|Horror|Mystery|Thriller
## 1290 Thriller
## 1291 Drama
## 1292 Drama|Romance
## 1293 Action|Adventure|Thriller
## 1294 Action|Adventure|Drama|Sci-Fi
## 1295 Drama|Romance
## 1296 Crime|Drama|Thriller
## 1297 Drama
## 1298 Comedy
## 1299 Comedy|Crime
## 1300 Drama|Romance
## 1301 Comedy|Drama
## 1302 Drama|Romance
## 1303 Action|Children|Comedy
## 1304 Comedy
## 1305 Comedy
## 1306 Adventure|Film-Noir|Sci-Fi|Thriller
## 1307 Action|Crime|Thriller
## 1308 Comedy
## 1309 Crime|Drama|Fantasy|Thriller
## 1310 Comedy|Romance
## 1311 Drama|Romance
## 1312 Drama
## 1313 Comedy
## 1314 Action|Horror|Sci-Fi
## 1315 Drama|Romance
## 1316 Action|Crime|Thriller
## 1317 Crime|Romance|Thriller
## 1318 Horror
## 1319 Action|Comedy|Musical
## 1320 Comedy|Romance
## 1321 Sci-Fi|Thriller
## 1322 Crime|Drama|Mystery|Romance|Thriller
## 1323 Comedy|Drama|Romance
## 1324 Crime|Thriller
## 1325 Crime|Drama|Thriller
## 1326 Action|Crime|Thriller
## 1327 Comedy
## 1328 Comedy|Drama
## 1329 Documentary|IMAX
## 1330 Thriller
## 1331 Comedy|Crime|Drama|Mystery|Thriller
## 1332 Action|Adventure|Drama
## 1333 Crime|Drama
## 1334 Crime|Drama|Mystery|Thriller
## 1335 Adventure|Children|Comedy
## 1336 Drama
## 1337 Crime|Drama
## 1338 Comedy|Drama
## 1339 Children|Comedy|Drama
## 1340 Comedy|Drama
## 1341 Comedy|Romance
## 1342 Comedy|Thriller
## 1343 Comedy|Drama
## 1344 Adventure|Children
## 1345 Comedy|Documentary
## 1346 Drama|Romance
## 1347 Action|Adventure|Sci-Fi
## 1348 Action|Drama|Thriller
## 1349 Crime|Drama|Mystery|Thriller
## 1350 Drama|Fantasy|Romance
## 1351 Comedy|Drama
## 1352 Comedy
## 1353 Comedy
## 1354 Drama
## 1355 Drama|Thriller
## 1356 Drama|Romance
## 1357 Comedy|Mystery|Thriller
## 1358 Adventure|Children|Comedy|Fantasy
## 1359 Comedy
## 1360 Documentary
## 1361 Comedy
## 1362 Action|Comedy
## 1363 Drama
## 1364 Drama
## 1365 Horror|Sci-Fi
## 1366 Comedy
## 1367 Action|Comedy|Crime
## 1368 Action|Adventure
## 1369 Comedy|Drama
## 1370 Crime|Drama|Romance|War
## 1371 Comedy
## 1372 Drama|Sci-Fi|Thriller
## 1373 Adventure|Animation|Children|Fantasy|Musical
## 1374 Action|Sci-Fi|Thriller
## 1375 Comedy|Drama|Romance
## 1376 Adventure|Comedy|Drama
## 1377 Comedy|Drama|Romance
## 1378 Adventure|Comedy|Western
## 1379 Comedy|Drama|Romance
## 1380 Drama|Mystery|Thriller
## 1381 Horror|Thriller
## 1382 Thriller
## 1383 Drama
## 1384 Adventure|Comedy|Romance
## 1385 Comedy|Drama|Romance
## 1386 Drama|Romance
## 1387 Comedy|Drama
## 1388 Drama|Romance
## 1389 Comedy|Drama
## 1390 Comedy|Romance
## 1391 Adventure|Animation|Children|Comedy|Drama|Musical|Romance
## 1392 Action|Crime|Mystery|Sci-Fi|Thriller
## 1393 Comedy|Crime|Drama
## 1394 Comedy
## 1395 Comedy|Crime|Drama|Romance|Thriller
## 1396 Drama|Mystery
## 1397 Comedy|Drama
## 1398 Drama|Romance
## 1399 Action|Romance|Sci-Fi|Thriller
## 1400 Action|Comedy|Crime|Thriller
## 1401 Children|Comedy
## 1402 Animation|Children|Fantasy|War
## 1403 Drama|Sci-Fi|Thriller
## 1404 Drama
## 1405 Comedy|Romance
## 1406 Horror|Sci-Fi
## 1407 Musical
## 1408 Action|Drama|War
## 1409 Drama|Western
## 1410 Drama|Romance
## 1411 Adventure|Drama
## 1412 Drama|Musical
## 1413 Drama
## 1414 Comedy|Romance
## 1415 Drama|War
## 1416 Comedy|Drama|Musical
## 1417 Drama
## 1418 Drama|War
## 1419 Drama
## 1420 Drama
## 1421 Drama
## 1422 Drama|Romance|War
## 1423 Crime|Drama
## 1424 Drama|Romance
## 1425 Drama|Musical|Romance
## 1426 Adventure|Comedy|Romance
## 1427 Drama
## 1428 Drama|Mystery
## 1429 Drama|Musical
## 1430 Drama
## 1431 Action|Crime|Thriller
## 1432 Drama
## 1433 Drama
## 1434 Drama
## 1435 Drama
## 1436 Comedy|Drama
## 1437 Drama|Romance
## 1438 Drama
## 1439 Drama
## 1440 Drama
## 1441 Comedy|Crime
## 1442 Drama|Mystery
## 1443 Comedy|Sci-Fi
## 1444 Comedy
## 1445 Adventure|Fantasy|Musical
## 1446 Comedy|Drama
## 1447 Horror
## 1448 Horror|Thriller
## 1449 Horror|Thriller
## 1450 Horror
## 1451 Horror
## 1452 Horror|Mystery|Thriller
## 1453 Horror
## 1454 Horror
## 1455 Horror
## 1456 Horror
## 1457 Horror
## 1458 Horror
## 1459 Horror
## 1460 Horror
## 1461 Horror
## 1462 Horror
## 1463 Horror
## 1464 Horror
## 1465 Horror
## 1466 Horror
## 1467 Horror|Thriller
## 1468 Horror|Thriller
## 1469 Comedy|Horror|Thriller
## 1470 Horror|Thriller
## 1471 Horror|Thriller
## 1472 Horror|Thriller
## 1473 Horror|Mystery
## 1474 Horror
## 1475 Horror
## 1476 Action|Comedy|Crime|Drama
## 1477 Action|Comedy|Crime|Drama
## 1478 Action|Comedy|Crime|Drama
## 1479 Comedy|Horror
## 1480 Comedy|Horror
## 1481 Action|Adventure|Children|Comedy|Fantasy
## 1482 Action|Comedy|Romance
## 1483 Comedy
## 1484 Crime|Drama|Film-Noir
## 1485 Drama|Mystery|Sci-Fi|Thriller
## 1486 Drama|Sci-Fi
## 1487 Adventure|Comedy|Sci-Fi
## 1488 Adventure|Comedy|Sci-Fi|Western
## 1489 Action|Adventure|Drama
## 1490 Children|Comedy|Fantasy
## 1491 Children|Comedy|Fantasy
## 1492 Children|Comedy|Western
## 1493 Children|Fantasy|Musical
## 1494 Animation|Children|Drama
## 1495 Action|Adventure|Drama
## 1496 Drama|Romance
## 1497 Adventure|Sci-Fi
## 1498 Drama
## 1499 Crime|Drama|Mystery|Thriller
## 1500 Drama|Mystery
## 1501 Drama|Romance
## 1502 Horror|Thriller
## 1503 Comedy|Crime
## 1504 Action|Drama|War
## 1505 Children|Comedy
## 1506 Adventure|Animation|Children|Fantasy
## 1507 Children|Sci-Fi
## 1508 Children|Comedy
## 1509 Children|Comedy
## 1510 Adventure|Children|Comedy
## 1511 Children|Comedy|Sci-Fi
## 1512 Children|Comedy
## 1513 Action|Adventure|Children|Comedy
## 1514 Children|Comedy
## 1515 Adventure|Children|Fantasy
## 1516 Comedy|Fantasy
## 1517 Adventure|Children|Sci-Fi
## 1518 Action|Animation|Children|Crime
## 1519 Adventure|Children|Comedy
## 1520 Adventure|Children|Comedy
## 1521 Children|Comedy|Fantasy|Horror
## 1522 Children|Comedy|Sci-Fi
## 1523 Adventure|Children|Comedy|Fantasy|Sci-Fi
## 1524 Action|Comedy|Western
## 1525 Adventure|Children
## 1526 Adventure|Children
## 1527 Action|Crime|Drama|Mystery|Thriller
## 1528 Children|Comedy|Romance
## 1529 Comedy
## 1530 Documentary
## 1531 Comedy|Drama|Fantasy|Romance
## 1532 Film-Noir
## 1533 Drama|Romance|War
## 1534 Drama|Fantasy|Mystery
## 1535 Drama
## 1536 Drama|Romance|Western
## 1537 Drama
## 1538 Comedy
## 1539 Comedy
## 1540 Crime|Drama|Romance
## 1541 Drama|War
## 1542 Drama|Mystery|Thriller
## 1543 Adventure|Children
## 1544 Animation|Children|Comedy|Musical
## 1545 Animation|Children|Comedy|Romance
## 1546 Animation|Children|Comedy|Musical|Romance
## 1547 Children|Comedy
## 1548 Children|Comedy|Musical
## 1549 Children|Musical
## 1550 Adventure|Animation|Children
## 1551 Animation|Children|Fantasy|Musical
## 1552 Adventure|Comedy|Musical
## 1553 Adventure|Animation|Children
## 1554 Adventure|Animation|Children|Crime|Drama
## 1555 Children|Sci-Fi
## 1556 Adventure|Animation|Children|Fantasy|Musical|Romance
## 1557 Adventure|Children|Fantasy
## 1558 Action|Adventure|Sci-Fi
## 1559 Children|Comedy
## 1560 Animation|Children|Musical
## 1561 Children|Drama|Fantasy|Mystery|Thriller
## 1562 Children|Comedy
## 1563 Adventure|Animation|Children|Musical
## 1564 Comedy|Fantasy|Romance
## 1565 Animation|Children|Comedy|Musical
## 1566 Adventure|Children|Fantasy|Western
## 1567 Drama
## 1568 Action|Adventure|Sci-Fi
## 1569 Drama|War
## 1570 Horror|Thriller
## 1571 Comedy|Romance
## 1572 Comedy
## 1573 Comedy|Crime|Thriller
## 1574 Comedy
## 1575 Crime|Drama
## 1576 Drama
## 1577 Action|Adventure|Fantasy
## 1578 Adventure|Animation|Children|Fantasy
## 1579 Drama|Sci-Fi
## 1580 Thriller
## 1581 Horror
## 1582 Drama|Horror
## 1583 Horror|Thriller
## 1584 Horror|Thriller
## 1585 Animation|Children|Comedy|Drama|Fantasy
## 1586 Children|Comedy|Fantasy
## 1587 Comedy|Drama|Romance
## 1588 Action|Crime|Mystery|Thriller
## 1589 Crime|Drama|Romance
## 1590 Drama
## 1591 Drama
## 1592 Adventure|Comedy
## 1593 Comedy|Fantasy|Sci-Fi
## 1594 Adventure|Children|Musical
## 1595 Comedy|Sci-Fi
## 1596 Animation|Children
## 1597 Adventure|Animation|Children|Drama|Fantasy
## 1598 Adventure|Animation|Children|Drama
## 1599 Adventure|Fantasy
## 1600 Adventure|Animation|Children|Comedy
## 1601 Adventure|Animation|Children|Musical|Western
## 1602 Adventure|Fantasy|Romance
## 1603 Comedy|Romance
## 1604 Comedy|Drama|Romance
## 1605 Drama|Romance
## 1606 Adventure|Drama|Fantasy
## 1607 Comedy|Fantasy|Horror
## 1608 Comedy|Fantasy|Horror
## 1609 Adventure|Comedy
## 1610 Comedy
## 1611 Children|Comedy
## 1612 Action|Adventure
## 1613 Drama|Romance
## 1614 Comedy|Drama
## 1615 Comedy|Drama|Romance
## 1616 Crime|Horror|Thriller
## 1617 Drama|Horror|Thriller
## 1618 Adventure|Children|Fantasy
## 1619 Adventure|Children|Fantasy
## 1620 Comedy|Horror
## 1621 Action|Comedy|Drama|Horror
## 1622 Comedy|Drama
## 1623 Crime|Drama|Romance|Thriller
## 1624 Action|Horror|Thriller
## 1625 Comedy
## 1626 Action|Comedy
## 1627 Comedy|Drama|Romance
## 1628 Comedy|Drama
## 1629 Comedy|Fantasy
## 1630 Drama|Romance
## 1631 Crime|Drama|Thriller
## 1632 Comedy|Thriller
## 1633 Thriller
## 1634 Thriller
## 1635 Thriller
## 1636 Drama|Mystery|Romance|Thriller
## 1637 Drama|Film-Noir|Thriller
## 1638 Adventure|Drama|Mystery|Thriller
## 1639 Comedy|Mystery
## 1640 Thriller
## 1641 Crime|Drama|Film-Noir|Thriller
## 1642 Mystery|Romance|Thriller
## 1643 Drama
## 1644 Drama
## 1645 Action|Adventure|Fantasy
## 1646 Action|Crime|Drama
## 1647 Comedy
## 1648 Action
## 1649 Drama
## 1650 Drama|War
## 1651 Crime|Drama|Thriller
## 1652 Mystery|Thriller
## 1653 Comedy|Romance
## 1654 Film-Noir|Mystery|Thriller
## 1655 Drama
## 1656 Drama|Mystery|Thriller
## 1657 Thriller
## 1658 Thriller
## 1659 Drama|Thriller
## 1660 Drama
## 1661 Crime|Drama|Thriller
## 1662 Drama
## 1663 Horror|Mystery|Sci-Fi|Thriller
## 1664 Drama
## 1665 Comedy|Drama
## 1666 Drama
## 1667 Comedy
## 1668 Comedy|Drama|Romance
## 1669 Comedy|Romance
## 1670 Comedy|Drama|Romance
## 1671 Comedy
## 1672 Comedy|Drama|Romance
## 1673 Comedy
## 1674 Comedy|Drama
## 1675 Comedy|Fantasy
## 1676 Comedy
## 1677 Horror|Sci-Fi
## 1678 Comedy|Romance
## 1679 Comedy|Romance
## 1680 Crime|Drama
## 1681 Comedy
## 1682 Comedy|Drama|Romance
## 1683 Drama|Fantasy|Thriller
## 1684 Comedy|Crime
## 1685 Adventure|Comedy
## 1686 Comedy|Romance
## 1687 Mystery|Thriller
## 1688 Crime|Drama|Thriller
## 1689 Drama|Romance
## 1690 Drama
## 1691 Drama
## 1692 Action|Comedy|Crime|Thriller
## 1693 Action|Adventure|Sci-Fi
## 1694 Action|Crime|Thriller
## 1695 Horror|Thriller
## 1696 Crime
## 1697 Action|Crime|Drama
## 1698 Comedy|Drama
## 1699 Drama
## 1700 Comedy
## 1701 Horror|Sci-Fi|Thriller
## 1702 Action|Horror|Sci-Fi|Thriller
## 1703 Comedy|Crime|Drama
## 1704 Comedy|Drama
## 1705 Drama|Fantasy|Romance
## 1706 Comedy|Romance
## 1707 Adventure|Animation|Children|Comedy|Fantasy
## 1708 Comedy
## 1709 Comedy
## 1710 Adventure|Drama|Fantasy|Romance
## 1711 Thriller
## 1712 Comedy
## 1713 Comedy|Musical
## 1714 Comedy
## 1715 Drama|Musical
## 1716 Drama
## 1717 Comedy
## 1718 Action|Crime
## 1719 Drama
## 1720 Sci-Fi
## 1721 Drama
## 1722 Drama
## 1723 Drama
## 1724 Comedy|Horror|Thriller
## 1725 Drama|Fantasy|Mystery|Romance
## 1726 Comedy|Drama
## 1727 Drama|Thriller
## 1728 Comedy|Drama|Fantasy
## 1729 Action|Sci-Fi|War
## 1730 Documentary
## 1731 Comedy|Drama|Romance|War
## 1732 Comedy
## 1733 Fantasy|Horror|Thriller
## 1734 Horror|Western
## 1735 Crime|Drama
## 1736 Comedy|Documentary
## 1737 Comedy|Drama|Romance
## 1738 Crime|Drama
## 1739 Drama
## 1740 Action|Thriller
## 1741 Comedy
## 1742 Drama
## 1743 Drama
## 1744 Horror|Mystery|Thriller
## 1745 Comedy|Romance
## 1746 Romance
## 1747 Comedy|Drama
## 1748 Action|Adventure|Drama|Thriller
## 1749 Mystery|Sci-Fi|Thriller
## 1750 Drama
## 1751 Drama
## 1752 Comedy|Thriller
## 1753 Comedy
## 1754 Drama
## 1755 Comedy|Drama
## 1756 Action|Thriller
## 1757 Animation|Children|Comedy
## 1758 Adventure|Animation|Children|Comedy
## 1759 Comedy
## 1760 Drama
## 1761 Drama|War
## 1762 Comedy
## 1763 Drama
## 1764 Comedy
## 1765 Drama
## 1766 Drama|Horror|Sci-Fi
## 1767 Action|Horror|Sci-Fi|Thriller
## 1768 Action|Sci-Fi
## 1769 Action|Adventure|Fantasy|Horror
## 1770 Adventure|Fantasy|Romance|Sci-Fi|Thriller
## 1771 Adventure|Sci-Fi
## 1772 Comedy|Drama|Romance
## 1773 Action|Adventure|Drama
## 1774 Comedy|Crime|Mystery
## 1775 Comedy
## 1776 Action|Adventure|Fantasy
## 1777 Comedy|Drama
## 1778 Comedy
## 1779 Action|Adventure|Thriller
## 1780 Horror|Sci-Fi
## 1781 Comedy|Crime
## 1782 Comedy|Crime
## 1783 Comedy|Crime
## 1784 Comedy|Crime
## 1785 Comedy|Crime
## 1786 Comedy|Crime
## 1787 Adventure|Children|Drama
## 1788 Comedy|Romance
## 1789 Comedy|Crime
## 1790 Drama|Romance
## 1791 Crime|Horror|Thriller
## 1792 Comedy
## 1793 Crime|Drama|Thriller
## 1794 Children|Comedy|Drama
## 1795 Action|Drama|Romance|Sci-Fi
## 1796 Animation|Musical
## 1797 Comedy|Drama
## 1798 Comedy|Drama|Romance
## 1799 Comedy|Drama
## 1800 Adventure|Children|Fantasy
## 1801 Children|Drama|Fantasy
## 1802 Western
## 1803 Action|Adventure|Thriller
## 1804 Action|Adventure|Drama|Thriller
## 1805 Action|Adventure|Thriller|War
## 1806 Action|Adventure|Comedy|Romance
## 1807 Action|Adventure|Comedy|Romance
## 1808 Comedy|Sci-Fi
## 1809 Comedy|Sci-Fi
## 1810 Action|Drama
## 1811 Action|Drama
## 1812 Action|Drama
## 1813 Action|Drama
## 1814 Comedy|Crime|Mystery|Thriller
## 1815 Action|Adventure|Children|Fantasy|Mystery|Thriller
## 1816 Drama|Romance
## 1817 Comedy
## 1818 Comedy|Drama
## 1819 Comedy
## 1820 Drama|Thriller
## 1821 Drama
## 1822 Action|Adventure|Drama
## 1823 Action|Adventure|Children|Drama
## 1824 Comedy
## 1825 Comedy|Romance
## 1826 Crime
## 1827 Action|Drama|War
## 1828 Horror|Sci-Fi
## 1829 Action|Adventure|Drama|Fantasy|Thriller
## 1830 Adventure|Children|Drama
## 1831 Comedy|Drama
## 1832 Drama
## 1833 Drama
## 1834 Drama
## 1835 Comedy|Drama|War
## 1836 Drama
## 1837 Drama
## 1838 Drama|Romance
## 1839 Drama
## 1840 Horror|Thriller
## 1841 Comedy|Drama
## 1842 Horror|Sci-Fi
## 1843 Adventure|Comedy|Sci-Fi
## 1844 Horror
## 1845 Drama|Fantasy
## 1846 Horror|Mystery|Sci-Fi
## 1847 Drama|Horror|Sci-Fi|Thriller
## 1848 Horror|Sci-Fi
## 1849 Action|Comedy
## 1850 Comedy|Crime
## 1851 Horror
## 1852 Horror
## 1853 Horror
## 1854 Comedy
## 1855 Horror
## 1856 Crime|Drama|Mystery|Thriller
## 1857 Action|Comedy|Romance|Thriller
## 1858 Comedy|Drama
## 1859 Adventure|Comedy
## 1860 Action|Adventure|Comedy
## 1861 Comedy
## 1862 Comedy
## 1863 Drama
## 1864 Action|Mystery|Thriller
## 1865 Action|War
## 1866 Adventure
## 1867 Comedy|Western
## 1868 Drama|Romance
## 1869 Comedy|Romance
## 1870 Adventure|Comedy|Thriller
## 1871 Comedy|Romance
## 1872 Drama|Horror|Thriller
## 1873 Action|Thriller
## 1874 Comedy|Romance
## 1875 Comedy|Romance
## 1876 Drama
## 1877 Documentary
## 1878 Animation|Sci-Fi
## 1879 Comedy|Romance
## 1880 Romance
## 1881 Comedy|Sci-Fi
## 1882 Comedy
## 1883 Drama
## 1884 Comedy|Crime
## 1885 Drama
## 1886 Comedy|Drama
## 1887 Drama|Mystery|Thriller
## 1888 Comedy|Drama|Romance
## 1889 Crime|Film-Noir
## 1890 Drama
## 1891 Horror
## 1892 Comedy|Horror
## 1893 Horror
## 1894 Horror
## 1895 Horror
## 1896 Comedy
## 1897 Drama
## 1898 Action|Drama|Thriller
## 1899 Drama
## 1900 Drama|Thriller
## 1901 Action|Adventure|Drama|Thriller
## 1902 Action|Horror|Sci-Fi
## 1903 Sci-Fi
## 1904 Action|Sci-Fi|Thriller|Western
## 1905 Action|Adventure|Sci-Fi
## 1906 Action|Drama|Sci-Fi
## 1907 Action|Sci-Fi
## 1908 Action|Sci-Fi
## 1909 Action|Sci-Fi
## 1910 Action|Sci-Fi
## 1911 Action
## 1912 Action|Drama|Thriller
## 1913 Adventure
## 1914 Documentary
## 1915 Comedy
## 1916 Action|Crime|Drama|Thriller
## 1917 Drama
## 1918 Comedy|Crime|Thriller
## 1919 Drama|Romance
## 1920 Drama
## 1921 Horror
## 1922 Action|Sci-Fi
## 1923 Horror|Thriller
## 1924 Drama|Horror|Thriller
## 1925 Comedy
## 1926 Horror|Sci-Fi|Thriller
## 1927 Horror|Sci-Fi|Thriller
## 1928 Comedy
## 1929 Drama|Thriller
## 1930 Comedy|Romance
## 1931 Animation|Children
## 1932 Horror|Thriller
## 1933 Crime|Thriller
## 1934 Drama
## 1935 Drama|Musical|Romance
## 1936 Animation|Children
## 1937 Comedy
## 1938 Action|Crime
## 1939 Drama|Romance
## 1940 Action|Sci-Fi|Thriller
## 1941 Comedy|Romance
## 1942 Drama|Musical
## 1943 Comedy
## 1944 Drama
## 1945 Comedy|Drama
## 1946 Crime|Mystery|Thriller
## 1947 Comedy|Crime
## 1948 Comedy|Romance
## 1949 Action|Comedy
## 1950 Comedy|Drama
## 1951 Drama|Romance
## 1952 Comedy|Crime|Thriller
## 1953 Comedy|Crime|Drama
## 1954 Comedy|Drama|Romance
## 1955 Drama
## 1956 Comedy
## 1957 Drama|Romance|Sci-Fi|Thriller
## 1958 Comedy|Drama
## 1959 Comedy|Romance
## 1960 Comedy
## 1961 Comedy
## 1962 Action|Sci-Fi|Thriller
## 1963 Crime|Thriller
## 1964 Comedy|Horror
## 1965 Drama|Romance
## 1966 Drama
## 1967 Drama
## 1968 Drama|Film-Noir
## 1969 Comedy|Horror|Sci-Fi
## 1970 Action|Horror|Sci-Fi
## 1971 Adventure|Sci-Fi
## 1972 Action|Crime
## 1973 Action|Adventure|Comedy|Fantasy|Horror|Thriller
## 1974 Comedy
## 1975 Drama|Romance
## 1976 Comedy|Fantasy
## 1977 Comedy
## 1978 Drama|Fantasy
## 1979 Action|Adventure|Crime|Sci-Fi|Thriller
## 1980 Action|Adventure|Sci-Fi
## 1981 Comedy|Romance
## 1982 Drama
## 1983 Adventure|Drama|Mystery
## 1984 Horror|Romance
## 1985 Horror
## 1986 Drama
## 1987 Action|Adventure|Sci-Fi
## 1988 Action|Sci-Fi
## 1989 Action|Adventure|Sci-Fi
## 1990 Action|Adventure|Sci-Fi
## 1991 Horror
## 1992 Drama|Horror|Sci-Fi
## 1993 Horror
## 1994 Horror
## 1995 Drama|Fantasy|Horror
## 1996 Horror
## 1997 Horror|Sci-Fi
## 1998 Comedy|Horror|Musical|Sci-Fi
## 1999 Comedy|Documentary
## 2000 Horror|Sci-Fi
## 2001 Sci-Fi
## 2002 Action|Drama|Sci-Fi
## 2003 Horror|Sci-Fi|Thriller
## 2004 Sci-Fi
## 2005 Horror|Sci-Fi
## 2006 War
## 2007 War
## 2008 Comedy|Romance
## 2009 Drama|Sci-Fi|Thriller
## 2010 Drama|Fantasy
## 2011 Drama|Thriller
## 2012 Documentary|Musical
## 2013 Comedy|Romance|Sci-Fi
## 2014 Drama
## 2015 Action|Adventure|Comedy
## 2016 Drama|Mystery
## 2017 Adventure|Animation|Children|Drama
## 2018 Crime|Drama|Mystery|Thriller
## 2019 Comedy|Romance
## 2020 Drama
## 2021 Action|Crime
## 2022 Documentary
## 2023 Comedy
## 2024 Drama
## 2025 Comedy
## 2026 Comedy|Drama|Romance
## 2027 Sci-Fi
## 2028 Comedy|Horror
## 2029 Animation|Comedy|Musical
## 2030 Action|Comedy|Sci-Fi|Western
## 2031 Drama
## 2032 Comedy|Romance
## 2033 Thriller
## 2034 Romance
## 2035 Children|Comedy
## 2036 Drama|Horror|Thriller
## 2037 Drama|Mystery|Thriller
## 2038 Horror|Thriller
## 2039 Action|Comedy|Sci-Fi
## 2040 Comedy|Fantasy|Sci-Fi
## 2041 Comedy
## 2042 Horror|Thriller
## 2043 Action|Adventure|Children|Comedy
## 2044 Action|Horror|Sci-Fi|Thriller
## 2045 Action|Comedy|Fantasy
## 2046 Comedy|Romance
## 2047 Drama
## 2048 Crime|Film-Noir
## 2049 Crime|Film-Noir
## 2050 Action|Drama|Romance|War
## 2051 Drama|Romance
## 2052 Drama|Romance|War
## 2053 Crime|Drama
## 2054 Drama|Romance
## 2055 Adventure|Comedy|Romance
## 2056 Adventure|Drama|Thriller
## 2057 Action|Adventure|Comedy|Fantasy|Mystery
## 2058 Comedy
## 2059 Action|Drama|Thriller
## 2060 Comedy|Drama
## 2061 Drama
## 2062 Horror|Sci-Fi
## 2063 Action|Crime|Thriller
## 2064 Comedy|Drama
## 2065 Drama
## 2066 Drama
## 2067 Drama
## 2068 Comedy|Horror|Musical
## 2069 Comedy|Horror
## 2070 Action|Adventure|Comedy
## 2071 Drama|Mystery
## 2072 Comedy|Drama
## 2073 Comedy|Drama
## 2074 Comedy|Mystery
## 2075 Horror
## 2076 Drama
## 2077 Comedy
## 2078 Adventure|Animation|Children|Drama|Sci-Fi
## 2079 Drama|Horror|Mystery
## 2080 Action|Mystery
## 2081 Crime|Drama|Romance|Thriller
## 2082 Comedy|Drama
## 2083 Comedy|Drama
## 2084 Crime|Drama
## 2085 Comedy
## 2086 Drama
## 2087 Comedy
## 2088 Comedy|Romance
## 2089 Drama
## 2090 Comedy
## 2091 Horror
## 2092 Horror
## 2093 Comedy
## 2094 Horror
## 2095 Comedy
## 2096 Horror
## 2097 Horror|Thriller
## 2098 Comedy
## 2099 Comedy
## 2100 Comedy|Horror|Romance|Thriller
## 2101 Adventure|Comedy|Romance
## 2102 Comedy
## 2103 Comedy
## 2104 Comedy|Drama|Fantasy|Romance
## 2105 Children|Comedy
## 2106 Comedy
## 2107 Adventure|Animation|Children|Drama|Fantasy
## 2108 Drama|Romance
## 2109 Action|Drama|Romance|Thriller
## 2110 Crime|Drama|Mystery|Romance|Thriller
## 2111 Children|Comedy
## 2112 Comedy|Romance
## 2113 Comedy|Thriller
## 2114 Action|Sci-Fi
## 2115 Action|Sci-Fi
## 2116 Animation|Horror|Mystery|Thriller
## 2117 Action|Thriller
## 2118 Documentary
## 2119 Action|War
## 2120 Action|War
## 2121 Action
## 2122 Action|War
## 2123 Drama|Mystery|Romance|Thriller
## 2124 Drama
## 2125 Adventure|Romance
## 2126 Documentary|Drama
## 2127 Action|Adventure|Fantasy
## 2128 Horror|Sci-Fi|Thriller
## 2129 Children|Comedy
## 2130 Comedy
## 2131 Action|Adventure|Comedy|Thriller
## 2132 Comedy
## 2133 Comedy|Romance
## 2134 Drama
## 2135 Drama|Thriller
## 2136 Horror|Mystery|Thriller
## 2137 Comedy|Romance
## 2138 Drama|Mystery
## 2139 Adventure|Children|Comedy|Drama
## 2140 Adventure|Drama|Romance
## 2141 Drama
## 2142 Adventure|Sci-Fi|Thriller
## 2143 Drama
## 2144 Thriller
## 2145 Adventure|Animation|Comedy|Fantasy|Musical
## 2146 Drama|Romance
## 2147 Documentary|Musical
## 2148 Comedy
## 2149 Comedy|Drama
## 2150 Drama
## 2151 Adventure|Comedy|Musical
## 2152 Comedy
## 2153 Drama
## 2154 Comedy|Horror|Thriller
## 2155 Horror
## 2156 Comedy
## 2157 Adventure|Drama|Thriller
## 2158 Adventure|Fantasy
## 2159 Comedy|Musical|Romance
## 2160 Drama|Mystery|Romance
## 2161 Animation|Children|Fantasy
## 2162 Musical
## 2163 Horror
## 2164 Action|Adventure|Comedy
## 2165 Action|Adventure|Comedy
## 2166 Action|Crime|Drama|Thriller
## 2167 Drama
## 2168 Comedy|Drama
## 2169 Comedy|Romance
## 2170 Drama|Romance
## 2171 Children|Comedy
## 2172 Action|Comedy
## 2173 Comedy|Romance
## 2174 Comedy|Drama
## 2175 Action|Adventure|Comedy|Drama|War
## 2176 Comedy
## 2177 Action|Drama
## 2178 Action|Adventure|Drama
## 2179 Drama|Romance
## 2180 Western
## 2181 Comedy|War
## 2182 Horror|Mystery
## 2183 Adventure|Animation|Children
## 2184 Horror|Sci-Fi
## 2185 Horror|Sci-Fi
## 2186 Horror|Mystery|Thriller
## 2187 Horror|Thriller
## 2188 Action|Adventure|Drama
## 2189 Drama|Romance
## 2190 Comedy
## 2191 Drama
## 2192 Crime|Drama|Thriller
## 2193 Comedy
## 2194 Action|Adventure|Sci-Fi|Thriller
## 2195 Crime|Thriller
## 2196 Comedy
## 2197 Drama|Romance|War
## 2198 Western
## 2199 Crime|Drama|Western
## 2200 Action|Comedy
## 2201 Drama
## 2202 Comedy|Drama
## 2203 Drama|Romance
## 2204 Drama
## 2205 Drama|Romance
## 2206 Documentary
## 2207 Comedy|Crime|Drama|Fantasy
## 2208 Drama
## 2209 Comedy|Romance
## 2210 Adventure|Comedy|Romance
## 2211 Comedy
## 2212 Drama|Thriller
## 2213 Drama|Film-Noir|Mystery|Romance
## 2214 Musical|Romance|War
## 2215 Drama|Romance
## 2216 Drama|Romance
## 2217 Action|Drama|War
## 2218 Comedy|Musical
## 2219 Action|Adventure|Thriller
## 2220 Action|Adventure|Thriller
## 2221 Action|Adventure|Thriller
## 2222 Adventure|Drama|Romance
## 2223 Action|Western
## 2224 Crime|Drama|Thriller
## 2225 Children|Comedy
## 2226 Action|Crime|Thriller
## 2227 Action|Crime|Drama|Thriller
## 2228 Comedy|Drama
## 2229 Comedy|Romance
## 2230 Drama
## 2231 Action
## 2232 Adventure|Drama
## 2233 Drama|Thriller
## 2234 Adventure|Comedy|Fantasy|Sci-Fi
## 2235 Drama|Romance
## 2236 Adventure|Drama
## 2237 Drama|Fantasy|Musical
## 2238 Drama|War
## 2239 Comedy|Crime|Drama
## 2240 Horror|Thriller
## 2241 Comedy|Drama
## 2242 Drama
## 2243 Comedy|Drama
## 2244 Comedy|Romance
## 2245 Drama
## 2246 Horror|Thriller
## 2247 Thriller
## 2248 Documentary
## 2249 Action|Crime|Drama|Sci-Fi|Thriller
## 2250 Action|Crime|Sci-Fi|Thriller
## 2251 Adventure|Animation|Children|Comedy|Crime|Fantasy|Mystery
## 2252 Drama
## 2253 Action|Adventure|Thriller
## 2254 Action|Adventure|Thriller
## 2255 Action|Adventure|Thriller
## 2256 Horror|Thriller
## 2257 Action|Adventure|Thriller
## 2258 Horror|Thriller
## 2259 Drama
## 2260 Comedy|Drama|Fantasy
## 2261 Action|Adventure|Animation|Drama|Fantasy
## 2262 Documentary
## 2263 Comedy|Drama|Romance|War
## 2264 Comedy|Romance
## 2265 Thriller
## 2266 Drama|Thriller
## 2267 Documentary
## 2268 Drama|Sci-Fi
## 2269 Drama
## 2270 Drama
## 2271 Comedy|Horror
## 2272 Comedy
## 2273 Thriller
## 2274 Horror
## 2275 Horror
## 2276 Comedy|Horror|Sci-Fi
## 2277 Crime|Drama
## 2278 Action|Drama
## 2279 Horror
## 2280 Comedy|War
## 2281 Horror|Sci-Fi
## 2282 Comedy
## 2283 Action|Drama
## 2284 Action|Adventure
## 2285 Comedy
## 2286 Action|Drama|Sci-Fi|Thriller
## 2287 Comedy|Sci-Fi
## 2288 Adventure|Animation|Children|Comedy|Musical
## 2289 Comedy|Drama|War
## 2290 Adventure|Drama
## 2291 Western
## 2292 Drama
## 2293 Comedy
## 2294 Comedy
## 2295 Comedy
## 2296 Comedy
## 2297 Comedy
## 2298 Mystery|Romance|Thriller
## 2299 Comedy|Drama
## 2300 Comedy|Romance
## 2301 Comedy
## 2302 Comedy|Drama
## 2303 Adventure|Comedy|Fantasy
## 2304 Drama|War
## 2305 Adventure|Animation|Children|Fantasy|Sci-Fi
## 2306 Thriller
## 2307 Crime|Drama|Thriller
## 2308 Comedy
## 2309 Comedy|Drama|Musical
## 2310 Comedy|Musical
## 2311 Action|Drama|War
## 2312 Drama|Thriller
## 2313 Drama|Thriller
## 2314 Action|Drama|War
## 2315 Comedy|Drama
## 2316 Drama|Mystery
## 2317 Adventure|Comedy|Sci-Fi
## 2318 Comedy|Drama
## 2319 Comedy|Romance
## 2320 Drama|Romance
## 2321 Western
## 2322 Drama|Horror
## 2323 Comedy
## 2324 Documentary
## 2325 Drama
## 2326 Comedy|Drama|Romance
## 2327 Fantasy|Horror|Mystery|Romance
## 2328 Action|Adventure|Thriller
## 2329 Drama
## 2330 Children|Comedy|Fantasy|Musical
## 2331 Comedy|Fantasy|Romance
## 2332 Comedy|Fantasy
## 2333 Drama
## 2334 Drama
## 2335 Drama|War
## 2336 Drama|Western
## 2337 Drama|Romance
## 2338 Drama
## 2339 Comedy
## 2340 Comedy|Drama|Romance
## 2341 Drama
## 2342 Comedy|Drama|Romance
## 2343 Drama
## 2344 Drama|Thriller
## 2345 Crime|Romance|Thriller
## 2346 Drama|Romance
## 2347 Action|Comedy|Crime|Thriller
## 2348 Drama|Mystery
## 2349 Drama|Romance
## 2350 Action|Drama
## 2351 Comedy|Drama|Fantasy|Romance
## 2352 Drama
## 2353 Drama
## 2354 Drama
## 2355 Action|Fantasy|Horror|Mystery|Thriller
## 2356 Adventure|Animation|Children|Comedy|Fantasy
## 2357 Drama
## 2358 Drama|Romance|War
## 2359 Comedy
## 2360 Drama
## 2361 Comedy|Drama
## 2362 Comedy|Drama
## 2363 Comedy|Crime|Drama
## 2364 Comedy|Drama
## 2365 Drama|War
## 2366 Drama
## 2367 Drama
## 2368 Drama
## 2369 Documentary|Musical
## 2370 Drama|War
## 2371 Drama
## 2372 Comedy
## 2373 Crime|Drama
## 2374 Drama
## 2375 Drama|Thriller
## 2376 Drama
## 2377 Action|Adventure|Fantasy
## 2378 Drama|Romance
## 2379 Drama|Romance|Sci-Fi
## 2380 Children|Comedy|Fantasy
## 2381 Drama
## 2382 Animation|Children|Musical|IMAX
## 2383 Drama
## 2384 Drama|Romance
## 2385 Comedy|Drama
## 2386 Comedy|Drama|Musical
## 2387 Action|Drama
## 2388 Comedy|Drama
## 2389 Adventure|Drama
## 2390 Crime|Drama|Thriller
## 2391 Drama
## 2392 Drama
## 2393 Comedy|Drama
## 2394 Adventure|Comedy|Sci-Fi
## 2395 Drama|Mystery|Thriller
## 2396 Comedy
## 2397 Drama
## 2398 Drama
## 2399 Drama
## 2400 Documentary
## 2401 Drama
## 2402 Drama
## 2403 Drama
## 2404 Children|Drama
## 2405 Adventure|Sci-Fi|Thriller
## 2406 Drama
## 2407 Drama|Romance
## 2408 Drama|War
## 2409 Action|Crime|Romance|Thriller
## 2410 Crime|Drama
## 2411 Comedy|Drama
## 2412 Drama
## 2413 Thriller
## 2414 Action|Mystery|Thriller
## 2415 Romance
## 2416 Action|Comedy
## 2417 Comedy|Drama|Romance
## 2418 Drama
## 2419 Animation|Children
## 2420 Drama
## 2421 Drama
## 2422 Mystery|Thriller
## 2423 Drama
## 2424 Drama
## 2425 Drama
## 2426 Comedy|Romance
## 2427 Thriller
## 2428 Comedy
## 2429 Thriller
## 2430 Comedy
## 2431 Comedy
## 2432 Comedy
## 2433 Comedy|Romance
## 2434 Drama
## 2435 Comedy|Crime
## 2436 Comedy
## 2437 Drama|Thriller
## 2438 Drama
## 2439 Drama|Mystery
## 2440 Drama
## 2441 Comedy
## 2442 Comedy
## 2443 Comedy|Drama
## 2444 Action|Crime|Drama|Thriller
## 2445 Drama|Romance|Thriller
## 2446 Comedy|Fantasy
## 2447 Adventure|Drama|Romance
## 2448 Drama
## 2449 Comedy|Drama|Romance
## 2450 Crime|Drama|Mystery|Thriller
## 2451 Comedy|Drama
## 2452 Action|Comedy|Horror
## 2453 Action|Crime|Drama|Thriller
## 2454 Comedy|Crime|Drama|Thriller
## 2455 Action|Crime|Thriller|Western
## 2456 Action|Comedy
## 2457 Drama|Romance|Sci-Fi
## 2458 Comedy|Drama|Romance
## 2459 Drama
## 2460 Crime|Drama
## 2461 Comedy|Horror|Mystery|Thriller
## 2462 Drama|Thriller
## 2463 Action|Crime|Drama|Thriller
## 2464 Comedy
## 2465 Horror
## 2466 Documentary
## 2467 Action
## 2468 Comedy|Mystery|Romance
## 2469 Adventure|Drama
## 2470 Comedy
## 2471 Animation|Children
## 2472 Drama
## 2473 Horror
## 2474 Drama
## 2475 Drama
## 2476 Crime|Drama|Thriller
## 2477 Comedy|Drama
## 2478 Horror|Sci-Fi|Thriller
## 2479 Comedy|Crime
## 2480 Comedy
## 2481 Documentary
## 2482 Comedy
## 2483 Comedy|Drama|Romance
## 2484 Comedy|Drama
## 2485 Comedy|Drama
## 2486 Comedy
## 2487 Musical
## 2488 Action|Thriller
## 2489 Comedy|Drama
## 2490 Comedy|Crime
## 2491 Comedy
## 2492 Comedy|Drama
## 2493 Comedy|Sci-Fi
## 2494 Documentary
## 2495 Crime|Drama
## 2496 Drama|Romance
## 2497 Drama|Romance
## 2498 Drama
## 2499 Crime|Drama|Film-Noir|Thriller
## 2500 Documentary
## 2501 Comedy
## 2502 Drama|War
## 2503 Horror
## 2504 Adventure|Children
## 2505 Adventure|Drama
## 2506 Drama
## 2507 Comedy|Romance
## 2508 Sci-Fi
## 2509 Fantasy|Horror|Mystery|Thriller
## 2510 Drama|Romance
## 2511 Comedy|Drama|Fantasy|Romance
## 2512 Comedy|Drama
## 2513 Drama|Romance
## 2514 Comedy|Drama|Romance
## 2515 Crime|Drama
## 2516 Comedy|Drama
## 2517 Crime|Film-Noir
## 2518 Drama|Western
## 2519 Romance|Western
## 2520 Drama|Thriller
## 2521 Action|War
## 2522 Drama
## 2523 Drama
## 2524 Drama
## 2525 Action|Crime
## 2526 Comedy
## 2527 Drama|Mystery|Thriller
## 2528 Comedy|Mystery
## 2529 Children|Comedy
## 2530 Action|Adventure
## 2531 Adventure|Crime|Drama|Romance
## 2532 Comedy
## 2533 Comedy
## 2534 Comedy|Fantasy|Romance
## 2535 Comedy|Romance
## 2536 Comedy
## 2537 Adventure|Children|Comedy|Musical
## 2538 Children|Comedy
## 2539 Children|Comedy|Musical
## 2540 Adventure|Animation|Children|Fantasy
## 2541 Adventure|Sci-Fi
## 2542 Comedy|Drama|Romance
## 2543 Drama|Thriller
## 2544 Action|Drama
## 2545 Action|Drama
## 2546 Action|Adventure|Drama|War
## 2547 Drama
## 2548 Drama|Thriller
## 2549 Comedy|Drama
## 2550 Adventure|Children|Drama
## 2551 Drama|Romance|War
## 2552 Drama
## 2553 Adventure|Comedy
## 2554 Adventure|Crime|Drama
## 2555 Drama|Thriller
## 2556 Comedy
## 2557 Comedy|Romance
## 2558 Drama
## 2559 Drama
## 2560 Drama|Musical
## 2561 Drama|Romance
## 2562 Drama
## 2563 Animation|Comedy
## 2564 Action|Crime|Drama
## 2565 Action|Drama
## 2566 Action|Drama
## 2567 Action|Drama
## 2568 Action|Drama
## 2569 Crime|Drama|Film-Noir
## 2570 Drama|Romance
## 2571 Action|Children|Comedy|Fantasy|Sci-Fi
## 2572 Action|Children|Fantasy
## 2573 Action|Adventure|Children|Comedy|Fantasy
## 2574 Action|Drama|War
## 2575 Action|Crime|Drama
## 2576 Action
## 2577 Mystery|Thriller
## 2578 Comedy|Drama
## 2579 Drama
## 2580 Comedy|Drama|War
## 2581 Drama
## 2582 Comedy
## 2583 Drama
## 2584 Action|Crime|Romance|Thriller
## 2585 Drama|Romance
## 2586 Comedy|Romance
## 2587 Drama|Thriller
## 2588 Drama
## 2589 Drama|Horror
## 2590 Adventure|Drama|Thriller
## 2591 Comedy|Drama|Romance
## 2592 Comedy|Fantasy
## 2593 Drama|Western
## 2594 Drama
## 2595 Drama
## 2596 Adventure|Drama
## 2597 Adventure|Drama|Sci-Fi
## 2598 Comedy
## 2599 Sci-Fi|Thriller
## 2600 Drama|Romance
## 2601 Horror|Mystery
## 2602 Comedy|Drama
## 2603 Drama
## 2604 Adventure|Fantasy|Romance
## 2605 Drama|Romance
## 2606 Comedy|Drama|Romance
## 2607 Animation|Children
## 2608 Thriller
## 2609 Adventure|Comedy|Fantasy
## 2610 Adventure|Comedy|Romance
## 2611 Adventure|Drama|Western
## 2612 Drama
## 2613 Comedy
## 2614 Drama
## 2615 Drama|Horror|Thriller
## 2616 Comedy|Drama
## 2617 Comedy|Romance
## 2618 Drama
## 2619 Drama|Mystery|Sci-Fi
## 2620 Comedy|Drama
## 2621 Drama|Mystery|Thriller
## 2622 Comedy|Drama
## 2623 Comedy
## 2624 Action|Adventure|Drama|Thriller|Western
## 2625 Drama|Thriller
## 2626 Comedy
## 2627 Drama|Romance
## 2628 Drama|Thriller
## 2629 Drama
## 2630 Comedy|Romance
## 2631 Comedy|Fantasy|Romance
## 2632 Action|Drama|War
## 2633 Comedy|Drama
## 2634 Comedy|Romance
## 2635 Comedy
## 2636 Comedy|Drama
## 2637 Action|Sci-Fi|Thriller
## 2638 Drama|Romance
## 2639 Crime|Thriller
## 2640 Comedy|Drama|Romance
## 2641 Drama
## 2642 Crime|Horror|Mystery|Thriller
## 2643 Comedy|Drama|Romance
## 2644 Comedy|Drama
## 2645 Comedy
## 2646 Documentary
## 2647 Comedy|Drama
## 2648 Comedy
## 2649 Drama|Musical
## 2650 Drama|Horror|Thriller
## 2651 Comedy|Drama
## 2652 Comedy|Musical|Romance
## 2653 Horror
## 2654 Crime|Drama|Thriller
## 2655 Comedy
## 2656 Drama|Thriller
## 2657 Drama|Romance
## 2658 Action|Thriller|War
## 2659 Drama|Romance
## 2660 Mystery|Thriller
## 2661 Comedy|Drama|Romance
## 2662 Action|Horror
## 2663 Children|Comedy
## 2664 Comedy|Drama
## 2665 Comedy|Drama
## 2666 Comedy|Drama|Romance
## 2667 Comedy|Romance
## 2668 Comedy|Drama
## 2669 Comedy|Drama
## 2670 Horror|Sci-Fi
## 2671 Horror|Sci-Fi
## 2672 Horror|Sci-Fi
## 2673 Action|Horror|Sci-Fi
## 2674 Drama|Romance
## 2675 Action|Adventure|Drama
## 2676 Drama
## 2677 Comedy
## 2678 Action|Drama|Romance|Thriller
## 2679 Drama|Romance
## 2680 Horror
## 2681 Comedy|Drama
## 2682 Comedy|Drama
## 2683 Animation|Sci-Fi
## 2684 Action|Sci-Fi
## 2685 Drama|Musical
## 2686 Comedy
## 2687 Comedy
## 2688 Crime|Drama|Romance|Thriller
## 2689 Comedy|Musical
## 2690 Musical
## 2691 Comedy|Musical|Romance
## 2692 Adventure|Comedy
## 2693 Documentary
## 2694 Comedy|Romance
## 2695 Adventure|Animation|Children
## 2696 Comedy|Romance
## 2697 Comedy
## 2698 Comedy|Crime
## 2699 Comedy
## 2700 Comedy
## 2701 Action|Adventure|Thriller
## 2702 Action|Adventure|Comedy|Western
## 2703 Documentary
## 2704 Comedy
## 2705 Horror|Thriller
## 2706 Action|Drama|Romance|War
## 2707 Adventure|Comedy|Romance
## 2708 Comedy|Crime
## 2709 Action|Adventure|Romance|Thriller
## 2710 Thriller
## 2711 Action|Adventure|Thriller
## 2712 Drama
## 2713 Action|Adventure|Sci-Fi|Thriller
## 2714 Action|Adventure|Thriller
## 2715 Comedy|Drama
## 2716 Drama
## 2717 Action|Drama|War
## 2718 Comedy
## 2719 Horror|Sci-Fi
## 2720 Drama
## 2721 Horror
## 2722 Documentary
## 2723 Action|Adventure|Drama|War
## 2724 Drama
## 2725 Horror|Sci-Fi
## 2726 Horror|Sci-Fi|Thriller
## 2727 Horror|Sci-Fi|Thriller
## 2728 Horror|Sci-Fi|Thriller
## 2729 Horror|Sci-Fi|Thriller
## 2730 Horror|Sci-Fi|Thriller
## 2731 Action|Comedy|Crime
## 2732 Drama|Romance
## 2733 Comedy
## 2734 Comedy|Western
## 2735 Adventure|Children
## 2736 Adventure|Children
## 2737 Adventure|Children|Comedy|Drama
## 2738 Comedy|Musical|Romance
## 2739 Drama|Horror
## 2740 Documentary
## 2741 Drama
## 2742 Documentary|Musical
## 2743 Documentary
## 2744 Action|Drama|Thriller|Western
## 2745 Action|Crime|Drama|Thriller
## 2746 Crime|Drama|Film-Noir
## 2747 Drama|Romance
## 2748 Comedy|Drama|Romance
## 2749 Horror|Sci-Fi|Thriller
## 2750 Adventure|Animation|Fantasy|Sci-Fi
## 2751 Comedy
## 2752 Comedy
## 2753 Comedy
## 2754 Comedy
## 2755 Comedy|Horror
## 2756 Comedy|Horror
## 2757 Comedy|Horror
## 2758 Comedy|Horror
## 2759 Comedy|Horror|Sci-Fi|Thriller
## 2760 Action|Sci-Fi|Thriller
## 2761 Action|Sci-Fi
## 2762 Adventure|Drama|Romance|Sci-Fi
## 2763 Drama|Sci-Fi
## 2764 Crime|Drama|Sci-Fi|Thriller
## 2765 Action|Adventure|Sci-Fi
## 2766 Action|Adventure|Sci-Fi|Thriller
## 2767 Action|Adventure|Sci-Fi
## 2768 Action|Comedy|Romance
## 2769 Film-Noir|Horror|Mystery|Thriller
## 2770 Drama|Romance
## 2771 Horror|Thriller
## 2772 Horror
## 2773 Action|Comedy|Crime|Thriller
## 2774 Drama
## 2775 Comedy
## 2776 Drama
## 2777 Drama
## 2778 Comedy|Crime
## 2779 Action|Comedy|Crime|Drama
## 2780 Action|Crime
## 2781 Comedy|Romance
## 2782 Drama
## 2783 Drama
## 2784 Drama|War
## 2785 Animation|Musical
## 2786 Action|Thriller
## 2787 Horror|Western
## 2788 Crime|Drama|Film-Noir|Thriller
## 2789 Action|Crime|Drama|Thriller
## 2790 Drama|Mystery
## 2791 Drama|Thriller
## 2792 Horror
## 2793 Drama
## 2794 Crime|Drama
## 2795 Drama
## 2796 Drama|Western
## 2797 Drama
## 2798 Comedy|Romance
## 2799 Action|Adventure|Comedy|Fantasy
## 2800 Crime|Drama|Thriller
## 2801 Drama|War
## 2802 Comedy|Romance
## 2803 Action|Crime|Thriller
## 2804 Action|Adventure|Animation|Children|Sci-Fi
## 2805 Drama
## 2806 Drama
## 2807 Animation|Children|Comedy
## 2808 Adventure|Comedy
## 2809 Action|Drama|War
## 2810 Adventure|Animation|Children|Comedy|Fantasy
## 2811 Drama|Thriller
## 2812 Drama
## 2813 Drama|Sci-Fi|Thriller
## 2814 Comedy
## 2815 Action|Crime|Drama|Thriller
## 2816 Action|Crime|Thriller
## 2817 Action|Crime|Thriller
## 2818 Crime|Drama|Romance
## 2819 Action|War
## 2820 Action|War
## 2821 Action|War
## 2822 Action
## 2823 Horror|Sci-Fi|Thriller
## 2824 Action|Adventure|Fantasy
## 2825 Comedy
## 2826 Comedy|Drama|Romance
## 2827 Crime|Drama
## 2828 Comedy|Fantasy
## 2829 Comedy|Horror
## 2830 Comedy
## 2831 Comedy
## 2832 Drama|Mystery
## 2833 Drama
## 2834 Drama
## 2835 Drama
## 2836 Drama|Romance|Western
## 2837 Action|Adventure|Sci-Fi
## 2838 Comedy|Drama
## 2839 Drama
## 2840 Thriller
## 2841 Drama|Horror|Mystery
## 2842 Animation|Children
## 2843 Drama|Mystery
## 2844 Action|Sci-Fi
## 2845 Western
## 2846 Adventure|Fantasy
## 2847 Drama|War
## 2848 Comedy
## 2849 Drama|Thriller
## 2850 Drama|War
## 2851 Comedy
## 2852 Drama
## 2853 Comedy
## 2854 Drama
## 2855 Comedy
## 2856 Comedy
## 2857 Drama|Romance
## 2858 Drama
## 2859 Drama|Romance
## 2860 Comedy|Drama|Romance
## 2861 Horror|Sci-Fi|Thriller
## 2862 Action|Adventure|Comedy|Sci-Fi
## 2863 Comedy|Horror|Thriller
## 2864 Comedy
## 2865 Horror
## 2866 Horror|Sci-Fi
## 2867 Adventure|Drama|Romance
## 2868 Thriller
## 2869 Action|Comedy|War
## 2870 Action|Fantasy|Horror|Sci-Fi|Thriller
## 2871 Horror
## 2872 Horror
## 2873 Horror
## 2874 Action|Comedy
## 2875 Horror
## 2876 Drama
## 2877 Drama
## 2878 Comedy
## 2879 Horror
## 2880 Horror|Mystery|Thriller
## 2881 Comedy
## 2882 Comedy
## 2883 Drama|Romance
## 2884 Thriller
## 2885 Comedy
## 2886 Documentary
## 2887 Comedy
## 2888 Comedy
## 2889 Drama|Horror|Thriller
## 2890 Action|Adventure|Sci-Fi
## 2891 Comedy|Documentary
## 2892 Action|Comedy|Crime|Romance
## 2893 Comedy
## 2894 Drama
## 2895 Drama|Western
## 2896 Drama
## 2897 Comedy|Western
## 2898 Action|Adventure|Fantasy
## 2899 Action|Thriller
## 2900 Comedy
## 2901 Comedy
## 2902 Drama|Romance
## 2903 Action|Adventure|Fantasy
## 2904 Comedy|Crime|Drama|Romance|Thriller
## 2905 Drama
## 2906 Crime|Thriller
## 2907 Crime|Thriller
## 2908 Drama
## 2909 Action|Comedy
## 2910 Crime|Drama|Thriller
## 2911 Comedy|Drama
## 2912 Comedy|Drama
## 2913 Crime|Thriller
## 2914 Horror
## 2915 Comedy|Romance
## 2916 Drama|Musical
## 2917 Comedy
## 2918 Comedy|Drama
## 2919 Drama
## 2920 Drama
## 2921 Drama
## 2922 Horror
## 2923 Horror
## 2924 Horror
## 2925 Drama|Fantasy|Mystery|Romance
## 2926 Comedy
## 2927 Comedy|Drama
## 2928 Adventure|Sci-Fi
## 2929 Adventure|Sci-Fi
## 2930 Comedy|Horror
## 2931 Comedy
## 2932 Adventure|Horror|Sci-Fi
## 2933 Horror|Sci-Fi
## 2934 Horror|Sci-Fi
## 2935 Sci-Fi|Thriller
## 2936 Horror
## 2937 Horror
## 2938 Horror
## 2939 Horror
## 2940 Horror
## 2941 Comedy
## 2942 Adventure|Animation|Children
## 2943 Action|Drama|Thriller
## 2944 Action|Crime|Drama|Thriller
## 2945 Comedy
## 2946 Drama
## 2947 Drama
## 2948 Drama
## 2949 Drama|Thriller
## 2950 Comedy|Romance
## 2951 Comedy
## 2952 Action|Drama
## 2953 Drama
## 2954 Action|Adventure|Sci-Fi
## 2955 Comedy|Horror
## 2956 Musical
## 2957 Animation|Children
## 2958 Drama|Film-Noir
## 2959 Crime|Film-Noir
## 2960 Drama
## 2961 Comedy
## 2962 Drama
## 2963 Comedy|Mystery
## 2964 Action|Comedy
## 2965 Crime|Horror|Mystery|Thriller
## 2966 Adventure|Children
## 2967 Action|Comedy
## 2968 Drama|Romance
## 2969 Comedy
## 2970 Drama
## 2971 Action|Sci-Fi|Thriller
## 2972 Drama|Romance
## 2973 Action|Adventure|Thriller
## 2974 Drama|War
## 2975 Action|Sci-Fi|Thriller
## 2976 Drama|Romance
## 2977 Children|Comedy|Fantasy
## 2978 Documentary
## 2979 Animation|Children|Comedy
## 2980 Children|Comedy
## 2981 Drama|Romance|War
## 2982 Drama|Romance
## 2983 Drama|Sci-Fi
## 2984 Action|Drama|Romance
## 2985 Action|Adventure|Comedy|Fantasy
## 2986 Drama
## 2987 Action|Adventure
## 2988 Adventure|Drama
## 2989 Comedy
## 2990 Comedy
## 2991 Action|Adventure|Thriller
## 2992 Adventure|Animation|Children|Sci-Fi
## 2993 Drama
## 2994 Drama|War
## 2995 Drama
## 2996 Comedy
## 2997 Comedy|Crime|Thriller
## 2998 Comedy|Drama
## 2999 Drama|Romance
## 3000 Comedy|Sci-Fi
## 3001 Adventure|Animation|Children|Comedy|Fantasy
## 3002 Drama
## 3003 Comedy|Romance
## 3004 Drama
## 3005 Thriller
## 3006 Drama
## 3007 Drama
## 3008 Comedy|Drama|Romance
## 3009 Romance
## 3010 Comedy|Crime
## 3011 Adventure|Comedy|Crime
## 3012 Comedy|Drama
## 3013 Horror
## 3014 Drama|Romance|Western
## 3015 Comedy
## 3016 Drama|Thriller|War
## 3017 Crime|Drama|Thriller
## 3018 Romance|Western
## 3019 Drama|Horror
## 3020 Crime|Film-Noir|Mystery|Thriller
## 3021 Children|Musical
## 3022 Comedy
## 3023 Drama|Romance
## 3024 Action|Drama|War|Western
## 3025 Crime|Drama
## 3026 Drama
## 3027 Drama|War
## 3028 Horror|Sci-Fi
## 3029 Crime|Drama|Thriller
## 3030 Action|Comedy
## 3031 Drama|Romance
## 3032 Drama
## 3033 Crime|Drama|Mystery|Thriller
## 3034 Drama|Romance
## 3035 Comedy|Drama|Romance
## 3036 Comedy|Drama|Romance
## 3037 Action|Crime|Thriller
## 3038 Action|Crime|Drama
## 3039 Action|Comedy
## 3040 Drama|Romance
## 3041 Comedy
## 3042 Comedy|Romance
## 3043 Drama
## 3044 Drama|Thriller
## 3045 Drama
## 3046 Comedy|Sci-Fi
## 3047 Comedy
## 3048 Comedy
## 3049 Comedy|Drama|Romance
## 3050 Thriller
## 3051 Action|Comedy|Crime|Thriller
## 3052 Action|Comedy|Crime|Drama
## 3053 Action|Crime|Mystery|Romance|Thriller
## 3054 Comedy
## 3055 Animation|Children
## 3056 Comedy|Romance
## 3057 Romance|Sci-Fi
## 3058 Thriller
## 3059 Comedy|Documentary
## 3060 Action|Adventure|Drama|War
## 3061 Comedy
## 3062 Fantasy|Horror|Thriller
## 3063 Drama|Thriller
## 3064 Thriller
## 3065 Drama|War
## 3066 Drama
## 3067 Comedy
## 3068 Comedy
## 3069 Drama
## 3070 Action|Adventure|Comedy|Sci-Fi
## 3071 Comedy
## 3072 Horror|Thriller
## 3073 Comedy|Sci-Fi
## 3074 Drama
## 3075 Comedy
## 3076 Comedy|Horror|Thriller
## 3077 Fantasy|Romance
## 3078 Comedy|Fantasy
## 3079 Comedy|Romance|Sci-Fi
## 3080 Comedy|Romance
## 3081 Action|Adventure|Fantasy|Sci-Fi
## 3082 Adventure|Comedy|Horror
## 3083 Comedy|Horror
## 3084 Crime|Drama
## 3085 Comedy|Romance
## 3086 Action|Adventure|Drama|Thriller
## 3087 Horror|Mystery
## 3088 Drama|Romance
## 3089 Drama|Mystery|Romance
## 3090 Comedy|Drama|Romance
## 3091 Horror|Thriller
## 3092 Comedy|Romance
## 3093 Drama
## 3094 Comedy|Fantasy|Romance
## 3095 Animation|Children
## 3096 Drama|Romance
## 3097 Comedy
## 3098 Comedy|Drama|Fantasy|Romance
## 3099 Animation|Comedy|Fantasy
## 3100 Action|Thriller
## 3101 Drama|Romance
## 3102 Action|Comedy
## 3103 Drama
## 3104 Action|Drama
## 3105 Thriller
## 3106 Comedy|Romance
## 3107 Documentary
## 3108 Drama
## 3109 Comedy|Drama
## 3110 Drama
## 3111 Action|Drama
## 3112 Comedy
## 3113 Comedy|Drama|Romance
## 3114 Drama
## 3115 Drama
## 3116 Drama
## 3117 Comedy|Drama|Romance
## 3118 Musical
## 3119 Drama|Romance|War
## 3120 Horror|Mystery
## 3121 Comedy
## 3122 Sci-Fi
## 3123 Action
## 3124 Drama
## 3125 Action|Crime|Drama
## 3126 Comedy
## 3127 Comedy|Drama|Romance
## 3128 Action|Adventure|War
## 3129 Action|Crime|Drama|Horror|Thriller
## 3130 Drama
## 3131 Crime|Mystery
## 3132 Comedy
## 3133 Comedy
## 3134 Documentary
## 3135 Crime|Drama
## 3136 Comedy
## 3137 Comedy
## 3138 Comedy
## 3139 Drama|War
## 3140 Action|Thriller
## 3141 Comedy
## 3142 Mystery|Thriller
## 3143 Comedy|Crime|Romance
## 3144 Comedy|Romance
## 3145 Comedy|Romance
## 3146 Action|Adventure|Children|Comedy
## 3147 Comedy
## 3148 Drama|Thriller
## 3149 Drama|Thriller
## 3150 Documentary
## 3151 Documentary
## 3152 Action|Crime|Mystery|Thriller
## 3153 Crime|Drama
## 3154 Comedy|Fantasy
## 3155 Animation|Children
## 3156 Comedy|Crime|Drama|Thriller
## 3157 Crime|Drama|Mystery
## 3158 Comedy|Drama|Romance
## 3159 Adventure|Comedy|Mystery|Romance
## 3160 Comedy
## 3161 Drama|Thriller
## 3162 Drama
## 3163 Comedy|Drama
## 3164 Comedy
## 3165 Drama
## 3166 Drama|Romance
## 3167 Drama
## 3168 Action|Crime|Drama
## 3169 Drama
## 3170 Action|Thriller
## 3171 Comedy
## 3172 Comedy
## 3173 Action|Adventure|Comedy|Thriller
## 3174 Drama
## 3175 Action|Adventure|Fantasy|Sci-Fi
## 3176 Comedy
## 3177 Documentary
## 3178 Comedy|Drama|Romance
## 3179 Drama|Fantasy
## 3180 Comedy
## 3181 Comedy|Romance
## 3182 Comedy|Drama
## 3183 Comedy|Drama|Musical
## 3184 Comedy|Crime
## 3185 Drama
## 3186 Comedy
## 3187 Children|Fantasy|Musical
## 3188 Drama|Romance
## 3189 Drama
## 3190 Crime|Film-Noir|Thriller
## 3191 Action|Comedy|Romance
## 3192 Drama
## 3193 Documentary
## 3194 Romance|Thriller
## 3195 Adventure|Animation|Children|Comedy|Fantasy|Romance
## 3196 Comedy|Romance
## 3197 Drama|Musical|Romance
## 3198 Action|Drama|Romance|War
## 3199 Adventure|Drama
## 3200 Drama
## 3201 Drama
## 3202 Comedy|Romance
## 3203 Comedy|Western
## 3204 Drama
## 3205 Adventure|War|Western
## 3206 Drama
## 3207 Crime|Drama|Thriller
## 3208 Adventure|Western
## 3209 Western
## 3210 Comedy|Crime
## 3211 Drama
## 3212 Drama|Romance|War
## 3213 Drama|War
## 3214 Action|Adventure|Drama|War
## 3215 Comedy
## 3216 Drama|Romance
## 3217 Comedy|Sci-Fi
## 3218 Action|Crime|Drama
## 3219 Drama
## 3220 Comedy|Drama
## 3221 Comedy|War
## 3222 Comedy|Documentary
## 3223 Action|Crime|Thriller
## 3224 Action|War
## 3225 Crime|Thriller
## 3226 Action|Drama
## 3227 Comedy|Musical|Romance
## 3228 Comedy|Drama|Romance
## 3229 Comedy
## 3230 Comedy|Romance
## 3231 Adventure|Animation|Children|Fantasy
## 3232 Action|Adventure
## 3233 Comedy
## 3234 Action|Crime|Thriller
## 3235 Adventure|Drama|Sci-Fi
## 3236 Crime|Drama
## 3237 Drama|Romance
## 3238 Comedy
## 3239 Comedy|Romance
## 3240 Crime|Drama
## 3241 Drama|Romance
## 3242 Comedy
## 3243 Crime|Drama|Mystery|Thriller
## 3244 Drama
## 3245 Children|Comedy
## 3246 Action
## 3247 Comedy
## 3248 Drama
## 3249 Crime|Drama|Thriller
## 3250 Comedy|Drama|Fantasy|Romance
## 3251 Drama
## 3252 Comedy|Musical
## 3253 Comedy|Crime
## 3254 Action|Comedy
## 3255 Action|Comedy
## 3256 Comedy|Drama
## 3257 Comedy
## 3258 Horror
## 3259 Drama|Fantasy|Horror
## 3260 Crime|Drama|Western
## 3261 Drama|Thriller|War
## 3262 Drama
## 3263 Comedy|Drama|Mystery|Thriller
## 3264 Comedy|Crime|Drama
## 3265 Comedy|Horror|Sci-Fi
## 3266 Drama|Romance
## 3267 Drama
## 3268 Drama
## 3269 Drama
## 3270 Film-Noir
## 3271 Drama
## 3272 Comedy|Drama|Romance|Western
## 3273 Drama
## 3274 Drama|Film-Noir
## 3275 Drama
## 3276 Action|Comedy|Sci-Fi|Thriller
## 3277 Mystery|Thriller
## 3278 Horror
## 3279 Action|Drama|Romance|Thriller
## 3280 Drama
## 3281 Action|Thriller
## 3282 Action
## 3283 Action|Comedy|Drama
## 3284 Action|Sci-Fi|Thriller
## 3285 Action|Crime
## 3286 Adventure|Documentary|IMAX
## 3287 Adventure|Animation|Fantasy|Sci-Fi
## 3288 Comedy|Romance
## 3289 Action|Drama
## 3290 Drama
## 3291 Crime|Drama|Thriller
## 3292 Comedy|Drama|Romance
## 3293 Comedy
## 3294 Documentary|IMAX
## 3295 Animation|Drama|Sci-Fi|IMAX
## 3296 Documentary|IMAX
## 3297 Documentary|IMAX
## 3298 Comedy|Fantasy
## 3299 Drama|War
## 3300 Comedy|Drama|Romance
## 3301 Drama
## 3302 Action|Crime|Drama
## 3303 Adventure|Comedy|Fantasy
## 3304 Drama
## 3305 Comedy|Romance
## 3306 Drama|War
## 3307 Comedy|Drama|Musical
## 3308 Drama|War
## 3309 Comedy
## 3310 Adventure|Children|Comedy
## 3311 Comedy|Drama
## 3312 Horror|Sci-Fi
## 3313 Drama
## 3314 Comedy
## 3315 Drama
## 3316 Drama|Romance
## 3317 Action|Crime|Drama
## 3318 Comedy|Romance
## 3319 Comedy
## 3320 Comedy|Sci-Fi
## 3321 Comedy|Romance
## 3322 Film-Noir|Mystery|Thriller
## 3323 Action|Comedy|Horror|Sci-Fi
## 3324 Action|Crime|Thriller
## 3325 Comedy
## 3326 Comedy|Drama
## 3327 Children|Comedy
## 3328 Comedy
## 3329 Drama|Romance
## 3330 Crime|Mystery|Thriller
## 3331 Drama
## 3332 Comedy
## 3333 Comedy
## 3334 Comedy
## 3335 Horror|Mystery|Thriller
## 3336 Comedy|Horror
## 3337 Adventure|Animation|Children|Fantasy
## 3338 Comedy
## 3339 Drama
## 3340 Mystery|Romance|Thriller
## 3341 Comedy|Drama|Fantasy
## 3342 Comedy
## 3343 Comedy|Romance|Sci-Fi
## 3344 Comedy|Romance
## 3345 Comedy|Drama
## 3346 Action
## 3347 Comedy|Horror|Sci-Fi
## 3348 Adventure|Drama|Western
## 3349 Drama|Romance|Western
## 3350 Drama
## 3351 Horror
## 3352 Comedy|Sci-Fi
## 3353 Comedy|Sci-Fi
## 3354 Drama|Thriller
## 3355 Action|Horror|Sci-Fi|Thriller
## 3356 Action|Sci-Fi|Thriller
## 3357 Drama
## 3358 Comedy
## 3359 Comedy|Mystery
## 3360 Comedy
## 3361 Drama|Fantasy|Romance
## 3362 Action|Adventure
## 3363 Action
## 3364 Adventure|Comedy|Sci-Fi
## 3365 Action|Crime|Drama
## 3366 Comedy|Drama
## 3367 Action|Thriller
## 3368 Drama|War
## 3369 Comedy|Romance
## 3370 Action|Sci-Fi
## 3371 Drama
## 3372 Action|Comedy
## 3373 Comedy|Drama|Romance
## 3374 Comedy
## 3375 Comedy|Musical|Sci-Fi
## 3376 Drama|Musical|Mystery
## 3377 Adventure|Comedy|Fantasy
## 3378 Comedy
## 3379 Action|War
## 3380 Drama
## 3381 Action|Drama|Mystery
## 3382 Drama
## 3383 Comedy|Drama
## 3384 Comedy|Crime|Romance
## 3385 Comedy|Romance
## 3386 Comedy|Fantasy
## 3387 Crime|Drama
## 3388 Comedy|Crime|Mystery|Thriller
## 3389 Crime|Drama
## 3390 Drama
## 3391 Action|Comedy|Crime
## 3392 Action
## 3393 Drama
## 3394 Drama
## 3395 Comedy
## 3396 Comedy
## 3397 Comedy|Romance
## 3398 Comedy
## 3399 Comedy
## 3400 Animation|Comedy|Musical
## 3401 Drama|Sci-Fi|Thriller
## 3402 Drama|Romance|Sci-Fi
## 3403 Comedy|Drama
## 3404 Action|Crime|Thriller
## 3405 Action
## 3406 Action|Thriller
## 3407 Adventure|Comedy
## 3408 Action|Comedy|Drama
## 3409 Action
## 3410 Action|Adventure|Sci-Fi|Thriller
## 3411 Comedy|Romance
## 3412 Action|Crime|Thriller
## 3413 Comedy|Drama
## 3414 Comedy|Drama|Musical
## 3415 Action|Adventure|Drama|Sci-Fi
## 3416 Comedy|Drama|Romance
## 3417 Crime|Horror|Thriller
## 3418 Comedy|Drama
## 3419 Comedy
## 3420 Adventure|Comedy
## 3421 Action|Drama
## 3422 Drama|Horror|Mystery|Thriller
## 3423 Comedy
## 3424 Crime|Drama|Thriller
## 3425 Comedy|Crime
## 3426 Comedy
## 3427 Comedy
## 3428 Horror|Thriller
## 3429 Drama
## 3430 Comedy|Romance
## 3431 Action|Comedy|Crime|Thriller
## 3432 Action|Comedy
## 3433 Comedy
## 3434 Comedy|Crime
## 3435 Comedy
## 3436 Comedy
## 3437 Comedy|Drama
## 3438 Adventure|Children|Comedy|Drama
## 3439 Adventure|Comedy
## 3440 Comedy
## 3441 Adventure|Drama
## 3442 Mystery|Thriller
## 3443 Crime|Musical
## 3444 Crime|Drama
## 3445 Comedy|Horror
## 3446 Drama|Romance|Thriller
## 3447 Children|Comedy|Romance
## 3448 Action|Comedy
## 3449 Drama
## 3450 Adventure|Comedy
## 3451 Comedy
## 3452 Drama|Musical
## 3453 Comedy|Musical|Western
## 3454 Drama|Western
## 3455 Documentary
## 3456 Drama|Sci-Fi
## 3457 Comedy
## 3458 Horror
## 3459 Action|Comedy
## 3460 Comedy
## 3461 Action|Animation|Comedy|Crime|Drama|Romance|Thriller
## 3462 Drama|Horror|Mystery|Thriller
## 3463 Action|Comedy|Western
## 3464 Comedy
## 3465 Drama
## 3466 Horror|Thriller
## 3467 Drama|Romance|War
## 3468 Comedy
## 3469 Comedy
## 3470 Comedy
## 3471 Adventure|Comedy
## 3472 Horror|Sci-Fi|Thriller
## 3473 Comedy|Drama|Romance
## 3474 Romance|Sci-Fi
## 3475 Comedy|Romance
## 3476 Comedy|Drama|Romance
## 3477 Comedy|Romance
## 3478 Horror
## 3479 Drama
## 3480 Action|Children|Comedy
## 3481 Action|Children|Comedy
## 3482 Action|Children
## 3483 Drama|Horror|Mystery|Thriller
## 3484 Action|Adventure|Drama|Romance
## 3485 Comedy|Drama|Musical
## 3486 Comedy|Drama
## 3487 Drama
## 3488 Crime|Drama|Romance
## 3489 Documentary
## 3490 Thriller
## 3491 Drama
## 3492 Drama
## 3493 Comedy
## 3494 Comedy|Crime
## 3495 Drama|Musical|Romance
## 3496 Crime|Drama|Thriller
## 3497 Comedy|Musical|Sci-Fi
## 3498 Drama
## 3499 Comedy|Romance
## 3500 Documentary
## 3501 Drama
## 3502 Drama|Western
## 3503 Horror|Thriller
## 3504 Drama
## 3505 Drama|Romance
## 3506 Comedy|Fantasy|Horror|Musical|Thriller
## 3507 Horror
## 3508 Crime|Horror|Mystery
## 3509 Adventure|Comedy|Romance|War
## 3510 Comedy|Romance
## 3511 Comedy|Romance
## 3512 Action|Adventure|Comedy|Crime
## 3513 Action|Adventure|Drama|Romance|Thriller
## 3514 Drama
## 3515 Action|Comedy|Romance|War
## 3516 Drama|Thriller
## 3517 Comedy|Drama
## 3518 Mystery|Thriller
## 3519 Drama
## 3520 Drama
## 3521 Drama|Musical
## 3522 Adventure|Sci-Fi
## 3523 Sci-Fi
## 3524 Thriller
## 3525 Drama
## 3526 Comedy
## 3527 Action|Adventure|Comedy|Drama
## 3528 Adventure|Thriller
## 3529 Children|Comedy
## 3530 Comedy|Romance
## 3531 Comedy|Drama
## 3532 Action|Adventure|Drama|War
## 3533 Horror
## 3534 Comedy|Romance
## 3535 Crime|Drama
## 3536 Comedy|Musical
## 3537 Horror|Mystery|Thriller
## 3538 Drama
## 3539 Drama|Romance
## 3540 Drama|Romance
## 3541 Comedy|Crime|Romance
## 3542 Comedy|Crime
## 3543 Action|Comedy
## 3544 Drama
## 3545 Crime|Drama|Film-Noir|Mystery|Thriller
## 3546 Comedy|Drama
## 3547 Action|Animation|Sci-Fi
## 3548 Horror
## 3549 Action|Crime|Thriller
## 3550 Drama|Musical
## 3551 Comedy
## 3552 Drama
## 3553 Comedy|Crime
## 3554 Documentary|IMAX
## 3555 Crime|Horror|Mystery|Thriller
## 3556 Action
## 3557 Comedy|Drama
## 3558 Drama
## 3559 Animation|Drama|Fantasy
## 3560 Drama|Fantasy|Mystery|Sci-Fi
## 3561 Horror|Thriller
## 3562 Comedy|Romance
## 3563 Drama|Mystery|Sci-Fi|Thriller
## 3564 Action|Comedy|Crime|Drama
## 3565 Drama
## 3566 Crime|Drama
## 3567 Drama
## 3568 Thriller
## 3569 Adventure|Animation|Children|Comedy|Fantasy
## 3570 Action|Sci-Fi|Thriller
## 3571 Drama
## 3572 Crime|Drama
## 3573 Comedy|Fantasy|Romance
## 3574 Horror|Thriller
## 3575 Adventure|Children|Fantasy
## 3576 Comedy|Crime|Mystery|Thriller
## 3577 Adventure|Comedy|Fantasy
## 3578 Comedy
## 3579 Action|Crime|Drama|Thriller
## 3580 Drama|Fantasy|Horror|Thriller|War
## 3581 Drama
## 3582 Comedy|Sci-Fi
## 3583 Adventure|Comedy|Fantasy
## 3584 Drama|Musical|Romance
## 3585 Crime|Drama|Romance
## 3586 Action|Adventure|Fantasy
## 3587 Drama|War
## 3588 Drama
## 3589 Crime|Drama|Romance|Thriller
## 3590 Drama|Romance
## 3591 Drama|Romance
## 3592 Comedy
## 3593 Comedy|Drama|Musical
## 3594 Fantasy|Mystery|Thriller
## 3595 Drama
## 3596 Comedy
## 3597 Mystery|Thriller
## 3598 Drama|Musical
## 3599 Action|Sci-Fi
## 3600 Action|Adventure|Sci-Fi
## 3601 Sci-Fi
## 3602 Crime
## 3603 Action|Crime|Thriller
## 3604 Action
## 3605 Adventure|Drama|Thriller
## 3606 Comedy|Sci-Fi
## 3607 Adventure|Sci-Fi
## 3608 Comedy|Crime
## 3609 Action|Adventure|Comedy|Drama|Romance|Thriller
## 3610 Crime|Thriller
## 3611 Action|Drama|War
## 3612 Drama
## 3613 Documentary
## 3614 Adventure|Western
## 3615 Crime|Thriller
## 3616 Adventure|Drama|Romance
## 3617 Action|Drama|Thriller
## 3618 Sci-Fi|Thriller
## 3619 Drama|War
## 3620 Crime|Mystery
## 3621 Drama
## 3622 Comedy|Drama
## 3623 Comedy|Romance
## 3624 Comedy
## 3625 Mystery|Romance|Sci-Fi|Thriller
## 3626 Drama
## 3627 Drama
## 3628 Drama|Mystery|Thriller
## 3629 Comedy|Drama
## 3630 Adventure|Comedy|Fantasy|Sci-Fi
## 3631 Comedy
## 3632 Action|Adventure|Fantasy
## 3633 Action|Adventure|Sci-Fi
## 3634 Adventure
## 3635 Comedy
## 3636 Adventure|Animation|Children|Comedy
## 3637 Comedy|Drama|Romance
## 3638 Comedy|Romance
## 3639 Adventure|Fantasy
## 3640 Comedy|Drama|Romance
## 3641 Drama|Romance
## 3642 Adventure|Crime|Drama|Thriller
## 3643 Comedy
## 3644 Adventure|Comedy|Thriller
## 3645 Drama|Mystery|Thriller
## 3646 Drama
## 3647 Action|Drama|War
## 3648 Drama|Romance
## 3649 Drama|Musical|Romance
## 3650 Comedy|Drama|Mystery
## 3651 Drama
## 3652 Drama|Romance
## 3653 Drama
## 3654 Comedy|Crime|Mystery|Thriller
## 3655 Drama
## 3656 Comedy
## 3657 Action|Mystery|Thriller
## 3658 Action|Comedy|Crime|Drama|Thriller
## 3659 Drama
## 3660 Drama|Thriller
## 3661 Drama|Romance
## 3662 Action|Adventure|Fantasy
## 3663 Action|Adventure|Fantasy
## 3664 Animation|Fantasy
## 3665 Action|Drama|Sci-Fi|Thriller
## 3666 Action|Comedy
## 3667 Adventure|Children|Comedy
## 3668 Action|Comedy|Crime|Drama
## 3669 Comedy|Drama|Romance
## 3670 Comedy
## 3671 Sci-Fi|Thriller
## 3672 Action|Drama
## 3673 Documentary
## 3674 Comedy|Drama|War
## 3675 Mystery|Sci-Fi|Thriller
## 3676 Western
## 3677 Action|Adventure|Drama|Thriller
## 3678 Drama|Fantasy|Horror|Mystery|Thriller
## 3679 Drama|Romance
## 3680 Drama
## 3681 Action|Adventure|Animation|Drama|Fantasy
## 3682 Drama|Romance
## 3683 Animation|Sci-Fi
## 3684 Drama
## 3685 Comedy|Drama
## 3686 Comedy
## 3687 Adventure|Children|Comedy|Drama
## 3688 Comedy|Romance
## 3689 Comedy
## 3690 Drama|Romance
## 3691 Comedy|Drama
## 3692 Comedy|Crime|Drama
## 3693 Children|Comedy
## 3694 Action|Thriller
## 3695 Action|Sci-Fi
## 3696 Comedy|Crime
## 3697 Comedy
## 3698 Children|Drama
## 3699 Comedy|Fantasy
## 3700 Children|Comedy|Drama
## 3701 Drama|Horror|Thriller
## 3702 Comedy|Musical|Romance
## 3703 Drama|War
## 3704 Crime|Drama|Thriller
## 3705 Adventure|Animation|Children
## 3706 Comedy|Crime|Mystery
## 3707 Drama|Thriller
## 3708 Drama
## 3709 Comedy|Crime
## 3710 Drama
## 3711 Comedy
## 3712 Comedy|Mystery|Thriller
## 3713 Comedy|Drama
## 3714 Drama|Fantasy|Mystery|Romance|Thriller
## 3715 Fantasy|Horror
## 3716 Comedy|Drama
## 3717 Comedy|Drama
## 3718 Comedy|Romance
## 3719 Drama|Horror
## 3720 Documentary
## 3721 Comedy
## 3722 Animation|Fantasy|Horror|Sci-Fi
## 3723 Drama
## 3724 Comedy|Romance
## 3725 Action|Drama|War
## 3726 Action
## 3727 Action
## 3728 Animation|Children|Comedy|Musical
## 3729 Horror
## 3730 Comedy|Musical|Romance
## 3731 Action|Comedy|Crime
## 3732 Action|Adventure|Sci-Fi
## 3733 Drama|Romance
## 3734 Crime|Drama
## 3735 Action|Sci-Fi|Thriller
## 3736 Comedy
## 3737 Horror|Sci-Fi
## 3738 Drama
## 3739 Drama|Thriller
## 3740 Drama
## 3741 Comedy|Horror
## 3742 Action|Adventure|Thriller
## 3743 Action
## 3744 Comedy
## 3745 Comedy|Fantasy
## 3746 Adventure|Animation|Children|Comedy
## 3747 Action|Horror|Sci-Fi|Thriller
## 3748 Action|Comedy
## 3749 Drama
## 3750 Comedy|Romance
## 3751 Documentary
## 3752 Drama|Romance
## 3753 Drama|Romance
## 3754 Comedy
## 3755 Drama
## 3756 Drama
## 3757 Documentary|Drama
## 3758 Action|Drama
## 3759 Comedy|Romance
## 3760 Action|Adventure
## 3761 Action|Comedy
## 3762 Action|Comedy
## 3763 Action|Comedy
## 3764 Comedy
## 3765 Action|Horror|Thriller
## 3766 Comedy
## 3767 Drama
## 3768 Drama
## 3769 Action|Adventure|Sci-Fi|Thriller
## 3770 Comedy|Crime|Drama
## 3771 Thriller
## 3772 Drama
## 3773 Drama|Fantasy|Romance
## 3774 Drama
## 3775 Drama
## 3776 Drama
## 3777 Comedy|Romance
## 3778 Comedy|Romance
## 3779 Thriller
## 3780 Comedy
## 3781 Comedy|Romance
## 3782 Comedy|Crime
## 3783 Documentary|War
## 3784 Crime|Drama|Mystery
## 3785 Comedy
## 3786 Drama|Thriller
## 3787 Crime|Drama|Thriller
## 3788 Comedy|Romance
## 3789 Drama|Thriller
## 3790 Comedy|Romance
## 3791 Comedy|Romance
## 3792 Action|Adventure|Drama|Thriller|Western
## 3793 Comedy|Romance
## 3794 Drama|War
## 3795 Comedy
## 3796 Comedy
## 3797 Comedy|Romance
## 3798 Children|Horror|Mystery|Thriller
## 3799 Crime|Thriller
## 3800 Action|Adventure|Fantasy|Thriller
## 3801 Romance|Thriller
## 3802 Crime|Thriller
## 3803 Comedy
## 3804 Drama
## 3805 Horror|Sci-Fi|Thriller
## 3806 Comedy|Romance
## 3807 Documentary
## 3808 Drama|Romance
## 3809 Crime|Drama|Thriller
## 3810 Crime|Drama
## 3811 Comedy|Crime
## 3812 Comedy
## 3813 Drama
## 3814 Comedy|Drama
## 3815 Drama
## 3816 Drama
## 3817 Drama|Romance
## 3818 Drama
## 3819 Comedy|Drama
## 3820 Action|Adventure|Sci-Fi|Thriller
## 3821 Comedy|Drama
## 3822 Horror|Sci-Fi
## 3823 Adventure
## 3824 Adventure
## 3825 Adventure
## 3826 Comedy
## 3827 Drama|Thriller
## 3828 Drama|Romance
## 3829 Musical|Western
## 3830 Drama|Romance|War
## 3831 Comedy|Musical|Western
## 3832 Comedy|Drama|Romance
## 3833 Action|Adventure|Sci-Fi|IMAX
## 3834 Drama
## 3835 Comedy|Drama|Romance
## 3836 Comedy
## 3837 Crime|Drama
## 3838 Documentary
## 3839 Drama|Thriller
## 3840 Action|Crime|Drama|Mystery|Thriller
## 3841 Adventure|Animation|Children|Western
## 3842 Drama
## 3843 Drama
## 3844 Comedy|Sci-Fi
## 3845 Drama
## 3846 Drama|Thriller
## 3847 Comedy
## 3848 Drama|Romance
## 3849 Action
## 3850 Drama|Sci-Fi
## 3851 Action|Comedy|Crime
## 3852 Comedy|Drama
## 3853 Comedy|Drama|Thriller
## 3854 Drama|Fantasy
## 3855 Action|Mystery|Thriller
## 3856 Adventure|Children|Comedy|Fantasy|Mystery
## 3857 Action|Drama|War
## 3858 Drama
## 3859 Comedy
## 3860 Action|Crime|Thriller
## 3861 Crime|Drama|Romance|Thriller
## 3862 Drama|War
## 3863 Comedy
## 3864 Comedy
## 3865 Adventure|Drama|Horror|Mystery|Thriller
## 3866 Drama|Film-Noir|Thriller
## 3867 Western
## 3868 Comedy|Sci-Fi|Thriller
## 3869 Action|Comedy
## 3870 Western
## 3871 Action|Comedy|Crime
## 3872 Comedy
## 3873 Adventure|Animation|Children|Sci-Fi
## 3874 Action|Crime|Mystery|Sci-Fi|Thriller
## 3875 Adventure|Drama
## 3876 Drama
## 3877 Adventure|Animation|Children|Comedy
## 3878 Comedy|Romance
## 3879 Comedy|Drama|Romance
## 3880 Comedy|Drama|Romance
## 3881 Children|Comedy|Romance
## 3882 Comedy|Romance
## 3883 Comedy|Drama
## 3884 Comedy|Western
## 3885 Children|Comedy|Fantasy
## 3886 Action|Comedy|Sci-Fi
## 3887 Action|Animation|Children|Comedy
## 3888 Comedy|Drama
## 3889 Adventure|Comedy
## 3890 Action|Adventure|Fantasy
## 3891 Crime|Drama
## 3892 Crime|Drama|Thriller
## 3893 Comedy|Drama|Romance
## 3894 Sci-Fi
## 3895 Comedy|Romance
## 3896 Drama|Romance
## 3897 Children|Drama|Musical
## 3898 Drama|Mystery|Thriller
## 3899 Horror|Thriller
## 3900 Drama|Romance
## 3901 Action|Comedy|Horror|Sci-Fi
## 3902 Action|Adventure|Drama|Thriller
## 3903 Children|Comedy
## 3904 Comedy
## 3905 Documentary
## 3906 Comedy|Drama|Romance
## 3907 Comedy
## 3908 Horror
## 3909 Action|Comedy
## 3910 Action|Adventure|Comedy
## 3911 Adventure|Comedy|Sci-Fi
## 3912 Drama
## 3913 Adventure|Drama|Romance
## 3914 Comedy
## 3915 Comedy|Mystery
## 3916 Horror|Sci-Fi|Thriller
## 3917 Comedy|Drama|Romance
## 3918 Adventure|Children
## 3919 Comedy|Drama
## 3920 Crime|Drama|Mystery|Thriller
## 3921 Action|Crime|Thriller
## 3922 Comedy|Drama|Musical
## 3923 Comedy
## 3924 Comedy|Documentary
## 3925 Drama
## 3926 Action|Crime|Drama
## 3927 Action|Drama|Sci-Fi
## 3928 Action|Adventure|Comedy|Sci-Fi
## 3929 Adventure|Drama|Romance
## 3930 Comedy|Drama|Romance
## 3931 Drama|Romance
## 3932 Drama|Thriller
## 3933 Comedy|Romance
## 3934 Comedy|Drama|Fantasy|Sci-Fi
## 3935 Drama
## 3936 Comedy|Romance
## 3937 Drama|Musical
## 3938 Animation|Children|Fantasy
## 3939 Animation|Children
## 3940 Action|Adventure|Fantasy|Romance
## 3941 Action|Comedy|Romance|War
## 3942 Action|Horror|Sci-Fi
## 3943 Sci-Fi|Thriller
## 3944 Comedy
## 3945 Musical|Western
## 3946 Comedy|Crime|Romance|Thriller
## 3947 Crime|Horror|Thriller
## 3948 Comedy|Musical
## 3949 Drama|Thriller
## 3950 Crime|Drama
## 3951 Thriller
## 3952 Comedy
## 3953 Crime|Horror|Thriller
## 3954 Drama|Horror|Thriller
## 3955 Comedy
## 3956 Comedy|Crime
## 3957 Action|Crime
## 3958 Crime|Drama
## 3959 Comedy|Drama
## 3960 Action
## 3961 Comedy
## 3962 Adventure|Comedy
## 3963 Comedy
## 3964 Comedy
## 3965 Horror
## 3966 Comedy|Drama
## 3967 Crime
## 3968 Children|Comedy
## 3969 Adventure|Comedy|Sci-Fi
## 3970 Comedy|Sci-Fi
## 3971 Children|Drama
## 3972 Comedy|Crime
## 3973 Comedy|Crime
## 3974 Comedy|Sci-Fi
## 3975 Comedy|Drama
## 3976 Drama|Thriller
## 3977 Action|Thriller
## 3978 Comedy|Drama
## 3979 Adventure|War
## 3980 Action|Thriller
## 3981 Comedy|Crime|Musical|Mystery
## 3982 Drama|Romance
## 3983 Drama
## 3984 Comedy|Drama|Romance
## 3985 Adventure|Animation|Fantasy
## 3986 Documentary
## 3987 Comedy|Romance
## 3988 Action|Comedy
## 3989 Drama|Romance
## 3990 Action|Comedy|Crime|Drama|Thriller
## 3991 Animation|Children|Musical
## 3992 Crime|Mystery|Thriller
## 3993 Drama
## 3994 Drama
## 3995 Drama
## 3996 Comedy|Crime
## 3997 Drama
## 3998 Action|Adventure|Fantasy|Sci-Fi
## 3999 Horror|Sci-Fi
## 4000 Documentary
## 4001 Drama
## 4002 Drama|Romance
## 4003 Horror
## 4004 Comedy
## 4005 Animation|Comedy|War
## 4006 Action|Adventure|Comedy|Crime|Drama
## 4007 Horror
## 4008 Romance
## 4009 Action|Comedy|Crime
## 4010 Comedy|Drama|Romance|Thriller
## 4011 Drama|Fantasy
## 4012 Drama
## 4013 Documentary
## 4014 Comedy|Documentary
## 4015 Adventure|Animation|Children|Fantasy
## 4016 Comedy|Drama|Romance
## 4017 Comedy|Romance
## 4018 Action|Comedy|Crime|Thriller
## 4019 Horror|Mystery|Thriller
## 4020 Crime|Drama
## 4021 Drama
## 4022 Documentary
## 4023 Comedy|Drama
## 4024 Drama
## 4025 Crime|Drama
## 4026 Animation|Drama|War
## 4027 Comedy|Drama|Romance
## 4028 Comedy|Drama|Musical
## 4029 Drama
## 4030 Western
## 4031 Action|Adventure|Fantasy|Sci-Fi
## 4032 Horror|Sci-Fi
## 4033 Comedy|Drama
## 4034 Drama|Romance
## 4035 Comedy
## 4036 Mystery|Thriller
## 4037 Action|Adventure|Comedy
## 4038 Drama
## 4039 Comedy|Romance
## 4040 Thriller
## 4041 Documentary|Horror
## 4042 Documentary|Horror
## 4043 Drama|Romance
## 4044 Comedy|Drama
## 4045 Comedy|Drama
## 4046 Action|Horror|Mystery|Sci-Fi
## 4047 Drama|War
## 4048 Drama|Horror
## 4049 Comedy|Romance
## 4050 Horror|Mystery
## 4051 Drama|Horror|Sci-Fi|Thriller
## 4052 Comedy|Crime
## 4053 Comedy|Fantasy
## 4054 Drama|Horror|Thriller
## 4055 Drama
## 4056 Comedy
## 4057 Horror|Sci-Fi
## 4058 Comedy
## 4059 Action|Drama|Thriller
## 4060 Horror
## 4061 Action|Comedy|Documentary
## 4062 Action|Drama
## 4063 Mystery|Thriller
## 4064 Drama
## 4065 Drama|Romance
## 4066 Comedy|Drama
## 4067 Action|Adventure|Comedy
## 4068 Fantasy|Horror
## 4069 Drama|Romance|War
## 4070 Comedy|War
## 4071 Comedy
## 4072 Action|Adventure|Comedy|Crime
## 4073 Children|Comedy|Fantasy|Romance
## 4074 Crime|Thriller
## 4075 Drama
## 4076 Drama|Romance
## 4077 Adventure|Fantasy
## 4078 Drama|War
## 4079 Drama|Romance
## 4080 Documentary|Musical
## 4081 Romance|Western
## 4082 Drama|Thriller
## 4083 Comedy|Drama|Romance
## 4084 Action|Horror
## 4085 Comedy|Romance
## 4086 Drama
## 4087 Adventure|Drama
## 4088 Comedy|Drama
## 4089 Adventure|Romance
## 4090 Action|Drama
## 4091 Drama
## 4092 Comedy
## 4093 Horror|Sci-Fi|Thriller
## 4094 Comedy|Drama|Romance
## 4095 Comedy
## 4096 Crime|Drama|Thriller
## 4097 Action|Adventure|Thriller
## 4098 Drama
## 4099 Comedy
## 4100 Drama
## 4101 Drama|Thriller|War
## 4102 Drama|Romance
## 4103 Animation|Comedy|Musical
## 4104 Action|Adventure|Crime|Thriller
## 4105 Drama|Romance|Sci-Fi
## 4106 Adventure|Animation|Children|Sci-Fi|IMAX
## 4107 Horror|Thriller
## 4108 Comedy|Horror
## 4109 Crime|Drama
## 4110 Drama|Romance
## 4111 Comedy|Drama
## 4112 Horror|Thriller
## 4113 Crime|Drama|Thriller
## 4114 Comedy
## 4115 Action|Drama|War
## 4116 Comedy|Crime
## 4117 Crime|Drama
## 4118 Comedy|Drama|Romance
## 4119 Action|Sci-Fi|Thriller
## 4120 Comedy|Drama|Horror
## 4121 Comedy|Crime
## 4122 Action|Drama|War
## 4123 Sci-Fi
## 4124 Action
## 4125 Horror
## 4126 Comedy|Drama|Musical|Romance
## 4127 Comedy|Romance
## 4128 Documentary
## 4129 Comedy|Crime|Mystery|Thriller
## 4130 Comedy|Drama|Musical|Romance
## 4131 Comedy
## 4132 Comedy|Romance
## 4133 Action|Drama|Sci-Fi|Thriller
## 4134 Comedy|Drama
## 4135 Drama
## 4136 Thriller
## 4137 Drama
## 4138 Adventure|Fantasy
## 4139 Drama|War
## 4140 Crime|Drama
## 4141 Drama
## 4142 Crime|Drama
## 4143 Comedy|Romance
## 4144 Crime|Drama|Thriller
## 4145 Action|Thriller
## 4146 Drama|Thriller
## 4147 Drama
## 4148 Action|War
## 4149 Comedy|Crime|Drama
## 4150 Comedy|Drama|Romance
## 4151 Comedy|Drama|Romance
## 4152 Animation|Children|Drama|Fantasy
## 4153 Adventure|Fantasy
## 4154 Drama|Romance|War
## 4155 Horror|Sci-Fi
## 4156 Horror|Mystery|Thriller
## 4157 Drama|Romance
## 4158 Drama
## 4159 Drama
## 4160 Crime|Drama
## 4161 Children|Comedy|Fantasy
## 4162 Comedy|Crime|Drama|Musical
## 4163 Drama|Romance
## 4164 Drama
## 4165 Drama|Romance
## 4166 Drama|War
## 4167 Action|Adventure|Animation|Fantasy|Sci-Fi
## 4168 Comedy|Drama
## 4169 Drama
## 4170 Comedy|Crime|Drama|Thriller
## 4171 Comedy|Documentary
## 4172 Comedy|Romance
## 4173 Crime|Drama|Thriller
## 4174 Comedy|Romance
## 4175 Action|Comedy
## 4176 Action|Comedy
## 4177 Action|Adventure|Crime|Drama|Thriller
## 4178 Comedy|Drama
## 4179 Crime|Drama|Mystery|Thriller
## 4180 Drama
## 4181 Comedy|Crime|Drama|Romance
## 4182 Comedy
## 4183 Drama|Romance
## 4184 Comedy|Musical
## 4185 Drama|Romance
## 4186 Comedy
## 4187 Crime|Drama|Romance
## 4188 Comedy|Romance
## 4189 Comedy|Romance
## 4190 Horror|Thriller
## 4191 Drama
## 4192 Documentary
## 4193 Horror|Thriller
## 4194 Drama
## 4195 Action|Crime|Drama
## 4196 Drama
## 4197 Action|Crime|Drama
## 4198 Horror|Thriller
## 4199 Action|Thriller
## 4200 Comedy|Romance
## 4201 Documentary
## 4202 Drama|Horror
## 4203 Drama|Film-Noir
## 4204 Comedy|Crime
## 4205 Drama
## 4206 Action|Sci-Fi|Thriller
## 4207 Crime|Drama|Thriller
## 4208 Comedy
## 4209 Animation|Children|Fantasy
## 4210 Action
## 4211 Comedy|Romance
## 4212 Drama|Mystery|Thriller
## 4213 Comedy
## 4214 Drama|War
## 4215 Adventure|Romance
## 4216 Adventure|Comedy|Musical
## 4217 Comedy
## 4218 Comedy|Documentary
## 4219 Documentary
## 4220 Comedy
## 4221 Comedy|Documentary|Musical
## 4222 Horror|Mystery|Thriller
## 4223 Comedy
## 4224 Comedy|Crime
## 4225 Horror|Thriller
## 4226 Drama|Horror|Thriller
## 4227 Comedy|Sci-Fi
## 4228 Comedy|Romance
## 4229 Action|Adventure|Comedy
## 4230 Action|Crime
## 4231 Animation|Children
## 4232 Drama|Romance
## 4233 Adventure|Drama
## 4234 Romance|Thriller
## 4235 Comedy
## 4236 Adventure|Children
## 4237 Adventure|Children|Drama
## 4238 Drama|Romance
## 4239 Drama|War
## 4240 Comedy
## 4241 Comedy|Musical|Romance
## 4242 Drama|Sci-Fi
## 4243 Action|Crime|Drama|Thriller
## 4244 Action|Drama|War
## 4245 Crime|Drama|Thriller
## 4246 Comedy
## 4247 Romance
## 4248 Comedy|Drama|Thriller
## 4249 Documentary
## 4250 Action|Crime|Drama|Thriller
## 4251 Drama|Mystery
## 4252 Drama|Romance
## 4253 Comedy|Drama|Romance
## 4254 Comedy
## 4255 Comedy
## 4256 Action|Comedy
## 4257 Comedy
## 4258 Action|Drama|Thriller
## 4259 Crime|Drama|Mystery|Thriller
## 4260 Drama
## 4261 Drama
## 4262 Drama
## 4263 Comedy|Drama|Romance
## 4264 Action|Drama|Thriller
## 4265 Drama|Horror|Thriller
## 4266 Drama
## 4267 Comedy|Crime|Drama
## 4268 Drama
## 4269 Comedy|Romance|Thriller
## 4270 Adventure|Children|Drama
## 4271 Drama|Mystery
## 4272 Drama|War
## 4273 Drama
## 4274 Comedy|Drama|Romance
## 4275 Adventure|Children|Sci-Fi
## 4276 Comedy|Drama|Romance
## 4277 Horror|Mystery|Thriller
## 4278 Drama
## 4279 Comedy|Drama|Musical|Romance
## 4280 Drama
## 4281 Comedy
## 4282 Drama|Horror|Sci-Fi|Thriller
## 4283 Animation|Children
## 4284 Comedy|Romance
## 4285 Comedy|Romance
## 4286 Drama|Thriller|War
## 4287 Action|Drama|Sci-Fi|Thriller
## 4288 Comedy
## 4289 Comedy|Drama|Romance
## 4290 Drama|Thriller
## 4291 Comedy|Drama|Romance
## 4292 Documentary
## 4293 Drama|Fantasy
## 4294 Comedy|Drama|Romance
## 4295 Drama|Film-Noir|Mystery|Romance
## 4296 Crime|Drama
## 4297 Action|Crime|Drama|Thriller
## 4298 Drama|Thriller
## 4299 Action|Animation|Sci-Fi|Thriller
## 4300 Drama
## 4301 Comedy|Crime|Drama
## 4302 Comedy
## 4303 Crime|Drama
## 4304 Documentary|IMAX
## 4305 Horror
## 4306 Crime|Drama
## 4307 Action|Adventure|Sci-Fi
## 4308 Comedy
## 4309 Comedy|Musical
## 4310 Adventure|Children|Comedy|Mystery
## 4311 Comedy|Crime
## 4312 Documentary
## 4313 Action|Comedy|Crime
## 4314 Drama|Thriller
## 4315 Sci-Fi
## 4316 Mystery|Sci-Fi
## 4317 Drama|Sci-Fi
## 4318 Documentary
## 4319 Comedy|Crime|Romance
## 4320 Comedy|Drama
## 4321 Comedy
## 4322 Comedy|Crime
## 4323 Comedy
## 4324 Adventure|Children|Comedy|Fantasy|Musical
## 4325 Comedy|Drama
## 4326 Comedy
## 4327 Crime|Thriller
## 4328 Crime|Horror|Mystery|Thriller
## 4329 Comedy|Drama
## 4330 Documentary
## 4331 Drama
## 4332 Crime|Drama
## 4333 Documentary
## 4334 Children|Comedy|Romance
## 4335 Action|Adventure|Sci-Fi|Thriller
## 4336 Drama
## 4337 Crime|Drama|Thriller
## 4338 Drama
## 4339 Crime|Drama|Thriller
## 4340 Children|Comedy
## 4341 Comedy|Drama
## 4342 Drama
## 4343 Comedy|Drama|Romance
## 4344 Comedy|Drama|Romance
## 4345 Comedy|Drama|Musical
## 4346 Drama|Musical
## 4347 Musical
## 4348 Drama|Musical
## 4349 Action|Adventure|Animation|Children|Fantasy|Sci-Fi
## 4350 Comedy|Musical|Romance
## 4351 Comedy|Musical|Romance
## 4352 Action|Adventure|Sci-Fi|Thriller|IMAX
## 4353 Comedy|Romance
## 4354 Documentary
## 4355 Comedy|Drama|Romance
## 4356 Animation|Children
## 4357 Comedy|Drama|Fantasy|Romance
## 4358 Comedy
## 4359 Documentary
## 4360 Comedy|Drama
## 4361 Adventure|Animation|Children|Comedy
## 4362 Action|Crime
## 4363 Horror|Thriller
## 4364 Documentary
## 4365 Drama
## 4366 Action|Crime|Thriller
## 4367 Drama
## 4368 Western
## 4369 Action|Comedy|Crime|Thriller
## 4370 Musical
## 4371 Action|Drama|Horror|Sci-Fi|Thriller
## 4372 Documentary
## 4373 Comedy
## 4374 Adventure|Children
## 4375 Comedy|Romance
## 4376 Comedy|Documentary
## 4377 Comedy
## 4378 Comedy|Western
## 4379 Comedy|Drama
## 4380 Action
## 4381 Drama|War|Western
## 4382 Comedy|Crime|Mystery|Romance
## 4383 Comedy
## 4384 Children|Drama
## 4385 Comedy|War|Western
## 4386 Western
## 4387 Documentary
## 4388 War
## 4389 Drama
## 4390 Drama|Thriller
## 4391 Comedy|Romance
## 4392 Action|Adventure|Drama
## 4393 Drama
## 4394 Drama
## 4395 Documentary
## 4396 Drama
## 4397 Drama
## 4398 Drama|Western
## 4399 Children|Comedy
## 4400 Drama
## 4401 Drama|Romance
## 4402 Mystery|Thriller
## 4403 Drama
## 4404 Comedy|Musical
## 4405 Comedy
## 4406 Musical|Romance
## 4407 Action|Crime|Drama
## 4408 Comedy|Drama|Romance
## 4409 Action|Horror|Sci-Fi
## 4410 Action|Adventure|Comedy|Crime|Thriller
## 4411 Action|Thriller
## 4412 Drama|Romance
## 4413 Drama|Romance
## 4414 Horror
## 4415 Crime|Film-Noir
## 4416 Drama
## 4417 Drama
## 4418 Comedy|Romance
## 4419 Adventure|Romance
## 4420 Comedy
## 4421 Drama|Horror|Mystery|Thriller
## 4422 Comedy
## 4423 Action|Adventure|Sci-Fi
## 4424 Comedy
## 4425 Adventure|Animation|Children|Fantasy
## 4426 Action|Adventure|Sci-Fi
## 4427 Drama|Mystery|Thriller
## 4428 Action|Adventure|Comedy|Fantasy
## 4429 Action|Fantasy|Sci-Fi
## 4430 Comedy|Drama|War
## 4431 Drama|Romance
## 4432 Drama|Fantasy
## 4433 Action|Comedy|Crime|Thriller
## 4434 Comedy|Drama|Romance
## 4435 Action|Comedy|Thriller
## 4436 Comedy|Romance
## 4437 Crime|Drama|Thriller
## 4438 Drama
## 4439 Comedy|Musical
## 4440 Adventure|Children|Comedy|Drama
## 4441 Comedy|Drama
## 4442 Children|Comedy
## 4443 Action|Comedy
## 4444 Comedy|War
## 4445 Comedy|Drama
## 4446 Action|Adventure|Comedy|Romance|Thriller
## 4447 Drama
## 4448 Action|Adventure|Children
## 4449 Comedy|Crime|Drama|War
## 4450 Comedy|Musical
## 4451 Drama
## 4452 Comedy|Crime
## 4453 Comedy|Drama
## 4454 Action|Sci-Fi|Thriller
## 4455 Action|Drama
## 4456 Comedy
## 4457 Comedy
## 4458 Comedy|Drama|Mystery
## 4459 Action|Comedy|Crime|Thriller
## 4460 Action|Sci-Fi
## 4461 Adventure|Comedy|Crime|Thriller
## 4462 Comedy
## 4463 Comedy|Crime|Romance
## 4464 Romance|Thriller
## 4465 Drama
## 4466 Drama
## 4467 Children|Comedy|Fantasy
## 4468 Action|Thriller
## 4469 Comedy|Drama|Romance
## 4470 Action|Sci-Fi
## 4471 Documentary
## 4472 Crime|Drama|Film-Noir
## 4473 Comedy
## 4474 Drama
## 4475 Drama
## 4476 Documentary
## 4477 Comedy|Crime
## 4478 Action|Horror|Thriller
## 4479 Action|Comedy
## 4480 Western
## 4481 Action|Comedy
## 4482 Comedy
## 4483 Comedy|Drama
## 4484 Action|Adventure|Children|Fantasy
## 4485 Adventure|Children|Comedy
## 4486 Comedy
## 4487 Crime|Horror|Mystery|Thriller
## 4488 Horror|Sci-Fi|Thriller
## 4489 Comedy|Romance
## 4490 Comedy|Romance
## 4491 Drama|Thriller
## 4492 Drama
## 4493 Drama|Romance
## 4494 Action|Adventure|Drama|Sci-Fi
## 4495 Comedy|Drama
## 4496 Adventure|Sci-Fi
## 4497 Horror|Sci-Fi
## 4498 Comedy|Romance
## 4499 Comedy|Horror|Sci-Fi
## 4500 Drama|Fantasy|Musical|Romance
## 4501 Comedy|Crime
## 4502 Comedy|Crime
## 4503 Action|Adventure
## 4504 Horror|Romance
## 4505 Comedy|Drama|Fantasy
## 4506 Documentary
## 4507 Drama|Romance
## 4508 Drama
## 4509 Comedy
## 4510 Drama
## 4511 Drama|Sci-Fi
## 4512 Documentary
## 4513 Drama|Romance
## 4514 Action|Comedy|Crime|Fantasy
## 4515 Comedy|Romance
## 4516 Comedy|Drama
## 4517 Comedy|Drama|Romance
## 4518 Drama|Western
## 4519 Documentary
## 4520 Horror|Thriller
## 4521 Comedy|Drama|Musical|Romance
## 4522 Drama
## 4523 Comedy
## 4524 Comedy|Crime|Drama|Thriller
## 4525 Drama
## 4526 Horror|Thriller
## 4527 Comedy|Crime|Drama
## 4528 Action|Adventure|Crime|Thriller
## 4529 Comedy|Drama|Romance
## 4530 Comedy|Drama|Romance
## 4531 Animation|Drama|Romance
## 4532 Horror
## 4533 Comedy
## 4534 Action|Comedy|Crime
## 4535 Action|Adventure|Drama
## 4536 Action|Romance
## 4537 Action
## 4538 Comedy|Crime|Drama
## 4539 Horror|Sci-Fi|Thriller
## 4540 Comedy|Musical|Romance
## 4541 Comedy|Romance|Sci-Fi|Thriller
## 4542 Comedy|Horror
## 4543 Horror|Romance
## 4544 Horror
## 4545 Comedy|Drama|Romance
## 4546 Drama|Thriller
## 4547 Drama
## 4548 Children|Comedy|Drama
## 4549 Action|Fantasy|Horror
## 4550 Comedy|Horror
## 4551 Adventure|Drama
## 4552 Comedy|Crime
## 4553 Action|Adventure|Comedy
## 4554 Comedy|Drama|Romance
## 4555 Drama
## 4556 Comedy
## 4557 Drama|Romance
## 4558 Documentary
## 4559 Animation|Comedy|Fantasy
## 4560 Fantasy|Horror|Sci-Fi|Thriller
## 4561 Documentary
## 4562 Comedy|Drama|Musical|Romance
## 4563 Drama
## 4564 Documentary
## 4565 Comedy|Musical
## 4566 Comedy|Drama
## 4567 Comedy|Musical|Romance|Western
## 4568 Drama
## 4569 Drama|Thriller
## 4570 Comedy|Drama|Romance
## 4571 Drama|Mystery|Romance
## 4572 Drama|Fantasy|Sci-Fi
## 4573 Drama
## 4574 Children|Comedy|Drama
## 4575 Children|Comedy
## 4576 Crime|Drama
## 4577 Crime|Drama
## 4578 Children|Comedy|Crime|Musical
## 4579 Action|Crime
## 4580 Horror|Mystery|Thriller
## 4581 Comedy|Crime
## 4582 Comedy
## 4583 Action|Adventure|War
## 4584 Thriller
## 4585 Drama|Thriller
## 4586 Comedy
## 4587 Action|Comedy|Thriller
## 4588 Action|Comedy
## 4589 Comedy
## 4590 Adventure|Drama
## 4591 Drama|War
## 4592 Drama|Horror|Thriller
## 4593 Comedy
## 4594 Comedy
## 4595 Drama
## 4596 Action|Horror|Sci-Fi
## 4597 Sci-Fi
## 4598 Comedy|Drama|Romance
## 4599 Drama|Fantasy|Musical
## 4600 Comedy|Drama
## 4601 Drama|Romance
## 4602 Crime|Drama
## 4603 Comedy
## 4604 Drama|Musical
## 4605 Action|Adventure|Animation|Fantasy
## 4606 Drama
## 4607 Crime|Drama
## 4608 Crime|Drama|Thriller
## 4609 Comedy|Musical
## 4610 Comedy|Drama
## 4611 Crime|Drama|Mystery|Thriller
## 4612 Crime|Documentary
## 4613 Crime|Drama|Mystery
## 4614 Action|Horror
## 4615 Comedy|Romance
## 4616 Action|Crime|Thriller
## 4617 Drama|Thriller
## 4618 Horror
## 4619 Comedy|Drama
## 4620 Action|Adventure|Sci-Fi
## 4621 Drama|Romance
## 4622 Crime|Drama|Thriller
## 4623 Crime|Drama|Mystery|Romance|Thriller
## 4624 Drama|Romance|War
## 4625 Drama
## 4626 Comedy|Horror
## 4627 Adventure|Animation|Children
## 4628 Drama
## 4629 Action|Comedy|Crime
## 4630 Drama
## 4631 Sci-Fi
## 4632 Adventure|Comedy|Drama|Fantasy|Mystery|Sci-Fi|Thriller
## 4633 Thriller
## 4634 Musical
## 4635 Comedy|Musical|Romance
## 4636 Drama
## 4637 Crime|Thriller
## 4638 Drama|Romance|Thriller
## 4639 Crime|Drama
## 4640 Action|Adventure|Sci-Fi|Thriller|IMAX
## 4641 Documentary
## 4642 Children|Comedy|Fantasy
## 4643 Documentary
## 4644 Drama|Romance
## 4645 Comedy|Drama|Romance
## 4646 Comedy
## 4647 Documentary
## 4648 Action|Animation|Children|Fantasy
## 4649 Adventure|Drama|War
## 4650 Documentary
## 4651 Comedy|Mystery|Sci-Fi
## 4652 Adventure|Thriller|Western
## 4653 Children|Comedy
## 4654 Horror|Thriller
## 4655 Crime|Drama|Mystery|Romance|Thriller
## 4656 Comedy|Crime|Drama|Mystery|Romance
## 4657 Comedy|Crime
## 4658 Children|Comedy|Fantasy|Horror
## 4659 Action|Adventure|Sci-Fi
## 4660 Drama
## 4661 Documentary
## 4662 Documentary
## 4663 Documentary
## 4664 Action|Crime|Fantasy|Sci-Fi|Thriller
## 4665 Horror|Mystery
## 4666 Drama|Sci-Fi
## 4667 Comedy|Romance
## 4668 Drama|Thriller
## 4669 Drama|Romance|Thriller
## 4670 Comedy|Crime
## 4671 Drama|Horror|Thriller
## 4672 Comedy|Drama
## 4673 Drama|Sci-Fi|Thriller
## 4674 Drama
## 4675 Drama|War
## 4676 Drama|Romance
## 4677 Drama
## 4678 Drama
## 4679 Adventure|Drama|Romance
## 4680 Crime|Fantasy|Horror
## 4681 Crime|Drama|Thriller
## 4682 Action|Adventure|Comedy|Crime|Drama
## 4683 Comedy|Drama
## 4684 Comedy|Drama|Romance
## 4685 Action|Comedy
## 4686 Action|Sci-Fi
## 4687 Crime|Drama
## 4688 Drama
## 4689 Comedy|Romance
## 4690 Action|Adventure|Comedy
## 4691 Horror|Mystery|Sci-Fi|Thriller
## 4692 Action|Comedy|Crime|Thriller
## 4693 Comedy
## 4694 Action|Comedy|Crime|Drama|Thriller
## 4695 Drama|Romance
## 4696 Drama
## 4697 Drama|Romance
## 4698 Comedy|Fantasy
## 4699 Drama|Film-Noir|Thriller
## 4700 Comedy|Romance
## 4701 Action|Drama
## 4702 Action|Thriller
## 4703 Crime|Drama|Thriller
## 4704 Comedy|Drama
## 4705 Comedy|Drama|Romance
## 4706 Action|Drama|Horror|Thriller
## 4707 Comedy|Drama|Romance
## 4708 Drama
## 4709 Drama|War
## 4710 Comedy
## 4711 Action|Western
## 4712 Comedy|Crime
## 4713 Drama
## 4714 Action|Crime|Drama|Thriller
## 4715 Drama|Romance|Thriller
## 4716 Comedy|Romance
## 4717 Drama|Romance
## 4718 Comedy|Fantasy
## 4719 Comedy|Drama
## 4720 Drama|Romance
## 4721 Action|Crime|Drama|Thriller
## 4722 Comedy|Crime
## 4723 Crime|Drama|Mystery|Romance|Thriller
## 4724 Children|Fantasy
## 4725 Comedy|Fantasy|Horror|Thriller
## 4726 Action|Crime|Drama
## 4727 Action|Adventure|Comedy|Crime
## 4728 Comedy|Musical|Romance
## 4729 Comedy|Musical|Romance
## 4730 Comedy
## 4731 Drama
## 4732 Comedy|Musical|Romance
## 4733 Drama
## 4734 Comedy|Musical|Romance
## 4735 Action|Crime|Drama
## 4736 Comedy|Fantasy|Romance
## 4737 Comedy
## 4738 Children|Drama
## 4739 Drama|Musical
## 4740 Drama|Romance
## 4741 Drama
## 4742 Adventure|Drama
## 4743 Drama|Fantasy
## 4744 Drama|War
## 4745 Comedy|Drama|Fantasy|Romance
## 4746 Drama
## 4747 Action|Adventure|Western
## 4748 Drama
## 4749 Action|Drama|Romance|Western
## 4750 Comedy|Crime|Mystery
## 4751 Comedy
## 4752 Adventure|Comedy|Musical
## 4753 Action|Crime|Drama|Thriller
## 4754 Drama
## 4755 Drama
## 4756 Drama|Musical|Romance
## 4757 Comedy|Romance
## 4758 Drama
## 4759 Comedy|Romance
## 4760 Comedy|Romance
## 4761 Comedy|Drama
## 4762 Adventure|Drama
## 4763 Drama|Romance
## 4764 Comedy|Drama
## 4765 Action|Adventure|Drama
## 4766 Comedy
## 4767 Drama|Romance
## 4768 Comedy
## 4769 Documentary
## 4770 Adventure|Animation|Drama|Fantasy|Sci-Fi
## 4771 Comedy|Romance
## 4772 Comedy|Crime|Drama
## 4773 Comedy
## 4774 Comedy|War
## 4775 Comedy|Thriller
## 4776 Action|Crime|Drama
## 4777 Drama|Romance
## 4778 Drama|Horror|Thriller
## 4779 Horror|Mystery|Thriller
## 4780 Horror|Mystery|Thriller
## 4781 Comedy|Horror
## 4782 Animation|Drama|Sci-Fi|War
## 4783 Comedy|Romance
## 4784 Comedy|Drama|War
## 4785 Drama|Fantasy|Mystery|Sci-Fi
## 4786 Documentary
## 4787 Drama
## 4788 Action|Drama|Thriller
## 4789 Drama
## 4790 Comedy|Musical|Romance
## 4791 Drama|Thriller
## 4792 Comedy|Drama|Romance
## 4793 Drama|Romance
## 4794 Documentary
## 4795 Drama|Romance
## 4796 Action|Adventure|Drama|War
## 4797 Drama|Fantasy|Romance
## 4798 Comedy|Drama|Romance
## 4799 Comedy
## 4800 Drama|Romance
## 4801 Action|Adventure|Drama|Fantasy
## 4802 Drama|Romance
## 4803 Comedy
## 4804 Documentary|War
## 4805 Drama
## 4806 Crime|Drama
## 4807 Children|Comedy
## 4808 Drama|Romance|War
## 4809 Action|Sci-Fi|Thriller
## 4810 Action|Adventure|Children|Fantasy
## 4811 Drama|Musical
## 4812 Drama
## 4813 Comedy|Romance
## 4814 Documentary
## 4815 Comedy|Romance
## 4816 Action|Crime
## 4817 Drama
## 4818 Drama
## 4819 Drama
## 4820 Drama|Romance
## 4821 Drama
## 4822 Drama|Romance
## 4823 Drama
## 4824 Comedy
## 4825 Action
## 4826 Action|Comedy
## 4827 Horror
## 4828 Adventure
## 4829 Comedy
## 4830 Drama|Horror
## 4831 Comedy
## 4832 Comedy|Romance
## 4833 Comedy|Romance
## 4834 Adventure|Drama|Romance|Thriller|War
## 4835 Crime|Drama|Film-Noir|Thriller
## 4836 Crime|Drama|Film-Noir|Romance|Thriller
## 4837 Drama|Western
## 4838 Drama
## 4839 Comedy|Drama
## 4840 Drama|Film-Noir|Mystery
## 4841 Documentary
## 4842 Animation|Comedy|Fantasy
## 4843 Drama
## 4844 Action|Comedy|Crime|Drama|Horror|Thriller
## 4845 Sci-Fi
## 4846 Drama|War
## 4847 Drama
## 4848 Horror|Thriller
## 4849 Adventure|Children|Comedy|Fantasy|Musical
## 4850 Action|Adventure|Drama|War
## 4851 Drama
## 4852 Drama|Sci-Fi|Thriller
## 4853 Comedy|Romance
## 4854 Adventure|Documentary
## 4855 Comedy|Crime|Thriller
## 4856 Comedy|Crime
## 4857 Drama|Musical
## 4858 Comedy|Drama|Romance
## 4859 Comedy
## 4860 Action|Adventure|Children|Comedy|Crime
## 4861 Drama
## 4862 Comedy|Romance
## 4863 Drama
## 4864 Comedy|Horror|Sci-Fi
## 4865 Comedy|Horror|Thriller
## 4866 Drama
## 4867 Comedy|War
## 4868 Comedy|Romance
## 4869 Comedy
## 4870 Comedy|Drama
## 4871 Drama
## 4872 Drama
## 4873 Action|Adventure|Fantasy
## 4874 Drama|War
## 4875 Animation|Comedy|Fantasy|Musical
## 4876 Crime|Drama|Mystery|Thriller
## 4877 Comedy|Crime|Mystery
## 4878 Action|Adventure|Drama|War
## 4879 Adventure|Comedy
## 4880 Action
## 4881 Drama|Romance
## 4882 Comedy|Drama
## 4883 Comedy|Drama
## 4884 Comedy
## 4885 Adventure|Comedy
## 4886 Drama
## 4887 Comedy|Horror
## 4888 Romance
## 4889 Thriller
## 4890 Comedy|Drama
## 4891 Adventure|Drama
## 4892 Action|Comedy|Crime|Thriller
## 4893 Crime|Drama
## 4894 Drama
## 4895 Drama
## 4896 Crime|Drama|Thriller
## 4897 Film-Noir
## 4898 Drama|War
## 4899 Comedy
## 4900 Comedy|Crime
## 4901 Action|Adventure|Children|Comedy
## 4902 Comedy|Romance
## 4903 Mystery|Thriller
## 4904 Thriller
## 4905 Drama
## 4906 Comedy|Drama|Romance
## 4907 Comedy|Drama|Romance
## 4908 Drama|Romance
## 4909 Action|Drama|Horror|Thriller
## 4910 Drama|Romance|Sci-Fi
## 4911 Crime|Drama|Thriller
## 4912 Comedy|Crime|Drama
## 4913 Comedy|Drama|Romance
## 4914 Comedy|Crime
## 4915 Crime|Drama|Thriller
## 4916 Action|Adventure|Children|Comedy|Mystery
## 4917 Drama|Mystery|Thriller
## 4918 Drama
## 4919 Action|Adventure|Fantasy|Horror
## 4920 Comedy|Romance
## 4921 Action
## 4922 Crime|Drama
## 4923 Drama|War|Western
## 4924 Comedy|Fantasy|Romance
## 4925 Action|Comedy|Crime
## 4926 Drama|Mystery|Thriller
## 4927 Adventure|Drama
## 4928 Action|Drama|Horror
## 4929 Drama|Musical
## 4930 Action|Adventure|Comedy
## 4931 Comedy|Drama
## 4932 Drama
## 4933 Comedy|Horror
## 4934 Comedy|Drama
## 4935 Comedy|Thriller
## 4936 Action|Drama|Thriller
## 4937 Action|Crime|Thriller
## 4938 Documentary
## 4939 Documentary
## 4940 Comedy|Fantasy|Romance
## 4941 Action|Crime|Drama|Mystery|Thriller
## 4942 Comedy
## 4943 Drama|Horror|Thriller
## 4944 Comedy|Romance
## 4945 Comedy
## 4946 Action|Adventure|Fantasy|Horror
## 4947 Drama
## 4948 Comedy|Romance
## 4949 Action|Adventure|Drama|War
## 4950 Crime|Drama
## 4951 Comedy|Drama
## 4952 Horror|Thriller
## 4953 Drama
## 4954 Adventure|Drama|Sci-Fi
## 4955 Action|Crime
## 4956 Drama|Romance
## 4957 Drama
## 4958 Drama|Horror
## 4959 Drama
## 4960 Comedy|Romance
## 4961 Drama|Thriller|War
## 4962 Fantasy|Horror|Thriller
## 4963 Action|Crime
## 4964 Horror
## 4965 Documentary
## 4966 Action|Adventure|Sci-Fi|Thriller
## 4967 Action|Adventure|Thriller
## 4968 Drama
## 4969 Action|Adventure|Thriller
## 4970 Comedy|Drama|Romance
## 4971 Drama
## 4972 Comedy|Romance
## 4973 Crime|Drama|Thriller
## 4974 Musical|Romance|Western
## 4975 Drama
## 4976 Mystery|Thriller
## 4977 Drama
## 4978 Drama
## 4979 Comedy|Drama
## 4980 Drama
## 4981 Horror|Thriller
## 4982 Horror|Mystery|Thriller
## 4983 Comedy
## 4984 Adventure|Sci-Fi
## 4985 Horror
## 4986 Action|Comedy|Fantasy|Horror
## 4987 Drama|Romance
## 4988 Drama|Thriller
## 4989 Action|Adventure|Drama|Thriller
## 4990 Comedy|Romance
## 4991 Drama
## 4992 Action
## 4993 Comedy|Romance
## 4994 Comedy|Musical
## 4995 Comedy|Drama|Romance
## 4996 Comedy|Fantasy
## 4997 Drama|Horror|Romance|Thriller
## 4998 Drama|Musical|Romance
## 4999 Comedy
## 5000 Action|Adventure|Comedy|Romance
## 5001 Comedy
## 5002 Crime|Drama|Film-Noir|Thriller
## 5003 Comedy|Drama
## 5004 Drama|Horror
## 5005 Adventure|Children|Sci-Fi
## 5006 Drama
## 5007 Crime|Drama
## 5008 Drama
## 5009 Drama
## 5010 Action|Drama|War
## 5011 Action|Adventure|Fantasy
## 5012 Drama|Thriller
## 5013 Action|Drama|Thriller|War
## 5014 Drama
## 5015 Film-Noir|Thriller
## 5016 Drama
## 5017 Comedy
## 5018 Action|Drama
## 5019 Documentary
## 5020 Drama
## 5021 Thriller
## 5022 Action|Adventure|Crime|Thriller
## 5023 Adventure|Sci-Fi
## 5024 Drama|Sci-Fi
## 5025 Drama|Sci-Fi
## 5026 Comedy|Musical
## 5027 Crime|Drama
## 5028 Adventure|Drama|Romance
## 5029 Comedy|Romance|Thriller
## 5030 Comedy|Crime|Drama|Mystery|Romance
## 5031 Comedy|Crime|Mystery
## 5032 Comedy|Crime|Mystery
## 5033 Comedy|Crime|Mystery|Romance
## 5034 Comedy|Crime|Drama|Musical|Mystery|Romance
## 5035 Comedy
## 5036 Adventure|Comedy|War
## 5037 Fantasy|Sci-Fi
## 5038 Drama|Fantasy|Sci-Fi
## 5039 Comedy
## 5040 Action|Comedy
## 5041 Comedy|Horror|Sci-Fi
## 5042 Comedy|Horror|Sci-Fi
## 5043 Comedy
## 5044 Horror
## 5045 Drama|Horror
## 5046 Comedy
## 5047 Comedy|Musical
## 5048 Western
## 5049 Drama|Horror|Sci-Fi
## 5050 Action|Western
## 5051 Crime|Drama|Thriller
## 5052 Adventure|Drama|Western
## 5053 Action
## 5054 Drama|Horror|Sci-Fi
## 5055 Comedy
## 5056 Comedy|Crime
## 5057 Drama|Film-Noir|Thriller
## 5058 Action|Adventure
## 5059 Crime|Drama|Film-Noir|Thriller
## 5060 Horror|Mystery|Thriller
## 5061 Documentary
## 5062 Comedy
## 5063 Drama|War
## 5064 Drama
## 5065 Drama
## 5066 Drama
## 5067 Drama
## 5068 Crime|Film-Noir
## 5069 Drama|Thriller
## 5070 Fantasy|Horror
## 5071 Drama
## 5072 Documentary|Musical
## 5073 Action|Drama|War
## 5074 Crime|Drama|Thriller
## 5075 Drama|Horror|Mystery|Thriller
## 5076 Comedy
## 5077 Horror|Sci-Fi
## 5078 Sci-Fi
## 5079 Horror
## 5080 Comedy|Sci-Fi
## 5081 Action|Sci-Fi
## 5082 Comedy|Horror
## 5083 Fantasy|Musical|Romance
## 5084 Drama
## 5085 Documentary
## 5086 Comedy|Drama
## 5087 Drama
## 5088 Adventure|Animation|Children|Fantasy
## 5089 Action|Crime|Drama|Thriller
## 5090 Drama|Horror|Mystery|Thriller
## 5091 Comedy|Drama|Romance
## 5092 Drama
## 5093 Comedy|Crime|Romance
## 5094 Crime|Horror|Thriller
## 5095 Crime|Drama
## 5096 Comedy|Drama
## 5097 Crime|Drama|Film-Noir
## 5098 Action|Drama|War
## 5099 Drama
## 5100 Drama|Horror|Sci-Fi
## 5101 Action|Drama|Romance|Thriller
## 5102 Drama|Thriller|Western
## 5103 Action|Comedy
## 5104 Action|Adventure|Thriller|War
## 5105 Drama
## 5106 Comedy
## 5107 Drama|Romance
## 5108 Drama
## 5109 Drama
## 5110 Comedy|Romance
## 5111 Action|Drama
## 5112 Crime|Horror|Sci-Fi
## 5113 Horror|Sci-Fi
## 5114 Horror|Sci-Fi
## 5115 Action|Crime
## 5116 Drama
## 5117 Drama|Sci-Fi
## 5118 Drama
## 5119 Drama
## 5120 Animation|Fantasy|Thriller
## 5121 Crime|Drama
## 5122 Action|Adventure|Romance
## 5123 Children|Comedy|Fantasy|Sci-Fi
## 5124 Comedy|Drama
## 5125 Drama
## 5126 Comedy
## 5127 Comedy|Drama|War
## 5128 Drama
## 5129 Drama|Mystery|Romance
## 5130 Comedy|Horror
## 5131 Drama|Romance|War
## 5132 Drama|Thriller
## 5133 Crime|Thriller
## 5134 Horror
## 5135 Mystery
## 5136 Comedy|Drama
## 5137 Action|Comedy|Romance
## 5138 Drama|Film-Noir
## 5139 Comedy|Crime
## 5140 Comedy|Drama
## 5141 Action|Comedy|Thriller
## 5142 Action|Adventure|Animation|Comedy|Crime|Mystery
## 5143 Comedy|Drama|Fantasy|Romance
## 5144 Drama
## 5145 Documentary
## 5146 Drama|Musical
## 5147 Action|Thriller
## 5148 Comedy|Drama|Romance
## 5149 Comedy
## 5150 Action|Crime
## 5151 Comedy|Drama
## 5152 Comedy|Drama|Romance
## 5153 Drama|Romance
## 5154 Comedy
## 5155 Drama
## 5156 Comedy|Romance
## 5157 Drama|War
## 5158 Drama
## 5159 Drama|Thriller
## 5160 Adventure|Crime|Drama
## 5161 Adventure|Animation|Children|Comedy|Musical|Romance
## 5162 Action|Adventure|Drama|Sci-Fi|Thriller
## 5163 Comedy|Drama|Romance
## 5164 Comedy
## 5165 Drama
## 5166 Comedy|Drama
## 5167 Adventure|Fantasy|IMAX
## 5168 Action|Crime|Horror|Mystery|Thriller
## 5169 Action|Comedy|Crime|Drama
## 5170 Action|Sci-Fi|Thriller
## 5171 Animation|Children|Comedy
## 5172 Comedy|Fantasy|Thriller
## 5173 Documentary
## 5174 Comedy
## 5175 Drama
## 5176 Drama
## 5177 Comedy
## 5178 Comedy
## 5179 Comedy|Romance
## 5180 Comedy|Romance
## 5181 Comedy|Crime
## 5182 Comedy|Drama
## 5183 Comedy|Romance
## 5184 Drama|Horror
## 5185 Crime|Drama|Film-Noir
## 5186 Drama|Romance
## 5187 Comedy
## 5188 Animation|Comedy|Drama|Fantasy|Sci-Fi
## 5189 Comedy|Sci-Fi
## 5190 Action|Drama|Romance|War
## 5191 Sci-Fi
## 5192 Adventure|Romance
## 5193 Drama
## 5194 Comedy|Drama|Fantasy
## 5195 Crime|Drama|Thriller
## 5196 Drama
## 5197 Drama|Romance
## 5198 Drama|War
## 5199 Drama
## 5200 Drama
## 5201 Comedy|Documentary|Drama
## 5202 Crime|Drama|Film-Noir|Romance
## 5203 Romance|Sci-Fi
## 5204 Action|Adventure|Drama|Romance|Thriller|Western
## 5205 Drama|Fantasy|Horror
## 5206 Drama|War
## 5207 Children|Comedy|Musical
## 5208 Crime|Drama|Film-Noir
## 5209 Drama|Fantasy
## 5210 Action|Drama|War
## 5211 Drama
## 5212 Crime|Drama
## 5213 Action|Horror|Sci-Fi
## 5214 Action|Thriller
## 5215 Drama|Musical|Romance
## 5216 Mystery|Thriller
## 5217 Crime|Drama|Horror
## 5218 Comedy
## 5219 Comedy
## 5220 Drama
## 5221 Drama|Horror
## 5222 Adventure|Children|Comedy
## 5223 Comedy
## 5224 Comedy|Drama|Romance
## 5225 Drama|Romance
## 5226 Action|Comedy|Crime
## 5227 Drama
## 5228 Drama|Romance
## 5229 Adventure|Children|Drama
## 5230 Drama|Musical
## 5231 Comedy|Musical
## 5232 Comedy|Drama
## 5233 Animation|Children|Comedy|Musical
## 5234 Comedy|Drama
## 5235 Documentary
## 5236 Action|Comedy|Horror|Sci-Fi
## 5237 Adventure|Comedy|Fantasy|Musical
## 5238 Documentary|Drama
## 5239 Documentary|War
## 5240 Documentary
## 5241 Drama|Mystery|Romance|Thriller
## 5242 Adventure|Drama|Sci-Fi
## 5243 Action|Crime|Drama|Thriller
## 5244 Comedy|Crime
## 5245 Crime|Drama|Film-Noir|Thriller
## 5246 Comedy|Drama
## 5247 Action|Comedy
## 5248 Action|Comedy
## 5249 Adventure|Animation|Drama
## 5250 Comedy
## 5251 Comedy|Fantasy
## 5252 Comedy
## 5253 Comedy|Romance
## 5254 Drama
## 5255 Comedy|Drama|Fantasy|Mystery
## 5256 Documentary
## 5257 Comedy|Romance
## 5258 Horror|Sci-Fi
## 5259 Comedy
## 5260 Action|Adventure|Comedy|Sci-Fi
## 5261 Action|Adventure|Sci-Fi|IMAX
## 5262 Drama|Romance
## 5263 Action|Adventure|Drama|War
## 5264 Comedy
## 5265 Comedy|Romance
## 5266 Action|Adventure|Sci-Fi|Thriller
## 5267 Crime|Drama
## 5268 Drama
## 5269 Crime|Drama
## 5270 Action|Crime|Thriller
## 5271 Action|Crime|Fantasy
## 5272 Drama|Romance
## 5273 Crime|Horror|Mystery|Thriller
## 5274 Action|Sci-Fi
## 5275 Adventure|Drama
## 5276 Comedy|Drama
## 5277 Comedy|Drama|Sci-Fi|War
## 5278 Comedy
## 5279 Comedy
## 5280 Comedy|Romance
## 5281 Adventure|Children|Fantasy|Musical
## 5282 Drama|Musical
## 5283 Drama
## 5284 Comedy
## 5285 Drama|War
## 5286 Drama
## 5287 Action|Drama|War
## 5288 Comedy|Drama|Musical|Romance
## 5289 Adventure|Fantasy|Sci-Fi
## 5290 Comedy
## 5291 Documentary
## 5292 Drama
## 5293 Documentary
## 5294 Crime|Film-Noir|Thriller
## 5295 Crime|Mystery|Thriller
## 5296 Drama|Thriller
## 5297 Crime|Mystery|Thriller
## 5298 Mystery
## 5299 Crime|Mystery
## 5300 Thriller
## 5301 Action|Adventure|Fantasy|Sci-Fi
## 5302 Drama|Mystery|Thriller
## 5303 Comedy|Drama|Romance
## 5304 Action|Adventure|Drama|War
## 5305 Comedy|Musical
## 5306 Action|Crime|Drama|Thriller
## 5307 Comedy|Romance
## 5308 Romance|Sci-Fi
## 5309 Drama
## 5310 Adventure|Comedy
## 5311 Comedy|Romance
## 5312 Comedy|Romance
## 5313 Action|Horror|Sci-Fi|Thriller
## 5314 Drama
## 5315 Comedy
## 5316 Horror|Thriller
## 5317 Comedy|Documentary
## 5318 Adventure|Drama|Horror|Sci-Fi|Thriller
## 5319 Crime|Thriller
## 5320 Action|Adventure|Drama
## 5321 Drama|Romance
## 5322 Drama|Thriller
## 5323 Drama|Romance|Thriller
## 5324 Drama|Romance
## 5325 Drama
## 5326 Drama
## 5327 Drama
## 5328 Action|Crime|Drama|Mystery|Thriller
## 5329 Action|Horror|Sci-Fi|Thriller
## 5330 Comedy|Drama
## 5331 Action|Adventure|Sci-Fi
## 5332 Comedy|Romance
## 5333 Comedy|Romance
## 5334 Drama|Mystery|Sci-Fi|Thriller
## 5335 Adventure|Drama
## 5336 Comedy|Horror
## 5337 Drama
## 5338 Crime|Mystery|Thriller
## 5339 Drama
## 5340 Action|Drama|Horror|Thriller
## 5341 Adventure|Drama
## 5342 Horror
## 5343 Animation|Children|Comedy
## 5344 Action|Drama|Thriller
## 5345 Comedy
## 5346 Romance
## 5347 Action|Comedy
## 5348 Drama|Sci-Fi
## 5349 Drama
## 5350 Comedy|Romance
## 5351 Action|Adventure|Animation|Comedy
## 5352 Comedy|Crime|Drama
## 5353 Comedy|Drama|Fantasy|Romance
## 5354 Drama
## 5355 Drama|Romance
## 5356 Comedy|Horror
## 5357 Comedy|Drama
## 5358 Animation|Children|Comedy
## 5359 Action|Drama
## 5360 Documentary
## 5361 Sci-Fi|Thriller
## 5362 Comedy|Drama
## 5363 Comedy
## 5364 Horror|Mystery|Thriller
## 5365 Comedy|Drama|Romance
## 5366 Comedy|Drama|Romance
## 5367 Drama|Mystery|Thriller
## 5368 Drama
## 5369 Drama
## 5370 Documentary
## 5371 Crime|Drama|Thriller
## 5372 Horror|Mystery|Thriller
## 5373 Drama
## 5374 Drama|Mystery
## 5375 Action|Adventure|Animation|Children|Comedy
## 5376 Drama
## 5377 Adventure|Animation|Children|Fantasy|IMAX
## 5378 Drama
## 5379 Comedy|Horror
## 5380 Action|Adventure|Comedy|Crime|Thriller
## 5381 Comedy|Drama|Romance
## 5382 Drama
## 5383 Action|Adventure|Drama|Mystery|Thriller
## 5384 Drama|Thriller
## 5385 Adventure|Animation|Children|Comedy
## 5386 Action|Adventure|Drama|War
## 5387 Children|Comedy
## 5388 Documentary
## 5389 Drama|Romance
## 5390 Drama
## 5391 Action|Drama|Romance
## 5392 Action|Comedy|Crime|Thriller
## 5393 Action|Fantasy|Horror|Thriller
## 5394 Documentary
## 5395 Comedy|Musical
## 5396 Documentary
## 5397 Adventure|Children|Sci-Fi
## 5398 Drama|Mystery|Sci-Fi
## 5399 Horror|Sci-Fi
## 5400 Drama|Romance
## 5401 Documentary|War
## 5402 Drama|Horror
## 5403 Comedy|Fantasy|Romance
## 5404 Comedy
## 5405 Drama
## 5406 Drama|Musical|Romance
## 5407 Comedy|Romance
## 5408 Fantasy
## 5409 Crime|Drama
## 5410 Comedy
## 5411 Crime|Drama
## 5412 Comedy|Drama|Romance
## 5413 Musical
## 5414 Comedy|Drama|Romance
## 5415 Drama|Film-Noir
## 5416 Comedy|Romance
## 5417 Comedy|Romance
## 5418 Drama|Romance
## 5419 Adventure|Drama
## 5420 Drama
## 5421 Comedy|Drama|Romance
## 5422 Crime|Drama|Thriller
## 5423 Drama|Romance
## 5424 Drama|Film-Noir
## 5425 Comedy|Fantasy|Romance
## 5426 Drama|Romance
## 5427 Comedy|Drama
## 5428 Drama
## 5429 Comedy|Romance
## 5430 Drama|Romance
## 5431 Drama
## 5432 Drama|Film-Noir|Thriller
## 5433 Musical|Romance
## 5434 Drama|Film-Noir|Mystery
## 5435 Action|Adventure|Drama|Romance
## 5436 Comedy
## 5437 Comedy|Drama
## 5438 Comedy|Musical|Romance|Western
## 5439 Action|Adventure|Romance
## 5440 Crime|Drama
## 5441 Drama|Musical
## 5442 Drama
## 5443 Crime|Drama|Mystery|Thriller
## 5444 Crime|Documentary|War
## 5445 Comedy|Romance
## 5446 Drama|War
## 5447 Crime|Drama
## 5448 Drama
## 5449 Drama|War
## 5450 Drama
## 5451 Drama
## 5452 Children|Comedy|Musical|Romance
## 5453 Adventure|Drama|Romance
## 5454 Comedy|Drama|War
## 5455 Horror|Thriller
## 5456 Drama|Horror|War
## 5457 Sci-Fi
## 5458 Drama|War
## 5459 Animation|Children|Comedy
## 5460 Adventure|War|Western
## 5461 Comedy|Drama|Romance
## 5462 Drama|War
## 5463 Crime|Drama
## 5464 Action|Adventure|Comedy
## 5465 Comedy|Drama|War
## 5466 Action|Crime|Drama
## 5467 Action|Crime|Drama
## 5468 Comedy
## 5469 Action|Crime|Drama|Thriller
## 5470 Documentary|Drama
## 5471 Action|Adventure|Animation|Children|Comedy
## 5472 Action|Adventure|Comedy|Crime|Thriller
## 5473 Documentary|Musical
## 5474 Children|Comedy
## 5475 Comedy|Romance
## 5476 Crime|Drama|Thriller
## 5477 Action|Adventure|Comedy|Drama|Romance|War
## 5478 Drama|Romance
## 5479 Action|Mystery|Thriller
## 5480 Comedy|Western
## 5481 Fantasy|Western
## 5482 Adventure|Comedy|Horror|Romance
## 5483 Crime|Drama|Thriller
## 5484 Comedy|Sci-Fi|Thriller
## 5485 Horror|Thriller
## 5486 Drama|Romance
## 5487 Comedy|Drama
## 5488 Drama|Romance
## 5489 Action|Crime|Drama
## 5490 Drama
## 5491 Action|Adventure|Animation|Children|Comedy|Fantasy
## 5492 Action|Crime|Drama|Thriller
## 5493 Comedy|Drama|Romance
## 5494 Drama
## 5495 Horror|Thriller
## 5496 Drama|War
## 5497 Sci-Fi|Thriller
## 5498 Documentary
## 5499 Action|Comedy|Crime
## 5500 Comedy|Thriller
## 5501 Drama|Musical|Romance
## 5502 Drama|Romance
## 5503 Action
## 5504 Action|Drama
## 5505 Horror|Sci-Fi
## 5506 Action|Comedy
## 5507 Comedy|Drama|Musical
## 5508 Comedy|Horror|Romance
## 5509 Adventure|Comedy|Sci-Fi
## 5510 Drama|Mystery
## 5511 Action|Crime|Drama
## 5512 Drama|Sci-Fi
## 5513 Comedy|Documentary
## 5514 Adventure|Drama
## 5515 Fantasy|Horror|Sci-Fi|Thriller
## 5516 Drama
## 5517 Action|Adventure|Children|Crime|Mystery|Thriller
## 5518 Adventure|Children|Fantasy|Sci-Fi
## 5519 Horror|Thriller
## 5520 Documentary
## 5521 Comedy|Drama
## 5522 Children|Drama
## 5523 Drama
## 5524 Adventure|Children|Fantasy|Sci-Fi
## 5525 Action|Comedy|Crime|Thriller
## 5526 Drama|Mystery|Sci-Fi
## 5527 Comedy
## 5528 Drama
## 5529 Drama|Musical
## 5530 Comedy
## 5531 Drama
## 5532 Crime|Drama|Thriller
## 5533 Crime|Drama|Romance
## 5534 Action|Adventure|Animation|Children|Fantasy|Sci-Fi
## 5535 Action|Comedy|Sci-Fi
## 5536 Comedy|Drama|Romance
## 5537 Fantasy|Horror|Sci-Fi|Thriller
## 5538 Action|Fantasy|Horror|Romance
## 5539 Crime|Drama|Thriller
## 5540 Action|Adventure|Drama|Mystery|Thriller
## 5541 Drama
## 5542 Comedy|Horror|Sci-Fi
## 5543 Musical
## 5544 Animation|Fantasy|Mystery
## 5545 Comedy
## 5546 Adventure|Drama|Western
## 5547 Adventure|Animation|Children|Drama|Fantasy
## 5548 Comedy
## 5549 Comedy|Musical|Romance
## 5550 Action|Drama|War
## 5551 Comedy|Fantasy
## 5552 Drama|Fantasy|Horror|Mystery|Thriller
## 5553 Drama
## 5554 Drama
## 5555 Action
## 5556 Comedy|Crime
## 5557 Action|Animation|Crime|Drama|Film-Noir|Mystery|Sci-Fi|Thriller
## 5558 Crime|Drama|Thriller
## 5559 Documentary
## 5560 Drama|Romance
## 5561 Drama|Horror
## 5562 Comedy
## 5563 Documentary
## 5564 Comedy
## 5565 Action|Crime|Thriller
## 5566 Comedy|Fantasy|Romance
## 5567 Animation|Drama
## 5568 Comedy|Drama|Romance
## 5569 Adventure|Drama|Western
## 5570 Crime|Drama|Mystery|Romance|Thriller
## 5571 Action|Fantasy|Sci-Fi|Thriller|War
## 5572 Action|Comedy|Romance
## 5573 Adventure|Animation|Comedy|Fantasy|Romance
## 5574 Drama
## 5575 Comedy
## 5576 Drama|Musical
## 5577 Drama|Romance|Thriller|War
## 5578 Action|Adventure|Children|Comedy
## 5579 Drama|Romance
## 5580 Documentary
## 5581 Drama
## 5582 Drama
## 5583 Action|Sci-Fi
## 5584 Action|Children|Comedy
## 5585 Comedy|Drama
## 5586 Action|Comedy|Crime|Drama
## 5587 Adventure|Drama|Fantasy|Horror|Sci-Fi
## 5588 Action|Crime|Horror
## 5589 Comedy|Sci-Fi
## 5590 Action|Drama
## 5591 Comedy
## 5592 Comedy|Romance
## 5593 Crime|Film-Noir|Mystery|Thriller
## 5594 Drama|Fantasy|Horror|Mystery|Sci-Fi|Thriller
## 5595 Comedy|Drama
## 5596 Adventure|Western
## 5597 Animation|Drama|Romance
## 5598 Action|Animation
## 5599 Comedy|Drama|Romance
## 5600 Comedy
## 5601 Crime|Thriller
## 5602 Romance
## 5603 Drama|Thriller
## 5604 Drama
## 5605 Action|Sci-Fi
## 5606 Adventure|Animation|Children|Musical|Romance
## 5607 Action|Documentary|Drama|Thriller
## 5608 Action|Horror|Sci-Fi
## 5609 Drama
## 5610 Comedy|Crime|Horror
## 5611 Drama|Romance
## 5612 Action|Crime|Thriller
## 5613 Action|Adventure|Comedy|Sci-Fi|Thriller
## 5614 Action|Adventure|Drama|Fantasy|Romance
## 5615 Sci-Fi
## 5616 Children|Comedy|Fantasy
## 5617 Fantasy|Western
## 5618 Drama|Thriller
## 5619 Action|Crime|Fantasy
## 5620 Horror
## 5621 Action|Adventure|Animation|Children|Fantasy|Sci-Fi
## 5622 Action|Animation|Drama|Fantasy|Sci-Fi
## 5623 Documentary
## 5624 Comedy|Romance
## 5625 Adventure|Animation|Children|Fantasy
## 5626 Action|Comedy
## 5627 Drama|Romance
## 5628 Adventure|Comedy|Fantasy
## 5629 Drama
## 5630 Drama|Fantasy|Romance|Sci-Fi
## 5631 Comedy|Drama
## 5632 Action|Animation|Crime|Sci-Fi|Thriller
## 5633 Drama|Horror|Mystery|Romance|Thriller
## 5634 Comedy|Drama|Fantasy
## 5635 Action|Comedy|Crime|Fantasy|Thriller
## 5636 Documentary
## 5637 Adventure|Comedy|Fantasy
## 5638 Animation|Comedy
## 5639 Comedy
## 5640 Drama
## 5641 Crime|Drama|Mystery|Thriller|War
## 5642 Drama|Thriller
## 5643 Comedy|Drama|Romance
## 5644 Comedy|Drama|Romance|Sci-Fi
## 5645 Action|Comedy|Thriller
## 5646 Horror|Mystery
## 5647 Action|Animation|Horror
## 5648 Adventure|Western
## 5649 Comedy|Crime|Horror|Mystery|Thriller
## 5650 Comedy
## 5651 Action|Crime|Thriller
## 5652 Horror|Mystery|Sci-Fi
## 5653 Horror|Mystery|Thriller
## 5654 Drama
## 5655 Comedy|Romance
## 5656 Comedy|Fantasy|Mystery|Sci-Fi
## 5657 Comedy|Romance
## 5658 Comedy|Crime|Drama|Sci-Fi|Thriller
## 5659 Comedy
## 5660 Comedy|Horror|Musical
## 5661 Comedy|Horror|Mystery|Thriller
## 5662 Crime|Drama
## 5663 Action|Comedy|Horror|Musical
## 5664 Horror|Mystery|Thriller
## 5665 Drama|Sci-Fi|War
## 5666 Action|Adventure|Drama|Sci-Fi|Thriller
## 5667 Adventure|Animation|Children|Comedy
## 5668 Drama|Romance
## 5669 Comedy|Drama|Romance
## 5670 Action|Animation|Drama|Sci-Fi
## 5671 Drama
## 5672 Horror
## 5673 Comedy|Crime|Drama|Mystery|Thriller
## 5674 Action|Comedy|Horror|Sci-Fi|Thriller|Western
## 5675 Comedy
## 5676 Action|Crime|Thriller
## 5677 Action|Comedy|Drama|War
## 5678 Action|Comedy|Drama
## 5679 Action|Drama|Thriller|War
## 5680 Action|Drama|Thriller
## 5681 Adventure|Children|Comedy|Fantasy
## 5682 Action|Adventure|Drama|Romance
## 5683 Comedy|Crime|Drama|Romance
## 5684 Drama|Mystery|Romance|War
## 5685 Drama|Romance
## 5686 Action|Animation|Drama|Sci-Fi|Thriller
## 5687 Adventure|Animation|Children|Fantasy
## 5688 Drama|Romance
## 5689 Drama|Romance
## 5690 Horror|Thriller
## 5691 Drama|Horror|Mystery|Thriller
## 5692 Comedy
## 5693 Drama
## 5694 Drama
## 5695 Horror
## 5696 Mystery|Thriller
## 5697 Drama
## 5698 Fantasy|Horror
## 5699 Horror|Mystery
## 5700 Drama|Mystery|Sci-Fi|Thriller
## 5701 Children|Comedy|Crime|Drama|Fantasy
## 5702 Action|Horror|Sci-Fi|War
## 5703 Action|Thriller
## 5704 Action|Crime|Drama|Thriller
## 5705 Drama
## 5706 Comedy|Drama|Romance
## 5707 Drama
## 5708 Action|Adventure|Drama|War
## 5709 Documentary|Drama
## 5710 Drama|Thriller
## 5711 Drama|Thriller
## 5712 Comedy|Drama|Romance
## 5713 Documentary
## 5714 Drama
## 5715 Crime|Drama|Thriller
## 5716 Drama
## 5717 Action|Adventure
## 5718 Drama|Thriller
## 5719 Drama|Horror|Mystery|Thriller
## 5720 Documentary
## 5721 Documentary
## 5722 Action|Adventure|Drama|Thriller
## 5723 Drama
## 5724 Action|Drama|War
## 5725 Documentary
## 5726 Documentary
## 5727 Documentary
## 5728 Documentary
## 5729 Comedy|Documentary|Drama
## 5730 Animation|Drama|Mystery|Sci-Fi|Thriller
## 5731 Action|Drama|Fantasy|Sci-Fi
## 5732 Documentary
## 5733 Drama
## 5734 Comedy|Crime|Drama|Horror|Mystery
## 5735 Drama|War
## 5736 Adventure|Children|Comedy|Fantasy|IMAX
## 5737 Drama|Romance
## 5738 Adventure|Comedy|Fantasy
## 5739 Drama
## 5740 Drama|Musical|Romance
## 5741 Drama|Musical
## 5742 Drama
## 5743 Comedy|Drama
## 5744 Comedy
## 5745 Crime|Drama|Thriller
## 5746 Drama
## 5747 Drama
## 5748 Comedy|Fantasy
## 5749 Drama
## 5750 Animation|Documentary
## 5751 Drama|Horror|Mystery|Sci-Fi|Thriller
## 5752 Comedy|Drama|Romance
## 5753 Comedy|Drama
## 5754 Comedy
## 5755 Children|Drama
## 5756 Drama|Romance
## 5757 Comedy|Thriller
## 5758 Comedy|Romance
## 5759 Crime|Drama
## 5760 Action|Crime|Drama
## 5761 Comedy|Drama
## 5762 Drama|War
## 5763 Comedy|Crime
## 5764 Animation|Fantasy|Sci-Fi|War
## 5765 Comedy|Drama
## 5766 Action|Animation|Fantasy|Sci-Fi
## 5767 Animation|Children|Musical
## 5768 Action|Adventure|Crime|Drama
## 5769 Children|Comedy
## 5770 Drama
## 5771 Drama
## 5772 Comedy|Musical
## 5773 Crime|Drama
## 5774 Crime|Drama|Mystery|Thriller
## 5775 Action|Adventure|Comedy|Crime|Romance|Thriller
## 5776 Drama|War
## 5777 Action|Crime|Drama|Thriller
## 5778 Children|Comedy
## 5779 Action|Horror|Sci-Fi|Thriller
## 5780 Horror|Mystery|Thriller
## 5781 Drama|Horror|Mystery|Thriller
## 5782 Comedy|Romance
## 5783 Drama
## 5784 Drama
## 5785 Comedy|Drama
## 5786 Drama
## 5787 Crime|Film-Noir
## 5788 Action|Adventure|Sci-Fi
## 5789 Crime|Drama|Thriller
## 5790 Drama
## 5791 Action|Adventure|Drama|Romance|War
## 5792 Adventure|Animation|Fantasy|Romance
## 5793 Action|Animation|Drama|Sci-Fi
## 5794 Action|Comedy|Romance
## 5795 Comedy|Romance
## 5796 Comedy
## 5797 Comedy|Musical|Romance
## 5798 Action|Fantasy|Horror|Thriller
## 5799 Adventure|Children|Comedy|Fantasy
## 5800 Children|Comedy|Drama
## 5801 Drama|War
## 5802 Mystery|Thriller
## 5803 Action|Fantasy|Horror|Mystery|Sci-Fi|Thriller
## 5804 Comedy
## 5805 Action|Comedy
## 5806 Action|Comedy
## 5807 Drama|Romance
## 5808 Comedy|Horror
## 5809 Adventure|Comedy|Crime|Drama|Mystery|Thriller
## 5810 Action|Adventure|Comedy
## 5811 Adventure|Comedy|Romance
## 5812 Comedy|Crime|Drama|Mystery
## 5813 Drama|War
## 5814 Comedy|Drama|Romance
## 5815 Horror|Thriller
## 5816 Action|Comedy
## 5817 Comedy|Crime|Musical
## 5818 Documentary|War
## 5819 Action|Crime|Drama|Thriller
## 5820 Adventure|Animation|Children|Comedy|Fantasy|Sci-Fi|IMAX
## 5821 Drama
## 5822 Horror|Mystery
## 5823 Comedy
## 5824 Drama
## 5825 Comedy
## 5826 Crime|Drama|Thriller
## 5827 Horror|Mystery|Sci-Fi|Thriller
## 5828 Drama
## 5829 Action|Comedy|Crime
## 5830 Children|Comedy|Drama
## 5831 Comedy|Drama
## 5832 Drama
## 5833 Adventure|Comedy|Crime
## 5834 Comedy|Romance
## 5835 Action|Comedy
## 5836 Documentary
## 5837 Adventure|Comedy|Documentary
## 5838 Crime|Drama|Film-Noir
## 5839 Action|Drama
## 5840 Comedy|Crime|Drama|Western
## 5841 Action|Comedy
## 5842 Comedy
## 5843 Animation|Comedy|Drama|Fantasy
## 5844 Action|Comedy|Crime|Drama
## 5845 Comedy|Crime|Drama
## 5846 Action|Adventure
## 5847 Adventure|Drama|War|Western
## 5848 Animation|Fantasy|Sci-Fi|Thriller
## 5849 Documentary
## 5850 Drama
## 5851 Action|Crime|Film-Noir|Mystery|Thriller
## 5852 Comedy
## 5853 Action|Adventure|Comedy
## 5854 Comedy|Romance
## 5855 Drama
## 5856 Comedy|Musical|Romance
## 5857 Action|Crime
## 5858 Drama|War
## 5859 Animation|Drama
## 5860 Comedy
## 5861 Comedy
## 5862 Drama|Mystery|Thriller
## 5863 Drama|Horror|Thriller
## 5864 Drama
## 5865 Drama|Romance
## 5866 Comedy|Romance
## 5867 Comedy
## 5868 Drama|War
## 5869 Action|Adventure|Fantasy|Sci-Fi
## 5870 Drama|War
## 5871 Drama|Horror|Thriller
## 5872 Comedy|Fantasy|Romance
## 5873 Adventure|Comedy|Sci-Fi
## 5874 Horror|Thriller
## 5875 Animation|Comedy|Sci-Fi
## 5876 Drama|War
## 5877 Comedy|Western
## 5878 Action|Crime|Drama
## 5879 Adventure|Comedy|Drama
## 5880 Comedy|Drama|Romance
## 5881 Comedy|Crime
## 5882 Documentary
## 5883 Action|Crime|Thriller
## 5884 Action|Drama|Romance|War
## 5885 Horror|Thriller
## 5886 Crime|Drama
## 5887 Drama|Mystery
## 5888 Comedy|Romance
## 5889 Drama|Mystery|Romance|Thriller
## 5890 Drama|Musical|Romance
## 5891 Animation|Fantasy|Horror
## 5892 Drama|Romance
## 5893 Comedy|Musical
## 5894 Drama
## 5895 Documentary
## 5896 Action|Crime|Drama|Thriller
## 5897 Action|Adventure|Sci-Fi
## 5898 Comedy
## 5899 Comedy|Romance
## 5900 Adventure|Drama
## 5901 Comedy
## 5902 Adventure|Animation|Children|Comedy
## 5903 Adventure|Comedy
## 5904 Children|Documentary
## 5905 Horror|Thriller
## 5906 Comedy|Drama
## 5907 Comedy|Drama|Romance
## 5908 Drama|Romance
## 5909 Adventure|Comedy|Drama
## 5910 Action|Comedy|Drama
## 5911 Documentary
## 5912 Action|Adventure|Comedy|Romance
## 5913 Action|Adventure|Children|Fantasy
## 5914 Horror|Thriller
## 5915 Comedy|Drama|Musical
## 5916 Comedy
## 5917 Drama|Romance
## 5918 Action|Crime|IMAX
## 5919 Action|Adventure|Fantasy|Sci-Fi
## 5920 Comedy|Drama|Romance
## 5921 Comedy|Drama
## 5922 Adventure|Comedy|Romance
## 5923 Action|Horror|Thriller
## 5924 Comedy|Fantasy|Romance
## 5925 Documentary
## 5926 Comedy|Drama
## 5927 Comedy|Crime|Thriller
## 5928 Horror
## 5929 Comedy|Crime|Drama|Romance
## 5930 Comedy
## 5931 Comedy|Musical
## 5932 Action|Adventure|Sci-Fi|Thriller
## 5933 Documentary
## 5934 Comedy
## 5935 Drama|Horror|Thriller
## 5936 Drama
## 5937 Action|Adventure|Sci-Fi
## 5938 Documentary
## 5939 Comedy|Romance
## 5940 Comedy|Drama
## 5941 Crime|Drama
## 5942 Action|Horror|Sci-Fi
## 5943 Comedy
## 5944 Action|Sci-Fi|Thriller
## 5945 Children|Comedy
## 5946 Action|Crime|Horror
## 5947 Drama
## 5948 Drama|Mystery
## 5949 Action|Adventure|Children|Comedy
## 5950 Action|Adventure|Sci-Fi|Thriller
## 5951 Comedy|Romance
## 5952 Comedy|Documentary
## 5953 Comedy
## 5954 Action|Adventure|Drama|Thriller
## 5955 Action|Adventure|Sci-Fi
## 5956 Comedy|Drama
## 5957 Action|Comedy|Crime|Drama
## 5958 Drama
## 5959 Action|Adventure|Comedy
## 5960 Comedy|Drama
## 5961 Comedy|Drama
## 5962 Comedy
## 5963 Drama|Horror|Mystery|Thriller
## 5964 Action|Crime|Drama
## 5965 Action|Drama|War
## 5966 Comedy|Drama
## 5967 Documentary
## 5968 Comedy
## 5969 Action|Crime|Drama|Thriller
## 5970 Adventure|Drama
## 5971 Animation|Drama
## 5972 Comedy
## 5973 Comedy|Romance
## 5974 Horror|Thriller
## 5975 Drama|Mystery|Thriller
## 5976 Adventure|Children|Comedy|Fantasy
## 5977 Comedy|Drama|Sci-Fi
## 5978 Adventure|Animation|Children|Comedy|Fantasy|War
## 5979 Comedy|Fantasy|Horror|Thriller
## 5980 Comedy|Drama|Romance
## 5981 Action|Adventure|Horror|Mystery|Sci-Fi|Thriller
## 5982 Drama|Thriller
## 5983 Action|Crime|Thriller
## 5984 Comedy|Fantasy|Romance
## 5985 Drama
## 5986 Action|Crime|Drama|Thriller|War
## 5987 Drama|Horror|Mystery|Thriller
## 5988 Comedy|Drama
## 5989 Comedy|Drama
## 5990 Adventure|Animation|Comedy
## 5991 Action|Comedy|Crime|Thriller
## 5992 Action|Crime|Drama
## 5993 Comedy|Musical|Western
## 5994 Documentary
## 5995 Action|Horror|Sci-Fi
## 5996 Crime|Drama|Thriller
## 5997 Comedy
## 5998 Action|Sci-Fi
## 5999 Comedy|Horror|Romance
## 6000 Drama
## 6001 Action|Comedy|Crime
## 6002 Fantasy|Mystery|Romance|Thriller
## 6003 Drama
## 6004 Crime|Drama|Horror|Thriller
## 6005 Action|Drama|Thriller
## 6006 Animation|Comedy|Fantasy|Musical|Romance
## 6007 Crime|Drama
## 6008 Action|Crime|Drama|Thriller
## 6009 Drama
## 6010 Drama
## 6011 Crime|Drama
## 6012 Action|Adventure|Animation|Fantasy|Sci-Fi
## 6013 Comedy|Drama|Romance
## 6014 Action|Adventure|Crime|Thriller
## 6015 Adventure|Children|Drama|Fantasy
## 6016 Adventure|Animation|Children|Comedy
## 6017 Comedy|Crime|Mystery|Thriller
## 6018 Action|Crime|Drama
## 6019 Drama|Romance
## 6020 Drama|Romance
## 6021 Documentary
## 6022 Action|Adventure|Drama|Fantasy
## 6023 Documentary
## 6024 Drama
## 6025 Action|Horror|Sci-Fi|Thriller
## 6026 Comedy|Drama
## 6027 Comedy|Drama
## 6028 Drama
## 6029 Drama|Romance
## 6030 Comedy|Drama|Romance
## 6031 Drama
## 6032 Crime|Drama
## 6033 Children|Drama
## 6034 Crime|Drama|Western
## 6035 Action|Horror|Mystery|Thriller
## 6036 Comedy|Drama|Romance
## 6037 Thriller
## 6038 Action|Adventure|Drama|Western
## 6039 Comedy|Drama
## 6040 Horror|Thriller
## 6041 Comedy|Drama|Romance
## 6042 Drama
## 6043 Comedy
## 6044 Adventure|Comedy|Fantasy|Horror
## 6045 Drama
## 6046 Crime|Drama|Thriller
## 6047 Action|Drama|War
## 6048 Action|Adventure|Animation|Children|Comedy|Sci-Fi
## 6049 Crime|Thriller
## 6050 Drama|War
## 6051 Horror|Sci-Fi|Thriller
## 6052 Comedy|Drama
## 6053 Action|Drama
## 6054 Comedy|Romance
## 6055 Drama|Thriller
## 6056 Comedy|Drama
## 6057 Drama|Thriller
## 6058 Horror|Thriller
## 6059 Drama|Romance
## 6060 Sci-Fi
## 6061 Crime|Horror|Thriller
## 6062 Adventure|Drama|Horror|Thriller
## 6063 Adventure|Fantasy|Thriller|IMAX
## 6064 Drama|Musical|Romance
## 6065 Drama|Musical|Romance
## 6066 Action|Adventure|Children|Fantasy
## 6067 Drama
## 6068 Comedy|Musical
## 6069 Comedy|Drama
## 6070 Action|Comedy|Crime|Thriller
## 6071 Comedy|Romance
## 6072 Drama
## 6073 Crime|Horror|Mystery|Thriller
## 6074 Crime|Drama|Romance
## 6075 Crime|Drama|Thriller|War
## 6076 Adventure|Children|Fantasy
## 6077 Action|Adventure|Drama|Fantasy|Thriller
## 6078 Drama|Romance
## 6079 Comedy|Drama|Romance
## 6080 Crime|Drama|Romance
## 6081 Action|Drama
## 6082 Comedy|Drama
## 6083 Comedy|Drama|Thriller
## 6084 Documentary
## 6085 Comedy|Drama|Romance
## 6086 Comedy|War
## 6087 Adventure|Crime|Drama
## 6088 Action|Crime|Drama|Thriller
## 6089 Comedy|Musical
## 6090 Adventure|Comedy|Drama
## 6091 Comedy|Drama|Romance
## 6092 Adventure|Comedy
## 6093 Comedy|Crime
## 6094 Comedy
## 6095 Action|Adventure|Comedy|Drama|Romance
## 6096 Comedy|Drama
## 6097 Drama|Thriller
## 6098 Animation|Children
## 6099 Horror|Thriller
## 6100 Adventure|Drama|Romance
## 6101 Animation|Drama|Romance|Sci-Fi
## 6102 Fantasy|Mystery|Western
## 6103 Action|Adventure|Drama
## 6104 Documentary
## 6105 Crime|Drama|Mystery|Thriller
## 6106 Comedy|Drama
## 6107 Action|Crime|Sci-Fi
## 6108 Horror
## 6109 Comedy
## 6110 Drama|Romance
## 6111 Drama
## 6112 Comedy
## 6113 Animation|Children|Comedy
## 6114 Action|Fantasy|Horror
## 6115 Comedy
## 6116 Adventure|Children|Comedy|Fantasy
## 6117 Adventure|Drama|War
## 6118 Action|Comedy
## 6119 Adventure|Comedy|Drama|Fantasy
## 6120 Drama|Romance
## 6121 Drama|War
## 6122 Drama
## 6123 Action|Comedy|Crime|Western
## 6124 Comedy|Drama
## 6125 Action|Crime|Drama|Horror
## 6126 Drama
## 6127 Action|Comedy|Crime
## 6128 Children|Comedy|Fantasy
## 6129 Drama|War
## 6130 Horror|Mystery|Thriller
## 6131 Comedy|Drama|Romance
## 6132 Comedy|Documentary
## 6133 Comedy|Drama|Romance
## 6134 Adventure|Comedy|Crime
## 6135 Adventure|Animation|Children|Comedy
## 6136 Crime|Drama|Thriller
## 6137 Horror|Thriller
## 6138 Drama
## 6139 Crime|Drama
## 6140 Drama
## 6141 Action|Adventure|Drama|Romance
## 6142 Comedy|Romance
## 6143 Action|Crime|Thriller
## 6144 Action|Fantasy|Sci-Fi|Thriller
## 6145 Comedy|Romance
## 6146 Action|Drama|Fantasy|Horror|Mystery|Sci-Fi|Thriller
## 6147 Crime|Thriller
## 6148 Comedy|Romance
## 6149 Action|Animation|Children|Sci-Fi
## 6150 Adventure|Animation|Children|Comedy
## 6151 Drama|Romance
## 6152 Action|Sci-Fi|Thriller|IMAX
## 6153 Comedy|Romance
## 6154 Comedy|Drama
## 6155 Comedy|Crime|Drama
## 6156 Crime|Drama|Thriller
## 6157 Crime|Drama
## 6158 Children|Comedy|Fantasy
## 6159 Comedy|Fantasy|Horror
## 6160 Comedy|Fantasy|Horror
## 6161 Comedy|Fantasy|Horror|Sci-Fi
## 6162 Crime|Drama
## 6163 Drama|Horror|Thriller
## 6164 Adventure|Children|Comedy|Fantasy
## 6165 Documentary
## 6166 Drama|Romance|Thriller
## 6167 Action|Crime|Mystery
## 6168 Drama
## 6169 Documentary
## 6170 Drama
## 6171 Crime|Drama|Mystery
## 6172 Comedy|Drama
## 6173 Drama
## 6174 Drama
## 6175 Horror|Sci-Fi|Thriller
## 6176 Crime|Drama|Mystery|Thriller
## 6177 Crime|Drama|Film-Noir|Mystery
## 6178 Comedy|Horror
## 6179 Comedy|Horror|Sci-Fi
## 6180 Documentary
## 6181 Comedy|Horror|Sci-Fi
## 6182 Comedy
## 6183 Action|Animation|Film-Noir|Sci-Fi|Thriller
## 6184 Comedy
## 6185 Comedy|Drama|Romance
## 6186 Comedy|Drama|Musical
## 6187 Drama|Romance
## 6188 Drama
## 6189 Crime|Drama
## 6190 Documentary
## 6191 Comedy|Horror
## 6192 Drama|Thriller
## 6193 Comedy|Drama|Musical
## 6194 Crime|Drama|Thriller
## 6195 Adventure|Animation|Children|Comedy|Fantasy
## 6196 Fantasy|Horror|Thriller
## 6197 Comedy|Drama
## 6198 Comedy|Drama
## 6199 Action|Comedy|Crime|Thriller
## 6200 Action|Adventure|Thriller
## 6201 Adventure|Children|Comedy
## 6202 Crime|Drama
## 6203 Comedy
## 6204 Drama|Horror|Mystery|Thriller
## 6205 Drama|Romance
## 6206 Adventure|Animation|Children|Comedy
## 6207 Comedy|Drama
## 6208 Action|Adventure|Thriller|IMAX
## 6209 Drama|Mystery|Thriller
## 6210 Action|Sci-Fi|Thriller
## 6211 Comedy|Drama|Romance
## 6212 Drama
## 6213 Animation|Children|Comedy
## 6214 Drama
## 6215 Comedy|Drama
## 6216 Drama
## 6217 Horror|Thriller
## 6218 Comedy
## 6219 Drama|Fantasy|Romance
## 6220 Adventure|Comedy|Drama|Fantasy|Romance
## 6221 Comedy|Drama
## 6222 Action|Adventure|Fantasy
## 6223 Comedy
## 6224 Comedy
## 6225 Drama|Fantasy|Mystery
## 6226 Comedy|Fantasy|Romance
## 6227 Drama|Romance
## 6228 Documentary
## 6229 Documentary
## 6230 Comedy|Romance
## 6231 Children|Comedy|Drama|Musical|Romance
## 6232 Comedy|Documentary|Romance
## 6233 Drama
## 6234 Action|Drama
## 6235 Action|Crime|Drama|Thriller
## 6236 Animation|Children|Comedy
## 6237 Documentary
## 6238 Crime|Thriller
## 6239 Action|Adventure|Sci-Fi|IMAX
## 6240 Drama|War
## 6241 Drama|Thriller
## 6242 Comedy
## 6243 Adventure|Comedy|Drama
## 6244 Drama|Mystery|Thriller
## 6245 Drama|Thriller
## 6246 Comedy
## 6247 Documentary
## 6248 Action|Drama|Thriller|War
## 6249 Drama
## 6250 Comedy
## 6251 Animation|Children|Fantasy|Mystery
## 6252 Action|Comedy|Horror|Thriller
## 6253 Comedy|Fantasy|Mystery
## 6254 Action|Comedy
## 6255 Action|Comedy|Fantasy|IMAX
## 6256 Drama
## 6257 Comedy|Drama|Fantasy|Romance
## 6258 Action|Crime|Drama|Thriller
## 6259 Drama
## 6260 Comedy|Romance
## 6261 Adventure|Animation|Children|Comedy|Fantasy|IMAX
## 6262 Action|Thriller
## 6263 Drama|Romance
## 6264 Action|Crime|Drama|Thriller
## 6265 Fantasy|Mystery|Thriller
## 6266 Drama|Romance
## 6267 Adventure|Comedy|Drama|Fantasy
## 6268 Adventure|Animation|Comedy|Fantasy|Romance|Sci-Fi
## 6269 Drama
## 6270 Drama|Mystery|Thriller
## 6271 Drama|Fantasy|Thriller
## 6272 Comedy|Drama
## 6273 Children|Comedy|Drama
## 6274 Comedy
## 6275 Action|Adventure|Comedy|Crime
## 6276 Crime|Drama|Film-Noir
## 6277 Drama|Fantasy|Mystery|Romance
## 6278 Drama
## 6279 Comedy
## 6280 Drama
## 6281 Crime|Drama|Musical
## 6282 Children|Fantasy
## 6283 Comedy|Drama|Fantasy|Romance
## 6284 Comedy
## 6285 Comedy|Fantasy
## 6286 Drama|Romance
## 6287 Horror|Mystery|Thriller
## 6288 Drama|War
## 6289 Comedy|Horror|Thriller
## 6290 Crime|Drama|Mystery|Thriller
## 6291 Action|Horror|Thriller
## 6292 Comedy|Drama
## 6293 Drama
## 6294 Adventure|Comedy|Sci-Fi|Thriller
## 6295 Documentary|Drama
## 6296 Drama|Romance
## 6297 Comedy|Drama|Romance|War
## 6298 Drama|Fantasy|Romance
## 6299 Comedy
## 6300 Comedy|Drama|Fantasy|Romance
## 6301 Crime|Drama|Mystery|Thriller
## 6302 Horror
## 6303 Drama
## 6304 Drama
## 6305 Documentary
## 6306 Adventure|Drama|Thriller
## 6307 Action|Adventure|Drama|War
## 6308 Comedy|Documentary
## 6309 Drama
## 6310 Comedy|Drama|Romance
## 6311 Comedy
## 6312 Drama|Fantasy|Thriller
## 6313 Action|Adventure|Drama
## 6314 Adventure|Animation|Children|Comedy|IMAX
## 6315 Comedy|Crime
## 6316 Crime|Drama|Thriller
## 6317 Horror|Thriller
## 6318 Comedy
## 6319 Comedy|Drama
## 6320 Comedy|Thriller
## 6321 Action|Drama|Thriller
## 6322 Drama
## 6323 Drama|Romance
## 6324 Drama|War
## 6325 Action|Comedy|Horror|Thriller
## 6326 Drama|Romance
## 6327 Documentary
## 6328 Drama|Thriller
## 6329 Documentary
## 6330 Comedy|Drama|Romance
## 6331 Action|Adventure|Drama|Sci-Fi|Thriller
## 6332 Drama|Mystery|Sci-Fi|Thriller
## 6333 Drama|War
## 6334 Film-Noir|Thriller
## 6335 Crime|Horror|Thriller
## 6336 Drama|Thriller
## 6337 Crime|Drama|Mystery|Thriller
## 6338 Animation|Comedy
## 6339 Crime|Drama|Thriller
## 6340 Comedy|Fantasy
## 6341 Comedy|Sci-Fi
## 6342 Comedy|Drama|Romance
## 6343 Documentary
## 6344 Comedy
## 6345 Comedy|Documentary
## 6346 Documentary|Drama|War
## 6347 Action|Adventure|Thriller
## 6348 Adventure|Animation|Children|Comedy|IMAX
## 6349 Comedy
## 6350 Action|Sci-Fi|Thriller
## 6351 Drama
## 6352 Comedy|Drama|Romance
## 6353 Comedy|Romance
## 6354 Action|Crime|Drama
## 6355 Drama
## 6356 Crime|Western
## 6357 Adventure|Comedy|Musical
## 6358 Drama
## 6359 Action|Adventure|Crime|Drama|Thriller|War
## 6360 Children|Comedy|Drama|Fantasy
## 6361 Action|Adventure|Fantasy
## 6362 Action|Drama
## 6363 Drama|Fantasy|Romance
## 6364 Action|Drama|War
## 6365 Comedy
## 6366 Drama|Romance
## 6367 Drama
## 6368 Drama|Thriller
## 6369 Drama|Musical
## 6370 Drama
## 6371 Documentary
## 6372 Drama|Mystery|Thriller
## 6373 Comedy|Drama
## 6374 Drama
## 6375 Action|Adventure
## 6376 Action|Drama
## 6377 Drama|Mystery|Thriller
## 6378 Drama|War
## 6379 Action|Horror|Thriller
## 6380 Drama|Musical
## 6381 Drama
## 6382 Comedy|Romance
## 6383 Drama|Romance
## 6384 Comedy
## 6385 Comedy
## 6386 Horror|Thriller
## 6387 Crime|Drama
## 6388 Action|Horror|Thriller
## 6389 Drama
## 6390 Adventure|Children|Fantasy
## 6391 Comedy
## 6392 Horror
## 6393 Documentary
## 6394 Comedy|Drama|Romance
## 6395 Documentary
## 6396 Comedy|Drama|Romance
## 6397 Action|Crime|Drama|Thriller
## 6398 Drama|Fantasy|Horror|Romance
## 6399 Adventure|Comedy
## 6400 Drama|Horror|Thriller
## 6401 Comedy|Drama|Romance
## 6402 Drama|Horror|Thriller
## 6403 Comedy|Romance
## 6404 Comedy|Drama
## 6405 Documentary
## 6406 Animation|Children|Drama
## 6407 Romance
## 6408 Drama
## 6409 Comedy
## 6410 Comedy|Romance
## 6411 Animation|Comedy
## 6412 Adventure|Drama|Fantasy
## 6413 Drama|Mystery|Thriller
## 6414 Action|Fantasy|Thriller
## 6415 Drama|Thriller
## 6416 Comedy|Romance
## 6417 Comedy|Romance
## 6418 Drama|Mystery|Thriller
## 6419 Comedy
## 6420 Drama
## 6421 Drama
## 6422 Drama
## 6423 Action|Comedy|Crime|Mystery
## 6424 Adventure|Drama|Romance
## 6425 Crime|Drama|Thriller
## 6426 Action|Sci-Fi|Thriller
## 6427 Drama|Romance
## 6428 Comedy|Horror
## 6429 Crime|Drama|Thriller
## 6430 Action|Comedy|Drama|Horror|Thriller
## 6431 Sci-Fi
## 6432 Fantasy
## 6433 Adventure|Comedy
## 6434 Action|Fantasy|War|IMAX
## 6435 Horror|Mystery|Thriller
## 6436 Drama|Romance
## 6437 Adventure|Children|Sci-Fi
## 6438 Comedy|Romance
## 6439 Comedy|Drama|Horror|Sci-Fi|Thriller
## 6440 Drama|Romance
## 6441 Drama|Romance
## 6442 Comedy|Drama|Romance
## 6443 Drama|Fantasy|Mystery|Thriller
## 6444 Horror|Mystery|Thriller
## 6445 Drama
## 6446 Drama
## 6447 Action|Drama|Thriller
## 6448 Horror|Thriller
## 6449 Action|Adventure|Animation|Children|Comedy|Fantasy
## 6450 Drama|Thriller|War
## 6451 Crime|Drama|Thriller
## 6452 Comedy|Romance
## 6453 Comedy
## 6454 Action|Crime|Horror|Sci-Fi|Thriller
## 6455 Horror|Thriller
## 6456 Action|Adventure|Animation|Children|Comedy|Sci-Fi
## 6457 Documentary
## 6458 Action|Adventure|Drama|War
## 6459 Adventure|Drama|Sci-Fi|Thriller
## 6460 Crime|Drama
## 6461 Animation|Comedy|Fantasy|Musical
## 6462 Drama|Thriller
## 6463 Action|Adventure|Animation|Comedy|Fantasy|Mystery|Sci-Fi
## 6464 Drama|Musical
## 6465 Crime|Drama|Mystery|Thriller
## 6466 Horror|Thriller
## 6467 Comedy|Drama|Romance
## 6468 Comedy
## 6469 Crime|Drama|Fantasy|Mystery|Thriller
## 6470 Comedy
## 6471 Action|Adventure|Sci-Fi|Thriller|IMAX
## 6472 Comedy|Drama
## 6473 Children|Comedy
## 6474 Documentary
## 6475 Documentary
## 6476 Action|Crime|Horror|Thriller
## 6477 Comedy|Romance
## 6478 Animation|Mystery|Sci-Fi
## 6479 Action|Fantasy|Horror|Thriller
## 6480 Drama
## 6481 Drama
## 6482 Comedy|Drama|Romance
## 6483 Comedy|Drama|Musical
## 6484 Horror|Sci-Fi|Thriller
## 6485 Action|Comedy|Crime|Romance
## 6486 Documentary
## 6487 Adventure|Animation|Children|Comedy|Fantasy
## 6488 Drama|Musical|Romance
## 6489 Action|Adventure|Comedy|Fantasy
## 6490 Drama|Horror|Thriller
## 6491 Crime|Drama|Thriller
## 6492 Action|Adventure|Fantasy
## 6493 Action|Adventure|Comedy|Fantasy|Romance
## 6494 Action|Thriller
## 6495 Comedy|Drama|Romance|Sci-Fi
## 6496 Horror|Thriller
## 6497 Comedy|Drama|Romance
## 6498 Crime|Thriller
## 6499 Horror
## 6500 Comedy|Romance
## 6501 Crime|Horror|Thriller
## 6502 Crime|Drama
## 6503 Comedy|Fantasy|Horror
## 6504 Action|Adventure|Fantasy|Sci-Fi
## 6505 Animation|Children|Comedy
## 6506 Action|Adventure|Sci-Fi
## 6507 Adventure|Crime|Thriller
## 6508 Comedy|Horror|Thriller
## 6509 Action|Adventure|Crime|Horror|Thriller
## 6510 Action|Adventure|Drama|War
## 6511 Comedy|Drama
## 6512 Comedy
## 6513 Comedy
## 6514 Documentary
## 6515 Documentary|Drama
## 6516 Drama|Thriller
## 6517 Drama|Horror|Thriller
## 6518 Comedy
## 6519 Action|Adventure|Crime|Thriller
## 6520 Comedy|Romance
## 6521 Comedy|Fantasy
## 6522 Action|Sci-Fi|Thriller|IMAX
## 6523 Adventure|Drama|Fantasy|IMAX
## 6524 Comedy|Romance
## 6525 Drama|Thriller
## 6526 Drama|Romance|Western
## 6527 Documentary
## 6528 Drama|Fantasy|Musical|Romance
## 6529 Comedy
## 6530 Adventure|Comedy|Fantasy|Romance
## 6531 Animation|Comedy
## 6532 Crime|Drama|Thriller
## 6533 Comedy|Drama|Romance
## 6534 Comedy|Drama
## 6535 Action|Crime|Thriller
## 6536 Documentary
## 6537 Crime|Drama|Mystery|Thriller
## 6538 Comedy
## 6539 Comedy
## 6540 Action|Comedy|Crime|Thriller
## 6541 Action|Adventure|Fantasy|War
## 6542 Comedy
## 6543 Comedy
## 6544 Action|Drama|Thriller
## 6545 Comedy|Drama
## 6546 Children|Comedy
## 6547 Action|Drama|Horror|Sci-Fi|Thriller
## 6548 Comedy|Drama|Romance
## 6549 Horror
## 6550 Drama|Thriller
## 6551 Comedy|Drama|Romance
## 6552 Documentary
## 6553 Action|Comedy
## 6554 Comedy|Horror|Thriller
## 6555 Comedy
## 6556 Drama|Mystery
## 6557 Action|Horror|Sci-Fi
## 6558 Action|Crime|Drama|Western
## 6559 Action|Comedy|Crime
## 6560 Comedy
## 6561 Crime|Drama
## 6562 Drama|Romance|War
## 6563 Drama|Sci-Fi
## 6564 Drama|Thriller
## 6565 Drama
## 6566 Documentary
## 6567 Crime|Drama|Thriller
## 6568 Drama|Mystery
## 6569 Drama
## 6570 Comedy|Drama|Romance
## 6571 Action|Adventure|Comedy|Drama|Thriller
## 6572 Crime|Drama|Thriller
## 6573 Documentary
## 6574 Action|Adventure|Animation|Crime|Fantasy
## 6575 Comedy|Romance
## 6576 Drama
## 6577 Comedy|Drama
## 6578 Action|Horror|Sci-Fi|Thriller
## 6579 Comedy
## 6580 Comedy|Romance
## 6581 Action|Adventure|Drama
## 6582 Comedy
## 6583 Drama|Romance|Thriller|War
## 6584 Action|Adventure|Drama|Fantasy
## 6585 Comedy|Drama|Romance
## 6586 Comedy|Drama|Romance
## 6587 Adventure|Comedy|Drama
## 6588 Crime|Drama
## 6589 Drama
## 6590 Drama|Thriller
## 6591 Drama|Mystery|Thriller
## 6592 Comedy|Drama
## 6593 Horror|Thriller
## 6594 Crime|Drama|Mystery
## 6595 Comedy
## 6596 Comedy|Crime|Drama
## 6597 Crime|Drama|Western
## 6598 Crime|Drama|Thriller
## 6599 Animation|Drama
## 6600 Drama
## 6601 Comedy|Drama|Romance
## 6602 Horror
## 6603 Comedy|Horror
## 6604 Drama
## 6605 Crime|Horror|Thriller
## 6606 Documentary
## 6607 Documentary
## 6608 Action|Crime|Drama|Thriller
## 6609 Comedy
## 6610 Crime|Drama|Thriller
## 6611 Animation|Comedy
## 6612 Crime|Drama|Thriller
## 6613 Drama
## 6614 Crime|Drama
## 6615 Comedy
## 6616 Comedy|Drama|Romance
## 6617 Drama
## 6618 Drama|Musical
## 6619 Drama|Sci-Fi
## 6620 Drama|Thriller|War
## 6621 Action|Adventure|Animation|Fantasy|IMAX
## 6622 Comedy|Drama|Sci-Fi|Thriller
## 6623 Comedy|Documentary
## 6624 Drama|Sci-Fi
## 6625 Comedy|Drama|Romance|War
## 6626 Horror|Sci-Fi
## 6627 Adventure|Animation|Children|Comedy|Fantasy|Musical|Romance
## 6628 Action|Crime|Thriller
## 6629 Drama|Thriller
## 6630 Adventure|Children|Fantasy
## 6631 Action|Horror|Sci-Fi|Thriller|IMAX
## 6632 Children|Comedy
## 6633 Animation|Comedy|Sci-Fi
## 6634 Drama
## 6635 Drama
## 6636 Comedy|Drama
## 6637 Action|Horror|Thriller
## 6638 Drama|Horror|Mystery|Thriller
## 6639 Comedy|Drama|Romance
## 6640 Documentary
## 6641 Drama|Romance
## 6642 Documentary
## 6643 Comedy|Drama
## 6644 Drama
## 6645 Horror|Thriller
## 6646 Drama|Fantasy|Romance
## 6647 Drama|Horror|Musical|Thriller
## 6648 Action|Adventure
## 6649 Drama|Western
## 6650 Comedy|Drama|War
## 6651 Action|Horror|Sci-Fi
## 6652 Comedy|Musical
## 6653 Comedy|Drama|Romance
## 6654 Comedy
## 6655 Comedy|Drama|Romance
## 6656 Adventure|Children|Fantasy
## 6657 Action|Drama|Sci-Fi|Thriller
## 6658 Comedy|Drama|Romance
## 6659 Comedy|Romance
## 6660 Crime|Drama|Thriller
## 6661 Drama
## 6662 Comedy|Drama
## 6663 Drama|Horror|Thriller
## 6664 Action|Adventure|Fantasy
## 6665 Action|Mystery|Sci-Fi|Thriller
## 6666 Comedy|Horror
## 6667 Action|Adventure|Drama|War
## 6668 Adventure|Animation|Drama|Horror
## 6669 Animation|Comedy|Drama|Romance|Sci-Fi
## 6670 Comedy|Crime
## 6671 Crime|Thriller
## 6672 Action|Drama|Thriller|War
## 6673 Comedy
## 6674 Comedy
## 6675 Horror|Sci-Fi|Thriller
## 6676 Action|Adventure|Fantasy|Sci-Fi
## 6677 Comedy|Crime|Drama|Thriller
## 6678 Crime|Sci-Fi
## 6679 Action|Crime|Drama
## 6680 Comedy|Horror
## 6681 Action|Adventure|Comedy|Romance
## 6682 Action|Adventure|Drama|Sci-Fi|Thriller
## 6683 Comedy|Drama|Romance
## 6684 Crime|Drama|Romance|Thriller
## 6685 Action|Drama|Thriller
## 6686 Adventure|Children|Drama|Fantasy|IMAX
## 6687 Drama|Musical|Romance
## 6688 Drama|Romance
## 6689 Comedy
## 6690 Comedy|Romance
## 6691 Documentary
## 6692 Drama|Thriller
## 6693 Comedy
## 6694 Adventure|Romance|Thriller
## 6695 Action|Crime|Thriller
## 6696 Action|Drama|Sci-Fi|Thriller
## 6697 Adventure|Animation|Children|Comedy
## 6698 Drama|Thriller
## 6699 Crime|Drama|War
## 6700 Drama|War
## 6701 Documentary
## 6702 Comedy
## 6703 Horror|Sci-Fi
## 6704 Comedy|Fantasy|Romance
## 6705 Drama
## 6706 Documentary|War
## 6707 Action|Adventure|Animation|Fantasy|Sci-Fi
## 6708 Documentary
## 6709 Drama
## 6710 Drama
## 6711 Action|Crime|Drama|IMAX
## 6712 Action
## 6713 Comedy
## 6714 Drama|Romance|Sci-Fi
## 6715 Crime|Drama|Romance|Thriller
## 6716 Comedy|Drama|Romance
## 6717 Action|Crime|Thriller
## 6718 Comedy|Drama|Romance
## 6719 Action|Drama|War
## 6720 Comedy
## 6721 Drama|War
## 6722 Documentary|Musical|IMAX
## 6723 Horror|Thriller
## 6724 Adventure|Comedy|Fantasy
## 6725 Horror|Thriller
## 6726 Comedy|Romance
## 6727 Action|Comedy|Sci-Fi
## 6728 Crime|Drama|Thriller
## 6729 Drama|Romance
## 6730 Adventure|Comedy
## 6731 Comedy
## 6732 Action|Children|Sci-Fi|IMAX
## 6733 Action|Adventure|Comedy|Fantasy
## 6734 Comedy|Drama
## 6735 Comedy|Documentary
## 6736 Action|Horror
## 6737 Horror
## 6738 Children|Comedy|Drama
## 6739 Comedy|Documentary
## 6740 Comedy|Romance
## 6741 Comedy
## 6742 Documentary
## 6743 Horror|Mystery|Thriller
## 6744 Action|Adventure|Sci-Fi
## 6745 Comedy|Romance
## 6746 Action|Drama
## 6747 Action|Crime|Drama|Thriller
## 6748 Adventure|Drama|Fantasy
## 6749 Comedy|Romance
## 6750 Comedy
## 6751 Drama|Romance
## 6752 Adventure|Children|Fantasy
## 6753 Drama|Romance
## 6754 Crime|Drama|Horror|Thriller
## 6755 Action|Adventure|Comedy|Sci-Fi
## 6756 Comedy
## 6757 Comedy|Romance
## 6758 Horror|Thriller
## 6759 Documentary
## 6760 Horror|Mystery|Thriller
## 6761 Action|Animation|Children|Comedy|IMAX
## 6762 Drama
## 6763 Comedy|Crime|Drama|Horror
## 6764 Comedy
## 6765 Horror|Thriller
## 6766 Action|Comedy|Drama|Thriller
## 6767 Comedy|Drama|Romance
## 6768 Crime|Drama
## 6769 Drama|Horror|Thriller
## 6770 Drama|Sci-Fi|Thriller
## 6771 Action|Sci-Fi
## 6772 Drama|War
## 6773 Adventure|Animation|Children|Romance|Sci-Fi
## 6774 Action|Thriller
## 6775 Action|Adventure|Comedy|Crime|Fantasy
## 6776 Action|Comedy
## 6777 Comedy
## 6778 Children|Comedy
## 6779 Action|Animation|Comedy|Romance|Sci-Fi
## 6780 Children|Comedy|Drama|Mystery
## 6781 Documentary
## 6782 Comedy|Drama|Romance
## 6783 Horror|Mystery|Thriller
## 6784 Documentary
## 6785 Comedy|Horror
## 6786 Animation|Children|Comedy|Fantasy|Musical
## 6787 War
## 6788 Comedy|Musical|Romance
## 6789 Comedy
## 6790 Action|Adventure|Horror|Sci-Fi|Thriller
## 6791 Animation|Children|Comedy
## 6792 Action|Adventure|Sci-Fi
## 6793 Adventure|Children|Comedy|Romance|Sci-Fi
## 6794 Action|Comedy|Fantasy|Horror|Thriller
## 6795 Horror|Thriller
## 6796 Crime|Drama|Thriller
## 6797 Sci-Fi
## 6798 Action|Drama|Mystery|Sci-Fi|Thriller|IMAX
## 6799 Drama|Thriller
## 6800 Comedy|Romance
## 6801 Crime|Drama
## 6802 Comedy
## 6803 Drama|Mystery|Sci-Fi|Thriller
## 6804 Documentary
## 6805 Animation|Children|Musical
## 6806 Adventure|Fantasy|Thriller
## 6807 Crime|Horror|Thriller
## 6808 Drama
## 6809 Drama|Thriller
## 6810 Drama|Romance|War
## 6811 Comedy|Drama|Sci-Fi
## 6812 Action|Adventure|Fantasy|Thriller
## 6813 Horror|Mystery|Thriller
## 6814 Drama
## 6815 Comedy|Drama|Romance
## 6816 Action|Animation|Crime
## 6817 Drama|Mystery
## 6818 Action|Comedy|Crime
## 6819 Action|Adventure|Drama|War
## 6820 Adventure|Comedy|Drama|Romance
## 6821 Action|Drama|Thriller
## 6822 Comedy|Drama|Musical|Romance
## 6823 Action|Adventure|Comedy|War
## 6824 Action|Adventure|Animation|Sci-Fi
## 6825 Drama|Mystery
## 6826 Action|Adventure|Sci-Fi
## 6827 Animation|Documentary|Drama|War
## 6828 Drama|Fantasy|Horror|Romance
## 6829 Comedy
## 6830 Action|Adventure|Sci-Fi|Thriller
## 6831 Comedy
## 6832 Comedy
## 6833 Documentary
## 6834 Horror|Mystery|Thriller
## 6835 Action|Western
## 6836 Drama
## 6837 Comedy|Crime|Drama
## 6838 Comedy
## 6839 Action|Adventure|Sci-Fi|Thriller
## 6840 Crime|Drama|Thriller
## 6841 Comedy
## 6842 Action|Comedy|Fantasy|Thriller
## 6843 Drama
## 6844 Action|Crime|Thriller
## 6845 Drama
## 6846 Horror|Sci-Fi|Thriller
## 6847 Crime|Mystery|Thriller
## 6848 Drama|Thriller
## 6849 Comedy|Fantasy|Romance
## 6850 Action|Adventure|Fantasy|Thriller
## 6851 Western
## 6852 Action|Animation|Comedy|Horror
## 6853 Action|Crime|Thriller|IMAX
## 6854 Comedy
## 6855 Comedy|Drama|Romance
## 6856 Drama
## 6857 Crime|Drama
## 6858 Drama|Romance
## 6859 Action|Horror
## 6860 Animation|Comedy|Fantasy|Sci-Fi
## 6861 Drama|Romance
## 6862 Action|Drama|Thriller
## 6863 Adventure|Children|Sci-Fi
## 6864 Action|Adventure|Sci-Fi
## 6865 Action|Crime|Drama|Thriller
## 6866 Comedy|Drama|Romance
## 6867 Drama
## 6868 Comedy|Romance
## 6869 Comedy|Drama
## 6870 Drama
## 6871 Comedy|Fantasy
## 6872 Drama
## 6873 Documentary
## 6874 Comedy|Romance
## 6875 Crime|Drama
## 6876 Drama
## 6877 Sci-Fi
## 6878 Sci-Fi
## 6879 Action|Crime
## 6880 Action|Adventure|Animation|Comedy|Fantasy|Sci-Fi
## 6881 Adventure|Fantasy|Sci-Fi
## 6882 Action|Adventure|Animation|Children|Comedy|IMAX
## 6883 Drama|Mystery|Romance|Thriller
## 6884 Crime|Drama|Mystery
## 6885 Adventure|Drama|Thriller
## 6886 Crime|Drama|Romance
## 6887 Action|Adventure|Thriller
## 6888 Comedy
## 6889 Drama
## 6890 Action|Drama|Thriller
## 6891 Children|Fantasy|Musical|Romance
## 6892 Action
## 6893 Drama|Fantasy
## 6894 Comedy|Musical|Romance
## 6895 Action|Adventure|Sci-Fi
## 6896 Crime|Horror|Thriller
## 6897 Comedy
## 6898 Drama|Mystery
## 6899 Adventure|Children|Comedy
## 6900 Crime|Drama
## 6901 Drama
## 6902 Action|Horror|Thriller
## 6903 Adventure|Drama|War|Western
## 6904 Action|Adventure|Animation|Children|Comedy
## 6905 Drama
## 6906 Drama|Fantasy|Romance|Thriller
## 6907 Horror
## 6908 Action|Adventure|Crime|Thriller
## 6909 Comedy
## 6910 Drama|War
## 6911 Drama|Romance
## 6912 Animation|Comedy
## 6913 Adventure|Fantasy
## 6914 Drama
## 6915 Action|Crime|Drama|Thriller
## 6916 Adventure|Animation|Comedy|Fantasy
## 6917 Documentary
## 6918 Animation|Comedy
## 6919 Drama|Sci-Fi|Thriller|IMAX
## 6920 Drama|War
## 6921 Drama|War
## 6922 Drama|Mystery
## 6923 Crime|Drama
## 6924 Drama
## 6925 Drama|Romance
## 6926 Action|Adventure|Animation
## 6927 Drama
## 6928 Drama
## 6929 Drama|Fantasy|Mystery|Romance
## 6930 Comedy
## 6931 Drama|Thriller|War
## 6932 Animation|Drama|Romance
## 6933 Action|Sci-Fi
## 6934 Drama
## 6935 Adventure|Children|Comedy
## 6936 Comedy|Drama
## 6937 Drama|Romance
## 6938 Comedy
## 6939 Comedy
## 6940 Documentary
## 6941 Drama|Romance
## 6942 Drama|Thriller|War
## 6943 Documentary
## 6944 Comedy|Drama
## 6945 Adventure|Animation|Children|Fantasy
## 6946 Adventure|Crime|Thriller
## 6947 Adventure|Drama|Fantasy
## 6948 Action|Drama|War
## 6949 Adventure|Animation|Children|Comedy|Fantasy
## 6950 Comedy|Romance
## 6951 Action|Adventure|Comedy|Fantasy
## 6952 Action|Crime|Drama|Thriller
## 6953 Horror|Thriller
## 6954 Action|Drama
## 6955 Sci-Fi|Thriller
## 6956 Adventure|Fantasy
## 6957 Action|Fantasy|Horror|Thriller
## 6958 Adventure|Fantasy
## 6959 Comedy
## 6960 Comedy|Romance
## 6961 Action|Comedy|Crime
## 6962 Drama|Musical
## 6963 Drama|Horror|Mystery|Thriller
## 6964 Action|Adventure|Sci-Fi
## 6965 Horror|Thriller
## 6966 Animation|Fantasy|Thriller
## 6967 Sci-Fi|Thriller
## 6968 Drama|Thriller
## 6969 Comedy|Drama|Romance
## 6970 Comedy|Fantasy
## 6971 Action|Animation|Comedy|Sci-Fi
## 6972 Drama|Horror|Thriller
## 6973 Documentary
## 6974 Animation
## 6975 Drama
## 6976 Comedy|Horror
## 6977 Comedy|Drama
## 6978 Comedy|Drama
## 6979 Drama|War
## 6980 Comedy|Drama|Romance
## 6981 Drama
## 6982 Horror
## 6983 Action|Adventure|Comedy|Western
## 6984 Adventure|Comedy|Mystery
## 6985 Adventure|Animation|Children|Musical
## 6986 Comedy|Drama|Musical|Sci-Fi
## 6987 Comedy|Crime|Horror|Thriller
## 6988 Comedy
## 6989 Adventure|Comedy|Horror
## 6990 Horror|Thriller
## 6991 Crime|Romance|Thriller
## 6992 Action|Drama|Mystery|Sci-Fi|Thriller
## 6993 Crime|Drama|Mystery|Thriller
## 6994 Comedy|Drama
## 6995 Action|Animation|Children|Comedy
## 6996 Action|Mystery|Thriller
## 6997 Animation|Sci-Fi|IMAX
## 6998 Action|Crime|Drama|Thriller
## 6999 Comedy
## 7000 Comedy|Drama|Romance
## 7001 Documentary|Musical
## 7002 Action|Comedy
## 7003 Comedy|Drama
## 7004 Comedy|Romance
## 7005 Drama|Fantasy|Sci-Fi|Thriller
## 7006 Comedy
## 7007 Action|Crime|Drama|Thriller
## 7008 Comedy
## 7009 Comedy|Drama
## 7010 Comedy|Drama
## 7011 Action|Drama|War
## 7012 Crime|Drama|Thriller
## 7013 Drama
## 7014 Action|Comedy|Crime
## 7015 Drama|Mystery|Sci-Fi|Thriller
## 7016 Drama|Romance
## 7017 Action|Sci-Fi|Thriller
## 7018 Crime|Drama|Thriller
## 7019 Action|Adventure|Sci-Fi|IMAX
## 7020 Comedy
## 7021 Action|Comedy|Crime
## 7022 Action|Drama|War
## 7023 Documentary
## 7024 Documentary
## 7025 Drama
## 7026 Crime|Drama|Mystery|Thriller
## 7027 Action|Drama|Thriller
## 7028 Comedy
## 7029 Drama
## 7030 Adventure|Comedy|Drama
## 7031 Action|Adventure|Sci-Fi|Thriller
## 7032 Action|Comedy|IMAX
## 7033 Adventure|Fantasy|Musical|Romance
## 7034 Adventure|Comedy|Crime|Romance
## 7035 Drama|War
## 7036 Comedy|Romance
## 7037 Drama|Musical
## 7038 Action|Animation|Mystery|Sci-Fi
## 7039 Comedy|Horror
## 7040 Adventure|Animation|Children|Drama
## 7041 Action|Adventure|Animation|Drama
## 7042 Comedy
## 7043 Drama|Mystery
## 7044 Comedy|Crime
## 7045 Action|Crime|Drama|Thriller
## 7046 Drama|Fantasy
## 7047 Crime|Drama|Horror|Thriller
## 7048 Comedy|Horror
## 7049 Comedy|Drama|Romance
## 7050 Children|Comedy
## 7051 Drama|Fantasy
## 7052 Action|Adventure|Comedy|Horror
## 7053 Action|Adventure|Comedy|Sci-Fi
## 7054 Comedy|Drama|Fantasy
## 7055 Crime|Drama|Thriller
## 7056 Crime|Drama
## 7057 Comedy|Romance
## 7058 Adventure|Comedy
## 7059 Adventure|Sci-Fi
## 7060 Animation
## 7061 Action|Drama|Thriller|War
## 7062 Drama|Romance
## 7063 Crime|Drama|Film-Noir
## 7064 Action|Adventure|Thriller
## 7065 Action|Adventure|Sci-Fi|IMAX
## 7066 Documentary
## 7067 Comedy|Romance
## 7068 Comedy|Fantasy|Romance
## 7069 Crime|Drama|Thriller
## 7070 Action|Adventure|Animation|Children|Comedy|Romance
## 7071 Action|Drama|Thriller
## 7072 Animation|Comedy
## 7073 Drama
## 7074 Comedy|Drama|Horror
## 7075 Action|Adventure|Animation|Horror
## 7076 Comedy|Drama|Romance
## 7077 Comedy
## 7078 Action|Adventure|Fantasy
## 7079 Adventure|Fantasy|Mystery|Romance|IMAX
## 7080 Drama|War
## 7081 Drama|War
## 7082 Drama|Thriller
## 7083 Drama|Fantasy
## 7084 Documentary
## 7085 Comedy
## 7086 Crime|Drama
## 7087 Drama|Horror|Mystery|Thriller
## 7088 Comedy|Drama|Romance
## 7089 Crime|Horror|Thriller
## 7090 Horror|Thriller
## 7091 Mystery|Sci-Fi|Thriller
## 7092 Comedy|Drama|Romance
## 7093 Crime|Drama|Thriller
## 7094 Adventure|Children|Fantasy|Sci-Fi|Thriller
## 7095 Comedy|Drama|Musical|Romance
## 7096 Action|Adventure|Sci-Fi|Thriller
## 7097 Action|Thriller
## 7098 Action|Drama|War
## 7099 Western
## 7100 Drama|Fantasy|Romance|Sci-Fi
## 7101 Action|Animation|Sci-Fi
## 7102 Comedy
## 7103 Comedy
## 7104 Drama|Romance|Sci-Fi
## 7105 Drama|Romance
## 7106 Comedy
## 7107 Comedy|Romance
## 7108 Comedy|Documentary|Drama|Romance
## 7109 Action|Adventure|Children|Fantasy
## 7110 Adventure
## 7111 Drama|Mystery
## 7112 Action|Comedy|Drama|Thriller
## 7113 Documentary
## 7114 Comedy
## 7115 Fantasy|Horror
## 7116 Comedy
## 7117 Drama
## 7118 Horror|Thriller
## 7119 Crime|Drama|Mystery|Romance|Thriller
## 7120 Adventure|Animation|Sci-Fi
## 7121 Comedy|Sci-Fi
## 7122 Drama|Mystery
## 7123 Action|Adventure|Animation|Fantasy|Sci-Fi
## 7124 Documentary
## 7125 Horror|Sci-Fi|Thriller
## 7126 Drama
## 7127 Action|Comedy|Drama
## 7128 Action|Adventure|Fantasy
## 7129 Comedy|Horror|Sci-Fi|Thriller
## 7130 Comedy|Crime|Drama|Thriller
## 7131 Comedy
## 7132 Horror|Thriller
## 7133 Action|Sci-Fi|Thriller
## 7134 Animation|Children|Fantasy|IMAX
## 7135 Comedy|Drama
## 7136 Documentary
## 7137 Comedy|Sci-Fi
## 7138 Drama|Horror
## 7139 Drama|Romance
## 7140 Horror
## 7141 Horror|Thriller
## 7142 Comedy|Drama
## 7143 Drama
## 7144 Documentary|Drama
## 7145 Documentary
## 7146 Comedy|Drama
## 7147 Comedy|Drama
## 7148 Action|Fantasy|Sci-Fi
## 7149 Animation|Sci-Fi
## 7150 Action|Animation|Comedy|Horror|Thriller
## 7151 Comedy|Horror|Thriller
## 7152 Comedy|Drama
## 7153 Comedy
## 7154 Action|Sci-Fi|Thriller
## 7155 Action|Comedy|Horror
## 7156 Comedy|Drama|Mystery
## 7157 Drama|Romance
## 7158 Drama
## 7159 Documentary
## 7160 Comedy|Romance
## 7161 Comedy|Horror
## 7162 Adventure|Children|Drama|Fantasy|IMAX
## 7163 Action|Adventure|Drama|War
## 7164 Drama|Romance
## 7165 Drama|Thriller
## 7166 Drama
## 7167 Animation|Comedy|Drama
## 7168 Drama|Romance
## 7169 Action
## 7170 Adventure|Comedy|Romance
## 7171 Action|Adventure|Drama|Fantasy|Romance|Sci-Fi|Thriller
## 7172 Drama|Romance
## 7173 Animation|Drama|Mystery|Sci-Fi|Thriller
## 7174 Crime|Horror|Mystery|Thriller
## 7175 Action|Comedy|Drama|Romance
## 7176 Action|Adventure|Comedy|Fantasy|Horror|Thriller
## 7177 Action|Crime|Drama|Thriller
## 7178 Action|Comedy
## 7179 Comedy|Drama|War
## 7180 Comedy
## 7181 Adventure|Animation|Children|Comedy|Crime
## 7182 Animation|Children|Drama|Fantasy|IMAX
## 7183 Action|Adventure|Drama|Sci-Fi
## 7184 Drama
## 7185 Animation|Children|Comedy|Fantasy
## 7186 Action|Drama|Sci-Fi|Thriller
## 7187 Drama
## 7188 Crime|Drama
## 7189 Drama|Fantasy|Horror|Romance|Thriller
## 7190 Action|Thriller
## 7191 Drama|Romance|War
## 7192 Action|Crime|Drama|Thriller
## 7193 Action|Drama
## 7194 Action|Thriller
## 7195 Action|Adventure|Animation|Comedy|Thriller
## 7196 Animation
## 7197 Drama|Thriller|War
## 7198 Drama
## 7199 Drama
## 7200 Animation|Comedy|Fantasy
## 7201 Drama
## 7202 Comedy
## 7203 Adventure|Animation|Children|Comedy|Sci-Fi
## 7204 Documentary
## 7205 Drama
## 7206 Crime|Drama|Fantasy|Horror|Thriller
## 7207 Drama
## 7208 Animation|Children|Fantasy|Musical|Romance
## 7209 Action
## 7210 Comedy|Crime|Drama|Romance
## 7211 Fantasy|Romance
## 7212 Action|Adventure|Fantasy
## 7213 Action|Adventure|Sci-Fi|IMAX
## 7214 Comedy|Romance
## 7215 Action|Crime|Mystery|Thriller
## 7216 Drama|Romance
## 7217 Animation|Children|Comedy|Musical
## 7218 Comedy
## 7219 Comedy|Horror
## 7220 Horror|Thriller
## 7221 Comedy|Drama|Romance
## 7222 Action|Drama|Horror|Thriller
## 7223 Drama
## 7224 Comedy|Romance
## 7225 Action|Adventure|Drama
## 7226 Action|Crime|Mystery
## 7227 Crime|Drama
## 7228 Crime|Drama
## 7229 Comedy|Crime
## 7230 Action|Horror|Thriller
## 7231 Action|Adventure
## 7232 Comedy
## 7233 Comedy|Romance
## 7234 Action|Comedy|Crime
## 7235 Action|Comedy|Drama
## 7236 Comedy|Drama
## 7237 Action|Crime|Drama|Thriller
## 7238 Adventure|Children|Comedy|Fantasy
## 7239 Crime|Drama|Thriller
## 7240 Comedy|Drama
## 7241 Adventure|Animation|Children|Fantasy|Musical
## 7242 Comedy
## 7243 Action|Crime|Drama
## 7244 Comedy|Drama|Romance
## 7245 Action|Fantasy|Horror|Thriller
## 7246 Comedy|Horror
## 7247 Children|Fantasy|Musical
## 7248 Animation|Fantasy|Horror|Sci-Fi
## 7249 Comedy|Romance
## 7250 Documentary|Drama
## 7251 Drama|Horror|Mystery|Thriller
## 7252 Comedy|Drama|Romance
## 7253 Children|Drama|Romance
## 7254 Drama
## 7255 Comedy|Drama|War
## 7256 Horror|Thriller
## 7257 Comedy|Romance
## 7258 Horror|Thriller
## 7259 Drama|Mystery|Thriller
## 7260 Drama|Romance
## 7261 Action|Crime|Drama|Mystery|Thriller
## 7262 Adventure|Fantasy
## 7263 Action|Comedy|Crime
## 7264 Drama|Mystery|Thriller
## 7265 Animation|Fantasy
## 7266 Action|Children|Comedy
## 7267 Adventure|Drama|Romance
## 7268 Comedy
## 7269 Action|Sci-Fi
## 7270 Documentary
## 7271 Comedy
## 7272 Action|Drama|Horror|Sci-Fi|Thriller
## 7273 Drama|Romance|War
## 7274 Documentary|Drama
## 7275 Comedy|Fantasy
## 7276 Comedy|Crime|Drama|Mystery
## 7277 Horror|Thriller
## 7278 Comedy|Drama|Romance
## 7279 Adventure|Fantasy|IMAX
## 7280 Animation
## 7281 Action|Drama|Thriller|War
## 7282 Action|Crime
## 7283 Drama|Horror|Sci-Fi
## 7284 Comedy|Drama
## 7285 Comedy
## 7286 Crime|Drama|Thriller
## 7287 Drama|Romance
## 7288 Horror|Thriller|Western
## 7289 Drama|Horror|Thriller
## 7290 Action|Adventure|Sci-Fi
## 7291 Drama
## 7292 Comedy
## 7293 Action|Comedy|Romance
## 7294 Comedy|Crime|Drama|Thriller
## 7295 Comedy
## 7296 Documentary
## 7297 Action|Sci-Fi|Thriller
## 7298 Horror|Thriller
## 7299 Documentary|Drama
## 7300 Comedy
## 7301 Comedy|Sci-Fi
## 7302 Crime|Drama|Mystery|Thriller
## 7303 Adventure|Animation|Children|Fantasy|IMAX
## 7304 Crime|Thriller
## 7305 Comedy|Crime
## 7306 Action|Adventure|Drama|Fantasy
## 7307 Action|Comedy
## 7308 Action|Comedy|Romance
## 7309 Animation|Children|Comedy|Romance
## 7310 Documentary
## 7311 Action|Adventure|Comedy
## 7312 Crime|Documentary
## 7313 Drama|Musical
## 7314 Documentary
## 7315 Comedy
## 7316 Action|Drama|War
## 7317 Children|Comedy
## 7318 Comedy|Documentary
## 7319 Drama
## 7320 Action|Adventure|Drama|Mystery|Thriller
## 7321 Drama|Romance
## 7322 Comedy|Drama|Romance
## 7323 Horror
## 7324 Comedy|Documentary
## 7325 Action|Adventure|Sci-Fi|Thriller|IMAX
## 7326 Action|Comedy
## 7327 Comedy
## 7328 Adventure|Animation|Drama
## 7329 Sci-Fi
## 7330 Fantasy|Horror|Thriller
## 7331 Comedy|Drama
## 7332 Adventure|Comedy
## 7333 Crime|Drama
## 7334 Action|Adventure|Drama|Romance|War
## 7335 Drama|Romance
## 7336 Action|Drama
## 7337 Comedy|Musical|Sci-Fi|Western
## 7338 Comedy|Drama|Romance
## 7339 Drama|Romance
## 7340 Action|Comedy
## 7341 Mystery|Thriller
## 7342 Drama|War
## 7343 Action|Adventure|Fantasy|Romance|IMAX
## 7344 Comedy|Drama
## 7345 Comedy|Drama|War
## 7346 Comedy
## 7347 Comedy|Drama|Romance
## 7348 Comedy
## 7349 Drama|Thriller
## 7350 Comedy|Romance
## 7351 Horror|Sci-Fi|Thriller
## 7352 Drama|Romance
## 7353 Mystery|Thriller
## 7354 Action|Drama|Thriller|Western
## 7355 Action|Comedy|Thriller
## 7356 Adventure|Animation|Children|Comedy|Fantasy|IMAX
## 7357 Comedy
## 7358 Drama|Thriller
## 7359 Comedy|Western
## 7360 Comedy|Horror
## 7361 Adventure|Animation|Children|Comedy|Fantasy|IMAX
## 7362 Comedy|Drama|Fantasy|Romance
## 7363 Documentary
## 7364 Fantasy|Romance|Thriller|IMAX
## 7365 Drama
## 7366 Action|Adventure|Fantasy
## 7367 Drama
## 7368 Documentary
## 7369 Animation|Comedy|Fantasy
## 7370 Action|Sci-Fi|Thriller
## 7371 Documentary
## 7372 Animation|Children|Comedy|Crime
## 7373 Action|Crime|Drama|Mystery|Sci-Fi|Thriller|IMAX
## 7374 Comedy
## 7375 Action|Adventure|Children|Comedy|Fantasy
## 7376 Action|Comedy|Romance
## 7377 Action|Children|Drama
## 7378 Comedy|Drama
## 7379 Horror|Thriller
## 7380 Drama|Thriller
## 7381 Action|Animation
## 7382 Action|Thriller
## 7383 Comedy|Crime|Mystery
## 7384 Comedy|Crime|Romance
## 7385 Drama|Fantasy|Romance|Sci-Fi
## 7386 Comedy
## 7387 Crime|Drama|Thriller
## 7388 Crime
## 7389 Action
## 7390 Children|Comedy
## 7391 Comedy|Romance
## 7392 Action|Comedy
## 7393 Crime|Documentary
## 7394 Comedy|Drama
## 7395 Action|Adventure|Thriller
## 7396 Action|Comedy|Fantasy|Musical|Romance
## 7397 Drama
## 7398 Fantasy|Horror|Mystery|Thriller
## 7399 Action|Horror|Thriller
## 7400 Action|Adventure|Fantasy|Mystery
## 7401 Comedy|Drama|Mystery
## 7402 Comedy|Drama
## 7403 Action|Adventure|Animation|Fantasy|Sci-Fi
## 7404 Horror|Thriller
## 7405 Action|Crime|Drama
## 7406 Drama|Thriller
## 7407 Comedy|Documentary
## 7408 Action|Horror|Thriller
## 7409 Comedy|Romance
## 7410 Action|Adventure|Comedy|Crime|Thriller
## 7411 Comedy|Romance
## 7412 Action|Horror|Sci-Fi|Thriller|IMAX
## 7413 Drama
## 7414 Drama
## 7415 Documentary|Drama|Mystery
## 7416 Crime|Drama|Thriller
## 7417 Comedy|Romance
## 7418 Drama|Romance
## 7419 Drama
## 7420 Comedy|Drama
## 7421 Comedy|Drama|Romance
## 7422 Comedy|Drama|Romance
## 7423 Drama
## 7424 Adventure|Animation|Fantasy|IMAX
## 7425 Comedy|Drama
## 7426 Comedy|Crime|Drama
## 7427 Adventure|Children|Fantasy
## 7428 Drama|Horror|Mystery
## 7429 Animation|Fantasy
## 7430 Adventure|Drama
## 7431 Horror|Mystery|Thriller
## 7432 Comedy
## 7433 Comedy|Romance
## 7434 Documentary|Mystery
## 7435 Comedy|Romance
## 7436 Drama|Thriller
## 7437 Documentary
## 7438 Drama|Sci-Fi
## 7439 Drama|Romance|Sci-Fi
## 7440 Animation
## 7441 Drama
## 7442 Action|Adventure|Comedy|Crime|Drama|Film-Noir|Horror|Mystery|Thriller|Western
## 7443 Action|Comedy|Documentary
## 7444 Documentary|War
## 7445 Documentary
## 7446 Action|Comedy
## 7447 Drama
## 7448 Comedy|Romance
## 7449 Horror|IMAX
## 7450 Drama|Romance
## 7451 Drama|Fantasy
## 7452 Action|Crime|Drama
## 7453 Horror|Mystery|Thriller
## 7454 Comedy
## 7455 Adventure|Drama|Thriller
## 7456 Action|Animation|Children|Comedy|Sci-Fi|IMAX
## 7457 Drama|Thriller
## 7458 Drama|Romance|Western
## 7459 Action|Drama|Thriller
## 7460 Comedy|Drama|Romance
## 7461 Drama
## 7462 Crime|Drama|Romance|Thriller
## 7463 Drama
## 7464 Drama
## 7465 Comedy|Drama
## 7466 Action|Adventure|Fantasy|IMAX
## 7467 Drama
## 7468 Animation|Children|Comedy|Fantasy|Musical|Romance|IMAX
## 7469 Documentary
## 7470 Drama
## 7471 Comedy|Drama|Romance
## 7472 Horror
## 7473 Comedy|Crime
## 7474 Drama
## 7475 Crime|Romance
## 7476 Sci-Fi|Thriller
## 7477 Drama|Fantasy|Romance
## 7478 Comedy|Drama|Romance
## 7479 Adventure|Children|Fantasy
## 7480 Drama|Thriller
## 7481 Action|Comedy
## 7482 Comedy|Horror|Thriller
## 7483 Drama|Mystery|Thriller
## 7484 Western
## 7485 Action|Adventure|Sci-Fi|IMAX
## 7486 Comedy|Drama|Romance
## 7487 Drama
## 7488 Drama
## 7489 Action|Drama
## 7490 Crime|Thriller
## 7491 Drama
## 7492 Action|Crime|Drama
## 7493 Action|Adventure|Comedy|Drama|War
## 7494 Drama
## 7495 Comedy
## 7496 Comedy
## 7497 Adventure|Comedy|Fantasy
## 7498 Adventure|Documentary|Western
## 7499 Drama|Musical|Romance
## 7500 Animation|Children|Fantasy
## 7501 Comedy|Horror
## 7502 Children|Comedy
## 7503 Comedy|Drama
## 7504 Action|Comedy|Crime|Fantasy|Thriller|IMAX
## 7505 Drama
## 7506 Action|Fantasy|Western
## 7507 Adventure|Drama|Fantasy
## 7508 Drama|Horror
## 7509 Action|Sci-Fi|Thriller|Western|IMAX
## 7510 Crime|Drama|Thriller
## 7511 Animation|Children
## 7512 Documentary
## 7513 Comedy|Drama
## 7514 Comedy|Drama|Romance
## 7515 Comedy|Drama
## 7516 Sci-Fi|Thriller
## 7517 Documentary
## 7518 Action|Animation|Drama|Sci-Fi
## 7519 Crime|Horror|Thriller
## 7520 Drama
## 7521 Comedy|Romance
## 7522 Documentary
## 7523 Comedy|Romance
## 7524 Crime|Drama|Thriller
## 7525 Action|Adventure|Animation|Sci-Fi
## 7526 Comedy
## 7527 Action|Comedy|Drama
## 7528 Comedy
## 7529 Drama|Mystery|Thriller
## 7530 Comedy
## 7531 Adventure|Animation|Children|Comedy|Fantasy|Romance
## 7532 Comedy|Thriller
## 7533 Comedy|Drama|Romance
## 7534 Adventure|Comedy|Sci-Fi
## 7535 Horror|Sci-Fi
## 7536 Crime|Drama
## 7537 Comedy|Drama|Romance
## 7538 Action|Fantasy|Thriller
## 7539 Action|Adventure|Animation|Children|Comedy|Western
## 7540 Comedy|Drama
## 7541 Drama|Horror
## 7542 Romance|Sci-Fi|Thriller
## 7543 Action|Drama|Thriller
## 7544 Comedy
## 7545 Adventure|Drama
## 7546 Action|Sci-Fi|Thriller|IMAX
## 7547 Action|Sci-Fi|War
## 7548 Adventure|Animation|Comedy|Sci-Fi
## 7549 Drama
## 7550 Animation|Children
## 7551 Action|Adventure|Animation|Children|Comedy|Sci-Fi|IMAX
## 7552 Adventure|Children|Comedy|Mystery
## 7553 Animation|Children
## 7554 Action|Comedy
## 7555 Action|Crime|Drama
## 7556 Action|Crime
## 7557 Comedy|Romance
## 7558 Documentary
## 7559 Fantasy|Horror|Mystery|Thriller
## 7560 Comedy
## 7561 Action|Comedy|Drama
## 7562 Fantasy|Horror
## 7563 Action|Drama|Mystery|Sci-Fi|Thriller
## 7564 Drama|Romance
## 7565 Action|Fantasy|Thriller|IMAX
## 7566 Comedy|Romance
## 7567 Adventure|Animation|Children|Sci-Fi
## 7568 Documentary
## 7569 Animation|Comedy|Sci-Fi
## 7570 Fantasy|Horror|Thriller
## 7571 Action|Adventure|Crime|Thriller
## 7572 Comedy|Drama
## 7573 Drama|Romance
## 7574 Comedy|Drama
## 7575 Comedy
## 7576 Comedy|Crime
## 7577 Animation|Children|Comedy
## 7578 Comedy
## 7579 Horror|Thriller
## 7580 Action
## 7581 Action|Adventure|Mystery|Thriller
## 7582 Documentary
## 7583 Documentary
## 7584 Animation|Children|Comedy|Horror
## 7585 Comedy|Documentary
## 7586 Comedy
## 7587 Comedy|Horror|Mystery|Thriller
## 7588 Adventure|Animation|Children|Comedy
## 7589 Drama|Sci-Fi
## 7590 Action|Adventure|Drama|Fantasy|IMAX
## 7591 Comedy
## 7592 Comedy
## 7593 Drama|Mystery|Sci-Fi
## 7594 Comedy
## 7595 Drama
## 7596 Documentary
## 7597 Drama|Romance
## 7598 Adventure|Documentary
## 7599 Action|Crime
## 7600 Action|Crime|Drama|Thriller|IMAX
## 7601 Documentary
## 7602 Animation|Drama|Fantasy
## 7603 Drama|Mystery|War
## 7604 Action|Drama
## 7605 Comedy|Drama|Romance
## 7606 Comedy
## 7607 Action|Horror|Sci-Fi|Thriller
## 7608 Adventure|Fantasy|Sci-Fi
## 7609 Action|Adventure|Fantasy|IMAX
## 7610 Comedy|Fantasy|Romance
## 7611 Action|Crime|Thriller
## 7612 Drama
## 7613 Comedy
## 7614 Comedy
## 7615 Thriller
## 7616 Drama|Thriller
## 7617 Action|Comedy|Sci-Fi
## 7618 Adventure|Comedy|Drama
## 7619 Action|Comedy
## 7620 Action|Adventure|Animation|Children|Comedy|IMAX
## 7621 Action|Adventure|Sci-Fi|Thriller|War
## 7622 Comedy|Drama|Romance
## 7623 Documentary
## 7624 Comedy|Drama
## 7625 Drama
## 7626 Mystery|Sci-Fi|Thriller|IMAX
## 7627 Comedy|Drama
## 7628 Action|Adventure|Sci-Fi
## 7629 Comedy
## 7630 Comedy
## 7631 Comedy
## 7632 Action|Adventure|Sci-Fi|War|IMAX
## 7633 Comedy|Drama|Romance
## 7634 Action|Adventure|Comedy|Fantasy
## 7635 Drama
## 7636 Action|Crime|Thriller
## 7637 Animation|Comedy|Drama
## 7638 Comedy
## 7639 Comedy|Crime
## 7640 Adventure|Animation|Children|Comedy|IMAX
## 7641 Documentary
## 7642 Comedy|Crime
## 7643 Documentary
## 7644 Adventure|Comedy|Romance
## 7645 Action|Adventure|Drama|Fantasy|Mystery|IMAX
## 7646 Crime|Drama|Film-Noir|Thriller
## 7647 Action|Adventure|Sci-Fi|Thriller|War
## 7648 Comedy|Drama|Romance
## 7649 Drama|Romance
## 7650 Comedy|Crime
## 7651 Animation|Children|Comedy
## 7652 Horror
## 7653 Action|Drama|War
## 7654 Animation|Comedy
## 7655 Animation|Children|Comedy
## 7656 Comedy|Romance
## 7657 Comedy|Drama
## 7658 Action|Crime|Thriller
## 7659 Crime|Drama|Thriller
## 7660 Comedy
## 7661 Drama
## 7662 Action|Sci-Fi|Thriller
## 7663 Action|Drama|Sci-Fi|Thriller
## 7664 Comedy
## 7665 Comedy
## 7666 Drama
## 7667 Action|Comedy|Crime
## 7668 Comedy
## 7669 Horror|Thriller|IMAX
## 7670 Comedy
## 7671 Horror|Thriller
## 7672 Comedy|Horror
## 7673 Drama|Romance|Sci-Fi
## 7674 Drama
## 7675 Horror
## 7676 Drama|Thriller
## 7677 Action|Adventure|Drama|Thriller
## 7678 Documentary
## 7679 Drama
## 7680 Action|Adventure|Fantasy
## 7681 Horror|Thriller
## 7682 Romance|Thriller
## 7683 Adventure|Comedy
## 7684 Action|Crime|Horror|Thriller
## 7685 Documentary|Musical
## 7686 Comedy
## 7687 Horror|Thriller
## 7688 Sci-Fi|Thriller|IMAX
## 7689 Drama
## 7690 Drama
## 7691 Drama|Thriller
## 7692 Adventure|Animation|Children
## 7693 Drama|Romance
## 7694 Action|Adventure|Sci-Fi|IMAX
## 7695 Drama|Film-Noir|Thriller
## 7696 Drama
## 7697 Drama|Thriller
## 7698 Drama
## 7699 Drama
## 7700 Horror|Mystery|Thriller
## 7701 Action|Thriller
## 7702 Action|Drama|Romance
## 7703 Comedy|Drama
## 7704 Comedy|Drama|Sci-Fi
## 7705 Comedy|Drama|Romance
## 7706 Comedy
## 7707 Horror|Sci-Fi
## 7708 Drama
## 7709 Action|Drama
## 7710 Documentary
## 7711 Action|Drama|Sci-Fi|IMAX
## 7712 Comedy|Drama|Musical
## 7713 Horror|Mystery|Sci-Fi|Thriller
## 7714 Drama
## 7715 Drama
## 7716 Drama|Thriller
## 7717 Drama|Thriller
## 7718 Action|Thriller|War
## 7719 Action|Adventure
## 7720 Crime|Sci-Fi|Thriller
## 7721 Drama
## 7722 Comedy|Drama
## 7723 Drama|Thriller
## 7724 Horror
## 7725 Drama
## 7726 Adventure|Comedy|Thriller
## 7727 Action|Drama|Mystery|Thriller
## 7728 Crime|Drama|Thriller
## 7729 Drama
## 7730 Comedy|Romance
## 7731 Action|Crime|Thriller
## 7732 Action|Animation|Crime
## 7733 Documentary
## 7734 Adventure|Animation|Comedy|Fantasy|IMAX
## 7735 Action|Comedy|Crime
## 7736 Drama
## 7737 Action|Crime|Drama|Mystery|Thriller
## 7738 Action|Animation|Mystery|IMAX
## 7739 Documentary
## 7740 Drama
## 7741 Documentary
## 7742 Children|Drama|Mystery
## 7743 Action|Drama|Fantasy
## 7744 Comedy
## 7745 Documentary
## 7746 Adventure|Crime|Drama
## 7747 Comedy|Drama
## 7748 Drama|Romance
## 7749 Children|Comedy|Musical
## 7750 Adventure|Drama|Fantasy|Romance
## 7751 Drama|War
## 7752 Comedy|Drama|Thriller
## 7753 Animation|Comedy|Sci-Fi
## 7754 Drama|Musical|Romance
## 7755 Children|Comedy|Musical|Romance
## 7756 Action|Drama|Fantasy
## 7757 Comedy
## 7758 Drama
## 7759 Comedy|Romance
## 7760 Adventure|Animation|Children|Comedy
## 7761 Adventure|Animation|Children|Comedy|Fantasy
## 7762 Animation|Children|Comedy|IMAX
## 7763 Animation|Children|Comedy|Drama
## 7764 Action|Drama
## 7765 Action|Crime|Film-Noir
## 7766 Action|Adventure
## 7767 Animation|Children|Musical
## 7768 Action|Adventure|Drama|Sci-Fi|Thriller
## 7769 Action|Adventure|Crime|IMAX
## 7770 Action|Adventure|Drama|Thriller|IMAX
## 7771 Action|Adventure|Comedy|Crime|Mystery|Thriller
## 7772 Drama|Thriller
## 7773 Comedy|Drama
## 7774 Comedy|Romance
## 7775 Action|Adventure|Thriller|IMAX
## 7776 Comedy|Drama
## 7777 Drama|Thriller
## 7778 Action|Horror|Sci-Fi|Thriller
## 7779 Comedy|Drama|Romance
## 7780 Animation|Comedy
## 7781 Comedy|Thriller
## 7782 Comedy
## 7783 Comedy|Drama|Fantasy
## 7784 Action|Crime|Drama|Thriller
## 7785 Documentary
## 7786 Documentary
## 7787 Comedy|Musical
## 7788 Drama
## 7789 Drama
## 7790 Comedy|Horror
## 7791 Action|Fantasy|Horror|IMAX
## 7792 Action|Drama
## 7793 Crime|Thriller
## 7794 Drama
## 7795 Action|Thriller
## 7796 Comedy
## 7797 Drama|Thriller
## 7798 Drama
## 7799 Horror|Sci-Fi|Thriller
## 7800 Action|Drama|Thriller
## 7801 Action|Adventure|Drama|War
## 7802 Drama|War
## 7803 Comedy|Drama
## 7804 Action|Comedy|Crime
## 7805 Horror|Thriller
## 7806 Adventure|Animation|Children|Comedy|Fantasy|Romance
## 7807 Horror
## 7808 Action|Sci-Fi|Thriller
## 7809 Drama|Horror|Thriller
## 7810 Comedy
## 7811 Drama|Romance
## 7812 Documentary
## 7813 Comedy|Documentary
## 7814 Action|Crime|Mystery|Thriller
## 7815 Drama|Romance
## 7816 Comedy
## 7817 Crime|Drama|Fantasy
## 7818 Children|Comedy|Drama
## 7819 Comedy|Drama|Romance
## 7820 Drama|Musical
## 7821 Action|Adventure|Comedy|Sci-Fi|IMAX
## 7822 Drama|Romance|Sci-Fi
## 7823 Children|Fantasy
## 7824 Horror|Sci-Fi
## 7825 Action|Fantasy|Thriller
## 7826 Drama
## 7827 Comedy|Musical
## 7828 Comedy|Musical
## 7829 Comedy|Crime
## 7830 Documentary|War
## 7831 Comedy|Drama
## 7832 Comedy
## 7833 Action|Adventure|Horror
## 7834 Crime|Thriller|Western
## 7835 Animation|Children
## 7836 Drama|Thriller
## 7837 Comedy
## 7838 Animation|Fantasy|Musical|IMAX
## 7839 Comedy
## 7840 Action|Thriller|War
## 7841 Comedy|Crime
## 7842 Action|Comedy|Romance
## 7843 Action|Adventure|Sci-Fi|IMAX
## 7844 Comedy|Drama
## 7845 Drama|Thriller
## 7846 Action|Comedy|Crime
## 7847 Comedy|Drama
## 7848 Action|Sci-Fi|Thriller
## 7849 Crime|Drama|Thriller
## 7850 Action|Adventure|Drama
## 7851 Documentary
## 7852 Comedy|Romance
## 7853 Comedy|Drama|Romance
## 7854 Action|Adventure|Fantasy|IMAX
## 7855 Drama
## 7856 Action|Comedy|Sci-Fi
## 7857 Horror
## 7858 Comedy
## 7859 Action|Crime
## 7860 Comedy|Horror|Sci-Fi|Thriller
## 7861 Comedy|Drama
## 7862 Comedy
## 7863 Mystery|Thriller
## 7864 Drama|Romance
## 7865 Action|Thriller
## 7866 Adventure|Comedy|Fantasy
## 7867 Action|Sci-Fi|Thriller|IMAX
## 7868 Comedy|Drama
## 7869 Documentary
## 7870 Documentary
## 7871 Comedy|Romance
## 7872 Action|Animation|Fantasy
## 7873 Sci-Fi|Thriller
## 7874 Comedy|Romance
## 7875 Comedy
## 7876 Drama
## 7877 Action|Crime|Thriller
## 7878 Comedy|Horror|IMAX
## 7879 Drama|Thriller
## 7880 Comedy|Romance
## 7881 Comedy|Drama
## 7882 Comedy
## 7883 Documentary
## 7884 Action|Comedy|Sci-Fi|IMAX
## 7885 Action|Adventure|Drama
## 7886 Drama|Mystery|Sci-Fi
## 7887 Drama|Fantasy|Sci-Fi
## 7888 Adventure|Animation|Children|Comedy
## 7889 Action|Horror|Sci-Fi|IMAX
## 7890 Horror|Mystery|Thriller
## 7891 Comedy|Crime|Drama
## 7892 Drama|Thriller
## 7893 Drama|Romance
## 7894 Comedy
## 7895 Comedy|Drama|Romance
## 7896 Action|Crime|Drama|Thriller
## 7897 Action|Animation
## 7898 Comedy|Drama
## 7899 Comedy|Drama
## 7900 Adventure|Animation|Children|Comedy|IMAX
## 7901 Comedy|Drama
## 7902 Action|Adventure|Animation|Children
## 7903 Action|Adventure|Animation|Children
## 7904 Action|Animation|Fantasy
## 7905 Action|Adventure|Animation|Children
## 7906 Action|Adventure|Animation|Sci-Fi|Thriller
## 7907 Action|Adventure|Animation|Children
## 7908 Animation|Children|Fantasy|Musical
## 7909 Drama
## 7910 Action|Adventure|Animation|Sci-Fi
## 7911 Adventure|Animation|Children
## 7912 Comedy|Drama|Romance
## 7913 Comedy
## 7914 Action|Fantasy|Horror|Thriller
## 7915 Documentary
## 7916 Comedy|Drama|Musical|IMAX
## 7917 Comedy|Drama|Romance
## 7918 Animation|Children|Comedy|Fantasy
## 7919 Adventure|Animation|Children|Comedy
## 7920 Animation|Comedy|Musical
## 7921 Comedy|Fantasy
## 7922 Drama|Romance
## 7923 Action|Adventure|Animation
## 7924 Action|Adventure|Animation
## 7925 Action|Adventure|Animation
## 7926 Action|Adventure|Animation
## 7927 Crime|Drama|Thriller
## 7928 Action|Adventure|Sci-Fi|IMAX
## 7929 Action|Adventure|Animation|Fantasy
## 7930 Adventure|Animation|Comedy
## 7931 Drama|Fantasy
## 7932 Crime|Drama|Thriller
## 7933 Drama
## 7934 Horror
## 7935 Animation|Children
## 7936 Comedy|Thriller
## 7937 Adventure
## 7938 Comedy|Sci-Fi
## 7939 Children|Musical|Mystery
## 7940 Comedy
## 7941 Crime|Thriller
## 7942 Action|Adventure|Animation
## 7943 Action|Adventure|Animation
## 7944 Action|Horror|Sci-Fi|Thriller
## 7945 Drama|Fantasy
## 7946 Comedy|Fantasy|Romance
## 7947 Animation|Children|Comedy
## 7948 Comedy|Fantasy|Romance
## 7949 Action|Sci-Fi|Thriller
## 7950 Comedy|Drama
## 7951 Comedy
## 7952 Action|Adventure|Animation
## 7953 Action|Adventure|Animation
## 7954 Action|Adventure|Animation
## 7955 Drama
## 7956 Action|Adventure|Thriller|IMAX
## 7957 Drama
## 7958 Comedy
## 7959 Crime|Thriller
## 7960 Comedy|Drama
## 7961 Documentary
## 7962 Adventure|Animation|Comedy
## 7963 Children|Comedy
## 7964 Drama
## 7965 Documentary
## 7966 Action|Thriller
## 7967 Comedy|Drama|Fantasy
## 7968 Crime|Drama
## 7969 Comedy|Horror
## 7970 Crime|Drama|Mystery
## 7971 Documentary
## 7972 Drama|Thriller
## 7973 Drama|Mystery
## 7974 Comedy|Romance
## 7975 Documentary
## 7976 Drama|Romance
## 7977 Comedy|Musical
## 7978 Documentary
## 7979 Animation|Comedy|Sci-Fi
## 7980 Action|Crime|Sci-Fi
## 7981 Comedy
## 7982 Comedy|Drama|Sci-Fi
## 7983 Action|Horror|Sci-Fi|IMAX
## 7984 Comedy|Romance
## 7985 Drama
## 7986 Action|Sci-Fi
## 7987 Crime|Drama|Thriller
## 7988 Horror|Thriller
## 7989 Drama|Romance
## 7990 Drama
## 7991 Drama|Fantasy|Musical|Mystery|Sci-Fi
## 7992 Action|Crime|Drama|Thriller
## 7993 Horror|Thriller
## 7994 Comedy|Fantasy|Romance
## 7995 Comedy|Drama|Romance
## 7996 Crime|Drama|Mystery
## 7997 Comedy|Drama|Romance
## 7998 Drama|Romance
## 7999 Documentary
## 8000 Animation|Comedy|Horror|IMAX
## 8001 Horror|Thriller
## 8002 Documentary
## 8003 Animation|Children|Comedy
## 8004 Documentary
## 8005 Action|Crime|Mystery
## 8006 Drama|Thriller
## 8007 Comedy|Crime
## 8008 Comedy|Drama
## 8009 Action|Drama|Thriller
## 8010 Horror|Thriller
## 8011 Adventure|Comedy
## 8012 Horror|IMAX
## 8013 Action|Crime|Mystery|Thriller
## 8014 Drama|Sci-Fi|IMAX
## 8015 Action|Adventure|Comedy|Documentary|Fantasy
## 8016 Horror|Mystery|Thriller
## 8017 Action|Comedy
## 8018 Comedy|Drama
## 8019 Crime|Drama|Thriller
## 8020 Documentary
## 8021 Drama
## 8022 Comedy|Drama
## 8023 Animation|Comedy
## 8024 Comedy|Drama
## 8025 Drama
## 8026 Drama
## 8027 Adventure|Drama|IMAX
## 8028 Action|Adventure|Crime
## 8029 Horror|Sci-Fi|Thriller
## 8030 Children|Crime|Drama
## 8031 Comedy|Documentary
## 8032 Documentary
## 8033 Action|Animation|Sci-Fi
## 8034 Drama|War
## 8035 Comedy
## 8036 Comedy|Horror|Romance
## 8037 Adventure|Drama|Fantasy|Romance|IMAX
## 8038 Comedy|Drama|Romance
## 8039 Action|War
## 8040 Adventure|Animation|Children|Fantasy|IMAX
## 8041 Comedy
## 8042 Crime|Drama|Thriller
## 8043 Drama|Fantasy|Thriller
## 8044 Animation|Comedy|Romance
## 8045 Action|Comedy
## 8046 Action|Comedy
## 8047 Drama
## 8048 Animation|Drama|Romance
## 8049 Action|Animation|Sci-Fi
## 8050 Action|Comedy|Crime
## 8051 Action|Comedy
## 8052 Adventure|Comedy
## 8053 Animation|Comedy
## 8054 Adventure|Fantasy|IMAX
## 8055 Comedy|Drama
## 8056 Comedy|Romance
## 8057 Action|Drama|Thriller
## 8058 Action|Crime|Drama
## 8059 Comedy|Horror|Romance
## 8060 Comedy|Drama
## 8061 Comedy|Romance
## 8062 Comedy
## 8063 Action|Crime|Thriller
## 8064 Action|Drama|Western
## 8065 Drama
## 8066 Comedy|Horror
## 8067 Comedy|Horror
## 8068 Drama|Thriller
## 8069 Drama|Musical|Romance|IMAX
## 8070 Horror
## 8071 Comedy
## 8072 Comedy|Fantasy|Horror
## 8073 Drama|Romance
## 8074 Drama
## 8075 Comedy|Drama
## 8076 Comedy
## 8077 Horror|Mystery|Thriller
## 8078 Action|Crime|Drama
## 8079 Crime|Drama|Thriller
## 8080 Animation|Comedy|Drama|Fantasy|Sci-Fi
## 8081 Action|Animation
## 8082 Documentary
## 8083 Comedy|Romance|Sci-Fi
## 8084 Action|Crime|Thriller
## 8085 Romance|Sci-Fi|Thriller
## 8086 Crime|Drama|Thriller
## 8087 Documentary
## 8088 Comedy
## 8089 Comedy
## 8090 Documentary
## 8091 Comedy
## 8092 Action|Fantasy|Horror|IMAX
## 8093 Comedy
## 8094 Comedy|Drama
## 8095 Drama|Romance
## 8096 Drama|Romance|Sci-Fi
## 8097 Action|Thriller
## 8098 Drama|Horror
## 8099 Comedy|Crime
## 8100 Crime|Drama|Mystery|Thriller
## 8101 Comedy|Crime
## 8102 Horror
## 8103 Drama|Fantasy|Romance
## 8104 Action|Crime|Thriller|IMAX
## 8105 Comedy
## 8106 Drama|Mystery|Romance
## 8107 Documentary
## 8108 Documentary
## 8109 Action|Sci-Fi|Thriller
## 8110 Adventure|Animation|Comedy|Sci-Fi
## 8111 Drama|Romance
## 8112 Action|Drama|Thriller
## 8113 Horror|Sci-Fi|Thriller
## 8114 Comedy|Drama
## 8115 Adventure|Comedy|Fantasy|Romance|IMAX
## 8116 Action|Horror|Thriller
## 8117 Adventure|Fantasy|IMAX
## 8118 Drama
## 8119 Comedy
## 8120 Animation|Comedy|Horror|Musical
## 8121 Action|Adventure|Sci-Fi|Thriller|IMAX
## 8122 Drama|Mystery|Thriller
## 8123 Action|Adventure|Fantasy|IMAX
## 8124 Adventure|Animation|Comedy
## 8125 Comedy
## 8126 Drama|Thriller
## 8127 Action|Thriller
## 8128 Comedy|Drama|Romance
## 8129 Action|Animation|Comedy
## 8130 Crime|Drama
## 8131 Comedy|Fantasy|Thriller
## 8132 Drama
## 8133 Action|Adventure|Romance
## 8134 Comedy|Romance
## 8135 Horror
## 8136 Crime|Thriller
## 8137 Adventure|Comedy|Romance
## 8138 Action|Adventure|Sci-Fi|IMAX
## 8139 Adventure|Drama|Thriller
## 8140 Drama
## 8141 Animation|Fantasy
## 8142 Drama|Thriller
## 8143 Animation
## 8144 Children|Horror|Sci-Fi
## 8145 Action|Comedy|Crime
## 8146 Animation
## 8147 Horror|Thriller
## 8148 Comedy|Horror|Sci-Fi
## 8149 Action|Animation|Fantasy
## 8150 Action|Drama|IMAX
## 8151 Action|Comedy
## 8152 Action|Sci-Fi|Thriller|IMAX
## 8153 Comedy|Drama
## 8154 Adventure|Crime|Drama
## 8155 Comedy
## 8156 Crime|Thriller
## 8157 Action|Adventure|Drama
## 8158 Comedy|Drama
## 8159 Drama
## 8160 Action|Adventure|Sci-Fi|IMAX
## 8161 Comedy
## 8162 Documentary|Fantasy
## 8163 Comedy
## 8164 Adventure|Comedy
## 8165 Drama|Thriller
## 8166 Comedy
## 8167 Action|Crime|Thriller|IMAX
## 8168 Adventure|Animation|Fantasy
## 8169 Action|Drama
## 8170 Documentary
## 8171 Comedy
## 8172 Action|Crime
## 8173 Comedy|Crime|Drama
## 8174 Comedy|Drama
## 8175 Horror|Thriller
## 8176 Drama
## 8177 Documentary
## 8178 Documentary
## 8179 Action|Adventure|Sci-Fi|IMAX
## 8180 Crime|Mystery|Thriller
## 8181 Horror|Thriller
## 8182 Comedy|Drama
## 8183 Comedy|Drama|Romance
## 8184 Action|Adventure|Fantasy|Sci-Fi|IMAX
## 8185 Comedy
## 8186 Crime|Horror|Thriller
## 8187 Comedy|Fantasy
## 8188 Documentary
## 8189 Crime|Drama
## 8190 Adventure|Animation|Comedy
## 8191 Comedy
## 8192 Action|Adventure|Animation
## 8193 Horror|Thriller
## 8194 Comedy|Romance
## 8195 Action|Adventure|Sci-Fi|IMAX
## 8196 Action|Adventure|Animation
## 8197 Thriller
## 8198 Comedy|Drama|Romance
## 8199 Action|Drama|Horror|IMAX
## 8200 Action|Drama|Sci-Fi|IMAX
## 8201 Animation|Children|Comedy|IMAX
## 8202 Action|Drama|Thriller|IMAX
## 8203 Action|Comedy|Sci-Fi
## 8204 Action|Crime|Thriller
## 8205 Action|Comedy|Crime
## 8206 Action|Adventure|Western|IMAX
## 8207 Crime|Drama|Mystery|Thriller
## 8208 Horror|Thriller
## 8209 Comedy|Romance
## 8210 Comedy|Drama|Romance
## 8211 Comedy|Drama
## 8212 Sci-Fi
## 8213 Comedy|Documentary
## 8214 Comedy|Drama|Romance
## 8215 Comedy
## 8216 Drama
## 8217 Action|Comedy|Fantasy
## 8218 Drama|Fantasy|Thriller|War
## 8219 Horror|Thriller
## 8220 Adventure|Animation|Children|Comedy|Fantasy
## 8221 Action|Adventure|Fantasy|Sci-Fi
## 8222 Comedy|Drama|Romance
## 8223 Action|Comedy|Crime|Thriller
## 8224 Comedy
## 8225 Comedy|Drama
## 8226 Action|Comedy|Crime
## 8227 Drama
## 8228 Comedy|Drama
## 8229 Action|Adventure|Sci-Fi
## 8230 Comedy
## 8231 Adventure|Children|Fantasy
## 8232 Animation|Children|Comedy
## 8233 Comedy
## 8234 Action|IMAX
## 8235 Action|Animation|Children|Crime
## 8236 Comedy|Crime
## 8237 Comedy
## 8238 Action|Comedy|Crime
## 8239 Action|Sci-Fi|Thriller|IMAX
## 8240 Adventure|Animation|Comedy
## 8241 Documentary
## 8242 Animation|Drama|Romance
## 8243 Drama
## 8244 Drama
## 8245 Comedy
## 8246 Drama|Fantasy|Romance
## 8247 Action|Animation|Sci-Fi
## 8248 Horror|Thriller
## 8249 Comedy
## 8250 Action|Crime
## 8251 Adventure|Animation|Sci-Fi
## 8252 Action|Crime
## 8253 Action|Sci-Fi|IMAX
## 8254 Comedy|Drama|Romance
## 8255 Adventure|Comedy|Musical|Sci-Fi
## 8256 Drama|Mystery|Thriller
## 8257 Comedy|Romance
## 8258 Horror|Thriller
## 8259 Action|Drama
## 8260 Action|Comedy|Crime
## 8261 Drama
## 8262 Action|Comedy|Thriller
## 8263 Comedy
## 8264 Action|Drama|War
## 8265 Adventure|Drama
## 8266 Comedy|Drama|Romance
## 8267 Comedy|Drama|Romance
## 8268 Drama|Fantasy
## 8269 Documentary
## 8270 Adventure|Comedy
## 8271 Comedy|Horror
## 8272 Crime|Drama|Thriller
## 8273 Drama|Romance
## 8274 Animation|Children|Comedy|Fantasy
## 8275 Adventure|Drama|Thriller|IMAX
## 8276 Animation|Children|Comedy|Musical
## 8277 Action|Crime|Thriller
## 8278 Comedy|Crime|Drama
## 8279 Action|Mystery|Thriller
## 8280 Comedy|Crime|Drama
## 8281 Drama|Horror
## 8282 Documentary
## 8283 Crime|Drama|Thriller
## 8284 Drama|Fantasy|Horror
## 8285 Comedy|Drama|Thriller
## 8286 Drama
## 8287 Action|Adventure|Drama
## 8288 Action|Adventure|Sci-Fi|IMAX
## 8289 Comedy
## 8290 Action|Adventure|Fantasy|IMAX
## 8291 Drama
## 8292 Drama
## 8293 Comedy|Drama|Romance
## 8294 Comedy|Drama
## 8295 Children|Drama|War
## 8296 Action|Adventure|Sci-Fi|IMAX
## 8297 Adventure|Fantasy|IMAX
## 8298 Action|Adventure|Fantasy
## 8299 Comedy
## 8300 Action|Comedy|Romance
## 8301 Comedy|Drama|Romance
## 8302 Adventure|Drama|Sci-Fi
## 8303 Crime|Drama|Horror
## 8304 Adventure|Animation|Comedy|Fantasy|Musical|Romance
## 8305 Drama
## 8306 Comedy|Crime|Drama
## 8307 Action|Crime|Thriller
## 8308 Drama
## 8309 Action|Animation|Drama
## 8310 Comedy|Drama
## 8311 Documentary
## 8312 Crime|Drama
## 8313 Adventure|Comedy|Drama
## 8314 Drama|Romance|Sci-Fi
## 8315 Action|Comedy|Sci-Fi
## 8316 Drama|Fantasy
## 8317 Action|Drama|Thriller|War
## 8318 Comedy|Drama
## 8319 Action|Drama
## 8320 Action|Drama|Mystery
## 8321 Comedy|Crime
## 8322 Comedy
## 8323 Action|Drama|Sci-Fi
## 8324 Comedy|Drama|War
## 8325 Adventure|Drama|Sci-Fi
## 8326 Comedy|Romance
## 8327 Horror|Mystery|Thriller
## 8328 Comedy|Crime
## 8329 Children|Comedy
## 8330 Action|Crime|Thriller
## 8331 Comedy
## 8332 Comedy
## 8333 Comedy
## 8334 Action|Adventure|Fantasy
## 8335 Drama|Horror|Romance
## 8336 Musical
## 8337 Action|Adventure
## 8338 Thriller
## 8339 Comedy|Crime
## 8340 Action|Animation|Fantasy|IMAX
## 8341 Action|Thriller
## 8342 Drama|Horror|Mystery|Thriller
## 8343 Animation|Children
## 8344 Comedy|Romance
## 8345 Action|Adventure|Animation|Children
## 8346 Action|Comedy
## 8347 Action|Drama|Thriller|IMAX
## 8348 Adventure|Romance|Sci-Fi|IMAX
## 8349 Drama
## 8350 Adventure|Animation|Children|Comedy|Drama|Romance
## 8351 Drama
## 8352 Action|Fantasy|Sci-Fi|IMAX
## 8353 Comedy|Drama
## 8354 Drama
## 8355 Mystery|Thriller
## 8356 Action|Adventure|Animation|Fantasy
## 8357 Action|Drama|War
## 8358 Action|Adventure|Animation|Children|Comedy|Fantasy
## 8359 Action|Crime|Sci-Fi|IMAX
## 8360 Crime
## 8361 Drama|Mystery
## 8362 Adventure|Comedy|Fantasy
## 8363 Drama
## 8364 Comedy
## 8365 Drama|Fantasy|Sci-Fi
## 8366 Drama|Fantasy|Mystery
## 8367 Action|Comedy|Crime
## 8368 Documentary
## 8369 Crime|Drama|Thriller
## 8370 Comedy
## 8371 Comedy
## 8372 Comedy|Romance
## 8373 Comedy|Drama
## 8374 Animation|Comedy|Drama|Romance
## 8375 Comedy
## 8376 Comedy|Romance
## 8377 Sci-Fi|IMAX
## 8378 Action|Crime|Drama
## 8379 Comedy
## 8380 Action|Mystery|Thriller
## 8381 Animation|Drama
## 8382 Animation|Romance
## 8383 Action|Drama|War|IMAX
## 8384 Documentary
## 8385 Crime|Drama|Thriller
## 8386 Adventure|Animation|Comedy
## 8387 Horror|Sci-Fi|Thriller
## 8388 Action|Crime|Drama|IMAX
## 8389 Comedy|Drama|Romance
## 8390 Comedy|Crime|Drama
## 8391 Comedy
## 8392 Drama
## 8393 Animation|Comedy
## 8394 Action|Drama
## 8395 Comedy
## 8396 Action|Adventure|Sci-Fi|IMAX
## 8397 Adventure|Drama|IMAX
## 8398 Adventure|Animation|Children|Comedy
## 8399 Comedy|Drama|Romance
## 8400 Horror|Thriller
## 8401 Adventure|Comedy|Crime
## 8402 Drama
## 8403 Documentary
## 8404 Documentary
## 8405 Action|Crime|Thriller
## 8406 Action|Comedy
## 8407 Action|Sci-Fi|IMAX
## 8408 Comedy|Drama
## 8409 Horror
## 8410 Drama
## 8411 Drama|Thriller
## 8412 Adventure|Animation|Children|Comedy
## 8413 Comedy|Documentary
## 8414 Comedy
## 8415 Drama|Sci-Fi|IMAX
## 8416 Comedy|Horror
## 8417 Comedy|Romance
## 8418 Comedy|Horror
## 8419 Action|Animation|Children|Comedy|Musical
## 8420 Action|Crime|Drama
## 8421 Drama
## 8422 Comedy
## 8423 Action|Adventure|Animation|Children|Comedy
## 8424 Comedy
## 8425 Action|Sci-Fi
## 8426 Action|Adventure|Sci-Fi
## 8427 Action|Adventure|Sci-Fi|IMAX
## 8428 Comedy
## 8429 Thriller
## 8430 Comedy
## 8431 Horror|Sci-Fi|Thriller
## 8432 Comedy
## 8433 Comedy|Romance
## 8434 Action|Adventure|Children|IMAX
## 8435 Action|Comedy|Horror
## 8436 Comedy|Romance
## 8437 Drama|Fantasy
## 8438 Comedy|Western
## 8439 Action|Sci-Fi|IMAX
## 8440 Action|Adventure|Thriller
## 8441 Action|Adventure|Fantasy
## 8442 Comedy|Drama
## 8443 Comedy
## 8444 Drama
## 8445 Action|Drama
## 8446 Drama
## 8447 Drama|Romance
## 8448 Action|Animation|Children
## 8449 Drama
## 8450 Action|Comedy|Crime
## 8451 Action|Crime|Thriller
## 8452 Action|Adventure|Animation
## 8453 Comedy|Drama
## 8454 Drama
## 8455 Comedy|Romance
## 8456 Drama|Musical
## 8457 Action|Sci-Fi
## 8458 Documentary
## 8459 Action|Adventure|Sci-Fi
## 8460 Comedy|Drama|Mystery
## 8461 Comedy|Romance
## 8462 Drama
## 8463 Adventure|Animation|Comedy
## 8464 Comedy
## 8465 Animation|Drama|Fantasy|Mystery
## 8466 Drama|Horror|Thriller
## 8467 Drama
## 8468 Drama|Thriller
## 8469 Comedy|Drama
## 8470 Sci-Fi
## 8471 Crime|Horror|Thriller
## 8472 Comedy|Drama|Romance
## 8473 Comedy
## 8474 Drama|Sci-Fi
## 8475 Action|Horror|Thriller
## 8476 Action|Adventure|Sci-Fi
## 8477 Sci-Fi|Thriller
## 8478 Action|Adventure
## 8479 Action|Adventure
## 8480 Thriller
## 8481 Comedy|Horror|Romance
## 8482 Thriller
## 8483 Drama|Musical
## 8484 Comedy|Drama|Romance
## 8485 Comedy|Horror|Thriller
## 8486 Comedy|Drama
## 8487 Action|Animation|Crime|Thriller
## 8488 Drama
## 8489 Horror|Thriller
## 8490 Action|Adventure|Sci-Fi
## 8491 Action|Adventure|Comedy
## 8492 Drama|Mystery|Sci-Fi
## 8493 Animation|Comedy
## 8494 Drama|Sci-Fi
## 8495 Comedy|Drama
## 8496 Action|Crime|Drama
## 8497 Comedy|Crime
## 8498 Comedy
## 8499 Horror|Thriller
## 8500 Action|Crime|Thriller
## 8501 Drama
## 8502 Drama
## 8503 Drama|Mystery|Sci-Fi|Thriller
## 8504 Horror|Thriller
## 8505 Comedy|Drama|Romance
## 8506 Crime|Drama|Thriller
## 8507 Thriller
## 8508 Comedy|Drama
## 8509 Horror
## 8510 Crime|Drama|Thriller
## 8511 Documentary|Drama|Musical
## 8512 Drama
## 8513 Documentary
## 8514 Action|Mystery|Sci-Fi
## 8515 Drama
## 8516 Action|Crime|Mystery|Thriller
## 8517 Comedy|Romance
## 8518 (no genres listed)
## 8519 Drama
## 8520 Thriller
## 8521 Animation|Drama|Fantasy
## 8522 Comedy|Drama
## 8523 Animation|Drama|Fantasy
## 8524 Action|War
## 8525 Comedy|Drama|Horror
## 8526 Adventure|Comedy|Drama
## 8527 Horror|Mystery
## 8528 Horror
## 8529 Comedy|Romance
## 8530 Action|Drama|Fantasy
## 8531 Action|Comedy|Crime
## 8532 Sci-Fi|Thriller
## 8533 Crime|Drama|Thriller
## 8534 Action|Mystery|Sci-Fi|Thriller
## 8535 Adventure|Animation
## 8536 Action|Animation|Comedy|Horror
## 8537 Comedy|Horror
## 8538 Action|Thriller
## 8539 Action|Crime
## 8540 Drama
## 8541 Documentary
## 8542 Action|Drama|War
## 8543 Drama|Western
## 8544 Comedy
## 8545 Comedy|Romance
## 8546 Crime|Drama|Thriller
## 8547 Action|Animation|Comedy
## 8548 Adventure|Animation|Romance
## 8549 Comedy|Romance
## 8550 Crime|Drama|Sci-Fi|Thriller
## 8551 Drama|Sci-Fi|Thriller
## 8552 Action|Adventure
## 8553 Animation|Comedy
## 8554 Adventure|Drama|Romance
## 8555 Animation|Comedy
## 8556 Drama|War
## 8557 Comedy|Romance
## 8558 Drama
## 8559 Action
## 8560 Crime|Drama|Thriller
## 8561 Drama
## 8562 Comedy|Romance
## 8563 Action|Comedy|Crime
## 8564 Action|Comedy
## 8565 Action|Drama|War|IMAX
## 8566 Action|Comedy|Horror
## 8567 Comedy|Musical
## 8568 Comedy|Drama|Romance
## 8569 Adventure|Comedy|Horror
## 8570 Drama|Thriller|War
## 8571 Comedy|Crime|Drama|Mystery|Romance
## 8572 Comedy|Drama
## 8573 Adventure|Sci-Fi|Thriller
## 8574 Comedy|Romance
## 8575 Action|Adventure|Drama
## 8576 Comedy|Drama|Thriller
## 8577 Animation|Children|Comedy|Musical|Sci-Fi
## 8578 Comedy
## 8579 Comedy
## 8580 Comedy|Drama
## 8581 Drama
## 8582 Comedy
## 8583 Action|Drama|Thriller
## 8584 Drama|Romance
## 8585 Adventure|Drama
## 8586 Documentary|War
## 8587 Animation|Comedy
## 8588 Animation|Children|Fantasy
## 8589 Action|Adventure|Drama
## 8590 Comedy
## 8591 Action|Adventure|Drama|Sci-Fi|Thriller
## 8592 Documentary
## 8593 Documentary
## 8594 Animation
## 8595 Comedy|Crime|Romance
## 8596 Comedy|Crime
## 8597 Action|Comedy|Crime|Romance
## 8598 Action|Adventure|Comedy|Drama|Fantasy|Thriller
## 8599 Comedy
## 8600 Adventure|Animation|Children|Comedy
## 8601 Action|Drama|Thriller|War
## 8602 Adventure|Animation
## 8603 Drama
## 8604 Children|Comedy
## 8605 Action|Thriller
## 8606 Adventure|Animation|Children
## 8607 Comedy|Crime|Thriller
## 8608 Comedy|Drama|Romance
## 8609 Documentary|Drama|Thriller
## 8610 Drama|Thriller
## 8611 Comedy|Horror|Thriller
## 8612 Sci-Fi
## 8613 Crime|Drama|Thriller
## 8614 Crime|Drama|Mystery|Thriller
## 8615 Comedy
## 8616 Comedy
## 8617 Comedy|Crime|Drama
## 8618 Adventure|Fantasy
## 8619 Drama
## 8620 Drama|War
## 8621 Adventure|Mystery|Thriller
## 8622 Documentary
## 8623 Comedy|Romance
## 8624 Comedy
## 8625 Comedy|Drama
## 8626 Horror|Romance|Thriller
## 8627 Comedy
## 8628 Animation|Children|Mystery
## 8629 Drama
## 8630 Drama
## 8631 Comedy
## 8632 Comedy
## 8633 Drama
## 8634 Children|Comedy|Fantasy|Musical
## 8635 Comedy|Drama
## 8636 Action|Comedy
## 8637 Action|Adventure|Comedy|Crime
## 8638 Comedy
## 8639 Adventure|Children|Comedy|Fantasy
## 8640 Sci-Fi|Thriller
## 8641 Action|Crime|Drama
## 8642 Adventure|Children|Fantasy
## 8643 Comedy
## 8644 Action|Drama|Thriller|Western
## 8645 Comedy
## 8646 Animation|Drama|Fantasy
## 8647 Comedy|Drama|Fantasy|Mystery|Romance
## 8648 Action|Thriller
## 8649 Documentary
## 8650 Drama
## 8651 Action|Crime|Thriller
## 8652 Action|Crime|Drama|Mystery|Thriller
## 8653 Drama
## 8654 Action|Crime|Drama
## 8655 Action|Adventure|Sci-Fi|Thriller
## 8656 Comedy
## 8657 Comedy
## 8658 Crime|Drama|Horror|Mystery
## 8659 Action|Comedy
## 8660 Adventure|Children|Fantasy|Sci-Fi
## 8661 Drama
## 8662 Adventure|Children|Comedy
## 8663 Animation|Children
## 8664 Comedy
## 8665 Drama
## 8666 Documentary
## 8667 Horror
## 8668 Horror|Thriller
## 8669 Adventure|Comedy|Romance
## 8670 Comedy|Romance
## 8671 Comedy
## 8672 Comedy
## 8673 Comedy|Horror|Mystery|Thriller
## 8674 Comedy
## 8675 Animation|Children|Comedy|Fantasy
## 8676 Comedy|War
## 8677 Children|Comedy
## 8678 Drama|War
## 8679 Horror|Mystery|Thriller
## 8680 Action|Drama|Thriller
## 8681 Sci-Fi
## 8682 Action|Adventure|Sci-Fi|Thriller
## 8683 Fantasy|Horror|Thriller
## 8684 Action|Adventure|Fantasy|Sci-Fi|IMAX
## 8685 (no genres listed)
## 8686 Action|Adventure|Fantasy
## 8687 Action|Adventure|Sci-Fi
## 8688 (no genres listed)
## 8689 Action|Adventure|Sci-Fi
## 8690 Action|Adventure|Sci-Fi
## 8691 Action|Adventure|Fantasy|Sci-Fi
## 8692 Action|Adventure|Comedy|Sci-Fi
## 8693 Action|Adventure|Sci-Fi
## 8694 Action|Adventure|Sci-Fi
## 8695 Action|Adventure|Sci-Fi
## 8696 Action|Adventure|Sci-Fi
## 8697 Action|Sci-Fi|Thriller
## 8698 Action|Adventure|Sci-Fi
## 8699 Action|Adventure|Fantasy|Sci-Fi
## 8700 Action|Adventure|Fantasy
## 8701 Children|Comedy|Romance
## 8702 Comedy
## 8703 Action
## 8704 Drama|Romance
## 8705 Action|Adventure|Drama|Fantasy
## 8706 Drama
## 8707 Comedy
## 8708 Adventure|Animation|Children|Comedy
## 8709 Comedy|Drama
## 8710 Adventure|Romance|Sci-Fi
## 8711 Animation|Documentary
## 8712 Crime|Drama|Thriller
## 8713 Horror|Sci-Fi|Western
## 8714 Adventure|Comedy|Mystery|Romance
## 8715 Drama|Romance
## 8716 Adventure|Children|Comedy|Fantasy
## 8717 Adventure|Children|Comedy|Fantasy
## 8718 Animation|Children|Comedy
## 8719 Animation
## 8720 Adventure|Children|Fantasy
## 8721 Action
## 8722 Drama|Sci-Fi
## 8723 Action|Adventure|Drama|War
## 8724 Animation|Children|Fantasy|Musical
## 8725 Comedy
## 8726 Animation|Comedy|Fantasy
## 8727 Adventure|Animation|Children|Comedy
## 8728 Comedy|Crime|Romance
## 8729 Sci-Fi|Thriller
## 8730 Comedy
## 8731 Drama|Romance
## 8732 Drama
## 8733 Drama
## 8734 Comedy
## 8735 Drama|Thriller
## 8736 Adventure|Comedy|Drama
## 8737 Drama|Mystery|Thriller
## 8738 Documentary
## 8739 Documentary
## 8740 Documentary
## 8741 Documentary
## 8742 Documentary
## 8743 Drama
## 8744 Comedy
## 8745 Comedy|Drama
## 8746 Drama
## 8747 Comedy
## 8748 Drama|Thriller
## 8749 Comedy|Drama
## 8750 Thriller
## 8751 Action|Adventure|Sci-Fi|Thriller
## 8752 Animation|Comedy
## 8753 Comedy|Western
## 8754 Comedy
## 8755 Comedy
## 8756 Comedy
## 8757 Comedy|Romance
## 8758 Western
## 8759 Comedy
## 8760 Action|Crime|Drama|Thriller
## 8761 Drama|Mystery|Romance
## 8762 Comedy
## 8763 Action|Horror|Sci-Fi
## 8764 Mystery|Thriller
## 8765 Comedy|Drama|Romance
## 8766 Crime|Drama|Romance
## 8767 Western
## 8768 Drama
## 8769 Comedy|Drama|Musical|Romance
## 8770 Horror
## 8771 Action|Adventure|Fantasy
## 8772 Comedy
## 8773 Documentary
## 8774 Documentary
## 8775 Adventure|Comedy|Drama
## 8776 Comedy
## 8777 Action|Adventure|Children|Comedy|Sci-Fi
## 8778 Animation|Children|Comedy
## 8779 Comedy|Sci-Fi
## 8780 Animation|Comedy|Sci-Fi
## 8781 Comedy
## 8782 Action|Adventure
## 8783 (no genres listed)
## 8784 Comedy
## 8785 Horror|Thriller
## 8786 Comedy|Crime|Drama|Romance
## 8787 Action|Fantasy|Sci-Fi
## 8788 Comedy|Drama
## 8789 Comedy
## 8790 Action
## 8791 Drama
## 8792 Comedy
## 8793 Action|Animation|Sci-Fi
## 8794 Action|Crime|Drama|Thriller
## 8795 Drama|Fantasy|Horror|Mystery|Thriller
## 8796 Drama|Horror
## 8797 Children|Drama|Fantasy|Romance
## 8798 Action|Crime|Drama|Thriller
## 8799 Comedy|Drama|Fantasy
## 8800 Adventure|Children|Fantasy|Sci-Fi
## 8801 Adventure|Children|Fantasy
## 8802 Comedy|Drama
## 8803 Crime|Drama|Film-Noir|Mystery|Thriller
## 8804 Action|Sci-Fi|Thriller
## 8805 Comedy
## 8806 Action|Adventure|Animation|Comedy|Sci-Fi
## 8807 Adventure|Animation|Children|Comedy|Fantasy|Sci-Fi
## 8808 Drama|Sci-Fi
## 8809 Action|Thriller
## 8810 Action|Crime|Thriller
## 8811 Comedy|Horror
## 8812 Horror|Romance|Sci-Fi
## 8813 Action|Adventure|Sci-Fi
## 8814 Comedy
## 8815 Drama
## 8816 Comedy|Romance
## 8817 Comedy|Crime
## 8818 Documentary
## 8819 Animation|Children|Comedy
## 8820 Comedy|Crime
## 8821 Animation|Comedy
## 8822 Comedy
## 8823 Thriller
## 8824 Action|Crime|Thriller
## 8825 Comedy
## 8826 Comedy|Fantasy
## 8827 Adventure|Animation|Children|Comedy
## 8828 Action|Adventure
## 8829 Documentary
## 8830 Action|Adventure|Animation
## 8831 Comedy
## 8832 Drama
## 8833 Comedy
## 8834 Comedy|Drama
## 8835 Comedy
## 8836 Action|Adventure|Children|Mystery|Sci-Fi
## 8837 (no genres listed)
## 8838 Comedy|Drama|Horror
## 8839 Action|Comedy|Crime
## 8840 Documentary|Drama
## 8841 Drama
## 8842 Action|Animation|Sci-Fi
## 8843 Comedy|Romance|Thriller
## 8844 Drama|Romance
## 8845 Comedy|Crime|Drama
## 8846 Action|Adventure|Drama
## 8847 Comedy|Romance
## 8848 Comedy|Drama
## 8849 Children|Comedy
## 8850 Action|Crime|Drama|Mystery|Thriller
## 8851 Comedy|Romance
## 8852 Action|Drama|Thriller
## 8853 Comedy|Drama
## 8854 Comedy
## 8855 Documentary
## 8856 Action|Crime|Thriller
## 8857 Comedy|Crime|Sci-Fi
## 8858 Comedy|Drama
## 8859 Drama|Thriller
## 8860 Horror|Sci-Fi|Thriller
## 8861 Comedy
## 8862 Comedy|Drama
## 8863 Drama|Romance
## 8864 Comedy|Romance
## 8865 Comedy|Crime
## 8866 Comedy|Romance|Sci-Fi
## 8867 Comedy|Drama
## 8868 Drama|Horror|Thriller
## 8869 Action|Comedy
## 8870 Action|Thriller|Western
## 8871 Horror|Thriller
## 8872 Action|Adventure|Comedy
## 8873 Comedy
## 8874 Comedy|Romance
## 8875 Animation
## 8876 Comedy|Drama|Romance
## 8877 Comedy|Drama|Romance
## 8878 Animation|Drama
## 8879 Comedy
## 8880 Adventure|Drama|Sci-Fi
## 8881 Thriller
## 8882 Action|Comedy|Fantasy|Sci-Fi
## 8883 Comedy
## 8884 Drama
## 8885 Action|Thriller
## 8886 Documentary
## 8887 Comedy|Drama|Fantasy
## 8888 Comedy
## 8889 Comedy
## 8890 Action|Comedy|Crime
## 8891 Comedy|Romance
## 8892 Adventure|Crime|Drama
## 8893 Documentary
## 8894 Comedy|Drama|Romance
## 8895 Action|Adventure|Drama
## 8896 Comedy
## 8897 Documentary
## 8898 Comedy
## 8899 Comedy
## 8900 Animation|Children|Comedy
## 8901 Adventure|Animation|Children|Comedy|Drama|Fantasy
## 8902 Documentary
## 8903 (no genres listed)
## 8904 Drama
## 8905 Adventure|Sci-Fi
## 8906 Action|Comedy|Sci-Fi
## 8907 Fantasy
## 8908 Comedy|Drama
## 8909 Adventure|Children|Comedy|Sci-Fi
## 8910 Drama|Mystery
## 8911 Animation|Comedy
## 8912 Action|Animation|Crime|Sci-Fi
## 8913 Action|Mystery|Sci-Fi|Thriller
## 8914 Action|Adventure|Fantasy
## 8915 Comedy|Fantasy|Horror
## 8916 Action|Crime|Sci-Fi
## 8917 Action|Adventure|Sci-Fi
## 8918 Action|Adventure|Sci-Fi
## 8919 Children|Comedy
## 8920 Documentary
## 8921 Action
## 8922 Action|Drama
## 8923 Comedy
## 8924 Comedy|Sci-Fi
## 8925 Adventure|Animation|Children|Comedy
## 8926 Comedy|Thriller
## 8927 Action|Thriller
## 8928 Adventure|Animation|Children|Comedy|Fantasy
## 8929 Crime|Drama
## 8930 Action|Adventure|Crime
## 8931 Action|Animation|Crime
## 8932 Action|Animation
## 8933 Horror|Sci-Fi
## 8934 Animation|Children|Comedy
## 8935 Animation|Children|Comedy
## 8936 Animation|Children|Comedy
## 8937 Animation|Children|Comedy
## 8938 Comedy
## 8939 Comedy
## 8940 Comedy
## 8941 Action|Animation|Sci-Fi
## 8942 Comedy
## 8943 Comedy|Documentary
## 8944 Animation|Children|Comedy
## 8945 Comedy
## 8946 Comedy
## 8947 Animation|Children
## 8948 Drama
## 8949 Drama
## 8950 Adventure|Comedy
## 8951 Horror|Thriller
## 8952 Drama
## 8953 Crime|Drama
## 8954 Comedy
## 8955 Comedy|Drama
## 8956 Thriller
## 8957 Action|Adventure|Sci-Fi
## 8958 Action|Comedy
## 8959 Horror
## 8960 Comedy|Romance
## 8961 Comedy|Drama|Romance
## 8962 Crime|Drama|Thriller
## 8963 Action|Adventure|Romance|Sci-Fi
## 8964 Action|Adventure|Fantasy|Sci-Fi
## 8965 Adventure
## 8966 Horror
## 8967 Drama
## 8968 Documentary
## 8969 Crime|Thriller
## 8970 Drama|Fantasy
## 8971 Comedy|Drama
## 8972 Adventure|Drama|Fantasy
## 8973 Action|Adventure|Animation
## 8974 Action|Adventure|Animation|Fantasy
## 8975 Action|Adventure|Comedy
## 8976 Crime|Drama|Horror
## 8977 Comedy
## 8978 Adventure|Drama|Thriller
## 8979 Drama
## 8980 Comedy|Drama
## 8981 Comedy
## 8982 Horror|Thriller
## 8983 Action|Crime|Drama|Sci-Fi
## 8984 Animation|Children|Comedy|Drama|Romance
## 8985 Comedy
## 8986 Adventure|Animation|Comedy
## 8987 Animation
## 8988 Drama|Mystery|Thriller
## 8989 Action|Adventure|Animation|Drama|Fantasy
## 8990 Comedy|Horror|Thriller
## 8991 Adventure|Drama
## 8992 Crime|Drama
## 8993 Horror
## 8994 Animation
## 8995 Action|Drama
## 8996 Crime|Drama|Mystery
## 8997 Drama|Fantasy|Horror|Thriller
## 8998 Crime|Thriller
## 8999 Romance
## 9000 Animation|Comedy|Fantasy
## 9001 Thriller
## 9002 Action|Animation|Sci-Fi|Thriller
## 9003 Comedy|Romance
## 9004 Comedy|Horror
## 9005 Horror
## 9006 Comedy
## 9007 Comedy
## 9008 Comedy|Horror
## 9009 Drama|Romance
## 9010 Drama
## 9011 Drama
## 9012 Drama|Horror
## 9013 Comedy
## 9014 Horror
## 9015 Comedy|Drama
## 9016 Comedy|Romance
## 9017 Adventure|Children|Sci-Fi
## 9018 Animation|Comedy|Sci-Fi
## 9019 Comedy|Horror
## 9020 Crime|Drama|Mystery
## 9021 Animation|Comedy|Sci-Fi
## 9022 Comedy|Documentary
## 9023 Drama|Romance|War
## 9024 Action|Comedy|Sci-Fi|Thriller
## 9025 Drama
## 9026 Crime|Thriller
## 9027 Action|Fantasy|Mystery
## 9028 Comedy|Drama
## 9029 Crime|Drama|Mystery|Thriller
## 9030 Horror|Sci-Fi
## 9031 Comedy|Drama
## 9032 Action|Sci-Fi|Thriller
## 9033 Drama|Horror|Sci-Fi
## 9034 (no genres listed)
## 9035 Action
## 9036 Action|Comedy|Horror
## 9037 Drama
## 9038 Comedy
## 9039 Action|Adventure|Sci-Fi
## 9040 Comedy|Drama
## 9041 Drama
## 9042 Crime|Thriller
## 9043 Comedy|Horror
## 9044 Drama
## 9045 Comedy|Horror
## 9046 Comedy|Drama
## 9047 Adventure|Comedy
## 9048 Comedy|Drama|Fantasy|Romance
## 9049 Comedy
## 9050 Adventure|Comedy
## 9051 Comedy
## 9052 Adventure|Comedy
## 9053 Documentary
## 9054 (no genres listed)
## 9055 Drama|War
## 9056 Comedy|Horror
## 9057 Children|Comedy
## 9058 Comedy
## 9059 Action|Adventure|Animation
## 9060 Crime|Horror|Thriller
## 9061 Documentary
## 9062 Comedy|Horror
## 9063 Drama
## 9064 Horror|Thriller
## 9065 Comedy|Drama
## 9066 Action|Drama|Sci-Fi
## 9067 Comedy
## 9068 Drama|Sci-Fi
## 9069 Comedy|Horror|Mystery
## 9070 Adventure|Drama|Thriller
## 9071 (no genres listed)
## 9072 Thriller
## 9073 Drama
## 9074 Action|Adventure|Sci-Fi
## 9075 Drama
## 9076 Action|Comedy
## 9077 Comedy
## 9078 Horror
## 9079 Comedy
## 9080 Comedy
## 9081 Comedy|Crime|Thriller
## 9082 Animation|Comedy
## 9083 Crime
## 9084 Comedy|Drama|Romance
## 9085 Animation|Fantasy
## 9086 Mystery|Sci-Fi|Thriller
## 9087 Comedy|Drama
## 9088 Action|Adventure|Fantasy
## 9089 Drama|Sci-Fi|Thriller
## 9090 Drama|Thriller
## 9091 Drama|Thriller
## 9092 (no genres listed)
## 9093 Drama|Mystery|Thriller
## 9094 Action|Horror|Thriller
## 9095 Documentary
## 9096 Comedy|Drama
## 9097 Comedy|Crime|Fantasy
## 9098 Comedy
## 9099 Documentary
## 9100 Comedy
## 9101 Documentary
## 9102 Comedy
## 9103 Comedy|Romance
## 9104 Action|Crime|Drama
## 9105 Comedy|Drama
## 9106 Action|Horror|Thriller
## 9107 Comedy|Crime|Drama|Romance|Thriller
## 9108 Adventure|Comedy|Horror
## 9109 Drama|Thriller
## 9110 Comedy
## 9111 Comedy|Horror|Sci-Fi
## 9112 Horror|Western
## 9113 Animation|Horror|Mystery
## 9114 Comedy|Drama|Thriller
## 9115 Documentary
## 9116 Drama
## 9117 Children|Comedy|Drama
## 9118 Sci-Fi
## 9119 Crime|Drama
## 9120 Drama
## 9121 Adventure|Animation|Children|Comedy
## 9122 Action|Thriller
## 9123 Comedy
## 9124 Comedy|Romance|Western
## 9125 Crime|Mystery
## 9126 Comedy
## 9127 Comedy|Drama|Romance
## 9128 Action|Adventure|Animation
## 9129 Drama
## 9130 Adventure|Animation|Comedy
## 9131 Documentary
## 9132 Animation|Children|Comedy
## 9133 Fantasy|Mystery|Thriller
## 9134 Action|Drama|Thriller
## 9135 Comedy
## 9136 Drama|Romance
## 9137 Children|Comedy
## 9138 Comedy|Romance
## 9139 (no genres listed)
## 9140 Comedy
## 9141 Crime|Mystery
## 9142 Crime|Mystery
## 9143 Crime|Mystery
## 9144 Crime
## 9145 Crime
## 9146 Adventure|Drama|Fantasy|Sci-Fi
## 9147 Adventure|Drama
## 9148 Sci-Fi
## 9149 Adventure|Children|Drama|Sci-Fi
## 9150 Adventure|Children|Drama|Sci-Fi
## 9151 Action|Sci-Fi
## 9152 Sci-Fi
## 9153 Comedy|Drama
## 9154 Action
## 9155 Action|Adventure
## 9156 Comedy|Drama
## 9157 Documentary
## 9158 Adventure|Sci-Fi|Thriller
## 9159 Comedy
## 9160 Comedy|Drama
## 9161 Drama
## 9162 Comedy
## 9163 Drama
## 9164 Comedy
## 9165 Comedy|Western
## 9166 Comedy
## 9167 Crime|Horror
## 9168 Children|Fantasy
## 9169 Thriller
## 9170 Adventure|Children|Comedy|Drama|Fantasy|Sci-Fi
## 9171 Animation|Comedy
## 9172 Comedy
## 9173 Comedy|Romance
## 9174 Animation|Fantasy|Horror|Mystery
## 9175 Horror
## 9176 Comedy|Drama|Horror
## 9177 Horror|Sci-Fi
## 9178 Horror|Sci-Fi
## 9179 (no genres listed)
## 9180 Drama|Thriller
## 9181 Comedy|Horror
## 9182 Comedy
## 9183 Children|Comedy
## 9184 Romance
## 9185 Action|Adventure|Animation
## 9186 Comedy|Romance
## 9187 Comedy|Romance
## 9188 Thriller
## 9189 Action|Drama|Thriller
## 9190 Comedy|Horror|Romance|Thriller
## 9191 Action|Sci-Fi|Thriller
## 9192 Horror
## 9193 Action|Crime
## 9194 Action|Crime|Drama|Mystery|Thriller
## 9195 Adventure|Children|Comedy|Fantasy
## 9196 Comedy|Drama|Sci-Fi
## 9197 Comedy
## 9198 Documentary
## 9199 Action|Comedy
## 9200 Comedy
## 9201 Action|Comedy
## 9202 Comedy
## 9203 Comedy
## 9204 Action|Fantasy|Sci-Fi
## 9205 Drama
## 9206 Drama
## 9207 Horror|Thriller
## 9208 Comedy|Drama|Fantasy
## 9209 Children|Drama
## 9210 Drama|Sci-Fi|Thriller
## 9211 Comedy
## 9212 Horror|Sci-Fi
## 9213 Documentary
## 9214 Mystery
## 9215 Animation
## 9216 Drama|Thriller
## 9217 Action|Animation|Crime|Sci-Fi|Thriller
## 9218 (no genres listed)
## 9219 Adventure|Fantasy
## 9220 Adventure|Drama
## 9221 Drama
## 9222 Thriller
## 9223 Action|Crime|Thriller
## 9224 Action|Adventure|Animation|Children|Comedy
## 9225 Comedy|War
## 9226 Drama
## 9227 Comedy
## 9228 Comedy
## 9229 Horror
## 9230 Drama
## 9231 Drama|Romance
## 9232 Horror
## 9233 Action
## 9234 Children
## 9235 Documentary
## 9236 Adventure|Comedy
## 9237 Comedy|Drama|Fantasy
## 9238 Animation
## 9239 Children|Comedy|Fantasy
## 9240 Comedy|Drama|Fantasy
## 9241 Comedy
## 9242 Documentary
## 9243 Comedy|Documentary
## 9244 Drama|Horror|Mystery
## 9245 Comedy
## 9246 Drama|Thriller|War
## 9247 Action|Adventure|Thriller
## 9248 Action|Comedy|Romance
## 9249 (no genres listed)
## 9250 Comedy|Drama
## 9251 Comedy
## 9252 Adventure
## 9253 Comedy
## 9254 Comedy
## 9255 Comedy
## 9256 Adventure|Animation|Children|Comedy
## 9257 Comedy
## 9258 Drama
## 9259 Animation|Comedy|Drama
## 9260 (no genres listed)
## 9261 Action|Adventure|Drama|Fantasy
## 9262 Comedy
## 9263 Mystery|Sci-Fi
## 9264 Crime|Thriller
## 9265 Thriller
## 9266 Comedy
## 9267 Comedy
## 9268 Comedy|Western
## 9269 Comedy|Crime
## 9270 Drama
## 9271 Drama|Romance|Thriller
## 9272 Action|Fantasy
## 9273 Drama|Thriller
## 9274 Comedy
## 9275 Adventure|Animation|Comedy
## 9276 Comedy
## 9277 Animation|Comedy
## 9278 Comedy|Drama
## 9279 Action|Crime|Drama|Thriller
## 9280 Action|Crime
## 9281 Drama|Thriller
## 9282 Animation|Comedy
## 9283 Action|Adventure|Animation|Children|Comedy|Sci-Fi
## 9284 Comedy
## 9285 Drama|Sci-Fi
## 9286 Action|Animation|Comedy
## 9287 Crime|Mystery|Thriller
## 9288 Action|Comedy
## 9289 Sci-Fi
## 9290 Comedy
## 9291 Action
## 9292 Drama|Thriller
## 9293 Action|Comedy|Thriller
## 9294 Drama|Romance|Thriller
## 9295 Adventure|Children|Fantasy
## 9296 Children|Fantasy
## 9297 Documentary
## 9298 Animation|Comedy
## 9299 Action|Drama
## 9300 Comedy|Drama|Romance
## 9301 Action|Horror|Sci-Fi
## 9302 Drama
## 9303 Drama
## 9304 Mystery|Thriller
## 9305 Comedy
## 9306 Comedy|Drama
## 9307 Action|Comedy|Thriller
## 9308 (no genres listed)
## 9309 Comedy|Drama|Romance
## 9310 Adventure|Animation|Fantasy|Horror|Sci-Fi
## 9311 Comedy|Drama|Romance
## 9312 Comedy
## 9313 Horror
## 9314 Action|Adventure|Comedy
## 9315 Drama
## 9316 Comedy
## 9317 (no genres listed)
## 9318 Animation|Drama|Fantasy
## 9319 Documentary
## 9320 Comedy
## 9321 Horror
## 9322 Drama
## 9323 Action|Comedy|Horror|Sci-Fi
## 9324 Action|Comedy
## 9325 Documentary
## 9326 Action|Thriller
## 9327 Drama
## 9328 Drama|War
## 9329 Action
## 9330 Thriller
## 9331 Action|Crime|Drama
## 9332 Action|Adventure
## 9333 Action|Horror|Sci-Fi
## 9334 Comedy
## 9335 Adventure|Animation|Children|Comedy
## 9336 Horror
## 9337 Adventure|Children|Fantasy
## 9338 Drama
## 9339 Drama
## 9340 Action
## 9341 Animation
## 9342 Action|Drama|Thriller
## 9343 Action|Drama|Thriller
## 9344 Animation
## 9345 Horror
## 9346 Drama|Thriller
## 9347 Horror|Sci-Fi
## 9348 Drama
## 9349 (no genres listed)
## 9350 Comedy
## 9351 Action|Drama
## 9352 Sci-Fi
## 9353 Crime|Drama
## 9354 Comedy
## 9355 Action
## 9356 Action|Animation|Crime|Drama
## 9357 Comedy
## 9358 Crime|Drama
## 9359 Action|Adventure|Animation|Drama|Fantasy|Sci-Fi
## 9360 Thriller
## 9361 Drama|Horror|Thriller
## 9362 Action|Adventure|Horror|Sci-Fi
## 9363 Comedy
## 9364 Thriller
## 9365 Action|Thriller
## 9366 Comedy
## 9367 Action|Western
## 9368 Drama
## 9369 Action|Comedy|Crime
## 9370 Adventure|Animation|Children|Fantasy
## 9371 Comedy|Romance
## 9372 Drama
## 9373 Fantasy
## 9374 Thriller
## 9375 Crime|Drama|Thriller
## 9376 Crime|Drama|Thriller
## 9377 Action|Animation|Mystery
## 9378 Animation|Drama|Sci-Fi
## 9379 Action|Adventure|Fantasy|Sci-Fi
## 9380 Animation|Children
## 9381 Animation
## 9382 Animation|Drama|Fantasy|Romance
## 9383 Animation
## 9384 Comedy
## 9385 Animation
## 9386 Drama|War
## 9387 Comedy
## 9388 Adventure|Animation|Drama
## 9389 Animation|Comedy
## 9390 Horror|Thriller
## 9391 Horror
## 9392 Sci-Fi|Thriller
## 9393 Sci-Fi
## 9394 Animation|Children|Comedy
## 9395 Action|Adventure|Comedy|Fantasy|Sci-Fi|Thriller
## 9396 Drama|Fantasy
## 9397 Drama|Horror|Sci-Fi|Thriller
## 9398 Comedy
## 9399 Documentary
## 9400 Comedy|Romance
## 9401 Documentary
## 9402 Children|Comedy|Drama
## 9403 Romance
## 9404 Action|Sci-Fi
## 9405 Comedy|Drama|Romance
## 9406 Documentary
## 9407 Drama
## 9408 Mystery|Thriller
## 9409 Comedy
## 9410 Comedy
## 9411 Comedy|Horror|Sci-Fi|Thriller
## 9412 Action|Crime|Drama|Mystery|Thriller
## 9413 Comedy
## 9414 (no genres listed)
## 9415 Drama
## 9416 Drama
## 9417 Drama
## 9418 Thriller
## 9419 Comedy|Fantasy|Sci-Fi
## 9420 Comedy
## 9421 Documentary
## 9422 Documentary
## 9423 Action|Comedy
## 9424 Animation|Comedy|Drama
## 9425 Documentary
## 9426 Comedy|Drama
## 9427 (no genres listed)
## 9428 Adventure|Animation|Children
## 9429 Adventure|Children|Fantasy|Sci-Fi
## 9430 Animation|Drama|Romance
## 9431 Adventure|Animation|Children|Comedy|Fantasy
## 9432 Comedy
## 9433 Adventure|Sci-Fi
## 9434 Action|Adventure|Fantasy|Sci-Fi
## 9435 Drama|Horror|Thriller
## 9436 Action|Horror
## 9437 Thriller
## 9438 Adventure|Drama|Romance|Sci-Fi
## 9439 Drama
## 9440 Drama
## 9441 Drama
## 9442 Comedy
## 9443 Animation|Children|Comedy
## 9444 Documentary
## 9445 Drama
## 9446 Action|Adventure|Sci-Fi
## 9447 Comedy|Drama
## 9448 Horror
## 9449 (no genres listed)
## 9450 Comedy
## 9451 Documentary
## 9452 Comedy|Drama
## 9453 Action|Animation|Comedy
## 9454 Animation|Comedy
## 9455 Children|Comedy|Drama
## 9456 Comedy
## 9457 Action|Adventure|Fantasy|Sci-Fi
## 9458 Animation|Fantasy|Mystery
## 9459 Comedy
## 9460 Comedy
## 9461 Animation|Fantasy|Mystery
## 9462 Action|Crime|Thriller
## 9463 Horror
## 9464 Action|Sci-Fi
## 9465 Action|Adventure|Fantasy
## 9466 Crime|Drama
## 9467 Comedy|Romance
## 9468 Drama
## 9469 Sci-Fi|Thriller
## 9470 Fantasy|Romance
## 9471 Animation|Children|Comedy
## 9472 Action|Adventure|Drama
## 9473 Drama|Romance
## 9474 Drama
## 9475 Action|Drama|Sci-Fi
## 9476 Comedy
## 9477 Drama|Romance
## 9478 Comedy
## 9479 (no genres listed)
## 9480 Thriller
## 9481 Horror
## 9482 Sci-Fi
## 9483 Comedy
## 9484 Drama|Mystery
## 9485 Action|Adventure|Sci-Fi
## 9486 Action|Horror|Sci-Fi|Thriller
## 9487 Action|Crime|Drama
## 9488 Action|Horror|Sci-Fi
## 9489 Action|Animation|Sci-Fi
## 9490 Drama|Mystery|Romance
## 9491 Comedy
## 9492 Action|Comedy|Drama
## 9493 Comedy|Drama
## 9494 Comedy
## 9495 Comedy
## 9496 Animation
## 9497 Drama
## 9498 Action|Drama|War
## 9499 Animation|Children|Comedy
## 9500 Action|Comedy
## 9501 Action|Comedy
## 9502 Action|Adventure|Fantasy|Horror|Thriller
## 9503 Children|Comedy|Fantasy
## 9504 Action|Crime|Drama|Thriller
## 9505 Comedy
## 9506 Documentary
## 9507 Comedy
## 9508 Action|Animation|Children|Comedy
## 9509 Horror|Mystery|Thriller
## 9510 Adventure|Animation|Comedy
## 9511 Comedy|Crime|Drama
## 9512 Documentary
## 9513 Drama
## 9514 Documentary
## 9515 (no genres listed)
## 9516 (no genres listed)
## 9517 Comedy
## 9518 Drama
## 9519 (no genres listed)
## 9520 Comedy
## 9521 Drama|Thriller|Western
## 9522 Action|Crime|Thriller
## 9523 Action|Adventure|Drama|Sci-Fi
## 9524 Comedy|Sci-Fi|War
## 9525 Comedy|Drama
## 9526 (no genres listed)
## 9527 Drama|Mystery|Thriller
## 9528 Drama
## 9529 Comedy
## 9530 Comedy|Mystery|Romance|Thriller
## 9531 Drama|Romance
## 9532 Comedy
## 9533 Comedy
## 9534 Documentary
## 9535 (no genres listed)
## 9536 Adventure|Animation|Children|Comedy
## 9537 Animation|Children|Comedy|Fantasy
## 9538 Animation
## 9539 Adventure|Animation|Children
## 9540 Animation
## 9541 Animation
## 9542 (no genres listed)
## 9543 Action|Adventure|Animation|Comedy
## 9544 Documentary
## 9545 Adventure|Animation|Children|Fantasy
## 9546 Adventure|Animation|Children
## 9547 Animation|Sci-Fi
## 9548 Action|Animation|Sci-Fi
## 9549 Animation|Sci-Fi
## 9550 Animation
## 9551 Action|Adventure|Drama|Sci-Fi
## 9552 Drama
## 9553 Comedy
## 9554 Comedy|Drama|War
## 9555 Documentary
## 9556 Comedy
## 9557 Comedy
## 9558 Action|Adventure|Sci-Fi
## 9559 Action|Horror|Sci-Fi
## 9560 Documentary
## 9561 Animation|Children|Comedy|Fantasy
## 9562 Animation
## 9563 (no genres listed)
## 9564 Comedy|Crime
## 9565 Thriller
## 9566 Adventure|Children|Fantasy
## 9567 Sci-Fi|Thriller
## 9568 Thriller
## 9569 Comedy
## 9570 Comedy
## 9571 Drama|Horror|Mystery|Sci-Fi|Thriller
## 9572 Action|Drama|Thriller|War
## 9573 Animation|Drama|Fantasy
## 9574 (no genres listed)
## 9575 Horror|Thriller
## 9576 Comedy
## 9577 Comedy
## 9578 Crime|Drama
## 9579 Comedy
## 9580 Comedy
## 9581 Comedy
## 9582 Fantasy|Horror|Sci-Fi|Western
## 9583 Horror
## 9584 Animation|Children
## 9585 Horror
## 9586 Adventure|Animation|Children
## 9587 Animation|Children|Fantasy
## 9588 Animation
## 9589 Animation|Comedy
## 9590 Animation|Fantasy
## 9591 Animation|Children|Comedy
## 9592 Horror|Thriller
## 9593 Action|Crime|Mystery|Thriller
## 9594 Comedy
## 9595 Action|Crime|Drama|Thriller
## 9596 Action|Comedy
## 9597 Comedy|Crime
## 9598 Comedy|Horror
## 9599 Documentary
## 9600 Comedy
## 9601 Comedy
## 9602 Animation
## 9603 Action|Adventure|Comedy
## 9604 Comedy
## 9605 Sci-Fi
## 9606 Adventure|Animation|Children|Comedy
## 9607 Drama
## 9608 Comedy|Drama
## 9609 Drama|Horror|Mystery|Thriller
## 9610 Documentary
## 9611 Drama|Horror|Thriller
## 9612 (no genres listed)
## 9613 Animation|Children|Comedy|Romance
## 9614 Crime|Thriller
## 9615 Comedy|Drama
## 9616 Action
## 9617 Comedy
## 9618 Action|Adventure|Animation|Fantasy|Sci-Fi
## 9619 Crime|Drama
## 9620 Comedy
## 9621 Crime|Drama|Mystery
## 9622 Adventure|Animation|Children
## 9623 Animation|Romance
## 9624 Drama
## 9625 Animation
## 9626 Documentary
## 9627 Documentary
## 9628 Comedy
## 9629 Comedy|Drama|Romance
## 9630 Adventure|Animation|Children|Comedy
## 9631 Sci-Fi|Thriller
## 9632 Comedy
## 9633 Comedy
## 9634 Animation|Crime|Drama
## 9635 Documentary
## 9636 Comedy
## 9637 Action|Adventure|Children
## 9638 Comedy
## 9639 Action|Horror
## 9640 Adventure|Drama|Fantasy|Romance
## 9641 Drama
## 9642 Comedy|Horror
## 9643 Drama
## 9644 Drama|Thriller
## 9645 Drama|War
## 9646 Action|Adventure|Fantasy|Sci-Fi
## 9647 Comedy
## 9648 Adventure|Drama|Fantasy
## 9649 Drama
## 9650 Drama
## 9651 Comedy|Drama
## 9652 Drama|Horror|Thriller
## 9653 Documentary
## 9654 Comedy|Drama
## 9655 Drama|Thriller
## 9656 Documentary
## 9657 Drama
## 9658 Animation|Children|Comedy
## 9659 Comedy
## 9660 Comedy
## 9661 Drama|Romance
## 9662 (no genres listed)
## 9663 Comedy
## 9664 (no genres listed)
## 9665 Animation|Children|Comedy
## 9666 Animation|Comedy|Fantasy
## 9667 Animation|Children|Comedy
## 9668 Animation|Sci-Fi
## 9669 Adventure|Mystery|Sci-Fi|Thriller
## 9670 (no genres listed)
## 9671 Children|Comedy|Sci-Fi
## 9672 Comedy
## 9673 Drama
## 9674 Action|Crime|Fantasy
## 9675 Crime|Drama|Mystery|Thriller
## 9676 Comedy
## 9677 Documentary
## 9678 Comedy
## 9679 Horror|Mystery|Thriller
## 9680 Children
## 9681 Comedy|Drama
## 9682 Action|Comedy|Crime|Horror
## 9683 Action|Mystery|Sci-Fi|Thriller
## 9684 Animation|Comedy
## 9685 Comedy
## 9686 Comedy
## 9687 Comedy
## 9688 Action|Sci-Fi
## 9689 Documentary
## 9690 Horror|Mystery|Sci-Fi|Thriller
## 9691 Crime|Documentary
## 9692 Comedy|Drama|Romance
## 9693 Action|Adventure|Fantasy
## 9694 Action|Adventure|Fantasy
## 9695 Drama|Thriller
## 9696 Comedy
## 9697 Action|Crime|Drama|Thriller
## 9698 Adventure|Children|Fantasy|Sci-Fi
## 9699 Comedy|Drama
## 9700 Drama|Horror|Thriller
## 9701 Adventure|Thriller
## 9702 Drama|Fantasy|Thriller
## 9703 Crime
## 9704 Action|Comedy
## 9705 Comedy
## 9706 Action|Fantasy|Sci-Fi
## 9707 Action|Adventure|Sci-Fi
## 9708 Action|Adventure|Drama|Sci-Fi|Thriller
## 9709 Action|Adventure|Animation|Children
## 9710 Action|Comedy|Sci-Fi
## 9711 Action|Adventure|Children|Sci-Fi
## 9712 Documentary
## 9713 Comedy|Fantasy|Sci-Fi
## 9714 Action|Adventure|Comedy|Fantasy|Sci-Fi
## 9715 Crime|Drama
## 9716 Comedy|Romance
## 9717 Comedy
## 9718 Adventure|Comedy|Fantasy
## 9719 Comedy|Drama
## 9720 Documentary
## 9721 Action|Adventure|Thriller
## 9722 Action|Crime|Thriller
## 9723 Action|Sci-Fi
## 9724 Comedy|Crime|Drama
## 9725 Sci-Fi|Thriller
## 9726 Drama|Romance
## 9727 Comedy
## 9728 Drama
## 9729 Drama
## 9730 Animation
## 9731 Documentary
## 9732 Action|Adventure|Comedy|Sci-Fi
## 9733 Action|Animation|Comedy|Sci-Fi
## 9734 Animation|Drama
## 9735 Comedy|Drama
## 9736 Animation
## 9737 Documentary
## 9738 Action|Animation|Comedy|Fantasy
## 9739 Animation|Comedy|Fantasy
## 9740 Drama
## 9741 Action|Animation
## 9742 Comedy
kable(head(Ratings,10)) %>%
kable_styling(bootstrap_options = c("striped","hover","condensed","responsive"),full_width = F,position = "left",font_size = 12) %>%
row_spec(0, background ="gray")| userId | movieId | rating | timestamp |
|---|---|---|---|
| 1 | 1 | 4 | 964982703 |
| 1 | 3 | 4 | 964981247 |
| 1 | 6 | 4 | 964982224 |
| 1 | 47 | 5 | 964983815 |
| 1 | 50 | 5 | 964982931 |
| 1 | 70 | 3 | 964982400 |
| 1 | 101 | 5 | 964980868 |
| 1 | 110 | 4 | 964982176 |
| 1 | 151 | 5 | 964984041 |
| 1 | 157 | 5 | 964984100 |
DT::datatable(Ratings, options = list(pagelength=5))#datatable(Ratings)DT::datatable(select(Ratings, userId:rating), options = list(pagelength=5))sqldf("select * from Ratings") ## userId movieId rating timestamp
## 1 1 1 4.0 964982703
## 2 1 3 4.0 964981247
## 3 1 6 4.0 964982224
## 4 1 47 5.0 964983815
## 5 1 50 5.0 964982931
## 6 1 70 3.0 964982400
## 7 1 101 5.0 964980868
## 8 1 110 4.0 964982176
## 9 1 151 5.0 964984041
## 10 1 157 5.0 964984100
## 11 1 163 5.0 964983650
## 12 1 216 5.0 964981208
## 13 1 223 3.0 964980985
## 14 1 231 5.0 964981179
## 15 1 235 4.0 964980908
## 16 1 260 5.0 964981680
## 17 1 296 3.0 964982967
## 18 1 316 3.0 964982310
## 19 1 333 5.0 964981179
## 20 1 349 4.0 964982563
## 21 1 356 4.0 964980962
## 22 1 362 5.0 964982588
## 23 1 367 4.0 964981710
## 24 1 423 3.0 964982363
## 25 1 441 4.0 964980868
## 26 1 457 5.0 964981909
## 27 1 480 4.0 964982346
## 28 1 500 3.0 964981208
## 29 1 527 5.0 964984002
## 30 1 543 4.0 964981179
## 31 1 552 4.0 964982653
## 32 1 553 5.0 964984153
## 33 1 590 4.0 964982546
## 34 1 592 4.0 964982271
## 35 1 593 4.0 964983793
## 36 1 596 5.0 964982838
## 37 1 608 5.0 964982931
## 38 1 648 3.0 964982563
## 39 1 661 5.0 964982838
## 40 1 673 3.0 964981775
## 41 1 733 4.0 964982400
## 42 1 736 3.0 964982653
## 43 1 780 3.0 964984086
## 44 1 804 4.0 964980499
## 45 1 919 5.0 964982475
## 46 1 923 5.0 964981529
## 47 1 940 5.0 964982176
## 48 1 943 4.0 964983614
## 49 1 954 5.0 964983219
## 50 1 1009 3.0 964981775
## 51 1 1023 5.0 964982681
## 52 1 1024 5.0 964982876
## 53 1 1025 5.0 964982791
## 54 1 1029 5.0 964982855
## 55 1 1030 3.0 964982903
## 56 1 1031 5.0 964982653
## 57 1 1032 5.0 964982791
## 58 1 1042 4.0 964981179
## 59 1 1049 5.0 964982400
## 60 1 1060 4.0 964980924
## 61 1 1073 5.0 964981680
## 62 1 1080 5.0 964981327
## 63 1 1089 5.0 964982951
## 64 1 1090 4.0 964984018
## 65 1 1092 5.0 964983484
## 66 1 1097 5.0 964981680
## 67 1 1127 4.0 964982513
## 68 1 1136 5.0 964981327
## 69 1 1196 5.0 964981827
## 70 1 1197 5.0 964981872
## 71 1 1198 5.0 964981827
## 72 1 1206 5.0 964983737
## 73 1 1208 4.0 964983250
## 74 1 1210 5.0 964980499
## 75 1 1213 5.0 964982951
## 76 1 1214 4.0 964981855
## 77 1 1219 2.0 964983393
## 78 1 1220 5.0 964981909
## 79 1 1222 5.0 964981909
## 80 1 1224 5.0 964984018
## 81 1 1226 5.0 964983618
## 82 1 1240 5.0 964983723
## 83 1 1256 5.0 964981442
## 84 1 1258 3.0 964983414
## 85 1 1265 4.0 964983599
## 86 1 1270 5.0 964983705
## 87 1 1275 5.0 964982290
## 88 1 1278 5.0 964983414
## 89 1 1282 5.0 964982703
## 90 1 1291 5.0 964981909
## 91 1 1298 5.0 964984086
## 92 1 1348 4.0 964983393
## 93 1 1377 3.0 964982653
## 94 1 1396 3.0 964983017
## 95 1 1408 3.0 964982310
## 96 1 1445 3.0 964984112
## 97 1 1473 4.0 964980875
## 98 1 1500 4.0 964980985
## 99 1 1517 5.0 964981107
## 100 1 1552 4.0 964982620
## 101 1 1573 5.0 964982290
## 102 1 1580 3.0 964981125
## 103 1 1587 5.0 964982346
## 104 1 1617 5.0 964982951
## 105 1 1620 4.0 964983056
## 106 1 1625 5.0 964983504
## 107 1 1644 3.0 964983536
## 108 1 1676 3.0 964982620
## 109 1 1732 5.0 964981125
## 110 1 1777 4.0 964981230
## 111 1 1793 4.0 964981404
## 112 1 1804 5.0 964983034
## 113 1 1805 4.0 964983056
## 114 1 1920 4.0 964981780
## 115 1 1927 5.0 964981497
## 116 1 1954 5.0 964982176
## 117 1 1967 4.0 964981710
## 118 1 2000 4.0 964982211
## 119 1 2005 5.0 964981710
## 120 1 2012 4.0 964984176
## 121 1 2018 5.0 964980523
## 122 1 2028 4.0 964981888
## 123 1 2033 5.0 964982903
## 124 1 2046 4.0 964982563
## 125 1 2048 5.0 964982791
## 126 1 2054 4.0 964981747
## 127 1 2058 5.0 964982400
## 128 1 2078 5.0 964982838
## 129 1 2090 5.0 964982838
## 130 1 2093 3.0 964981710
## 131 1 2094 5.0 964982653
## 132 1 2096 4.0 964982838
## 133 1 2099 4.0 964982588
## 134 1 2105 4.0 964981725
## 135 1 2115 5.0 964982529
## 136 1 2116 5.0 964982876
## 137 1 2137 5.0 964982791
## 138 1 2139 5.0 964982791
## 139 1 2141 5.0 964982838
## 140 1 2143 4.0 964981725
## 141 1 2161 5.0 964981710
## 142 1 2174 4.0 964981680
## 143 1 2193 4.0 964981710
## 144 1 2253 2.0 964981775
## 145 1 2268 4.0 964982989
## 146 1 2273 4.0 964982310
## 147 1 2291 5.0 964983664
## 148 1 2329 5.0 964983263
## 149 1 2338 2.0 964983546
## 150 1 2353 5.0 964983861
## 151 1 2366 4.0 964982462
## 152 1 2387 5.0 964983123
## 153 1 2389 2.0 964983094
## 154 1 2395 5.0 964981093
## 155 1 2406 4.0 964982310
## 156 1 2414 3.0 964982513
## 157 1 2427 5.0 964982242
## 158 1 2450 4.0 964982620
## 159 1 2459 5.0 964983414
## 160 1 2470 5.0 964982588
## 161 1 2478 4.0 964984169
## 162 1 2492 4.0 965719662
## 163 1 2502 5.0 964981278
## 164 1 2528 3.0 964982328
## 165 1 2529 5.0 964982242
## 166 1 2542 5.0 964981265
## 167 1 2571 5.0 964981888
## 168 1 2580 5.0 964983000
## 169 1 2596 5.0 964981144
## 170 1 2616 4.0 964983080
## 171 1 2617 2.0 964982588
## 172 1 2628 4.0 964980523
## 173 1 2640 4.0 964982377
## 174 1 2641 5.0 964982620
## 175 1 2644 4.0 964983393
## 176 1 2648 4.0 964983414
## 177 1 2654 5.0 964983393
## 178 1 2657 3.0 964983426
## 179 1 2692 5.0 964981855
## 180 1 2700 5.0 964980985
## 181 1 2716 5.0 964983414
## 182 1 2761 5.0 964982703
## 183 1 2797 4.0 964981710
## 184 1 2826 4.0 964980523
## 185 1 2858 5.0 964980868
## 186 1 2872 5.0 964981680
## 187 1 2899 5.0 964982703
## 188 1 2916 4.0 964982290
## 189 1 2944 5.0 964981872
## 190 1 2947 5.0 964982176
## 191 1 2948 5.0 964982191
## 192 1 2949 5.0 964981888
## 193 1 2959 5.0 964983282
## 194 1 2985 4.0 964983034
## 195 1 2987 5.0 964982495
## 196 1 2991 5.0 964982271
## 197 1 2993 5.0 964982242
## 198 1 2997 4.0 964980896
## 199 1 3033 5.0 964983762
## 200 1 3034 5.0 964982791
## 201 1 3052 5.0 964981208
## 202 1 3053 5.0 964984086
## 203 1 3062 4.0 964981872
## 204 1 3147 5.0 964983873
## 205 1 3168 4.0 964982495
## 206 1 3176 1.0 964983504
## 207 1 3243 3.0 964981093
## 208 1 3247 3.0 964983108
## 209 1 3253 5.0 964981107
## 210 1 3273 5.0 964983536
## 211 1 3386 5.0 964983484
## 212 1 3439 4.0 964981799
## 213 1 3440 4.0 964981799
## 214 1 3441 5.0 964982328
## 215 1 3448 5.0 964984054
## 216 1 3450 5.0 964981144
## 217 1 3479 4.0 964981725
## 218 1 3489 4.0 964981775
## 219 1 3527 4.0 964982271
## 220 1 3578 5.0 964980668
## 221 1 3617 4.0 964980683
## 222 1 3639 4.0 964982271
## 223 1 3671 5.0 964981589
## 224 1 3702 5.0 964983737
## 225 1 3703 5.0 964981909
## 226 1 3729 5.0 964982363
## 227 1 3740 4.0 964982417
## 228 1 3744 4.0 964980694
## 229 1 3793 5.0 964981855
## 230 1 3809 4.0 964981220
## 231 1 4006 4.0 964982903
## 232 1 5060 5.0 964984002
## 233 2 318 3.0 1445714835
## 234 2 333 4.0 1445715029
## 235 2 1704 4.5 1445715228
## 236 2 3578 4.0 1445714885
## 237 2 6874 4.0 1445714952
## 238 2 8798 3.5 1445714960
## 239 2 46970 4.0 1445715013
## 240 2 48516 4.0 1445715064
## 241 2 58559 4.5 1445715141
## 242 2 60756 5.0 1445714980
## 243 2 68157 4.5 1445715154
## 244 2 71535 3.0 1445714974
## 245 2 74458 4.0 1445714926
## 246 2 77455 3.0 1445714941
## 247 2 79132 4.0 1445714841
## 248 2 80489 4.5 1445715340
## 249 2 80906 5.0 1445715172
## 250 2 86345 4.0 1445715166
## 251 2 89774 5.0 1445715189
## 252 2 91529 3.5 1445714891
## 253 2 91658 2.5 1445714938
## 254 2 99114 3.5 1445714874
## 255 2 106782 5.0 1445714966
## 256 2 109487 3.0 1445715145
## 257 2 112552 4.0 1445714882
## 258 2 114060 2.0 1445715276
## 259 2 115713 3.5 1445714854
## 260 2 122882 5.0 1445715272
## 261 2 131724 5.0 1445714851
## 262 3 31 0.5 1306463578
## 263 3 527 0.5 1306464275
## 264 3 647 0.5 1306463619
## 265 3 688 0.5 1306464228
## 266 3 720 0.5 1306463595
## 267 3 849 5.0 1306463611
## 268 3 914 0.5 1306463567
## 269 3 1093 0.5 1306463627
## 270 3 1124 0.5 1306464216
## 271 3 1263 0.5 1306463569
## 272 3 1272 0.5 1306463624
## 273 3 1275 3.5 1306463323
## 274 3 1302 0.5 1306464189
## 275 3 1371 3.0 1306463561
## 276 3 1587 4.5 1306464003
## 277 3 2018 0.5 1306464175
## 278 3 2080 0.5 1306463572
## 279 3 2090 0.5 1306464261
## 280 3 2105 2.0 1306463559
## 281 3 2288 4.0 1306463631
## 282 3 2424 0.5 1306464293
## 283 3 2851 5.0 1306463925
## 284 3 3024 4.5 1306464054
## 285 3 3210 0.5 1306463638
## 286 3 3703 5.0 1306463603
## 287 3 3949 0.5 1306464245
## 288 3 4518 5.0 1306463770
## 289 3 5048 0.5 1306464284
## 290 3 5181 5.0 1306463718
## 291 3 5746 5.0 1306463708
## 292 3 5764 4.5 1306464021
## 293 3 5919 5.0 1306463825
## 294 3 6238 0.5 1306464204
## 295 3 6835 5.0 1306463670
## 296 3 7899 4.5 1306464036
## 297 3 7991 5.0 1306463684
## 298 3 26409 4.5 1306463993
## 299 3 70946 5.0 1306463815
## 300 3 72378 0.5 1306464164
## 301 4 21 3.0 986935199
## 302 4 32 2.0 945173447
## 303 4 45 3.0 986935047
## 304 4 47 2.0 945173425
## 305 4 52 3.0 964622786
## 306 4 58 3.0 964538444
## 307 4 106 4.0 986848784
## 308 4 125 5.0 964622758
## 309 4 126 1.0 986848920
## 310 4 162 5.0 945078571
## 311 4 171 3.0 945078428
## 312 4 176 5.0 964622565
## 313 4 190 2.0 945079259
## 314 4 215 5.0 945079078
## 315 4 222 1.0 945629040
## 316 4 232 5.0 964622684
## 317 4 235 2.0 945173513
## 318 4 247 3.0 986848894
## 319 4 260 5.0 945079259
## 320 4 265 5.0 964538468
## 321 4 296 1.0 945173350
## 322 4 319 5.0 945079182
## 323 4 342 5.0 964538500
## 324 4 345 4.0 945629063
## 325 4 348 4.0 964622786
## 326 4 351 3.0 986934901
## 327 4 357 3.0 964623306
## 328 4 368 4.0 945078690
## 329 4 417 2.0 945078467
## 330 4 441 1.0 986934915
## 331 4 450 2.0 986848828
## 332 4 457 5.0 945079259
## 333 4 475 5.0 945174290
## 334 4 492 5.0 945079872
## 335 4 509 1.0 945079106
## 336 4 538 5.0 945078636
## 337 4 539 1.0 964538832
## 338 4 553 2.0 945079301
## 339 4 588 4.0 945079670
## 340 4 593 5.0 964539986
## 341 4 595 3.0 986848609
## 342 4 599 2.0 945078587
## 343 4 608 5.0 964540008
## 344 4 648 3.0 945079906
## 345 4 708 4.0 986935230
## 346 4 759 3.0 945078601
## 347 4 800 4.0 945079106
## 348 4 892 4.0 964622714
## 349 4 898 5.0 964623347
## 350 4 899 4.0 945079653
## 351 4 902 4.0 945078446
## 352 4 904 4.0 945079837
## 353 4 908 5.0 945173902
## 354 4 910 5.0 945173989
## 355 4 912 5.0 945173902
## 356 4 914 5.0 945079670
## 357 4 919 5.0 945079521
## 358 4 920 5.0 945173602
## 359 4 930 5.0 964538571
## 360 4 937 3.0 986849085
## 361 4 1025 4.0 945079232
## 362 4 1046 5.0 945173654
## 363 4 1057 3.0 964540578
## 364 4 1060 2.0 986934819
## 365 4 1073 4.0 945079483
## 366 4 1077 5.0 945173692
## 367 4 1079 2.0 945078946
## 368 4 1080 5.0 986934696
## 369 4 1084 5.0 945079259
## 370 4 1086 5.0 964539723
## 371 4 1094 3.0 964538500
## 372 4 1103 5.0 964539723
## 373 4 1136 5.0 986934625
## 374 4 1179 4.0 964539180
## 375 4 1183 1.0 964778513
## 376 4 1188 5.0 964538500
## 377 4 1196 5.0 964538763
## 378 4 1197 5.0 964538763
## 379 4 1198 3.0 964538728
## 380 4 1199 2.0 945078967
## 381 4 1203 5.0 945174025
## 382 4 1211 1.0 964539205
## 383 4 1213 4.0 945079729
## 384 4 1219 4.0 964539961
## 385 4 1225 4.0 964539326
## 386 4 1250 5.0 945174008
## 387 4 1259 4.0 964538728
## 388 4 1265 4.0 964622684
## 389 4 1266 4.0 986849037
## 390 4 1279 2.0 986934832
## 391 4 1282 5.0 945079653
## 392 4 1283 5.0 945078690
## 393 4 1288 4.0 945079653
## 394 4 1291 4.0 964538763
## 395 4 1304 3.0 945078467
## 396 4 1391 1.0 945173766
## 397 4 1449 5.0 945079767
## 398 4 1466 4.0 945173492
## 399 4 1500 4.0 964622830
## 400 4 1517 4.0 945079790
## 401 4 1580 3.0 986935244
## 402 4 1597 1.0 945079906
## 403 4 1617 2.0 945079837
## 404 4 1641 4.0 964622758
## 405 4 1704 1.0 945629015
## 406 4 1719 4.0 945079956
## 407 4 1732 4.0 945079889
## 408 4 1733 5.0 945079143
## 409 4 1734 3.0 964539357
## 410 4 1834 5.0 945174134
## 411 4 1860 2.0 986849001
## 412 4 1883 4.0 964622642
## 413 4 1885 3.0 964622617
## 414 4 1892 2.0 964539431
## 415 4 1895 4.0 945629179
## 416 4 1907 3.0 964540505
## 417 4 1914 4.0 964622714
## 418 4 1916 1.0 986934786
## 419 4 1923 3.0 986934870
## 420 4 1947 5.0 945079653
## 421 4 1966 2.0 964622684
## 422 4 1967 5.0 945078967
## 423 4 1968 4.0 986934786
## 424 4 2019 2.0 945078690
## 425 4 2076 4.0 945079052
## 426 4 2078 5.0 945079521
## 427 4 2109 4.0 986935016
## 428 4 2145 3.0 986935328
## 429 4 2150 5.0 986934738
## 430 4 2174 5.0 964539855
## 431 4 2186 5.0 945174008
## 432 4 2203 4.0 945079729
## 433 4 2204 5.0 964540008
## 434 4 2282 1.0 945629238
## 435 4 2324 1.0 964622590
## 436 4 2336 2.0 964538964
## 437 4 2351 4.0 945078467
## 438 4 2359 4.0 964622590
## 439 4 2390 5.0 945079164
## 440 4 2395 3.0 964623306
## 441 4 2406 4.0 986935302
## 442 4 2467 4.0 945079858
## 443 4 2571 1.0 945173385
## 444 4 2583 5.0 945078863
## 445 4 2599 5.0 964622684
## 446 4 2628 1.0 986848894
## 447 4 2683 4.0 945079790
## 448 4 2692 5.0 945079013
## 449 4 2712 2.0 945078542
## 450 4 2762 4.0 964539986
## 451 4 2763 1.0 964778621
## 452 4 2770 2.0 945173553
## 453 4 2791 5.0 964539628
## 454 4 2843 5.0 945078814
## 455 4 2858 5.0 964539140
## 456 4 2874 4.0 986935016
## 457 4 2921 4.0 945078708
## 458 4 2926 5.0 986934870
## 459 4 2959 2.0 945078528
## 460 4 2973 2.0 945078946
## 461 4 2997 4.0 986848610
## 462 4 3033 4.0 986936200
## 463 4 3044 5.0 945079920
## 464 4 3060 4.0 986934884
## 465 4 3079 3.0 964778197
## 466 4 3083 5.0 964622487
## 467 4 3160 4.0 964539121
## 468 4 3175 1.0 964538930
## 469 4 3176 4.0 964539771
## 470 4 3204 4.0 964539828
## 471 4 3255 4.0 964623306
## 472 4 3317 4.0 986934498
## 473 4 3358 3.0 964622758
## 474 4 3365 5.0 964538329
## 475 4 3386 4.0 964539395
## 476 4 3408 4.0 986849238
## 477 4 3481 2.0 964538243
## 478 4 3489 1.0 986848908
## 479 4 3508 5.0 964538351
## 480 4 3538 2.0 986849212
## 481 4 3591 1.0 986935199
## 482 4 3788 3.0 964539085
## 483 4 3809 3.0 986936207
## 484 4 3851 5.0 986849180
## 485 4 3897 4.0 986934465
## 486 4 3911 3.0 986849149
## 487 4 3967 4.0 986849164
## 488 4 3996 4.0 986849130
## 489 4 4002 3.0 986934819
## 490 4 4014 1.0 986849254
## 491 4 4020 3.0 986848856
## 492 4 4021 4.0 986849180
## 493 4 4027 3.0 986849201
## 494 4 4029 3.0 986849226
## 495 4 4033 4.0 986849149
## 496 4 4034 5.0 986848753
## 497 4 4074 3.0 986848665
## 498 4 4121 4.0 986934901
## 499 4 4144 3.0 986848685
## 500 4 4166 3.0 986848700
## 501 4 4226 2.0 1007569424
## 502 4 4239 5.0 986848685
## 503 4 4246 4.0 1007574542
## 504 4 4252 3.0 1007569465
## 505 4 4260 2.0 1007569424
## 506 4 4273 4.0 1007574470
## 507 4 4308 1.0 1007569465
## 508 4 4347 4.0 1007569586
## 509 4 4381 3.0 1007574509
## 510 4 4641 1.0 1007569586
## 511 4 4741 3.0 1007574532
## 512 4 4765 5.0 1007569445
## 513 4 4881 3.0 1007569445
## 514 4 4896 4.0 1007574532
## 515 4 4902 4.0 1007569465
## 516 4 4967 5.0 1007569424
## 517 5 1 4.0 847434962
## 518 5 21 4.0 847435238
## 519 5 34 4.0 847434881
## 520 5 36 4.0 847435292
## 521 5 39 3.0 847434961
## 522 5 50 4.0 847434881
## 523 5 58 5.0 847435238
## 524 5 110 4.0 847434880
## 525 5 150 3.0 847434748
## 526 5 153 3.0 847434802
## 527 5 232 4.0 847435292
## 528 5 247 5.0 847435337
## 529 5 253 3.0 847435292
## 530 5 261 4.0 847435238
## 531 5 265 3.0 847435129
## 532 5 266 1.0 847435311
## 533 5 290 5.0 847435311
## 534 5 296 5.0 847434748
## 535 5 300 3.0 847435337
## 536 5 316 2.0 847434832
## 537 5 318 3.0 847434880
## 538 5 344 3.0 847434802
## 539 5 349 3.0 847434832
## 540 5 357 2.0 847435238
## 541 5 364 3.0 847434882
## 542 5 367 4.0 847435129
## 543 5 380 2.0 847434748
## 544 5 410 3.0 847435292
## 545 5 457 4.0 847434801
## 546 5 474 4.0 847435337
## 547 5 475 5.0 847435311
## 548 5 515 3.0 847435129
## 549 5 527 5.0 847434960
## 550 5 531 4.0 847435258
## 551 5 534 3.0 847435311
## 552 5 588 4.0 847434801
## 553 5 589 3.0 847435258
## 554 5 590 5.0 847434747
## 555 5 592 3.0 847434747
## 556 5 594 5.0 847435238
## 557 5 595 5.0 847434832
## 558 5 596 5.0 847435292
## 559 5 597 3.0 847434962
## 560 5 608 3.0 847435258
## 561 6 2 4.0 845553522
## 562 6 3 5.0 845554296
## 563 6 4 3.0 845554349
## 564 6 5 5.0 845553938
## 565 6 6 4.0 845553757
## 566 6 7 4.0 845554264
## 567 6 8 3.0 845555281
## 568 6 10 3.0 845553253
## 569 6 11 4.0 845553489
## 570 6 13 3.0 845555588
## 571 6 15 4.0 845554505
## 572 6 16 4.0 845553819
## 573 6 17 4.0 845553559
## 574 6 19 2.0 845553382
## 575 6 21 2.0 845553382
## 576 6 22 5.0 845553875
## 577 6 24 4.0 845554397
## 578 6 25 3.0 845553695
## 579 6 26 4.0 845555362
## 580 6 27 3.0 845555402
## 581 6 31 3.0 845553819
## 582 6 32 4.0 845553426
## 583 6 34 4.0 845553354
## 584 6 36 5.0 845553726
## 585 6 41 4.0 845554962
## 586 6 43 4.0 845555607
## 587 6 45 3.0 845553907
## 588 6 46 4.0 845554551
## 589 6 47 4.0 845553317
## 590 6 50 1.0 845553381
## 591 6 54 4.0 845555402
## 592 6 60 4.0 845554263
## 593 6 61 4.0 845555454
## 594 6 62 4.0 845553660
## 595 6 65 3.0 845555070
## 596 6 66 3.0 845555151
## 597 6 76 4.0 845555317
## 598 6 79 3.0 845554907
## 599 6 86 5.0 845556131
## 600 6 87 3.0 845555300
## 601 6 88 2.0 845555694
## 602 6 89 4.0 845555124
## 603 6 92 4.0 845555454
## 604 6 93 4.0 845554584
## 605 6 95 4.0 845553559
## 606 6 100 3.0 845555151
## 607 6 102 1.0 845555436
## 608 6 104 4.0 845554349
## 609 6 105 3.0 845553757
## 610 6 110 5.0 845553283
## 611 6 112 4.0 845553994
## 612 6 113 3.0 845556257
## 613 6 126 3.0 845555342
## 614 6 135 3.0 845554987
## 615 6 140 3.0 845555024
## 616 6 141 4.0 845553586
## 617 6 145 4.0 845553966
## 618 6 146 4.0 845555607
## 619 6 150 4.0 845553110
## 620 6 151 4.0 845553586
## 621 6 153 3.0 845553146
## 622 6 158 4.0 845553660
## 623 6 159 3.0 845555006
## 624 6 160 5.0 845553457
## 625 6 161 3.0 845553253
## 626 6 163 3.0 845553907
## 627 6 165 3.0 845553146
## 628 6 168 5.0 845553695
## 629 6 170 3.0 845554263
## 630 6 171 3.0 845555402
## 631 6 174 3.0 845554479
## 632 6 177 3.0 845554931
## 633 6 179 1.0 845555362
## 634 6 180 2.0 845555006
## 635 6 181 3.0 845553938
## 636 6 185 3.0 845553283
## 637 6 186 3.0 845553619
## 638 6 189 3.0 845556241
## 639 6 191 2.0 845554931
## 640 6 195 4.0 845554455
## 641 6 196 3.0 845553586
## 642 6 201 3.0 845556290
## 643 6 204 3.0 845553619
## 644 6 205 3.0 845555477
## 645 6 207 4.0 845554024
## 646 6 208 3.0 845553253
## 647 6 209 3.0 845556106
## 648 6 210 4.0 845556310
## 649 6 212 4.0 845556181
## 650 6 216 4.0 845554099
## 651 6 217 3.0 845555382
## 652 6 218 2.0 845553994
## 653 6 219 3.0 845556131
## 654 6 222 4.0 845554024
## 655 6 224 3.0 845553794
## 656 6 225 4.0 845553381
## 657 6 230 5.0 845553966
## 658 6 231 3.0 845553174
## 659 6 234 2.0 845554176
## 660 6 236 4.0 845553559
## 661 6 237 4.0 845553875
## 662 6 239 3.0 845554987
## 663 6 240 3.0 845555571
## 664 6 243 3.0 845555588
## 665 6 248 5.0 845554263
## 666 6 250 4.0 845555588
## 667 6 251 3.0 845556257
## 668 6 252 4.0 845553619
## 669 6 253 3.0 845553283
## 670 6 254 3.0 845555655
## 671 6 256 3.0 845553726
## 672 6 257 5.0 845554176
## 673 6 258 3.0 845555172
## 674 6 261 4.0 845553695
## 675 6 262 5.0 845554551
## 676 6 265 3.0 845553726
## 677 6 266 3.0 845553457
## 678 6 267 3.0 845554376
## 679 6 270 3.0 845555172
## 680 6 271 4.0 845555249
## 681 6 273 3.0 845553875
## 682 6 274 4.0 845555151
## 683 6 276 4.0 845553907
## 684 6 277 5.0 845553844
## 685 6 279 3.0 845555436
## 686 6 281 4.0 845554320
## 687 6 282 3.0 845553522
## 688 6 288 2.0 845553283
## 689 6 289 3.0 845554455
## 690 6 291 3.0 845555571
## 691 6 292 4.0 845553253
## 692 6 293 3.0 845553660
## 693 6 296 2.0 845553110
## 694 6 302 3.0 845555436
## 695 6 303 3.0 845554099
## 696 6 304 4.0 845555546
## 697 6 310 3.0 845556119
## 698 6 312 1.0 845555151
## 699 6 313 3.0 845555546
## 700 6 314 5.0 845554603
## 701 6 315 4.0 845553522
## 702 6 316 5.0 845553174
## 703 6 317 4.0 845553457
## 704 6 318 5.0 845553200
## 705 6 327 1.0 845554062
## 706 6 329 4.0 845553200
## 707 6 330 3.0 845555071
## 708 6 332 3.0 845555046
## 709 6 333 5.0 845553757
## 710 6 336 3.0 845556223
## 711 6 337 5.0 845553586
## 712 6 339 4.0 845553253
## 713 6 340 4.0 845555265
## 714 6 342 3.0 845553938
## 715 6 343 3.0 845555172
## 716 6 344 3.0 845553146
## 717 6 347 3.0 845555300
## 718 6 348 3.0 845553938
## 719 6 349 5.0 845553146
## 720 6 350 5.0 845553489
## 721 6 351 4.0 845554455
## 722 6 352 3.0 845555382
## 723 6 353 4.0 845553726
## 724 6 354 4.0 845555402
## 725 6 355 4.0 845553819
## 726 6 356 5.0 845553200
## 727 6 357 3.0 845553457
## 728 6 358 3.0 845555265
## 729 6 359 3.0 845556412
## 730 6 360 3.0 845555094
## 731 6 361 4.0 845554376
## 732 6 362 3.0 845553994
## 733 6 364 5.0 845553317
## 734 6 366 3.0 845554962
## 735 6 367 4.0 845553317
## 736 6 368 5.0 845553726
## 737 6 370 4.0 845553794
## 738 6 371 3.0 845554141
## 739 6 374 3.0 845554296
## 740 6 377 5.0 845553317
## 741 6 378 3.0 845554987
## 742 6 380 4.0 845553110
## 743 6 381 3.0 845553994
## 744 6 382 3.0 845554397
## 745 6 383 3.0 845554320
## 746 6 405 3.0 845554603
## 747 6 410 3.0 845553354
## 748 6 412 3.0 845554505
## 749 6 415 4.0 845554420
## 750 6 416 3.0 845554962
## 751 6 419 3.0 845554224
## 752 6 426 3.0 845554551
## 753 6 432 5.0 845553489
## 754 6 434 4.0 845553200
## 755 6 435 3.0 845553489
## 756 6 437 3.0 845554505
## 757 6 440 4.0 845553457
## 758 6 445 3.0 845555124
## 759 6 450 4.0 845555024
## 760 6 454 4.0 845553283
## 761 6 455 3.0 845554062
## 762 6 457 5.0 845553174
## 763 6 458 3.0 845555546
## 764 6 460 3.0 845555281
## 765 6 466 2.0 845553844
## 766 6 468 4.0 845553907
## 767 6 469 4.0 845555477
## 768 6 472 3.0 845555632
## 769 6 474 4.0 845553522
## 770 6 475 4.0 845554099
## 771 6 477 4.0 845554141
## 772 6 480 5.0 845553200
## 773 6 485 3.0 845553794
## 774 6 489 3.0 845554505
## 775 6 490 3.0 845554584
## 776 6 491 4.0 845554141
## 777 6 493 3.0 845555172
## 778 6 494 3.0 845554176
## 779 6 497 3.0 845553819
## 780 6 500 5.0 845553354
## 781 6 502 3.0 845554455
## 782 6 505 3.0 845555317
## 783 6 508 4.0 845553586
## 784 6 509 3.0 845553522
## 785 6 510 3.0 845555546
## 786 6 515 4.0 845553794
## 787 6 516 4.0 845554908
## 788 6 520 3.0 845553844
## 789 6 524 3.0 845554479
## 790 6 527 3.0 845553426
## 791 6 531 3.0 845554296
## 792 6 532 3.0 845554224
## 793 6 536 3.0 845556181
## 794 6 537 3.0 845554551
## 795 6 539 3.0 845553426
## 796 6 540 3.0 845554099
## 797 6 542 4.0 845554524
## 798 6 543 3.0 845554099
## 799 6 546 2.0 845554349
## 800 6 548 3.0 845554908
## 801 6 552 3.0 845553875
## 802 6 553 5.0 845553559
## 803 6 569 4.0 845555342
## 804 6 575 3.0 845555070
## 805 6 587 5.0 845553381
## 806 6 588 5.0 845553146
## 807 6 589 3.0 845553317
## 808 6 590 5.0 845553109
## 809 6 592 3.0 845553109
## 810 6 593 4.0 845553174
## 811 6 594 4.0 845553819
## 812 6 595 5.0 845553174
## 813 6 596 3.0 845554141
## 814 6 597 4.0 845553354
## 815 6 606 3.0 845555024
## 816 6 608 3.0 845553844
## 817 6 609 4.0 845555342
## 818 6 616 5.0 845554062
## 819 6 628 3.0 845555300
## 820 6 631 4.0 845555265
## 821 6 637 4.0 845555046
## 822 6 640 1.0 845555362
## 823 6 647 4.0 845555151
## 824 6 662 3.0 845556147
## 825 6 667 3.0 845555342
## 826 6 694 3.0 845555694
## 827 6 697 3.0 845556378
## 828 6 700 4.0 845556147
## 829 6 704 3.0 845555571
## 830 6 708 4.0 845554376
## 831 6 709 5.0 845555249
## 832 6 710 3.0 845556223
## 833 6 711 4.0 845555317
## 834 6 719 2.0 845555694
## 835 6 736 5.0 845553619
## 836 6 747 3.0 845555046
## 837 6 762 1.0 845555006
## 838 6 765 3.0 845555632
## 839 6 775 3.0 845556462
## 840 6 780 5.0 845556915
## 841 6 783 5.0 845554584
## 842 6 795 3.0 845556506
## 843 6 799 3.0 845555656
## 844 6 801 3.0 845556194
## 845 6 802 4.0 845554584
## 846 6 818 3.0 845555514
## 847 6 830 5.0 845556222
## 848 6 835 4.0 845556194
## 849 6 837 3.0 845556241
## 850 6 838 4.0 845555514
## 851 6 839 3.0 845556120
## 852 6 842 3.0 845555675
## 853 6 848 4.0 845556340
## 854 6 852 4.0 845555694
## 855 6 867 3.0 845556412
## 856 6 880 3.0 845556181
## 857 6 881 3.0 845556340
## 858 6 888 3.0 845556448
## 859 6 891 3.0 845556241
## 860 6 979 3.0 845556808
## 861 6 981 3.0 845556567
## 862 6 986 4.0 845556475
## 863 6 991 4.0 845556808
## 864 6 996 4.0 845556323
## 865 6 999 2.0 845556412
## 866 6 1004 4.0 845556506
## 867 6 1006 4.0 845556694
## 868 6 1042 3.0 845556462
## 869 6 1049 5.0 845556694
## 870 6 1061 4.0 845556860
## 871 6 1064 4.0 845556579
## 872 6 1073 3.0 845555571
## 873 6 1082 4.0 845556278
## 874 6 1084 3.0 845555454
## 875 7 1 4.5 1106635946
## 876 7 50 4.5 1106635993
## 877 7 58 3.0 1106635520
## 878 7 150 4.5 1106635925
## 879 7 165 4.0 1106635987
## 880 7 260 5.0 1106635933
## 881 7 356 5.0 1106635915
## 882 7 380 3.0 1106635937
## 883 7 466 5.0 1106635532
## 884 7 480 5.0 1106635917
## 885 7 587 2.0 1106635714
## 886 7 588 3.0 1106635971
## 887 7 589 2.5 1106635940
## 888 7 592 3.0 1106635922
## 889 7 593 5.0 1106635912
## 890 7 595 3.5 1106712636
## 891 7 648 4.0 1106635981
## 892 7 750 4.0 1106636810
## 893 7 780 4.5 1106635943
## 894 7 920 3.0 1106635685
## 895 7 924 4.0 1106712615
## 896 7 1101 4.0 1106635502
## 897 7 1183 1.5 1106712613
## 898 7 1196 4.0 1106635996
## 899 7 1208 4.0 1106635462
## 900 7 1210 4.0 1106635965
## 901 7 1219 5.0 1106635496
## 902 7 1220 4.5 1106635464
## 903 7 1240 5.0 1106712575
## 904 7 1246 1.5 1106635678
## 905 7 1270 5.0 1106635681
## 906 7 1517 3.5 1106635489
## 907 7 1584 5.0 1106635423
## 908 7 1610 4.0 1106635429
## 909 7 1617 3.0 1107127060
## 910 7 1682 3.0 1106635653
## 911 7 1784 0.5 1106635416
## 912 7 1917 4.0 1106635484
## 913 7 1923 1.5 1106635444
## 914 7 1954 4.5 1106635657
## 915 7 2019 5.0 1106713565
## 916 7 2324 2.0 1106712559
## 917 7 2353 3.5 1106635625
## 918 7 2529 5.0 1106635640
## 919 7 2628 1.5 1106712553
## 920 7 2640 3.0 1106635540
## 921 7 2671 4.5 1113542732
## 922 7 2683 2.0 1106635420
## 923 7 2688 2.5 1106713072
## 924 7 2701 1.5 1106713076
## 925 7 2717 3.5 1106713081
## 926 7 2762 4.5 1106635648
## 927 7 2858 4.0 1106712546
## 928 7 3114 4.5 1106635500
## 929 7 3354 1.5 1106713005
## 930 7 3408 4.5 1106712549
## 931 7 3578 1.5 1106636534
## 932 7 3623 1.0 1106712541
## 933 7 3793 3.5 1106635630
## 934 7 3869 5.0 1106635733
## 935 7 3916 4.0 1106636596
## 936 7 3977 2.5 1106635635
## 937 7 3994 3.0 1161738301
## 938 7 4018 4.0 1106712913
## 939 7 4223 2.0 1106635742
## 940 7 4246 2.0 1110855253
## 941 7 4306 4.0 1106635524
## 942 7 4310 0.5 1107127033
## 943 7 4370 4.5 1106712869
## 944 7 4643 1.0 1106635749
## 945 7 4700 1.5 1109746591
## 946 7 4844 1.5 1161738352
## 947 7 4874 3.0 1106635738
## 948 7 4886 4.0 1106636531
## 949 7 4896 4.0 1106636718
## 950 7 4963 4.0 1106636702
## 951 7 4993 4.5 1106636589
## 952 7 4995 4.5 1106636610
## 953 7 5218 3.5 1106712866
## 954 7 5349 3.5 1106636606
## 955 7 5378 0.5 1106635735
## 956 7 5445 4.0 1106636707
## 957 7 5459 3.0 1106712820
## 958 7 5464 3.0 1106636612
## 959 7 5502 1.5 1106635745
## 960 7 5618 5.0 1106713586
## 961 7 5816 4.5 1106635705
## 962 7 5952 4.5 1106636527
## 963 7 5989 4.0 1106636600
## 964 7 5991 4.5 1106712818
## 965 7 6333 4.0 1106636516
## 966 7 6365 4.0 1106712831
## 967 7 6534 0.5 1157949714
## 968 7 6539 4.5 1106636584
## 969 7 6863 4.5 1106712827
## 970 7 6934 2.0 1106712812
## 971 7 7143 4.5 1106636579
## 972 7 7153 4.0 1106636520
## 973 7 7155 3.0 1173051472
## 974 7 7445 4.0 1107473963
## 975 7 8207 4.5 1106713442
## 976 7 8360 3.5 1106636782
## 977 7 8368 2.5 1106636592
## 978 7 8373 2.0 1108602792
## 979 7 8528 4.5 1106636844
## 980 7 8636 4.5 1106636511
## 981 7 8665 3.5 1108602755
## 982 7 8666 1.0 1106779625
## 983 7 8783 1.0 1161738306
## 984 7 8798 4.5 1106636602
## 985 7 8808 1.5 1109746594
## 986 7 8865 1.0 1106713549
## 987 7 8870 3.5 1118025961
## 988 7 8907 1.0 1110757877
## 989 7 8908 4.5 1122333561
## 990 7 8949 4.0 1110757890
## 991 7 8957 4.0 1106636098
## 992 7 8958 3.5 1110173697
## 993 7 8961 4.0 1106636064
## 994 7 8965 1.0 1106636095
## 995 7 8970 2.5 1106636069
## 996 7 8972 2.5 1111552650
## 997 7 8984 4.0 1106636101
## 998 7 27741 3.0 1107474020
## 999 7 30812 3.5 1113353083
## 1000 7 30816 2.0 1107127004
## 1001 7 31878 3.5 1118025982
## 1002 7 32029 2.0 1118025946
## 1003 7 32031 1.5 1122940686
## 1004 7 32296 2.0 1118026013
## 1005 7 32587 3.5 1128486479
## 1006 7 33162 3.5 1116550784
## 1007 7 33493 1.0 1121041079
## 1008 7 33794 2.0 1121041002
## 1009 7 33836 1.0 1125442102
## 1010 7 34048 3.0 1121041015
## 1011 7 34319 4.5 1122333538
## 1012 7 37741 3.5 1162163504
## 1013 7 38388 3.5 1149548381
## 1014 7 42002 4.5 1144806100
## 1015 7 45499 4.0 1157949636
## 1016 7 45517 4.5 1157066190
## 1017 7 45668 1.0 1159225196
## 1018 7 45730 0.5 1161738279
## 1019 7 46530 1.0 1157949732
## 1020 7 48516 1.0 1169687318
## 1021 7 48783 4.5 1162163488
## 1022 7 48997 2.5 1174263740
## 1023 7 49272 4.5 1165876367
## 1024 7 49278 3.5 1174263775
## 1025 7 49286 0.5 1176181731
## 1026 7 49824 3.0 1173051469
## 1027 8 2 4.0 839463806
## 1028 8 10 2.0 839463509
## 1029 8 11 4.0 839463806
## 1030 8 21 4.0 839463564
## 1031 8 32 3.0 839463624
## 1032 8 34 5.0 839463546
## 1033 8 39 3.0 839463644
## 1034 8 47 4.0 839463546
## 1035 8 50 5.0 839463644
## 1036 8 110 3.0 839463527
## 1037 8 141 3.0 839464076
## 1038 8 150 4.0 839463422
## 1039 8 153 2.0 839463451
## 1040 8 185 5.0 839463509
## 1041 8 186 4.0 839463856
## 1042 8 208 3.0 839463509
## 1043 8 231 4.0 839463470
## 1044 8 235 3.0 839464076
## 1045 8 236 3.0 839463767
## 1046 8 252 3.0 839463856
## 1047 8 253 5.0 839463509
## 1048 8 282 3.0 839463767
## 1049 8 292 3.0 839463489
## 1050 8 296 4.0 839463422
## 1051 8 317 3.0 839463644
## 1052 8 318 5.0 839463489
## 1053 8 339 3.0 839463509
## 1054 8 356 3.0 839463527
## 1055 8 357 5.0 839463767
## 1056 8 364 5.0 839463546
## 1057 8 367 3.0 839463564
## 1058 8 377 4.0 839463644
## 1059 8 380 5.0 839463422
## 1060 8 432 1.0 839463702
## 1061 8 440 3.0 839463728
## 1062 8 454 4.0 839463546
## 1063 8 457 3.0 839463489
## 1064 8 480 4.0 839463527
## 1065 8 500 2.0 839463624
## 1066 8 527 5.0 839463728
## 1067 8 539 3.0 839463728
## 1068 8 586 3.0 839463702
## 1069 8 587 3.0 839463702
## 1070 8 590 5.0 839463422
## 1071 8 592 3.0 839463422
## 1072 8 593 4.0 839463470
## 1073 8 597 3.0 839463728
## 1074 9 41 3.0 1044656650
## 1075 9 187 3.0 1044657119
## 1076 9 223 4.0 1044656650
## 1077 9 371 3.0 1044656716
## 1078 9 627 3.0 1044657102
## 1079 9 922 4.0 1044657026
## 1080 9 923 5.0 1044657026
## 1081 9 1037 2.0 1044656650
## 1082 9 1095 4.0 1044657088
## 1083 9 1198 5.0 1044656716
## 1084 9 1270 5.0 1044657088
## 1085 9 1674 4.0 1044656650
## 1086 9 1987 2.0 1044656716
## 1087 9 2011 3.0 1044657200
## 1088 9 2012 4.0 1044657237
## 1089 9 2023 3.0 1044656650
## 1090 9 2300 5.0 1044657072
## 1091 9 2877 3.0 1044657221
## 1092 9 2901 2.0 1044656716
## 1093 9 3173 2.0 1044656650
## 1094 9 3328 3.0 1044656650
## 1095 9 3735 3.0 1044657051
## 1096 9 4131 1.0 1044657221
## 1097 9 4558 1.0 1044656650
## 1098 9 4993 5.0 1044657051
## 1099 9 5218 4.0 1044656811
## 1100 9 5378 3.0 1044656811
## 1101 9 5445 4.0 1044656792
## 1102 9 5447 4.0 1044656836
## 1103 9 5451 4.0 1044656836
## 1104 9 5481 5.0 1044656836
## 1105 9 5507 1.0 1044656836
## 1106 9 5841 1.0 1044657318
## 1107 9 5843 3.0 1044657269
## 1108 9 5872 3.0 1044656962
## 1109 9 5890 4.0 1044656792
## 1110 9 5891 1.0 1044657318
## 1111 9 5893 4.0 1044657144
## 1112 9 5902 5.0 1044656934
## 1113 9 5952 5.0 1044656908
## 1114 9 5956 4.0 1044656962
## 1115 9 5962 1.0 1044657338
## 1116 9 5965 4.0 1044657185
## 1117 9 5988 2.0 1044657269
## 1118 9 6001 4.0 1044657072
## 1119 9 6044 2.0 1044657285
## 1120 10 296 1.0 1455303387
## 1121 10 356 3.5 1455301685
## 1122 10 588 4.0 1455306173
## 1123 10 597 3.5 1455357645
## 1124 10 912 4.0 1455302254
## 1125 10 1028 0.5 1455306152
## 1126 10 1088 3.0 1455619275
## 1127 10 1247 3.0 1455303518
## 1128 10 1307 3.0 1455357613
## 1129 10 1784 3.5 1455301699
## 1130 10 1907 4.0 1455306183
## 1131 10 2571 0.5 1455356378
## 1132 10 2671 3.5 1455357517
## 1133 10 2762 0.5 1455356388
## 1134 10 2858 1.0 1455356578
## 1135 10 2959 0.5 1455356582
## 1136 10 3578 4.0 1455356591
## 1137 10 3882 3.0 1455398344
## 1138 10 4246 3.5 1455302676
## 1139 10 4306 4.5 1455356595
## 1140 10 4447 4.5 1455398321
## 1141 10 4993 4.0 1455356385
## 1142 10 4995 4.0 1455301798
## 1143 10 5066 3.0 1455399329
## 1144 10 5377 3.5 1455301898
## 1145 10 5620 3.0 1455357578
## 1146 10 5943 3.0 1455303078
## 1147 10 5952 4.0 1455356588
## 1148 10 5957 3.0 1455397999
## 1149 10 6155 3.0 1455357557
## 1150 10 6266 3.0 1455303070
## 1151 10 6377 3.5 1455306101
## 1152 10 6535 4.0 1455398379
## 1153 10 6942 4.0 1455301621
## 1154 10 7149 4.0 1455399533
## 1155 10 7151 3.0 1455302670
## 1156 10 7153 4.0 1455356347
## 1157 10 7154 4.0 1455399087
## 1158 10 7169 4.5 1455303046
## 1159 10 7293 3.5 1455402085
## 1160 10 7375 4.0 1455303057
## 1161 10 7451 3.5 1455399289
## 1162 10 7458 5.0 1455356656
## 1163 10 8529 3.5 1455398107
## 1164 10 8533 5.0 1455301847
## 1165 10 8636 3.5 1455356713
## 1166 10 8665 3.5 1455356327
## 1167 10 8808 3.0 1455397936
## 1168 10 8869 5.0 1455303064
## 1169 10 8961 2.5 1455302401
## 1170 10 8969 3.5 1455302697
## 1171 10 8970 1.0 1455398160
## 1172 10 30749 3.5 1455398096
## 1173 10 31433 2.5 1455357527
## 1174 10 31685 4.5 1455357602
## 1175 10 33145 3.0 1455398153
## 1176 10 33679 3.0 1455357626
## 1177 10 33794 5.0 1455302031
## 1178 10 40629 3.0 1455356796
## 1179 10 40819 4.0 1455301745
## 1180 10 41285 2.5 1455301854
## 1181 10 47099 3.0 1455401876
## 1182 10 49272 5.0 1455302162
## 1183 10 49286 5.0 1455357502
## 1184 10 51662 3.0 1455356357
## 1185 10 51705 4.5 1455359663
## 1186 10 51834 1.5 1455399396
## 1187 10 54286 3.5 1455356320
## 1188 10 56367 3.5 1455301825
## 1189 10 56949 3.0 1455357531
## 1190 10 58047 3.5 1455302791
## 1191 10 58559 4.5 1455302113
## 1192 10 59333 2.5 1455357564
## 1193 10 59421 2.0 1455398002
## 1194 10 60397 3.0 1455302689
## 1195 10 60950 2.0 1455301965
## 1196 10 61250 2.5 1455398339
## 1197 10 63113 3.5 1455302183
## 1198 10 63992 4.5 1455356863
## 1199 10 64969 0.5 1455357607
## 1200 10 66203 3.5 1455357596
## 1201 10 68954 4.0 1455304158
## 1202 10 69406 4.5 1455302747
## 1203 10 69844 3.0 1455399200
## 1204 10 70183 3.0 1455357636
## 1205 10 70293 0.5 1455398141
## 1206 10 71579 5.0 1455301869
## 1207 10 72011 2.5 1455301741
## 1208 10 72330 3.5 1455399573
## 1209 10 72407 3.0 1455356987
## 1210 10 72720 3.5 1455301822
## 1211 10 72737 3.5 1455398131
## 1212 10 72998 2.5 1455356351
## 1213 10 73017 3.0 1455356691
## 1214 10 74450 3.0 1455357541
## 1215 10 77841 2.0 1455302684
## 1216 10 78772 3.0 1455356988
## 1217 10 79091 5.0 1455306124
## 1218 10 80549 3.5 1455399347
## 1219 10 81784 2.5 1455357716
## 1220 10 81845 5.0 1455302591
## 1221 10 81847 3.5 1455399313
## 1222 10 82167 3.5 1455357720
## 1223 10 82499 2.0 1455398390
## 1224 10 84374 3.5 1455357730
## 1225 10 86548 3.0 1455398396
## 1226 10 87222 3.5 1455306257
## 1227 10 88163 4.0 1455357504
## 1228 10 88810 3.0 1455399281
## 1229 10 91104 3.0 1455356990
## 1230 10 91529 5.0 1455302120
## 1231 10 92259 5.0 1455301553
## 1232 10 94070 4.5 1455357387
## 1233 10 95167 4.0 1455398177
## 1234 10 95449 4.0 1455356885
## 1235 10 95510 3.0 1455398127
## 1236 10 95543 3.5 1455399376
## 1237 10 96079 5.0 1455302172
## 1238 10 97024 0.5 1455301892
## 1239 10 97938 1.0 1455398105
## 1240 10 98203 3.0 1455356994
## 1241 10 103335 4.0 1455398111
## 1242 10 103339 4.0 1455356177
## 1243 10 104374 4.0 1455357653
## 1244 10 105211 2.5 1455399232
## 1245 10 106489 3.5 1455357076
## 1246 10 106696 4.5 1455306204
## 1247 10 106782 1.0 1455398089
## 1248 10 107141 2.0 1455399188
## 1249 10 109374 0.5 1455302315
## 1250 10 109487 0.5 1455398092
## 1251 10 109853 4.0 1455357656
## 1252 10 112006 4.0 1455398144
## 1253 10 113275 4.5 1455357698
## 1254 10 113394 4.0 1455398275
## 1255 10 119145 1.0 1455302650
## 1256 10 129428 3.5 1455357384
## 1257 10 136020 5.0 1455302192
## 1258 10 137595 4.0 1455356898
## 1259 10 140110 5.0 1455356776
## 1260 11 6 5.0 902154266
## 1261 11 10 3.0 902154316
## 1262 11 36 4.0 902155135
## 1263 11 44 2.0 902154593
## 1264 11 95 3.0 902154458
## 1265 11 110 5.0 902154266
## 1266 11 150 5.0 902154266
## 1267 11 153 3.0 902154593
## 1268 11 165 3.0 902154567
## 1269 11 170 4.0 902154621
## 1270 11 208 3.0 902154706
## 1271 11 292 4.0 902154383
## 1272 11 318 4.0 902155070
## 1273 11 349 5.0 902154342
## 1274 11 356 5.0 901200263
## 1275 11 368 3.0 904510567
## 1276 11 376 2.0 902154684
## 1277 11 377 3.0 902154431
## 1278 11 380 4.0 902154431
## 1279 11 434 3.0 902154685
## 1280 11 457 5.0 902154316
## 1281 11 466 3.0 902154805
## 1282 11 474 4.0 902154431
## 1283 11 480 4.0 902154383
## 1284 11 493 3.0 902154805
## 1285 11 511 4.0 902154514
## 1286 11 529 5.0 902155043
## 1287 11 589 4.0 902154266
## 1288 11 593 5.0 902155102
## 1289 11 648 4.0 902154514
## 1290 11 733 4.0 902154431
## 1291 11 736 4.0 902154542
## 1292 11 780 4.0 902154487
## 1293 11 1100 3.0 902154621
## 1294 11 1101 5.0 901200233
## 1295 11 1210 4.0 902154266
## 1296 11 1358 4.0 902155136
## 1297 11 1370 3.0 902154383
## 1298 11 1385 3.0 902154542
## 1299 11 1391 1.0 902154685
## 1300 11 1408 5.0 902154383
## 1301 11 1438 3.0 902154647
## 1302 11 1518 4.0 902154431
## 1303 11 1552 4.0 902154458
## 1304 11 1573 3.0 902154542
## 1305 11 1584 5.0 902155136
## 1306 11 1586 4.0 902154487
## 1307 11 1597 4.0 902154487
## 1308 11 1604 4.0 902154647
## 1309 11 1608 4.0 902154316
## 1310 11 1616 3.0 902154542
## 1311 11 1687 3.0 902154647
## 1312 11 1693 5.0 902155102
## 1313 11 1704 4.0 902155102
## 1314 11 1721 5.0 902154989
## 1315 11 1784 5.0 902155043
## 1316 11 1840 4.0 901200111
## 1317 11 1882 2.0 901200143
## 1318 11 1917 4.0 901200037
## 1319 11 1918 4.0 901200070
## 1320 11 1923 4.0 904510428
## 1321 11 2002 2.0 902154383
## 1322 11 2027 3.0 904510428
## 1323 11 2028 5.0 902153951
## 1324 12 39 4.0 1247264471
## 1325 12 168 5.0 1247264411
## 1326 12 222 5.0 1247263465
## 1327 12 256 5.0 1247263375
## 1328 12 261 4.5 1247263357
## 1329 12 277 3.0 1247263371
## 1330 12 357 3.5 1247264106
## 1331 12 543 3.5 1247263318
## 1332 12 830 4.0 1247263452
## 1333 12 838 5.0 1247264096
## 1334 12 920 4.5 1247264114
## 1335 12 1265 3.5 1247264118
## 1336 12 1357 5.0 1247263404
## 1337 12 1405 3.0 1247263395
## 1338 12 1721 5.0 1247264463
## 1339 12 1876 3.5 1247263334
## 1340 12 2072 5.0 1247263670
## 1341 12 2100 3.5 1247263337
## 1342 12 2421 3.0 1247263495
## 1343 12 2485 5.0 1247264406
## 1344 12 2572 5.0 1247263689
## 1345 12 2581 5.0 1247263444
## 1346 12 2694 4.0 1247263398
## 1347 12 2717 5.0 1247263428
## 1348 12 3668 5.0 1247264220
## 1349 12 3967 4.5 1247263471
## 1350 12 4018 4.5 1247264420
## 1351 12 5620 4.0 1247264417
## 1352 12 6942 5.0 1247264138
## 1353 12 8533 5.0 1247264151
## 1354 12 40629 5.0 1247264192
## 1355 12 63992 5.0 1247264457
## 1356 13 47 5.0 987895819
## 1357 13 305 1.0 987456968
## 1358 13 597 3.0 987456968
## 1359 13 1173 3.0 987457052
## 1360 13 1198 5.0 987456848
## 1361 13 1590 4.0 987457086
## 1362 13 1619 3.0 987895819
## 1363 13 1639 4.0 987456818
## 1364 13 1721 4.0 987456818
## 1365 13 2145 3.0 987456968
## 1366 13 2174 3.0 987456818
## 1367 13 2541 2.0 987456818
## 1368 13 2571 5.0 987457007
## 1369 13 3300 4.0 987895952
## 1370 13 3409 2.0 987895720
## 1371 13 3513 3.0 987895651
## 1372 13 3578 5.0 987895902
## 1373 13 3624 4.0 987895902
## 1374 13 3717 3.0 987895952
## 1375 13 3753 4.0 987895902
## 1376 13 3793 4.0 987895902
## 1377 13 3798 4.0 987895720
## 1378 13 3827 4.0 987895952
## 1379 13 3863 4.0 987896183
## 1380 13 3893 3.0 987895651
## 1381 13 3897 4.0 987895582
## 1382 13 3952 3.0 987895651
## 1383 13 3977 3.0 987895952
## 1384 13 3996 5.0 987895902
## 1385 13 4011 5.0 987895651
## 1386 13 4148 4.0 987895720
## 1387 14 4 3.0 835441653
## 1388 14 7 3.0 835441989
## 1389 14 19 1.0 835441168
## 1390 14 25 4.0 835441394
## 1391 14 32 4.0 835441168
## 1392 14 39 3.0 835441186
## 1393 14 47 5.0 835441133
## 1394 14 95 5.0 835441295
## 1395 14 105 3.0 835441371
## 1396 14 110 5.0 835441107
## 1397 14 150 4.0 835440977
## 1398 14 153 2.0 835441012
## 1399 14 193 3.0 835441371
## 1400 14 231 3.0 835441042
## 1401 14 266 5.0 835441168
## 1402 14 282 5.0 835441239
## 1403 14 288 4.0 835441107
## 1404 14 296 3.0 835440978
## 1405 14 318 3.0 835441042
## 1406 14 337 5.0 835441239
## 1407 14 339 4.0 835441066
## 1408 14 344 2.0 835441012
## 1409 14 351 3.0 835441686
## 1410 14 356 4.0 835441239
## 1411 14 367 1.0 835441210
## 1412 14 376 4.0 835441620
## 1413 14 377 3.0 835441328
## 1414 14 383 4.0 835441729
## 1415 14 434 4.0 835441066
## 1416 14 448 3.0 835442201
## 1417 14 455 3.0 835441812
## 1418 14 477 4.0 835441578
## 1419 14 480 3.0 835441262
## 1420 14 491 3.0 835441672
## 1421 14 508 3.0 835441558
## 1422 14 509 5.0 835441347
## 1423 14 524 3.0 835442007
## 1424 14 527 3.0 835441371
## 1425 14 539 4.0 835441415
## 1426 14 540 3.0 835441794
## 1427 14 552 3.0 835441558
## 1428 14 553 4.0 835441239
## 1429 14 586 3.0 835441451
## 1430 14 590 4.0 835440977
## 1431 14 592 2.0 835440976
## 1432 14 593 4.0 835441086
## 1433 14 597 3.0 835441431
## 1434 14 784 1.0 835442447
## 1435 15 1 2.5 1510577970
## 1436 15 44 1.0 1299424916
## 1437 15 47 3.5 1510571970
## 1438 15 158 1.0 1299424840
## 1439 15 172 1.0 1299424762
## 1440 15 256 3.0 1299425021
## 1441 15 260 5.0 1510571946
## 1442 15 293 3.0 1510571962
## 1443 15 296 4.0 1510571877
## 1444 15 318 5.0 1510571866
## 1445 15 355 1.0 1299425002
## 1446 15 356 5.0 1510571873
## 1447 15 364 3.0 1510577958
## 1448 15 527 5.0 1510571982
## 1449 15 588 3.0 1510577985
## 1450 15 589 5.0 1510572012
## 1451 15 596 2.0 1510578088
## 1452 15 780 3.5 1510572881
## 1453 15 849 2.0 1299425064
## 1454 15 858 4.0 1510571941
## 1455 15 1196 5.0 1510572645
## 1456 15 1198 4.0 1510571989
## 1457 15 1200 5.0 1510572775
## 1458 15 1210 5.0 1510572653
## 1459 15 1214 5.0 1510572684
## 1460 15 1240 4.0 1510572646
## 1461 15 1265 3.5 1510572001
## 1462 15 1270 5.0 1510571953
## 1463 15 1347 3.0 1299425144
## 1464 15 1527 3.0 1510572660
## 1465 15 1653 4.5 1510572798
## 1466 15 1909 2.5 1299424890
## 1467 15 2001 5.0 1299424826
## 1468 15 2011 5.0 1510572060
## 1469 15 2012 4.0 1510572114
## 1470 15 2028 3.5 1510571984
## 1471 15 2081 3.0 1510578011
## 1472 15 2085 1.5 1510578050
## 1473 15 2150 5.0 1299425040
## 1474 15 2278 2.5 1299424998
## 1475 15 2329 4.5 1510572005
## 1476 15 2571 4.0 1510571744
## 1477 15 2762 3.0 1510571764
## 1478 15 2858 4.0 1510571751
## 1479 15 2916 4.5 1510572872
## 1480 15 2959 2.5 1510571747
## 1481 15 3147 5.0 1510571797
## 1482 15 3156 5.0 1510573324
## 1483 15 3499 4.0 1510572526
## 1484 15 3510 5.0 1299425097
## 1485 15 3535 3.5 1510572486
## 1486 15 3555 4.0 1299425208
## 1487 15 3578 5.0 1510571768
## 1488 15 3617 1.5 1299425200
## 1489 15 3753 3.0 1510571680
## 1490 15 3949 4.0 1510572144
## 1491 15 3994 3.0 1510571677
## 1492 15 4018 4.0 1299425113
## 1493 15 4022 3.5 1510572048
## 1494 15 4226 1.5 1510571774
## 1495 15 4306 3.0 1510577965
## 1496 15 4370 4.0 1510573239
## 1497 15 4720 5.0 1510571736
## 1498 15 4886 3.5 1510577956
## 1499 15 4993 3.5 1510571754
## 1500 15 4995 5.0 1510571789
## 1501 15 5445 4.0 1510571793
## 1502 15 5618 3.0 1510578001
## 1503 15 5952 3.5 1510571759
## 1504 15 5971 2.0 1510577982
## 1505 15 5989 5.0 1510571938
## 1506 15 6377 3.0 1510577979
## 1507 15 6502 3.5 1510571682
## 1508 15 6874 3.0 1510572077
## 1509 15 7254 3.5 1510572802
## 1510 15 7438 3.0 1510572163
## 1511 15 8360 2.5 1510578083
## 1512 15 8644 3.5 1510572823
## 1513 15 8961 2.5 1510577973
## 1514 15 33493 5.0 1510572900
## 1515 15 48304 4.5 1510572550
## 1516 15 48774 3.0 1510573220
## 1517 15 48780 4.5 1510572075
## 1518 15 50872 3.0 1510577962
## 1519 15 56174 3.5 1510572810
## 1520 15 58559 2.0 1510571886
## 1521 15 59315 2.0 1510572096
## 1522 15 60069 3.5 1510577951
## 1523 15 63859 3.0 1510578158
## 1524 15 64614 4.0 1510572137
## 1525 15 68237 3.0 1510572824
## 1526 15 68954 3.5 1510577953
## 1527 15 69757 4.0 1299425345
## 1528 15 70286 3.5 1510572656
## 1529 15 71057 4.0 1510578034
## 1530 15 71264 2.5 1510578103
## 1531 15 72998 3.0 1510572052
## 1532 15 79132 3.5 1510571930
## 1533 15 84152 5.0 1510572834
## 1534 15 84954 4.5 1510573398
## 1535 15 85414 3.5 1510572833
## 1536 15 89745 2.0 1510572842
## 1537 15 91500 3.0 1510573214
## 1538 15 91529 2.0 1510571987
## 1539 15 94864 3.0 1510572894
## 1540 15 96610 3.0 1510572815
## 1541 15 97938 4.0 1510572473
## 1542 15 99114 1.0 1510571958
## 1543 15 101864 4.0 1510572902
## 1544 15 103249 3.5 1510573234
## 1545 15 104841 4.5 1510572095
## 1546 15 105504 4.0 1510572616
## 1547 15 109374 2.0 1510572056
## 1548 15 109487 4.0 1510571878
## 1549 15 110102 1.5 1510573153
## 1550 15 111759 4.5 1510572026
## 1551 15 112556 4.5 1510572466
## 1552 15 112852 1.5 1510571973
## 1553 15 115149 2.0 1510572159
## 1554 15 115713 2.0 1510572009
## 1555 15 120466 2.5 1510573154
## 1556 15 122882 2.0 1510572126
## 1557 15 122886 5.0 1510572679
## 1558 15 122904 2.0 1510571949
## 1559 15 122922 2.0 1510572670
## 1560 15 122924 1.0 1510573305
## 1561 15 134130 4.0 1510571883
## 1562 15 134853 4.5 1510572481
## 1563 15 143385 3.0 1510572581
## 1564 15 152077 5.0 1510572535
## 1565 15 152081 3.0 1510578039
## 1566 15 158872 3.5 1510578028
## 1567 15 160980 3.5 1510572512
## 1568 15 166528 5.0 1510572789
## 1569 15 166635 3.5 1510572516
## 1570 16 47 3.5 1377477814
## 1571 16 50 4.0 1377476781
## 1572 16 111 4.5 1377477446
## 1573 16 204 2.0 1377476617
## 1574 16 260 3.0 1377476936
## 1575 16 293 4.0 1377477870
## 1576 16 296 3.0 1377477302
## 1577 16 318 4.0 1377476766
## 1578 16 319 4.0 1377476675
## 1579 16 356 3.5 1377477951
## 1580 16 527 4.0 1377476787
## 1581 16 541 4.5 1377477340
## 1582 16 593 3.0 1377476977
## 1583 16 608 4.5 1377477406
## 1584 16 678 4.0 1377477470
## 1585 16 745 4.0 1377476943
## 1586 16 750 4.5 1377476825
## 1587 16 849 4.0 1377476589
## 1588 16 858 2.5 1377476772
## 1589 16 904 3.5 1377476805
## 1590 16 912 3.5 1377476810
## 1591 16 913 4.0 1377477016
## 1592 16 923 3.5 1377477349
## 1593 16 1089 4.0 1377477608
## 1594 16 1136 4.0 1377476972
## 1595 16 1147 4.0 1377477315
## 1596 16 1148 4.0 1377476909
## 1597 16 1186 3.5 1377476649
## 1598 16 1188 2.5 1377476656
## 1599 16 1193 4.0 1377476813
## 1600 16 1196 3.0 1377476993
## 1601 16 1197 4.0 1377477008
## 1602 16 1198 3.5 1377476852
## 1603 16 1199 5.0 1377477911
## 1604 16 1201 3.0 1377477410
## 1605 16 1203 4.0 1377476856
## 1606 16 1207 4.0 1377476891
## 1607 16 1208 4.0 1377477450
## 1608 16 1213 3.5 1377476956
## 1609 16 1214 4.0 1377477839
## 1610 16 1219 3.0 1377477594
## 1611 16 1222 4.5 1377477957
## 1612 16 1223 4.0 1377477855
## 1613 16 1230 4.0 1377477576
## 1614 16 1247 4.0 1377477535
## 1615 16 1252 4.5 1377476948
## 1616 16 1260 4.0 1377476887
## 1617 16 1261 4.0 1377476629
## 1618 16 1267 4.0 1377477387
## 1619 16 1276 4.0 1377477457
## 1620 16 1281 3.0 1377477580
## 1621 16 1299 4.0 1377477583
## 1622 16 1617 3.5 1377477542
## 1623 16 1680 3.5 1377476680
## 1624 16 1704 3.5 1377477954
## 1625 16 2019 4.0 1377476792
## 1626 16 2109 3.5 1377476690
## 1627 16 2329 3.5 1377477278
## 1628 16 2427 1.5 1377476573
## 1629 16 2490 3.0 1377476611
## 1630 16 2571 3.5 1377476921
## 1631 16 2641 3.0 1377476582
## 1632 16 2707 3.5 1377476693
## 1633 16 2723 3.5 1377476594
## 1634 16 2762 3.5 1377477612
## 1635 16 2858 3.5 1377476998
## 1636 16 2959 3.5 1377476874
## 1637 16 3000 4.0 1377477521
## 1638 16 3022 3.5 1377477000
## 1639 16 3108 4.0 1377476635
## 1640 16 3174 3.5 1377476640
## 1641 16 3429 3.5 1377477379
## 1642 16 3683 4.0 1377477908
## 1643 16 3741 4.0 1377477903
## 1644 16 3949 4.0 1377477886
## 1645 16 4002 3.5 1377476669
## 1646 16 4011 3.0 1377477891
## 1647 16 4226 4.5 1377476925
## 1648 16 4878 3.5 1377477936
## 1649 16 4973 4.0 1377476860
## 1650 16 4993 3.5 1377477289
## 1651 16 5618 4.5 1377476877
## 1652 16 5782 4.0 1377477435
## 1653 16 5952 3.5 1377477424
## 1654 16 5971 4.0 1377477298
## 1655 16 6350 3.5 1377477637
## 1656 16 7099 3.5 1377477464
## 1657 16 7153 3.5 1377477293
## 1658 16 7361 3.5 1377477402
## 1659 16 27611 4.0 1377477684
## 1660 16 27773 4.0 1377477507
## 1661 16 48394 4.0 1377477809
## 1662 16 58559 4.5 1377476817
## 1663 16 60069 4.0 1377477834
## 1664 16 68954 4.0 1377477654
## 1665 16 78499 4.5 1377477830
## 1666 16 79132 3.0 1377476916
## 1667 16 91529 4.5 1377477940
## 1668 17 1 4.5 1305696483
## 1669 17 44 3.5 1305696245
## 1670 17 47 4.0 1307262715
## 1671 17 50 4.5 1305697013
## 1672 17 110 4.5 1305696470
## 1673 17 111 4.0 1326943208
## 1674 17 150 3.5 1305696497
## 1675 17 260 5.0 1305696468
## 1676 17 293 3.5 1307262308
## 1677 17 296 5.0 1305696455
## 1678 17 318 5.0 1305696465
## 1679 17 356 5.0 1305696457
## 1680 17 480 4.5 1305696463
## 1681 17 527 4.5 1305696664
## 1682 17 541 3.5 1322628857
## 1683 17 589 4.5 1305696475
## 1684 17 590 4.5 1305696492
## 1685 17 592 4.5 1305696480
## 1686 17 593 4.5 1305696461
## 1687 17 750 4.5 1307262443
## 1688 17 780 4.0 1305696486
## 1689 17 858 5.0 1305696683
## 1690 17 899 3.5 1305696265
## 1691 17 904 4.0 1307262274
## 1692 17 910 3.5 1305696226
## 1693 17 1032 4.5 1305696325
## 1694 17 1036 4.0 1305696741
## 1695 17 1089 4.0 1307262280
## 1696 17 1090 4.5 1322629080
## 1697 17 1093 4.0 1305696318
## 1698 17 1100 3.5 1305696352
## 1699 17 1193 4.5 1305696771
## 1700 17 1196 5.0 1305696635
## 1701 17 1197 3.5 1305696774
## 1702 17 1198 4.5 1305696619
## 1703 17 1201 5.0 1305696878
## 1704 17 1206 5.0 1322628945
## 1705 17 1209 3.5 1307262267
## 1706 17 1210 5.0 1305696490
## 1707 17 1213 4.5 1305696699
## 1708 17 1221 4.5 1305696752
## 1709 17 1222 4.5 1305696870
## 1710 17 1228 4.5 1326943248
## 1711 17 1234 4.0 1305696795
## 1712 17 1240 5.0 1305696931
## 1713 17 1252 4.0 1307262291
## 1714 17 1258 4.0 1322628838
## 1715 17 1259 4.0 1305696786
## 1716 17 1263 4.0 1305696254
## 1717 17 1270 4.5 1305696846
## 1718 17 1291 4.0 1305696691
## 1719 17 1358 3.0 1322629202
## 1720 17 1375 3.5 1305696232
## 1721 17 1405 4.0 1305696277
## 1722 17 1466 3.0 1322629229
## 1723 17 1732 5.0 1322629209
## 1724 17 1967 4.0 1305696313
## 1725 17 2005 4.0 1305696258
## 1726 17 2019 3.5 1307262285
## 1727 17 2028 4.5 1305696726
## 1728 17 2194 4.0 1305696788
## 1729 17 2329 4.5 1305696670
## 1730 17 2502 4.5 1322629245
## 1731 17 2571 5.0 1305696756
## 1732 17 2717 3.5 1305696306
## 1733 17 2762 4.0 1305696835
## 1734 17 2858 4.0 1322628761
## 1735 17 2959 4.5 1305696867
## 1736 17 3039 4.5 1305696285
## 1737 17 3147 4.5 1322629233
## 1738 17 3263 4.0 1305696358
## 1739 17 3435 3.5 1307262260
## 1740 17 3508 4.0 1305696721
## 1741 17 3681 4.5 1307262300
## 1742 17 3702 3.5 1305696292
## 1743 17 3949 4.5 1322629083
## 1744 17 4226 4.0 1305696762
## 1745 17 4571 4.0 1305696310
## 1746 17 4993 4.5 1305696817
## 1747 17 5618 5.0 1322628751
## 1748 17 5782 4.0 1305696779
## 1749 17 5952 5.0 1305696823
## 1750 17 5971 4.0 1326943200
## 1751 17 6016 4.5 1322628668
## 1752 17 6350 5.0 1322628881
## 1753 17 6870 3.5 1322629189
## 1754 17 7099 5.0 1322628786
## 1755 17 7153 4.5 1305696820
## 1756 17 7482 4.0 1305696864
## 1757 17 27773 4.0 1322628790
## 1758 17 31658 4.5 1322629178
## 1759 17 33794 4.0 1305696851
## 1760 17 48394 4.5 1322629142
## 1761 17 48516 4.0 1305696748
## 1762 17 58559 4.5 1305696675
## 1763 17 60069 3.5 1305696839
## 1764 17 64839 3.5 1322629112
## 1765 17 68157 4.0 1305696894
## 1766 17 68358 4.5 1322629267
## 1767 17 77455 3.5 1307262449
## 1768 17 78499 4.0 1305696624
## 1769 17 79132 4.5 1305696716
## 1770 17 80463 4.0 1305696734
## 1771 17 81932 3.5 1305696681
## 1772 17 82459 4.0 1305696644
## 1773 18 1 3.5 1455209816
## 1774 18 2 3.0 1455617462
## 1775 18 6 4.0 1460138360
## 1776 18 16 4.5 1461311583
## 1777 18 32 4.0 1455209840
## 1778 18 34 2.5 1455617533
## 1779 18 36 4.0 1455617478
## 1780 18 47 4.5 1455050013
## 1781 18 50 5.0 1455049343
## 1782 18 70 3.5 1455735732
## 1783 18 104 2.5 1455748792
## 1784 18 110 4.5 1455050170
## 1785 18 111 4.0 1458516249
## 1786 18 145 3.5 1456864434
## 1787 18 163 4.0 1455748933
## 1788 18 165 4.0 1455209902
## 1789 18 180 4.0 1455617692
## 1790 18 208 3.0 1455617516
## 1791 18 223 4.0 1455617470
## 1792 18 231 2.5 1455748462
## 1793 18 235 4.5 1455529905
## 1794 18 260 4.0 1455049368
## 1795 18 288 4.0 1455617466
## 1796 18 293 4.5 1455050049
## 1797 18 296 4.0 1455050745
## 1798 18 318 5.0 1455049328
## 1799 18 329 4.0 1455231677
## 1800 18 337 4.0 1455748833
## 1801 18 344 2.5 1455209869
## 1802 18 356 4.5 1455050112
## 1803 18 364 3.0 1455209887
## 1804 18 367 2.5 1455618093
## 1805 18 370 3.0 1455748940
## 1806 18 374 2.5 1455617791
## 1807 18 377 2.5 1455209879
## 1808 18 380 2.5 1455209846
## 1809 18 431 4.0 1462138790
## 1810 18 435 2.0 1459946774
## 1811 18 442 3.0 1455748803
## 1812 18 457 3.5 1477432493
## 1813 18 466 2.5 1459946776
## 1814 18 480 3.5 1455209811
## 1815 18 500 3.5 1455618095
## 1816 18 502 2.0 1456864767
## 1817 18 508 4.0 1455749987
## 1818 18 527 4.5 1455050006
## 1819 18 541 4.0 1456745325
## 1820 18 555 4.0 1504907725
## 1821 18 586 3.5 1455748696
## 1822 18 588 3.5 1455209912
## 1823 18 589 4.5 1455209793
## 1824 18 590 4.0 1455209837
## 1825 18 593 4.5 1455050067
## 1826 18 595 3.0 1455209900
## 1827 18 608 4.5 1455050069
## 1828 18 628 3.5 1459495567
## 1829 18 648 3.0 1455209873
## 1830 18 653 3.0 1456955524
## 1831 18 673 3.0 1455735781
## 1832 18 745 4.0 1460242118
## 1833 18 778 4.5 1455050179
## 1834 18 780 4.0 1455209824
## 1835 18 784 2.0 1455735643
## 1836 18 849 3.5 1455735861
## 1837 18 858 4.0 1455050024
## 1838 18 904 4.5 1455050080
## 1839 18 908 4.0 1455748398
## 1840 18 913 4.0 1517525849
## 1841 18 919 4.0 1455748544
## 1842 18 923 5.0 1455059762
## 1843 18 924 4.0 1458516291
## 1844 18 1020 3.5 1456955800
## 1845 18 1036 4.0 1455618103
## 1846 18 1059 3.5 1455735783
## 1847 18 1080 4.5 1455231152
## 1848 18 1086 4.0 1473368992
## 1849 18 1089 4.0 1455051391
## 1850 18 1095 4.0 1502911292
## 1851 18 1136 4.5 1455210625
## 1852 18 1148 4.5 1455050359
## 1853 18 1193 4.5 1517686025
## 1854 18 1196 4.0 1455209805
## 1855 18 1198 4.0 1455049377
## 1856 18 1201 5.0 1455051405
## 1857 18 1203 5.0 1455050107
## 1858 18 1206 4.5 1455050357
## 1859 18 1207 4.5 1455050736
## 1860 18 1208 3.5 1455051397
## 1861 18 1209 5.0 1455050528
## 1862 18 1210 4.5 1455209798
## 1863 18 1212 4.5 1455059742
## 1864 18 1213 4.5 1455050000
## 1865 18 1214 4.0 1455050629
## 1866 18 1219 4.5 1455050177
## 1867 18 1221 5.0 1460242083
## 1868 18 1222 4.5 1455050183
## 1869 18 1223 4.5 1455050616
## 1870 18 1227 4.5 1485097725
## 1871 18 1234 4.5 1455820726
## 1872 18 1240 4.0 1455618100
## 1873 18 1245 4.0 1503000947
## 1874 18 1246 4.0 1455618445
## 1875 18 1247 4.5 1455050172
## 1876 18 1252 4.0 1457565435
## 1877 18 1260 4.0 1455059781
## 1878 18 1270 4.0 1455748627
## 1879 18 1275 3.5 1456745019
## 1880 18 1276 4.0 1456438623
## 1881 18 1291 4.0 1455059809
## 1882 18 1356 4.5 1455231686
## 1883 18 1370 3.5 1455748921
## 1884 18 1371 4.0 1455617646
## 1885 18 1374 4.5 1456958429
## 1886 18 1375 3.5 1455231757
## 1887 18 1391 3.0 1455529835
## 1888 18 1466 4.0 1476901312
## 1889 18 1517 2.5 1455748555
## 1890 18 1527 3.5 1455050095
## 1891 18 1544 3.5 1455735715
## 1892 18 1580 3.5 1455748435
## 1893 18 1608 3.0 1455735712
## 1894 18 1617 4.0 1459375071
## 1895 18 1625 3.5 1476823531
## 1896 18 1653 3.5 1455748777
## 1897 18 1676 3.5 1455735650
## 1898 18 1682 3.0 1455231395
## 1899 18 1704 4.0 1455050003
## 1900 18 1721 4.0 1455748443
## 1901 18 1729 4.0 1465468014
## 1902 18 1732 4.5 1456958438
## 1903 18 1784 3.5 1456672335
## 1904 18 1805 3.5 1456956041
## 1905 18 1892 4.0 1458679104
## 1906 18 1917 3.0 1455748548
## 1907 18 1918 3.5 1455735827
## 1908 18 1924 2.5 1456875333
## 1909 18 1954 4.0 1455749673
## 1910 18 1961 4.0 1455050512
## 1911 18 2000 4.0 1455529833
## 1912 18 2001 3.5 1455749721
## 1913 18 2002 3.5 1456395560
## 1914 18 2011 3.5 1455748634
## 1915 18 2012 3.0 1455748610
## 1916 18 2019 4.0 1455050114
## 1917 18 2028 4.0 1455209855
## 1918 18 2058 3.5 1476911164
## 1919 18 2115 4.0 1455748562
## 1920 18 2184 3.0 1512850460
## 1921 18 2194 3.5 1464994625
## 1922 18 2268 4.0 1456672532
## 1923 18 2278 3.5 1464907405
## 1924 18 2291 4.0 1455748560
## 1925 18 2324 4.5 1475001075
## 1926 18 2329 4.0 1455209651
## 1927 18 2409 4.0 1455749696
## 1928 18 2410 3.5 1456958417
## 1929 18 2411 3.0 1455749718
## 1930 18 2412 3.0 1456875250
## 1931 18 2420 4.0 1455749756
## 1932 18 2421 3.0 1455749739
## 1933 18 2422 3.0 1456864794
## 1934 18 2470 3.0 1455529935
## 1935 18 2490 3.5 1504894686
## 1936 18 2542 4.5 1456584499
## 1937 18 2571 4.5 1455209654
## 1938 18 2683 2.5 1455231399
## 1939 18 2692 3.0 1455231448
## 1940 18 2706 3.5 1455231410
## 1941 18 2762 4.5 1455209891
## 1942 18 2918 3.5 1455748728
## 1943 18 2951 4.5 1455735323
## 1944 18 2953 3.0 1456875367
## 1945 18 2959 4.5 1455049351
## 1946 18 2997 4.0 1455231386
## 1947 18 3052 4.5 1455231506
## 1948 18 3081 4.0 1455231488
## 1949 18 3147 4.0 1455231412
## 1950 18 3253 3.0 1512850503
## 1951 18 3257 3.0 1456864683
## 1952 18 3275 4.5 1455617700
## 1953 18 3462 4.0 1476393345
## 1954 18 3578 4.5 1455209857
## 1955 18 3681 4.5 1455735337
## 1956 18 3702 3.5 1457382557
## 1957 18 3751 3.5 1455529841
## 1958 18 3785 2.0 1455231603
## 1959 18 3793 4.0 1464994762
## 1960 18 3896 4.0 1504894830
## 1961 18 3949 4.5 1455529881
## 1962 18 3994 2.5 1455231481
## 1963 18 4007 4.0 1504731757
## 1964 18 4011 4.5 1456958432
## 1965 18 4226 4.5 1455231390
## 1966 18 4239 4.0 1476901503
## 1967 18 4262 4.0 1456772015
## 1968 18 4306 4.0 1455209697
## 1969 18 4327 4.0 1455735349
## 1970 18 4383 4.0 1486846015
## 1971 18 4643 3.0 1456395471
## 1972 18 4728 3.0 1457005711
## 1973 18 4816 3.0 1456919460
## 1974 18 4886 4.0 1455209685
## 1975 18 4896 3.5 1456923934
## 1976 18 4963 4.0 1455209694
## 1977 18 4973 4.0 1455209683
## 1978 18 4993 4.5 1455209675
## 1979 18 4995 4.5 1455209718
## 1980 18 5008 4.5 1456744749
## 1981 18 5120 4.5 1516054115
## 1982 18 5218 4.0 1455209763
## 1983 18 5266 3.5 1455050827
## 1984 18 5349 4.0 1456923908
## 1985 18 5418 4.0 1455749029
## 1986 18 5445 4.0 1455209691
## 1987 18 5459 2.5 1455050758
## 1988 18 5464 4.0 1458669462
## 1989 18 5481 3.0 1455050806
## 1990 18 5574 3.5 1455050917
## 1991 18 5608 4.0 1455821517
## 1992 18 5669 3.5 1456919349
## 1993 18 5679 4.0 1455617626
## 1994 18 5816 3.5 1456923936
## 1995 18 5903 3.5 1456832424
## 1996 18 5944 2.5 1455231780
## 1997 18 5952 3.5 1455209677
## 1998 18 5956 4.0 1455050816
## 1999 18 5989 4.0 1455209729
## 2000 18 5995 4.5 1455735416
## 2001 18 6287 3.0 1455049949
## 2002 18 6300 4.5 1500747595
## 2003 18 6333 4.0 1464994734
## 2004 18 6365 3.5 1455750315
## 2005 18 6373 3.5 1455049753
## 2006 18 6377 4.0 1455049810
## 2007 18 6378 3.0 1455049758
## 2008 18 6440 4.5 1455617896
## 2009 18 6534 3.0 1455050877
## 2010 18 6539 4.5 1455049808
## 2011 18 6548 2.0 1455050951
## 2012 18 6709 3.0 1456919632
## 2013 18 6787 4.0 1534020896
## 2014 18 6807 4.5 1458669199
## 2015 18 6863 3.5 1455049761
## 2016 18 6870 4.0 1456780831
## 2017 18 6874 3.5 1455049814
## 2018 18 6888 0.5 1455050979
## 2019 18 6934 3.0 1455750324
## 2020 18 7018 3.5 1486854151
## 2021 18 7147 4.5 1455049845
## 2022 18 7153 4.5 1455049801
## 2023 18 7254 4.5 1455049744
## 2024 18 7293 3.0 1455050834
## 2025 18 7317 3.0 1455655129
## 2026 18 7318 2.5 1455050932
## 2027 18 7323 3.0 1455049931
## 2028 18 7361 4.0 1456924036
## 2029 18 7373 3.5 1455049881
## 2030 18 7438 3.5 1455654949
## 2031 18 7753 3.5 1511639311
## 2032 18 7843 4.5 1492805510
## 2033 18 8117 4.0 1456859960
## 2034 18 8360 3.5 1455654935
## 2035 18 8361 3.0 1455231973
## 2036 18 8368 3.5 1456923938
## 2037 18 8641 2.5 1455060196
## 2038 18 8644 3.5 1455049735
## 2039 18 8665 4.0 1455749019
## 2040 18 8784 3.5 1466969253
## 2041 18 8798 4.0 1455617710
## 2042 18 8917 3.5 1455049936
## 2043 18 8950 4.0 1455049893
## 2044 18 8957 3.5 1455050859
## 2045 18 8958 4.0 1466969258
## 2046 18 8961 3.5 1455209724
## 2047 18 8984 3.0 1455049865
## 2048 18 26444 3.5 1456744938
## 2049 18 26614 3.5 1485297353
## 2050 18 27689 2.5 1476814266
## 2051 18 27716 4.5 1456859906
## 2052 18 27773 3.5 1455050621
## 2053 18 27831 3.5 1456958283
## 2054 18 27878 4.5 1526159893
## 2055 18 30793 4.0 1455050800
## 2056 18 30812 4.0 1455050855
## 2057 18 31685 2.0 1455049910
## 2058 18 32460 3.5 1492805550
## 2059 18 32587 3.5 1455654945
## 2060 18 33004 3.0 1455050852
## 2061 18 33615 3.5 1455655026
## 2062 18 33794 4.5 1455050618
## 2063 18 34150 3.5 1455049954
## 2064 18 34405 3.5 1455231107
## 2065 18 36519 3.0 1455051042
## 2066 18 36529 4.0 1455231182
## 2067 18 37386 1.5 1455050989
## 2068 18 37729 4.0 1455049923
## 2069 18 37733 4.0 1470061020
## 2070 18 37741 4.0 1455050937
## 2071 18 38038 4.0 1455049942
## 2072 18 38061 4.0 1458593231
## 2073 18 40819 4.0 1455050836
## 2074 18 44022 3.5 1455749359
## 2075 18 44191 4.5 1455050089
## 2076 18 44199 4.5 1455049886
## 2077 18 44555 4.0 1485646726
## 2078 18 44665 4.5 1455049870
## 2079 18 45499 4.0 1455231957
## 2080 18 45517 3.5 1455232017
## 2081 18 45722 4.0 1455049739
## 2082 18 46578 3.5 1455059798
## 2083 18 46965 1.0 1455749474
## 2084 18 47200 3.0 1455655111
## 2085 18 47491 4.0 1456859832
## 2086 18 48394 4.0 1455049848
## 2087 18 48516 4.5 1455049826
## 2088 18 48780 4.5 1456958431
## 2089 18 49651 3.5 1457444465
## 2090 18 50872 3.5 1455059813
## 2091 18 51357 4.0 1521331921
## 2092 18 51540 4.5 1455821297
## 2093 18 51662 3.5 1455049725
## 2094 18 52604 4.5 1457650649
## 2095 18 53125 3.5 1455231338
## 2096 18 53129 3.0 1521323641
## 2097 18 53318 2.5 1455749879
## 2098 18 53464 2.5 1455655099
## 2099 18 53972 3.0 1455232038
## 2100 18 53996 3.0 1455749279
## 2101 18 54272 3.5 1455232001
## 2102 18 54286 4.0 1455050518
## 2103 18 55118 4.5 1469995045
## 2104 18 55247 3.5 1455231983
## 2105 18 55276 4.0 1476901520
## 2106 18 55290 4.5 1482355905
## 2107 18 55765 4.5 1459363622
## 2108 18 56757 4.0 1464994729
## 2109 18 57528 2.5 1456924845
## 2110 18 57640 3.5 1455749376
## 2111 18 57669 4.0 1455749164
## 2112 18 58295 3.5 1476902377
## 2113 18 58299 4.0 1455749828
## 2114 18 58559 4.0 1455049372
## 2115 18 59315 4.0 1455618310
## 2116 18 59615 2.5 1455231357
## 2117 18 59784 4.0 1455749175
## 2118 18 60040 3.5 1455529605
## 2119 18 60074 2.5 1455749302
## 2120 18 60684 3.5 1455749277
## 2121 18 60756 3.0 1455749449
## 2122 18 62434 3.5 1455749428
## 2123 18 63131 3.5 1455749413
## 2124 18 64197 4.5 1500585017
## 2125 18 64614 3.5 1455059693
## 2126 18 64839 3.5 1455749206
## 2127 18 64957 3.5 1455821116
## 2128 18 65596 4.0 1470088658
## 2129 18 66934 4.0 1456924733
## 2130 18 67255 4.5 1456770605
## 2131 18 68073 4.5 1455749814
## 2132 18 68157 3.5 1455059756
## 2133 18 68159 4.0 1475188724
## 2134 18 68319 4.0 1455749310
## 2135 18 68358 3.5 1455231723
## 2136 18 68954 4.0 1455749241
## 2137 18 69122 3.0 1455529969
## 2138 18 69640 4.0 1456772121
## 2139 18 69757 4.0 1455750175
## 2140 18 69951 3.5 1455749591
## 2141 18 70286 3.5 1455749255
## 2142 18 71108 4.5 1486073568
## 2143 18 71156 3.0 1455749513
## 2144 18 71899 4.5 1455618430
## 2145 18 72011 3.5 1455749223
## 2146 18 72378 3.0 1455529598
## 2147 18 72998 4.0 1455749238
## 2148 18 73017 4.5 1455749266
## 2149 18 73268 3.5 1478632335
## 2150 18 73321 3.5 1456750745
## 2151 18 73323 4.5 1456770625
## 2152 18 73499 3.5 1457445100
## 2153 18 74458 4.5 1455050015
## 2154 18 74510 4.5 1456770638
## 2155 18 74789 3.5 1455051099
## 2156 18 74948 4.0 1476901606
## 2157 18 76077 3.0 1456924816
## 2158 18 76175 2.5 1456924918
## 2159 18 76251 4.5 1455051151
## 2160 18 77561 4.0 1455051202
## 2161 18 78469 3.0 1456750794
## 2162 18 78499 4.0 1456744760
## 2163 18 79132 4.5 1455050059
## 2164 18 79293 3.0 1478366123
## 2165 18 79592 3.0 1456924960
## 2166 18 79695 3.5 1455750029
## 2167 18 79702 4.0 1455051182
## 2168 18 80219 3.5 1455749571
## 2169 18 80489 4.0 1463686312
## 2170 18 81788 4.5 1463695521
## 2171 18 83349 3.0 1458581624
## 2172 18 84392 4.5 1459889871
## 2173 18 85354 4.0 1470173519
## 2174 18 85414 3.5 1478641446
## 2175 18 86190 3.5 1456924897
## 2176 18 86332 3.5 1455051197
## 2177 18 86628 4.0 1468877753
## 2178 18 86880 3.0 1455231363
## 2179 18 87232 4.0 1455051166
## 2180 18 88094 3.0 1457352482
## 2181 18 88129 3.0 1455051194
## 2182 18 88140 4.0 1455051109
## 2183 18 89745 4.0 1455050365
## 2184 18 90600 4.0 1511043515
## 2185 18 91485 3.5 1489780980
## 2186 18 91500 4.0 1455051164
## 2187 18 91529 4.0 1455050185
## 2188 18 91542 4.0 1455051101
## 2189 18 91658 3.5 1456770596
## 2190 18 92094 3.5 1466977156
## 2191 18 95441 2.5 1456750781
## 2192 18 96432 4.0 1521233253
## 2193 18 96488 4.0 1515532582
## 2194 18 96610 3.0 1455051188
## 2195 18 96655 4.0 1499621886
## 2196 18 97752 3.5 1455617979
## 2197 18 97938 3.0 1455051126
## 2198 18 98124 4.0 1473004465
## 2199 18 98585 3.5 1517686559
## 2200 18 98809 4.0 1455051180
## 2201 18 99114 4.0 1455051144
## 2202 18 99728 3.5 1465164460
## 2203 18 99813 4.0 1473004463
## 2204 18 102125 3.5 1457382480
## 2205 18 102445 4.0 1455051113
## 2206 18 102903 4.0 1513369638
## 2207 18 103253 3.5 1478381466
## 2208 18 103772 4.0 1478632286
## 2209 18 104241 3.0 1458585307
## 2210 18 104879 3.0 1456770932
## 2211 18 106072 3.5 1478366140
## 2212 18 106487 4.0 1455051107
## 2213 18 106489 3.5 1455051122
## 2214 18 106782 3.0 1471043729
## 2215 18 106839 4.0 1478631983
## 2216 18 107846 3.5 1457445060
## 2217 18 109374 4.0 1455735216
## 2218 18 109487 4.5 1455050087
## 2219 18 110102 3.5 1457382469
## 2220 18 111362 4.0 1455050010
## 2221 18 111759 3.5 1456744991
## 2222 18 112183 3.5 1466968168
## 2223 18 112334 4.5 1456614526
## 2224 18 112421 4.0 1456832692
## 2225 18 112552 4.5 1455664748
## 2226 18 112852 4.5 1455618433
## 2227 18 114060 3.5 1477511813
## 2228 18 114066 4.0 1466968153
## 2229 18 115713 4.5 1455051411
## 2230 18 116797 4.5 1455050523
## 2231 18 116823 3.5 1456910057
## 2232 18 117176 4.0 1473004722
## 2233 18 118900 3.5 1483294684
## 2234 18 119145 4.0 1457382413
## 2235 18 122886 4.0 1466366745
## 2236 18 122892 3.5 1457382463
## 2237 18 122900 4.0 1457382458
## 2238 18 122904 3.5 1460575806
## 2239 18 122918 4.0 1510946731
## 2240 18 122920 3.0 1468354075
## 2241 18 122924 4.0 1469816977
## 2242 18 122926 3.5 1510960358
## 2243 18 128620 3.5 1502901639
## 2244 18 134130 4.5 1456693665
## 2245 18 134853 3.5 1469994968
## 2246 18 135569 3.5 1477849300
## 2247 18 139385 3.5 1473351954
## 2248 18 140289 4.0 1456859803
## 2249 18 141688 4.0 1478124485
## 2250 18 142488 4.5 1486643850
## 2251 18 144210 4.0 1455060282
## 2252 18 145283 3.5 1466508318
## 2253 18 148626 4.0 1484169587
## 2254 18 150548 4.0 1455828926
## 2255 18 155168 4.0 1457551336
## 2256 18 157108 4.5 1485100437
## 2257 18 157110 4.5 1485100549
## 2258 18 158238 4.0 1493930228
## 2259 18 158972 3.5 1511651100
## 2260 18 159093 3.5 1513378355
## 2261 18 160438 3.0 1473361651
## 2262 18 161582 4.0 1499631585
## 2263 18 162350 3.5 1482346781
## 2264 18 162606 3.5 1493142085
## 2265 18 164179 3.0 1517508124
## 2266 18 166015 3.5 1534786448
## 2267 18 166635 4.0 1502218032
## 2268 18 168252 4.0 1493155981
## 2269 18 171023 4.0 1505599943
## 2270 18 176101 3.5 1513110715
## 2271 18 177593 4.5 1534007386
## 2272 18 180095 3.0 1534698700
## 2273 18 180777 4.5 1511101918
## 2274 18 185135 4.5 1534007332
## 2275 19 1 4.0 965705637
## 2276 19 2 3.0 965704331
## 2277 19 3 3.0 965707636
## 2278 19 7 2.0 965706657
## 2279 19 10 2.0 965709556
## 2280 19 12 1.0 965705347
## 2281 19 13 3.0 965709102
## 2282 19 15 2.0 965710039
## 2283 19 19 2.0 965708339
## 2284 19 32 4.0 965703646
## 2285 19 34 4.0 965705661
## 2286 19 44 3.0 965710019
## 2287 19 47 3.0 965710720
## 2288 19 48 1.0 965709172
## 2289 19 54 2.0 965702660
## 2290 19 64 2.0 965708037
## 2291 19 65 2.0 965708217
## 2292 19 70 2.0 965704974
## 2293 19 87 2.0 965708059
## 2294 19 92 2.0 965712048
## 2295 19 102 1.0 965708653
## 2296 19 104 2.0 965706185
## 2297 19 107 2.0 965706886
## 2298 19 118 3.0 965708217
## 2299 19 135 3.0 965707637
## 2300 19 141 1.0 965706592
## 2301 19 153 2.0 965707889
## 2302 19 158 3.0 965709785
## 2303 19 161 2.0 965710914
## 2304 19 165 3.0 965711413
## 2305 19 170 3.0 965711598
## 2306 19 173 1.0 965703997
## 2307 19 185 2.0 965704056
## 2308 19 186 2.0 965707724
## 2309 19 196 2.0 965703915
## 2310 19 208 2.0 965709832
## 2311 19 216 2.0 965707746
## 2312 19 223 3.0 965705917
## 2313 19 231 2.0 965706728
## 2314 19 235 4.0 965705784
## 2315 19 252 3.0 965706507
## 2316 19 253 3.0 965704952
## 2317 19 256 1.0 965703997
## 2318 19 258 3.0 965704033
## 2319 19 260 4.0 965704248
## 2320 19 273 1.0 965705240
## 2321 19 289 2.0 965706795
## 2322 19 291 2.0 965712018
## 2323 19 293 4.0 965710720
## 2324 19 295 3.0 965708038
## 2325 19 316 2.0 965703785
## 2326 19 319 1.0 965710693
## 2327 19 325 2.0 965708360
## 2328 19 328 2.0 965705076
## 2329 19 329 2.0 965709622
## 2330 19 330 3.0 965705097
## 2331 19 332 2.0 965703973
## 2332 19 333 2.0 965706548
## 2333 19 338 2.0 965703940
## 2334 19 339 3.0 965706365
## 2335 19 344 2.0 965706566
## 2336 19 348 2.0 965706276
## 2337 19 350 2.0 965712461
## 2338 19 351 2.0 965706045
## 2339 19 353 5.0 965711267
## 2340 19 356 2.0 965706045
## 2341 19 357 4.0 965706092
## 2342 19 362 2.0 965709622
## 2343 19 364 3.0 965709102
## 2344 19 366 2.0 965704974
## 2345 19 367 4.0 965704281
## 2346 19 368 3.0 965706636
## 2347 19 370 3.0 965707669
## 2348 19 372 1.0 965706507
## 2349 19 374 2.0 965708038
## 2350 19 377 4.0 965711156
## 2351 19 378 3.0 965707419
## 2352 19 379 2.0 965703885
## 2353 19 380 3.0 965707487
## 2354 19 407 3.0 965705059
## 2355 19 410 2.0 965706683
## 2356 19 414 2.0 965706886
## 2357 19 420 2.0 965708098
## 2358 19 422 3.0 965711481
## 2359 19 423 3.0 965711598
## 2360 19 427 3.0 965712068
## 2361 19 432 3.0 965707983
## 2362 19 434 3.0 965709832
## 2363 19 435 2.0 965703973
## 2364 19 440 3.0 965706114
## 2365 19 442 3.0 965703811
## 2366 19 445 2.0 965706907
## 2367 19 450 2.0 965706866
## 2368 19 455 2.0 965710092
## 2369 19 457 4.0 965710781
## 2370 19 466 3.0 965707518
## 2371 19 468 3.0 965706967
## 2372 19 472 2.0 965707518
## 2373 19 474 3.0 965710914
## 2374 19 480 2.0 965703785
## 2375 19 485 2.0 965707889
## 2376 19 486 2.0 965707828
## 2377 19 490 2.0 965711106
## 2378 19 494 2.0 965711156
## 2379 19 497 3.0 965706045
## 2380 19 500 2.0 965706636
## 2381 19 512 2.0 965703885
## 2382 19 513 3.0 965707637
## 2383 19 520 2.0 965706795
## 2384 19 537 1.0 965707576
## 2385 19 539 3.0 965706839
## 2386 19 540 1.0 965711928
## 2387 19 541 4.0 965703555
## 2388 19 542 2.0 965707983
## 2389 19 543 3.0 965706232
## 2390 19 546 2.0 965704079
## 2391 19 551 5.0 965706163
## 2392 19 558 2.0 965704355
## 2393 19 575 2.0 965706866
## 2394 19 586 3.0 965707079
## 2395 19 587 3.0 965706438
## 2396 19 588 3.0 965706337
## 2397 19 589 5.0 965710720
## 2398 19 592 5.0 965709445
## 2399 19 597 3.0 965706967
## 2400 19 606 2.0 965705362
## 2401 19 610 3.0 965703785
## 2402 19 611 2.0 965704056
## 2403 19 627 2.0 965711342
## 2404 19 637 2.0 965708098
## 2405 19 640 1.0 965712018
## 2406 19 648 3.0 965709656
## 2407 19 653 2.0 965704331
## 2408 19 661 3.0 965709102
## 2409 19 671 2.0 965703674
## 2410 19 673 1.0 965704355
## 2411 19 674 4.0 965703973
## 2412 19 708 3.0 965706615
## 2413 19 709 2.0 965709172
## 2414 19 711 3.0 965709923
## 2415 19 719 2.0 965707724
## 2416 19 720 4.0 965708982
## 2417 19 724 4.0 965705076
## 2418 19 733 3.0 965709534
## 2419 19 736 2.0 965709785
## 2420 19 742 3.0 965711994
## 2421 19 743 2.0 965707137
## 2422 19 745 4.0 965708982
## 2423 19 761 3.0 965709832
## 2424 19 762 1.0 965708038
## 2425 19 783 4.0 965709144
## 2426 19 785 2.0 965706209
## 2427 19 788 2.0 965703885
## 2428 19 798 2.0 965710019
## 2429 19 799 3.0 965705040
## 2430 19 810 1.0 965704375
## 2431 19 818 4.0 965707552
## 2432 19 829 2.0 965706415
## 2433 19 830 2.0 965707016
## 2434 19 832 2.0 965711184
## 2435 19 837 4.0 965706317
## 2436 19 839 1.0 965712018
## 2437 19 842 2.0 965705347
## 2438 19 849 2.0 965704033
## 2439 19 852 4.0 965706209
## 2440 19 866 2.0 965710781
## 2441 19 879 1.0 965705195
## 2442 19 880 2.0 965711873
## 2443 19 881 1.0 965707137
## 2444 19 903 5.0 965710671
## 2445 19 904 5.0 965712377
## 2446 19 906 3.0 965711014
## 2447 19 910 4.0 965705661
## 2448 19 911 3.0 965705725
## 2449 19 913 5.0 965712238
## 2450 19 915 2.0 965706045
## 2451 19 921 3.0 965706068
## 2452 19 924 3.0 965712377
## 2453 19 930 3.0 965710781
## 2454 19 931 4.0 965710914
## 2455 19 933 4.0 965705982
## 2456 19 965 2.0 965710693
## 2457 19 984 2.0 965708318
## 2458 19 986 3.0 965709445
## 2459 19 1016 3.0 965706728
## 2460 19 1020 3.0 965706866
## 2461 19 1021 2.0 965707419
## 2462 19 1028 2.0 965706092
## 2463 19 1031 2.0 965709622
## 2464 19 1032 1.0 965709068
## 2465 19 1037 1.0 965703940
## 2466 19 1047 3.0 965711308
## 2467 19 1049 2.0 965709622
## 2468 19 1057 3.0 965706795
## 2469 19 1064 2.0 965708098
## 2470 19 1073 4.0 965704248
## 2471 19 1077 3.0 965703605
## 2472 19 1079 4.0 965705725
## 2473 19 1081 2.0 965706389
## 2474 19 1086 4.0 965710914
## 2475 19 1089 3.0 965710671
## 2476 19 1092 2.0 965711649
## 2477 19 1097 5.0 965709282
## 2478 19 1127 3.0 965709478
## 2479 19 1129 3.0 965703727
## 2480 19 1136 3.0 965705588
## 2481 19 1148 4.0 965705539
## 2482 19 1179 2.0 965712263
## 2483 19 1193 4.0 965702660
## 2484 19 1196 4.0 965703555
## 2485 19 1197 5.0 965705725
## 2486 19 1198 5.0 965709394
## 2487 19 1200 3.0 965710693
## 2488 19 1210 3.0 965709445
## 2489 19 1214 4.0 965703555
## 2490 19 1215 3.0 965706068
## 2491 19 1219 4.0 965704863
## 2492 19 1234 4.0 965705661
## 2493 19 1238 3.0 965705784
## 2494 19 1240 4.0 965703605
## 2495 19 1256 4.0 965705619
## 2496 19 1257 3.0 965705725
## 2497 19 1258 2.0 965704863
## 2498 19 1259 3.0 965705725
## 2499 19 1265 4.0 965705677
## 2500 19 1267 3.0 965710521
## 2501 19 1269 4.0 965705942
## 2502 19 1270 4.0 965703583
## 2503 19 1278 4.0 965704863
## 2504 19 1285 5.0 965706185
## 2505 19 1291 5.0 965709426
## 2506 19 1297 4.0 965706140
## 2507 19 1307 3.0 965705962
## 2508 19 1322 2.0 965705443
## 2509 19 1324 2.0 965705263
## 2510 19 1330 2.0 965705240
## 2511 19 1333 3.0 965704881
## 2512 19 1339 2.0 965705040
## 2513 19 1342 2.0 965704952
## 2514 19 1345 3.0 965704931
## 2515 19 1346 2.0 965705137
## 2516 19 1347 2.0 965704974
## 2517 19 1355 2.0 965711649
## 2518 19 1356 3.0 965709478
## 2519 19 1359 3.0 965707983
## 2520 19 1367 1.0 965706615
## 2521 19 1371 3.0 965709622
## 2522 19 1372 5.0 965703698
## 2523 19 1373 1.0 965703973
## 2524 19 1374 5.0 965709478
## 2525 19 1375 3.0 965703853
## 2526 19 1376 4.0 965703698
## 2527 19 1377 3.0 965706683
## 2528 19 1378 3.0 965707419
## 2529 19 1379 2.0 965707828
## 2530 19 1380 3.0 965706839
## 2531 19 1391 3.0 965703997
## 2532 19 1394 3.0 965705619
## 2533 19 1396 3.0 965703627
## 2534 19 1405 2.0 965707101
## 2535 19 1407 3.0 965704952
## 2536 19 1409 3.0 965707769
## 2537 19 1427 1.0 965712068
## 2538 19 1441 3.0 965706438
## 2539 19 1456 2.0 965706185
## 2540 19 1457 3.0 965706728
## 2541 19 1461 3.0 965707769
## 2542 19 1474 2.0 965707137
## 2543 19 1479 3.0 965711598
## 2544 19 1485 3.0 965707044
## 2545 19 1489 2.0 965709204
## 2546 19 1499 1.0 965711994
## 2547 19 1500 2.0 965705962
## 2548 19 1517 3.0 965705845
## 2549 19 1527 5.0 965703811
## 2550 19 1542 2.0 965706232
## 2551 19 1544 1.0 965704033
## 2552 19 1550 2.0 965706866
## 2553 19 1551 2.0 965710019
## 2554 19 1552 3.0 965709622
## 2555 19 1556 1.0 965712048
## 2556 19 1562 1.0 965710092
## 2557 19 1566 4.0 965706297
## 2558 19 1569 3.0 965706683
## 2559 19 1573 4.0 965703727
## 2560 19 1580 2.0 965703698
## 2561 19 1583 3.0 965704375
## 2562 19 1584 3.0 965703628
## 2563 19 1588 2.0 965707079
## 2564 19 1590 1.0 965711946
## 2565 19 1591 2.0 965704079
## 2566 19 1593 2.0 965708002
## 2567 19 1597 2.0 965711237
## 2568 19 1603 2.0 965703885
## 2569 19 1610 3.0 965710871
## 2570 19 1614 2.0 965707576
## 2571 19 1617 4.0 965710565
## 2572 19 1625 4.0 965710871
## 2573 19 1644 2.0 965705263
## 2574 19 1645 2.0 965711014
## 2575 19 1648 2.0 965706163
## 2576 19 1653 4.0 965703628
## 2577 19 1658 5.0 965711769
## 2578 19 1663 3.0 965705845
## 2579 19 1665 1.0 965707552
## 2580 19 1676 2.0 965709622
## 2581 19 1679 2.0 965702660
## 2582 19 1681 3.0 965710220
## 2583 19 1688 3.0 965709144
## 2584 19 1689 2.0 965706967
## 2585 19 1690 1.0 965703885
## 2586 19 1702 3.0 965704331
## 2587 19 1717 3.0 965705195
## 2588 19 1718 2.0 965712018
## 2589 19 1722 3.0 965711128
## 2590 19 1732 3.0 965705896
## 2591 19 1747 2.0 965706092
## 2592 19 1748 3.0 965703785
## 2593 19 1754 2.0 965711237
## 2594 19 1777 3.0 965706438
## 2595 19 1779 2.0 965711481
## 2596 19 1783 1.0 965711649
## 2597 19 1784 2.0 965706163
## 2598 19 1798 1.0 965712048
## 2599 19 1805 3.0 965711106
## 2600 19 1806 2.0 965706683
## 2601 19 1812 3.0 965705540
## 2602 19 1816 1.0 965706415
## 2603 19 1831 2.0 965704033
## 2604 19 1834 3.0 965710871
## 2605 19 1845 3.0 965706276
## 2606 19 1848 2.0 965704331
## 2607 19 1855 2.0 965708132
## 2608 19 1862 1.0 965704079
## 2609 19 1881 1.0 965704375
## 2610 19 1882 2.0 965701107
## 2611 19 1885 2.0 965705982
## 2612 19 1888 2.0 965707419
## 2613 19 1891 2.0 965705454
## 2614 19 1892 2.0 965712882
## 2615 19 1894 2.0 965707487
## 2616 19 1895 2.0 965706771
## 2617 19 1906 2.0 965706657
## 2618 19 1907 3.0 965709025
## 2619 19 1909 3.0 965703785
## 2620 19 1911 2.0 965707419
## 2621 19 1917 2.0 965703973
## 2622 19 1918 3.0 965708059
## 2623 19 1919 2.0 965705572
## 2624 19 1920 3.0 965704331
## 2625 19 1921 3.0 965710871
## 2626 19 1923 4.0 965705784
## 2627 19 1924 2.0 965703973
## 2628 19 1963 3.0 965705725
## 2629 19 1967 5.0 965704281
## 2630 19 1968 2.0 965705917
## 2631 19 1970 3.0 965705240
## 2632 19 1971 3.0 965705347
## 2633 19 1972 1.0 965705301
## 2634 19 1973 2.0 965705322
## 2635 19 1991 2.0 965705195
## 2636 19 1994 3.0 965710781
## 2637 19 2000 3.0 965705942
## 2638 19 2001 2.0 965706507
## 2639 19 2002 3.0 965707724
## 2640 19 2003 3.0 965706389
## 2641 19 2004 3.0 965705117
## 2642 19 2005 4.0 965704281
## 2643 19 2011 2.0 965703834
## 2644 19 2012 3.0 965703915
## 2645 19 2014 2.0 965707669
## 2646 19 2015 3.0 965706839
## 2647 19 2016 3.0 965708059
## 2648 19 2026 2.0 965705322
## 2649 19 2027 1.0 965708217
## 2650 19 2033 3.0 965709172
## 2651 19 2034 2.0 965703973
## 2652 19 2036 2.0 965708339
## 2653 19 2037 4.0 965707724
## 2654 19 2040 2.0 965706728
## 2655 19 2041 4.0 965708002
## 2656 19 2044 3.0 965708132
## 2657 19 2046 2.0 965703727
## 2658 19 2048 3.0 965709172
## 2659 19 2052 2.0 965707576
## 2660 19 2053 2.0 965704056
## 2661 19 2054 3.0 965704304
## 2662 19 2060 3.0 965707769
## 2663 19 2065 2.0 965706045
## 2664 19 2072 2.0 965707518
## 2665 19 2078 2.0 965705896
## 2666 19 2081 4.0 965709068
## 2667 19 2082 3.0 965707487
## 2668 19 2088 3.0 965707828
## 2669 19 2092 2.0 965709172
## 2670 19 2094 4.0 965703915
## 2671 19 2097 3.0 965704904
## 2672 19 2100 3.0 965704281
## 2673 19 2105 3.0 965703853
## 2674 19 2108 3.0 965706140
## 2675 19 2110 3.0 965706250
## 2676 19 2111 3.0 965706140
## 2677 19 2115 3.0 965709534
## 2678 19 2118 2.0 965711106
## 2679 19 2123 3.0 965709172
## 2680 19 2133 3.0 965706484
## 2681 19 2134 2.0 965706525
## 2682 19 2137 4.0 965702660
## 2683 19 2139 3.0 965709025
## 2684 19 2140 4.0 965703674
## 2685 19 2143 3.0 965704304
## 2686 19 2144 3.0 965706297
## 2687 19 2145 2.0 965706615
## 2688 19 2148 2.0 965705195
## 2689 19 2150 3.0 965706276
## 2690 19 2153 3.0 965710092
## 2691 19 2167 3.0 965704952
## 2692 19 2169 2.0 965707889
## 2693 19 2171 2.0 965706728
## 2694 19 2174 4.0 965704248
## 2695 19 2184 3.0 965712882
## 2696 19 2186 4.0 965710671
## 2697 19 2193 3.0 965704304
## 2698 19 2203 3.0 965710671
## 2699 19 2206 3.0 965711039
## 2700 19 2227 3.0 965701107
## 2701 19 2232 3.0 965703756
## 2702 19 2243 2.0 965706114
## 2703 19 2244 2.0 965706507
## 2704 19 2245 3.0 965706592
## 2705 19 2248 3.0 965705822
## 2706 19 2249 3.0 965707637
## 2707 19 2253 4.0 965704355
## 2708 19 2255 2.0 965706615
## 2709 19 2261 2.0 965706636
## 2710 19 2263 2.0 965711529
## 2711 19 2266 3.0 965707828
## 2712 19 2267 2.0 965712882
## 2713 19 2279 2.0 965705219
## 2714 19 2287 3.0 965710914
## 2715 19 2294 3.0 965709068
## 2716 19 2302 3.0 965706415
## 2717 19 2315 2.0 965705263
## 2718 19 2320 3.0 965711342
## 2719 19 2321 3.0 965706019
## 2720 19 2328 2.0 965705347
## 2721 19 2335 3.0 965707576
## 2722 19 2338 1.0 965705347
## 2723 19 2354 2.0 965707419
## 2724 19 2355 3.0 965705896
## 2725 19 2359 4.0 965706337
## 2726 19 2369 2.0 965707016
## 2727 19 2371 4.0 965706592
## 2728 19 2372 1.0 965707044
## 2729 19 2374 2.0 965707518
## 2730 19 2375 2.0 965707576
## 2731 19 2387 3.0 965706907
## 2732 19 2393 3.0 965703940
## 2733 19 2394 3.0 965709144
## 2734 19 2396 4.0 965705784
## 2735 19 2406 3.0 965706415
## 2736 19 2407 2.0 965706592
## 2737 19 2413 3.0 965706548
## 2738 19 2414 3.0 965709785
## 2739 19 2416 3.0 965706438
## 2740 19 2418 2.0 965707101
## 2741 19 2423 4.0 965706337
## 2742 19 2424 2.0 965706771
## 2743 19 2428 3.0 965703915
## 2744 19 2446 2.0 965711873
## 2745 19 2450 2.0 965710039
## 2746 19 2453 3.0 965704304
## 2747 19 2455 2.0 965703698
## 2748 19 2458 2.0 965708098
## 2749 19 2463 2.0 965706209
## 2750 19 2465 1.0 965705405
## 2751 19 2467 3.0 965712410
## 2752 19 2468 2.0 965707724
## 2753 19 2470 3.0 965706365
## 2754 19 2478 2.0 965706748
## 2755 19 2485 3.0 965707552
## 2756 19 2490 3.0 965711184
## 2757 19 2491 4.0 965708132
## 2758 19 2496 3.0 965706683
## 2759 19 2502 2.0 965706185
## 2760 19 2513 1.0 965705195
## 2761 19 2518 2.0 965706728
## 2762 19 2528 2.0 965709500
## 2763 19 2539 2.0 965706592
## 2764 19 2548 2.0 965705383
## 2765 19 2550 3.0 965704904
## 2766 19 2555 1.0 965708587
## 2767 19 2558 2.0 965706415
## 2768 19 2571 4.0 965703605
## 2769 19 2572 3.0 965706365
## 2770 19 2581 3.0 965706839
## 2771 19 2605 2.0 965711649
## 2772 19 2606 4.0 965705117
## 2773 19 2614 1.0 965705422
## 2774 19 2617 3.0 965705018
## 2775 19 2622 3.0 965704281
## 2776 19 2628 3.0 965703756
## 2777 19 2640 3.0 965703674
## 2778 19 2641 3.0 965703727
## 2779 19 2642 1.0 965704033
## 2780 19 2643 1.0 965704127
## 2781 19 2657 3.0 965704999
## 2782 19 2668 2.0 965703853
## 2783 19 2672 3.0 965704033
## 2784 19 2683 3.0 965706592
## 2785 19 2687 2.0 965709025
## 2786 19 2694 2.0 965706839
## 2787 19 2699 3.0 965703915
## 2788 19 2700 4.0 965705845
## 2789 19 2701 1.0 965704111
## 2790 19 2706 3.0 965706636
## 2791 19 2709 2.0 965707101
## 2792 19 2710 2.0 965704999
## 2793 19 2716 4.0 965704931
## 2794 19 2717 1.0 965705195
## 2795 19 2719 2.0 965705383
## 2796 19 2720 1.0 965708653
## 2797 19 2722 2.0 965711529
## 2798 19 2723 5.0 965706484
## 2799 19 2733 2.0 965707746
## 2800 19 2746 3.0 965704974
## 2801 19 2754 1.0 965705405
## 2802 19 2762 4.0 965710565
## 2803 19 2763 4.0 965711106
## 2804 19 2788 2.0 965705822
## 2805 19 2791 2.0 965705802
## 2806 19 2793 2.0 965705301
## 2807 19 2797 3.0 965704248
## 2808 19 2802 3.0 965711413
## 2809 19 2804 3.0 965705572
## 2810 19 2806 2.0 965706795
## 2811 19 2808 2.0 965701107
## 2812 19 2822 2.0 965710019
## 2813 19 2836 3.0 965706525
## 2814 19 2840 2.0 965711793
## 2815 19 2857 3.0 965709047
## 2816 19 2858 4.0 965702994
## 2817 19 2860 2.0 965706684
## 2818 19 2867 3.0 965706185
## 2819 19 2870 3.0 965706365
## 2820 19 2883 3.0 965706068
## 2821 19 2888 3.0 965707828
## 2822 19 2898 2.0 965705195
## 2823 19 2900 2.0 965703885
## 2824 19 2901 1.0 965705137
## 2825 19 2915 2.0 965706337
## 2826 19 2916 3.0 965709500
## 2827 19 2918 5.0 965705867
## 2828 19 2936 4.0 965705867
## 2829 19 2953 3.0 965708360
## 2830 19 2959 5.0 965703109
## 2831 19 2968 5.0 965703674
## 2832 19 2985 3.0 965703785
## 2833 19 2987 5.0 965709047
## 2834 19 2995 2.0 965705322
## 2835 19 2997 4.0 965705619
## 2836 19 3005 2.0 965711873
## 2837 19 3016 3.0 965705117
## 2838 19 3017 2.0 965705301
## 2839 19 3031 2.0 965708339
## 2840 19 3032 3.0 965703727
## 2841 19 3033 2.0 965703811
## 2842 19 3034 3.0 965709047
## 2843 19 3035 4.0 965705619
## 2844 19 3039 3.0 965706092
## 2845 19 3040 3.0 965706438
## 2846 19 3044 3.0 965711039
## 2847 19 3048 2.0 965707487
## 2848 19 3052 3.0 965706163
## 2849 19 3056 4.0 965711994
## 2850 19 3063 2.0 965711769
## 2851 19 3064 2.0 965711481
## 2852 19 3070 5.0 965703674
## 2853 19 3072 2.0 965706045
## 2854 19 3081 3.0 965703033
## 2855 19 3082 2.0 965703061
## 2856 19 3087 3.0 965706297
## 2857 19 3101 1.0 965711014
## 2858 19 3104 2.0 965705784
## 2859 19 3108 4.0 965705917
## 2860 19 3113 2.0 965712018
## 2861 19 3114 2.0 965705725
## 2862 19 3146 1.0 965703084
## 2863 19 3156 1.0 965703834
## 2864 19 3175 4.0 965703727
## 2865 19 3176 1.0 965703010
## 2866 19 3190 1.0 965703443
## 2867 19 3203 2.0 965710957
## 2868 19 3213 4.0 965708982
## 2869 19 3219 2.0 965711529
## 2870 19 3225 3.0 965703061
## 2871 19 3238 1.0 965703061
## 2872 19 3243 3.0 965707552
## 2873 19 3247 3.0 965707419
## 2874 19 3248 2.0 965708339
## 2875 19 3253 2.0 965706068
## 2876 19 3254 2.0 965706967
## 2877 19 3255 2.0 965706209
## 2878 19 3257 2.0 965711810
## 2879 19 3258 2.0 965706703
## 2880 19 3263 2.0 965706592
## 2881 19 3264 3.0 965705040
## 2882 19 3269 2.0 965703940
## 2883 19 3273 2.0 965703084
## 2884 19 3300 3.0 965703299
## 2885 19 3301 2.0 965703061
## 2886 19 3308 2.0 965706484
## 2887 19 3316 2.0 965703425
## 2888 19 3324 2.0 965703084
## 2889 19 3355 2.0 965703061
## 2890 19 3358 5.0 965706140
## 2891 19 3361 2.0 965705725
## 2892 19 3370 2.0 965710720
## 2893 19 3387 2.0 965707828
## 2894 19 3393 1.0 965704375
## 2895 19 3394 3.0 965707983
## 2896 19 3395 3.0 965707983
## 2897 19 3396 5.0 965705896
## 2898 19 3397 2.0 965706019
## 2899 19 3398 2.0 965706276
## 2900 19 3400 3.0 965709047
## 2901 19 3401 2.0 965703973
## 2902 19 3409 2.0 965703299
## 2903 19 3418 3.0 965701125
## 2904 19 3421 4.0 965705661
## 2905 19 3424 2.0 965705784
## 2906 19 3440 2.0 965704355
## 2907 19 3448 3.0 965706365
## 2908 19 3450 3.0 965706185
## 2909 19 3454 2.0 965703458
## 2910 19 3466 2.0 965704331
## 2911 19 3471 4.0 965703583
## 2912 19 3476 3.0 965704931
## 2913 19 3477 5.0 965706839
## 2914 19 3479 3.0 965704304
## 2915 19 3481 2.0 965703200
## 2916 19 3483 2.0 965704652
## 2917 19 3484 2.0 965703269
## 2918 19 3489 2.0 965704331
## 2919 19 3497 2.0 965707137
## 2920 19 3499 3.0 965704904
## 2921 19 3500 2.0 965706907
## 2922 19 3501 2.0 965706548
## 2923 19 3505 3.0 965711106
## 2924 19 3510 3.0 965703236
## 2925 19 3515 3.0 965703299
## 2926 19 3526 2.0 965706019
## 2927 19 3534 2.0 965703269
## 2928 19 3535 2.0 965703221
## 2929 19 3536 2.0 965704618
## 2930 19 3548 2.0 965706389
## 2931 19 3550 3.0 965704999
## 2932 19 3551 3.0 965710781
## 2933 19 3578 3.0 965703221
## 2934 19 3584 2.0 965711794
## 2935 19 3591 2.0 965706415
## 2936 19 3594 2.0 965702805
## 2937 19 3608 3.0 965705943
## 2938 19 3622 3.0 965706114
## 2939 19 3623 2.0 965702805
## 2940 19 3624 3.0 965702776
## 2941 19 3662 3.0 965703646
## 2942 19 3671 3.0 965705784
## 2943 19 3683 3.0 965712238
## 2944 19 3685 3.0 965702660
## 2945 19 3686 3.0 965711156
## 2946 19 3692 3.0 965702660
## 2947 19 3693 2.0 965706728
## 2948 19 3698 2.0 965703756
## 2949 19 3699 2.0 965703811
## 2950 19 3701 2.0 965703756
## 2951 19 3704 2.0 965703756
## 2952 19 3705 2.0 965710092
## 2953 19 3706 3.0 965711128
## 2954 19 3708 2.0 965711769
## 2955 19 3712 3.0 965706748
## 2956 19 3717 2.0 965702842
## 2957 19 3740 2.0 965706276
## 2958 19 3743 2.0 965702940
## 2959 19 3744 2.0 965702866
## 2960 19 3745 4.0 965702776
## 2961 19 3751 3.0 965702777
## 2962 19 3752 3.0 965702843
## 2963 19 3754 4.0 965702777
## 2964 19 3763 3.0 965711184
## 2965 19 3770 2.0 965703915
## 2966 19 3784 2.0 965702923
## 2967 19 3785 1.0 965702905
## 2968 19 3793 4.0 965702777
## 2969 19 3797 3.0 965702954
## 2970 19 3798 2.0 965702843
## 2971 19 3802 2.0 965704079
## 2972 19 3809 3.0 965706415
## 2973 19 3825 3.0 965702777
## 2974 19 3826 1.0 965702843
## 2975 19 3835 2.0 965711413
## 2976 19 3837 1.0 965704999
## 2977 19 3839 1.0 965705219
## 2978 20 2 3.0 1054038313
## 2979 20 8 1.0 1054038422
## 2980 20 13 4.0 1054038425
## 2981 20 34 4.0 1054038093
## 2982 20 48 5.0 1054038357
## 2983 20 107 3.5 1054038320
## 2984 20 158 3.0 1054038381
## 2985 20 239 4.5 1054038398
## 2986 20 262 4.5 1054038142
## 2987 20 317 3.5 1054038283
## 2988 20 362 4.0 1054038216
## 2989 20 364 5.0 1054038067
## 2990 20 531 4.5 1054038162
## 2991 20 551 5.0 1054038128
## 2992 20 586 3.0 1054038279
## 2993 20 588 5.0 1054038059
## 2994 20 594 5.0 1054038083
## 2995 20 595 5.0 1054038060
## 2996 20 596 4.5 1054038175
## 2997 20 661 5.0 1054038185
## 2998 20 709 3.0 1054038318
## 2999 20 720 5.0 1054038502
## 3000 20 783 3.5 1054038251
## 3001 20 801 2.5 1054038390
## 3002 20 837 4.0 1054038259
## 3003 20 899 4.0 1054147395
## 3004 20 914 4.5 1054036277
## 3005 20 919 5.0 1054038078
## 3006 20 986 3.5 1054038204
## 3007 20 1010 3.0 1054038376
## 3008 20 1012 4.0 1054038180
## 3009 20 1013 4.0 1054038219
## 3010 20 1015 3.5 1054038254
## 3011 20 1018 3.5 1054038336
## 3012 20 1021 2.0 1054038421
## 3013 20 1022 4.5 1054038135
## 3014 20 1025 5.0 1054038107
## 3015 20 1028 4.5 1054038076
## 3016 20 1029 4.5 1054038189
## 3017 20 1030 3.0 1054038374
## 3018 20 1031 3.0 1054038326
## 3019 20 1032 3.5 1054038130
## 3020 20 1035 4.5 1054147359
## 3021 20 1073 5.0 1054038071
## 3022 20 1088 4.5 1054147512
## 3023 20 1097 5.0 1054038065
## 3024 20 1148 5.0 1054038506
## 3025 20 1282 4.5 1054038160
## 3026 20 1333 3.5 1054036254
## 3027 20 1367 3.0 1054038378
## 3028 20 1380 5.0 1054147442
## 3029 20 1489 4.0 1054147467
## 3030 20 1547 3.0 1054038387
## 3031 20 1566 4.5 1054038231
## 3032 20 1688 4.5 1054038258
## 3033 20 1722 3.0 1054036240
## 3034 20 1848 3.0 1054038355
## 3035 20 1876 2.0 1054036210
## 3036 20 1907 5.0 1054038097
## 3037 20 1919 3.5 1054038348
## 3038 20 1947 5.0 1054147380
## 3039 20 2005 5.0 1054038151
## 3040 20 2006 2.0 1054036200
## 3041 20 2018 4.0 1054038166
## 3042 20 2033 4.0 1054038365
## 3043 20 2048 3.5 1054038325
## 3044 20 2054 2.5 1054036164
## 3045 20 2059 3.5 1054038343
## 3046 20 2078 4.5 1054038081
## 3047 20 2080 4.0 1054038091
## 3048 20 2081 5.0 1054038138
## 3049 20 2083 5.0 1054038103
## 3050 20 2085 4.0 1054038493
## 3051 20 2087 4.5 1054038136
## 3052 20 2089 4.5 1054038249
## 3053 20 2090 3.0 1054038269
## 3054 20 2092 3.0 1054147515
## 3055 20 2096 4.0 1054038145
## 3056 20 2100 3.5 1054036178
## 3057 20 2116 2.5 1054038315
## 3058 20 2135 5.0 1054147519
## 3059 20 2137 4.5 1054038124
## 3060 20 2140 4.0 1054038148
## 3061 20 2141 4.5 1054038233
## 3062 20 2161 4.5 1054038165
## 3063 20 2167 2.0 1054036297
## 3064 20 2294 3.5 1054038140
## 3065 20 2300 5.0 1054147430
## 3066 20 2355 4.0 1054038063
## 3067 20 2394 5.0 1054038545
## 3068 20 2430 2.0 1054038297
## 3069 20 2565 3.5 1054147376
## 3070 20 2617 2.5 1054036168
## 3071 20 2657 5.0 1054147479
## 3072 20 2687 4.5 1054038187
## 3073 20 2700 4.5 1054038561
## 3074 20 2701 1.0 1054036268
## 3075 20 2709 5.0 1054038446
## 3076 20 2746 4.5 1054147419
## 3077 20 2761 4.5 1054038106
## 3078 20 2770 2.5 1054036192
## 3079 20 2804 5.0 1054036159
## 3080 20 2857 4.0 1054038534
## 3081 20 2941 4.0 1054147411
## 3082 20 2987 5.0 1054038485
## 3083 20 3034 5.0 1054038099
## 3084 20 3114 5.0 1054038084
## 3085 20 3157 3.0 1054038435
## 3086 20 3159 5.0 1054038115
## 3087 20 3189 3.5 1054037310
## 3088 20 3300 3.0 1054147217
## 3089 20 3301 3.5 1054037596
## 3090 20 3396 5.0 1054038057
## 3091 20 3397 5.0 1054038117
## 3092 20 3398 5.0 1054038201
## 3093 20 3408 3.5 1054037151
## 3094 20 3410 4.0 1054037584
## 3095 20 3438 4.0 1054038460
## 3096 20 3483 3.5 1054038288
## 3097 20 3510 3.0 1054037270
## 3098 20 3512 3.0 1054037253
## 3099 20 3535 1.0 1054037573
## 3100 20 3536 1.5 1054037346
## 3101 20 3549 5.0 1054147384
## 3102 20 3555 3.0 1054147183
## 3103 20 3565 3.0 1054037706
## 3104 20 3578 4.5 1054037169
## 3105 20 3615 2.5 1054037838
## 3106 20 3623 3.0 1054147285
## 3107 20 3624 2.0 1054037231
## 3108 20 3744 1.0 1054147299
## 3109 20 3751 5.0 1054037147
## 3110 20 3753 3.0 1054037352
## 3111 20 3755 4.5 1054147193
## 3112 20 3784 2.5 1054037759
## 3113 20 3793 3.5 1054037246
## 3114 20 3852 4.0 1054037964
## 3115 20 3882 2.5 1054037657
## 3116 20 3897 4.5 1054036184
## 3117 20 3948 3.5 1054037203
## 3118 20 3967 4.5 1054037160
## 3119 20 3972 3.0 1054147174
## 3120 20 3977 3.5 1054147198
## 3121 20 3986 2.5 1054037622
## 3122 20 3988 3.5 1054037831
## 3123 20 3990 0.5 1054037862
## 3124 20 3994 2.5 1054037305
## 3125 20 3996 3.5 1054037208
## 3126 20 3999 2.0 1054147273
## 3127 20 4014 4.0 1054037132
## 3128 20 4016 4.5 1054037249
## 3129 20 4019 4.0 1054037081
## 3130 20 4022 3.5 1054036206
## 3131 20 4025 3.5 1054147190
## 3132 20 4027 4.0 1054036290
## 3133 20 4029 4.0 1054037969
## 3134 20 4039 5.0 1054147453
## 3135 20 4054 2.5 1054037695
## 3136 20 4090 3.5 1054038271
## 3137 20 4154 4.0 1054037824
## 3138 20 4161 3.5 1054147312
## 3139 20 4226 3.5 1054037196
## 3140 20 4232 0.5 1054037511
## 3141 20 4246 5.0 1054037200
## 3142 20 4270 0.5 1054147293
## 3143 20 4299 3.5 1054147230
## 3144 20 4306 5.0 1054037117
## 3145 20 4308 3.5 1054037213
## 3146 20 4310 4.0 1054147265
## 3147 20 4344 3.5 1054147210
## 3148 20 4366 1.5 1054038539
## 3149 20 4367 0.5 1054147289
## 3150 20 4369 2.0 1054037557
## 3151 20 4370 3.0 1054037504
## 3152 20 4378 3.5 1054037158
## 3153 20 4446 3.5 1054037907
## 3154 20 4447 3.0 1054037488
## 3155 20 4449 2.0 1054037667
## 3156 20 4519 3.5 1054038247
## 3157 20 4638 1.5 1054147250
## 3158 20 4641 3.0 1054037434
## 3159 20 4643 3.0 1054147258
## 3160 20 4700 4.0 1054037671
## 3161 20 4718 3.0 1054037502
## 3162 20 4720 3.5 1054037141
## 3163 20 4734 1.0 1054037534
## 3164 20 4776 3.5 1054037390
## 3165 20 4783 3.5 1054037095
## 3166 20 4816 3.5 1054037616
## 3167 20 4821 0.5 1054037528
## 3168 20 4846 2.5 1054037303
## 3169 20 4848 1.5 1054037367
## 3170 20 4865 3.0 1054037653
## 3171 20 4886 4.0 1054037089
## 3172 20 4896 4.5 1054037243
## 3173 20 4901 3.5 1054037324
## 3174 20 4979 4.0 1054037364
## 3175 20 4990 4.0 1054037593
## 3176 20 4993 5.0 1054037162
## 3177 20 4995 5.0 1054037101
## 3178 20 5013 4.5 1054037401
## 3179 20 5014 4.0 1054037384
## 3180 20 5015 4.0 1054037122
## 3181 20 5103 4.0 1054038111
## 3182 20 5110 3.0 1054037644
## 3183 20 5171 2.0 1054037913
## 3184 20 5218 5.0 1054037258
## 3185 20 5254 3.0 1054147243
## 3186 20 5293 3.5 1054037273
## 3187 20 5299 4.0 1054037084
## 3188 20 5313 0.5 1054147317
## 3189 20 5349 3.0 1054037241
## 3190 20 5364 4.0 1054037333
## 3191 20 5378 4.0 1054147227
## 3192 20 5388 4.0 1054037110
## 3193 20 5418 3.0 1054037279
## 3194 20 5419 0.5 1054037857
## 3195 20 5445 4.5 1054037115
## 3196 20 5463 2.0 1054147287
## 3197 20 5481 1.0 1054037494
## 3198 20 5502 3.0 1054037284
## 3199 20 5504 0.5 1054037842
## 3200 20 5507 0.5 1054147297
## 3201 20 5618 5.0 1054037190
## 3202 20 5630 3.5 1054037295
## 3203 20 5679 3.5 1054037411
## 3204 20 5693 4.0 1054147413
## 3205 20 5785 4.0 1054037720
## 3206 20 5816 4.5 1054037077
## 3207 20 5952 5.0 1054037144
## 3208 20 5989 4.5 1054037112
## 3209 20 5991 5.0 1054037184
## 3210 20 6143 4.0 1054036826
## 3211 20 6156 3.0 1054036804
## 3212 20 6157 2.0 1054036811
## 3213 20 6166 1.5 1054036794
## 3214 20 6170 4.0 1054036780
## 3215 20 6297 4.0 1054036670
## 3216 20 6333 4.0 1054036616
## 3217 20 6345 5.0 1054036623
## 3218 20 6358 3.5 1054147505
## 3219 20 6365 4.0 1054147167
## 3220 21 1 3.5 1407618878
## 3221 21 2 3.5 1419795031
## 3222 21 10 5.0 1403459783
## 3223 21 19 2.5 1419795052
## 3224 21 38 2.5 1419795113
## 3225 21 44 1.0 1376822969
## 3226 21 48 3.0 1376822924
## 3227 21 145 3.0 1376823315
## 3228 21 165 3.5 1418846918
## 3229 21 170 2.0 1376823399
## 3230 21 260 4.5 1417378080
## 3231 21 293 3.0 1436989949
## 3232 21 296 3.5 1500701533
## 3233 21 355 4.0 1376823342
## 3234 21 356 4.5 1407617845
## 3235 21 364 4.0 1418063557
## 3236 21 367 3.0 1407617838
## 3237 21 370 5.0 1376823264
## 3238 21 435 1.0 1403461004
## 3239 21 480 4.0 1418063303
## 3240 21 500 2.5 1407617852
## 3241 21 541 3.5 1452052129
## 3242 21 551 0.5 1418063134
## 3243 21 586 2.5 1376823478
## 3244 21 588 4.0 1407618992
## 3245 21 589 3.5 1418846818
## 3246 21 592 3.5 1419795406
## 3247 21 597 4.0 1407617864
## 3248 21 648 4.5 1403637454
## 3249 21 719 3.5 1419794740
## 3250 21 733 3.5 1412967983
## 3251 21 743 4.0 1423422395
## 3252 21 745 3.0 1412968166
## 3253 21 780 3.5 1452052029
## 3254 21 858 2.5 1376823648
## 3255 21 902 3.0 1500701864
## 3256 21 1036 3.5 1418063296
## 3257 21 1148 3.0 1403459916
## 3258 21 1196 4.5 1403460820
## 3259 21 1198 4.0 1417378082
## 3260 21 1200 2.0 1419795311
## 3261 21 1210 4.5 1417378078
## 3262 21 1214 1.5 1419795364
## 3263 21 1221 2.5 1428775441
## 3264 21 1230 2.5 1418932215
## 3265 21 1240 3.5 1436989924
## 3266 21 1265 3.5 1428775428
## 3267 21 1270 5.0 1407617830
## 3268 21 1291 4.0 1417378089
## 3269 21 1370 3.5 1418063292
## 3270 21 1391 0.5 1468113524
## 3271 21 1527 2.5 1403460635
## 3272 21 1544 4.5 1418846999
## 3273 21 1573 2.5 1452052059
## 3274 21 1580 4.5 1407617833
## 3275 21 1704 3.5 1418932074
## 3276 21 1721 3.5 1418846922
## 3277 21 1722 5.0 1376823419
## 3278 21 1909 2.0 1419025142
## 3279 21 1918 3.5 1418847014
## 3280 21 2000 3.5 1418847026
## 3281 21 2001 2.5 1376823286
## 3282 21 2002 3.5 1418847031
## 3283 21 2006 2.5 1412968210
## 3284 21 2011 5.0 1417378095
## 3285 21 2012 5.0 1418063227
## 3286 21 2023 2.5 1428775446
## 3287 21 2052 3.0 1500701912
## 3288 21 2087 2.0 1376822671
## 3289 21 2115 4.0 1403460900
## 3290 21 2167 3.5 1441393080
## 3291 21 2174 1.0 1500701981
## 3292 21 2273 3.5 1412967978
## 3293 21 2288 0.5 1441826867
## 3294 21 2355 3.0 1441826921
## 3295 21 2376 4.5 1376823423
## 3296 21 2378 2.5 1376822727
## 3297 21 2402 3.0 1418847038
## 3298 21 2403 2.5 1441393000
## 3299 21 2424 4.0 1423422347
## 3300 21 2529 4.0 1412967877
## 3301 21 2541 4.0 1376823011
## 3302 21 2571 4.0 1412967844
## 3303 21 2617 3.5 1468113361
## 3304 21 2628 4.0 1418063222
## 3305 21 2671 4.0 1417378450
## 3306 21 2683 2.5 1427558183
## 3307 21 2700 2.5 1419025163
## 3308 21 2706 5.0 1376823724
## 3309 21 2716 3.5 1407617856
## 3310 21 2717 4.0 1500701951
## 3311 21 2724 3.0 1376823007
## 3312 21 2762 0.5 1403460436
## 3313 21 2763 4.0 1403460837
## 3314 21 2858 2.0 1441392960
## 3315 21 2916 4.0 1418846927
## 3316 21 2947 4.5 1403460424
## 3317 21 2948 4.5 1403460596
## 3318 21 2949 4.5 1403460427
## 3319 21 2953 3.0 1500701906
## 3320 21 2959 2.0 1441392954
## 3321 21 2985 3.5 1376823280
## 3322 21 2989 4.5 1403459790
## 3323 21 2990 4.5 1403459797
## 3324 21 2991 4.5 1403460842
## 3325 21 2993 4.5 1403460828
## 3326 21 3000 0.5 1441393015
## 3327 21 3022 4.0 1407617678
## 3328 21 3082 5.0 1376822996
## 3329 21 3114 3.5 1419795374
## 3330 21 3253 4.0 1407617774
## 3331 21 3462 3.0 1407617682
## 3332 21 3489 3.5 1419794797
## 3333 21 3578 2.5 1436989941
## 3334 21 3617 2.0 1403459815
## 3335 21 3623 4.0 1376823417
## 3336 21 3633 4.5 1403460850
## 3337 21 3635 4.5 1403459821
## 3338 21 3638 4.5 1403459801
## 3339 21 3639 4.5 1403459833
## 3340 21 3697 2.5 1468113456
## 3341 21 3793 3.5 1441392970
## 3342 21 3868 4.0 1403460977
## 3343 21 3869 4.0 1403460993
## 3344 21 3948 3.5 1421521749
## 3345 21 3984 4.5 1403460840
## 3346 21 3988 1.0 1418063141
## 3347 21 4005 4.0 1403460891
## 3348 21 4040 2.5 1419794718
## 3349 21 4085 3.5 1441826878
## 3350 21 4306 4.0 1418932197
## 3351 21 4446 3.5 1412967924
## 3352 21 4489 4.5 1441393840
## 3353 21 4545 4.0 1419025398
## 3354 21 4621 2.5 1419794704
## 3355 21 4638 4.0 1376823473
## 3356 21 4700 3.0 1500701884
## 3357 21 4701 3.5 1403459884
## 3358 21 4718 4.5 1376823727
## 3359 21 4886 3.5 1418932236
## 3360 21 4896 4.0 1418932147
## 3361 21 4963 4.5 1403460880
## 3362 21 4973 3.0 1403460991
## 3363 21 4993 1.5 1419025153
## 3364 21 5218 4.0 1407617661
## 3365 21 5219 3.0 1468113409
## 3366 21 5254 3.0 1452052112
## 3367 21 5266 1.0 1468113551
## 3368 21 5349 3.0 1441826946
## 3369 21 5378 4.0 1403459855
## 3370 21 5418 4.0 1412967834
## 3371 21 5445 4.5 1418932153
## 3372 21 5459 4.5 1376823441
## 3373 21 5481 3.0 1403459874
## 3374 21 5574 4.0 1407617614
## 3375 21 5796 2.0 1403460925
## 3376 21 5816 4.0 1418932149
## 3377 21 5872 5.0 1376822796
## 3378 21 5952 2.0 1419025155
## 3379 21 5989 3.5 1421521738
## 3380 21 6155 3.5 1500702115
## 3381 21 6166 2.0 1419794816
## 3382 21 6365 3.5 1418063571
## 3383 21 6373 3.0 1403459840
## 3384 21 6503 3.5 1376823470
## 3385 21 6539 4.0 1419795351
## 3386 21 6548 3.5 1421521954
## 3387 21 6874 1.5 1468113479
## 3388 21 6934 4.0 1403459862
## 3389 21 6942 4.0 1417378457
## 3390 21 7143 4.0 1412967530
## 3391 21 7153 1.5 1419025150
## 3392 21 7373 3.0 1452052088
## 3393 21 7438 1.5 1468113476
## 3394 21 7569 4.5 1403460592
## 3395 21 7570 4.5 1403459807
## 3396 21 7573 5.0 1403459786
## 3397 21 7701 2.5 1419794804
## 3398 21 8360 4.0 1419025402
## 3399 21 8368 4.0 1412968057
## 3400 21 8529 4.5 1407617755
## 3401 21 8574 0.5 1418063157
## 3402 21 8636 3.0 1441826943
## 3403 21 8644 4.0 1418063518
## 3404 21 8665 4.0 1407617301
## 3405 21 8798 4.0 1441826871
## 3406 21 8946 3.0 1418063030
## 3407 21 8961 3.5 1441393027
## 3408 21 8972 4.0 1421521732
## 3409 21 8984 4.5 1403459871
## 3410 21 26340 3.0 1418063547
## 3411 21 30793 3.5 1500701995
## 3412 21 30816 3.0 1418063364
## 3413 21 30825 3.5 1421521760
## 3414 21 31433 3.5 1427558524
## 3415 21 31685 3.5 1418926520
## 3416 21 32296 3.5 1500701989
## 3417 21 32587 3.0 1468113492
## 3418 21 33004 4.5 1419025243
## 3419 21 33493 4.5 1417378092
## 3420 21 33615 4.0 1413055282
## 3421 21 33679 4.0 1468113421
## 3422 21 33794 3.5 1441826836
## 3423 21 34048 3.5 1468113413
## 3424 21 34150 3.0 1468113542
## 3425 21 34162 3.0 1407617697
## 3426 21 36519 3.5 1468113445
## 3427 21 38038 1.5 1468114330
## 3428 21 39715 2.5 1376823734
## 3429 21 40629 1.5 1418926598
## 3430 21 40815 4.0 1403460886
## 3431 21 41566 3.0 1468113305
## 3432 21 44022 3.5 1427558491
## 3433 21 44191 2.5 1418932060
## 3434 21 45186 3.5 1423422539
## 3435 21 45447 3.5 1428775459
## 3436 21 45499 3.5 1418063317
## 3437 21 45672 3.0 1419794605
## 3438 21 46972 3.5 1419794505
## 3439 21 47566 4.0 1403460908
## 3440 21 47997 5.0 1500701943
## 3441 21 49272 4.0 1418063254
## 3442 21 49286 3.5 1417378121
## 3443 21 50189 2.0 1376823741
## 3444 21 50872 3.5 1452051990
## 3445 21 51084 3.5 1417378446
## 3446 21 51662 3.5 1452052044
## 3447 21 52730 0.5 1418063085
## 3448 21 52973 3.5 1418846853
## 3449 21 53121 4.5 1403460883
## 3450 21 53125 4.0 1427558171
## 3451 21 53322 4.5 1403637459
## 3452 21 53972 3.0 1403460418
## 3453 21 53996 3.5 1468113351
## 3454 21 54276 3.5 1427558503
## 3455 21 54286 4.0 1412967989
## 3456 21 56775 3.5 1427558186
## 3457 21 57640 3.0 1441826928
## 3458 21 58025 2.0 1468113562
## 3459 21 58559 3.5 1376823495
## 3460 21 58998 4.5 1441393230
## 3461 21 59315 4.0 1418063513
## 3462 21 59369 3.0 1419025209
## 3463 21 59429 2.5 1376823737
## 3464 21 59615 4.0 1421521751
## 3465 21 59784 3.5 1412967541
## 3466 21 59900 3.0 1427558545
## 3467 21 60074 3.5 1423422271
## 3468 21 60397 3.5 1500702119
## 3469 21 61160 1.0 1468113607
## 3470 21 63082 3.5 1468113389
## 3471 21 63113 3.5 1423422268
## 3472 21 63859 3.5 1412967546
## 3473 21 64032 2.5 1419794800
## 3474 21 66934 0.5 1419794430
## 3475 21 68791 3.5 1468113374
## 3476 21 68793 3.5 1419794523
## 3477 21 68954 4.5 1407617748
## 3478 21 69122 3.5 1500701830
## 3479 21 69406 3.5 1418926516
## 3480 21 69526 3.5 1468113535
## 3481 21 69644 4.0 1419025406
## 3482 21 69844 4.0 1412967862
## 3483 21 70286 3.5 1441826981
## 3484 21 72378 3.5 1468113532
## 3485 21 72641 3.0 1452051960
## 3486 21 72998 4.0 1418847046
## 3487 21 73017 2.5 1419795394
## 3488 21 73106 2.0 1376823744
## 3489 21 73319 3.0 1419794924
## 3490 21 73321 3.5 1468113317
## 3491 21 73858 1.5 1418063012
## 3492 21 74789 2.5 1423422284
## 3493 21 76093 3.5 1419795323
## 3494 21 76251 2.5 1441826938
## 3495 21 77561 4.0 1418847003
## 3496 21 78469 3.5 1468113385
## 3497 21 78499 4.0 1412968153
## 3498 21 78637 4.5 1419025376
## 3499 21 79132 3.5 1441393020
## 3500 21 79134 2.0 1419794777
## 3501 21 79185 4.0 1427558538
## 3502 21 79293 3.5 1452052079
## 3503 21 79592 3.5 1500701875
## 3504 21 80166 3.0 1418926532
## 3505 21 80463 3.0 1419025199
## 3506 21 81229 3.5 1419795367
## 3507 21 81564 2.5 1419794453
## 3508 21 81591 1.0 1418846850
## 3509 21 81834 3.0 1427558206
## 3510 21 81845 3.5 1418846865
## 3511 21 82202 4.0 1427558240
## 3512 21 84152 3.5 1421521681
## 3513 21 85259 4.0 1418932202
## 3514 21 86068 0.5 1418063166
## 3515 21 87232 3.5 1436989953
## 3516 21 87520 3.5 1468113498
## 3517 21 88125 4.0 1412967987
## 3518 21 88140 3.5 1441393049
## 3519 21 88405 2.5 1418926552
## 3520 21 88744 3.0 1441393053
## 3521 21 89745 4.0 1418063440
## 3522 21 90249 3.5 1468113329
## 3523 21 91500 3.5 1419795371
## 3524 21 91529 3.5 1418063237
## 3525 21 91535 3.5 1468113336
## 3526 21 91630 4.0 1423422327
## 3527 21 93510 3.0 1468114339
## 3528 21 94503 3.0 1427558499
## 3529 21 94677 4.0 1427558669
## 3530 21 94777 4.0 1423422377
## 3531 21 95067 3.0 1419794692
## 3532 21 95167 3.5 1468113332
## 3533 21 95170 4.0 1418062991
## 3534 21 95441 3.5 1419794434
## 3535 21 95510 3.5 1441826957
## 3536 21 95738 3.0 1418063017
## 3537 21 96004 2.0 1418063462
## 3538 21 96079 4.0 1419795339
## 3539 21 96588 3.5 1500701958
## 3540 21 97913 2.0 1468114333
## 3541 21 97938 3.5 1376823135
## 3542 21 98124 3.5 1418846981
## 3543 21 99114 3.5 1441826975
## 3544 21 99532 1.5 1418063469
## 3545 21 101864 4.5 1427558933
## 3546 21 102125 3.5 1441393005
## 3547 21 102481 4.0 1376823593
## 3548 21 102716 3.0 1376823571
## 3549 21 102993 2.0 1403461682
## 3550 21 103141 4.0 1418932178
## 3551 21 103228 3.5 1403460734
## 3552 21 103253 3.0 1403460742
## 3553 21 103335 4.0 1403460687
## 3554 21 103339 3.5 1403460758
## 3555 21 103372 3.5 1403461849
## 3556 21 103384 4.0 1403460773
## 3557 21 103801 0.5 1376823555
## 3558 21 103810 3.5 1403460755
## 3559 21 103819 1.5 1376823528
## 3560 21 103883 3.5 1403460744
## 3561 21 104211 4.0 1403460713
## 3562 21 104374 3.5 1403460501
## 3563 21 104841 4.0 1403460671
## 3564 21 105213 2.0 1403460712
## 3565 21 105653 4.0 1403460774
## 3566 21 105844 2.0 1403460491
## 3567 21 105954 3.5 1403461701
## 3568 21 106072 3.5 1403461833
## 3569 21 106487 4.0 1403460683
## 3570 21 106489 3.0 1418846905
## 3571 21 106491 3.5 1403460183
## 3572 21 106540 2.5 1403460178
## 3573 21 106696 4.0 1403460685
## 3574 21 106782 3.0 1403459964
## 3575 21 106916 3.0 1403460691
## 3576 21 106918 3.5 1403459951
## 3577 21 106920 2.5 1418846877
## 3578 21 107013 0.5 1418063180
## 3579 21 107141 4.0 1403460679
## 3580 21 107449 1.5 1418063184
## 3581 21 108156 3.0 1403460188
## 3582 21 108190 3.5 1500701759
## 3583 21 108932 1.0 1468113609
## 3584 21 108945 3.0 1403461870
## 3585 21 109374 3.5 1403460482
## 3586 21 109487 3.0 1423422297
## 3587 21 109576 2.5 1403460135
## 3588 21 109723 3.5 1403460128
## 3589 21 109864 1.5 1403460101
## 3590 21 110102 3.5 1407619805
## 3591 21 110130 4.0 1403460142
## 3592 21 110553 3.0 1468113465
## 3593 21 111113 2.5 1407617738
## 3594 21 111362 3.5 1412967458
## 3595 21 111617 4.0 1403460536
## 3596 21 111743 3.5 1403460530
## 3597 21 111759 4.5 1403460346
## 3598 21 111781 4.5 1439751899
## 3599 21 111844 3.5 1403460002
## 3600 21 112006 3.5 1418063411
## 3601 21 112138 3.5 1500701849
## 3602 21 112175 3.5 1418063384
## 3603 21 112852 4.0 1412967449
## 3604 21 114180 3.5 1468113309
## 3605 21 114818 1.0 1419794281
## 3606 21 115149 3.5 1452052151
## 3607 21 115502 3.5 1441393892
## 3608 21 115617 4.0 1441393075
## 3609 21 115877 3.5 1418063541
## 3610 21 116797 2.5 1423422308
## 3611 21 116823 3.5 1452051997
## 3612 21 117368 3.5 1418063202
## 3613 21 117529 4.0 1468113298
## 3614 21 117572 2.5 1419794255
## 3615 21 117590 3.5 1419794206
## 3616 21 117851 3.0 1419794218
## 3617 21 117922 3.5 1418063173
## 3618 21 119141 0.5 1419793939
## 3619 21 119145 4.0 1468113211
## 3620 21 119155 3.5 1419794090
## 3621 21 119964 2.0 1419794135
## 3622 21 122882 3.5 1436989603
## 3623 21 122886 4.0 1452051525
## 3624 21 122892 3.5 1441392878
## 3625 21 122896 4.0 1452052163
## 3626 21 122900 3.5 1452052140
## 3627 21 122904 3.5 1483340695
## 3628 21 122922 4.0 1500701517
## 3629 21 126548 3.0 1500701836
## 3630 21 130450 3.0 1452051910
## 3631 21 132157 2.5 1436989795
## 3632 21 133419 3.0 1436989597
## 3633 21 134368 3.5 1436989206
## 3634 21 134393 2.5 1439752061
## 3635 21 134853 4.0 1441392913
## 3636 21 135133 3.5 1452051811
## 3637 21 135536 3.5 1500701506
## 3638 21 135861 0.5 1436989145
## 3639 21 135887 4.5 1436989124
## 3640 21 136016 3.0 1452051788
## 3641 21 136020 4.0 1452051829
## 3642 21 138036 3.5 1500701931
## 3643 21 138186 0.5 1436989816
## 3644 21 139642 0.5 1441394002
## 3645 21 139717 0.5 1441394001
## 3646 21 139915 2.5 1441393919
## 3647 21 140301 3.0 1441393974
## 3648 21 142536 2.5 1452051867
## 3649 21 143245 1.5 1452051514
## 3650 21 143385 4.0 1452051884
## 3651 21 148675 2.0 1452051802
## 3652 21 149380 1.5 1452051859
## 3653 21 152081 4.0 1500701826
## 3654 21 160565 1.0 1468113965
## 3655 21 160872 0.5 1468113939
## 3656 21 164179 4.0 1500701551
## 3657 21 164909 3.5 1500702132
## 3658 21 166492 3.5 1483340772
## 3659 21 167036 4.0 1483340756
## 3660 21 168248 3.5 1500701525
## 3661 21 168252 3.0 1500701559
## 3662 21 173307 0.5 1500701120
## 3663 22 107 4.5 1268330607
## 3664 22 216 4.0 1268726081
## 3665 22 253 4.0 1268726368
## 3666 22 318 5.0 1268726193
## 3667 22 356 5.0 1268726309
## 3668 22 541 5.0 1268726271
## 3669 22 858 3.0 1268726337
## 3670 22 1042 3.0 1268726053
## 3671 22 1193 5.0 1268726374
## 3672 22 1223 4.0 1268330594
## 3673 22 1952 5.0 1268330620
## 3674 22 1953 4.5 1268726043
## 3675 22 2058 0.5 1268726061
## 3676 22 2160 4.0 1268330584
## 3677 22 2300 4.0 1268330627
## 3678 22 2541 3.5 1268726085
## 3679 22 2723 2.0 1268726093
## 3680 22 2959 3.5 1268726211
## 3681 22 2968 3.0 1268726071
## 3682 22 3006 4.0 1268726047
## 3683 22 3210 3.5 1268726113
## 3684 22 3481 0.5 1268726778
## 3685 22 3489 5.0 1268726106
## 3686 22 3578 4.0 1268727393
## 3687 22 3751 4.0 1268727157
## 3688 22 3911 4.0 1268726837
## 3689 22 3949 0.5 1268726317
## 3690 22 3996 4.5 1268726758
## 3691 22 4017 4.0 1268727100
## 3692 22 4027 2.5 1268726799
## 3693 22 4034 4.5 1268726741
## 3694 22 4036 4.5 1268727180
## 3695 22 4226 3.0 1268726490
## 3696 22 4306 3.0 1268727454
## 3697 22 4848 4.5 1268726967
## 3698 22 4878 1.5 1268726600
## 3699 22 4886 3.5 1268727375
## 3700 22 4903 4.0 1268727442
## 3701 22 4979 3.5 1268726990
## 3702 22 4993 1.0 1268726251
## 3703 22 4995 3.5 1268727353
## 3704 22 5013 0.5 1268727056
## 3705 22 5015 0.5 1268727162
## 3706 22 5388 3.0 1268727177
## 3707 22 5418 3.5 1268727381
## 3708 22 5464 2.0 1268727450
## 3709 22 5617 3.5 1268726826
## 3710 22 5669 4.5 1268726814
## 3711 22 5673 0.5 1268727068
## 3712 22 5816 0.5 1268726358
## 3713 22 5902 3.5 1268726753
## 3714 22 6377 3.5 1268727332
## 3715 22 6502 1.5 1268726926
## 3716 22 6539 2.5 1268727433
## 3717 22 6711 4.0 1268726851
## 3718 22 6870 4.0 1268726636
## 3719 22 6874 4.0 1268726782
## 3720 22 7147 0.5 1268726811
## 3721 22 7153 1.0 1268726287
## 3722 22 7361 3.5 1268726531
## 3723 22 7438 5.0 1268726785
## 3724 22 8464 0.5 1268726944
## 3725 22 8622 0.5 1268727113
## 3726 22 8784 2.0 1268727389
## 3727 22 8798 4.0 1268726866
## 3728 22 8958 2.0 1268727348
## 3729 22 8961 4.0 1268726703
## 3730 22 8970 3.5 1268727357
## 3731 22 30707 2.0 1268726686
## 3732 22 30749 0.5 1268726523
## 3733 22 31410 1.0 1268726502
## 3734 22 31658 2.5 1268727239
## 3735 22 33004 1.0 1268726235
## 3736 22 33794 2.5 1268726623
## 3737 22 34437 3.0 1268726958
## 3738 22 36529 2.5 1268727409
## 3739 22 37733 2.5 1268726871
## 3740 22 37741 3.5 1268726773
## 3741 22 38038 0.5 1268727279
## 3742 22 39183 2.5 1268726935
## 3743 22 41997 3.0 1268726734
## 3744 22 44191 0.5 1268727414
## 3745 22 46976 1.0 1268726712
## 3746 22 48394 1.5 1268726542
## 3747 22 48516 2.5 1268726520
## 3748 22 48780 4.0 1268726262
## 3749 22 49272 5.0 1268727326
## 3750 22 50872 1.5 1268726651
## 3751 22 51540 0.5 1268726807
## 3752 22 52281 0.5 1268726845
## 3753 22 53519 0.5 1268727137
## 3754 22 54286 2.5 1268727289
## 3755 22 54503 3.5 1268727474
## 3756 22 55290 1.0 1268726606
## 3757 22 55765 1.0 1268727308
## 3758 22 55820 4.0 1268726559
## 3759 22 56171 0.5 1268726349
## 3760 22 56367 0.5 1268727294
## 3761 22 56782 4.0 1268726640
## 3762 22 56788 1.0 1268726902
## 3763 22 58559 3.0 1268727214
## 3764 22 59315 0.5 1268727313
## 3765 22 60069 2.0 1268726549
## 3766 22 60766 0.5 1268726579
## 3767 22 60950 1.0 1268727036
## 3768 22 61323 0.5 1268727079
## 3769 22 63082 0.5 1268726299
## 3770 22 64575 3.5 1268726672
## 3771 22 66097 2.0 1268726278
## 3772 22 68157 4.0 1268726556
## 3773 22 68358 0.5 1268727244
## 3774 22 68536 4.0 1268726494
## 3775 22 68954 2.0 1268726512
## 3776 22 69122 0.5 1268727419
## 3777 22 69757 0.5 1268726748
## 3778 22 70286 0.5 1268726596
## 3779 22 71464 0.5 1268727107
## 3780 22 72998 3.5 1268726172
## 3781 22 74789 0.5 1268726132
## 3782 23 6 4.0 1107342267
## 3783 23 29 4.0 1107341574
## 3784 23 32 3.5 1107341750
## 3785 23 50 4.0 1107163741
## 3786 23 58 3.0 1107164183
## 3787 23 175 3.0 1107162721
## 3788 23 272 4.0 1107162524
## 3789 23 293 4.0 1107341697
## 3790 23 296 3.5 1107163773
## 3791 23 300 3.0 1107342187
## 3792 23 334 4.0 1107164085
## 3793 23 431 3.0 1107164178
## 3794 23 454 2.5 1107342160
## 3795 23 541 5.0 1107164433
## 3796 23 608 3.5 1107162895
## 3797 23 741 4.0 1107341586
## 3798 23 750 3.0 1107164374
## 3799 23 778 4.0 1107341701
## 3800 23 858 3.5 1107163336
## 3801 23 866 3.0 1107164206
## 3802 23 904 3.5 1107164418
## 3803 23 912 3.5 1107163409
## 3804 23 913 4.0 1107164441
## 3805 23 923 4.0 1107164855
## 3806 23 924 4.0 1107162966
## 3807 23 1036 3.0 1107342203
## 3808 23 1050 3.5 1107164077
## 3809 23 1080 3.5 1107341620
## 3810 23 1089 4.0 1107163817
## 3811 23 1136 3.0 1107341920
## 3812 23 1175 4.0 1107163646
## 3813 23 1193 3.5 1107163763
## 3814 23 1199 4.0 1107341582
## 3815 23 1200 3.0 1107341788
## 3816 23 1203 3.0 1107341565
## 3817 23 1206 4.0 1107341571
## 3818 23 1208 4.0 1107162888
## 3819 23 1212 5.0 1107162640
## 3820 23 1213 3.0 1107164469
## 3821 23 1214 4.0 1107341579
## 3822 23 1217 3.5 1107341647
## 3823 23 1218 3.5 1107164383
## 3824 23 1221 3.5 1107163341
## 3825 23 1222 5.0 1107341684
## 3826 23 1232 5.0 1107163618
## 3827 23 1233 5.0 1107162927
## 3828 23 1237 4.0 1107162947
## 3829 23 1243 3.5 1107341801
## 3830 23 1245 3.5 1107162670
## 3831 23 1248 3.0 1107162687
## 3832 23 1249 3.5 1107341734
## 3833 23 1252 4.5 1107163719
## 3834 23 1258 5.0 1107341607
## 3835 23 1266 4.0 1107341726
## 3836 23 1274 4.0 1107163495
## 3837 23 1284 5.0 1107162632
## 3838 23 1425 3.0 1107342166
## 3839 23 1464 4.0 1107163869
## 3840 23 1617 3.5 1107341560
## 3841 23 1711 4.0 1107162645
## 3842 23 1748 3.5 1107162537
## 3843 23 1809 3.5 1107163578
## 3844 23 1859 3.5 1107163015
## 3845 23 1884 3.0 1107162759
## 3846 23 1952 3.0 1107341802
## 3847 23 1960 3.0 1107162960
## 3848 23 2019 3.0 1107164361
## 3849 23 2194 3.0 1107342210
## 3850 23 2467 4.0 1107162749
## 3851 23 2542 3.0 1107162552
## 3852 23 2579 4.0 1107163393
## 3853 23 2686 4.0 1107164093
## 3854 23 2726 4.0 1108703148
## 3855 23 2730 2.0 1107164153
## 3856 23 2761 3.5 1107162827
## 3857 23 2912 3.5 1107162744
## 3858 23 2951 3.0 1107162689
## 3859 23 3000 3.5 1107164425
## 3860 23 3030 3.0 1107164365
## 3861 23 3108 3.5 1107164068
## 3862 23 3181 3.5 1107164248
## 3863 23 3265 4.5 1107163724
## 3864 23 3424 3.0 1107341807
## 3865 23 3462 3.0 1107341855
## 3866 23 3681 3.5 1107164464
## 3867 23 3822 3.5 1107164225
## 3868 23 3949 5.0 1107162656
## 3869 23 3996 3.5 1107163815
## 3870 23 4027 3.0 1107341758
## 3871 23 4226 4.5 1107163706
## 3872 23 4235 4.0 1107164493
## 3873 23 4973 3.5 1107163755
## 3874 23 5013 3.0 1107164209
## 3875 23 5333 4.0 1107163583
## 3876 23 5618 4.0 1107163683
## 3877 23 5782 4.0 1107164450
## 3878 23 5971 4.0 1107163678
## 3879 23 6234 3.5 1107342139
## 3880 23 6387 3.0 1107163993
## 3881 23 6440 5.0 1107341765
## 3882 23 6721 3.0 1107341613
## 3883 23 6773 4.5 1107164874
## 3884 23 6790 3.5 1107163498
## 3885 23 6807 3.5 1107164480
## 3886 23 6857 3.5 1107163501
## 3887 23 6874 3.0 1107162696
## 3888 23 6920 3.0 1107163588
## 3889 23 6989 3.5 1107164073
## 3890 23 7064 3.5 1107164411
## 3891 23 7069 3.0 1107341955
## 3892 23 7099 4.0 1107163471
## 3893 23 7123 4.5 1107164119
## 3894 23 7438 3.0 1107164467
## 3895 23 7587 5.0 1107162995
## 3896 23 7924 3.5 1107341502
## 3897 23 7932 3.0 1107341862
## 3898 23 8012 4.0 1107164430
## 3899 23 8228 4.0 1107162877
## 3900 23 8370 4.0 1107163825
## 3901 23 8636 3.0 1107162817
## 3902 23 8961 3.0 1107164371
## 3903 24 6 4.5 1458941767
## 3904 24 32 3.5 1458942033
## 3905 24 50 4.0 1458942023
## 3906 24 165 3.5 1458941746
## 3907 24 253 3.5 1458941225
## 3908 24 296 4.0 1458942020
## 3909 24 316 3.5 1458941812
## 3910 24 318 4.5 1458941989
## 3911 24 356 4.5 1458940987
## 3912 24 457 3.5 1458941545
## 3913 24 552 3.5 1458941837
## 3914 24 593 4.5 1458941983
## 3915 24 608 4.0 1458942040
## 3916 24 733 3.0 1458941618
## 3917 24 780 3.5 1458942032
## 3918 24 1047 2.0 1458941870
## 3919 24 1197 4.0 1458941008
## 3920 24 1198 4.5 1458941536
## 3921 24 1220 3.5 1458941742
## 3922 24 1246 4.0 1458942000
## 3923 24 1265 4.5 1458940991
## 3924 24 1297 3.0 1458943989
## 3925 24 1370 3.5 1458941866
## 3926 24 1396 4.0 1458941841
## 3927 24 1527 4.0 1458941643
## 3928 24 1580 4.0 1458941715
## 3929 24 1639 3.0 1458941213
## 3930 24 1653 3.0 1458941019
## 3931 24 1663 3.5 1458941784
## 3932 24 1682 3.5 1458942002
## 3933 24 1704 4.0 1458941929
## 3934 24 1784 4.0 1458940984
## 3935 24 2028 4.0 1458941924
## 3936 24 2115 4.0 1458941695
## 3937 24 2134 3.0 1458943936
## 3938 24 2273 3.5 1458941753
## 3939 24 2405 2.5 1458941272
## 3940 24 2421 3.5 1458941291
## 3941 24 2424 4.0 1458941144
## 3942 24 2571 4.0 1458941533
## 3943 24 2617 3.5 1458941896
## 3944 24 2686 4.0 1458943925
## 3945 24 2916 3.5 1458941823
## 3946 24 3147 4.5 1458941985
## 3947 24 3556 2.0 1458941220
## 3948 24 3578 4.0 1458941548
## 3949 24 4027 4.0 1458941850
## 3950 24 4262 4.0 1458941756
## 3951 24 4299 3.5 1458941231
## 3952 24 4489 4.0 1458943981
## 3953 24 4701 3.5 1458941858
## 3954 24 4855 4.0 1458941759
## 3955 24 4973 3.5 1458940978
## 3956 24 4995 3.5 1458940973
## 3957 24 5064 4.5 1458941650
## 3958 24 5418 4.0 1458941561
## 3959 24 5445 3.0 1458941621
## 3960 24 5673 4.0 1458941243
## 3961 24 5791 4.0 1458944146
## 3962 24 5903 3.0 1458941589
## 3963 24 5943 2.0 1458944234
## 3964 24 6350 4.5 1458941335
## 3965 24 7143 4.0 1458941625
## 3966 24 7293 3.5 1458941192
## 3967 24 8784 3.0 1458941029
## 3968 24 27773 4.5 1458941571
## 3969 24 31685 3.5 1458941948
## 3970 24 31696 3.0 1458941958
## 3971 24 33679 3.5 1458941855
## 3972 24 34437 3.5 1458941506
## 3973 24 35836 4.0 1458941084
## 3974 24 38061 4.0 1458941952
## 3975 24 44191 4.0 1458941565
## 3976 24 45672 3.0 1458944130
## 3977 24 46976 4.0 1458941000
## 3978 24 47610 3.0 1458941035
## 3979 24 49272 3.5 1458941633
## 3980 24 51662 4.0 1458941627
## 3981 24 52973 3.5 1458941098
## 3982 24 54286 4.0 1458941553
## 3983 24 57368 3.5 1458941859
## 3984 24 58559 4.0 1458941530
## 3985 24 58998 4.0 1458941057
## 3986 24 59615 3.5 1458941901
## 3987 24 61024 3.5 1458941725
## 3988 24 61132 3.0 1458941827
## 3989 24 63113 3.0 1458941780
## 3990 24 64957 4.0 1458941955
## 3991 24 64969 3.0 1458941086
## 3992 24 68157 3.0 1458941578
## 3993 24 68358 4.0 1458941567
## 3994 24 69406 3.0 1458941342
## 3995 24 70286 4.0 1458941613
## 3996 24 72011 4.0 1458943976
## 3997 24 79132 4.0 1458941535
## 3998 24 86882 4.0 1458944025
## 3999 24 91529 4.0 1458941551
## 4000 24 91542 3.5 1458941594
## 4001 24 94777 4.0 1458941732
## 4002 24 96079 3.5 1458941632
## 4003 24 96610 3.0 1458941709
## 4004 24 102407 3.5 1458941328
## 4005 24 111759 3.5 1458941550
## 4006 24 119145 4.0 1458941646
## 4007 24 122886 3.5 1458941967
## 4008 24 132660 4.0 1458976352
## 4009 24 134130 4.0 1458941964
## 4010 24 134393 2.5 1458941460
## 4011 24 134853 4.0 1458941969
## 4012 24 139385 3.0 1458942069
## 4013 25 231 4.0 1535470451
## 4014 25 260 5.0 1535470429
## 4015 25 527 5.0 1535470432
## 4016 25 1198 5.0 1535470495
## 4017 25 2028 5.0 1535470505
## 4018 25 2571 5.0 1535470427
## 4019 25 3578 5.0 1535470497
## 4020 25 4993 5.0 1535470421
## 4021 25 5952 5.0 1535470419
## 4022 25 7153 5.0 1535470418
## 4023 25 58559 5.0 1535470524
## 4024 25 59315 4.0 1535470521
## 4025 25 60069 5.0 1535470523
## 4026 25 68157 5.0 1535470515
## 4027 25 68954 5.0 1535470493
## 4028 25 74458 4.5 1535470529
## 4029 25 79132 5.0 1535470428
## 4030 25 91529 5.0 1535470498
## 4031 25 116797 5.0 1535470507
## 4032 25 122912 5.0 1535470461
## 4033 25 122916 4.5 1535470504
## 4034 25 176371 4.0 1535470469
## 4035 25 177593 5.0 1535470532
## 4036 25 180095 5.0 1535470476
## 4037 25 187541 4.0 1535470472
## 4038 25 187593 5.0 1535470534
## 4039 26 10 3.0 836950403
## 4040 26 34 3.0 836950483
## 4041 26 47 4.0 836950431
## 4042 26 150 3.0 836950245
## 4043 26 153 3.0 836950286
## 4044 26 165 4.0 836950286
## 4045 26 185 3.0 836950403
## 4046 26 208 2.0 836950403
## 4047 26 225 3.0 836950483
## 4048 26 288 3.0 836950431
## 4049 26 296 4.0 836950245
## 4050 26 300 3.0 836950431
## 4051 26 344 3.0 836950286
## 4052 26 349 3.0 836950286
## 4053 26 356 3.0 836950483
## 4054 26 380 3.0 836950245
## 4055 26 434 2.0 836950379
## 4056 26 454 4.0 836950483
## 4057 26 457 4.0 836950379
## 4058 26 592 4.0 836950245
## 4059 26 593 4.0 836950379
## 4060 27 1 3.0 962685262
## 4061 27 2 4.0 962685711
## 4062 27 34 5.0 962685351
## 4063 27 48 4.0 962685318
## 4064 27 60 3.0 962685387
## 4065 27 62 5.0 962684909
## 4066 27 126 2.0 962685762
## 4067 27 158 2.0 962685387
## 4068 27 238 3.0 962685525
## 4069 27 260 4.0 962686637
## 4070 27 316 4.0 962685941
## 4071 27 356 5.0 965149932
## 4072 27 364 4.0 962685351
## 4073 27 367 4.0 965150022
## 4074 27 421 3.0 962685262
## 4075 27 455 3.0 962685569
## 4076 27 480 4.0 962685912
## 4077 27 590 4.0 962685883
## 4078 27 595 4.0 962685262
## 4079 27 648 4.0 962685941
## 4080 27 661 3.0 962685569
## 4081 27 673 2.0 962685762
## 4082 27 736 3.0 962685941
## 4083 27 745 5.0 962686299
## 4084 27 780 3.0 962686571
## 4085 27 783 4.0 962685470
## 4086 27 801 2.0 962685525
## 4087 27 808 4.0 962685711
## 4088 27 902 4.0 965149631
## 4089 27 911 5.0 965149512
## 4090 27 913 4.0 965151031
## 4091 27 920 4.0 962686447
## 4092 27 924 2.0 962686660
## 4093 27 969 4.0 965149694
## 4094 27 986 4.0 962685883
## 4095 27 1010 2.0 962686260
## 4096 27 1015 4.0 962685966
## 4097 27 1021 4.0 962685525
## 4098 27 1022 4.0 965149756
## 4099 27 1035 5.0 965149533
## 4100 27 1083 4.0 965149552
## 4101 27 1097 5.0 962686711
## 4102 27 1101 4.0 965150230
## 4103 27 1127 4.0 962686730
## 4104 27 1148 5.0 962686041
## 4105 27 1196 4.0 962686386
## 4106 27 1197 5.0 965150190
## 4107 27 1198 5.0 965150190
## 4108 27 1200 1.0 962686447
## 4109 27 1201 4.0 965149552
## 4110 27 1207 5.0 962686825
## 4111 27 1210 4.0 962684909
## 4112 27 1222 1.0 962684822
## 4113 27 1247 2.0 965149490
## 4114 27 1250 4.0 962686417
## 4115 27 1262 5.0 962686386
## 4116 27 1270 5.0 965151115
## 4117 27 1276 4.0 965149456
## 4118 27 1287 5.0 965149756
## 4119 27 1304 3.0 965149456
## 4120 27 1356 3.0 962685883
## 4121 27 1387 2.0 962686343
## 4122 27 1396 3.0 962686682
## 4123 27 1474 3.0 962685802
## 4124 27 1566 2.0 962685318
## 4125 27 1580 3.0 962686758
## 4126 27 1584 4.0 962686711
## 4127 27 1588 2.0 962685470
## 4128 27 1592 3.0 962685525
## 4129 27 1721 5.0 965149814
## 4130 27 1876 4.0 965150368
## 4131 27 1907 4.0 962685318
## 4132 27 1920 2.0 962685711
## 4133 27 1947 5.0 965149512
## 4134 27 1960 3.0 962686509
## 4135 27 2012 4.0 965150068
## 4136 27 2032 2.0 962686805
## 4137 27 2040 2.0 962686260
## 4138 27 2046 4.0 962685470
## 4139 27 2054 4.0 965149992
## 4140 27 2059 3.0 962685470
## 4141 27 2080 4.0 965149710
## 4142 27 2085 3.0 965149586
## 4143 27 2094 4.0 965150412
## 4144 27 2100 4.0 965149969
## 4145 27 2115 4.0 965150230
## 4146 27 2142 3.0 962685569
## 4147 27 2150 5.0 965150954
## 4148 27 2151 5.0 965150942
## 4149 27 2161 4.0 965149969
## 4150 27 2174 2.0 965149969
## 4151 27 2294 2.0 962685318
## 4152 27 2311 2.0 965151086
## 4153 27 2355 3.0 962685318
## 4154 27 2406 4.0 965150256
## 4155 27 2407 4.0 965151172
## 4156 27 2478 5.0 965150090
## 4157 27 2529 4.0 965149571
## 4158 27 2530 3.0 965151252
## 4159 27 2532 3.0 965151214
## 4160 27 2565 5.0 965149694
## 4161 27 2628 5.0 965151428
## 4162 27 2640 4.0 962686758
## 4163 27 2687 4.0 962685387
## 4164 27 2709 3.0 962685711
## 4165 27 2876 2.0 962685525
## 4166 27 2886 2.0 962685470
## 4167 27 2944 4.0 965149533
## 4168 27 2951 4.0 965149552
## 4169 27 2985 1.0 965150213
## 4170 27 3033 2.0 965151190
## 4171 27 3037 4.0 965150115
## 4172 27 3062 4.0 962686486
## 4173 27 3104 4.0 965150213
## 4174 27 3114 4.0 962685262
## 4175 27 3157 3.0 962685262
## 4176 27 3168 2.0 965149621
## 4177 27 3247 3.0 962684796
## 4178 27 3350 4.0 965149469
## 4179 27 3448 4.0 962686549
## 4180 27 3451 5.0 965149512
## 4181 27 3471 4.0 962686637
## 4182 27 3479 4.0 965149969
## 4183 27 3489 5.0 965150022
## 4184 27 3508 4.0 965150115
## 4185 27 3519 3.0 965149901
## 4186 27 3555 4.0 962685074
## 4187 27 3654 4.0 962686529
## 4188 27 3681 4.0 965149571
## 4189 27 3697 1.0 965150504
## 4190 27 3751 3.0 962685032
## 4191 27 3791 3.0 965149357
## 4192 27 3809 1.0 965149421
## 4193 27 3836 4.0 965149368
## 4194 27 5060 2.0 962686409
## 4195 28 6 3.5 1234570483
## 4196 28 16 2.5 1234570375
## 4197 28 21 3.0 1242290535
## 4198 28 23 1.5 1242290862
## 4199 28 31 2.5 1234334920
## 4200 28 32 3.5 1234335329
## 4201 28 47 3.0 1235975946
## 4202 28 50 3.5 1234337966
## 4203 28 62 3.5 1242290542
## 4204 28 95 2.0 1234516201
## 4205 28 110 3.5 1234515793
## 4206 28 145 1.5 1242290926
## 4207 28 147 2.5 1242289858
## 4208 28 161 3.0 1242032929
## 4209 28 172 3.0 1277002294
## 4210 28 211 3.0 1242107980
## 4211 28 224 3.0 1234334917
## 4212 28 253 3.0 1242033136
## 4213 28 260 4.0 1234338579
## 4214 28 290 3.0 1234570350
## 4215 28 293 4.5 1234338073
## 4216 28 296 4.5 1234338046
## 4217 28 300 2.0 1242288446
## 4218 28 316 4.0 1277002153
## 4219 28 318 3.5 1234338000
## 4220 28 337 3.5 1242031731
## 4221 28 345 4.0 1242290330
## 4222 28 349 3.0 1234516073
## 4223 28 353 3.0 1242033139
## 4224 28 356 4.0 1243837724
## 4225 28 377 1.5 1234516131
## 4226 28 428 2.5 1240817486
## 4227 28 442 1.0 1234516283
## 4228 28 456 2.0 1235806094
## 4229 28 457 3.0 1234515692
## 4230 28 474 2.5 1234515703
## 4231 28 475 4.0 1234334912
## 4232 28 480 2.5 1234515708
## 4233 28 481 3.0 1242290652
## 4234 28 507 4.0 1242032956
## 4235 28 508 3.5 1242032407
## 4236 28 524 3.5 1242032861
## 4237 28 527 3.0 1234570054
## 4238 28 529 3.5 1234571468
## 4239 28 541 4.0 1234335500
## 4240 28 553 3.0 1242032366
## 4241 28 555 3.0 1234515790
## 4242 28 589 4.5 1234515689
## 4243 28 590 4.0 1242290279
## 4244 28 592 2.5 1234516064
## 4245 28 593 2.5 1234570144
## 4246 28 599 3.0 1234514490
## 4247 28 608 3.0 1243837137
## 4248 28 635 3.0 1242288183
## 4249 28 647 2.5 1242290414
## 4250 28 678 3.5 1240211636
## 4251 28 714 3.5 1234570614
## 4252 28 724 1.5 1234334947
## 4253 28 733 1.0 1234516070
## 4254 28 736 2.5 1234516417
## 4255 28 778 3.5 1235806117
## 4256 28 780 3.0 1234516111
## 4257 28 851 2.0 1242033023
## 4258 28 858 4.5 1234338178
## 4259 28 898 3.0 1243837286
## 4260 28 899 2.0 1234334934
## 4261 28 924 3.0 1234516770
## 4262 28 996 2.0 1234516298
## 4263 28 1036 2.0 1234515645
## 4264 28 1042 2.5 1242290453
## 4265 28 1047 3.5 1234334914
## 4266 28 1080 3.5 1243837515
## 4267 28 1089 3.0 1234338253
## 4268 28 1092 2.5 1242290949
## 4269 28 1095 3.0 1234570537
## 4270 28 1101 3.0 1234516135
## 4271 28 1120 3.0 1234334932
## 4272 28 1129 2.5 1234516167
## 4273 28 1136 3.5 1234338716
## 4274 28 1171 3.0 1243837744
## 4275 28 1196 4.0 1234338139
## 4276 28 1197 2.5 1243837364
## 4277 28 1198 2.5 1234569517
## 4278 28 1199 2.0 1243837575
## 4279 28 1200 4.0 1234338743
## 4280 28 1201 4.0 1234338285
## 4281 28 1206 2.5 1234516765
## 4282 28 1208 3.0 1234516758
## 4283 28 1209 3.0 1235805640
## 4284 28 1210 4.0 1234515113
## 4285 28 1213 4.0 1234338180
## 4286 28 1214 3.5 1234338454
## 4287 28 1215 3.5 1234515861
## 4288 28 1221 4.0 1234338282
## 4289 28 1222 4.0 1234338173
## 4290 28 1230 2.0 1243837368
## 4291 28 1233 3.5 1234338465
## 4292 28 1234 3.0 1234569526
## 4293 28 1240 4.5 1234515680
## 4294 28 1245 3.5 1234338202
## 4295 28 1249 4.0 1234515648
## 4296 28 1253 3.5 1277001848
## 4297 28 1256 4.0 1243837314
## 4298 28 1266 4.5 1234338735
## 4299 28 1271 2.0 1234334960
## 4300 28 1275 2.0 1234337747
## 4301 28 1276 3.5 1234338468
## 4302 28 1303 3.0 1235805655
## 4303 28 1356 3.5 1234337804
## 4304 28 1358 4.0 1234338775
## 4305 28 1371 4.0 1234334902
## 4306 28 1374 2.5 1234571939
## 4307 28 1459 2.5 1242290702
## 4308 28 1466 3.0 1234570448
## 4309 28 1480 3.0 1277002141
## 4310 28 1517 2.5 1242290662
## 4311 28 1527 4.5 1234336847
## 4312 28 1580 3.0 1234516117
## 4313 28 1584 3.5 1242290563
## 4314 28 1587 2.5 1234516422
## 4315 28 1590 3.0 1277002267
## 4316 28 1608 2.0 1242290718
## 4317 28 1610 4.5 1234515687
## 4318 28 1617 3.0 1235975955
## 4319 28 1625 2.0 1242032374
## 4320 28 1641 2.5 1242290294
## 4321 28 1645 2.5 1242033151
## 4322 28 1653 3.5 1234572121
## 4323 28 1678 2.0 1242289781
## 4324 28 1682 1.5 1242289815
## 4325 28 1704 3.0 1235806527
## 4326 28 1729 2.5 1242031770
## 4327 28 1732 4.0 1242031360
## 4328 28 1748 3.5 1277001863
## 4329 28 1754 3.0 1242032528
## 4330 28 1785 3.5 1242032383
## 4331 28 1884 2.5 1242032351
## 4332 28 1921 4.0 1234572108
## 4333 28 1953 4.0 1234338731
## 4334 28 1994 2.5 1234334964
## 4335 28 2000 2.0 1234515694
## 4336 28 2012 2.5 1242290920
## 4337 28 2021 5.0 1234334942
## 4338 28 2023 3.5 1234516183
## 4339 28 2028 3.5 1234515641
## 4340 28 2058 2.0 1242290303
## 4341 28 2060 1.5 1242290877
## 4342 28 2105 4.0 1234334929
## 4343 28 2193 3.5 1234337742
## 4344 28 2194 3.5 1234338803
## 4345 28 2231 2.5 1242288296
## 4346 28 2232 2.0 1242033049
## 4347 28 2268 3.0 1242031764
## 4348 28 2272 2.5 1242290244
## 4349 28 2278 4.0 1234515996
## 4350 28 2329 2.5 1234569909
## 4351 28 2353 2.5 1242290159
## 4352 28 2358 4.0 1242031785
## 4353 28 2403 2.0 1234516006
## 4354 28 2412 2.0 1234516502
## 4355 28 2427 3.5 1242290428
## 4356 28 2490 4.5 1234516086
## 4357 28 2502 2.0 1234338784
## 4358 28 2539 1.5 1242290775
## 4359 28 2542 3.0 1234338189
## 4360 28 2571 4.0 1234338350
## 4361 28 2580 3.5 1234335075
## 4362 28 2618 3.0 1242287649
## 4363 28 2628 4.0 1234516355
## 4364 28 2683 2.5 1242290871
## 4365 28 2686 3.0 1234569659
## 4366 28 2701 1.5 1234516443
## 4367 28 2706 3.0 1242290771
## 4368 28 2716 1.5 1234515987
## 4369 28 2762 3.0 1234570602
## 4370 28 2763 2.0 1242290637
## 4371 28 2841 2.5 1242289152
## 4372 28 2858 4.0 1234338144
## 4373 28 2908 3.0 1242288232
## 4374 28 2912 2.5 1242288441
## 4375 28 2916 3.0 1242290561
## 4376 28 2944 3.5 1234515124
## 4377 28 2951 3.0 1234515633
## 4378 28 2952 2.5 1242106555
## 4379 28 2959 3.5 1234338005
## 4380 28 2968 4.0 1234334945
## 4381 28 2985 3.0 1277002126
## 4382 28 2997 2.5 1243837492
## 4383 28 3006 2.5 1234334969
## 4384 28 3020 3.0 1242032934
## 4385 28 3033 3.0 1277002147
## 4386 28 3052 3.0 1242290417
## 4387 28 3100 4.0 1242032411
## 4388 28 3105 2.5 1242031396
## 4389 28 3107 2.0 1242290922
## 4390 28 3147 2.5 1234570479
## 4391 28 3156 2.5 1277002264
## 4392 28 3169 2.5 1234337236
## 4393 28 3173 2.0 1242290846
## 4394 28 3174 2.5 1242290443
## 4395 28 3175 1.5 1242290498
## 4396 28 3176 3.0 1242290485
## 4397 28 3178 2.5 1242031255
## 4398 28 3198 3.0 1235805650
## 4399 28 3246 2.5 1234570524
## 4400 28 3250 4.0 1242033046
## 4401 28 3252 3.0 1242032417
## 4402 28 3256 2.5 1242289707
## 4403 28 3260 3.0 1242289079
## 4404 28 3271 3.0 1234569650
## 4405 28 3272 4.0 1242290937
## 4406 28 3275 3.5 1234336470
## 4407 28 3300 4.0 1234338619
## 4408 28 3317 2.5 1236314754
## 4409 28 3328 4.0 1242288907
## 4410 28 3360 4.0 1234571883
## 4411 28 3386 2.5 1242288921
## 4412 28 3408 3.0 1242290472
## 4413 28 3429 3.5 1234338164
## 4414 28 3499 3.0 1242032361
## 4415 28 3508 4.5 1234338748
## 4416 28 3510 3.0 1242290213
## 4417 28 3535 4.0 1242033133
## 4418 28 3543 2.5 1243837349
## 4419 28 3555 3.5 1234516154
## 4420 28 3556 3.0 1242289161
## 4421 28 3578 4.0 1234515839
## 4422 28 3681 3.5 1234338535
## 4423 28 3683 2.5 1234338153
## 4424 28 3702 3.5 1234337751
## 4425 28 3755 2.0 1234334925
## 4426 28 3783 4.0 1236313787
## 4427 28 3793 3.5 1234516011
## 4428 28 3911 3.0 1234334923
## 4429 28 3916 3.5 1242031893
## 4430 28 3949 2.0 1234338572
## 4431 28 3950 3.0 1236315133
## 4432 28 3967 4.0 1236319976
## 4433 28 3980 3.0 1242290171
## 4434 28 3994 3.0 1242290656
## 4435 28 3996 2.5 1234515852
## 4436 28 4011 3.5 1234338576
## 4437 28 4017 3.0 1242290247
## 4438 28 4019 3.0 1242288498
## 4439 28 4022 3.5 1242290467
## 4440 28 4027 3.5 1242031777
## 4441 28 4034 3.0 1236313568
## 4442 28 4047 3.5 1242031374
## 4443 28 4211 2.0 1235976182
## 4444 28 4223 4.0 1242032494
## 4445 28 4226 3.5 1234337963
## 4446 28 4238 2.5 1242290762
## 4447 28 4251 2.0 1237619121
## 4448 28 4327 3.5 1234338745
## 4449 28 4343 2.5 1277002280
## 4450 28 4344 1.0 1234516387
## 4451 28 4370 3.0 1242290689
## 4452 28 4378 3.0 1242289915
## 4453 28 4446 3.5 1277002284
## 4454 28 4626 3.0 1235975740
## 4455 28 4688 2.5 1240817515
## 4456 28 4772 3.5 1236314250
## 4457 28 4776 2.0 1242290187
## 4458 28 4787 2.0 1242289083
## 4459 28 4855 2.5 1234514717
## 4460 28 4874 3.0 1277001932
## 4461 28 4878 4.0 1234335490
## 4462 28 4881 2.5 1236314736
## 4463 28 4993 3.0 1234338192
## 4464 28 4995 3.0 1236313511
## 4465 28 5009 2.5 1242290723
## 4466 28 5010 4.5 1234340468
## 4467 28 5055 2.5 1242289767
## 4468 28 5152 4.5 1234340571
## 4469 28 5267 3.0 1242289147
## 4470 28 5292 3.5 1243837736
## 4471 28 5329 3.0 1242288954
## 4472 28 5349 3.5 1234515706
## 4473 28 5378 4.0 1234516357
## 4474 28 5418 3.5 1234569648
## 4475 28 5445 3.5 1234516004
## 4476 28 5446 3.0 1237619224
## 4477 28 5464 3.0 1242288783
## 4478 28 5502 3.0 1277002131
## 4479 28 5577 2.0 1242289900
## 4480 28 5617 2.0 1234340430
## 4481 28 5630 2.5 1242290315
## 4482 28 5632 3.0 1234515119
## 4483 28 5682 2.5 1242108379
## 4484 28 5747 3.5 1234338175
## 4485 28 5782 4.5 1234338696
## 4486 28 5903 3.0 1234572104
## 4487 28 5945 3.0 1242290271
## 4488 28 5952 3.5 1234338346
## 4489 28 5955 3.0 1236319971
## 4490 28 5956 2.0 1242290554
## 4491 28 5989 3.5 1236314244
## 4492 28 5995 3.0 1234337599
## 4493 28 6157 1.5 1234516438
## 4494 28 6281 1.5 1242290481
## 4495 28 6333 2.5 1234515699
## 4496 28 6365 3.5 1234516336
## 4497 28 6378 2.0 1242290221
## 4498 28 6428 3.0 1234571930
## 4499 28 6502 3.0 1234572111
## 4500 28 6534 2.5 1234516304
## 4501 28 6537 4.0 1234516415
## 4502 28 6539 2.0 1242031882
## 4503 28 6548 1.5 1242290928
## 4504 28 6552 2.5 1237619395
## 4505 28 6565 3.5 1242288458
## 4506 28 6617 4.0 1242032404
## 4507 28 6711 2.5 1236314713
## 4508 28 6796 2.0 1240817387
## 4509 28 6807 2.5 1243837639
## 4510 28 6817 3.0 1242032439
## 4511 28 6867 4.0 1240211660
## 4512 28 6870 3.0 1236228466
## 4513 28 6874 4.0 1234515778
## 4514 28 6884 3.5 1242288799
## 4515 28 6934 3.5 1234516339
## 4516 28 6947 3.5 1234515870
## 4517 28 6953 3.0 1236313576
## 4518 28 6957 3.0 1242290204
## 4519 28 6974 3.0 1242033113
## 4520 28 6993 1.5 1243837374
## 4521 28 6997 3.0 1242289886
## 4522 28 7009 3.5 1242289903
## 4523 28 7025 2.5 1235805921
## 4524 28 7090 2.0 1236314730
## 4525 28 7123 3.0 1242032858
## 4526 28 7143 3.5 1242032883
## 4527 28 7153 3.5 1234338343
## 4528 28 7263 3.0 1240211839
## 4529 28 7361 2.5 1277001831
## 4530 28 7438 4.0 1234341377
## 4531 28 7445 2.0 1242288761
## 4532 28 7458 4.0 1234516149
## 4533 28 7481 4.5 1234337756
## 4534 28 7649 2.0 1235976155
## 4535 28 7706 4.0 1235975729
## 4536 28 7841 4.5 1234337227
## 4537 28 7842 5.0 1234337731
## 4538 28 7884 2.5 1243837355
## 4539 28 8010 4.0 1235806217
## 4540 28 8132 4.0 1234570622
## 4541 28 8207 3.5 1234338471
## 4542 28 8361 2.5 1234516204
## 4543 28 8378 4.0 1242290283
## 4544 28 8493 3.0 1237619403
## 4545 28 8495 2.5 1236311537
## 4546 28 8633 4.5 1234337791
## 4547 28 8636 3.0 1234572135
## 4548 28 8641 3.0 1242290779
## 4549 28 8644 4.0 1234516108
## 4550 28 8665 3.5 1236314239
## 4551 28 8798 3.5 1234340436
## 4552 28 8810 3.0 1234516426
## 4553 28 8874 2.0 1243837559
## 4554 28 8914 2.0 1234337380
## 4555 28 8937 2.5 1242289874
## 4556 28 8949 2.5 1236313688
## 4557 28 8950 4.0 1234338550
## 4558 28 8951 3.0 1234570527
## 4559 28 8961 3.5 1243837502
## 4560 28 8970 3.0 1236313795
## 4561 28 8977 2.5 1234516433
## 4562 28 8982 3.0 1242288165
## 4563 28 8983 2.0 1234515866
## 4564 28 26614 4.0 1235975723
## 4565 28 26649 4.0 1235975772
## 4566 28 26695 3.5 1242289677
## 4567 28 26750 3.5 1242031891
## 4568 28 26812 3.0 1234514493
## 4569 28 26901 2.5 1234850414
## 4570 28 27408 2.5 1242032514
## 4571 28 27450 2.5 1234850089
## 4572 28 27611 4.5 1234335514
## 4573 28 27788 1.0 1242290224
## 4574 28 27793 2.0 1234850044
## 4575 28 27831 3.5 1234338340
## 4576 28 30707 4.0 1234341382
## 4577 28 30749 4.0 1234337586
## 4578 28 30812 3.0 1242288990
## 4579 28 31101 3.0 1234570410
## 4580 28 31116 3.0 1235805645
## 4581 28 31225 3.0 1242288487
## 4582 28 31420 2.5 1242290865
## 4583 28 32587 3.5 1277001858
## 4584 28 33004 3.0 1277002101
## 4585 28 33166 2.0 1236313784
## 4586 28 33493 4.0 1234515711
## 4587 28 33558 3.0 1235806520
## 4588 28 33660 4.0 1234341077
## 4589 28 33679 2.0 1234516121
## 4590 28 33794 4.5 1234338148
## 4591 28 34048 3.5 1234516420
## 4592 28 34150 3.0 1234516309
## 4593 28 34319 3.0 1234516113
## 4594 28 34405 4.5 1234335507
## 4595 28 34437 3.5 1242288890
## 4596 28 34536 2.5 1242288187
## 4597 28 36517 2.5 1236314245
## 4598 28 36527 3.0 1242033038
## 4599 28 36529 4.0 1234337635
## 4600 28 37386 3.5 1277002259
## 4601 28 37731 2.5 1234570516
## 4602 28 37739 3.0 1235806532
## 4603 28 37741 2.0 1234341011
## 4604 28 38061 4.5 1234337997
## 4605 28 38886 2.0 1236313815
## 4606 28 39381 3.5 1234338567
## 4607 28 39444 3.5 1242290492
## 4608 28 40278 3.0 1242289778
## 4609 28 40414 3.0 1240816043
## 4610 28 40583 2.5 1242288972
## 4611 28 40629 2.0 1236313806
## 4612 28 40819 2.5 1236313271
## 4613 28 41566 2.5 1234516078
## 4614 28 41569 2.5 1242290573
## 4615 28 41863 4.5 1234341471
## 4616 28 41997 3.0 1234515787
## 4617 28 42004 2.5 1234340470
## 4618 28 43396 4.0 1234341071
## 4619 28 43921 3.0 1242033072
## 4620 28 43928 3.0 1277002331
## 4621 28 43936 2.5 1242290327
## 4622 28 44191 3.0 1234515844
## 4623 28 44195 4.5 1234338584
## 4624 28 44199 2.0 1235806205
## 4625 28 44204 3.0 1234571477
## 4626 28 44665 3.0 1234337349
## 4627 28 44761 2.0 1234337337
## 4628 28 45658 2.0 1236313534
## 4629 28 46578 2.0 1243837448
## 4630 28 46723 2.5 1236319973
## 4631 28 47099 3.0 1242288778
## 4632 28 47629 2.0 1234570360
## 4633 28 47644 3.0 1236314716
## 4634 28 47894 3.5 1234337674
## 4635 28 48326 2.5 1242290768
## 4636 28 48385 4.0 1242290334
## 4637 28 48516 2.5 1234340364
## 4638 28 48738 3.0 1234338028
## 4639 28 48774 3.0 1234335493
## 4640 28 48780 1.5 1234338427
## 4641 28 48783 2.5 1242032873
## 4642 28 48879 2.5 1242109131
## 4643 28 49265 4.0 1235975785
## 4644 28 49272 3.5 1234338817
## 4645 28 49278 2.5 1234572138
## 4646 28 49530 4.5 1234337638
## 4647 28 49651 2.5 1242290424
## 4648 28 49822 3.0 1242289880
## 4649 28 49961 3.0 1236228709
## 4650 28 50068 3.0 1234337590
## 4651 28 50442 2.0 1242290759
## 4652 28 51080 2.0 1242109122
## 4653 28 51255 1.0 1234338068
## 4654 28 51471 3.0 1234340433
## 4655 28 51540 2.0 1236313693
## 4656 28 51662 4.5 1234515873
## 4657 28 51935 2.5 1242289917
## 4658 28 52042 2.5 1240211511
## 4659 28 52241 2.0 1236313504
## 4660 28 52281 2.5 1234338628
## 4661 28 52328 2.5 1234572127
## 4662 28 52604 2.0 1242288430
## 4663 28 52952 3.5 1234338058
## 4664 28 53123 5.0 1234341270
## 4665 28 53322 1.5 1242290446
## 4666 28 53550 2.5 1234337605
## 4667 28 53953 1.0 1234335379
## 4668 28 53972 2.5 1242032400
## 4669 28 54286 4.0 1234338764
## 4670 28 54503 3.5 1242032422
## 4671 28 54736 2.5 1234340486
## 4672 28 54962 2.5 1234340488
## 4673 28 54997 3.5 1234338456
## 4674 28 55080 2.5 1242289755
## 4675 28 55094 3.5 1234570629
## 4676 28 55116 3.0 1234340443
## 4677 28 55118 4.0 1234338278
## 4678 28 55247 3.5 1234338544
## 4679 28 55274 2.5 1242288903
## 4680 28 55276 2.5 1234570192
## 4681 28 55290 3.0 1235975952
## 4682 28 55363 3.0 1236315140
## 4683 28 55721 3.5 1234340956
## 4684 28 55765 2.5 1234341008
## 4685 28 55820 4.5 1234338039
## 4686 28 55908 3.5 1234338625
## 4687 28 56145 1.0 1242032944
## 4688 28 56174 4.0 1277001923
## 4689 28 56367 2.5 1243837445
## 4690 28 56587 3.0 1242289053
## 4691 28 56607 2.5 1240211643
## 4692 28 56782 3.0 1234340899
## 4693 28 56921 2.0 1235805913
## 4694 28 57368 2.0 1242290495
## 4695 28 57528 2.0 1242289912
## 4696 28 57640 4.0 1242289883
## 4697 28 57669 4.0 1234338182
## 4698 28 58293 0.5 1234335308
## 4699 28 58559 3.5 1234337988
## 4700 28 58803 3.0 1242290671
## 4701 28 59018 4.5 1235806122
## 4702 28 59129 2.5 1234853569
## 4703 28 59315 4.5 1234338546
## 4704 28 59369 4.0 1234338711
## 4705 28 59387 2.0 1235975904
## 4706 28 60040 3.0 1234572131
## 4707 28 60046 3.5 1242033012
## 4708 28 60069 4.0 1234338025
## 4709 28 60389 4.0 1234335266
## 4710 28 60647 2.5 1242290262
## 4711 28 60674 2.5 1234853684
## 4712 28 60684 4.0 1240817508
## 4713 28 60735 2.5 1234853778
## 4714 28 60753 3.0 1234570390
## 4715 28 60941 3.0 1234854184
## 4716 28 60943 4.5 1234336526
## 4717 28 61011 2.0 1234850432
## 4718 28 61024 2.0 1234854178
## 4719 28 61132 2.0 1242290318
## 4720 28 61167 4.0 1234853871
## 4721 28 61210 3.5 1234850150
## 4722 28 61236 2.5 1234338142
## 4723 28 61248 2.0 1234854175
## 4724 28 61323 2.5 1234853862
## 4725 28 61350 3.5 1234335260
## 4726 28 61352 3.0 1234853868
## 4727 28 61628 2.0 1234853784
## 4728 28 61986 3.0 1234853673
## 4729 28 62374 2.5 1234338810
## 4730 28 62376 2.5 1234853561
## 4731 28 62394 2.0 1234853555
## 4732 28 62792 2.5 1234853233
## 4733 28 62799 3.0 1234853237
## 4734 28 62849 3.5 1234853223
## 4735 28 63033 3.5 1234335269
## 4736 28 63062 3.0 1242107787
## 4737 28 63082 4.0 1234337982
## 4738 28 63113 3.0 1234853160
## 4739 28 63433 2.0 1235975882
## 4740 28 64030 3.5 1234340334
## 4741 28 64497 3.0 1234850172
## 4742 28 64575 2.5 1235975894
## 4743 28 64614 4.0 1234570126
## 4744 28 64716 4.0 1234850141
## 4745 28 64839 3.0 1240816020
## 4746 28 64957 4.5 1234341141
## 4747 28 64983 2.5 1242288321
## 4748 28 64997 3.5 1234850075
## 4749 28 65216 3.5 1234850034
## 4750 28 65682 2.5 1234340341
## 4751 28 65982 3.0 1277002092
## 4752 28 67534 3.0 1242883379
## 4753 28 68205 3.0 1242883383
## 4754 28 68237 3.0 1277001822
## 4755 28 68319 3.5 1242883367
## 4756 28 68358 3.5 1242883340
## 4757 28 68791 4.5 1277002158
## 4758 28 69849 3.5 1277002828
## 4759 28 70286 4.5 1277001890
## 4760 28 70336 1.5 1277002289
## 4761 28 71106 2.5 1277001836
## 4762 28 71135 3.5 1277001895
## 4763 28 72378 2.0 1277002257
## 4764 28 72998 5.0 1277001853
## 4765 29 50 3.5 1308007653
## 4766 29 150 4.0 1362016794
## 4767 29 165 4.0 1362016840
## 4768 29 170 3.0 1307905797
## 4769 29 296 3.5 1362016789
## 4770 29 316 4.0 1362016849
## 4771 29 318 4.5 1307907071
## 4772 29 356 4.5 1362016780
## 4773 29 750 4.5 1310788122
## 4774 29 780 4.0 1362016798
## 4775 29 858 4.5 1307907013
## 4776 29 904 4.5 1307945605
## 4777 29 914 4.0 1362016608
## 4778 29 924 5.0 1307906672
## 4779 29 953 5.0 1307906372
## 4780 29 1100 3.5 1307905898
## 4781 29 1136 4.0 1308084085
## 4782 29 1198 4.5 1307906966
## 4783 29 1201 5.0 1307907031
## 4784 29 1204 4.5 1308084015
## 4785 29 1208 4.0 1308084034
## 4786 29 1209 4.5 1308025043
## 4787 29 1213 4.0 1308025032
## 4788 29 1222 4.0 1308084128
## 4789 29 1224 4.0 1307905945
## 4790 29 1242 4.0 1307908267
## 4791 29 1250 5.0 1308024986
## 4792 29 1262 4.5 1307906969
## 4793 29 1270 4.0 1307906647
## 4794 29 1272 5.0 1308084090
## 4795 29 1303 4.5 1308084157
## 4796 29 1385 2.0 1307905878
## 4797 29 1408 5.0 1405816272
## 4798 29 1617 5.0 1315262432
## 4799 29 1772 1.5 1307906072
## 4800 29 1792 3.0 1307905957
## 4801 29 1939 4.0 1362016593
## 4802 29 1945 4.5 1307905911
## 4803 29 2028 5.0 1362016835
## 4804 29 2301 4.0 1307905970
## 4805 29 2420 3.0 1307905816
## 4806 29 2761 3.5 1307905804
## 4807 29 2872 4.5 1307905862
## 4808 29 2944 4.0 1307905845
## 4809 29 2951 4.5 1307907122
## 4810 29 3363 4.5 1362016600
## 4811 29 3441 3.5 1307906080
## 4812 29 3578 5.0 1362016881
## 4813 29 3591 3.0 1307906057
## 4814 29 3681 4.0 1307907026
## 4815 29 4223 4.0 1405816293
## 4816 29 4327 4.0 1307906981
## 4817 29 4980 2.0 1307906020
## 4818 29 5010 4.0 1405816200
## 4819 29 5464 4.5 1405816207
## 4820 29 5995 5.0 1308084202
## 4821 29 6502 4.5 1405816264
## 4822 29 6787 4.5 1307945581
## 4823 29 7156 4.5 1307906727
## 4824 29 7379 3.5 1311834931
## 4825 29 26554 4.0 1309069525
## 4826 29 26729 4.0 1308138832
## 4827 29 27611 5.0 1362016752
## 4828 29 48516 4.5 1308084039
## 4829 29 48774 4.5 1307906679
## 4830 29 51540 4.0 1307948222
## 4831 29 55820 4.0 1308084198
## 4832 29 56174 4.0 1309069586
## 4833 29 64620 4.5 1310804277
## 4834 29 68237 5.0 1307906345
## 4835 29 70286 4.0 1307906685
## 4836 29 80489 4.0 1362016591
## 4837 29 81845 4.0 1307907049
## 4838 29 82459 5.0 1310787896
## 4839 29 87232 3.5 1307906652
## 4840 29 87306 4.5 1309585079
## 4841 29 98961 4.5 1362016565
## 4842 29 99114 4.5 1362016549
## 4843 29 104841 4.0 1405816277
## 4844 29 111362 4.5 1405816130
## 4845 29 111759 4.0 1405816122
## 4846 30 110 5.0 1500370456
## 4847 30 260 5.0 1500370339
## 4848 30 318 5.0 1500370344
## 4849 30 589 3.5 1500370430
## 4850 30 1036 4.0 1500370436
## 4851 30 1196 5.0 1500370341
## 4852 30 1198 5.0 1500370343
## 4853 30 1200 3.0 1500370434
## 4854 30 1210 5.0 1500370347
## 4855 30 1240 3.5 1500370449
## 4856 30 1291 5.0 1500370351
## 4857 30 2571 5.0 1500370345
## 4858 30 4993 5.0 1500370423
## 4859 30 5952 5.0 1500370399
## 4860 30 7153 5.0 1500370349
## 4861 30 33794 5.0 1500370439
## 4862 30 58559 5.0 1500370398
## 4863 30 59315 5.0 1500370444
## 4864 30 60069 5.0 1500370453
## 4865 30 68358 5.0 1500370441
## 4866 30 68954 5.0 1500370450
## 4867 30 79132 5.0 1500370425
## 4868 30 91529 5.0 1500370452
## 4869 30 93510 5.0 1500370378
## 4870 30 95510 5.0 1500370369
## 4871 30 96821 5.0 1500370373
## 4872 30 97913 4.0 1500370371
## 4873 30 108932 4.0 1500370367
## 4874 30 109487 5.0 1500370443
## 4875 30 111759 5.0 1500370446
## 4876 30 112852 5.0 1500370426
## 4877 30 115617 5.0 1500370457
## 4878 30 116823 4.0 1500370376
## 4879 30 122904 5.0 1500370440
## 4880 31 1 5.0 850466616
## 4881 31 5 3.0 850466642
## 4882 31 7 4.0 850466642
## 4883 31 10 4.0 850467366
## 4884 31 17 3.0 850466616
## 4885 31 25 2.0 850466616
## 4886 31 62 4.0 850466616
## 4887 31 141 4.0 850466616
## 4888 31 165 4.0 850467366
## 4889 31 339 4.0 850467366
## 4890 31 344 3.0 850467365
## 4891 31 377 5.0 850467368
## 4892 31 588 5.0 850467365
## 4893 31 605 4.0 852207559
## 4894 31 612 3.0 852208599
## 4895 31 648 5.0 850466616
## 4896 31 733 5.0 850466642
## 4897 31 736 4.0 850466616
## 4898 31 780 4.0 850466616
## 4899 31 783 4.0 850466660
## 4900 31 784 5.0 850466810
## 4901 31 788 2.0 850466679
## 4902 31 852 4.0 850467118
## 4903 31 912 5.0 850467425
## 4904 31 1036 5.0 850467468
## 4905 31 1057 5.0 850466810
## 4906 31 1073 4.0 850467063
## 4907 31 1099 2.0 850467444
## 4908 31 1136 3.0 850467408
## 4909 31 1196 4.0 850467408
## 4910 31 1197 5.0 850467408
## 4911 31 1198 4.0 850467408
## 4912 31 1200 3.0 850467408
## 4913 31 1214 4.0 850467425
## 4914 31 1231 3.0 850467468
## 4915 31 1240 4.0 850467408
## 4916 31 1246 3.0 850467468
## 4917 31 1265 2.0 850467444
## 4918 31 1270 4.0 850467468
## 4919 31 1278 5.0 850467425
## 4920 31 1282 5.0 850467485
## 4921 31 1302 4.0 850467485
## 4922 31 1353 4.0 850467078
## 4923 31 1356 4.0 850466719
## 4924 31 1361 5.0 850466810
## 4925 31 1363 5.0 850466810
## 4926 31 1391 5.0 850466810
## 4927 31 1393 3.0 852207084
## 4928 31 1405 1.0 852207053
## 4929 31 5060 5.0 850467468
## 4930 32 1 3.0 856736119
## 4931 32 3 3.0 856736172
## 4932 32 6 3.0 856736172
## 4933 32 7 4.0 856736173
## 4934 32 21 4.0 856737002
## 4935 32 24 3.0 856737205
## 4936 32 25 4.0 856736119
## 4937 32 26 4.0 856736347
## 4938 32 32 4.0 856736119
## 4939 32 36 4.0 856736172
## 4940 32 39 3.0 856737205
## 4941 32 50 5.0 856737002
## 4942 32 52 3.0 856736227
## 4943 32 58 5.0 856736227
## 4944 32 62 3.0 856736119
## 4945 32 74 4.0 856736316
## 4946 32 78 4.0 856736477
## 4947 32 95 3.0 856736119
## 4948 32 100 4.0 856736290
## 4949 32 140 3.0 856736262
## 4950 32 141 4.0 856736119
## 4951 32 153 3.0 856737123
## 4952 32 194 5.0 856737270
## 4953 32 203 4.0 856737166
## 4954 32 224 4.0 856737388
## 4955 32 236 3.0 856737081
## 4956 32 246 4.0 856737338
## 4957 32 252 3.0 856737082
## 4958 32 260 5.0 856736227
## 4959 32 265 5.0 856737045
## 4960 32 272 5.0 856737123
## 4961 32 282 4.0 856737338
## 4962 32 296 5.0 856737001
## 4963 32 314 4.0 856737002
## 4964 32 318 5.0 856737003
## 4965 32 327 3.0 856737165
## 4966 32 337 3.0 856737205
## 4967 32 339 4.0 856737123
## 4968 32 345 5.0 856737044
## 4969 32 353 3.0 856737270
## 4970 32 357 3.0 856737165
## 4971 32 361 4.0 856737270
## 4972 32 376 3.0 856736227
## 4973 32 410 3.0 856737082
## 4974 32 440 4.0 856737270
## 4975 32 471 3.0 856737165
## 4976 32 497 5.0 856737045
## 4977 32 527 4.0 856737205
## 4978 32 529 4.0 856737044
## 4979 32 538 5.0 856737123
## 4980 32 539 4.0 856737123
## 4981 32 553 3.0 856737338
## 4982 32 592 5.0 856737044
## 4983 32 593 5.0 856737081
## 4984 32 608 5.0 856736172
## 4985 32 627 4.0 856736505
## 4986 32 628 3.0 856736262
## 4987 32 648 3.0 856736119
## 4988 32 653 3.0 856736227
## 4989 32 661 3.0 856736262
## 4990 32 694 3.0 856736374
## 4991 32 708 4.0 856736227
## 4992 32 719 3.0 856736290
## 4993 32 733 4.0 856736172
## 4994 32 736 3.0 856736119
## 4995 32 761 4.0 856736316
## 4996 32 780 3.0 856736119
## 4997 32 784 3.0 856736227
## 4998 32 786 3.0 856736173
## 4999 32 788 1.0 856736227
## 5000 32 799 3.0 856736405
## 5001 32 802 4.0 856736290
## 5002 32 849 2.0 856736405
## 5003 32 852 4.0 856736316
## 5004 32 880 3.0 856736405
## 5005 32 912 5.0 856737165
## 5006 32 996 3.0 856736563
## 5007 32 1036 5.0 856737338
## 5008 32 1061 4.0 856736405
## 5009 32 1073 5.0 856736173
## 5010 32 1079 4.0 856737044
## 5011 32 1080 3.0 856737165
## 5012 32 1084 4.0 856737338
## 5013 32 1086 4.0 856737270
## 5014 32 1103 4.0 856737123
## 5015 32 1104 5.0 856737082
## 5016 32 1183 3.0 856736427
## 5017 32 1196 4.0 856737165
## 5018 32 1197 5.0 856737123
## 5019 32 1198 5.0 856737270
## 5020 32 1224 3.0 856737338
## 5021 32 1356 4.0 856736262
## 5022 32 1367 3.0 856736374
## 5023 32 1391 5.0 856736427
## 5024 32 1393 4.0 856736374
## 5025 32 1407 2.0 856736519
## 5026 32 1409 4.0 856736477
## 5027 32 1425 3.0 856736652
## 5028 32 1429 4.0 856736579
## 5029 32 1438 3.0 856736639
## 5030 32 1458 4.0 856736822
## 5031 32 1459 4.0 856736725
## 5032 33 1 3.0 939647444
## 5033 33 7 1.0 939654896
## 5034 33 11 2.0 939654896
## 5035 33 17 4.0 939654828
## 5036 33 21 4.0 939715904
## 5037 33 25 3.0 939646902
## 5038 33 28 5.0 939654815
## 5039 33 32 3.0 939647370
## 5040 33 34 3.0 939646940
## 5041 33 36 5.0 939715317
## 5042 33 39 5.0 939654896
## 5043 33 43 2.0 939716739
## 5044 33 50 5.0 939646733
## 5045 33 58 4.0 939646784
## 5046 33 94 4.0 939716218
## 5047 33 110 5.0 939648134
## 5048 33 150 3.0 939647816
## 5049 33 151 4.0 939715904
## 5050 33 161 3.0 939716218
## 5051 33 194 3.0 939647873
## 5052 33 223 4.0 939648134
## 5053 33 230 3.0 939715955
## 5054 33 232 4.0 939648134
## 5055 33 249 3.0 939716778
## 5056 33 261 4.0 939715904
## 5057 33 265 5.0 939646733
## 5058 33 272 4.0 939716778
## 5059 33 293 4.0 939716559
## 5060 33 296 5.0 939717613
## 5061 33 300 3.0 939648134
## 5062 33 302 3.0 939716327
## 5063 33 307 5.0 939715286
## 5064 33 308 4.0 939716559
## 5065 33 318 4.0 939716778
## 5066 33 322 2.0 939716829
## 5067 33 337 5.0 939715369
## 5068 33 339 5.0 939719385
## 5069 33 345 4.0 939716327
## 5070 33 356 5.0 939654815
## 5071 33 385 4.0 939716559
## 5072 33 428 5.0 939647444
## 5073 33 446 5.0 939716559
## 5074 33 448 4.0 939715485
## 5075 33 452 4.0 939716519
## 5076 33 457 5.0 939646784
## 5077 33 475 4.0 939715904
## 5078 33 477 3.0 939716738
## 5079 33 490 2.0 939646733
## 5080 33 497 4.0 939646939
## 5081 33 507 4.0 939646733
## 5082 33 508 3.0 939647015
## 5083 33 509 5.0 939716661
## 5084 33 527 5.0 939716661
## 5085 33 529 4.0 939647873
## 5086 33 562 5.0 939715485
## 5087 33 580 1.0 939715414
## 5088 33 588 5.0 939646939
## 5089 33 589 4.0 939647370
## 5090 33 593 5.0 939647370
## 5091 33 608 4.0 939647444
## 5092 33 613 5.0 939715859
## 5093 33 715 4.0 939715369
## 5094 33 778 4.0 939647370
## 5095 33 800 4.0 939715233
## 5096 33 805 1.0 939716819
## 5097 33 838 5.0 939716327
## 5098 33 866 4.0 939715591
## 5099 33 914 5.0 940422746
## 5100 33 919 5.0 940422746
## 5101 33 994 5.0 939646939
## 5102 33 1027 3.0 939716819
## 5103 33 1056 4.0 939715955
## 5104 33 1059 4.0 939716519
## 5105 33 1060 5.0 939646733
## 5106 33 1095 4.0 939716778
## 5107 33 1177 3.0 939715369
## 5108 33 1183 3.0 939647016
## 5109 33 1188 4.0 939647873
## 5110 33 1210 5.0 939647873
## 5111 33 1213 3.0 939646865
## 5112 33 1245 5.0 939716472
## 5113 33 1249 5.0 939646820
## 5114 33 1271 3.0 939715825
## 5115 33 1280 5.0 939716738
## 5116 33 1357 4.0 939648134
## 5117 33 1358 4.0 939646820
## 5118 33 1365 3.0 939715749
## 5119 33 1393 4.0 939654896
## 5120 33 1399 2.0 939716472
## 5121 33 1446 5.0 939648134
## 5122 33 1476 3.0 939715749
## 5123 33 1487 3.0 939716855
## 5124 33 1500 4.0 939719185
## 5125 33 1537 4.0 939646982
## 5126 33 1542 4.0 939716676
## 5127 33 1545 5.0 939715414
## 5128 33 1580 3.0 939718916
## 5129 33 1610 3.0 939646982
## 5130 33 1614 2.0 939719185
## 5131 33 1617 5.0 939646982
## 5132 33 1621 2.0 939716819
## 5133 33 1633 4.0 939715591
## 5134 33 1639 5.0 939654815
## 5135 33 1641 5.0 939647444
## 5136 33 1643 3.0 939654896
## 5137 33 1653 5.0 939715317
## 5138 33 1658 2.0 939654815
## 5139 33 1672 3.0 939715620
## 5140 33 1673 5.0 939715448
## 5141 33 1678 5.0 939715414
## 5142 33 1682 4.0 939715324
## 5143 33 1704 5.0 939646939
## 5144 33 1719 5.0 939715485
## 5145 33 1721 4.0 939646820
## 5146 33 1777 4.0 939719185
## 5147 33 1784 2.0 939647873
## 5148 33 1799 3.0 939715380
## 5149 33 1801 4.0 939715955
## 5150 33 1805 2.0 939715591
## 5151 33 1841 3.0 939717614
## 5152 33 1885 4.0 939715369
## 5153 33 1888 4.0 939716559
## 5154 33 1918 3.0 939716519
## 5155 33 1923 5.0 939647016
## 5156 33 2028 5.0 939646902
## 5157 33 2058 3.0 939646865
## 5158 33 2080 4.0 940422746
## 5159 33 2087 3.0 940422746
## 5160 33 2108 2.0 939646865
## 5161 33 2112 3.0 939716739
## 5162 33 2268 4.0 939715369
## 5163 33 2272 3.0 939715620
## 5164 33 2291 2.0 939715749
## 5165 33 2294 3.0 939646982
## 5166 33 2302 3.0 939718916
## 5167 33 2310 4.0 939716738
## 5168 33 2324 3.0 939646784
## 5169 33 2333 4.0 939647370
## 5170 33 2336 2.0 939646982
## 5171 33 2355 5.0 939718916
## 5172 33 2357 5.0 939654747
## 5173 33 2391 2.0 939646982
## 5174 33 2396 4.0 939647444
## 5175 33 2443 3.0 939654747
## 5176 33 2485 2.0 939719385
## 5177 33 2490 3.0 939654747
## 5178 33 2501 2.0 939646784
## 5179 33 2539 4.0 939718916
## 5180 33 2542 4.0 939654747
## 5181 33 2571 5.0 939646784
## 5182 33 2580 5.0 939646902
## 5183 33 2690 4.0 939718916
## 5184 33 2724 3.0 939646557
## 5185 33 2762 4.0 939646424
## 5186 33 2875 4.0 939716738
## 5187 33 2943 5.0 939646680
## 5188 34 10 5.0 1162048773
## 5189 34 70 3.5 1162048002
## 5190 34 110 0.5 1162049056
## 5191 34 145 1.0 1162048012
## 5192 34 163 3.0 1162050915
## 5193 34 318 4.0 1162050357
## 5194 34 356 4.0 1162049069
## 5195 34 357 0.5 1162048916
## 5196 34 377 4.5 1162048796
## 5197 34 589 3.5 1163954746
## 5198 34 780 3.0 1162050135
## 5199 34 1036 2.5 1166463521
## 5200 34 1391 1.0 1162050209
## 5201 34 1527 4.5 1162048875
## 5202 34 1580 2.5 1162048827
## 5203 34 1682 2.5 1162048961
## 5204 34 1717 3.5 1162048275
## 5205 34 1721 0.5 1162048752
## 5206 34 1831 3.0 1162048144
## 5207 34 2006 4.5 1162047985
## 5208 34 2273 5.0 1162048095
## 5209 34 2324 2.0 1162233253
## 5210 34 2424 1.0 1168811769
## 5211 34 2443 4.5 1168811334
## 5212 34 2571 3.0 1162048690
## 5213 34 2617 4.0 1162050143
## 5214 34 2628 3.5 1162050129
## 5215 34 2671 3.0 1162048836
## 5216 34 2762 3.0 1162050482
## 5217 34 2953 2.0 1162048979
## 5218 34 2959 4.0 1162049153
## 5219 34 3000 4.0 1163954620
## 5220 34 3052 2.5 1166464035
## 5221 34 3489 3.0 1168811503
## 5222 34 3617 1.5 1162050185
## 5223 34 3624 4.0 1166464079
## 5224 34 3717 4.5 1162048501
## 5225 34 3793 5.0 1162048832
## 5226 34 3948 3.0 1162050036
## 5227 34 3977 4.5 1162047944
## 5228 34 3996 5.0 1162049140
## 5229 34 3997 2.0 1162050228
## 5230 34 4226 4.5 1162049184
## 5231 34 4246 4.0 1162048053
## 5232 34 4306 3.5 1162048723
## 5233 34 4310 0.5 1162048162
## 5234 34 4367 4.5 1162048495
## 5235 34 4369 3.0 1162050120
## 5236 34 4446 5.0 1162050179
## 5237 34 4447 4.0 1162048991
## 5238 34 4643 4.0 1168811375
## 5239 34 4720 4.0 1162049097
## 5240 34 4874 1.0 1162050046
## 5241 34 4973 4.0 1162049117
## 5242 34 5146 3.0 1163954882
## 5243 34 5349 5.0 1162048858
## 5244 34 5378 4.0 1162048024
## 5245 34 5449 2.0 1162050159
## 5246 34 5459 2.0 1162048159
## 5247 34 5952 1.0 1162049047
## 5248 34 6242 3.5 1168811107
## 5249 34 6333 5.0 1162048745
## 5250 34 6378 4.5 1162050501
## 5251 34 6387 4.5 1166463791
## 5252 34 6539 5.0 1162047962
## 5253 34 6567 3.5 1166464142
## 5254 34 6618 5.0 1166463958
## 5255 34 6711 5.0 1162049178
## 5256 34 6721 4.5 1166463676
## 5257 34 6857 4.0 1163954715
## 5258 34 6874 5.0 1162048034
## 5259 34 6934 0.5 1162048208
## 5260 34 7090 4.5 1162049159
## 5261 34 7438 4.5 1162048087
## 5262 34 7451 4.5 1163954582
## 5263 34 8622 2.0 1163954952
## 5264 34 8636 5.0 1162048948
## 5265 34 8957 2.0 1162050052
## 5266 34 26606 4.5 1163954565
## 5267 34 27193 4.5 1163954693
## 5268 34 27728 3.0 1166463862
## 5269 34 27801 5.0 1166463947
## 5270 34 31184 3.0 1163954786
## 5271 34 31685 2.0 1166464153
## 5272 34 44974 4.5 1166463868
## 5273 34 45499 5.0 1162050637
## 5274 35 11 4.0 830939577
## 5275 35 21 5.0 830939505
## 5276 35 39 3.0 830939546
## 5277 35 50 5.0 830939598
## 5278 35 60 5.0 830939912
## 5279 35 62 5.0 830939748
## 5280 35 150 5.0 830939391
## 5281 35 185 5.0 830939521
## 5282 35 222 4.0 830939893
## 5283 35 231 3.0 830939488
## 5284 35 235 4.0 830939733
## 5285 35 236 4.0 830939695
## 5286 35 237 3.0 830939834
## 5287 35 252 4.0 830940246
## 5288 35 261 5.0 830939733
## 5289 35 266 2.0 830939546
## 5290 35 300 4.0 830939505
## 5291 35 316 3.0 830939438
## 5292 35 339 5.0 830939488
## 5293 35 342 4.0 830939941
## 5294 35 590 5.0 830940157
## 5295 35 592 4.0 830939391
## 5296 35 595 3.0 830939438
## 5297 36 25 2.5 1100803583
## 5298 36 315 0.5 1100803362
## 5299 36 318 4.0 1100804003
## 5300 36 544 3.0 1100803734
## 5301 36 548 3.0 1100803739
## 5302 36 552 2.0 1100803437
## 5303 36 904 3.5 1100803350
## 5304 36 908 3.5 1100803999
## 5305 36 919 1.5 1100803557
## 5306 36 996 2.5 1100803714
## 5307 36 1015 2.0 1100803711
## 5308 36 1086 3.5 1100803718
## 5309 36 1090 2.5 1100803399
## 5310 36 1094 1.5 1100803388
## 5311 36 1222 2.5 1100803585
## 5312 36 1234 4.0 1100803365
## 5313 36 1252 2.0 1100803384
## 5314 36 1262 4.0 1100803705
## 5315 36 1278 2.5 1100803373
## 5316 36 1358 2.5 1100803352
## 5317 36 1372 3.0 1100803549
## 5318 36 1376 2.0 1100803435
## 5319 36 1396 1.5 1100803431
## 5320 36 1485 0.5 1100803422
## 5321 36 1500 2.0 1100803341
## 5322 36 1597 2.0 1100803701
## 5323 36 1617 4.5 1100803546
## 5324 36 1704 3.0 1100803579
## 5325 36 1892 3.5 1100803720
## 5326 36 2012 2.0 1100803337
## 5327 36 2082 2.0 1100803686
## 5328 36 2194 2.5 1100803540
## 5329 36 2269 3.0 1100803893
## 5330 36 2302 1.5 1100803424
## 5331 36 2359 4.5 1100803669
## 5332 36 2376 4.0 1100803664
## 5333 36 2406 3.0 1100803401
## 5334 36 2581 2.5 1100803667
## 5335 36 2735 2.0 1100803683
## 5336 36 2794 3.0 1100803678
## 5337 36 3066 3.5 1100803882
## 5338 36 3270 1.5 1100803853
## 5339 36 3308 2.0 1100803868
## 5340 36 3347 4.5 1100803989
## 5341 36 3362 2.5 1100803617
## 5342 36 3363 4.5 1100803627
## 5343 36 3766 2.0 1100803862
## 5344 36 3798 3.0 1100803648
## 5345 36 3861 2.0 1100803848
## 5346 36 3897 4.5 1100803381
## 5347 36 4025 2.0 1100803619
## 5348 36 4085 2.0 1100803624
## 5349 36 4220 2.0 1100803825
## 5350 36 4995 1.0 1100803560
## 5351 36 5093 2.5 1100803813
## 5352 36 5171 3.0 1100803810
## 5353 36 5312 4.0 1100803807
## 5354 36 5464 1.5 1100803567
## 5355 36 5956 2.0 1100803576
## 5356 36 6662 3.0 1100803749
## 5357 37 150 5.0 845239388
## 5358 37 153 3.0 845239426
## 5359 37 165 5.0 845239426
## 5360 37 231 5.0 845239442
## 5361 37 292 4.0 845239483
## 5362 37 296 5.0 845239388
## 5363 37 316 5.0 845239442
## 5364 37 318 4.0 845239483
## 5365 37 329 3.0 845239483
## 5366 37 344 5.0 845239426
## 5367 37 349 4.0 845239442
## 5368 37 356 4.0 845239483
## 5369 37 380 2.0 845239388
## 5370 37 457 4.0 845239442
## 5371 37 590 4.0 845239388
## 5372 37 592 3.0 845239387
## 5373 37 593 5.0 845239426
## 5374 37 661 3.0 845926982
## 5375 37 671 5.0 845239506
## 5376 37 1061 5.0 845927014
## 5377 37 1073 4.0 845239522
## 5378 38 11 5.0 841341447
## 5379 38 17 3.0 841341494
## 5380 38 21 3.0 841341362
## 5381 38 39 3.0 841341384
## 5382 38 48 3.0 841341570
## 5383 38 50 5.0 841341362
## 5384 38 62 3.0 841341570
## 5385 38 105 3.0 841341618
## 5386 38 110 5.0 841341295
## 5387 38 150 4.0 841341161
## 5388 38 151 5.0 841341494
## 5389 38 153 3.0 841341195
## 5390 38 161 4.0 841341249
## 5391 38 163 1.0 841341715
## 5392 38 168 4.0 841341549
## 5393 38 193 1.0 841341598
## 5394 38 203 3.0 841341750
## 5395 38 208 1.0 841341271
## 5396 38 222 3.0 841341785
## 5397 38 223 5.0 841341650
## 5398 38 224 4.0 841341598
## 5399 38 235 4.0 841341515
## 5400 38 237 3.0 841341680
## 5401 38 246 5.0 841341715
## 5402 38 252 2.0 841341494
## 5403 38 253 1.0 841341271
## 5404 38 266 1.0 841341405
## 5405 38 273 2.0 841341680
## 5406 38 282 3.0 841341447
## 5407 38 292 3.0 841341248
## 5408 38 296 3.0 841341163
## 5409 38 300 4.0 841341323
## 5410 38 317 3.0 841341362
## 5411 38 318 5.0 841341249
## 5412 38 329 3.0 841341249
## 5413 38 337 3.0 841341468
## 5414 38 339 3.0 841341271
## 5415 38 342 3.0 841341731
## 5416 38 350 4.0 841341428
## 5417 38 355 3.0 841341650
## 5418 38 356 3.0 841341271
## 5419 38 357 5.0 841341428
## 5420 38 364 2.0 841341323
## 5421 38 367 2.0 841341341
## 5422 38 368 4.0 841341598
## 5423 38 376 4.0 841341763
## 5424 38 377 3.0 841341341
## 5425 38 380 3.0 841341163
## 5426 38 410 3.0 841341323
## 5427 38 432 3.0 841341428
## 5428 38 434 2.0 841341249
## 5429 38 435 2.0 841341405
## 5430 38 440 3.0 841341428
## 5431 38 454 4.0 841341295
## 5432 38 457 5.0 841341220
## 5433 38 466 3.0 841341698
## 5434 38 468 3.0 841341715
## 5435 38 480 3.0 841341296
## 5436 38 485 3.0 841341650
## 5437 38 497 5.0 841341680
## 5438 38 500 3.0 841341362
## 5439 38 508 3.0 841341532
## 5440 38 509 2.0 841341467
## 5441 38 527 5.0 841341405
## 5442 38 539 3.0 841341405
## 5443 38 551 4.0 841341549
## 5444 38 552 3.0 841341732
## 5445 38 555 2.0 841341570
## 5446 38 585 3.0 841341570
## 5447 38 586 3.0 841341384
## 5448 38 588 3.0 841341195
## 5449 38 590 4.0 841341161
## 5450 38 592 4.0 841341160
## 5451 38 593 3.0 841341220
## 5452 38 595 4.0 841341220
## 5453 38 597 2.0 841341384
## 5454 38 648 4.0 841341618
## 5455 38 736 2.0 841341598
## 5456 39 32 3.0 974787510
## 5457 39 47 3.0 974789632
## 5458 39 50 5.0 974788030
## 5459 39 260 5.0 974787510
## 5460 39 296 5.0 974789540
## 5461 39 364 4.0 974788976
## 5462 39 457 4.0 974789432
## 5463 39 588 4.0 974788841
## 5464 39 589 4.0 974788030
## 5465 39 592 4.0 974789632
## 5466 39 593 5.0 974788030
## 5467 39 594 3.0 974788841
## 5468 39 596 3.0 974788629
## 5469 39 608 5.0 974788126
## 5470 39 610 4.0 974789035
## 5471 39 745 4.0 974788030
## 5472 39 858 4.0 974789111
## 5473 39 908 3.0 974787139
## 5474 39 924 2.0 974787586
## 5475 39 1022 3.0 974789035
## 5476 39 1025 4.0 974788976
## 5477 39 1027 4.0 974787064
## 5478 39 1029 3.0 974789035
## 5479 39 1032 3.0 974789035
## 5480 39 1036 4.0 974788126
## 5481 39 1073 3.0 974789854
## 5482 39 1089 5.0 974788071
## 5483 39 1097 4.0 974787586
## 5484 39 1127 4.0 974789432
## 5485 39 1136 4.0 974788244
## 5486 39 1196 5.0 974789111
## 5487 39 1197 5.0 974788384
## 5488 39 1198 4.0 974789111
## 5489 39 1200 5.0 974787586
## 5490 39 1210 5.0 974787586
## 5491 39 1213 4.0 974789540
## 5492 39 1214 5.0 974787510
## 5493 39 1215 5.0 974789432
## 5494 39 1219 5.0 974788126
## 5495 39 1221 5.0 974789111
## 5496 39 1248 5.0 974788071
## 5497 39 1258 5.0 974787836
## 5498 39 1270 4.0 974787510
## 5499 39 1276 4.0 974788339
## 5500 39 1282 1.0 974788629
## 5501 39 1287 4.0 974789232
## 5502 39 1291 5.0 974789327
## 5503 39 1387 5.0 974787836
## 5504 39 1394 4.0 974788442
## 5505 39 1396 3.0 974787637
## 5506 39 1408 4.0 974789432
## 5507 39 1500 4.0 974789727
## 5508 39 1527 2.0 974787510
## 5509 39 1584 5.0 974787637
## 5510 39 1610 4.0 974788126
## 5511 39 1617 2.0 974788030
## 5512 39 1729 5.0 974789727
## 5513 39 1862 2.0 974787293
## 5514 39 1907 2.0 974788976
## 5515 39 1921 5.0 974787586
## 5516 39 1954 2.0 974789327
## 5517 39 1967 4.0 974789854
## 5518 39 1968 5.0 974788384
## 5519 39 1994 4.0 974787893
## 5520 39 2018 3.0 974788629
## 5521 39 2078 3.0 974788976
## 5522 39 2080 3.0 974788841
## 5523 39 2081 2.0 974789035
## 5524 39 2085 3.0 974788841
## 5525 39 2118 5.0 974787893
## 5526 39 2137 1.0 974788976
## 5527 39 2174 3.0 974789854
## 5528 39 2342 5.0 974788538
## 5529 39 2366 5.0 974787893
## 5530 39 2391 5.0 974789727
## 5531 39 2459 3.0 974787893
## 5532 39 2529 4.0 974787510
## 5533 39 2571 5.0 974787586
## 5534 39 2580 5.0 974789690
## 5535 39 2599 5.0 974788442
## 5536 39 2692 5.0 974789111
## 5537 39 2700 5.0 974788709
## 5538 39 2762 5.0 974788030
## 5539 39 2858 5.0 974788291
## 5540 39 2912 4.0 974789632
## 5541 39 2947 3.0 974789327
## 5542 39 2987 4.0 974788841
## 5543 39 2997 5.0 974788291
## 5544 39 3000 5.0 974789174
## 5545 39 3019 5.0 974787139
## 5546 39 3034 3.0 974787064
## 5547 39 3178 3.0 974789375
## 5548 39 3213 5.0 974788976
## 5549 39 3328 5.0 974789632
## 5550 39 3362 5.0 974788339
## 5551 39 3418 2.0 974789327
## 5552 39 3481 5.0 974788538
## 5553 39 3745 4.0 974789035
## 5554 39 3793 4.0 974787637
## 5555 39 3911 5.0 974788481
## 5556 40 1 5.0 832058959
## 5557 40 17 5.0 832059273
## 5558 40 19 2.0 832059137
## 5559 40 21 4.0 832059053
## 5560 40 26 4.0 832059937
## 5561 40 31 4.0 832059371
## 5562 40 34 5.0 832059080
## 5563 40 44 3.0 832059393
## 5564 40 46 4.0 832059892
## 5565 40 48 2.0 832059371
## 5566 40 60 4.0 832059509
## 5567 40 62 5.0 832059339
## 5568 40 82 5.0 832060151
## 5569 40 104 1.0 832059697
## 5570 40 107 4.0 832059716
## 5571 40 110 4.0 832059053
## 5572 40 111 5.0 832059116
## 5573 40 121 4.0 832060318
## 5574 40 126 3.0 832060287
## 5575 40 146 3.0 832060059
## 5576 40 150 5.0 832058854
## 5577 40 151 4.0 832059189
## 5578 40 153 3.0 832058897
## 5579 40 158 4.0 832059315
## 5580 40 159 3.0 832059770
## 5581 40 163 5.0 832059474
## 5582 40 165 4.0 832058897
## 5583 40 168 2.0 832059315
## 5584 40 172 4.0 832059339
## 5585 40 173 4.0 832059273
## 5586 40 186 3.0 832059273
## 5587 40 199 3.0 832060204
## 5588 40 203 5.0 832059474
## 5589 40 205 4.0 832060230
## 5590 40 208 2.0 832059012
## 5591 40 216 1.0 832059493
## 5592 40 218 4.0 832059458
## 5593 40 223 5.0 832059371
## 5594 40 224 4.0 832059339
## 5595 40 228 3.0 832060190
## 5596 40 230 5.0 832059458
## 5597 40 231 1.0 832058959
## 5598 40 235 4.0 832059293
## 5599 40 236 4.0 832059137
## 5600 40 252 4.0 832059273
## 5601 40 256 2.0 832059371
## 5602 40 265 5.0 832059293
## 5603 40 266 4.0 832059080
## 5604 40 267 3.0 832059622
## 5605 40 272 5.0 832059417
## 5606 40 273 1.0 832059458
## 5607 40 281 5.0 832059534
## 5608 40 292 3.0 832059012
## 5609 40 296 5.0 832058854
## 5610 40 300 5.0 832059012
## 5611 40 306 5.0 832059622
## 5612 40 307 5.0 832059644
## 5613 40 308 5.0 832059658
## 5614 40 312 3.0 832059952
## 5615 40 314 5.0 832059734
## 5616 40 316 3.0 832058930
## 5617 40 317 4.0 832059080
## 5618 40 318 5.0 832058930
## 5619 40 327 4.0 832059585
## 5620 40 329 3.0 832058930
## 5621 40 330 3.0 832059921
## 5622 40 337 5.0 832059189
## 5623 40 339 3.0 832058959
## 5624 40 344 4.0 832058897
## 5625 40 350 5.0 832059787
## 5626 40 351 4.0 832059585
## 5627 40 353 3.0 832059840
## 5628 40 362 4.0 832060128
## 5629 40 364 5.0 832059644
## 5630 40 367 4.0 832059676
## 5631 40 371 4.0 832060059
## 5632 40 376 3.0 832060011
## 5633 40 380 3.0 832058854
## 5634 40 383 3.0 832060108
## 5635 40 410 3.0 832059053
## 5636 40 421 3.0 832059863
## 5637 40 431 5.0 832059493
## 5638 40 432 3.0 832059116
## 5639 40 434 3.0 832058959
## 5640 40 435 3.0 832059189
## 5641 40 440 4.0 832059716
## 5642 40 454 4.0 832059644
## 5643 40 457 3.0 832059534
## 5644 40 491 5.0 832060059
## 5645 40 509 3.0 832059716
## 5646 40 514 5.0 832060128
## 5647 40 515 3.0 832059892
## 5648 40 551 3.0 832059770
## 5649 40 553 5.0 832059273
## 5650 40 585 3.0 832059863
## 5651 40 588 4.0 832058897
## 5652 40 590 4.0 832058854
## 5653 40 592 4.0 832058854
## 5654 40 595 3.0 832058930
## 5655 40 609 4.0 832060059
## 5656 40 610 4.0 832059622
## 5657 40 616 3.0 832059734
## 5658 40 685 5.0 832060442
## 5659 41 47 3.5 1458939486
## 5660 41 50 3.0 1459367479
## 5661 41 111 2.0 1459367437
## 5662 41 215 2.0 1458939048
## 5663 41 288 3.0 1459367592
## 5664 41 293 4.0 1458933717
## 5665 41 296 5.0 1458933695
## 5666 41 356 2.0 1459367500
## 5667 41 357 4.0 1459368628
## 5668 41 380 0.5 1459367498
## 5669 41 541 2.0 1459367431
## 5670 41 593 4.0 1458933734
## 5671 41 595 4.0 1459367521
## 5672 41 597 3.0 1458938948
## 5673 41 608 4.0 1458939466
## 5674 41 750 2.0 1459367433
## 5675 41 778 4.0 1458933752
## 5676 41 920 3.0 1458939112
## 5677 41 924 2.0 1459367435
## 5678 41 1088 1.5 1458939142
## 5679 41 1089 2.0 1459367458
## 5680 41 1097 3.0 1459367688
## 5681 41 1200 2.0 1459367478
## 5682 41 1206 5.0 1458939506
## 5683 41 1208 2.0 1459367446
## 5684 41 1213 2.0 1459367440
## 5685 41 1214 0.5 1459367443
## 5686 41 1219 4.0 1459367455
## 5687 41 1222 2.0 1459367467
## 5688 41 1225 4.5 1459367677
## 5689 41 1258 5.0 1458939478
## 5690 41 1259 5.0 1459367673
## 5691 41 1265 3.0 1459367661
## 5692 41 1307 3.5 1458938964
## 5693 41 1485 3.0 1459368587
## 5694 41 1569 2.0 1458939387
## 5695 41 1584 2.0 1459367550
## 5696 41 1641 2.0 1458939146
## 5697 41 1682 3.0 1458938835
## 5698 41 1704 3.0 1459367527
## 5699 41 1721 5.0 1458939738
## 5700 41 1732 4.0 1458938846
## 5701 41 1777 2.5 1458939104
## 5702 41 1784 4.0 1458938919
## 5703 41 1884 3.0 1458938941
## 5704 41 1961 4.0 1459367625
## 5705 41 2028 2.0 1459367469
## 5706 41 2115 2.0 1459367648
## 5707 41 2160 5.0 1459368424
## 5708 41 2268 2.5 1459367652
## 5709 41 2324 4.0 1458933701
## 5710 41 2329 4.0 1458933698
## 5711 41 2571 2.0 1459367665
## 5712 41 2671 3.0 1458938961
## 5713 41 2692 4.0 1458939534
## 5714 41 2712 5.0 1459368540
## 5715 41 2724 2.0 1458939383
## 5716 41 2858 4.0 1458933687
## 5717 41 2959 4.0 1458933677
## 5718 41 3081 3.0 1458938954
## 5719 41 3160 4.0 1459367626
## 5720 41 3285 4.0 1458940228
## 5721 41 3301 2.5 1459367748
## 5722 41 3408 3.0 1458938915
## 5723 41 3578 4.0 1458939542
## 5724 41 3916 0.5 1459367733
## 5725 41 3948 5.0 1459367646
## 5726 41 3949 4.0 1458933711
## 5727 41 3968 4.0 1459368601
## 5728 41 3996 3.5 1459367473
## 5729 41 4011 3.0 1459367471
## 5730 41 4014 3.5 1459368459
## 5731 41 4022 5.0 1459367696
## 5732 41 4027 4.0 1459368579
## 5733 41 4034 3.5 1459367560
## 5734 41 4226 4.0 1458942816
## 5735 41 4235 4.0 1458943777
## 5736 41 4246 4.0 1458940118
## 5737 41 4262 2.0 1459367450
## 5738 41 4306 3.0 1458939651
## 5739 41 4720 3.5 1458943578
## 5740 41 4816 5.0 1459367618
## 5741 41 4848 5.0 1459368429
## 5742 41 4878 5.0 1459367735
## 5743 41 4890 3.0 1458940253
## 5744 41 4963 3.0 1458939699
## 5745 41 4973 4.0 1458933682
## 5746 41 4979 2.5 1458938813
## 5747 41 5014 3.0 1458939178
## 5748 41 5377 4.0 1458938982
## 5749 41 5418 2.0 1459368584
## 5750 41 5449 3.0 1459367704
## 5751 41 5618 3.5 1458939566
## 5752 41 5816 1.0 1458939735
## 5753 41 5952 2.0 1459367614
## 5754 41 5989 4.0 1458939704
## 5755 41 5995 4.0 1458939707
## 5756 41 6016 4.0 1459367510
## 5757 41 6287 5.0 1459369130
## 5758 41 6373 4.0 1459368556
## 5759 41 6377 4.0 1459367565
## 5760 41 6539 3.0 1458939642
## 5761 41 6708 3.0 1459367590
## 5762 41 6711 3.5 1458939575
## 5763 41 6763 5.0 1459369045
## 5764 41 6870 3.0 1459367573
## 5765 41 6874 5.0 1458939495
## 5766 41 6953 3.5 1459367542
## 5767 41 7149 4.5 1459368679
## 5768 41 7173 5.0 1459368536
## 5769 41 7293 5.0 1459367700
## 5770 41 7361 4.0 1458933684
## 5771 41 7438 5.0 1458939502
## 5772 41 7444 2.5 1458940235
## 5773 41 7445 2.0 1459367546
## 5774 41 8641 3.5 1459367529
## 5775 41 8874 2.0 1459368422
## 5776 41 8949 4.0 1459367644
## 5777 41 8961 3.0 1459367596
## 5778 41 8981 4.0 1458943785
## 5779 41 30707 4.0 1458942832
## 5780 41 30812 4.0 1459367588
## 5781 41 30825 3.0 1458940181
## 5782 41 31685 3.0 1459367709
## 5783 41 33166 4.0 1459367568
## 5784 41 34162 4.0 1459367582
## 5785 41 34319 3.0 1458943268
## 5786 41 35836 4.0 1458940071
## 5787 41 37729 3.5 1458940164
## 5788 41 41285 4.0 1458940241
## 5789 41 46578 4.0 1458933754
## 5790 41 46723 4.0 1459368582
## 5791 41 47099 3.5 1459367548
## 5792 41 48394 3.0 1458933746
## 5793 41 48516 3.5 1459367539
## 5794 41 48780 3.0 1458939668
## 5795 41 49286 3.0 1458939072
## 5796 41 49530 4.0 1459367658
## 5797 41 50872 4.0 1458939664
## 5798 41 51662 2.0 1459368610
## 5799 41 52973 3.5 1458940187
## 5800 41 53519 0.5 1459367504
## 5801 41 54001 0.5 1458939744
## 5802 41 54272 4.0 1459367571
## 5803 41 54286 3.5 1458939661
## 5804 41 55247 4.0 1458938862
## 5805 41 55280 4.0 1458939161
## 5806 41 55765 2.0 1459367707
## 5807 41 55820 5.0 1459368455
## 5808 41 56367 2.5 1458939544
## 5809 41 56941 3.5 1458943261
## 5810 41 57669 4.5 1459367544
## 5811 41 58998 4.0 1459367515
## 5812 41 59725 3.0 1458939414
## 5813 41 59900 2.5 1458995086
## 5814 41 60950 3.0 1458939033
## 5815 41 61132 3.0 1459367553
## 5816 41 61240 4.0 1458938969
## 5817 41 61323 3.0 1458938898
## 5818 41 64839 1.0 1459367563
## 5819 41 64969 3.0 1458938927
## 5820 41 65230 3.5 1458939371
## 5821 41 66097 4.0 1459368463
## 5822 41 67255 4.0 1458943586
## 5823 41 68157 4.0 1459367518
## 5824 41 68954 4.0 1458938821
## 5825 41 69122 3.0 1459367594
## 5826 41 69757 3.5 1458938869
## 5827 41 70293 3.0 1458939130
## 5828 41 71033 4.0 1459367490
## 5829 41 71899 4.0 1458939016
## 5830 41 79132 0.5 1459367686
## 5831 41 80906 2.0 1459367495
## 5832 41 81591 3.5 1458939555
## 5833 41 81845 3.0 1459367496
## 5834 41 85774 1.0 1459367512
## 5835 41 86781 4.0 1459367523
## 5836 41 86882 3.5 1458940113
## 5837 41 87869 5.0 1459367663
## 5838 41 88129 3.5 1459368433
## 5839 41 88163 4.0 1458942860
## 5840 41 89759 4.0 1458939149
## 5841 41 91529 1.0 1458939520
## 5842 41 92259 4.0 1458933680
## 5843 41 93840 2.0 1458943554
## 5844 41 96829 4.0 1458943201
## 5845 41 97921 4.0 1458939770
## 5846 41 99114 4.0 1458933737
## 5847 41 100714 1.5 1458940266
## 5848 41 101525 3.0 1459368708
## 5849 41 102407 3.0 1458940195
## 5850 41 103980 3.0 1458939124
## 5851 41 104879 5.0 1459368419
## 5852 41 106918 4.0 1458943677
## 5853 41 106920 3.0 1458938841
## 5854 41 109374 3.5 1458939514
## 5855 41 111659 1.0 1458940199
## 5856 41 111921 4.0 1458938979
## 5857 41 112183 3.0 1459367616
## 5858 41 112290 3.5 1458943362
## 5859 41 112552 4.0 1458939648
## 5860 41 112556 3.0 1458939634
## 5861 41 115149 0.5 1458943601
## 5862 41 115569 4.0 1458939768
## 5863 41 115713 0.5 1459367667
## 5864 41 116897 5.0 1459367741
## 5865 41 118900 4.0 1458995083
## 5866 41 122882 2.5 1458939623
## 5867 41 122904 0.5 1459367333
## 5868 41 125916 0.5 1458940245
## 5869 41 128360 4.0 1459367507
## 5870 41 135887 3.0 1458943698
## 5871 41 136864 0.5 1459367339
## 5872 41 138036 2.0 1459367656
## 5873 41 139385 4.0 1458943547
## 5874 41 140110 3.5 1458943809
## 5875 41 150548 1.0 1459367331
## 5876 42 3 4.0 996221045
## 5877 42 7 3.0 996220162
## 5878 42 10 5.0 996215205
## 5879 42 11 5.0 996219314
## 5880 42 16 5.0 996218017
## 5881 42 19 2.0 996256258
## 5882 42 21 4.0 996219086
## 5883 42 22 5.0 996219167
## 5884 42 47 4.0 996218105
## 5885 42 50 5.0 996217838
## 5886 42 86 4.0 996220615
## 5887 42 95 3.0 996214545
## 5888 42 104 4.0 996219699
## 5889 42 110 4.0 996217933
## 5890 42 122 3.0 996221451
## 5891 42 135 3.0 996256102
## 5892 42 141 1.0 996220726
## 5893 42 144 4.0 996220026
## 5894 42 150 5.0 996217989
## 5895 42 153 2.0 996255744
## 5896 42 161 3.0 996218708
## 5897 42 163 3.0 996219086
## 5898 42 165 2.0 996216316
## 5899 42 168 3.0 996220383
## 5900 42 173 2.0 996221544
## 5901 42 185 4.0 996220893
## 5902 42 186 4.0 996220852
## 5903 42 193 3.0 996256573
## 5904 42 195 3.0 996219752
## 5905 42 223 5.0 996218735
## 5906 42 225 4.0 996219167
## 5907 42 227 4.0 996221233
## 5908 42 231 4.0 996220872
## 5909 42 234 4.0 996256613
## 5910 42 236 3.0 996220615
## 5911 42 252 4.0 996220225
## 5912 42 253 5.0 996215413
## 5913 42 257 3.0 996215225
## 5914 42 260 5.0 996261559
## 5915 42 276 4.0 996221323
## 5916 42 288 5.0 996220487
## 5917 42 292 3.0 996219167
## 5918 42 296 5.0 996214107
## 5919 42 303 2.0 996221407
## 5920 42 316 2.0 996219275
## 5921 42 318 4.0 996217804
## 5922 42 333 5.0 996214446
## 5923 42 344 2.0 996220343
## 5924 42 349 4.0 996218871
## 5925 42 350 4.0 996218988
## 5926 42 353 2.0 996220093
## 5927 42 356 5.0 996218222
## 5928 42 360 3.0 996221517
## 5929 42 361 3.0 996220309
## 5930 42 364 4.0 996218379
## 5931 42 368 3.0 996219212
## 5932 42 372 2.0 996219774
## 5933 42 379 2.0 996221323
## 5934 42 380 3.0 996219248
## 5935 42 381 4.0 996221208
## 5936 42 383 4.0 996221233
## 5937 42 408 4.0 996255745
## 5938 42 410 2.0 996220754
## 5939 42 413 2.0 996221492
## 5940 42 414 2.0 996219191
## 5941 42 415 2.0 996215738
## 5942 42 418 3.0 996256649
## 5943 42 420 3.0 996215096
## 5944 42 424 3.0 996221407
## 5945 42 432 3.0 996214645
## 5946 42 433 4.0 996221323
## 5947 42 434 4.0 996221164
## 5948 42 436 4.0 996220726
## 5949 42 442 4.0 996221407
## 5950 42 457 4.0 996216038
## 5951 42 459 3.0 996220584
## 5952 42 466 2.0 996221118
## 5953 42 468 4.0 996220026
## 5954 42 485 3.0 996256042
## 5955 42 486 3.0 996220281
## 5956 42 490 3.0 996220133
## 5957 42 507 4.0 996220661
## 5958 42 509 4.0 996218171
## 5959 42 520 2.0 996215153
## 5960 42 524 3.0 996218906
## 5961 42 527 4.0 996217804
## 5962 42 540 4.0 996256573
## 5963 42 548 4.0 996220852
## 5964 42 550 5.0 996216357
## 5965 42 552 4.0 996220433
## 5966 42 553 5.0 996218080
## 5967 42 555 5.0 996218222
## 5968 42 586 2.0 996219248
## 5969 42 590 4.0 996218404
## 5970 42 592 3.0 996258232
## 5971 42 593 5.0 996217838
## 5972 42 597 5.0 996218906
## 5973 42 612 2.0 996221474
## 5974 42 628 2.0 996218239
## 5975 42 639 3.0 996221269
## 5976 42 647 2.0 996216210
## 5977 42 648 5.0 996219248
## 5978 42 708 4.0 996218960
## 5979 42 733 2.0 996218488
## 5980 42 780 2.0 996220093
## 5981 42 782 3.0 996256258
## 5982 42 784 2.0 996221451
## 5983 42 785 3.0 996219440
## 5984 42 788 4.0 996221072
## 5985 42 805 5.0 996218329
## 5986 42 858 5.0 996213544
## 5987 42 880 2.0 996256386
## 5988 42 912 5.0 996261986
## 5989 42 924 5.0 996216038
## 5990 42 996 2.0 996221269
## 5991 42 1020 2.0 996220248
## 5992 42 1021 2.0 996221407
## 5993 42 1027 4.0 996215153
## 5994 42 1036 4.0 996216013
## 5995 42 1042 2.0 996216279
## 5996 42 1060 5.0 996218466
## 5997 42 1061 4.0 996218442
## 5998 42 1079 3.0 996258093
## 5999 42 1088 3.0 996259001
## 6000 42 1089 5.0 996217838
## 6001 42 1090 5.0 996212773
## 6002 42 1093 5.0 996219752
## 6003 42 1094 1.0 996218443
## 6004 42 1097 4.0 996212773
## 6005 42 1100 4.0 996220701
## 6006 42 1101 5.0 996213578
## 6007 42 1124 5.0 996258339
## 6008 42 1127 4.0 996258299
## 6009 42 1191 4.0 996220487
## 6010 42 1196 3.0 996215831
## 6011 42 1197 5.0 996258052
## 6012 42 1210 5.0 996258118
## 6013 42 1213 5.0 996214157
## 6014 42 1221 5.0 996213544
## 6015 42 1222 5.0 996216146
## 6016 42 1231 5.0 996258009
## 6017 42 1245 5.0 996217857
## 6018 42 1246 5.0 996214893
## 6019 42 1265 5.0 996218017
## 6020 42 1266 3.0 996218222
## 6021 42 1270 4.0 996258052
## 6022 42 1285 4.0 996258536
## 6023 42 1302 4.0 996258272
## 6024 42 1307 4.0 996258165
## 6025 42 1339 3.0 996220248
## 6026 42 1343 3.0 996218222
## 6027 42 1370 2.0 996216255
## 6028 42 1373 4.0 996260152
## 6029 42 1374 4.0 996258272
## 6030 42 1378 5.0 996258510
## 6031 42 1379 5.0 996221012
## 6032 42 1391 2.0 996221269
## 6033 42 1393 4.0 996218988
## 6034 42 1431 2.0 996215096
## 6035 42 1453 2.0 996256206
## 6036 42 1457 4.0 996218934
## 6037 42 1461 3.0 996256069
## 6038 42 1466 4.0 996218645
## 6039 42 1468 2.0 996220933
## 6040 42 1474 2.0 996256020
## 6041 42 1476 4.0 996219131
## 6042 42 1479 4.0 996214583
## 6043 42 1485 4.0 996214731
## 6044 42 1488 4.0 996221045
## 6045 42 1499 2.0 996256339
## 6046 42 1500 5.0 996218348
## 6047 42 1513 3.0 996262592
## 6048 42 1517 5.0 996214804
## 6049 42 1552 3.0 996221045
## 6050 42 1573 4.0 996218871
## 6051 42 1580 4.0 996214503
## 6052 42 1597 4.0 996219414
## 6053 42 1608 4.0 996220054
## 6054 42 1610 4.0 996218063
## 6055 42 1614 4.0 996220823
## 6056 42 1617 2.0 996218105
## 6057 42 1619 3.0 996219752
## 6058 42 1625 4.0 996218017
## 6059 42 1641 3.0 996218735
## 6060 42 1644 2.0 996256102
## 6061 42 1645 4.0 996219340
## 6062 42 1653 5.0 996218645
## 6063 42 1663 4.0 996258272
## 6064 42 1667 2.0 996221092
## 6065 42 1672 4.0 996219086
## 6066 42 1673 5.0 996218171
## 6067 42 1674 3.0 996258317
## 6068 42 1682 3.0 996218934
## 6069 42 1687 3.0 996220661
## 6070 42 1689 1.0 996215883
## 6071 42 1704 5.0 996214937
## 6072 42 1722 5.0 996219061
## 6073 42 1726 2.0 996221012
## 6074 42 1729 4.0 996218960
## 6075 42 1784 5.0 996218988
## 6076 42 1805 4.0 996218816
## 6077 42 1806 2.0 996219275
## 6078 42 1810 3.0 996220026
## 6079 42 1831 2.0 996214323
## 6080 42 1835 4.0 996220726
## 6081 42 1876 4.0 996220054
## 6082 42 1883 2.0 996219167
## 6083 42 1892 3.0 996220343
## 6084 42 1894 4.0 996214081
## 6085 42 1918 2.0 996214288
## 6086 42 1923 4.0 996218709
## 6087 42 1961 4.0 996258052
## 6088 42 1968 4.0 996258201
## 6089 42 1975 2.0 996260407
## 6090 42 1976 2.0 996260489
## 6091 42 2000 5.0 996214288
## 6092 42 2001 4.0 996214288
## 6093 42 2002 3.0 996214288
## 6094 42 2011 4.0 996258769
## 6095 42 2023 5.0 996213544
## 6096 42 2028 5.0 996217964
## 6097 42 2081 5.0 996258536
## 6098 42 2094 3.0 996214830
## 6099 42 2100 4.0 996258715
## 6100 42 2105 2.0 996259211
## 6101 42 2110 4.0 996259059
## 6102 42 2115 4.0 996258201
## 6103 42 2144 3.0 996258646
## 6104 42 2146 4.0 996258824
## 6105 42 2155 3.0 996215096
## 6106 42 2169 2.0 996256228
## 6107 42 2194 4.0 996258165
## 6108 42 2236 3.0 996218404
## 6109 42 2263 4.0 996258924
## 6110 42 2268 4.0 996216177
## 6111 42 2278 5.0 996219131
## 6112 42 2294 3.0 996218757
## 6113 42 2297 4.0 996221323
## 6114 42 2302 4.0 996218443
## 6115 42 2306 3.0 996256541
## 6116 42 2311 4.0 996259554
## 6117 42 2329 5.0 996217964
## 6118 42 2335 4.0 996221072
## 6119 42 2352 4.0 996258165
## 6120 42 2353 2.0 996219131
## 6121 42 2369 2.0 996262268
## 6122 42 2371 5.0 996258536
## 6123 42 2372 5.0 996260113
## 6124 42 2375 3.0 996259605
## 6125 42 2376 5.0 996259254
## 6126 42 2404 2.0 996260446
## 6127 42 2406 3.0 996258510
## 6128 42 2407 4.0 996258715
## 6129 42 2416 3.0 996259605
## 6130 42 2420 3.0 996258676
## 6131 42 2421 2.0 996216406
## 6132 42 2423 5.0 996258563
## 6133 42 2424 4.0 996220823
## 6134 42 2427 4.0 996219440
## 6135 42 2433 3.0 996220225
## 6136 42 2478 5.0 996259254
## 6137 42 2490 4.0 996219699
## 6138 42 2492 1.0 996220790
## 6139 42 2497 4.0 996221544
## 6140 42 2500 2.0 996221208
## 6141 42 2502 5.0 996219191
## 6142 42 2505 4.0 996255934
## 6143 42 2539 4.0 996219389
## 6144 42 2541 5.0 996262242
## 6145 42 2568 4.0 996256809
## 6146 42 2571 5.0 996214210
## 6147 42 2574 3.0 996256541
## 6148 42 2580 4.0 996262349
## 6149 42 2581 3.0 996219008
## 6150 42 2598 4.0 996221045
## 6151 42 2605 4.0 996220405
## 6152 42 2628 3.0 996220790
## 6153 42 2641 2.0 996216337
## 6154 42 2671 4.0 996216229
## 6155 42 2683 4.0 996214804
## 6156 42 2688 3.0 996220913
## 6157 42 2694 4.0 996262184
## 6158 42 2700 4.0 996218871
## 6159 42 2702 4.0 996213977
## 6160 42 2706 5.0 996220196
## 6161 42 2707 4.0 996262104
## 6162 42 2712 5.0 996216316
## 6163 42 2713 3.0 996262416
## 6164 42 2716 3.0 996257992
## 6165 42 2722 3.0 996262243
## 6166 42 2724 3.0 996262592
## 6167 42 2735 4.0 996260113
## 6168 42 2746 3.0 996258769
## 6169 42 2763 5.0 996214184
## 6170 42 2770 2.0 996220754
## 6171 42 2771 4.0 996262184
## 6172 42 2791 5.0 996258232
## 6173 42 2795 4.0 996258339
## 6174 42 2796 4.0 996259372
## 6175 42 2804 4.0 996215785
## 6176 42 2805 4.0 996262478
## 6177 42 2827 3.0 996262104
## 6178 42 2861 4.0 996262322
## 6179 42 2871 5.0 996213931
## 6180 42 2875 3.0 996220661
## 6181 42 2890 4.0 996218615
## 6182 42 2906 4.0 996256228
## 6183 42 2908 3.0 996217989
## 6184 42 2915 4.0 996258468
## 6185 42 2918 4.0 996258118
## 6186 42 2959 3.0 996217838
## 6187 42 2968 4.0 996258272
## 6188 42 2987 4.0 996262677
## 6189 42 2989 5.0 996258769
## 6190 42 2990 5.0 996258902
## 6191 42 2997 4.0 996261752
## 6192 42 3005 3.0 996262184
## 6193 42 3033 4.0 996212624
## 6194 42 3052 3.0 996216117
## 6195 42 3082 5.0 996214009
## 6196 42 3098 4.0 996258272
## 6197 42 3100 5.0 996218785
## 6198 42 3101 3.0 996215831
## 6199 42 3104 3.0 996258581
## 6200 42 3120 4.0 996256020
## 6201 42 3142 4.0 996259211
## 6202 42 3146 3.0 996221653
## 6203 42 3173 4.0 996220281
## 6204 42 3176 4.0 996220196
## 6205 42 3177 2.0 996216613
## 6206 42 3186 4.0 996219899
## 6207 42 3208 2.0 996220162
## 6208 42 3210 4.0 996258623
## 6209 42 3247 2.0 996219026
## 6210 42 3248 2.0 996256339
## 6211 42 3252 4.0 996219414
## 6212 42 3253 4.0 996216210
## 6213 42 3254 3.0 996216279
## 6214 42 3255 3.0 996218645
## 6215 42 3256 4.0 996218466
## 6216 42 3257 4.0 996221544
## 6217 42 3259 4.0 996219440
## 6218 42 3261 2.0 996218816
## 6219 42 3263 4.0 996220054
## 6220 42 3264 4.0 996220093
## 6221 42 3269 3.0 996220343
## 6222 42 3298 4.0 996212969
## 6223 42 3301 4.0 996213124
## 6224 42 3316 2.0 996216735
## 6225 42 3326 2.0 996215958
## 6226 42 3361 4.0 996258165
## 6227 42 3387 4.0 996260295
## 6228 42 3394 3.0 996260241
## 6229 42 3408 4.0 996212921
## 6230 42 3438 1.0 996221269
## 6231 42 3441 4.0 996259211
## 6232 42 3448 5.0 996214917
## 6233 42 3450 5.0 996219061
## 6234 42 3481 4.0 996212948
## 6235 42 3502 5.0 996219275
## 6236 42 3515 4.0 996216735
## 6237 42 3527 2.0 996216146
## 6238 42 3534 3.0 996212948
## 6239 42 3535 4.0 996213058
## 6240 42 3552 4.0 996258468
## 6241 42 3578 3.0 996212879
## 6242 42 3617 4.0 996217145
## 6243 42 3646 3.0 996213160
## 6244 42 3693 1.0 996260841
## 6245 42 3694 1.0 996260963
## 6246 42 3695 1.0 996260241
## 6247 42 3717 4.0 996213142
## 6248 42 3752 4.0 996217575
## 6249 42 3753 4.0 996212879
## 6250 42 3755 5.0 996213058
## 6251 42 3764 2.0 996221356
## 6252 42 3791 3.0 996259355
## 6253 42 3793 2.0 996212879
## 6254 42 3824 2.0 996217683
## 6255 42 3841 5.0 996256206
## 6256 42 3861 3.0 996213058
## 6257 42 3869 2.0 996221323
## 6258 42 3882 2.0 996215785
## 6259 42 3946 4.0 996217599
## 6260 42 3948 3.0 996213481
## 6261 42 3968 2.0 996217146
## 6262 42 3977 3.0 996217016
## 6263 42 3980 2.0 996216970
## 6264 42 3987 2.0 996217514
## 6265 42 4002 5.0 996258299
## 6266 42 4005 4.0 996259059
## 6267 42 4007 5.0 996258563
## 6268 42 4008 4.0 996258942
## 6269 42 4018 4.0 996216316
## 6270 42 4022 4.0 996213481
## 6271 42 4027 4.0 996216092
## 6272 42 4034 5.0 996213431
## 6273 42 4040 2.0 996255745
## 6274 42 4041 5.0 996258581
## 6275 42 4062 4.0 996258958
## 6276 42 4067 2.0 996219248
## 6277 42 4084 4.0 996215096
## 6278 42 4085 4.0 996215096
## 6279 42 4102 5.0 996258715
## 6280 42 4132 3.0 996260241
## 6281 42 4153 3.0 996216406
## 6282 42 4155 3.0 996216820
## 6283 42 4207 3.0 996256279
## 6284 42 4262 5.0 996258510
## 6285 42 4280 4.0 996258536
## 6286 42 4293 4.0 996260044
## 6287 42 4317 3.0 996216438
## 6288 42 4321 5.0 996214645
## 6289 42 4322 4.0 996258299
## 6290 42 4333 1.0 996216379
## 6291 42 4349 4.0 996216316
## 6292 42 4351 5.0 996214779
## 6293 42 4359 4.0 996216210
## 6294 42 4361 3.0 996216063
## 6295 42 4367 3.0 996213305
## 6296 42 4396 4.0 996259528
## 6297 42 4442 1.0 996216092
## 6298 42 4466 2.0 996260366
## 6299 42 4477 2.0 996260446
## 6300 42 4482 5.0 996260113
## 6301 42 4487 4.0 996260366
## 6302 42 4489 5.0 996258510
## 6303 42 4509 5.0 996259334
## 6304 42 4516 4.0 996260168
## 6305 42 4541 4.0 996260018
## 6306 42 4545 4.0 996259093
## 6307 42 4564 5.0 996258623
## 6308 42 4565 2.0 996260446
## 6309 42 4577 4.0 996259024
## 6310 42 4621 4.0 996259355
## 6311 42 4623 4.0 996258272
## 6312 42 4629 2.0 996260295
## 6313 42 4654 3.0 996260295
## 6314 42 4679 4.0 996258824
## 6315 42 4686 2.0 996256937
## 6316 43 1 5.0 848993983
## 6317 43 3 5.0 848994405
## 6318 43 5 5.0 848994281
## 6319 43 7 5.0 848994392
## 6320 43 8 5.0 848994814
## 6321 43 10 4.0 848993747
## 6322 43 11 4.0 848993928
## 6323 43 23 5.0 848994451
## 6324 43 29 5.0 848994937
## 6325 43 34 5.0 848993816
## 6326 43 47 4.0 848993793
## 6327 43 48 5.0 848994152
## 6328 43 57 5.0 848994678
## 6329 43 60 5.0 848994424
## 6330 43 79 5.0 848994617
## 6331 43 95 4.0 848993983
## 6332 43 102 5.0 848994916
## 6333 43 107 5.0 848994703
## 6334 43 110 3.0 848993747
## 6335 43 150 5.0 848993627
## 6336 43 153 5.0 848993662
## 6337 43 158 5.0 848994079
## 6338 43 161 4.0 848993747
## 6339 43 165 5.0 848993660
## 6340 43 168 5.0 848994102
## 6341 43 173 3.0 848993928
## 6342 43 174 5.0 848994534
## 6343 43 185 4.0 848993747
## 6344 43 193 4.0 848994178
## 6345 43 208 4.0 848993747
## 6346 43 217 5.0 848994890
## 6347 43 225 4.0 848993879
## 6348 43 231 3.0 848993694
## 6349 43 236 3.0 848993983
## 6350 43 238 5.0 848994876
## 6351 43 253 4.0 848993769
## 6352 43 256 5.0 848994102
## 6353 43 259 4.0 848994678
## 6354 43 261 5.0 848994079
## 6355 43 262 5.0 848994574
## 6356 43 271 5.0 848994795
## 6357 43 276 5.0 848994265
## 6358 43 277 5.0 848994222
## 6359 43 288 3.0 848993793
## 6360 43 292 5.0 848993718
## 6361 43 296 3.0 848993627
## 6362 43 300 3.0 848993816
## 6363 43 316 4.0 848993693
## 6364 43 317 4.0 848993903
## 6365 43 318 4.0 848993718
## 6366 43 325 5.0 848994749
## 6367 43 329 5.0 848993718
## 6368 43 339 4.0 848993769
## 6369 43 343 4.0 848994765
## 6370 43 344 4.0 848993662
## 6371 43 349 3.0 848993694
## 6372 43 350 4.0 848993903
## 6373 43 351 4.0 848994534
## 6374 43 355 5.0 848994178
## 6375 43 356 5.0 848993693
## 6376 43 362 5.0 848994311
## 6377 43 364 5.0 848993793
## 6378 43 367 5.0 848993793
## 6379 43 374 5.0 848994436
## 6380 43 377 3.0 848993769
## 6381 43 380 3.0 848993628
## 6382 43 382 5.0 848994479
## 6383 43 410 4.0 848993816
## 6384 43 413 3.0 848994349
## 6385 43 419 5.0 848994374
## 6386 43 420 5.0 848993879
## 6387 43 432 4.0 848993928
## 6388 43 434 5.0 848993718
## 6389 43 435 5.0 848993928
## 6390 43 442 5.0 848993958
## 6391 43 454 4.0 848993769
## 6392 43 457 5.0 848993662
## 6393 43 480 4.0 848993719
## 6394 43 484 5.0 848995032
## 6395 43 500 5.0 848993793
## 6396 43 502 5.0 848994518
## 6397 43 519 5.0 848994479
## 6398 43 520 5.0 848994178
## 6399 43 532 4.0 848994392
## 6400 43 539 3.0 848993851
## 6401 43 542 4.0 848994546
## 6402 43 552 5.0 848994239
## 6403 43 553 4.0 848993983
## 6404 43 575 5.0 848994691
## 6405 43 587 5.0 848993816
## 6406 43 588 5.0 848993660
## 6407 43 589 5.0 848993769
## 6408 43 590 4.0 848993627
## 6409 43 592 5.0 848993627
## 6410 43 594 5.0 848994152
## 6411 43 595 5.0 848993693
## 6412 43 596 5.0 848994332
## 6413 43 597 5.0 848993817
## 6414 43 609 5.0 848994863
## 6415 43 610 5.0 848994332
## 6416 43 616 5.0 848994349
## 6417 43 631 5.0 848994814
## 6418 43 648 5.0 848994102
## 6419 43 661 5.0 848994617
## 6420 43 711 5.0 848994814
## 6421 43 783 5.0 848994560
## 6422 43 788 5.0 848994662
## 6423 43 810 5.0 848995009
## 6424 43 828 5.0 848995086
## 6425 43 1064 5.0 848995186
## 6426 43 1073 5.0 848994641
## 6427 43 1084 5.0 848994795
## 6428 43 1105 5.0 848995145
## 6429 43 1356 5.0 848995341
## 6430 44 1 3.0 869251860
## 6431 44 3 3.0 869251910
## 6432 44 6 3.0 869251910
## 6433 44 12 1.0 869252043
## 6434 44 18 4.0 869252115
## 6435 44 36 4.0 869251910
## 6436 44 65 3.0 869252497
## 6437 44 66 3.0 869252563
## 6438 44 94 4.0 869252333
## 6439 44 95 4.0 869251861
## 6440 44 104 4.0 869251955
## 6441 44 112 5.0 869251955
## 6442 44 135 2.0 869251982
## 6443 44 141 3.0 869251861
## 6444 44 260 5.0 869251910
## 6445 44 494 4.0 869251910
## 6446 44 605 1.0 869252901
## 6447 44 648 3.0 869251861
## 6448 44 661 3.0 869252012
## 6449 44 663 4.0 869252142
## 6450 44 667 3.0 869252115
## 6451 44 673 1.0 869252043
## 6452 44 733 5.0 869251910
## 6453 44 736 2.0 869251860
## 6454 44 737 5.0 869252012
## 6455 44 780 3.0 869251860
## 6456 44 785 3.0 869252062
## 6457 44 786 2.0 869251910
## 6458 44 798 2.0 869252546
## 6459 44 805 4.0 869251982
## 6460 44 833 2.0 869252237
## 6461 44 836 3.0 869252163
## 6462 44 842 3.0 869252417
## 6463 44 849 3.0 869252088
## 6464 44 852 4.0 869252012
## 6465 44 889 4.0 869252706
## 6466 44 891 3.0 869252142
## 6467 44 1120 4.0 869252186
## 6468 44 1210 5.0 869252333
## 6469 44 1391 2.0 869252087
## 6470 44 1393 4.0 869252438
## 6471 44 1405 4.0 869252043
## 6472 44 1429 5.0 869252417
## 6473 44 1476 5.0 869252362
## 6474 44 1517 4.0 869252528
## 6475 44 1544 1.0 869252752
## 6476 44 1552 4.0 869252458
## 6477 44 1639 5.0 895853739
## 6478 45 1 4.0 951170182
## 6479 45 5 3.0 959625102
## 6480 45 6 4.0 1121724608
## 6481 45 7 3.0 951170390
## 6482 45 11 3.0 951170225
## 6483 45 19 4.5 1091306129
## 6484 45 21 4.0 1091306011
## 6485 45 32 4.5 1121724503
## 6486 45 39 3.0 951170338
## 6487 45 50 5.0 951756750
## 6488 45 62 4.0 1091306047
## 6489 45 65 3.0 1020803228
## 6490 45 69 3.0 951170141
## 6491 45 70 4.0 951170563
## 6492 45 88 4.0 951170543
## 6493 45 104 5.0 950724870
## 6494 45 107 4.0 950726248
## 6495 45 110 5.0 950741520
## 6496 45 112 4.0 950740583
## 6497 45 150 5.0 1007484259
## 6498 45 165 5.0 1091305945
## 6499 45 172 3.0 950740896
## 6500 45 173 1.0 950741335
## 6501 45 180 4.0 950726070
## 6502 45 185 3.0 950741023
## 6503 45 186 3.5 1121724898
## 6504 45 216 5.0 950724820
## 6505 45 223 5.0 1007995016
## 6506 45 231 5.0 1091305997
## 6507 45 248 2.0 951170651
## 6508 45 252 4.0 951170509
## 6509 45 260 5.0 950726388
## 6510 45 261 3.0 959624314
## 6511 45 292 4.0 1091305981
## 6512 45 296 5.0 1007483989
## 6513 45 316 4.0 950740601
## 6514 45 317 3.0 951170669
## 6515 45 329 4.0 950740723
## 6516 45 333 4.0 951170509
## 6517 45 338 3.0 950741024
## 6518 45 344 4.0 951170563
## 6519 45 356 5.0 951170194
## 6520 45 357 4.0 951170271
## 6521 45 362 5.0 950722276
## 6522 45 364 5.0 950726215
## 6523 45 367 4.0 950724840
## 6524 45 368 4.0 1091306135
## 6525 45 370 3.5 1121724808
## 6526 45 380 4.0 950726688
## 6527 45 413 3.0 951170710
## 6528 45 435 3.0 950741095
## 6529 45 440 3.0 951170210
## 6530 45 441 3.0 950724757
## 6531 45 457 4.0 950726408
## 6532 45 466 3.0 1034343953
## 6533 45 474 5.0 1091306076
## 6534 45 480 4.0 950740478
## 6535 45 500 4.0 951170445
## 6536 45 520 4.0 951170727
## 6537 45 541 3.0 950718561
## 6538 45 543 5.0 951170445
## 6539 45 546 2.0 950741111
## 6540 45 551 3.0 950726215
## 6541 45 552 4.0 951170579
## 6542 45 569 2.0 950722240
## 6543 45 586 3.0 951170727
## 6544 45 587 2.0 951170358
## 6545 45 588 5.0 950726248
## 6546 45 589 5.0 950726569
## 6547 45 590 4.0 1091305624
## 6548 45 593 4.0 951756812
## 6549 45 594 4.0 950726215
## 6550 45 595 5.0 950726248
## 6551 45 597 3.0 951170238
## 6552 45 639 2.0 951170628
## 6553 45 648 4.0 950740583
## 6554 45 671 4.0 950724840
## 6555 45 733 4.0 950740478
## 6556 45 765 4.0 951170771
## 6557 45 778 4.0 1007484068
## 6558 45 780 3.0 950741000
## 6559 45 783 3.0 1020803144
## 6560 45 784 4.0 950724896
## 6561 45 785 4.0 951170358
## 6562 45 788 2.0 1091306098
## 6563 45 832 4.5 1121724761
## 6564 45 849 3.0 950741270
## 6565 45 852 4.0 951170289
## 6566 45 858 5.0 950722240
## 6567 45 903 4.0 951756950
## 6568 45 919 3.0 950740452
## 6569 45 924 4.0 950740805
## 6570 45 934 3.0 950724757
## 6571 45 1005 2.0 951170710
## 6572 45 1020 3.0 951170628
## 6573 45 1021 2.0 951170628
## 6574 45 1028 4.0 1121724907
## 6575 45 1029 4.0 950726185
## 6576 45 1033 4.0 959625102
## 6577 45 1035 5.0 1034343805
## 6578 45 1036 3.0 950741520
## 6579 45 1037 4.0 950741043
## 6580 45 1042 3.0 951170289
## 6581 45 1059 5.0 1009399318
## 6582 45 1060 5.0 951170165
## 6583 45 1073 4.0 1091306020
## 6584 45 1080 4.0 951757142
## 6585 45 1097 5.0 1007484441
## 6586 45 1101 4.0 1091306211
## 6587 45 1127 4.0 950740896
## 6588 45 1136 5.0 1091306083
## 6589 45 1196 5.0 950726388
## 6590 45 1197 5.0 1091306041
## 6591 45 1198 4.0 950726408
## 6592 45 1210 5.0 950726673
## 6593 45 1213 5.0 951756891
## 6594 45 1221 4.0 950723493
## 6595 45 1225 4.0 1007484081
## 6596 45 1240 3.0 950740818
## 6597 45 1242 5.0 950726408
## 6598 45 1246 5.0 1121724720
## 6599 45 1258 5.0 1007484543
## 6600 45 1259 3.0 1020802033
## 6601 45 1265 3.0 950724757
## 6602 45 1270 3.5 1091305972
## 6603 45 1282 5.0 950726185
## 6604 45 1285 3.0 950724777
## 6605 45 1291 5.0 950726569
## 6606 45 1302 5.0 1091305660
## 6607 45 1307 3.0 950723581
## 6608 45 1356 4.0 950740918
## 6609 45 1367 3.0 951170563
## 6610 45 1370 4.5 1121724800
## 6611 45 1371 3.0 950740619
## 6612 45 1372 5.0 950741043
## 6613 45 1374 3.0 950740839
## 6614 45 1375 4.0 959625081
## 6615 45 1376 3.0 950740478
## 6616 45 1377 2.0 951170693
## 6617 45 1390 2.0 951170422
## 6618 45 1391 3.0 950741061
## 6619 45 1393 5.0 950726330
## 6620 45 1396 4.0 950740855
## 6621 45 1407 4.5 1121724749
## 6622 45 1431 4.0 951170543
## 6623 45 1442 4.0 1021412164
## 6624 45 1457 4.0 951170669
## 6625 45 1476 3.0 951170225
## 6626 45 1485 4.0 951170390
## 6627 45 1500 3.0 951170182
## 6628 45 1517 5.0 951170210
## 6629 45 1527 4.0 950740871
## 6630 45 1566 4.0 950740704
## 6631 45 1569 4.0 951170473
## 6632 45 1573 5.0 950740839
## 6633 45 1580 3.0 950740871
## 6634 45 1584 5.0 950740871
## 6635 45 1591 4.0 950741095
## 6636 45 1608 4.0 1121724850
## 6637 45 1610 4.0 950741569
## 6638 45 1615 3.0 950740452
## 6639 45 1639 4.0 950726106
## 6640 45 1641 4.0 951170271
## 6641 45 1642 2.0 951170461
## 6642 45 1653 4.0 950740986
## 6643 45 1676 4.0 950740565
## 6644 45 1682 4.0 1121724734
## 6645 45 1688 4.0 950726248
## 6646 45 1704 5.0 951756899
## 6647 45 1721 4.0 1091306055
## 6648 45 1729 4.0 1034343842
## 6649 45 1732 5.0 951170525
## 6650 45 1753 4.0 950724820
## 6651 45 1769 3.0 1020803185
## 6652 45 1777 4.0 951170257
## 6653 45 1784 4.0 951170165
## 6654 45 1862 3.0 950741111
## 6655 45 1863 2.0 959625167
## 6656 45 1866 5.0 1020803145
## 6657 45 1883 3.0 951170257
## 6658 45 1909 4.0 950740896
## 6659 45 1921 5.0 950740818
## 6660 45 1923 5.0 951170238
## 6661 45 1934 3.0 1021412195
## 6662 45 1961 4.0 1007484335
## 6663 45 1968 4.0 1007484412
## 6664 45 2005 3.0 951756891
## 6665 45 2006 5.0 950740549
## 6666 45 2011 3.0 950740896
## 6667 45 2012 3.0 1091306262
## 6668 45 2021 3.0 950741223
## 6669 45 2028 5.0 950726408
## 6670 45 2042 3.0 951170693
## 6671 45 2046 3.0 950740549
## 6672 45 2052 2.0 951170727
## 6673 45 2064 4.0 1020802309
## 6674 45 2078 5.0 950726248
## 6675 45 2080 4.0 950722311
## 6676 45 2081 5.0 950726248
## 6677 45 2082 3.0 951170628
## 6678 45 2083 5.0 950726185
## 6679 45 2087 4.0 1020802917
## 6680 45 2094 3.0 950741075
## 6681 45 2096 4.0 950726215
## 6682 45 2105 3.0 950741223
## 6683 45 2106 5.0 1034343884
## 6684 45 2108 2.0 951170390
## 6685 45 2115 4.5 1121724747
## 6686 45 2124 4.0 951170445
## 6687 45 2140 4.0 950740918
## 6688 45 2174 3.0 1020802309
## 6689 45 2195 4.0 951170509
## 6690 45 2231 5.0 1121724098
## 6691 45 2268 5.0 1121724829
## 6692 45 2302 3.0 951170404
## 6693 45 2311 4.0 950740918
## 6694 45 2324 5.0 1007483928
## 6695 45 2329 5.0 1007484492
## 6696 45 2355 5.0 950728148
## 6697 45 2396 4.0 950724697
## 6698 45 2407 2.0 950740896
## 6699 45 2431 5.0 951170595
## 6700 45 2470 1.0 950740565
## 6701 45 2485 4.0 951170445
## 6702 45 2492 4.0 1020803365
## 6703 45 2501 4.0 1007484113
## 6704 45 2502 5.0 1007995101
## 6705 45 2504 4.0 951170710
## 6706 45 2528 4.0 950740565
## 6707 45 2541 4.0 1007995016
## 6708 45 2571 5.0 950718872
## 6709 45 2580 5.0 951756858
## 6710 45 2598 4.0 1007995150
## 6711 45 2605 2.0 950718786
## 6712 45 2606 3.0 1007995058
## 6713 45 2616 4.0 1020803185
## 6714 45 2628 4.0 950740549
## 6715 45 2657 5.0 950741248
## 6716 45 2672 1.0 950741061
## 6717 45 2683 4.0 950718775
## 6718 45 2687 4.0 950718755
## 6719 45 2694 5.0 951170525
## 6720 45 2700 5.0 1007995150
## 6721 45 2706 4.0 950728042
## 6722 45 2707 4.0 1007994972
## 6723 45 2710 4.0 1007994972
## 6724 45 2712 3.0 1121724840
## 6725 45 2716 4.0 1121724620
## 6726 45 2718 3.0 1007995016
## 6727 45 2731 4.0 950723478
## 6728 45 2746 3.0 950726248
## 6729 45 2762 5.0 959624096
## 6730 45 2763 4.0 1007995150
## 6731 45 2771 5.0 1007994972
## 6732 45 2791 4.0 950723611
## 6733 45 2797 4.0 1020802309
## 6734 45 2804 3.0 950724727
## 6735 45 2841 4.0 951756608
## 6736 45 2858 5.0 959624096
## 6737 45 2890 5.0 1007484532
## 6738 45 2915 4.0 1020802394
## 6739 45 2916 4.0 950740549
## 6740 45 2918 5.0 951170884
## 6741 45 2944 3.0 950726388
## 6742 45 2947 4.0 950726657
## 6743 45 2959 5.0 1007483918
## 6744 45 2985 2.0 950740918
## 6745 45 2987 4.0 950740549
## 6746 45 2997 4.0 959624096
## 6747 45 3004 3.0 1020803365
## 6748 45 3033 4.0 959625116
## 6749 45 3052 4.0 959624107
## 6750 45 3082 4.0 950718627
## 6751 45 3087 3.0 950724777
## 6752 45 3114 5.0 950727914
## 6753 45 3147 5.0 950723180
## 6754 45 3175 3.0 1020802351
## 6755 45 3176 4.0 950718627
## 6756 45 3177 4.0 950727968
## 6757 45 3196 4.0 1021412195
## 6758 45 3243 2.0 950740254
## 6759 45 3247 3.0 950740361
## 6760 45 3248 2.0 950740361
## 6761 45 3249 3.0 950740266
## 6762 45 3253 4.0 950740394
## 6763 45 3254 4.0 950740394
## 6764 45 3255 3.0 950740281
## 6765 45 3258 3.0 950740239
## 6766 45 3268 1.0 950740376
## 6767 45 3269 3.0 950741248
## 6768 45 3270 1.0 950718581
## 6769 45 3273 4.0 1007995150
## 6770 45 3274 3.0 950740361
## 6771 45 3285 3.0 1007994972
## 6772 45 3298 4.0 953759895
## 6773 45 3301 4.0 951169736
## 6774 45 3360 3.0 951756668
## 6775 45 3385 2.0 959625116
## 6776 45 3387 2.0 959625102
## 6777 45 3394 3.0 1020803145
## 6778 45 3396 4.0 951756789
## 6779 45 3408 4.0 953759873
## 6780 45 3421 4.0 1007484315
## 6781 45 3439 1.0 1034344018
## 6782 45 3481 4.0 959623988
## 6783 45 3484 3.0 959624041
## 6784 45 3489 3.0 959625135
## 6785 45 3510 4.0 959624004
## 6786 45 3534 4.0 959624016
## 6787 45 3536 4.0 959624004
## 6788 45 3549 4.0 959624349
## 6789 45 3552 5.0 1020802351
## 6790 45 3555 4.0 1057007329
## 6791 45 3565 4.0 959624075
## 6792 45 3578 5.0 1020803425
## 6793 45 3617 4.0 1007995150
## 6794 45 3717 5.0 1007994717
## 6795 45 3752 4.0 1007995101
## 6796 45 3753 5.0 1007995101
## 6797 45 3793 5.0 1007995171
## 6798 45 3798 5.0 1007995171
## 6799 45 3897 3.0 1020801977
## 6800 45 3911 3.0 1020802073
## 6801 45 3972 5.0 1007484492
## 6802 45 3996 5.0 1007484009
## 6803 45 4011 5.0 1021412499
## 6804 45 4016 5.0 1007484242
## 6805 45 4022 5.0 1007995016
## 6806 45 4033 4.0 1021412336
## 6807 45 4034 4.0 1021412336
## 6808 45 4104 1.0 1034344018
## 6809 45 4299 5.0 1034343884
## 6810 45 4306 5.0 1007483642
## 6811 45 4308 5.0 1009399292
## 6812 45 4369 5.0 1007994695
## 6813 45 4502 1.0 1034344018
## 6814 45 4623 3.0 1020802394
## 6815 45 4638 3.0 1007995058
## 6816 45 4718 5.0 1020802962
## 6817 45 4734 5.0 1020802962
## 6818 45 4886 5.0 1007483502
## 6819 45 4896 4.0 1007483576
## 6820 45 4901 5.0 1007483842
## 6821 45 4929 3.0 1007483810
## 6822 45 4958 4.0 1057007334
## 6823 45 4963 5.0 1007994440
## 6824 45 4974 4.0 1021412001
## 6825 45 4979 3.0 1034343730
## 6826 45 4980 2.0 1007483743
## 6827 45 4993 5.0 1034343730
## 6828 45 5103 3.0 1020802309
## 6829 45 5151 4.0 1020802436
## 6830 45 5218 3.5 1121724091
## 6831 45 5220 2.0 1091306318
## 6832 45 5283 5.0 1020802436
## 6833 45 5307 3.0 1020802747
## 6834 45 5308 3.0 1020802747
## 6835 45 5313 3.0 1020802545
## 6836 45 5349 5.0 1021412297
## 6837 45 5378 5.0 1023301451
## 6838 45 5418 5.0 1091305617
## 6839 45 5445 4.0 1057007317
## 6840 45 5481 4.0 1034343599
## 6841 45 5500 5.0 1034343884
## 6842 45 5502 5.0 1034343599
## 6843 45 5528 5.0 1034343599
## 6844 45 5568 2.0 1034343884
## 6845 45 5582 3.0 1034344038
## 6846 45 5585 1.0 1034344038
## 6847 45 5589 3.0 1034343805
## 6848 45 5620 3.0 1035299453
## 6849 45 5630 5.0 1034343599
## 6850 45 5989 5.0 1057007320
## 6851 45 6287 5.0 1057007003
## 6852 45 6333 5.0 1057006900
## 6853 45 6365 5.0 1057006892
## 6854 45 6373 4.0 1057006922
## 6855 45 6377 5.0 1057006897
## 6856 45 6539 5.0 1121724104
## 6857 45 7173 5.0 1091305731
## 6858 45 7294 4.0 1091305810
## 6859 45 8360 5.0 1091305565
## 6860 45 8528 5.0 1091305555
## 6861 45 8636 3.5 1091305570
## 6862 45 8665 5.0 1121724114
## 6863 45 33004 4.0 1121724181
## 6864 45 33145 4.0 1121724201
## 6865 45 33493 5.0 1121724157
## 6866 45 33495 3.0 1121724217
## 6867 45 33679 5.0 1121724175
## 6868 45 50872 5.0 1193288853
## 6869 45 51080 4.5 1193289356
## 6870 45 53121 4.0 1193288947
## 6871 45 53125 4.0 1193288942
## 6872 45 53322 5.0 1193288932
## 6873 45 53993 4.5 1193288839
## 6874 45 53996 4.5 1193288835
## 6875 45 54272 5.0 1193288817
## 6876 45 54286 4.5 1193288697
## 6877 46 1 5.0 834787906
## 6878 46 10 3.0 834787826
## 6879 46 32 4.0 834788094
## 6880 46 39 3.0 834788093
## 6881 46 50 5.0 834788094
## 6882 46 110 5.0 834788016
## 6883 46 111 4.0 834788094
## 6884 46 153 4.0 834787678
## 6885 46 160 4.0 834788146
## 6886 46 161 3.0 834787826
## 6887 46 165 4.0 834787677
## 6888 46 173 5.0 834788227
## 6889 46 185 4.0 834787906
## 6890 46 208 3.0 834787906
## 6891 46 225 3.0 834788016
## 6892 46 231 3.0 834787757
## 6893 46 236 4.0 834788227
## 6894 46 253 4.0 834787906
## 6895 46 266 5.0 834788094
## 6896 46 282 3.0 834788227
## 6897 46 288 3.0 834787967
## 6898 46 292 5.0 834787826
## 6899 46 300 3.0 834788016
## 6900 46 315 3.0 834788227
## 6901 46 316 4.0 834787757
## 6902 46 318 4.0 834787757
## 6903 46 339 5.0 834787826
## 6904 46 344 3.0 834787678
## 6905 46 349 3.0 834787677
## 6906 46 364 5.0 834788146
## 6907 46 367 4.0 834788227
## 6908 46 380 5.0 834787967
## 6909 46 432 3.0 834788146
## 6910 46 434 4.0 834787826
## 6911 46 435 3.0 834788146
## 6912 46 454 5.0 834788146
## 6913 46 457 5.0 834787967
## 6914 46 588 5.0 834787677
## 6915 46 590 5.0 834787617
## 6916 46 592 3.0 834787617
## 6917 46 593 5.0 834787906
## 6918 46 595 5.0 834787757
## 6919 47 31 3.0 1496205717
## 6920 47 47 3.0 1496209354
## 6921 47 62 3.0 1496205312
## 6922 47 141 2.0 1496208714
## 6923 47 147 3.5 1496205843
## 6924 47 150 3.0 1496206707
## 6925 47 318 4.0 1496208166
## 6926 47 356 4.5 1496206696
## 6927 47 391 4.5 1496206564
## 6928 47 500 1.0 1496210197
## 6929 47 508 4.0 1496205263
## 6930 47 539 3.0 1496209510
## 6931 47 587 4.0 1496205334
## 6932 47 590 3.5 1496208604
## 6933 47 593 2.0 1496205249
## 6934 47 597 3.0 1496209349
## 6935 47 724 2.0 1496205806
## 6936 47 1021 2.0 1496206083
## 6937 47 1088 4.0 1496205519
## 6938 47 1097 4.0 1496209401
## 6939 47 1203 2.5 1496205502
## 6940 47 1259 3.0 1496205253
## 6941 47 1265 2.0 1496205353
## 6942 47 1393 2.5 1496206783
## 6943 47 1580 1.5 1496209799
## 6944 47 1721 3.5 1496209715
## 6945 47 1961 4.0 1496205246
## 6946 47 1968 2.5 1496208487
## 6947 47 2028 4.0 1496205180
## 6948 47 2121 2.5 1496206299
## 6949 47 2144 3.0 1496205630
## 6950 47 2291 2.5 1496212183
## 6951 47 2407 2.0 1496206799
## 6952 47 2420 3.5 1496208479
## 6953 47 2671 2.0 1496206774
## 6954 47 2762 3.0 1496205184
## 6955 47 2797 2.0 1496209861
## 6956 47 2908 3.5 1496205857
## 6957 47 2942 2.5 1496205903
## 6958 47 2959 2.0 1496205268
## 6959 47 3147 5.0 1496205029
## 6960 47 3255 2.5 1496207359
## 6961 47 3408 3.0 1496209899
## 6962 47 3844 4.0 1496206137
## 6963 47 3949 1.0 1496205424
## 6964 47 3969 3.5 1496209586
## 6965 47 4018 2.5 1496205342
## 6966 47 4022 3.0 1496209904
## 6967 47 4474 3.5 1496210466
## 6968 47 4487 1.5 1496210247
## 6969 47 4776 3.5 1496210522
## 6970 47 4878 0.5 1496211868
## 6971 47 4975 3.0 1496212057
## 6972 47 5014 3.0 1496205679
## 6973 47 5108 4.0 1496209895
## 6974 47 5293 3.0 1496205864
## 6975 47 5669 4.0 1496205049
## 6976 47 5679 2.0 1496212004
## 6977 47 5943 2.0 1496205418
## 6978 47 5989 2.0 1496206727
## 6979 47 5991 2.0 1496212058
## 6980 47 6155 3.0 1496205365
## 6981 47 6373 2.0 1496205057
## 6982 47 6765 3.0 1496210188
## 6983 47 6870 3.5 1496205576
## 6984 47 7160 3.0 1496209397
## 6985 47 8464 3.0 1496206868
## 6986 47 8533 3.5 1496205491
## 6987 47 8958 3.5 1496206831
## 6988 47 8966 4.0 1496206531
## 6989 47 30707 4.0 1496205318
## 6990 47 30749 3.0 1496206658
## 6991 47 30793 3.0 1496212048
## 6992 47 30812 3.0 1496205564
## 6993 47 31685 3.0 1496210576
## 6994 47 33166 4.5 1496206497
## 6995 47 40819 3.5 1496205592
## 6996 47 45950 3.0 1496206910
## 6997 47 47099 2.5 1496206808
## 6998 47 47423 5.0 1496205761
## 6999 47 48385 0.5 1496212007
## 7000 47 49278 3.5 1496209090
## 7001 47 49530 3.0 1496206730
## 7002 47 49824 2.5 1496206304
## 7003 47 51931 5.0 1496205747
## 7004 47 53894 3.5 1496206905
## 7005 47 55247 4.0 1496205486
## 7006 47 56587 4.0 1496206457
## 7007 47 59725 3.5 1496205699
## 7008 47 63082 4.0 1496205289
## 7009 47 63876 3.0 1496205658
## 7010 47 68932 3.5 1496208561
## 7011 47 69122 0.5 1496209805
## 7012 47 69712 4.0 1496208670
## 7013 47 72395 3.5 1496205833
## 7014 47 72641 4.0 1496205469
## 7015 47 72998 2.5 1496209178
## 7016 47 79242 3.0 1496209581
## 7017 47 80463 3.5 1496209653
## 7018 47 81591 1.5 1496210235
## 7019 47 81932 4.0 1496205315
## 7020 47 82767 3.5 1496209411
## 7021 47 84152 4.5 1496208763
## 7022 47 88405 1.0 1496210193
## 7023 47 88810 3.5 1496206700
## 7024 47 91658 2.5 1496209056
## 7025 47 96567 4.0 1496206407
## 7026 47 96588 1.5 1496206818
## 7027 47 96811 4.0 1496207286
## 7028 47 97921 3.5 1496208475
## 7029 47 97923 4.0 1496206766
## 7030 47 97938 3.5 1496209606
## 7031 47 100383 3.5 1496208216
## 7032 47 101525 3.5 1496208373
## 7033 47 104841 2.0 1496205293
## 7034 47 105504 3.5 1496210907
## 7035 47 106100 4.0 1496205277
## 7036 47 106782 3.5 1496209142
## 7037 47 108729 3.0 1496205645
## 7038 47 111921 3.5 1496205603
## 7039 47 112183 1.5 1496206635
## 7040 47 112552 5.0 1496205226
## 7041 47 112556 2.0 1496205321
## 7042 47 112804 5.0 1496205128
## 7043 47 117881 4.0 1496206585
## 7044 47 132424 2.5 1496205877
## 7045 47 137337 3.5 1496211359
## 7046 47 139385 0.5 1496210341
## 7047 47 140174 2.5 1496205483
## 7048 47 140247 1.0 1496209850
## 7049 47 140715 4.0 1496207354
## 7050 47 145839 3.5 1496210199
## 7051 47 146656 3.5 1496209516
## 7052 47 148626 3.0 1496209907
## 7053 47 159817 3.0 1496206867
## 7054 47 160980 3.5 1496209791
## 7055 47 161582 3.5 1496208845
## 7056 47 163645 3.0 1496205601
## 7057 47 166643 3.0 1496205070
## 7058 47 171011 3.0 1496206929
## 7059 48 48 4.0 1127128718
## 7060 48 168 3.5 1127128712
## 7061 48 172 3.5 1127128691
## 7062 48 653 4.0 1127128598
## 7063 48 780 3.5 1127128851
## 7064 48 1193 3.0 1127129756
## 7065 48 1320 4.0 1127128731
## 7066 48 1356 4.5 1127128828
## 7067 48 1485 4.0 1127128655
## 7068 48 1527 4.0 1127128838
## 7069 48 1580 5.0 1127128859
## 7070 48 1584 4.5 1127128836
## 7071 48 1625 4.5 1127128739
## 7072 48 1653 4.5 1127128650
## 7073 48 1690 4.5 1127128869
## 7074 48 2081 4.5 1127128745
## 7075 48 2115 5.0 1127128639
## 7076 48 2194 4.0 1127128698
## 7077 48 2353 3.0 1127128708
## 7078 48 2571 5.0 1127128841
## 7079 48 2617 4.5 1127128670
## 7080 48 2791 2.5 1127128628
## 7081 48 2797 4.0 1127128586
## 7082 48 3623 2.5 1127128748
## 7083 48 3793 3.5 1127128889
## 7084 48 4886 5.0 1127128753
## 7085 48 5349 4.0 1127128913
## 7086 48 5445 4.5 1127128898
## 7087 48 5882 4.0 1127128941
## 7088 48 5903 4.0 1127128907
## 7089 48 6333 3.5 1127128894
## 7090 48 8371 4.0 1127128944
## 7091 48 8636 4.5 1127128916
## 7092 49 110 4.0 1493093005
## 7093 49 318 4.0 1493089778
## 7094 49 356 4.0 1493089782
## 7095 49 527 4.5 1493089770
## 7096 49 1097 4.5 1493093009
## 7097 49 1200 4.5 1493093189
## 7098 49 1214 4.0 1493093185
## 7099 49 2028 4.5 1493089784
## 7100 49 2571 4.5 1493093047
## 7101 49 4022 4.5 1493092982
## 7102 49 5218 4.0 1493093122
## 7103 49 6377 4.0 1493093127
## 7104 49 47099 4.5 1493093082
## 7105 49 70286 4.0 1493093030
## 7106 49 79091 4.0 1493093114
## 7107 49 79132 4.5 1493093216
## 7108 49 103335 4.0 1493093120
## 7109 49 109487 4.5 1493093231
## 7110 49 122920 4.0 1493093016
## 7111 49 139385 4.5 1493093206
## 7112 49 168252 4.5 1493092998
## 7113 50 1 3.0 1514238116
## 7114 50 32 3.0 1523740563
## 7115 50 111 4.0 1534178790
## 7116 50 165 3.0 1514238058
## 7117 50 296 4.0 1500573696
## 7118 50 318 3.5 1514237959
## 7119 50 356 3.0 1514238146
## 7120 50 541 4.0 1514238015
## 7121 50 593 3.5 1514237974
## 7122 50 596 2.0 1514238575
## 7123 50 608 4.0 1514238092
## 7124 50 741 3.5 1515105957
## 7125 50 750 4.0 1514238177
## 7126 50 783 2.5 1514238681
## 7127 50 837 2.5 1514239044
## 7128 50 858 4.0 1514240681
## 7129 50 899 4.0 1514238688
## 7130 50 903 4.0 1519140456
## 7131 50 909 3.0 1514239063
## 7132 50 914 3.0 1527542415
## 7133 50 923 4.0 1526329877
## 7134 50 924 4.5 1514238077
## 7135 50 969 3.5 1527108544
## 7136 50 1028 3.0 1527542562
## 7137 50 1036 3.5 1514238054
## 7138 50 1079 2.5 1514238276
## 7139 50 1080 3.5 1514238217
## 7140 50 1101 2.5 1527372035
## 7141 50 1136 4.0 1514238006
## 7142 50 1148 3.5 1514238509
## 7143 50 1198 3.5 1527106209
## 7144 50 1199 4.0 1527799718
## 7145 50 1201 4.0 1536870006
## 7146 50 1204 4.5 1526329645
## 7147 50 1206 4.0 1514238074
## 7148 50 1208 4.5 1527106159
## 7149 50 1223 3.0 1514238949
## 7150 50 1225 3.5 1514238218
## 7151 50 1230 3.5 1527108505
## 7152 50 1232 4.0 1518012173
## 7153 50 1251 4.5 1534178801
## 7154 50 1252 4.0 1523039137
## 7155 50 1253 3.0 1514239041
## 7156 50 1258 4.0 1527370745
## 7157 50 1263 3.5 1517218485
## 7158 50 1273 3.0 1514239272
## 7159 50 1274 4.0 1515105932
## 7160 50 1278 3.5 1514238500
## 7161 50 1281 3.5 1514239137
## 7162 50 1289 3.0 1514239232
## 7163 50 1291 3.0 1527371937
## 7164 50 1367 2.0 1514238872
## 7165 50 1370 3.0 1514238395
## 7166 50 1377 3.0 1514238591
## 7167 50 1380 2.5 1514238334
## 7168 50 1387 3.0 1527542352
## 7169 50 1391 3.0 1500577074
## 7170 50 1566 2.5 1514239023
## 7171 50 1580 2.5 1514237995
## 7172 50 1682 2.5 1527370879
## 7173 50 1721 3.0 1514237992
## 7174 50 1732 3.5 1527371218
## 7175 50 1921 3.0 1514238846
## 7176 50 1968 2.5 1527371986
## 7177 50 2006 2.5 1514238569
## 7178 50 2018 2.5 1514238955
## 7179 50 2019 4.0 1533302036
## 7180 50 2160 4.0 1523039151
## 7181 50 2164 1.0 1514891778
## 7182 50 2420 2.5 1514842717
## 7183 50 2553 3.0 1514239563
## 7184 50 2571 2.5 1514237967
## 7185 50 2657 3.0 1514238578
## 7186 50 2712 3.5 1527371286
## 7187 50 2732 4.0 1518168679
## 7188 50 2925 3.5 1518168145
## 7189 50 2947 3.5 1514238648
## 7190 50 2959 3.0 1527542290
## 7191 50 3000 3.5 1527106195
## 7192 50 3022 3.0 1514239288
## 7193 50 3034 3.0 1514239076
## 7194 50 3114 3.0 1514238183
## 7195 50 3168 3.5 1514239060
## 7196 50 3221 3.5 1518168495
## 7197 50 3415 4.0 1527106417
## 7198 50 3462 3.5 1514239123
## 7199 50 3730 4.0 1525359104
## 7200 50 3868 3.0 1514238939
## 7201 50 3949 3.0 1514238231
## 7202 50 4226 3.0 1514241617
## 7203 50 4282 3.5 1534178840
## 7204 50 4306 2.0 1514238088
## 7205 50 4399 3.5 1533302147
## 7206 50 4658 3.5 1522428799
## 7207 50 4886 3.0 1514238422
## 7208 50 4896 2.5 1514238240
## 7209 50 4914 4.0 1518168710
## 7210 50 4928 4.0 1518168514
## 7211 50 5004 3.0 1527106283
## 7212 50 5021 3.0 1514239736
## 7213 50 5218 2.0 1514238391
## 7214 50 5459 2.0 1514238599
## 7215 50 5618 4.0 1527106171
## 7216 50 5669 2.5 1514238595
## 7217 50 5810 2.0 1514239019
## 7218 50 5816 2.5 1514238291
## 7219 50 5932 3.5 1514240004
## 7220 50 6239 2.5 1518168537
## 7221 50 6377 3.0 1514238065
## 7222 50 6539 3.0 1514238028
## 7223 50 6662 3.0 1514239274
## 7224 50 6663 3.0 1514239570
## 7225 50 6666 3.5 1518168593
## 7226 50 6711 3.0 1527542336
## 7227 50 6773 3.5 1514239253
## 7228 50 6807 3.0 1514238886
## 7229 50 6874 3.5 1514238071
## 7230 50 6975 3.5 1518002159
## 7231 50 7063 3.5 1517426075
## 7232 50 7206 3.5 1518168552
## 7233 50 7247 3.0 1527542377
## 7234 50 7327 4.0 1525359178
## 7235 50 7396 4.0 1527106160
## 7236 50 7438 3.5 1514496676
## 7237 50 7700 4.0 1514239814
## 7238 50 7748 4.0 1514239964
## 7239 50 8143 3.5 1527106239
## 7240 50 8157 3.0 1514239905
## 7241 50 8235 3.0 1514239992
## 7242 50 8253 3.5 1523750949
## 7243 50 8361 1.0 1514238888
## 7244 50 8368 3.0 1514238238
## 7245 50 8379 3.0 1514240037
## 7246 50 8879 3.0 1527542396
## 7247 50 8928 4.0 1527370364
## 7248 50 8961 3.0 1527542552
## 7249 50 8974 2.0 1514239669
## 7250 50 26258 4.0 1529600330
## 7251 50 26326 4.0 1525359203
## 7252 50 26422 3.0 1527799940
## 7253 50 26729 3.5 1517954985
## 7254 50 27156 4.0 1518168703
## 7255 50 27513 3.0 1514240316
## 7256 50 27773 3.0 1527542527
## 7257 50 30793 1.5 1514238694
## 7258 50 32031 2.0 1527542436
## 7259 50 32657 3.5 1518168476
## 7260 50 32659 2.5 1514240275
## 7261 50 32875 3.0 1514240242
## 7262 50 32898 3.5 1525359162
## 7263 50 33781 2.5 1514240162
## 7264 50 33794 2.5 1527371330
## 7265 50 37545 3.0 1514240127
## 7266 50 38038 3.0 1527108475
## 7267 50 41566 2.0 1514238691
## 7268 50 44022 1.5 1514239147
## 7269 50 44555 3.5 1514238927
## 7270 50 44719 2.5 1514240340
## 7271 50 45517 2.0 1527108190
## 7272 50 45880 2.5 1527370934
## 7273 50 46062 1.0 1527371735
## 7274 50 46578 3.0 1514238330
## 7275 50 46862 3.5 1534178858
## 7276 50 47099 2.0 1527108232
## 7277 50 48385 3.0 1514238683
## 7278 50 48780 2.5 1518168203
## 7279 50 49272 2.5 1514238317
## 7280 50 50872 3.0 1514238375
## 7281 50 52885 3.0 1527370859
## 7282 50 54272 2.5 1514238953
## 7283 50 55247 2.5 1514238892
## 7284 50 56174 1.5 1514238666
## 7285 50 58559 3.0 1527542309
## 7286 50 59615 2.0 1514239001
## 7287 50 59784 2.5 1527108426
## 7288 50 60397 2.5 1514239353
## 7289 50 62336 3.5 1514239750
## 7290 50 62644 2.5 1514239684
## 7291 50 63082 2.5 1514238347
## 7292 50 63312 2.0 1514891165
## 7293 50 64278 3.5 1514240086
## 7294 50 66335 2.5 1514240049
## 7295 50 69122 1.0 1514238580
## 7296 50 69644 1.0 1514239300
## 7297 50 71156 2.5 1527107913
## 7298 50 71264 2.0 1527108180
## 7299 50 72378 1.0 1518168080
## 7300 50 72998 2.0 1514891142
## 7301 50 74458 2.5 1527371316
## 7302 50 78499 2.0 1514238650
## 7303 50 79132 2.5 1514238021
## 7304 50 79224 2.0 1514239549
## 7305 50 79702 2.0 1527108178
## 7306 50 81018 3.0 1514496830
## 7307 50 81562 2.0 1514239099
## 7308 50 82848 3.5 1514240262
## 7309 50 85796 2.0 1514239988
## 7310 50 87222 2.0 1527108208
## 7311 50 88911 3.0 1514240244
## 7312 50 89774 2.5 1514239289
## 7313 50 90522 1.5 1514239853
## 7314 50 90746 2.5 1514239373
## 7315 50 91094 1.5 1514239769
## 7316 50 92046 3.0 1514240443
## 7317 50 92427 1.0 1518168338
## 7318 50 92475 4.0 1514240149
## 7319 50 93114 3.0 1514240402
## 7320 50 93326 1.0 1514239674
## 7321 50 94677 2.0 1514239489
## 7322 50 94864 1.5 1514239056
## 7323 50 95543 1.0 1514239648
## 7324 50 96079 2.5 1514238937
## 7325 50 96606 2.5 1514239851
## 7326 50 96610 2.0 1514238967
## 7327 50 97225 2.0 1527108237
## 7328 50 97304 3.5 1500673964
## 7329 50 97923 2.5 1514239469
## 7330 50 97938 2.0 1514239038
## 7331 50 99114 3.0 1514238526
## 7332 50 100498 1.0 1514239763
## 7333 50 101072 2.5 1514240485
## 7334 50 102407 2.5 1514239230
## 7335 50 103171 1.0 1518168356
## 7336 50 103228 2.0 1514239192
## 7337 50 103335 1.5 1514239217
## 7338 50 104283 3.5 1527106187
## 7339 50 104841 1.5 1514238848
## 7340 50 104913 2.5 1514239233
## 7341 50 105250 3.5 1534178956
## 7342 50 106782 3.0 1514238685
## 7343 50 107338 2.5 1514240444
## 7344 50 107565 1.5 1514240185
## 7345 50 108932 2.5 1514239108
## 7346 50 109374 3.0 1514238789
## 7347 50 109487 2.5 1527372052
## 7348 50 110102 2.0 1514239030
## 7349 50 111732 3.5 1529600356
## 7350 50 111921 2.5 1514239318
## 7351 50 112183 3.0 1514239065
## 7352 50 112552 2.5 1527542171
## 7353 50 113374 3.0 1516264368
## 7354 50 114335 3.0 1522446443
## 7355 50 115203 3.0 1514240319
## 7356 50 116797 2.5 1514238612
## 7357 50 117176 2.0 1514239207
## 7358 50 117529 1.5 1514842744
## 7359 50 122882 3.0 1514238776
## 7360 50 122898 0.5 1514240068
## 7361 50 122904 1.5 1514891080
## 7362 50 122918 1.0 1514239279
## 7363 50 127146 3.0 1514240116
## 7364 50 128360 2.5 1514239153
## 7365 50 128620 3.5 1518168132
## 7366 50 128695 2.5 1514240283
## 7367 50 134170 2.5 1514239803
## 7368 50 134515 3.0 1514240363
## 7369 50 135143 2.0 1514239413
## 7370 50 135456 3.0 1514240152
## 7371 50 135887 1.0 1514239519
## 7372 50 136018 2.0 1514239847
## 7373 50 136020 2.0 1517954715
## 7374 50 136305 1.0 1518168422
## 7375 50 136564 2.5 1518168246
## 7376 50 136864 1.5 1514239425
## 7377 50 137857 2.0 1514239521
## 7378 50 138208 2.5 1514239906
## 7379 50 139385 2.5 1514239112
## 7380 50 139644 3.0 1527108261
## 7381 50 140928 2.5 1514239918
## 7382 50 142074 1.5 1527108043
## 7383 50 142448 2.0 1527108368
## 7384 50 142602 1.0 1514240284
## 7385 50 142961 2.5 1518168348
## 7386 50 142997 2.0 1514239826
## 7387 50 143859 2.0 1514239713
## 7388 50 143969 1.0 1514240057
## 7389 50 148626 3.0 1514239107
## 7390 50 149406 2.0 1514239641
## 7391 50 151759 2.5 1514240106
## 7392 50 152081 2.5 1514239052
## 7393 50 156607 1.0 1514240000
## 7394 50 158238 3.0 1514239478
## 7395 50 160569 1.0 1514240023
## 7396 50 164280 3.5 1529600343
## 7397 50 165969 3.5 1514891256
## 7398 50 167370 1.5 1514239954
## 7399 50 168254 1.5 1514239909
## 7400 50 168492 3.5 1527108487
## 7401 50 170705 3.5 1514498530
## 7402 50 170875 1.0 1514498060
## 7403 50 171701 3.5 1515615279
## 7404 50 171759 3.0 1514240171
## 7405 50 172013 3.0 1514240413
## 7406 50 172461 3.0 1514240348
## 7407 50 174055 2.5 1518168647
## 7408 50 174141 3.5 1524697215
## 7409 50 174403 2.5 1527542476
## 7410 50 174737 3.0 1514240504
## 7411 50 175485 0.5 1514240073
## 7412 50 175661 1.5 1514240027
## 7413 50 175693 2.5 1527542462
## 7414 50 175705 3.5 1514240480
## 7415 50 175707 3.0 1514240513
## 7416 50 175743 3.0 1514240506
## 7417 50 175781 3.0 1514240519
## 7418 50 176101 1.0 1514498012
## 7419 50 176371 3.0 1514239772
## 7420 50 179073 3.0 1514240525
## 7421 50 188301 3.0 1533302277
## 7422 50 190183 3.5 1533302021
## 7423 51 2 4.5 1230932741
## 7424 51 3 4.0 1230932736
## 7425 51 7 4.0 1230932700
## 7426 51 36 3.0 1230929322
## 7427 51 65 3.5 1230930652
## 7428 51 70 5.0 1230932691
## 7429 51 76 5.0 1230930644
## 7430 51 93 3.0 1230931640
## 7431 51 111 5.0 1230929314
## 7432 51 141 3.5 1230931631
## 7433 51 170 4.0 1230932681
## 7434 51 177 4.0 1230930634
## 7435 51 186 3.5 1230932673
## 7436 51 230 2.5 1230928814
## 7437 51 236 5.0 1230929830
## 7438 51 247 5.0 1230928802
## 7439 51 260 5.0 1230931614
## 7440 51 316 4.5 1230931604
## 7441 51 317 3.5 1230932640
## 7442 51 327 1.5 1230929812
## 7443 51 333 2.0 1230929800
## 7444 51 339 4.0 1230929304
## 7445 51 344 3.0 1230929299
## 7446 51 377 3.0 1230931596
## 7447 51 380 4.0 1230931592
## 7448 51 383 3.0 1230930616
## 7449 51 387 3.5 1230932629
## 7450 51 433 3.5 1230931581
## 7451 51 442 1.5 1230932616
## 7452 51 466 3.5 1230929794
## 7453 51 468 4.5 1230929787
## 7454 51 479 2.0 1230931569
## 7455 51 482 3.5 1230930599
## 7456 51 497 5.0 1230929781
## 7457 51 505 4.0 1230931558
## 7458 51 520 4.5 1230929776
## 7459 51 522 3.5 1230931540
## 7460 51 527 3.0 1230929292
## 7461 51 551 5.0 1230932599
## 7462 51 555 4.5 1230932592
## 7463 51 589 5.0 1230929287
## 7464 51 593 5.0 1230931534
## 7465 51 597 3.5 1230931528
## 7466 51 610 4.0 1230932587
## 7467 51 616 4.0 1230932567
## 7468 51 653 4.0 1230932558
## 7469 51 661 3.0 1230932551
## 7470 51 708 4.0 1230929765
## 7471 51 719 4.5 1230932541
## 7472 51 781 4.0 1230931517
## 7473 51 804 5.0 1230931511
## 7474 51 829 4.0 1230931509
## 7475 51 849 4.5 1230928795
## 7476 51 858 3.5 1230931501
## 7477 51 912 3.0 1230929282
## 7478 51 919 2.0 1230932502
## 7479 51 924 5.0 1230929275
## 7480 51 934 1.0 1230930567
## 7481 51 953 5.0 1230929755
## 7482 51 965 5.0 1230930560
## 7483 51 1009 3.5 1230930546
## 7484 51 1011 1.5 1230931465
## 7485 51 1014 0.5 1230931457
## 7486 51 1024 4.0 1230931449
## 7487 51 1033 4.0 1230930537
## 7488 51 1079 5.0 1230929741
## 7489 51 1088 4.0 1230929736
## 7490 51 1090 3.0 1230932491
## 7491 51 1093 5.0 1230928832
## 7492 51 1186 4.5 1230929701
## 7493 51 1196 5.0 1230929268
## 7494 51 1200 5.0 1230929263
## 7495 51 1201 4.0 1230932475
## 7496 51 1214 5.0 1230929258
## 7497 51 1215 5.0 1230929695
## 7498 51 1224 5.0 1230930522
## 7499 51 1235 5.0 1230929688
## 7500 51 1243 5.0 1230930514
## 7501 51 1244 4.0 1230932469
## 7502 51 1249 5.0 1230932464
## 7503 51 1257 4.5 1231040856
## 7504 51 1267 4.0 1230929680
## 7505 51 1272 5.0 1230928767
## 7506 51 1276 5.0 1230929673
## 7507 51 1287 3.5 1230929668
## 7508 51 1298 5.0 1230930504
## 7509 51 1301 4.5 1230930497
## 7510 51 1302 5.0 1230929661
## 7511 51 1304 5.0 1230929656
## 7512 51 1350 4.5 1230930492
## 7513 51 1371 5.0 1230929650
## 7514 51 1373 5.0 1230928837
## 7515 51 1391 4.5 1230929645
## 7516 51 1407 0.5 1230929638
## 7517 51 1457 3.5 1230930478
## 7518 51 1479 4.5 1230928786
## 7519 51 1499 0.5 1230930470
## 7520 51 1500 5.0 1230932420
## 7521 51 1580 5.0 1230929254
## 7522 51 1591 1.0 1230930464
## 7523 51 1608 3.0 1230929633
## 7524 51 1639 5.0 1230929619
## 7525 51 1641 4.0 1230932408
## 7526 51 1645 5.0 1230932402
## 7527 51 1663 5.0 1230928790
## 7528 51 1665 4.0 1230930455
## 7529 51 1674 5.0 1230929615
## 7530 51 1688 3.0 1230930449
## 7531 51 1690 3.0 1230932397
## 7532 51 1748 4.0 1230932388
## 7533 51 1753 3.5 1230931407
## 7534 51 1777 3.0 1230932383
## 7535 51 1784 5.0 1230932378
## 7536 51 1792 0.5 1230930437
## 7537 51 1805 0.5 1230929609
## 7538 51 1834 4.0 1230930432
## 7539 51 1845 5.0 1230930426
## 7540 51 1873 5.0 1230930420
## 7541 51 1918 3.0 1230932352
## 7542 51 1953 5.0 1230929606
## 7543 51 1967 5.0 1230929599
## 7544 51 1991 3.0 1230931352
## 7545 51 1994 4.0 1230932345
## 7546 51 1997 5.0 1230932340
## 7547 51 1999 5.0 1230931346
## 7548 51 2011 3.5 1230929592
## 7549 51 2015 4.0 1230930402
## 7550 51 2023 3.5 1230932337
## 7551 51 2033 4.5 1230931338
## 7552 51 2054 3.0 1230929585
## 7553 51 2060 3.5 1230931330
## 7554 51 2097 2.5 1230931323
## 7555 51 2100 4.0 1230932329
## 7556 51 2123 3.0 1230931298
## 7557 51 2124 4.0 1230929579
## 7558 51 2133 3.5 1230930392
## 7559 51 2137 3.0 1230930384
## 7560 51 2140 5.0 1230928861
## 7561 51 2148 4.0 1230931293
## 7562 51 2150 3.0 1230932314
## 7563 51 2151 3.5 1230931287
## 7564 51 2159 4.0 1230931281
## 7565 51 2167 4.0 1230929572
## 7566 51 2169 4.0 1230931276
## 7567 51 2183 5.0 1230931271
## 7568 51 2194 5.0 1230929566
## 7569 51 2248 5.0 1230932301
## 7570 51 2249 5.0 1230931264
## 7571 51 2265 2.5 1230932296
## 7572 51 2279 1.5 1230930373
## 7573 51 2282 4.5 1230930367
## 7574 51 2291 4.0 1230932279
## 7575 51 2301 5.0 1230930362
## 7576 51 2302 5.0 1230929558
## 7577 51 2321 5.0 1230932267
## 7578 51 2322 4.0 1230931259
## 7579 51 2356 3.5 1230931244
## 7580 51 2363 2.5 1230931235
## 7581 51 2371 3.5 1230930355
## 7582 51 2374 4.0 1230931226
## 7583 51 2375 5.0 1230930352
## 7584 51 2376 3.5 1230930346
## 7585 51 2379 2.0 1230930339
## 7586 51 2380 1.5 1230930332
## 7587 51 2391 4.5 1230932259
## 7588 51 2393 0.5 1230928774
## 7589 51 2402 1.0 1230930322
## 7590 51 2407 3.5 1230932254
## 7591 51 2408 3.0 1230931220
## 7592 51 2420 3.0 1230932245
## 7593 51 2454 4.0 1230930306
## 7594 51 2455 4.5 1230929555
## 7595 51 2470 4.0 1230932235
## 7596 51 2490 3.0 1230929547
## 7597 51 2524 3.5 1230931190
## 7598 51 2533 3.5 1230930298
## 7599 51 2554 4.0 1230932214
## 7600 51 2580 5.0 1230932203
## 7601 51 2587 3.0 1230932199
## 7602 51 2598 3.5 1230930292
## 7603 51 2605 4.0 1230928779
## 7604 51 2613 5.0 1230931181
## 7605 51 2615 4.5 1230931177
## 7606 51 2617 0.5 1230932189
## 7607 51 2634 3.0 1230932179
## 7608 51 2641 1.5 1230932173
## 7609 51 2644 3.5 1230931171
## 7610 51 2661 3.0 1230932166
## 7611 51 2664 4.0 1230930279
## 7612 51 2668 2.5 1230931164
## 7613 51 2683 0.5 1230929249
## 7614 51 2701 0.5 1230929541
## 7615 51 2724 3.5 1230929521
## 7616 51 2746 3.0 1230928764
## 7617 51 2752 2.5 1230931151
## 7618 51 2762 5.0 1230929240
## 7619 51 2788 5.0 1230930267
## 7620 51 2791 4.0 1230932160
## 7621 51 2797 5.0 1230929516
## 7622 51 2802 3.0 1230931142
## 7623 51 2808 2.5 1230930262
## 7624 51 2826 3.5 1230929509
## 7625 51 2836 4.0 1230931123
## 7626 51 2871 4.5 1230932150
## 7627 51 2872 4.0 1230930257
## 7628 51 2901 5.0 1230931113
## 7629 51 2916 1.5 1230929500
## 7630 51 2942 2.0 1230930252
## 7631 51 2951 4.0 1230930246
## 7632 51 2978 4.0 1230931108
## 7633 51 2995 3.5 1230930241
## 7634 51 3070 5.0 1230930224
## 7635 51 3082 3.5 1230932124
## 7636 51 3107 5.0 1230928844
## 7637 51 3108 5.0 1230932119
## 7638 51 3115 5.0 1230932108
## 7639 51 3148 5.0 1230930214
## 7640 51 3186 4.5 1230930213
## 7641 51 3219 4.0 1230930205
## 7642 51 3253 0.5 1230932099
## 7643 51 3255 3.0 1230929494
## 7644 51 3257 2.5 1230930198
## 7645 51 3274 2.5 1230930190
## 7646 51 3361 5.0 1230928856
## 7647 51 3363 4.5 1230929491
## 7648 51 3388 5.0 1230931053
## 7649 51 3396 3.5 1230930181
## 7650 51 3421 5.0 1230932084
## 7651 51 3430 4.0 1230931047
## 7652 51 3471 5.0 1230929483
## 7653 51 3481 5.0 1230929476
## 7654 51 3489 5.0 1230929471
## 7655 51 3501 4.0 1230932079
## 7656 51 3614 3.5 1230931040
## 7657 51 3624 2.5 1230929466
## 7658 51 3638 3.5 1230930158
## 7659 51 3671 5.0 1230929460
## 7660 51 3681 4.0 1230930150
## 7661 51 3683 5.0 1230930144
## 7662 51 3763 4.0 1230930141
## 7663 51 3785 3.5 1230929455
## 7664 51 3799 0.5 1231041340
## 7665 51 3809 3.0 1230930133
## 7666 51 3814 5.0 1230931031
## 7667 51 3863 5.0 1230928851
## 7668 51 3868 3.0 1230930127
## 7669 51 3917 5.0 1230931019
## 7670 51 3918 5.0 1230931003
## 7671 51 3949 5.0 1230932031
## 7672 51 3959 4.5 1230930118
## 7673 51 3968 3.0 1230930111
## 7674 51 3969 5.0 1230930106
## 7675 51 3994 5.0 1230929449
## 7676 51 4002 5.0 1230930100
## 7677 51 4014 5.0 1230929444
## 7678 51 4018 3.0 1230929434
## 7679 51 4034 5.0 1230929425
## 7680 51 4041 3.5 1230930093
## 7681 51 4054 2.0 1230930087
## 7682 51 4148 0.5 1230930069
## 7683 51 4215 3.5 1230930980
## 7684 51 4238 4.5 1230930062
## 7685 51 4241 0.5 1231041335
## 7686 51 4255 4.0 1230930967
## 7687 51 4262 5.0 1230929420
## 7688 51 4267 4.5 1230930972
## 7689 51 4270 0.5 1230930053
## 7690 51 4291 2.0 1230930955
## 7691 51 4293 3.0 1230932003
## 7692 51 4308 0.5 1230929415
## 7693 51 4327 4.0 1230930044
## 7694 51 4340 2.5 1230930946
## 7695 51 4344 3.0 1230930034
## 7696 51 4437 5.0 1230931996
## 7697 51 4447 3.0 1230929406
## 7698 51 4464 4.0 1230930939
## 7699 51 4496 3.5 1230931991
## 7700 51 4508 3.5 1230930925
## 7701 51 4518 3.5 1230931983
## 7702 51 4591 3.0 1230931975
## 7703 51 4713 5.0 1230930916
## 7704 51 4855 4.5 1230930029
## 7705 51 4865 5.0 1230930023
## 7706 51 4876 3.0 1230930898
## 7707 51 4878 4.0 1230929401
## 7708 51 4886 4.0 1230929389
## 7709 51 4971 4.0 1230931950
## 7710 51 4992 4.5 1230930016
## 7711 51 5040 3.0 1230930881
## 7712 51 5060 4.5 1230931941
## 7713 51 5171 3.5 1230930003
## 7714 51 5254 2.5 1230929994
## 7715 51 5339 3.5 1230931932
## 7716 51 5377 5.0 1230931924
## 7717 51 5378 1.5 1230929377
## 7718 51 5459 3.5 1230929364
## 7719 51 5481 4.0 1230931916
## 7720 51 5505 4.0 1230930858
## 7721 51 5568 4.0 1230931907
## 7722 51 5620 3.5 1230929978
## 7723 51 5672 0.5 1231041217
## 7724 51 5712 3.5 1230931876
## 7725 51 5816 5.0 1230931868
## 7726 51 5956 5.0 1230929970
## 7727 51 6323 4.5 1230929957
## 7728 51 6371 0.5 1231041221
## 7729 51 6502 5.0 1230929358
## 7730 51 6659 4.0 1230929951
## 7731 51 6708 5.0 1230929946
## 7732 51 6711 4.5 1230929352
## 7733 51 6786 3.0 1230931832
## 7734 51 6793 2.0 1230930814
## 7735 51 6807 5.0 1230929347
## 7736 51 6873 5.0 1230930808
## 7737 51 6880 0.5 1230930802
## 7738 51 6934 0.5 1230929340
## 7739 51 7000 5.0 1230931824
## 7740 51 7004 3.0 1230929941
## 7741 51 7007 3.5 1230930787
## 7742 51 7040 2.5 1230931819
## 7743 51 7147 4.0 1230931793
## 7744 51 7160 5.0 1230929936
## 7745 51 7163 2.5 1230930775
## 7746 51 7254 4.5 1230929929
## 7747 51 7438 5.0 1230931785
## 7748 51 7569 5.0 1230930769
## 7749 51 7757 3.5 1230931776
## 7750 51 7983 5.0 1230931767
## 7751 51 8464 5.0 1230929921
## 7752 51 8533 5.0 1230930740
## 7753 51 8623 3.5 1230930734
## 7754 51 8784 4.0 1230931760
## 7755 51 8874 5.0 1230929328
## 7756 51 26680 3.5 1230931737
## 7757 51 33166 2.5 1230929901
## 7758 51 33615 3.5 1230930714
## 7759 51 34338 5.0 1230930704
## 7760 51 35836 3.5 1230929893
## 7761 51 39183 5.0 1230929886
## 7762 51 39414 4.0 1230931702
## 7763 51 42723 5.0 1230931696
## 7764 51 45666 3.5 1230931675
## 7765 51 47997 5.0 1230931671
## 7766 51 48774 5.0 1230929871
## 7767 51 48877 5.0 1230931664
## 7768 51 51662 5.0 1230932776
## 7769 51 52722 3.5 1230930672
## 7770 51 52973 4.5 1230929864
## 7771 51 53953 3.5 1230931656
## 7772 51 54001 5.0 1230929858
## 7773 51 54286 1.5 1230929853
## 7774 51 56367 5.0 1230932765
## 7775 51 57532 3.5 1231041324
## 7776 51 58559 4.0 1230932758
## 7777 51 59306 0.5 1231041354
## 7778 51 59615 5.0 1230930660
## 7779 51 59900 3.0 1230932750
## 7780 51 60074 5.0 1230931645
## 7781 51 60487 5.0 1231040478
## 7782 52 150 4.0 1468051525
## 7783 52 260 4.0 1468051102
## 7784 52 293 4.0 1468051256
## 7785 52 318 5.0 1468051091
## 7786 52 356 5.0 1468051518
## 7787 52 364 5.0 1468051398
## 7788 52 588 5.0 1468051449
## 7789 52 733 5.0 1468051359
## 7790 52 1196 4.0 1468051103
## 7791 52 1198 3.5 1468051097
## 7792 52 1210 5.0 1468051109
## 7793 52 1704 5.0 1468051529
## 7794 52 1784 4.0 1468051563
## 7795 52 1923 5.0 1468051573
## 7796 52 2324 4.0 1468051798
## 7797 52 2571 5.0 1468051094
## 7798 52 2959 4.5 1468051516
## 7799 52 3753 4.0 1468051129
## 7800 52 3996 4.5 1468051567
## 7801 52 4901 5.0 1468051636
## 7802 52 5010 4.0 1468051755
## 7803 52 5064 5.0 1468051349
## 7804 52 5418 5.0 1468051305
## 7805 52 5669 4.5 1468051488
## 7806 52 6874 4.5 1468051320
## 7807 52 7153 5.0 1468051114
## 7808 52 7361 3.5 1468051580
## 7809 52 7438 4.5 1468051321
## 7810 52 7445 5.0 1468051258
## 7811 52 8464 4.0 1468051483
## 7812 52 8665 5.0 1468051306
## 7813 52 8874 5.0 1468051444
## 7814 52 8961 4.0 1468051403
## 7815 52 30749 5.0 1468051746
## 7816 52 31685 3.0 1468051951
## 7817 52 31696 4.5 1468051945
## 7818 52 33646 3.0 1468052132
## 7819 52 34405 4.5 1468051595
## 7820 52 34437 3.0 1468052019
## 7821 52 35836 4.5 1468051454
## 7822 52 36529 5.0 1468051896
## 7823 52 37733 5.0 1468051990
## 7824 52 39183 4.0 1468051935
## 7825 52 39444 5.0 1468052169
## 7826 52 40583 5.0 1468052021
## 7827 52 44191 5.0 1468051317
## 7828 52 44665 4.0 1468051544
## 7829 52 45447 3.5 1468051931
## 7830 52 46976 5.0 1468051892
## 7831 52 47099 4.0 1468051961
## 7832 52 47200 5.0 1468052042
## 7833 52 47610 5.0 1468051565
## 7834 52 47997 5.0 1468052046
## 7835 52 48304 5.0 1468052005
## 7836 52 48516 4.0 1468051514
## 7837 52 48738 4.5 1468051968
## 7838 52 48774 3.5 1468051522
## 7839 52 49272 5.0 1468051362
## 7840 52 49530 5.0 1468051532
## 7841 52 49651 4.5 1468052156
## 7842 52 50794 4.5 1468052163
## 7843 52 50872 4.0 1468051400
## 7844 52 51077 3.0 1468052071
## 7845 52 51255 5.0 1468051447
## 7846 52 51662 5.0 1468051345
## 7847 52 52245 4.0 1468052054
## 7848 52 52281 4.0 1468051988
## 7849 52 52328 5.0 1468052016
## 7850 52 52973 4.5 1468051570
## 7851 52 54286 5.0 1468051283
## 7852 52 54503 4.0 1468051751
## 7853 52 54736 5.0 1468052152
## 7854 52 54995 5.0 1468052032
## 7855 52 54997 5.0 1468051963
## 7856 52 54999 5.0 1468052123
## 7857 52 55118 5.0 1468052001
## 7858 52 55276 5.0 1468052011
## 7859 52 55363 3.0 1468052080
## 7860 52 55765 4.0 1468051937
## 7861 52 56801 3.0 1468052142
## 7862 52 57368 5.0 1468051980
## 7863 52 57528 3.0 1468052111
## 7864 52 57669 5.0 1468051901
## 7865 52 58559 5.0 1468051847
## 7866 52 58998 5.0 1468051557
## 7867 52 59369 4.0 1468051356
## 7868 52 59784 4.0 1468051905
## 7869 52 59900 3.0 1468052115
## 7870 52 60069 4.0 1468051396
## 7871 52 60684 4.0 1468051599
## 7872 52 61132 5.0 1468051981
## 7873 52 62374 4.0 1468052136
## 7874 52 63082 5.0 1468051575
## 7875 52 63113 4.0 1468051972
## 7876 52 64620 4.0 1468052051
## 7877 52 65514 3.5 1468051786
## 7878 52 68358 5.0 1468051605
## 7879 52 68954 4.0 1468051394
## 7880 52 69122 5.0 1468051452
## 7881 52 69481 4.0 1468051955
## 7882 52 70286 5.0 1468051616
## 7883 52 71535 4.5 1468051464
## 7884 52 72998 4.5 1468051610
## 7885 52 73017 5.0 1468051458
## 7886 52 74458 4.5 1468051642
## 7887 52 76093 5.0 1468051415
## 7888 52 79091 4.0 1468051426
## 7889 52 79132 5.0 1468051284
## 7890 52 81847 4.0 1468051408
## 7891 52 86892 5.0 1468051226
## 7892 52 89745 5.0 1468051351
## 7893 52 93721 5.0 1468051494
## 7894 52 93838 3.5 1468051249
## 7895 52 95167 5.0 1468051421
## 7896 52 96079 3.0 1468051310
## 7897 52 96811 5.0 1468051259
## 7898 52 98809 3.5 1468051314
## 7899 52 110501 5.0 1468051253
## 7900 52 112138 5.0 1468051456
## 7901 52 112175 4.5 1468051417
## 7902 52 112852 5.0 1468051607
## 7903 52 119145 4.0 1468051301
## 7904 52 122882 5.0 1468051298
## 7905 52 122886 5.0 1468051179
## 7906 52 122900 5.0 1468051323
## 7907 52 122904 5.0 1468051176
## 7908 52 134130 5.0 1468051169
## 7909 52 134368 4.5 1468051467
## 7910 52 134853 5.0 1468051390
## 7911 52 152081 5.0 1468051170
## 7912 53 203 5.0 1237748081
## 7913 53 249 5.0 1237748109
## 7914 53 381 5.0 1237748115
## 7915 53 413 5.0 1237748065
## 7916 53 481 5.0 1237748105
## 7917 53 748 5.0 1237748062
## 7918 53 880 5.0 1237748077
## 7919 53 916 5.0 1237748102
## 7920 53 922 5.0 1237748084
## 7921 53 1049 5.0 1237748112
## 7922 53 1100 5.0 1237748099
## 7923 53 1125 5.0 1237748096
## 7924 53 1256 5.0 1237748093
## 7925 53 1298 5.0 1237748074
## 7926 53 1441 5.0 1237748056
## 7927 53 1982 5.0 1237748071
## 7928 53 2616 5.0 1237748059
## 7929 53 2686 5.0 1237748068
## 7930 53 3100 5.0 1237748090
## 7931 53 4019 5.0 1237748087
## 7932 54 1 3.0 830247330
## 7933 54 17 3.0 830248246
## 7934 54 21 3.0 839921390
## 7935 54 32 3.0 830247417
## 7936 54 47 3.0 839921084
## 7937 54 50 3.0 830248246
## 7938 54 110 3.0 830247832
## 7939 54 150 3.0 830247106
## 7940 54 161 3.0 830247358
## 7941 54 194 3.0 830247865
## 7942 54 205 3.0 830247590
## 7943 54 288 3.0 830247887
## 7944 54 296 3.0 830247106
## 7945 54 318 4.0 830247358
## 7946 54 329 3.0 830247389
## 7947 54 339 3.0 830247389
## 7948 54 356 4.0 839921027
## 7949 54 377 3.0 839921390
## 7950 54 410 3.0 839921084
## 7951 54 420 2.0 839921390
## 7952 54 454 3.0 839921084
## 7953 54 457 3.0 839920981
## 7954 54 469 3.0 839923068
## 7955 54 480 3.0 839921084
## 7956 54 500 3.0 839921452
## 7957 54 586 2.0 839921452
## 7958 54 588 3.0 830247330
## 7959 54 589 3.0 839921161
## 7960 54 590 3.0 830247106
## 7961 54 592 3.0 830247106
## 7962 54 593 4.0 839920981
## 7963 54 595 3.0 830247389
## 7964 54 639 3.0 839919973
## 7965 55 186 0.5 1312747648
## 7966 55 673 0.5 1312747701
## 7967 55 1275 4.0 1312747661
## 7968 55 1293 4.0 1312747695
## 7969 55 1357 0.5 1312747730
## 7970 55 1947 0.5 1312747732
## 7971 55 2005 2.0 1312747709
## 7972 55 2100 0.5 1312747638
## 7973 55 2278 3.0 1312747714
## 7974 55 2393 0.5 1312747735
## 7975 55 2407 3.0 1312747682
## 7976 55 2427 0.5 1312747741
## 7977 55 2490 3.5 1312747824
## 7978 55 2542 5.0 1312748419
## 7979 55 2580 2.5 1312747818
## 7980 55 2763 2.5 1312747620
## 7981 55 2890 4.0 1312747625
## 7982 55 3101 1.0 1312747631
## 7983 55 3275 5.0 1312749156
## 7984 55 4011 5.0 1312748875
## 7985 55 27831 5.0 1312748862
## 7986 55 33166 4.5 1312748156
## 7987 55 44665 4.5 1312748181
## 7988 55 48516 5.0 1312748410
## 7989 55 54286 4.0 1312748147
## 7990 56 10 4.0 835799162
## 7991 56 11 4.0 835799366
## 7992 56 19 5.0 835799219
## 7993 56 39 4.0 835799274
## 7994 56 47 5.0 835799219
## 7995 56 69 4.0 835799457
## 7996 56 110 4.0 835799188
## 7997 56 153 4.0 835799081
## 7998 56 160 3.0 835799274
## 7999 56 161 4.0 835799140
## 8000 56 165 3.0 835799081
## 8001 56 173 3.0 835799330
## 8002 56 185 3.0 835799162
## 8003 56 196 3.0 835799366
## 8004 56 208 4.0 835799162
## 8005 56 225 4.0 835799219
## 8006 56 231 5.0 835799115
## 8007 56 253 3.0 835799162
## 8008 56 288 3.0 835799188
## 8009 56 292 4.0 835799140
## 8010 56 296 4.0 835799034
## 8011 56 315 4.0 835799330
## 8012 56 316 3.0 835799115
## 8013 56 317 4.0 835799253
## 8014 56 318 4.0 835799115
## 8015 56 329 3.0 835799115
## 8016 56 333 3.0 835799427
## 8017 56 344 5.0 835799081
## 8018 56 349 4.0 835799081
## 8019 56 356 5.0 835799274
## 8020 56 364 5.0 835799253
## 8021 56 367 3.0 835799295
## 8022 56 370 3.0 835799457
## 8023 56 380 4.0 835799034
## 8024 56 410 3.0 835799188
## 8025 56 420 3.0 835799253
## 8026 56 434 3.0 835799140
## 8027 56 454 3.0 835799253
## 8028 56 457 4.0 835799162
## 8029 56 480 5.0 835799295
## 8030 56 493 4.0 835799427
## 8031 56 589 4.0 835799330
## 8032 56 592 3.0 835799034
## 8033 56 593 5.0 835799139
## 8034 56 733 4.0 835799427
## 8035 56 786 4.0 835799457
## 8036 57 1 5.0 965796031
## 8037 57 6 3.0 972173446
## 8038 57 10 3.0 965798286
## 8039 57 11 3.0 965797264
## 8040 57 21 3.0 965796969
## 8041 57 32 4.0 965798685
## 8042 57 39 3.0 965796392
## 8043 57 50 5.0 965796686
## 8044 57 52 3.0 969753586
## 8045 57 65 1.0 965797815
## 8046 57 69 4.0 965797105
## 8047 57 70 1.0 965797305
## 8048 57 89 2.0 972174827
## 8049 57 95 3.0 969754664
## 8050 57 104 2.0 972174279
## 8051 57 107 3.0 965797786
## 8052 57 110 4.0 965799491
## 8053 57 112 4.0 969754432
## 8054 57 141 4.0 965797105
## 8055 57 150 3.0 972172393
## 8056 57 151 3.0 965799554
## 8057 57 153 2.0 969753973
## 8058 57 158 1.0 972175275
## 8059 57 160 1.0 969754090
## 8060 57 162 4.0 972172280
## 8061 57 171 4.0 965796904
## 8062 57 185 2.0 965798952
## 8063 57 198 3.0 965798823
## 8064 57 208 1.0 969754810
## 8065 57 224 4.0 965797175
## 8066 57 227 1.0 969754641
## 8067 57 234 3.0 965797839
## 8068 57 235 5.0 965796869
## 8069 57 260 5.0 965798203
## 8070 57 265 2.0 972172342
## 8071 57 272 3.0 972172467
## 8072 57 296 3.0 972172502
## 8073 57 303 2.0 965798410
## 8074 57 305 3.0 972175617
## 8075 57 316 3.0 965798870
## 8076 57 329 4.0 969753849
## 8077 57 349 4.0 965798373
## 8078 57 355 1.0 965797786
## 8079 57 356 4.0 965795650
## 8080 57 357 4.0 969753458
## 8081 57 364 4.0 965796140
## 8082 57 367 3.0 965797050
## 8083 57 377 2.0 969754312
## 8084 57 379 1.0 972175617
## 8085 57 380 4.0 965797484
## 8086 57 382 2.0 972175120
## 8087 57 410 2.0 972174771
## 8088 57 417 2.0 965797175
## 8089 57 421 3.0 965798269
## 8090 57 431 4.0 972173793
## 8091 57 434 2.0 965798455
## 8092 57 440 4.0 965797005
## 8093 57 442 2.0 965798898
## 8094 57 457 5.0 965796698
## 8095 57 471 3.0 969753604
## 8096 57 473 2.0 965799622
## 8097 57 474 3.0 969754942
## 8098 57 480 5.0 965798332
## 8099 57 485 3.0 965797759
## 8100 57 494 4.0 972174952
## 8101 57 497 3.0 965796990
## 8102 57 500 3.0 965797433
## 8103 57 515 4.0 972173777
## 8104 57 516 2.0 965797502
## 8105 57 518 2.0 972175291
## 8106 57 520 3.0 972175822
## 8107 57 527 5.0 965799430
## 8108 57 537 3.0 965797376
## 8109 57 539 3.0 965797340
## 8110 57 541 5.0 965796471
## 8111 57 551 4.0 969753400
## 8112 57 552 2.0 965797549
## 8113 57 553 4.0 965798574
## 8114 57 587 2.0 965797579
## 8115 57 588 4.0 965796062
## 8116 57 589 4.0 965798703
## 8117 57 590 3.0 965798313
## 8118 57 592 4.0 969753766
## 8119 57 593 5.0 965796656
## 8120 57 594 4.0 965796004
## 8121 57 595 5.0 965796080
## 8122 57 596 4.0 965796004
## 8123 57 597 3.0 972174733
## 8124 57 608 4.0 965796686
## 8125 57 610 3.0 965798313
## 8126 57 648 4.0 965795589
## 8127 57 653 3.0 965798432
## 8128 57 671 3.0 965796904
## 8129 57 673 1.0 965797786
## 8130 57 674 4.0 965798849
## 8131 57 707 2.0 972175326
## 8132 57 720 5.0 965796004
## 8133 57 728 3.0 965797129
## 8134 57 733 3.0 965798313
## 8135 57 736 2.0 969753871
## 8136 57 745 4.0 965796004
## 8137 57 748 2.0 965798916
## 8138 57 750 5.0 965795892
## 8139 57 761 2.0 969754038
## 8140 57 762 2.0 965797815
## 8141 57 778 4.0 972173655
## 8142 57 780 3.0 965799571
## 8143 57 781 4.0 972174297
## 8144 57 783 3.0 972175105
## 8145 57 786 2.0 969754753
## 8146 57 810 1.0 965797839
## 8147 57 838 3.0 965797105
## 8148 57 849 2.0 965799010
## 8149 57 851 1.0 972174771
## 8150 57 858 5.0 965795615
## 8151 57 861 4.0 969754432
## 8152 57 866 4.0 965796716
## 8153 57 880 3.0 965799044
## 8154 57 892 3.0 965796392
## 8155 57 897 4.0 965798269
## 8156 57 899 5.0 965796563
## 8157 57 903 4.0 965795785
## 8158 57 904 5.0 965795803
## 8159 57 908 5.0 965795827
## 8160 57 911 4.0 965796793
## 8161 57 912 5.0 965796541
## 8162 57 913 5.0 965795851
## 8163 57 915 5.0 965796333
## 8164 57 920 4.0 965796578
## 8165 57 922 4.0 965795803
## 8166 57 923 5.0 965795758
## 8167 57 924 5.0 965796656
## 8168 57 933 4.0 965796716
## 8169 57 940 4.0 969753691
## 8170 57 942 4.0 965796495
## 8171 57 951 4.0 969753168
## 8172 57 955 5.0 965795869
## 8173 57 969 4.0 965796563
## 8174 57 991 3.0 965799536
## 8175 57 994 4.0 972172431
## 8176 57 999 2.0 972174733
## 8177 57 1027 1.0 972175258
## 8178 57 1028 4.0 969753499
## 8179 57 1030 3.0 969753973
## 8180 57 1032 4.0 965796031
## 8181 57 1036 4.0 969754215
## 8182 57 1047 4.0 969755119
## 8183 57 1049 3.0 965795615
## 8184 57 1059 3.0 972173685
## 8185 57 1060 3.0 972173722
## 8186 57 1079 3.0 965796333
## 8187 57 1080 4.0 969753218
## 8188 57 1092 2.0 969755101
## 8189 57 1094 3.0 965796593
## 8190 57 1100 2.0 969754781
## 8191 57 1101 4.0 969754482
## 8192 57 1127 4.0 965798155
## 8193 57 1129 3.0 965798130
## 8194 57 1136 5.0 965796238
## 8195 57 1148 5.0 965796004
## 8196 57 1179 2.0 972172824
## 8197 57 1183 4.0 972174580
## 8198 57 1184 3.0 972174314
## 8199 57 1193 4.0 965795928
## 8200 57 1196 4.0 965798130
## 8201 57 1197 5.0 965796373
## 8202 57 1198 5.0 965798130
## 8203 57 1200 4.0 965799430
## 8204 57 1201 5.0 965798542
## 8205 57 1204 5.0 965795827
## 8206 57 1206 4.0 965798685
## 8207 57 1208 4.0 965799430
## 8208 57 1210 4.0 965798130
## 8209 57 1212 5.0 965796633
## 8210 57 1220 4.0 969753346
## 8211 57 1221 5.0 965795745
## 8212 57 1222 4.0 969754290
## 8213 57 1223 4.0 965796255
## 8214 57 1226 4.0 969753168
## 8215 57 1234 5.0 969753201
## 8216 57 1240 4.0 965796733
## 8217 57 1242 4.0 965799473
## 8218 57 1243 5.0 965796886
## 8219 57 1248 5.0 965796471
## 8220 57 1249 4.0 969754942
## 8221 57 1250 5.0 965799430
## 8222 57 1252 5.0 965796471
## 8223 57 1254 4.0 965795869
## 8224 57 1256 5.0 965795827
## 8225 57 1257 3.0 969753400
## 8226 57 1265 5.0 965796352
## 8227 57 1266 4.0 965798574
## 8228 57 1268 3.0 972174580
## 8229 57 1269 4.0 965796373
## 8230 57 1270 4.0 965798685
## 8231 57 1274 3.0 965798228
## 8232 57 1275 5.0 965798172
## 8233 57 1276 5.0 965795905
## 8234 57 1277 3.0 965796563
## 8235 57 1278 4.0 965796278
## 8236 57 1282 4.0 965796031
## 8237 57 1283 5.0 965798574
## 8238 57 1284 5.0 965796495
## 8239 57 1285 4.0 965798060
## 8240 57 1287 5.0 965798228
## 8241 57 1288 5.0 965796302
## 8242 57 1291 4.0 965798248
## 8243 57 1303 3.0 965798228
## 8244 57 1304 5.0 965796238
## 8245 57 1320 3.0 965798932
## 8246 57 1356 4.0 965798785
## 8247 57 1370 2.0 972173722
## 8248 57 1371 2.0 965798898
## 8249 57 1372 4.0 965798806
## 8250 57 1373 2.0 965798974
## 8251 57 1374 5.0 965798130
## 8252 57 1375 3.0 965798397
## 8253 57 1376 4.0 965798172
## 8254 57 1377 2.0 969754612
## 8255 57 1378 3.0 965798609
## 8256 57 1379 2.0 965797716
## 8257 57 1385 2.0 969754432
## 8258 57 1388 2.0 969754810
## 8259 57 1391 4.0 965798898
## 8260 57 1407 3.0 972173533
## 8261 57 1416 3.0 972175478
## 8262 57 1425 3.0 965797285
## 8263 57 1429 4.0 969754408
## 8264 57 1441 2.0 972174939
## 8265 57 1468 1.0 965797815
## 8266 57 1479 3.0 969754810
## 8267 57 1498 2.0 972172370
## 8268 57 1499 1.0 969754008
## 8269 57 1500 3.0 965796941
## 8270 57 1513 4.0 965797341
## 8271 57 1517 4.0 969753562
## 8272 57 1518 3.0 969754552
## 8273 57 1527 4.0 965798806
## 8274 57 1544 2.0 965798485
## 8275 57 1552 1.0 969753897
## 8276 57 1562 2.0 969754038
## 8277 57 1564 3.0 972172529
## 8278 57 1573 2.0 965798759
## 8279 57 1580 4.0 965797070
## 8280 57 1584 3.0 965798731
## 8281 57 1590 2.0 965798974
## 8282 57 1597 3.0 969754612
## 8283 57 1603 2.0 965798974
## 8284 57 1608 3.0 969754509
## 8285 57 1610 4.0 965796793
## 8286 57 1614 2.0 972174978
## 8287 57 1616 3.0 965799590
## 8288 57 1617 5.0 965796495
## 8289 57 1620 2.0 972174710
## 8290 57 1641 4.0 965796990
## 8291 57 1643 4.0 972172873
## 8292 57 1646 1.0 972175891
## 8293 57 1653 5.0 965798785
## 8294 57 1670 4.0 965799521
## 8295 57 1673 4.0 972173743
## 8296 57 1674 3.0 965796733
## 8297 57 1676 4.0 965798347
## 8298 57 1678 3.0 972172280
## 8299 57 1682 4.0 972172686
## 8300 57 1688 3.0 972175291
## 8301 57 1690 2.0 965798849
## 8302 57 1704 3.0 972172431
## 8303 57 1711 3.0 965797640
## 8304 57 1721 2.0 965799094
## 8305 57 1722 2.0 969754379
## 8306 57 1726 2.0 972175871
## 8307 57 1747 4.0 969753562
## 8308 57 1748 3.0 965796495
## 8309 57 1769 2.0 969754612
## 8310 57 1784 4.0 972172894
## 8311 57 1831 2.0 965798952
## 8312 57 1858 3.0 969754683
## 8313 57 1866 3.0 972175470
## 8314 57 1882 2.0 965799010
## 8315 57 1884 2.0 972175395
## 8316 57 1907 4.0 972173465
## 8317 57 1909 4.0 965798785
## 8318 57 1912 2.0 969754290
## 8319 57 1939 4.0 965799521
## 8320 57 1953 4.0 965796716
## 8321 57 1954 4.0 969754244
## 8322 57 1968 4.0 965798002
## 8323 57 2000 5.0 965798085
## 8324 57 2001 3.0 969753623
## 8325 57 2002 3.0 969754612
## 8326 57 2005 3.0 965798313
## 8327 57 2006 3.0 965798397
## 8328 57 2009 4.0 965798759
## 8329 57 2019 5.0 969754184
## 8330 57 2021 2.0 965798759
## 8331 57 2023 3.0 969754641
## 8332 57 2028 5.0 965799491
## 8333 57 2054 3.0 965798916
## 8334 57 2067 5.0 965796605
## 8335 57 2080 4.0 965796031
## 8336 57 2081 5.0 965796107
## 8337 57 2083 3.0 972174064
## 8338 57 2087 4.0 965796062
## 8339 57 2088 1.0 965798432
## 8340 57 2094 3.0 965798473
## 8341 57 2100 3.0 969753562
## 8342 57 2102 4.0 965796031
## 8343 57 2108 3.0 965797154
## 8344 57 2109 4.0 969753562
## 8345 57 2115 3.0 965798155
## 8346 57 2124 3.0 972174279
## 8347 57 2140 4.0 965798703
## 8348 57 2150 4.0 965798085
## 8349 57 2155 3.0 969753372
## 8350 57 2174 3.0 969753562
## 8351 57 2193 3.0 969753897
## 8352 57 2194 4.0 969754244
## 8353 57 2202 5.0 965796793
## 8354 57 2232 1.0 965796686
## 8355 57 2268 4.0 972172502
## 8356 57 2273 3.0 969754482
## 8357 57 2288 3.0 969754244
## 8358 57 2289 3.0 969753274
## 8359 57 2291 4.0 972173640
## 8360 57 2297 4.0 972175395
## 8361 57 2300 4.0 969753201
## 8362 57 2301 3.0 965795589
## 8363 57 2302 2.0 969753586
## 8364 57 2311 4.0 965798823
## 8365 57 2321 4.0 965796969
## 8366 57 2324 5.0 965796969
## 8367 57 2336 3.0 972172450
## 8368 57 2353 2.0 969754343
## 8369 57 2354 1.0 972174599
## 8370 57 2355 4.0 965796062
## 8371 57 2376 3.0 969754753
## 8372 57 2390 4.0 965796990
## 8373 57 2393 2.0 969754612
## 8374 57 2396 5.0 965796869
## 8375 57 2403 4.0 969754456
## 8376 57 2405 2.0 969754729
## 8377 57 2406 4.0 965798373
## 8378 57 2407 3.0 965798785
## 8379 57 2429 1.0 972175536
## 8380 57 2470 3.0 965798397
## 8381 57 2476 3.0 965799591
## 8382 57 2478 2.0 965798609
## 8383 57 2490 4.0 969754509
## 8384 57 2529 4.0 969754215
## 8385 57 2530 3.0 969754552
## 8386 57 2532 3.0 969754552
## 8387 57 2571 5.0 965796810
## 8388 57 2580 3.0 972172183
## 8389 57 2599 4.0 969753240
## 8390 57 2605 2.0 972175670
## 8391 57 2616 2.0 969754707
## 8392 57 2617 3.0 969753871
## 8393 57 2628 3.0 965798332
## 8394 57 2640 4.0 969753832
## 8395 57 2641 2.0 969754664
## 8396 57 2642 2.0 965798974
## 8397 57 2681 3.0 972172160
## 8398 57 2683 3.0 965797192
## 8399 57 2687 4.0 965796107
## 8400 57 2690 3.0 969753522
## 8401 57 2700 4.0 965796140
## 8402 57 2701 1.0 965798631
## 8403 57 2706 4.0 972174751
## 8404 57 2709 3.0 972172840
## 8405 57 2716 5.0 965798031
## 8406 57 2723 3.0 965798373
## 8407 57 2759 4.0 965797341
## 8408 57 2761 4.0 965796004
## 8409 57 2762 5.0 965796686
## 8410 57 2770 4.0 965797285
## 8411 57 2788 4.0 965796352
## 8412 57 2791 5.0 965798049
## 8413 57 2797 3.0 969753274
## 8414 57 2802 3.0 969754753
## 8415 57 2804 4.0 965796211
## 8416 57 2858 5.0 965796238
## 8417 57 2916 4.0 965796763
## 8418 57 2917 4.0 965796748
## 8419 57 2918 5.0 965798031
## 8420 57 2921 5.0 965798591
## 8421 57 2922 4.0 965798574
## 8422 57 2935 4.0 965795785
## 8423 57 2941 3.0 965799554
## 8424 57 2947 4.0 965795650
## 8425 57 2949 3.0 969754215
## 8426 57 2951 4.0 965798574
## 8427 57 2961 2.0 972175310
## 8428 57 2968 4.0 965798155
## 8429 57 2985 3.0 965798759
## 8430 57 2987 3.0 965796062
## 8431 57 2989 4.0 969754509
## 8432 57 2990 2.0 969754552
## 8433 57 2997 4.0 965796886
## 8434 57 3020 4.0 969754552
## 8435 57 3022 5.0 965796211
## 8436 57 3030 5.0 965796187
## 8437 57 3032 4.0 965798806
## 8438 57 3033 3.0 965798785
## 8439 57 3044 4.0 969755084
## 8440 57 3045 4.0 965797484
## 8441 57 3064 3.0 969754880
## 8442 57 3066 5.0 965799571
## 8443 57 3070 3.0 965798373
## 8444 57 3081 4.0 972174580
## 8445 57 3082 2.0 969754379
## 8446 57 3104 4.0 965798155
## 8447 57 3105 4.0 972172393
## 8448 57 3107 3.0 969754482
## 8449 57 3108 5.0 965797050
## 8450 57 3114 4.0 965796004
## 8451 57 3159 3.0 972175038
## 8452 57 3160 3.0 972171955
## 8453 57 3175 4.0 965796941
## 8454 57 3208 2.0 972175601
## 8455 57 3253 3.0 969753400
## 8456 57 3255 3.0 965797129
## 8457 57 3256 4.0 969754408
## 8458 57 3258 3.0 965797522
## 8459 57 3259 3.0 972175764
## 8460 57 3260 3.0 972174279
## 8461 57 3269 3.0 965798397
## 8462 57 3272 1.0 972175310
## 8463 57 3301 3.0 972172013
## 8464 57 3334 5.0 965796471
## 8465 57 3361 3.0 965796392
## 8466 57 3386 3.0 972173759
## 8467 57 3396 4.0 969753290
## 8468 57 3426 3.0 972174885
## 8469 57 3429 4.0 965796004
## 8470 57 3435 4.0 965795745
## 8471 57 3441 4.0 965799608
## 8472 57 3446 4.0 965795650
## 8473 57 3466 4.0 965796952
## 8474 57 3471 5.0 965798662
## 8475 57 3479 4.0 965798155
## 8476 57 3489 3.0 965798432
## 8477 57 3494 5.0 965798591
## 8478 57 3500 4.0 965797264
## 8479 57 3507 4.0 969753458
## 8480 57 3527 3.0 965798716
## 8481 57 3543 3.0 965796278
## 8482 57 3552 4.0 965798049
## 8483 57 3578 4.0 969754290
## 8484 57 3593 1.0 965799070
## 8485 57 3614 3.0 972175105
## 8486 57 3624 4.0 969754343
## 8487 57 3628 4.0 965799608
## 8488 57 3632 4.0 965796405
## 8489 57 3635 4.0 969754408
## 8490 57 3638 2.0 965798849
## 8491 57 3639 3.0 969754343
## 8492 57 3643 4.0 969754552
## 8493 57 3671 4.0 965798574
## 8494 57 3681 4.0 965798574
## 8495 57 3685 3.0 969753562
## 8496 57 3686 3.0 972174630
## 8497 57 3697 2.0 965798870
## 8498 57 3704 3.0 965798849
## 8499 57 3705 2.0 969754090
## 8500 57 3740 4.0 969754569
## 8501 57 3753 3.0 965799521
## 8502 57 3769 4.0 965799383
## 8503 57 3773 1.0 965797677
## 8504 57 3774 1.0 965797855
## 8505 57 3811 4.0 965799445
## 8506 57 3827 4.0 965799246
## 8507 57 3835 2.0 965799246
## 8508 57 3836 5.0 965799259
## 8509 57 3901 3.0 969753008
## 8510 57 3937 2.0 969752936
## 8511 57 5060 4.0 965795947
## 8512 58 3 3.0 847719397
## 8513 58 5 4.0 847719151
## 8514 58 7 5.0 847719397
## 8515 58 19 1.0 847718718
## 8516 58 21 4.0 847718718
## 8517 58 22 3.0 847719108
## 8518 58 31 4.0 847719088
## 8519 58 32 5.0 847718745
## 8520 58 36 4.0 847718991
## 8521 58 39 5.0 847718745
## 8522 58 44 2.0 847718960
## 8523 58 47 5.0 847718657
## 8524 58 48 3.0 847719035
## 8525 58 50 5.0 847718718
## 8526 58 62 3.0 847718910
## 8527 58 110 5.0 847718580
## 8528 58 141 3.0 847718894
## 8529 58 150 4.0 847718380
## 8530 58 153 3.0 847718434
## 8531 58 161 4.0 847718580
## 8532 58 165 4.0 847718433
## 8533 58 168 5.0 847718992
## 8534 58 173 2.0 847718818
## 8535 58 185 3.0 847718579
## 8536 58 186 3.0 847718910
## 8537 58 196 2.0 847718894
## 8538 58 203 3.0 847719177
## 8539 58 208 4.0 847718580
## 8540 58 216 3.0 847719308
## 8541 58 218 5.0 847719231
## 8542 58 222 5.0 847719271
## 8543 58 223 3.0 847719088
## 8544 58 224 3.0 847719065
## 8545 58 225 3.0 847718745
## 8546 58 231 5.0 847718462
## 8547 58 234 4.0 847719333
## 8548 58 248 3.0 847719411
## 8549 58 249 5.0 847719464
## 8550 58 253 2.0 847718617
## 8551 58 261 4.0 847718960
## 8552 58 265 4.0 847718991
## 8553 58 266 3.0 847718786
## 8554 58 276 2.0 847719132
## 8555 58 277 5.0 847719065
## 8556 58 280 5.0 847719231
## 8557 58 282 4.0 847718851
## 8558 58 288 3.0 847718617
## 8559 58 292 4.0 847718544
## 8560 58 293 5.0 847718937
## 8561 58 296 5.0 847718380
## 8562 58 300 5.0 847718674
## 8563 58 315 5.0 847718851
## 8564 58 317 3.0 847718786
## 8565 58 318 5.0 847718544
## 8566 58 327 4.0 847719285
## 8567 58 333 5.0 847719015
## 8568 58 337 5.0 847718894
## 8569 58 339 5.0 847718617
## 8570 58 342 5.0 847719151
## 8571 58 344 1.0 847718434
## 8572 58 345 4.0 847719308
## 8573 58 349 3.0 847718461
## 8574 58 350 4.0 847718786
## 8575 58 353 3.0 847718991
## 8576 58 356 4.0 847718461
## 8577 58 357 3.0 847718745
## 8578 58 362 5.0 847719203
## 8579 58 364 4.0 847718657
## 8580 58 367 4.0 847718657
## 8581 58 368 4.0 847718937
## 8582 58 371 4.0 847719333
## 8583 58 372 3.0 847719438
## 8584 58 377 5.0 847718657
## 8585 58 380 3.0 847718380
## 8586 58 419 3.0 847719308
## 8587 58 435 3.0 847718818
## 8588 58 440 4.0 847718786
## 8589 58 454 3.0 847718617
## 8590 58 455 2.0 847719231
## 8591 58 457 5.0 847718433
## 8592 58 474 5.0 847718851
## 8593 58 475 5.0 847719285
## 8594 58 477 4.0 847719333
## 8595 58 480 4.0 847718544
## 8596 58 497 5.0 847719066
## 8597 58 500 3.0 847718657
## 8598 58 508 5.0 847718868
## 8599 58 509 2.0 847718850
## 8600 58 520 3.0 847719088
## 8601 58 527 5.0 847718718
## 8602 58 529 5.0 847719203
## 8603 58 539 5.0 847718718
## 8604 58 540 3.0 847719271
## 8605 58 543 5.0 847719231
## 8606 58 551 5.0 847718937
## 8607 58 552 3.0 847719108
## 8608 58 555 3.0 847719035
## 8609 58 587 4.0 847718674
## 8610 58 588 5.0 847718433
## 8611 58 589 4.0 847718617
## 8612 58 590 3.0 847718380
## 8613 58 592 3.0 847718380
## 8614 58 594 5.0 847719035
## 8615 58 595 5.0 847718461
## 8616 58 596 4.0 847719271
## 8617 58 597 5.0 847718674
## 8618 58 616 4.0 847719271
## 8619 58 648 5.0 847719035
## 8620 58 708 5.0 847719464
## 8621 58 736 3.0 847718894
## 8622 58 780 5.0 847718910
## 8623 58 1073 5.0 847719802
## 8624 59 10 3.0 953609378
## 8625 59 41 5.0 953609923
## 8626 59 105 4.0 953608307
## 8627 59 110 2.0 953609098
## 8628 59 111 5.0 953608356
## 8629 59 260 4.0 953610660
## 8630 59 350 3.0 953610578
## 8631 59 367 4.0 953610692
## 8632 59 480 3.0 953609415
## 8633 59 527 5.0 953609857
## 8634 59 541 5.0 953609611
## 8635 59 552 3.0 953609458
## 8636 59 589 4.0 953609167
## 8637 59 593 5.0 953610203
## 8638 59 608 5.0 953610300
## 8639 59 647 4.0 953610077
## 8640 59 648 5.0 953609356
## 8641 59 733 4.0 953609415
## 8642 59 750 5.0 953609857
## 8643 59 780 4.0 953609540
## 8644 59 858 5.0 953609775
## 8645 59 903 5.0 953610229
## 8646 59 904 5.0 953610229
## 8647 59 906 5.0 953610526
## 8648 59 912 5.0 953609857
## 8649 59 913 5.0 953609637
## 8650 59 922 4.0 953609611
## 8651 59 924 5.0 953610267
## 8652 59 928 5.0 953610381
## 8653 59 965 5.0 953610267
## 8654 59 969 5.0 953609997
## 8655 59 1086 4.0 953610338
## 8656 59 1090 4.0 953610028
## 8657 59 1094 5.0 953610464
## 8658 59 1097 5.0 953610660
## 8659 59 1151 5.0 953610203
## 8660 59 1183 5.0 953609997
## 8661 59 1188 5.0 953610432
## 8662 59 1196 4.0 953609923
## 8663 59 1208 5.0 953609954
## 8664 59 1210 3.0 953608307
## 8665 59 1212 5.0 953610203
## 8666 59 1219 5.0 953610203
## 8667 59 1221 4.0 953610986
## 8668 59 1222 5.0 953610028
## 8669 59 1224 5.0 953609923
## 8670 59 1233 5.0 953609857
## 8671 59 1244 5.0 953610406
## 8672 59 1247 5.0 953610406
## 8673 59 1250 5.0 953609923
## 8674 59 1252 5.0 953609611
## 8675 59 1263 5.0 953609997
## 8676 59 1269 5.0 953610300
## 8677 59 1299 5.0 953609857
## 8678 59 1361 4.0 953610834
## 8679 59 1428 3.0 953610764
## 8680 59 1480 4.0 953609197
## 8681 59 1552 3.0 953609496
## 8682 59 1573 5.0 953609098
## 8683 59 1580 3.0 953609283
## 8684 59 1610 4.0 953609121
## 8685 59 1617 4.0 953609611
## 8686 59 1625 5.0 953610555
## 8687 59 1631 5.0 953610203
## 8688 59 1674 5.0 953610338
## 8689 59 1696 5.0 953610077
## 8690 59 1722 3.0 953609458
## 8691 59 1797 5.0 953610854
## 8692 59 1918 3.0 953609496
## 8693 59 1927 5.0 953609923
## 8694 59 1944 4.0 953609954
## 8695 59 1953 5.0 953610338
## 8696 59 2020 5.0 953610464
## 8697 59 2028 5.0 953609057
## 8698 59 2067 5.0 953609954
## 8699 59 2075 5.0 953610077
## 8700 59 2076 5.0 953610526
## 8701 59 2160 5.0 953610338
## 8702 59 2174 2.0 953610692
## 8703 59 2294 3.0 953608307
## 8704 59 2352 5.0 953611186
## 8705 59 2427 5.0 953609057
## 8706 59 2550 5.0 953610267
## 8707 59 2571 1.0 953609098
## 8708 59 2616 2.0 953609458
## 8709 59 2671 3.0 953608356
## 8710 59 2726 5.0 953610986
## 8711 59 2763 5.0 953609283
## 8712 59 2944 5.0 953610077
## 8713 59 2968 5.0 953610660
## 8714 59 2987 1.0 953609660
## 8715 59 3075 5.0 953610300
## 8716 59 3204 5.0 953610338
## 8717 59 3230 5.0 953610267
## 8718 59 3256 5.0 953609167
## 8719 59 3386 4.0 953610555
## 8720 59 3448 5.0 953608587
## 8721 59 3450 3.0 953608587
## 8722 59 3461 4.0 953608665
## 8723 59 3462 5.0 953610923
## 8724 59 3471 4.0 953608525
## 8725 59 3479 4.0 953608665
## 8726 59 3489 2.0 953608610
## 8727 59 3498 5.0 953608691
## 8728 59 3504 4.0 953608726
## 8729 59 5060 4.0 953609923
## 8730 59 6460 5.0 953608991
## 8731 60 48 3.0 1393541734
## 8732 60 50 3.0 1393542060
## 8733 60 60 3.0 1393541955
## 8734 60 318 4.0 1393542053
## 8735 60 362 4.0 1393541920
## 8736 60 455 3.0 1393541905
## 8737 60 527 5.0 1393542064
## 8738 60 783 4.0 1393541788
## 8739 60 805 4.0 1393541754
## 8740 60 832 3.0 1393541695
## 8741 60 858 5.0 1393542055
## 8742 60 1203 3.0 1393542084
## 8743 60 1242 4.0 1393541757
## 8744 60 1562 3.0 1393541892
## 8745 60 2067 3.0 1393541982
## 8746 60 2150 4.0 1393541897
## 8747 60 2724 3.0 1393541908
## 8748 60 2739 4.0 1393541977
## 8749 60 3386 4.0 1393541937
## 8750 60 3424 4.0 1393541967
## 8751 60 6016 4.0 1393542073
## 8752 60 58559 5.0 1393542075
## 8753 61 16 4.0 1145531659
## 8754 61 32 4.5 1145532647
## 8755 61 50 4.5 1145532639
## 8756 61 173 3.0 1145531733
## 8757 61 235 4.0 1145531647
## 8758 61 266 4.0 1145531608
## 8759 61 293 4.5 1145532599
## 8760 61 318 5.0 1145532707
## 8761 61 555 4.5 1145532694
## 8762 61 593 4.0 1145532720
## 8763 61 1080 3.5 1145531671
## 8764 61 1089 4.5 1145532577
## 8765 61 1090 4.0 1145532596
## 8766 61 1101 1.5 1145531624
## 8767 61 1201 4.5 1145532700
## 8768 61 1208 4.5 1145531565
## 8769 61 1213 4.0 1145532539
## 8770 61 1214 4.5 1145532688
## 8771 61 1258 4.0 1145531678
## 8772 61 1304 5.0 1145531711
## 8773 61 1653 4.5 1145531727
## 8774 61 1917 3.0 1145531574
## 8775 61 2012 2.0 1145531640
## 8776 61 2174 3.5 1145531650
## 8777 61 2710 3.5 1145531655
## 8778 61 3949 4.5 1145532607
## 8779 61 4011 4.5 1145532610
## 8780 61 4226 4.5 1145532579
## 8781 61 4878 4.0 1145532542
## 8782 61 4993 4.5 1145532353
## 8783 61 5952 4.5 1145531615
## 8784 61 6502 4.0 1145532705
## 8785 61 6796 4.0 1145532594
## 8786 61 6874 4.0 1145532616
## 8787 61 7153 4.5 1145532573
## 8788 61 7361 4.0 1145532717
## 8789 61 7438 4.0 1145532551
## 8790 61 27831 4.0 1145532546
## 8791 61 30707 4.5 1145532681
## 8792 62 2 4.0 1528843890
## 8793 62 6 4.5 1522190219
## 8794 62 47 4.5 1521489234
## 8795 62 110 4.5 1521822303
## 8796 62 260 4.5 1521488893
## 8797 62 293 5.0 1521488906
## 8798 62 296 4.5 1521488575
## 8799 62 318 4.0 1521488565
## 8800 62 344 3.0 1521822336
## 8801 62 356 5.0 1521822306
## 8802 62 410 4.5 1525636601
## 8803 62 527 4.5 1521488569
## 8804 62 586 4.0 1521489913
## 8805 62 593 5.0 1521488571
## 8806 62 778 4.5 1521488884
## 8807 62 858 5.0 1521488566
## 8808 62 1089 5.0 1521488724
## 8809 62 1097 4.5 1521822348
## 8810 62 1193 4.0 1521488855
## 8811 62 1196 4.5 1521488711
## 8812 62 1198 4.5 1521490520
## 8813 62 1203 5.0 1521822604
## 8814 62 1210 4.5 1521488714
## 8815 62 1221 5.0 1521488574
## 8816 62 1246 4.5 1521822408
## 8817 62 1265 4.0 1536618534
## 8818 62 1270 4.5 1521822319
## 8819 62 1291 4.5 1523111068
## 8820 62 1580 3.0 1521822333
## 8821 62 1610 4.0 1521489883
## 8822 62 1645 5.0 1522189770
## 8823 62 1653 5.0 1521489167
## 8824 62 1682 4.5 1521489738
## 8825 62 1704 5.0 1523560682
## 8826 62 1721 4.0 1521822338
## 8827 62 1732 4.5 1521488871
## 8828 62 1961 5.0 1523134030
## 8829 62 2011 5.0 1521489589
## 8830 62 2012 4.5 1521822475
## 8831 62 2023 5.0 1525636725
## 8832 62 2028 4.0 1521489641
## 8833 62 2115 4.5 1521822456
## 8834 62 2124 5.0 1525636840
## 8835 62 2329 4.5 1522418540
## 8836 62 2571 5.0 1521489407
## 8837 62 2617 3.0 1521822500
## 8838 62 2628 4.5 1521822355
## 8839 62 2762 4.5 1523111064
## 8840 62 2953 3.5 1525636880
## 8841 62 2959 5.0 1521488573
## 8842 62 3000 4.0 1521822696
## 8843 62 3114 3.0 1525636897
## 8844 62 3147 5.0 1521489752
## 8845 62 3252 4.5 1521929611
## 8846 62 3578 4.5 1521489618
## 8847 62 3752 3.5 1521822833
## 8848 62 3793 3.0 1525125407
## 8849 62 3948 4.0 1521490259
## 8850 62 3949 4.5 1521488888
## 8851 62 3969 4.5 1521931842
## 8852 62 3977 2.5 1522792173
## 8853 62 3994 4.5 1521822029
## 8854 62 4011 4.5 1521488896
## 8855 62 4148 5.0 1521822932
## 8856 62 4223 4.5 1525125789
## 8857 62 4262 5.0 1521489459
## 8858 62 4270 3.5 1521490349
## 8859 62 4306 1.0 1521488595
## 8860 62 4367 3.5 1521490377
## 8861 62 4878 4.0 1521488880
## 8862 62 4896 4.5 1521489784
## 8863 62 4963 4.5 1521489743
## 8864 62 4973 4.5 1521488600
## 8865 62 4993 5.0 1521488587
## 8866 62 4995 4.5 1521822370
## 8867 62 5254 3.0 1521489715
## 8868 62 5349 4.0 1521490245
## 8869 62 5378 4.5 1521490261
## 8870 62 5388 4.5 1530310806
## 8871 62 5445 4.0 1521489745
## 8872 62 5459 3.0 1521822660
## 8873 62 5502 4.0 1521489661
## 8874 62 5618 5.0 1521488944
## 8875 62 5630 5.0 1521489688
## 8876 62 5816 4.5 1521490262
## 8877 62 5903 4.5 1521489647
## 8878 62 5952 5.0 1521488589
## 8879 62 5989 4.5 1521490252
## 8880 62 5995 4.5 1521488875
## 8881 62 6058 3.5 1525555043
## 8882 62 6333 3.0 1525125405
## 8883 62 6365 5.0 1521489359
## 8884 62 6373 4.0 1521490280
## 8885 62 6534 3.5 1525553932
## 8886 62 6539 4.0 1521488598
## 8887 62 6541 3.5 1525553960
## 8888 62 6564 3.5 1525554328
## 8889 62 6863 3.0 1521822677
## 8890 62 6874 5.0 1521489355
## 8891 62 6934 5.0 1521490090
## 8892 62 7143 4.0 1521489737
## 8893 62 7153 5.0 1521488588
## 8894 62 7254 4.0 1521489196
## 8895 62 7293 4.0 1521822849
## 8896 62 7361 4.5 1521488882
## 8897 62 7373 3.0 1525553873
## 8898 62 7438 5.0 1521489358
## 8899 62 7458 4.0 1521490369
## 8900 62 8360 1.0 1521822509
## 8901 62 8368 4.5 1521489361
## 8902 62 8371 2.5 1525554186
## 8903 62 8529 4.5 1521489778
## 8904 62 8636 4.0 1521490265
## 8905 62 8641 4.0 1521490412
## 8906 62 8914 4.5 1521489108
## 8907 62 8950 4.5 1521489225
## 8908 62 8961 4.5 1521489915
## 8909 62 8972 3.5 1521490406
## 8910 62 8984 5.0 1521490022
## 8911 62 27660 4.5 1525554402
## 8912 62 27706 4.0 1526248533
## 8913 62 27808 4.0 1525554894
## 8914 62 27831 4.5 1532723284
## 8915 62 30793 4.5 1521822764
## 8916 62 31658 3.5 1525869033
## 8917 62 31696 4.5 1521490005
## 8918 62 32587 4.5 1521489360
## 8919 62 33162 4.0 1525554409
## 8920 62 33493 4.5 1521490052
## 8921 62 33660 4.0 1521489746
## 8922 62 33679 3.5 1521822728
## 8923 62 33794 5.0 1521489357
## 8924 62 34150 3.0 1525553942
## 8925 62 36529 4.0 1521490384
## 8926 62 37729 4.0 1530310521
## 8927 62 37733 4.0 1525125457
## 8928 62 38061 4.0 1532723298
## 8929 62 40815 4.5 1521489708
## 8930 62 41566 4.0 1521490334
## 8931 62 41569 4.0 1521490298
## 8932 62 44191 5.0 1521488886
## 8933 62 45447 3.5 1525637057
## 8934 62 45499 3.0 1525125404
## 8935 62 45517 3.0 1525553893
## 8936 62 45722 4.5 1521490305
## 8937 62 46723 3.0 1525554190
## 8938 62 46972 4.0 1525554198
## 8939 62 46976 4.0 1536874645
## 8940 62 47099 5.0 1521489657
## 8941 62 47610 4.0 1521489635
## 8942 62 48043 3.0 1521931853
## 8943 62 48385 4.0 1521490315
## 8944 62 48394 4.5 1521489461
## 8945 62 48516 4.5 1521488756
## 8946 62 48780 5.0 1521488751
## 8947 62 49130 4.0 1526582362
## 8948 62 49272 4.5 1521489572
## 8949 62 49530 4.5 1536874696
## 8950 62 49649 1.5 1523047091
## 8951 62 50804 5.0 1522190353
## 8952 62 51086 3.5 1522349468
## 8953 62 51540 4.5 1522533220
## 8954 62 51662 4.5 1521489885
## 8955 62 52604 4.5 1521822937
## 8956 62 52722 4.0 1521490430
## 8957 62 53121 1.0 1525554344
## 8958 62 53125 4.5 1521490024
## 8959 62 53322 5.0 1521489962
## 8960 62 53464 3.0 1525554739
## 8961 62 54001 4.5 1521489700
## 8962 62 54503 4.0 1521822771
## 8963 62 54997 4.5 1521489698
## 8964 62 55820 5.0 1521489268
## 8965 62 55908 4.0 1521932232
## 8966 62 56174 4.0 1521489956
## 8967 62 56587 4.5 1521489739
## 8968 62 56757 4.5 1521929638
## 8969 62 56775 3.5 1521490102
## 8970 62 58047 3.5 1528909343
## 8971 62 58559 5.0 1521488846
## 8972 62 58803 4.0 1525165437
## 8973 62 59315 3.5 1521489710
## 8974 62 59501 4.0 1525637504
## 8975 62 60040 3.5 1525165396
## 8976 62 60069 4.5 1521490257
## 8977 62 60072 3.5 1521490159
## 8978 62 60074 3.0 1525553927
## 8979 62 60126 3.0 1527004227
## 8980 62 60684 4.5 1521822822
## 8981 62 60756 3.5 1528934376
## 8982 62 61024 4.0 1528934209
## 8983 62 63072 4.0 1522533605
## 8984 62 63113 4.5 1521490043
## 8985 62 63992 1.0 1528934225
## 8986 62 64957 4.5 1521489875
## 8987 62 64969 4.5 1521489999
## 8988 62 67734 4.0 1523045470
## 8989 62 68157 4.0 1521488881
## 8990 62 68237 2.0 1522189879
## 8991 62 68319 3.5 1525125403
## 8992 62 68554 4.0 1521490070
## 8993 62 68848 4.0 1527274282
## 8994 62 68954 5.0 1521488928
## 8995 62 69122 4.0 1521488917
## 8996 62 69757 4.5 1521490345
## 8997 62 69844 4.5 1521489666
## 8998 62 71106 4.5 1522190336
## 8999 62 71535 3.5 1529777113
## 9000 62 72011 3.5 1522096089
## 9001 62 72998 4.0 1521488927
## 9002 62 73017 5.0 1521488921
## 9003 62 74228 3.5 1521489205
## 9004 62 74458 4.0 1521488745
## 9005 62 74789 5.0 1523135841
## 9006 62 77561 3.5 1521490357
## 9007 62 78105 3.5 1523788888
## 9008 62 78772 1.0 1523788913
## 9009 62 79132 5.0 1521488715
## 9010 62 79357 4.5 1526076526
## 9011 62 79702 4.0 1523029355
## 9012 62 80693 4.0 1522190556
## 9013 62 81564 3.5 1523786536
## 9014 62 81834 4.5 1521490317
## 9015 62 81845 5.0 1521488748
## 9016 62 82461 2.0 1523786551
## 9017 62 83369 4.0 1525125807
## 9018 62 84152 4.0 1521488762
## 9019 62 85414 4.5 1521489185
## 9020 62 86332 4.0 1521490291
## 9021 62 86880 4.0 1523786545
## 9022 62 86911 4.0 1523788875
## 9023 62 87232 4.0 1521489753
## 9024 62 87430 3.5 1525555156
## 9025 62 87520 2.0 1523788921
## 9026 62 88125 4.5 1521489649
## 9027 62 88140 4.0 1521490228
## 9028 62 88163 4.0 1521489757
## 9029 62 88405 3.5 1525554858
## 9030 62 89492 4.0 1521489573
## 9031 62 89745 4.0 1521488914
## 9032 62 89864 4.5 1521489672
## 9033 62 90866 3.5 1522265959
## 9034 62 91500 4.0 1521490055
## 9035 62 91529 5.0 1521488726
## 9036 62 91542 5.0 1521489748
## 9037 62 91658 4.5 1521489782
## 9038 62 94777 3.5 1521490234
## 9039 62 94864 3.5 1521490107
## 9040 62 96079 4.5 1521489704
## 9041 62 96610 4.0 1521489192
## 9042 62 96821 5.0 1521488950
## 9043 62 96829 4.0 1523788902
## 9044 62 96861 3.5 1529611221
## 9045 62 97921 4.0 1521489732
## 9046 62 97938 4.5 1521489658
## 9047 62 98809 4.5 1521489734
## 9048 62 99114 5.0 1521488759
## 9049 62 99149 4.0 1524172811
## 9050 62 101864 4.0 1522533578
## 9051 62 102123 4.0 1523788935
## 9052 62 102125 3.5 1521490450
## 9053 62 102903 4.0 1521489785
## 9054 62 103042 3.5 1525555304
## 9055 62 103341 4.0 1522190324
## 9056 62 103772 4.0 1523788898
## 9057 62 104211 3.5 1521490132
## 9058 62 104374 4.5 1523721884
## 9059 62 104863 4.0 1528843953
## 9060 62 104879 3.0 1525125410
## 9061 62 106002 3.0 1523788866
## 9062 62 106072 3.5 1523786562
## 9063 62 106487 4.0 1521490112
## 9064 62 106489 5.0 1521490444
## 9065 62 106782 4.0 1521488752
## 9066 62 106918 4.5 1521931587
## 9067 62 107348 4.0 1528934997
## 9068 62 107406 4.0 1521489944
## 9069 62 108190 3.0 1525554826
## 9070 62 108729 4.0 1521489254
## 9071 62 109374 5.0 1521489662
## 9072 62 109487 5.0 1521488747
## 9073 62 110102 4.0 1521489943
## 9074 62 111360 4.0 1524950167
## 9075 62 111362 4.0 1521489750
## 9076 62 111659 3.5 1521490297
## 9077 62 111743 3.5 1530471409
## 9078 62 111759 4.0 1521489609
## 9079 62 112552 4.0 1521488852
## 9080 62 112556 4.0 1521488746
## 9081 62 112804 4.5 1521932325
## 9082 62 112852 4.0 1521489638
## 9083 62 113741 4.0 1522096059
## 9084 62 114180 3.5 1525554378
## 9085 62 114662 4.0 1521490183
## 9086 62 114678 4.5 1521931629
## 9087 62 114935 5.0 1521489139
## 9088 62 115149 5.0 1521489984
## 9089 62 115210 4.5 1522190590
## 9090 62 115569 4.5 1521489242
## 9091 62 115680 4.0 1521932302
## 9092 62 115713 4.0 1521489156
## 9093 62 116797 4.5 1521488742
## 9094 62 116823 4.0 1521490236
## 9095 62 116897 4.0 1528152841
## 9096 62 117176 4.5 1521489591
## 9097 62 118696 4.0 1523111252
## 9098 62 119141 3.0 1525555123
## 9099 62 122882 4.0 1521490340
## 9100 62 122886 4.0 1521488723
## 9101 62 122892 4.0 1521490136
## 9102 62 122896 3.5 1523047955
## 9103 62 122898 4.0 1523048682
## 9104 62 122900 3.5 1521490276
## 9105 62 122904 4.5 1521489917
## 9106 62 122912 4.0 1526028975
## 9107 62 122916 4.0 1521489045
## 9108 62 122918 4.0 1521488924
## 9109 62 122920 4.0 1521489966
## 9110 62 122922 4.5 1521489972
## 9111 62 122924 4.0 1525125413
## 9112 62 122926 4.0 1521490080
## 9113 62 128360 5.0 1521489877
## 9114 62 128512 3.5 1523047259
## 9115 62 135133 3.5 1525637477
## 9116 62 135143 4.0 1521489754
## 9117 62 135518 3.5 1530471334
## 9118 62 135536 4.0 1525555066
## 9119 62 135569 2.5 1521490167
## 9120 62 136020 4.5 1521490068
## 9121 62 136864 4.0 1525555209
## 9122 62 137857 3.0 1523048818
## 9123 62 139385 4.0 1521489905
## 9124 62 140110 4.0 1522265901
## 9125 62 142222 4.0 1523048801
## 9126 62 143355 3.5 1521490047
## 9127 62 150548 5.0 1521490527
## 9128 62 158238 4.0 1522190194
## 9129 62 158966 4.5 1526076371
## 9130 62 159093 3.5 1523047944
## 9131 62 161131 4.0 1521490226
## 9132 62 162606 4.0 1522190735
## 9133 62 164179 4.0 1521489143
## 9134 62 166528 4.5 1521489964
## 9135 62 166534 4.5 1521490038
## 9136 62 166635 3.5 1521490294
## 9137 62 168248 4.5 1523048794
## 9138 62 168250 4.0 1521490524
## 9139 62 168252 5.0 1521489970
## 9140 62 170827 3.5 1523048693
## 9141 62 171763 4.0 1523048763
## 9142 62 172591 5.0 1525637301
## 9143 62 173925 4.0 1523048625
## 9144 62 174053 5.0 1525637282
## 9145 62 175303 4.0 1521490145
## 9146 62 175661 3.5 1523048611
## 9147 62 176371 4.0 1521488605
## 9148 62 176601 5.0 1525795252
## 9149 62 179401 3.5 1528934530
## 9150 62 179819 3.5 1523048605
## 9151 62 182715 4.0 1521929626
## 9152 62 183611 4.0 1526244681
## 9153 62 184471 3.5 1528024895
## 9154 62 185031 4.5 1525946532
## 9155 62 185135 5.0 1525795293
## 9156 62 187593 4.0 1527274071
## 9157 62 187595 4.0 1528934550
## 9158 63 1 5.0 1443199669
## 9159 63 10 3.0 1443201199
## 9160 63 32 3.0 1443199999
## 9161 63 34 3.0 1443201169
## 9162 63 47 4.0 1443201084
## 9163 63 50 5.0 1443199758
## 9164 63 110 2.5 1443199850
## 9165 63 111 3.0 1443199818
## 9166 63 150 3.0 1443201072
## 9167 63 153 1.0 1443201088
## 9168 63 165 4.0 1443201090
## 9169 63 208 2.0 1443201186
## 9170 63 231 3.0 1443201105
## 9171 63 260 5.0 1443199688
## 9172 63 293 3.5 1443199772
## 9173 63 296 5.0 1443201070
## 9174 63 318 5.0 1443199751
## 9175 63 344 5.0 1443201075
## 9176 63 356 3.5 1443199681
## 9177 63 357 4.0 1443201224
## 9178 63 364 4.0 1443200128
## 9179 63 367 4.0 1443201104
## 9180 63 377 2.5 1443201077
## 9181 63 480 2.5 1443199679
## 9182 63 500 3.0 1443201103
## 9183 63 527 4.0 1443199764
## 9184 63 555 2.5 1443200104
## 9185 63 586 2.5 1443201188
## 9186 63 588 4.0 1443200252
## 9187 63 589 4.0 1443199783
## 9188 63 592 4.0 1443201079
## 9189 63 595 3.0 1443201091
## 9190 63 608 4.5 1443199825
## 9191 63 648 4.0 1443201073
## 9192 63 745 5.0 1443348399
## 9193 63 778 4.0 1443199878
## 9194 63 780 3.0 1443201081
## 9195 63 858 4.0 1443199776
## 9196 63 912 4.0 1443201230
## 9197 63 913 4.0 1443199803
## 9198 63 924 3.5 1443199909
## 9199 63 953 4.0 1443199729
## 9200 63 969 3.0 1443199835
## 9201 63 1036 4.0 1443199792
## 9202 63 1073 3.0 1443201192
## 9203 63 1080 5.0 1443199898
## 9204 63 1084 4.0 1443200023
## 9205 63 1089 3.0 1443201184
## 9206 63 1097 2.5 1443201101
## 9207 63 1136 5.0 1443199789
## 9208 63 1148 5.0 1443348398
## 9209 63 1193 4.0 1443201170
## 9210 63 1196 5.0 1443199754
## 9211 63 1198 5.0 1443199755
## 9212 63 1200 2.5 1443199762
## 9213 63 1201 4.0 1443199813
## 9214 63 1202 4.0 1443200054
## 9215 63 1203 4.0 1443735650
## 9216 63 1208 5.0 1443199821
## 9217 63 1210 4.5 1443199768
## 9218 63 1213 4.0 1443201226
## 9219 63 1214 2.5 1443199787
## 9220 63 1220 5.0 1443200106
## 9221 63 1221 4.0 1443201175
## 9222 63 1222 2.5 1443199857
## 9223 63 1223 5.0 1443348411
## 9224 63 1234 2.5 1443199800
## 9225 63 1262 4.0 1443199811
## 9226 63 1265 3.0 1443201196
## 9227 63 1270 5.0 1443199663
## 9228 63 1278 3.0 1443199901
## 9229 63 1282 4.0 1443200228
## 9230 63 1288 5.0 1443199867
## 9231 63 1291 4.0 1443199779
## 9232 63 1387 3.0 1443200100
## 9233 63 1393 3.5 1443200314
## 9234 63 1527 3.5 1443200201
## 9235 63 1580 2.0 1443201093
## 9236 63 1617 4.0 1443201182
## 9237 63 1682 3.5 1443201256
## 9238 63 1704 3.5 1443199847
## 9239 63 1732 0.5 1443199918
## 9240 63 1923 2.0 1443201254
## 9241 63 1945 2.5 1443200960
## 9242 63 1965 4.5 1443200361
## 9243 63 1968 4.0 1443200066
## 9244 63 2000 3.0 1443200236
## 9245 63 2028 3.5 1443199838
## 9246 63 2078 5.0 1443200302
## 9247 63 2115 4.0 1443200254
## 9248 63 2329 4.0 1443199801
## 9249 63 2542 4.5 1443200956
## 9250 63 2571 3.5 1443199667
## 9251 63 2683 3.0 1443201238
## 9252 63 2692 4.5 1443200946
## 9253 63 2716 5.0 1443201173
## 9254 63 2788 5.0 1443201032
## 9255 63 2791 4.0 1443200129
## 9256 63 2858 5.0 1443199797
## 9257 63 2918 3.5 1443201007
## 9258 63 2959 5.0 1443200442
## 9259 63 2997 3.0 1443199921
## 9260 63 3000 3.5 1443200472
## 9261 63 3088 4.0 1443199884
## 9262 63 3285 2.0 1443200777
## 9263 63 3409 2.0 1443200791
## 9264 63 3421 2.5 1443200099
## 9265 63 3435 4.0 1443200927
## 9266 63 3481 4.0 1443200596
## 9267 63 3535 4.0 1443200658
## 9268 63 3552 2.0 1443200238
## 9269 63 3555 3.0 1443368334
## 9270 63 3578 3.0 1443199923
## 9271 63 3617 1.0 1443290327
## 9272 63 3623 2.5 1443200578
## 9273 63 3717 2.5 1443200635
## 9274 63 3751 4.0 1443200581
## 9275 63 3752 2.0 1443200675
## 9276 63 3755 3.5 1443200613
## 9277 63 3785 2.0 1443200650
## 9278 63 3793 3.5 1443200551
## 9279 63 3868 3.5 1443290424
## 9280 63 3897 2.5 1443200567
## 9281 63 3948 2.5 1443200595
## 9282 63 3949 5.0 1443199859
## 9283 63 3996 4.0 1443199984
## 9284 63 4011 3.5 1443199845
## 9285 63 4014 2.5 1443200619
## 9286 63 4022 3.0 1443200566
## 9287 63 4027 1.0 1443200564
## 9288 63 4105 3.0 1443200241
## 9289 63 4223 3.5 1443200695
## 9290 63 4226 3.5 1443200550
## 9291 63 4246 3.0 1443290259
## 9292 63 4262 2.5 1443199912
## 9293 63 4299 3.0 1443368412
## 9294 63 4306 2.5 1443200549
## 9295 63 4310 0.5 1443200670
## 9296 63 4344 4.0 1443200752
## 9297 63 4734 3.5 1443200739
## 9298 63 4816 2.5 1443368327
## 9299 63 4874 3.5 1443200728
## 9300 63 4878 3.0 1443199871
## 9301 63 4886 3.5 1443200554
## 9302 63 4890 2.0 1443200813
## 9303 63 4896 1.5 1443200572
## 9304 63 4963 4.0 1443200556
## 9305 63 4979 4.0 1443200138
## 9306 63 4993 4.0 1443199786
## 9307 63 4995 4.0 1443200558
## 9308 63 5010 4.0 1443200620
## 9309 63 5218 4.0 1443290261
## 9310 63 5349 0.5 1443200379
## 9311 63 5377 2.5 1443290294
## 9312 63 5378 2.5 1443200590
## 9313 63 5418 4.0 1443200560
## 9314 63 5445 4.0 1443200261
## 9315 63 5464 4.0 1443290320
## 9316 63 5481 2.5 1443200664
## 9317 63 5618 4.0 1443200445
## 9318 63 5669 5.0 1443200602
## 9319 63 5872 3.0 1443200798
## 9320 63 5903 3.5 1443200152
## 9321 63 5945 1.0 1443200788
## 9322 63 5952 3.5 1443200469
## 9323 63 5989 4.0 1443200569
## 9324 63 6016 4.5 1443200443
## 9325 63 6104 5.0 1443348557
## 9326 63 6350 4.5 1443348548
## 9327 63 6365 2.0 1443200574
## 9328 63 6502 4.0 1443290257
## 9329 63 6539 4.0 1443200039
## 9330 63 6541 1.0 1443200831
## 9331 63 6874 3.5 1443199987
## 9332 63 6934 3.0 1443290270
## 9333 63 6942 2.5 1443200654
## 9334 63 7022 2.5 1443200819
## 9335 63 7132 4.0 1443201026
## 9336 63 7153 4.0 1443199780
## 9337 63 7254 2.5 1443290300
## 9338 63 7361 5.0 1443200470
## 9339 63 7387 2.0 1443200109
## 9340 63 7438 2.5 1443200006
## 9341 63 7980 4.5 1443200182
## 9342 63 8361 3.0 1443368398
## 9343 63 8376 2.5 1443200716
## 9344 63 8464 4.0 1443200678
## 9345 63 8665 3.0 1443200020
## 9346 63 8873 3.0 1443199994
## 9347 63 8874 5.0 1443199966
## 9348 63 8917 4.0 1443200838
## 9349 63 27846 3.5 1443348599
## 9350 63 27904 4.0 1443200293
## 9351 63 30793 2.5 1443368323
## 9352 63 30810 2.5 1443200208
## 9353 63 31658 4.0 1443200483
## 9354 63 32587 5.0 1443200021
## 9355 63 33004 3.5 1443200735
## 9356 63 33779 5.0 1443201056
## 9357 63 33794 3.5 1443199905
## 9358 63 38038 5.0 1443200867
## 9359 63 41566 3.0 1443290332
## 9360 63 45722 4.0 1443200624
## 9361 63 45728 4.0 1443200332
## 9362 63 48385 3.0 1443201339
## 9363 63 48516 4.5 1443199828
## 9364 63 48774 5.0 1443199974
## 9365 63 48780 3.5 1443200478
## 9366 63 49272 4.0 1443368271
## 9367 63 50872 2.5 1443199730
## 9368 63 51255 5.0 1443200004
## 9369 63 53000 2.0 1443729640
## 9370 63 53125 3.5 1443290371
## 9371 63 53972 4.0 1443200358
## 9372 63 54259 3.5 1443200858
## 9373 63 54272 4.0 1443200759
## 9374 63 54286 4.0 1443199895
## 9375 63 57669 5.0 1443199990
## 9376 63 58559 5.0 1443199770
## 9377 63 59615 4.0 1443729588
## 9378 63 60069 4.0 1443199853
## 9379 63 61323 3.5 1443200389
## 9380 63 64285 4.5 1443348584
## 9381 63 67997 4.0 1443348576
## 9382 63 68358 3.5 1443368303
## 9383 63 68954 4.0 1443200509
## 9384 63 69481 4.0 1443200865
## 9385 63 71535 4.0 1443200052
## 9386 63 73017 4.0 1443200123
## 9387 63 74458 4.0 1443200693
## 9388 63 77455 5.0 1443199931
## 9389 63 77561 2.5 1443200324
## 9390 63 77800 5.0 1443200243
## 9391 63 78499 4.0 1443200970
## 9392 63 79132 3.5 1443200448
## 9393 63 79702 5.0 1443200885
## 9394 63 81229 4.0 1443200311
## 9395 63 81845 4.5 1443200952
## 9396 63 85414 4.0 1443200160
## 9397 63 86290 5.0 1443200171
## 9398 63 86504 3.0 1443200524
## 9399 63 87232 4.0 1443200057
## 9400 63 88140 4.0 1443200372
## 9401 63 89745 3.5 1443199946
## 9402 63 89753 5.0 1443348544
## 9403 63 89904 5.0 1443735569
## 9404 63 91500 0.5 1443200265
## 9405 63 91529 5.0 1443199885
## 9406 63 91630 4.0 1443200291
## 9407 63 91658 4.0 1443200027
## 9408 63 92494 5.0 1443348596
## 9409 63 92535 5.0 1443290392
## 9410 63 95858 4.0 1443201027
## 9411 63 96079 3.5 1443200115
## 9412 63 96610 4.5 1443200189
## 9413 63 97913 5.0 1443348579
## 9414 63 98491 5.0 1443200999
## 9415 63 102217 5.0 1443200213
## 9416 63 102445 4.5 1443200092
## 9417 63 104069 4.0 1443201016
## 9418 63 106487 0.5 1443200230
## 9419 63 106696 5.0 1443461176
## 9420 63 108932 5.0 1443348415
## 9421 63 110102 4.0 1443200150
## 9422 63 111362 3.5 1443200063
## 9423 63 111759 4.0 1443199982
## 9424 63 111781 5.0 1443200278
## 9425 63 112852 4.0 1443199980
## 9426 63 115617 5.0 1443199933
## 9427 63 122892 4.0 1443200176
## 9428 63 134853 5.0 1443200486
## 9429 64 1 4.0 1161520134
## 9430 64 3 3.5 1161519668
## 9431 64 6 4.5 1161520752
## 9432 64 16 5.0 1161528794
## 9433 64 19 3.5 1161521687
## 9434 64 22 3.5 1161559916
## 9435 64 25 3.5 1161521571
## 9436 64 32 4.0 1161520763
## 9437 64 34 4.5 1161520212
## 9438 64 36 4.0 1161521343
## 9439 64 39 4.0 1161520967
## 9440 64 45 3.5 1161564506
## 9441 64 47 4.5 1161520185
## 9442 64 48 3.0 1161529467
## 9443 64 50 3.0 1161528982
## 9444 64 70 4.0 1161559767
## 9445 64 104 3.0 1161528801
## 9446 64 110 4.0 1161520230
## 9447 64 111 4.0 1161521289
## 9448 64 112 3.0 1161563742
## 9449 64 141 3.0 1161520890
## 9450 64 151 3.0 1161529309
## 9451 64 153 2.5 1161520389
## 9452 64 159 3.5 1161563882
## 9453 64 160 2.5 1161519628
## 9454 64 163 3.5 1161529382
## 9455 64 185 3.0 1161520635
## 9456 64 186 2.5 1161559750
## 9457 64 198 3.0 1161565802
## 9458 64 207 3.5 1161566667
## 9459 64 223 3.0 1161521597
## 9460 64 231 4.5 1161520600
## 9461 64 236 3.5 1161529390
## 9462 64 253 4.0 1161521002
## 9463 64 260 3.5 1161520007
## 9464 64 265 3.5 1161529464
## 9465 64 266 5.0 1161528933
## 9466 64 293 4.0 1161521544
## 9467 64 296 4.5 1161520143
## 9468 64 307 3.5 1161531272
## 9469 64 316 3.0 1161520309
## 9470 64 317 3.5 1161529277
## 9471 64 318 5.0 1161520540
## 9472 64 333 4.5 1161564457
## 9473 64 344 3.5 1161520033
## 9474 64 350 3.5 1161528851
## 9475 64 353 4.0 1161519634
## 9476 64 355 2.5 1161620564
## 9477 64 356 4.0 1161520004
## 9478 64 357 4.5 1161521689
## 9479 64 364 4.0 1161520878
## 9480 64 365 4.0 1161566490
## 9481 64 367 3.5 1161520598
## 9482 64 370 2.0 1161519723
## 9483 64 377 3.0 1161520155
## 9484 64 432 2.5 1161519711
## 9485 64 435 3.5 1161529433
## 9486 64 466 3.5 1161529425
## 9487 64 480 4.0 1161520140
## 9488 64 500 3.5 1161520572
## 9489 64 509 4.0 1161521558
## 9490 64 520 4.0 1161529436
## 9491 64 527 5.0 1161520178
## 9492 64 543 3.5 1161565737
## 9493 64 553 4.0 1161528861
## 9494 64 555 4.0 1161559570
## 9495 64 585 4.0 1161565986
## 9496 64 586 3.0 1161521273
## 9497 64 587 4.0 1161520501
## 9498 64 588 4.0 1161520247
## 9499 64 589 4.0 1161520454
## 9500 64 590 5.0 1161520062
## 9501 64 593 5.0 1161520116
## 9502 64 595 3.5 1161520447
## 9503 64 596 4.0 1161559642
## 9504 64 597 3.5 1161520504
## 9505 64 608 4.0 1161520658
## 9506 64 628 4.5 1161566150
## 9507 64 647 3.5 1161620706
## 9508 64 697 3.0 1161566670
## 9509 64 708 4.5 1161521683
## 9510 64 736 3.5 1161520113
## 9511 64 762 3.0 1161559839
## 9512 64 778 5.0 1161521611
## 9513 64 780 3.0 1161520462
## 9514 64 783 2.5 1161559862
## 9515 64 784 3.0 1161559606
## 9516 64 785 3.5 1161559770
## 9517 64 786 3.0 1161521392
## 9518 64 788 3.5 1161521628
## 9519 64 858 5.0 1161520037
## 9520 64 908 4.0 1161528942
## 9521 64 919 4.0 1161521149
## 9522 64 924 1.0 1161521031
## 9523 64 968 3.5 1161536420
## 9524 64 1028 4.0 1161559800
## 9525 64 1029 4.0 1161620681
## 9526 64 1036 3.0 1161520494
## 9527 64 1042 3.0 1161620561
## 9528 64 1059 3.5 1161564464
## 9529 64 1060 3.5 1161565798
## 9530 64 1061 3.5 1161620573
## 9531 64 1073 4.0 1161520607
## 9532 64 1079 4.5 1161521678
## 9533 64 1088 4.0 1161559902
## 9534 64 1089 4.0 1161520988
## 9535 64 1090 5.0 1161528856
## 9536 64 1092 4.5 1161559720
## 9537 64 1094 4.5 1161559675
## 9538 64 1096 5.0 1161536367
## 9539 64 1097 4.5 1161520129
## 9540 64 1101 3.0 1161521245
## 9541 64 1120 3.5 1161564472
## 9542 64 1136 4.0 1161520638
## 9543 64 1148 4.0 1161529053
## 9544 64 1183 4.0 1161521304
## 9545 64 1193 5.0 1161528996
## 9546 64 1196 3.5 1161520897
## 9547 64 1197 4.5 1161520498
## 9548 64 1203 5.0 1161565961
## 9549 64 1204 5.0 1161529352
## 9550 64 1207 4.0 1161529233
## 9551 64 1208 5.0 1161521096
## 9552 64 1210 3.5 1161520048
## 9553 64 1213 5.0 1161520853
## 9554 64 1214 4.0 1161520595
## 9555 64 1215 4.0 1161559633
## 9556 64 1217 5.0 1161531086
## 9557 64 1221 5.0 1161528995
## 9558 64 1222 4.0 1161521646
## 9559 64 1225 4.0 1161521567
## 9560 64 1228 4.0 1161566014
## 9561 64 1240 3.5 1161520175
## 9562 64 1250 5.0 1161529372
## 9563 64 1258 3.5 1161521337
## 9564 64 1263 4.5 1161565813
## 9565 64 1265 4.0 1161520350
## 9566 64 1266 3.5 1161528922
## 9567 64 1276 4.0 1161559678
## 9568 64 1282 3.5 1161559559
## 9569 64 1285 3.0 1161559782
## 9570 64 1287 4.5 1161566123
## 9571 64 1288 4.5 1161519737
## 9572 64 1293 5.0 1161564479
## 9573 64 1302 4.0 1161529469
## 9574 64 1320 3.0 1161528929
## 9575 64 1339 3.5 1161565604
## 9576 64 1343 4.0 1161564509
## 9577 64 1345 4.5 1161620700
## 9578 64 1348 4.0 1161531020
## 9579 64 1358 4.0 1161528790
## 9580 64 1387 5.0 1161521187
## 9581 64 1391 3.5 1161521644
## 9582 64 1396 3.5 1161528817
## 9583 64 1405 4.0 1161565633
## 9584 64 1407 3.5 1161521696
## 9585 64 1408 5.0 1161529268
## 9586 64 1466 4.0 1161559960
## 9587 64 1479 3.0 1161565689
## 9588 64 1485 3.0 1161519687
## 9589 64 1513 4.0 1161565629
## 9590 64 1517 4.0 1161520656
## 9591 64 1527 3.5 1161520360
## 9592 64 1552 2.0 1161529368
## 9593 64 1569 2.5 1161559738
## 9594 64 1580 3.5 1161520051
## 9595 64 1617 4.0 1161520235
## 9596 64 1625 3.0 1161521622
## 9597 64 1639 3.5 1161521371
## 9598 64 1641 4.0 1161521192
## 9599 64 1644 2.5 1161620603
## 9600 64 1645 2.5 1161529243
## 9601 64 1673 4.5 1161521563
## 9602 64 1682 4.0 1161520745
## 9603 64 1690 3.0 1161529449
## 9604 64 1704 4.5 1161520428
## 9605 64 1717 3.0 1161620664
## 9606 64 1729 4.0 1161559685
## 9607 64 1732 5.0 1161521585
## 9608 64 1748 3.5 1161559551
## 9609 64 1762 4.0 1161564556
## 9610 64 1777 4.0 1161528823
## 9611 64 1784 3.0 1161521182
## 9612 64 1805 3.0 1161566446
## 9613 64 1883 2.5 1161620656
## 9614 64 1889 3.5 1161530830
## 9615 64 1907 4.0 1161566450
## 9616 64 1911 3.0 1161566464
## 9617 64 1912 5.0 1161559656
## 9618 64 1917 2.5 1161520519
## 9619 64 1947 4.0 1161565966
## 9620 64 1953 3.0 1161565713
## 9621 64 1961 4.0 1161520193
## 9622 64 1967 4.5 1161566031
## 9623 64 1968 3.5 1161520955
## 9624 64 1994 4.5 1161620585
## 9625 64 2003 4.5 1161559544
## 9626 64 2005 4.0 1161559965
## 9627 64 2006 3.5 1161521538
## 9628 64 2018 3.5 1161620718
## 9629 64 2019 5.0 1161529020
## 9630 64 2023 3.5 1161529245
## 9631 64 2028 4.0 1161520159
## 9632 64 2054 3.5 1161519681
## 9633 64 2064 4.0 1161563836
## 9634 64 2078 4.0 1161564431
## 9635 64 2080 4.0 1161565790
## 9636 64 2082 3.0 1161563930
## 9637 64 2085 3.0 1161566028
## 9638 64 2087 3.5 1161566154
## 9639 64 2100 3.5 1161521607
## 9640 64 2115 3.0 1161521395
## 9641 64 2124 4.0 1161565612
## 9642 64 2140 4.0 1161565615
## 9643 64 2161 4.0 1161559639
## 9644 64 2167 3.5 1161528879
## 9645 64 2174 3.5 1161520624
## 9646 64 2193 3.5 1161559604
## 9647 64 2194 4.5 1161521071
## 9648 64 2248 4.0 1161559828
## 9649 64 2268 4.0 1161521223
## 9650 64 2273 3.0 1161559647
## 9651 64 2278 5.0 1161559949
## 9652 64 2291 4.0 1161521153
## 9653 64 2294 3.0 1161559702
## 9654 64 2302 3.5 1161521485
## 9655 64 2313 4.5 1161620683
## 9656 64 2321 3.5 1161521673
## 9657 64 2324 4.0 1161521381
## 9658 64 2329 4.0 1161519962
## 9659 64 2355 4.0 1161520576
## 9660 64 2369 3.0 1161620613
## 9661 64 2394 3.5 1161620709
## 9662 64 2395 5.0 1161529301
## 9663 64 2396 4.0 1161520190
## 9664 64 2406 3.5 1161519733
## 9665 64 2420 5.0 1161566045
## 9666 64 2427 5.0 1161565686
## 9667 64 2450 2.0 1161565437
## 9668 64 2470 3.0 1161528886
## 9669 64 2502 4.5 1161519727
## 9670 64 2539 3.0 1161559712
## 9671 64 2541 3.5 1161565677
## 9672 64 2542 3.5 1161528864
## 9673 64 2571 4.0 1161519966
## 9674 64 2580 3.0 1161559591
## 9675 64 2581 3.0 1161565958
## 9676 64 2599 3.5 1161521041
## 9677 64 2617 3.5 1161521136
## 9678 64 2640 4.5 1161519699
## 9679 64 2657 4.0 1161521582
## 9680 64 2683 4.0 1161520354
## 9681 64 2692 5.0 1161521090
## 9682 64 2694 3.0 1161559713
## 9683 64 2699 3.5 1161521114
## 9684 64 2700 4.5 1161519697
## 9685 64 2706 2.5 1161520644
## 9686 64 2710 3.5 1161520773
## 9687 64 2712 3.0 1161521144
## 9688 64 2722 3.0 1161565830
## 9689 64 2723 3.5 1161559869
## 9690 64 2746 4.0 1161565655
## 9691 64 2761 5.0 1161565763
## 9692 64 2762 4.5 1161520995
## 9693 64 2770 4.0 1161529212
## 9694 64 2797 4.0 1161520603
## 9695 64 2804 5.0 1161528937
## 9696 64 2826 3.5 1161620716
## 9697 64 2858 2.5 1161520054
## 9698 64 2871 4.0 1161563770
## 9699 64 2905 3.5 1161531147
## 9700 64 2908 4.5 1161564460
## 9701 64 2916 3.0 1161520927
## 9702 64 2918 3.5 1161520698
## 9703 64 2959 4.5 1161520542
## 9704 64 2987 4.0 1161520641
## 9705 64 2997 4.0 1161520151
## 9706 64 3005 3.0 1161620552
## 9707 64 3030 4.0 1161531362
## 9708 64 3033 3.5 1161529332
## 9709 64 3041 3.5 1161565558
## 9710 64 3052 4.0 1161521189
## 9711 64 3072 5.0 1161559556
## 9712 64 3100 3.5 1161620653
## 9713 64 3101 3.5 1161521521
## 9714 64 3105 4.0 1161620546
## 9715 64 3107 3.0 1161563765
## 9716 64 3108 4.0 1161559882
## 9717 64 3114 4.0 1161520511
## 9718 64 3147 4.0 1161520923
## 9719 64 3148 4.0 1161565684
## 9720 64 3160 4.0 1161529395
## 9721 64 3175 3.5 1161521068
## 9722 64 3176 3.5 1161521172
## 9723 64 3210 4.0 1161559824
## 9724 64 3247 3.5 1161564529
## 9725 64 3253 4.5 1161521375
## 9726 64 3257 3.5 1161565824
## 9727 64 3273 2.0 1161620569
## 9728 64 3300 4.0 1161565598
## 9729 64 3301 3.0 1161565752
## 9730 64 3354 0.5 1161565846
## 9731 64 3362 5.0 1161565747
## 9732 64 3386 4.5 1161559855
## 9733 64 3396 4.0 1161565767
## 9734 64 3408 2.0 1161520761
## 9735 64 3418 3.5 1161521378
## 9736 64 3421 4.5 1161528832
## 9737 64 3450 3.5 1161566020
## 9738 64 3481 4.0 1161520665
## 9739 64 3489 3.0 1161559689
## 9740 64 3499 4.5 1161559601
## 9741 64 3510 3.0 1161559646
## 9742 64 3526 4.0 1161566627
## 9743 64 3535 5.0 1161565660
## 9744 64 3552 3.0 1161559581
## 9745 64 3556 4.0 1161620702
## 9746 64 3608 5.0 1161566444
## 9747 64 3617 3.0 1161559953
## 9748 64 3671 3.5 1161528888
## 9749 64 3717 2.5 1161529326
## 9750 64 3752 3.0 1161559618
## 9751 64 3755 3.5 1161529254
## 9752 64 3785 2.5 1161559652
## 9753 64 3793 3.5 1161520586
## 9754 64 3809 4.0 1161566059
## 9755 64 3827 3.0 1161565972
## 9756 64 3863 3.5 1161559624
## 9757 64 3897 4.0 1161519677
## 9758 64 3916 3.0 1161559576
## 9759 64 3949 4.0 1161529479
## 9760 64 3969 0.5 1161620638
## 9761 64 3994 4.0 1161520726
## 9762 64 3996 4.5 1161520000
## 9763 64 4002 4.5 1161529462
## 9764 64 4011 4.5 1161520796
## 9765 64 4016 4.5 1161564478
## 9766 64 4022 3.5 1161521294
## 9767 64 4023 1.0 1161565992
## 9768 64 4025 2.5 1161528918
## 9769 64 4027 4.0 1161520105
## 9770 64 4034 4.0 1161519740
## 9771 64 4105 3.0 1161566128
## 9772 64 4128 5.0 1161559899
## 9773 64 4144 4.5 1161530820
## 9774 64 4148 3.0 1161559956
## 9775 64 4223 3.5 1161559740
## 9776 64 4226 4.5 1161520122
## 9777 64 4235 5.0 1161529057
## 9778 64 4239 3.5 1161559818
## 9779 64 4246 4.0 1161521006
## 9780 64 4262 3.5 1161559735
## 9781 64 4270 3.0 1161529290
## 9782 64 4306 3.5 1161520021
## 9783 64 4308 3.0 1161521141
## 9784 64 4310 3.0 1161528902
## 9785 64 4321 3.5 1161559636
## 9786 64 4343 2.5 1161565840
## 9787 64 4369 2.5 1161559578
## 9788 64 4370 3.5 1161521266
## 9789 64 4380 5.0 1161531072
## 9790 64 4448 3.5 1161565729
## 9791 64 4489 4.5 1161565806
## 9792 64 4571 4.0 1161566648
## 9793 64 4641 3.5 1161559706
## 9794 64 4701 3.0 1161559669
## 9795 64 4720 3.5 1161528797
## 9796 64 4734 2.0 1161559539
## 9797 64 4773 3.0 1161563867
## 9798 64 4776 4.0 1161529258
## 9799 64 4816 3.5 1161529438
## 9800 64 4865 4.0 1161565942
## 9801 64 4878 4.0 1161520780
## 9802 64 4886 4.0 1161520043
## 9803 64 4896 3.5 1161520592
## 9804 64 4964 3.5 1161530514
## 9805 64 4973 5.0 1161520450
## 9806 64 4975 3.0 1161528785
## 9807 64 4979 4.0 1161520782
## 9808 64 4980 4.0 1161566646
## 9809 64 4993 4.5 1161519956
## 9810 64 5010 5.0 1161528939
## 9811 64 5015 4.0 1161559896
## 9812 64 5026 4.0 1161530549
## 9813 64 5064 3.5 1161563761
## 9814 64 5152 3.5 1161620697
## 9815 64 5218 3.5 1161521167
## 9816 64 5225 4.0 1161559879
## 9817 64 5254 3.0 1161563848
## 9818 64 5266 4.0 1161528870
## 9819 64 5291 4.5 1161531091
## 9820 64 5299 4.5 1161521077
## 9821 64 5308 3.0 1161620624
## 9822 64 5388 3.5 1161529230
## 9823 64 5417 3.5 1161530687
## 9824 64 5418 3.5 1161520694
## 9825 64 5445 4.0 1161519691
## 9826 64 5481 3.5 1161528891
## 9827 64 5502 4.5 1161521125
## 9828 64 5528 3.5 1161559969
## 9829 64 5617 4.0 1161565833
## 9830 64 5630 3.5 1161529446
## 9831 64 5669 3.5 1161520420
## 9832 64 5673 5.0 1161529296
## 9833 64 5679 3.0 1161521059
## 9834 64 5690 5.0 1161530765
## 9835 64 5782 4.5 1161529081
## 9836 64 5810 4.0 1161564451
## 9837 64 5816 3.5 1161520344
## 9838 64 5878 3.5 1161531238
## 9839 64 5902 4.5 1161521577
## 9840 64 5903 3.5 1161566145
## 9841 64 5952 4.5 1161519958
## 9842 64 5954 4.5 1161565626
## 9843 64 5956 4.0 1161528803
## 9844 64 5991 3.5 1161521014
## 9845 64 6016 3.5 1161528980
## 9846 64 6155 0.5 1161620669
## 9847 64 6188 5.0 1161529471
## 9848 64 6214 4.0 1161530839
## 9849 64 6218 4.0 1161528931
## 9850 64 6242 3.0 1161531115
## 9851 64 6281 4.0 1161529402
## 9852 64 6287 2.0 1161566051
## 9853 64 6296 4.0 1161563806
## 9854 64 6323 3.5 1161529340
## 9855 64 6331 4.5 1161620595
## 9856 64 6333 3.5 1161520015
## 9857 64 6365 3.0 1161520443
## 9858 64 6373 3.5 1161521692
## 9859 64 6377 5.0 1161520313
## 9860 64 6385 5.0 1161559911
## 9861 64 6502 4.5 1161521011
## 9862 64 6539 4.0 1161520011
## 9863 64 6659 4.5 1161565778
## 9864 64 6711 4.0 1161520401
## 9865 64 6796 4.0 1161559715
## 9866 64 6863 3.5 1161521255
## 9867 64 6870 3.5 1161521316
## 9868 64 6874 4.0 1161520239
## 9869 64 6936 3.5 1161559663
## 9870 64 6944 3.5 1161620576
## 9871 64 6957 4.0 1161565696
## 9872 64 6975 4.0 1161530330
## 9873 64 7004 3.0 1161565636
## 9874 64 7090 4.5 1161521346
## 9875 64 7139 4.5 1161620632
## 9876 64 7147 4.0 1161520702
## 9877 64 7153 4.5 1161519718
## 9878 64 7160 4.0 1161559732
## 9879 64 7162 4.0 1161559666
## 9880 64 7235 3.0 1161530260
## 9881 64 7254 3.0 1161521699
## 9882 64 7293 3.0 1161559745
## 9883 64 7318 3.5 1161530239
## 9884 64 7360 4.5 1161564441
## 9885 64 7361 4.5 1161519997
## 9886 64 7411 1.5 1161565316
## 9887 64 7438 4.0 1161520059
## 9888 64 7445 3.5 1161559941
## 9889 64 7451 4.0 1161559814
## 9890 64 7701 3.0 1161563945
## 9891 64 7743 4.5 1161563891
## 9892 64 7930 3.5 1161529679
## 9893 64 7982 4.5 1161530147
## 9894 64 8014 5.0 1161530121
## 9895 64 8093 3.5 1161530106
## 9896 64 8360 3.5 1161520171
## 9897 64 8368 3.5 1161520296
## 9898 64 8376 5.0 1161528840
## 9899 64 8464 4.0 1161520915
## 9900 64 8528 3.5 1161529354
## 9901 64 8622 4.0 1161520514
## 9902 64 8623 4.0 1161565658
## 9903 64 8641 4.0 1161563852
## 9904 64 8645 4.5 1161530946
## 9905 64 8783 3.5 1161529386
## 9906 64 8784 4.5 1161520667
## 9907 64 8795 4.5 1161529979
## 9908 64 8798 4.0 1161521094
## 9909 64 8832 3.5 1161530042
## 9910 64 8873 4.5 1161529965
## 9911 64 8874 5.0 1161528841
## 9912 64 8917 5.0 1161565608
## 9913 64 8949 3.0 1161521055
## 9914 64 8950 4.5 1161566455
## 9915 64 8957 3.5 1161559613
## 9916 64 8961 3.5 1161520721
## 9917 64 8981 4.0 1161559535
## 9918 64 8983 3.5 1161529958
## 9919 64 26504 3.5 1161520251
## 9920 64 27020 3.5 1161529717
## 9921 64 27266 4.5 1161529878
## 9922 64 27523 5.0 1161529747
## 9923 64 27773 5.0 1161529930
## 9924 64 27801 3.5 1161531037
## 9925 64 27869 4.5 1161531223
## 9926 64 30707 3.5 1161520729
## 9927 64 30793 4.0 1161520874
## 9928 64 30810 5.0 1161529250
## 9929 64 31878 4.0 1161530878
## 9930 64 32587 4.5 1161521307
## 9931 64 33166 2.5 1161520881
## 9932 64 33683 4.0 1161529899
## 9933 64 33794 4.0 1161520706
## 9934 64 34072 4.5 1161529429
## 9935 64 34162 3.0 1161520858
## 9936 64 34437 3.5 1161559905
## 9937 64 37733 3.0 1161528925
## 9938 64 39183 4.0 1161521523
## 9939 64 40815 4.0 1161520530
## 9940 64 40819 4.0 1161520768
## 9941 64 41566 4.0 1161520426
## 9942 64 41569 4.0 1161520959
## 9943 64 42632 4.5 1161529769
## 9944 64 45447 2.5 1161521530
## 9945 64 46578 4.5 1161519953
## 9946 65 318 4.0 1494767049
## 9947 65 527 4.0 1494767109
## 9948 65 1036 3.0 1494767212
## 9949 65 1246 4.0 1494767216
## 9950 65 1682 4.5 1494767202
## 9951 65 2028 4.0 1494768486
## 9952 65 2329 4.5 1494767143
## 9953 65 2959 4.5 1494767045
## 9954 65 3147 4.5 1494767156
## 9955 65 4226 4.0 1494767113
## 9956 65 4993 3.5 1494767062
## 9957 65 7153 4.0 1494767041
## 9958 65 7458 3.5 1494767330
## 9959 65 8798 3.5 1494767844
## 9960 65 33660 4.0 1494768073
## 9961 65 36529 4.0 1494767337
## 9962 65 44191 4.5 1494767097
## 9963 65 46976 3.5 1494767179
## 9964 65 47610 3.5 1494802728
## 9965 65 48780 4.5 1494802296
## 9966 65 55247 5.0 1494767310
## 9967 65 58559 4.5 1494802468
## 9968 65 64614 4.5 1494802276
## 9969 65 74458 4.5 1494768535
## 9970 65 79132 4.5 1494802456
## 9971 65 88140 3.0 1494767074
## 9972 65 89774 4.0 1494767219
## 9973 65 91542 4.5 1494767081
## 9974 65 97752 4.0 1494767354
## 9975 65 97921 3.0 1494767083
## 9976 65 109487 4.5 1494802244
## 9977 65 111759 4.0 1494802716
## 9978 65 116797 4.5 1494767104
## 9979 65 122904 3.0 1494767242
## 9980 66 1 4.0 1104643957
## 9981 66 5 4.0 1113190367
## 9982 66 18 4.0 1113190353
## 9983 66 19 3.0 1093143913
## 9984 66 21 4.0 1113190363
## 9985 66 29 4.5 1099187646
## 9986 66 32 5.0 1093747471
## 9987 66 47 5.0 1093747353
## 9988 66 50 4.0 1104644110
## 9989 66 110 5.0 1093747481
## 9990 66 111 4.5 1099187536
## 9991 66 172 3.5 1113188330
## 9992 66 181 2.0 1113190908
## 9993 66 208 4.0 1113190327
## 9994 66 223 3.5 1093747608
## 9995 66 224 5.0 1113190336
## 9996 66 248 3.0 1113190892
## 9997 66 255 0.5 1113188840
## 9998 66 260 2.5 1093747550
## 9999 66 272 3.5 1113190319
## 10000 66 273 3.5 1113190315
## 10001 66 282 4.0 1093144035
## 10002 66 293 4.0 1093747362
## 10003 66 296 5.0 1093747506
## 10004 66 318 4.5 1093747397
## 10005 66 337 4.0 1093143979
## 10006 66 356 5.0 1093747854
## 10007 66 357 5.0 1113190299
## 10008 66 380 3.5 1104643944
## 10009 66 415 3.0 1113190881
## 10010 66 442 3.0 1093143935
## 10011 66 457 3.0 1093747700
## 10012 66 480 3.0 1104643911
## 10013 66 481 2.0 1113190302
## 10014 66 485 2.5 1099187127
## 10015 66 516 3.0 1113188566
## 10016 66 523 4.0 1113190866
## 10017 66 529 4.5 1099187496
## 10018 66 535 5.0 1113190283
## 10019 66 541 5.0 1093748041
## 10020 66 551 3.5 1093747809
## 10021 66 555 3.5 1093747634
## 10022 66 586 3.0 1099187123
## 10023 66 589 4.0 1104643949
## 10024 66 590 4.5 1104643930
## 10025 66 592 4.0 1104643920
## 10026 66 593 4.0 1093747465
## 10027 66 608 4.0 1093748067
## 10028 66 612 3.5 1113188783
## 10029 66 628 4.0 1093747858
## 10030 66 637 3.0 1113190294
## 10031 66 663 3.5 1113188558
## 10032 66 671 4.0 1113190242
## 10033 66 762 2.5 1099187133
## 10034 66 780 3.5 1104643954
## 10035 66 799 4.0 1113190257
## 10036 66 805 4.0 1113188355
## 10037 66 849 3.5 1113190262
## 10038 66 903 4.5 1099187616
## 10039 66 912 4.5 1104644490
## 10040 66 919 3.5 1104645169
## 10041 66 922 5.0 1104644777
## 10042 66 953 4.0 1104645133
## 10043 66 954 4.0 1099187566
## 10044 66 1004 3.0 1113190839
## 10045 66 1023 4.5 1113188546
## 10046 66 1027 3.5 1113188577
## 10047 66 1036 4.0 1093747439
## 10048 66 1047 4.0 1113190225
## 10049 66 1049 3.5 1113190210
## 10050 66 1073 4.5 1099187097
## 10051 66 1079 4.5 1093143944
## 10052 66 1080 4.0 1093144031
## 10053 66 1089 4.0 1093747663
## 10054 66 1090 4.0 1093747746
## 10055 66 1093 3.5 1113190149
## 10056 66 1094 4.0 1099187083
## 10057 66 1100 3.5 1113188518
## 10058 66 1127 4.0 1113190229
## 10059 66 1136 5.0 1093747499
## 10060 66 1186 4.5 1113190204
## 10061 66 1196 4.0 1093747539
## 10062 66 1197 4.0 1093747453
## 10063 66 1198 3.0 1104644125
## 10064 66 1200 5.0 1093747661
## 10065 66 1201 5.0 1099187356
## 10066 66 1203 4.5 1099187301
## 10067 66 1206 5.0 1104644833
## 10068 66 1210 3.0 1093747693
## 10069 66 1213 3.5 1099187078
## 10070 66 1214 4.0 1093747875
## 10071 66 1215 4.5 1093748023
## 10072 66 1216 4.5 1113188759
## 10073 66 1217 5.0 1099188036
## 10074 66 1222 4.5 1093747612
## 10075 66 1224 4.5 1104645055
## 10076 66 1240 4.0 1093747795
## 10077 66 1242 4.0 1093747680
## 10078 66 1243 5.0 1099187990
## 10079 66 1246 4.5 1093144016
## 10080 66 1247 5.0 1093143995
## 10081 66 1252 4.5 1099187504
## 10082 66 1257 4.0 1093747449
## 10083 66 1258 4.0 1093747860
## 10084 66 1259 3.5 1093747427
## 10085 66 1261 5.0 1099188050
## 10086 66 1265 3.5 1093748059
## 10087 66 1266 5.0 1099187067
## 10088 66 1270 3.0 1093747585
## 10089 66 1275 4.5 1099187092
## 10090 66 1284 5.0 1099187922
## 10091 66 1285 4.0 1093747601
## 10092 66 1288 5.0 1099187511
## 10093 66 1302 4.5 1113188364
## 10094 66 1326 0.5 1113189117
## 10095 66 1346 4.0 1113190813
## 10096 66 1356 3.5 1113190120
## 10097 66 1358 5.0 1093747757
## 10098 66 1370 3.5 1093144021
## 10099 66 1378 4.0 1113190101
## 10100 66 1382 2.5 1113190823
## 10101 66 1394 4.5 1093143999
## 10102 66 1407 4.5 1093144040
## 10103 66 1449 4.5 1099187600
## 10104 66 1488 3.5 1113190123
## 10105 66 1500 4.5 1093747726
## 10106 66 1517 4.0 1093747668
## 10107 66 1527 3.0 1093143939
## 10108 66 1541 4.0 1113190801
## 10109 66 1569 4.5 1113190134
## 10110 66 1610 3.5 1093748030
## 10111 66 1616 3.0 1113188502
## 10112 66 1625 4.5 1099187514
## 10113 66 1639 4.5 1099188155
## 10114 66 1641 4.5 1113188373
## 10115 66 1682 4.5 1093747644
## 10116 66 1704 5.0 1099187248
## 10117 66 1748 5.0 1099188071
## 10118 66 1769 4.0 1113190787
## 10119 66 1784 5.0 1093143924
## 10120 66 1845 4.0 1099188024
## 10121 66 1862 1.0 1113190775
## 10122 66 1912 4.5 1099188138
## 10123 66 1917 3.0 1113190108
## 10124 66 1918 3.5 1113188473
## 10125 66 1923 4.0 1093747647
## 10126 66 1952 5.0 1113188495
## 10127 66 1956 5.0 1113188521
## 10128 66 1961 4.0 1093747568
## 10129 66 1968 4.0 1093747571
## 10130 66 2000 3.5 1093747744
## 10131 66 2001 3.5 1113188348
## 10132 66 2002 3.0 1113188513
## 10133 66 2011 3.0 1093144011
## 10134 66 2019 4.5 1099187456
## 10135 66 2020 4.0 1099188103
## 10136 66 2028 4.5 1093747622
## 10137 66 2115 3.0 1099187073
## 10138 66 2139 4.0 1093747802
## 10139 66 2146 4.5 1113188460
## 10140 66 2194 4.0 1104644350
## 10141 66 2248 4.5 1093747934
## 10142 66 2257 4.0 1113189671
## 10143 66 2261 4.5 1113190749
## 10144 66 2268 3.5 1093747941
## 10145 66 2288 5.0 1113190069
## 10146 66 2291 3.5 1093144027
## 10147 66 2302 3.5 1113188325
## 10148 66 2312 4.0 1113190753
## 10149 66 2316 3.5 1113188714
## 10150 66 2355 3.5 1093143963
## 10151 66 2401 4.0 1093748010
## 10152 66 2420 4.0 1113188454
## 10153 66 2421 4.0 1113190062
## 10154 66 2463 4.0 1113188464
## 10155 66 2470 4.0 1113190055
## 10156 66 2502 5.0 1093747524
## 10157 66 2571 5.0 1093747372
## 10158 66 2580 3.5 1093747527
## 10159 66 2599 4.5 1099188169
## 10160 66 2617 2.0 1099187060
## 10161 66 2628 3.0 1113190079
## 10162 66 2648 5.0 1104645251
## 10163 66 2683 4.5 1093143930
## 10164 66 2700 5.0 1099187046
## 10165 66 2706 4.0 1093143957
## 10166 66 2710 4.0 1113190072
## 10167 66 2716 3.5 1093747713
## 10168 66 2762 5.0 1093747384
## 10169 66 2763 4.0 1113190088
## 10170 66 2795 4.0 1093747552
## 10171 66 2797 4.0 1093748037
## 10172 66 2802 3.5 1113188667
## 10173 66 2805 3.0 1113190083
## 10174 66 2858 5.0 1093747418
## 10175 66 2918 4.0 1093747390
## 10176 66 2951 4.5 1104644503
## 10177 66 2956 4.0 1113190710
## 10178 66 2959 5.0 1093143975
## 10179 66 2966 4.0 1099188014
## 10180 66 2987 4.0 1113190027
## 10181 66 3029 3.5 1113190689
## 10182 66 3033 3.5 1113190038
## 10183 66 3037 5.0 1104645039
## 10184 66 3039 4.0 1093747791
## 10185 66 3045 3.0 1113188657
## 10186 66 3052 4.0 1093747948
## 10187 66 3063 4.0 1113190672
## 10188 66 3072 4.0 1113190048
## 10189 66 3074 5.0 1113190683
## 10190 66 3098 4.5 1093747975
## 10191 66 3100 4.5 1113190015
## 10192 66 3101 4.0 1113190022
## 10193 66 3105 4.0 1113190033
## 10194 66 3108 4.5 1113190044
## 10195 66 3198 4.0 1093748064
## 10196 66 3201 5.0 1113190645
## 10197 66 3219 3.0 1113188398
## 10198 66 3252 4.5 1113189974
## 10199 66 3254 3.5 1113188411
## 10200 66 3262 4.0 1113188681
## 10201 66 3271 4.5 1093747434
## 10202 66 3355 3.5 1113188675
## 10203 66 3421 3.5 1093747710
## 10204 66 3444 4.5 1113190624
## 10205 66 3481 4.5 1093747729
## 10206 66 3499 4.0 1093747495
## 10207 66 3526 4.5 1113189969
## 10208 66 3552 4.0 1113189978
## 10209 66 3578 3.5 1093747720
## 10210 66 3686 4.0 1113190628
## 10211 66 3697 3.5 1113189983
## 10212 66 3698 4.5 1113190008
## 10213 66 3740 4.0 1113190600
## 10214 66 3745 3.5 1113190001
## 10215 66 3809 4.0 1113188421
## 10216 66 3911 4.0 1093748006
## 10217 66 4027 4.0 1093747676
## 10218 66 4040 3.0 1113188638
## 10219 66 4041 4.5 1113190569
## 10220 66 4079 4.5 1113190592
## 10221 66 4085 3.0 1093747814
## 10222 66 4128 4.0 1093747691
## 10223 66 4149 4.0 1113190565
## 10224 66 4158 4.0 1113190556
## 10225 66 4203 4.0 1113189077
## 10226 66 4226 5.0 1093747316
## 10227 66 4231 3.5 1113190589
## 10228 66 4306 5.0 1093144044
## 10229 66 4322 4.0 1104644449
## 10230 66 4465 4.0 1104644709
## 10231 66 4499 4.0 1093747840
## 10232 66 4537 4.0 1093747951
## 10233 66 4572 4.0 1113190535
## 10234 66 4581 4.0 1113189936
## 10235 66 4585 4.0 1113189059
## 10236 66 4591 3.5 1113189010
## 10237 66 4611 4.0 1113189304
## 10238 66 4616 3.5 1104645082
## 10239 66 4654 3.5 1113190546
## 10240 66 4720 3.5 1093747566
## 10241 66 4787 4.0 1093747596
## 10242 66 4886 4.5 1099187215
## 10243 66 4993 5.0 1093747405
## 10244 66 5023 4.0 1113189281
## 10245 66 5265 4.5 1113190517
## 10246 66 5283 4.0 1113190503
## 10247 66 5299 5.0 1113189941
## 10248 66 5329 3.5 1093747641
## 10249 66 5349 4.0 1093747788
## 10250 66 5418 5.0 1093748020
## 10251 66 5445 3.5 1093747761
## 10252 66 5459 2.0 1113188404
## 10253 66 5464 5.0 1093747535
## 10254 66 5481 4.0 1113189950
## 10255 66 5548 4.5 1113188591
## 10256 66 5574 4.0 1113190471
## 10257 66 5617 5.0 1099187961
## 10258 66 5618 4.5 1093747753
## 10259 66 5644 4.0 1104645215
## 10260 66 5673 5.0 1113190484
## 10261 66 5747 5.0 1099187582
## 10262 66 5902 5.0 1099187587
## 10263 66 5952 5.0 1093747320
## 10264 66 5957 4.0 1113190495
## 10265 66 6022 2.5 1093747242
## 10266 66 6025 3.5 1113189267
## 10267 66 6124 3.5 1113189260
## 10268 66 6188 3.5 1113190478
## 10269 66 6238 3.0 1113190432
## 10270 66 6287 4.5 1113190421
## 10271 66 6313 3.0 1113189741
## 10272 66 6333 4.0 1093747354
## 10273 66 6377 4.5 1093747322
## 10274 66 6378 4.5 1113189909
## 10275 66 6539 3.5 1093747292
## 10276 66 6617 4.5 1113190436
## 10277 66 6636 4.0 1113188871
## 10278 66 6708 5.0 1104644876
## 10279 66 6711 5.0 1104644677
## 10280 66 6754 4.5 1113190465
## 10281 66 6773 4.0 1099187633
## 10282 66 6786 4.5 1099188107
## 10283 66 6807 3.5 1093747517
## 10284 66 6832 4.0 1113188864
## 10285 66 6874 5.0 1093747485
## 10286 66 6936 4.5 1113189727
## 10287 66 6947 4.5 1099187936
## 10288 66 6979 4.0 1093747456
## 10289 66 6996 2.0 1097804327
## 10290 66 7004 3.5 1113190441
## 10291 66 7015 4.0 1113189214
## 10292 66 7018 5.0 1093747773
## 10293 66 7027 4.0 1093747697
## 10294 66 7028 2.5 1093747340
## 10295 66 7046 4.5 1113190403
## 10296 66 7048 4.0 1113189189
## 10297 66 7069 4.0 1093747931
## 10298 66 7090 4.0 1097803964
## 10299 66 7127 3.5 1113190384
## 10300 66 7143 4.5 1093747894
## 10301 66 7147 5.0 1099187316
## 10302 66 7153 5.0 1093747306
## 10303 66 7173 3.5 1113190398
## 10304 66 7293 4.5 1097804045
## 10305 66 7325 3.0 1113188605
## 10306 66 7361 4.5 1104643987
## 10307 66 7373 4.0 1097804268
## 10308 66 7438 5.0 1093747275
## 10309 66 7482 4.5 1104644301
## 10310 66 7493 4.0 1104644703
## 10311 66 7624 3.0 1093747331
## 10312 66 7647 4.0 1093747992
## 10313 66 7766 4.0 1113188973
## 10314 66 8024 4.0 1113189825
## 10315 66 8158 4.0 1104644268
## 10316 66 8360 4.5 1093747278
## 10317 66 8493 4.0 1104645429
## 10318 66 8636 5.0 1093747282
## 10319 66 8665 5.0 1093747996
## 10320 66 8784 4.5 1104644101
## 10321 66 8798 4.5 1097803995
## 10322 66 8874 5.0 1112589663
## 10323 66 8961 4.0 1104644077
## 10324 66 51255 4.0 1182723476
## 10325 67 293 5.0 1501273898
## 10326 67 296 4.5 1501273753
## 10327 67 318 4.5 1501274024
## 10328 67 356 4.5 1501274064
## 10329 67 589 3.5 1501273841
## 10330 67 1036 4.0 1501273849
## 10331 67 1270 4.5 1501273836
## 10332 67 1291 3.5 1501274102
## 10333 67 1527 5.0 1501273646
## 10334 67 1580 4.0 1501273559
## 10335 67 2011 4.0 1501274293
## 10336 67 2012 3.5 1501274294
## 10337 67 2028 4.5 1501273553
## 10338 67 2329 3.0 1501273601
## 10339 67 2571 4.5 1501273541
## 10340 67 2858 4.0 1501273550
## 10341 67 2959 4.5 1501273544
## 10342 67 4011 4.5 1501273607
## 10343 67 4306 3.5 1501273883
## 10344 67 4886 4.5 1501273889
## 10345 67 4993 2.0 1501274083
## 10346 67 5418 3.0 1501274015
## 10347 67 5574 4.0 1501273679
## 10348 67 5628 4.0 1501273685
## 10349 67 5952 2.0 1501274082
## 10350 67 6377 4.0 1501273885
## 10351 67 6539 4.5 1501273908
## 10352 67 7153 2.0 1501274080
## 10353 67 8604 5.0 1501273663
## 10354 67 8605 4.5 1501273672
## 10355 67 27193 5.0 1501273671
## 10356 67 60069 3.5 1501273959
## 10357 67 68157 4.0 1501273924
## 10358 67 79132 4.0 1501273757
## 10359 67 99114 4.0 1501274191
## 10360 67 152081 4.0 1501274150
## 10361 68 1 2.5 1158531426
## 10362 68 2 2.5 1158532776
## 10363 68 3 2.0 1158533415
## 10364 68 5 2.0 1158533624
## 10365 68 6 4.0 1158532058
## 10366 68 7 2.0 1230498124
## 10367 68 10 4.5 1158531612
## 10368 68 11 4.5 1158531050
## 10369 68 16 3.5 1158533018
## 10370 68 17 3.5 1158531987
## 10371 68 18 2.0 1532897231
## 10372 68 19 1.5 1158532448
## 10373 68 25 3.5 1158531974
## 10374 68 26 3.0 1158534106
## 10375 68 31 3.5 1158535464
## 10376 68 34 1.0 1158531735
## 10377 68 39 4.0 1158532000
## 10378 68 44 3.0 1158534993
## 10379 68 47 4.0 1158531489
## 10380 68 48 4.0 1158533544
## 10381 68 50 3.0 1158531764
## 10382 68 62 3.5 1158531021
## 10383 68 65 1.5 1269123315
## 10384 68 70 4.0 1158534541
## 10385 68 95 3.5 1158532180
## 10386 68 104 4.5 1158532958
## 10387 68 110 2.5 1158531496
## 10388 68 135 3.0 1261624168
## 10389 68 140 3.5 1269122528
## 10390 68 141 3.0 1305861316
## 10391 68 150 3.0 1158531364
## 10392 68 153 3.0 1158531596
## 10393 68 158 3.0 1158533897
## 10394 68 160 2.5 1158533372
## 10395 68 163 4.5 1158533641
## 10396 68 165 3.5 1158531548
## 10397 68 168 3.0 1240093526
## 10398 68 170 2.5 1261623628
## 10399 68 173 2.5 1158533364
## 10400 68 180 2.5 1269121607
## 10401 68 185 3.0 1158532023
## 10402 68 193 2.0 1261624010
## 10403 68 203 3.0 1269122697
## 10404 68 207 4.0 1269122598
## 10405 68 208 4.0 1158531805
## 10406 68 216 3.5 1261623484
## 10407 68 223 1.0 1158531005
## 10408 68 231 3.5 1158532011
## 10409 68 247 2.5 1261623443
## 10410 68 252 3.0 1230498298
## 10411 68 253 2.5 1158531739
## 10412 68 256 1.5 1158535511
## 10413 68 260 5.0 1158531191
## 10414 68 261 2.0 1230498595
## 10415 68 266 4.0 1158532808
## 10416 68 276 3.5 1269122700
## 10417 68 282 2.0 1158534484
## 10418 68 292 2.5 1158531915
## 10419 68 293 4.0 1158532453
## 10420 68 296 2.0 1180916156
## 10421 68 303 3.5 1261623895
## 10422 68 316 3.5 1158531378
## 10423 68 317 2.5 1158533037
## 10424 68 318 3.0 1158531293
## 10425 68 333 4.0 1158535093
## 10426 68 337 3.5 1158533077
## 10427 68 339 3.5 1158532177
## 10428 68 344 2.5 1158531367
## 10429 68 345 1.0 1269121154
## 10430 68 350 3.5 1158532759
## 10431 68 355 3.0 1158535521
## 10432 68 356 3.5 1158531181
## 10433 68 357 1.0 1240092554
## 10434 68 361 3.5 1269123000
## 10435 68 364 4.5 1158531894
## 10436 68 367 3.0 1158531592
## 10437 68 368 4.0 1158532750
## 10438 68 370 1.5 1158533335
## 10439 68 376 3.0 1158534489
## 10440 68 377 5.0 1158531516
## 10441 68 379 3.0 1269122944
## 10442 68 380 3.5 1158531354
## 10443 68 410 3.5 1158531046
## 10444 68 420 1.0 1158533188
## 10445 68 432 2.5 1158533238
## 10446 68 434 3.0 1158531897
## 10447 68 435 2.0 1158533526
## 10448 68 440 3.0 1230497680
## 10449 68 441 4.5 1261624104
## 10450 68 442 2.0 1158532647
## 10451 68 454 3.5 1158532134
## 10452 68 455 2.0 1261623672
## 10453 68 457 4.5 1158531542
## 10454 68 466 2.5 1158533732
## 10455 68 480 3.5 1158531200
## 10456 68 485 2.5 1158533833
## 10457 68 500 3.0 1158531950
## 10458 68 508 3.0 1240092508
## 10459 68 514 2.5 1271545072
## 10460 68 520 4.0 1158533593
## 10461 68 527 4.0 1305861414
## 10462 68 531 2.5 1269122037
## 10463 68 539 3.5 1158531794
## 10464 68 541 2.0 1158532190
## 10465 68 546 2.0 1269122893
## 10466 68 551 2.0 1158532937
## 10467 68 552 3.0 1230498490
## 10468 68 553 3.0 1158533034
## 10469 68 555 2.0 1230497905
## 10470 68 562 2.5 1261624214
## 10471 68 585 3.5 1268849080
## 10472 68 586 1.0 1158532048
## 10473 68 587 2.0 1158532304
## 10474 68 588 3.5 1158531766
## 10475 68 589 3.5 1158531164
## 10476 68 590 4.0 1158531481
## 10477 68 592 4.0 1158531159
## 10478 68 593 3.5 1158531247
## 10479 68 594 3.0 1158532827
## 10480 68 595 4.5 1158531532
## 10481 68 596 2.0 1158533784
## 10482 68 597 4.5 1158532014
## 10483 68 608 2.5 1158531452
## 10484 68 616 3.0 1261623742
## 10485 68 628 3.5 1158534567
## 10486 68 637 2.5 1261624252
## 10487 68 647 3.5 1158535929
## 10488 68 648 4.0 1158531681
## 10489 68 653 4.0 1158532974
## 10490 68 708 3.0 1158532899
## 10491 68 709 3.5 1275957523
## 10492 68 724 3.0 1261623297
## 10493 68 736 4.0 1158532066
## 10494 68 737 2.0 1269123485
## 10495 68 762 3.0 1261622750
## 10496 68 780 4.0 1158531402
## 10497 68 783 2.5 1158534731
## 10498 68 785 2.0 1158534867
## 10499 68 786 2.5 1158532711
## 10500 68 788 1.0 1158532411
## 10501 68 802 3.0 1158533322
## 10502 68 805 3.0 1158533585
## 10503 68 830 3.0 1261623682
## 10504 68 832 3.5 1158533778
## 10505 68 838 3.5 1158535598
## 10506 68 852 3.5 1158533697
## 10507 68 858 4.0 1268848984
## 10508 68 875 3.5 1261086118
## 10509 68 902 3.5 1230498380
## 10510 68 910 2.5 1268848806
## 10511 68 912 4.5 1158531003
## 10512 68 919 3.0 1158531038
## 10513 68 920 5.0 1158532765
## 10514 68 923 3.0 1252728105
## 10515 68 924 1.5 1158532482
## 10516 68 932 4.0 1261086252
## 10517 68 953 2.5 1180916203
## 10518 68 1017 3.0 1275957504
## 10519 68 1019 2.0 1261623837
## 10520 68 1020 2.5 1261624012
## 10521 68 1022 3.5 1158535652
## 10522 68 1025 2.5 1158534087
## 10523 68 1027 3.0 1261623401
## 10524 68 1028 2.5 1158533303
## 10525 68 1029 2.5 1158535800
## 10526 68 1031 2.0 1275957499
## 10527 68 1032 2.5 1261623637
## 10528 68 1035 2.0 1158533497
## 10529 68 1036 3.0 1158531885
## 10530 68 1042 2.5 1158535373
## 10531 68 1049 3.5 1269122391
## 10532 68 1059 3.5 1158534887
## 10533 68 1060 2.0 1233376543
## 10534 68 1073 0.5 1158531588
## 10535 68 1088 3.5 1158534614
## 10536 68 1089 3.5 1158532755
## 10537 68 1090 2.5 1240093386
## 10538 68 1097 1.5 1158531418
## 10539 68 1101 3.5 1158533140
## 10540 68 1103 2.5 1269122238
## 10541 68 1120 3.5 1269121378
## 10542 68 1124 2.0 1269122828
## 10543 68 1127 3.5 1158532522
## 10544 68 1129 3.0 1261623448
## 10545 68 1136 3.5 1158532161
## 10546 68 1193 3.0 1240092977
## 10547 68 1196 5.0 1158531361
## 10548 68 1197 5.0 1158531521
## 10549 68 1198 5.0 1158531882
## 10550 68 1200 2.5 1158531997
## 10551 68 1201 3.5 1230497900
## 10552 68 1206 3.0 1252727946
## 10553 68 1207 3.0 1158533138
## 10554 68 1208 3.0 1158532363
## 10555 68 1210 5.0 1158531261
## 10556 68 1213 3.5 1240093011
## 10557 68 1214 2.0 1158531713
## 10558 68 1215 2.5 1233381184
## 10559 68 1219 4.5 1158532359
## 10560 68 1220 3.0 1158532296
## 10561 68 1221 3.0 1158531015
## 10562 68 1222 2.5 1158532539
## 10563 68 1228 2.0 1261623357
## 10564 68 1234 3.5 1158533066
## 10565 68 1240 4.0 1158531602
## 10566 68 1243 1.0 1332628619
## 10567 68 1258 3.5 1158532317
## 10568 68 1265 2.5 1158531759
## 10569 68 1267 2.0 1158535378
## 10570 68 1270 3.0 1271544201
## 10571 68 1275 2.5 1158533795
## 10572 68 1276 3.5 1158533821
## 10573 68 1278 4.0 1158533151
## 10574 68 1282 3.5 1230497956
## 10575 68 1287 2.5 1230498461
## 10576 68 1291 5.0 1158531732
## 10577 68 1292 2.5 1352614711
## 10578 68 1297 3.0 1261086264
## 10579 68 1302 3.0 1230498000
## 10580 68 1307 3.5 1158531085
## 10581 68 1320 1.0 1252728088
## 10582 68 1333 3.0 1158534724
## 10583 68 1339 2.0 1269121169
## 10584 68 1345 3.0 1230498603
## 10585 68 1367 2.5 1261623148
## 10586 68 1370 2.5 1158532812
## 10587 68 1377 3.5 1158533408
## 10588 68 1378 2.5 1261623539
## 10589 68 1380 3.5 1158532790
## 10590 68 1381 2.5 1269123666
## 10591 68 1387 3.5 1158532008
## 10592 68 1388 2.5 1240093178
## 10593 68 1391 3.0 1158532870
## 10594 68 1393 4.5 1271544854
## 10595 68 1407 2.5 1158532360
## 10596 68 1408 5.0 1158533126
## 10597 68 1409 2.5 1261623578
## 10598 68 1416 1.5 1261624171
## 10599 68 1438 3.0 1261623472
## 10600 68 1453 3.0 1275957920
## 10601 68 1457 3.5 1305150702
## 10602 68 1466 3.5 1268848948
## 10603 68 1476 3.0 1261623781
## 10604 68 1479 4.0 1158535133
## 10605 68 1485 3.5 1158533634
## 10606 68 1499 2.5 1269121968
## 10607 68 1500 2.5 1158532519
## 10608 68 1513 3.5 1158535043
## 10609 68 1515 3.0 1269123535
## 10610 68 1517 4.0 1158531790
## 10611 68 1527 3.0 1158531651
## 10612 68 1544 2.0 1158532643
## 10613 68 1552 3.5 1158533074
## 10614 68 1556 3.0 1261623975
## 10615 68 1562 3.5 1158534919
## 10616 68 1569 3.0 1158533722
## 10617 68 1573 3.0 1158532225
## 10618 68 1580 4.0 1158531346
## 10619 68 1584 2.5 1158531968
## 10620 68 1586 3.5 1158535850
## 10621 68 1587 3.5 1269121544
## 10622 68 1588 3.0 1269122950
## 10623 68 1590 2.0 1158535903
## 10624 68 1597 3.0 1158533668
## 10625 68 1608 3.0 1158532542
## 10626 68 1610 3.0 1158532138
## 10627 68 1614 2.5 1269122093
## 10628 68 1617 3.5 1158531959
## 10629 68 1619 3.0 1261624365
## 10630 68 1620 3.0 1261624286
## 10631 68 1625 2.0 1158532719
## 10632 68 1635 3.0 1261623455
## 10633 68 1644 4.0 1158535543
## 10634 68 1645 4.0 1158533232
## 10635 68 1653 2.5 1158532274
## 10636 68 1663 3.0 1230498333
## 10637 68 1672 3.5 1269122808
## 10638 68 1673 3.0 1268848718
## 10639 68 1674 3.5 1158533818
## 10640 68 1676 2.0 1158532501
## 10641 68 1680 3.0 1158535785
## 10642 68 1682 4.5 1158531979
## 10643 68 1688 3.0 1269123527
## 10644 68 1690 2.5 1271544619
## 10645 68 1703 3.5 1275958359
## 10646 68 1704 4.5 1158531769
## 10647 68 1711 2.0 1261623987
## 10648 68 1717 2.5 1158535506
## 10649 68 1721 3.0 1158531226
## 10650 68 1722 4.0 1158532986
## 10651 68 1729 3.0 1158533858
## 10652 68 1732 0.5 1158532491
## 10653 68 1777 4.0 1158532793
## 10654 68 1779 3.0 1261623451
## 10655 68 1784 4.0 1158531673
## 10656 68 1792 4.0 1269122394
## 10657 68 1799 4.0 1158533957
## 10658 68 1801 3.0 1261623620
## 10659 68 1805 3.0 1261622881
## 10660 68 1831 4.0 1158535297
## 10661 68 1835 3.0 1261624329
## 10662 68 1866 3.5 1275957914
## 10663 68 1873 3.5 1271545099
## 10664 68 1876 2.5 1158532956
## 10665 68 1882 3.0 1158535346
## 10666 68 1883 2.0 1261623536
## 10667 68 1884 2.5 1261623294
## 10668 68 1885 2.5 1269122123
## 10669 68 1888 2.0 1269123687
## 10670 68 1892 4.0 1261624324
## 10671 68 1894 4.0 1261623746
## 10672 68 1895 3.0 1269123597
## 10673 68 1912 3.0 1158533750
## 10674 68 1917 3.0 1158531708
## 10675 68 1918 3.5 1230498116
## 10676 68 1923 4.0 1158531081
## 10677 68 1954 3.5 1230497753
## 10678 68 1961 2.5 1158531027
## 10679 68 1967 2.5 1269121677
## 10680 68 1968 3.0 1158531622
## 10681 68 1982 3.0 1261623797
## 10682 68 1994 2.5 1230498177
## 10683 68 1997 1.5 1305861489
## 10684 68 2000 3.5 1208743277
## 10685 68 2001 3.0 1230497781
## 10686 68 2002 3.0 1261622956
## 10687 68 2003 2.0 1158533168
## 10688 68 2005 3.0 1158534461
## 10689 68 2006 4.0 1158532516
## 10690 68 2011 1.0 1158531956
## 10691 68 2012 1.0 1158531786
## 10692 68 2018 3.0 1158535536
## 10693 68 2019 3.5 1158534757
## 10694 68 2023 3.5 1158533286
## 10695 68 2028 4.0 1158531283
## 10696 68 2046 3.0 1261623821
## 10697 68 2054 1.0 1158532286
## 10698 68 2067 3.0 1355269823
## 10699 68 2078 3.0 1158534646
## 10700 68 2080 3.0 1158533618
## 10701 68 2081 5.0 1158532733
## 10702 68 2082 3.0 1261624301
## 10703 68 2083 3.0 1158534140
## 10704 68 2085 3.0 1158535301
## 10705 68 2087 3.5 1158535415
## 10706 68 2094 3.5 1230498548
## 10707 68 2096 3.0 1261623516
## 10708 68 2100 3.0 1158532752
## 10709 68 2108 3.0 1230498355
## 10710 68 2109 3.0 1158535411
## 10711 68 2111 3.5 1275957898
## 10712 68 2115 4.0 1271544860
## 10713 68 2124 3.5 1158534968
## 10714 68 2125 4.5 1158534146
## 10715 68 2133 4.0 1261624135
## 10716 68 2134 3.0 1261623717
## 10717 68 2139 2.5 1261624292
## 10718 68 2140 2.5 1158535315
## 10719 68 2144 4.0 1158534984
## 10720 68 2145 3.0 1158535290
## 10721 68 2150 2.5 1261622869
## 10722 68 2161 2.0 1158533863
## 10723 68 2167 3.5 1158533191
## 10724 68 2174 2.5 1158531910
## 10725 68 2193 0.5 1158534171
## 10726 68 2194 3.5 1158532463
## 10727 68 2231 2.0 1158533973
## 10728 68 2232 2.0 1261623632
## 10729 68 2248 3.0 1208744348
## 10730 68 2249 5.0 1275957886
## 10731 68 2268 4.0 1158532211
## 10732 68 2273 2.5 1158534445
## 10733 68 2278 3.5 1158533673
## 10734 68 2288 3.0 1230498441
## 10735 68 2291 3.0 1158531948
## 10736 68 2294 3.0 1158533725
## 10737 68 2301 3.5 1269122509
## 10738 68 2302 3.0 1158532338
## 10739 68 2321 3.0 1158532445
## 10740 68 2324 2.5 1218678993
## 10741 68 2329 2.5 1158532441
## 10742 68 2334 3.5 1269123630
## 10743 68 2335 3.0 1261623793
## 10744 68 2338 3.0 1269122622
## 10745 68 2340 3.5 1261624061
## 10746 68 2353 3.0 1158532269
## 10747 68 2355 3.0 1158531701
## 10748 68 2385 2.0 1275957876
## 10749 68 2395 1.5 1158532979
## 10750 68 2396 3.5 1158531469
## 10751 68 2405 3.5 1158535596
## 10752 68 2406 4.0 1158532221
## 10753 68 2407 3.0 1158533600
## 10754 68 2409 3.0 1269122216
## 10755 68 2411 3.0 1269122080
## 10756 68 2413 3.0 1269122492
## 10757 68 2420 2.0 1158535045
## 10758 68 2423 4.0 1261086268
## 10759 68 2424 3.5 1158533839
## 10760 68 2427 3.5 1158534718
## 10761 68 2428 3.0 1261623428
## 10762 68 2431 3.5 1158535787
## 10763 68 2470 3.5 1158532880
## 10764 68 2471 3.0 1261623754
## 10765 68 2478 4.0 1158535907
## 10766 68 2485 3.5 1261623549
## 10767 68 2490 3.0 1158533913
## 10768 68 2491 4.5 1275958328
## 10769 68 2496 3.0 1269123053
## 10770 68 2501 3.0 1158535198
## 10771 68 2502 5.0 1158532149
## 10772 68 2539 2.0 1158533762
## 10773 68 2541 4.0 1158534693
## 10774 68 2542 1.0 1317618744
## 10775 68 2560 2.5 1268687442
## 10776 68 2567 2.5 1269122500
## 10777 68 2571 4.5 1158531187
## 10778 68 2572 4.5 1158534664
## 10779 68 2581 3.5 1158535103
## 10780 68 2599 1.5 1158532104
## 10781 68 2605 3.5 1158535237
## 10782 68 2606 2.5 1275957867
## 10783 68 2616 3.0 1158535712
## 10784 68 2617 4.0 1158532098
## 10785 68 2628 3.0 1158531291
## 10786 68 2640 3.5 1158531936
## 10787 68 2657 1.5 1316322202
## 10788 68 2662 2.0 1261623772
## 10789 68 2671 3.0 1158532839
## 10790 68 2683 3.5 1158531052
## 10791 68 2688 4.0 1158535636
## 10792 68 2692 2.0 1158532200
## 10793 68 2694 3.5 1158535873
## 10794 68 2699 0.5 1240092517
## 10795 68 2700 2.0 1158532055
## 10796 68 2701 3.0 1158533227
## 10797 68 2706 4.0 1268849086
## 10798 68 2707 2.5 1261623030
## 10799 68 2710 1.0 1158531647
## 10800 68 2713 3.0 1269123004
## 10801 68 2716 2.0 1158531017
## 10802 68 2717 2.0 1158535072
## 10803 68 2719 3.0 1261624109
## 10804 68 2722 3.0 1158535100
## 10805 68 2724 3.5 1158534534
## 10806 68 2728 2.5 1269122085
## 10807 68 2746 3.0 1261622784
## 10808 68 2762 2.5 1158531219
## 10809 68 2763 4.5 1158533109
## 10810 68 2791 4.0 1158531917
## 10811 68 2794 3.0 1269123405
## 10812 68 2797 3.0 1180915903
## 10813 68 2803 3.0 1269122065
## 10814 68 2804 2.0 1158532823
## 10815 68 2806 3.5 1275957824
## 10816 68 2808 3.5 1269122723
## 10817 68 2826 2.0 1158535188
## 10818 68 2840 3.5 1261623841
## 10819 68 2858 5.0 1158531519
## 10820 68 2881 3.5 1158534837
## 10821 68 2888 3.5 1275957812
## 10822 68 2890 3.0 1180916419
## 10823 68 2908 1.0 1230498451
## 10824 68 2915 3.5 1158534679
## 10825 68 2916 2.0 1158532183
## 10826 68 2918 4.0 1158531989
## 10827 68 2947 3.5 1158533350
## 10828 68 2948 4.0 1158534014
## 10829 68 2949 3.5 1158535249
## 10830 68 2950 3.5 1269123357
## 10831 68 2953 0.5 1158535533
## 10832 68 2959 2.5 1158531333
## 10833 68 2985 3.0 1233381010
## 10834 68 2987 2.5 1158531994
## 10835 68 2989 4.5 1180915484
## 10836 68 2993 4.0 1158534022
## 10837 68 2995 2.0 1269123657
## 10838 68 2997 4.5 1158530999
## 10839 68 3000 3.5 1158535147
## 10840 68 3005 4.0 1158535433
## 10841 68 3033 3.5 1158533122
## 10842 68 3034 3.0 1158534005
## 10843 68 3039 3.0 1158533659
## 10844 68 3052 3.5 1158532769
## 10845 68 3077 4.0 1233376646
## 10846 68 3081 1.5 1158532662
## 10847 68 3082 3.5 1158533877
## 10848 68 3098 3.0 1261623513
## 10849 68 3100 3.5 1158535626
## 10850 68 3101 4.0 1158532730
## 10851 68 3105 3.0 1158535471
## 10852 68 3107 3.0 1158534880
## 10853 68 3114 3.0 1271544523
## 10854 68 3146 3.0 1269123240
## 10855 68 3147 3.5 1158532167
## 10856 68 3160 2.0 1158532941
## 10857 68 3168 2.5 1261623728
## 10858 68 3173 3.5 1261624321
## 10859 68 3174 2.0 1158534852
## 10860 68 3175 3.0 1158532692
## 10861 68 3176 2.5 1158532186
## 10862 68 3178 3.0 1261623910
## 10863 68 3186 2.5 1261624030
## 10864 68 3210 3.0 1158534539
## 10865 68 3247 2.5 1158534902
## 10866 68 3252 3.5 1158534747
## 10867 68 3253 4.5 1158532498
## 10868 68 3254 4.5 1158535856
## 10869 68 3255 4.0 1158533264
## 10870 68 3257 3.5 1158535167
## 10871 68 3259 2.5 1269123334
## 10872 68 3264 3.0 1261623703
## 10873 68 3270 4.0 1166392788
## 10874 68 3273 2.0 1158535390
## 10875 68 3275 3.5 1158533963
## 10876 68 3285 2.0 1158535774
## 10877 68 3298 4.0 1158534211
## 10878 68 3300 2.5 1158534873
## 10879 68 3301 3.5 1158535115
## 10880 68 3396 3.5 1230498320
## 10881 68 3408 3.0 1158532037
## 10882 68 3409 3.0 1261624272
## 10883 68 3421 3.0 1158532806
## 10884 68 3438 3.5 1158535803
## 10885 68 3444 4.0 1275957686
## 10886 68 3448 4.0 1158532830
## 10887 68 3450 2.5 1261623134
## 10888 68 3452 2.5 1269122758
## 10889 68 3471 1.5 1254028207
## 10890 68 3476 2.0 1269122229
## 10891 68 3477 3.5 1275957187
## 10892 68 3481 2.0 1180915929
## 10893 68 3489 4.0 1158534463
## 10894 68 3510 3.0 1158534501
## 10895 68 3527 3.5 1158532314
## 10896 68 3534 2.5 1158535913
## 10897 68 3535 3.0 1230498142
## 10898 68 3536 4.0 1261624074
## 10899 68 3552 4.0 1158533565
## 10900 68 3553 2.0 1275958275
## 10901 68 3554 3.5 1275957681
## 10902 68 3555 3.5 1158534728
## 10903 68 3556 3.0 1158535348
## 10904 68 3578 4.0 1158531236
## 10905 68 3593 0.5 1269122274
## 10906 68 3617 3.5 1158534662
## 10907 68 3623 4.5 1158531686
## 10908 68 3635 4.0 1158534060
## 10909 68 3638 2.0 1158535860
## 10910 68 3653 3.0 1275958268
## 10911 68 3668 3.5 1269123380
## 10912 68 3671 3.5 1240093377
## 10913 68 3675 4.0 1180915725
## 10914 68 3697 3.0 1158535790
## 10915 68 3698 2.5 1158534829
## 10916 68 3702 2.5 1230497914
## 10917 68 3703 3.0 1230497931
## 10918 68 3704 3.5 1269121360
## 10919 68 3707 2.0 1261085419
## 10920 68 3717 3.0 1158533581
## 10921 68 3740 2.5 1261623651
## 10922 68 3752 2.0 1158534447
## 10923 68 3753 3.0 1158532218
## 10924 68 3755 3.0 1158532996
## 10925 68 3783 3.0 1240093265
## 10926 68 3785 4.0 1158533685
## 10927 68 3786 1.0 1275957676
## 10928 68 3791 4.0 1269122770
## 10929 68 3793 4.5 1158531375
## 10930 68 3798 4.0 1158535162
## 10931 68 3809 3.5 1158534962
## 10932 68 3824 2.0 1275957671
## 10933 68 3825 3.5 1261624264
## 10934 68 3826 3.0 1158535090
## 10935 68 3844 3.0 1269122850
## 10936 68 3861 3.0 1269123545
## 10937 68 3863 3.0 1158533501
## 10938 68 3868 2.0 1158533873
## 10939 68 3882 4.5 1158535845
## 10940 68 3897 3.5 1198454693
## 10941 68 3911 4.5 1158532890
## 10942 68 3916 4.0 1158533909
## 10943 68 3948 4.0 1158532228
## 10944 68 3949 3.0 1240093393
## 10945 68 3968 3.0 1261624183
## 10946 68 3969 3.0 1158535156
## 10947 68 3977 3.0 1158532030
## 10948 68 3978 3.0 1269122972
## 10949 68 3981 2.5 1269122295
## 10950 68 3984 4.0 1158534101
## 10951 68 3988 3.0 1158534823
## 10952 68 3994 3.5 1180915874
## 10953 68 3996 3.0 1158531055
## 10954 68 4011 3.0 1158532130
## 10955 68 4014 4.0 1158532635
## 10956 68 4015 2.0 1158535827
## 10957 68 4016 4.0 1268849072
## 10958 68 4018 4.5 1158533257
## 10959 68 4019 4.0 1180915656
## 10960 68 4022 2.0 1158531783
## 10961 68 4025 4.0 1158533207
## 10962 68 4027 2.0 1158531902
## 10963 68 4034 3.5 1158531340
## 10964 68 4041 2.5 1158535892
## 10965 68 4047 3.0 1166403883
## 10966 68 4054 3.5 1269123332
## 10967 68 4068 2.0 1275958225
## 10968 68 4069 4.0 1158535881
## 10969 68 4084 2.0 1158535601
## 10970 68 4085 2.0 1158532324
## 10971 68 4124 2.0 1240093181
## 10972 68 4128 2.0 1261622988
## 10973 68 4141 3.0 1275958202
## 10974 68 4148 2.0 1158533513
## 10975 68 4161 3.5 1230498642
## 10976 68 4223 2.5 1158534565
## 10977 68 4226 4.0 1158531458
## 10978 68 4239 4.0 1158534882
## 10979 68 4246 4.0 1158532209
## 10980 68 4262 5.0 1158533289
## 10981 68 4270 3.5 1158533297
## 10982 68 4299 4.0 1158534672
## 10983 68 4306 5.0 1158531222
## 10984 68 4308 1.5 1158532299
## 10985 68 4310 2.5 1158533160
## 10986 68 4321 3.5 1158533467
## 10987 68 4326 3.5 1158535704
## 10988 68 4343 3.5 1261623411
## 10989 68 4344 3.5 1230498292
## 10990 68 4351 3.0 1158535559
## 10991 68 4356 3.5 1158534278
## 10992 68 4366 3.0 1526948498
## 10993 68 4367 3.0 1158533377
## 10994 68 4369 3.5 1158533709
## 10995 68 4372 3.0 1267239195
## 10996 68 4378 2.0 1269122805
## 10997 68 4387 3.5 1275957656
## 10998 68 4388 2.0 1261624024
## 10999 68 4447 4.0 1158532961
## 11000 68 4487 4.0 1269123622
## 11001 68 4489 2.5 1261623488
## 11002 68 4499 3.5 1158534076
## 11003 68 4545 2.5 1261624227
## 11004 68 4558 2.5 1269122927
## 11005 68 4571 3.5 1158533156
## 11006 68 4621 3.5 1261624069
## 11007 68 4638 2.0 1158533676
## 11008 68 4639 2.5 1261623460
## 11009 68 4643 2.0 1158532884
## 11010 68 4677 3.5 1269123218
## 11011 68 4681 3.0 1269123495
## 11012 68 4700 2.5 1269123454
## 11013 68 4701 2.0 1158534478
## 11014 68 4718 4.5 1158533282
## 11015 68 4720 3.0 1158532654
## 11016 68 4734 3.0 1158533562
## 11017 68 4776 4.5 1158533118
## 11018 68 4816 4.0 1158533553
## 11019 68 4823 3.0 1261624238
## 11020 68 4855 2.5 1158533711
## 11021 68 4865 2.5 1158535096
## 11022 68 4876 2.5 1275957622
## 11023 68 4877 3.5 1267239158
## 11024 68 4878 2.5 1158532153
## 11025 68 4886 4.5 1158531462
## 11026 68 4890 4.5 1158534916
## 11027 68 4896 5.0 1158531717
## 11028 68 4901 2.5 1158533689
## 11029 68 4958 3.0 1269122783
## 11030 68 4963 3.5 1158531698
## 11031 68 4969 3.0 1267237921
## 11032 68 4973 2.0 1158531456
## 11033 68 4975 3.5 1158532927
## 11034 68 4979 2.5 1158532803
## 11035 68 4993 4.5 1158531063
## 11036 68 4995 3.5 1158531267
## 11037 68 5010 4.0 1158532244
## 11038 68 5015 4.0 1158533657
## 11039 68 5049 2.0 1158535069
## 11040 68 5064 4.5 1158534637
## 11041 68 5103 2.5 1158535445
## 11042 68 5110 1.0 1233376617
## 11043 68 5151 3.5 1269123299
## 11044 68 5152 4.0 1158535847
## 11045 68 5218 3.5 1158532311
## 11046 68 5219 4.0 1158535330
## 11047 68 5254 3.5 1158534696
## 11048 68 5266 2.0 1158533058
## 11049 68 5267 2.0 1269123228
## 11050 68 5299 3.5 1158532249
## 11051 68 5308 3.5 1261623902
## 11052 68 5312 2.5 1275957606
## 11053 68 5313 4.0 1269123205
## 11054 68 5329 3.0 1271545115
## 11055 68 5349 4.5 1158531619
## 11056 68 5378 3.0 1158531696
## 11057 68 5400 3.5 1158535017
## 11058 68 5418 4.5 1158531568
## 11059 68 5419 4.5 1269123376
## 11060 68 5444 4.5 1158534160
## 11061 68 5445 3.0 1158531331
## 11062 68 5459 3.5 1180916147
## 11063 68 5464 2.0 1233381166
## 11064 68 5481 2.5 1158533144
## 11065 68 5502 3.5 1158532382
## 11066 68 5507 3.0 1158534669
## 11067 68 5541 3.0 1261624333
## 11068 68 5553 3.0 1275957600
## 11069 68 5574 4.0 1269122482
## 11070 68 5582 4.0 1275958168
## 11071 68 5617 3.5 1268687622
## 11072 68 5618 2.5 1198454699
## 11073 68 5620 3.5 1158535518
## 11074 68 5630 2.5 1158533530
## 11075 68 5669 3.5 1158531932
## 11076 68 5673 3.0 1158533230
## 11077 68 5679 2.5 1180916022
## 11078 68 5693 3.5 1158535757
## 11079 68 5782 4.0 1158535561
## 11080 68 5810 4.0 1158534898
## 11081 68 5816 5.0 1158531666
## 11082 68 5872 3.5 1158533559
## 11083 68 5943 3.5 1269123602
## 11084 68 5952 4.0 1158531245
## 11085 68 5955 3.5 1261085969
## 11086 68 5989 3.5 1158531389
## 11087 68 5991 3.5 1158532046
## 11088 68 5995 4.0 1208744728
## 11089 68 6155 5.0 1158535648
## 11090 68 6157 2.0 1158533718
## 11091 68 6188 4.5 1158533516
## 11092 68 6193 3.5 1240093148
## 11093 68 6218 2.0 1359323476
## 11094 68 6266 2.5 1332628623
## 11095 68 6281 2.0 1158533891
## 11096 68 6287 2.0 1158535240
## 11097 68 6297 3.5 1268849058
## 11098 68 6323 2.5 1158533404
## 11099 68 6333 4.5 1158531240
## 11100 68 6365 4.0 1158531306
## 11101 68 6373 3.5 1158532493
## 11102 68 6377 4.5 1271544881
## 11103 68 6378 3.0 1158532836
## 11104 68 6383 3.0 1261623858
## 11105 68 6502 4.5 1158532397
## 11106 68 6503 2.0 1158533715
## 11107 68 6534 2.5 1269121214
## 11108 68 6535 2.5 1269123480
## 11109 68 6537 3.0 1158532334
## 11110 68 6539 5.0 1158531197
## 11111 68 6564 3.0 1158535887
## 11112 68 6565 3.0 1158533001
## 11113 68 6595 4.0 1158535753
## 11114 68 6618 3.0 1269122683
## 11115 68 6659 3.0 1158535153
## 11116 68 6707 2.0 1275958141
## 11117 68 6708 3.5 1158533308
## 11118 68 6709 3.0 1158535202
## 11119 68 6711 5.0 1158531509
## 11120 68 6753 3.0 1269123223
## 11121 68 6754 3.5 1158534952
## 11122 68 6755 1.5 1269123340
## 11123 68 6863 4.5 1158532420
## 11124 68 6870 2.0 1158532252
## 11125 68 6873 2.5 1158535629
## 11126 68 6874 3.0 1158531535
## 11127 68 6879 3.5 1158535181
## 11128 68 6888 1.0 1269123087
## 11129 68 6893 3.5 1158534072
## 11130 68 6934 3.5 1158531776
## 11131 68 6936 3.5 1158533754
## 11132 68 6939 4.0 1267238420
## 11133 68 6942 4.5 1271544845
## 11134 68 6944 4.5 1158535363
## 11135 68 6953 2.5 1158533556
## 11136 68 7004 3.5 1158534825
## 11137 68 7010 3.5 1269121109
## 11138 68 7022 3.5 1261623246
## 11139 68 7046 2.0 1275957577
## 11140 68 7090 4.0 1158532386
## 11141 68 7137 3.5 1261086324
## 11142 68 7143 4.5 1158532025
## 11143 68 7151 3.0 1267237870
## 11144 68 7153 4.5 1158531337
## 11145 68 7154 2.5 1268687612
## 11146 68 7160 3.5 1158533906
## 11147 68 7162 2.0 1158534459
## 11148 68 7254 2.5 1158533261
## 11149 68 7256 4.0 1332628672
## 11150 68 7293 2.5 1158535370
## 11151 68 7320 3.0 1275958606
## 11152 68 7325 4.5 1158534691
## 11153 68 7346 4.0 1261086340
## 11154 68 7360 4.5 1158534762
## 11155 68 7361 4.5 1158531395
## 11156 68 7373 3.5 1158533338
## 11157 68 7438 3.0 1158531214
## 11158 68 7445 4.0 1158534619
## 11159 68 7451 3.5 1268849041
## 11160 68 7454 3.0 1158534913
## 11161 68 7458 4.0 1158533071
## 11162 68 7541 3.5 1267239074
## 11163 68 7566 4.0 1233376640
## 11164 68 8132 4.5 1158534098
## 11165 68 8360 3.5 1158531303
## 11166 68 8361 3.5 1158533327
## 11167 68 8366 3.0 1158535504
## 11168 68 8368 5.0 1158531664
## 11169 68 8371 2.5 1158535610
## 11170 68 8376 3.0 1158533244
## 11171 68 8464 4.5 1158532061
## 11172 68 8528 4.0 1158533382
## 11173 68 8529 2.5 1158533300
## 11174 68 8533 3.0 1233376587
## 11175 68 8622 3.0 1158531721
## 11176 68 8623 3.5 1293500383
## 11177 68 8636 4.5 1158531383
## 11178 68 8641 4.5 1158534908
## 11179 68 8644 3.0 1158532939
## 11180 68 8665 3.5 1158531645
## 11181 68 8677 2.0 1158531657
## 11182 68 8781 2.5 1158534980
## 11183 68 8783 3.5 1158535195
## 11184 68 8784 4.5 1158532121
## 11185 68 8798 2.5 1158531929
## 11186 68 8807 4.0 1158534178
## 11187 68 8810 2.5 1261623188
## 11188 68 8861 3.0 1240092920
## 11189 68 8866 4.5 1208743792
## 11190 68 8873 4.0 1158535242
## 11191 68 8874 4.0 1158532111
## 11192 68 8879 2.0 1275958114
## 11193 68 8907 2.5 1269123410
## 11194 68 8910 1.0 1230498588
## 11195 68 8917 2.0 1158533422
## 11196 68 8947 3.0 1269123416
## 11197 68 8949 3.0 1198454491
## 11198 68 8958 3.5 1158533267
## 11199 68 8961 3.5 1158531177
## 11200 68 8968 5.0 1275958076
## 11201 68 8969 3.0 1269122992
## 11202 68 8970 4.0 1158532460
## 11203 68 8972 3.0 1240093282
## 11204 68 8981 4.5 1158533720
## 11205 68 8983 3.5 1261622833
## 11206 68 8984 3.0 1158533305
## 11207 68 8985 3.5 1269123148
## 11208 68 26614 4.0 1233376386
## 11209 68 26712 4.0 1233381191
## 11210 68 26778 3.0 1230497663
## 11211 68 26871 2.5 1269121347
## 11212 68 27473 2.5 1254028125
## 11213 68 27539 2.5 1269121323
## 11214 68 27611 4.0 1234740330
## 11215 68 27660 3.0 1158533270
## 11216 68 27705 1.5 1261622823
## 11217 68 27706 3.5 1230498608
## 11218 68 27773 1.0 1269120988
## 11219 68 27831 3.0 1261624042
## 11220 68 30749 3.5 1526948322
## 11221 68 30810 2.5 1180916441
## 11222 68 30812 1.0 1158532707
## 11223 68 30816 3.0 1267239049
## 11224 68 30822 3.5 1158534053
## 11225 68 30825 4.5 1158534492
## 11226 68 31049 2.5 1158533311
## 11227 68 31685 4.5 1158534950
## 11228 68 31696 3.5 1158534536
## 11229 68 31878 2.5 1158534451
## 11230 68 32031 2.5 1269123640
## 11231 68 32587 5.0 1158531868
## 11232 68 32598 4.0 1267237781
## 11233 68 33004 3.0 1180915958
## 11234 68 33154 3.0 1363922697
## 11235 68 33166 3.5 1252727987
## 11236 68 33437 3.0 1267240158
## 11237 68 33493 3.0 1158531156
## 11238 68 33615 3.5 1230498551
## 11239 68 33672 1.5 1326678410
## 11240 68 33679 2.5 1158532465
## 11241 68 33794 2.5 1158531231
## 11242 68 34048 2.0 1158532246
## 11243 68 34072 2.5 1158533621
## 11244 68 34150 3.5 1158534633
## 11245 68 34153 4.0 1261085655
## 11246 68 34162 5.0 1158532330
## 11247 68 34405 4.5 1198454346
## 11248 68 34542 4.0 1332628662
## 11249 68 35836 4.5 1158532371
## 11250 68 36519 3.5 1332628972
## 11251 68 37729 2.5 1261622827
## 11252 68 37733 3.0 1261622681
## 11253 68 38061 3.5 1158533799
## 11254 68 39183 2.0 1233380990
## 11255 68 39381 4.0 1166402559
## 11256 68 40278 2.0 1230498502
## 11257 68 40629 4.0 1198454393
## 11258 68 40732 3.5 1269123490
## 11259 68 40815 5.0 1158531466
## 11260 68 40959 3.0 1275958050
## 11261 68 41285 3.0 1240093196
## 11262 68 41566 4.5 1158531538
## 11263 68 41569 4.5 1158531585
## 11264 68 41571 3.5 1158535743
## 11265 68 41573 3.0 1267239316
## 11266 68 41724 4.5 1240093546
## 11267 68 41997 3.5 1198454673
## 11268 68 42018 0.5 1304977981
## 11269 68 42718 4.0 1261085978
## 11270 68 42738 3.0 1269122762
## 11271 68 44004 3.0 1267239311
## 11272 68 44022 3.5 1268849053
## 11273 68 44191 3.0 1158531296
## 11274 68 44195 5.0 1166402443
## 11275 68 44199 4.0 1208744725
## 11276 68 44665 4.0 1180916408
## 11277 68 44709 4.0 1261085771
## 11278 68 44788 4.0 1240093821
## 11279 68 45186 2.0 1158533400
## 11280 68 45431 4.5 1166402437
## 11281 68 45499 2.0 1180915728
## 11282 68 45501 3.5 1267239173
## 11283 68 45517 4.5 1166402434
## 11284 68 45720 4.5 1271544885
## 11285 68 45722 4.5 1158531258
## 11286 68 45726 2.5 1166402731
## 11287 68 45928 4.0 1332628709
## 11288 68 45950 3.5 1230498599
## 11289 68 46322 3.5 1261085946
## 11290 68 46530 4.5 1166392804
## 11291 68 46578 3.0 1180915924
## 11292 68 46723 3.5 1233381156
## 11293 68 46948 3.5 1166402451
## 11294 68 46965 3.5 1269122431
## 11295 68 46970 3.0 1166392812
## 11296 68 46972 3.0 1261623505
## 11297 68 46976 4.0 1208743307
## 11298 68 47200 2.0 1269122780
## 11299 68 47610 3.0 1208744739
## 11300 68 47970 4.5 1305150812
## 11301 68 47978 2.5 1268687669
## 11302 68 47997 3.0 1269123135
## 11303 68 47999 4.5 1332628638
## 11304 68 48043 2.0 1261623613
## 11305 68 48304 2.0 1230498539
## 11306 68 48342 3.0 1267238400
## 11307 68 48385 1.0 1180915869
## 11308 68 48394 4.5 1198454548
## 11309 68 48516 3.5 1180915910
## 11310 68 48696 4.0 1267238467
## 11311 68 48774 3.5 1180916193
## 11312 68 48780 3.5 1252727923
## 11313 68 49272 5.0 1180915427
## 11314 68 49274 3.0 1269123009
## 11315 68 49286 4.0 1267239041
## 11316 68 49530 3.0 1198454751
## 11317 68 49651 3.0 1240093975
## 11318 68 49772 2.5 1267237736
## 11319 68 49961 4.0 1269123532
## 11320 68 50068 3.0 1230498576
## 11321 68 50658 4.0 1233376648
## 11322 68 50685 4.5 1305150762
## 11323 68 50740 3.5 1271545247
## 11324 68 50806 1.0 1271545694
## 11325 68 50872 4.0 1198454471
## 11326 68 51084 3.5 1208743785
## 11327 68 51255 4.0 1198454311
## 11328 68 51540 3.0 1230497927
## 11329 68 51662 4.0 1198454565
## 11330 68 51709 3.5 1180915825
## 11331 68 51834 3.0 1267237836
## 11332 68 51884 3.0 1267238679
## 11333 68 51935 3.5 1269122359
## 11334 68 52245 4.5 1261624235
## 11335 68 52287 2.0 1240093068
## 11336 68 52435 3.5 1230498254
## 11337 68 52458 4.5 1269123045
## 11338 68 52722 3.0 1198454680
## 11339 68 52767 4.0 1233376635
## 11340 68 52973 5.0 1198454474
## 11341 68 52975 3.5 1269123711
## 11342 68 53000 4.5 1261623163
## 11343 68 53125 4.5 1198454572
## 11344 68 53129 4.5 1261086126
## 11345 68 53318 3.0 1267237731
## 11346 68 53435 1.5 1275958518
## 11347 68 53464 3.0 1261623961
## 11348 68 53894 3.5 1261623286
## 11349 68 53953 3.0 1261623768
## 11350 68 53972 3.0 1208743400
## 11351 68 53993 2.5 1269123693
## 11352 68 53996 5.0 1208743331
## 11353 68 54001 5.0 1198454306
## 11354 68 54004 3.0 1240093216
## 11355 68 54116 3.0 1268687431
## 11356 68 54121 3.0 1271545670
## 11357 68 54259 4.0 1312685661
## 11358 68 54272 3.0 1198454702
## 11359 68 54281 3.5 1240092802
## 11360 68 54286 4.0 1208743372
## 11361 68 54503 3.5 1198454505
## 11362 68 54734 3.5 1240093122
## 11363 68 54881 5.0 1269122731
## 11364 68 54995 3.5 1283905958
## 11365 68 54997 4.5 1208744668
## 11366 68 54999 3.5 1269123091
## 11367 68 55052 2.5 1230498342
## 11368 68 55112 4.0 1261085268
## 11369 68 55118 5.0 1233381200
## 11370 68 55190 3.0 1240092906
## 11371 68 55232 3.0 1240092923
## 11372 68 55247 2.5 1230498012
## 11373 68 55253 4.0 1240092963
## 11374 68 55267 3.0 1305150746
## 11375 68 55282 4.0 1240093325
## 11376 68 55620 3.0 1305861248
## 11377 68 55765 3.5 1208743301
## 11378 68 55820 3.5 1208744692
## 11379 68 55830 4.0 1208743338
## 11380 68 56152 3.0 1233376601
## 11381 68 56174 3.5 1218679021
## 11382 68 56251 4.0 1261624311
## 11383 68 56336 2.0 1261622964
## 11384 68 56339 3.5 1261085755
## 11385 68 56367 3.0 1230497666
## 11386 68 56379 2.5 1293499913
## 11387 68 56587 3.0 1261624092
## 11388 68 56757 2.0 1230497886
## 11389 68 56775 2.5 1230498533
## 11390 68 56941 2.0 1240093954
## 11391 68 56949 4.0 1261624337
## 11392 68 57368 2.0 1208744717
## 11393 68 57640 3.5 1240093573
## 11394 68 57669 4.0 1240092589
## 11395 68 57951 3.0 1267239331
## 11396 68 58025 3.0 1230498420
## 11397 68 58047 3.5 1261086167
## 11398 68 58078 3.0 1240092887
## 11399 68 58107 2.5 1240093099
## 11400 68 58162 2.5 1305150628
## 11401 68 58293 4.0 1269122411
## 11402 68 58295 3.5 1230498651
## 11403 68 58299 3.0 1240093250
## 11404 68 58347 3.5 1240092597
## 11405 68 58559 5.0 1218679006
## 11406 68 58839 1.0 1240093080
## 11407 68 58998 5.0 1208743388
## 11408 68 59126 4.0 1240092725
## 11409 68 59220 3.5 1267239010
## 11410 68 59258 3.0 1240093333
## 11411 68 59315 4.5 1218678955
## 11412 68 59333 2.5 1305150692
## 11413 68 59369 5.0 1252729690
## 11414 68 59421 3.5 1275958490
## 11415 68 59440 3.5 1267238377
## 11416 68 59501 2.5 1240093161
## 11417 68 59615 1.0 1230497684
## 11418 68 59725 2.5 1269122886
## 11419 68 59731 3.5 1240092738
## 11420 68 59784 3.5 1233376560
## 11421 68 59900 1.0 1269123306
## 11422 68 60040 3.0 1269120984
## 11423 68 60069 4.5 1233381171
## 11424 68 60072 2.5 1230498053
## 11425 68 60074 3.0 1261622690
## 11426 68 60126 3.5 1230498399
## 11427 68 60363 0.5 1240092818
## 11428 68 60514 3.0 1275958483
## 11429 68 60684 3.5 1240092511
## 11430 68 60756 2.5 1269123243
## 11431 68 60941 2.0 1240092834
## 11432 68 60950 3.0 1240092612
## 11433 68 61024 3.0 1269121618
## 11434 68 61132 2.5 1230497857
## 11435 68 61240 2.5 1267237683
## 11436 68 61250 3.0 1240093110
## 11437 68 62155 3.0 1267237756
## 11438 68 62293 3.0 1267237858
## 11439 68 62434 4.0 1240092992
## 11440 68 62849 3.5 1269123072
## 11441 68 62956 4.0 1240093951
## 11442 68 62999 3.5 1240092850
## 11443 68 63072 4.0 1261085446
## 11444 68 63082 4.5 1240092484
## 11445 68 63113 3.0 1230497844
## 11446 68 63131 4.5 1240092709
## 11447 68 63859 3.5 1261623336
## 11448 68 64575 3.5 1269121755
## 11449 68 64622 3.5 1267237741
## 11450 68 64839 4.0 1271544492
## 11451 68 64969 5.0 1261623263
## 11452 68 64997 2.5 1230497715
## 11453 68 65188 4.5 1268687729
## 11454 68 66097 3.0 1261085664
## 11455 68 66198 3.0 1275958478
## 11456 68 66203 2.0 1305150676
## 11457 68 66665 3.0 1261622496
## 11458 68 66934 5.0 1261623340
## 11459 68 67087 3.5 1240092690
## 11460 68 67255 4.5 1291944752
## 11461 68 67267 3.5 1275958473
## 11462 68 67408 3.0 1261622524
## 11463 68 67618 5.0 1271544213
## 11464 68 68157 4.5 1252727861
## 11465 68 68319 3.5 1268848763
## 11466 68 68358 4.0 1252727913
## 11467 68 68554 3.0 1268848741
## 11468 68 68659 4.0 1275958465
## 11469 68 68791 3.5 1261622515
## 11470 68 68952 4.0 1261623668
## 11471 68 68954 3.0 1261084433
## 11472 68 69069 5.0 1271544258
## 11473 68 69122 4.5 1261084618
## 11474 68 69394 4.5 1304977771
## 11475 68 69406 3.0 1261622505
## 11476 68 69481 4.0 1268687410
## 11477 68 69524 4.5 1271544237
## 11478 68 69644 3.0 1269122279
## 11479 68 69757 4.0 1267237664
## 11480 68 69784 4.0 1269121300
## 11481 68 69844 4.0 1252727892
## 11482 68 69904 2.5 1261623763
## 11483 68 70183 5.0 1271544392
## 11484 68 70286 4.0 1252727878
## 11485 68 70293 4.0 1293500145
## 11486 68 70336 2.0 1261624096
## 11487 68 70492 3.5 1346109885
## 11488 68 70521 4.0 1267237889
## 11489 68 70990 2.5 1261623863
## 11490 68 71282 4.5 1271544397
## 11491 68 71535 5.0 1268849094
## 11492 68 71579 3.5 1332628976
## 11493 68 72011 4.0 1305150847
## 11494 68 72167 1.0 1271544504
## 11495 68 72489 4.5 1261085457
## 11496 68 72591 3.5 1261084662
## 11497 68 72641 4.5 1336605255
## 11498 68 72998 5.0 1261622471
## 11499 68 73017 3.0 1268687395
## 11500 68 73023 3.5 1275956460
## 11501 68 74154 1.0 1340569978
## 11502 68 74458 3.0 1332628678
## 11503 68 74508 2.0 1355269836
## 11504 68 74668 4.0 1268848560
## 11505 68 74789 4.0 1269120961
## 11506 68 74946 5.0 1305150613
## 11507 68 76093 5.0 1291164826
## 11508 68 76251 4.0 1272756019
## 11509 68 76751 3.0 1271544611
## 11510 68 77561 4.0 1273861471
## 11511 68 78467 2.0 1293499848
## 11512 68 78499 3.5 1305861268
## 11513 68 78703 4.0 1283905944
## 11514 68 78772 2.0 1293499844
## 11515 68 79057 3.5 1293499804
## 11516 68 79091 3.0 1332628605
## 11517 68 79132 5.0 1305861331
## 11518 68 79702 4.0 1293499602
## 11519 68 80463 3.5 1305861291
## 11520 68 80549 4.0 1312685715
## 11521 68 80860 4.5 1308264038
## 11522 68 80906 4.0 1332628633
## 11523 68 81564 4.5 1304977737
## 11524 68 81591 3.5 1305861319
## 11525 68 81784 4.0 1305150643
## 11526 68 81834 5.0 1293499573
## 11527 68 81845 3.0 1357084228
## 11528 68 81847 4.0 1304374485
## 11529 68 81910 4.0 1346109877
## 11530 68 81932 4.0 1306802929
## 11531 68 82167 2.0 1305150664
## 11532 68 82459 3.5 1316322183
## 11533 68 83134 4.5 1526947650
## 11534 68 83803 4.0 1305861313
## 11535 68 84772 4.5 1320032071
## 11536 68 85780 2.5 1305861285
## 11537 68 86190 3.0 1320032066
## 11538 68 86293 2.0 1317436019
## 11539 68 86332 3.5 1332629042
## 11540 68 86377 4.5 1357084254
## 11541 68 86833 3.5 1320032077
## 11542 68 86880 1.5 1526948402
## 11543 68 86882 2.0 1332628520
## 11544 68 87232 4.5 1310272379
## 11545 68 87306 3.0 1310272391
## 11546 68 87430 3.5 1312685419
## 11547 68 88125 4.5 1312685412
## 11548 68 88129 3.0 1332628226
## 11549 68 88140 3.5 1313622704
## 11550 68 88163 4.0 1359323517
## 11551 68 88744 4.0 1313622695
## 11552 68 88810 4.5 1343933100
## 11553 68 89087 2.0 1332628536
## 11554 68 89470 3.5 1332628315
## 11555 68 89492 4.5 1321936093
## 11556 68 89745 4.5 1336605252
## 11557 68 89774 3.0 1332628553
## 11558 68 89864 3.5 1332628233
## 11559 68 90576 4.5 1346109903
## 11560 68 91094 3.0 1532897372
## 11561 68 91500 5.0 1351295099
## 11562 68 91529 4.0 1346109699
## 11563 68 91630 3.0 1342219808
## 11564 68 92420 2.0 1343932997
## 11565 68 93287 4.0 1346109910
## 11566 68 93326 3.5 1346110079
## 11567 68 93510 5.0 1342219841
## 11568 68 93721 4.5 1351295116
## 11569 68 93840 3.5 1351295106
## 11570 68 94864 3.0 1355269781
## 11571 68 94959 3.5 1361421047
## 11572 68 95167 3.0 1359323339
## 11573 68 95218 3.5 1357084122
## 11574 68 95441 3.5 1526948408
## 11575 68 95449 3.5 1342219830
## 11576 68 95510 4.0 1357084104
## 11577 68 95624 3.0 1346110393
## 11578 68 95875 4.0 1346109723
## 11579 68 96079 4.5 1355269764
## 11580 68 96110 3.0 1346109730
## 11581 68 97913 4.0 1372618197
## 11582 68 97921 3.5 1372618271
## 11583 68 98809 4.5 1359323180
## 11584 68 99114 2.5 1526948305
## 11585 68 102407 2.5 1526948485
## 11586 68 102445 5.0 1372618131
## 11587 68 103042 4.5 1372911486
## 11588 68 103249 3.5 1526948388
## 11589 68 104841 3.0 1526947692
## 11590 68 106487 4.0 1526947632
## 11591 68 106489 3.0 1526947640
## 11592 68 106782 3.0 1526947699
## 11593 68 107406 1.5 1527554136
## 11594 68 109374 3.5 1526948316
## 11595 68 111362 3.0 1532897143
## 11596 68 111759 4.5 1526947629
## 11597 68 112175 4.5 1526948447
## 11598 68 112183 1.5 1526948363
## 11599 68 112852 4.5 1526947558
## 11600 68 114762 3.5 1532897137
## 11601 68 116797 3.5 1526947636
## 11602 68 116823 4.0 1526948380
## 11603 68 117529 4.0 1526948395
## 11604 68 118696 3.0 1526948415
## 11605 68 119145 4.0 1526947645
## 11606 68 122882 5.0 1526948311
## 11607 68 122886 4.5 1526947547
## 11608 68 122904 4.0 1526947540
## 11609 68 122918 3.5 1526947569
## 11610 68 122922 3.0 1526947686
## 11611 68 134130 5.0 1526947541
## 11612 68 135143 4.0 1526947551
## 11613 68 139385 3.0 1526948372
## 11614 68 142488 4.5 1526947627
## 11615 68 152081 3.0 1526947710
## 11616 68 164179 3.5 1526947647
## 11617 68 166528 4.5 1526947652
## 11618 68 166635 3.0 1526947538
## 11619 68 168252 4.0 1526947535
## 11620 68 176371 3.5 1526947590
## 11621 69 50 5.0 1021646926
## 11622 69 260 5.0 1021643144
## 11623 69 296 5.0 1021644176
## 11624 69 318 5.0 1021646944
## 11625 69 333 5.0 1021644104
## 11626 69 356 4.0 1021643709
## 11627 69 541 5.0 1021643744
## 11628 69 553 5.0 1021644133
## 11629 69 589 4.0 1021643884
## 11630 69 593 5.0 1021646944
## 11631 69 924 5.0 1021645837
## 11632 69 1101 5.0 1021645224
## 11633 69 1193 5.0 1021642934
## 11634 69 1196 5.0 1021643068
## 11635 69 1210 5.0 1021642769
## 11636 69 1258 5.0 1021643477
## 11637 69 1266 5.0 1021644619
## 11638 69 1580 4.0 1021645562
## 11639 69 1610 4.0 1021644946
## 11640 69 1645 4.0 1021643629
## 11641 69 1721 4.0 1021643744
## 11642 69 1917 4.0 1021645562
## 11643 69 2476 4.0 1021643744
## 11644 69 2571 5.0 1021643884
## 11645 69 2628 4.0 1021645687
## 11646 69 2762 5.0 1021647032
## 11647 69 2951 5.0 1021643494
## 11648 69 3175 5.0 1021643895
## 11649 69 3552 5.0 1021644663
## 11650 69 3671 5.0 1021644641
## 11651 69 3793 4.0 1021645473
## 11652 69 3827 4.0 1021643828
## 11653 69 3863 3.0 1021645473
## 11654 69 3994 4.0 1021645473
## 11655 69 4020 4.0 1021644717
## 11656 69 4022 4.0 1021647579
## 11657 69 4027 5.0 1021647538
## 11658 69 4370 2.0 1021645473
## 11659 69 4448 4.0 1021646176
## 11660 69 4643 4.0 1021645486
## 11661 69 4744 2.0 1021645405
## 11662 69 4848 4.0 1021645019
## 11663 69 4874 5.0 1021643840
## 11664 69 4876 3.0 1021645393
## 11665 69 4880 5.0 1021644746
## 11666 69 4963 3.0 1021646104
## 11667 70 36 5.0 1355198746
## 11668 70 150 4.0 1355198045
## 11669 70 246 4.5 1355198793
## 11670 70 318 4.5 1355185390
## 11671 70 356 4.0 1355198377
## 11672 70 376 1.5 1355184504
## 11673 70 508 4.5 1355198208
## 11674 70 527 5.0 1355198357
## 11675 70 529 4.5 1355198219
## 11676 70 858 5.0 1355198320
## 11677 70 953 5.0 1355198436
## 11678 70 1097 4.5 1355185283
## 11679 70 1172 5.0 1355184567
## 11680 70 1193 5.0 1355198584
## 11681 70 1210 5.0 1355198266
## 11682 70 1235 4.0 1355184600
## 11683 70 1246 5.0 1355198395
## 11684 70 1250 4.5 1355198948
## 11685 70 1253 4.0 1355184722
## 11686 70 1259 4.5 1355198298
## 11687 70 1269 3.5 1355185088
## 11688 70 1270 4.0 1355198332
## 11689 70 1272 4.0 1355184618
## 11690 70 1288 4.0 1355198452
## 11691 70 1293 5.0 1355198380
## 11692 70 1300 5.0 1355198710
## 11693 70 1302 5.0 1355198101
## 11694 70 1303 4.5 1355198940
## 11695 70 1304 4.0 1355198503
## 11696 70 1682 3.5 1355198544
## 11697 70 1704 4.5 1355185343
## 11698 70 1914 4.0 1355184983
## 11699 70 1954 4.5 1355185315
## 11700 70 1955 3.5 1355184784
## 11701 70 1959 4.5 1355184760
## 11702 70 1962 4.0 1355184587
## 11703 70 1968 4.0 1355198538
## 11704 70 2366 4.5 1355184671
## 11705 70 2858 4.0 1355185380
## 11706 70 2918 3.5 1355198410
## 11707 70 3098 4.5 1355198198
## 11708 70 3147 2.5 1355198512
## 11709 70 3152 4.0 1355198011
## 11710 70 3255 4.0 1355184544
## 11711 70 3359 5.0 1355184939
## 11712 70 3361 5.0 1355198718
## 11713 70 3468 5.0 1355198425
## 11714 70 3543 4.0 1355184875
## 11715 70 3730 4.5 1355185412
## 11716 70 4306 4.0 1355198229
## 11717 70 4995 4.5 1355198459
## 11718 70 5669 4.5 1355198821
## 11719 70 5995 4.0 1355198446
## 11720 70 7361 4.5 1355185235
## 11721 70 8949 5.0 1355198245
## 11722 70 37741 4.5 1355184928
## 11723 70 55820 4.0 1355198524
## 11724 70 63082 5.0 1355198254
## 11725 70 69757 4.0 1355185504
## 11726 70 72011 4.5 1355185183
## 11727 70 89492 4.5 1355185210
## 11728 70 91077 4.0 1355185164
## 11729 71 1 5.0 864737933
## 11730 71 7 3.0 864738008
## 11731 71 17 1.0 864737933
## 11732 71 24 2.0 864740028
## 11733 71 62 4.0 864737933
## 11734 71 86 5.0 864738119
## 11735 71 95 4.0 864737933
## 11736 71 160 3.0 864739211
## 11737 71 165 5.0 864739931
## 11738 71 208 2.0 864738913
## 11739 71 260 3.0 864737969
## 11740 71 494 4.0 864737969
## 11741 71 589 3.0 864739946
## 11742 71 608 2.0 864737969
## 11743 71 609 3.0 864738101
## 11744 71 647 4.0 864738101
## 11745 71 648 4.0 864739239
## 11746 71 707 1.0 864738101
## 11747 71 733 3.0 864737969
## 11748 71 736 5.0 864737933
## 11749 71 780 5.0 864737933
## 11750 71 788 4.0 864738008
## 11751 71 801 4.0 864738741
## 11752 71 802 5.0 864738036
## 11753 71 837 4.0 864738481
## 11754 71 852 4.0 864738060
## 11755 71 1004 3.0 864738723
## 11756 71 1036 4.0 864739931
## 11757 71 1073 3.0 864737969
## 11758 71 1101 5.0 864739360
## 11759 71 1210 3.0 864738037
## 11760 71 1240 4.0 864739946
## 11761 71 1356 5.0 864738008
## 11762 71 1370 4.0 864739931
## 11763 71 1544 3.0 864738453
## 11764 72 32 4.5 1217324825
## 11765 72 47 4.5 1217324851
## 11766 72 50 4.5 1217324720
## 11767 72 110 4.5 1217324791
## 11768 72 150 4.0 1217324795
## 11769 72 165 4.0 1217324886
## 11770 72 260 5.0 1217324775
## 11771 72 296 4.5 1217324757
## 11772 72 318 5.0 1217324771
## 11773 72 344 3.5 1217324835
## 11774 72 356 4.0 1217324762
## 11775 72 377 3.5 1217324831
## 11776 72 457 4.5 1217324789
## 11777 72 527 4.5 1217324706
## 11778 72 589 4.5 1217324801
## 11779 72 590 4.0 1217324799
## 11780 72 593 4.5 1217324766
## 11781 72 648 4.0 1217324936
## 11782 72 780 3.5 1217324805
## 11783 72 858 4.5 1217324695
## 11784 72 912 4.5 1217324689
## 11785 72 1047 3.5 1217323400
## 11786 72 1093 3.5 1217324666
## 11787 72 1193 4.0 1217324703
## 11788 72 1196 4.5 1217324882
## 11789 72 1198 4.5 1217324858
## 11790 72 1210 4.5 1217324808
## 11791 72 1216 4.0 1217323673
## 11792 72 1221 4.5 1217324698
## 11793 72 1270 4.0 1217324884
## 11794 72 1357 4.0 1217323427
## 11795 72 1586 3.0 1217323459
## 11796 72 1962 3.5 1217324659
## 11797 72 2136 2.5 1217323586
## 11798 72 2329 4.5 1217324969
## 11799 72 2427 4.5 1217323439
## 11800 72 2490 4.0 1217323422
## 11801 72 2571 5.0 1217324848
## 11802 72 2634 4.0 1217323832
## 11803 72 2805 3.5 1217323507
## 11804 72 2858 4.5 1217324839
## 11805 72 4973 5.0 1217324685
## 11806 72 27193 3.5 1217324054
## 11807 72 30825 4.0 1217323581
## 11808 72 56174 4.5 1217323649
## 11809 73 1 4.5 1464196374
## 11810 73 150 2.0 1464196379
## 11811 73 260 2.0 1464196535
## 11812 73 924 4.0 1464282755
## 11813 73 1193 5.0 1464282741
## 11814 73 1206 5.0 1464282740
## 11815 73 1682 5.0 1464196138
## 11816 73 1732 5.0 1464267306
## 11817 73 1884 3.5 1464267366
## 11818 73 2028 5.0 1464267293
## 11819 73 2321 4.0 1464196344
## 11820 73 2502 3.0 1464198229
## 11821 73 2706 3.5 1464267308
## 11822 73 2858 5.0 1464267288
## 11823 73 3535 5.0 1464267342
## 11824 73 3671 4.5 1464282765
## 11825 73 3751 2.5 1464197051
## 11826 73 3785 3.0 1464267341
## 11827 73 3793 5.0 1464267295
## 11828 73 3911 3.5 1464197118
## 11829 73 3969 4.0 1464197252
## 11830 73 4016 2.5 1464197231
## 11831 73 4025 2.0 1464197132
## 11832 73 4226 4.0 1464267291
## 11833 73 4306 2.5 1464196962
## 11834 73 4447 3.5 1464267335
## 11835 73 4878 5.0 1464267305
## 11836 73 4886 4.0 1464196969
## 11837 73 4979 5.0 1464267271
## 11838 73 4995 4.0 1464196972
## 11839 73 5299 3.0 1464197122
## 11840 73 6155 3.5 1464197336
## 11841 73 6333 5.0 1464275206
## 11842 73 6373 3.0 1464275221
## 11843 73 6377 4.5 1464196965
## 11844 73 6539 4.5 1464196275
## 11845 73 6863 3.0 1464197129
## 11846 73 6874 5.0 1464275196
## 11847 73 6936 5.0 1464197277
## 11848 73 7438 4.0 1464275199
## 11849 73 7451 3.0 1464197262
## 11850 73 8360 2.0 1464197062
## 11851 73 8361 3.0 1464275283
## 11852 73 8376 2.0 1464197186
## 11853 73 8533 3.0 1464197274
## 11854 73 8636 4.0 1464275204
## 11855 73 8641 3.5 1464197978
## 11856 73 8807 4.0 1464275372
## 11857 73 8961 4.0 1464196975
## 11858 73 8970 2.0 1464197021
## 11859 73 8972 5.0 1464198831
## 11860 73 30793 3.5 1464197149
## 11861 73 33495 4.0 1464198972
## 11862 73 33836 3.0 1464198003
## 11863 73 34162 4.5 1464197168
## 11864 73 35836 2.5 1464197105
## 11865 73 41566 3.0 1464197158
## 11866 73 44193 4.5 1464196920
## 11867 73 45221 4.0 1464198899
## 11868 73 45499 5.0 1464275279
## 11869 73 45720 4.0 1464197299
## 11870 73 45722 4.0 1464196283
## 11871 73 46578 4.0 1464197080
## 11872 73 47099 4.0 1464275325
## 11873 73 47122 4.0 1464196932
## 11874 73 47518 3.5 1464197948
## 11875 73 48385 3.0 1464275238
## 11876 73 48414 3.0 1464198719
## 11877 73 49272 5.0 1464275210
## 11878 73 50601 4.0 1464198633
## 11879 73 50685 3.5 1464198667
## 11880 73 51255 4.5 1464275234
## 11881 73 51540 4.5 1464275338
## 11882 73 52245 4.0 1464198083
## 11883 73 52722 5.0 1464275313
## 11884 73 52973 4.0 1464275306
## 11885 73 52975 3.5 1464198144
## 11886 73 53125 4.5 1464196291
## 11887 73 53460 3.5 1464198814
## 11888 73 53996 4.0 1464199579
## 11889 73 54503 1.5 1464196864
## 11890 73 55768 4.0 1464198550
## 11891 73 56367 3.5 1464197090
## 11892 73 56775 3.5 1464198842
## 11893 73 58047 4.5 1464196245
## 11894 73 58559 4.5 1464196527
## 11895 73 58998 3.5 1464199539
## 11896 73 59258 4.5 1464198066
## 11897 73 59315 4.0 1464275201
## 11898 73 59784 2.5 1464196885
## 11899 73 60126 3.5 1464197987
## 11900 73 60684 5.0 1464275277
## 11901 73 60756 4.5 1464196221
## 11902 73 61024 4.0 1464282933
## 11903 73 61250 4.0 1464198613
## 11904 73 61323 4.0 1464275322
## 11905 73 62434 4.0 1464282987
## 11906 73 63992 2.0 1464282935
## 11907 73 64957 3.5 1464196899
## 11908 73 64969 4.0 1464282958
## 11909 73 65230 3.5 1464198251
## 11910 73 66097 1.5 1464198516
## 11911 73 68135 3.5 1464198141
## 11912 73 68157 5.0 1464275211
## 11913 73 68319 4.0 1464275360
## 11914 73 68358 5.0 1464275224
## 11915 73 68954 4.0 1464196694
## 11916 73 69122 3.0 1464197125
## 11917 73 69278 1.0 1464198963
## 11918 73 69481 4.5 1464275319
## 11919 73 69644 1.0 1464198312
## 11920 73 69757 4.0 1464196867
## 11921 73 70286 3.5 1464275226
## 11922 73 70293 3.5 1464199499
## 11923 73 71518 4.0 1464198296
## 11924 73 71535 5.0 1464275275
## 11925 73 72226 3.5 1464197365
## 11926 73 72378 2.0 1464282943
## 11927 73 72641 4.5 1464197347
## 11928 73 72998 3.5 1464197071
## 11929 73 73017 5.0 1464275240
## 11930 73 74458 4.5 1464275229
## 11931 73 74647 1.0 1464198880
## 11932 73 75805 3.0 1464198246
## 11933 73 76293 3.5 1464197993
## 11934 73 78499 5.0 1464196177
## 11935 73 79091 3.5 1464197287
## 11936 73 79132 2.5 1464196520
## 11937 73 79592 4.5 1464196228
## 11938 73 80463 4.0 1464199412
## 11939 73 81562 4.0 1464275376
## 11940 73 81591 4.0 1464199392
## 11941 73 86332 5.0 1464275342
## 11942 73 86833 5.0 1464198288
## 11943 73 86880 3.5 1464196302
## 11944 73 87232 5.0 1464282906
## 11945 73 87430 1.0 1464199377
## 11946 73 87485 3.0 1464198684
## 11947 73 87869 3.5 1464198213
## 11948 73 88140 4.5 1464197386
## 11949 73 88810 4.0 1464199342
## 11950 73 89492 4.0 1464282937
## 11951 73 89745 4.0 1464199263
## 11952 73 91500 4.0 1464199280
## 11953 73 91529 5.0 1464282897
## 11954 73 91542 5.0 1464282920
## 11955 73 92509 3.5 1464198570
## 11956 73 93272 3.5 1464198147
## 11957 73 93326 3.5 1464199611
## 11958 73 93510 4.5 1464197916
## 11959 73 93840 2.0 1464282962
## 11960 73 95441 3.5 1464199298
## 11961 73 95510 4.0 1464282941
## 11962 73 96079 5.0 1464275316
## 11963 73 96588 3.5 1464198425
## 11964 73 96821 4.0 1464199314
## 11965 73 97921 3.5 1464197321
## 11966 73 99106 1.5 1464198772
## 11967 73 99114 5.0 1464275230
## 11968 73 101612 3.0 1464198045
## 11969 73 102407 3.5 1464196199
## 11970 73 102445 5.0 1464282924
## 11971 73 102481 4.0 1464198499
## 11972 73 103141 4.5 1464196999
## 11973 73 103249 4.0 1464282975
## 11974 73 103335 2.0 1464198316
## 11975 73 104211 3.5 1464198234
## 11976 73 105037 2.5 1464197889
## 11977 73 106072 5.0 1464282996
## 11978 73 106782 4.5 1464197233
## 11979 73 107348 1.5 1464197991
## 11980 73 108932 3.5 1464197927
## 11981 73 109374 5.0 1464275303
## 11982 73 109483 2.0 1464198150
## 11983 73 109487 4.5 1464197113
## 11984 73 110102 5.0 1464282930
## 11985 73 111113 2.5 1464197875
## 11986 73 111320 1.5 1464199071
## 11987 73 111362 5.0 1464275356
## 11988 73 111921 3.5 1464199220
## 11989 73 112138 4.0 1464197934
## 11990 73 112183 2.5 1464282951
## 11991 73 112290 3.5 1464282984
## 11992 73 112450 2.0 1464198092
## 11993 73 112556 4.0 1464197220
## 11994 73 112788 2.5 1464198585
## 11995 73 112852 5.0 1464275288
## 11996 73 113378 1.0 1464196354
## 11997 73 114074 3.0 1464198302
## 11998 73 115617 5.0 1464282914
## 11999 73 116823 4.0 1464282976
## 12000 73 117590 4.0 1464198220
## 12001 73 117881 4.0 1464198999
## 12002 73 119145 4.5 1464282948
## 12003 73 122892 5.0 1464282953
## 12004 73 122904 4.5 1464196265
## 12005 73 123947 2.5 1464198258
## 12006 73 126548 2.5 1464198475
## 12007 73 127202 4.0 1464196565
## 12008 73 128520 3.5 1464198597
## 12009 73 131013 3.5 1464198460
## 12010 73 134368 4.0 1464197537
## 12011 73 134393 3.5 1464198449
## 12012 73 134853 4.0 1464196486
## 12013 73 138036 2.5 1464196603
## 12014 73 138204 4.0 1464197862
## 12015 73 140110 4.0 1464196591
## 12016 73 149354 2.0 1464198038
## 12017 73 151739 2.5 1464198160
## 12018 73 152081 5.0 1464196315
## 12019 74 58 5.0 1207502891
## 12020 74 111 5.0 1207500396
## 12021 74 194 5.0 1207499222
## 12022 74 273 3.5 1207499102
## 12023 74 296 5.0 1207499596
## 12024 74 307 5.0 1207499251
## 12025 74 308 5.0 1207501263
## 12026 74 337 4.0 1207501280
## 12027 74 382 4.5 1207499275
## 12028 74 475 5.0 1207502497
## 12029 74 608 5.0 1207500635
## 12030 74 858 5.0 1207501497
## 12031 74 903 4.5 1207502105
## 12032 74 923 5.0 1207501381
## 12033 74 926 5.0 1207502168
## 12034 74 949 4.0 1207502365
## 12035 74 1041 5.0 1207499247
## 12036 74 1084 5.0 1207501357
## 12037 74 1094 4.5 1207501409
## 12038 74 1103 5.0 1207499290
## 12039 74 1185 4.0 1207501759
## 12040 74 1193 5.0 1207501807
## 12041 74 1206 5.0 1207501395
## 12042 74 1208 5.0 1207501319
## 12043 74 1209 4.0 1207502875
## 12044 74 1212 5.0 1207501258
## 12045 74 1217 4.0 1207501935
## 12046 74 1219 4.5 1207501896
## 12047 74 1221 5.0 1207502422
## 12048 74 1230 5.0 1207501321
## 12049 74 1247 4.0 1207502433
## 12050 74 1251 4.5 1207501291
## 12051 74 1252 5.0 1207501373
## 12052 74 1263 5.0 1207501451
## 12053 74 1348 4.0 1207501783
## 12054 74 1617 4.5 1207502523
## 12055 74 1635 4.5 1207499263
## 12056 74 1673 3.5 1207502284
## 12057 74 1889 5.0 1207501075
## 12058 74 1952 4.0 1207501739
## 12059 74 1960 5.0 1207499217
## 12060 74 2010 4.0 1207501734
## 12061 74 2076 5.0 1207499090
## 12062 74 2160 5.0 1207502914
## 12063 74 2243 3.0 1207499231
## 12064 74 2300 5.0 1207499267
## 12065 74 2313 3.5 1207501479
## 12066 74 2360 4.5 1207500558
## 12067 74 2420 2.5 1207499132
## 12068 74 2594 4.5 1207502882
## 12069 74 2644 3.5 1207502341
## 12070 74 2692 4.0 1207501208
## 12071 74 2858 5.0 1207501309
## 12072 74 2908 5.0 1207499117
## 12073 74 2966 3.5 1207502033
## 12074 74 2997 4.0 1207500545
## 12075 74 3006 4.0 1207501062
## 12076 74 3019 4.0 1207501474
## 12077 74 3083 5.0 1207500457
## 12078 74 3089 5.0 1207501351
## 12079 74 3160 4.0 1207501139
## 12080 74 3201 4.0 1207502399
## 12081 74 3246 4.0 1207501145
## 12082 74 3271 3.5 1207502629
## 12083 74 3273 2.5 1207499293
## 12084 74 3307 5.0 1207501386
## 12085 74 3424 4.0 1207499286
## 12086 74 3481 3.5 1207502489
## 12087 74 3730 4.0 1207500584
## 12088 74 3735 4.5 1207501967
## 12089 74 3863 3.0 1207499124
## 12090 74 3949 5.0 1207501199
## 12091 74 3996 5.0 1207501404
## 12092 74 4034 3.5 1207501269
## 12093 74 4103 4.0 1207500973
## 12094 74 4211 4.0 1207501928
## 12095 74 4226 4.0 1207500729
## 12096 74 4427 3.5 1207501692
## 12097 74 4546 4.5 1207500425
## 12098 74 4878 4.0 1207501462
## 12099 74 4973 5.0 1207500854
## 12100 74 4979 4.5 1207501942
## 12101 74 5013 3.5 1207502426
## 12102 74 5300 4.0 1207500833
## 12103 74 5304 4.0 1207500356
## 12104 74 5341 4.0 1207500164
## 12105 74 5434 4.5 1207502943
## 12106 74 5632 4.0 1207502279
## 12107 74 5791 4.0 1207502415
## 12108 74 5812 4.0 1207500146
## 12109 74 5867 4.0 1207502052
## 12110 74 5890 5.0 1207502378
## 12111 74 5893 2.5 1207501684
## 12112 74 5995 5.0 1207499219
## 12113 74 6001 4.0 1207501108
## 12114 74 6016 5.0 1207499961
## 12115 74 6235 5.0 1207500979
## 12116 74 6244 4.0 1207501952
## 12117 74 6270 5.0 1207500623
## 12118 74 6301 4.0 1207502955
## 12119 74 6305 4.0 1207501486
## 12120 74 6440 3.5 1207502191
## 12121 74 6552 4.0 1207500626
## 12122 74 6591 5.0 1207501726
## 12123 74 6666 5.0 1207501458
## 12124 74 6711 4.0 1207500282
## 12125 74 6787 5.0 1207500104
## 12126 74 6791 5.0 1207501328
## 12127 74 6852 4.0 1207500025
## 12128 74 6858 3.5 1207500694
## 12129 74 6870 4.0 1207500734
## 12130 74 6993 5.0 1207500667
## 12131 74 7087 4.0 1207501191
## 12132 74 7158 3.0 1207501583
## 12133 74 7234 5.0 1207500193
## 12134 74 7323 5.0 1207500985
## 12135 74 7387 3.0 1207501443
## 12136 74 7419 3.5 1207502162
## 12137 74 7889 4.0 1207501813
## 12138 74 8154 5.0 1207500133
## 12139 74 8183 3.5 1207502372
## 12140 74 8207 4.0 1207500932
## 12141 74 8340 3.5 1207502384
## 12142 74 8341 3.5 1207499990
## 12143 74 8804 5.0 1207502952
## 12144 74 8838 5.0 1207500100
## 12145 74 8873 4.0 1207501751
## 12146 74 8951 4.0 1207502101
## 12147 74 26350 5.0 1207500071
## 12148 74 26578 4.0 1207501220
## 12149 74 27721 3.5 1207502115
## 12150 74 27773 5.0 1207501803
## 12151 74 30707 4.0 1207502554
## 12152 74 30749 3.5 1207500672
## 12153 74 31522 5.0 1207500333
## 12154 74 34437 3.5 1207502302
## 12155 74 37733 3.0 1207501589
## 12156 74 37741 3.5 1207500217
## 12157 74 39183 4.0 1207500116
## 12158 74 39292 4.5 1207500229
## 12159 74 40629 3.5 1207501885
## 12160 74 41863 4.5 1207500417
## 12161 74 41997 5.0 1207500342
## 12162 74 44555 4.0 1207501129
## 12163 74 44937 4.0 1207502318
## 12164 74 46578 5.0 1207501117
## 12165 74 46723 4.5 1207500869
## 12166 74 46976 4.0 1207502039
## 12167 74 47423 4.0 1207500015
## 12168 74 47629 4.0 1207500764
## 12169 74 48394 4.5 1207500361
## 12170 74 48516 5.0 1207500600
## 12171 74 48696 4.5 1207501696
## 12172 74 48698 5.0 1207499649
## 12173 74 48774 4.0 1207501367
## 12174 74 49772 4.0 1207502887
## 12175 74 50068 3.5 1207500277
## 12176 74 50274 4.0 1207500819
## 12177 74 51540 4.0 1207500465
## 12178 74 52281 2.5 1207501033
## 12179 74 52952 4.5 1207499894
## 12180 74 52967 4.5 1207499675
## 12181 74 55069 4.0 1207499946
## 12182 74 55118 5.0 1207500140
## 12183 74 55247 4.5 1207499969
## 12184 74 55253 3.5 1207500718
## 12185 74 55276 5.0 1207500329
## 12186 74 55290 4.0 1207500648
## 12187 74 55363 4.0 1207500453
## 12188 74 55444 5.0 1207499839
## 12189 74 55814 3.5 1207500052
## 12190 74 55820 4.5 1207500062
## 12191 74 56757 4.0 1207502086
## 12192 74 56782 4.5 1207499998
## 12193 74 57147 4.0 1207503024
## 12194 74 58103 4.0 1207503035
## 12195 74 58154 3.5 1207503031
## 12196 75 47 2.0 1158968272
## 12197 75 151 2.0 1158967103
## 12198 75 168 4.0 1158967185
## 12199 75 173 3.0 1158967071
## 12200 75 260 5.0 1158989756
## 12201 75 435 1.0 1158967085
## 12202 75 515 2.0 1158989888
## 12203 75 541 4.0 1158989785
## 12204 75 589 4.5 1158989827
## 12205 75 592 3.5 1158989896
## 12206 75 903 1.0 1158968143
## 12207 75 908 4.5 1158967045
## 12208 75 912 4.0 1158967840
## 12209 75 920 3.0 1158967791
## 12210 75 924 3.5 1158967613
## 12211 75 928 4.5 1158967852
## 12212 75 1036 4.0 1158989815
## 12213 75 1090 1.0 1158967824
## 12214 75 1196 4.5 1158990239
## 12215 75 1198 4.5 1158990045
## 12216 75 1199 2.5 1158967231
## 12217 75 1200 2.5 1158967713
## 12218 75 1204 3.5 1158989794
## 12219 75 1214 4.5 1158967602
## 12220 75 1234 4.5 1158967139
## 12221 75 1240 4.0 1158990196
## 12222 75 1253 4.0 1158982941
## 12223 75 1266 4.0 1158967216
## 12224 75 1275 3.5 1158989900
## 12225 75 1291 4.5 1158990090
## 12226 75 1320 3.0 1158967195
## 12227 75 1372 4.0 1158968308
## 12228 75 1374 2.0 1158967591
## 12229 75 1376 4.0 1158967212
## 12230 75 1610 4.0 1158989841
## 12231 75 1653 2.0 1158967079
## 12232 75 1721 2.5 1158967893
## 12233 75 1889 3.0 1158968225
## 12234 75 1962 4.5 1158967875
## 12235 75 2078 5.0 1158982700
## 12236 75 2115 3.5 1158990116
## 12237 75 2193 1.5 1158989724
## 12238 75 2467 4.0 1158989849
## 12239 75 2529 1.5 1158967238
## 12240 75 2571 1.0 1158967564
## 12241 75 2628 1.0 1158967457
## 12242 75 2640 1.5 1158967058
## 12243 75 3034 4.0 1158982812
## 12244 75 3176 1.0 1158968301
## 12245 75 3681 5.0 1158990136
## 12246 75 4306 4.0 1158982794
## 12247 75 4369 2.5 1158967388
## 12248 75 4993 5.0 1158967649
## 12249 75 5008 4.0 1158968122
## 12250 75 5445 2.0 1158967067
## 12251 75 5952 4.0 1158982929
## 12252 75 6303 4.0 1158989870
## 12253 75 6870 1.0 1158968174
## 12254 75 7001 4.0 1158968208
## 12255 75 7123 2.5 1158968322
## 12256 75 7153 4.0 1158967110
## 12257 75 8360 4.0 1158982806
## 12258 75 8865 1.0 1158982908
## 12259 75 8961 4.0 1158982785
## 12260 75 33493 0.5 1158967510
## 12261 75 34405 4.0 1158967581
## 12262 75 36519 4.0 1158967337
## 12263 75 44191 4.5 1158982577
## 12264 75 44199 3.0 1158968109
## 12265 76 1 0.5 1439165548
## 12266 76 47 3.5 1439168120
## 12267 76 48 0.5 1439168949
## 12268 76 111 3.0 1439166428
## 12269 76 158 0.5 1439168954
## 12270 76 260 4.0 1439165601
## 12271 76 288 4.0 1439168262
## 12272 76 296 4.5 1439165672
## 12273 76 317 0.5 1439168918
## 12274 76 318 3.0 1439165638
## 12275 76 356 1.0 1439165536
## 12276 76 480 2.0 1439168176
## 12277 76 541 3.5 1439167669
## 12278 76 551 0.5 1439168886
## 12279 76 553 3.5 1439168941
## 12280 76 588 0.5 1439168197
## 12281 76 589 3.5 1439168185
## 12282 76 593 3.5 1439165545
## 12283 76 608 4.0 1439166078
## 12284 76 673 0.5 1439168981
## 12285 76 745 1.0 1439168612
## 12286 76 750 3.0 1439166438
## 12287 76 778 4.5 1439166459
## 12288 76 788 0.5 1439168892
## 12289 76 858 5.0 1439165633
## 12290 76 923 1.5 1439168706
## 12291 76 953 2.0 1439167723
## 12292 76 1080 4.5 1439167537
## 12293 76 1089 4.5 1439166069
## 12294 76 1136 5.0 1439166982
## 12295 76 1148 0.5 1439168931
## 12296 76 1196 4.0 1439168691
## 12297 76 1201 1.5 1439168755
## 12298 76 1206 4.5 1439166958
## 12299 76 1208 4.0 1439167500
## 12300 76 1213 5.0 1439165644
## 12301 76 1214 4.0 1439166544
## 12302 76 1220 1.5 1439168770
## 12303 76 1221 4.5 1439166402
## 12304 76 1247 2.0 1439168648
## 12305 76 1250 3.0 1439167355
## 12306 76 1258 3.5 1439168762
## 12307 76 1278 4.0 1439167548
## 12308 76 1288 4.0 1439167369
## 12309 76 1367 1.0 1439169012
## 12310 76 1682 2.5 1439168248
## 12311 76 1732 4.0 1439168285
## 12312 76 1884 3.5 1439168591
## 12313 76 2019 4.0 1439166434
## 12314 76 2318 4.5 1439168833
## 12315 76 2502 4.0 1439168287
## 12316 76 2571 4.0 1439165565
## 12317 76 2628 2.0 1439168151
## 12318 76 2731 2.0 1439167380
## 12319 76 2762 4.0 1439168123
## 12320 76 2791 4.0 1439167504
## 12321 76 2858 4.0 1439167032
## 12322 76 2918 3.0 1439167803
## 12323 76 2959 4.5 1439165676
## 12324 76 3671 1.5 1439168774
## 12325 76 4226 4.5 1439168156
## 12326 76 4878 2.5 1439165692
## 12327 76 4963 3.5 1439168260
## 12328 76 5445 3.5 1439168250
## 12329 76 5679 3.5 1439165823
## 12330 76 5952 3.0 1439168386
## 12331 76 5956 3.5 1439165888
## 12332 76 6016 3.0 1439165680
## 12333 76 6373 2.0 1439165830
## 12334 76 6377 0.5 1439168391
## 12335 76 6539 2.0 1439168232
## 12336 76 6874 3.5 1439168272
## 12337 76 6934 3.0 1439165734
## 12338 76 7143 2.0 1439165745
## 12339 76 7153 3.0 1439168389
## 12340 76 7254 3.0 1439165863
## 12341 76 7669 1.5 1439168724
## 12342 76 8641 3.0 1439165920
## 12343 76 8957 5.0 1439165914
## 12344 76 8961 0.5 1439168397
## 12345 76 27611 4.0 1439168686
## 12346 76 30707 4.0 1439165832
## 12347 76 31410 4.0 1439168677
## 12348 76 33004 4.0 1439165905
## 12349 76 33493 4.5 1439165731
## 12350 76 34048 3.0 1439165897
## 12351 76 34405 5.0 1439165874
## 12352 76 39446 4.5 1439166934
## 12353 76 40815 3.0 1439165812
## 12354 76 41566 1.5 1439165880
## 12355 76 42723 3.0 1439167709
## 12356 76 44195 4.5 1439168847
## 12357 76 48877 4.5 1439167047
## 12358 76 51662 3.0 1439167904
## 12359 76 52281 3.5 1439167865
## 12360 76 54503 3.0 1439167919
## 12361 76 55577 4.5 1439167349
## 12362 76 55820 3.0 1439167909
## 12363 76 56174 2.0 1439167954
## 12364 76 56782 3.5 1439167973
## 12365 76 57669 4.0 1439167975
## 12366 76 58559 3.0 1439167675
## 12367 76 58803 3.0 1439168040
## 12368 76 61323 3.0 1439167836
## 12369 76 63436 4.5 1439167384
## 12370 76 63992 0.5 1439168031
## 12371 76 67255 3.0 1439167881
## 12372 76 68157 4.0 1439167377
## 12373 76 69122 3.0 1439167917
## 12374 76 72129 4.5 1439167407
## 12375 76 73017 2.0 1439167928
## 12376 76 74458 4.0 1439167957
## 12377 76 77455 3.5 1439168084
## 12378 76 79132 4.0 1439167492
## 12379 76 80463 3.0 1439167964
## 12380 76 81535 4.5 1439168697
## 12381 76 82461 3.0 1439168064
## 12382 76 99114 4.0 1439168587
## 12383 76 117176 2.0 1439168494
## 12384 77 260 5.0 1535107459
## 12385 77 1196 5.0 1535107474
## 12386 77 1198 5.0 1535107476
## 12387 77 1210 5.0 1535107480
## 12388 77 2571 5.0 1535107478
## 12389 77 3578 5.0 1535107514
## 12390 77 3948 3.0 1535107573
## 12391 77 3996 5.0 1535107543
## 12392 77 4226 2.5 1535107521
## 12393 77 4878 1.0 1535107550
## 12394 77 4973 2.5 1535107527
## 12395 77 4993 5.0 1535107512
## 12396 77 5349 5.0 1535107538
## 12397 77 5378 5.0 1535107567
## 12398 77 5418 2.5 1535107545
## 12399 77 5816 5.0 1535107557
## 12400 77 5952 5.0 1535107482
## 12401 77 5989 2.0 1535107548
## 12402 77 6539 4.0 1535107525
## 12403 77 7153 5.0 1535107481
## 12404 77 7361 2.0 1535107532
## 12405 77 7438 2.0 1535107546
## 12406 77 8636 5.0 1535107569
## 12407 77 8961 5.0 1535107541
## 12408 77 33794 5.0 1535107540
## 12409 77 54286 3.0 1535107575
## 12410 77 58559 5.0 1535107519
## 12411 77 79132 2.5 1535107524
## 12412 77 109487 4.0 1535107560
## 12413 78 1 4.0 1252575124
## 12414 78 20 3.0 1252573422
## 12415 78 32 3.5 1252575140
## 12416 78 150 4.0 1252575119
## 12417 78 165 3.0 1252574722
## 12418 78 260 3.5 1252575114
## 12419 78 296 4.0 1252574962
## 12420 78 318 4.5 1252575010
## 12421 78 344 4.0 1252575201
## 12422 78 356 3.0 1252575107
## 12423 78 370 4.0 1252575070
## 12424 78 377 3.5 1252575197
## 12425 78 380 4.0 1252575135
## 12426 78 466 3.0 1252575077
## 12427 78 480 4.0 1252574995
## 12428 78 546 0.5 1252573361
## 12429 78 589 4.5 1252574790
## 12430 78 590 2.0 1252575130
## 12431 78 593 3.0 1252575111
## 12432 78 608 2.0 1252575190
## 12433 78 648 3.0 1252575204
## 12434 78 743 2.0 1252573320
## 12435 78 780 3.5 1252575127
## 12436 78 836 3.0 1252573377
## 12437 78 1036 5.0 1252574711
## 12438 78 1198 4.5 1252575207
## 12439 78 1200 3.0 1252575261
## 12440 78 1240 5.0 1252574777
## 12441 78 1270 4.0 1252575264
## 12442 78 1291 4.0 1252575255
## 12443 78 1359 3.0 1252573488
## 12444 78 1370 4.0 1252574717
## 12445 78 1552 4.0 1252574812
## 12446 78 1831 1.0 1252573295
## 12447 78 2000 4.0 1252574868
## 12448 78 2471 1.0 1252573384
## 12449 78 2571 4.5 1252575194
## 12450 78 2605 2.5 1252573252
## 12451 78 2716 4.5 1252575297
## 12452 78 2746 1.5 1252573264
## 12453 78 2791 5.0 1252575044
## 12454 78 2792 2.0 1252574761
## 12455 78 2795 2.0 1252573344
## 12456 78 2991 3.5 1252573406
## 12457 78 3087 3.0 1252573389
## 12458 78 3809 3.0 1252573355
## 12459 78 3826 2.5 1252573310
## 12460 78 3868 4.5 1252575057
## 12461 78 3869 4.0 1252575063
## 12462 78 4085 3.0 1252575303
## 12463 78 4571 3.0 1252573276
## 12464 78 5400 3.5 1252573479
## 12465 78 5541 3.0 1252575084
## 12466 78 6537 1.0 1252574781
## 12467 78 8528 4.5 1252574829
## 12468 78 27904 0.5 1252575324
## 12469 78 44974 0.5 1252575314
## 12470 78 53972 1.5 1252574724
## 12471 78 59315 3.0 1252575270
## 12472 78 68358 4.0 1252575239
## 12473 78 68791 2.0 1252574796
## 12474 79 6 4.0 975282111
## 12475 79 164 5.0 975281545
## 12476 79 246 5.0 975281661
## 12477 79 260 5.0 975281842
## 12478 79 307 4.0 975281591
## 12479 79 377 4.0 975282070
## 12480 79 457 4.0 975281934
## 12481 79 480 5.0 975282070
## 12482 79 589 5.0 975282037
## 12483 79 858 5.0 975281842
## 12484 79 1127 5.0 975282111
## 12485 79 1189 5.0 975281591
## 12486 79 1191 5.0 975281768
## 12487 79 1192 5.0 975281661
## 12488 79 1196 5.0 975281343
## 12489 79 1197 4.0 975282009
## 12490 79 1200 4.0 975281975
## 12491 79 1210 5.0 975282009
## 12492 79 1215 4.0 975282037
## 12493 79 1218 5.0 975281934
## 12494 79 1220 5.0 975281545
## 12495 79 1221 5.0 975281842
## 12496 79 1222 4.0 975281874
## 12497 79 1240 4.0 975281904
## 12498 79 1242 5.0 975281904
## 12499 79 1261 5.0 975282070
## 12500 79 1291 5.0 975282037
## 12501 79 1345 3.0 975281314
## 12502 79 1374 4.0 975282070
## 12503 79 1387 5.0 975281874
## 12504 79 1580 4.0 975282111
## 12505 79 1610 5.0 975281975
## 12506 79 1912 5.0 975281904
## 12507 79 1916 3.0 975281842
## 12508 79 1954 4.0 975281904
## 12509 79 2000 4.0 975282037
## 12510 79 2019 5.0 975281842
## 12511 79 2028 5.0 975281874
## 12512 79 2076 4.0 975281520
## 12513 79 2150 4.0 975281314
## 12514 79 2249 4.0 975281591
## 12515 79 2406 4.0 975282070
## 12516 79 2427 2.0 975281975
## 12517 79 2571 4.0 975281874
## 12518 79 2659 2.0 975281768
## 12519 79 2692 5.0 975281842
## 12520 79 2791 3.0 975281314
## 12521 79 2916 4.0 975282070
## 12522 79 2944 4.0 975281934
## 12523 79 2947 5.0 975281975
## 12524 79 3006 4.0 975281343
## 12525 79 3029 3.0 975281975
## 12526 79 3062 4.0 975281934
## 12527 79 3104 5.0 975282009
## 12528 79 3142 4.0 975281768
## 12529 79 3197 4.0 975281975
## 12530 79 3256 2.0 975282111
## 12531 79 3266 5.0 975282009
## 12532 79 3425 4.0 975281591
## 12533 79 3576 4.0 975282009
## 12534 79 3578 2.0 975282111
## 12535 79 3702 3.0 975282111
## 12536 79 3984 4.0 975282070
## 12537 79 4005 3.0 975281874
## 12538 80 32 4.0 1377308186
## 12539 80 50 4.5 1377308037
## 12540 80 150 4.0 1377308715
## 12541 80 318 5.0 1377308028
## 12542 80 431 4.0 1377308567
## 12543 80 593 5.0 1377473779
## 12544 80 648 4.5 1377308459
## 12545 80 858 4.0 1377308032
## 12546 80 1200 4.5 1377473772
## 12547 80 1214 5.0 1377308249
## 12548 80 1221 4.0 1377308052
## 12549 80 1258 4.0 1377473798
## 12550 80 1302 4.0 1377306348
## 12551 80 1527 4.0 1377308323
## 12552 80 1625 4.5 1377308153
## 12553 80 1676 3.5 1377308350
## 12554 80 1921 4.0 1377308678
## 12555 80 2232 4.0 1377308167
## 12556 80 2291 4.0 1377308742
## 12557 80 2470 4.0 1377306352
## 12558 80 2513 4.0 1377307812
## 12559 80 2571 4.5 1377308089
## 12560 80 2763 4.5 1377306356
## 12561 80 2959 5.0 1377308074
## 12562 80 3147 4.0 1377308769
## 12563 80 3275 5.0 1377308710
## 12564 80 3285 3.5 1377307766
## 12565 80 3300 4.0 1377308260
## 12566 80 3527 4.0 1377308343
## 12567 80 3534 3.5 1377307778
## 12568 80 3535 5.0 1377391391
## 12569 80 3623 4.0 1377308453
## 12570 80 3826 3.5 1377391967
## 12571 80 3863 3.5 1377306391
## 12572 80 4223 4.0 1377308627
## 12573 80 4226 5.0 1377308099
## 12574 80 4720 4.0 1377308974
## 12575 80 4776 4.5 1377308554
## 12576 80 4848 4.0 1377308642
## 12577 80 4878 5.0 1377308179
## 12578 80 4886 4.0 1377308761
## 12579 80 4887 4.0 1377307886
## 12580 80 4963 4.5 1377308707
## 12581 80 4995 4.5 1377308764
## 12582 80 5064 5.0 1377308408
## 12583 80 5103 4.0 1377307819
## 12584 80 5349 4.0 1377309022
## 12585 80 5388 4.0 1377306417
## 12586 80 5418 5.0 1377308426
## 12587 80 5445 4.5 1377308306
## 12588 80 5502 4.0 1377308376
## 12589 80 5630 4.5 1377309157
## 12590 80 5679 4.0 1377391406
## 12591 80 5903 4.5 1377308317
## 12592 80 5989 4.5 1377308736
## 12593 80 6059 5.0 1377307873
## 12594 80 6281 3.5 1377307782
## 12595 80 6323 4.0 1377309132
## 12596 80 6365 4.0 1377309055
## 12597 80 6502 4.0 1377308689
## 12598 80 6539 4.0 1377308697
## 12599 80 6754 5.0 1377391501
## 12600 80 6874 4.5 1377308812
## 12601 80 6934 4.5 1377309127
## 12602 80 6952 5.0 1377307911
## 12603 80 7154 4.0 1377307904
## 12604 80 7438 4.5 1377308987
## 12605 80 7445 4.5 1377308721
## 12606 80 8361 4.0 1377309066
## 12607 80 8644 4.5 1377308277
## 12608 80 8665 5.0 1377308431
## 12609 80 8798 5.0 1377308545
## 12610 80 8810 4.0 1377391242
## 12611 80 8861 4.0 1377391245
## 12612 80 8914 3.5 1377308174
## 12613 80 8950 5.0 1377308692
## 12614 80 8957 4.5 1377309223
## 12615 80 33794 5.0 1377308792
## 12616 80 34048 4.0 1377308367
## 12617 80 34319 4.5 1377308282
## 12618 80 40583 4.0 1377309137
## 12619 80 42738 4.5 1377391508
## 12620 80 44191 4.0 1377308717
## 12621 80 44199 5.0 1377308758
## 12622 80 44665 5.0 1377308757
## 12623 80 44974 4.5 1377309075
## 12624 80 45186 4.5 1377308448
## 12625 80 47610 5.0 1377308148
## 12626 80 48394 4.5 1377308755
## 12627 80 48516 4.0 1377308996
## 12628 80 48774 4.0 1377308723
## 12629 80 48780 5.0 1377308136
## 12630 80 49272 4.5 1377308503
## 12631 80 49278 4.5 1377308295
## 12632 80 49530 4.0 1377308766
## 12633 80 51080 4.0 1377309102
## 12634 80 51662 4.5 1377308790
## 12635 80 51935 4.5 1377309129
## 12636 80 52604 4.5 1377308972
## 12637 80 53000 4.0 1377309266
## 12638 80 53129 4.5 1377309063
## 12639 80 53322 4.0 1377309208
## 12640 80 53953 3.5 1377391519
## 12641 80 53972 4.0 1377308985
## 12642 80 54286 5.0 1377308437
## 12643 80 55765 4.0 1377308560
## 12644 80 56174 4.5 1377308393
## 12645 80 57368 4.0 1377308385
## 12646 80 58559 5.0 1377308057
## 12647 80 59315 4.5 1377308725
## 12648 80 59369 5.0 1377308712
## 12649 80 60030 4.5 1377391494
## 12650 80 60684 4.0 1377308787
## 12651 80 63113 4.5 1377308497
## 12652 80 65216 3.5 1377309097
## 12653 80 65682 4.5 1377391971
## 12654 80 69122 4.0 1377308777
## 12655 80 69654 3.5 1377309213
## 12656 80 70286 4.5 1377308243
## 12657 80 71135 4.0 1377308265
## 12658 80 71535 4.0 1377308802
## 12659 80 72998 4.0 1377308733
## 12660 80 74458 4.5 1377308784
## 12661 80 75395 3.0 1377391176
## 12662 80 76251 4.0 1377308809
## 12663 80 77561 4.5 1377309113
## 12664 80 78266 4.0 1377391200
## 12665 80 78349 4.0 1377308161
## 12666 80 79132 4.5 1377308096
## 12667 80 80219 3.0 1377309198
## 12668 80 80363 4.0 1377391137
## 12669 80 80489 4.5 1377307920
## 12670 80 80831 5.0 1377309079
## 12671 80 81417 3.5 1377391160
## 12672 80 81591 4.0 1377308981
## 12673 80 82041 4.0 1377390850
## 12674 80 83134 3.0 1377473870
## 12675 80 84152 4.5 1377309007
## 12676 80 84189 4.0 1377391143
## 12677 80 84601 4.0 1377308978
## 12678 80 85397 4.0 1377391213
## 12679 80 85414 4.5 1377308300
## 12680 80 86190 5.0 1377309155
## 12681 80 87232 4.0 1377309028
## 12682 80 89470 4.0 1377309234
## 12683 80 90405 4.0 1377308290
## 12684 80 90469 3.5 1377391183
## 12685 80 91500 4.5 1377308401
## 12686 80 91535 4.0 1377308443
## 12687 80 91630 4.5 1377308470
## 12688 80 91658 5.0 1377309005
## 12689 80 91974 4.5 1377391147
## 12690 80 93297 4.5 1377309177
## 12691 80 93840 4.0 1377309057
## 12692 80 94864 5.0 1377308255
## 12693 80 96079 4.5 1377308526
## 12694 80 96691 4.0 1377391193
## 12695 80 96917 4.0 1377391154
## 12696 80 98361 4.0 1377309149
## 12697 80 98961 4.5 1377309019
## 12698 80 100383 4.5 1377309093
## 12699 80 100810 4.0 1377391131
## 12700 80 101864 4.0 1377308272
## 12701 80 102125 4.0 1377309044
## 12702 80 103075 4.0 1377391150
## 12703 80 103249 4.0 1377390865
## 12704 80 103688 4.0 1377309232
## 12705 81 10 1.0 845299756
## 12706 81 32 5.0 845299983
## 12707 81 47 3.0 845299983
## 12708 81 110 3.0 845299756
## 12709 81 150 3.0 845299424
## 12710 81 153 3.0 845299505
## 12711 81 161 3.0 845299756
## 12712 81 165 3.0 845299504
## 12713 81 208 1.0 845299800
## 12714 81 231 1.0 845299563
## 12715 81 288 3.0 845299800
## 12716 81 296 3.0 845299424
## 12717 81 316 4.0 845299563
## 12718 81 318 3.0 845299677
## 12719 81 329 4.0 845299677
## 12720 81 344 1.0 845299505
## 12721 81 356 2.0 845299676
## 12722 81 364 2.0 845299844
## 12723 81 367 1.0 845299844
## 12724 81 377 3.0 845299844
## 12725 81 380 2.0 845299424
## 12726 81 457 4.0 845299563
## 12727 81 480 4.0 845299676
## 12728 81 588 2.0 845299505
## 12729 81 589 5.0 845299844
## 12730 81 592 3.0 845299424
## 12731 82 1 2.5 1084467729
## 12732 82 2 3.0 1084465035
## 12733 82 6 3.5 1084467865
## 12734 82 10 3.5 1084467796
## 12735 82 34 2.0 1084467775
## 12736 82 47 3.5 1084467783
## 12737 82 104 3.5 1084468090
## 12738 82 110 4.5 1084467714
## 12739 82 145 4.5 1084463787
## 12740 82 153 3.0 1084465021
## 12741 82 158 1.0 1084463716
## 12742 82 163 4.0 1084521290
## 12743 82 165 4.0 1084467751
## 12744 82 170 3.0 1084465384
## 12745 82 185 3.0 1084467840
## 12746 82 196 3.5 1084465393
## 12747 82 231 4.0 1084467803
## 12748 82 260 3.5 1084463958
## 12749 82 293 3.5 1084467974
## 12750 82 303 3.0 1084465377
## 12751 82 317 2.5 1084467976
## 12752 82 337 2.5 1084468022
## 12753 82 344 3.5 1084467754
## 12754 82 356 4.5 1084467704
## 12755 82 357 3.5 1084467829
## 12756 82 364 3.5 1084467782
## 12757 82 367 3.5 1084521277
## 12758 82 368 3.5 1084467998
## 12759 82 370 3.0 1084463966
## 12760 82 380 4.0 1084467721
## 12761 82 420 3.5 1084465029
## 12762 82 442 3.5 1084465019
## 12763 82 454 3.5 1084467820
## 12764 82 466 3.0 1084468214
## 12765 82 480 4.0 1084467706
## 12766 82 588 2.5 1084464970
## 12767 82 589 4.5 1084467724
## 12768 82 590 3.5 1084467708
## 12769 82 592 3.5 1084467713
## 12770 82 595 3.0 1084467752
## 12771 82 648 4.0 1084467757
## 12772 82 733 4.0 1084467784
## 12773 82 780 4.0 1084467743
## 12774 82 784 1.5 1084465344
## 12775 82 788 3.5 1084467942
## 12776 82 832 3.0 1084468159
## 12777 82 858 3.5 1084467795
## 12778 82 1036 4.0 1084467909
## 12779 82 1047 2.5 1084463845
## 12780 82 1089 3.5 1084465000
## 12781 82 1092 2.5 1084465313
## 12782 82 1101 3.0 1084465304
## 12783 82 1127 3.0 1084468078
## 12784 82 1196 4.0 1084464979
## 12785 82 1198 4.5 1084464972
## 12786 82 1200 3.5 1084467941
## 12787 82 1201 3.0 1084463795
## 12788 82 1210 4.0 1084464985
## 12789 82 1214 3.5 1084467898
## 12790 82 1221 3.0 1084464993
## 12791 82 1270 4.0 1084467787
## 12792 82 1291 4.5 1084463946
## 12793 82 1367 1.0 1084465288
## 12794 82 1370 4.0 1084468199
## 12795 82 1372 3.5 1084463754
## 12796 82 1377 2.5 1084465293
## 12797 82 1387 2.0 1084467982
## 12798 82 1485 3.5 1084521253
## 12799 82 1517 3.5 1084468138
## 12800 82 1527 4.0 1084468012
## 12801 82 1544 3.5 1084468259
## 12802 82 1552 3.5 1084465265
## 12803 82 1556 1.5 1084465259
## 12804 82 1562 2.0 1084465230
## 12805 82 1573 4.0 1084468108
## 12806 82 1580 4.0 1084467870
## 12807 82 1608 3.5 1084468209
## 12808 82 1645 2.0 1084463816
## 12809 82 1690 3.5 1084463836
## 12810 82 1721 2.5 1084464232
## 12811 82 1748 1.0 1084463840
## 12812 82 1801 3.0 1084521364
## 12813 82 1876 2.5 1084463790
## 12814 82 1923 4.0 1084464240
## 12815 82 2000 4.5 1084468140
## 12816 82 2001 4.5 1084463768
## 12817 82 2004 3.0 1084521367
## 12818 82 2006 2.0 1084463776
## 12819 82 2011 4.0 1084468168
## 12820 82 2012 4.0 1084468233
## 12821 82 2028 3.5 1084467835
## 12822 82 2115 4.5 1084463963
## 12823 82 2273 4.0 1084521339
## 12824 82 2355 2.0 1084468051
## 12825 82 2378 3.5 1084465176
## 12826 82 2380 3.0 1084464055
## 12827 82 2381 2.5 1084464053
## 12828 82 2383 2.5 1084464048
## 12829 82 2384 1.0 1084465190
## 12830 82 2410 3.5 1084521325
## 12831 82 2490 3.5 1084465181
## 12832 82 2571 4.0 1084467856
## 12833 82 2606 3.5 1084800850
## 12834 82 2617 3.5 1084468304
## 12835 82 2628 3.5 1084467885
## 12836 82 2683 4.0 1084468014
## 12837 82 2700 4.0 1084463942
## 12838 82 2701 4.0 1084465155
## 12839 82 2770 3.0 1084521313
## 12840 82 2948 3.0 1084465162
## 12841 82 2987 3.5 1084468057
## 12842 82 3052 2.5 1084463820
## 12843 82 3253 3.5 1084463827
## 12844 82 3418 1.5 1084463802
## 12845 82 3452 3.5 1084467615
## 12846 82 3578 4.5 1084468005
## 12847 82 3617 3.5 1084466455
## 12848 82 3623 2.5 1084465105
## 12849 82 3624 4.0 1084467450
## 12850 82 3638 3.5 1084521311
## 12851 82 3703 4.0 1084465110
## 12852 82 3717 4.0 1084467355
## 12853 82 3744 3.5 1084467584
## 12854 82 3753 4.0 1084467411
## 12855 82 3785 4.0 1084466426
## 12856 82 3793 3.5 1084467455
## 12857 82 3861 2.5 1084466398
## 12858 82 3948 4.0 1084466246
## 12859 82 3977 3.0 1084466354
## 12860 82 4015 4.5 1084466683
## 12861 82 4018 4.0 1084466237
## 12862 82 4022 2.5 1084463720
## 12863 82 4025 3.5 1084467136
## 12864 82 4084 4.0 1084519518
## 12865 82 4085 3.5 1084519520
## 12866 82 4153 4.0 1084466880
## 12867 82 4238 3.0 1084467365
## 12868 82 4246 2.5 1084465114
## 12869 82 4255 2.0 1084467004
## 12870 82 4270 3.0 1084467351
## 12871 82 4306 4.0 1084468268
## 12872 82 4310 4.0 1084467499
## 12873 82 4344 3.5 1084521283
## 12874 82 4367 4.5 1084465075
## 12875 82 4369 3.5 1084467358
## 12876 82 4386 2.5 1084466457
## 12877 82 4388 4.0 1084519538
## 12878 82 4701 4.0 1084466241
## 12879 82 4718 3.5 1084465082
## 12880 82 4816 4.0 1084466848
## 12881 82 4886 1.5 1084465089
## 12882 82 4989 4.0 1084466941
## 12883 82 4993 4.0 1084468296
## 12884 82 5065 3.0 1084465558
## 12885 82 5093 3.0 1084467542
## 12886 82 5094 2.0 1084467611
## 12887 82 5106 2.5 1084466987
## 12888 82 5218 4.0 1084465094
## 12889 82 5219 3.0 1084467400
## 12890 82 5220 4.0 1084466869
## 12891 82 5296 3.5 1084466524
## 12892 82 5299 2.0 1084466631
## 12893 82 5349 1.5 1084463955
## 12894 82 5400 3.5 1084465545
## 12895 82 5414 4.0 1084466661
## 12896 82 5419 2.5 1084466652
## 12897 82 5445 3.0 1084467477
## 12898 82 5449 4.0 1084466478
## 12899 82 5459 4.0 1084466345
## 12900 82 5481 3.5 1084466350
## 12901 82 5507 3.5 1084464070
## 12902 82 5669 3.0 1084465063
## 12903 82 5679 4.0 1084521273
## 12904 82 5803 4.0 1084467353
## 12905 82 5872 4.0 1084467373
## 12906 82 5874 3.0 1084466656
## 12907 82 5900 4.0 1084466576
## 12908 82 5991 3.5 1084465059
## 12909 82 6006 3.0 1084466638
## 12910 82 6014 4.0 1084466879
## 12911 82 6155 3.5 1084465451
## 12912 82 6156 4.5 1084467370
## 12913 82 6157 3.0 1084467535
## 12914 82 6249 3.5 1084466958
## 12915 82 6266 3.0 1084466508
## 12916 82 6287 4.0 1084466395
## 12917 82 6338 3.5 1084466483
## 12918 82 6373 3.5 1084465461
## 12919 82 6377 3.5 1084466267
## 12920 82 6378 4.0 1084467452
## 12921 82 6383 3.0 1084467496
## 12922 82 6484 3.5 1084467535
## 12923 82 6503 3.0 1084466391
## 12924 82 6534 3.0 1084467415
## 12925 82 6536 4.0 1084466338
## 12926 82 6537 4.5 1084464014
## 12927 82 6539 4.5 1084467083
## 12928 82 6541 4.0 1084467490
## 12929 82 6548 4.5 1084466341
## 12930 82 6550 2.5 1084467580
## 12931 82 6564 4.5 1084519660
## 12932 82 6566 1.5 1084467522
## 12933 82 6586 3.5 1084466393
## 12934 82 6593 3.0 1084466401
## 12935 82 6595 4.0 1084467379
## 12936 82 6686 3.5 1084467568
## 12937 82 6687 4.0 1084466986
## 12938 82 6702 3.5 1084467134
## 12939 82 6708 4.0 1084465430
## 12940 82 6750 3.0 1084944730
## 12941 82 6752 3.5 1084944635
## 12942 82 6764 4.5 1084467076
## 12943 82 6863 3.5 1084465417
## 12944 82 6873 4.0 1084466714
## 12945 82 6879 3.5 1084519697
## 12946 82 6886 3.5 1084519713
## 12947 82 6887 4.0 1084811662
## 12948 82 6888 3.5 1084519540
## 12949 82 6946 1.5 1084467643
## 12950 82 6949 3.5 1084944803
## 12951 82 6953 2.5 1084788185
## 12952 82 6958 3.5 1084519496
## 12953 82 7142 3.5 1084803602
## 12954 82 7149 4.0 1084466604
## 12955 82 7153 4.0 1084465038
## 12956 82 7154 3.5 1084466473
## 12957 82 7325 4.0 1084788217
## 12958 83 110 4.0 1332840449
## 12959 83 161 3.5 1333843500
## 12960 83 318 5.0 1332839665
## 12961 83 356 4.5 1332840553
## 12962 83 364 3.5 1333842074
## 12963 83 480 3.0 1333843543
## 12964 83 505 0.5 1332839297
## 12965 83 541 4.5 1333091988
## 12966 83 586 1.5 1333843197
## 12967 83 595 3.5 1334193300
## 12968 83 750 3.5 1333843482
## 12969 83 916 5.0 1332840258
## 12970 83 923 3.5 1332840063
## 12971 83 924 5.0 1332839611
## 12972 83 1036 2.5 1334193254
## 12973 83 1090 1.5 1333842149
## 12974 83 1172 4.0 1332840059
## 12975 83 1199 2.5 1333843571
## 12976 83 1204 3.0 1333843536
## 12977 83 1206 4.0 1333169113
## 12978 83 1222 5.0 1333170720
## 12979 83 1223 0.5 1332837822
## 12980 83 1225 5.0 1332840366
## 12981 83 1246 5.0 1333171338
## 12982 83 1250 3.0 1332840227
## 12983 83 1258 5.0 1333169077
## 12984 83 1270 3.5 1333842036
## 12985 83 1280 3.5 1333843428
## 12986 83 1282 4.5 1333843474
## 12987 83 1291 1.0 1333842438
## 12988 83 1348 3.0 1333842775
## 12989 83 1385 0.5 1332837871
## 12990 83 1537 2.0 1332838045
## 12991 83 1653 3.5 1333841950
## 12992 83 1676 3.5 1333171127
## 12993 83 1682 5.0 1333170344
## 12994 83 1726 2.0 1332839102
## 12995 83 1862 0.5 1332839062
## 12996 83 1960 3.5 1333842724
## 12997 83 2028 5.0 1332840351
## 12998 83 2115 2.0 1334193265
## 12999 83 2324 3.5 1332839949
## 13000 83 2389 1.5 1332838903
## 13001 83 2728 2.5 1333842742
## 13002 83 2762 4.0 1332840358
## 13003 83 2858 3.5 1332839970
## 13004 83 2950 3.0 1332838092
## 13005 83 3147 3.5 1333842456
## 13006 83 3155 3.5 1332839913
## 13007 83 3159 5.0 1332838031
## 13008 83 3462 3.0 1333843530
## 13009 83 3578 5.0 1333170244
## 13010 83 3624 0.5 1332838551
## 13011 83 3753 4.0 1333170681
## 13012 83 3967 4.0 1333842491
## 13013 83 4022 3.0 1333843409
## 13014 83 4226 4.5 1332839882
## 13015 83 4306 3.0 1333842168
## 13016 83 4310 4.0 1333170212
## 13017 83 4370 3.5 1333169174
## 13018 83 4720 0.5 1333842166
## 13019 83 4963 3.0 1333843526
## 13020 83 4973 5.0 1332839836
## 13021 83 4975 4.0 1333843303
## 13022 83 4993 4.0 1332840088
## 13023 83 4995 3.0 1333842175
## 13024 83 5010 4.0 1333170636
## 13025 83 5291 4.0 1332839904
## 13026 83 5349 2.5 1333842608
## 13027 83 5418 0.5 1333842535
## 13028 83 5903 3.5 1333169129
## 13029 83 5952 3.5 1333843452
## 13030 83 6016 5.0 1332839803
## 13031 83 6502 3.5 1333841971
## 13032 83 6539 3.5 1333843436
## 13033 83 6874 0.5 1333842381
## 13034 83 7099 3.0 1333843523
## 13035 83 7143 3.5 1333843458
## 13036 83 7153 4.5 1332840094
## 13037 83 7254 3.5 1333170376
## 13038 83 7323 5.0 1333841899
## 13039 83 7387 2.0 1333842261
## 13040 83 7438 0.5 1333842065
## 13041 83 7458 3.0 1333171263
## 13042 83 7669 4.0 1332840342
## 13043 83 8014 3.5 1333842226
## 13044 83 8622 2.0 1332837807
## 13045 83 8873 2.5 1333842213
## 13046 83 8874 3.0 1333842570
## 13047 83 8977 3.5 1333843513
## 13048 83 27397 4.0 1333170865
## 13049 83 30749 3.5 1333843470
## 13050 83 31878 0.5 1332838137
## 13051 83 40278 3.0 1333843466
## 13052 83 40629 4.5 1333169942
## 13053 83 44191 4.0 1333842486
## 13054 83 48394 3.5 1333843447
## 13055 83 48774 5.0 1333169048
## 13056 83 48997 3.0 1333169715
## 13057 83 51662 1.5 1333169680
## 13058 83 53318 5.0 1333170507
## 13059 83 55442 4.5 1333793848
## 13060 83 56367 3.5 1333842139
## 13061 83 58303 1.5 1333842256
## 13062 83 58559 5.0 1332839815
## 13063 83 59615 2.0 1332838125
## 13064 83 64983 4.0 1333170197
## 13065 83 65216 4.0 1333170962
## 13066 83 68954 4.5 1332840492
## 13067 83 69844 3.5 1332838967
## 13068 83 70286 3.5 1333843478
## 13069 83 71535 2.0 1333841976
## 13070 83 72998 4.5 1333170644
## 13071 83 76093 2.5 1333842352
## 13072 83 76251 3.5 1333841874
## 13073 83 79132 5.0 1332839850
## 13074 83 81845 4.0 1332840329
## 13075 83 88125 3.0 1333842718
## 13076 84 4 3.0 858772461
## 13077 84 5 3.0 857653289
## 13078 84 6 4.0 857653289
## 13079 84 7 3.0 857653289
## 13080 84 10 3.0 860397812
## 13081 84 11 4.0 858771861
## 13082 84 14 4.0 857653349
## 13083 84 17 5.0 857653240
## 13084 84 21 4.0 858772111
## 13085 84 25 5.0 860396793
## 13086 84 31 3.0 860398679
## 13087 84 34 4.0 858772153
## 13088 84 36 5.0 857653289
## 13089 84 45 4.0 858772239
## 13090 84 46 3.0 858771890
## 13091 84 50 4.0 857653594
## 13092 84 52 5.0 857653318
## 13093 84 55 4.0 858772543
## 13094 84 57 3.0 858771951
## 13095 84 62 4.0 857653240
## 13096 84 94 4.0 857653422
## 13097 84 95 2.0 857653240
## 13098 84 100 3.0 860396882
## 13099 84 102 1.0 857653444
## 13100 84 105 3.0 858771931
## 13101 84 113 4.0 858772291
## 13102 84 122 3.0 858772698
## 13103 84 140 4.0 857653387
## 13104 84 141 3.0 857653240
## 13105 84 147 4.0 858771818
## 13106 84 150 5.0 857653693
## 13107 84 154 3.0 858771818
## 13108 84 161 3.0 858771702
## 13109 84 164 4.0 858771912
## 13110 84 165 3.0 858772953
## 13111 84 180 2.0 858772206
## 13112 84 181 3.0 860397928
## 13113 84 194 4.0 857653756
## 13114 84 195 4.0 858772398
## 13115 84 214 4.0 858771796
## 13116 84 223 5.0 857653693
## 13117 84 224 4.0 858772029
## 13118 84 225 3.0 858772370
## 13119 84 230 3.0 857653794
## 13120 84 232 5.0 857653693
## 13121 84 234 3.0 860397862
## 13122 84 235 3.0 858772064
## 13123 84 236 3.0 858772515
## 13124 84 237 4.0 858772479
## 13125 84 246 4.0 857653639
## 13126 84 247 4.0 858771772
## 13127 84 248 2.0 860398847
## 13128 84 260 4.0 857653693
## 13129 84 261 4.0 857653843
## 13130 84 265 5.0 857653594
## 13131 84 266 4.0 858771890
## 13132 84 270 3.0 858772258
## 13133 84 272 5.0 857653843
## 13134 84 276 3.0 858772543
## 13135 84 277 3.0 860397382
## 13136 84 287 3.0 858772239
## 13137 84 289 3.0 860398550
## 13138 84 296 4.0 857653593
## 13139 84 299 5.0 858771796
## 13140 84 300 5.0 858771743
## 13141 84 302 3.0 858771796
## 13142 84 305 3.0 860397582
## 13143 84 306 4.0 857653639
## 13144 84 318 5.0 857653594
## 13145 84 319 4.0 857653794
## 13146 84 321 4.0 858771861
## 13147 84 324 4.0 860397228
## 13148 84 326 3.0 857653794
## 13149 84 331 3.0 858772206
## 13150 84 334 4.0 858772079
## 13151 84 339 3.0 858772326
## 13152 84 342 4.0 858771796
## 13153 84 348 5.0 858771818
## 13154 84 349 4.0 857653728
## 13155 84 350 4.0 858772136
## 13156 84 354 4.0 858772111
## 13157 84 356 5.0 857653593
## 13158 84 357 4.0 858771818
## 13159 84 361 3.0 858772112
## 13160 84 368 3.0 860397613
## 13161 84 369 4.0 858772064
## 13162 84 371 3.0 858772111
## 13163 84 377 4.0 858772009
## 13164 84 378 3.0 858772673
## 13165 84 380 3.0 858772326
## 13166 84 381 4.0 858771861
## 13167 84 406 3.0 860399107
## 13168 84 412 5.0 858771743
## 13169 84 415 3.0 860398835
## 13170 84 420 3.0 860397899
## 13171 84 435 3.0 860397768
## 13172 84 440 4.0 858771912
## 13173 84 445 3.0 860397719
## 13174 84 446 5.0 857653728
## 13175 84 452 3.0 858771890
## 13176 84 454 4.0 858772136
## 13177 84 457 4.0 857653593
## 13178 84 468 3.0 858771971
## 13179 84 474 4.0 857653756
## 13180 84 475 4.0 858771380
## 13181 84 477 4.0 857653756
## 13182 84 480 3.0 858771971
## 13183 84 491 3.0 858771951
## 13184 84 500 4.0 858772516
## 13185 84 507 3.0 860398337
## 13186 84 508 4.0 857653693
## 13187 84 509 5.0 857653594
## 13188 84 515 4.0 857653693
## 13189 84 524 4.0 858771772
## 13190 84 527 5.0 857653594
## 13191 84 532 3.0 860397657
## 13192 84 534 4.0 857653693
## 13193 84 537 3.0 858772239
## 13194 84 538 3.0 858771743
## 13195 84 539 4.0 858771861
## 13196 84 551 3.0 858772802
## 13197 84 580 3.0 860398823
## 13198 84 585 3.0 858772326
## 13199 84 586 3.0 858772516
## 13200 84 587 3.0 858772178
## 13201 84 590 4.0 858772306
## 13202 84 592 3.0 860397582
## 13203 84 593 5.0 857653593
## 13204 84 597 3.0 858772370
## 13205 84 608 5.0 857653289
## 13206 84 628 4.0 857653349
## 13207 84 637 1.0 857653349
## 13208 84 647 4.0 858771233
## 13209 84 671 4.0 857653422
## 13210 84 691 3.0 860398662
## 13211 84 708 3.0 857653318
## 13212 84 719 3.0 857653387
## 13213 84 722 4.0 858772760
## 13214 84 726 3.0 858772802
## 13215 84 733 4.0 857653289
## 13216 84 736 3.0 857653240
## 13217 84 762 1.0 857653349
## 13218 84 788 3.0 857653318
## 13219 84 800 5.0 857653639
## 13220 84 802 4.0 857653349
## 13221 84 805 4.0 857653349
## 13222 84 818 3.0 860396938
## 13223 84 830 4.0 860396882
## 13224 84 838 5.0 857653794
## 13225 84 852 3.0 857653405
## 13226 84 858 4.0 858772206
## 13227 84 898 5.0 860397176
## 13228 84 899 4.0 858773054
## 13229 84 900 4.0 860397352
## 13230 84 902 4.0 858772779
## 13231 84 904 4.0 858772543
## 13232 84 908 4.0 858772641
## 13233 84 909 3.0 860397278
## 13234 84 910 3.0 858773054
## 13235 84 912 4.0 860397090
## 13236 84 914 4.0 858772733
## 13237 84 915 3.0 860397323
## 13238 84 916 3.0 860397294
## 13239 84 919 5.0 858772586
## 13240 84 920 4.0 858772515
## 13241 84 922 4.0 860397228
## 13242 84 923 4.0 858772354
## 13243 84 926 5.0 858773023
## 13244 84 931 3.0 860397409
## 13245 84 932 4.0 860397438
## 13246 84 933 4.0 860397352
## 13247 84 934 3.0 860397438
## 13248 84 948 4.0 860397409
## 13249 84 951 4.0 860397323
## 13250 84 953 3.0 858772760
## 13251 84 954 4.0 860397244
## 13252 84 955 4.0 860397306
## 13253 84 971 3.0 860397365
## 13254 84 987 3.0 860398734
## 13255 84 1009 3.0 860397491
## 13256 84 1010 3.0 860397598
## 13257 84 1011 3.0 860398764
## 13258 84 1013 3.0 860397477
## 13259 84 1018 3.0 860398823
## 13260 84 1023 3.0 858772292
## 13261 84 1028 4.0 858772136
## 13262 84 1035 5.0 860397090
## 13263 84 1036 3.0 857653843
## 13264 84 1042 3.0 858771280
## 13265 84 1057 4.0 858773151
## 13266 84 1073 4.0 857653289
## 13267 84 1077 3.0 858772439
## 13268 84 1079 5.0 858771772
## 13269 84 1081 4.0 858772760
## 13270 84 1082 3.0 858772009
## 13271 84 1088 3.0 860398568
## 13272 84 1090 4.0 858772239
## 13273 84 1091 3.0 860398934
## 13274 84 1092 3.0 860398606
## 13275 84 1094 4.0 858772516
## 13276 84 1096 5.0 858772479
## 13277 84 1097 3.0 860397207
## 13278 84 1101 4.0 858772292
## 13279 84 1103 4.0 858771931
## 13280 84 1104 4.0 860397100
## 13281 84 1124 5.0 858772698
## 13282 84 1131 5.0 858772802
## 13283 84 1132 4.0 858772983
## 13284 84 1135 3.0 860398581
## 13285 84 1136 4.0 858772064
## 13286 84 1171 3.0 860397491
## 13287 84 1172 4.0 858772439
## 13288 84 1173 3.0 860397516
## 13289 84 1177 4.0 858772999
## 13290 84 1179 3.0 860397352
## 13291 84 1184 3.0 860397478
## 13292 84 1185 4.0 858772641
## 13293 84 1186 4.0 860397257
## 13294 84 1187 3.0 860397544
## 13295 84 1189 4.0 860397394
## 13296 84 1190 3.0 860397460
## 13297 84 1191 3.0 860397669
## 13298 84 1193 4.0 858772258
## 13299 84 1194 3.0 860398764
## 13300 84 1196 4.0 858772153
## 13301 84 1197 4.0 858772565
## 13302 84 1198 4.0 858772111
## 13303 84 1200 4.0 858772698
## 13304 84 1203 4.0 858772641
## 13305 84 1207 4.0 858772565
## 13306 84 1208 5.0 858772615
## 13307 84 1210 4.0 858771139
## 13308 84 1213 3.0 858772461
## 13309 84 1214 3.0 860397257
## 13310 84 1217 4.0 858773023
## 13311 84 1219 4.0 858772845
## 13312 84 1220 3.0 860397365
## 13313 84 1225 4.0 858772153
## 13314 84 1227 3.0 860397382
## 13315 84 1228 4.0 858772586
## 13316 84 1230 4.0 858773023
## 13317 84 1231 4.0 860397257
## 13318 84 1234 4.0 858772615
## 13319 84 1235 3.0 860397278
## 13320 84 1242 5.0 860397133
## 13321 84 1244 4.0 860397228
## 13322 84 1246 4.0 858772136
## 13323 84 1247 5.0 858772779
## 13324 84 1258 4.0 858772733
## 13325 84 1259 4.0 858772565
## 13326 84 1263 4.0 858772615
## 13327 84 1265 3.0 860397426
## 13328 84 1266 4.0 858772543
## 13329 84 1267 5.0 860397144
## 13330 84 1268 3.0 860398419
## 13331 84 1269 4.0 860397207
## 13332 84 1270 3.0 860397278
## 13333 84 1271 4.0 858772479
## 13334 84 1272 5.0 860397207
## 13335 84 1276 5.0 858772952
## 13336 84 1280 5.0 858772698
## 13337 84 1285 3.0 860397352
## 13338 84 1286 3.0 860398475
## 13339 84 1288 4.0 860397323
## 13340 84 1290 3.0 860397426
## 13341 84 1291 3.0 858772733
## 13342 84 1292 5.0 858772760
## 13343 84 1293 4.0 858772586
## 13344 84 1295 5.0 858773024
## 13345 84 1296 4.0 858773054
## 13346 84 1299 5.0 858772673
## 13347 84 1300 4.0 858772759
## 13348 84 1302 4.0 860397306
## 13349 84 1304 4.0 858772999
## 13350 84 1305 3.0 860397530
## 13351 84 1307 5.0 858772673
## 13352 84 1333 3.0 860397335
## 13353 84 1343 4.0 858772845
## 13354 84 1345 3.0 860397409
## 13355 84 1346 3.0 860398691
## 13356 84 1367 3.0 857653444
## 13357 84 1371 3.0 860397627
## 13358 84 1374 3.0 858772983
## 13359 84 1380 4.0 860397426
## 13360 84 1381 3.0 860397888
## 13361 84 1387 4.0 860397244
## 13362 84 1388 3.0 860397758
## 13363 84 1393 4.0 857653480
## 13364 84 1394 4.0 858772953
## 13365 84 1395 3.0 860397530
## 13366 84 1408 4.0 858772779
## 13367 84 1414 4.0 858773205
## 13368 84 5060 4.0 860397176
## 13369 85 53 5.0 889468268
## 13370 85 314 5.0 889467433
## 13371 85 515 4.0 889468005
## 13372 85 527 5.0 889467704
## 13373 85 538 4.0 889468460
## 13374 85 1140 5.0 889468344
## 13375 85 1183 4.0 889466862
## 13376 85 1185 5.0 889467896
## 13377 85 1207 5.0 889468122
## 13378 85 1237 5.0 889468402
## 13379 85 1357 5.0 889467539
## 13380 85 1358 1.0 889468582
## 13381 85 1391 1.0 889468582
## 13382 85 1414 2.0 889467139
## 13383 85 1446 4.0 889466953
## 13384 85 1449 4.0 889467953
## 13385 85 1480 3.0 889468206
## 13386 85 1519 1.0 889468582
## 13387 85 1584 3.0 889467110
## 13388 85 1596 4.0 889467110
## 13389 85 1624 1.0 889468582
## 13390 85 1633 5.0 889466953
## 13391 85 1635 4.0 889466979
## 13392 85 1641 5.0 889466918
## 13393 85 1643 5.0 889466918
## 13394 85 1683 3.0 889467078
## 13395 85 1693 4.0 889466918
## 13396 85 1694 4.0 889467185
## 13397 85 1696 2.0 889467210
## 13398 85 1704 3.0 889466862
## 13399 85 1711 2.0 889467055
## 13400 85 1719 5.0 889467006
## 13401 85 1730 4.0 889467055
## 13402 85 1747 4.0 889466862
## 13403 86 1 4.0 1344082549
## 13404 86 165 4.0 1344083044
## 13405 86 260 4.5 1344082545
## 13406 86 318 4.5 1343945158
## 13407 86 356 4.0 1344083260
## 13408 86 419 3.5 1343944880
## 13409 86 457 4.0 1344082980
## 13410 86 480 3.0 1344083054
## 13411 86 588 4.0 1344082668
## 13412 86 590 4.0 1344082811
## 13413 86 595 4.0 1344083094
## 13414 86 648 4.5 1344082866
## 13415 86 780 3.5 1344083232
## 13416 86 1091 3.5 1343944831
## 13417 86 1097 4.0 1344083048
## 13418 86 1196 4.0 1344083118
## 13419 86 1210 4.0 1344083030
## 13420 86 1265 4.0 1344083247
## 13421 86 1680 4.5 1343944714
## 13422 86 1721 3.5 1344082821
## 13423 86 1835 4.0 1343944861
## 13424 86 1961 4.0 1344083078
## 13425 86 2028 3.5 1344082583
## 13426 86 2411 3.5 1343944869
## 13427 86 2421 4.0 1343944759
## 13428 86 2571 4.5 1344082935
## 13429 86 2628 3.5 1344082805
## 13430 86 2642 3.5 1343944853
## 13431 86 2687 4.0 1343944855
## 13432 86 2762 4.0 1344082799
## 13433 86 2805 4.0 1343944874
## 13434 86 2858 4.0 1344082557
## 13435 86 2959 3.5 1344082958
## 13436 86 3300 4.0 1343944734
## 13437 86 3555 3.5 1343944704
## 13438 86 3578 4.0 1344082855
## 13439 86 3793 4.0 1344083009
## 13440 86 3996 3.5 1344083059
## 13441 86 4226 4.5 1344082569
## 13442 86 4306 4.0 1344082606
## 13443 86 4310 3.0 1343944682
## 13444 86 4886 4.0 1344193067
## 13445 86 4901 4.0 1344204970
## 13446 86 4963 4.5 1344083278
## 13447 86 4993 4.0 1344082794
## 13448 86 5266 3.5 1343944747
## 13449 86 5418 4.5 1344083176
## 13450 86 5445 4.0 1344082829
## 13451 86 5952 4.0 1344082673
## 13452 86 6373 4.0 1344192873
## 13453 86 6377 4.5 1344082872
## 13454 86 6539 4.0 1344082601
## 13455 86 6947 3.5 1343944753
## 13456 86 7147 4.0 1344193061
## 13457 86 7153 4.0 1344082577
## 13458 86 7361 4.5 1344082968
## 13459 86 33679 5.0 1343944814
## 13460 86 33794 4.0 1344083012
## 13461 86 51662 1.5 1344192733
## 13462 86 58293 2.5 1343945042
## 13463 86 58559 4.5 1343945174
## 13464 86 59315 4.0 1344083069
## 13465 86 60069 3.0 1344083251
## 13466 86 66097 4.5 1344192837
## 13467 86 69951 4.5 1344193019
## 13468 86 71264 4.5 1344193008
## 13469 86 72356 4.5 1344192870
## 13470 86 74553 3.5 1344204907
## 13471 86 79132 4.0 1344082554
## 13472 86 95510 4.5 1343944948
## 13473 87 60 3.0 1270702696
## 13474 87 262 4.0 1270703101
## 13475 87 327 3.5 1270702652
## 13476 87 531 4.0 1270702642
## 13477 87 671 4.5 1270702670
## 13478 87 1077 4.0 1270702682
## 13479 87 1136 5.0 1296109068
## 13480 87 1345 3.5 1270702619
## 13481 87 1584 4.0 1296109099
## 13482 87 2009 4.0 1270703118
## 13483 87 2139 3.0 1270703092
## 13484 87 2300 4.5 1270702689
## 13485 87 3504 4.5 1270703073
## 13486 87 3593 2.0 1270703130
## 13487 87 3910 4.0 1270703561
## 13488 87 4023 3.5 1270703090
## 13489 87 4571 3.5 1270702635
## 13490 87 4973 5.0 1296109055
## 13491 87 5618 5.0 1296109045
## 13492 87 5971 5.0 1296109039
## 13493 87 7022 3.5 1270703572
## 13494 88 16 4.5 1331421395
## 13495 88 50 5.0 1331421330
## 13496 88 69 3.5 1331420307
## 13497 88 223 4.5 1331421399
## 13498 88 318 5.0 1331421326
## 13499 88 527 4.0 1331421334
## 13500 88 785 4.0 1331420167
## 13501 88 1193 5.0 1331421346
## 13502 88 1358 4.0 1331420128
## 13503 88 1597 2.5 1331420161
## 13504 88 1625 3.5 1331421490
## 13505 88 1732 5.0 1331421382
## 13506 88 1884 5.0 1331421950
## 13507 88 1994 3.5 1331420196
## 13508 88 2105 3.5 1331420180
## 13509 88 2478 3.5 1331420236
## 13510 88 2542 4.5 1331421453
## 13511 88 3255 3.0 1331420176
## 13512 88 3275 4.5 1331421846
## 13513 88 3476 4.5 1331420286
## 13514 88 3897 4.0 1331421768
## 13515 88 4226 4.0 1331421887
## 13516 88 4262 4.5 1331421968
## 13517 88 4878 4.5 1331421809
## 13518 88 4963 4.5 1331421775
## 13519 88 4993 5.0 1331421804
## 13520 88 4995 4.5 1331421834
## 13521 88 5418 4.5 1331421388
## 13522 88 5952 5.0 1331421828
## 13523 88 5989 4.0 1331421744
## 13524 88 5995 4.5 1331421739
## 13525 88 6464 0.5 1331420782
## 13526 88 6502 4.5 1331421840
## 13527 88 6870 4.5 1331421731
## 13528 88 6874 4.5 1331421477
## 13529 88 7147 3.5 1331421385
## 13530 88 7153 5.0 1331421831
## 13531 88 7312 0.5 1331421236
## 13532 88 7438 4.5 1331421464
## 13533 88 8665 4.5 1331421798
## 13534 88 8677 0.5 1331421241
## 13535 88 8950 5.0 1331421873
## 13536 88 26974 3.0 1331420901
## 13537 88 44191 4.5 1331421759
## 13538 88 46578 4.0 1331421481
## 13539 88 48394 5.0 1331421724
## 13540 88 48516 4.0 1331421817
## 13541 88 48774 4.5 1331421728
## 13542 88 54286 4.5 1331421792
## 13543 88 55820 4.5 1331421771
## 13544 88 56782 4.5 1331421880
## 13545 88 58559 5.0 1331421795
## 13546 88 68157 4.5 1331421747
## 13547 88 74795 4.0 1331420671
## 13548 88 79132 4.5 1331421494
## 13549 88 83177 0.5 1331421223
## 13550 89 1 3.0 1520408314
## 13551 89 11 2.5 1520408449
## 13552 89 88 2.0 1520408790
## 13553 89 104 4.0 1520408740
## 13554 89 356 0.5 1520408275
## 13555 89 357 2.5 1520408453
## 13556 89 588 1.0 1520408342
## 13557 89 745 3.0 1520408276
## 13558 89 750 4.5 1520408265
## 13559 89 788 2.5 1520408434
## 13560 89 898 4.0 1520408274
## 13561 89 899 1.5 1520408297
## 13562 89 901 1.5 1520408436
## 13563 89 902 1.0 1520408324
## 13564 89 905 3.0 1520408275
## 13565 89 909 2.5 1520408308
## 13566 89 910 1.5 1520408296
## 13567 89 911 2.5 1520408306
## 13568 89 915 2.0 1520408307
## 13569 89 916 3.5 1520408299
## 13570 89 918 3.0 1520408424
## 13571 89 936 2.5 1520408345
## 13572 89 945 4.0 1520408345
## 13573 89 946 0.5 1520408337
## 13574 89 947 1.5 1520408347
## 13575 89 950 3.0 1520408274
## 13576 89 951 3.5 1520408278
## 13577 89 954 3.5 1520408307
## 13578 89 955 3.0 1520408312
## 13579 89 1079 3.0 1520408310
## 13580 89 1080 1.0 1520408299
## 13581 89 1136 2.5 1520408267
## 13582 89 1148 2.0 1520408270
## 13583 89 1197 2.0 1520408268
## 13584 89 1223 1.5 1520408324
## 13585 89 1230 1.5 1520408669
## 13586 89 1234 0.5 1520408268
## 13587 89 1256 1.5 1520408347
## 13588 89 1265 1.0 1520408349
## 13589 89 1269 2.5 1520408303
## 13590 89 1270 1.0 1520408312
## 13591 89 1278 0.5 1520408348
## 13592 89 1288 3.5 1520408297
## 13593 89 1307 2.5 1520408349
## 13594 89 1394 2.0 1520408298
## 13595 89 1485 2.5 1520408483
## 13596 89 1517 2.5 1520408496
## 13597 89 1580 1.5 1520408311
## 13598 89 1682 0.5 1520408338
## 13599 89 1732 2.5 1520408372
## 13600 89 1923 3.5 1520408829
## 13601 89 2059 1.5 1520408460
## 13602 89 2085 3.0 1520408589
## 13603 89 2294 3.5 1520408531
## 13604 89 2324 4.5 1520408266
## 13605 89 2335 2.0 1520408515
## 13606 89 2355 3.5 1520408550
## 13607 89 2395 2.0 1520408323
## 13608 89 2424 2.0 1520408378
## 13609 89 2539 2.0 1520408529
## 13610 89 2599 3.0 1520408342
## 13611 89 2683 2.5 1520408493
## 13612 89 2706 4.0 1520408413
## 13613 89 2716 1.5 1520408304
## 13614 89 2791 2.5 1520408346
## 13615 89 2918 1.5 1520408305
## 13616 89 2935 1.0 1520408337
## 13617 89 2936 3.5 1520408335
## 13618 89 2987 1.5 1520408350
## 13619 89 2997 3.0 1520408296
## 13620 89 3022 2.0 1520408342
## 13621 89 3061 2.0 1520408546
## 13622 89 3088 0.5 1520408325
## 13623 89 3097 2.0 1520408343
## 13624 89 3114 3.0 1520408306
## 13625 89 3157 4.0 1520408603
## 13626 89 3175 2.5 1520408714
## 13627 89 3255 3.0 1520408490
## 13628 89 3307 2.0 1520408276
## 13629 89 3315 4.5 1520409333
## 13630 89 3462 1.0 1520408276
## 13631 89 3481 3.5 1520408343
## 13632 89 3549 3.5 1520408756
## 13633 89 3599 3.5 1520408480
## 13634 89 3604 0.5 1520408880
## 13635 89 3606 3.5 1520408805
## 13636 89 3624 3.5 1520408422
## 13637 89 3751 4.0 1520408314
## 13638 89 3752 1.5 1520408661
## 13639 89 3785 5.0 1520408446
## 13640 89 3868 2.0 1520408547
## 13641 89 3882 2.0 1520408475
## 13642 89 3948 4.0 1520408349
## 13643 89 3977 0.5 1520408371
## 13644 89 3991 4.5 1520408911
## 13645 89 4014 1.5 1520408300
## 13646 89 4015 2.0 1520408520
## 13647 89 4023 3.0 1520408456
## 13648 89 4246 1.5 1520408372
## 13649 89 4300 4.0 1520408997
## 13650 89 4306 3.0 1520408313
## 13651 89 4388 2.5 1520408636
## 13652 89 4447 2.5 1520408418
## 13653 89 4641 2.5 1520408575
## 13654 89 4700 1.5 1520408487
## 13655 89 4701 4.0 1520408431
## 13656 89 4728 3.0 1520408527
## 13657 89 4886 4.5 1520408523
## 13658 89 4890 2.5 1520408419
## 13659 89 4899 2.0 1520408933
## 13660 89 4928 2.0 1520408929
## 13661 89 4973 2.0 1520408268
## 13662 89 4979 1.5 1520408338
## 13663 89 5048 5.0 1520409211
## 13664 89 5092 4.5 1520409069
## 13665 89 5110 3.0 1520408703
## 13666 89 5218 4.0 1520408543
## 13667 89 5220 2.5 1520408718
## 13668 89 5283 2.5 1520408467
## 13669 89 5299 2.0 1520408495
## 13670 89 5419 5.0 1520408969
## 13671 89 5449 2.0 1520408412
## 13672 89 5480 5.0 1520408858
## 13673 89 5481 2.0 1520408492
## 13674 89 5529 4.0 1520408900
## 13675 89 5621 5.0 1520408474
## 13676 89 6156 4.0 1520408712
## 13677 89 6188 3.0 1520408748
## 13678 89 6218 2.5 1520408376
## 13679 89 6271 2.0 1520408848
## 13680 89 6287 1.0 1520408423
## 13681 89 6402 5.0 1520409396
## 13682 89 6550 4.0 1520408673
## 13683 89 6586 3.5 1520408469
## 13684 89 6604 4.0 1520409648
## 13685 89 6650 1.0 1520408336
## 13686 89 6666 3.5 1520408742
## 13687 89 6686 5.0 1520409115
## 13688 89 6783 3.0 1520408424
## 13689 89 6863 1.5 1520408334
## 13690 89 6936 2.0 1520408626
## 13691 89 6942 3.5 1520408458
## 13692 89 6958 3.5 1520408876
## 13693 89 7067 2.5 1520408619
## 13694 89 7209 2.5 1520408598
## 13695 89 7293 2.0 1520408377
## 13696 89 7297 3.5 1520409072
## 13697 89 7325 1.5 1520408376
## 13698 89 7346 2.5 1520408500
## 13699 89 7381 4.0 1520408789
## 13700 89 7451 2.5 1520408464
## 13701 89 8154 3.0 1520408569
## 13702 89 8238 5.0 1520409130
## 13703 89 8360 4.5 1520408571
## 13704 89 8372 5.0 1520409025
## 13705 89 8528 2.5 1520408609
## 13706 89 8814 2.5 1520408567
## 13707 89 8978 2.5 1520408926
## 13708 89 25887 5.0 1520409386
## 13709 89 26183 5.0 1520409340
## 13710 89 26184 2.5 1520408909
## 13711 89 26265 4.5 1520409485
## 13712 89 26429 4.0 1520409551
## 13713 89 26645 4.0 1520409558
## 13714 89 27619 4.5 1520408735
## 13715 89 27826 4.0 1520409031
## 13716 89 30793 2.0 1520408421
## 13717 89 31685 1.5 1520408378
## 13718 89 31851 3.0 1520409522
## 13719 89 31925 4.0 1520409516
## 13720 89 32031 5.0 1520408898
## 13721 89 32060 3.0 1520409649
## 13722 89 32243 3.5 1520409112
## 13723 89 32596 3.0 1520408721
## 13724 89 33004 3.0 1520408535
## 13725 89 33090 5.0 1520409362
## 13726 89 33646 3.0 1520408552
## 13727 89 33679 2.5 1520408429
## 13728 89 33830 4.5 1520409325
## 13729 89 34162 2.5 1520408665
## 13730 89 34312 5.0 1520409462
## 13731 89 34332 4.5 1520409451
## 13732 89 35807 4.0 1520409409
## 13733 89 37384 2.5 1520408723
## 13734 89 37444 4.0 1520409658
## 13735 89 38038 2.5 1520408312
## 13736 89 39715 3.0 1520408758
## 13737 89 40339 4.0 1520408983
## 13738 89 40962 4.5 1520409014
## 13739 89 41828 4.5 1520409434
## 13740 89 42013 3.0 1520408644
## 13741 89 42725 2.0 1520408794
## 13742 89 42761 4.5 1520409141
## 13743 89 44022 1.0 1520408336
## 13744 89 44773 3.0 1520409571
## 13745 89 44777 4.5 1520409175
## 13746 89 44851 5.0 1520409005
## 13747 89 45517 1.0 1520408413
## 13748 89 46105 4.5 1520409352
## 13749 89 46578 4.0 1520408344
## 13750 89 46948 2.5 1520408798
## 13751 89 47518 3.0 1520408573
## 13752 89 47725 4.0 1520409022
## 13753 89 47736 5.0 1520409001
## 13754 89 48520 2.0 1520408616
## 13755 89 48649 4.5 1520409441
## 13756 89 48982 4.0 1520408708
## 13757 89 49013 3.5 1520408932
## 13758 89 49274 5.0 1520408965
## 13759 89 49286 2.5 1520408488
## 13760 89 49735 3.5 1520409123
## 13761 89 50613 4.5 1520409326
## 13762 89 50872 5.0 1520409024
## 13763 89 50999 5.0 1520409509
## 13764 89 51167 4.5 1520409553
## 13765 89 51575 2.0 1520408643
## 13766 89 52973 2.0 1520408537
## 13767 89 53280 5.0 1520409384
## 13768 89 53355 5.0 1520409446
## 13769 89 53460 3.5 1520408612
## 13770 89 53578 5.0 1520409144
## 13771 89 54503 2.0 1520408729
## 13772 89 55269 2.5 1520408560
## 13773 89 56367 2.0 1520408325
## 13774 89 56587 2.5 1520408928
## 13775 89 58047 2.5 1520408914
## 13776 89 58291 4.5 1520409002
## 13777 89 58998 3.0 1520408577
## 13778 89 59258 3.5 1520408646
## 13779 89 59784 3.5 1520408413
## 13780 89 60289 4.0 1520409015
## 13781 89 60737 5.0 1520409385
## 13782 89 61024 3.5 1520408622
## 13783 89 61323 2.5 1520408804
## 13784 89 62008 3.0 1520409507
## 13785 89 62155 3.5 1520408845
## 13786 89 64032 2.5 1520408600
## 13787 89 64116 3.5 1520408884
## 13788 89 65230 4.0 1520408883
## 13789 89 65588 2.5 1520409644
## 13790 89 66798 3.5 1520409033
## 13791 89 66943 5.0 1520409461
## 13792 89 67087 2.5 1520408916
## 13793 89 67888 4.5 1520409094
## 13794 89 68659 2.0 1520408893
## 13795 89 68793 4.0 1520408807
## 13796 89 69122 3.5 1520408816
## 13797 89 69211 5.0 1520409113
## 13798 89 69304 4.0 1520408934
## 13799 89 69406 3.0 1520408463
## 13800 89 69469 5.0 1520408920
## 13801 89 69644 4.0 1520408594
## 13802 89 69720 4.5 1520409212
## 13803 89 69757 2.5 1520408709
## 13804 89 70697 3.5 1520408873
## 13805 89 71264 4.0 1520408517
## 13806 89 71535 3.5 1520408972
## 13807 89 72178 4.5 1520409640
## 13808 89 72624 3.5 1520409583
## 13809 89 72692 5.0 1520409653
## 13810 89 72701 4.0 1520409034
## 13811 89 73015 1.5 1520408671
## 13812 89 73042 5.0 1520408841
## 13813 89 73106 1.5 1520408856
## 13814 89 73160 2.5 1520409557
## 13815 89 73319 2.0 1520408511
## 13816 89 73822 5.0 1520409356
## 13817 89 74342 4.5 1520409505
## 13818 89 74683 4.0 1520409564
## 13819 89 74698 2.5 1520408811
## 13820 89 74946 3.0 1520408819
## 13821 89 76143 4.5 1520409341
## 13822 89 76293 3.5 1520408896
## 13823 89 76301 4.5 1520409178
## 13824 89 77688 4.5 1520409328
## 13825 89 78142 4.5 1520409453
## 13826 89 78469 4.0 1520409011
## 13827 89 78620 4.5 1520409456
## 13828 89 78637 4.5 1520408633
## 13829 89 79684 4.0 1520409076
## 13830 89 79897 5.0 1520409088
## 13831 89 80549 2.0 1520408562
## 13832 89 80727 4.0 1520409059
## 13833 89 80860 2.5 1520408918
## 13834 89 81087 4.5 1520409390
## 13835 89 81229 4.0 1520409018
## 13836 89 81537 3.0 1520408823
## 13837 89 82167 2.0 1520408621
## 13838 89 82854 2.0 1520408903
## 13839 89 83910 2.5 1520408699
## 13840 89 83969 5.0 1520409380
## 13841 89 84246 4.5 1520409459
## 13842 89 84512 5.0 1520409383
## 13843 89 84944 5.0 1520409052
## 13844 89 85295 5.0 1520409339
## 13845 89 85780 5.0 1520409397
## 13846 89 85881 4.5 1520409191
## 13847 89 86059 4.0 1520408797
## 13848 89 86298 2.5 1520408640
## 13849 89 86833 1.5 1520408624
## 13850 89 86882 2.5 1520408810
## 13851 89 87834 5.0 1520409450
## 13852 89 87869 2.5 1520408866
## 13853 89 88069 4.0 1520409556
## 13854 89 88746 5.0 1520409489
## 13855 89 88785 2.0 1520408813
## 13856 89 88812 2.5 1520408859
## 13857 89 89864 3.0 1520408677
## 13858 89 89898 3.5 1520409078
## 13859 89 90717 4.5 1520408638
## 13860 89 91355 5.0 1520409490
## 13861 89 91386 5.0 1520409125
## 13862 89 91666 4.0 1520409104
## 13863 89 92259 2.5 1520408267
## 13864 89 92643 5.0 1520409487
## 13865 89 93006 4.5 1520409427
## 13866 89 93022 5.0 1520409481
## 13867 89 93326 2.0 1520408826
## 13868 89 93510 3.0 1520408605
## 13869 89 94503 4.5 1520409355
## 13870 89 94661 4.0 1520409642
## 13871 89 94677 2.0 1520408915
## 13872 89 94959 3.0 1520408678
## 13873 89 95167 1.5 1520408423
## 13874 89 95543 4.0 1520408596
## 13875 89 95633 4.5 1520409578
## 13876 89 95843 5.0 1520409017
## 13877 89 96110 2.5 1520408851
## 13878 89 96608 5.0 1520409497
## 13879 89 96655 2.5 1520408868
## 13880 89 96935 5.0 1520409652
## 13881 89 97225 5.0 1520409149
## 13882 89 97836 2.5 1520408701
## 13883 89 98279 5.0 1520409394
## 13884 89 99117 3.0 1520408803
## 13885 89 99122 3.5 1520409562
## 13886 89 99130 3.5 1520409565
## 13887 89 99853 4.0 1520409110
## 13888 89 100390 2.0 1520408725
## 13889 89 100507 3.0 1520408787
## 13890 89 101283 3.0 1520408817
## 13891 89 102378 4.0 1520409379
## 13892 89 102481 4.0 1520408744
## 13893 89 102686 3.5 1520408925
## 13894 89 102747 3.5 1520409518
## 13895 89 102984 4.5 1520409345
## 13896 89 103602 5.0 1520408944
## 13897 89 104211 2.5 1520408542
## 13898 89 104339 3.5 1520409056
## 13899 89 104875 4.5 1520409449
## 13900 89 105540 4.5 1520409146
## 13901 89 105746 4.5 1520409560
## 13902 89 106540 3.0 1520408982
## 13903 89 106594 4.5 1520409129
## 13904 89 106927 3.0 1520409573
## 13905 89 107951 5.0 1520409436
## 13906 89 108078 5.0 1520409580
## 13907 89 108156 3.5 1520408705
## 13908 89 108932 5.0 1520408471
## 13909 89 108949 3.5 1520408861
## 13910 89 109241 5.0 1520409332
## 13911 89 109374 3.5 1520408945
## 13912 89 109596 4.0 1520409083
## 13913 89 110130 5.0 1520409430
## 13914 89 111146 4.5 1520408974
## 13915 89 111617 3.5 1520408947
## 13916 89 112138 3.0 1520408629
## 13917 89 113252 4.0 1520409029
## 13918 89 113453 2.5 1520408844
## 13919 89 115111 3.5 1520409381
## 13920 89 116718 3.5 1520409655
## 13921 89 116738 3.5 1520409582
## 13922 89 116817 4.5 1520409357
## 13923 89 116897 2.5 1520408277
## 13924 89 117109 4.5 1520409426
## 13925 89 117590 4.0 1520408746
## 13926 89 118270 5.0 1520409402
## 13927 89 118530 4.5 1520409207
## 13928 89 118572 4.0 1520408985
## 13929 89 118834 5.0 1520409188
## 13930 89 118862 4.0 1520409021
## 13931 89 118894 5.0 1520409061
## 13932 89 119141 2.5 1520408871
## 13933 89 119155 4.5 1520408733
## 13934 89 119714 3.5 1520409550
## 13935 89 120813 4.5 1520409367
## 13936 89 121007 4.0 1520408968
## 13937 89 121097 4.5 1520409085
## 13938 89 121338 4.5 1520409119
## 13939 89 121342 3.5 1520409121
## 13940 89 121469 4.5 1520409500
## 13941 89 121781 5.0 1520409168
## 13942 89 122092 5.0 1520409152
## 13943 89 124273 4.5 1520408923
## 13944 89 124404 5.0 1520409348
## 13945 89 125970 3.5 1520409057
## 13946 89 125974 3.5 1520409107
## 13947 89 126088 5.0 1520409176
## 13948 89 126577 4.0 1520409070
## 13949 89 126921 5.0 1520409407
## 13950 89 127052 2.5 1520408282
## 13951 89 127134 3.5 1520409574
## 13952 89 128087 5.0 1520409504
## 13953 89 128089 4.5 1520409186
## 13954 89 128366 4.0 1520409004
## 13955 89 128520 2.5 1520408901
## 13956 89 128594 4.0 1520409028
## 13957 89 128852 4.5 1520409173
## 13958 89 128944 3.5 1520408966
## 13959 89 128968 5.0 1520409399
## 13960 89 129011 3.5 1520409650
## 13961 89 129354 5.0 1520408802
## 13962 89 130452 4.0 1520409382
## 13963 89 130518 4.5 1520409132
## 13964 89 130520 2.0 1520408586
## 13965 89 131013 2.5 1520408908
## 13966 89 131098 5.0 1520409448
## 13967 89 131104 4.5 1520409483
## 13968 89 131130 5.0 1520409323
## 13969 89 131439 3.0 1520408675
## 13970 89 131610 5.0 1520409458
## 13971 89 131826 3.5 1520408951
## 13972 89 132153 5.0 1520409343
## 13973 89 132422 4.5 1520409492
## 13974 89 132496 4.5 1520409189
## 13975 89 132584 3.5 1520409081
## 13976 89 132800 4.5 1520409127
## 13977 89 133712 3.0 1520408980
## 13978 89 133867 4.5 1520409360
## 13979 89 133879 4.0 1520409103
## 13980 89 134004 5.0 1520409359
## 13981 89 134334 4.5 1520409179
## 13982 89 134847 5.0 1520409207
## 13983 89 135777 4.5 1520409425
## 13984 89 135887 4.5 1520408722
## 13985 89 135937 3.0 1520409567
## 13986 89 136341 5.0 1520409192
## 13987 89 136353 5.0 1520409074
## 13988 89 136355 5.0 1520409066
## 13989 89 136359 5.0 1520409395
## 13990 89 136503 5.0 1520409404
## 13991 89 136834 5.0 1520409019
## 13992 89 139157 4.5 1520409499
## 13993 89 139640 5.0 1520409330
## 13994 89 139994 4.0 1520409389
## 13995 89 140133 5.0 1520409577
## 13996 89 140481 4.5 1520409335
## 13997 89 140541 4.0 1520409521
## 13998 89 140561 4.0 1520409401
## 13999 89 140711 3.5 1520408959
## 14000 89 141513 4.0 1520409405
## 14001 89 141544 2.5 1520408842
## 14002 89 141646 3.5 1520409051
## 14003 89 141830 2.0 1520408838
## 14004 89 141928 5.0 1520409361
## 14005 89 142196 4.5 1520409457
## 14006 89 142444 5.0 1520409484
## 14007 89 142550 4.5 1520409140
## 14008 89 142831 4.5 1520409391
## 14009 89 143031 5.0 1520409090
## 14010 89 143559 5.0 1520409581
## 14011 89 144222 3.0 1520409645
## 14012 89 145491 3.5 1520409039
## 14013 89 146244 4.0 1520409515
## 14014 89 146684 5.0 1520409464
## 14015 89 146986 4.0 1520409513
## 14016 89 147410 5.0 1520409171
## 14017 89 147936 4.5 1520409092
## 14018 89 148632 4.5 1520409568
## 14019 89 148775 4.0 1520408998
## 14020 89 149350 5.0 1520409463
## 14021 89 149352 1.5 1520408895
## 14022 89 149406 4.0 1520408477
## 14023 89 149508 5.0 1520409454
## 14024 89 149566 5.0 1520409393
## 14025 89 150554 5.0 1520409344
## 14026 89 151739 2.0 1520408825
## 14027 89 153386 3.0 1520409643
## 14028 89 153408 4.0 1520409445
## 14029 89 155589 3.0 1520409520
## 14030 89 156025 5.0 1520409144
## 14031 89 156781 4.0 1520409570
## 14032 89 157296 5.0 1520409109
## 14033 89 157775 5.0 1520409437
## 14034 89 158238 3.5 1520408854
## 14035 89 158398 5.0 1520409184
## 14036 89 158882 5.0 1520409576
## 14037 89 159069 4.5 1520409400
## 14038 89 160567 2.0 1520408839
## 14039 89 161131 2.5 1520408741
## 14040 89 163527 4.0 1520408953
## 14041 89 164200 4.5 1520408827
## 14042 89 164226 4.5 1520409181
## 14043 89 164707 4.0 1520409054
## 14044 89 167018 2.5 1520408863
## 14045 89 167380 4.5 1520409150
## 14046 89 167772 1.5 1520408904
## 14047 89 167854 4.5 1520409087
## 14048 89 169912 3.5 1520408978
## 14049 89 170837 4.0 1520409007
## 14050 89 170993 4.0 1520408948
## 14051 89 171751 2.5 1520408877
## 14052 89 171811 4.0 1520409555
## 14053 89 172321 2.0 1520408942
## 14054 89 173253 3.5 1520409641
## 14055 89 174681 3.5 1520408962
## 14056 89 176621 2.0 1520408791
## 14057 89 176805 4.0 1520409006
## 14058 89 177185 4.5 1520409502
## 14059 89 177765 2.0 1520408282
## 14060 89 179211 2.5 1520408792
## 14061 89 181065 4.0 1520408963
## 14062 89 182293 4.0 1520408961
## 14063 89 182297 4.0 1520408949
## 14064 89 182299 4.0 1520408882
## 14065 89 182731 4.5 1520409049
## 14066 89 184349 3.5 1520408986
## 14067 89 184791 4.0 1520409064
## 14068 90 1 3.0 856353996
## 14069 90 7 4.0 856354037
## 14070 90 14 5.0 856354100
## 14071 90 17 5.0 856353996
## 14072 90 25 5.0 856353996
## 14073 90 32 4.0 856353996
## 14074 90 36 4.0 856354037
## 14075 90 52 5.0 856354072
## 14076 90 58 5.0 856354071
## 14077 90 68 3.0 856354249
## 14078 90 81 3.0 856354174
## 14079 90 82 5.0 856354212
## 14080 90 85 5.0 856354195
## 14081 90 116 5.0 856354268
## 14082 90 141 3.0 856353996
## 14083 90 260 5.0 856354072
## 14084 90 562 4.0 856354233
## 14085 90 581 4.0 856354288
## 14086 90 608 5.0 856354037
## 14087 90 613 5.0 856354212
## 14088 90 617 4.0 856354348
## 14089 90 685 3.0 856354348
## 14090 90 708 3.0 856354071
## 14091 90 728 3.0 856354195
## 14092 90 735 4.0 856354329
## 14093 90 743 3.0 856354120
## 14094 90 766 4.0 856354232
## 14095 90 780 3.0 856353996
## 14096 90 791 4.0 856354451
## 14097 90 805 3.0 856354100
## 14098 90 818 5.0 856354233
## 14099 90 892 4.0 856354381
## 14100 90 896 3.0 856354513
## 14101 90 984 5.0 856354596
## 14102 90 1034 5.0 856354451
## 14103 90 1041 5.0 856354268
## 14104 90 1046 4.0 856354399
## 14105 90 1057 5.0 856354399
## 14106 90 1060 4.0 856354348
## 14107 90 1073 4.0 856354037
## 14108 90 1116 4.0 856354577
## 14109 90 1137 4.0 856354577
## 14110 90 1144 4.0 856354526
## 14111 90 1183 4.0 856354212
## 14112 90 1353 3.0 856354268
## 14113 90 1356 4.0 856354100
## 14114 90 1357 5.0 856354301
## 14115 90 1358 5.0 856354551
## 14116 90 1366 4.0 856354367
## 14117 90 1411 5.0 856354329
## 14118 90 1414 4.0 856354435
## 14119 90 1416 4.0 856354288
## 14120 90 1417 3.0 856354513
## 14121 90 1442 2.0 856354612
## 14122 91 1 4.0 1112713037
## 14123 91 2 3.0 1112713392
## 14124 91 3 3.0 1112712323
## 14125 91 6 5.0 1112712032
## 14126 91 10 3.5 1112713269
## 14127 91 16 4.5 1112710867
## 14128 91 19 2.0 1112713417
## 14129 91 21 4.0 1112712052
## 14130 91 22 3.5 1112712292
## 14131 91 25 2.0 1112713314
## 14132 91 29 4.0 1112711719
## 14133 91 32 4.0 1112711273
## 14134 91 36 3.0 1112712316
## 14135 91 39 1.5 1112713319
## 14136 91 41 4.0 1112716937
## 14137 91 47 4.5 1112712832
## 14138 91 50 4.5 1112712816
## 14139 91 58 2.0 1112710933
## 14140 91 88 3.0 1112716912
## 14141 91 92 2.0 1112716903
## 14142 91 95 3.0 1112711260
## 14143 91 104 1.5 1112713462
## 14144 91 110 4.0 1112712339
## 14145 91 111 4.0 1112713352
## 14146 91 112 3.0 1112710953
## 14147 91 150 3.5 1112712023
## 14148 91 151 3.0 1112710950
## 14149 91 153 2.0 1112711306
## 14150 91 158 2.0 1112713777
## 14151 91 160 2.0 1112713458
## 14152 91 161 3.5 1112711269
## 14153 91 163 5.0 1112712601
## 14154 91 165 3.0 1112713245
## 14155 91 172 4.5 1112713688
## 14156 91 173 3.5 1112710917
## 14157 91 185 2.0 1112713300
## 14158 91 186 2.0 1112713723
## 14159 91 196 3.0 1112713569
## 14160 91 208 2.5 1112712329
## 14161 91 223 3.0 1112711488
## 14162 91 225 3.0 1112710870
## 14163 91 231 3.0 1112713266
## 14164 91 235 4.5 1112711256
## 14165 91 236 2.0 1112713602
## 14166 91 251 2.5 1112717660
## 14167 91 252 2.5 1112713801
## 14168 91 253 4.5 1112713303
## 14169 91 260 4.5 1112712846
## 14170 91 266 3.0 1112713423
## 14171 91 288 3.5 1112711287
## 14172 91 292 3.5 1112713278
## 14173 91 293 4.0 1112711284
## 14174 91 296 4.5 1112711264
## 14175 91 315 3.0 1112713686
## 14176 91 316 4.0 1112713249
## 14177 91 318 2.0 1112712135
## 14178 91 322 2.0 1112716866
## 14179 91 329 2.0 1112713258
## 14180 91 337 1.5 1112713450
## 14181 91 344 3.0 1112713227
## 14182 91 349 3.0 1112713232
## 14183 91 350 3.0 1112713420
## 14184 91 353 5.0 1112712455
## 14185 91 356 3.0 1112711237
## 14186 91 357 1.5 1112713292
## 14187 91 364 3.5 1112711195
## 14188 91 367 3.5 1112713273
## 14189 91 368 3.0 1112713426
## 14190 91 370 3.0 1112713612
## 14191 91 374 1.0 1112716895
## 14192 91 376 2.5 1112713553
## 14193 91 377 3.0 1112713224
## 14194 91 380 3.5 1112713208
## 14195 91 384 3.5 1112717242
## 14196 91 410 3.0 1112711203
## 14197 91 420 1.5 1112711240
## 14198 91 428 3.0 1112713077
## 14199 91 432 1.0 1112710911
## 14200 91 433 2.0 1112717219
## 14201 91 434 2.0 1112713286
## 14202 91 435 1.5 1112713513
## 14203 91 442 3.0 1112711200
## 14204 91 454 3.0 1112713295
## 14205 91 457 4.0 1112713197
## 14206 91 464 4.0 1112716881
## 14207 91 466 3.0 1112713605
## 14208 91 471 1.0 1112713817
## 14209 91 474 3.5 1112713360
## 14210 91 480 4.5 1112713195
## 14211 91 482 3.5 1112716885
## 14212 91 485 4.0 1112713741
## 14213 91 494 3.0 1112713473
## 14214 91 500 2.5 1112711245
## 14215 91 502 1.0 1112716892
## 14216 91 515 1.0 1112713768
## 14217 91 520 3.5 1112712272
## 14218 91 533 4.0 1112716908
## 14219 91 539 2.5 1112711215
## 14220 91 541 5.0 1112711219
## 14221 91 543 3.5 1112712249
## 14222 91 551 5.0 1112711242
## 14223 91 552 3.0 1112712269
## 14224 91 553 3.5 1112713485
## 14225 91 555 3.5 1112713110
## 14226 91 586 2.0 1112712333
## 14227 91 587 2.5 1112713284
## 14228 91 588 3.5 1112711205
## 14229 91 589 4.0 1112711446
## 14230 91 590 3.5 1112713201
## 14231 91 592 5.0 1112713199
## 14232 91 593 4.5 1112712144
## 14233 91 594 3.0 1112711217
## 14234 91 595 3.0 1112711215
## 14235 91 597 2.5 1112711248
## 14236 91 606 4.0 1112717237
## 14237 91 608 3.5 1112713222
## 14238 91 610 4.5 1112716901
## 14239 91 628 3.0 1112713765
## 14240 91 648 4.0 1112713238
## 14241 91 653 2.5 1112710875
## 14242 91 678 3.0 1112712982
## 14243 91 708 2.5 1112711197
## 14244 91 733 3.0 1112713262
## 14245 91 736 2.5 1112711143
## 14246 91 741 4.5 1112711494
## 14247 91 745 3.5 1112712296
## 14248 91 750 5.0 1112713140
## 14249 91 778 4.0 1112713437
## 14250 91 780 3.5 1112713211
## 14251 91 784 3.5 1112712276
## 14252 91 786 2.5 1112713400
## 14253 91 799 4.0 1112712586
## 14254 91 802 3.5 1112713566
## 14255 91 832 3.0 1112710947
## 14256 91 842 2.5 1112717229
## 14257 91 858 5.0 1112711140
## 14258 91 866 4.0 1112711693
## 14259 91 903 4.0 1112712251
## 14260 91 904 2.5 1112713615
## 14261 91 908 3.0 1112710923
## 14262 91 912 4.0 1112712320
## 14263 91 919 3.0 1112713366
## 14264 91 920 2.5 1112713503
## 14265 91 923 4.0 1112710903
## 14266 91 924 3.5 1112711183
## 14267 91 1028 3.0 1112713728
## 14268 91 1035 2.0 1112713738
## 14269 91 1036 4.0 1112713347
## 14270 91 1073 3.0 1112713298
## 14271 91 1079 4.0 1112711159
## 14272 91 1080 4.0 1112710878
## 14273 91 1089 4.0 1112711148
## 14274 91 1092 4.5 1112712189
## 14275 91 1094 3.0 1112713651
## 14276 91 1097 3.0 1112713281
## 14277 91 1101 3.0 1112711132
## 14278 91 1125 3.5 1112716838
## 14279 91 1127 4.0 1112712344
## 14280 91 1129 5.0 1112716825
## 14281 91 1136 5.0 1112711175
## 14282 91 1148 4.0 1112712966
## 14283 91 1183 2.5 1112711171
## 14284 91 1193 4.0 1112711128
## 14285 91 1196 4.5 1112711436
## 14286 91 1197 5.0 1112712901
## 14287 91 1198 5.0 1112712826
## 14288 91 1199 4.0 1112711801
## 14289 91 1200 5.0 1112711448
## 14290 91 1201 4.5 1112716602
## 14291 91 1206 5.0 1112713440
## 14292 91 1207 3.0 1112712199
## 14293 91 1208 2.5 1112713456
## 14294 91 1210 4.0 1112711157
## 14295 91 1213 4.0 1112712318
## 14296 91 1214 5.0 1112713343
## 14297 91 1215 5.0 1112711597
## 14298 91 1219 5.0 1112710880
## 14299 91 1220 5.0 1112713446
## 14300 91 1221 4.0 1112712986
## 14301 91 1225 3.0 1112711137
## 14302 91 1234 4.0 1112713646
## 14303 91 1240 4.5 1112711461
## 14304 91 1241 4.5 1112711920
## 14305 91 1242 4.0 1112712967
## 14306 91 1246 2.0 1112713530
## 14307 91 1249 4.0 1112713114
## 14308 91 1253 3.5 1112713147
## 14309 91 1257 2.0 1112713006
## 14310 91 1258 4.5 1112710883
## 14311 91 1259 3.0 1112712007
## 14312 91 1261 4.5 1112711601
## 14313 91 1262 3.5 1112712861
## 14314 91 1265 4.0 1112713330
## 14315 91 1266 4.0 1112713014
## 14316 91 1270 3.5 1112713112
## 14317 91 1274 5.0 1112713057
## 14318 91 1276 3.0 1112712183
## 14319 91 1278 4.5 1112713087
## 14320 91 1288 3.5 1112713584
## 14321 91 1291 4.0 1112712858
## 14322 91 1297 2.5 1112716840
## 14323 91 1298 4.0 1112712050
## 14324 91 1304 4.0 1112710864
## 14325 91 1307 2.5 1112713370
## 14326 91 1321 4.5 1112711566
## 14327 91 1337 4.5 1112712688
## 14328 91 1340 3.0 1112712515
## 14329 91 1347 4.0 1112712621
## 14330 91 1350 4.5 1112711891
## 14331 91 1356 3.5 1112712058
## 14332 91 1358 3.0 1112713637
## 14333 91 1370 3.0 1112713590
## 14334 91 1373 3.0 1112716855
## 14335 91 1374 4.5 1112710890
## 14336 91 1375 3.0 1112712203
## 14337 91 1376 3.5 1112713745
## 14338 91 1377 3.0 1112712213
## 14339 91 1380 2.0 1112713666
## 14340 91 1385 4.0 1112716833
## 14341 91 1387 5.0 1112713407
## 14342 91 1391 4.0 1112713509
## 14343 91 1393 3.0 1112713363
## 14344 91 1394 2.0 1112717643
## 14345 91 1396 4.0 1112713726
## 14346 91 1405 3.5 1112716843
## 14347 91 1407 4.0 1112713534
## 14348 91 1408 4.0 1112712186
## 14349 91 1485 2.5 1112713644
## 14350 91 1500 3.0 1112713581
## 14351 91 1517 3.5 1112713476
## 14352 91 1527 4.0 1112712045
## 14353 91 1544 3.0 1112712229
## 14354 91 1552 3.0 1112712196
## 14355 91 1573 3.0 1112713506
## 14356 91 1580 3.5 1112711168
## 14357 91 1584 3.0 1112711146
## 14358 91 1608 3.0 1112713672
## 14359 91 1610 4.5 1112712179
## 14360 91 1617 2.5 1112713017
## 14361 91 1644 3.5 1112716801
## 14362 91 1645 3.0 1112712216
## 14363 91 1653 4.5 1112712176
## 14364 91 1676 4.0 1112713669
## 14365 91 1682 4.0 1112713540
## 14366 91 1687 3.5 1112716816
## 14367 91 1704 3.0 1112713388
## 14368 91 1747 3.0 1112716508
## 14369 91 1748 4.5 1112711563
## 14370 91 1760 0.5 1112717209
## 14371 91 1762 2.5 1112717205
## 14372 91 1771 4.0 1112717639
## 14373 91 1805 3.0 1112716793
## 14374 91 1845 4.0 1112716790
## 14375 91 1876 3.0 1112716494
## 14376 91 1885 2.0 1112716787
## 14377 91 1909 3.0 1112712131
## 14378 91 1917 2.5 1112710847
## 14379 91 1921 5.0 1112711894
## 14380 91 1923 3.0 1112711077
## 14381 91 1954 5.0 1112713821
## 14382 91 1961 3.5 1112713372
## 14383 91 1967 4.0 1112712575
## 14384 91 1968 3.0 1112713409
## 14385 91 1974 4.0 1112718168
## 14386 91 1981 2.0 1112717145
## 14387 91 1994 4.0 1112711583
## 14388 91 2000 3.5 1112713550
## 14389 91 2001 2.5 1112713805
## 14390 91 2002 2.0 1112718181
## 14391 91 2011 2.5 1112713558
## 14392 91 2012 2.0 1112710901
## 14393 91 2019 4.5 1112711080
## 14394 91 2028 4.5 1112713067
## 14395 91 2054 2.5 1112713690
## 14396 91 2058 3.0 1112718179
## 14397 91 2060 2.5 1112717148
## 14398 91 2072 2.0 1112716820
## 14399 91 2076 4.0 1112716797
## 14400 91 2081 3.0 1112713827
## 14401 91 2096 3.0 1112718163
## 14402 91 2097 2.0 1112717157
## 14403 91 2100 3.0 1112713775
## 14404 91 2115 3.5 1112712160
## 14405 91 2117 4.0 1112716780
## 14406 91 2122 4.0 1112717166
## 14407 91 2137 3.0 1112718177
## 14408 91 2138 4.0 1112711799
## 14409 91 2140 3.5 1112711902
## 14410 91 2144 2.0 1112718166
## 14411 91 2146 2.5 1112718186
## 14412 91 2160 4.5 1112718159
## 14413 91 2174 4.0 1112711866
## 14414 91 2194 3.5 1112712930
## 14415 91 2236 0.5 1112717161
## 14416 91 2268 3.0 1112718172
## 14417 91 2287 3.5 1112712705
## 14418 91 2288 5.0 1112711595
## 14419 91 2289 3.0 1112716735
## 14420 91 2291 4.0 1112711687
## 14421 91 2298 4.0 1112718156
## 14422 91 2302 1.0 1112713709
## 14423 91 2353 3.0 1112713823
## 14424 91 2355 3.5 1112713442
## 14425 91 2395 1.0 1112713704
## 14426 91 2396 2.0 1112713344
## 14427 91 2402 2.5 1112718072
## 14428 91 2403 4.5 1112716771
## 14429 91 2419 3.5 1112717612
## 14430 91 2420 3.5 1112718132
## 14431 91 2431 2.0 1112716724
## 14432 91 2450 2.5 1112718082
## 14433 91 2455 3.0 1112712642
## 14434 91 2456 2.5 1112717082
## 14435 91 2463 2.5 1112718137
## 14436 91 2502 4.5 1112712927
## 14437 91 2518 2.5 1112716733
## 14438 91 2522 2.0 1112717548
## 14439 91 2529 4.0 1112711706
## 14440 91 2542 4.5 1112711525
## 14441 91 2571 5.0 1112712839
## 14442 91 2598 3.0 1112716738
## 14443 91 2599 2.5 1112713586
## 14444 91 2617 3.0 1112713655
## 14445 91 2625 3.5 1112717624
## 14446 91 2628 4.0 1112713335
## 14447 91 2641 3.5 1112716767
## 14448 91 2651 1.0 1112717546
## 14449 91 2654 2.0 1112712571
## 14450 91 2657 3.0 1112712141
## 14451 91 2668 3.5 1112717047
## 14452 91 2683 3.5 1112713396
## 14453 91 2692 4.0 1112712146
## 14454 91 2699 2.5 1112713734
## 14455 91 2700 4.0 1112710957
## 14456 91 2706 2.0 1112711096
## 14457 91 2710 4.0 1112713492
## 14458 91 2712 4.0 1112712166
## 14459 91 2713 3.0 1112716769
## 14460 91 2716 4.5 1112711100
## 14461 91 2717 3.0 1112718067
## 14462 91 2723 3.5 1112716711
## 14463 91 2761 5.0 1112711475
## 14464 91 2762 4.0 1112712914
## 14465 91 2782 2.0 1112717616
## 14466 91 2784 3.0 1112712664
## 14467 91 2790 3.0 1112711108
## 14468 91 2791 4.5 1112713536
## 14469 91 2797 3.0 1112711087
## 14470 91 2804 3.5 1112713020
## 14471 91 2817 2.0 1112717071
## 14472 91 2867 4.0 1112712670
## 14473 91 2868 3.0 1112717608
## 14474 91 2871 4.0 1112716699
## 14475 91 2890 2.5 1112716587
## 14476 91 2916 4.5 1112711113
## 14477 91 2918 3.5 1112712932
## 14478 91 2944 4.0 1112712957
## 14479 91 2947 4.5 1112713096
## 14480 91 2949 3.0 1112711518
## 14481 91 2959 4.5 1112711473
## 14482 91 2985 4.5 1112712163
## 14483 91 2987 4.0 1112713428
## 14484 91 2990 2.0 1112718050
## 14485 91 2992 3.5 1112718036
## 14486 91 2993 3.0 1112716680
## 14487 91 2997 3.5 1112711084
## 14488 91 3000 4.0 1112711478
## 14489 91 3013 4.0 1112717436
## 14490 91 3017 4.0 1112717492
## 14491 91 3018 4.5 1112712579
## 14492 91 3031 3.5 1112717445
## 14493 91 3070 5.0 1112718040
## 14494 91 3081 5.0 1112711807
## 14495 91 3113 3.5 1112716685
## 14496 91 3114 4.0 1112713040
## 14497 91 3147 2.5 1112713009
## 14498 91 3153 4.0 1112711869
## 14499 91 3175 3.5 1112713784
## 14500 91 3176 4.0 1112713809
## 14501 91 3182 4.0 1112717068
## 14502 91 3249 3.0 1112716716
## 14503 91 3254 2.5 1112718047
## 14504 91 3263 2.0 1112716708
## 14505 91 3267 4.0 1112711722
## 14506 91 3275 4.5 1112713149
## 14507 91 3298 4.0 1112716693
## 14508 91 3300 5.0 1112716706
## 14509 91 3354 3.0 1112718010
## 14510 91 3360 3.5 1112712026
## 14511 91 3408 2.5 1112713638
## 14512 91 3421 3.5 1112713107
## 14513 91 3429 5.0 1112716478
## 14514 91 3471 4.0 1112713813
## 14515 91 3481 2.5 1112713700
## 14516 91 3499 4.0 1112713157
## 14517 91 3508 4.0 1112712867
## 14518 91 3535 4.0 1112718017
## 14519 91 3550 4.0 1112717038
## 14520 91 3563 3.0 1112717458
## 14521 91 3576 3.0 1112717032
## 14522 91 3578 3.5 1112713384
## 14523 91 3623 2.0 1112712123
## 14524 91 3633 3.5 1112716985
## 14525 91 3671 4.5 1112711463
## 14526 91 3681 4.0 1112712864
## 14527 91 3697 3.5 1112712435
## 14528 91 3698 4.0 1112712418
## 14529 91 3703 5.0 1112711730
## 14530 91 3704 3.5 1112718014
## 14531 91 3708 4.0 1112717016
## 14532 91 3727 4.5 1112711593
## 14533 91 3740 5.0 1112712465
## 14534 91 3745 3.0 1112712422
## 14535 91 3768 1.5 1112717453
## 14536 91 3785 4.5 1112716632
## 14537 91 3793 4.0 1112713489
## 14538 91 3809 4.0 1112712416
## 14539 91 3810 3.0 1112717421
## 14540 91 3826 3.5 1112712439
## 14541 91 3836 4.5 1112713063
## 14542 91 3837 5.0 1112717402
## 14543 91 3840 4.0 1112717426
## 14544 91 3841 2.5 1112717009
## 14545 91 3868 4.0 1112711569
## 14546 91 3882 2.0 1112716635
## 14547 91 3893 3.0 1112716655
## 14548 91 3897 1.5 1112713595
## 14549 91 3917 4.5 1112712703
## 14550 91 3948 2.0 1112712411
## 14551 91 3949 3.0 1112711500
## 14552 91 3977 2.0 1112712429
## 14553 91 3984 3.5 1112716670
## 14554 91 3994 2.0 1112716622
## 14555 91 3996 4.5 1112712954
## 14556 91 4007 3.5 1112716630
## 14557 91 4027 4.0 1112713755
## 14558 91 4034 4.0 1112713811
## 14559 91 4084 2.5 1112716652
## 14560 91 4092 2.5 1112717405
## 14561 91 4105 4.0 1112711645
## 14562 91 4109 3.0 1112717414
## 14563 91 4214 2.0 1112716990
## 14564 91 4226 4.5 1112712170
## 14565 91 4254 2.0 1112716988
## 14566 91 4262 3.5 1112712995
## 14567 91 4304 4.0 1112717002
## 14568 91 4306 5.0 1112713468
## 14569 91 4316 1.5 1112717380
## 14570 91 4327 2.5 1112712909
## 14571 91 4340 1.0 1112717005
## 14572 91 4351 3.5 1112716638
## 14573 91 4369 3.5 1112712431
## 14574 91 4386 4.0 1112717019
## 14575 91 4438 3.5 1112712408
## 14576 91 4448 4.0 1112712414
## 14577 91 4571 3.0 1112712581
## 14578 91 4587 1.0 1112716992
## 14579 91 4599 3.0 1112717378
## 14580 91 4624 3.0 1112712697
## 14581 91 4626 4.0 1112712542
## 14582 91 4629 1.5 1112717386
## 14583 91 4641 1.5 1112716642
## 14584 91 4645 4.5 1112717833
## 14585 91 4661 3.0 1112716973
## 14586 91 4678 5.0 1112712625
## 14587 91 4720 4.5 1112716647
## 14588 91 4774 1.0 1112717363
## 14589 91 4800 2.5 1112717828
## 14590 91 4846 3.5 1112716970
## 14591 91 4850 4.5 1112717830
## 14592 91 4855 4.0 1112713071
## 14593 91 4878 4.0 1112712017
## 14594 91 4886 4.0 1112712128
## 14595 91 4896 4.0 1112717839
## 14596 91 4909 2.0 1112717398
## 14597 91 4963 3.5 1112712364
## 14598 91 4975 3.5 1112716657
## 14599 91 4979 2.0 1112711796
## 14600 91 4987 3.0 1112712391
## 14601 91 4993 4.5 1112711439
## 14602 91 5060 2.0 1112713641
## 14603 91 5165 4.0 1112717803
## 14604 91 5294 3.5 1112712934
## 14605 91 5308 1.5 1112716954
## 14606 91 5346 2.5 1112717333
## 14607 91 5349 5.0 1112712351
## 14608 91 5378 4.0 1112712379
## 14609 91 5418 4.0 1112716504
## 14610 91 5438 3.0 1112717341
## 14611 91 5445 3.5 1112712361
## 14612 91 5459 2.5 1112712384
## 14613 91 5464 2.5 1112713160
## 14614 91 5479 4.0 1112716967
## 14615 91 5500 3.5 1112716948
## 14616 91 5582 2.5 1112717355
## 14617 91 5585 1.0 1112717351
## 14618 91 5588 3.5 1112717809
## 14619 91 5618 4.0 1112712849
## 14620 91 5640 3.0 1112717816
## 14621 91 5650 4.5 1112711710
## 14622 91 5669 3.0 1112713131
## 14623 91 5673 3.0 1112712369
## 14624 91 5679 4.0 1112711734
## 14625 91 5693 4.5 1112716962
## 14626 91 5749 3.0 1112717763
## 14627 91 5903 4.5 1112716977
## 14628 91 5952 4.0 1112713695
## 14629 91 5988 3.0 1112717772
## 14630 91 5989 2.5 1112713128
## 14631 91 6203 1.5 1112717738
## 14632 91 6218 1.5 1112716514
## 14633 91 6219 3.0 1112717313
## 14634 91 6242 4.5 1112711572
## 14635 91 6283 4.5 1112711118
## 14636 91 6327 3.5 1112712880
## 14637 91 6333 4.0 1112711457
## 14638 91 6365 3.0 1112716620
## 14639 91 6375 3.0 1112712889
## 14640 91 6378 3.0 1112712373
## 14641 91 6395 3.5 1112712637
## 14642 91 6461 3.5 1112711560
## 14643 91 6503 1.0 1112716922
## 14644 91 6539 5.0 1112712353
## 14645 91 6620 3.5 1112713155
## 14646 91 6629 4.0 1112712652
## 14647 91 6638 2.0 1112717292
## 14648 91 6659 5.0 1112712467
## 14649 91 6678 3.5 1112717289
## 14650 91 6707 3.5 1112717304
## 14651 91 6721 4.0 1112712874
## 14652 91 6731 4.5 1112712674
## 14653 91 6744 3.5 1112717308
## 14654 91 6755 4.0 1112711649
## 14655 91 6807 4.0 1112712924
## 14656 91 6820 5.0 1112712545
## 14657 91 6857 5.0 1112716461
## 14658 91 6863 2.5 1112711279
## 14659 91 6874 4.0 1112711490
## 14660 91 6963 4.0 1112717723
## 14661 91 7000 3.0 1112717272
## 14662 91 7028 4.0 1112712992
## 14663 91 7090 4.5 1112712945
## 14664 91 7118 3.5 1112713091
## 14665 91 7123 4.0 1112717262
## 14666 91 7153 4.5 1112711441
## 14667 91 7308 2.5 1112717702
## 14668 91 7360 5.0 1112711923
## 14669 91 7387 5.0 1112711727
## 14670 91 7438 4.0 1112711466
## 14671 91 7454 2.0 1112716929
## 14672 91 7482 4.0 1112711513
## 14673 91 7492 4.0 1112712710
## 14674 91 7561 3.5 1112712598
## 14675 91 7569 4.0 1112711522
## 14676 91 7650 3.5 1112712463
## 14677 91 7802 4.0 1112711552
## 14678 91 8016 3.5 1112711716
## 14679 91 8147 4.0 1112712000
## 14680 91 8157 4.5 1112713120
## 14681 91 8266 1.5 1112717277
## 14682 91 8340 3.5 1112717259
## 14683 91 8368 4.5 1112711255
## 14684 91 8370 3.5 1112712905
## 14685 91 8426 4.0 1112712997
## 14686 91 8501 4.0 1112717695
## 14687 91 8507 2.5 1112713025
## 14688 91 8581 4.0 1112711427
## 14689 91 8636 5.0 1112712885
## 14690 91 8798 2.5 1112713125
## 14691 91 8874 5.0 1112711481
## 14692 91 8910 2.0 1112711993
## 14693 91 8961 4.5 1112712003
## 14694 91 27317 4.5 1112713059
## 14695 91 27873 2.5 1112712039
## 14696 91 31696 4.0 1112717235
## 14697 92 107 5.0 1294941385
## 14698 92 327 3.5 1294941372
## 14699 92 837 5.0 1294941448
## 14700 92 1015 4.0 1294941592
## 14701 92 1021 3.0 1294941576
## 14702 92 1367 3.0 1294941797
## 14703 92 1619 4.0 1294941480
## 14704 92 1801 3.0 1294941435
## 14705 92 2085 3.5 1294941801
## 14706 92 2087 4.5 1294941405
## 14707 92 2114 3.0 1294941607
## 14708 92 2139 4.0 1294941502
## 14709 92 2398 4.0 1294941484
## 14710 92 2454 4.0 1294941568
## 14711 92 2501 4.0 1294941362
## 14712 92 2572 5.0 1294941782
## 14713 92 2664 3.5 1294941533
## 14714 92 3168 4.5 1294941674
## 14715 92 6383 3.0 1294941894
## 14716 92 35836 4.5 1294942854
## 14717 92 51662 4.5 1294942835
## 14718 92 54190 4.0 1294942995
## 14719 92 55282 4.0 1294941914
## 14720 92 69757 4.0 1294941763
## 14721 93 1 3.0 942767337
## 14722 93 2 5.0 942946208
## 14723 93 10 4.0 942946208
## 14724 93 15 4.0 942946091
## 14725 93 34 5.0 942767143
## 14726 93 60 4.0 942946445
## 14727 93 86 4.0 942946013
## 14728 93 110 5.0 942947377
## 14729 93 150 5.0 942947377
## 14730 93 153 4.0 942946445
## 14731 93 158 4.0 942946445
## 14732 93 168 4.0 942946340
## 14733 93 173 4.0 942946445
## 14734 93 258 4.0 942946508
## 14735 93 260 5.0 942946932
## 14736 93 316 5.0 942946445
## 14737 93 318 4.0 942947205
## 14738 93 329 5.0 942946340
## 14739 93 339 4.0 942766855
## 14740 93 349 4.0 942946208
## 14741 93 356 5.0 942766907
## 14742 93 357 4.0 942767045
## 14743 93 362 4.0 942946445
## 14744 93 367 5.0 942946986
## 14745 93 368 4.0 942766855
## 14746 93 380 5.0 942946091
## 14747 93 434 5.0 942946508
## 14748 93 480 5.0 942946013
## 14749 93 527 5.0 942947205
## 14750 93 539 4.0 942766957
## 14751 93 552 5.0 942946340
## 14752 93 558 4.0 942946634
## 14753 93 588 4.0 942766957
## 14754 93 590 5.0 942946091
## 14755 93 593 5.0 942947265
## 14756 93 648 4.0 942946508
## 14757 93 653 4.0 942946588
## 14758 93 733 4.0 942946091
## 14759 93 736 4.0 942946677
## 14760 93 761 4.0 942946677
## 14761 93 836 4.0 942946634
## 14762 93 849 4.0 942946508
## 14763 93 1015 3.0 942946634
## 14764 93 1049 4.0 942946208
## 14765 93 1097 5.0 942946932
## 14766 93 1265 5.0 942767374
## 14767 93 1356 5.0 942946013
## 14768 93 1359 4.0 942946588
## 14769 93 1372 5.0 942946588
## 14770 93 1377 4.0 942946445
## 14771 93 1476 4.0 942767242
## 14772 93 1499 4.0 942946766
## 14773 93 1552 4.0 942946013
## 14774 93 1562 4.0 942946588
## 14775 93 1580 5.0 942767007
## 14776 93 1591 4.0 942946677
## 14777 93 1606 4.0 942946766
## 14778 93 1615 4.0 942946091
## 14779 93 1641 4.0 942766804
## 14780 93 1676 4.0 942946677
## 14781 93 1704 5.0 942947301
## 14782 93 1721 5.0 942947205
## 14783 93 1779 4.0 942946634
## 14784 93 1784 5.0 942766804
## 14785 93 1894 3.0 942946588
## 14786 93 1917 5.0 942946588
## 14787 93 1923 5.0 942767298
## 14788 93 2006 4.0 942946091
## 14789 93 2012 3.0 942767242
## 14790 93 2021 4.0 942947064
## 14791 93 2028 5.0 942947205
## 14792 93 2054 4.0 942947102
## 14793 93 2094 4.0 942946588
## 14794 93 2103 4.0 942946835
## 14795 93 2105 5.0 942947026
## 14796 93 2153 3.0 942946766
## 14797 93 2161 5.0 942946932
## 14798 93 2167 4.0 942946013
## 14799 93 2174 4.0 942946932
## 14800 93 2193 5.0 942946932
## 14801 93 2268 5.0 942947343
## 14802 93 2302 4.0 942767045
## 14803 93 2321 4.0 942767181
## 14804 93 2355 4.0 942767298
## 14805 93 2359 4.0 942766907
## 14806 93 2396 4.0 942766804
## 14807 93 2424 4.0 942767085
## 14808 93 2431 5.0 942767422
## 14809 93 2567 3.0 942767242
## 14810 93 2617 4.0 942946091
## 14811 93 2628 5.0 942946013
## 14812 93 2720 3.0 942946810
## 14813 93 2797 4.0 942946986
## 14814 93 2822 4.0 942946208
## 14815 93 2872 5.0 942946986
## 14816 93 2916 5.0 942946208
## 14817 93 2968 4.0 942947102
## 14818 94 2 4.0 843406960
## 14819 94 10 3.0 843406732
## 14820 94 11 3.0 843406930
## 14821 94 17 1.0 843406942
## 14822 94 19 2.0 843406846
## 14823 94 21 3.0 843406846
## 14824 94 32 5.0 843406866
## 14825 94 34 4.0 843406765
## 14826 94 39 1.0 843406866
## 14827 94 44 1.0 843406960
## 14828 94 47 2.0 843406765
## 14829 94 95 3.0 843406942
## 14830 94 110 5.0 843406748
## 14831 94 150 4.0 843406616
## 14832 94 153 3.0 843406644
## 14833 94 160 3.0 843406895
## 14834 94 161 4.0 843406732
## 14835 94 165 4.0 843406644
## 14836 94 185 2.0 843406732
## 14837 94 208 2.0 843406748
## 14838 94 225 3.0 843406826
## 14839 94 231 3.0 843406685
## 14840 94 253 1.0 843406732
## 14841 94 266 3.0 843406914
## 14842 94 282 3.0 843406930
## 14843 94 288 2.0 843406748
## 14844 94 292 3.0 843406707
## 14845 94 296 4.0 843406616
## 14846 94 316 4.0 843406685
## 14847 94 317 3.0 843406866
## 14848 94 318 5.0 843406707
## 14849 94 329 4.0 843406707
## 14850 94 337 3.0 843406960
## 14851 94 344 3.0 843406644
## 14852 94 356 3.0 843406707
## 14853 94 357 1.0 843406895
## 14854 94 364 4.0 843406765
## 14855 94 367 3.0 843406765
## 14856 94 377 3.0 843406826
## 14857 94 380 3.0 843406616
## 14858 94 410 3.0 843406826
## 14859 94 420 3.0 843406846
## 14860 94 432 3.0 843406914
## 14861 94 434 3.0 843406707
## 14862 94 435 1.0 843406914
## 14863 94 457 4.0 843406685
## 14864 94 480 4.0 843406732
## 14865 94 500 3.0 843406826
## 14866 94 586 3.0 843406846
## 14867 94 587 3.0 843406866
## 14868 94 588 4.0 843406644
## 14869 94 589 4.0 843406765
## 14870 94 590 4.0 843406616
## 14871 94 592 3.0 843406616
## 14872 94 593 3.0 843406685
## 14873 94 597 2.0 843406866
## 14874 95 7 3.0 1043340043
## 14875 95 18 3.5 1105400752
## 14876 95 25 5.0 1044744590
## 14877 95 29 5.0 1043340522
## 14878 95 32 4.0 1043340522
## 14879 95 34 4.0 1071803856
## 14880 95 39 4.0 1043339476
## 14881 95 122 3.5 1105400745
## 14882 95 162 5.0 1043340311
## 14883 95 176 4.0 1048382937
## 14884 95 260 5.0 1043340455
## 14885 95 293 4.5 1069614359
## 14886 95 358 3.0 1043340311
## 14887 95 480 3.5 1105400942
## 14888 95 539 4.0 1071803917
## 14889 95 541 5.0 1043340455
## 14890 95 589 4.0 1043340485
## 14891 95 608 4.5 1069614364
## 14892 95 741 5.0 1043340485
## 14893 95 913 4.0 1043340225
## 14894 95 924 5.0 1043340392
## 14895 95 1011 4.0 1043339544
## 14896 95 1036 5.0 1043339248
## 14897 95 1042 4.0 1043340086
## 14898 95 1089 5.0 1048382826
## 14899 95 1094 4.0 1044744622
## 14900 95 1175 5.0 1105400882
## 14901 95 1196 5.0 1043340018
## 14902 95 1198 5.0 1069614382
## 14903 95 1200 4.5 1105400608
## 14904 95 1206 5.0 1043340455
## 14905 95 1208 5.0 1043339777
## 14906 95 1210 4.5 1105400853
## 14907 95 1214 4.0 1043340455
## 14908 95 1221 5.0 1043340018
## 14909 95 1228 5.0 1043339852
## 14910 95 1240 5.0 1043340485
## 14911 95 1247 4.5 1105400639
## 14912 95 1270 5.0 1043339320
## 14913 95 1274 5.0 1044744520
## 14914 95 1291 3.5 1071803793
## 14915 95 1307 5.0 1044744558
## 14916 95 1374 4.5 1105400929
## 14917 95 1381 2.0 1043339908
## 14918 95 1396 4.0 1105400890
## 14919 95 1513 3.0 1043340210
## 14920 95 1527 5.0 1043339507
## 14921 95 1529 4.0 1043340210
## 14922 95 1584 4.0 1105400895
## 14923 95 1617 4.0 1043339335
## 14924 95 1653 5.0 1043340522
## 14925 95 1659 4.0 1043340392
## 14926 95 1748 4.0 1043339544
## 14927 95 1912 4.5 1105400649
## 14928 95 1921 4.5 1105400874
## 14929 95 1967 5.0 1048383078
## 14930 95 1968 4.5 1105400622
## 14931 95 2009 4.0 1105401108
## 14932 95 2010 3.5 1105400816
## 14933 95 2021 4.5 1105401127
## 14934 95 2023 4.0 1043339302
## 14935 95 2028 5.0 1043339248
## 14936 95 2072 3.0 1043340283
## 14937 95 2085 4.0 1043339777
## 14938 95 2105 4.5 1105401153
## 14939 95 2115 4.5 1071803863
## 14940 95 2167 3.0 1043339571
## 14941 95 2268 4.0 1043339808
## 14942 95 2280 3.0 1043340086
## 14943 95 2396 4.0 1105400670
## 14944 95 2423 4.0 1071803893
## 14945 95 2528 4.0 1105401149
## 14946 95 2571 5.0 1043340455
## 14947 95 2600 2.5 1105401161
## 14948 95 2640 4.5 1105401101
## 14949 95 2692 4.0 1044744647
## 14950 95 2706 4.0 1043340043
## 14951 95 2735 4.0 1043340311
## 14952 95 2804 5.0 1069614356
## 14953 95 2952 4.0 1043339957
## 14954 95 2968 4.5 1105400903
## 14955 95 2985 4.0 1105401143
## 14956 95 2990 2.0 1043339283
## 14957 95 3019 5.0 1043340112
## 14958 95 3033 4.0 1105401122
## 14959 95 3053 3.0 1043340086
## 14960 95 3070 3.0 1105401136
## 14961 95 3071 4.0 1043340283
## 14962 95 3298 3.0 1043340283
## 14963 95 3361 4.0 1043339692
## 14964 95 3418 4.0 1048382977
## 14965 95 3424 4.5 1053153724
## 14966 95 3527 4.5 1105400926
## 14967 95 3690 2.0 1043339908
## 14968 95 3702 5.0 1105400825
## 14969 95 3703 5.0 1043340485
## 14970 95 3793 4.0 1105400868
## 14971 95 3840 3.0 1043339507
## 14972 95 3968 2.0 1043340134
## 14973 95 3994 3.0 1105400981
## 14974 95 4015 2.0 1043339957
## 14975 95 4068 4.0 1043340157
## 14976 95 4126 4.0 1043339544
## 14977 95 4235 5.0 1048382853
## 14978 95 4262 5.0 1043339870
## 14979 95 4270 3.0 1043339248
## 14980 95 4370 3.5 1105401170
## 14981 95 4378 4.0 1105400661
## 14982 95 4396 4.0 1043339808
## 14983 95 4732 1.0 1043339283
## 14984 95 4878 4.0 1105401219
## 14985 95 4901 4.0 1043339452
## 14986 95 4954 4.0 1043340248
## 14987 95 4973 5.0 1044744647
## 14988 95 4975 4.0 1043340018
## 14989 95 4979 4.0 1043339692
## 14990 95 5015 4.5 1105400652
## 14991 95 5027 4.0 1043339419
## 14992 95 5072 5.0 1043339248
## 14993 95 5151 4.0 1043339808
## 14994 95 5246 4.0 1043339571
## 14995 95 5247 4.0 1043339852
## 14996 95 5283 2.0 1043339957
## 14997 95 5349 4.0 1043340392
## 14998 95 5377 4.0 1048382853
## 14999 95 5378 4.0 1043339476
## 15000 95 5418 5.0 1048382977
## 15001 95 5445 4.0 1043340522
## 15002 95 5464 4.0 1048382977
## 15003 95 5507 3.0 1043339908
## 15004 95 5618 4.5 1105400677
## 15005 95 5619 4.0 1043339302
## 15006 95 5693 4.0 1044744622
## 15007 95 5792 4.0 1053153647
## 15008 95 5810 4.0 1043535872
## 15009 95 5812 4.0 1053153715
## 15010 95 5816 3.0 1053153706
## 15011 95 5902 5.0 1043535835
## 15012 95 5952 4.5 1069614400
## 15013 95 5956 4.0 1043535851
## 15014 95 6016 5.0 1043535817
## 15015 95 6051 5.0 1048382977
## 15016 95 6218 4.5 1071803774
## 15017 95 6288 4.0 1071803767
## 15018 95 6333 4.0 1105400829
## 15019 95 6365 4.0 1071803883
## 15020 95 6367 3.5 1071803926
## 15021 95 6378 3.5 1071803850
## 15022 95 6383 3.5 1071803988
## 15023 95 6502 4.5 1105400841
## 15024 95 6534 3.5 1071803939
## 15025 95 6708 3.0 1069614276
## 15026 95 6711 4.5 1069614288
## 15027 95 6796 4.5 1069614412
## 15028 95 6863 4.0 1069614249
## 15029 95 6873 4.5 1069614263
## 15030 95 6879 3.0 1069614304
## 15031 95 6893 4.0 1069614396
## 15032 95 6934 4.0 1069614309
## 15033 95 6936 4.0 1071803707
## 15034 95 6942 4.0 1069614268
## 15035 95 6947 4.0 1071803718
## 15036 95 6979 4.0 1105401227
## 15037 95 7361 5.0 1105400794
## 15038 95 7373 1.0 1105401093
## 15039 95 8633 4.5 1105401087
## 15040 95 8636 4.5 1105401213
## 15041 95 8644 4.0 1105400976
## 15042 96 1 5.0 964772990
## 15043 96 34 5.0 964773008
## 15044 96 50 5.0 964773008
## 15045 96 110 5.0 964772750
## 15046 96 150 5.0 964773108
## 15047 96 193 1.0 964774290
## 15048 96 260 5.0 964772681
## 15049 96 272 5.0 964773550
## 15050 96 296 5.0 964772972
## 15051 96 299 3.0 964773068
## 15052 96 306 1.0 964773021
## 15053 96 307 1.0 964773216
## 15054 96 367 5.0 964773672
## 15055 96 377 5.0 964772795
## 15056 96 380 3.0 964772817
## 15057 96 434 4.0 964774257
## 15058 96 454 4.0 964774139
## 15059 96 480 5.0 964772778
## 15060 96 527 5.0 964772956
## 15061 96 589 5.0 964772731
## 15062 96 648 3.0 964772610
## 15063 96 733 4.0 964772883
## 15064 96 780 3.0 964772862
## 15065 96 788 1.0 964773714
## 15066 96 858 4.0 964772681
## 15067 96 1036 3.0 964772750
## 15068 96 1079 5.0 964773877
## 15069 96 1089 5.0 964773108
## 15070 96 1094 4.0 964773119
## 15071 96 1097 4.0 964773672
## 15072 96 1188 5.0 964773068
## 15073 96 1198 5.0 964772622
## 15074 96 1200 5.0 964772731
## 15075 96 1210 5.0 964772712
## 15076 96 1214 5.0 964773743
## 15077 96 1220 3.0 964772847
## 15078 96 1221 4.0 964772610
## 15079 96 1291 4.0 964772731
## 15080 96 1296 5.0 964774041
## 15081 96 1304 4.0 964772712
## 15082 96 1387 4.0 964772712
## 15083 96 1587 2.0 964774275
## 15084 96 1610 4.0 964772847
## 15085 96 1617 5.0 964772972
## 15086 96 1625 4.0 964774008
## 15087 96 1721 2.0 964773788
## 15088 96 1942 5.0 964773851
## 15089 96 2000 3.0 964774094
## 15090 96 2021 4.0 964773714
## 15091 96 2028 4.0 964772956
## 15092 96 2054 2.0 964773714
## 15093 96 2058 5.0 964772862
## 15094 96 2115 5.0 964772610
## 15095 96 2174 4.0 964773672
## 15096 96 2289 5.0 964773041
## 15097 96 2294 5.0 964773978
## 15098 96 2340 3.0 964774200
## 15099 96 2353 5.0 964772795
## 15100 96 2396 4.0 964772940
## 15101 96 2571 4.0 964772731
## 15102 96 2628 2.0 964773686
## 15103 96 2716 5.0 964773743
## 15104 96 2858 5.0 964772972
## 15105 96 2944 3.0 964772712
## 15106 96 2947 3.0 964772764
## 15107 96 2948 3.0 964772778
## 15108 96 3033 1.0 964773251
## 15109 96 3060 5.0 964773160
## 15110 96 3175 5.0 964774067
## 15111 96 3176 4.0 964774079
## 15112 96 3256 4.0 964772817
## 15113 96 3418 5.0 964772750
## 15114 96 3499 2.0 964772610
## 15115 96 3555 3.0 964773602
## 15116 96 3578 4.0 964772750
## 15117 96 3633 2.0 964772712
## 15118 96 3635 2.0 964772847
## 15119 96 3819 3.0 964774067
## 15120 97 377 4.0 1047481515
## 15121 97 593 5.0 1043382047
## 15122 97 858 5.0 1043382068
## 15123 97 1193 4.0 1043382111
## 15124 97 1210 5.0 1043382136
## 15125 97 1961 2.0 1043381823
## 15126 97 2019 3.0 1043381994
## 15127 97 2028 5.0 1043382089
## 15128 97 2571 5.0 1047481450
## 15129 97 3257 4.0 1043382019
## 15130 97 3448 3.0 1043381994
## 15131 97 3555 4.0 1043382848
## 15132 97 3578 4.0 1043382744
## 15133 97 3623 5.0 1043382848
## 15134 97 3717 4.0 1043382867
## 15135 97 3793 5.0 1043382744
## 15136 97 3981 4.0 1047481354
## 15137 97 3996 5.0 1043382744
## 15138 97 3999 3.0 1047481289
## 15139 97 4011 5.0 1043383291
## 15140 97 4022 5.0 1043382998
## 15141 97 4025 3.0 1047481289
## 15142 97 4161 5.0 1043382884
## 15143 97 4270 5.0 1043383056
## 15144 97 4299 4.0 1043382848
## 15145 97 4306 5.0 1043383111
## 15146 97 4367 4.0 1043383075
## 15147 97 4386 4.0 1043382111
## 15148 97 4638 4.0 1043383075
## 15149 97 4643 4.0 1043382900
## 15150 97 4701 3.0 1047481180
## 15151 97 4963 5.0 1043383291
## 15152 97 4993 5.0 1043382998
## 15153 97 5109 4.0 1043382998
## 15154 97 5378 4.0 1047481215
## 15155 97 5420 3.0 1047481371
## 15156 98 1 4.5 1532457849
## 15157 98 356 5.0 1532457441
## 15158 98 364 3.0 1532457847
## 15159 98 593 4.5 1532457756
## 15160 98 608 4.0 1532458331
## 15161 98 858 3.0 1532458318
## 15162 98 904 5.0 1532458324
## 15163 98 1036 5.0 1532457796
## 15164 98 1193 4.5 1532458201
## 15165 98 1197 5.0 1532457921
## 15166 98 1207 4.0 1532458353
## 15167 98 1214 4.5 1532457890
## 15168 98 1219 5.0 1532458204
## 15169 98 1240 1.0 1532457892
## 15170 98 1258 5.0 1532457919
## 15171 98 1270 3.0 1532457845
## 15172 98 1333 3.0 1532458388
## 15173 98 1704 4.0 1532457433
## 15174 98 2324 4.0 1532457439
## 15175 98 3114 4.5 1532457852
## 15176 98 3499 4.5 1532458370
## 15177 98 4016 4.5 1532457794
## 15178 98 4226 4.0 1532457943
## 15179 98 4306 5.0 1532457782
## 15180 98 4720 5.0 1532458044
## 15181 98 4995 4.0 1532457950
## 15182 98 5299 3.5 1532457712
## 15183 98 5444 4.5 1532457999
## 15184 98 5618 4.0 1532458161
## 15185 98 6863 4.0 1532458000
## 15186 98 7153 1.5 1532457777
## 15187 98 7451 3.5 1532458020
## 15188 98 8529 3.5 1532458041
## 15189 98 8961 5.0 1532457742
## 15190 98 38038 5.0 1532458294
## 15191 98 46578 5.0 1532458168
## 15192 98 47099 5.0 1532458013
## 15193 98 50872 5.0 1532458002
## 15194 98 52975 4.0 1532457663
## 15195 98 53464 2.5 1532457575
## 15196 98 53993 4.0 1532457625
## 15197 98 55267 5.0 1532457689
## 15198 98 56152 4.0 1532457571
## 15199 98 56757 3.0 1532457519
## 15200 98 56775 4.0 1532457560
## 15201 98 56801 4.0 1532457659
## 15202 98 58047 2.0 1532457642
## 15203 98 59615 1.5 1532457486
## 15204 98 60040 4.0 1532457540
## 15205 98 60126 5.0 1532457590
## 15206 98 63859 3.0 1532457583
## 15207 98 63992 2.0 1532457530
## 15208 98 66934 4.0 1532457553
## 15209 98 67408 2.0 1532457633
## 15210 98 69644 1.5 1532457605
## 15211 98 71264 3.5 1532457585
## 15212 98 71745 0.5 1532457670
## 15213 98 72378 3.0 1532457529
## 15214 98 72641 3.5 1532457510
## 15215 98 74458 5.0 1532457910
## 15216 98 74789 2.0 1532457516
## 15217 98 79132 4.0 1532457409
## 15218 98 79139 3.0 1532457683
## 15219 98 81564 5.0 1532457544
## 15220 98 81845 5.0 1532457912
## 15221 98 81847 4.5 1532457483
## 15222 98 82461 1.5 1532457548
## 15223 98 83134 4.0 1532457616
## 15224 98 88163 5.0 1532457701
## 15225 98 88810 4.0 1532457903
## 15226 98 97921 5.0 1532457833
## 15227 98 97938 4.0 1532457941
## 15228 98 104841 4.5 1532457992
## 15229 98 109487 5.0 1532457413
## 15230 98 112852 3.0 1532457995
## 15231 98 116797 5.0 1532457767
## 15232 98 117176 4.0 1532457917
## 15233 98 122904 3.5 1532457779
## 15234 98 122912 5.0 1532457477
## 15235 98 122916 5.0 1532457746
## 15236 98 122918 4.0 1532457746
## 15237 98 122926 5.0 1532457752
## 15238 98 134130 4.5 1532457755
## 15239 98 134853 2.0 1532457748
## 15240 98 135143 2.5 1532457800
## 15241 98 152077 4.5 1532458398
## 15242 98 164179 5.0 1532457417
## 15243 98 168250 4.5 1532457987
## 15244 98 177765 5.0 1532457474
## 15245 98 179819 3.0 1532457961
## 15246 98 187541 4.0 1532457789
## 15247 98 187593 5.0 1532457913
## 15248 99 10 4.0 829827514
## 15249 99 22 4.0 829828005
## 15250 99 23 4.0 829828005
## 15251 99 122 4.0 829828005
## 15252 99 145 4.0 829828005
## 15253 99 150 5.0 829828005
## 15254 99 153 5.0 829828005
## 15255 99 160 2.0 829828005
## 15256 99 161 3.0 829828005
## 15257 99 163 5.0 829828005
## 15258 99 165 5.0 829828005
## 15259 99 168 5.0 829828006
## 15260 99 196 2.0 829828006
## 15261 99 204 1.0 829828007
## 15262 99 225 5.0 829828005
## 15263 99 227 3.0 829828005
## 15264 99 228 3.0 829828005
## 15265 99 231 5.0 829828005
## 15266 99 234 2.0 829828006
## 15267 99 236 5.0 829828006
## 15268 99 248 3.0 829828006
## 15269 99 252 5.0 829828006
## 15270 99 253 4.0 829828006
## 15271 99 256 4.0 829828006
## 15272 99 257 5.0 829828006
## 15273 99 259 3.0 829828006
## 15274 99 266 4.0 829828006
## 15275 99 276 4.0 829828006
## 15276 99 281 5.0 829828006
## 15277 99 282 4.0 829828006
## 15278 99 288 3.0 829828006
## 15279 99 292 5.0 829828006
## 15280 99 293 5.0 829828006
## 15281 99 296 5.0 829828006
## 15282 99 312 1.0 829828007
## 15283 99 315 3.0 829828006
## 15284 99 316 2.0 829828007
## 15285 99 318 5.0 829828006
## 15286 99 325 2.0 829828006
## 15287 99 333 5.0 829828007
## 15288 99 337 5.0 829828007
## 15289 99 339 5.0 829828007
## 15290 99 344 5.0 829828005
## 15291 99 349 5.0 829828005
## 15292 99 380 5.0 829828007
## 15293 99 413 3.0 829828005
## 15294 99 416 4.0 829828005
## 15295 99 420 2.0 829828005
## 15296 99 434 3.0 829828005
## 15297 99 435 2.0 829828005
## 15298 99 555 4.0 829828007
## 15299 99 588 5.0 829828005
## 15300 99 592 4.0 829828005
## 15301 100 3 3.5 1100183804
## 15302 100 11 4.0 1100184041
## 15303 100 16 4.5 1100185959
## 15304 100 17 4.5 1100184147
## 15305 100 19 1.0 1100183757
## 15306 100 28 4.5 1100184447
## 15307 100 62 4.0 1100185952
## 15308 100 74 4.0 1100186732
## 15309 100 89 4.0 1100186731
## 15310 100 95 4.5 1100185961
## 15311 100 104 3.5 1100183809
## 15312 100 168 4.5 1100185915
## 15313 100 222 4.0 1100184420
## 15314 100 223 3.5 1100185924
## 15315 100 234 4.0 1100186737
## 15316 100 235 1.0 1100183797
## 15317 100 237 4.0 1100186727
## 15318 100 261 4.5 1100185932
## 15319 100 266 4.0 1100183734
## 15320 100 296 3.5 1100184820
## 15321 100 356 4.0 1100184829
## 15322 100 357 4.0 1100184145
## 15323 100 368 4.5 1100183774
## 15324 100 377 4.0 1100184047
## 15325 100 380 3.5 1100184352
## 15326 100 441 4.0 1100186564
## 15327 100 497 4.0 1100183808
## 15328 100 508 4.0 1100185928
## 15329 100 537 4.0 1100186554
## 15330 100 539 4.5 1100184295
## 15331 100 553 4.5 1100183810
## 15332 100 555 4.0 1100185936
## 15333 100 587 4.0 1100184423
## 15334 100 590 4.0 1100184825
## 15335 100 592 4.0 1100184812
## 15336 100 594 3.0 1100183782
## 15337 100 597 4.5 1100184340
## 15338 100 605 4.5 1100186552
## 15339 100 648 4.0 1100185920
## 15340 100 838 4.5 1100184279
## 15341 100 899 4.5 1100184112
## 15342 100 900 4.0 1100184329
## 15343 100 914 4.0 1100184107
## 15344 100 916 4.5 1100184150
## 15345 100 919 4.5 1100183748
## 15346 100 920 4.0 1100184140
## 15347 100 923 3.5 1100185889
## 15348 100 932 4.0 1100184244
## 15349 100 933 4.0 1100184156
## 15350 100 934 4.5 1100186407
## 15351 100 1028 4.5 1100185898
## 15352 100 1035 4.0 1100185894
## 15353 100 1037 2.0 1100186356
## 15354 100 1059 4.0 1100184344
## 15355 100 1091 4.5 1100186403
## 15356 100 1101 5.0 1100184137
## 15357 100 1197 3.5 1100184059
## 15358 100 1203 4.0 1100186395
## 15359 100 1213 3.5 1100183731
## 15360 100 1220 3.0 1100183794
## 15361 100 1225 3.5 1100183792
## 15362 100 1246 4.5 1100185896
## 15363 100 1257 3.5 1100186363
## 15364 100 1265 3.5 1100184080
## 15365 100 1270 4.0 1100185872
## 15366 100 1277 4.0 1100184258
## 15367 100 1278 4.5 1100185868
## 15368 100 1288 2.0 1100185857
## 15369 100 1290 4.0 1100184356
## 15370 100 1299 3.5 1100186342
## 15371 100 1307 4.5 1100183745
## 15372 100 1380 4.0 1100184348
## 15373 100 1393 4.5 1100184077
## 15374 100 1407 4.0 1100185876
## 15375 100 1441 4.5 1100184416
## 15376 100 1500 4.5 1100185854
## 15377 100 1517 4.0 1100185861
## 15378 100 1580 4.0 1100185878
## 15379 100 1639 3.5 1100184117
## 15380 100 1674 3.0 1100184098
## 15381 100 1678 4.5 1100186254
## 15382 100 1680 4.5 1100184264
## 15383 100 1777 4.5 1100184536
## 15384 100 1784 3.5 1100183762
## 15385 100 1912 4.5 1100186251
## 15386 100 1923 3.5 1100183784
## 15387 100 1958 5.0 1100186258
## 15388 100 1961 3.5 1100183740
## 15389 100 1968 4.5 1100185874
## 15390 100 2005 4.5 1100186255
## 15391 100 2028 4.0 1100185865
## 15392 100 2100 3.5 1100184827
## 15393 100 2108 3.5 1100184281
## 15394 100 2125 4.5 1100184300
## 15395 100 2245 4.5 1100186146
## 15396 100 2248 3.5 1100184085
## 15397 100 2262 4.0 1100186135
## 15398 100 2291 4.0 1100184833
## 15399 100 2329 4.0 1100186142
## 15400 100 2396 4.5 1100184087
## 15401 100 2406 4.0 1100184250
## 15402 100 2423 5.0 1100186118
## 15403 100 2468 3.5 1100186104
## 15404 100 2496 4.0 1100186122
## 15405 100 2502 4.5 1100184810
## 15406 100 2513 2.0 1100186111
## 15407 100 2539 4.0 1100186099
## 15408 100 2671 4.5 1100184261
## 15409 100 2683 3.5 1100183767
## 15410 100 2706 3.5 1100184816
## 15411 100 2710 2.0 1100277691
## 15412 100 2716 3.5 1100184818
## 15413 100 2804 3.5 1100184831
## 15414 100 3098 4.0 1100186085
## 15415 100 3244 4.0 1100184414
## 15416 100 3259 4.5 1100186037
## 15417 100 3261 4.0 1100184332
## 15418 100 3274 4.0 1100186044
## 15419 100 3499 2.0 1100186048
## 15420 100 3512 4.0 1100184143
## 15421 100 3536 4.0 1100184302
## 15422 100 3717 4.0 1100186056
## 15423 100 3753 4.5 1100184808
## 15424 100 3911 3.5 1100186007
## 15425 100 4014 3.0 1100184091
## 15426 100 4041 5.0 1100184235
## 15427 100 4161 4.5 1100186004
## 15428 100 4246 4.5 1100184518
## 15429 100 4308 4.5 1100186012
## 15430 100 4571 3.0 1100186026
## 15431 100 4621 4.0 1100187132
## 15432 100 4623 3.5 1100187138
## 15433 100 4643 4.0 1100186018
## 15434 100 4995 4.0 1100184053
## 15435 100 5013 3.0 1100185970
## 15436 100 5299 3.5 1100184120
## 15437 100 5380 4.5 1100184334
## 15438 100 5620 5.0 1100186982
## 15439 100 5810 4.0 1100186786
## 15440 100 5989 4.5 1100185975
## 15441 100 6059 4.5 1100186774
## 15442 100 6183 4.5 1100184242
## 15443 100 6377 4.0 1100185965
## 15444 100 6785 4.5 1100184338
## 15445 100 6873 4.0 1100186781
## 15446 100 7149 3.5 1100184159
## 15447 100 8529 4.0 1100184289
## 15448 100 8636 4.5 1100186770
## 15449 101 223 4.0 968440895
## 15450 101 233 4.0 968440983
## 15451 101 358 2.0 968443787
## 15452 101 370 2.0 968440698
## 15453 101 785 3.0 968441058
## 15454 101 1093 5.0 968440947
## 15455 101 1127 4.0 968440828
## 15456 101 1210 4.0 968440698
## 15457 101 1719 5.0 968443804
## 15458 101 2318 5.0 968441029
## 15459 101 2337 3.0 968443714
## 15460 101 2390 3.0 968441080
## 15461 101 2395 5.0 968441198
## 15462 101 2396 4.0 968441198
## 15463 101 2433 3.0 968440895
## 15464 101 2490 2.0 968441120
## 15465 101 2492 1.0 968440828
## 15466 101 2502 3.0 968441120
## 15467 101 2541 3.0 968440914
## 15468 101 2560 4.0 968441171
## 15469 101 2580 4.0 968441029
## 15470 101 2598 2.0 968441139
## 15471 101 2599 5.0 968440947
## 15472 101 2600 4.0 968443749
## 15473 101 2683 3.0 968440850
## 15474 101 2692 4.0 968441171
## 15475 101 2694 3.0 968440874
## 15476 101 2700 4.0 968441198
## 15477 101 2702 4.0 968442375
## 15478 101 2706 4.0 968440828
## 15479 101 2707 4.0 968440850
## 15480 101 2712 5.0 968440983
## 15481 101 2716 4.0 968441005
## 15482 101 2722 3.0 968440914
## 15483 101 2723 2.0 968441102
## 15484 101 2762 4.0 968441198
## 15485 101 2770 2.0 968440874
## 15486 101 2841 3.0 968442375
## 15487 101 2858 4.0 968440828
## 15488 101 2908 4.0 968440874
## 15489 101 2959 5.0 968440983
## 15490 101 2997 5.0 968440850
## 15491 101 3005 2.0 968440874
## 15492 101 3081 4.0 968441198
## 15493 101 3159 4.0 968440983
## 15494 101 3160 4.0 968441080
## 15495 101 3174 5.0 968441080
## 15496 101 3175 4.0 968441005
## 15497 101 3179 3.0 968440828
## 15498 101 3203 4.0 968440914
## 15499 101 3219 4.0 968441120
## 15500 101 3285 4.0 968440850
## 15501 101 3298 4.0 968440874
## 15502 101 3394 1.0 968440719
## 15503 101 3578 4.0 968441029
## 15504 101 3623 1.0 968441102
## 15505 101 3717 4.0 968441029
## 15506 101 3751 4.0 968440720
## 15507 101 3752 2.0 968441080
## 15508 101 3783 4.0 968440698
## 15509 101 3793 4.0 968443749
## 15510 102 3 5.0 840635033
## 15511 102 6 3.0 835877535
## 15512 102 21 3.0 835876107
## 15513 102 23 3.0 835877570
## 15514 102 39 3.0 835876151
## 15515 102 47 5.0 835876045
## 15516 102 150 3.0 835875691
## 15517 102 153 3.0 835875790
## 15518 102 158 3.0 835876534
## 15519 102 160 3.0 835876194
## 15520 102 161 3.0 835875943
## 15521 102 163 3.0 835877307
## 15522 102 165 3.0 835875790
## 15523 102 172 3.0 835876471
## 15524 102 173 2.0 835876239
## 15525 102 186 3.0 835876384
## 15526 102 204 2.0 835876471
## 15527 102 223 5.0 835877270
## 15528 102 231 3.0 835875836
## 15529 102 236 3.0 835876272
## 15530 102 237 3.0 835877307
## 15531 102 253 3.0 835875992
## 15532 102 266 3.0 835876194
## 15533 102 288 4.0 835876045
## 15534 102 293 3.0 835876384
## 15535 102 296 5.0 835875691
## 15536 102 315 3.0 835876239
## 15537 102 318 4.0 835875836
## 15538 102 329 2.0 835877081
## 15539 102 344 4.0 835875790
## 15540 102 349 4.0 835875790
## 15541 102 350 3.0 835876384
## 15542 102 356 5.0 835876195
## 15543 102 364 4.0 835876151
## 15544 102 377 3.0 835876318
## 15545 102 380 3.0 835875691
## 15546 102 420 3.0 835877190
## 15547 102 432 3.0 835876239
## 15548 102 434 3.0 835875943
## 15549 102 440 3.0 835876318
## 15550 102 454 4.0 835876151
## 15551 102 457 4.0 835875992
## 15552 102 474 4.0 835877535
## 15553 102 480 3.0 835876239
## 15554 102 500 4.0 835877244
## 15555 102 539 3.0 835877244
## 15556 102 540 1.0 835877588
## 15557 102 552 3.0 835877342
## 15558 102 553 4.0 835876272
## 15559 102 586 4.0 835877270
## 15560 102 588 4.0 835875790
## 15561 102 589 4.0 835876272
## 15562 102 590 4.0 835875690
## 15563 102 592 3.0 835875690
## 15564 102 593 4.0 835875943
## 15565 102 802 3.0 840635071
## 15566 103 1 4.0 1431954238
## 15567 103 2 4.0 1431957270
## 15568 103 5 4.0 1431957598
## 15569 103 16 5.0 1450982615
## 15570 103 18 5.0 1431969228
## 15571 103 19 3.5 1431957278
## 15572 103 34 4.0 1431957104
## 15573 103 36 4.0 1431957252
## 15574 103 48 3.5 1431957563
## 15575 103 50 4.0 1431955220
## 15576 103 60 4.0 1431968436
## 15577 103 70 3.5 1431957632
## 15578 103 101 4.0 1431969655
## 15579 103 104 4.0 1431957331
## 15580 103 107 3.5 1431968291
## 15581 103 110 4.5 1431957016
## 15582 103 111 4.5 1431957192
## 15583 103 150 4.0 1431957022
## 15584 103 158 3.5 1431957583
## 15585 103 216 4.0 1431957990
## 15586 103 260 4.0 1431954922
## 15587 103 277 4.0 1450982770
## 15588 103 296 5.0 1431954439
## 15589 103 317 4.0 1431957402
## 15590 103 318 5.0 1431954380
## 15591 103 337 4.0 1431957343
## 15592 103 344 3.5 1431957046
## 15593 103 356 4.0 1431954248
## 15594 103 364 3.0 1431957059
## 15595 103 367 3.5 1522172093
## 15596 103 374 3.5 1432087064
## 15597 103 410 4.0 1431957336
## 15598 103 480 4.0 1431954240
## 15599 103 492 4.0 1431970359
## 15600 103 524 3.5 1431968121
## 15601 103 527 3.5 1431954472
## 15602 103 539 3.5 1431957145
## 15603 103 551 4.0 1431957297
## 15604 103 555 5.0 1431957445
## 15605 103 586 4.0 1431957135
## 15606 103 590 4.0 1431957038
## 15607 103 593 5.0 1431954229
## 15608 103 595 3.0 1431957062
## 15609 103 596 4.5 1431957572
## 15610 103 608 4.0 1431957042
## 15611 103 616 3.5 1431968086
## 15612 103 661 4.0 1431957763
## 15613 103 750 3.5 1431954454
## 15614 103 784 3.0 1431957452
## 15615 103 785 3.5 1431957768
## 15616 103 837 3.5 1431969072
## 15617 103 858 4.5 1431954477
## 15618 103 912 5.0 1431954433
## 15619 103 920 4.5 1431957405
## 15620 103 923 4.0 1477519255
## 15621 103 924 4.0 1431957200
## 15622 103 953 4.0 1431954365
## 15623 103 969 4.0 1431957809
## 15624 103 1012 4.0 1431970102
## 15625 103 1015 3.0 1431970006
## 15626 103 1025 4.0 1431969093
## 15627 103 1028 4.0 1431957550
## 15628 103 1029 4.0 1431957926
## 15629 103 1032 4.5 1431968181
## 15630 103 1033 4.0 1431969698
## 15631 103 1035 4.0 1431957547
## 15632 103 1059 4.0 1431957797
## 15633 103 1064 3.5 1431970300
## 15634 103 1073 4.0 1431957110
## 15635 103 1084 5.0 1431957888
## 15636 103 1089 4.5 1432086525
## 15637 103 1093 3.5 1431968141
## 15638 103 1179 4.5 1440773393
## 15639 103 1193 4.5 1431954401
## 15640 103 1196 4.5 1431955078
## 15641 103 1197 3.5 1431954492
## 15642 103 1198 3.5 1431957032
## 15643 103 1201 5.0 1431954445
## 15644 103 1206 5.0 1477364701
## 15645 103 1208 4.0 1431957246
## 15646 103 1210 3.5 1431957028
## 15647 103 1213 5.0 1431954394
## 15648 103 1221 4.5 1431954396
## 15649 103 1222 5.0 1477364699
## 15650 103 1228 5.0 1431957900
## 15651 103 1230 4.0 1432086587
## 15652 103 1244 4.5 1431968039
## 15653 103 1245 5.0 1431968899
## 15654 103 1247 4.5 1431957381
## 15655 103 1252 4.5 1431957466
## 15656 103 1258 4.0 1432137354
## 15657 103 1271 4.0 1431957950
## 15658 103 1278 5.0 1431957456
## 15659 103 1282 3.5 1431957628
## 15660 103 1288 4.0 1431957401
## 15661 103 1291 4.0 1431957092
## 15662 103 1293 4.5 1431957813
## 15663 103 1296 3.5 1431968438
## 15664 103 1348 4.0 1431969973
## 15665 103 1358 4.0 1431957585
## 15666 103 1367 3.5 1431957998
## 15667 103 1387 4.0 1431957264
## 15668 103 1394 4.5 1431957447
## 15669 103 1466 4.5 1431957801
## 15670 103 1566 4.5 1431969305
## 15671 103 1588 4.5 1431969602
## 15672 103 1610 3.5 1431957286
## 15673 103 1682 4.5 1431957209
## 15674 103 1688 4.0 1431969969
## 15675 103 1693 4.0 1431969376
## 15676 103 1702 3.5 1431969755
## 15677 103 1704 4.5 1431957130
## 15678 103 1729 4.5 1431957716
## 15679 103 1732 5.0 1432086520
## 15680 103 1884 4.5 1431968228
## 15681 103 1921 4.5 1431957966
## 15682 103 1945 4.0 1522172361
## 15683 103 1954 5.0 1431957501
## 15684 103 1961 5.0 1440773613
## 15685 103 1968 4.0 1431957248
## 15686 103 1994 4.0 1431957928
## 15687 103 2006 3.5 1431957566
## 15688 103 2018 3.5 1522172366
## 15689 103 2028 4.0 1431957058
## 15690 103 2054 3.5 1431957358
## 15691 103 2059 3.5 1431970225
## 15692 103 2078 4.0 1431957973
## 15693 103 2080 3.5 1431957821
## 15694 103 2087 5.0 1431968251
## 15695 103 2088 4.0 1431970091
## 15696 103 2096 4.0 1431968485
## 15697 103 2124 4.0 1431968113
## 15698 103 2144 4.0 1431958000
## 15699 103 2161 3.5 1431957850
## 15700 103 2174 4.0 1431957295
## 15701 103 2194 5.0 1431957424
## 15702 103 2231 5.0 1431968370
## 15703 103 2291 4.5 1431957280
## 15704 103 2294 4.0 1431957820
## 15705 103 2329 5.0 1440773468
## 15706 103 2335 4.0 1431968907
## 15707 103 2384 4.0 1431969123
## 15708 103 2396 5.0 1431957212
## 15709 103 2409 4.0 1431969127
## 15710 103 2410 4.0 1431969244
## 15711 103 2411 4.0 1431969339
## 15712 103 2421 3.5 1522172157
## 15713 103 2423 5.0 1431968901
## 15714 103 2501 4.5 1431968208
## 15715 103 2529 3.5 1431957659
## 15716 103 2571 4.0 1431954260
## 15717 103 2628 3.5 1431957094
## 15718 103 2687 2.5 1431969185
## 15719 103 2706 3.5 1431957231
## 15720 103 2710 3.5 1431957310
## 15721 103 2712 4.5 1440773606
## 15722 103 2716 3.5 1431957148
## 15723 103 2720 3.5 1431969711
## 15724 103 2761 3.0 1431968046
## 15725 103 2791 3.5 1431957320
## 15726 103 2797 4.0 1431957304
## 15727 103 2804 5.0 1431957623
## 15728 103 2918 5.0 1431957241
## 15729 103 2951 4.5 1431968489
## 15730 103 2953 5.0 1431968351
## 15731 103 2959 5.0 1431954432
## 15732 103 2997 5.0 1462084162
## 15733 103 3034 4.5 1431969476
## 15734 103 3081 4.0 1431957609
## 15735 103 3087 4.5 1431969097
## 15736 103 3160 5.0 1477364736
## 15737 103 3174 4.5 1431968191
## 15738 103 3176 4.0 1431957558
## 15739 103 3450 3.5 1431968936
## 15740 103 3468 5.0 1431969791
## 15741 103 3481 4.5 1440773438
## 15742 103 3535 4.5 1431968148
## 15743 103 3552 4.5 1431957993
## 15744 103 3668 4.0 1431970335
## 15745 103 3671 4.0 1431957804
## 15746 103 3681 5.0 1431969554
## 15747 103 3735 5.0 1431969685
## 15748 103 3751 4.0 1431957391
## 15749 103 3949 5.0 1431957513
## 15750 103 3988 3.5 1431969057
## 15751 103 4002 4.5 1431968260
## 15752 103 4011 4.0 1431957351
## 15753 103 4016 3.5 1431969168
## 15754 103 4019 5.0 1431968894
## 15755 103 4027 5.0 1431957315
## 15756 103 4148 3.5 1431968312
## 15757 103 4226 5.0 1431954594
## 15758 103 4232 2.5 1431969802
## 15759 103 4254 3.5 1522172173
## 15760 103 4262 5.0 1431957877
## 15761 103 4306 3.5 1431957080
## 15762 103 4388 3.0 1431970057
## 15763 103 4489 4.0 1431969595
## 15764 103 4677 4.0 1522172168
## 15765 103 4734 4.0 1431968881
## 15766 103 4816 3.5 1431968287
## 15767 103 4848 5.0 1440773368
## 15768 103 4873 5.0 1431970392
## 15769 103 4881 5.0 1431969702
## 15770 103 4886 3.5 1431957215
## 15771 103 4896 2.5 1431957373
## 15772 103 4973 5.0 1431954565
## 15773 103 4993 4.0 1431955231
## 15774 103 5010 4.0 1431957891
## 15775 103 5014 4.0 1431970322
## 15776 103 5103 4.0 1431970148
## 15777 103 5218 3.5 1431957737
## 15778 103 5349 3.0 1431957240
## 15779 103 5378 3.0 1431957388
## 15780 103 5388 4.0 1431968885
## 15781 103 5444 4.0 1431969562
## 15782 103 5618 4.0 1431954589
## 15783 103 5669 3.0 1431957703
## 15784 103 5673 4.5 1448753463
## 15785 103 5810 4.0 1431969397
## 15786 103 5816 2.5 1431957518
## 15787 103 5952 3.5 1431970503
## 15788 103 5956 5.0 1431968450
## 15789 103 6016 5.0 1431954407
## 15790 103 6373 3.5 1431957980
## 15791 103 6377 3.5 1431957229
## 15792 103 6440 4.5 1431970115
## 15793 103 6534 3.0 1431969444
## 15794 103 6539 4.5 1431957197
## 15795 103 6565 4.0 1431969414
## 15796 103 6711 5.0 1431957425
## 15797 103 6870 4.5 1431968165
## 15798 103 6873 4.0 1477364928
## 15799 103 6874 4.5 1431957262
## 15800 103 6936 5.0 1431969576
## 15801 103 6957 4.0 1431970073
## 15802 103 7153 4.0 1431955214
## 15803 103 7361 4.5 1431957254
## 15804 103 7367 3.5 1477364901
## 15805 103 7438 5.0 1431970574
## 15806 103 8360 3.0 1431957504
## 15807 103 8368 2.0 1431957616
## 15808 103 8376 5.0 1431968854
## 15809 103 8636 3.0 1431957433
## 15810 103 8641 4.0 1431969308
## 15811 103 8807 4.0 1431970127
## 15812 103 8950 4.5 1431969278
## 15813 103 8961 3.5 1431957306
## 15814 103 8970 4.0 1431968494
## 15815 103 8972 3.5 1431969469
## 15816 103 27706 3.5 1431970170
## 15817 103 30793 3.5 1431968286
## 15818 103 31658 4.5 1431969137
## 15819 103 33493 2.0 1431957697
## 15820 103 33794 4.5 1431957328
## 15821 103 34437 4.0 1431970451
## 15822 103 35836 3.5 1431957935
## 15823 103 37729 4.0 1431969626
## 15824 103 37733 3.5 1440773482
## 15825 103 40815 4.0 1431957906
## 15826 103 40819 4.5 1431968863
## 15827 103 41566 3.5 1431968361
## 15828 103 41569 4.0 1431969086
## 15829 103 45517 3.5 1431969581
## 15830 103 45722 4.0 1431957916
## 15831 103 46723 4.5 1431969676
## 15832 103 48516 4.5 1522172129
## 15833 103 48780 4.5 1431957780
## 15834 103 50872 4.0 1431954362
## 15835 103 50912 3.5 1477364912
## 15836 103 53125 4.5 1431969172
## 15837 103 54001 2.5 1431968897
## 15838 103 55247 5.0 1431969406
## 15839 103 55820 4.5 1431957871
## 15840 103 56367 3.5 1431957829
## 15841 103 56757 4.0 1431970089
## 15842 103 56782 4.5 1477364740
## 15843 103 57522 3.5 1431956974
## 15844 103 58559 5.0 1431954562
## 15845 103 58803 4.0 1440773176
## 15846 103 58972 3.5 1431956316
## 15847 103 59022 4.0 1431955536
## 15848 103 59315 1.5 1431957691
## 15849 103 59615 2.5 1431969635
## 15850 103 59784 3.0 1431969490
## 15851 103 60040 3.5 1431955306
## 15852 103 60069 4.0 1431955134
## 15853 103 60289 2.0 1431956747
## 15854 103 60756 4.0 1431955403
## 15855 103 61323 4.0 1477364893
## 15856 103 62553 4.0 1431956239
## 15857 103 62999 3.5 1431955515
## 15858 103 64114 1.0 1431956615
## 15859 103 64614 5.0 1522172064
## 15860 103 65088 3.5 1431955687
## 15861 103 65577 3.0 1431956250
## 15862 103 65802 2.5 1431955821
## 15863 103 68157 5.0 1440990360
## 15864 103 68954 3.5 1431954988
## 15865 103 69122 4.0 1431968235
## 15866 103 69140 4.0 1522172162
## 15867 103 69844 1.5 1431969586
## 15868 103 70728 4.0 1431956125
## 15869 103 71745 3.0 1431955479
## 15870 103 72226 4.0 1431955348
## 15871 103 72407 2.5 1431955494
## 15872 103 72641 4.0 1431955337
## 15873 103 72998 3.0 1431957882
## 15874 103 73017 4.0 1431969047
## 15875 103 73042 2.0 1431956245
## 15876 103 74698 2.0 1431956382
## 15877 103 74789 3.0 1431970351
## 15878 103 77206 3.5 1431956434
## 15879 103 77427 0.5 1431956137
## 15880 103 77561 0.5 1431969639
## 15881 103 78469 2.5 1440773258
## 15882 103 78499 3.0 1431968941
## 15883 103 78772 2.5 1431955587
## 15884 103 79091 4.0 1431955281
## 15885 103 79132 4.5 1431957494
## 15886 103 79134 3.5 1431955808
## 15887 103 79572 2.5 1431956868
## 15888 103 80463 4.0 1431969220
## 15889 103 80572 4.0 1431956719
## 15890 103 80586 3.5 1431956446
## 15891 103 81156 4.0 1431956024
## 15892 103 81819 4.5 1431956042
## 15893 103 81834 2.0 1431969741
## 15894 103 81932 5.0 1462084167
## 15895 103 82854 3.0 1431956278
## 15896 103 84944 4.0 1431955459
## 15897 103 85796 2.0 1431956261
## 15898 103 86014 3.5 1431956891
## 15899 103 86298 3.5 1431955754
## 15900 103 86815 3.5 1431956596
## 15901 103 86882 4.5 1477519404
## 15902 103 87194 3.5 1431956477
## 15903 103 87222 3.0 1431955580
## 15904 103 88108 3.0 1431956837
## 15905 103 88125 2.0 1431969679
## 15906 103 88744 3.5 1431955319
## 15907 103 88810 3.5 1431955378
## 15908 103 89470 4.0 1431955558
## 15909 103 89492 4.0 1431955333
## 15910 103 89745 3.0 1431969271
## 15911 103 89774 4.5 1431955564
## 15912 103 90522 4.0 1431956311
## 15913 103 90866 4.0 1431955383
## 15914 103 90890 4.0 1431956407
## 15915 103 91126 4.0 1431956061
## 15916 103 91500 3.5 1431970014
## 15917 103 91529 4.5 1431969361
## 15918 103 91542 4.0 1431955325
## 15919 103 91653 3.5 1431956017
## 15920 103 91671 1.0 1431956774
## 15921 103 91976 3.5 1431955827
## 15922 103 96079 4.0 1431970406
## 15923 103 96728 4.0 1477364754
## 15924 103 99114 4.5 1431955015
## 15925 103 99764 3.5 1431954625
## 15926 103 105844 4.0 1431955066
## 15927 103 106766 3.5 1477364924
## 15928 103 109374 4.0 1432086538
## 15929 103 109487 4.5 1431955250
## 15930 103 111781 4.0 1440773645
## 15931 103 112556 4.5 1431955249
## 15932 103 116799 4.0 1477364747
## 15933 103 117529 4.0 1440773703
## 15934 103 122882 4.0 1431970494
## 15935 103 122886 2.5 1477364372
## 15936 103 132046 1.0 1440773794
## 15937 103 134853 3.5 1440773774
## 15938 103 134881 5.0 1440773409
## 15939 103 139642 3.5 1440773846
## 15940 103 140715 4.5 1440773817
## 15941 103 148626 5.0 1477364363
## 15942 103 168250 3.0 1522172079
## 15943 104 2 3.0 1114809641
## 15944 104 10 3.0 1048595683
## 15945 104 31 4.0 1049135743
## 15946 104 39 4.0 1048587379
## 15947 104 47 0.5 1053336550
## 15948 104 87 3.0 1048795372
## 15949 104 105 4.0 1048595377
## 15950 104 110 1.0 1090595910
## 15951 104 260 3.0 1049044730
## 15952 104 293 4.0 1110558303
## 15953 104 342 4.0 1048587404
## 15954 104 356 4.0 1048586269
## 15955 104 357 5.0 1048587390
## 15956 104 360 3.0 1136331301
## 15957 104 364 4.0 1048589315
## 15958 104 367 3.0 1048587616
## 15959 104 380 3.5 1090595885
## 15960 104 436 1.5 1055630122
## 15961 104 466 3.5 1146222486
## 15962 104 468 3.5 1053336519
## 15963 104 471 4.5 1238111129
## 15964 104 500 3.0 1048587670
## 15965 104 515 3.0 1098565936
## 15966 104 527 4.5 1053336374
## 15967 104 532 3.0 1048587682
## 15968 104 539 4.0 1048587616
## 15969 104 586 3.0 1048595309
## 15970 104 588 4.0 1048589315
## 15971 104 592 3.0 1113078373
## 15972 104 594 4.0 1048590891
## 15973 104 595 5.0 1048589291
## 15974 104 597 4.0 1048590395
## 15975 104 608 4.0 1292698035
## 15976 104 616 3.0 1048589218
## 15977 104 674 3.0 1048787617
## 15978 104 709 3.0 1048589254
## 15979 104 733 3.0 1049205396
## 15980 104 743 2.5 1293832255
## 15981 104 745 5.0 1048587333
## 15982 104 780 4.0 1048595468
## 15983 104 783 3.0 1048589315
## 15984 104 837 3.0 1294417428
## 15985 104 838 4.0 1049291806
## 15986 104 858 1.5 1055630130
## 15987 104 901 4.0 1048589829
## 15988 104 914 4.0 1048586285
## 15989 104 918 3.5 1257078112
## 15990 104 919 3.0 1090595804
## 15991 104 934 3.5 1053336487
## 15992 104 936 3.5 1056228966
## 15993 104 938 3.0 1161675732
## 15994 104 1022 4.0 1048590907
## 15995 104 1088 3.0 1048590956
## 15996 104 1136 4.5 1292699463
## 15997 104 1148 5.0 1048587333
## 15998 104 1206 3.0 1048795254
## 15999 104 1220 4.0 1053207006
## 16000 104 1223 4.0 1048587352
## 16001 104 1246 4.0 1048586355
## 16002 104 1247 4.0 1048595744
## 16003 104 1253 3.0 1048795314
## 16004 104 1265 4.0 1048587352
## 16005 104 1270 2.0 1048586355
## 16006 104 1275 3.0 1048586355
## 16007 104 1288 4.0 1048590877
## 16008 104 1359 3.0 1048794551
## 16009 104 1380 4.5 1053336368
## 16010 104 1391 3.0 1048586375
## 16011 104 1408 3.0 1050049986
## 16012 104 1513 3.0 1048587616
## 16013 104 1517 2.0 1048590063
## 16014 104 1566 4.0 1051308383
## 16015 104 1569 4.5 1053336412
## 16016 104 1580 3.0 1048586389
## 16017 104 1641 4.0 1048587417
## 16018 104 1653 3.0 1048793980
## 16019 104 1680 4.0 1048795093
## 16020 104 1688 3.0 1048589328
## 16021 104 1772 4.0 1053207018
## 16022 104 1777 3.5 1053336503
## 16023 104 1833 2.5 1079946599
## 16024 104 1882 2.0 1048595156
## 16025 104 1947 4.0 1048590891
## 16026 104 1999 0.5 1053336552
## 16027 104 2040 3.0 1048793884
## 16028 104 2078 4.0 1048590907
## 16029 104 2080 3.5 1356553966
## 16030 104 2081 4.0 1048589254
## 16031 104 2106 3.0 1049044431
## 16032 104 2144 3.0 1136331316
## 16033 104 2153 2.0 1049135578
## 16034 104 2294 3.0 1048589315
## 16035 104 2300 3.0 1048590877
## 16036 104 2325 3.5 1165481857
## 16037 104 2355 4.0 1048589315
## 16038 104 2396 3.0 1048587333
## 16039 104 2423 2.5 1136331431
## 16040 104 2424 4.5 1053336380
## 16041 104 2470 3.0 1048794772
## 16042 104 2485 3.0 1048590689
## 16043 104 2502 3.0 1115412831
## 16044 104 2551 2.0 1101152649
## 16045 104 2572 5.0 1048586179
## 16046 104 2581 4.0 1056228899
## 16047 104 2622 3.0 1048595577
## 16048 104 2628 3.0 1049044730
## 16049 104 2671 5.0 1049044657
## 16050 104 2683 3.0 1048590064
## 16051 104 2690 4.0 1090595943
## 16052 104 2692 4.0 1078080941
## 16053 104 2701 2.0 1048589904
## 16054 104 2724 4.0 1048590425
## 16055 104 2746 4.0 1048590956
## 16056 104 2794 3.0 1048794930
## 16057 104 2795 3.0 1048794930
## 16058 104 2837 3.0 1049103610
## 16059 104 2987 4.0 1048589254
## 16060 104 3033 4.0 1048589966
## 16061 104 3034 4.0 1048589218
## 16062 104 3060 4.0 1048587390
## 16063 104 3163 3.0 1123111563
## 16064 104 3175 4.0 1062578622
## 16065 104 3253 4.0 1048587596
## 16066 104 3325 2.0 1048586873
## 16067 104 3408 4.0 1048586788
## 16068 104 3489 3.5 1053336440
## 16069 104 3671 3.5 1146222433
## 16070 104 3675 3.5 1257078093
## 16071 104 3719 2.0 1048586776
## 16072 104 3746 3.0 1345204971
## 16073 104 3751 4.0 1065511589
## 16074 104 3844 3.5 1377129899
## 16075 104 3911 3.0 1345204917
## 16076 104 3977 3.0 1062578084
## 16077 104 4016 4.0 1048586684
## 16078 104 4018 3.5 1053336498
## 16079 104 4039 3.5 1325159242
## 16080 104 4069 4.0 1061389919
## 16081 104 4226 4.0 1301182957
## 16082 104 4246 4.0 1048586848
## 16083 104 4291 3.5 1053336453
## 16084 104 4299 3.0 1095373264
## 16085 104 4306 4.5 1053336418
## 16086 104 4308 5.0 1048586839
## 16087 104 4447 4.0 1048590506
## 16088 104 4476 4.0 1048590374
## 16089 104 4639 3.0 1048590577
## 16090 104 4641 2.5 1146222329
## 16091 104 4663 4.0 1048787768
## 16092 104 4676 3.0 1078081284
## 16093 104 4700 4.0 1048590523
## 16094 104 4740 3.5 1082714338
## 16095 104 4741 4.0 1048586588
## 16096 104 4886 4.0 1048586617
## 16097 104 4896 4.5 1053336345
## 16098 104 4912 3.0 1048590967
## 16099 104 4941 2.5 1079946642
## 16100 104 4963 3.5 1416241898
## 16101 104 4973 5.0 1048586531
## 16102 104 4993 3.0 1048586475
## 16103 104 5013 3.5 1129242175
## 16104 104 5218 3.5 1071746233
## 16105 104 5296 3.0 1048590485
## 16106 104 5299 4.0 1048587103
## 16107 104 5349 3.5 1101152665
## 16108 104 5380 4.0 1101152684
## 16109 104 5460 3.0 1050598939
## 16110 104 5481 2.0 1048590064
## 16111 104 5500 4.0 1146222529
## 16112 104 5541 3.5 1146222498
## 16113 104 5577 1.5 1095373281
## 16114 104 5618 4.0 1087721492
## 16115 104 5796 2.0 1371162646
## 16116 104 5816 4.5 1053336400
## 16117 104 5952 4.0 1048586462
## 16118 104 5957 3.5 1146222373
## 16119 104 5991 5.0 1048586982
## 16120 104 6012 3.0 1189089748
## 16121 104 6030 2.0 1048591010
## 16122 104 6060 4.0 1048587050
## 16123 104 6169 3.0 1048586218
## 16124 104 6188 2.0 1299097827
## 16125 104 6218 4.0 1113078164
## 16126 104 6238 4.0 1048587200
## 16127 104 6367 4.0 1076898313
## 16128 104 6377 4.0 1068925612
## 16129 104 6535 3.5 1090595701
## 16130 104 6539 3.0 1161675780
## 16131 104 6579 4.5 1060454905
## 16132 104 6593 4.0 1071746249
## 16133 104 6711 3.0 1161675752
## 16134 104 6773 3.5 1355593950
## 16135 104 6873 3.5 1294099837
## 16136 104 6942 4.5 1068925595
## 16137 104 6996 2.0 1076898243
## 16138 104 7034 5.0 1076898196
## 16139 104 7036 3.0 1076898203
## 16140 104 7050 4.0 1292699703
## 16141 104 7155 4.0 1074960132
## 16142 104 7297 4.0 1247007805
## 16143 104 7346 3.5 1123111555
## 16144 104 7361 2.5 1200096885
## 16145 104 7375 3.0 1189089731
## 16146 104 7380 3.5 1325159204
## 16147 104 8360 4.0 1292699503
## 16148 104 8368 4.0 1087721472
## 16149 104 8533 4.0 1377184795
## 16150 104 8636 3.5 1136331284
## 16151 104 8643 2.5 1337121520
## 16152 104 8796 3.5 1090595771
## 16153 104 8865 3.5 1292698099
## 16154 104 8866 3.5 1097062455
## 16155 104 8961 4.0 1101152609
## 16156 104 8972 4.0 1205534639
## 16157 104 25937 3.5 1257078081
## 16158 104 27706 2.5 1131231485
## 16159 104 30793 4.5 1129242195
## 16160 104 32300 3.0 1238331147
## 16161 104 33004 4.0 1294441573
## 16162 104 33615 3.0 1231167741
## 16163 104 37729 3.5 1357584407
## 16164 104 38038 5.0 1130609197
## 16165 104 40815 4.5 1136331474
## 16166 104 41566 4.5 1219930219
## 16167 104 41573 3.5 1292713922
## 16168 104 45175 4.0 1165920392
## 16169 104 46578 4.0 1293984190
## 16170 104 47629 4.0 1325962571
## 16171 104 47997 4.0 1416241932
## 16172 104 48780 4.5 1294573596
## 16173 104 49286 4.0 1356553985
## 16174 104 50872 3.5 1193686193
## 16175 104 52287 4.0 1299188638
## 16176 104 52722 3.0 1199053725
## 16177 104 52975 4.0 1231167773
## 16178 104 53121 3.5 1292699507
## 16179 104 53125 3.0 1357584303
## 16180 104 53466 3.0 1313833961
## 16181 104 54001 4.0 1189089397
## 16182 104 54259 4.0 1355729646
## 16183 104 54780 3.5 1357855880
## 16184 104 55052 4.0 1371162628
## 16185 104 56171 4.0 1199053741
## 16186 104 56367 4.0 1411775508
## 16187 104 56775 3.0 1332630156
## 16188 104 56949 3.5 1325159191
## 16189 104 59501 3.5 1357584330
## 16190 104 60397 4.5 1219930232
## 16191 104 68954 4.0 1377129926
## 16192 104 69988 2.5 1351210057
## 16193 104 72737 3.5 1351209937
## 16194 104 72998 3.0 1292698887
## 16195 104 73017 3.5 1292699792
## 16196 104 74789 3.0 1292698386
## 16197 104 76093 4.0 1416242008
## 16198 104 76251 4.0 1332630171
## 16199 104 79702 3.0 1377129885
## 16200 104 80549 4.0 1332630178
## 16201 104 80584 4.0 1293920621
## 16202 104 81834 4.0 1377184813
## 16203 104 81845 4.0 1352760302
## 16204 104 81847 4.0 1351209920
## 16205 104 85401 2.5 1352760286
## 16206 104 89753 4.5 1325800092
## 16207 104 89904 4.0 1351210078
## 16208 104 91500 4.0 1347613115
## 16209 104 93805 3.5 1351209968
## 16210 104 94015 3.0 1357584388
## 16211 104 94150 4.0 1351210102
## 16212 104 94833 4.0 1351210039
## 16213 104 95449 2.5 1416241957
## 16214 104 108190 3.5 1411775477
## 16215 104 114180 4.0 1411775490
## 16216 105 6 4.0 1446773632
## 16217 105 16 4.5 1446749417
## 16218 105 32 3.5 1446571805
## 16219 105 47 5.0 1446571714
## 16220 105 50 5.0 1446571713
## 16221 105 110 3.5 1446571835
## 16222 105 111 4.5 1446571897
## 16223 105 213 4.5 1446610221
## 16224 105 215 4.0 1447579944
## 16225 105 260 4.0 1446572093
## 16226 105 293 5.0 1446571797
## 16227 105 296 5.0 1446571768
## 16228 105 306 5.0 1446572004
## 16229 105 307 4.5 1446572181
## 16230 105 308 4.5 1446572583
## 16231 105 318 5.0 1446571534
## 16232 105 356 3.5 1446572081
## 16233 105 431 4.0 1447574282
## 16234 105 527 3.5 1446571560
## 16235 105 541 4.0 1446571848
## 16236 105 589 4.0 1446571832
## 16237 105 593 4.5 1446571795
## 16238 105 608 4.0 1446571800
## 16239 105 665 4.5 1447574325
## 16240 105 714 4.5 1448196268
## 16241 105 750 4.0 1447574331
## 16242 105 778 5.0 1447574041
## 16243 105 858 5.0 1447574026
## 16244 105 903 4.0 1447579797
## 16245 105 904 4.5 1447574553
## 16246 105 905 4.0 1448195403
## 16247 105 909 4.0 1447574396
## 16248 105 912 4.0 1447574048
## 16249 105 914 4.0 1448214363
## 16250 105 915 4.0 1448214365
## 16251 105 922 4.0 1448195659
## 16252 105 923 4.0 1447574060
## 16253 105 924 4.0 1448214035
## 16254 105 926 4.0 1447574054
## 16255 105 935 4.0 1526207027
## 16256 105 1089 5.0 1447586269
## 16257 105 1111 4.0 1448195945
## 16258 105 1172 4.0 1447574093
## 16259 105 1178 4.0 1447574111
## 16260 105 1193 4.5 1447574045
## 16261 105 1198 4.0 1448196223
## 16262 105 1199 4.0 1447574317
## 16263 105 1201 4.0 1448168233
## 16264 105 1203 4.5 1447574052
## 16265 105 1206 5.0 1447574118
## 16266 105 1207 4.0 1448168239
## 16267 105 1208 5.0 1448168140
## 16268 105 1211 4.0 1447586844
## 16269 105 1213 5.0 1447574024
## 16270 105 1214 4.0 1448195676
## 16271 105 1219 4.5 1447574141
## 16272 105 1221 4.5 1447574027
## 16273 105 1222 4.0 1447574057
## 16274 105 1225 5.0 1448196381
## 16275 105 1227 4.0 1448195899
## 16276 105 1230 4.0 1447579516
## 16277 105 1233 4.0 1447574144
## 16278 105 1234 4.0 1448196037
## 16279 105 1235 3.5 1447574462
## 16280 105 1243 3.0 1448196240
## 16281 105 1244 5.0 1447574383
## 16282 105 1247 4.0 1447579678
## 16283 105 1258 4.0 1448168145
## 16284 105 1259 4.0 1447574023
## 16285 105 1260 4.0 1447574222
## 16286 105 1263 4.0 1448168170
## 16287 105 1265 4.0 1447579905
## 16288 105 1266 4.0 1448189177
## 16289 105 1272 3.5 1447586906
## 16290 105 1274 3.5 1448214289
## 16291 105 1281 5.0 1447574313
## 16292 105 1289 4.0 1447586830
## 16293 105 1293 4.0 1448195772
## 16294 105 1354 4.0 1448647819
## 16295 105 1407 4.0 1448214382
## 16296 105 1446 4.5 1448210342
## 16297 105 1466 4.5 1447574276
## 16298 105 1617 4.5 1447586598
## 16299 105 1704 4.0 1448196395
## 16300 105 1809 4.0 1447586646
## 16301 105 2019 4.5 1447574114
## 16302 105 2028 5.0 1448213999
## 16303 105 2076 4.0 1447586857
## 16304 105 2131 5.0 1526207246
## 16305 105 2324 3.5 1446571537
## 16306 105 2329 4.0 1446571577
## 16307 105 2351 4.0 1448195464
## 16308 105 2360 4.0 1448214688
## 16309 105 2495 5.0 1448214504
## 16310 105 2502 3.0 1446774070
## 16311 105 2542 5.0 1446749398
## 16312 105 2571 4.0 1446571567
## 16313 105 2700 4.0 1447563114
## 16314 105 2712 4.5 1448647872
## 16315 105 2731 4.0 1448195454
## 16316 105 2762 4.5 1448196106
## 16317 105 2843 5.0 1447411148
## 16318 105 2858 5.0 1446749499
## 16319 105 2925 3.5 1447411285
## 16320 105 2931 4.5 1447574097
## 16321 105 2959 5.0 1446571567
## 16322 105 2966 4.0 1448210475
## 16323 105 3052 4.0 1447574389
## 16324 105 3081 4.0 1448196150
## 16325 105 3089 4.5 1447411266
## 16326 105 3147 5.0 1447411440
## 16327 105 3198 4.0 1448210238
## 16328 105 3275 4.5 1448189171
## 16329 105 3285 4.0 1446749891
## 16330 105 3301 3.5 1446573522
## 16331 105 3306 4.5 1447411512
## 16332 105 3307 5.0 1447574090
## 16333 105 3310 4.5 1447411199
## 16334 105 3409 4.0 1446750467
## 16335 105 3415 4.5 1446618593
## 16336 105 3462 4.5 1446618508
## 16337 105 3535 3.5 1446573431
## 16338 105 3578 4.0 1446573294
## 16339 105 3592 4.5 1448214503
## 16340 105 3593 2.0 1447538104
## 16341 105 3617 3.5 1446749809
## 16342 105 3623 4.0 1446573346
## 16343 105 3629 4.5 1446621883
## 16344 105 3632 5.0 1447574450
## 16345 105 3677 4.5 1446618647
## 16346 105 3681 3.5 1446621926
## 16347 105 3687 5.0 1448214505
## 16348 105 3717 3.5 1446573402
## 16349 105 3735 4.0 1448213971
## 16350 105 3742 4.0 1446618693
## 16351 105 3751 3.5 1446573657
## 16352 105 3752 3.5 1446573449
## 16353 105 3753 3.5 1446573700
## 16354 105 3785 4.0 1446749768
## 16355 105 3793 3.5 1446573299
## 16356 105 3821 3.0 1446773259
## 16357 105 3910 4.0 1447538138
## 16358 105 3916 4.0 1446573473
## 16359 105 3948 3.5 1446749731
## 16360 105 3949 4.5 1446573676
## 16361 105 3967 4.0 1446573475
## 16362 105 3968 3.0 1446750055
## 16363 105 3969 4.5 1446749904
## 16364 105 3977 3.5 1446573662
## 16365 105 3980 4.0 1446750738
## 16366 105 3988 4.0 1446573616
## 16367 105 3996 4.0 1446573308
## 16368 105 3997 3.0 1447563510
## 16369 105 4011 5.0 1446573339
## 16370 105 4015 3.5 1446749935
## 16371 105 4018 3.5 1446749771
## 16372 105 4022 5.0 1446573334
## 16373 105 4023 3.0 1446750340
## 16374 105 4025 3.0 1446573412
## 16375 105 4027 0.5 1447537867
## 16376 105 4069 2.5 1446750052
## 16377 105 4223 4.0 1446573494
## 16378 105 4226 3.5 1446573297
## 16379 105 4262 4.5 1446621878
## 16380 105 4270 4.0 1446573457
## 16381 105 4299 3.0 1446749880
## 16382 105 4306 4.0 1446573295
## 16383 105 4308 3.5 1446573372
## 16384 105 4310 4.0 1446573442
## 16385 105 4325 4.0 1448196310
## 16386 105 4343 4.0 1446750355
## 16387 105 4344 3.0 1446750448
## 16388 105 4367 3.5 1446750406
## 16389 105 4369 4.0 1446573515
## 16390 105 4386 3.0 1447563468
## 16391 105 4388 4.0 1446750677
## 16392 105 4718 3.5 1446573444
## 16393 105 4720 4.5 1446573400
## 16394 105 4728 3.5 1446750768
## 16395 105 4734 4.0 1446573574
## 16396 105 4776 4.0 1446573453
## 16397 105 4788 5.0 1526207223
## 16398 105 4823 3.5 1446750774
## 16399 105 4865 4.0 1446750019
## 16400 105 4874 5.0 1446749868
## 16401 105 4878 5.0 1446573336
## 16402 105 4886 3.5 1446573310
## 16403 105 4890 3.5 1446750321
## 16404 105 4896 3.5 1446573345
## 16405 105 4963 4.0 1446573318
## 16406 105 4973 4.0 1446573302
## 16407 105 4974 3.0 1447563232
## 16408 105 4993 4.0 1446573293
## 16409 105 4995 4.0 1446573323
## 16410 105 5010 4.0 1446573388
## 16411 105 5014 4.5 1447574038
## 16412 105 5026 4.0 1446773487
## 16413 105 5120 4.0 1448196076
## 16414 105 5151 3.0 1447563161
## 16415 105 5152 4.5 1446750777
## 16416 105 5171 3.0 1447538197
## 16417 105 5218 4.5 1446573368
## 16418 105 5219 3.5 1446749962
## 16419 105 5291 4.0 1446572194
## 16420 105 5313 3.0 1447563020
## 16421 105 5349 3.5 1446573322
## 16422 105 5373 4.0 1447579895
## 16423 105 5378 4.0 1446573660
## 16424 105 5418 3.5 1446571985
## 16425 105 5445 3.5 1446749722
## 16426 105 5459 4.0 1446573393
## 16427 105 5463 3.0 1446773485
## 16428 105 5464 3.5 1446572075
## 16429 105 5481 4.0 1446573435
## 16430 105 5507 3.5 1446749986
## 16431 105 5617 4.0 1446750540
## 16432 105 5618 4.0 1446571759
## 16433 105 5679 4.0 1446573415
## 16434 105 5690 5.0 1446572484
## 16435 105 5782 3.5 1446572013
## 16436 105 5785 3.5 1446773223
## 16437 105 5791 4.0 1446773501
## 16438 105 5810 3.5 1446750482
## 16439 105 5816 3.5 1446573675
## 16440 105 5872 4.0 1446749917
## 16441 105 5878 3.5 1446572143
## 16442 105 5888 5.0 1446610761
## 16443 105 5889 5.0 1526208160
## 16444 105 5903 4.0 1446573518
## 16445 105 5912 4.5 1446622239
## 16446 105 5952 4.0 1446571726
## 16447 105 5956 4.0 1446571944
## 16448 105 5971 4.0 1446571864
## 16449 105 5989 4.5 1446571824
## 16450 105 5995 4.0 1446572114
## 16451 105 6016 5.0 1446571750
## 16452 105 6187 5.0 1446773622
## 16453 105 6214 4.5 1448647899
## 16454 105 6281 4.0 1446750480
## 16455 105 6301 4.5 1448647907
## 16456 105 6333 4.0 1446749737
## 16457 105 6350 4.0 1446572337
## 16458 105 6365 4.5 1446573345
## 16459 105 6373 4.0 1446573407
## 16460 105 6377 3.5 1446573311
## 16461 105 6383 3.0 1446750650
## 16462 105 6433 5.0 1446572504
## 16463 105 6502 4.0 1446573365
## 16464 105 6503 3.5 1446750047
## 16465 105 6537 3.5 1446573433
## 16466 105 6539 4.0 1446573300
## 16467 105 6541 3.0 1446750344
## 16468 105 6586 3.5 1447563242
## 16469 105 6618 4.0 1447563266
## 16470 105 6643 3.5 1448214183
## 16471 105 6708 4.0 1446571977
## 16472 105 6711 3.5 1446572030
## 16473 105 6777 3.5 1446572512
## 16474 105 6863 3.5 1446749758
## 16475 105 6870 4.0 1448647507
## 16476 105 6874 4.0 1446571806
## 16477 105 6888 3.5 1447563154
## 16478 105 6934 4.5 1446573710
## 16479 105 6942 4.0 1446749778
## 16480 105 6985 4.5 1446572291
## 16481 105 7022 4.5 1446750329
## 16482 105 7063 3.5 1446572261
## 16483 105 7090 4.0 1446572431
## 16484 105 7099 4.0 1446572369
## 16485 105 7143 3.5 1446571612
## 16486 105 7147 3.0 1446571917
## 16487 105 7153 4.5 1446571717
## 16488 105 7158 4.0 1447563397
## 16489 105 7173 3.5 1446773489
## 16490 105 7254 4.0 1446571915
## 16491 105 7317 4.0 1447563525
## 16492 105 7318 3.5 1446750799
## 16493 105 7327 4.0 1446572021
## 16494 105 7347 4.0 1447563002
## 16495 105 7361 5.0 1446571724
## 16496 105 7371 5.0 1446773455
## 16497 105 7396 3.5 1446610518
## 16498 105 7438 4.0 1446571808
## 16499 105 7445 4.0 1446750493
## 16500 105 7458 3.5 1446749862
## 16501 105 7587 4.0 1448647629
## 16502 105 8014 5.0 1446572161
## 16503 105 8025 4.5 1446622146
## 16504 105 8033 4.0 1446574118
## 16505 105 8197 4.0 1446572822
## 16506 105 8360 4.0 1446573683
## 16507 105 8361 3.0 1446750435
## 16508 105 8368 4.0 1446573691
## 16509 105 8464 4.0 1446749788
## 16510 105 8511 4.5 1447537575
## 16511 105 8529 4.0 1446610509
## 16512 105 8533 3.5 1466024353
## 16513 105 8636 3.5 1446749736
## 16514 105 8638 4.0 1446572158
## 16515 105 8641 3.0 1447563108
## 16516 105 8644 3.5 1446571621
## 16517 105 8656 4.5 1446618786
## 16518 105 8665 3.5 1446610324
## 16519 105 8873 4.0 1446572486
## 16520 105 8874 3.5 1446571605
## 16521 105 8917 1.5 1447538047
## 16522 105 8950 3.5 1446571860
## 16523 105 8957 4.0 1446573619
## 16524 105 8958 4.0 1446572532
## 16525 105 8961 3.5 1446573326
## 16526 105 8970 4.0 1446573545
## 16527 105 8981 4.0 1447538213
## 16528 105 8984 4.0 1446749865
## 16529 105 9010 4.5 1447537728
## 16530 105 26082 4.0 1446573129
## 16531 105 26150 4.5 1446610414
## 16532 105 26183 3.5 1446573224
## 16533 105 26184 4.5 1446749639
## 16534 105 26236 4.0 1447579847
## 16535 105 26237 4.0 1448210552
## 16536 105 26340 4.0 1446619055
## 16537 105 26347 4.0 1446610558
## 16538 105 26471 3.5 1446618506
## 16539 105 26578 4.5 1446618617
## 16540 105 26587 5.0 1446573090
## 16541 105 26662 4.0 1446572709
## 16542 105 26849 5.0 1446618777
## 16543 105 26903 4.0 1446572250
## 16544 105 27134 4.0 1446573078
## 16545 105 27706 3.0 1447538161
## 16546 105 27741 4.5 1446572644
## 16547 105 27773 5.0 1446571867
## 16548 105 27803 4.0 1446572246
## 16549 105 27815 4.5 1446572382
## 16550 105 27834 4.5 1446618893
## 16551 105 30707 4.0 1446572056
## 16552 105 30749 4.0 1446572061
## 16553 105 30793 4.0 1446749803
## 16554 105 30803 4.0 1446572221
## 16555 105 30812 4.0 1446572065
## 16556 105 30825 3.5 1446750009
## 16557 105 31658 4.0 1446573566
## 16558 105 31685 4.0 1446750512
## 16559 105 31696 3.5 1446749995
## 16560 105 32460 5.0 1446618642
## 16561 105 32587 4.5 1446571733
## 16562 105 32657 4.5 1446618662
## 16563 105 32892 5.0 1446610372
## 16564 105 32898 4.5 1446610827
## 16565 105 33124 3.5 1446774044
## 16566 105 33162 3.5 1447562910
## 16567 105 33493 4.0 1446573703
## 16568 105 33615 4.0 1446750675
## 16569 105 33660 4.5 1446750030
## 16570 105 33794 4.0 1446572099
## 16571 105 34048 3.5 1446749836
## 16572 105 34072 4.0 1446773466
## 16573 105 34150 3.0 1447538100
## 16574 105 34319 3.5 1446749990
## 16575 105 35836 3.0 1446571627
## 16576 105 36363 4.0 1446610141
## 16577 105 36401 3.0 1447563513
## 16578 105 36529 4.0 1446571924
## 16579 105 37729 4.0 1446749985
## 16580 105 37731 5.0 1526207702
## 16581 105 38061 3.0 1446571935
## 16582 105 38159 4.5 1446619001
## 16583 105 39183 3.5 1446573636
## 16584 105 40629 3.5 1446750684
## 16585 105 40815 3.0 1446571618
## 16586 105 41566 3.5 1446749814
## 16587 105 41571 3.5 1447563527
## 16588 105 42191 4.5 1446572696
## 16589 105 44022 4.0 1447538314
## 16590 105 44191 4.0 1446571719
## 16591 105 44555 3.5 1446571818
## 16592 105 44665 5.0 1446571852
## 16593 105 45447 4.0 1446573639
## 16594 105 45499 4.0 1446573543
## 16595 105 45517 4.0 1446750331
## 16596 105 45720 3.5 1446750657
## 16597 105 45722 4.0 1446571623
## 16598 105 46578 3.0 1446571955
## 16599 105 47099 4.5 1446750049
## 16600 105 47610 3.5 1446571922
## 16601 105 48043 3.0 1446773247
## 16602 105 48304 4.0 1446773456
## 16603 105 48385 4.5 1446573460
## 16604 105 48394 3.5 1446571602
## 16605 105 48516 5.0 1446571700
## 16606 105 48780 5.0 1446571710
## 16607 105 48872 4.5 1448647474
## 16608 105 49272 4.0 1446573697
## 16609 105 49278 4.0 1446773241
## 16610 105 49530 3.5 1446571902
## 16611 105 50794 4.5 1446572124
## 16612 105 50872 4.0 1446573385
## 16613 105 51255 3.5 1446749792
## 16614 105 51540 4.0 1446750537
## 16615 105 51662 4.5 1446571609
## 16616 105 52281 5.0 1446750669
## 16617 105 53000 4.0 1446750652
## 16618 105 53121 4.0 1447563216
## 16619 105 53125 4.5 1446573586
## 16620 105 53322 4.0 1447538074
## 16621 105 53519 5.0 1447411231
## 16622 105 53953 4.0 1447563167
## 16623 105 54001 4.0 1446749833
## 16624 105 54259 3.0 1446749998
## 16625 105 54272 4.0 1446573622
## 16626 105 54995 4.0 1446773629
## 16627 105 54997 3.5 1466024366
## 16628 105 55247 5.0 1446572315
## 16629 105 55269 3.0 1446773215
## 16630 105 55721 4.0 1446572178
## 16631 105 55765 3.5 1446571938
## 16632 105 55820 3.5 1446571829
## 16633 105 55908 3.0 1447537518
## 16634 105 56060 4.5 1526207231
## 16635 105 56145 4.0 1447563590
## 16636 105 56174 4.0 1446750408
## 16637 105 56367 3.5 1446573374
## 16638 105 56757 4.0 1446750654
## 16639 105 56782 4.5 1446572688
## 16640 105 57183 5.0 1526207441
## 16641 105 57504 4.5 1446572284
## 16642 105 57669 3.5 1446749884
## 16643 105 58025 3.5 1447563338
## 16644 105 58425 5.0 1446610286
## 16645 105 58554 2.0 1447535727
## 16646 105 58559 3.5 1446571697
## 16647 105 58803 4.0 1446574452
## 16648 105 59315 3.5 1446571742
## 16649 105 59369 3.5 1446571747
## 16650 105 59387 3.5 1446572164
## 16651 105 59784 3.5 1446749910
## 16652 105 60069 5.0 1446573690
## 16653 105 60072 3.0 1446773508
## 16654 105 60684 3.5 1446573571
## 16655 105 60904 4.0 1446572263
## 16656 105 60950 4.0 1447563482
## 16657 105 61236 3.5 1446572277
## 16658 105 61323 3.0 1446750001
## 16659 105 62849 4.5 1446571994
## 16660 105 63062 4.0 1447563575
## 16661 105 63082 4.0 1446572698
## 16662 105 63113 4.0 1446750690
## 16663 105 63515 4.0 1447586806
## 16664 105 63859 4.0 1447563596
## 16665 105 63992 3.0 1447562906
## 16666 105 64614 4.0 1446571899
## 16667 105 64716 4.0 1447411227
## 16668 105 64839 4.0 1446750027
## 16669 105 64957 4.0 1446571910
## 16670 105 64969 3.5 1447563263
## 16671 105 64993 4.5 1446572420
## 16672 105 65514 4.5 1446572127
## 16673 105 66097 3.0 1446750714
## 16674 105 66371 3.5 1446572223
## 16675 105 67255 4.0 1446572430
## 16676 105 67923 4.0 1446618556
## 16677 105 68157 4.0 1446571827
## 16678 105 68237 3.5 1446571906
## 16679 105 68554 4.5 1446574346
## 16680 105 68954 3.5 1446571754
## 16681 105 69122 4.5 1446573427
## 16682 105 69134 5.0 1448647845
## 16683 105 69529 5.0 1448210557
## 16684 105 69644 4.0 1446574091
## 16685 105 69685 1.0 1447535451
## 16686 105 69757 5.0 1446573513
## 16687 105 69844 4.0 1446749900
## 16688 105 70286 4.0 1446750380
## 16689 105 71033 4.0 1446572112
## 16690 105 71535 4.0 1446749856
## 16691 105 71899 4.0 1446572395
## 16692 105 72011 3.5 1446574065
## 16693 105 72104 4.5 1446573197
## 16694 105 72356 4.5 1446572736
## 16695 105 72641 4.0 1446773511
## 16696 105 72998 4.0 1446571761
## 16697 105 73017 5.0 1446573513
## 16698 105 73881 4.5 1446574063
## 16699 105 74324 4.5 1446622031
## 16700 105 74458 5.0 1446571810
## 16701 105 74727 4.5 1446573115
## 16702 105 74789 4.0 1446750746
## 16703 105 75341 4.0 1526207946
## 16704 105 76093 5.0 1446573558
## 16705 105 76251 3.0 1446749887
## 16706 105 77455 5.0 1446610793
## 16707 105 77561 3.5 1448698973
## 16708 105 78499 4.0 1446573503
## 16709 105 79091 4.0 1446610448
## 16710 105 79132 5.0 1446571569
## 16711 105 79333 4.0 1447574436
## 16712 105 79357 3.5 1446572508
## 16713 105 79702 4.0 1446750523
## 16714 105 80124 5.0 1526207580
## 16715 105 80463 4.0 1446571862
## 16716 105 81562 4.0 1446572068
## 16717 105 81564 3.0 1447563433
## 16718 105 81591 4.5 1446571912
## 16719 105 81845 4.0 1446571722
## 16720 105 81847 4.0 1446610230
## 16721 105 81932 4.0 1446572133
## 16722 105 83803 4.5 1446572622
## 16723 105 84152 4.5 1446750760
## 16724 105 84156 4.5 1446573186
## 16725 105 84844 4.5 1446621911
## 16726 105 84954 3.5 1447563459
## 16727 105 85316 3.5 1446572811
## 16728 105 85414 3.5 1446571766
## 16729 105 85736 4.5 1446572930
## 16730 105 85774 4.5 1446572374
## 16731 105 86066 4.0 1447411237
## 16732 105 86320 5.0 1448647783
## 16733 105 86345 4.5 1526207720
## 16734 105 86347 4.5 1526207712
## 16735 105 86504 4.0 1446571951
## 16736 105 86628 4.0 1447574292
## 16737 105 86882 3.0 1446773459
## 16738 105 88125 4.0 1446749923
## 16739 105 88129 3.5 1446750702
## 16740 105 88235 4.0 1447537625
## 16741 105 88345 4.0 1446573197
## 16742 105 88810 3.5 1446572309
## 16743 105 89492 3.5 1446572244
## 16744 105 89745 3.5 1446573513
## 16745 105 89774 4.0 1446572614
## 16746 105 89864 4.0 1447563213
## 16747 105 90405 3.5 1447563417
## 16748 105 91261 3.5 1447579876
## 16749 105 91500 4.0 1446749940
## 16750 105 91529 4.0 1446571703
## 16751 105 91542 4.0 1446750794
## 16752 105 91658 4.0 1446571953
## 16753 105 92259 5.0 1446571823
## 16754 105 92535 4.5 1526207715
## 16755 105 93790 4.0 1446574114
## 16756 105 94677 4.0 1447563112
## 16757 105 94833 2.5 1446572956
## 16758 105 94959 4.0 1446571998
## 16759 105 95175 5.0 1447410800
## 16760 105 95311 5.0 1446572743
## 16761 105 95313 4.5 1446572739
## 16762 105 95377 4.5 1446572593
## 16763 105 95654 5.0 1446572538
## 16764 105 95858 4.0 1446572640
## 16765 105 96020 4.0 1448000391
## 16766 105 96373 4.5 1447586495
## 16767 105 96488 4.5 1448189110
## 16768 105 96606 5.0 1446572580
## 16769 105 96610 4.0 1447538124
## 16770 105 96821 4.0 1448000525
## 16771 105 96829 5.0 1446572079
## 16772 105 97304 4.0 1446572197
## 16773 105 97752 4.0 1447563394
## 16774 105 97921 4.0 1447538228
## 16775 105 98491 4.0 1446571992
## 16776 105 98604 4.5 1526207111
## 16777 105 98809 4.0 1447538089
## 16778 105 99114 4.0 1446571707
## 16779 105 99145 4.5 1446572586
## 16780 105 100302 3.0 1447563420
## 16781 105 100553 4.5 1446572398
## 16782 105 100714 4.0 1448687415
## 16783 105 101088 4.0 1526207190
## 16784 105 101962 4.0 1446610654
## 16785 105 102407 4.5 1447410950
## 16786 105 102602 4.0 1446573183
## 16787 105 102666 4.5 1446574109
## 16788 105 103235 4.5 1447579862
## 16789 105 104069 4.5 1526207800
## 16790 105 104374 5.0 1446572423
## 16791 105 104780 5.0 1526207793
## 16792 105 104841 4.0 1447538114
## 16793 105 104879 4.5 1446572305
## 16794 105 104913 4.0 1446572314
## 16795 105 105593 5.0 1446773791
## 16796 105 105844 4.0 1446572552
## 16797 105 106100 4.5 1446572059
## 16798 105 106487 3.5 1446773232
## 16799 105 106696 3.5 1447563589
## 16800 105 106782 4.0 1446572166
## 16801 105 106918 4.0 1447516170
## 16802 105 106920 5.0 1446572055
## 16803 105 107141 4.0 1446572703
## 16804 105 107159 4.0 1446610642
## 16805 105 107408 4.5 1526207117
## 16806 105 107410 4.0 1446574248
## 16807 105 107412 4.5 1446749658
## 16808 105 108540 4.5 1446572964
## 16809 105 108727 4.5 1448647827
## 16810 105 108932 3.5 1447563537
## 16811 105 108981 4.5 1448647811
## 16812 105 109374 4.5 1446571895
## 16813 105 109487 4.0 1446571650
## 16814 105 109633 5.0 1446572830
## 16815 105 110586 4.0 1447516176
## 16816 105 111360 3.5 1447563422
## 16817 105 111622 4.0 1446618478
## 16818 105 111759 3.5 1446571729
## 16819 105 112006 4.0 1446610452
## 16820 105 112183 4.0 1446572001
## 16821 105 112290 4.0 1446572612
## 16822 105 112421 4.5 1447516183
## 16823 105 112552 4.0 1446571942
## 16824 105 112556 4.0 1446572332
## 16825 105 112852 4.0 1446750017
## 16826 105 115569 4.5 1446572302
## 16827 105 115617 3.5 1446571658
## 16828 105 115877 4.5 1446572826
## 16829 105 116411 4.5 1446572972
## 16830 105 116797 4.0 1446571652
## 16831 105 116897 5.0 1526206932
## 16832 105 117176 4.0 1447580031
## 16833 105 117444 3.0 1446571659
## 16834 105 117851 3.5 1446573043
## 16835 105 118166 3.5 1447579841
## 16836 105 118696 4.0 1447580042
## 16837 105 118888 4.0 1526207345
## 16838 105 118896 4.0 1526207013
## 16839 105 118985 4.0 1447580057
## 16840 105 119141 3.5 1447563118
## 16841 105 119145 4.0 1447580027
## 16842 105 120138 5.0 1526207544
## 16843 105 120466 4.0 1447580051
## 16844 105 120478 5.0 1526208288
## 16845 105 120625 4.5 1526208297
## 16846 105 122882 4.0 1446572456
## 16847 105 122904 4.0 1466024382
## 16848 105 126090 4.5 1446573130
## 16849 105 126426 4.0 1446574318
## 16850 105 126430 5.0 1448214403
## 16851 105 127052 5.0 1447411223
## 16852 105 127098 4.5 1526207796
## 16853 105 129514 5.0 1526207655
## 16854 105 130970 5.0 1526207611
## 16855 105 130976 4.5 1447411141
## 16856 105 130978 5.0 1446621891
## 16857 105 131237 5.0 1446618937
## 16858 105 133712 4.5 1526207154
## 16859 105 133716 4.5 1526208028
## 16860 105 134041 4.0 1447579826
## 16861 105 134095 5.0 1526208073
## 16862 105 134109 5.0 1446610523
## 16863 105 134170 4.0 1446610801
## 16864 105 134184 4.5 1447410961
## 16865 105 134252 4.5 1447411191
## 16866 105 134326 4.5 1526207561
## 16867 105 134849 4.0 1447574669
## 16868 105 134853 4.0 1446571650
## 16869 105 136445 5.0 1526207433
## 16870 105 136447 5.0 1526208332
## 16871 105 138036 4.0 1447580030
## 16872 105 138835 5.0 1526207526
## 16873 105 140038 4.5 1526207048
## 16874 105 140265 5.0 1526207520
## 16875 105 141810 4.0 1526207286
## 16876 105 141816 5.0 1526207743
## 16877 105 141818 4.5 1526206975
## 16878 105 141820 4.0 1526207238
## 16879 105 141830 4.5 1526208235
## 16880 105 141836 4.5 1447411716
## 16881 105 141844 4.5 1446773905
## 16882 105 142020 5.0 1526207094
## 16883 105 143511 5.0 1526206951
## 16884 105 145994 5.0 1526207490
## 16885 105 146028 4.0 1448000401
## 16886 105 147196 5.0 1526207040
## 16887 105 147250 5.0 1526207354
## 16888 105 147282 4.0 1526207260
## 16889 105 147286 5.0 1526207037
## 16890 105 147300 5.0 1526207029
## 16891 105 147326 5.0 1526207948
## 16892 105 147328 5.0 1526207391
## 16893 105 147330 5.0 1526207403
## 16894 105 150548 5.0 1526206858
## 16895 105 151769 5.0 1526207987
## 16896 105 152081 4.5 1466024376
## 16897 105 152591 4.0 1526207741
## 16898 105 158402 2.5 1526208164
## 16899 105 159811 5.0 1526207290
## 16900 105 159817 5.0 1526206856
## 16901 105 163072 5.0 1526207463
## 16902 105 163112 5.0 1526207523
## 16903 105 163134 4.5 1526206894
## 16904 105 163386 5.0 1526207543
## 16905 105 163645 4.5 1526206935
## 16906 105 163925 5.0 1526208027
## 16907 105 165959 5.0 1526208204
## 16908 105 166183 5.0 1526208038
## 16909 105 170411 4.0 1526207357
## 16910 105 170597 5.0 1526207809
## 16911 105 170705 5.0 1526206853
## 16912 105 170777 5.0 1526206867
## 16913 105 171011 5.0 1526206897
## 16914 105 171749 5.0 1526207365
## 16915 105 172577 5.0 1526206863
## 16916 105 172583 5.0 1526206998
## 16917 105 172585 5.0 1526207575
## 16918 105 172587 5.0 1526207610
## 16919 105 172589 5.0 1526207514
## 16920 105 172637 5.0 1526208221
## 16921 105 172793 5.0 1526208125
## 16922 105 172825 4.5 1526207760
## 16923 105 172909 5.0 1526208041
## 16924 105 173351 5.0 1526207082
## 16925 105 173355 5.0 1526207151
## 16926 105 173535 4.5 1526206993
## 16927 105 173619 5.0 1526207164
## 16928 105 173963 5.0 1526207493
## 16929 105 174551 5.0 1526207135
## 16930 105 175293 5.0 1526208082
## 16931 105 175387 5.0 1526208157
## 16932 105 175397 5.0 1526207168
## 16933 105 175401 4.0 1526208173
## 16934 105 175431 5.0 1526208068
## 16935 105 175435 4.5 1526207160
## 16936 105 178613 4.0 1526207359
## 16937 105 179133 5.0 1526207351
## 16938 106 318 5.0 1489498472
## 16939 106 2571 5.0 1467360688
## 16940 106 2617 4.5 1467360753
## 16941 106 4896 5.0 1467360453
## 16942 106 4993 5.0 1467360286
## 16943 106 5218 3.5 1467360466
## 16944 106 5349 3.5 1467360748
## 16945 106 5952 5.0 1467360288
## 16946 106 6539 5.0 1467360730
## 16947 106 7153 5.0 1467360283
## 16948 106 8368 5.0 1467360422
## 16949 106 31696 2.5 1467360494
## 16950 106 40815 5.0 1467360423
## 16951 106 41566 3.5 1467360756
## 16952 106 45722 5.0 1467360760
## 16953 106 47099 5.0 1484929568
## 16954 106 53125 5.0 1467360763
## 16955 106 59315 3.5 1467360729
## 16956 106 59501 3.5 1467360785
## 16957 106 59784 5.0 1467360438
## 16958 106 69844 5.0 1467360420
## 16959 106 72998 5.0 1467360456
## 16960 106 73017 5.0 1467360745
## 16961 106 76175 3.0 1467360508
## 16962 106 81834 5.0 1467360419
## 16963 106 85414 3.0 1467360772
## 16964 106 86332 4.0 1467360481
## 16965 106 86880 4.0 1467360778
## 16966 106 88125 5.0 1467360720
## 16967 106 97938 4.5 1467567463
## 16968 106 99636 5.0 1467567449
## 16969 106 106489 5.0 1467360741
## 16970 106 112852 3.5 1467360714
## 16971 107 1 4.0 829322340
## 16972 107 2 5.0 829322340
## 16973 107 5 4.0 829322340
## 16974 107 11 5.0 829322340
## 16975 107 62 5.0 829322340
## 16976 107 104 3.0 829322340
## 16977 107 105 4.0 829322340
## 16978 107 110 5.0 832003811
## 16979 107 111 4.0 832003891
## 16980 107 140 4.0 829322340
## 16981 107 141 5.0 829322340
## 16982 107 150 5.0 832003609
## 16983 107 153 3.0 832003644
## 16984 107 160 4.0 832003891
## 16985 107 161 4.0 832003700
## 16986 107 165 3.0 832003678
## 16987 107 185 4.0 832003754
## 16988 107 208 3.0 832003755
## 16989 107 231 3.0 832003701
## 16990 107 253 4.0 832003700
## 16991 107 266 4.0 832003845
## 16992 107 292 4.0 832003754
## 16993 107 296 3.0 832003609
## 16994 107 316 3.0 832003678
## 16995 107 317 4.0 832003891
## 16996 107 318 5.0 832003644
## 16997 107 329 3.0 832003678
## 16998 107 344 3.0 832003644
## 16999 107 349 4.0 832003644
## 17000 107 380 4.0 832003609
## 17001 107 410 3.0 832003845
## 17002 107 432 4.0 832003891
## 17003 107 434 3.0 832003700
## 17004 107 590 5.0 832003609
## 17005 108 25 4.0 1042838964
## 17006 108 82 5.0 1042839636
## 17007 108 151 2.0 1042838877
## 17008 108 156 4.0 1042840602
## 17009 108 469 4.0 1042838912
## 17010 108 480 4.0 1042838912
## 17011 108 497 3.0 1042841018
## 17012 108 508 4.0 1042840657
## 17013 108 509 5.0 1042839865
## 17014 108 541 5.0 1042840111
## 17015 108 800 5.0 1042840740
## 17016 108 838 5.0 1042840302
## 17017 108 848 3.0 1042838964
## 17018 108 926 3.0 1042839569
## 17019 108 1079 5.0 1042840657
## 17020 108 1095 2.0 1042839665
## 17021 108 1097 5.0 1042840884
## 17022 108 1204 5.0 1042839907
## 17023 108 1270 5.0 1042841018
## 17024 108 1684 5.0 1042840477
## 17025 108 1721 4.0 1042838935
## 17026 108 1917 2.0 1042840566
## 17027 108 1959 5.0 1042840682
## 17028 108 1968 4.0 1042838877
## 17029 108 2395 5.0 1042840227
## 17030 108 2571 5.0 1042840183
## 17031 108 2585 4.0 1042840770
## 17032 108 2926 3.0 1042839665
## 17033 108 2947 3.0 1042841018
## 17034 108 3072 3.0 1042838877
## 17035 108 3512 3.0 1042841603
## 17036 108 3751 3.0 1042840627
## 17037 108 3795 5.0 1042840602
## 17038 108 3978 4.0 1042841746
## 17039 108 4024 1.0 1042841603
## 17040 108 4027 5.0 1042841504
## 17041 108 4144 4.0 1042841603
## 17042 108 4159 2.0 1042840682
## 17043 108 4246 5.0 1042841626
## 17044 108 4308 5.0 1042839946
## 17045 108 4372 5.0 1042841746
## 17046 108 4639 3.0 1042841782
## 17047 108 4823 3.0 1042841746
## 17048 108 4878 5.0 1042841559
## 17049 108 4889 3.0 1042838935
## 17050 108 4973 5.0 1042841603
## 17051 108 4975 4.0 1042841689
## 17052 108 4976 5.0 1042839833
## 17053 108 4992 4.0 1042841662
## 17054 108 4993 3.0 1042839597
## 17055 108 4994 3.0 1042841689
## 17056 108 4995 5.0 1042841603
## 17057 108 5011 4.0 1042841782
## 17058 108 5034 4.0 1042840627
## 17059 108 5051 3.0 1042841085
## 17060 108 5135 4.0 1042838912
## 17061 108 5218 4.0 1042839273
## 17062 108 5303 5.0 1042839719
## 17063 108 5309 3.0 1042840682
## 17064 108 5316 4.0 1042841663
## 17065 108 5349 5.0 1042841085
## 17066 108 5378 3.0 1042839273
## 17067 108 5380 5.0 1042841716
## 17068 108 5391 5.0 1042839079
## 17069 108 5445 5.0 1042839079
## 17070 108 5450 5.0 1042839079
## 17071 108 5466 3.0 1042841085
## 17072 108 5502 2.0 1042839211
## 17073 108 5673 5.0 1042840264
## 17074 108 5812 5.0 1042839796
## 17075 108 5881 5.0 1042840085
## 17076 108 5945 5.0 1042840085
## 17077 108 5952 3.0 1042839780
## 17078 108 5989 5.0 1042839780
## 17079 108 6022 1.0 1042840859
## 17080 108 6049 4.0 1042840352
## 17081 109 6 3.0 841108665
## 17082 109 11 4.0 841108045
## 17083 109 14 4.0 841109326
## 17084 109 16 4.0 841108751
## 17085 109 18 3.0 841109921
## 17086 109 21 3.0 841107538
## 17087 109 25 5.0 841108589
## 17088 109 31 3.0 841108623
## 17089 109 32 4.0 841107643
## 17090 109 34 3.0 841107487
## 17091 109 36 5.0 841143673
## 17092 109 39 3.0 841107584
## 17093 109 45 3.0 841108914
## 17094 109 47 3.0 841107393
## 17095 109 50 4.0 841107584
## 17096 109 52 3.0 841109666
## 17097 109 62 5.0 841108564
## 17098 109 76 3.0 841151480
## 17099 109 104 2.0 842224863
## 17100 109 110 5.0 841106621
## 17101 109 122 3.0 841109220
## 17102 109 135 3.0 841142066
## 17103 109 144 3.0 841109781
## 17104 109 150 3.0 841106309
## 17105 109 151 4.0 841108346
## 17106 109 153 3.0 841106402
## 17107 109 154 3.0 841109988
## 17108 109 161 3.0 841106509
## 17109 109 163 3.0 841108799
## 17110 109 165 3.0 841106402
## 17111 109 168 3.0 841108509
## 17112 109 173 2.0 841107989
## 17113 109 175 5.0 841109499
## 17114 109 198 3.0 841109119
## 17115 109 216 2.0 841108967
## 17116 109 223 3.0 841108665
## 17117 109 230 3.0 841108877
## 17118 109 231 3.0 841106453
## 17119 109 233 3.0 841109953
## 17120 109 235 3.0 841108410
## 17121 109 246 3.0 841108799
## 17122 109 249 4.0 842793725
## 17123 109 252 3.0 841108346
## 17124 109 253 3.0 841106550
## 17125 109 256 3.0 841108509
## 17126 109 266 3.0 841107725
## 17127 109 272 3.0 841108751
## 17128 109 273 3.0 841108711
## 17129 109 283 2.0 841275803
## 17130 109 288 5.0 841106621
## 17131 109 290 3.0 841189922
## 17132 109 296 5.0 841106309
## 17133 109 300 3.0 841107487
## 17134 109 315 2.0 841108045
## 17135 109 318 5.0 841106509
## 17136 109 319 3.0 841109187
## 17137 109 329 2.0 841106509
## 17138 109 344 2.0 841106402
## 17139 109 346 4.0 841141700
## 17140 109 347 3.0 842744202
## 17141 109 348 3.0 841108835
## 17142 109 349 3.0 841106402
## 17143 109 353 3.0 841108564
## 17144 109 354 3.0 841109755
## 17145 109 355 3.0 841108665
## 17146 109 356 5.0 841106550
## 17147 109 357 4.0 841107725
## 17148 109 361 3.0 841109369
## 17149 109 364 3.0 841107487
## 17150 109 366 3.0 841151436
## 17151 109 367 3.0 841107487
## 17152 109 370 3.0 841108711
## 17153 109 371 3.0 841109144
## 17154 109 377 3.0 841107538
## 17155 109 380 3.0 841106309
## 17156 109 383 3.0 841109258
## 17157 109 410 3.0 841107393
## 17158 109 422 3.0 841143258
## 17159 109 432 3.0 841107989
## 17160 109 437 2.0 841141958
## 17161 109 440 3.0 841107725
## 17162 109 442 3.0 841108301
## 17163 109 454 3.0 841106621
## 17164 109 457 4.0 841106453
## 17165 109 474 3.0 841108346
## 17166 109 477 3.0 841109063
## 17167 109 480 3.0 841106621
## 17168 109 481 3.0 841109838
## 17169 109 485 2.0 841108711
## 17170 109 490 3.0 841143195
## 17171 109 500 3.0 841107538
## 17172 109 507 4.0 841275346
## 17173 109 514 3.0 841109326
## 17174 109 516 3.0 841142032
## 17175 109 524 3.0 841109953
## 17176 109 527 3.0 841107643
## 17177 109 528 3.0 841275665
## 17178 109 535 3.0 841109643
## 17179 109 537 3.0 841141448
## 17180 109 540 3.0 841109119
## 17181 109 543 3.0 841109119
## 17182 109 551 3.0 841108509
## 17183 109 553 5.0 841107923
## 17184 109 555 4.0 841108564
## 17185 109 586 3.0 841107584
## 17186 109 587 3.0 841107643
## 17187 109 588 3.0 841106402
## 17188 109 589 3.0 841107487
## 17189 109 590 3.0 841107357
## 17190 109 592 4.0 841106309
## 17191 109 593 4.0 841106453
## 17192 109 597 3.0 841107643
## 17193 109 610 3.0 841616485
## 17194 109 733 3.0 844079136
## 17195 109 743 3.0 841142066
## 17196 109 778 4.0 841441442
## 17197 109 780 3.0 841108877
## 17198 109 788 3.0 841142141
## 17199 109 802 4.0 841109615
## 17200 109 805 4.0 841189685
## 17201 109 852 3.0 841189749
## 17202 109 1015 3.0 841152134
## 17203 109 1020 3.0 841152033
## 17204 109 1021 3.0 841152071
## 17205 109 1027 3.0 841151934
## 17206 109 1032 3.0 841152033
## 17207 109 1033 3.0 841152104
## 17208 110 47 4.5 1175330162
## 17209 110 110 3.5 1175329878
## 17210 110 111 4.0 1175330211
## 17211 110 227 1.0 1175329490
## 17212 110 232 3.5 1175329437
## 17213 110 296 4.5 1175330118
## 17214 110 374 1.0 1175329527
## 17215 110 527 4.0 1175330162
## 17216 110 541 4.0 1175329865
## 17217 110 608 4.5 1175329957
## 17218 110 778 3.5 1175330233
## 17219 110 909 4.0 1175329520
## 17220 110 910 4.5 1175330185
## 17221 110 996 3.0 1175329574
## 17222 110 1089 4.0 1175330137
## 17223 110 1193 4.0 1175330077
## 17224 110 1198 3.5 1175330124
## 17225 110 1208 4.0 1175329843
## 17226 110 1222 4.0 1175329966
## 17227 110 1276 5.0 1175329928
## 17228 110 1279 4.5 1175329680
## 17229 110 1281 4.5 1175329986
## 17230 110 1882 1.5 1175329457
## 17231 110 2028 3.5 1175330156
## 17232 110 2384 3.0 1175329510
## 17233 110 2428 1.5 1175329501
## 17234 110 2468 3.0 1175329589
## 17235 110 2571 4.0 1175330041
## 17236 110 2692 4.0 1175330145
## 17237 110 2762 3.0 1175330177
## 17238 110 2788 4.5 1175329840
## 17239 110 2858 4.5 1175329831
## 17240 110 2959 4.5 1175329962
## 17241 110 3268 3.0 1175329720
## 17242 110 3462 3.5 1175330045
## 17243 110 3629 4.0 1175329983
## 17244 110 3949 4.0 1175330135
## 17245 110 4011 3.5 1175330180
## 17246 110 4881 4.0 1175329579
## 17247 110 4973 5.0 1175329835
## 17248 110 5459 2.5 1175329445
## 17249 110 6016 4.5 1175329902
## 17250 110 7096 5.0 1175330140
## 17251 110 7160 3.5 1175329624
## 17252 110 7173 3.0 1175329735
## 17253 110 8014 4.0 1175330195
## 17254 110 26171 5.0 1175330106
## 17255 110 27773 4.0 1175330071
## 17256 110 40870 3.5 1175329885
## 17257 110 46578 3.5 1175330026
## 17258 110 47629 4.5 1175330121
## 17259 111 5 3.5 1517441319
## 17260 111 16 4.5 1518640768
## 17261 111 24 2.5 1518640854
## 17262 111 34 2.5 1516153818
## 17263 111 39 4.0 1516153474
## 17264 111 48 3.5 1518640791
## 17265 111 65 3.5 1518640926
## 17266 111 104 3.5 1518640683
## 17267 111 145 4.0 1516155003
## 17268 111 180 2.5 1516154589
## 17269 111 193 3.0 1518640862
## 17270 111 203 3.5 1518640918
## 17271 111 318 4.5 1518640631
## 17272 111 327 2.5 1518640870
## 17273 111 356 5.0 1516140793
## 17274 111 364 3.5 1518661552
## 17275 111 410 4.0 1517441305
## 17276 111 480 2.5 1516140723
## 17277 111 500 4.0 1516156095
## 17278 111 551 4.0 1518661412
## 17279 111 585 2.5 1518640830
## 17280 111 588 4.5 1516156189
## 17281 111 593 0.5 1516140707
## 17282 111 595 3.0 1518661479
## 17283 111 597 4.0 1516154072
## 17284 111 673 2.5 1516156379
## 17285 111 719 4.0 1518640859
## 17286 111 784 2.5 1518640784
## 17287 111 837 4.0 1518640907
## 17288 111 1020 4.0 1517441262
## 17289 111 1028 4.0 1517441192
## 17290 111 1032 3.5 1518661672
## 17291 111 1036 2.0 1516140654
## 17292 111 1060 1.0 1518640833
## 17293 111 1088 3.0 1516153967
## 17294 111 1197 3.5 1516155000
## 17295 111 1206 1.5 1516153663
## 17296 111 1282 4.0 1518661649
## 17297 111 1367 2.5 1518640841
## 17298 111 1407 0.5 1518640778
## 17299 111 1485 3.5 1516156299
## 17300 111 1513 3.0 1518903920
## 17301 111 1517 4.0 1518902690
## 17302 111 1544 2.0 1518640783
## 17303 111 1562 3.0 1518640828
## 17304 111 1566 3.5 1518640882
## 17305 111 1569 3.5 1516155051
## 17306 111 1580 3.0 1516140709
## 17307 111 1588 3.5 1518903975
## 17308 111 1644 0.5 1518640852
## 17309 111 1676 2.0 1518640781
## 17310 111 1682 4.0 1516156052
## 17311 111 1702 4.0 1518903976
## 17312 111 1704 4.0 1518661708
## 17313 111 1721 4.0 1518902680
## 17314 111 1777 3.5 1516154997
## 17315 111 1805 3.0 1518640856
## 17316 111 1856 4.0 1518812562
## 17317 111 1884 3.0 1516156140
## 17318 111 1895 4.0 1517441190
## 17319 111 1907 3.5 1518640826
## 17320 111 1911 3.5 1518640865
## 17321 111 2005 2.0 1518661573
## 17322 111 2078 3.5 1517440229
## 17323 111 2081 3.0 1518661792
## 17324 111 2124 4.0 1516156208
## 17325 111 2125 3.5 1516468579
## 17326 111 2145 3.0 1517441355
## 17327 111 2167 3.5 1518640804
## 17328 111 2174 4.5 1517441184
## 17329 111 2294 2.5 1518903905
## 17330 111 2329 3.5 1516140740
## 17331 111 2335 3.5 1516156286
## 17332 111 2355 4.0 1516156241
## 17333 111 2428 2.5 1518640902
## 17334 111 2447 4.0 1516156222
## 17335 111 2485 4.0 1516156099
## 17336 111 2539 3.0 1516468535
## 17337 111 2541 4.0 1516153859
## 17338 111 2571 0.5 1516140656
## 17339 111 2572 4.0 1516153699
## 17340 111 2581 4.0 1516155924
## 17341 111 2617 3.5 1516140777
## 17342 111 2683 3.0 1516156295
## 17343 111 2694 3.0 1518903909
## 17344 111 2700 3.0 1516154511
## 17345 111 2701 4.0 1518903902
## 17346 111 2717 2.5 1517441464
## 17347 111 2718 4.0 1518904009
## 17348 111 2858 4.0 1518902665
## 17349 111 2916 3.0 1516140796
## 17350 111 2918 3.5 1517441254
## 17351 111 2959 5.0 1516140759
## 17352 111 2987 3.5 1517441437
## 17353 111 3052 5.0 1516153898
## 17354 111 3174 4.0 1518903923
## 17355 111 3175 3.5 1518902708
## 17356 111 3177 4.0 1516151963
## 17357 111 3186 4.0 1518903955
## 17358 111 3210 2.0 1517695752
## 17359 111 3247 3.5 1516156060
## 17360 111 3253 5.0 1516156177
## 17361 111 3254 3.5 1517441281
## 17362 111 3255 4.0 1516153866
## 17363 111 3273 0.5 1516143870
## 17364 111 3275 5.0 1516153377
## 17365 111 3301 4.0 1516143339
## 17366 111 3408 3.5 1516140880
## 17367 111 3489 3.5 1516156038
## 17368 111 3535 3.5 1516140996
## 17369 111 3617 3.0 1516141056
## 17370 111 3646 2.0 1516144087
## 17371 111 3752 3.0 1516143267
## 17372 111 3785 2.5 1516141003
## 17373 111 3821 1.5 1516144046
## 17374 111 3825 3.0 1516143948
## 17375 111 3861 2.5 1516144092
## 17376 111 3882 4.0 1516143924
## 17377 111 3897 4.0 1516143164
## 17378 111 3948 1.0 1516143175
## 17379 111 3949 3.0 1516143165
## 17380 111 3977 3.5 1516140878
## 17381 111 3979 1.5 1516144021
## 17382 111 3980 3.5 1516144010
## 17383 111 3988 3.5 1516141094
## 17384 111 4011 3.0 1519415306
## 17385 111 4015 3.5 1516141153
## 17386 111 4016 2.5 1516141085
## 17387 111 4018 3.5 1516140994
## 17388 111 4025 3.5 1516143239
## 17389 111 4054 2.5 1516144048
## 17390 111 4068 4.0 1516152847
## 17391 111 4069 2.5 1516141205
## 17392 111 4148 0.5 1516141050
## 17393 111 4149 2.5 1516144223
## 17394 111 4226 3.5 1516153842
## 17395 111 4228 2.5 1516151595
## 17396 111 4239 3.0 1516143293
## 17397 111 4246 4.0 1516140902
## 17398 111 4247 3.0 1516141686
## 17399 111 4255 2.0 1516151602
## 17400 111 4262 2.0 1516154010
## 17401 111 4270 3.5 1516141010
## 17402 111 4299 3.5 1516141092
## 17403 111 4306 3.0 1516140840
## 17404 111 4308 2.5 1516140952
## 17405 111 4340 2.0 1516151403
## 17406 111 4367 3.5 1516141042
## 17407 111 4388 0.5 1516141237
## 17408 111 4447 3.5 1516140982
## 17409 111 4448 3.0 1516141239
## 17410 111 4545 3.5 1517441447
## 17411 111 4649 4.5 1516152350
## 17412 111 4700 3.0 1516143978
## 17413 111 4718 2.0 1516141013
## 17414 111 4734 3.0 1516143868
## 17415 111 4816 3.0 1516141025
## 17416 111 4865 3.0 1516141201
## 17417 111 4878 4.0 1516140863
## 17418 111 4886 3.0 1516140848
## 17419 111 4890 3.0 1516141155
## 17420 111 4896 4.0 1516140868
## 17421 111 4900 4.0 1516153877
## 17422 111 4963 4.5 1516140855
## 17423 111 4974 1.0 1516141433
## 17424 111 4989 5.0 1516152890
## 17425 111 4995 4.0 1516140854
## 17426 111 5025 3.0 1516141691
## 17427 111 5066 1.5 1516141826
## 17428 111 5110 4.5 1516141326
## 17429 111 5218 3.5 1516140890
## 17430 111 5283 4.5 1516144182
## 17431 111 5363 3.0 1516152507
## 17432 111 5418 0.5 1516140860
## 17433 111 5445 2.0 1516140766
## 17434 111 5449 3.0 1516144003
## 17435 111 5481 3.5 1516141007
## 17436 111 5501 3.5 1516152705
## 17437 111 5524 3.5 1518640673
## 17438 111 5528 3.0 1516141186
## 17439 111 5564 3.5 1516153070
## 17440 111 5620 3.0 1516141264
## 17441 111 5630 0.5 1516141121
## 17442 111 5785 5.0 1516141300
## 17443 111 5810 4.0 1516141116
## 17444 111 5816 4.0 1516143170
## 17445 111 5874 4.0 1516153658
## 17446 111 5942 3.0 1516151924
## 17447 111 5943 3.0 1516141463
## 17448 111 5989 4.0 1516140866
## 17449 111 5991 2.5 1516141015
## 17450 111 6003 4.0 1516468531
## 17451 111 6006 2.5 1516151650
## 17452 111 6155 4.0 1516141181
## 17453 111 6187 3.5 1516144177
## 17454 111 6188 4.5 1516141123
## 17455 111 6287 3.5 1516141165
## 17456 111 6297 3.5 1516141385
## 17457 111 6365 1.0 1519415307
## 17458 111 6373 3.0 1516140954
## 17459 111 6377 4.0 1516140849
## 17460 111 6482 1.5 1516151600
## 17461 111 6503 3.5 1516143939
## 17462 111 6539 3.0 1516140846
## 17463 111 6548 3.5 1516144001
## 17464 111 6564 3.5 1516141271
## 17465 111 6586 1.5 1516141365
## 17466 111 6754 3.0 1516141143
## 17467 111 6764 3.0 1516155078
## 17468 111 6863 3.0 1516140966
## 17469 111 6874 3.5 1516140851
## 17470 111 6888 0.5 1516141368
## 17471 111 6936 4.0 1516141112
## 17472 111 6944 4.0 1516156138
## 17473 111 6952 0.5 1516141689
## 17474 111 6957 0.5 1516141230
## 17475 111 7160 2.5 1516143997
## 17476 111 7225 4.0 1517440172
## 17477 111 7254 0.5 1516140916
## 17478 111 7285 3.5 1516141854
## 17479 111 7293 4.5 1516223103
## 17480 111 7317 3.0 1516141388
## 17481 111 7325 3.0 1516143980
## 17482 111 7346 3.5 1516141379
## 17483 111 7347 0.5 1516141332
## 17484 111 7361 3.5 1516140853
## 17485 111 7373 3.5 1516141065
## 17486 111 7438 3.0 1516140862
## 17487 111 7439 3.0 1516144232
## 17488 111 7451 4.0 1516143860
## 17489 111 8360 2.0 1516140875
## 17490 111 8361 1.5 1516223109
## 17491 111 8368 4.0 1516143167
## 17492 111 8376 3.0 1516141039
## 17493 111 8528 4.5 1516141095
## 17494 111 8531 3.5 1516151474
## 17495 111 8533 2.5 1516141086
## 17496 111 8641 4.0 1516141070
## 17497 111 8807 4.5 1516141222
## 17498 111 8814 3.0 1516152451
## 17499 111 8917 3.5 1516141151
## 17500 111 8950 3.0 1516141076
## 17501 111 8957 0.5 1516141066
## 17502 111 8961 1.0 1516140859
## 17503 111 8969 3.0 1516141389
## 17504 111 8972 3.5 1516143338
## 17505 111 8984 4.0 1516141046
## 17506 111 27706 3.0 1516141220
## 17507 111 30793 1.5 1516141000
## 17508 111 30825 0.5 1516141135
## 17509 111 31433 3.5 1516152602
## 17510 111 31685 3.5 1516141090
## 17511 111 31696 3.0 1516140805
## 17512 111 32298 2.5 1516153275
## 17513 111 32598 3.0 1516152250
## 17514 111 33615 3.5 1516143912
## 17515 111 33646 4.5 1516155239
## 17516 111 33679 3.5 1516140817
## 17517 111 33794 2.0 1516140679
## 17518 111 34162 4.5 1516141022
## 17519 111 34520 2.5 1516152245
## 17520 111 34530 2.0 1516152767
## 17521 111 35836 3.5 1516140956
## 17522 111 36401 4.0 1516141458
## 17523 111 37384 5.0 1516152279
## 17524 111 37729 2.5 1516143882
## 17525 111 39446 0.5 1516141306
## 17526 111 39715 0.5 1516151910
## 17527 111 40581 4.5 1516152390
## 17528 111 40815 4.0 1516140892
## 17529 111 40819 4.0 1516141060
## 17530 111 41573 3.5 1516152208
## 17531 111 42007 2.5 1516152645
## 17532 111 42725 3.0 1516154507
## 17533 111 44004 4.0 1516151822
## 17534 111 44022 3.0 1516143982
## 17535 111 44840 2.5 1516153280
## 17536 111 44972 0.5 1516151609
## 17537 111 45447 4.0 1516141057
## 17538 111 45501 3.5 1516151383
## 17539 111 45666 3.0 1516151592
## 17540 111 45672 3.0 1516141245
## 17541 111 45720 4.0 1516141101
## 17542 111 45722 3.0 1516140909
## 17543 111 46948 0.5 1516151720
## 17544 111 46970 5.0 1516141334
## 17545 111 46972 3.5 1516143941
## 17546 111 47122 4.0 1516154933
## 17547 111 47518 3.5 1516151598
## 17548 111 47610 3.5 1516143261
## 17549 111 47640 4.5 1516152263
## 17550 111 47997 1.5 1516144057
## 17551 111 48322 5.0 1516153342
## 17552 111 48385 2.5 1516153506
## 17553 111 48394 3.0 1516223017
## 17554 111 48516 4.5 1516140731
## 17555 111 48520 4.0 1516152919
## 17556 111 48780 4.0 1516143173
## 17557 111 49286 4.5 1516141360
## 17558 111 49396 4.0 1516151901
## 17559 111 50189 0.5 1516152461
## 17560 111 50872 3.0 1516223064
## 17561 111 51086 0.5 1516141824
## 17562 111 51575 3.0 1516152194
## 17563 111 51662 4.0 1516140798
## 17564 111 51935 3.0 1516144014
## 17565 111 52245 3.5 1516141425
## 17566 111 52281 3.0 1519339003
## 17567 111 52973 3.5 1516141088
## 17568 111 53121 2.0 1516144007
## 17569 111 53125 3.5 1516140807
## 17570 111 53322 3.5 1516141114
## 17571 111 53460 3.5 1516152382
## 17572 111 53519 3.0 1519339020
## 17573 111 53953 0.5 1516141317
## 17574 111 53993 2.0 1516141835
## 17575 111 54001 4.0 1516143242
## 17576 111 54004 4.5 1516151866
## 17577 111 54190 4.0 1516141857
## 17578 111 54286 3.0 1516140675
## 17579 111 54503 4.5 1516141002
## 17580 111 54732 3.5 1516152883
## 17581 111 54995 3.0 1519339026
## 17582 111 55245 4.5 1516152641
## 17583 111 55261 2.5 1516153607
## 17584 111 55276 4.0 1519339024
## 17585 111 55872 3.0 1516152241
## 17586 111 56174 2.5 1516143236
## 17587 111 56757 3.5 1516141158
## 17588 111 56775 3.5 1516141286
## 17589 111 56805 2.5 1516152430
## 17590 111 56949 2.5 1516144069
## 17591 111 57951 3.5 1517441450
## 17592 111 58156 3.5 1516152505
## 17593 111 58559 4.0 1516140842
## 17594 111 58998 5.0 1516141157
## 17595 111 59022 3.0 1516151566
## 17596 111 59143 4.0 1518812619
## 17597 111 59258 4.0 1516152478
## 17598 111 59315 2.0 1516140680
## 17599 111 59333 3.5 1516152760
## 17600 111 59725 2.5 1516151558
## 17601 111 59784 2.5 1516141029
## 17602 111 60069 3.5 1516140737
## 17603 111 60072 4.0 1516141234
## 17604 111 60126 3.0 1516141430
## 17605 111 60756 5.0 1516141362
## 17606 111 61024 5.0 1516141215
## 17607 111 61132 3.5 1516141146
## 17608 111 61250 3.5 1516152711
## 17609 111 61255 4.0 1516153844
## 17610 111 61323 2.5 1517441208
## 17611 111 62155 3.0 1516151658
## 17612 111 62434 3.5 1516141421
## 17613 111 62439 4.5 1516153863
## 17614 111 63131 4.0 1516140705
## 17615 111 63479 4.5 1516152703
## 17616 111 63992 1.5 1516143943
## 17617 111 64032 3.5 1516153969
## 17618 111 64839 4.0 1516143910
## 17619 111 65088 4.0 1516152300
## 17620 111 65216 3.5 1516152206
## 17621 111 65230 2.5 1517441446
## 17622 111 65585 3.5 1516152447
## 17623 111 66203 2.5 1516151398
## 17624 111 67087 3.5 1516141349
## 17625 111 67255 3.0 1519339011
## 17626 111 68157 4.5 1516143172
## 17627 111 68554 4.0 1516141304
## 17628 111 68954 4.0 1516139571
## 17629 111 69122 4.5 1516140914
## 17630 111 69406 3.5 1516141323
## 17631 111 69436 4.0 1516152357
## 17632 111 69844 4.0 1516140986
## 17633 111 70183 3.0 1516151622
## 17634 111 70565 4.0 1518640625
## 17635 111 70641 3.5 1516154940
## 17636 111 71057 1.5 1516144107
## 17637 111 71205 0.5 1516152698
## 17638 111 71535 3.5 1516140991
## 17639 111 71668 4.5 1516152773
## 17640 111 71838 3.0 1516141888
## 17641 111 72167 5.0 1516152757
## 17642 111 72407 1.5 1516141802
## 17643 111 72998 2.0 1516140751
## 17644 111 73017 3.5 1516140967
## 17645 111 73929 2.0 1516152801
## 17646 111 74154 4.0 1516156122
## 17647 111 74275 2.5 1516152401
## 17648 111 74458 3.5 1516143203
## 17649 111 74532 5.0 1516155906
## 17650 111 74946 3.5 1516152321
## 17651 111 75805 3.0 1516152501
## 17652 111 76077 4.5 1516141807
## 17653 111 76251 3.5 1516223101
## 17654 111 76293 3.0 1516151578
## 17655 111 78174 1.5 1516153265
## 17656 111 78209 5.0 1516151469
## 17657 111 78772 1.5 1516141819
## 17658 111 79091 3.5 1516141074
## 17659 111 79132 4.5 1516140844
## 17660 111 79134 5.0 1516151917
## 17661 111 79428 3.0 1516155080
## 17662 111 79592 3.0 1516141839
## 17663 111 79702 3.5 1516141083
## 17664 111 80139 5.0 1516153440
## 17665 111 80166 3.0 1516152708
## 17666 111 80463 3.5 1516140981
## 17667 111 80489 3.0 1516140726
## 17668 111 81156 5.0 1516153068
## 17669 111 81229 4.0 1516141256
## 17670 111 81537 3.5 1516151406
## 17671 111 81564 2.0 1516141247
## 17672 111 81591 3.5 1516140988
## 17673 111 81834 4.0 1516140989
## 17674 111 81847 1.5 1516141132
## 17675 111 82852 1.0 1516152440
## 17676 111 83134 3.0 1517441249
## 17677 111 83349 3.5 1516156322
## 17678 111 84152 3.0 1518661690
## 17679 111 84374 2.5 1516151579
## 17680 111 84772 3.0 1516141589
## 17681 111 85022 4.0 1516152852
## 17682 111 85367 5.0 1516153855
## 17683 111 85780 4.0 1517441181
## 17684 111 86293 3.5 1517441253
## 17685 111 86833 4.5 1516141359
## 17686 111 86880 3.0 1516141248
## 17687 111 86911 3.5 1516141354
## 17688 111 87483 3.0 1516155247
## 17689 111 87485 3.5 1516151619
## 17690 111 87529 5.0 1516156030
## 17691 111 87867 4.5 1516155233
## 17692 111 87869 4.0 1516141284
## 17693 111 88125 4.0 1516153598
## 17694 111 88405 3.0 1516144123
## 17695 111 88785 3.5 1516152915
## 17696 111 91104 1.5 1516151718
## 17697 111 91323 4.5 1517441418
## 17698 111 91529 3.5 1516140713
## 17699 111 91542 4.0 1516141098
## 17700 111 91658 3.5 1516143873
## 17701 111 92264 3.0 1516155074
## 17702 111 93270 1.5 1516152647
## 17703 111 93326 3.5 1516152324
## 17704 111 93443 4.5 1519081475
## 17705 111 93510 5.0 1516141212
## 17706 111 93831 1.5 1516152515
## 17707 111 94478 4.0 1516151853
## 17708 111 94777 1.0 1516140763
## 17709 111 94953 4.5 1516154994
## 17710 111 95441 2.5 1516141259
## 17711 111 95543 3.0 1516152203
## 17712 111 95720 4.0 1517441434
## 17713 111 96110 3.0 1516154908
## 17714 111 96432 3.5 1516152616
## 17715 111 96588 4.5 1516141427
## 17716 111 96616 4.0 1516155004
## 17717 111 97172 2.0 1516156129
## 17718 111 97836 3.5 1516153673
## 17719 111 97913 3.5 1516141188
## 17720 111 98083 5.0 1516153402
## 17721 111 98203 1.5 1516152167
## 17722 111 99007 2.0 1516151605
## 17723 111 99114 4.0 1516140887
## 17724 111 99117 3.0 1516153185
## 17725 111 100083 2.0 1517441307
## 17726 111 100194 4.5 1516154573
## 17727 111 100390 4.5 1516152911
## 17728 111 100507 4.5 1516154043
## 17729 111 101142 3.5 1516151905
## 17730 111 102123 4.5 1516141858
## 17731 111 102407 3.5 1516141346
## 17732 111 102481 4.5 1516152160
## 17733 111 102686 3.5 1516154009
## 17734 111 102720 3.5 1516153315
## 17735 111 102903 5.0 1516141204
## 17736 111 103335 4.0 1516141319
## 17737 111 103372 3.5 1516152122
## 17738 111 103810 4.0 1516151997
## 17739 111 104211 4.5 1516141597
## 17740 111 104218 4.5 1516154964
## 17741 111 104241 2.5 1516151647
## 17742 111 104644 0.5 1517441300
## 17743 111 104925 5.0 1516153603
## 17744 111 106540 3.0 1516153846
## 17745 111 106782 5.0 1516140978
## 17746 111 106916 3.5 1518640634
## 17747 111 106918 4.0 1516141922
## 17748 111 107348 2.5 1516151946
## 17749 111 108156 3.5 1518640638
## 17750 111 109282 3.0 1518812144
## 17751 111 109483 2.0 1517441274
## 17752 111 110669 4.0 1518812734
## 17753 111 110771 4.5 1516154905
## 17754 111 110773 0.5 1516156099
## 17755 111 111113 4.0 1516151714
## 17756 111 111375 2.5 1517441352
## 17757 111 111617 5.0 1516153480
## 17758 111 111659 2.5 1516144129
## 17759 111 111743 2.5 1516154972
## 17760 111 112138 4.5 1516141454
## 17761 111 112497 3.0 1516154961
## 17762 111 112556 4.0 1516143257
## 17763 111 112788 2.5 1516156057
## 17764 111 112852 4.5 1516143215
## 17765 111 113453 4.0 1516153690
## 17766 111 115149 4.5 1516141278
## 17767 111 115617 3.0 1516141049
## 17768 111 116977 2.5 1516152600
## 17769 111 117590 3.5 1516152290
## 17770 111 117851 3.5 1516156036
## 17771 111 118888 4.5 1517440309
## 17772 111 118930 4.5 1517441102
## 17773 111 119141 4.5 1516141867
## 17774 111 119145 5.0 1516141107
## 17775 111 119153 4.5 1517441167
## 17776 111 119155 3.5 1516152412
## 17777 111 121372 4.5 1517440334
## 17778 111 121374 4.5 1517440588
## 17779 111 121715 3.5 1516155084
## 17780 111 122882 4.0 1516143259
## 17781 111 122896 3.5 1516152736
## 17782 111 122900 3.0 1518661474
## 17783 111 122904 5.0 1516141018
## 17784 111 122918 4.0 1516140666
## 17785 111 123200 4.5 1516468597
## 17786 111 126548 4.5 1516153550
## 17787 111 127116 4.5 1517017782
## 17788 111 127152 4.5 1518812549
## 17789 111 127390 4.0 1517441199
## 17790 111 128097 4.0 1516156131
## 17791 111 128099 4.5 1517440338
## 17792 111 128520 5.0 1517440323
## 17793 111 128914 5.0 1516154005
## 17794 111 128975 3.0 1516156182
## 17795 111 129354 2.5 1516151775
## 17796 111 129737 2.5 1516156154
## 17797 111 130087 3.0 1517441246
## 17798 111 130520 4.5 1516152612
## 17799 111 131013 5.0 1516152809
## 17800 111 131826 4.0 1516156316
## 17801 111 133419 3.5 1516152351
## 17802 111 134368 5.0 1516151386
## 17803 111 134393 3.0 1516152201
## 17804 111 134853 2.5 1516140998
## 17805 111 134861 2.5 1516154900
## 17806 111 135137 4.0 1516152610
## 17807 111 135436 2.5 1516153517
## 17808 111 135536 4.0 1516141883
## 17809 111 135861 2.0 1516152286
## 17810 111 135887 3.5 1516151589
## 17811 111 136018 2.5 1516152695
## 17812 111 136443 1.5 1516154911
## 17813 111 136471 3.5 1518812095
## 17814 111 136511 2.0 1516156349
## 17815 111 136598 4.0 1516153520
## 17816 111 140110 4.5 1516141864
## 17817 111 140715 4.5 1518640686
## 17818 111 142422 4.5 1516153547
## 17819 111 143859 1.5 1516152423
## 17820 111 144606 4.0 1517441257
## 17821 111 148626 5.0 1516141184
## 17822 111 148652 3.0 1516153652
## 17823 111 148956 4.5 1516153382
## 17824 111 149352 4.0 1517441156
## 17825 111 149354 4.0 1516153930
## 17826 111 150548 4.5 1516141804
## 17827 111 151739 4.0 1516153545
## 17828 111 152081 2.5 1516140736
## 17829 111 155509 4.5 1516156390
## 17830 111 155812 4.0 1516468503
## 17831 111 156609 2.0 1516153694
## 17832 111 157296 4.5 1516151381
## 17833 111 157312 3.0 1516153573
## 17834 111 157699 4.5 1516152764
## 17835 111 158813 2.5 1516153857
## 17836 111 158872 0.5 1516152353
## 17837 111 159093 4.5 1516141954
## 17838 111 159161 4.5 1517441228
## 17839 111 159441 4.5 1516153411
## 17840 111 159755 1.5 1516154500
## 17841 111 160080 3.5 1516154833
## 17842 111 160271 5.0 1516152850
## 17843 111 160289 4.5 1518812627
## 17844 111 160567 4.5 1516154665
## 17845 111 161024 4.5 1517441197
## 17846 111 161131 4.5 1516141918
## 17847 111 161580 4.5 1516153346
## 17848 111 162344 5.0 1516154577
## 17849 111 162478 4.5 1516154885
## 17850 111 162602 4.5 1516153304
## 17851 111 165103 4.0 1516154574
## 17852 111 165483 4.0 1517441316
## 17853 111 165645 0.5 1516156050
## 17854 111 165671 4.5 1518812112
## 17855 111 165843 4.0 1517439943
## 17856 111 165947 4.0 1516154513
## 17857 111 166461 4.5 1516151400
## 17858 111 166492 4.5 1516153370
## 17859 111 166534 0.5 1516141946
## 17860 111 167018 4.5 1516141949
## 17861 111 167036 4.0 1516153691
## 17862 111 167634 4.5 1516153933
## 17863 111 167746 3.5 1516468575
## 17864 111 168144 4.0 1516156395
## 17865 111 168248 4.0 1516141936
## 17866 111 168326 4.0 1517440858
## 17867 111 168418 4.5 1516153655
## 17868 111 168632 4.0 1517441031
## 17869 111 168846 4.5 1516154968
## 17870 111 169912 2.5 1516156268
## 17871 111 170357 4.0 1517440967
## 17872 111 170399 4.0 1516153478
## 17873 111 170401 3.0 1516153472
## 17874 111 170813 4.0 1516153444
## 17875 111 170817 4.0 1517440905
## 17876 111 170897 2.0 1517440937
## 17877 111 170937 3.0 1517440974
## 17878 111 170957 3.0 1517440869
## 17879 111 171251 4.0 1518812389
## 17880 111 171631 1.0 1517440909
## 17881 111 171867 4.5 1517440867
## 17882 111 171891 3.5 1517440199
## 17883 111 172215 3.0 1516156387
## 17884 111 172547 4.0 1516154838
## 17885 111 173255 2.5 1517440897
## 17886 111 174045 4.0 1517440969
## 17887 111 174815 3.5 1516153469
## 17888 111 175577 1.5 1517440862
## 17889 111 176101 4.0 1516154835
## 17890 111 176329 4.0 1517440844
## 17891 111 178323 3.5 1518812200
## 17892 111 179211 3.5 1516154871
## 17893 111 179427 4.0 1516155015
## 17894 111 179953 3.5 1518640589
## 17895 111 180265 4.5 1518661395
## 17896 111 181065 3.5 1517440756
## 17897 111 181139 1.5 1517440808
## 17898 111 181659 2.5 1517440686
## 17899 111 182749 2.5 1517440678
## 17900 111 183197 3.5 1517440660
## 17901 111 183227 3.5 1517440658
## 17902 111 183959 4.5 1517440654
## 17903 111 184015 3.5 1518640587
## 17904 111 184257 4.0 1518812074
## 17905 112 1 3.0 1442535639
## 17906 112 2 1.5 1513989948
## 17907 112 6 4.5 1513989933
## 17908 112 16 4.5 1513990003
## 17909 112 17 0.5 1513989967
## 17910 112 19 4.0 1513989970
## 17911 112 21 2.0 1513989975
## 17912 112 25 2.5 1513989973
## 17913 112 32 5.0 1442535842
## 17914 112 36 0.5 1513989966
## 17915 112 39 0.5 1513989927
## 17916 112 47 5.0 1442535846
## 17917 112 50 5.0 1442535839
## 17918 112 62 4.0 1513989987
## 17919 112 95 1.5 1513989977
## 17920 112 104 4.0 1513989997
## 17921 112 110 3.5 1442535826
## 17922 112 141 4.0 1513989961
## 17923 112 150 4.0 1442535835
## 17924 112 161 1.5 1513989954
## 17925 112 185 2.0 1513989947
## 17926 112 208 2.5 1513989909
## 17927 112 223 1.5 1513989951
## 17928 112 253 4.5 1513989915
## 17929 112 260 5.0 1442535777
## 17930 112 288 4.0 1513989961
## 17931 112 292 4.0 1513989930
## 17932 112 300 0.5 1513989999
## 17933 112 329 2.5 1513989925
## 17934 112 339 1.5 1513989982
## 17935 112 356 3.5 1442535627
## 17936 112 357 0.5 1513989921
## 17937 112 434 0.5 1513989941
## 17938 112 454 4.0 1513989944
## 17939 112 480 5.0 1442535631
## 17940 112 508 4.5 1513989990
## 17941 112 551 3.5 1513989983
## 17942 112 593 4.0 1442535629
## 17943 112 778 3.5 1513989917
## 17944 112 780 5.0 1442535837
## 17945 112 788 1.5 1513989994
## 17946 112 1196 5.0 1442535776
## 17947 112 1198 5.0 1442535778
## 17948 112 1210 5.0 1442535785
## 17949 112 1270 4.0 1442535641
## 17950 112 1356 4.0 1513989988
## 17951 112 1393 4.0 1513989973
## 17952 112 1917 5.0 1444606649
## 17953 112 2028 5.0 1442535853
## 17954 112 2571 5.0 1442535637
## 17955 112 3147 5.0 1444606653
## 17956 112 3717 4.0 1513990140
## 17957 112 4993 5.0 1442535783
## 17958 112 5952 5.0 1442535787
## 17959 112 7153 5.0 1442535781
## 17960 112 58559 5.0 1442535780
## 17961 112 68157 4.5 1518888241
## 17962 112 68954 4.0 1518888237
## 17963 112 70286 3.5 1518888248
## 17964 112 72998 4.0 1518888239
## 17965 112 79132 4.5 1518888233
## 17966 112 91529 5.0 1518888246
## 17967 112 99114 4.0 1518888243
## 17968 112 109487 5.0 1444606663
## 17969 112 115617 3.5 1444606676
## 17970 113 11 3.0 980051838
## 17971 113 25 1.0 980051660
## 17972 113 39 3.0 980051704
## 17973 113 46 3.0 980051838
## 17974 113 64 2.0 980051988
## 17975 113 71 1.0 980051522
## 17976 113 74 3.0 980051922
## 17977 113 111 4.0 980087884
## 17978 113 207 3.0 980051546
## 17979 113 222 4.0 980051734
## 17980 113 224 3.0 980051862
## 17981 113 260 4.0 980087884
## 17982 113 265 5.0 980051660
## 17983 113 293 5.0 980051638
## 17984 113 351 5.0 980051862
## 17985 113 356 4.0 980051894
## 17986 113 357 4.0 980051777
## 17987 113 490 3.0 980051499
## 17988 113 509 5.0 980051801
## 17989 113 539 3.0 980051961
## 17990 113 543 2.0 980051922
## 17991 113 550 2.0 980051988
## 17992 113 587 3.0 980051938
## 17993 113 593 4.0 980051263
## 17994 113 597 4.0 980051777
## 17995 113 779 3.0 980051988
## 17996 113 804 3.0 980051922
## 17997 113 838 4.0 980051757
## 17998 113 858 4.0 980087838
## 17999 113 902 5.0 980306846
## 18000 113 903 4.0 980307343
## 18001 113 904 5.0 980307343
## 18002 113 909 4.0 980307093
## 18003 113 912 5.0 980307023
## 18004 113 915 5.0 980306937
## 18005 113 916 5.0 980306890
## 18006 113 932 5.0 980306923
## 18007 113 933 5.0 980306890
## 18008 113 943 5.0 980307023
## 18009 113 969 5.0 980306890
## 18010 113 1013 5.0 980307165
## 18011 113 1014 5.0 980307201
## 18012 113 1018 3.0 980307261
## 18013 113 1043 2.0 980051894
## 18014 113 1073 5.0 980087938
## 18015 113 1077 3.0 980087902
## 18016 113 1086 4.0 980307343
## 18017 113 1094 5.0 980051638
## 18018 113 1129 4.0 980051459
## 18019 113 1183 5.0 980051704
## 18020 113 1193 5.0 980087865
## 18021 113 1230 5.0 980087838
## 18022 113 1232 2.0 980307379
## 18023 113 1235 5.0 980087865
## 18024 113 1244 4.0 980306983
## 18025 113 1247 4.0 980306846
## 18026 113 1265 3.0 980051734
## 18027 113 1276 4.0 980307113
## 18028 113 1282 4.0 980051320
## 18029 113 1286 4.0 980051421
## 18030 113 1339 4.0 980051961
## 18031 113 1357 5.0 980051757
## 18032 113 1380 3.0 980306983
## 18033 113 1393 1.0 980051638
## 18034 113 1459 2.0 980307560
## 18035 113 1466 3.0 980051341
## 18036 113 1564 5.0 980051894
## 18037 113 1569 4.0 980051922
## 18038 113 1589 2.0 980307560
## 18039 113 1600 4.0 980051480
## 18040 113 1617 5.0 980307528
## 18041 113 1639 2.0 980051638
## 18042 113 1645 1.0 980307560
## 18043 113 1680 3.0 980051734
## 18044 113 1683 5.0 980051734
## 18045 113 1721 4.0 980051838
## 18046 113 1733 4.0 980051862
## 18047 113 1735 2.0 980051704
## 18048 113 1777 4.0 980051838
## 18049 113 1829 3.0 980051757
## 18050 113 1897 4.0 980051961
## 18051 113 1912 5.0 980051704
## 18052 113 1944 4.0 980306890
## 18053 113 1955 4.0 980087938
## 18054 113 1997 4.0 980051368
## 18055 113 2067 5.0 980306846
## 18056 113 2076 4.0 980307456
## 18057 113 2080 5.0 980306890
## 18058 113 2108 4.0 980051801
## 18059 113 2132 5.0 980307093
## 18060 113 2135 5.0 980051522
## 18061 113 2166 3.0 980051734
## 18062 113 2184 4.0 980307343
## 18063 113 2331 4.0 980051801
## 18064 113 2340 1.0 980051894
## 18065 113 2424 3.0 980051988
## 18066 113 2475 5.0 980307472
## 18067 113 2583 5.0 980307560
## 18068 113 2671 2.0 980051922
## 18069 113 2699 1.0 980051234
## 18070 113 2724 2.0 980051234
## 18071 113 2749 4.0 980307472
## 18072 113 2752 3.0 980307472
## 18073 113 2764 5.0 980307201
## 18074 113 2791 1.0 980051368
## 18075 113 2844 1.0 980307560
## 18076 113 2858 5.0 980051320
## 18077 113 2969 5.0 980306846
## 18078 113 2978 3.0 980051660
## 18079 113 3044 3.0 980307528
## 18080 113 3099 5.0 980306983
## 18081 113 3103 2.0 980051988
## 18082 113 3108 2.0 980051704
## 18083 113 3168 4.0 980307140
## 18084 113 3217 3.0 980051263
## 18085 113 3244 3.0 980306983
## 18086 113 3251 4.0 980307456
## 18087 113 3296 5.0 980307140
## 18088 113 3359 4.0 980087865
## 18089 113 3451 5.0 980307165
## 18090 113 3468 4.0 980307140
## 18091 113 3476 4.0 980307528
## 18092 113 3498 4.0 980087902
## 18093 113 3504 4.0 980087865
## 18094 113 3537 5.0 980051546
## 18095 113 3546 5.0 980307165
## 18096 113 3551 4.0 980087865
## 18097 113 3556 3.0 980051421
## 18098 113 3668 5.0 980306846
## 18099 113 3675 4.0 980051480
## 18100 113 3706 4.0 980307456
## 18101 113 3735 4.0 980087838
## 18102 113 3755 1.0 980051459
## 18103 113 3824 2.0 980051565
## 18104 113 3831 5.0 980051421
## 18105 113 4003 3.0 980051546
## 18106 113 4007 4.0 980051421
## 18107 113 4040 3.0 980051522
## 18108 113 4041 5.0 980051421
## 18109 113 4062 5.0 980051421
## 18110 113 4063 4.0 980051499
## 18111 113 4083 4.0 980087736
## 18112 113 4084 1.0 980087736
## 18113 113 4085 3.0 980087736
## 18114 113 4090 3.0 980051234
## 18115 113 4109 1.0 980087693
## 18116 113 4124 1.0 980087663
## 18117 113 4126 4.0 980087663
## 18118 113 4128 3.0 980087663
## 18119 113 4130 2.0 980087663
## 18120 114 260 3.5 1485387458
## 18121 114 593 3.0 1485387708
## 18122 114 1136 3.5 1485390580
## 18123 114 1210 3.5 1485388367
## 18124 114 2291 4.0 1485390946
## 18125 114 3147 4.0 1485387728
## 18126 114 4306 2.0 1485391393
## 18127 114 4896 4.0 1485388146
## 18128 114 5349 4.0 1485391411
## 18129 114 5816 4.0 1485388209
## 18130 114 6377 3.0 1485391404
## 18131 114 8368 4.0 1485387906
## 18132 114 8636 4.5 1485388167
## 18133 114 8961 3.5 1485388105
## 18134 114 40815 3.5 1485388153
## 18135 114 52722 4.5 1485388542
## 18136 114 54001 4.0 1485388273
## 18137 114 60069 3.5 1485387711
## 18138 114 69844 2.0 1485387886
## 18139 114 79702 3.5 1485387657
## 18140 114 81834 3.0 1485387866
## 18141 114 88125 2.5 1485387480
## 18142 114 95510 0.5 1485388534
## 18143 114 106782 4.5 1485388020
## 18144 114 122882 3.0 1485388142
## 18145 114 122886 2.5 1485388121
## 18146 114 122904 3.5 1485387872
## 18147 114 127198 3.5 1485387585
## 18148 114 141718 5.0 1485387538
## 18149 114 152081 3.5 1485387499
## 18150 114 167732 3.5 1485387617
## 18151 115 21 4.0 970756771
## 18152 115 32 5.0 958574098
## 18153 115 34 2.0 957760059
## 18154 115 110 3.0 958574203
## 18155 115 112 2.0 970756534
## 18156 115 153 3.0 957647972
## 18157 115 196 4.0 957648436
## 18158 115 260 5.0 959800922
## 18159 115 296 5.0 944954937
## 18160 115 364 4.0 944950805
## 18161 115 368 4.0 944951378
## 18162 115 370 4.0 970839149
## 18163 115 380 1.0 957647313
## 18164 115 383 2.0 944951450
## 18165 115 457 4.0 970756771
## 18166 115 480 5.0 944953733
## 18167 115 487 5.0 944951378
## 18168 115 553 5.0 944951378
## 18169 115 588 4.0 948322710
## 18170 115 589 5.0 958574098
## 18171 115 590 3.0 944951378
## 18172 115 592 5.0 957647972
## 18173 115 593 5.0 966978103
## 18174 115 594 3.0 944958085
## 18175 115 595 4.0 948322663
## 18176 115 653 2.0 944953733
## 18177 115 736 1.0 957647314
## 18178 115 780 2.0 970838729
## 18179 115 919 4.0 944958086
## 18180 115 1196 5.0 949126947
## 18181 115 1198 4.0 944950887
## 18182 115 1200 5.0 959801035
## 18183 115 1208 5.0 966978689
## 18184 115 1222 5.0 944959028
## 18185 115 1240 5.0 959801072
## 18186 115 1241 1.0 957759878
## 18187 115 1266 5.0 944951378
## 18188 115 1304 5.0 959800922
## 18189 115 1339 2.0 957648380
## 18190 115 1377 1.0 959800666
## 18191 115 1379 5.0 944951378
## 18192 115 1387 5.0 959800946
## 18193 115 1391 2.0 970838690
## 18194 115 1407 5.0 944952139
## 18195 115 1562 2.0 959800666
## 18196 115 1566 5.0 944953733
## 18197 115 1580 4.0 944953431
## 18198 115 1610 5.0 958574203
## 18199 115 1614 3.0 972251571
## 18200 115 1617 4.0 944950887
## 18201 115 1645 4.0 957648208
## 18202 115 1682 4.0 965425190
## 18203 115 1717 4.0 957647369
## 18204 115 1721 4.0 957647634
## 18205 115 1777 3.0 977610853
## 18206 115 1907 5.0 948322710
## 18207 115 1923 5.0 977610946
## 18208 115 2002 3.0 944950739
## 18209 115 2027 2.0 965425136
## 18210 115 2028 5.0 944950805
## 18211 115 2148 4.0 963848471
## 18212 115 2273 4.0 970423947
## 18213 115 2321 4.0 965425392
## 18214 115 2325 4.0 966977847
## 18215 115 2355 3.0 948322711
## 18216 115 2394 3.0 948322747
## 18217 115 2423 5.0 944958832
## 18218 115 2427 2.0 957647396
## 18219 115 2571 3.0 955845509
## 18220 115 2617 4.0 944958662
## 18221 115 2687 3.0 948322663
## 18222 115 2688 4.0 959800759
## 18223 115 2694 2.0 945304932
## 18224 115 2700 4.0 957647531
## 18225 115 2701 2.0 955845457
## 18226 115 2719 3.0 958345549
## 18227 115 2723 4.0 957647342
## 18228 115 2762 3.0 957647483
## 18229 115 2770 3.0 963848249
## 18230 115 2772 1.0 965425111
## 18231 115 2792 5.0 944950887
## 18232 115 2804 5.0 944950887
## 18233 115 2841 4.0 959800880
## 18234 115 2858 1.0 959800667
## 18235 115 2867 4.0 963848350
## 18236 115 2916 3.0 944953571
## 18237 115 2921 5.0 970838955
## 18238 115 2947 4.0 959801072
## 18239 115 2987 5.0 957647602
## 18240 115 2995 3.0 963706776
## 18241 115 3037 5.0 970838871
## 18242 115 3052 3.0 966977811
## 18243 115 3081 3.0 970423896
## 18244 115 3114 5.0 948322663
## 18245 115 3146 4.0 948322397
## 18246 115 3175 4.0 965425216
## 18247 115 3264 4.0 957648404
## 18248 115 3273 4.0 963706826
## 18249 115 3301 4.0 970423833
## 18250 115 3354 3.0 970838690
## 18251 115 3499 5.0 957648208
## 18252 115 3508 5.0 970838955
## 18253 115 3555 5.0 972251868
## 18254 115 3578 5.0 977610136
## 18255 115 3624 4.0 972251638
## 18256 115 3671 5.0 970838852
## 18257 115 3703 3.0 959800971
## 18258 115 3751 3.0 977610102
## 18259 115 3752 4.0 977610599
## 18260 115 3753 4.0 977610173
## 18261 115 3785 4.0 977610244
## 18262 115 3793 5.0 977610040
## 18263 116 3 3.5 1337200325
## 18264 116 47 3.5 1337199584
## 18265 116 150 1.0 1337199701
## 18266 116 160 4.0 1337200317
## 18267 116 161 4.5 1337199965
## 18268 116 165 3.5 1337199802
## 18269 116 231 2.5 1337199840
## 18270 116 339 4.5 1337199980
## 18271 116 350 4.0 1337200251
## 18272 116 356 4.0 1337199672
## 18273 116 367 5.0 1337199834
## 18274 116 377 3.5 1337199774
## 18275 116 457 3.0 1337199695
## 18276 116 480 4.0 1337199676
## 18277 116 500 3.0 1337199829
## 18278 116 527 2.0 1337199734
## 18279 116 539 4.0 1337199887
## 18280 116 541 5.0 1337199338
## 18281 116 586 3.5 1337199910
## 18282 116 589 4.0 1337199708
## 18283 116 590 4.5 1337199720
## 18284 116 593 2.0 1337199284
## 18285 116 597 4.5 1337199369
## 18286 116 736 4.0 1337199815
## 18287 116 780 2.5 1337199715
## 18288 116 858 1.5 1337199795
## 18289 116 899 3.0 1337195933
## 18290 116 920 1.0 1337200265
## 18291 116 1029 3.0 1337195966
## 18292 116 1035 5.0 1337200404
## 18293 116 1036 3.5 1337199890
## 18294 116 1059 1.0 1337195837
## 18295 116 1088 4.5 1337195649
## 18296 116 1101 5.0 1337200060
## 18297 116 1183 3.0 1337200232
## 18298 116 1193 4.0 1337199877
## 18299 116 1198 5.0 1337199765
## 18300 116 1219 2.5 1337199455
## 18301 116 1225 3.0 1337200139
## 18302 116 1247 2.0 1337200259
## 18303 116 1270 4.5 1337199782
## 18304 116 1276 3.5 1337199396
## 18305 116 1291 4.0 1337199881
## 18306 116 1293 3.5 1337195909
## 18307 116 1299 1.5 1337199432
## 18308 116 1339 4.0 1337195944
## 18309 116 1380 4.5 1337200241
## 18310 116 1387 5.0 1337200040
## 18311 116 1393 2.5 1337200011
## 18312 116 1407 3.5 1337200215
## 18313 116 1544 4.5 1337200350
## 18314 116 1562 3.0 1337195975
## 18315 116 1569 3.5 1337195952
## 18316 116 1597 4.0 1337195721
## 18317 116 1704 3.5 1337199937
## 18318 116 1721 4.0 1337199824
## 18319 116 1954 3.0 1337200360
## 18320 116 1961 4.5 1337199946
## 18321 116 2000 4.0 1337200219
## 18322 116 2002 3.0 1337196051
## 18323 116 2006 5.0 1337200394
## 18324 116 2054 2.0 1337200195
## 18325 116 2080 3.5 1337195923
## 18326 116 2115 4.5 1337200069
## 18327 116 2174 1.5 1337200075
## 18328 116 2406 4.5 1337200338
## 18329 116 2605 4.0 1337196091
## 18330 116 2617 2.0 1337200223
## 18331 116 2657 3.0 1337200381
## 18332 116 2683 0.5 1337199960
## 18333 116 2716 3.5 1337199899
## 18334 116 2724 5.0 1337196130
## 18335 116 2797 3.0 1337200152
## 18336 116 2915 3.0 1337196211
## 18337 116 2985 2.0 1337200378
## 18338 116 3072 2.5 1337196056
## 18339 116 3578 4.5 1337199860
## 18340 116 3996 2.5 1337199976
## 18341 116 4792 2.5 1337197329
## 18342 116 4963 4.0 1337200051
## 18343 116 5349 3.5 1337200037
## 18344 116 5995 3.5 1337199544
## 18345 116 6539 4.0 1337200005
## 18346 116 8360 4.0 1337200417
## 18347 116 30749 4.5 1337199535
## 18348 116 35836 2.5 1337197582
## 18349 116 62383 4.0 1337197383
## 18350 117 2 3.0 844163002
## 18351 117 3 3.0 844163663
## 18352 117 5 3.0 844163754
## 18353 117 6 3.0 844163102
## 18354 117 7 4.0 844163615
## 18355 117 10 3.0 844162850
## 18356 117 11 4.0 844162970
## 18357 117 17 3.0 844163037
## 18358 117 19 2.0 844162892
## 18359 117 21 4.0 844162913
## 18360 117 26 4.0 844163712
## 18361 117 31 3.0 844163204
## 18362 117 32 3.0 844162955
## 18363 117 34 3.0 844163454
## 18364 117 36 3.0 844163102
## 18365 117 39 3.0 844162955
## 18366 117 41 4.0 844163693
## 18367 117 44 2.0 844163037
## 18368 117 47 4.0 844162892
## 18369 117 48 3.0 844163082
## 18370 117 50 4.0 844162933
## 18371 117 60 3.0 844163754
## 18372 117 62 4.0 844163122
## 18373 117 73 4.0 844163663
## 18374 117 105 3.0 844163693
## 18375 117 110 5.0 844162850
## 18376 117 141 4.0 844163019
## 18377 117 150 4.0 844162743
## 18378 117 151 3.0 844163019
## 18379 117 153 3.0 844162770
## 18380 117 158 3.0 844163061
## 18381 117 160 3.0 844162955
## 18382 117 161 3.0 844162832
## 18383 117 165 3.0 844162770
## 18384 117 168 3.0 844163061
## 18385 117 172 3.0 844163061
## 18386 117 185 3.0 844162832
## 18387 117 186 3.0 844163019
## 18388 117 193 2.0 844163102
## 18389 117 204 3.0 844163082
## 18390 117 224 4.0 844163122
## 18391 117 225 3.0 844162913
## 18392 117 227 3.0 844163216
## 18393 117 230 3.0 844163734
## 18394 117 231 2.0 844162793
## 18395 117 235 3.0 844163082
## 18396 117 236 3.0 844162985
## 18397 117 237 3.0 844163156
## 18398 117 249 4.0 844163543
## 18399 117 252 4.0 844163019
## 18400 117 253 4.0 844162832
## 18401 117 256 3.0 844163082
## 18402 117 261 3.0 844163061
## 18403 117 262 3.0 844163663
## 18404 117 266 4.0 844162970
## 18405 117 272 4.0 844163156
## 18406 117 273 3.0 844163156
## 18407 117 277 4.0 844163204
## 18408 117 280 3.0 844163543
## 18409 117 282 3.0 844163002
## 18410 117 288 2.0 844162850
## 18411 117 292 4.0 844162811
## 18412 117 293 3.0 844163082
## 18413 117 296 4.0 844162744
## 18414 117 300 4.0 844162870
## 18415 117 315 3.0 844162970
## 18416 117 316 3.0 844162811
## 18417 117 317 3.0 844163454
## 18418 117 318 5.0 844162811
## 18419 117 329 3.0 844162793
## 18420 117 333 3.0 844163136
## 18421 117 339 3.0 844162832
## 18422 117 344 2.0 844162770
## 18423 117 349 3.0 844162793
## 18424 117 350 3.0 844162955
## 18425 117 353 3.0 844163121
## 18426 117 356 4.0 844162810
## 18427 117 357 3.0 844162955
## 18428 117 362 4.0 844163543
## 18429 117 364 4.0 844162870
## 18430 117 367 3.0 844162892
## 18431 117 368 4.0 844163136
## 18432 117 377 3.0 844162892
## 18433 117 380 4.0 844162744
## 18434 117 410 3.0 844162870
## 18435 117 420 3.0 844162933
## 18436 117 432 3.0 844162985
## 18437 117 434 3.0 844162810
## 18438 117 440 4.0 844162970
## 18439 117 442 3.0 844163002
## 18440 117 454 3.0 844162850
## 18441 117 457 4.0 844162793
## 18442 117 474 3.0 844163002
## 18443 117 475 3.0 844163511
## 18444 117 480 4.0 844162832
## 18445 117 485 3.0 844163102
## 18446 117 491 5.0 844163664
## 18447 117 497 4.0 844163168
## 18448 117 500 4.0 844162892
## 18449 117 508 3.0 844163019
## 18450 117 515 4.0 844163615
## 18451 117 520 3.0 844163156
## 18452 117 524 3.0 844163712
## 18453 117 527 5.0 844162933
## 18454 117 529 3.0 844163511
## 18455 117 531 3.0 844163615
## 18456 117 534 3.0 844163663
## 18457 117 539 4.0 844162933
## 18458 117 551 4.0 844163037
## 18459 117 552 4.0 844163693
## 18460 117 553 4.0 844162985
## 18461 117 555 2.0 844163102
## 18462 117 585 3.0 844163121
## 18463 117 586 4.0 844162913
## 18464 117 587 4.0 844162913
## 18465 117 588 4.0 844162770
## 18466 117 589 4.0 844162870
## 18467 117 590 4.0 844162743
## 18468 117 592 3.0 844162743
## 18469 117 593 5.0 844162770
## 18470 117 594 4.0 844163204
## 18471 117 595 4.0 844162793
## 18472 117 596 4.0 844163454
## 18473 117 597 3.0 844162913
## 18474 117 608 3.0 844163511
## 18475 117 610 3.0 844163712
## 18476 117 616 4.0 844163615
## 18477 117 647 3.0 844163511
## 18478 117 648 3.0 844163136
## 18479 117 653 3.0 844163821
## 18480 117 656 3.0 844163962
## 18481 117 661 3.0 844163858
## 18482 117 697 3.0 844163962
## 18483 117 708 3.0 844163770
## 18484 117 719 4.0 844163870
## 18485 117 733 3.0 844163216
## 18486 117 736 2.0 844163121
## 18487 117 745 4.0 844163693
## 18488 117 747 3.0 844163992
## 18489 117 762 3.0 844163977
## 18490 117 765 3.0 844163896
## 18491 117 778 3.0 844163821
## 18492 117 780 3.0 844163204
## 18493 117 782 3.0 844163943
## 18494 117 783 4.0 844163543
## 18495 117 786 3.0 844163821
## 18496 117 788 3.0 844163896
## 18497 117 799 4.0 844163896
## 18498 117 802 3.0 844163543
## 18499 117 804 3.0 844163929
## 18500 117 805 4.0 844163454
## 18501 117 828 3.0 844163929
## 18502 117 848 3.0 844163896
## 18503 117 849 3.0 844163962
## 18504 117 852 3.0 844163870
## 18505 117 861 3.0 844163858
## 18506 117 880 3.0 844163977
## 18507 117 986 3.0 844163896
## 18508 117 1022 4.0 844163734
## 18509 117 1023 3.0 844163734
## 18510 117 1027 3.0 844163770
## 18511 117 1028 4.0 844163734
## 18512 117 1035 4.0 844163615
## 18513 117 1036 3.0 844163454
## 18514 117 1079 4.0 844163734
## 18515 118 25 2.0 944924731
## 18516 118 153 2.0 944923703
## 18517 118 296 4.0 944924487
## 18518 118 527 4.0 944923926
## 18519 118 590 4.0 944923926
## 18520 118 608 4.0 944924329
## 18521 118 858 5.0 944923703
## 18522 118 1059 3.0 944923551
## 18523 118 1104 4.0 944924487
## 18524 118 1196 4.0 944924329
## 18525 118 1213 5.0 944924360
## 18526 118 1221 5.0 944924276
## 18527 118 1343 4.0 944924731
## 18528 118 1350 3.0 944923926
## 18529 118 1625 4.0 944924731
## 18530 118 1810 4.0 944923926
## 18531 118 1961 5.0 944923926
## 18532 118 2028 4.0 944924731
## 18533 118 2278 4.0 944923703
## 18534 118 2329 3.0 944924731
## 18535 118 2378 3.0 944923551
## 18536 118 2918 4.0 944923989
## 18537 119 1 3.5 1435942468
## 18538 119 10 4.0 1435943180
## 18539 119 44 3.0 1435943918
## 18540 119 170 5.0 1435943952
## 18541 119 173 3.0 1435943284
## 18542 119 293 5.0 1435943240
## 18543 119 296 4.0 1436563596
## 18544 119 315 4.0 1435943910
## 18545 119 318 4.5 1468432386
## 18546 119 356 4.0 1435942470
## 18547 119 364 5.0 1437815672
## 18548 119 434 4.0 1435943225
## 18549 119 442 4.0 1435943269
## 18550 119 1092 4.0 1435943914
## 18551 119 1270 4.0 1435942458
## 18552 119 1580 4.0 1437815683
## 18553 119 1732 4.0 1435944296
## 18554 119 2167 4.0 1435944444
## 18555 119 2324 5.0 1435943985
## 18556 119 2329 4.0 1435942698
## 18557 119 2353 3.0 1435944400
## 18558 119 2571 4.0 1435942472
## 18559 119 2683 4.0 1435944283
## 18560 119 2701 3.0 1435944456
## 18561 119 3081 4.0 1435944417
## 18562 119 3147 5.0 1435944293
## 18563 119 3275 4.5 1438547758
## 18564 119 3452 5.0 1435944634
## 18565 119 3578 5.0 1435944175
## 18566 119 3793 4.0 1435944274
## 18567 119 4015 4.0 1435944618
## 18568 119 4148 3.5 1435944551
## 18569 119 4161 4.0 1435944630
## 18570 119 4239 4.0 1435944545
## 18571 119 4299 4.5 1436563660
## 18572 119 4306 4.0 1435944180
## 18573 119 4344 4.0 1435944586
## 18574 119 4367 4.0 1435944543
## 18575 119 4369 5.0 1435944563
## 18576 119 4370 3.5 1435944431
## 18577 119 4387 4.5 1436563749
## 18578 119 4446 3.5 1435944575
## 18579 119 4643 4.0 1435944492
## 18580 119 4718 4.0 1435944509
## 18581 119 4776 4.0 1435944523
## 18582 119 4886 4.5 1443813263
## 18583 119 4963 5.0 1435944285
## 18584 119 4993 5.0 1435944174
## 18585 119 4995 5.0 1435944289
## 18586 119 5010 4.0 1435944440
## 18587 119 5064 4.5 1438440197
## 18588 119 5218 4.0 1436563338
## 18589 119 5418 4.0 1435944994
## 18590 119 5574 4.0 1436563806
## 18591 119 5810 3.0 1436563580
## 18592 119 5952 4.5 1435944765
## 18593 119 5989 4.5 1437850946
## 18594 119 5995 4.5 1439148522
## 18595 119 6365 4.0 1439153846
## 18596 119 6377 4.0 1436008346
## 18597 119 6378 4.5 1440881479
## 18598 119 6539 4.0 1436563804
## 18599 119 6934 4.5 1436563334
## 18600 119 7153 5.0 1435944759
## 18601 119 7454 3.5 1455448434
## 18602 119 7458 4.5 1505333121
## 18603 119 8464 3.5 1505073169
## 18604 119 8622 3.5 1505333113
## 18605 119 8644 4.0 1440881475
## 18606 119 8961 4.0 1436008305
## 18607 119 30707 5.0 1436563812
## 18608 119 31410 4.0 1438440230
## 18609 119 31685 4.0 1447664555
## 18610 119 32587 4.0 1439153850
## 18611 119 33615 4.0 1436007538
## 18612 119 33660 4.0 1436007517
## 18613 119 33794 3.5 1450537446
## 18614 119 35836 4.0 1438440151
## 18615 119 40278 4.0 1436007546
## 18616 119 44022 3.5 1436007573
## 18617 119 44191 4.5 1435944755
## 18618 119 45517 4.0 1436007488
## 18619 119 46337 4.0 1440879687
## 18620 119 46723 3.5 1436007513
## 18621 119 47099 4.0 1436007530
## 18622 119 48516 4.0 1436563627
## 18623 119 48774 4.0 1453664029
## 18624 119 49272 5.0 1435944762
## 18625 119 50872 4.0 1455448362
## 18626 119 51077 3.5 1455448458
## 18627 119 51662 5.0 1437859236
## 18628 119 52722 3.5 1436007497
## 18629 119 54272 4.5 1437763246
## 18630 119 54286 4.5 1435944763
## 18631 119 55247 4.0 1436006088
## 18632 119 56174 4.5 1455448369
## 18633 119 58559 4.5 1437850702
## 18634 119 59369 4.0 1437941156
## 18635 119 59784 4.0 1436006076
## 18636 119 60069 4.0 1437850727
## 18637 119 60072 3.0 1436007571
## 18638 119 60074 3.5 1436007555
## 18639 119 61323 3.5 1447664552
## 18640 119 63082 5.0 1438439640
## 18641 119 63113 4.0 1436007552
## 18642 119 64614 4.5 1436563837
## 18643 119 64839 3.5 1468432412
## 18644 119 66097 3.0 1439148560
## 18645 119 66511 5.0 1448742228
## 18646 119 67255 5.0 1505072352
## 18647 119 68157 4.0 1438439642
## 18648 119 68319 4.0 1436122200
## 18649 119 68954 5.0 1436008357
## 18650 119 69122 5.0 1438439652
## 18651 119 70286 4.5 1438439649
## 18652 119 72998 5.0 1437859238
## 18653 119 73017 4.5 1438439656
## 18654 119 73321 4.5 1451491358
## 18655 119 74458 4.0 1436007606
## 18656 119 76093 4.0 1437763251
## 18657 119 78469 3.5 1442823834
## 18658 119 78499 3.5 1436007608
## 18659 119 79091 5.0 1436008311
## 18660 119 79132 4.0 1436007604
## 18661 119 80463 5.0 1436007615
## 18662 119 81229 4.5 1436563840
## 18663 119 81845 4.0 1436007612
## 18664 119 82459 4.0 1435944138
## 18665 119 84392 4.0 1438547722
## 18666 119 85020 4.5 1439059231
## 18667 119 86882 3.5 1438440531
## 18668 119 86911 5.0 1447664496
## 18669 119 87232 4.0 1435944131
## 18670 119 87869 4.5 1438440214
## 18671 119 88163 4.0 1448750538
## 18672 119 88744 4.5 1438440527
## 18673 119 89087 4.5 1459195755
## 18674 119 91529 4.5 1436007619
## 18675 119 91542 4.0 1450537060
## 18676 119 91658 5.0 1439495481
## 18677 119 92259 4.5 1436007689
## 18678 119 95105 4.0 1439059096
## 18679 119 95441 4.5 1438440166
## 18680 119 96079 3.5 1436122207
## 18681 119 96861 5.0 1437859100
## 18682 119 99112 4.0 1436563613
## 18683 119 99114 4.0 1438547766
## 18684 119 101142 4.0 1436042420
## 18685 119 102481 4.0 1437850978
## 18686 119 102903 5.0 1436123447
## 18687 119 103141 4.5 1438440162
## 18688 119 103335 5.0 1436008297
## 18689 119 103984 5.0 1453712826
## 18690 119 104841 3.5 1439495694
## 18691 119 104913 5.0 1436007907
## 18692 119 105504 5.0 1441486258
## 18693 119 105844 4.0 1448750575
## 18694 119 106491 4.5 1442168751
## 18695 119 106782 4.5 1449440654
## 18696 119 106918 4.5 1436563670
## 18697 119 106920 5.0 1438354968
## 18698 119 108689 4.0 1455448426
## 18699 119 108932 4.5 1436008461
## 18700 119 109374 3.5 1436563795
## 18701 119 109846 5.0 1438439321
## 18702 119 110718 4.0 1463949118
## 18703 119 110730 4.0 1455657237
## 18704 119 111781 4.0 1450612021
## 18705 119 112183 3.0 1437814564
## 18706 119 112552 4.5 1505073183
## 18707 119 112868 4.5 1438440095
## 18708 119 114184 3.5 1447664445
## 18709 119 114662 5.0 1436563651
## 18710 119 114795 4.0 1455448437
## 18711 119 115149 4.5 1436563084
## 18712 119 115617 5.0 1435943203
## 18713 119 115713 4.0 1440277383
## 18714 119 116797 5.0 1435944261
## 18715 119 116823 4.0 1437859195
## 18716 119 117176 5.0 1436007654
## 18717 119 117533 4.0 1455448488
## 18718 119 117887 4.0 1447664471
## 18719 119 119145 4.0 1445850607
## 18720 119 120635 4.5 1437859125
## 18721 119 122882 4.0 1442647731
## 18722 119 122904 4.5 1468093264
## 18723 119 127184 4.0 1440881447
## 18724 119 128488 3.0 1439836951
## 18725 119 128620 3.5 1448742203
## 18726 119 129354 4.0 1459195875
## 18727 119 130520 3.5 1438452592
## 18728 119 130578 4.0 1441486270
## 18729 119 131023 4.5 1459195846
## 18730 119 131714 4.0 1447664459
## 18731 119 132157 3.5 1439495525
## 18732 119 134853 4.0 1455448380
## 18733 119 135532 4.5 1459195778
## 18734 119 135861 3.0 1448652763
## 18735 119 135887 4.0 1447664578
## 18736 119 136562 3.5 1459195741
## 18737 119 136598 5.0 1459195916
## 18738 119 136666 3.5 1442168643
## 18739 119 138036 4.5 1450536964
## 18740 119 138210 5.0 1499021338
## 18741 119 139385 4.0 1468432442
## 18742 119 139642 4.0 1505073229
## 18743 119 140711 1.5 1459195688
## 18744 119 141004 4.5 1505072481
## 18745 119 142488 4.5 1468093246
## 18746 119 148626 5.0 1468093256
## 18747 119 157699 4.5 1505072383
## 18748 119 162350 4.5 1505072367
## 18749 119 165551 4.5 1505072429
## 18750 119 166461 4.0 1505072348
## 18751 119 168252 4.5 1505073384
## 18752 120 5 4.0 860070029
## 18753 120 12 3.0 860070182
## 18754 120 32 3.0 860069973
## 18755 120 52 3.0 860070065
## 18756 120 141 3.0 860069973
## 18757 120 260 5.0 860070065
## 18758 120 608 5.0 860070029
## 18759 120 631 3.0 860070216
## 18760 120 648 3.0 860069973
## 18761 120 653 3.0 860070065
## 18762 120 733 4.0 860070029
## 18763 120 736 3.0 860069973
## 18764 120 743 3.0 860070141
## 18765 120 765 3.0 860070306
## 18766 120 780 2.0 860069973
## 18767 120 783 3.0 860070141
## 18768 120 802 4.0 860070101
## 18769 120 852 2.0 860070141
## 18770 120 858 5.0 860070306
## 18771 120 1073 2.0 860070029
## 18772 120 1210 5.0 860070182
## 18773 120 1367 4.0 860070258
## 18774 121 1 4.0 847656180
## 18775 121 5 3.0 847656405
## 18776 121 6 5.0 847656264
## 18777 121 11 4.0 847656100
## 18778 121 16 5.0 847656340
## 18779 121 19 2.0 847656045
## 18780 121 22 3.0 847656357
## 18781 121 25 4.0 847656224
## 18782 121 39 4.0 847656062
## 18783 121 44 1.0 847656224
## 18784 121 47 3.0 847656010
## 18785 121 62 5.0 847656203
## 18786 121 95 3.0 847656129
## 18787 121 110 4.0 847655980
## 18788 121 141 4.0 847656180
## 18789 121 150 3.0 847655899
## 18790 121 161 3.0 847655980
## 18791 121 163 4.0 847656374
## 18792 121 186 3.0 847656203
## 18793 121 225 3.0 847656062
## 18794 121 237 4.0 847656357
## 18795 121 246 3.0 847656374
## 18796 121 252 3.0 847656203
## 18797 121 253 3.0 847655996
## 18798 121 265 2.0 847656245
## 18799 121 266 3.0 847656077
## 18800 121 272 1.0 847656374
## 18801 121 282 3.0 847656113
## 18802 121 288 4.0 847655996
## 18803 121 292 3.0 847655960
## 18804 121 296 4.0 847655899
## 18805 121 300 3.0 847656027
## 18806 121 316 3.0 847655945
## 18807 121 318 5.0 847655960
## 18808 121 337 4.0 847656180
## 18809 121 344 3.0 847655927
## 18810 121 349 3.0 847655945
## 18811 121 353 3.0 847656245
## 18812 121 356 4.0 847655945
## 18813 121 377 3.0 847656010
## 18814 121 380 3.0 847655899
## 18815 121 432 2.0 847656100
## 18816 121 434 3.0 847655960
## 18817 121 435 2.0 847656100
## 18818 121 440 4.0 847656077
## 18819 121 454 3.0 847655996
## 18820 121 457 3.0 847655927
## 18821 121 474 3.0 847656113
## 18822 121 497 3.0 847656316
## 18823 121 508 3.0 847656129
## 18824 121 527 3.0 847656045
## 18825 121 539 4.0 847656045
## 18826 121 555 4.0 847656290
## 18827 121 590 4.0 847655899
## 18828 121 592 3.0 847655899
## 18829 121 595 3.0 847655945
## 18830 121 597 3.0 847656027
## 18831 121 780 4.0 847656203
## 18832 122 2 4.0 1461561176
## 18833 122 19 3.5 1461562132
## 18834 122 32 5.0 1461561526
## 18835 122 47 4.5 1461561420
## 18836 122 50 5.0 1461561151
## 18837 122 70 4.5 1461562250
## 18838 122 104 4.0 1461562198
## 18839 122 111 5.0 1461561504
## 18840 122 165 5.0 1461562066
## 18841 122 231 4.5 1461562094
## 18842 122 253 4.5 1461562158
## 18843 122 260 5.0 1461561351
## 18844 122 288 5.0 1461562373
## 18845 122 292 4.0 1461563011
## 18846 122 296 5.0 1461561354
## 18847 122 318 5.0 1461561133
## 18848 122 356 5.0 1461561332
## 18849 122 442 4.0 1461562544
## 18850 122 480 4.0 1461561380
## 18851 122 520 4.0 1461562759
## 18852 122 551 5.0 1461562043
## 18853 122 555 4.5 1461562546
## 18854 122 589 5.0 1461561440
## 18855 122 592 4.5 1461562201
## 18856 122 593 5.0 1461561148
## 18857 122 608 5.0 1461561468
## 18858 122 714 5.0 1461562845
## 18859 122 778 5.0 1461561523
## 18860 122 780 4.0 1461561583
## 18861 122 784 5.0 1461562570
## 18862 122 858 5.0 1461561142
## 18863 122 923 5.0 1461562092
## 18864 122 1073 5.0 1461562395
## 18865 122 1080 5.0 1461561803
## 18866 122 1089 5.0 1461561470
## 18867 122 1090 5.0 1461562305
## 18868 122 1136 5.0 1461561527
## 18869 122 1196 5.0 1461561368
## 18870 122 1197 5.0 1461561484
## 18871 122 1199 5.0 1461562127
## 18872 122 1200 5.0 1461561520
## 18873 122 1208 5.0 1461561687
## 18874 122 1210 5.0 1461561411
## 18875 122 1213 5.0 1461561146
## 18876 122 1214 5.0 1461561511
## 18877 122 1219 4.0 1461561765
## 18878 122 1220 4.5 1461562308
## 18879 122 1222 5.0 1461561649
## 18880 122 1237 5.0 1461562724
## 18881 122 1247 5.0 1461561850
## 18882 122 1263 5.0 1461562766
## 18883 122 1265 5.0 1461561524
## 18884 122 1270 5.0 1461561374
## 18885 122 1275 4.5 1461563213
## 18886 122 1276 5.0 1461562773
## 18887 122 1345 4.5 1461562873
## 18888 122 1377 4.5 1461562595
## 18889 122 1391 5.0 1461562311
## 18890 122 1394 5.0 1461562978
## 18891 122 1562 3.0 1461562647
## 18892 122 1673 5.0 1461562720
## 18893 122 1676 4.5 1461562121
## 18894 122 1682 5.0 1461561457
## 18895 122 1729 4.5 1461562385
## 18896 122 1732 5.0 1461561502
## 18897 122 1748 5.0 1461562430
## 18898 122 1921 4.0 1461562426
## 18899 122 1923 4.5 1461562164
## 18900 122 1961 5.0 1461561680
## 18901 122 1968 4.5 1461561753
## 18902 122 2003 4.0 1461562916
## 18903 122 2011 4.5 1461561777
## 18904 122 2012 4.0 1461562055
## 18905 122 2076 5.0 1461562669
## 18906 122 2160 5.0 1461562816
## 18907 122 2232 4.5 1461562390
## 18908 122 2291 5.0 1461561849
## 18909 122 2355 4.5 1461561799
## 18910 122 2455 5.0 1461562864
## 18911 122 2502 5.0 1461561661
## 18912 122 2542 5.0 1461561648
## 18913 122 2571 5.0 1461561331
## 18914 122 2692 4.5 1461561716
## 18915 122 2710 4.5 1461562263
## 18916 122 2761 4.5 1461562398
## 18917 122 2762 5.0 1461561426
## 18918 122 2804 5.0 1461562662
## 18919 122 2916 5.0 1461562061
## 18920 122 2918 4.5 1461561653
## 18921 122 2959 5.0 1461561144
## 18922 122 2987 4.5 1461562489
## 18923 122 2997 5.0 1461561615
## 18924 122 3020 4.5 1461563017
## 18925 122 3089 5.0 1461562948
## 18926 122 3114 5.0 1461561618
## 18927 122 3160 5.0 1461562377
## 18928 122 3175 4.5 1461562375
## 18929 122 3253 4.0 1461562566
## 18930 122 3275 4.5 1461562123
## 18931 122 3409 4.0 1461562379
## 18932 122 3462 5.0 1461562327
## 18933 122 3481 4.5 1461562196
## 18934 122 3499 4.5 1461562891
## 18935 122 3535 5.0 1461561720
## 18936 122 3671 4.5 1461562679
## 18937 122 3702 4.5 1461562556
## 18938 122 3793 4.0 1461561497
## 18939 122 3863 4.5 1461562808
## 18940 122 3911 5.0 1461562690
## 18941 122 3949 5.0 1461561463
## 18942 122 3968 4.0 1461562875
## 18943 122 4011 5.0 1461561476
## 18944 122 4016 4.5 1461562284
## 18945 122 4027 5.0 1461561613
## 18946 122 4148 4.0 1461562249
## 18947 122 4239 4.5 1461562346
## 18948 122 4262 5.0 1461561671
## 18949 122 4343 4.0 1461562735
## 18950 122 4641 4.5 1461562692
## 18951 122 4643 4.0 1461562189
## 18952 122 4776 5.0 1461562030
## 18953 122 4816 4.5 1461561829
## 18954 122 4873 4.5 1461563247
## 18955 122 4874 4.5 1461562276
## 18956 122 4886 5.0 1461561432
## 18957 122 4963 4.0 1461561478
## 18958 122 4975 4.0 1461561861
## 18959 122 4979 5.0 1461561706
## 18960 122 5110 5.0 1461562986
## 18961 122 5171 3.5 1461563005
## 18962 122 5219 4.0 1461562245
## 18963 122 5630 4.5 1461562387
## 18964 122 5669 4.5 1461562136
## 18965 122 5673 4.5 1461562740
## 18966 122 5810 4.5 1461562233
## 18967 122 5989 4.5 1461561485
## 18968 122 6188 4.5 1461562434
## 18969 122 6333 4.5 1461561626
## 18970 122 6377 4.5 1461561401
## 18971 122 6502 5.0 1461561646
## 18972 122 6807 5.0 1461562420
## 18973 122 6936 4.0 1461562152
## 18974 122 6957 4.5 1461562716
## 18975 122 7022 4.0 1461562401
## 18976 122 7373 4.5 1461561770
## 18977 122 7387 5.0 1461563238
## 18978 122 7438 5.0 1461561437
## 18979 122 7451 4.5 1461561791
## 18980 122 8464 4.5 1461562068
## 18981 122 8641 4.5 1461561805
## 18982 122 8644 4.0 1461561518
## 18983 122 8807 4.0 1461562476
## 18984 122 8874 5.0 1461561501
## 18985 122 8917 5.0 1461562356
## 18986 122 27660 5.0 1461562621
## 18987 122 27706 4.0 1461562404
## 18988 122 27773 4.0 1461561548
## 18989 122 27831 4.5 1461562881
## 18990 122 27904 4.5 1461562456
## 18991 122 30810 4.5 1461562209
## 18992 122 31658 5.0 1461561631
## 18993 122 33004 4.5 1461561774
## 18994 122 33679 4.0 1461561557
## 18995 122 34437 4.5 1461562901
## 18996 122 39183 5.0 1461562085
## 18997 122 41997 4.5 1461562518
## 18998 122 46530 4.0 1461562439
## 18999 122 46578 5.0 1461561473
## 19000 122 46970 4.0 1461562638
## 19001 122 47997 5.0 1461562465
## 19002 122 48043 4.5 1461562320
## 19003 122 48385 4.5 1461561623
## 19004 122 48516 5.0 1461561397
## 19005 122 48774 5.0 1461561551
## 19006 122 48780 5.0 1461561434
## 19007 122 49272 4.5 1461561459
## 19008 122 51255 5.0 1461561588
## 19009 122 51540 5.0 1461561867
## 19010 122 52281 5.0 1461562414
## 19011 122 52319 4.5 1461562790
## 19012 122 53000 3.5 1461562258
## 19013 122 53519 4.5 1461562360
## 19014 122 53953 4.0 1461562577
## 19015 122 54503 5.0 1461561611
## 19016 122 54995 5.0 1461562598
## 19017 122 55247 4.5 1461561578
## 19018 122 55269 4.5 1461562354
## 19019 122 55765 5.0 1461562137
## 19020 122 55820 5.0 1461561494
## 19021 122 56174 4.0 1461561537
## 19022 122 56782 5.0 1461561669
## 19023 122 57528 4.0 1461562746
## 19024 122 58559 4.0 1461561340
## 19025 122 58998 4.5 1461562143
## 19026 122 59387 4.5 1461562762
## 19027 122 60069 5.0 1461561372
## 19028 122 60074 3.5 1461561757
## 19029 122 60684 4.5 1461561586
## 19030 122 61240 4.5 1461562161
## 19031 122 61323 5.0 1461561807
## 19032 122 63113 4.5 1461561761
## 19033 122 63131 4.0 1461562625
## 19034 122 64957 4.5 1461561589
## 19035 122 66097 4.5 1461562169
## 19036 122 67087 4.5 1461562515
## 19037 122 68237 5.0 1461561560
## 19038 122 68954 5.0 1461561370
## 19039 122 69122 4.5 1461561481
## 19040 122 69481 4.5 1461561728
## 19041 122 69784 4.5 1461562686
## 19042 122 70599 4.0 1461563190
## 19043 122 71530 3.0 1461562512
## 19044 122 71535 4.5 1461561508
## 19045 122 72226 5.0 1461562096
## 19046 122 72407 2.0 1461562587
## 19047 122 72998 4.5 1461561389
## 19048 122 74458 5.0 1461561407
## 19049 122 76251 4.0 1461561555
## 19050 122 77561 4.0 1461561531
## 19051 122 77866 3.5 1461562672
## 19052 122 78209 4.0 1461562787
## 19053 122 79132 4.5 1461561337
## 19054 122 79592 4.5 1461562659
## 19055 122 79702 5.0 1461561683
## 19056 122 80463 5.0 1461563274
## 19057 122 81229 3.5 1461562027
## 19058 122 81537 4.5 1461562657
## 19059 122 81591 5.0 1461561472
## 19060 122 86190 3.5 1461562529
## 19061 122 86298 3.5 1461563186
## 19062 122 86345 5.0 1461562702
## 19063 122 86347 5.0 1461562877
## 19064 122 86377 5.0 1461562642
## 19065 122 86833 5.0 1461562287
## 19066 122 87232 5.0 1461561514
## 19067 122 87306 4.5 1461562175
## 19068 122 87869 3.5 1461562082
## 19069 122 89470 4.5 1461562819
## 19070 122 91529 4.0 1461561387
## 19071 122 91535 4.0 1461562323
## 19072 122 91658 4.0 1461561573
## 19073 122 92535 5.0 1461562563
## 19074 122 93510 4.5 1461561794
## 19075 122 93840 5.0 1461561802
## 19076 122 94677 4.5 1461562569
## 19077 122 94864 4.0 1461561643
## 19078 122 94959 5.0 1461561608
## 19079 122 95088 4.0 1461562795
## 19080 122 96079 4.5 1461561540
## 19081 122 96728 5.0 1461563036
## 19082 122 96737 5.0 1461562301
## 19083 122 97306 4.0 1461562618
## 19084 122 99007 3.5 1461562731
## 19085 122 99114 5.0 1461561375
## 19086 122 101142 4.5 1461563008
## 19087 122 101864 4.0 1461561788
## 19088 122 103042 4.0 1461561822
## 19089 122 103141 4.5 1461562207
## 19090 122 103228 4.5 1461561859
## 19091 122 103253 4.0 1461561811
## 19092 122 103341 5.0 1461562446
## 19093 122 103772 4.5 1461562340
## 19094 122 104841 4.5 1461561466
## 19095 122 106002 3.0 1461562216
## 19096 122 106782 5.0 1461561445
## 19097 122 106920 5.0 1461561493
## 19098 122 107406 4.5 1461562058
## 19099 122 108932 4.5 1461561651
## 19100 122 109487 5.0 1461561347
## 19101 122 112515 4.5 1461562764
## 19102 122 112852 4.0 1461561415
## 19103 122 114662 3.5 1461561742
## 19104 122 115122 5.0 1461562651
## 19105 122 115569 4.5 1461561575
## 19106 122 115617 4.0 1461561417
## 19107 122 116799 4.0 1461563054
## 19108 122 117529 4.0 1461561277
## 19109 122 119145 4.5 1461561499
## 19110 122 120466 5.0 1461562139
## 19111 122 121231 5.0 1461562536
## 19112 122 122882 5.0 1461561216
## 19113 122 122886 5.0 1461561194
## 19114 122 122900 4.0 1461561662
## 19115 122 128360 5.0 1461561234
## 19116 122 134130 4.0 1461561189
## 19117 122 134170 4.0 1461561257
## 19118 122 134368 3.5 1461561251
## 19119 122 139385 5.0 1461561218
## 19120 122 144976 4.5 1461561286
## 19121 122 148652 3.5 1461561313
## 19122 122 152077 4.0 1461561222
## 19123 122 152081 4.0 1461561191
## 19124 123 47 4.5 1447291940
## 19125 123 260 4.5 1447269141
## 19126 123 293 3.5 1447291133
## 19127 123 296 4.0 1447291797
## 19128 123 318 4.0 1447269105
## 19129 123 593 4.0 1447291739
## 19130 123 1196 4.0 1447291880
## 19131 123 2329 4.5 1447269130
## 19132 123 2571 4.0 1447269089
## 19133 123 2858 3.5 1447291736
## 19134 123 2959 4.5 1447269071
## 19135 123 4226 4.5 1447291885
## 19136 123 4776 4.0 1448836068
## 19137 123 4886 4.0 1447292485
## 19138 123 4993 3.5 1447269095
## 19139 123 5952 3.5 1447269135
## 19140 123 6016 3.5 1447291746
## 19141 123 7153 3.5 1447269086
## 19142 123 44199 4.0 1447292466
## 19143 123 48780 4.0 1447291944
## 19144 123 51540 4.0 1448836008
## 19145 123 54286 3.5 1447292338
## 19146 123 55765 4.0 1448836045
## 19147 123 58803 4.5 1448382292
## 19148 123 59315 4.0 1447292423
## 19149 123 60684 4.0 1448382175
## 19150 123 64969 4.0 1448382314
## 19151 123 68157 4.0 1447292276
## 19152 123 68554 4.5 1448382333
## 19153 123 69306 4.0 1448836089
## 19154 123 76093 4.5 1447292258
## 19155 123 79132 4.0 1447269091
## 19156 123 80463 4.5 1448382173
## 19157 123 81782 4.0 1448836073
## 19158 123 84152 4.0 1448382242
## 19159 123 85414 4.5 1448382206
## 19160 123 87232 4.0 1448382195
## 19161 123 89745 4.0 1447292422
## 19162 123 91500 3.5 1448382200
## 19163 123 91542 4.0 1448382255
## 19164 123 96829 4.5 1447291823
## 19165 123 97923 4.0 1448836052
## 19166 123 99114 4.5 1447291764
## 19167 123 104879 4.0 1447292408
## 19168 123 104913 3.5 1447292488
## 19169 123 106920 3.5 1447292445
## 19170 123 109487 4.5 1447291938
## 19171 123 111759 4.5 1448382232
## 19172 123 112171 3.5 1448836057
## 19173 123 112552 3.5 1447291816
## 19174 123 112556 4.5 1447292383
## 19175 123 112852 4.0 1447292431
## 19176 123 115569 4.5 1448382344
## 19177 123 115617 3.5 1447292401
## 19178 123 116797 4.5 1447292250
## 19179 123 143458 4.0 1448381953
## 19180 124 1 4.0 1336584336
## 19181 124 50 4.5 1336412889
## 19182 124 110 3.5 1336584326
## 19183 124 175 4.0 1336409774
## 19184 124 256 3.0 1336409649
## 19185 124 260 4.0 1336423436
## 19186 124 296 4.5 1336423393
## 19187 124 318 4.5 1336412895
## 19188 124 344 3.5 1336584451
## 19189 124 356 5.0 1336423402
## 19190 124 480 3.5 1336423441
## 19191 124 520 4.0 1336409551
## 19192 124 543 3.0 1336409602
## 19193 124 593 4.0 1336423449
## 19194 124 608 5.0 1336412883
## 19195 124 1091 3.0 1336409751
## 19196 124 1092 4.0 1336409634
## 19197 124 1196 4.5 1336584447
## 19198 124 1210 4.5 1336584462
## 19199 124 1223 4.0 1336409689
## 19200 124 1358 5.0 1336409590
## 19201 124 1405 4.0 1336409664
## 19202 124 1517 4.0 1336409879
## 19203 124 1617 4.0 1336584445
## 19204 124 1644 2.5 1336409697
## 19205 124 1784 4.0 1336412860
## 19206 124 1884 4.5 1336584611
## 19207 124 1961 4.0 1336412878
## 19208 124 2161 3.5 1336409645
## 19209 124 2329 4.5 1336412851
## 19210 124 2353 3.0 1336409557
## 19211 124 2683 4.0 1336409883
## 19212 124 2712 3.5 1336409579
## 19213 124 2858 5.0 1336584459
## 19214 124 3147 4.5 1336412867
## 19215 124 3252 4.5 1336409712
## 19216 124 3263 4.0 1336409741
## 19217 124 3328 4.5 1336413358
## 19218 124 3556 4.0 1336584597
## 19219 124 3949 5.0 1336413175
## 19220 124 4226 4.5 1336413304
## 19221 124 4995 4.0 1336584442
## 19222 124 5608 4.5 1336413269
## 19223 124 6188 4.0 1336409872
## 19224 124 6377 5.0 1336584435
## 19225 124 7361 5.0 1336413015
## 19226 124 8641 3.5 1336409867
## 19227 124 50872 4.5 1336584602
## 19228 124 56145 0.5 1336409918
## 19229 124 79592 2.0 1336409828
## 19230 125 2 4.0 1474311709
## 19231 125 81 3.0 1474415153
## 19232 125 110 4.5 1474311613
## 19233 125 208 4.0 1474483295
## 19234 125 223 5.0 1474295267
## 19235 125 288 5.0 1474294680
## 19236 125 296 4.5 1474141538
## 19237 125 318 4.0 1474141490
## 19238 125 337 5.0 1474294944
## 19239 125 356 5.0 1474142139
## 19240 125 501 4.5 1474295924
## 19241 125 522 3.0 1474414944
## 19242 125 555 4.0 1474411255
## 19243 125 589 4.0 1474289503
## 19244 125 593 4.0 1474296735
## 19245 125 608 3.0 1474311629
## 19246 125 858 4.5 1474141453
## 19247 125 1034 4.5 1474411436
## 19248 125 1084 4.5 1474295245
## 19249 125 1120 4.5 1474592639
## 19250 125 1193 5.0 1474141468
## 19251 125 1206 4.5 1474371143
## 19252 125 1210 4.0 1474289493
## 19253 125 1215 4.0 1474412961
## 19254 125 1221 4.5 1474289973
## 19255 125 1240 4.0 1474289509
## 19256 125 1261 4.5 1474411870
## 19257 125 1265 4.5 1474413801
## 19258 125 1270 5.0 1474282985
## 19259 125 1285 3.5 1474412064
## 19260 125 1580 4.0 1474569886
## 19261 125 1590 2.0 1474295046
## 19262 125 1625 5.0 1474375054
## 19263 125 1726 4.5 1474483288
## 19264 125 1732 4.5 1474411921
## 19265 125 1844 4.5 1474296148
## 19266 125 1873 3.0 1474415220
## 19267 125 2318 3.5 1474495364
## 19268 125 2321 5.0 1474294743
## 19269 125 2387 4.5 1474382209
## 19270 125 2571 5.0 1474141548
## 19271 125 2596 4.5 1474591407
## 19272 125 2600 5.0 1474294595
## 19273 125 2657 2.0 1476107406
## 19274 125 2692 4.0 1474413375
## 19275 125 2843 4.0 1474460123
## 19276 125 2858 5.0 1474294616
## 19277 125 2918 4.0 1474311698
## 19278 125 2959 5.0 1474141464
## 19279 125 3052 5.0 1474591641
## 19280 125 3083 4.0 1474470031
## 19281 125 3147 4.0 1474470150
## 19282 125 3342 5.0 1474294671
## 19283 125 3553 3.0 1474415167
## 19284 125 3949 2.5 1474459811
## 19285 125 4022 3.5 1474470187
## 19286 125 4082 5.0 1474294877
## 19287 125 4226 4.0 1474413424
## 19288 125 4246 2.5 1474289799
## 19289 125 4643 4.0 1475407893
## 19290 125 4738 4.0 1474412893
## 19291 125 4848 4.5 1474460274
## 19292 125 4864 2.5 1474295204
## 19293 125 4878 4.5 1474376373
## 19294 125 4973 0.5 1474141865
## 19295 125 4979 4.5 1474296034
## 19296 125 4995 4.0 1474470121
## 19297 125 5088 5.0 1474141620
## 19298 125 5218 3.5 1474289877
## 19299 125 5219 3.0 1474415136
## 19300 125 5459 3.0 1474569899
## 19301 125 5617 4.5 1474412496
## 19302 125 5816 3.0 1474289902
## 19303 125 5903 3.5 1474482157
## 19304 125 5956 4.5 1475411070
## 19305 125 6016 4.0 1474412458
## 19306 125 6502 3.5 1474483502
## 19307 125 6539 4.0 1474481294
## 19308 125 6711 3.0 1474295337
## 19309 125 6874 4.5 1474311683
## 19310 125 6902 4.0 1474375238
## 19311 125 6952 3.0 1474415234
## 19312 125 7008 5.0 1474294576
## 19313 125 7022 5.0 1474294895
## 19314 125 7254 5.0 1474289782
## 19315 125 7265 5.0 1474294802
## 19316 125 7361 4.5 1474311680
## 19317 125 7371 5.0 1474141692
## 19318 125 7438 4.5 1474311716
## 19319 125 8254 5.0 1474294926
## 19320 125 8360 3.5 1474289753
## 19321 125 8368 3.0 1474289904
## 19322 125 8376 4.0 1475411087
## 19323 125 8665 3.0 1474415015
## 19324 125 8807 3.0 1474295383
## 19325 125 8957 5.0 1474141821
## 19326 125 9010 5.0 1474283090
## 19327 125 26680 5.0 1474141776
## 19328 125 26681 3.0 1474414992
## 19329 125 27022 4.0 1474411587
## 19330 125 27482 4.5 1474295654
## 19331 125 27773 4.5 1474381667
## 19332 125 27788 4.0 1474413778
## 19333 125 32460 4.0 1474592918
## 19334 125 33145 3.0 1474414919
## 19335 125 33201 4.5 1474296002
## 19336 125 33615 3.0 1474415203
## 19337 125 33794 4.0 1507490380
## 19338 125 35836 4.0 1474371820
## 19339 125 36401 3.0 1474415250
## 19340 125 40148 2.0 1474294862
## 19341 125 42632 5.0 1474294717
## 19342 125 43836 2.0 1474295075
## 19343 125 44191 3.5 1474482342
## 19344 125 44195 4.0 1474412205
## 19345 125 44974 4.5 1475177594
## 19346 125 45440 4.5 1474295545
## 19347 125 45722 3.5 1474481214
## 19348 125 47491 4.5 1474295671
## 19349 125 47997 4.0 1474482144
## 19350 125 48385 4.5 1474295946
## 19351 125 48516 4.0 1474481000
## 19352 125 48774 4.5 1474481147
## 19353 125 50842 4.5 1474296363
## 19354 125 52328 2.5 1474414706
## 19355 125 52973 4.5 1474371699
## 19356 125 53125 4.0 1474481324
## 19357 125 54190 5.0 1474294909
## 19358 125 54286 2.5 1474414649
## 19359 125 54503 4.5 1474296090
## 19360 125 55247 3.5 1494785283
## 19361 125 55278 4.5 1474296324
## 19362 125 55820 0.5 1474481096
## 19363 125 55908 4.0 1474479976
## 19364 125 56174 2.0 1474295135
## 19365 125 58301 5.0 1474294530
## 19366 125 58559 4.0 1474296807
## 19367 125 58998 2.0 1474414431
## 19368 125 59315 3.5 1474480944
## 19369 125 59784 4.0 1474424744
## 19370 125 60069 4.0 1474480962
## 19371 125 60072 4.0 1474481392
## 19372 125 60684 3.5 1474482238
## 19373 125 60756 4.0 1474371969
## 19374 125 60950 5.0 1474591720
## 19375 125 61323 2.0 1474295108
## 19376 125 62336 4.5 1474374208
## 19377 125 62434 4.5 1474371925
## 19378 125 62439 4.5 1474296021
## 19379 125 63072 3.0 1474482122
## 19380 125 63276 4.5 1474470262
## 19381 125 65130 5.0 1474294959
## 19382 125 65514 4.0 1474296551
## 19383 125 65642 4.5 1474375988
## 19384 125 67087 2.0 1474294990
## 19385 125 67695 5.0 1474294341
## 19386 125 68157 2.5 1474481035
## 19387 125 68237 3.5 1474482294
## 19388 125 68358 3.5 1474481128
## 19389 125 68954 4.0 1474481051
## 19390 125 69516 2.5 1474414673
## 19391 125 69640 2.5 1474295232
## 19392 125 69757 1.0 1474141907
## 19393 125 70286 4.0 1474481068
## 19394 125 71057 4.0 1474482104
## 19395 125 71264 4.5 1474295986
## 19396 125 71304 4.5 1474412767
## 19397 125 71429 4.5 1474294502
## 19398 125 71520 4.5 1474296426
## 19399 125 71530 2.0 1474295157
## 19400 125 72011 4.0 1474495294
## 19401 125 72226 5.0 1474294644
## 19402 125 72998 4.5 1474480904
## 19403 125 73488 2.0 1474414479
## 19404 125 74789 2.0 1474295022
## 19405 125 75985 4.5 1474296269
## 19406 125 76077 3.5 1474570118
## 19407 125 76093 4.0 1474283299
## 19408 125 76251 4.0 1474283323
## 19409 125 76293 2.5 1474414576
## 19410 125 78218 3.0 1474414895
## 19411 125 78349 3.5 1474376427
## 19412 125 79132 4.0 1474297303
## 19413 125 79357 4.0 1474412922
## 19414 125 79553 3.5 1474371006
## 19415 125 79592 4.0 1474570484
## 19416 125 79702 4.0 1474142151
## 19417 125 80549 3.5 1474569979
## 19418 125 81562 4.0 1474495255
## 19419 125 83349 3.0 1474415103
## 19420 125 84152 3.5 1474375091
## 19421 125 84772 3.0 1474570132
## 19422 125 84952 4.0 1474495717
## 19423 125 84954 3.5 1474376620
## 19424 125 86190 3.0 1474415043
## 19425 125 86332 3.0 1474295314
## 19426 125 86721 5.0 1474294373
## 19427 125 87869 4.0 1474481433
## 19428 125 88129 4.5 1474294429
## 19429 125 88140 3.0 1474295360
## 19430 125 88163 4.0 1474570184
## 19431 125 88744 4.0 1474480730
## 19432 125 89190 3.0 1474414844
## 19433 125 90403 2.5 1474414622
## 19434 125 91470 4.5 1474296069
## 19435 125 91500 2.0 1474283308
## 19436 125 91542 3.5 1474485429
## 19437 125 91690 4.5 1474295492
## 19438 125 91947 4.5 1474296231
## 19439 125 92259 4.0 1474283757
## 19440 125 92420 4.5 1474296305
## 19441 125 92694 4.5 1474295966
## 19442 125 93510 4.0 1474570525
## 19443 125 93840 4.5 1474296376
## 19444 125 93855 4.5 1474294459
## 19445 125 94677 4.5 1474296461
## 19446 125 94931 3.5 1474591943
## 19447 125 94959 5.0 1474141666
## 19448 125 95088 3.5 1474413158
## 19449 125 95167 3.5 1474570008
## 19450 125 95441 4.5 1474296341
## 19451 125 95690 4.5 1474296445
## 19452 125 95761 4.5 1474294397
## 19453 125 96588 4.0 1476314010
## 19454 125 96829 4.5 1474295813
## 19455 125 97752 4.0 1474482227
## 19456 125 97913 3.5 1474570322
## 19457 125 97938 4.0 1474495239
## 19458 125 98607 4.5 1474296285
## 19459 125 99007 4.5 1474296047
## 19460 125 99114 4.0 1474283226
## 19461 125 99117 4.0 1474371841
## 19462 125 99437 4.5 1474296112
## 19463 125 99813 4.5 1474289963
## 19464 125 100083 5.0 1474141969
## 19465 125 100882 4.5 1474295849
## 19466 125 101112 4.5 1475843429
## 19467 125 103341 4.5 1474295694
## 19468 125 104374 4.0 1474413912
## 19469 125 105213 4.5 1474295525
## 19470 125 106782 4.5 1474283367
## 19471 125 106918 4.0 1474570416
## 19472 125 106920 4.0 1474283659
## 19473 125 107630 4.5 1474296214
## 19474 125 108727 4.0 1474592613
## 19475 125 108932 3.0 1474569953
## 19476 125 109487 3.5 1474482084
## 19477 125 110330 4.5 1474296253
## 19478 125 110882 4.5 1474295613
## 19479 125 111113 4.0 1474371981
## 19480 125 111743 4.0 1474374125
## 19481 125 111759 4.0 1474283560
## 19482 125 112183 4.0 1474283809
## 19483 125 112552 4.0 1474414167
## 19484 125 112623 4.0 1475446231
## 19485 125 113741 4.0 1474375614
## 19486 125 114935 4.0 1474375014
## 19487 125 115617 4.0 1474570310
## 19488 125 115680 4.0 1474375757
## 19489 125 116897 4.5 1474295720
## 19490 125 117466 3.5 1474425049
## 19491 125 119141 4.0 1474382076
## 19492 125 119145 4.0 1474570052
## 19493 125 120466 3.0 1475407828
## 19494 125 122882 4.5 1474283369
## 19495 125 122890 3.5 1481392791
## 19496 125 122892 3.0 1474414820
## 19497 125 122904 4.5 1474283798
## 19498 125 122918 3.5 1494785239
## 19499 125 122922 4.0 1480789759
## 19500 125 127096 4.0 1474432471
## 19501 125 127198 4.0 1474591366
## 19502 125 127202 4.0 1474626817
## 19503 125 128360 4.0 1474284240
## 19504 125 128620 4.0 1476224234
## 19505 125 130490 3.0 1474414778
## 19506 125 131749 3.0 1474414744
## 19507 125 131920 4.5 1474295590
## 19508 125 133217 3.5 1474636359
## 19509 125 133771 3.5 1474295446
## 19510 125 134130 4.0 1474283297
## 19511 125 134170 4.0 1474413228
## 19512 125 134393 4.0 1474371799
## 19513 125 135143 3.5 1480789755
## 19514 125 135436 3.5 1475361905
## 19515 125 135567 2.5 1485508720
## 19516 125 135887 3.0 1474414799
## 19517 125 136864 2.5 1474414553
## 19518 125 137857 3.5 1480789748
## 19519 125 138036 4.0 1474283878
## 19520 125 139385 3.0 1474284127
## 19521 125 139855 3.5 1480790078
## 19522 125 140928 3.5 1478197237
## 19523 125 141408 4.0 1475174917
## 19524 125 141544 4.0 1474374637
## 19525 125 142222 4.0 1475147204
## 19526 125 142420 2.5 1474495187
## 19527 125 142422 4.0 1475361892
## 19528 125 142456 4.5 1474295630
## 19529 125 142509 4.5 1474295566
## 19530 125 143355 3.5 1513697325
## 19531 125 147142 3.0 1474414866
## 19532 125 148626 3.5 1474424812
## 19533 125 148956 3.0 1476002354
## 19534 125 149144 4.0 1475264557
## 19535 125 149146 4.0 1475264558
## 19536 125 149354 3.0 1475361944
## 19537 125 149830 4.5 1474295465
## 19538 125 149902 2.0 1476224175
## 19539 125 151455 4.0 1485622301
## 19540 125 151695 4.0 1474836315
## 19541 125 152077 4.0 1474425167
## 19542 125 152081 4.0 1474289567
## 19543 125 152083 4.0 1481392782
## 19544 125 152091 4.0 1474411738
## 19545 125 152284 3.5 1474627030
## 19546 125 152970 4.0 1481392558
## 19547 125 155064 2.5 1485508707
## 19548 125 155509 4.0 1476313973
## 19549 125 156371 4.0 1474469682
## 19550 125 156387 3.5 1476903871
## 19551 125 158238 4.0 1474425213
## 19552 125 158783 4.0 1489005130
## 19553 125 158872 5.0 1474141733
## 19554 125 158966 4.5 1474295426
## 19555 125 158972 3.5 1494785115
## 19556 125 159415 4.0 1476903864
## 19557 125 159717 3.5 1478197208
## 19558 125 160080 3.5 1475283110
## 19559 125 160271 3.5 1476903881
## 19560 125 160563 3.5 1476904043
## 19561 125 160567 3.5 1480790359
## 19562 125 161131 3.5 1480789738
## 19563 125 161580 3.5 1481393033
## 19564 125 161582 4.0 1494785040
## 19565 125 161634 2.5 1474414524
## 19566 125 161966 4.0 1481486017
## 19567 125 162082 3.5 1474569053
## 19568 125 162350 3.5 1483633893
## 19569 125 162478 4.0 1475625942
## 19570 125 162578 3.0 1477574933
## 19571 125 163134 4.0 1495649423
## 19572 125 163645 4.0 1494785105
## 19573 125 164179 3.5 1480789721
## 19574 125 164881 1.5 1476002239
## 19575 125 164909 4.0 1489005105
## 19576 125 166461 4.0 1489005099
## 19577 125 166492 2.5 1481374463
## 19578 125 166528 3.0 1485508572
## 19579 125 166635 4.0 1513697360
## 19580 125 167746 4.0 1513774320
## 19581 125 167790 3.5 1483633961
## 19582 125 168250 4.0 1494785011
## 19583 125 168252 3.5 1494785017
## 19584 125 168266 4.0 1495649436
## 19585 125 171763 5.0 1513697215
## 19586 125 174053 5.0 1513697142
## 19587 125 174055 3.0 1513697168
## 19588 125 175303 3.0 1513697368
## 19589 125 176371 3.5 1513697172
## 19590 126 34 3.0 845925854
## 19591 126 47 5.0 845925822
## 19592 126 110 4.0 845925785
## 19593 126 150 4.0 845925577
## 19594 126 153 4.0 845925615
## 19595 126 161 3.0 845925732
## 19596 126 165 4.0 845925615
## 19597 126 185 3.0 845925732
## 19598 126 208 2.0 845925732
## 19599 126 231 1.0 845925656
## 19600 126 253 1.0 845925785
## 19601 126 288 1.0 845925822
## 19602 126 292 3.0 845925732
## 19603 126 296 1.0 845925577
## 19604 126 300 2.0 845925854
## 19605 126 316 1.0 845925656
## 19606 126 318 5.0 845925690
## 19607 126 329 4.0 845925690
## 19608 126 339 3.0 845925785
## 19609 126 344 1.0 845925615
## 19610 126 349 4.0 845925656
## 19611 126 356 4.0 845925690
## 19612 126 364 5.0 845925822
## 19613 126 367 5.0 845925854
## 19614 126 377 5.0 845925822
## 19615 126 380 5.0 845925577
## 19616 126 410 2.0 845925854
## 19617 126 434 3.0 845925690
## 19618 126 454 5.0 845925785
## 19619 126 457 5.0 845925656
## 19620 126 480 3.0 845925690
## 19621 126 500 4.0 845925854
## 19622 126 588 3.0 845925615
## 19623 126 589 3.0 845925822
## 19624 126 590 4.0 845925577
## 19625 126 592 3.0 845925577
## 19626 126 593 3.0 845925615
## 19627 126 595 4.0 845925656
## 19628 127 272 3.0 1263527148
## 19629 127 903 3.0 1263527011
## 19630 127 910 4.0 1263527087
## 19631 127 913 5.0 1263527066
## 19632 127 1276 4.0 1263527076
## 19633 127 1302 2.0 1263527044
## 19634 127 1747 4.0 1263527080
## 19635 127 1947 4.0 1263527174
## 19636 127 1962 3.0 1263527180
## 19637 127 2100 2.0 1263527048
## 19638 127 2144 2.0 1263527188
## 19639 127 2455 1.0 1263527108
## 19640 127 2763 4.0 1263527039
## 19641 127 2915 2.0 1263527194
## 19642 127 3039 4.0 1263527135
## 19643 127 3101 1.0 1263527055
## 19644 127 3671 4.0 1263527112
## 19645 127 4226 2.0 1263527337
## 19646 127 5060 5.0 1263527031
## 19647 127 36517 4.0 1263527372
## 19648 127 55276 5.0 1263527385
## 19649 127 68954 0.5 1263527555
## 19650 128 110 5.0 899032847
## 19651 128 260 5.0 899033269
## 19652 128 593 5.0 899032763
## 19653 128 608 5.0 899033437
## 19654 128 898 5.0 899032763
## 19655 128 904 5.0 899033229
## 19656 128 905 5.0 899033229
## 19657 128 908 5.0 899032847
## 19658 128 911 4.0 899033506
## 19659 128 912 5.0 899032763
## 19660 128 923 4.0 899033269
## 19661 128 926 5.0 899033362
## 19662 128 935 5.0 899032806
## 19663 128 940 5.0 899032847
## 19664 128 942 4.0 899033506
## 19665 128 943 4.0 899033565
## 19666 128 945 5.0 899033565
## 19667 128 965 4.0 899033362
## 19668 128 1036 3.0 899033127
## 19669 128 1066 5.0 899032763
## 19670 128 1080 4.0 899033506
## 19671 128 1136 4.0 899033506
## 19672 128 1193 3.0 899033127
## 19673 128 1196 4.0 899033229
## 19674 128 1198 5.0 899032806
## 19675 128 1228 4.0 899032763
## 19676 128 1284 5.0 899033642
## 19677 128 1291 4.0 899033269
## 19678 128 1356 4.0 899033437
## 19679 128 1387 3.0 899033437
## 19680 128 1407 4.0 899032493
## 19681 128 1617 3.0 899032461
## 19682 128 1721 4.0 899032461
## 19683 129 47 3.5 1167376335
## 19684 129 110 4.0 1167375621
## 19685 129 160 3.5 1167377871
## 19686 129 185 3.5 1167376444
## 19687 129 208 4.0 1167375487
## 19688 129 239 4.0 1167378257
## 19689 129 253 3.5 1167376383
## 19690 129 260 4.0 1167375413
## 19691 129 292 3.5 1167376332
## 19692 129 316 4.5 1167375456
## 19693 129 480 3.5 1167375959
## 19694 129 485 3.5 1167375509
## 19695 129 541 3.5 1167376597
## 19696 129 588 3.5 1167375395
## 19697 129 597 4.0 1167376309
## 19698 129 648 4.0 1167376093
## 19699 129 653 3.5 1167377810
## 19700 129 733 4.0 1167376166
## 19701 129 736 4.0 1167376173
## 19702 129 780 3.5 1167375481
## 19703 129 1073 4.0 1167376169
## 19704 129 1101 4.0 1167375540
## 19705 129 1136 3.5 1167375403
## 19706 129 1196 4.0 1167375417
## 19707 129 1197 5.0 1167376218
## 19708 129 1210 4.0 1167375407
## 19709 129 1222 4.0 1167377073
## 19710 129 1358 0.5 1167377801
## 19711 129 1380 4.5 1167377566
## 19712 129 1517 3.5 1167376485
## 19713 129 1527 4.5 1167376349
## 19714 129 1544 4.0 1167377553
## 19715 129 1573 3.5 1167375444
## 19716 129 1625 4.0 1167377597
## 19717 129 1676 5.0 1167375460
## 19718 129 1690 3.5 1167375498
## 19719 129 1721 3.5 1167375999
## 19720 129 1907 4.5 1167378161
## 19721 129 1968 3.5 1167376325
## 19722 129 2021 3.5 1167375528
## 19723 129 2028 4.5 1167375631
## 19724 129 2105 4.0 1167378226
## 19725 129 2138 4.5 1167378132
## 19726 129 2139 3.5 1167378117
## 19727 129 2167 4.0 1167375439
## 19728 129 2174 4.5 1167376688
## 19729 129 2396 4.0 1167376074
## 19730 129 2571 4.5 1167375624
## 19731 129 2628 3.5 1167376125
## 19732 129 2683 3.0 1167376301
## 19733 129 2692 4.5 1167376892
## 19734 129 2706 3.5 1167375468
## 19735 129 2791 4.0 1167376396
## 19736 129 2858 4.5 1167375658
## 19737 129 2890 4.5 1167377837
## 19738 129 2916 4.0 1167376303
## 19739 129 2959 4.0 1167376127
## 19740 129 2987 4.0 1167376685
## 19741 129 3000 4.5 1167378075
## 19742 129 3034 4.0 1167378135
## 19743 129 3421 4.0 1167377668
## 19744 129 3556 5.0 1167375426
## 19745 129 3578 4.5 1167375964
## 19746 129 3623 3.5 1167376286
## 19747 129 3698 4.0 1167375538
## 19748 129 3745 4.0 1167378297
## 19749 129 3793 4.0 1167375944
## 19750 129 3948 3.5 1167376580
## 19751 129 3977 3.5 1167375474
## 19752 129 3996 4.0 1167376110
## 19753 129 4025 3.0 1167377804
## 19754 129 4090 4.5 1167378195
## 19755 129 4226 3.0 1167375933
## 19756 129 4306 3.5 1167375918
## 19757 129 4308 4.0 1167375447
## 19758 129 4310 4.0 1167377890
## 19759 129 4370 2.5 1167375496
## 19760 129 4446 4.0 1167378249
## 19761 129 4447 3.5 1167377734
## 19762 129 4878 2.5 1167376533
## 19763 129 4886 4.0 1167375848
## 19764 129 4896 4.0 1167376436
## 19765 129 4963 4.0 1167376120
## 19766 129 4993 4.5 1167375869
## 19767 129 5010 4.5 1167377234
## 19768 129 5159 4.0 1167378246
## 19769 129 5378 3.5 1167375484
## 19770 129 5418 4.0 1167376195
## 19771 129 5445 4.0 1167375910
## 19772 129 5481 2.5 1167377687
## 19773 129 5502 4.0 1167376607
## 19774 129 5618 4.5 1167377037
## 19775 129 5679 2.0 1167376727
## 19776 129 5816 4.0 1167376264
## 19777 129 5952 4.5 1167375628
## 19778 129 6093 4.5 1167378152
## 19779 129 6218 4.5 1167377076
## 19780 129 6333 4.5 1167375988
## 19781 129 6365 4.0 1167375997
## 19782 129 6378 4.0 1167376574
## 19783 129 6502 3.5 1167376742
## 19784 129 6537 3.5 1167376814
## 19785 129 6539 4.0 1167375893
## 19786 129 6711 4.0 1167376068
## 19787 129 6863 4.0 1167376699
## 19788 129 6874 4.5 1167375854
## 19789 129 6934 3.5 1167376365
## 19790 129 7099 4.5 1167378073
## 19791 129 7143 5.0 1167376536
## 19792 129 7153 4.5 1167376071
## 19793 129 7438 4.0 1167376056
## 19794 129 7458 3.5 1167377906
## 19795 129 8132 4.5 1167378419
## 19796 129 8368 4.0 1167376400
## 19797 129 8644 4.0 1167376704
## 19798 129 8665 4.0 1167378423
## 19799 129 8874 4.0 1167376683
## 19800 129 27660 4.5 1167378109
## 19801 129 30793 3.5 1167376460
## 19802 129 31184 4.5 1167378126
## 19803 129 31658 4.0 1167378071
## 19804 129 32587 4.5 1167376045
## 19805 129 33004 3.5 1167377482
## 19806 129 33166 5.0 1167376429
## 19807 129 33493 3.5 1167375908
## 19808 129 33615 3.0 1167378219
## 19809 129 33679 5.0 1167377052
## 19810 129 33794 4.5 1167376147
## 19811 129 34048 3.5 1167376772
## 19812 129 35836 4.0 1167376636
## 19813 129 37830 4.5 1167378148
## 19814 129 39183 4.0 1167376707
## 19815 129 40815 4.0 1167376410
## 19816 129 40819 4.0 1167376463
## 19817 129 41566 4.0 1167376364
## 19818 129 44191 4.5 1167375970
## 19819 129 45186 4.0 1167377822
## 19820 129 45499 4.5 1167376478
## 19821 129 45722 4.0 1167376152
## 19822 129 49649 2.5 1167375947
## 19823 130 1 3.0 832589610
## 19824 130 110 5.0 832589660
## 19825 130 150 4.0 832589516
## 19826 130 153 4.0 832589546
## 19827 130 161 4.0 832589610
## 19828 130 165 4.0 832589546
## 19829 130 185 3.0 832589634
## 19830 130 208 3.0 832589634
## 19831 130 225 5.0 832589660
## 19832 130 231 4.0 832589583
## 19833 130 253 4.0 832589635
## 19834 130 292 5.0 832589635
## 19835 130 296 4.0 832589516
## 19836 130 300 3.0 832589634
## 19837 130 316 3.0 832589583
## 19838 130 317 3.0 832589692
## 19839 130 318 5.0 832589583
## 19840 130 329 3.0 832589583
## 19841 130 339 4.0 832589610
## 19842 130 344 4.0 832589546
## 19843 130 349 2.0 832589546
## 19844 130 380 3.0 832589516
## 19845 130 410 4.0 832589660
## 19846 130 434 3.0 832589610
## 19847 130 588 2.0 832589546
## 19848 130 590 3.0 832589516
## 19849 130 592 3.0 832589516
## 19850 130 595 2.0 832589583
## 19851 131 31 3.0 1349838570
## 19852 131 47 4.0 1349840567
## 19853 131 50 4.0 1349840171
## 19854 131 110 2.5 1349840503
## 19855 131 111 4.0 1349840160
## 19856 131 260 2.5 1349840250
## 19857 131 293 4.0 1349840551
## 19858 131 296 4.0 1349840345
## 19859 131 318 4.0 1349840163
## 19860 131 356 3.0 1349840626
## 19861 131 541 4.0 1349840347
## 19862 131 593 4.0 1349840279
## 19863 131 608 4.0 1349840158
## 19864 131 778 4.0 1349840763
## 19865 131 858 4.0 1349840197
## 19866 131 908 4.0 1349839865
## 19867 131 969 3.5 1349840182
## 19868 131 1061 3.5 1349838589
## 19869 131 1089 4.0 1349840429
## 19870 131 1104 4.5 1349838654
## 19871 131 1136 3.0 1349840276
## 19872 131 1193 3.5 1349840190
## 19873 131 1196 2.5 1349840282
## 19874 131 1200 3.5 1349840772
## 19875 131 1213 4.0 1349840259
## 19876 131 1214 4.5 1349840573
## 19877 131 1221 4.0 1349840201
## 19878 131 1228 4.5 1349840156
## 19879 131 1233 4.0 1349840367
## 19880 131 1276 4.0 1349840212
## 19881 131 1288 3.5 1349840636
## 19882 131 1617 4.0 1349840439
## 19883 131 2028 2.5 1349840456
## 19884 131 2273 2.5 1349838587
## 19885 131 2320 2.5 1349838954
## 19886 131 2329 3.5 1349840312
## 19887 131 2393 3.0 1349838598
## 19888 131 2571 3.0 1349840252
## 19889 131 2722 1.0 1349838625
## 19890 131 2858 3.5 1349840284
## 19891 131 2871 4.0 1349838608
## 19892 131 3178 3.0 1349838715
## 19893 131 3363 3.5 1349838628
## 19894 131 3624 2.0 1349838636
## 19895 131 3826 2.0 1349838642
## 19896 131 3949 2.5 1349840556
## 19897 131 4011 3.5 1349840633
## 19898 131 4226 4.0 1349840254
## 19899 131 4878 1.5 1349840594
## 19900 131 4993 3.5 1349840317
## 19901 131 5009 3.0 1349838951
## 19902 131 5782 4.0 1349840397
## 19903 131 5952 3.5 1349840393
## 19904 131 5959 2.5 1349838973
## 19905 131 6016 4.0 1349840193
## 19906 131 6947 3.5 1349838662
## 19907 131 7153 3.5 1349840319
## 19908 131 7256 3.0 1349840498
## 19909 131 7361 3.5 1349840371
## 19910 131 27611 3.5 1349840483
## 19911 131 48516 3.5 1349840409
## 19912 131 48780 3.5 1349840736
## 19913 131 58559 4.0 1349840215
## 19914 131 62336 3.5 1349840540
## 19915 131 64614 3.5 1349840720
## 19916 131 68237 3.0 1349840757
## 19917 131 79132 4.0 1349840241
## 19918 131 89745 4.0 1349840436
## 19919 131 91529 4.0 1349840536
## 19920 132 1 2.0 1157921785
## 19921 132 17 3.0 1157922698
## 19922 132 29 2.0 1157924165
## 19923 132 32 3.0 1329983726
## 19924 132 34 1.5 1157921395
## 19925 132 39 3.0 1157921453
## 19926 132 45 2.5 1157923125
## 19927 132 47 4.0 1157921243
## 19928 132 48 3.0 1157919960
## 19929 132 50 4.0 1157920377
## 19930 132 58 2.0 1157919923
## 19931 132 70 2.5 1157923053
## 19932 132 89 2.5 1157997580
## 19933 132 141 3.5 1159428730
## 19934 132 158 2.0 1157922952
## 19935 132 163 2.0 1157919918
## 19936 132 170 3.0 1157968958
## 19937 132 175 3.0 1157982515
## 19938 132 207 2.5 1157979087
## 19939 132 235 3.0 1157919810
## 19940 132 247 3.0 1157923560
## 19941 132 253 2.0 1157922662
## 19942 132 256 1.5 1157968600
## 19943 132 260 2.0 1157920586
## 19944 132 261 4.0 1157923139
## 19945 132 288 4.0 1157922712
## 19946 132 293 4.0 1157922745
## 19947 132 296 4.0 1329983943
## 19948 132 306 3.0 1157968905
## 19949 132 307 4.0 1157978985
## 19950 132 308 2.0 1157979712
## 19951 132 318 4.5 1329983827
## 19952 132 319 2.5 1157923770
## 19953 132 337 3.0 1159428859
## 19954 132 344 1.5 1157922631
## 19955 132 345 4.0 1157923088
## 19956 132 353 3.0 1157919859
## 19957 132 355 2.0 1157923325
## 19958 132 356 4.0 1157920481
## 19959 132 357 3.5 1157921441
## 19960 132 364 4.5 1157921351
## 19961 132 390 2.0 1161799601
## 19962 132 410 3.0 1157967526
## 19963 132 497 2.0 1157919871
## 19964 132 500 2.5 1157922641
## 19965 132 520 1.5 1157967999
## 19966 132 539 3.0 1157922655
## 19967 132 551 3.5 1157922289
## 19968 132 555 3.5 1157922900
## 19969 132 562 2.5 1157978934
## 19970 132 567 2.0 1157992669
## 19971 132 586 2.0 1157922708
## 19972 132 588 3.5 1157921180
## 19973 132 592 2.0 1157920531
## 19974 132 593 3.5 1329983852
## 19975 132 594 3.0 1157922805
## 19976 132 595 4.5 1329983927
## 19977 132 596 2.0 1157923028
## 19978 132 617 2.5 1174935055
## 19979 132 673 2.0 1157923360
## 19980 132 778 3.0 1157922796
## 19981 132 788 2.0 1157922765
## 19982 132 837 3.0 1157968411
## 19983 132 838 2.0 1157923556
## 19984 132 858 3.0 1157920986
## 19985 132 866 3.5 1157978820
## 19986 132 899 4.0 1157923354
## 19987 132 902 3.0 1157923328
## 19988 132 904 4.0 1157919926
## 19989 132 910 4.0 1157923212
## 19990 132 912 3.0 1157920920
## 19991 132 914 3.0 1157923450
## 19992 132 915 2.5 1174934846
## 19993 132 916 3.5 1157979635
## 19994 132 919 3.5 1157922721
## 19995 132 920 3.0 1157919867
## 19996 132 1028 4.0 1157923009
## 19997 132 1035 3.5 1157922959
## 19998 132 1042 3.0 1157923521
## 19999 132 1059 3.0 1329984112
## 20000 132 1073 3.5 1329983931
## 20001 132 1079 3.5 1157922774
## 20002 132 1088 4.0 1329984080
## 20003 132 1089 3.0 1157920267
## 20004 132 1097 3.5 1157921390
## 20005 132 1125 3.0 1157979739
## 20006 132 1172 4.0 1157923504
## 20007 132 1196 2.0 1157922624
## 20008 132 1206 3.5 1157922800
## 20009 132 1210 2.0 1157921254
## 20010 132 1219 4.0 1157922823
## 20011 132 1221 3.0 1157920997
## 20012 132 1244 2.0 1157921151
## 20013 132 1246 3.5 1157921863
## 20014 132 1249 3.0 1329983774
## 20015 132 1258 4.0 1157919831
## 20016 132 1259 3.0 1157922770
## 20017 132 1270 3.5 1157921202
## 20018 132 1271 3.5 1157923484
## 20019 132 1296 2.5 1157978896
## 20020 132 1298 3.0 1157924223
## 20021 132 1307 3.5 1157922737
## 20022 132 1318 2.0 1174935480
## 20023 132 1333 2.0 1163148030
## 20024 132 1345 3.0 1157968863
## 20025 132 1380 3.0 1157922879
## 20026 132 1391 2.0 1157922851
## 20027 132 1399 3.0 1174935354
## 20028 132 1407 2.0 1157967944
## 20029 132 1441 3.0 1157922314
## 20030 132 1464 4.0 1157923634
## 20031 132 1485 2.5 1157922857
## 20032 132 1517 3.0 1157922753
## 20033 132 1527 3.5 1329983549
## 20034 132 1554 2.0 1157924234
## 20035 132 1562 1.5 1157923590
## 20036 132 1635 3.0 1157979238
## 20037 132 1644 1.5 1157978978
## 20038 132 1682 3.5 1329983628
## 20039 132 1704 3.0 1157921515
## 20040 132 1721 3.0 1157921273
## 20041 132 1729 4.0 1157922370
## 20042 132 1732 2.5 1329983666
## 20043 132 1748 3.0 1329983783
## 20044 132 1777 2.0 1157968136
## 20045 132 1784 2.5 1157921506
## 20046 132 1844 3.0 1157992654
## 20047 132 1917 3.0 1157922785
## 20048 132 1923 2.0 1157922732
## 20049 132 1968 4.0 1329984101
## 20050 132 2011 3.5 1157922830
## 20051 132 2012 3.0 1157919800
## 20052 132 2023 3.0 1157923210
## 20053 132 2076 3.0 1157923640
## 20054 132 2078 3.0 1157968835
## 20055 132 2081 2.0 1157922948
## 20056 132 2108 3.0 1157968789
## 20057 132 2124 3.5 1157967524
## 20058 132 2144 3.0 1329983524
## 20059 132 2174 4.0 1157921400
## 20060 132 2291 4.0 1329983923
## 20061 132 2321 3.0 1157922956
## 20062 132 2324 4.0 1157921872
## 20063 132 2329 4.0 1157920389
## 20064 132 2340 3.0 1161800168
## 20065 132 2384 1.5 1157979788
## 20066 132 2396 3.0 1157921317
## 20067 132 2424 3.5 1157923260
## 20068 132 2431 4.0 1157979560
## 20069 132 2470 3.0 1157923115
## 20070 132 2541 3.5 1157968897
## 20071 132 2567 2.0 1157997384
## 20072 132 2571 4.5 1157920630
## 20073 132 2572 4.0 1157923396
## 20074 132 2581 3.5 1157978948
## 20075 132 2628 2.0 1157922681
## 20076 132 2657 4.5 1329983916
## 20077 132 2671 3.5 1157923091
## 20078 132 2683 3.5 1157921458
## 20079 132 2699 1.5 1157919951
## 20080 132 2706 2.0 1157922783
## 20081 132 2729 3.0 1329983732
## 20082 132 2797 2.0 1159428826
## 20083 132 2858 4.5 1157922636
## 20084 132 2908 3.0 1157968929
## 20085 132 2953 2.0 1157979248
## 20086 132 2959 4.0 1329984076
## 20087 132 2987 3.0 1157921264
## 20088 132 2997 4.0 1157921214
## 20089 132 3052 2.5 1174935197
## 20090 132 3060 3.5 1157979587
## 20091 132 3067 3.0 1157992657
## 20092 132 3081 3.0 1157922292
## 20093 132 3083 3.5 1157920829
## 20094 132 3148 3.0 1157979076
## 20095 132 3160 3.0 1157923222
## 20096 132 3176 3.0 1157923020
## 20097 132 3186 4.5 1157997280
## 20098 132 3261 2.0 1161799366
## 20099 132 3262 2.5 1329983495
## 20100 132 3264 1.0 1174935074
## 20101 132 3275 3.5 1329983750
## 20102 132 3317 3.5 1157978989
## 20103 132 3418 3.0 1157923062
## 20104 132 3481 4.0 1157921445
## 20105 132 3489 2.0 1157978877
## 20106 132 3556 4.0 1157924198
## 20107 132 3617 1.5 1157979100
## 20108 132 3717 2.0 1157968793
## 20109 132 3751 3.0 1157922894
## 20110 132 3785 1.5 1157978806
## 20111 132 3793 3.5 1157921437
## 20112 132 3863 3.0 1157978804
## 20113 132 3882 2.5 1157997411
## 20114 132 3897 3.5 1157922853
## 20115 132 3948 2.0 1157923067
## 20116 132 3949 4.0 1157920746
## 20117 132 3967 3.0 1157979038
## 20118 132 3977 2.5 1157922922
## 20119 132 3996 4.0 1157921278
## 20120 132 4014 3.5 1157922303
## 20121 132 4016 2.0 1161799351
## 20122 132 4018 3.0 1157978825
## 20123 132 4027 1.5 1157921363
## 20124 132 4034 2.0 1157921729
## 20125 132 4168 2.0 1157992619
## 20126 132 4226 4.0 1157920977
## 20127 132 4235 2.0 1157920761
## 20128 132 4239 2.5 1157920854
## 20129 132 4246 4.5 1157923351
## 20130 132 4306 3.5 1157921397
## 20131 132 4308 4.0 1329984011
## 20132 132 4361 3.5 1157978800
## 20133 132 4447 2.5 1157978930
## 20134 132 4641 4.0 1157924941
## 20135 132 4643 1.0 1157978871
## 20136 132 4700 3.0 1161799533
## 20137 132 4720 3.5 1157924155
## 20138 132 4732 2.0 1174935095
## 20139 132 4741 3.0 1161799502
## 20140 132 4844 4.0 1157924838
## 20141 132 4848 4.5 1157923637
## 20142 132 4865 3.0 1157922326
## 20143 132 4874 4.5 1174935021
## 20144 132 4878 3.5 1157920657
## 20145 132 4886 3.0 1157922876
## 20146 132 4896 3.0 1157921367
## 20147 132 4963 3.0 1157921240
## 20148 132 4973 4.0 1329984107
## 20149 132 4975 3.0 1157979189
## 20150 132 4993 4.5 1157920555
## 20151 132 4995 3.0 1157921525
## 20152 132 5010 2.0 1161799663
## 20153 132 5171 2.0 1161799712
## 20154 132 5218 3.5 1157978809
## 20155 132 5225 3.0 1157920768
## 20156 132 5284 2.5 1174935399
## 20157 132 5299 3.0 1157923601
## 20158 132 5349 3.0 1157921227
## 20159 132 5377 3.5 1157968979
## 20160 132 5464 2.5 1157978973
## 20161 132 5481 3.0 1157979384
## 20162 132 5502 2.0 1157968868
## 20163 132 5508 3.0 1157924787
## 20164 132 5618 3.5 1157920690
## 20165 132 5620 2.0 1161799481
## 20166 132 5669 3.0 1157921475
## 20167 132 5673 2.0 1157982799
## 20168 132 5679 3.0 1157924214
## 20169 132 5791 3.5 1157924181
## 20170 132 5816 3.0 1157921268
## 20171 132 5878 3.5 1157920819
## 20172 132 5952 3.0 1157920621
## 20173 132 5956 1.5 1157979888
## 20174 132 5969 2.5 1157996783
## 20175 132 5970 3.0 1157996778
## 20176 132 5971 3.5 1157920697
## 20177 132 5991 4.0 1157924892
## 20178 132 5992 4.0 1161799624
## 20179 132 6155 3.0 1174939831
## 20180 132 6157 3.0 1161799768
## 20181 132 6218 3.0 1157979608
## 20182 132 6251 2.0 1161800252
## 20183 132 6291 3.5 1157924194
## 20184 132 6323 3.0 1157924990
## 20185 132 6333 3.0 1157923216
## 20186 132 6350 2.0 1161799275
## 20187 132 6365 3.5 1157921282
## 20188 132 6367 3.0 1161799862
## 20189 132 6377 3.0 1157923069
## 20190 132 6539 3.0 1157920895
## 20191 132 6593 3.5 1157996808
## 20192 132 6711 4.0 1157923468
## 20193 132 6774 3.5 1329983688
## 20194 132 6863 4.0 1174935132
## 20195 132 6874 4.5 1157922367
## 20196 132 6934 3.0 1157979112
## 20197 132 6942 4.5 1157979979
## 20198 132 7022 3.5 1329983555
## 20199 132 7034 3.0 1157993516
## 20200 132 7090 3.0 1157924134
## 20201 132 7139 4.0 1329983678
## 20202 132 7147 3.5 1157921374
## 20203 132 7153 4.0 1157919901
## 20204 132 7320 3.0 1174939636
## 20205 132 7323 3.0 1157924142
## 20206 132 7361 4.0 1157920648
## 20207 132 7371 3.0 1161799622
## 20208 132 7438 4.5 1157921205
## 20209 132 7444 3.5 1174935539
## 20210 132 7773 4.0 1157924253
## 20211 132 8360 3.0 1157968847
## 20212 132 8368 3.0 1157921298
## 20213 132 8373 3.0 1161799438
## 20214 132 8464 2.5 1157924358
## 20215 132 8638 4.0 1329983580
## 20216 132 8808 2.5 1164646078
## 20217 132 8873 2.0 1174935181
## 20218 132 8874 3.5 1329983684
## 20219 132 8961 3.0 1157920903
## 20220 132 8969 4.0 1157924870
## 20221 132 8970 3.5 1157920874
## 20222 132 8973 4.0 1157920795
## 20223 132 8983 3.5 1157924140
## 20224 132 26776 2.0 1161799273
## 20225 132 27721 3.0 1329983565
## 20226 132 27731 3.0 1174935162
## 20227 132 27815 3.0 1174935506
## 20228 132 30749 4.0 1157920397
## 20229 132 30793 3.5 1329984085
## 20230 132 31658 4.0 1161799252
## 20231 132 31696 2.0 1161799751
## 20232 132 32587 4.0 1157921320
## 20233 132 33679 2.5 1161800140
## 20234 132 33794 3.0 1157920542
## 20235 132 36517 2.5 1164646156
## 20236 132 37729 3.5 1159428948
## 20237 132 38061 2.5 1329983541
## 20238 132 39183 3.5 1329984094
## 20239 132 40819 3.0 1329983606
## 20240 132 41571 4.0 1329983951
## 20241 132 44022 2.0 1161799379
## 20242 132 44191 3.0 1329983574
## 20243 132 44694 2.5 1329983723
## 20244 132 45499 3.0 1157921423
## 20245 132 45720 3.0 1161799231
## 20246 132 45722 3.0 1157920047
## 20247 132 45880 3.0 1163147982
## 20248 132 46578 4.0 1329983919
## 20249 132 46976 4.0 1329983938
## 20250 132 48082 3.5 1174935253
## 20251 132 48394 3.0 1329983538
## 20252 132 48516 3.0 1329983583
## 20253 132 48780 3.5 1329983602
## 20254 132 48997 3.0 1174935289
## 20255 132 50872 3.5 1329983821
## 20256 132 52281 4.0 1329983471
## 20257 132 55269 2.0 1329983502
## 20258 132 56367 3.0 1329983441
## 20259 132 56782 2.5 1329983587
## 20260 132 58559 3.5 1329983669
## 20261 132 60069 0.5 1329983716
## 20262 132 63082 3.5 1329983505
## 20263 132 64839 2.5 1329983498
## 20264 132 68157 3.5 1329983509
## 20265 132 68954 3.5 1329983748
## 20266 132 79132 3.0 1329983560
## 20267 133 32 4.0 843491488
## 20268 133 47 4.0 843491396
## 20269 133 50 3.0 843491446
## 20270 133 110 3.0 843491209
## 20271 133 150 3.0 843490780
## 20272 133 153 1.0 843490845
## 20273 133 185 2.0 843491209
## 20274 133 223 3.0 843491446
## 20275 133 253 2.0 843491249
## 20276 133 288 2.0 843491249
## 20277 133 296 3.0 843490780
## 20278 133 300 3.0 843491793
## 20279 133 318 4.0 843490980
## 20280 133 349 2.0 843490845
## 20281 133 356 4.0 843490980
## 20282 133 367 3.0 843491396
## 20283 133 377 3.0 843491793
## 20284 133 380 3.0 843490781
## 20285 133 454 3.0 843491396
## 20286 133 457 4.0 843490862
## 20287 133 471 4.0 843491793
## 20288 133 474 3.0 843491514
## 20289 133 480 3.0 843491209
## 20290 133 524 3.0 843491580
## 20291 133 527 4.0 843491514
## 20292 133 529 3.0 843491514
## 20293 133 539 3.0 843491579
## 20294 133 555 3.0 843491488
## 20295 133 588 3.0 843490845
## 20296 133 589 3.0 843491249
## 20297 133 590 2.0 843490780
## 20298 133 592 3.0 843490780
## 20299 133 593 3.0 843490862
## 20300 133 780 3.0 843491793
## 20301 133 1036 3.0 843491446
## 20302 134 1 3.0 832841103
## 20303 134 47 4.0 832841168
## 20304 134 48 3.0 832841524
## 20305 134 110 5.0 832841168
## 20306 134 153 4.0 832841003
## 20307 134 160 3.0 832841215
## 20308 134 161 4.0 832841103
## 20309 134 163 3.0 832841704
## 20310 134 173 3.0 832841267
## 20311 134 186 3.0 832841423
## 20312 134 193 3.0 832841586
## 20313 134 208 4.0 832841137
## 20314 134 227 3.0 832841633
## 20315 134 231 3.0 832841046
## 20316 134 253 4.0 832841137
## 20317 134 273 3.0 832841687
## 20318 134 288 4.0 832841168
## 20319 134 296 4.0 832840929
## 20320 134 315 3.0 832841244
## 20321 134 316 4.0 832841046
## 20322 134 344 3.0 832841003
## 20323 134 349 4.0 832841003
## 20324 134 364 3.0 832841586
## 20325 134 367 3.0 832841687
## 20326 134 380 2.0 832840929
## 20327 134 434 3.0 832841103
## 20328 134 442 4.0 832841791
## 20329 134 454 4.0 832841586
## 20330 134 509 4.0 832841747
## 20331 134 553 4.0 832841400
## 20332 134 588 3.0 832841003
## 20333 134 590 5.0 832840928
## 20334 134 592 3.0 832840928
## 20335 134 593 5.0 832841244
## 20336 134 595 5.0 832841046
## 20337 135 1 4.0 1009691859
## 20338 135 2 3.0 1009692764
## 20339 135 21 3.0 1009691915
## 20340 135 32 5.0 1009691695
## 20341 135 47 5.0 1009691144
## 20342 135 65 1.0 1009692359
## 20343 135 110 4.0 1009692826
## 20344 135 112 4.0 1009692910
## 20345 135 141 4.0 1009692048
## 20346 135 153 1.0 1009692987
## 20347 135 157 2.0 1009692345
## 20348 135 161 5.0 1009691186
## 20349 135 165 1.0 1009691403
## 20350 135 180 4.0 1009692060
## 20351 135 223 5.0 1009691897
## 20352 135 231 2.0 1009691066
## 20353 135 260 4.0 1009693267
## 20354 135 267 2.0 1009692359
## 20355 135 288 3.0 1009691292
## 20356 135 292 4.0 1009692890
## 20357 135 293 4.0 1009691164
## 20358 135 296 4.0 1009693583
## 20359 135 300 4.0 1009693815
## 20360 135 318 5.0 1009693583
## 20361 135 329 2.0 1009691746
## 20362 135 349 2.0 1009691292
## 20363 135 367 4.0 1009692764
## 20364 135 377 4.0 1009691186
## 20365 135 380 3.0 1009692038
## 20366 135 393 3.0 1009693004
## 20367 135 410 4.0 1009692210
## 20368 135 420 3.0 1009692393
## 20369 135 427 3.0 1009691529
## 20370 135 457 4.0 1009691164
## 20371 135 466 3.0 1009692159
## 20372 135 480 5.0 1009692855
## 20373 135 485 5.0 1009692293
## 20374 135 514 3.0 1009691948
## 20375 135 520 3.0 1009692237
## 20376 135 527 5.0 1009690817
## 20377 135 551 4.0 1009694763
## 20378 135 587 4.0 1009691307
## 20379 135 589 4.0 1009691144
## 20380 135 592 5.0 1009693068
## 20381 135 593 5.0 1009691122
## 20382 135 608 4.0 1009691122
## 20383 135 648 4.0 1009692865
## 20384 135 663 4.0 1009691935
## 20385 135 671 4.0 1009692001
## 20386 135 673 2.0 1009692359
## 20387 135 742 4.0 1009691432
## 20388 135 780 3.0 1009691746
## 20389 135 785 4.0 1009692137
## 20390 135 788 4.0 1009692784
## 20391 135 829 3.0 1009692406
## 20392 135 832 4.0 1009691256
## 20393 135 858 4.0 1009694067
## 20394 135 893 5.0 1009693889
## 20395 135 912 4.0 1009694264
## 20396 135 919 5.0 1009693267
## 20397 135 1009 4.0 1009693387
## 20398 135 1036 5.0 1009693055
## 20399 135 1073 5.0 1009693290
## 20400 135 1077 4.0 1009694118
## 20401 135 1097 4.0 1009690752
## 20402 135 1129 4.0 1009693087
## 20403 135 1136 5.0 1009694275
## 20404 135 1196 4.0 1009693055
## 20405 135 1197 5.0 1009693055
## 20406 135 1198 4.0 1009690737
## 20407 135 1199 5.0 1009694796
## 20408 135 1200 5.0 1009691562
## 20409 135 1203 5.0 1009694318
## 20410 135 1206 5.0 1009694121
## 20411 135 1210 4.0 1009693068
## 20412 135 1213 4.0 1009693602
## 20413 135 1214 4.0 1009694067
## 20414 135 1215 5.0 1009691695
## 20415 135 1220 4.0 1009693108
## 20416 135 1225 3.0 1009694318
## 20417 135 1230 4.0 1009690802
## 20418 135 1240 5.0 1009691562
## 20419 135 1259 5.0 1009693280
## 20420 135 1261 3.0 1009693305
## 20421 135 1265 5.0 1009691846
## 20422 135 1291 4.0 1009693055
## 20423 135 1320 4.0 1009691421
## 20424 135 1343 3.0 1009691207
## 20425 135 1356 2.0 1009691726
## 20426 135 1358 5.0 1009691144
## 20427 135 1370 2.0 1009691292
## 20428 135 1372 1.0 1009691746
## 20429 135 1374 4.0 1009693087
## 20430 135 1375 3.0 1009693161
## 20431 135 1376 3.0 1009693108
## 20432 135 1377 2.0 1009692098
## 20433 135 1378 4.0 1009693144
## 20434 135 1379 4.0 1009692249
## 20435 135 1385 3.0 1009692920
## 20436 135 1387 5.0 1009690990
## 20437 135 1391 3.0 1009691778
## 20438 135 1393 3.0 1009693826
## 20439 135 1407 4.0 1009691207
## 20440 135 1422 4.0 1009691357
## 20441 135 1429 4.0 1009692901
## 20442 135 1449 4.0 1009691859
## 20443 135 1459 4.0 1009691456
## 20444 135 1468 5.0 1009692320
## 20445 135 1480 3.0 1009691378
## 20446 135 1483 4.0 1009691378
## 20447 135 1515 2.0 1009691491
## 20448 135 1517 5.0 1009690931
## 20449 135 1544 1.0 1009691445
## 20450 135 1552 2.0 1009691378
## 20451 135 1562 2.0 1009693022
## 20452 135 1573 4.0 1009690990
## 20453 135 1580 4.0 1009691695
## 20454 135 1584 3.0 1009691695
## 20455 135 1597 4.0 1009692875
## 20456 135 1610 3.0 1009691144
## 20457 135 1614 3.0 1009691989
## 20458 135 1625 3.0 1009691207
## 20459 135 1639 4.0 1009693612
## 20460 135 1653 5.0 1009691186
## 20461 135 1674 4.0 1009691562
## 20462 135 1676 3.0 1009691761
## 20463 135 1682 4.0 1009691026
## 20464 135 1690 3.0 1009691761
## 20465 135 1694 1.0 1009693676
## 20466 135 1717 3.0 1009691421
## 20467 135 1721 2.0 1009690782
## 20468 135 1722 1.0 1009691292
## 20469 135 1732 4.0 1009691207
## 20470 135 1754 5.0 1009691256
## 20471 135 1769 2.0 1009691378
## 20472 135 1792 2.0 1009691393
## 20473 135 1845 5.0 1009691222
## 20474 135 1876 2.0 1009691726
## 20475 135 1883 5.0 1009691915
## 20476 135 1892 4.0 1009691322
## 20477 135 1917 1.0 1009691761
## 20478 135 1918 2.0 1009692118
## 20479 135 1921 5.0 1009691222
## 20480 135 1923 5.0 1009691873
## 20481 135 1954 4.0 1009694067
## 20482 135 1967 4.0 1009691048
## 20483 135 1968 4.0 1009693921
## 20484 135 2000 5.0 1009693087
## 20485 135 2001 3.0 1009693129
## 20486 135 2002 3.0 1009692173
## 20487 135 2004 4.0 1009692173
## 20488 135 2009 3.0 1009694132
## 20489 135 2020 4.0 1009693950
## 20490 135 2028 4.0 1009692826
## 20491 135 2064 5.0 1009694504
## 20492 135 2076 4.0 1009693935
## 20493 135 2088 3.0 1009693406
## 20494 135 2105 3.0 1009693161
## 20495 135 2115 4.0 1009693108
## 20496 135 2118 3.0 1009690817
## 20497 135 2124 4.0 1009690765
## 20498 135 2161 3.0 1009693348
## 20499 135 2167 4.0 1009692840
## 20500 135 2193 2.0 1009693129
## 20501 135 2248 3.0 1009693950
## 20502 135 2253 2.0 1009692784
## 20503 135 2273 4.0 1009691256
## 20504 135 2300 5.0 1009694290
## 20505 135 2302 4.0 1009691925
## 20506 135 2320 3.0 1009691339
## 20507 135 2321 2.0 1009694854
## 20508 135 2324 4.0 1009693631
## 20509 135 2353 3.0 1009691236
## 20510 135 2387 4.0 1009692259
## 20511 135 2391 5.0 1009691186
## 20512 135 2393 2.0 1009690895
## 20513 135 2395 3.0 1009691859
## 20514 135 2406 4.0 1009693317
## 20515 135 2407 3.0 1009690943
## 20516 135 2409 5.0 1009694080
## 20517 135 2412 3.0 1009693014
## 20518 135 2414 3.0 1009693348
## 20519 135 2455 3.0 1009690737
## 20520 135 2468 2.0 1009691649
## 20521 135 2470 3.0 1009693377
## 20522 135 2502 4.0 1009692001
## 20523 135 2505 3.0 1009691467
## 20524 135 2560 3.0 1009691078
## 20525 135 2571 5.0 1009691144
## 20526 135 2599 3.0 1009691873
## 20527 135 2605 3.0 1009691339
## 20528 135 2628 2.0 1009691726
## 20529 135 2683 4.0 1009692098
## 20530 135 2692 4.0 1009692826
## 20531 135 2700 5.0 1009691915
## 20532 135 2706 4.0 1009692024
## 20533 135 2707 2.0 1009691256
## 20534 135 2723 4.0 1009692129
## 20535 135 2735 4.0 1009693484
## 20536 135 2746 4.0 1009694943
## 20537 135 2762 3.0 1009691122
## 20538 135 2763 4.0 1009691307
## 20539 135 2791 5.0 1009694539
## 20540 135 2792 4.0 1009694539
## 20541 135 2798 1.0 1009690782
## 20542 135 2804 5.0 1009693910
## 20543 135 2841 4.0 1009691164
## 20544 135 2858 4.0 1009691833
## 20545 135 2916 4.0 1009691186
## 20546 135 2959 5.0 1009693602
## 20547 135 2968 4.0 1009693331
## 20548 135 2985 4.0 1009693129
## 20549 135 2987 5.0 1009693305
## 20550 135 2997 4.0 1009691846
## 20551 135 3005 4.0 1009691292
## 20552 135 3020 4.0 1009692890
## 20553 135 3052 5.0 1009692038
## 20554 135 3098 4.0 1009693996
## 20555 135 3101 4.0 1009691612
## 20556 135 3102 3.0 1009691612
## 20557 135 3104 4.0 1009693108
## 20558 135 3175 4.0 1009691704
## 20559 135 3213 4.0 1009693536
## 20560 135 3248 1.0 1009692406
## 20561 135 3250 4.0 1009694231
## 20562 135 3253 5.0 1009691897
## 20563 135 3255 3.0 1009691959
## 20564 135 3263 4.0 1009692183
## 20565 135 3264 2.0 1009692149
## 20566 135 3327 4.0 1009692509
## 20567 135 3358 4.0 1009691948
## 20568 135 3360 3.0 1009693935
## 20569 135 3441 4.0 1009693144
## 20570 135 3476 4.0 1009691164
## 20571 135 3479 4.0 1009693348
## 20572 135 3481 3.0 1009692509
## 20573 135 3489 3.0 1009692784
## 20574 135 3527 4.0 1009691588
## 20575 135 3578 2.0 1009692532
## 20576 135 3623 2.0 1009690737
## 20577 135 3624 4.0 1009692612
## 20578 135 3698 3.0 1009693161
## 20579 135 3704 4.0 1009693144
## 20580 135 3708 4.0 1009691660
## 20581 135 3740 5.0 1009693108
## 20582 135 3763 4.0 1009693129
## 20583 135 3793 4.0 1009692582
## 20584 135 3809 3.0 1009691977
## 20585 135 3812 4.0 1009690920
## 20586 135 3852 4.0 1009692595
## 20587 135 3869 3.0 1009692200
## 20588 135 3911 4.0 1009692491
## 20589 135 3948 4.0 1009692632
## 20590 135 3994 5.0 1009692652
## 20591 135 3996 5.0 1009693267
## 20592 135 4022 4.0 1009692532
## 20593 135 4027 3.0 1009692509
## 20594 135 4037 3.0 1009691573
## 20595 135 4066 4.0 1009691066
## 20596 135 4084 3.0 1009693161
## 20597 135 4085 4.0 1009694025
## 20598 135 4128 4.0 1009690990
## 20599 135 4226 5.0 1009692470
## 20600 135 4306 4.0 1009692519
## 20601 135 4326 4.0 1009693976
## 20602 135 4351 3.0 1009693331
## 20603 135 4396 3.0 1009694231
## 20604 135 4467 4.0 1009693317
## 20605 135 4553 4.0 1009691588
## 20606 135 4571 4.0 1009693305
## 20607 135 4613 2.0 1009690964
## 20608 135 4621 1.0 1009691066
## 20609 135 4634 5.0 1009693458
## 20610 135 4638 2.0 1009693448
## 20611 135 4776 5.0 1009692582
## 20612 135 4812 1.0 1009693419
## 20613 135 4881 3.0 1009692545
## 20614 135 4896 4.0 1009692556
## 20615 135 4993 5.0 1009692470
## 20616 136 10 5.0 832449222
## 20617 136 15 5.0 832449934
## 20618 136 16 5.0 832449614
## 20619 136 19 3.0 832449345
## 20620 136 23 5.0 832449838
## 20621 136 34 2.0 832449299
## 20622 136 44 2.0 832449539
## 20623 136 47 5.0 832449299
## 20624 136 62 5.0 832449522
## 20625 136 93 4.0 832450076
## 20626 136 95 4.0 832449391
## 20627 136 110 5.0 832449274
## 20628 136 122 3.0 832449883
## 20629 136 132 3.0 832449989
## 20630 136 145 3.0 832449655
## 20631 136 150 2.0 832449136
## 20632 136 151 5.0 832449391
## 20633 136 153 3.0 832449165
## 20634 136 158 3.0 832449475
## 20635 136 160 3.0 832449345
## 20636 136 161 4.0 832449222
## 20637 136 163 1.0 832449637
## 20638 136 165 5.0 832449163
## 20639 136 168 4.0 832449475
## 20640 136 170 4.0 832449755
## 20641 136 172 1.0 832449475
## 20642 136 173 3.0 832449391
## 20643 136 174 3.0 832449989
## 20644 136 177 3.0 832449964
## 20645 136 181 1.0 832449858
## 20646 136 185 3.0 832449254
## 20647 136 188 5.0 832451540
## 20648 136 193 1.0 832449560
## 20649 136 195 5.0 832449838
## 20650 136 196 3.0 832449422
## 20651 136 198 3.0 832449909
## 20652 136 204 1.0 832449475
## 20653 136 207 5.0 832449705
## 20654 136 208 3.0 832449254
## 20655 136 216 5.0 832449683
## 20656 136 225 4.0 832449274
## 20657 136 227 3.0 832449595
## 20658 136 231 2.0 832449197
## 20659 136 234 3.0 832449683
## 20660 136 235 4.0 832449454
## 20661 136 239 1.0 832450019
## 20662 136 248 3.0 832449755
## 20663 136 252 5.0 832449422
## 20664 136 253 4.0 832449254
## 20665 136 255 1.0 832450037
## 20666 136 256 4.0 832449501
## 20667 136 266 3.0 832449299
## 20668 136 267 4.0 832449858
## 20669 136 273 3.0 832449614
## 20670 136 274 4.0 832451478
## 20671 136 276 4.0 832449560
## 20672 136 277 3.0 832449595
## 20673 136 280 5.0 832449705
## 20674 136 282 5.0 832449365
## 20675 136 292 3.0 832449254
## 20676 136 293 1.0 832449475
## 20677 136 296 1.0 832449136
## 20678 136 300 3.0 832449254
## 20679 136 315 3.0 832449365
## 20680 136 316 2.0 832449197
## 20681 136 317 3.0 832449299
## 20682 136 327 3.0 832449786
## 20683 136 328 2.0 832449964
## 20684 136 329 2.0 832449197
## 20685 136 333 5.0 832449501
## 20686 136 337 5.0 832449391
## 20687 136 338 2.0 832449755
## 20688 136 339 4.0 832449222
## 20689 136 340 4.0 832450093
## 20690 136 344 1.0 832449164
## 20691 136 348 1.0 832449595
## 20692 136 349 5.0 832449163
## 20693 136 350 5.0 832449883
## 20694 136 353 5.0 832449934
## 20695 136 355 3.0 832450037
## 20696 136 364 5.0 832449683
## 20697 136 367 4.0 832449729
## 20698 136 380 3.0 832449136
## 20699 136 410 3.0 832449274
## 20700 136 413 3.0 832449705
## 20701 136 416 2.0 832450005
## 20702 136 420 3.0 832449345
## 20703 136 431 5.0 832449655
## 20704 136 432 3.0 832449365
## 20705 136 434 3.0 832449222
## 20706 136 435 3.0 832449365
## 20707 136 437 1.0 832449909
## 20708 136 440 5.0 832449786
## 20709 136 442 3.0 832449858
## 20710 136 454 3.0 832449705
## 20711 136 457 5.0 832449522
## 20712 136 468 5.0 832449595
## 20713 136 471 4.0 832450058
## 20714 136 491 5.0 832451522
## 20715 136 551 3.0 832449883
## 20716 136 552 3.0 832450076
## 20717 136 553 3.0 832449422
## 20718 136 585 1.0 832449964
## 20719 136 588 3.0 832449163
## 20720 136 590 3.0 832449136
## 20721 136 592 4.0 832449136
## 20722 136 593 3.0 832449522
## 20723 136 595 3.0 832449197
## 20724 136 611 1.0 832451461
## 20725 136 637 4.0 832449989
## 20726 136 688 3.0 832450005
## 20727 137 1 4.0 1204859907
## 20728 137 110 4.0 1204859490
## 20729 137 111 5.0 1204863636
## 20730 137 150 3.5 1204859352
## 20731 137 246 5.0 1204863842
## 20732 137 260 4.0 1204859469
## 20733 137 272 4.0 1204858999
## 20734 137 296 3.0 1204859460
## 20735 137 318 3.5 1204859137
## 20736 137 356 3.5 1204859455
## 20737 137 480 3.5 1204859401
## 20738 137 527 3.5 1204859356
## 20739 137 541 5.0 1204859758
## 20740 137 588 4.0 1204859525
## 20741 137 589 3.5 1204859360
## 20742 137 590 3.5 1204859340
## 20743 137 593 4.0 1204859748
## 20744 137 608 4.5 1204859806
## 20745 137 724 3.0 1204859027
## 20746 137 750 5.0 1204859712
## 20747 137 778 2.0 1204859879
## 20748 137 780 3.0 1204859345
## 20749 137 858 5.0 1204859691
## 20750 137 903 4.0 1204859803
## 20751 137 904 4.0 1204859703
## 20752 137 908 4.5 1204859724
## 20753 137 910 4.0 1204859856
## 20754 137 912 5.0 1204859738
## 20755 137 913 4.5 1204859769
## 20756 137 919 5.0 1204859924
## 20757 137 922 5.0 1204859734
## 20758 137 923 5.0 1204859839
## 20759 137 924 4.0 1204863861
## 20760 137 928 3.5 1204859833
## 20761 137 951 5.0 1204859789
## 20762 137 953 4.0 1204859888
## 20763 137 954 4.5 1204859817
## 20764 137 955 3.0 1204859912
## 20765 137 968 3.5 1204859078
## 20766 137 969 4.0 1204859884
## 20767 137 1022 3.0 1204859023
## 20768 137 1093 4.0 1204859071
## 20769 137 1136 5.0 1204863777
## 20770 137 1193 4.0 1204863618
## 20771 137 1196 4.0 1204859543
## 20772 137 1197 3.5 1204859796
## 20773 137 1198 4.5 1204859688
## 20774 137 1200 4.0 1204859777
## 20775 137 1203 4.5 1204859709
## 20776 137 1204 5.0 1204859766
## 20777 137 1207 3.0 1204859752
## 20778 137 1208 5.0 1204859781
## 20779 137 1210 3.0 1204859820
## 20780 137 1214 5.0 1204859754
## 20781 137 1219 5.0 1204859799
## 20782 137 1221 5.0 1204859699
## 20783 137 1225 5.0 1204859825
## 20784 137 1228 4.5 1204863671
## 20785 137 1230 5.0 1204863789
## 20786 137 1231 4.0 1204859035
## 20787 137 1233 4.5 1204859784
## 20788 137 1237 4.5 1204863783
## 20789 137 1242 4.0 1204859745
## 20790 137 1244 3.5 1204859916
## 20791 137 1247 4.5 1204859875
## 20792 137 1250 5.0 1204859761
## 20793 137 1252 4.0 1204859742
## 20794 137 1253 3.5 1204859846
## 20795 137 1258 3.5 1204859851
## 20796 137 1260 3.0 1204859794
## 20797 137 1262 3.0 1204859696
## 20798 137 1267 3.5 1204859004
## 20799 137 1270 3.5 1204859897
## 20800 137 1272 5.0 1204863817
## 20801 137 1288 5.0 1204859865
## 20802 137 1293 4.5 1204863870
## 20803 137 1299 5.0 1204863767
## 20804 137 1301 4.0 1204859933
## 20805 137 1304 4.5 1204863793
## 20806 137 1373 3.0 1204859081
## 20807 137 1580 3.5 1204859475
## 20808 137 1721 4.0 1204859407
## 20809 137 1927 4.5 1204863712
## 20810 137 1949 5.0 1204863774
## 20811 137 1953 4.0 1204863762
## 20812 137 1994 3.5 1204859030
## 20813 137 2020 4.5 1204859049
## 20814 137 2028 4.0 1204859327
## 20815 137 2064 5.0 1204859055
## 20816 137 2288 3.0 1204859087
## 20817 137 2330 4.0 1204863730
## 20818 137 2393 3.0 1204859063
## 20819 137 2571 4.0 1204859379
## 20820 137 2628 3.0 1204859532
## 20821 137 2648 3.5 1204863751
## 20822 137 2716 3.0 1204859506
## 20823 137 2762 4.5 1204859315
## 20824 137 2940 4.0 1204863839
## 20825 137 2959 3.0 1204859536
## 20826 137 2968 3.5 1204859040
## 20827 137 2997 4.0 1204859517
## 20828 137 3072 2.0 1204859010
## 20829 137 3198 3.5 1204863846
## 20830 137 3421 3.0 1204859946
## 20831 137 3462 4.0 1204863614
## 20832 137 3471 3.0 1204859953
## 20833 137 3504 4.5 1204863814
## 20834 137 3507 4.0 1204859919
## 20835 137 3578 3.5 1204859529
## 20836 137 3671 4.0 1204859948
## 20837 137 3679 4.0 1204863679
## 20838 137 3741 4.5 1204863644
## 20839 137 3742 4.0 1204859928
## 20840 137 3996 3.0 1204859320
## 20841 137 4262 3.5 1204859893
## 20842 137 4306 4.0 1204859371
## 20843 137 4427 4.5 1204863807
## 20844 137 4546 3.5 1204859196
## 20845 137 4963 2.5 1204859503
## 20846 137 4993 5.0 1204859309
## 20847 137 4995 4.0 1204859463
## 20848 137 5060 3.5 1204859957
## 20849 137 5177 4.0 1204863704
## 20850 137 5385 4.5 1204863825
## 20851 137 5952 4.5 1204859376
## 20852 137 6365 3.5 1204859397
## 20853 137 6377 4.0 1204859323
## 20854 137 6650 5.0 1204863597
## 20855 137 6787 4.0 1204859228
## 20856 137 6986 3.0 1204859931
## 20857 137 6987 3.0 1204859200
## 20858 137 6993 4.5 1204863803
## 20859 137 7001 3.5 1204859254
## 20860 137 7153 5.0 1204859478
## 20861 137 7171 4.0 1204859227
## 20862 137 7396 3.5 1204863659
## 20863 137 7762 3.0 1204864005
## 20864 137 8228 4.5 1204859721
## 20865 137 26084 4.0 1204859960
## 20866 137 30749 4.0 1204859715
## 20867 137 33493 3.0 1204859495
## 20868 138 222 5.0 1222676038
## 20869 138 616 4.5 1222675998
## 20870 138 671 2.5 1222676100
## 20871 138 849 4.5 1222675970
## 20872 138 898 5.0 1222676107
## 20873 138 1019 5.0 1222676090
## 20874 138 1411 1.5 1222676125
## 20875 138 1805 0.5 1222676017
## 20876 138 1959 3.5 1222676198
## 20877 138 1960 4.0 1222676075
## 20878 138 2002 3.0 1222675950
## 20879 138 2116 3.0 1222676193
## 20880 138 2150 5.0 1222675936
## 20881 138 2427 1.5 1222675985
## 20882 138 2582 1.5 1222676555
## 20883 138 2707 0.5 1222676033
## 20884 138 2826 2.5 1222676027
## 20885 138 2924 5.0 1222676473
## 20886 138 3972 5.0 1222676520
## 20887 138 3996 5.0 1222676455
## 20888 138 59103 4.5 1222676542
## 20889 138 59784 5.0 1222676516
## 20890 139 19 1.0 1453924016
## 20891 139 260 4.0 1453923975
## 20892 139 1198 4.0 1453923978
## 20893 139 3300 2.0 1453924450
## 20894 139 3409 2.0 1453924610
## 20895 139 3555 3.5 1453924452
## 20896 139 3578 2.5 1453924097
## 20897 139 3624 2.5 1453924406
## 20898 139 3717 1.5 1453924312
## 20899 139 3744 1.5 1453924789
## 20900 139 3753 4.0 1453924219
## 20901 139 3793 3.0 1453924104
## 20902 139 3825 1.0 1453924813
## 20903 139 3827 3.5 1453924630
## 20904 139 3969 0.5 1453924592
## 20905 139 3994 2.5 1453924216
## 20906 139 3996 2.0 1453924123
## 20907 139 3997 1.0 1453925402
## 20908 139 4015 1.5 1453924658
## 20909 139 4020 2.0 1453925243
## 20910 139 4025 2.0 1453924314
## 20911 139 4027 3.0 1453924163
## 20912 139 4036 1.5 1453925321
## 20913 139 4148 1.5 1453924446
## 20914 139 4223 4.0 1453924461
## 20915 139 4238 2.5 1453925114
## 20916 139 4270 2.0 1453924414
## 20917 139 4306 2.5 1453924100
## 20918 139 4367 1.5 1453924436
## 20919 139 4720 2.5 1453924298
## 20920 139 4734 1.5 1453924537
## 20921 139 4865 1.5 1453924776
## 20922 139 4886 3.0 1453924117
## 20923 139 4974 1.5 1453925235
## 20924 139 4975 0.5 1453924369
## 20925 139 4993 4.0 1453923961
## 20926 139 5013 3.0 1453924529
## 20927 139 5026 2.5 1453925133
## 20928 139 5065 2.5 1453925174
## 20929 139 5110 2.0 1453925133
## 20930 139 5152 3.5 1453924991
## 20931 139 5254 1.5 1453924651
## 20932 139 5313 1.0 1453925158
## 20933 139 5349 3.0 1453924140
## 20934 139 5400 1.5 1453924949
## 20935 139 5418 2.5 1453924144
## 20936 139 5419 2.0 1453925284
## 20937 139 5445 1.5 1453924128
## 20938 139 5459 2.0 1453924285
## 20939 139 5463 1.5 1453925100
## 20940 139 5464 2.5 1453924404
## 20941 139 5481 1.0 1453924369
## 20942 139 5502 2.5 1453924270
## 20943 139 5679 2.5 1453924322
## 20944 139 5810 1.5 1453924632
## 20945 139 5816 3.0 1453924192
## 20946 139 5881 0.5 1453925119
## 20947 139 5903 2.0 1453924462
## 20948 139 5952 4.0 1453923969
## 20949 139 5956 2.5 1453924442
## 20950 139 5957 1.5 1453925221
## 20951 139 6059 1.5 1453925166
## 20952 139 6157 2.0 1453924649
## 20953 139 6333 2.5 1453924191
## 20954 139 6378 2.0 1453924306
## 20955 139 6534 1.0 1453924653
## 20956 139 6537 2.5 1453924353
## 20957 139 6539 3.0 1453924106
## 20958 139 6874 3.0 1453924136
## 20959 139 6934 2.0 1453924255
## 20960 139 6957 1.5 1453924892
## 20961 139 7090 3.0 1453924470
## 20962 139 7147 1.5 1453924235
## 20963 139 7153 4.0 1453923970
## 20964 139 7162 1.5 1453924977
## 20965 139 7163 2.0 1453925221
## 20966 139 7254 1.0 1453924308
## 20967 139 7317 2.0 1453925353
## 20968 139 7346 1.0 1453925299
## 20969 139 7367 1.5 1453925384
## 20970 139 7438 3.0 1453924161
## 20971 139 7445 2.0 1453924635
## 20972 139 7454 1.5 1453924827
## 20973 139 8360 2.0 1453924194
## 20974 139 8368 3.0 1453924202
## 20975 139 8371 2.0 1453924912
## 20976 139 8528 1.0 1453924591
## 20977 139 8640 1.0 1453925397
## 20978 139 8665 2.0 1453924205
## 20979 139 8861 2.0 1453925153
## 20980 139 8865 1.5 1453925036
## 20981 139 8874 1.0 1453924256
## 20982 139 8961 3.5 1453924148
## 20983 139 8972 2.0 1453924617
## 20984 139 8985 0.5 1453925292
## 20985 139 27706 1.5 1453924923
## 20986 139 33004 2.0 1453924506
## 20987 139 33162 1.5 1453925140
## 20988 139 33493 2.5 1453924246
## 20989 139 33615 2.5 1453924842
## 20990 139 33794 3.0 1453924154
## 20991 139 34048 1.5 1453924481
## 20992 139 34150 2.5 1453924809
## 20993 139 34319 1.5 1453924692
## 20994 139 34405 4.0 1453924387
## 20995 139 36401 1.5 1453925352
## 20996 139 37386 2.0 1453925237
## 20997 139 37729 3.5 1453924684
## 20998 139 37733 2.5 1453924864
## 20999 139 44199 2.0 1453924549
## 21000 139 44665 2.5 1453924519
## 21001 139 45722 2.5 1453924277
## 21002 139 46530 0.5 1453924905
## 21003 139 48304 2.5 1453925059
## 21004 139 48394 1.5 1453924232
## 21005 139 48780 2.5 1453924212
## 21006 139 49272 3.5 1453924208
## 21007 139 49278 1.5 1453925032
## 21008 139 51255 2.0 1453924382
## 21009 139 52281 1.5 1453924875
## 21010 139 52722 1.0 1453924666
## 21011 139 53000 1.5 1453924859
## 21012 139 53121 1.0 1453925181
## 21013 139 53125 2.0 1453924502
## 21014 139 53519 1.0 1453925085
## 21015 139 53953 0.5 1453925178
## 21016 139 53996 2.5 1453924510
## 21017 139 54001 3.0 1453924440
## 21018 139 54259 2.5 1453924708
## 21019 139 54286 2.5 1453924231
## 21020 139 54995 0.5 1453925168
## 21021 139 55118 3.0 1453924978
## 21022 139 56757 1.0 1453924829
## 21023 139 56788 2.0 1453925388
## 21024 139 58025 1.5 1453925241
## 21025 139 58559 3.5 1453924116
## 21026 139 59315 3.0 1453924202
## 21027 139 59369 2.5 1453924529
## 21028 139 59615 1.5 1453924671
## 21029 139 59784 2.5 1453924562
## 21030 139 60040 1.5 1453924998
## 21031 139 60072 1.5 1453925062
## 21032 139 60074 2.5 1453924850
## 21033 139 60684 4.0 1453924493
## 21034 139 61240 3.0 1453924952
## 21035 139 63113 3.0 1453924860
## 21036 139 66097 2.5 1453924898
## 21037 139 66934 3.5 1453924939
## 21038 139 68237 1.0 1453924533
## 21039 139 68319 0.5 1453924895
## 21040 139 68358 3.0 1453924318
## 21041 139 68791 2.5 1453925194
## 21042 139 68954 2.5 1453923981
## 21043 139 69481 1.0 1453924696
## 21044 139 69526 1.5 1453925225
## 21045 139 69844 3.0 1453924530
## 21046 139 70286 0.5 1453924297
## 21047 139 72998 1.5 1453924231
## 21048 139 74458 1.0 1453924356
## 21049 139 74789 1.5 1453924902
## 21050 139 76093 2.0 1453924478
## 21051 139 77561 1.5 1453924578
## 21052 139 78499 2.0 1453923985
## 21053 139 79091 2.5 1453924797
## 21054 139 79132 2.0 1453924150
## 21055 139 79293 1.5 1453925398
## 21056 139 81229 2.0 1453925301
## 21057 139 81564 2.0 1453925291
## 21058 139 81591 2.5 1453924461
## 21059 139 82459 3.0 1453924784
## 21060 139 84954 2.5 1453925284
## 21061 139 86332 2.0 1453924840
## 21062 139 86880 2.0 1453925384
## 21063 139 87232 3.5 1453924615
## 21064 139 88140 2.5 1453924928
## 21065 139 88744 1.0 1453924932
## 21066 139 89745 2.5 1453924402
## 21067 139 91500 2.0 1453924582
## 21068 139 91529 4.0 1453924397
## 21069 139 94864 1.5 1453925033
## 21070 139 95510 2.5 1453925110
## 21071 139 96079 3.5 1453924765
## 21072 139 96610 2.0 1453924780
## 21073 139 98809 4.0 1453924710
## 21074 139 99114 2.5 1453924383
## 21075 139 102125 1.5 1453925006
## 21076 139 102445 2.0 1453924988
## 21077 139 106489 4.0 1453925048
## 21078 139 106782 0.5 1453924741
## 21079 139 109374 3.0 1453924663
## 21080 139 110102 2.5 1453925110
## 21081 139 115617 3.0 1453924868
## 21082 139 122886 4.0 1453924027
## 21083 139 122892 2.0 1453925315
## 21084 140 1 3.0 942924980
## 21085 140 2 3.5 1085569813
## 21086 140 6 5.0 942843185
## 21087 140 11 4.0 949667337
## 21088 140 21 4.0 949666898
## 21089 140 22 3.0 951163606
## 21090 140 23 3.0 967049087
## 21091 140 34 4.0 942910010
## 21092 140 47 4.0 942842215
## 21093 140 50 3.0 942840991
## 21094 140 62 4.5 1055092420
## 21095 140 86 4.0 942844005
## 21096 140 95 2.5 1085569725
## 21097 140 104 3.0 949667320
## 21098 140 105 4.0 949667353
## 21099 140 110 4.0 942903980
## 21100 140 146 3.0 1032259081
## 21101 140 150 5.0 942842394
## 21102 140 151 4.0 949667175
## 21103 140 161 4.0 949667232
## 21104 140 163 3.0 967048969
## 21105 140 164 3.0 967048354
## 21106 140 165 4.0 967049233
## 21107 140 185 3.0 1085569703
## 21108 140 193 2.0 973800069
## 21109 140 208 4.0 1085569730
## 21110 140 210 3.0 1021898818
## 21111 140 246 3.0 949666758
## 21112 140 257 3.0 967048906
## 21113 140 260 4.0 942842304
## 21114 140 261 4.0 949667125
## 21115 140 266 3.0 942842894
## 21116 140 277 3.0 949667152
## 21117 140 288 2.0 973800087
## 21118 140 292 3.0 967049135
## 21119 140 293 5.0 942843185
## 21120 140 296 4.0 942843185
## 21121 140 303 3.0 942842895
## 21122 140 317 4.0 949667371
## 21123 140 318 4.0 942840891
## 21124 140 338 2.0 967049270
## 21125 140 339 3.0 1085569715
## 21126 140 349 4.0 967049014
## 21127 140 350 3.0 949667416
## 21128 140 353 3.0 949507627
## 21129 140 356 4.0 949666898
## 21130 140 362 4.0 949666953
## 21131 140 364 4.0 949666898
## 21132 140 368 3.0 942842814
## 21133 140 373 3.0 967048734
## 21134 140 376 3.0 967049118
## 21135 140 377 4.0 967048935
## 21136 140 380 4.0 1085569631
## 21137 140 383 3.0 942842894
## 21138 140 422 4.0 951163625
## 21139 140 434 3.0 1085569685
## 21140 140 440 4.5 1055093032
## 21141 140 454 4.0 951163625
## 21142 140 457 4.0 942841471
## 21143 140 458 3.0 942842894
## 21144 140 474 4.0 967048858
## 21145 140 480 4.0 949667008
## 21146 140 500 4.0 1030559180
## 21147 140 524 3.5 1055092379
## 21148 140 527 5.0 942840891
## 21149 140 529 4.0 949667115
## 21150 140 539 3.0 949667435
## 21151 140 541 3.0 942841859
## 21152 140 553 4.0 942842814
## 21153 140 569 3.0 949666667
## 21154 140 587 3.5 1085569696
## 21155 140 588 3.0 942841791
## 21156 140 590 5.0 942842894
## 21157 140 593 4.0 949666792
## 21158 140 595 5.0 942840991
## 21159 140 597 5.0 949667232
## 21160 140 599 4.0 942842895
## 21161 140 608 5.0 942842394
## 21162 140 609 3.0 1020424600
## 21163 140 647 4.0 949667115
## 21164 140 648 4.0 949667466
## 21165 140 691 3.0 949667253
## 21166 140 707 3.0 952101285
## 21167 140 733 3.0 942844165
## 21168 140 736 3.0 967049071
## 21169 140 780 4.0 1008776130
## 21170 140 798 4.0 967049233
## 21171 140 800 4.0 949666942
## 21172 140 805 3.5 1067987173
## 21173 140 832 4.0 942842731
## 21174 140 837 3.0 949666683
## 21175 140 848 4.0 1055092531
## 21176 140 852 4.0 949667543
## 21177 140 858 5.0 942842394
## 21178 140 866 4.0 951163154
## 21179 140 912 4.0 1085569768
## 21180 140 914 4.0 942841652
## 21181 140 919 4.0 1085569784
## 21182 140 920 5.0 1055092887
## 21183 140 924 4.0 1021898943
## 21184 140 953 3.0 942842215
## 21185 140 969 4.0 942842265
## 21186 140 986 5.0 949666758
## 21187 140 1005 3.0 1032259036
## 21188 140 1010 4.0 1021899137
## 21189 140 1013 4.0 1021899112
## 21190 140 1015 4.0 951416146
## 21191 140 1017 4.0 1021899101
## 21192 140 1019 4.0 1055092562
## 21193 140 1021 4.0 1021898763
## 21194 140 1028 4.0 1021899012
## 21195 140 1035 5.0 1021898963
## 21196 140 1036 4.0 942841715
## 21197 140 1047 3.0 967048969
## 21198 140 1073 4.0 1012506531
## 21199 140 1083 3.0 1032258931
## 21200 140 1084 4.0 1021898963
## 21201 140 1089 3.0 949666815
## 21202 140 1090 4.0 1055092338
## 21203 140 1092 3.0 951163661
## 21204 140 1094 3.0 949667201
## 21205 140 1095 2.0 949666857
## 21206 140 1097 4.0 942841866
## 21207 140 1101 4.5 1055093098
## 21208 140 1127 3.0 1080845698
## 21209 140 1179 3.0 942843452
## 21210 140 1183 3.0 1085569823
## 21211 140 1193 3.0 942842304
## 21212 140 1196 3.0 942842265
## 21213 140 1198 4.0 942841170
## 21214 140 1200 4.5 1080845650
## 21215 140 1201 4.0 942842894
## 21216 140 1204 5.0 942841471
## 21217 140 1210 3.5 1117729537
## 21218 140 1213 3.0 942843185
## 21219 140 1214 4.0 1080845712
## 21220 140 1221 3.0 942840891
## 21221 140 1230 2.0 942841351
## 21222 140 1231 4.0 1180627829
## 21223 140 1233 3.0 942842265
## 21224 140 1234 5.0 942841170
## 21225 140 1240 3.0 942841243
## 21226 140 1242 3.0 942841937
## 21227 140 1246 3.0 942841791
## 21228 140 1250 5.0 942841937
## 21229 140 1252 3.5 1115312282
## 21230 140 1262 5.0 942841394
## 21231 140 1265 3.0 949666815
## 21232 140 1266 4.0 942842895
## 21233 140 1270 3.0 942841859
## 21234 140 1272 5.0 942841652
## 21235 140 1276 4.0 942842333
## 21236 140 1291 3.0 942841859
## 21237 140 1302 4.5 1067987072
## 21238 140 1304 5.0 942842894
## 21239 140 1307 3.5 1085569797
## 21240 140 1343 3.0 949667094
## 21241 140 1344 3.0 952101286
## 21242 140 1370 3.0 967049042
## 21243 140 1387 4.0 1055092393
## 21244 140 1393 4.0 949667278
## 21245 140 1396 3.0 949667243
## 21246 140 1401 4.0 949667141
## 21247 140 1408 4.0 1055092389
## 21248 140 1441 4.0 949667353
## 21249 140 1459 3.0 967049270
## 21250 140 1465 4.0 949667201
## 21251 140 1500 5.0 942842565
## 21252 140 1518 4.0 967049118
## 21253 140 1552 3.0 942844165
## 21254 140 1573 3.0 951163606
## 21255 140 1580 3.0 1024051464
## 21256 140 1584 5.0 949666942
## 21257 140 1589 4.0 949667573
## 21258 140 1608 3.0 949667202
## 21259 140 1610 5.0 949666998
## 21260 140 1615 3.0 949666912
## 21261 140 1616 3.0 967049270
## 21262 140 1617 4.0 942841270
## 21263 140 1641 1.0 1055092617
## 21264 140 1653 2.0 967049014
## 21265 140 1661 3.0 967047762
## 21266 140 1674 5.0 967048906
## 21267 140 1682 4.0 942841471
## 21268 140 1687 3.0 977403363
## 21269 140 1693 3.0 942910010
## 21270 140 1704 4.0 1055092969
## 21271 140 1721 4.0 942841219
## 21272 140 1727 5.0 949667094
## 21273 140 1729 4.0 949666998
## 21274 140 1747 3.0 949667416
## 21275 140 1783 3.0 993208423
## 21276 140 1792 3.0 967049059
## 21277 140 1845 4.0 946989913
## 21278 140 1912 4.0 949667071
## 21279 140 1950 4.0 1021898963
## 21280 140 1952 3.0 1021898963
## 21281 140 1955 4.0 1012506531
## 21282 140 1957 5.0 942841652
## 21283 140 1961 4.0 942842394
## 21284 140 1962 3.0 942904025
## 21285 140 2000 4.0 1055092965
## 21286 140 2006 3.0 949667202
## 21287 140 2019 4.0 942842814
## 21288 140 2020 3.0 942840891
## 21289 140 2023 4.0 1035368843
## 21290 140 2028 5.0 942841170
## 21291 140 2058 3.5 1172256140
## 21292 140 2067 4.0 1010775624
## 21293 140 2070 4.0 1055092732
## 21294 140 2076 3.0 1024051433
## 21295 140 2077 4.0 942844235
## 21296 140 2078 4.0 1021899034
## 21297 140 2085 4.0 1021899051
## 21298 140 2194 4.0 942843138
## 21299 140 2267 3.0 945179649
## 21300 140 2268 4.0 942842265
## 21301 140 2269 3.0 1021898803
## 21302 140 2278 4.0 949667554
## 21303 140 2312 4.0 942843611
## 21304 140 2334 3.0 951163661
## 21305 140 2344 3.0 942904025
## 21306 140 2353 4.0 949666998
## 21307 140 2398 3.0 942841394
## 21308 140 2401 4.5 1152897788
## 21309 140 2403 4.0 1030559180
## 21310 140 2431 4.0 1075154575
## 21311 140 2447 2.0 1075154552
## 21312 140 2470 4.0 1004111456
## 21313 140 2490 4.0 951163625
## 21314 140 2497 4.0 949667445
## 21315 140 2501 4.0 942924980
## 21316 140 2529 3.0 942841394
## 21317 140 2542 4.0 1055092497
## 21318 140 2561 3.0 1075154630
## 21319 140 2571 4.0 967048185
## 21320 140 2590 2.5 1075154614
## 21321 140 2605 4.0 949667704
## 21322 140 2617 2.0 944488906
## 21323 140 2618 3.5 1075154403
## 21324 140 2628 4.0 942844235
## 21325 140 2640 3.0 942841652
## 21326 140 2682 4.0 977403325
## 21327 140 2683 0.5 1075154511
## 21328 140 2686 3.5 1055092442
## 21329 140 2700 1.0 944488906
## 21330 140 2707 3.0 1005326516
## 21331 140 2712 1.0 1075154594
## 21332 140 2716 4.0 1085569775
## 21333 140 2724 4.0 942924666
## 21334 140 2763 4.0 942908620
## 21335 140 2764 4.0 1021899101
## 21336 140 2775 1.0 949666667
## 21337 140 2797 4.0 1032258861
## 21338 140 2803 3.0 967049087
## 21339 140 2819 3.0 942840891
## 21340 140 2822 4.0 942844165
## 21341 140 2858 4.0 1055092164
## 21342 140 2861 4.0 967047885
## 21343 140 2889 3.5 1075154443
## 21344 140 2890 4.0 942839914
## 21345 140 2912 3.5 1075154522
## 21346 140 2944 4.0 1021898963
## 21347 140 2947 4.0 1021898943
## 21348 140 2948 3.0 1021898980
## 21349 140 2951 4.0 942842814
## 21350 140 2996 3.5 1075154437
## 21351 140 3005 3.0 1075154485
## 21352 140 3011 2.0 1021899034
## 21353 140 3030 1.0 1117729296
## 21354 140 3055 3.0 1075154503
## 21355 140 3062 4.0 1021898980
## 21356 140 3074 4.0 942842942
## 21357 140 3093 3.5 1084273210
## 21358 140 3098 4.0 993208220
## 21359 140 3100 3.0 949667403
## 21360 140 3101 4.0 967048994
## 21361 140 3104 4.0 942844005
## 21362 140 3105 4.0 1055093044
## 21363 140 3107 3.0 949667371
## 21364 140 3108 3.0 949667371
## 21365 140 3117 3.0 1008776130
## 21366 140 3147 3.5 1055092222
## 21367 140 3148 3.0 1055092366
## 21368 140 3155 5.0 947102515
## 21369 140 3168 4.0 1021899051
## 21370 140 3173 4.0 947102663
## 21371 140 3175 2.5 1075154390
## 21372 140 3178 5.0 949667403
## 21373 140 3185 3.0 1035368737
## 21374 140 3189 4.0 955134145
## 21375 140 3198 4.0 1055092383
## 21376 140 3230 4.0 1055092353
## 21377 140 3244 3.5 1055092533
## 21378 140 3255 5.0 949667071
## 21379 140 3256 4.0 949666998
## 21380 140 3257 3.0 967049135
## 21381 140 3296 4.0 1021898980
## 21382 140 3301 4.0 1013599884
## 21383 140 3317 2.0 1007139599
## 21384 140 3347 3.0 1055092346
## 21385 140 3359 4.0 1012506511
## 21386 140 3360 4.0 1014225118
## 21387 140 3361 5.0 1024051433
## 21388 140 3363 4.5 1117729593
## 21389 140 3372 4.0 1021899149
## 21390 140 3408 3.0 1004036158
## 21391 140 3448 4.0 1055093016
## 21392 140 3451 4.0 1021898998
## 21393 140 3471 4.0 1012506511
## 21394 140 3494 4.0 1021898998
## 21395 140 3508 4.0 1004111443
## 21396 140 3513 3.0 1004036158
## 21397 140 3555 4.0 973800103
## 21398 140 3557 3.0 967049233
## 21399 140 3578 4.0 973265043
## 21400 140 3597 1.0 1021302537
## 21401 140 3623 3.0 997958427
## 21402 140 3654 4.0 960561697
## 21403 140 3668 3.0 1021898998
## 21404 140 3681 4.0 960561697
## 21405 140 3684 3.0 960561677
## 21406 140 3685 5.0 960561729
## 21407 140 3717 4.0 980422140
## 21408 140 3735 4.0 960561743
## 21409 140 3737 4.0 960561709
## 21410 140 3741 3.0 960561635
## 21411 140 3751 3.0 977403302
## 21412 140 3753 4.0 973264967
## 21413 140 3755 4.0 967047814
## 21414 140 3798 3.0 1012506472
## 21415 140 3827 3.0 993208295
## 21416 140 3831 3.5 1079472417
## 21417 140 3836 4.0 1055092266
## 21418 140 3861 2.0 997958529
## 21419 140 3873 4.0 1021899051
## 21420 140 3906 3.0 1005326428
## 21421 140 3916 5.0 973265072
## 21422 140 3948 2.5 1172256087
## 21423 140 3967 3.5 1079472536
## 21424 140 3969 3.0 997958279
## 21425 140 3978 4.0 997958529
## 21426 140 3980 3.0 1004036158
## 21427 140 3983 3.0 1004035971
## 21428 140 3985 3.5 1055092304
## 21429 140 3998 4.0 980422259
## 21430 140 3999 2.0 997958291
## 21431 140 4011 3.0 1004036226
## 21432 140 4014 4.0 1004035907
## 21433 140 4018 4.0 997958555
## 21434 140 4019 3.0 997958529
## 21435 140 4022 4.0 993208171
## 21436 140 4025 4.0 980422416
## 21437 140 4027 2.0 1012506124
## 21438 140 4031 3.0 1000899120
## 21439 140 4033 4.0 997958279
## 21440 140 4034 4.0 997958210
## 21441 140 4035 2.5 1172256091
## 21442 140 4042 4.0 1021899101
## 21443 140 4047 4.0 1055092243
## 21444 140 4056 4.0 981483298
## 21445 140 4085 3.0 1012506552
## 21446 140 4161 4.0 997958385
## 21447 140 4167 3.0 1014225063
## 21448 140 4187 4.0 1055092250
## 21449 140 4220 3.0 1012506552
## 21450 140 4223 5.0 985367644
## 21451 140 4225 5.0 999601633
## 21452 140 4226 3.0 1020883962
## 21453 140 4234 3.0 1012505945
## 21454 140 4243 4.0 1034362649
## 21455 140 4259 4.0 1021302558
## 21456 140 4265 2.0 1005326490
## 21457 140 4299 3.0 1008263374
## 21458 140 4306 3.0 1010775654
## 21459 140 4310 4.0 991396902
## 21460 140 4321 4.0 993208247
## 21461 140 4322 4.0 993208204
## 21462 140 4326 3.5 1055092309
## 21463 140 4327 5.0 993208194
## 21464 140 4337 4.0 993208295
## 21465 140 4339 4.0 993208220
## 21466 140 4349 3.0 993208280
## 21467 140 4368 2.0 1010775581
## 21468 140 4369 3.0 1013599592
## 21469 140 4447 3.5 1079472471
## 21470 140 4448 3.0 1012506322
## 21471 140 4465 3.5 1067987083
## 21472 140 4508 3.5 1117729488
## 21473 140 4534 3.0 1014225103
## 21474 140 4535 5.0 1014225103
## 21475 140 4623 4.0 1039547791
## 21476 140 4677 4.0 1021898818
## 21477 140 4688 3.5 1055092644
## 21478 140 4700 3.0 1010775559
## 21479 140 4703 3.5 1055092455
## 21480 140 4719 2.0 1010775581
## 21481 140 4727 3.0 1020883917
## 21482 140 4736 3.0 1008775205
## 21483 140 4774 2.5 1080845510
## 21484 140 4776 4.0 1018535155
## 21485 140 4795 4.0 1021899069
## 21486 140 4799 3.0 1021899069
## 21487 140 4822 3.0 1028042996
## 21488 140 4836 3.5 1055093091
## 21489 140 4844 4.0 1030558882
## 21490 140 4848 4.0 1036408826
## 21491 140 4855 4.0 1117729508
## 21492 140 4857 4.5 1055092325
## 21493 140 4866 3.0 1036408849
## 21494 140 4874 4.0 1021898635
## 21495 140 4880 4.0 1036408891
## 21496 140 4886 4.0 1039547738
## 21497 140 4889 3.0 1020883962
## 21498 140 4896 3.0 1030559001
## 21499 140 4901 3.0 1030558967
## 21500 140 4903 4.0 1039547644
## 21501 140 4921 4.0 1117729748
## 21502 140 4958 3.0 1008263469
## 21503 140 4963 3.0 1030558935
## 21504 140 4975 2.0 1055896066
## 21505 140 4991 3.0 1031567961
## 21506 140 4993 3.0 1030558904
## 21507 140 4994 3.0 1028042869
## 21508 140 4995 5.0 1012506009
## 21509 140 5010 4.0 1012505914
## 21510 140 5014 4.0 1014225035
## 21511 140 5015 4.0 1037013482
## 21512 140 5016 3.5 1055896057
## 21513 140 5048 3.0 1028043033
## 21514 140 5060 4.0 1010775654
## 21515 140 5064 4.0 1033727505
## 21516 140 5066 3.0 1166645499
## 21517 140 5093 3.0 1037013446
## 21518 140 5102 3.0 1012506623
## 21519 140 5103 4.0 1012506578
## 21520 140 5107 4.0 1015413986
## 21521 140 5108 3.0 1028043008
## 21522 140 5152 3.0 1034362738
## 21523 140 5187 4.0 1055092948
## 21524 140 5218 4.0 1044405442
## 21525 140 5256 3.0 1037013545
## 21526 140 5266 3.0 1058312998
## 21527 140 5267 4.0 1032258894
## 21528 140 5282 4.0 1037013482
## 21529 140 5291 1.0 1117729298
## 21530 140 5292 2.0 1037013502
## 21531 140 5299 5.0 1039547591
## 21532 140 5316 3.0 1036408912
## 21533 140 5329 2.5 1172256057
## 21534 140 5338 2.0 1021898844
## 21535 140 5349 3.5 1115290565
## 21536 140 5357 3.0 1024051464
## 21537 140 5358 3.0 1030558935
## 21538 140 5364 2.5 1079472693
## 21539 140 5377 3.5 1055093077
## 21540 140 5378 4.0 1038224094
## 21541 140 5388 3.0 1060354397
## 21542 140 5400 3.0 1058313018
## 21543 140 5418 4.0 1024682814
## 21544 140 5420 3.0 1038224094
## 21545 140 5435 3.0 1055092974
## 21546 140 5445 3.0 1055092997
## 21547 140 5446 3.0 1055092478
## 21548 140 5464 4.0 1028042730
## 21549 140 5479 4.0 1028042773
## 21550 140 5481 1.0 1028042773
## 21551 140 5506 3.0 1156530514
## 21552 140 5507 3.0 1044405477
## 21553 140 5553 4.0 1030559148
## 21554 140 5563 3.0 1060354508
## 21555 140 5574 3.5 1058313041
## 21556 140 5611 2.0 1055896083
## 21557 140 5620 3.0 1115290654
## 21558 140 5699 4.0 1058312977
## 21559 140 5747 3.0 1067987097
## 21560 140 5791 3.0 1079472463
## 21561 140 5812 2.5 1058313025
## 21562 140 5867 5.0 1117729634
## 21563 140 5873 3.5 1058312967
## 21564 140 5879 1.0 1044405733
## 21565 140 5899 3.0 1084272976
## 21566 140 5902 3.0 1117730666
## 21567 140 5943 2.5 1055896076
## 21568 140 5945 3.0 1080845501
## 21569 140 5947 3.0 1079472387
## 21570 140 5952 4.0 1079472379
## 21571 140 5959 3.0 1080239050
## 21572 140 5971 1.0 1117729302
## 21573 140 5989 4.0 1055896017
## 21574 140 5995 3.0 1058312828
## 21575 140 6059 3.0 1044405535
## 21576 140 6185 3.0 1058313047
## 21577 140 6213 3.0 1048296463
## 21578 140 6218 3.0 1079472399
## 21579 140 6219 3.0 1071665311
## 21580 140 6246 4.0 1048296571
## 21581 140 6279 4.0 1087314689
## 21582 140 6281 3.0 1055092087
## 21583 140 6297 3.0 1067987036
## 21584 140 6299 3.0 1087314647
## 21585 140 6373 3.5 1087314697
## 21586 140 6377 4.0 1079472354
## 21587 140 6378 5.0 1055092051
## 21588 140 6385 3.5 1087314631
## 21589 140 6386 4.0 1058312841
## 21590 140 6448 4.0 1058312818
## 21591 140 6461 4.5 1058312855
## 21592 140 6484 2.5 1096909124
## 21593 140 6539 3.5 1079472360
## 21594 140 6565 3.5 1067987025
## 21595 140 6593 3.0 1145991051
## 21596 140 6617 4.0 1067986856
## 21597 140 6669 1.0 1117729292
## 21598 140 6708 3.5 1080239113
## 21599 140 6709 2.5 1156530521
## 21600 140 6753 3.5 1067986859
## 21601 140 6764 3.0 1115290606
## 21602 140 6765 3.5 1166645494
## 21603 140 6787 4.0 1067987021
## 21604 140 6808 4.0 1067987015
## 21605 140 6870 3.5 1096909055
## 21606 140 6874 2.0 1115290612
## 21607 140 6879 3.0 1067986867
## 21608 140 6887 3.5 1079472527
## 21609 140 6893 5.0 1067987104
## 21610 140 6934 3.0 1115312462
## 21611 140 6947 5.0 1071665077
## 21612 140 6950 3.5 1080845528
## 21613 140 7018 5.0 1115290263
## 21614 140 7027 4.0 1115290235
## 21615 140 7076 5.0 1117729689
## 21616 140 7137 3.0 1115290572
## 21617 140 7143 3.5 1075154237
## 21618 140 7149 4.0 1145991095
## 21619 140 7153 5.0 1075154234
## 21620 140 7155 3.0 1117730641
## 21621 140 7158 3.0 1172256039
## 21622 140 7161 3.0 1087314879
## 21623 140 7162 4.5 1075154247
## 21624 140 7263 4.0 1080238970
## 21625 140 7294 3.0 1115290667
## 21626 140 7324 3.0 1096909067
## 21627 140 7379 3.0 1115290672
## 21628 140 7381 2.5 1115290679
## 21629 140 7445 3.5 1115290276
## 21630 140 7980 3.5 1126295278
## 21631 140 8121 1.0 1117729371
## 21632 140 8199 1.0 1117729294
## 21633 140 8207 4.0 1117729577
## 21634 140 8493 4.0 1124825411
## 21635 140 8529 3.5 1115290578
## 21636 140 8665 3.5 1096908981
## 21637 140 8798 3.5 1096909170
## 21638 140 8961 4.5 1115290248
## 21639 140 8970 3.5 1117729426
## 21640 140 8982 3.0 1121198127
## 21641 140 26172 3.0 1124825567
## 21642 140 26865 1.0 1117729380
## 21643 140 27821 4.0 1115290193
## 21644 140 30707 4.5 1126295231
## 21645 140 30749 3.0 1115290214
## 21646 140 30812 3.5 1152898237
## 21647 140 31225 3.0 1124825558
## 21648 140 31420 3.5 1124825591
## 21649 140 31685 3.0 1172256051
## 21650 140 31700 3.0 1145991142
## 21651 140 32017 2.0 1124825624
## 21652 140 32029 3.0 1124825615
## 21653 140 32596 2.5 1115290499
## 21654 140 33166 4.5 1121198212
## 21655 140 33493 4.0 1117729179
## 21656 140 33660 4.0 1121198121
## 21657 140 33679 3.0 1166645488
## 21658 140 34048 3.0 1166645504
## 21659 140 34072 4.5 1145991088
## 21660 140 34334 2.5 1124825511
## 21661 140 34534 4.5 1124825486
## 21662 140 34536 3.0 1166645407
## 21663 140 36529 3.0 1172256009
## 21664 140 37727 3.5 1145991113
## 21665 140 37733 3.5 1156530503
## 21666 140 37739 4.0 1152897676
## 21667 140 39292 3.5 1166645512
## 21668 140 39307 2.5 1156530456
## 21669 140 40583 4.0 1152898575
## 21670 140 41566 4.0 1145990626
## 21671 140 41571 3.5 1156530480
## 21672 140 41863 3.5 1156530595
## 21673 140 41997 3.5 1152897804
## 21674 140 42009 2.0 1152898617
## 21675 140 42730 5.0 1152898385
## 21676 140 43396 4.0 1166645387
## 21677 140 43917 3.0 1152898459
## 21678 140 44199 3.0 1159467898
## 21679 140 44399 1.0 1160763894
## 21680 140 44709 4.0 1166645423
## 21681 140 45668 3.0 1160763876
## 21682 140 47044 3.0 1156530384
## 21683 140 47099 3.5 1180627467
## 21684 140 47644 3.5 1172255988
## 21685 140 48516 3.0 1172255954
## 21686 140 49272 4.0 1180627460
## 21687 140 49524 3.5 1180627544
## 21688 140 49530 4.0 1172255978
## 21689 140 49910 2.5 1180627448
## 21690 140 50068 3.5 1172255946
## 21691 140 53972 3.0 1186077792
## 21692 141 1 4.0 1513130643
## 21693 141 19 2.0 1513130814
## 21694 141 47 3.0 1513130660
## 21695 141 104 3.5 1513130895
## 21696 141 107 3.5 1513132255
## 21697 141 110 3.5 1513129871
## 21698 141 150 3.5 1513130652
## 21699 141 231 3.0 1513131879
## 21700 141 260 4.0 1513129794
## 21701 141 296 4.0 1513130625
## 21702 141 317 3.5 1513131947
## 21703 141 318 4.0 1513129787
## 21704 141 344 2.0 1513130695
## 21705 141 356 4.0 1513129888
## 21706 141 364 4.0 1513130667
## 21707 141 367 2.5 1513131870
## 21708 141 441 3.0 1513132199
## 21709 141 480 3.0 1513130636
## 21710 141 500 3.0 1513131874
## 21711 141 520 4.0 1513131966
## 21712 141 588 4.0 1513130147
## 21713 141 673 4.0 1513132078
## 21714 141 780 3.0 1513130655
## 21715 141 785 2.5 1513132086
## 21716 141 852 2.5 1513132100
## 21717 141 858 2.5 1513129959
## 21718 141 1196 3.0 1513129840
## 21719 141 1197 3.5 1513131865
## 21720 141 1198 3.0 1513129799
## 21721 141 1210 4.5 1513129848
## 21722 141 1265 3.5 1513131867
## 21723 141 1270 2.5 1513131860
## 21724 141 1291 2.5 1513129853
## 21725 141 1485 2.5 1513131913
## 21726 141 1517 3.0 1513130782
## 21727 141 1527 3.5 1513130727
## 21728 141 1580 3.5 1513130713
## 21729 141 1653 4.0 1513130821
## 21730 141 1682 3.0 1513130947
## 21731 141 1704 3.5 1513129965
## 21732 141 1732 4.0 1513130755
## 21733 141 1917 3.0 1513130780
## 21734 141 1918 3.0 1513132127
## 21735 141 1968 4.0 1513131894
## 21736 141 2000 3.5 1513131918
## 21737 141 2002 3.0 1513132131
## 21738 141 2028 4.0 1513129890
## 21739 141 2355 4.0 1513130163
## 21740 141 2478 3.5 1513132289
## 21741 141 2502 4.0 1513130803
## 21742 141 2571 3.5 1513129802
## 21743 141 2683 3.0 1513130951
## 21744 141 2694 3.0 1513132111
## 21745 141 2700 3.0 1513130965
## 21746 141 2706 3.0 1513130764
## 21747 141 2716 3.5 1513131884
## 21748 141 2804 3.0 1513132022
## 21749 141 2959 5.0 1513130645
## 21750 141 3033 4.0 1513132044
## 21751 141 3052 3.5 1513130967
## 21752 141 3114 4.5 1513130145
## 21753 141 3147 3.5 1513130740
## 21754 141 3175 4.0 1513130971
## 21755 141 3255 4.0 1513132105
## 21756 141 3361 5.0 1513132266
## 21757 141 3489 4.0 1513132169
## 21758 141 3535 2.5 1513130548
## 21759 141 3552 5.0 1513132182
## 21760 141 3578 5.0 1513130008
## 21761 141 3751 3.0 1513130960
## 21762 141 3752 3.5 1513132421
## 21763 141 3753 3.0 1513130459
## 21764 141 3785 3.0 1513130584
## 21765 141 3948 3.0 1513132380
## 21766 141 3988 2.0 1513132273
## 21767 141 4002 4.5 1513132243
## 21768 141 4011 4.5 1513130266
## 21769 141 4018 3.5 1513130528
## 21770 141 4022 3.5 1513130246
## 21771 141 4025 2.5 1513132395
## 21772 141 4027 4.5 1513130268
## 21773 141 4226 3.0 1513130197
## 21774 141 4306 4.0 1513130194
## 21775 141 4447 2.5 1513132073
## 21776 141 4718 2.5 1513132413
## 21777 141 4816 3.5 1513132166
## 21778 141 4886 4.0 1513130010
## 21779 141 4896 3.0 1513130260
## 21780 141 4963 4.0 1513130228
## 21781 141 4973 3.5 1513130212
## 21782 141 4979 3.5 1513130978
## 21783 141 4993 4.0 1513129856
## 21784 141 5218 3.0 1513130419
## 21785 141 5418 3.5 1513129905
## 21786 141 5445 4.0 1513130156
## 21787 141 5459 3.0 1513130468
## 21788 141 5481 3.0 1513132410
## 21789 141 5502 3.5 1513130473
## 21790 141 5618 4.5 1513130909
## 21791 141 5952 3.5 1513129812
## 21792 141 5989 3.0 1513130242
## 21793 141 5991 3.5 1513132416
## 21794 141 6365 3.0 1513130320
## 21795 141 6373 3.0 1513131841
## 21796 141 6377 4.5 1513130221
## 21797 141 6539 4.0 1513130205
## 21798 141 6863 3.0 1513130476
## 21799 141 6874 3.0 1513129978
## 21800 141 6934 3.5 1513130404
## 21801 141 7143 3.0 1513130077
## 21802 141 7147 4.5 1513130431
## 21803 141 7153 4.0 1513129810
## 21804 141 7438 3.0 1513129995
## 21805 141 8360 2.5 1513130958
## 21806 141 8368 4.0 1513130067
## 21807 141 8528 4.5 1513132277
## 21808 141 8529 4.0 1513132213
## 21809 141 8641 4.5 1513132233
## 21810 141 8784 3.0 1513130594
## 21811 141 8874 4.0 1513130386
## 21812 141 8961 4.5 1513130232
## 21813 141 32587 2.5 1513130341
## 21814 141 33493 2.0 1513130398
## 21815 141 33794 3.5 1513129874
## 21816 141 34162 3.5 1513132136
## 21817 141 35836 3.5 1513131843
## 21818 141 40815 4.5 1513130073
## 21819 141 44191 5.0 1513130007
## 21820 141 45517 3.5 1513132281
## 21821 141 46578 3.5 1513130368
## 21822 141 46976 5.0 1513132223
## 21823 141 48385 2.5 1513132065
## 21824 141 48516 3.0 1513130317
## 21825 141 50872 3.0 1513129955
## 21826 141 51255 5.0 1513129972
## 21827 141 51662 2.5 1513130390
## 21828 141 52973 3.0 1513132264
## 21829 141 54001 3.0 1513130504
## 21830 141 54272 2.5 1513132229
## 21831 141 54286 3.5 1513129892
## 21832 141 54503 3.0 1513130596
## 21833 141 55820 3.5 1513130440
## 21834 141 56174 3.5 1513130493
## 21835 141 56367 3.0 1513130423
## 21836 141 58559 5.0 1513129850
## 21837 141 59315 3.0 1513129882
## 21838 141 59784 3.0 1513132174
## 21839 141 60069 5.0 1513130248
## 21840 141 68954 5.0 1513129898
## 21841 141 69122 3.5 1513132006
## 21842 141 69757 3.0 1513132406
## 21843 141 69844 4.0 1513130002
## 21844 141 71535 3.5 1513130522
## 21845 141 72998 2.5 1513130337
## 21846 141 73017 2.5 1513129984
## 21847 141 78499 4.0 1513130484
## 21848 141 80463 5.0 1513130508
## 21849 141 81834 3.5 1513129992
## 21850 141 91500 3.5 1513130553
## 21851 141 91529 4.0 1513130435
## 21852 141 99114 5.0 1513130399
## 21853 141 106696 3.0 1513129988
## 21854 141 109374 5.0 1513132133
## 21855 141 109487 5.0 1513129896
## 21856 141 115713 4.5 1513133067
## 21857 141 122904 5.0 1513129876
## 21858 141 134853 4.5 1513130586
## 21859 141 139385 4.0 1513133075
## 21860 142 34 4.0 838932132
## 21861 142 36 4.0 838933753
## 21862 142 47 4.0 838934238
## 21863 142 50 5.0 838934155
## 21864 142 95 3.0 838934522
## 21865 142 150 5.0 838931920
## 21866 142 161 5.0 838932766
## 21867 142 165 3.0 838932017
## 21868 142 193 2.0 838934084
## 21869 142 225 4.0 838934449
## 21870 142 231 3.0 838932386
## 21871 142 281 4.0 838934339
## 21872 142 292 3.0 838932766
## 21873 142 296 5.0 838931920
## 21874 142 337 4.0 838934122
## 21875 142 344 4.0 838932017
## 21876 142 349 3.0 838932017
## 21877 142 356 4.0 838932132
## 21878 142 364 4.0 838932132
## 21879 142 367 4.0 838934155
## 21880 142 373 3.0 838934122
## 21881 142 377 4.0 838934449
## 21882 142 380 4.0 838931920
## 21883 142 384 3.0 838934486
## 21884 142 434 3.0 838932766
## 21885 142 440 4.0 838934486
## 21886 142 457 4.0 838932766
## 21887 142 474 4.0 838934313
## 21888 142 480 3.0 838934122
## 21889 142 481 3.0 838934204
## 21890 142 508 4.0 838934312
## 21891 142 527 5.0 838932132
## 21892 142 588 5.0 838932017
## 21893 142 589 3.0 838933753
## 21894 142 590 4.0 838931919
## 21895 142 592 3.0 838931919
## 21896 142 593 5.0 838932386
## 21897 142 595 4.0 838932132
## 21898 143 356 5.0 1444768677
## 21899 143 500 3.0 1444881371
## 21900 143 597 3.0 1444880207
## 21901 143 1136 1.0 1444880544
## 21902 143 1307 2.0 1444880213
## 21903 143 1721 4.0 1444880204
## 21904 143 1968 2.0 1444880740
## 21905 143 2144 5.0 1444768859
## 21906 143 2683 1.0 1444880589
## 21907 143 2706 4.5 1444768580
## 21908 143 3421 1.0 1444768946
## 21909 143 3526 3.0 1444768929
## 21910 143 3793 4.5 1444769160
## 21911 143 4018 2.0 1444881228
## 21912 143 4306 5.0 1444769059
## 21913 143 4447 5.0 1444881307
## 21914 143 5066 5.0 1444768522
## 21915 143 5418 2.0 1444769126
## 21916 143 5620 3.5 1444880218
## 21917 143 6155 4.0 1444880210
## 21918 143 6332 4.5 1444881588
## 21919 143 6377 4.0 1444769084
## 21920 143 6539 3.0 1444769135
## 21921 143 6593 4.0 1444880948
## 21922 143 6619 5.0 1444881184
## 21923 143 6765 2.5 1444880255
## 21924 143 6942 2.0 1444768908
## 21925 143 6944 4.0 1444880357
## 21926 143 7169 5.0 1444880246
## 21927 143 7173 1.0 1444881276
## 21928 143 7255 3.0 1444880270
## 21929 143 7293 5.0 1444880461
## 21930 143 7316 3.0 1444881560
## 21931 143 7444 5.0 1444881020
## 21932 143 8533 4.0 1444768543
## 21933 143 8643 3.0 1444881338
## 21934 143 8827 5.0 1444768873
## 21935 143 31433 4.0 1444880347
## 21936 143 31685 3.0 1444881382
## 21937 143 32289 2.5 1444881189
## 21938 143 36525 2.0 1444881008
## 21939 143 40581 2.0 1444880466
## 21940 143 40962 3.0 1444880385
## 21941 143 47122 4.0 1444880429
## 21942 143 54503 1.0 1444768777
## 21943 143 56949 3.0 1444881036
## 21944 143 59421 4.0 1444881018
## 21945 143 59784 1.0 1444769081
## 21946 143 60069 2.0 1444769067
## 21947 143 61250 3.5 1444881297
## 21948 143 68954 5.0 1444768668
## 21949 143 69069 5.0 1444881408
## 21950 143 69122 5.0 1444768718
## 21951 143 69757 5.0 1444768885
## 21952 143 70183 4.0 1444880946
## 21953 143 71535 1.0 1444881319
## 21954 143 73319 3.0 1444881041
## 21955 143 78316 1.0 1444881335
## 21956 143 78499 4.0 1444769070
## 21957 143 79132 2.0 1444769122
## 21958 143 79702 1.0 1444881368
## 21959 143 81847 5.0 1444769058
## 21960 143 84374 2.5 1444881283
## 21961 143 87232 4.0 1444769136
## 21962 143 96821 2.0 1444880376
## 21963 143 97921 3.0 1444768824
## 21964 143 101142 4.0 1444769086
## 21965 143 103141 4.0 1444769077
## 21966 143 103335 4.0 1444769031
## 21967 143 103606 4.0 1444768980
## 21968 143 106696 4.0 1444768621
## 21969 144 1 3.5 1137323419
## 21970 144 2 3.0 1137323803
## 21971 144 10 3.0 1137323629
## 21972 144 17 4.0 1137323659
## 21973 144 19 3.0 1136812137
## 21974 144 25 3.0 1136813341
## 21975 144 32 4.0 1137323444
## 21976 144 34 3.0 1137323545
## 21977 144 39 3.5 1137323676
## 21978 144 47 4.5 1137323517
## 21979 144 48 4.5 1137324255
## 21980 144 110 4.5 1137323396
## 21981 144 150 3.0 1137323392
## 21982 144 153 3.0 1137323495
## 21983 144 163 4.0 1137324180
## 21984 144 208 3.5 1137323690
## 21985 144 223 4.0 1136811763
## 21986 144 231 3.0 1137323567
## 21987 144 253 4.5 1137323583
## 21988 144 266 3.0 1136812332
## 21989 144 288 4.0 1137323728
## 21990 144 296 4.0 1136812638
## 21991 144 337 4.0 1136812528
## 21992 144 344 3.5 1137323490
## 21993 144 356 4.0 1137323359
## 21994 144 357 4.0 1136813626
## 21995 144 364 4.5 1137323535
## 21996 144 377 3.5 1137323465
## 21997 144 380 3.0 1137323415
## 21998 144 410 3.0 1137323822
## 21999 144 420 3.0 1137324034
## 22000 144 434 2.5 1137323641
## 22001 144 440 3.0 1137323768
## 22002 144 475 4.5 1136812966
## 22003 144 480 3.0 1137323364
## 22004 144 500 3.0 1137323558
## 22005 144 509 3.5 1137323852
## 22006 144 520 3.5 1137324242
## 22007 144 527 3.5 1136812705
## 22008 144 539 3.0 1137323624
## 22009 144 541 3.0 1136812939
## 22010 144 552 4.0 1137324296
## 22011 144 586 3.0 1137323732
## 22012 144 587 3.5 1137323636
## 22013 144 588 4.5 1137323457
## 22014 144 589 2.0 1137323405
## 22015 144 590 5.0 1137323386
## 22016 144 592 3.5 1137323378
## 22017 144 593 4.5 1136812654
## 22018 144 597 3.0 1137323554
## 22019 144 648 3.5 1137323479
## 22020 144 733 4.0 1137323549
## 22021 144 736 3.0 1137323563
## 22022 144 778 4.0 1136812815
## 22023 144 780 2.5 1137323427
## 22024 144 784 1.5 1137324140
## 22025 144 788 3.0 1137323816
## 22026 144 832 3.5 1137324019
## 22027 144 1028 4.5 1137324274
## 22028 144 1035 4.5 1137324278
## 22029 144 1036 3.5 1137323713
## 22030 144 1059 4.5 1136813360
## 22031 144 1079 4.0 1137323857
## 22032 144 1094 4.0 1137324205
## 22033 144 1193 4.0 1136812862
## 22034 144 1214 3.0 1136812788
## 22035 144 1246 3.0 1136812698
## 22036 144 1265 3.0 1137323663
## 22037 144 1291 4.0 1137323708
## 22038 144 1393 4.0 1137323777
## 22039 144 1407 4.0 1137324023
## 22040 144 1485 3.0 1137324112
## 22041 144 1517 2.5 1136812316
## 22042 144 1527 2.5 1136811777
## 22043 144 1573 3.0 1137323987
## 22044 144 1580 3.5 1137323667
## 22045 144 1682 2.5 1137323966
## 22046 144 1917 2.5 1136812519
## 22047 144 1923 3.0 1136812174
## 22048 144 1961 3.0 1136811794
## 22049 144 2000 3.5 1137324015
## 22050 144 2028 3.5 1137323525
## 22051 144 2054 3.0 1137324151
## 22052 144 2081 4.0 1137324282
## 22053 144 2115 4.0 1137323976
## 22054 144 2329 5.0 1136812603
## 22055 144 2355 3.5 1137323904
## 22056 144 2396 3.5 1136812986
## 22057 144 2571 4.0 1137323508
## 22058 144 2683 2.0 1136812151
## 22059 144 2700 3.5 1137324088
## 22060 144 2706 4.0 1137323921
## 22061 144 2710 3.5 1137323951
## 22062 144 2728 3.5 1136813082
## 22063 144 2762 4.0 1137323586
## 22064 144 2858 4.0 1136812616
## 22065 144 2959 4.0 1136812146
## 22066 144 2987 3.0 1136812186
## 22067 144 3037 2.5 1136813331
## 22068 144 3114 3.0 1136812537
## 22069 144 3147 4.0 1137324161
## 22070 144 3408 3.5 1137324177
## 22071 144 3578 4.0 1137323761
## 22072 144 3996 4.5 1136812322
## 22073 144 4014 4.5 1136812992
## 22074 144 4027 3.5 1137324200
## 22075 144 4226 5.0 1136812631
## 22076 144 4306 5.0 1136812163
## 22077 144 4326 3.5 1136812867
## 22078 144 4973 4.0 1136812796
## 22079 144 4979 3.5 1136813105
## 22080 144 4993 4.5 1136812658
## 22081 144 5377 3.0 1136812901
## 22082 144 5618 4.0 1136813011
## 22083 144 5669 3.5 1136812723
## 22084 144 5952 4.5 1136812665
## 22085 144 6218 3.5 1136813125
## 22086 144 6377 5.0 1136812634
## 22087 144 6539 5.0 1136812619
## 22088 144 6591 3.5 1136812912
## 22089 144 6953 4.0 1136813038
## 22090 144 7034 4.0 1136813322
## 22091 144 7153 4.5 1136812675
## 22092 144 8360 5.0 1136812623
## 22093 144 8368 4.0 1136812823
## 22094 144 8622 3.5 1136813653
## 22095 144 8873 5.0 1136813059
## 22096 144 27416 4.0 1136812949
## 22097 145 1 5.0 832105242
## 22098 145 50 5.0 832105428
## 22099 145 111 4.0 832105479
## 22100 145 150 3.0 832105148
## 22101 145 153 3.0 832105183
## 22102 145 161 4.0 832105242
## 22103 145 165 3.0 832105183
## 22104 145 208 3.0 832105394
## 22105 145 231 3.0 832105242
## 22106 145 292 3.0 832105394
## 22107 145 296 4.0 832105148
## 22108 145 300 3.0 832105394
## 22109 145 316 2.0 832105216
## 22110 145 318 3.0 832105216
## 22111 145 329 3.0 832105216
## 22112 145 339 3.0 832105242
## 22113 145 344 2.0 832105183
## 22114 145 380 3.0 832105148
## 22115 145 434 3.0 832105242
## 22116 145 588 4.0 832105183
## 22117 145 590 4.0 832105148
## 22118 145 592 3.0 832105148
## 22119 145 595 4.0 832105216
## 22120 146 32 5.0 1312508179
## 22121 146 344 2.0 1312508994
## 22122 146 410 3.5 1312509083
## 22123 146 502 2.5 1312507926
## 22124 146 765 3.0 1312507825
## 22125 146 830 4.0 1312507715
## 22126 146 880 2.0 1312507794
## 22127 146 1367 3.0 1312508157
## 22128 146 1411 3.0 1312507759
## 22129 146 1882 0.5 1312507725
## 22130 146 2018 3.5 1312507741
## 22131 146 2085 4.0 1312508159
## 22132 146 2124 3.5 1312509085
## 22133 146 2338 2.0 1312507874
## 22134 146 2688 4.0 1312507779
## 22135 146 2805 2.5 1312507835
## 22136 146 3257 2.0 1312507785
## 22137 146 3499 4.0 1312507689
## 22138 146 3534 3.0 1312508283
## 22139 146 3686 4.0 1312507921
## 22140 146 3868 3.0 1312507737
## 22141 146 3991 2.5 1312508163
## 22142 146 5810 3.5 1312508869
## 22143 146 6383 1.5 1312508230
## 22144 146 6953 3.0 1312508255
## 22145 146 7293 4.5 1312508838
## 22146 146 7444 3.0 1312508196
## 22147 146 30803 5.0 1312508745
## 22148 146 35836 3.0 1312508789
## 22149 146 47610 4.0 1312507869
## 22150 146 51662 3.0 1312508753
## 22151 146 58803 3.5 1312508251
## 22152 147 5 4.5 1203267700
## 22153 147 151 1.5 1203267713
## 22154 147 163 4.5 1203267696
## 22155 147 168 0.5 1203267725
## 22156 147 186 1.5 1203267726
## 22157 147 225 5.0 1203267698
## 22158 147 315 2.0 1203267735
## 22159 147 342 1.5 1203267731
## 22160 147 466 4.0 1203267705
## 22161 147 543 2.5 1203267733
## 22162 147 552 4.5 1203267737
## 22163 147 555 4.5 1203267711
## 22164 147 596 3.0 1203267730
## 22165 147 1234 4.5 1203267710
## 22166 147 1376 5.0 1203267736
## 22167 147 1396 4.0 1203267732
## 22168 147 1639 5.0 1203267694
## 22169 147 2302 2.5 1203267708
## 22170 147 2395 2.5 1203267729
## 22171 147 2699 4.5 1203267692
## 22172 148 356 4.0 1482548476
## 22173 148 1197 3.0 1482548478
## 22174 148 4308 4.0 1482548613
## 22175 148 4886 3.0 1482548505
## 22176 148 4896 4.0 1482548717
## 22177 148 4993 3.0 1482548771
## 22178 148 5618 3.0 1482548682
## 22179 148 5816 4.0 1482548755
## 22180 148 5952 3.0 1482548769
## 22181 148 6377 3.0 1482548514
## 22182 148 7153 3.0 1482548769
## 22183 148 8368 4.0 1482548676
## 22184 148 30816 5.0 1482548570
## 22185 148 31658 4.0 1482548683
## 22186 148 40629 5.0 1482548578
## 22187 148 40815 4.0 1482548512
## 22188 148 44191 4.0 1482550089
## 22189 148 50872 3.0 1482548504
## 22190 148 54001 4.0 1482548674
## 22191 148 60069 4.5 1482548484
## 22192 148 68954 4.0 1482548482
## 22193 148 69757 3.5 1482548519
## 22194 148 69844 4.0 1482548500
## 22195 148 72998 4.0 1482548525
## 22196 148 76093 3.0 1482548702
## 22197 148 79091 3.5 1482548714
## 22198 148 79132 1.5 1482548463
## 22199 148 79702 4.0 1482548751
## 22200 148 81834 4.0 1482548498
## 22201 148 81847 4.5 1482549236
## 22202 148 88125 4.0 1482548673
## 22203 148 89745 4.0 1482548710
## 22204 148 98243 4.5 1482548883
## 22205 148 98491 5.0 1482548665
## 22206 148 99149 3.0 1482548617
## 22207 148 108932 4.0 1482548720
## 22208 148 110102 4.0 1482548669
## 22209 148 112175 2.5 1482548721
## 22210 148 112852 3.5 1482548700
## 22211 148 115617 3.5 1482548495
## 22212 148 116797 4.5 1482550073
## 22213 148 122882 4.0 1482548529
## 22214 148 122886 3.5 1482548686
## 22215 148 122920 3.5 1482548707
## 22216 148 134853 4.0 1482548516
## 22217 148 152081 4.0 1482548452
## 22218 148 157296 3.0 1482548671
## 22219 148 160718 4.5 1482548446
## 22220 149 2 1.0 902084874
## 22221 149 32 4.0 902085272
## 22222 149 172 3.0 902085141
## 22223 149 173 2.0 902085111
## 22224 149 196 3.0 902085002
## 22225 149 260 4.0 902084798
## 22226 149 316 4.0 902084966
## 22227 149 329 1.0 902085002
## 22228 149 379 2.0 902085111
## 22229 149 405 1.0 902085168
## 22230 149 442 3.0 902085002
## 22231 149 480 3.0 902084966
## 22232 149 519 2.0 902085168
## 22233 149 541 4.0 902085272
## 22234 149 589 3.0 902084874
## 22235 149 610 5.0 902085002
## 22236 149 737 2.0 902085168
## 22237 149 741 4.0 902084966
## 22238 149 750 5.0 902084716
## 22239 149 780 3.0 902084966
## 22240 149 788 4.0 902085033
## 22241 149 849 1.0 902085141
## 22242 149 924 2.0 902084798
## 22243 149 1037 3.0 902085141
## 22244 149 1097 4.0 902084874
## 22245 149 1127 3.0 902084909
## 22246 149 1129 2.0 902084874
## 22247 149 1196 2.0 902084798
## 22248 149 1200 3.0 902084798
## 22249 149 1206 3.0 902084874
## 22250 149 1210 4.0 902084798
## 22251 149 1214 5.0 902084716
## 22252 149 1240 4.0 902084798
## 22253 149 1253 5.0 902084874
## 22254 149 1270 2.0 902084836
## 22255 149 1274 1.0 902084874
## 22256 149 1334 4.0 902085141
## 22257 149 1356 4.0 902084874
## 22258 149 1371 1.0 902085111
## 22259 149 1372 1.0 902084966
## 22260 149 1374 3.0 902084716
## 22261 149 1375 2.0 902084966
## 22262 149 1391 4.0 902085078
## 22263 149 1527 4.0 902084909
## 22264 149 1544 1.0 902085078
## 22265 149 1580 2.0 902084716
## 22266 149 1584 3.0 902084716
## 22267 149 1676 5.0 902084966
## 22268 149 1831 3.0 902085033
## 22269 149 1882 1.0 902085188
## 22270 149 1965 2.0 902084798
## 22271 149 2011 2.0 902084836
## 22272 149 2012 2.0 902084836
## 22273 149 2021 1.0 902085002
## 22274 149 2034 1.0 902085188
## 22275 149 2038 1.0 902084966
## 22276 149 2091 1.0 902085002
## 22277 149 2094 3.0 902084966
## 22278 150 3 3.0 854203124
## 22279 150 5 3.0 854203124
## 22280 150 6 4.0 854203123
## 22281 150 7 3.0 854203124
## 22282 150 25 4.0 854203072
## 22283 150 32 5.0 854203071
## 22284 150 36 4.0 854203123
## 22285 150 52 4.0 854203163
## 22286 150 58 3.0 854203163
## 22287 150 62 3.0 854203072
## 22288 150 79 3.0 854203229
## 22289 150 95 3.0 854203072
## 22290 150 141 5.0 854203072
## 22291 150 376 3.0 854203124
## 22292 150 494 3.0 854203124
## 22293 150 608 4.0 854203123
## 22294 150 628 3.0 854203229
## 22295 150 648 4.0 854203072
## 22296 150 653 3.0 854203163
## 22297 150 733 4.0 854203123
## 22298 150 780 4.0 854203071
## 22299 150 784 3.0 854203163
## 22300 150 786 3.0 854203163
## 22301 150 805 4.0 854203230
## 22302 150 1073 3.0 854203163
## 22303 150 1356 5.0 854203229
## 22304 151 1 5.0 855947195
## 22305 151 3 3.0 855947242
## 22306 151 9 4.0 855947372
## 22307 151 12 3.0 855947434
## 22308 151 62 4.0 855947196
## 22309 151 75 3.0 855948083
## 22310 151 92 1.0 855948256
## 22311 151 95 4.0 855947196
## 22312 151 102 4.0 855947740
## 22313 151 104 5.0 855947306
## 22314 151 107 3.0 855947372
## 22315 151 135 3.0 855947338
## 22316 151 141 3.0 855947195
## 22317 151 216 4.0 855948920
## 22318 151 562 3.0 855948120
## 22319 151 609 4.0 855947434
## 22320 151 631 4.0 855947672
## 22321 151 634 2.0 855948155
## 22322 151 648 3.0 855947196
## 22323 151 656 3.0 855947672
## 22324 151 661 3.0 855947338
## 22325 151 673 4.0 855947672
## 22326 151 710 3.0 855947696
## 22327 151 719 4.0 855947372
## 22328 151 724 3.0 855947434
## 22329 151 736 4.0 855947195
## 22330 151 742 3.0 855947773
## 22331 151 743 4.0 855947372
## 22332 151 747 4.0 855948083
## 22333 151 761 1.0 855947434
## 22334 151 765 4.0 855947597
## 22335 151 780 3.0 855947195
## 22336 151 784 3.0 855947306
## 22337 151 785 4.0 855947696
## 22338 151 786 4.0 855947242
## 22339 151 788 5.0 855947306
## 22340 151 799 4.0 855947964
## 22341 151 802 5.0 855947372
## 22342 151 810 3.0 855947867
## 22343 151 813 4.0 855948256
## 22344 151 828 2.0 855948083
## 22345 151 837 4.0 855947773
## 22346 151 840 4.0 855948083
## 22347 151 842 3.0 855948120
## 22348 151 852 4.0 855947434
## 22349 151 879 4.0 855947964
## 22350 151 880 3.0 855948042
## 22351 151 885 3.0 855948155
## 22352 151 1047 4.0 855947597
## 22353 151 1073 4.0 855947242
## 22354 151 1265 5.0 855948791
## 22355 151 1359 4.0 855947643
## 22356 151 1367 3.0 855947672
## 22357 151 1390 3.0 855947773
## 22358 151 1393 2.0 855947578
## 22359 151 1405 5.0 855947849
## 22360 151 1409 4.0 855947773
## 22361 151 1429 4.0 855948013
## 22362 151 1432 4.0 855948013
## 22363 152 47 5.0 1450867741
## 22364 152 50 4.5 1450572430
## 22365 152 111 5.0 1450867646
## 22366 152 260 3.0 1450867564
## 22367 152 296 4.5 1450572451
## 22368 152 318 3.5 1450572432
## 22369 152 527 4.5 1450572434
## 22370 152 541 4.0 1450867576
## 22371 152 593 4.5 1450572448
## 22372 152 608 4.0 1450867584
## 22373 152 750 5.0 1450572506
## 22374 152 858 5.0 1450572429
## 22375 152 904 4.0 1450572466
## 22376 152 908 4.0 1450572513
## 22377 152 1136 3.5 1450572527
## 22378 152 1193 4.5 1450572437
## 22379 152 1198 3.5 1450572456
## 22380 152 1203 5.0 1450572515
## 22381 152 1207 4.5 1450572522
## 22382 152 1213 4.0 1450572454
## 22383 152 1221 4.0 1450572436
## 22384 152 1234 4.0 1450572533
## 22385 152 2329 5.0 1450572468
## 22386 152 2571 4.0 1450572453
## 22387 152 2858 4.0 1450572531
## 22388 152 2959 5.0 1450572450
## 22389 152 6016 4.5 1450572447
## 22390 152 7156 4.5 1450867724
## 22391 152 7361 5.0 1450867691
## 22392 152 27773 4.5 1450867688
## 22393 152 44555 4.0 1450867572
## 22394 152 48516 3.5 1450867566
## 22395 152 57669 4.0 1450867797
## 22396 152 58559 4.0 1450572509
## 22397 152 60074 2.5 1450867827
## 22398 152 60950 3.5 1450867890
## 22399 152 61132 3.0 1450867836
## 22400 152 61323 4.0 1450867814
## 22401 152 63876 3.5 1450867867
## 22402 152 64620 4.0 1450867893
## 22403 152 64716 4.0 1450867899
## 22404 152 64839 4.5 1450867808
## 22405 152 69481 5.0 1450867817
## 22406 152 72011 4.0 1450867832
## 22407 152 72226 4.5 1450867852
## 22408 152 72378 2.0 1450867865
## 22409 152 73321 3.5 1450867885
## 22410 152 77455 4.0 1450867906
## 22411 152 79132 3.5 1450572524
## 22412 152 79702 3.5 1450867823
## 22413 152 80489 3.5 1450867879
## 22414 152 85414 3.0 1450867595
## 22415 152 85774 4.5 1450867668
## 22416 152 86504 4.5 1450867648
## 22417 152 86781 4.0 1450867644
## 22418 152 88129 4.0 1450867829
## 22419 152 89492 4.0 1450867862
## 22420 152 89864 3.5 1450867872
## 22421 152 91630 3.0 1450867875
## 22422 152 92259 3.0 1450572461
## 22423 152 96829 4.0 1450867653
## 22424 152 115713 4.5 1450867608
## 22425 152 116897 3.5 1450867661
## 22426 153 1 2.0 1525548642
## 22427 153 2 2.0 1525550601
## 22428 153 153 0.5 1525552655
## 22429 153 266 0.5 1525550862
## 22430 153 296 3.0 1525548640
## 22431 153 356 3.5 1525548096
## 22432 153 364 3.0 1525548909
## 22433 153 455 0.5 1525552586
## 22434 153 500 2.0 1525550654
## 22435 153 520 2.0 1525552333
## 22436 153 527 2.0 1525548221
## 22437 153 586 2.5 1525549564
## 22438 153 597 0.5 1525552912
## 22439 153 616 2.0 1525552166
## 22440 153 778 3.5 1525548538
## 22441 153 780 0.5 1525552465
## 22442 153 788 0.5 1525552753
## 22443 153 858 1.0 1525548217
## 22444 153 1028 2.0 1525552032
## 22445 153 1193 3.0 1525550558
## 22446 153 1196 0.5 1525548175
## 22447 153 1198 0.5 1525548264
## 22448 153 1206 2.5 1525550483
## 22449 153 1208 2.0 1525551043
## 22450 153 1246 4.5 1525548800
## 22451 153 1258 3.0 1525550826
## 22452 153 1259 2.0 1525548948
## 22453 153 1271 4.0 1525549384
## 22454 153 1356 0.5 1525552756
## 22455 153 1380 1.0 1525550570
## 22456 153 1485 0.5 1525552506
## 22457 153 1580 0.5 1525552893
## 22458 153 1682 4.5 1525548854
## 22459 153 1704 4.0 1525548099
## 22460 153 1721 2.0 1525550658
## 22461 153 1732 3.5 1525550395
## 22462 153 1907 3.0 1525552223
## 22463 153 1954 0.5 1525552646
## 22464 153 1961 3.0 1525548831
## 22465 153 2005 2.0 1525552652
## 22466 153 2011 1.0 1525551059
## 22467 153 2080 2.0 1525552210
## 22468 153 2174 1.0 1525551067
## 22469 153 2291 3.0 1525549175
## 22470 153 2324 3.0 1525548106
## 22471 153 2355 0.5 1525552750
## 22472 153 2378 0.5 1525552641
## 22473 153 2395 1.0 1525550562
## 22474 153 2396 2.5 1525548508
## 22475 153 2571 0.5 1525548255
## 22476 153 2572 1.0 1525552933
## 22477 153 2617 0.5 1525552650
## 22478 153 2671 1.0 1525550835
## 22479 153 2710 0.5 1525552760
## 22480 153 2858 3.0 1525548795
## 22481 153 2908 3.5 1525549339
## 22482 153 2959 0.5 1525548681
## 22483 153 3186 4.0 1525549351
## 22484 153 3408 2.5 1525548836
## 22485 153 3623 0.5 1525549440
## 22486 153 3948 1.0 1525549436
## 22487 153 3949 4.0 1525548489
## 22488 153 4014 4.0 1525548802
## 22489 153 4226 4.0 1525548571
## 22490 153 4306 2.0 1525550598
## 22491 153 4308 3.0 1525548118
## 22492 153 4848 2.5 1525548914
## 22493 153 4878 4.5 1525548441
## 22494 153 4896 3.0 1525552226
## 22495 153 4973 5.0 1525548444
## 22496 153 4979 3.0 1525548713
## 22497 153 4995 3.5 1525548791
## 22498 153 5349 0.5 1525552590
## 22499 153 5992 4.0 1525549401
## 22500 153 6373 1.5 1525548148
## 22501 153 6377 1.0 1525550557
## 22502 153 6711 2.0 1525548491
## 22503 153 6793 0.5 1525552705
## 22504 153 6863 2.0 1525552526
## 22505 153 7147 4.0 1525548569
## 22506 153 7265 4.0 1525552865
## 22507 153 7293 0.5 1525548307
## 22508 153 7317 0.5 1525552680
## 22509 153 7361 5.0 1525548436
## 22510 153 7458 0.5 1525552582
## 22511 153 8464 1.0 1525550393
## 22512 153 8528 0.5 1525552728
## 22513 153 8533 1.0 1525552175
## 22514 153 8784 4.5 1525548730
## 22515 153 30707 2.5 1525549325
## 22516 153 30810 1.0 1525549054
## 22517 153 33679 0.5 1525552727
## 22518 153 36535 4.0 1525549111
## 22519 153 40819 4.0 1525548957
## 22520 153 41285 0.5 1525552453
## 22521 153 44191 4.0 1525548194
## 22522 153 45720 0.5 1525550567
## 22523 153 46578 4.0 1525548387
## 22524 153 47099 3.0 1525550553
## 22525 153 51662 0.5 1525552464
## 22526 153 55247 5.0 1525548301
## 22527 153 55269 2.5 1525548718
## 22528 153 56367 4.0 1525548385
## 22529 153 56715 4.5 1525549118
## 22530 153 60950 1.0 1525549506
## 22531 153 62644 3.0 1525549545
## 22532 153 63082 1.5 1525548393
## 22533 153 64034 1.0 1525550441
## 22534 153 64957 2.5 1525552006
## 22535 153 65230 0.5 1525552579
## 22536 153 66665 3.0 1525553119
## 22537 153 68954 2.5 1525548187
## 22538 153 69644 0.5 1525552707
## 22539 153 69757 3.5 1525548722
## 22540 153 72378 0.5 1525551654
## 22541 153 72641 1.0 1525550600
## 22542 153 72998 1.0 1525552980
## 22543 153 79702 2.5 1525548543
## 22544 153 81456 3.0 1525551302
## 22545 153 81591 3.0 1525548794
## 22546 153 81845 2.5 1525549232
## 22547 153 85885 1.0 1525551278
## 22548 153 86880 0.5 1525552628
## 22549 153 86882 3.5 1525548633
## 22550 153 87194 3.5 1525551170
## 22551 153 88810 4.0 1525548731
## 22552 153 89745 0.5 1525552984
## 22553 153 89904 5.0 1525549048
## 22554 153 91529 0.5 1525552987
## 22555 153 92259 3.0 1525548862
## 22556 153 94959 5.0 1525548438
## 22557 153 95167 0.5 1525551652
## 22558 153 95510 0.5 1525551656
## 22559 153 96821 3.5 1525548631
## 22560 153 97921 3.5 1525548446
## 22561 153 99114 1.0 1525552978
## 22562 153 100843 3.5 1525549607
## 22563 153 101973 1.5 1525552013
## 22564 153 102125 0.5 1525552630
## 22565 153 105355 4.0 1525551233
## 22566 153 105844 4.0 1525548778
## 22567 153 106100 4.0 1525548804
## 22568 153 106696 2.5 1525552648
## 22569 153 106782 1.0 1525548824
## 22570 153 106916 0.5 1525550576
## 22571 153 106920 4.0 1525548498
## 22572 153 109374 4.0 1525548490
## 22573 153 109487 0.5 1525550704
## 22574 153 111659 0.5 1525552678
## 22575 153 111921 2.0 1525550683
## 22576 153 112183 1.0 1525548825
## 22577 153 112290 4.0 1525550622
## 22578 153 112454 3.5 1525551196
## 22579 153 112552 1.0 1525548567
## 22580 153 112556 3.5 1525548828
## 22581 153 117176 2.5 1525548724
## 22582 153 117881 3.0 1525550712
## 22583 153 118696 2.5 1525552596
## 22584 153 122892 0.5 1525552631
## 22585 153 133780 3.0 1525549620
## 22586 153 134853 2.0 1525552523
## 22587 153 138396 3.5 1525551207
## 22588 153 140174 4.5 1525549527
## 22589 153 142488 3.5 1525549599
## 22590 153 143969 3.0 1525549539
## 22591 153 152270 3.5 1525551506
## 22592 153 158966 4.5 1525549128
## 22593 153 166461 2.0 1525552615
## 22594 153 168492 4.5 1525548280
## 22595 153 172547 0.5 1525553047
## 22596 153 173145 0.5 1525553026
## 22597 153 174055 1.5 1525549020
## 22598 153 175303 0.5 1525553022
## 22599 153 177615 3.0 1525548868
## 22600 153 177765 1.5 1525548495
## 22601 153 179709 3.0 1525549496
## 22602 153 179819 0.5 1525553024
## 22603 153 180095 4.0 1525548200
## 22604 153 184471 0.5 1525553051
## 22605 154 356 5.0 1486297094
## 22606 154 1097 5.0 1486297201
## 22607 154 1580 3.5 1486297224
## 22608 154 1704 5.0 1486297118
## 22609 154 4896 5.0 1486297175
## 22610 154 68954 5.0 1486297122
## 22611 154 69844 5.0 1486297146
## 22612 154 71264 5.0 1486297266
## 22613 154 72998 5.0 1486297187
## 22614 154 73321 2.5 1486297269
## 22615 154 76093 5.0 1486297152
## 22616 154 77561 4.0 1486297227
## 22617 154 79132 5.0 1486297098
## 22618 154 81834 5.0 1486297144
## 22619 154 86644 0.5 1486297252
## 22620 154 89745 5.0 1486297130
## 22621 154 96610 5.0 1486297183
## 22622 154 98243 5.0 1486297248
## 22623 154 106002 4.0 1486297259
## 22624 154 106072 3.5 1486297262
## 22625 154 108932 5.0 1486297171
## 22626 154 109487 5.0 1486297151
## 22627 154 110102 5.0 1486297139
## 22628 154 112852 5.0 1486297096
## 22629 154 114662 4.0 1486297212
## 22630 154 115617 5.0 1486297133
## 22631 154 119145 5.0 1486297139
## 22632 154 122892 5.0 1486297180
## 22633 154 122900 5.0 1486297182
## 22634 154 122904 5.0 1486297099
## 22635 154 130634 0.5 1486297255
## 22636 154 152081 4.5 1486297016
## 22637 154 157296 2.5 1486297276
## 22638 154 164179 4.5 1486297008
## 22639 155 1 3.0 961861723
## 22640 155 141 3.0 961860789
## 22641 155 153 3.0 961861424
## 22642 155 260 4.0 961889079
## 22643 155 333 4.0 961861110
## 22644 155 432 4.0 961889007
## 22645 155 575 3.0 961861668
## 22646 155 588 3.0 961861778
## 22647 155 592 3.0 961861424
## 22648 155 671 3.0 961861723
## 22649 155 1200 4.0 965939389
## 22650 155 1302 3.0 961860789
## 22651 155 1377 3.0 961861424
## 22652 155 1516 3.0 961861723
## 22653 155 1517 3.0 961861723
## 22654 155 1562 3.0 961861424
## 22655 155 1580 4.0 965939614
## 22656 155 1883 4.0 961861930
## 22657 155 1911 4.0 961861302
## 22658 155 1917 4.0 961861341
## 22659 155 1923 4.0 961861958
## 22660 155 1968 2.0 961860789
## 22661 155 2028 4.0 961860714
## 22662 155 2195 3.0 961861075
## 22663 155 2355 4.0 961861901
## 22664 155 2384 2.0 961861778
## 22665 155 2502 5.0 961860688
## 22666 155 2628 5.0 961889079
## 22667 155 2724 4.0 961862036
## 22668 155 2879 5.0 961889063
## 22669 155 2880 3.0 961889063
## 22670 155 2948 3.0 961860688
## 22671 155 2959 4.0 961860789
## 22672 155 3052 4.0 961861610
## 22673 155 3114 3.0 961861610
## 22674 155 3175 4.0 961861723
## 22675 155 3286 4.0 963871903
## 22676 155 3287 3.0 963872461
## 22677 155 3354 4.0 963872764
## 22678 155 3555 4.0 961862096
## 22679 155 3578 4.0 963872698
## 22680 155 3615 5.0 963872125
## 22681 155 3618 3.0 963872303
## 22682 155 3744 4.0 961860944
## 22683 155 3745 4.0 961860898
## 22684 155 3793 4.0 963872534
## 22685 156 1 4.0 1106854640
## 22686 156 11 3.0 946799769
## 22687 156 17 4.0 939884874
## 22688 156 19 3.0 1106855017
## 22689 156 21 5.0 946799679
## 22690 156 25 4.0 1106854805
## 22691 156 34 4.0 939853183
## 22692 156 39 1.0 939842934
## 22693 156 45 4.0 946799570
## 22694 156 47 3.5 1106854709
## 22695 156 50 4.0 940001349
## 22696 156 52 3.5 1106855391
## 22697 156 58 4.0 1106855269
## 22698 156 62 2.0 1106854830
## 22699 156 68 2.0 946799375
## 22700 156 111 4.0 1106854888
## 22701 156 150 4.0 1106854622
## 22702 156 154 5.0 939842396
## 22703 156 185 3.0 1106853925
## 22704 156 223 4.0 946799354
## 22705 156 235 4.0 946799400
## 22706 156 260 1.0 939842538
## 22707 156 288 4.0 1106854843
## 22708 156 296 5.0 939884874
## 22709 156 300 3.5 1106854847
## 22710 156 318 4.5 1106854626
## 22711 156 344 3.0 1106854664
## 22712 156 348 3.0 946799476
## 22713 156 356 3.0 1106854601
## 22714 156 357 3.0 946799495
## 22715 156 367 3.0 946799769
## 22716 156 370 3.5 1106855353
## 22717 156 376 3.5 1106855182
## 22718 156 417 5.0 946799612
## 22719 156 425 4.0 1106854282
## 22720 156 440 3.0 946799476
## 22721 156 457 3.5 1106854612
## 22722 156 477 3.5 1106854100
## 22723 156 480 3.0 1106854606
## 22724 156 492 3.0 946799715
## 22725 156 500 2.0 946800455
## 22726 156 529 4.0 1106855407
## 22727 156 537 4.0 939842578
## 22728 156 539 3.0 946799853
## 22729 156 541 4.0 1106854868
## 22730 156 562 4.0 946799612
## 22731 156 586 2.0 1106854857
## 22732 156 587 3.0 1106854759
## 22733 156 590 3.5 1106854617
## 22734 156 593 4.0 1106854598
## 22735 156 597 4.0 1106854735
## 22736 156 608 5.0 946798345
## 22737 156 648 3.5 1106854675
## 22738 156 661 4.0 940018454
## 22739 156 708 3.0 946799816
## 22740 156 750 5.0 946798960
## 22741 156 762 2.5 1106855572
## 22742 156 764 4.0 946800395
## 22743 156 778 4.0 939884874
## 22744 156 800 4.0 946800214
## 22745 156 838 3.0 939843105
## 22746 156 848 4.0 946800308
## 22747 156 851 3.5 1106854275
## 22748 156 852 3.0 946799834
## 22749 156 858 5.0 946798345
## 22750 156 866 5.0 939843203
## 22751 156 869 4.0 946798548
## 22752 156 898 5.0 939853337
## 22753 156 904 5.0 940290635
## 22754 156 905 5.0 939853546
## 22755 156 908 5.0 940290635
## 22756 156 910 5.0 939854008
## 22757 156 912 5.0 946798960
## 22758 156 913 5.0 946798252
## 22759 156 915 3.0 946799588
## 22760 156 919 4.0 941922678
## 22761 156 920 3.0 941922678
## 22762 156 921 3.0 946799400
## 22763 156 922 4.0 1106854096
## 22764 156 923 5.0 939884805
## 22765 156 924 4.5 1106854511
## 22766 156 930 5.0 939854531
## 22767 156 933 5.0 946799400
## 22768 156 936 5.0 939853418
## 22769 156 945 5.0 939854008
## 22770 156 946 3.0 946799313
## 22771 156 947 5.0 939853546
## 22772 156 953 3.5 1106855520
## 22773 156 955 3.0 939853418
## 22774 156 969 4.0 946799037
## 22775 156 999 4.0 946798467
## 22776 156 1028 3.0 1106855396
## 22777 156 1035 4.5 1106855438
## 22778 156 1042 3.0 946799612
## 22779 156 1057 3.0 946799679
## 22780 156 1060 4.0 1106854107
## 22781 156 1077 4.0 946799495
## 22782 156 1078 3.0 946799057
## 22783 156 1079 4.0 1106855007
## 22784 156 1080 2.5 1106855224
## 22785 156 1084 5.0 946798346
## 22786 156 1089 4.0 1106854501
## 22787 156 1094 4.0 946799057
## 22788 156 1097 3.0 1106854763
## 22789 156 1131 3.5 1106881258
## 22790 156 1136 5.0 939854531
## 22791 156 1162 3.0 939854008
## 22792 156 1171 3.0 946799453
## 22793 156 1172 4.0 939853418
## 22794 156 1179 5.0 939897861
## 22795 156 1193 4.0 939884874
## 22796 156 1198 4.0 939842493
## 22797 156 1199 5.0 939854571
## 22798 156 1204 4.0 946798960
## 22799 156 1206 5.0 1106855084
## 22800 156 1207 4.0 1106855457
## 22801 156 1208 4.0 946798960
## 22802 156 1211 3.0 939842984
## 22803 156 1212 5.0 946800148
## 22804 156 1213 4.0 1106855028
## 22805 156 1217 5.0 946799037
## 22806 156 1219 4.5 1106855157
## 22807 156 1220 3.0 946799749
## 22808 156 1221 4.0 1106854933
## 22809 156 1222 4.5 1106855249
## 22810 156 1224 4.0 946799037
## 22811 156 1225 4.5 1106854480
## 22812 156 1228 3.0 939884805
## 22813 156 1230 5.0 946799250
## 22814 156 1234 4.0 939853183
## 22815 156 1237 4.0 960646812
## 22816 156 1238 4.0 946799272
## 22817 156 1244 5.0 946799354
## 22818 156 1247 5.0 946800180
## 22819 156 1248 5.0 941922620
## 22820 156 1251 5.0 960646812
## 22821 156 1252 4.0 946798252
## 22822 156 1253 3.0 1106854047
## 22823 156 1256 5.0 946798960
## 22824 156 1262 3.0 946799086
## 22825 156 1263 4.0 946799109
## 22826 156 1264 3.0 939898085
## 22827 156 1265 5.0 946799291
## 22828 156 1267 4.0 946798252
## 22829 156 1270 3.5 1106854726
## 22830 156 1272 3.0 946800194
## 22831 156 1276 4.0 946799272
## 22832 156 1278 3.0 946799272
## 22833 156 1281 3.0 939853183
## 22834 156 1282 3.5 1106853858
## 22835 156 1284 5.0 946798252
## 22836 156 1288 4.0 939853546
## 22837 156 1289 4.0 946799086
## 22838 156 1291 3.5 1106854910
## 22839 156 1292 4.0 939853546
## 22840 156 1295 3.0 946800214
## 22841 156 1299 5.0 946799057
## 22842 156 1304 3.0 939854008
## 22843 156 1307 3.5 1106854952
## 22844 156 1354 5.0 939884805
## 22845 156 1358 4.0 1106855335
## 22846 156 1387 3.5 1106855002
## 22847 156 1393 2.0 1106854944
## 22848 156 1394 4.0 946799313
## 22849 156 1408 4.0 946799147
## 22850 156 1414 3.0 946799570
## 22851 156 1425 3.0 946799920
## 22852 156 1485 3.0 946800455
## 22853 156 1513 3.0 946799943
## 22854 156 1517 3.0 1106855162
## 22855 156 1580 3.0 946799679
## 22856 156 1586 3.0 946799180
## 22857 156 1589 3.0 1106854059
## 22858 156 1596 5.0 939886253
## 22859 156 1614 1.0 946799715
## 22860 156 1617 5.0 939897861
## 22861 156 1639 3.5 1106855448
## 22862 156 1641 4.0 946799354
## 22863 156 1665 2.0 946799816
## 22864 156 1682 3.5 1106855262
## 22865 156 1683 5.0 939842984
## 22866 156 1684 4.0 939854571
## 22867 156 1689 3.0 939853546
## 22868 156 1704 4.0 1106854994
## 22869 156 1711 3.0 946798792
## 22870 156 1721 3.0 939854571
## 22871 156 1729 4.0 946798400
## 22872 156 1732 3.0 946798434
## 22873 156 1747 3.0 946799588
## 22874 156 1783 3.0 939897861
## 22875 156 1784 3.0 939842854
## 22876 156 1836 5.0 946798204
## 22877 156 1882 2.5 1106854077
## 22878 156 1883 3.0 946799375
## 22879 156 1909 3.0 1106853850
## 22880 156 1916 1.0 951113118
## 22881 156 1919 3.0 1106854260
## 22882 156 1921 2.5 1106854067
## 22883 156 1923 4.0 939853546
## 22884 156 1939 3.0 946799086
## 22885 156 1948 3.0 946799375
## 22886 156 1954 3.5 1106855539
## 22887 156 1960 4.0 946799109
## 22888 156 1961 4.0 1106853845
## 22889 156 1963 3.0 939853183
## 22890 156 1965 4.0 939853183
## 22891 156 1966 5.0 946799354
## 22892 156 1968 3.5 1106855047
## 22893 156 2000 3.0 946798573
## 22894 156 2019 5.0 939842664
## 22895 156 2054 2.0 1106855503
## 22896 156 2064 3.0 939853546
## 22897 156 2065 3.0 939854008
## 22898 156 2067 4.0 946799109
## 22899 156 2076 5.0 939898085
## 22900 156 2080 1.0 951113118
## 22901 156 2081 3.0 946799658
## 22902 156 2087 4.0 946800249
## 22903 156 2100 3.0 1106855511
## 22904 156 2109 2.0 946799749
## 22905 156 2110 2.0 946798548
## 22906 156 2112 3.0 946798548
## 22907 156 2115 3.5 1106855291
## 22908 156 2130 5.0 946798381
## 22909 156 2131 5.0 951113099
## 22910 156 2136 2.0 939853337
## 22911 156 2144 3.0 946799634
## 22912 156 2174 3.0 946799570
## 22913 156 2186 4.0 946798252
## 22914 156 2194 3.0 946798434
## 22915 156 2202 4.0 1106854242
## 22916 156 2239 5.0 946799476
## 22917 156 2243 2.0 946800249
## 22918 156 2247 3.0 946799816
## 22919 156 2268 3.0 946798573
## 22920 156 2289 5.0 939884874
## 22921 156 2290 1.0 946799715
## 22922 156 2294 3.0 940018188
## 22923 156 2300 4.0 990283421
## 22924 156 2302 3.0 939853418
## 22925 156 2321 4.0 939842891
## 22926 156 2349 4.0 939853273
## 22927 156 2352 3.0 946799588
## 22928 156 2360 5.0 960646812
## 22929 156 2361 3.0 946799291
## 22930 156 2369 4.0 946799769
## 22931 156 2371 1.0 946799943
## 22932 156 2384 4.0 941922546
## 22933 156 2395 3.5 1106853874
## 22934 156 2396 4.0 946799431
## 22935 156 2406 4.0 946799943
## 22936 156 2455 2.5 1106853967
## 22937 156 2467 2.0 939898085
## 22938 156 2511 5.0 946798434
## 22939 156 2571 3.0 1106854776
## 22940 156 2599 4.0 1106853832
## 22941 156 2616 1.0 946798548
## 22942 156 2617 3.5 1106855347
## 22943 156 2657 3.0 1106853862
## 22944 156 2683 3.0 1106855040
## 22945 156 2692 5.0 951112971
## 22946 156 2712 4.0 1106855301
## 22947 156 2716 3.0 946799729
## 22948 156 2732 5.0 946800163
## 22949 156 2734 4.0 946800490
## 22950 156 2750 3.0 946799537
## 22951 156 2752 3.0 939898085
## 22952 156 2764 4.0 946798467
## 22953 156 2779 4.0 946799834
## 22954 156 2791 3.5 1106855249
## 22955 156 2795 3.0 946799903
## 22956 156 2796 2.0 939842723
## 22957 156 2797 3.0 946800345
## 22958 156 2858 4.5 1106854732
## 22959 156 2863 3.0 946799313
## 22960 156 2917 4.0 946798401
## 22961 156 2918 3.0 946800329
## 22962 156 2926 3.0 946799400
## 22963 156 2941 4.0 946799180
## 22964 156 2944 3.0 946799127
## 22965 156 2946 3.0 946799634
## 22966 156 2947 2.0 946800308
## 22967 156 2970 3.0 946800163
## 22968 156 2973 3.0 946799354
## 22969 156 2987 3.0 946798275
## 22970 156 2993 2.0 946800346
## 22971 156 2997 5.0 1106854958
## 22972 156 3019 4.0 946798346
## 22973 156 3022 5.0 946799236
## 22974 156 3028 3.0 946800329
## 22975 156 3030 5.0 946799236
## 22976 156 3039 2.0 946799537
## 22977 156 3060 4.0 946800266
## 22978 156 3072 4.0 946799453
## 22979 156 3076 3.0 946799749
## 22980 156 3087 3.0 946799853
## 22981 156 3088 4.0 946799291
## 22982 156 3089 4.0 960646533
## 22983 156 3096 5.0 946799236
## 22984 156 3099 5.0 946799570
## 22985 156 3100 3.0 946800214
## 22986 156 3108 3.0 946799453
## 22987 156 3114 3.5 1106855144
## 22988 156 3130 3.0 946800467
## 22989 156 3134 5.0 946798960
## 22990 156 3141 1.0 946800308
## 22991 156 3152 5.0 946800180
## 22992 156 3160 4.0 1106853952
## 22993 156 3167 3.0 946800232
## 22994 156 3168 3.0 946800284
## 22995 156 3175 4.5 1106855482
## 22996 156 3176 4.0 1106855555
## 22997 156 3200 4.0 949201760
## 22998 156 3223 1.0 951113136
## 22999 156 3224 5.0 951113027
## 23000 156 3283 2.0 951113076
## 23001 156 3310 3.0 1106854426
## 23002 156 3317 4.5 1106882045
## 23003 156 3341 4.0 951113027
## 23004 156 3408 4.5 1106855340
## 23005 156 3418 4.0 953534663
## 23006 156 3467 4.0 953534519
## 23007 156 3468 5.0 953534519
## 23008 156 3471 3.0 953534411
## 23009 156 3473 5.0 953534555
## 23010 156 3481 4.5 1106855435
## 23011 156 3492 4.0 953534636
## 23012 156 3503 5.0 953534636
## 23013 156 3504 4.0 953534611
## 23014 156 3506 4.0 953534611
## 23015 156 3507 4.0 953534611
## 23016 156 3556 4.0 1106882173
## 23017 156 3578 3.5 1106854990
## 23018 156 3629 4.0 960646486
## 23019 156 3741 4.0 1106854210
## 23020 156 3751 3.5 1106855382
## 23021 156 3873 4.0 971555388
## 23022 156 3897 4.0 1106855377
## 23023 156 3911 3.5 1106882036
## 23024 156 3996 3.5 1106855126
## 23025 156 4014 1.5 1106854018
## 23026 156 4027 4.0 1106855548
## 23027 156 4029 4.5 1106882162
## 23028 156 4205 3.5 1106854177
## 23029 156 4226 4.5 1106855486
## 23030 156 4232 3.0 1106853910
## 23031 156 4262 3.5 1106853930
## 23032 156 4349 3.0 1106854182
## 23033 156 4378 4.5 1106882066
## 23034 156 4728 2.5 1106854194
## 23035 156 4734 3.0 1106853895
## 23036 156 4784 3.0 1106854394
## 23037 156 4914 5.0 1106854406
## 23038 156 4973 4.0 1106882006
## 23039 156 4979 4.5 1106882088
## 23040 156 5013 4.5 1106882052
## 23041 156 5060 4.0 946799037
## 23042 156 5377 3.5 1106882030
## 23043 156 5388 3.5 1106853902
## 23044 156 5505 2.0 1106882195
## 23045 156 5577 4.0 1106882178
## 23046 156 5637 4.0 1106854363
## 23047 156 5673 3.0 1106882141
## 23048 156 5712 4.0 1106854392
## 23049 156 5788 4.5 1106882151
## 23050 156 5847 3.5 1106881808
## 23051 156 5902 4.5 1106882026
## 23052 156 5945 3.5 1106882129
## 23053 156 5991 4.5 1106882117
## 23054 156 6003 3.5 1106882187
## 23055 156 6218 4.5 1106882100
## 23056 156 6296 4.0 1106882113
## 23057 156 6297 4.0 1106882124
## 23058 156 6299 4.5 1106854139
## 23059 156 6377 4.0 1106882012
## 23060 156 6460 5.0 953534663
## 23061 156 6509 4.0 1106881212
## 23062 156 6539 4.0 1106881798
## 23063 156 6658 3.5 1106854358
## 23064 156 6666 5.0 1106881196
## 23065 156 6684 4.0 1106881222
## 23066 156 6711 4.5 1106882017
## 23067 156 6791 4.0 1106881254
## 23068 156 6953 4.5 1106854130
## 23069 156 6957 4.0 1106882206
## 23070 156 7008 5.0 1106881226
## 23071 156 7063 4.5 1106881185
## 23072 156 7089 4.0 1106881191
## 23073 156 7107 3.5 1106881858
## 23074 156 7137 4.0 1106882158
## 23075 156 7285 4.0 1106854328
## 23076 156 7396 4.5 1106881200
## 23077 156 8128 4.0 1106881279
## 23078 156 8228 5.0 1109452344
## 23079 156 8571 3.5 1106881899
## 23080 156 8614 3.5 1106881351
## 23081 156 26313 4.0 1106881869
## 23082 156 31038 4.0 1106881893
## 23083 157 527 5.0 992479576
## 23084 157 785 5.0 992479976
## 23085 157 953 3.0 992479516
## 23086 157 1193 3.0 992479618
## 23087 157 1270 4.0 992479516
## 23088 157 1961 4.0 992479546
## 23089 157 2392 3.0 992479954
## 23090 157 2490 4.0 992480013
## 23091 157 2683 4.0 992479748
## 23092 157 2686 3.0 992480036
## 23093 157 2720 2.0 992479954
## 23094 157 2724 2.0 992480059
## 23095 157 2770 3.0 992479790
## 23096 157 2959 5.0 992479905
## 23097 157 2987 4.0 992479618
## 23098 157 3174 3.0 992479976
## 23099 157 3175 2.0 992479927
## 23100 157 3268 2.0 992479618
## 23101 157 3298 4.0 992479790
## 23102 157 3617 3.0 992480036
## 23103 157 3752 5.0 992479976
## 23104 158 193 3.0 1290764773
## 23105 158 327 4.0 1290764791
## 23106 158 837 2.5 1290764862
## 23107 158 1093 3.0 1290764776
## 23108 158 1345 3.5 1290764755
## 23109 158 1409 2.5 1290764827
## 23110 158 2109 3.5 1290764806
## 23111 158 2428 4.0 1290764853
## 23112 158 2490 5.0 1290764747
## 23113 158 2572 3.5 1290764961
## 23114 158 2605 2.5 1290764759
## 23115 158 2723 2.5 1290764763
## 23116 158 2826 4.5 1290765010
## 23117 158 2872 2.5 1290764835
## 23118 158 2948 3.0 1290764809
## 23119 158 3301 4.0 1290764821
## 23120 158 3363 3.0 1290764796
## 23121 158 6383 3.0 1290765043
## 23122 158 6502 4.0 1290765080
## 23123 158 7541 2.5 1290764968
## 23124 158 27674 4.0 1290764985
## 23125 158 53000 4.0 1290765083
## 23126 158 55282 3.0 1290765104
## 23127 158 55391 4.5 1290764979
## 23128 158 58293 3.5 1290764964
## 23129 158 66320 4.0 1290764989
## 23130 159 1 4.5 1508640172
## 23131 159 31 3.5 1508641164
## 23132 159 62 3.0 1508641179
## 23133 159 110 3.0 1508640168
## 23134 159 150 4.0 1508641167
## 23135 159 186 3.0 1508640386
## 23136 159 296 0.5 1508640157
## 23137 159 318 4.5 1508640105
## 23138 159 339 3.0 1508641191
## 23139 159 356 4.0 1508640153
## 23140 159 357 2.5 1508641063
## 23141 159 377 3.0 1508640341
## 23142 159 480 3.0 1508640163
## 23143 159 508 2.0 1508641085
## 23144 159 539 3.0 1508641193
## 23145 159 587 4.0 1508640317
## 23146 159 597 4.0 1508640293
## 23147 159 1088 4.0 1508641161
## 23148 159 1197 4.0 1508640218
## 23149 159 1259 2.0 1508640372
## 23150 159 1265 4.5 1508640275
## 23151 159 1307 4.5 1508641158
## 23152 159 1569 3.0 1508641228
## 23153 159 1704 5.0 1508640118
## 23154 159 1721 3.5 1508640335
## 23155 159 1784 2.5 1508640296
## 23156 159 1961 3.0 1508641205
## 23157 159 2424 3.0 1508640419
## 23158 159 2671 3.0 1508641313
## 23159 159 2724 1.5 1508640433
## 23160 159 2858 4.0 1508640256
## 23161 159 2959 3.0 1508640222
## 23162 159 3114 4.5 1508641070
## 23163 159 3147 0.5 1508640210
## 23164 159 3252 1.0 1508641154
## 23165 159 3949 0.5 1508641203
## 23166 159 4014 2.0 1508641260
## 23167 159 4022 3.0 1508640307
## 23168 159 4069 2.0 1508640458
## 23169 159 4246 5.0 1508641138
## 23170 159 4306 4.0 1508641095
## 23171 159 4308 2.5 1508641254
## 23172 159 4447 2.5 1508641200
## 23173 159 4823 3.0 1508640454
## 23174 159 4886 4.0 1508640278
## 23175 159 5299 4.0 1508641309
## 23176 159 5377 2.0 1508641264
## 23177 159 5957 3.0 1508640462
## 23178 159 6373 4.0 1508640394
## 23179 159 6377 4.5 1508640358
## 23180 159 6942 4.5 1508641052
## 23181 159 7143 4.0 1508640310
## 23182 159 7361 0.5 1508641236
## 23183 159 8360 4.0 1508641097
## 23184 159 8533 4.0 1508641045
## 23185 159 8969 2.0 1508641172
## 23186 159 30707 4.0 1508640321
## 23187 159 30812 2.0 1508641143
## 23188 159 31685 3.0 1508641088
## 23189 159 40819 3.5 1508641048
## 23190 159 45720 4.0 1508641299
## 23191 159 46976 1.0 1508641051
## 23192 159 47099 5.0 1508640302
## 23193 159 49286 2.0 1508641212
## 23194 159 56367 5.0 1508640402
## 23195 159 60069 2.0 1508640225
## 23196 159 63082 0.5 1508640286
## 23197 159 64957 4.0 1508640383
## 23198 159 64969 4.0 1508641056
## 23199 159 65230 5.0 1508641270
## 23200 159 67087 3.0 1508641092
## 23201 159 68954 3.0 1508640220
## 23202 159 69757 5.0 1508641307
## 23203 159 72641 5.0 1508640254
## 23204 159 72998 4.0 1508640326
## 23205 159 74946 4.0 1508641230
## 23206 159 78499 5.0 1508640269
## 23207 159 81845 3.5 1508640365
## 23208 159 81932 2.0 1508641185
## 23209 159 84374 3.0 1508641099
## 23210 159 84954 3.0 1508641273
## 23211 159 88405 2.5 1508641239
## 23212 159 88810 3.5 1508641043
## 23213 159 89774 4.0 1508641246
## 23214 159 89864 3.5 1508640283
## 23215 159 95167 3.5 1508640356
## 23216 159 96821 3.5 1508641283
## 23217 159 97304 4.5 1508640440
## 23218 159 103141 3.0 1508640379
## 23219 159 104374 5.0 1508640504
## 23220 159 106696 3.0 1508640298
## 23221 159 106782 2.0 1508641234
## 23222 159 106920 2.0 1508640479
## 23223 159 112556 2.0 1508640471
## 23224 159 140110 4.5 1508641026
## 23225 159 157296 4.5 1508641197
## 23226 159 166643 5.0 1508640188
## 23227 160 1 4.0 971115026
## 23228 160 2 4.0 971619578
## 23229 160 6 2.0 971115114
## 23230 160 10 1.0 971196422
## 23231 160 22 1.0 971437089
## 23232 160 32 5.0 971113953
## 23233 160 34 5.0 971619022
## 23234 160 44 3.0 971115727
## 23235 160 47 5.0 971115962
## 23236 160 50 4.0 971113158
## 23237 160 60 2.0 971619579
## 23238 160 76 4.0 971196402
## 23239 160 79 1.0 971196754
## 23240 160 85 5.0 991075851
## 23241 160 93 1.0 976798624
## 23242 160 95 1.0 971112529
## 23243 160 110 4.0 971112675
## 23244 160 111 5.0 971195906
## 23245 160 126 1.0 971619754
## 23246 160 150 5.0 971620081
## 23247 160 153 3.0 971115686
## 23248 160 158 3.0 971619628
## 23249 160 165 3.0 971115317
## 23250 160 173 3.0 971114703
## 23251 160 181 1.0 971619816
## 23252 160 185 1.0 971114512
## 23253 160 196 1.0 971114512
## 23254 160 198 5.0 971114178
## 23255 160 204 1.0 975849881
## 23256 160 217 1.0 971196785
## 23257 160 227 2.0 971115727
## 23258 160 239 1.0 971619761
## 23259 160 242 2.0 971117781
## 23260 160 253 3.0 971620157
## 23261 160 258 1.0 971114775
## 23262 160 260 5.0 971113925
## 23263 160 288 5.0 971115276
## 23264 160 293 1.0 971112795
## 23265 160 296 5.0 971113194
## 23266 160 315 1.0 971115815
## 23267 160 316 2.0 971114356
## 23268 160 329 1.0 971115443
## 23269 160 338 1.0 971196681
## 23270 160 353 5.0 971115276
## 23271 160 356 3.0 971115856
## 23272 160 364 5.0 971619114
## 23273 160 366 1.0 971117721
## 23274 160 367 5.0 971437089
## 23275 160 368 2.0 971115356
## 23276 160 374 1.0 971619754
## 23277 160 377 3.0 971115187
## 23278 160 379 3.0 971114512
## 23279 160 420 1.0 971115791
## 23280 160 426 3.0 971196362
## 23281 160 434 3.0 971115520
## 23282 160 435 1.0 971114584
## 23283 160 442 2.0 971114546
## 23284 160 457 2.0 971115082
## 23285 160 466 4.0 971115317
## 23286 160 480 2.0 971114075
## 23287 160 485 0.5 1065984390
## 23288 160 519 1.0 971114775
## 23289 160 527 5.0 971113259
## 23290 160 533 3.0 971115659
## 23291 160 541 5.0 971113438
## 23292 160 546 3.0 971114775
## 23293 160 551 5.0 971619378
## 23294 160 587 3.0 971196506
## 23295 160 589 5.0 1065992580
## 23296 160 592 4.0 971113741
## 23297 160 593 2.0 971113259
## 23298 160 594 5.0 971619022
## 23299 160 595 3.0 971619114
## 23300 160 596 4.0 971619022
## 23301 160 608 5.0 971112675
## 23302 160 616 3.0 971619496
## 23303 160 628 1.0 971196228
## 23304 160 648 1.0 971115383
## 23305 160 653 4.0 971115443
## 23306 160 661 4.0 971619114
## 23307 160 671 1.0 971114178
## 23308 160 673 2.0 971619689
## 23309 160 718 4.0 971114356
## 23310 160 733 1.0 971115213
## 23311 160 736 1.0 971115520
## 23312 160 748 4.0 971114546
## 23313 160 778 5.0 971619994
## 23314 160 780 1.0 971114316
## 23315 160 786 1.0 971115622
## 23316 160 788 1.0 971114462
## 23317 160 798 1.0 971115686
## 23318 160 837 2.0 971619114
## 23319 160 839 4.0 991076098
## 23320 160 849 4.0 971114462
## 23321 160 858 5.0 1058456802
## 23322 160 880 3.0 971114725
## 23323 160 903 4.0 971195858
## 23324 160 904 4.0 971195858
## 23325 160 908 3.0 971112529
## 23326 160 924 5.0 971113925
## 23327 160 990 1.0 971115791
## 23328 160 991 2.0 971115869
## 23329 160 1011 1.0 971436953
## 23330 160 1019 5.0 971619022
## 23331 160 1022 5.0 971619022
## 23332 160 1028 4.0 971619022
## 23333 160 1029 3.0 971619114
## 23334 160 1032 3.0 971619114
## 23335 160 1034 1.0 971116020
## 23336 160 1035 2.0 971112839
## 23337 160 1036 2.0 971113527
## 23338 160 1037 2.0 971114607
## 23339 160 1056 3.0 993581131
## 23340 160 1059 5.0 971620157
## 23341 160 1090 5.0 971112754
## 23342 160 1092 3.0 971196267
## 23343 160 1097 3.0 971113554
## 23344 160 1100 1.0 971115593
## 23345 160 1107 3.5 1077749409
## 23346 160 1120 3.0 971620157
## 23347 160 1127 2.0 971113711
## 23348 160 1163 1.0 971113112
## 23349 160 1175 4.0 971113925
## 23350 160 1183 4.0 971112587
## 23351 160 1186 5.0 971113711
## 23352 160 1196 4.0 971113406
## 23353 160 1198 3.0 971113406
## 23354 160 1199 5.0 971113438
## 23355 160 1200 1.0 971113438
## 23356 160 1208 5.0 991075729
## 23357 160 1210 5.0 971113953
## 23358 160 1213 4.0 971113158
## 23359 160 1214 2.0 971113925
## 23360 160 1219 3.0 971195858
## 23361 160 1221 5.0 1058456805
## 23362 160 1222 4.0 971113496
## 23363 160 1225 2.0 971113406
## 23364 160 1240 4.0 971113579
## 23365 160 1242 4.0 971113438
## 23366 160 1258 2.5 1058456820
## 23367 160 1265 2.0 971115026
## 23368 160 1270 5.0 977143765
## 23369 160 1275 3.0 971436749
## 23370 160 1277 5.0 971115114
## 23371 160 1288 4.0 971113579
## 23372 160 1291 3.0 971113554
## 23373 160 1293 3.0 971113644
## 23374 160 1307 4.0 1065985257
## 23375 160 1320 5.0 971114462
## 23376 160 1321 1.0 971113779
## 23377 160 1339 5.0 976797151
## 23378 160 1347 3.0 976797624
## 23379 160 1356 2.0 971115213
## 23380 160 1370 2.0 971115276
## 23381 160 1371 2.0 971114422
## 23382 160 1372 2.0 971114286
## 23383 160 1373 2.0 971114703
## 23384 160 1374 1.0 971436496
## 23385 160 1375 2.0 971114356
## 23386 160 1376 1.0 971114178
## 23387 160 1377 3.0 971115356
## 23388 160 1382 1.0 971115791
## 23389 160 1385 1.0 975849881
## 23390 160 1387 2.0 971112754
## 23391 160 1391 4.0 971436384
## 23392 160 1393 1.0 971620081
## 23393 160 1411 5.0 971619994
## 23394 160 1438 1.0 971115791
## 23395 160 1446 4.0 971115026
## 23396 160 1483 5.0 976796790
## 23397 160 1488 1.0 971115489
## 23398 160 1499 1.0 971115791
## 23399 160 1527 3.0 971114112
## 23400 160 1552 1.0 971115520
## 23401 160 1562 1.0 976795939
## 23402 160 1573 1.0 971115213
## 23403 160 1580 2.0 971114112
## 23404 160 1584 1.0 971114112
## 23405 160 1586 1.0 971115887
## 23406 160 1587 1.0 971436749
## 23407 160 1589 3.0 971437089
## 23408 160 1590 5.0 971115593
## 23409 160 1591 2.0 971114703
## 23410 160 1597 1.0 971115356
## 23411 160 1603 1.0 971114422
## 23412 160 1610 3.0 971115082
## 23413 160 1616 1.0 971115593
## 23414 160 1620 0.5 1077748811
## 23415 160 1627 5.0 971115443
## 23416 160 1645 3.0 971196111
## 23417 160 1653 5.0 971114075
## 23418 160 1674 2.0 971113866
## 23419 160 1676 1.0 991076146
## 23420 160 1678 4.0 971620035
## 23421 160 1690 2.0 971114356
## 23422 160 1713 5.0 971619496
## 23423 160 1717 1.0 971196550
## 23424 160 1722 1.0 971115187
## 23425 160 1734 5.0 971113112
## 23426 160 1748 5.0 971114075
## 23427 160 1810 3.0 1058457100
## 23428 160 1831 1.0 981310876
## 23429 160 1845 3.5 1065985174
## 23430 160 1876 2.0 971114462
## 23431 160 1882 1.0 971114797
## 23432 160 1909 1.0 971114256
## 23433 160 1917 1.0 971196630
## 23434 160 1920 1.0 971619689
## 23435 160 1960 1.0 971113688
## 23436 160 1962 1.0 971113866
## 23437 160 1969 1.0 976797780
## 23438 160 1970 1.0 976797780
## 23439 160 1971 1.0 976797780
## 23440 160 1972 1.0 976797944
## 23441 160 1973 2.0 976798279
## 23442 160 1974 1.0 976797780
## 23443 160 1975 1.0 976797944
## 23444 160 1976 1.0 976797944
## 23445 160 1979 3.0 976798114
## 23446 160 1981 1.0 976798114
## 23447 160 1994 4.0 971113866
## 23448 160 1997 5.0 986319784
## 23449 160 2000 4.0 971116347
## 23450 160 2002 4.0 971115593
## 23451 160 2003 4.0 976797624
## 23452 160 2005 2.0 971436749
## 23453 160 2006 1.0 974494188
## 23454 160 2011 4.0 971114256
## 23455 160 2012 4.0 977143765
## 23456 160 2018 5.0 971619022
## 23457 160 2020 2.0 971113527
## 23458 160 2021 1.0 971114208
## 23459 160 2023 5.0 971115356
## 23460 160 2028 5.0 971112587
## 23461 160 2051 1.0 971436953
## 23462 160 2052 3.0 971619579
## 23463 160 2053 1.0 971114668
## 23464 160 2054 2.0 971114462
## 23465 160 2058 1.0 971115156
## 23466 160 2078 4.0 971619022
## 23467 160 2081 5.0 971619114
## 23468 160 2087 4.0 971619022
## 23469 160 2088 1.0 971436871
## 23470 160 2094 2.0 971114316
## 23471 160 2115 3.0 971436749
## 23472 160 2118 5.0 971113741
## 23473 160 2126 3.0 971115622
## 23474 160 2140 2.0 971114178
## 23475 160 2161 2.0 971436749
## 23476 160 2162 1.0 971619754
## 23477 160 2166 3.0 975668155
## 23478 160 2174 2.0 971113779
## 23479 160 2194 3.0 971113611
## 23480 160 2210 3.0 981310736
## 23481 160 2252 0.5 1065984386
## 23482 160 2253 1.0 971115791
## 23483 160 2273 1.0 974494129
## 23484 160 2313 4.0 971116332
## 23485 160 2314 5.0 974494087
## 23486 160 2324 5.0 971113296
## 23487 160 2325 4.0 991925381
## 23488 160 2329 3.0 976798849
## 23489 160 2334 1.0 975850225
## 23490 160 2340 1.0 985383314
## 23491 160 2353 1.0 971115187
## 23492 160 2363 1.0 971114178
## 23493 160 2364 1.0 971114356
## 23494 160 2367 2.0 971436953
## 23495 160 2387 5.0 971437089
## 23496 160 2396 1.0 971114950
## 23497 160 2402 1.0 976796160
## 23498 160 2404 1.0 976796160
## 23499 160 2405 2.0 971436871
## 23500 160 2408 1.0 971114703
## 23501 160 2409 3.0 976796213
## 23502 160 2410 2.0 976796213
## 23503 160 2411 1.0 976796213
## 23504 160 2412 1.0 976796213
## 23505 160 2414 3.0 971436749
## 23506 160 2422 1.0 971436871
## 23507 160 2427 5.0 976799005
## 23508 160 2428 1.0 971114356
## 23509 160 2446 2.0 975667067
## 23510 160 2450 3.0 971114725
## 23511 160 2455 4.0 971117691
## 23512 160 2456 2.0 976797780
## 23513 160 2467 3.0 971113779
## 23514 160 2470 2.0 971436749
## 23515 160 2471 1.0 971436871
## 23516 160 2529 3.0 971112754
## 23517 160 2530 1.0 971114422
## 23518 160 2531 1.0 971114668
## 23519 160 2532 1.0 971114512
## 23520 160 2533 1.0 971114256
## 23521 160 2571 4.0 971113953
## 23522 160 2583 2.0 1008678948
## 23523 160 2617 1.0 971112529
## 23524 160 2628 2.0 971114208
## 23525 160 2640 4.0 971114178
## 23526 160 2641 2.0 971436749
## 23527 160 2642 1.0 971114668
## 23528 160 2643 1.0 971436871
## 23529 160 2657 3.0 971117641
## 23530 160 2688 0.5 1058457082
## 23531 160 2699 3.0 971463110
## 23532 160 2700 1.5 1065985243
## 23533 160 2701 1.0 971114775
## 23534 160 2706 2.0 991925266
## 23535 160 2710 5.0 971463123
## 23536 160 2716 4.0 971113644
## 23537 160 2717 4.0 976795912
## 23538 160 2745 3.0 971116289
## 23539 160 2748 3.0 971436871
## 23540 160 2762 5.0 971113327
## 23541 160 2769 5.0 974493821
## 23542 160 2771 1.0 993581327
## 23543 160 2789 1.0 976797151
## 23544 160 2791 4.0 971113611
## 23545 160 2806 1.0 971196484
## 23546 160 2808 1.0 971114607
## 23547 160 2818 1.0 971115909
## 23548 160 2827 1.0 991925166
## 23549 160 2840 5.0 971436496
## 23550 160 2858 5.0 971113158
## 23551 160 2916 4.0 971114033
## 23552 160 2918 2.0 971113579
## 23553 160 2953 1.0 971619754
## 23554 160 2959 4.5 1065992795
## 23555 160 2977 2.0 991925792
## 23556 160 2985 4.0 971114256
## 23557 160 2986 3.0 971114703
## 23558 160 2987 4.0 971113688
## 23559 160 2997 5.0 971113259
## 23560 160 3005 1.0 971196612
## 23561 160 3034 4.0 971619114
## 23562 160 3067 1.0 971113866
## 23563 160 3081 5.0 976797151
## 23564 160 3082 1.0 971115383
## 23565 160 3083 5.0 971112839
## 23566 160 3087 1.0 971113866
## 23567 160 3114 2.0 971113259
## 23568 160 3147 4.0 976799220
## 23569 160 3160 4.5 1065992724
## 23570 160 3213 5.0 971619114
## 23571 160 3238 1.0 981310684
## 23572 160 3256 1.0 971196267
## 23573 160 3257 2.0 971115659
## 23574 160 3263 3.0 971117745
## 23575 160 3264 1.0 971112587
## 23576 160 3269 1.0 971114512
## 23577 160 3301 3.0 998514582
## 23578 160 3328 5.0 971117667
## 23579 160 3355 4.0 998513215
## 23580 160 3357 4.0 976796537
## 23581 160 3386 4.0 971619994
## 23582 160 3408 4.0 971117585
## 23583 160 3418 1.0 971115082
## 23584 160 3438 2.0 971619619
## 23585 160 3439 2.0 971619754
## 23586 160 3440 1.0 971619816
## 23587 160 3450 2.0 971436328
## 23588 160 3471 3.0 971113953
## 23589 160 3477 3.0 971112587
## 23590 160 3527 4.0 971113802
## 23591 160 3572 1.0 971114584
## 23592 160 3578 5.0 975850290
## 23593 160 3593 4.0 1058457011
## 23594 160 3608 1.0 971113779
## 23595 160 3616 4.0 1077749437
## 23596 160 3623 2.0 971196362
## 23597 160 3638 1.0 971114356
## 23598 160 3649 1.0 1065991722
## 23599 160 3683 5.0 971113406
## 23600 160 3697 5.0 971115593
## 23601 160 3698 4.0 971436871
## 23602 160 3701 1.0 971114256
## 23603 160 3702 1.5 1058457375
## 23604 160 3703 4.0 971113611
## 23605 160 3704 4.0 971114286
## 23606 160 3745 2.5 1065991630
## 23607 160 3751 5.0 977143717
## 23608 160 3785 5.0 974494268
## 23609 160 3793 1.0 971114075
## 23610 160 3825 0.5 1077749012
## 23611 160 3826 1.0 998513585
## 23612 160 3858 5.0 991925887
## 23613 160 3864 1.0 971114703
## 23614 160 3868 4.0 971112754
## 23615 160 3869 3.0 971117781
## 23616 160 3877 2.0 971436871
## 23617 160 3893 3.0 1058457467
## 23618 160 3910 5.0 974493821
## 23619 160 3948 4.5 1065985297
## 23620 160 3981 1.5 1065992238
## 23621 160 3986 0.5 1065992767
## 23622 160 3994 4.0 1065992076
## 23623 160 3996 5.0 990188238
## 23624 160 4011 4.5 1065991604
## 23625 160 4021 5.0 998513052
## 23626 160 4033 5.0 1003332852
## 23627 160 4034 5.0 985383250
## 23628 160 4055 5.0 1003333005
## 23629 160 4148 2.0 1008678599
## 23630 160 4223 3.0 987187306
## 23631 160 4228 1.0 1003333287
## 23632 160 4246 4.0 1058457517
## 23633 160 4306 4.0 1003333307
## 23634 160 4343 2.0 1065992278
## 23635 160 4367 1.0 998514493
## 23636 160 4370 4.0 1065992012
## 23637 160 4381 5.0 998514430
## 23638 160 4450 5.0 1065983846
## 23639 160 4638 0.5 1065992214
## 23640 160 4643 0.5 1065992210
## 23641 160 4735 4.5 1065992184
## 23642 160 4792 2.5 1058456638
## 23643 160 4866 2.0 1077750008
## 23644 160 4887 0.5 1065992285
## 23645 160 4979 4.5 1058456459
## 23646 160 4993 2.0 1058457619
## 23647 160 5219 2.0 1065992115
## 23648 160 5349 0.5 1058456918
## 23649 160 5445 4.5 1065992004
## 23650 160 5459 1.5 1065992218
## 23651 160 5502 4.0 1065992029
## 23652 160 5903 3.0 1065991969
## 23653 160 5952 1.5 1058457627
## 23654 160 5991 5.0 1058457539
## 23655 160 5992 5.0 1058454745
## 23656 160 6250 2.0 1058457318
## 23657 160 6319 1.0 1065984412
## 23658 160 6322 1.0 1065991838
## 23659 160 6365 2.0 1058454547
## 23660 160 6537 2.0 1065992023
## 23661 160 6538 3.0 1058456896
## 23662 160 6591 5.0 1065983795
## 23663 160 7153 5.0 1077748466
## 23664 161 1 4.0 1176751765
## 23665 161 48 4.0 1176498494
## 23666 161 252 4.0 1176498559
## 23667 161 318 5.0 1176751745
## 23668 161 380 3.5 1176751773
## 23669 161 596 3.5 1176498540
## 23670 161 745 5.0 1186073240
## 23671 161 899 4.5 1176498953
## 23672 161 1019 3.0 1176498702
## 23673 161 1022 3.0 1176498609
## 23674 161 1093 4.0 1176498673
## 23675 161 1148 5.0 1186073273
## 23676 161 1223 5.0 1186073276
## 23677 161 1234 4.0 1176498505
## 23678 161 1289 4.5 1176746778
## 23679 161 1965 2.5 1176498726
## 23680 161 2018 3.5 1176498704
## 23681 161 2080 3.5 1176498595
## 23682 161 2135 5.0 1176746406
## 23683 161 2140 3.0 1176498669
## 23684 161 2144 2.0 1176498658
## 23685 161 2336 3.0 1176498590
## 23686 161 2424 3.0 1176498582
## 23687 161 2617 4.0 1176746702
## 23688 161 3396 3.5 1176498711
## 23689 161 3429 5.0 1186073278
## 23690 161 3481 4.0 1176746443
## 23691 161 3751 5.0 1186073290
## 23692 161 4002 0.5 1176498716
## 23693 161 4270 4.0 1176746708
## 23694 161 4571 5.0 1176746340
## 23695 161 4980 5.0 1176746342
## 23696 161 4995 3.0 1176498512
## 23697 161 5643 4.5 1176746775
## 23698 161 7247 5.0 1176746376
## 23699 161 38038 5.0 1186073284
## 23700 161 45732 0.5 1176746495
## 23701 161 47610 4.0 1176746738
## 23702 161 52287 4.0 1176498804
## 23703 162 4 3.0 836684306
## 23704 162 16 5.0 836511416
## 23705 162 17 5.0 836510953
## 23706 162 31 4.0 836511596
## 23707 162 36 5.0 836511416
## 23708 162 50 4.0 836511263
## 23709 162 62 5.0 836510953
## 23710 162 145 5.0 836511477
## 23711 162 150 4.0 836488864
## 23712 162 153 4.0 836511231
## 23713 162 168 3.0 836511364
## 23714 162 207 3.0 836684249
## 23715 162 224 4.0 836511595
## 23716 162 225 3.0 836511263
## 23717 162 261 5.0 836511337
## 23718 162 266 4.0 836511289
## 23719 162 272 5.0 836511416
## 23720 162 277 5.0 836511595
## 23721 162 280 5.0 836684249
## 23722 162 292 4.0 836511233
## 23723 162 296 3.0 836488867
## 23724 162 300 3.0 836511263
## 23725 162 318 5.0 836511232
## 23726 162 337 3.0 836511309
## 23727 162 356 5.0 836511289
## 23728 162 371 3.0 836684306
## 23729 162 381 5.0 836511478
## 23730 162 508 5.0 836511477
## 23731 162 509 4.0 836511364
## 23732 162 515 5.0 836511478
## 23733 162 527 5.0 836511337
## 23734 162 534 5.0 836684340
## 23735 162 587 3.0 836511364
## 23736 162 590 4.0 836488863
## 23737 162 592 4.0 836488862
## 23738 162 608 5.0 836511478
## 23739 162 783 4.0 836510991
## 23740 162 802 5.0 836600689
## 23741 163 1407 3.0 894217532
## 23742 163 1485 3.0 894217532
## 23743 163 1515 3.0 894217532
## 23744 163 1588 4.0 894217570
## 23745 163 1608 4.0 894217570
## 23746 163 1614 3.0 894217532
## 23747 163 1617 3.0 894217532
## 23748 163 1625 4.0 894217570
## 23749 163 1639 3.0 894217532
## 23750 163 1676 3.0 894217532
## 23751 163 1704 4.0 894217570
## 23752 163 1717 3.0 894217532
## 23753 163 1721 3.0 894217532
## 23754 163 1722 2.0 894217548
## 23755 163 1726 2.0 894217548
## 23756 163 1747 3.0 894217570
## 23757 163 1777 3.0 894217570
## 23758 163 1784 4.0 894217570
## 23759 163 1805 2.0 894217548
## 23760 163 1810 3.0 894217570
## 23761 163 1821 3.0 894217570
## 23762 163 1835 2.0 894217548
## 23763 163 1837 2.0 894217532
## 23764 164 110 5.0 999708154
## 23765 164 480 5.0 999708209
## 23766 164 589 5.0 999708174
## 23767 164 592 3.0 999708325
## 23768 164 780 5.0 999708378
## 23769 164 1036 5.0 999708195
## 23770 164 1047 4.0 999708378
## 23771 164 1097 5.0 999707976
## 23772 164 1101 5.0 999708257
## 23773 164 1196 4.0 999708174
## 23774 164 1198 5.0 999708154
## 23775 164 1200 5.0 999708195
## 23776 164 1201 5.0 999708209
## 23777 164 1210 4.0 999708029
## 23778 164 1240 5.0 999708195
## 23779 164 1291 5.0 999708174
## 23780 164 1356 4.0 999708293
## 23781 164 1527 3.0 999708293
## 23782 164 1573 3.0 999708325
## 23783 164 1580 5.0 999708390
## 23784 164 1587 3.0 999708350
## 23785 164 1923 3.0 999707976
## 23786 164 2053 3.0 999708009
## 23787 164 2115 4.0 999708378
## 23788 164 2167 3.0 999708337
## 23789 164 2640 4.0 999708378
## 23790 164 2916 3.0 999708390
## 23791 164 3404 5.0 999708378
## 23792 164 3527 5.0 999708257
## 23793 164 3578 5.0 999708257
## 23794 164 3639 5.0 999708378
## 23795 164 3654 5.0 999708174
## 23796 164 3793 3.0 999708009
## 23797 164 3996 4.0 999708085
## 23798 164 4023 3.0 999708085
## 23799 164 4440 5.0 999708209
## 23800 165 110 4.0 1046741213
## 23801 165 249 4.0 1046741234
## 23802 165 368 4.0 1046742038
## 23803 165 377 4.0 1046741949
## 23804 165 441 3.0 1046741288
## 23805 165 480 4.0 1046741972
## 23806 165 592 4.0 1046741972
## 23807 165 858 3.0 1046741758
## 23808 165 908 4.0 1046741248
## 23809 165 1127 4.0 1046741949
## 23810 165 1196 4.0 1046741873
## 23811 165 1197 5.0 1046741873
## 23812 165 1198 5.0 1046741758
## 23813 165 1210 3.0 1046741234
## 23814 165 1221 3.0 1046741758
## 23815 165 1291 5.0 1046741888
## 23816 165 1304 3.0 1046741758
## 23817 165 1573 3.0 1046741213
## 23818 165 2019 4.0 1046741833
## 23819 165 2028 3.0 1046741758
## 23820 165 2194 4.0 1046741930
## 23821 165 2353 4.0 1046742038
## 23822 165 2422 2.0 1046741288
## 23823 165 2571 4.0 1046741873
## 23824 165 2617 3.0 1046741288
## 23825 165 2692 3.0 1046741833
## 23826 165 3256 4.0 1046742010
## 23827 165 3409 3.0 1046741234
## 23828 165 3624 3.0 1046742010
## 23829 165 3996 4.0 1046741833
## 23830 165 4085 4.0 1046741972
## 23831 165 4351 3.0 1046741288
## 23832 165 4963 5.0 1046741972
## 23833 165 5066 3.0 1046741248
## 23834 165 5218 4.0 1046741394
## 23835 165 5299 3.0 1046741356
## 23836 165 5377 4.0 1046741356
## 23837 165 5415 3.0 1046741213
## 23838 165 5418 4.0 1046741356
## 23839 165 5444 4.0 1046741372
## 23840 165 5445 4.0 1046741616
## 23841 165 5450 3.0 1046741394
## 23842 165 5464 3.0 1046741356
## 23843 165 5466 5.0 1046741411
## 23844 165 5481 3.0 1046741422
## 23845 165 5485 3.0 1046741629
## 23846 165 5502 4.0 1046741616
## 23847 165 5505 3.0 1046741616
## 23848 165 5527 3.0 1046741356
## 23849 165 5528 3.0 1046741616
## 23850 165 5530 2.0 1046741411
## 23851 165 5577 3.0 1046741372
## 23852 165 5620 3.0 1046741655
## 23853 165 5872 3.0 1046742010
## 23854 165 5881 3.0 1046741509
## 23855 165 5902 4.0 1046741509
## 23856 165 5945 3.0 1046741509
## 23857 165 5952 5.0 1046741479
## 23858 165 5954 3.0 1046741479
## 23859 165 5956 3.0 1046741521
## 23860 165 5959 3.0 1046741509
## 23861 165 5989 4.0 1046741479
## 23862 165 5991 4.0 1046741509
## 23863 165 5993 2.0 1046741544
## 23864 165 6188 4.0 1046741544
## 23865 166 1 5.0 1189980529
## 23866 166 6 3.5 1190828796
## 23867 166 10 4.5 1190827465
## 23868 166 17 4.0 1190828781
## 23869 166 32 4.0 1189038252
## 23870 166 47 4.0 1188774624
## 23871 166 50 5.0 1188774404
## 23872 166 153 2.5 1189037942
## 23873 166 260 4.5 1188926253
## 23874 166 293 4.5 1188774465
## 23875 166 296 4.5 1188774591
## 23876 166 318 4.5 1188774402
## 23877 166 349 3.5 1190828503
## 23878 166 353 4.0 1189037866
## 23879 166 356 4.0 1190828745
## 23880 166 367 3.5 1189037900
## 23881 166 377 3.0 1190827458
## 23882 166 434 2.0 1190828692
## 23883 166 457 3.5 1190828706
## 23884 166 520 3.5 1188773623
## 23885 166 527 4.5 1188926239
## 23886 166 588 5.0 1190827475
## 23887 166 592 3.5 1189037864
## 23888 166 593 4.0 1188774626
## 23889 166 597 3.5 1190828637
## 23890 166 608 4.5 1189038623
## 23891 166 648 3.0 1190828622
## 23892 166 778 4.0 1189038614
## 23893 166 839 3.0 1189037948
## 23894 166 858 4.5 1188921618
## 23895 166 904 3.5 1188921640
## 23896 166 923 4.5 1189038377
## 23897 166 1036 4.0 1190828734
## 23898 166 1089 4.0 1188774622
## 23899 166 1097 4.0 1190828509
## 23900 166 1193 4.0 1188926309
## 23901 166 1196 4.5 1188924422
## 23902 166 1197 4.5 1189038549
## 23903 166 1198 4.5 1188926513
## 23904 166 1206 4.0 1189038528
## 23905 166 1210 5.0 1188926273
## 23906 166 1214 4.0 1189038370
## 23907 166 1221 4.5 1188921623
## 23908 166 1222 3.5 1188921668
## 23909 166 1225 4.5 1189038516
## 23910 166 1234 4.0 1188773625
## 23911 166 1240 3.0 1190828696
## 23912 166 1245 4.5 1188924970
## 23913 166 1247 4.0 1189038282
## 23914 166 1249 4.5 1188774654
## 23915 166 1258 4.0 1189038553
## 23916 166 1263 3.0 1188774095
## 23917 166 1265 4.0 1190828662
## 23918 166 1276 4.5 1189038714
## 23919 166 1291 4.5 1189038506
## 23920 166 1377 3.5 1189037883
## 23921 166 1466 4.0 1188924940
## 23922 166 1500 5.0 1188774658
## 23923 166 1517 3.5 1190828732
## 23924 166 1562 2.5 1189037973
## 23925 166 1580 4.0 1189038002
## 23926 166 1584 3.5 1190828751
## 23927 166 1617 4.5 1188774620
## 23928 166 1682 5.0 1189038119
## 23929 166 1704 4.5 1190828708
## 23930 166 1721 3.0 1190828666
## 23931 166 1784 3.5 1188774078
## 23932 166 1961 4.0 1190827471
## 23933 166 1968 2.5 1190828700
## 23934 166 2028 4.5 1189038178
## 23935 166 2115 4.0 1190828670
## 23936 166 2167 4.0 1189037884
## 23937 166 2324 4.5 1189038292
## 23938 166 2329 5.0 1188773610
## 23939 166 2353 4.0 1188773619
## 23940 166 2396 3.5 1189980535
## 23941 166 2542 3.5 1189038293
## 23942 166 2571 4.0 1188774339
## 23943 166 2628 3.5 1188926268
## 23944 166 2710 2.5 1190828620
## 23945 166 2716 3.5 1190828633
## 23946 166 2762 4.0 1189038270
## 23947 166 2858 4.0 1188774585
## 23948 166 2918 3.5 1190828624
## 23949 166 2947 4.0 1189038129
## 23950 166 2951 4.5 1190682655
## 23951 166 2959 4.5 1188774339
## 23952 166 2987 3.5 1190828791
## 23953 166 2997 4.5 1189038196
## 23954 166 3000 5.0 1189038604
## 23955 166 3052 3.5 1188773616
## 23956 166 3114 4.5 1189038117
## 23957 166 3147 4.0 1190828738
## 23958 166 3160 4.0 1188774033
## 23959 166 3213 4.5 1189037992
## 23960 166 3438 3.5 1189038031
## 23961 166 3439 3.5 1189038044
## 23962 166 3440 3.0 1189038046
## 23963 166 3468 4.5 1189038731
## 23964 166 3481 4.0 1188774117
## 23965 166 3563 2.5 1189038035
## 23966 166 3578 3.5 1190827473
## 23967 166 3623 3.5 1190827467
## 23968 166 3681 4.0 1190826717
## 23969 166 3793 3.5 1189037862
## 23970 166 3897 3.5 1190827460
## 23971 166 3949 4.0 1188921662
## 23972 166 4011 4.5 1189038425
## 23973 166 4022 4.0 1190828522
## 23974 166 4027 4.5 1190828513
## 23975 166 4226 5.0 1188774408
## 23976 166 4306 4.5 1189980543
## 23977 166 4865 4.0 1189037876
## 23978 166 4878 4.0 1188774610
## 23979 166 4886 4.0 1189980526
## 23980 166 4963 4.5 1190827463
## 23981 166 4973 5.0 1188774462
## 23982 166 4993 3.5 1188774575
## 23983 166 5219 4.0 1190826770
## 23984 166 5254 3.5 1189037889
## 23985 166 5349 4.5 1189037860
## 23986 166 5378 3.0 1188926266
## 23987 166 5418 4.5 1190827456
## 23988 166 5445 4.0 1189980538
## 23989 166 5464 4.0 1189037853
## 23990 166 5618 4.5 1188774593
## 23991 166 5673 4.5 1188774055
## 23992 166 5690 5.0 1188774618
## 23993 166 5952 4.5 1188774589
## 23994 166 5989 4.0 1190828617
## 23995 166 6157 2.5 1189037950
## 23996 166 6333 4.5 1189037850
## 23997 166 6377 4.5 1190828655
## 23998 166 6378 3.5 1190828793
## 23999 166 6502 4.5 1188774299
## 24000 166 6534 3.0 1189037954
## 24001 166 6711 5.0 1189980536
## 24002 166 6874 4.5 1189980540
## 24003 166 6942 4.5 1188925104
## 24004 166 7090 4.5 1188774267
## 24005 166 7132 4.5 1189038577
## 24006 166 7143 4.5 1190828657
## 24007 166 7153 5.0 1188774339
## 24008 166 7361 5.0 1188774024
## 24009 166 7373 4.0 1189037897
## 24010 166 7438 4.5 1190828627
## 24011 166 8360 4.0 1190828512
## 24012 166 8464 3.5 1190828785
## 24013 166 8636 5.0 1189037855
## 24014 166 8665 5.0 1190828516
## 24015 166 8784 5.0 1190828746
## 24016 166 8798 5.0 1188774246
## 24017 166 8950 4.0 1189038295
## 24018 166 8961 4.5 1188774344
## 24019 166 26662 5.0 1189038287
## 24020 166 30749 4.0 1188774441
## 24021 166 31696 4.0 1189037892
## 24022 166 32587 5.0 1189037833
## 24023 166 33166 5.0 1188774239
## 24024 166 33493 4.0 1188926260
## 24025 166 33794 5.0 1188774085
## 24026 166 34150 3.5 1189037895
## 24027 166 34162 4.0 1188774065
## 24028 166 35836 4.0 1190828778
## 24029 166 37733 4.5 1189037770
## 24030 166 39292 4.0 1189038217
## 24031 166 41569 3.5 1190828749
## 24032 166 44191 4.5 1189037835
## 24033 166 45499 4.5 1189037941
## 24034 166 46530 5.0 1189037932
## 24035 166 46578 4.0 1189038698
## 24036 166 46976 4.5 1188774629
## 24037 166 47644 4.0 1188774165
## 24038 166 47999 4.5 1189038568
## 24039 166 48394 3.0 1188774105
## 24040 166 48516 5.0 1188774406
## 24041 166 48774 4.5 1189038374
## 24042 166 48780 2.5 1188774459
## 24043 166 49272 5.0 1188774291
## 24044 166 49530 4.0 1189038524
## 24045 166 51080 4.5 1189038234
## 24046 166 51086 3.0 1189037759
## 24047 166 51255 3.5 1189038769
## 24048 166 51662 4.0 1188773972
## 24049 166 51935 4.5 1188774042
## 24050 166 54001 4.5 1188774138
## 24051 166 54272 4.0 1189980487
## 24052 166 54286 5.0 1188774329
## 24053 166 54997 4.5 1189980470
## 24054 166 55232 3.5 1190826774
## 24055 167 1 3.5 1154721923
## 24056 167 39 2.0 1154723333
## 24057 167 69 2.5 1154719322
## 24058 167 104 4.0 1154718729
## 24059 167 110 3.5 1154721971
## 24060 167 150 4.0 1154722124
## 24061 167 173 2.5 1154718768
## 24062 167 180 4.0 1154721550
## 24063 167 185 1.5 1154718963
## 24064 167 223 5.0 1154721696
## 24065 167 260 4.0 1154721952
## 24066 167 296 3.0 1154723095
## 24067 167 318 5.0 1154722100
## 24068 167 327 3.0 1154719306
## 24069 167 353 5.0 1154718746
## 24070 167 356 3.0 1154721979
## 24071 167 432 2.0 1154719066
## 24072 167 442 1.5 1154719061
## 24073 167 480 3.5 1154722006
## 24074 167 514 3.5 1154721640
## 24075 167 539 3.0 1154722932
## 24076 167 541 3.5 1154723110
## 24077 167 551 3.0 1154718701
## 24078 167 586 1.0 1154723360
## 24079 167 588 3.0 1154721960
## 24080 167 592 3.0 1154721571
## 24081 167 593 2.5 1154723087
## 24082 167 594 3.0 1154723252
## 24083 167 595 3.5 1154723174
## 24084 167 608 3.0 1154723159
## 24085 167 671 4.0 1154721897
## 24086 167 720 4.0 1177516044
## 24087 167 733 3.5 1154718955
## 24088 167 745 5.0 1177516032
## 24089 167 750 2.0 1154718691
## 24090 167 778 4.5 1154722276
## 24091 167 784 0.5 1154718778
## 24092 167 839 1.5 1154719285
## 24093 167 924 1.0 1154723239
## 24094 167 1021 2.5 1154722228
## 24095 167 1073 4.5 1154721884
## 24096 167 1080 3.5 1154718733
## 24097 167 1120 3.0 1154719045
## 24098 167 1136 4.0 1154722973
## 24099 167 1148 5.0 1154723076
## 24100 167 1196 4.5 1154721847
## 24101 167 1197 4.5 1154721881
## 24102 167 1198 4.0 1177516040
## 24103 167 1200 1.5 1154722044
## 24104 167 1210 4.0 1154721662
## 24105 167 1214 2.0 1154723102
## 24106 167 1215 5.0 1154721694
## 24107 167 1220 4.5 1154718683
## 24108 167 1234 3.5 1154723107
## 24109 167 1257 3.0 1154721684
## 24110 167 1265 3.0 1154721985
## 24111 167 1278 4.0 1154718813
## 24112 167 1291 4.5 1177515984
## 24113 167 1307 3.0 1154723169
## 24114 167 1380 0.5 1154718782
## 24115 167 1385 2.0 1154719268
## 24116 167 1396 3.5 1154721626
## 24117 167 1500 3.5 1154722979
## 24118 167 1527 5.0 1154719029
## 24119 167 1580 3.5 1154721789
## 24120 167 1639 4.0 1154719025
## 24121 167 1663 3.5 1154719249
## 24122 167 1682 3.0 1154719017
## 24123 167 1732 4.0 1154723140
## 24124 167 1748 4.5 1154723009
## 24125 167 1917 1.0 1154718679
## 24126 167 1967 4.5 1154721690
## 24127 167 2028 3.5 1154722138
## 24128 167 2054 3.0 1154718763
## 24129 167 2083 4.5 1154721879
## 24130 167 2105 3.0 1154723262
## 24131 167 2139 3.0 1154721825
## 24132 167 2140 4.0 1154721736
## 24133 167 2174 3.0 1154718711
## 24134 167 2231 4.5 1154719235
## 24135 167 2371 3.0 1154719218
## 24136 167 2413 4.0 1154721588
## 24137 167 2420 3.0 1154723351
## 24138 167 2447 1.5 1154719205
## 24139 167 2471 2.5 1154719196
## 24140 167 2502 5.0 1154722970
## 24141 167 2657 3.0 1154723337
## 24142 167 2710 1.0 1154718719
## 24143 167 2762 3.0 1154721918
## 24144 167 2791 4.0 1154723124
## 24145 167 2797 3.0 1154723286
## 24146 167 2858 3.0 1154722268
## 24147 167 3052 5.0 1154723017
## 24148 167 3087 4.0 1154721654
## 24149 167 3114 3.0 1154722066
## 24150 167 3175 3.5 1154722003
## 24151 167 3210 2.5 1154722287
## 24152 167 3275 4.5 1154721556
## 24153 167 3396 4.5 1154719157
## 24154 167 3397 4.0 1154721866
## 24155 167 3408 3.5 1154718990
## 24156 167 3421 3.0 1154723081
## 24157 167 3552 4.0 1154721726
## 24158 167 3671 3.5 1154721946
## 24159 167 3751 5.0 1154722027
## 24160 167 3793 5.0 1154721538
## 24161 167 4006 3.5 1154719406
## 24162 167 4011 5.0 1154721700
## 24163 167 4016 4.0 1154721761
## 24164 167 4022 3.0 1154722084
## 24165 167 4306 4.5 1154721715
## 24166 167 4333 3.0 1154719393
## 24167 167 4351 3.0 1154719121
## 24168 167 4369 1.0 1154719118
## 24169 167 4447 0.5 1154719114
## 24170 167 4489 3.5 1154721599
## 24171 167 4623 3.0 1154721601
## 24172 167 4678 4.0 1154721870
## 24173 167 4878 3.0 1154718976
## 24174 167 4886 4.5 1154721834
## 24175 167 4896 4.5 1154721786
## 24176 167 4963 4.5 1154721622
## 24177 167 4980 3.0 1154719107
## 24178 167 4993 5.0 1154721752
## 24179 167 5014 4.5 1154719384
## 24180 167 5103 3.0 1154721668
## 24181 167 5146 4.0 1154721893
## 24182 167 5218 4.0 1154721901
## 24183 167 5349 4.0 1154721636
## 24184 167 5418 4.5 1154721766
## 24185 167 5464 3.5 1154719103
## 24186 167 5650 4.5 1154722538
## 24187 167 5816 4.5 1154721707
## 24188 167 5952 4.5 1154721758
## 24189 167 5991 3.5 1154723191
## 24190 167 6283 5.0 1154721982
## 24191 167 6333 4.5 1154718969
## 24192 167 6377 3.5 1154721906
## 24193 167 6480 3.0 1154722483
## 24194 167 6539 4.5 1154721595
## 24195 167 6754 3.5 1154722359
## 24196 167 6773 3.0 1154719365
## 24197 167 6857 4.0 1154721584
## 24198 167 6863 2.0 1154721782
## 24199 167 7147 4.5 1154723586
## 24200 167 7153 4.5 1154718806
## 24201 167 7247 2.5 1154722492
## 24202 167 7842 5.0 1154721942
## 24203 167 8360 4.0 1154721836
## 24204 167 8368 4.5 1154719092
## 24205 167 8376 4.0 1154719089
## 24206 167 8604 3.0 1154721722
## 24207 167 8636 4.0 1154721630
## 24208 167 8665 3.5 1154721794
## 24209 167 8874 4.5 1154721840
## 24210 167 8961 4.5 1154721891
## 24211 167 8984 0.5 1154719347
## 24212 167 30793 2.5 1154719342
## 24213 167 31685 3.5 1154719339
## 24214 167 33493 2.0 1154721732
## 24215 167 33794 5.0 1154719082
## 24216 167 34405 5.0 1154721565
## 24217 167 35836 1.5 1154722262
## 24218 167 36529 1.0 1154719336
## 24219 167 38038 5.0 1154719331
## 24220 167 40815 4.5 1154721607
## 24221 167 41566 4.0 1154719328
## 24222 167 42738 2.5 1154722362
## 24223 167 44191 4.5 1154718915
## 24224 167 45501 1.0 1154723676
## 24225 167 45517 3.5 1154721561
## 24226 167 45722 3.5 1154721497
## 24227 167 47122 1.0 1154723703
## 24228 168 111 4.5 1306801971
## 24229 168 196 0.5 1306793344
## 24230 168 265 4.5 1306793369
## 24231 168 296 4.5 1306802051
## 24232 168 342 4.0 1306793520
## 24233 168 356 4.0 1306806571
## 24234 168 543 2.0 1306793350
## 24235 168 596 4.5 1306793334
## 24236 168 608 5.0 1306801670
## 24237 168 745 4.5 1306802059
## 24238 168 750 5.0 1306801677
## 24239 168 805 4.0 1306793450
## 24240 168 858 5.0 1306801724
## 24241 168 903 4.5 1306793315
## 24242 168 908 5.0 1306802820
## 24243 168 912 4.5 1306802375
## 24244 168 913 4.5 1306802817
## 24245 168 923 5.0 1306801900
## 24246 168 953 4.5 1306793289
## 24247 168 1086 5.0 1306801729
## 24248 168 1089 5.0 1306802560
## 24249 168 1148 4.5 1306801690
## 24250 168 1172 5.0 1306801666
## 24251 168 1193 4.5 1306801716
## 24252 168 1201 5.0 1306801930
## 24253 168 1203 5.0 1306801599
## 24254 168 1207 5.0 1306801608
## 24255 168 1208 5.0 1306801984
## 24256 168 1209 4.5 1306802855
## 24257 168 1212 5.0 1306802055
## 24258 168 1213 5.0 1306802015
## 24259 168 1219 4.0 1306801603
## 24260 168 1221 5.0 1306801827
## 24261 168 1222 4.5 1306802554
## 24262 168 1225 4.5 1306801804
## 24263 168 1233 4.5 1306801988
## 24264 168 1244 4.5 1306802199
## 24265 168 1247 5.0 1306802167
## 24266 168 1248 5.0 1306802369
## 24267 168 1252 5.0 1306801889
## 24268 168 1262 4.5 1306802582
## 24269 168 1263 5.0 1306801999
## 24270 168 1269 4.5 1306801673
## 24271 168 1276 4.5 1306802427
## 24272 168 1302 4.0 1306793396
## 24273 168 1304 4.5 1306802184
## 24274 168 1375 2.0 1306793541
## 24275 168 1376 2.0 1306793293
## 24276 168 1617 4.5 1306802586
## 24277 168 1729 4.5 1306793536
## 24278 168 1927 4.5 1306802074
## 24279 168 1950 5.0 1306801791
## 24280 168 2019 4.5 1306801959
## 24281 168 2076 4.5 1306806642
## 24282 168 2657 4.5 1306793285
## 24283 168 2858 5.0 1306801883
## 24284 168 2890 4.5 1306793383
## 24285 168 2997 4.5 1306802080
## 24286 168 3030 5.0 1306802137
## 24287 168 3101 3.0 1306793401
## 24288 168 3152 5.0 1306802028
## 24289 168 3334 4.5 1306801922
## 24290 168 3362 4.5 1306801653
## 24291 168 3363 4.5 1306802285
## 24292 168 3462 4.0 1306801950
## 24293 168 3543 4.5 1306802277
## 24294 168 3681 5.0 1306802012
## 24295 168 3730 4.5 1306806629
## 24296 168 3788 4.0 1306806646
## 24297 168 4406 5.0 1306802534
## 24298 168 4973 3.5 1306801658
## 24299 168 5291 5.0 1306802788
## 24300 168 6016 4.5 1306801996
## 24301 168 6662 4.0 1306802295
## 24302 168 7156 4.5 1306802435
## 24303 168 7256 5.0 1306801879
## 24304 168 7333 4.5 1306802841
## 24305 168 7934 4.5 1306802281
## 24306 168 8128 4.5 1306801818
## 24307 168 8228 5.0 1306801942
## 24308 168 8949 5.0 1306802218
## 24309 168 26078 5.0 1306802421
## 24310 168 26131 4.5 1306802342
## 24311 168 30749 4.0 1306801618
## 24312 168 33564 5.0 1306802157
## 24313 168 44555 5.0 1306801838
## 24314 168 48738 4.5 1306801919
## 24315 168 55820 4.5 1306802532
## 24316 168 57669 4.0 1306802023
## 24317 168 68157 5.0 1306801912
## 24318 168 71033 4.5 1306806626
## 24319 168 80463 3.5 1306802570
## 24320 168 85354 4.5 1306801946
## 24321 168 85881 4.5 1306793843
## 24322 169 1 4.5 1059427918
## 24323 169 2 4.0 1078284713
## 24324 169 3 5.0 1078284750
## 24325 169 5 5.0 1078284788
## 24326 169 7 4.5 1078284741
## 24327 169 11 4.0 1059427956
## 24328 169 34 4.0 1059427862
## 24329 169 39 3.5 1059428140
## 24330 169 48 3.5 1059427123
## 24331 169 60 4.0 1078285375
## 24332 169 62 5.0 1078284604
## 24333 169 73 4.0 1070250173
## 24334 169 104 5.0 1078284796
## 24335 169 150 4.5 1078284469
## 24336 169 185 4.0 1078284569
## 24337 169 208 3.5 1078284590
## 24338 169 216 3.5 1059427285
## 24339 169 231 4.5 1078284543
## 24340 169 277 4.5 1059427194
## 24341 169 317 5.0 1078284717
## 24342 169 318 5.0 1078284475
## 24343 169 333 4.5 1078284981
## 24344 169 339 4.0 1059428034
## 24345 169 344 3.5 1078284505
## 24346 169 356 4.5 1059427994
## 24347 169 364 4.5 1059427520
## 24348 169 377 4.5 1078284500
## 24349 169 440 4.0 1059428074
## 24350 169 455 3.5 1078285276
## 24351 169 457 4.0 1078284464
## 24352 169 480 4.0 1078284462
## 24353 169 500 5.0 1078284556
## 24354 169 524 5.0 1070251128
## 24355 169 527 5.0 1078284493
## 24356 169 539 4.5 1059427970
## 24357 169 585 3.0 1078285078
## 24358 169 586 5.0 1078284644
## 24359 169 588 5.0 1059427530
## 24360 169 594 4.5 1070250167
## 24361 169 595 5.0 1059427515
## 24362 169 597 4.0 1059427973
## 24363 169 631 3.0 1059427814
## 24364 169 637 4.5 1078285271
## 24365 169 661 4.0 1059427138
## 24366 169 719 4.0 1078285146
## 24367 169 736 4.0 1078284514
## 24368 169 783 4.0 1059427166
## 24369 169 788 4.5 1078284676
## 24370 169 852 4.5 1078284897
## 24371 169 899 5.0 1059427559
## 24372 169 914 5.0 1059427248
## 24373 169 918 4.0 1070250186
## 24374 169 919 5.0 1078284334
## 24375 169 934 5.0 1059428008
## 24376 169 953 5.0 1059427133
## 24377 169 1022 4.0 1059427297
## 24378 169 1028 5.0 1059427087
## 24379 169 1030 3.5 1059427794
## 24380 169 1035 5.0 1059427524
## 24381 169 1042 4.5 1059427234
## 24382 169 1073 5.0 1059427936
## 24383 169 1080 3.0 1070251218
## 24384 169 1083 4.0 1059427635
## 24385 169 1088 4.5 1059427717
## 24386 169 1097 4.0 1078284561
## 24387 169 1136 5.0 1059427872
## 24388 169 1197 4.0 1059428056
## 24389 169 1220 4.0 1059427628
## 24390 169 1246 5.0 1078284867
## 24391 169 1265 4.0 1059428232
## 24392 169 1270 4.0 1059428025
## 24393 169 1282 4.0 1059427601
## 24394 169 1288 4.0 1070250262
## 24395 169 1302 4.5 1078285055
## 24396 169 1307 4.0 1059428049
## 24397 169 1345 3.5 1078285348
## 24398 169 1367 3.0 1059427276
## 24399 169 1380 4.5 1059427692
## 24400 169 1381 3.0 1059427837
## 24401 169 1393 5.0 1078284681
## 24402 169 1407 4.0 1078284845
## 24403 169 1416 4.0 1070250325
## 24404 169 1487 4.0 1059427720
## 24405 169 1517 4.0 1059426977
## 24406 169 1569 4.5 1078285130
## 24407 169 1580 3.5 1059428179
## 24408 169 1663 4.0 1078285367
## 24409 169 1682 5.0 1078284875
## 24410 169 1721 5.0 1078284611
## 24411 169 1777 4.0 1059428128
## 24412 169 1911 4.0 1078285470
## 24413 169 1923 4.0 1078284776
## 24414 169 1947 5.0 1078285264
## 24415 169 1961 4.5 1078284723
## 24416 169 1962 4.5 1078285345
## 24417 169 1967 3.5 1078285453
## 24418 169 2011 4.5 1078284889
## 24419 169 2012 4.5 1078284904
## 24420 169 2017 4.0 1059427791
## 24421 169 2028 5.0 1078284565
## 24422 169 2054 3.0 1059427157
## 24423 169 2058 4.5 1078285260
## 24424 169 2081 4.0 1059427659
## 24425 169 2084 4.5 1059427772
## 24426 169 2087 4.5 1070250182
## 24427 169 2321 4.5 1059428195
## 24428 169 2394 4.5 1059427669
## 24429 169 2501 5.0 1085699728
## 24430 169 2502 5.0 1078285093
## 24431 169 2565 4.5 1070250144
## 24432 169 2571 4.5 1078284597
## 24433 169 2581 4.5 1078285431
## 24434 169 2617 3.0 1079310582
## 24435 169 2628 4.0 1059428780
## 24436 169 2683 5.0 1078284762
## 24437 169 2706 5.0 1078284800
## 24438 169 2710 4.0 1078284804
## 24439 169 2724 4.5 1078285308
## 24440 169 2762 4.0 1078284640
## 24441 169 2791 4.5 1059428199
## 24442 169 2792 5.0 1079310759
## 24443 169 2795 4.5 1059428155
## 24444 169 2804 5.0 1059427150
## 24445 169 2942 5.0 1079310728
## 24446 169 3033 4.0 1059427267
## 24447 169 3114 4.5 1059427909
## 24448 169 3147 4.5 1078285074
## 24449 169 3159 4.0 1059427548
## 24450 169 3160 5.0 1075135424
## 24451 169 3174 3.0 1059428429
## 24452 169 3247 4.5 1079310713
## 24453 169 3287 4.5 1059494560
## 24454 169 3301 4.5 1070250484
## 24455 169 3408 4.5 1078284952
## 24456 169 3421 4.0 1059428284
## 24457 169 3448 4.0 1059428218
## 24458 169 3534 4.5 1070250555
## 24459 169 3536 5.0 1059428134
## 24460 169 3552 4.5 1059428321
## 24461 169 3594 5.0 1070251166
## 24462 169 3624 3.5 1059494292
## 24463 169 3755 4.0 1070251004
## 24464 169 3791 4.0 1059428536
## 24465 169 3809 4.0 1059428448
## 24466 169 3882 3.5 1070250520
## 24467 169 3911 4.5 1059428269
## 24468 169 3916 5.0 1085699668
## 24469 169 3948 5.0 1059428272
## 24470 169 3967 5.0 1079310696
## 24471 169 3988 5.0 1059494725
## 24472 169 4018 4.5 1059494065
## 24473 169 4022 4.5 1059494455
## 24474 169 4025 4.0 1059494295
## 24475 169 4039 4.5 1059427674
## 24476 169 4054 4.5 1059494078
## 24477 169 4069 4.0 1059494231
## 24478 169 4142 3.5 1059494385
## 24479 169 4193 4.0 1059427762
## 24480 169 4246 4.0 1059494019
## 24481 169 4306 5.0 1085699612
## 24482 169 4308 5.0 1059427608
## 24483 169 4310 4.5 1059428813
## 24484 169 4369 3.0 1059494319
## 24485 169 4373 4.5 1059428960
## 24486 169 4639 4.5 1059494223
## 24487 169 4718 4.5 1070250493
## 24488 169 4728 4.0 1070250494
## 24489 169 4799 4.0 1059427983
## 24490 169 4823 4.0 1070250460
## 24491 169 4857 5.0 1059427574
## 24492 169 4867 3.5 1059429012
## 24493 169 4880 4.0 1059428022
## 24494 169 4886 5.0 1059427905
## 24495 169 4890 4.0 1070250506
## 24496 169 4896 4.5 1059494471
## 24497 169 4936 5.0 1059427699
## 24498 169 4951 4.5 1059428641
## 24499 169 4958 3.5 1059429271
## 24500 169 4963 4.5 1059428105
## 24501 169 4975 4.0 1059494091
## 24502 169 4992 4.0 1059494061
## 24503 169 4993 4.5 1059494461
## 24504 169 4994 4.5 1059428979
## 24505 169 4995 4.5 1059428888
## 24506 169 5014 4.5 1059429153
## 24507 169 5103 4.0 1059427949
## 24508 169 5108 3.5 1059429284
## 24509 169 5151 4.0 1070250779
## 24510 169 5171 3.0 1059494397
## 24511 169 5218 4.0 1059494542
## 24512 169 5222 4.0 1070250669
## 24513 169 5267 4.5 1059429101
## 24514 169 5296 3.5 1059494243
## 24515 169 5299 4.5 1059427933
## 24516 169 5349 4.0 1059428835
## 24517 169 5377 4.5 1059428078
## 24518 169 5378 4.5 1059428777
## 24519 169 5400 4.0 1059428930
## 24520 169 5415 4.0 1059428799
## 24521 169 5444 4.5 1059429050
## 24522 169 5445 4.0 1059429208
## 24523 169 5459 3.0 1059494361
## 24524 169 5464 4.5 1059428714
## 24525 169 5472 4.0 1059427536
## 24526 169 5481 4.5 1070250518
## 24527 169 5502 4.0 1059428864
## 24528 169 5574 3.5 1070251009
## 24529 169 5620 4.0 1059429329
## 24530 169 5785 4.5 1059428614
## 24531 169 5816 4.5 1059494471
## 24532 169 5873 4.5 1059429313
## 24533 169 5881 2.5 1070250724
## 24534 169 5941 4.0 1070250515
## 24535 169 5943 4.0 1059494227
## 24536 169 5945 4.0 1059428327
## 24537 169 5952 4.5 1059494459
## 24538 169 5957 4.0 1059428848
## 24539 169 5989 5.0 1059429189
## 24540 169 5991 5.0 1059427542
## 24541 169 5995 4.5 1059428553
## 24542 169 6005 3.5 1085699705
## 24543 169 6155 4.5 1059428581
## 24544 169 6156 3.5 1059494304
## 24545 169 6188 4.5 1070250469
## 24546 169 6218 4.0 1070250407
## 24547 169 6252 2.5 1059429354
## 24548 169 6266 4.0 1059428904
## 24549 169 6324 2.5 1073179681
## 24550 169 6331 5.0 1085699639
## 24551 169 6339 4.0 1059427427
## 24552 169 6345 5.0 1059427702
## 24553 169 6365 4.0 1059427448
## 24554 169 6373 4.5 1059427452
## 24555 169 6377 5.0 1059427390
## 24556 169 6378 3.5 1085699681
## 24557 169 6537 3.0 1059427411
## 24558 169 6539 4.5 1059427432
## 24559 169 6550 3.5 1059427455
## 24560 169 6565 5.0 1085699714
## 24561 169 6568 4.5 1070250159
## 24562 169 6586 4.5 1070250522
## 24563 169 6702 3.0 1070250104
## 24564 169 6709 3.0 1070250087
## 24565 169 6711 4.5 1073179635
## 24566 169 6765 4.0 1079310527
## 24567 169 6874 3.0 1070250060
## 24568 169 6936 5.0 1070250064
## 24569 169 6944 5.0 1073180053
## 24570 169 7004 3.5 1073179957
## 24571 169 7045 3.5 1073179888
## 24572 169 7060 4.5 1073179875
## 24573 169 7080 5.0 1073179853
## 24574 169 7143 4.5 1073179789
## 24575 169 7147 4.0 1075135311
## 24576 169 7149 3.5 1073179589
## 24577 169 7153 5.0 1073179582
## 24578 169 7173 3.0 1075135394
## 24579 169 7317 4.0 1078284259
## 24580 169 7318 5.0 1082229345
## 24581 169 7375 4.0 1082229294
## 24582 169 7381 5.0 1082229300
## 24583 169 7614 5.0 1085699700
## 24584 169 8008 5.0 1085699657
## 24585 169 8360 5.0 1092373232
## 24586 169 8529 4.0 1092373247
## 24587 169 8641 5.0 1092373285
## 24588 169 8644 2.5 1092373271
## 24589 169 8665 3.5 1092373252
## 24590 169 8783 4.5 1092373278
## 24591 170 5 3.0 840473290
## 24592 170 10 3.0 840472869
## 24593 170 34 5.0 840472895
## 24594 170 48 4.0 840473093
## 24595 170 95 3.0 840473046
## 24596 170 110 4.0 840380988
## 24597 170 150 3.0 840380831
## 24598 170 153 3.0 840472759
## 24599 170 161 4.0 840380930
## 24600 170 168 4.0 840473073
## 24601 170 181 3.0 840473242
## 24602 170 185 3.0 840472895
## 24603 170 203 3.0 840473265
## 24604 170 207 3.0 840473310
## 24605 170 208 4.0 840380955
## 24606 170 266 4.0 840472976
## 24607 170 277 3.0 840473151
## 24608 170 282 4.0 840381134
## 24609 170 292 3.0 840472869
## 24610 170 296 2.0 840380834
## 24611 170 315 3.0 840472997
## 24612 170 318 5.0 840380930
## 24613 170 339 4.0 840472869
## 24614 170 344 3.0 840472759
## 24615 170 350 3.0 840381134
## 24616 170 355 2.0 840473171
## 24617 170 356 4.0 840380988
## 24618 170 364 3.0 840381013
## 24619 170 368 3.0 840473151
## 24620 170 376 3.0 840473290
## 24621 170 377 4.0 840472922
## 24622 170 410 1.0 840381013
## 24623 170 420 3.0 840381051
## 24624 170 454 3.0 840380988
## 24625 170 457 3.0 840472801
## 24626 170 480 3.0 840380988
## 24627 170 500 4.0 840381051
## 24628 170 539 4.0 840381092
## 24629 170 553 4.0 840381134
## 24630 170 586 3.0 840381068
## 24631 170 587 4.0 840381068
## 24632 170 588 3.0 840472759
## 24633 170 590 4.0 840380828
## 24634 170 592 3.0 840380827
## 24635 170 593 4.0 840380905
## 24636 170 594 3.0 840473217
## 24637 170 595 3.0 840380904
## 24638 170 597 4.0 840381092
## 24639 170 733 3.0 840473337
## 24640 170 736 3.0 840381235
## 24641 171 1 5.0 866904159
## 24642 171 25 5.0 866904159
## 24643 171 29 5.0 866904396
## 24644 171 32 5.0 866904158
## 24645 171 36 4.0 866904192
## 24646 171 47 5.0 866905267
## 24647 171 81 5.0 866904379
## 24648 171 111 5.0 866905308
## 24649 171 141 5.0 866904159
## 24650 171 163 5.0 866905308
## 24651 171 176 5.0 866905925
## 24652 171 235 4.0 866905664
## 24653 171 260 4.0 866904192
## 24654 171 290 5.0 866905820
## 24655 171 296 5.0 866905241
## 24656 171 317 4.0 866905664
## 24657 171 318 5.0 866905647
## 24658 171 367 3.0 866905267
## 24659 171 380 5.0 866905647
## 24660 171 428 5.0 866905795
## 24661 171 471 3.0 866905683
## 24662 171 475 4.0 866905707
## 24663 171 485 5.0 866905683
## 24664 171 500 4.0 866905267
## 24665 171 541 5.0 866905738
## 24666 171 551 4.0 866905283
## 24667 171 555 5.0 866905308
## 24668 171 592 5.0 866905240
## 24669 171 593 5.0 866905241
## 24670 171 596 5.0 866905707
## 24671 171 608 5.0 866904192
## 24672 171 648 3.0 866904159
## 24673 171 661 5.0 866904261
## 24674 171 707 5.0 866904301
## 24675 171 714 5.0 866904502
## 24676 171 720 5.0 866905795
## 24677 171 742 4.0 866904469
## 24678 171 761 5.0 866904301
## 24679 171 766 3.0 866904429
## 24680 171 780 4.0 866904157
## 24681 171 784 4.0 866904216
## 24682 171 800 5.0 866904379
## 24683 171 801 5.0 866904485
## 24684 171 802 4.0 866904216
## 24685 171 828 4.0 866904413
## 24686 171 858 5.0 866904261
## 24687 171 861 5.0 866905882
## 24688 171 869 4.0 866904597
## 24689 171 903 5.0 866905882
## 24690 171 919 4.0 866905820
## 24691 171 994 5.0 866905907
## 24692 171 1025 4.0 866905858
## 24693 171 1051 5.0 866904563
## 24694 171 1073 5.0 866904192
## 24695 171 1079 5.0 866905738
## 24696 171 1080 5.0 866905763
## 24697 171 1089 5.0 866905820
## 24698 171 1104 5.0 866905907
## 24699 171 1136 5.0 866905762
## 24700 171 1148 5.0 866905859
## 24701 171 1151 5.0 866904677
## 24702 171 1193 5.0 866905795
## 24703 171 1196 4.0 866905738
## 24704 171 1197 4.0 866905763
## 24705 171 1198 5.0 866905738
## 24706 171 1201 5.0 866905882
## 24707 171 1208 5.0 866905820
## 24708 171 1210 5.0 866904240
## 24709 171 1214 5.0 866905795
## 24710 171 1220 5.0 866905820
## 24711 171 1225 4.0 866905795
## 24712 171 1246 5.0 866905795
## 24713 171 1259 5.0 866905820
## 24714 171 1265 3.0 866905795
## 24715 171 1270 5.0 866905762
## 24716 171 1276 5.0 866905907
## 24717 171 1291 5.0 866905738
## 24718 171 1304 4.0 866905839
## 24719 171 1367 5.0 866904301
## 24720 171 1391 5.0 866904322
## 24721 171 1454 5.0 866904702
## 24722 171 5060 4.0 866905839
## 24723 172 277 4.5 1238715964
## 24724 172 527 4.5 1291065634
## 24725 172 590 3.5 1291065643
## 24726 172 593 4.0 1290913671
## 24727 172 661 3.5 1238715949
## 24728 172 1125 4.5 1238716069
## 24729 172 1210 4.5 1291065631
## 24730 172 1215 3.5 1238715938
## 24731 172 1270 4.0 1291065641
## 24732 172 1272 3.0 1238715994
## 24733 172 1347 4.0 1238716026
## 24734 172 1580 3.5 1291065645
## 24735 172 1953 3.0 1238715986
## 24736 172 1982 3.0 1238716057
## 24737 172 1994 3.5 1238715976
## 24738 172 2005 4.0 1238715961
## 24739 172 2072 4.0 1238716153
## 24740 172 2193 3.5 1238715978
## 24741 172 2313 3.0 1238716043
## 24742 172 2762 4.5 1291065637
## 24743 172 2770 4.0 1238715951
## 24744 172 2890 3.5 1238715927
## 24745 172 3087 5.0 1238716079
## 24746 172 3578 4.0 1291065652
## 24747 172 3793 3.5 1291065627
## 24748 172 7438 4.0 1291065648
## 24749 173 10 3.0 843397944
## 24750 173 17 4.0 843398078
## 24751 173 110 3.0 843397958
## 24752 173 141 4.0 844086238
## 24753 173 150 4.0 843397856
## 24754 173 153 3.0 843397881
## 24755 173 171 5.0 844086390
## 24756 173 253 3.0 843397944
## 24757 173 296 1.0 843397856
## 24758 173 316 3.0 843397907
## 24759 173 329 4.0 843397925
## 24760 173 356 5.0 843397925
## 24761 173 357 5.0 843398045
## 24762 173 377 3.0 843397993
## 24763 173 410 3.0 843397993
## 24764 173 480 4.0 843397944
## 24765 173 500 4.0 843397993
## 24766 173 527 5.0 843398045
## 24767 173 586 3.0 843398014
## 24768 173 587 3.0 843398030
## 24769 173 588 3.0 843397881
## 24770 173 589 3.0 843397975
## 24771 173 592 3.0 843397856
## 24772 173 595 3.0 843397907
## 24773 173 597 3.0 843398030
## 24774 174 10 3.0 848486985
## 24775 174 11 5.0 848487132
## 24776 174 32 3.0 848487101
## 24777 174 34 4.0 848487060
## 24778 174 39 4.0 848487101
## 24779 174 50 3.0 848487075
## 24780 174 62 1.0 848487212
## 24781 174 141 3.0 848487194
## 24782 174 150 5.0 848486904
## 24783 174 153 3.0 848486928
## 24784 174 158 3.0 848487249
## 24785 174 160 3.0 848487116
## 24786 174 161 3.0 848486984
## 24787 174 165 3.0 848486927
## 24788 174 185 5.0 848486984
## 24789 174 186 3.0 848487212
## 24790 174 196 2.0 848487194
## 24791 174 224 3.0 848487300
## 24792 174 225 3.0 848487101
## 24793 174 231 3.0 848486943
## 24794 174 236 5.0 848487173
## 24795 174 253 5.0 848487003
## 24796 174 282 5.0 848487152
## 24797 174 288 3.0 848487003
## 24798 174 292 4.0 848486962
## 24799 174 296 3.0 848486904
## 24800 174 300 2.0 848487060
## 24801 174 315 2.0 848487152
## 24802 174 316 5.0 848486943
## 24803 174 317 3.0 848487116
## 24804 174 329 3.0 848486962
## 24805 174 333 4.0 848487280
## 24806 174 337 4.0 848487194
## 24807 174 339 3.0 848487003
## 24808 174 344 5.0 848486928
## 24809 174 349 4.0 848486943
## 24810 174 350 4.0 848487116
## 24811 174 356 3.0 848486943
## 24812 174 368 4.0 848487235
## 24813 174 370 3.0 848487280
## 24814 174 380 3.0 848486904
## 24815 174 410 3.0 848487060
## 24816 174 420 2.0 848487101
## 24817 174 432 3.0 848487132
## 24818 174 435 3.0 848487132
## 24819 174 440 4.0 848487116
## 24820 174 442 3.0 848487152
## 24821 174 454 5.0 848487003
## 24822 174 457 5.0 848486928
## 24823 174 474 4.0 848487152
## 24824 174 480 5.0 848486962
## 24825 174 485 3.0 848487280
## 24826 174 508 3.0 848487173
## 24827 174 520 5.0 848487313
## 24828 174 527 3.0 848487075
## 24829 174 539 5.0 848487075
## 24830 174 553 5.0 848487173
## 24831 174 587 5.0 848487060
## 24832 174 588 4.0 848486927
## 24833 174 589 4.0 848487003
## 24834 174 590 4.0 848486904
## 24835 174 592 5.0 848486904
## 24836 174 595 3.0 848486943
## 24837 174 597 4.0 848487060
## 24838 174 648 5.0 848487280
## 24839 174 736 5.0 848487194
## 24840 174 780 3.0 848487212
## 24841 175 531 3.5 1234188140
## 24842 175 671 0.5 1234188159
## 24843 175 2300 4.0 1234188170
## 24844 175 2526 0.5 1234188616
## 24845 175 3594 5.0 1234188487
## 24846 175 3791 5.0 1234188252
## 24847 175 3969 4.5 1234188201
## 24848 175 5410 0.5 1234188618
## 24849 175 7169 5.0 1234189772
## 24850 175 7259 3.5 1234189558
## 24851 175 8362 3.5 1234188705
## 24852 175 8643 4.5 1234189498
## 24853 175 8911 5.0 1234189764
## 24854 175 32289 5.0 1234189413
## 24855 175 33145 3.5 1234189063
## 24856 175 33880 3.5 1234188574
## 24857 175 38388 5.0 1234189433
## 24858 175 39427 0.5 1234189665
## 24859 175 43904 0.5 1234189741
## 24860 175 44613 5.0 1234189390
## 24861 175 45880 4.0 1234188588
## 24862 175 47382 5.0 1234189512
## 24863 175 56949 4.0 1234189781
## 24864 175 58107 4.0 1234189514
## 24865 176 10 5.0 840108984
## 24866 176 39 3.0 840108930
## 24867 176 47 5.0 840109138
## 24868 176 110 5.0 840108930
## 24869 176 150 4.0 840108527
## 24870 176 153 3.0 840108593
## 24871 176 161 4.0 840108983
## 24872 176 165 4.0 840108593
## 24873 176 168 5.0 840108893
## 24874 176 231 4.0 840108739
## 24875 176 292 3.0 840108793
## 24876 176 296 3.0 840108527
## 24877 176 316 4.0 840108739
## 24878 176 318 5.0 840108793
## 24879 176 329 5.0 840108740
## 24880 176 344 2.0 840108593
## 24881 176 349 4.0 840108593
## 24882 176 368 4.0 840109075
## 24883 176 370 3.0 840108893
## 24884 176 377 4.0 840108684
## 24885 176 380 5.0 840108528
## 24886 176 383 4.0 840108930
## 24887 176 434 4.0 840108793
## 24888 176 454 4.0 840108984
## 24889 176 457 5.0 840108793
## 24890 176 471 5.0 840109075
## 24891 176 485 3.0 840109075
## 24892 176 520 3.0 840108930
## 24893 176 553 5.0 840108893
## 24894 176 588 3.0 840108593
## 24895 176 589 5.0 840108684
## 24896 176 590 4.0 840108527
## 24897 176 592 3.0 840108527
## 24898 176 593 5.0 840108739
## 24899 176 733 5.0 840108684
## 24900 176 780 4.0 840108684
## 24901 177 1 5.0 1435533535
## 24902 177 2 3.5 1435534109
## 24903 177 7 1.0 1435534432
## 24904 177 11 3.0 1435890660
## 24905 177 16 3.0 1435890664
## 24906 177 19 2.0 1435534140
## 24907 177 28 2.5 1435536420
## 24908 177 39 4.0 1435890554
## 24909 177 47 4.5 1435533571
## 24910 177 48 3.0 1435534447
## 24911 177 50 4.0 1435523529
## 24912 177 60 3.0 1435535258
## 24913 177 104 2.5 1435890651
## 24914 177 107 3.0 1435535166
## 24915 177 150 4.0 1435533543
## 24916 177 153 3.0 1435890489
## 24917 177 154 4.0 1435536521
## 24918 177 158 3.0 1435890757
## 24919 177 161 3.5 1435533737
## 24920 177 185 2.5 1435533725
## 24921 177 216 2.0 1435534883
## 24922 177 223 2.5 1435533774
## 24923 177 235 3.0 1435534289
## 24924 177 239 3.0 1435536282
## 24925 177 246 3.0 1435534768
## 24926 177 247 3.0 1435891198
## 24927 177 253 4.0 1435533709
## 24928 177 256 2.0 1435978177
## 24929 177 260 2.5 1435524019
## 24930 177 262 4.0 1435535871
## 24931 177 296 5.0 1435530409
## 24932 177 317 4.5 1435534302
## 24933 177 318 5.0 1435523517
## 24934 177 337 2.5 1435890667
## 24935 177 339 4.0 1435533746
## 24936 177 342 3.0 1435534564
## 24937 177 344 4.0 1435533575
## 24938 177 345 3.0 1435534714
## 24939 177 355 2.0 1435978172
## 24940 177 356 5.0 1435523542
## 24941 177 362 4.0 1435535020
## 24942 177 364 4.0 1435533586
## 24943 177 367 3.0 1435890503
## 24944 177 377 3.0 1435533573
## 24945 177 380 3.0 1435533559
## 24946 177 410 2.5 1435534208
## 24947 177 454 2.5 1435890562
## 24948 177 455 3.0 1435978247
## 24949 177 480 3.5 1435533530
## 24950 177 500 5.0 1435890500
## 24951 177 508 3.5 1435534189
## 24952 177 520 4.0 1435534369
## 24953 177 527 4.5 1435523522
## 24954 177 539 3.5 1435533693
## 24955 177 546 1.0 1435535439
## 24956 177 551 4.0 1435534171
## 24957 177 552 3.0 1435534477
## 24958 177 585 2.5 1435978183
## 24959 177 586 3.0 1435533702
## 24960 177 587 3.5 1435533683
## 24961 177 588 4.0 1435533563
## 24962 177 592 3.0 1435533554
## 24963 177 593 5.0 1435533526
## 24964 177 594 4.0 1435539811
## 24965 177 595 5.0 1435720619
## 24966 177 596 3.0 1435540218
## 24967 177 597 4.5 1435890508
## 24968 177 608 4.0 1435533565
## 24969 177 616 4.0 1435534947
## 24970 177 648 4.0 1435533580
## 24971 177 653 2.5 1435534371
## 24972 177 661 3.0 1435534652
## 24973 177 673 3.0 1435534747
## 24974 177 709 2.5 1435536737
## 24975 177 724 3.0 1435534836
## 24976 177 736 4.0 1435890491
## 24977 177 750 4.0 1435533769
## 24978 177 765 2.0 1435535597
## 24979 177 780 3.5 1435533546
## 24980 177 783 2.5 1435534629
## 24981 177 788 0.5 1435534186
## 24982 177 830 2.5 1435535168
## 24983 177 837 5.0 1435535451
## 24984 177 858 5.0 1435533567
## 24985 177 898 5.0 1435535236
## 24986 177 899 5.0 1435534723
## 24987 177 900 3.0 1435536481
## 24988 177 902 5.0 1435534728
## 24989 177 903 4.0 1435534407
## 24990 177 904 5.0 1435536832
## 24991 177 905 4.0 1435535973
## 24992 177 906 4.0 1435537126
## 24993 177 909 5.0 1435535626
## 24994 177 910 5.0 1435534598
## 24995 177 911 4.0 1435536014
## 24996 177 912 5.0 1435536836
## 24997 177 914 4.0 1435534752
## 24998 177 915 5.0 1435535580
## 24999 177 916 5.0 1435535343
## [ reached 'max' / getOption("max.print") -- omitted 75837 rows ]
Create a “movie_ratings” from movies and corresponding ratings data frames
movie_ratings <- merge(Ratings, Movies, by="movieId")
DT::datatable(movie_ratings, options = list(pagelength=5))Create a “movieMatrix”
movieMatrix <- Ratings %>%
select(-timestamp) %>%
tidyr::spread(movieId, rating)
row.names(movieMatrix) <- movieMatrix[,1]
movieMatrix <- movieMatrix[-c(1)]
movieMatrix <- as(as.matrix(movieMatrix), "realRatingMatrix")
movieMatrix## 610 x 9724 rating matrix of class 'realRatingMatrix' with 100836 ratings.
movieMatrix <- movieMatrix[rowCounts(movieMatrix) > 50,
colCounts(movieMatrix) > 50]library(ggplot2)ratingsVector <- as.vector(movieMatrix@data)
ratingsVector <- ratingsVector[ratingsVector != 0]
#ggplot2::ggplot() + aes(ratingsVector) +
# geom_histogram(binwidth = 0.5) +
# xlab("Rating") + ylab("No of Ratings")
qplot(ratingsVector, geom="histogram", main = "Histogram of Ratings", xlab = "Rating Scores", binwidth = 0.5, fill=I("cornflower blue"))## User Ratings Distribution
ratingsPerUser <- rowMeans(movieMatrix)
# Ratings per User
qplot(ratingsPerUser, geom="histogram", main = "Histogram of User Ratings", xlab = "Rating Scores Per User", binwidth = 0.5, fill=I("Plum"))avg <- rowMeans(movieMatrix)
ggplot() + aes(avg) +
geom_histogram(binwidth = 0.1) +
xlab("Average Rating") + ylab("No of Ratings")minItems <- quantile(rowCounts(movieMatrix), 0.95)
minUsers <- quantile(colCounts(movieMatrix), 0.95)
image(movieMatrix[rowCounts(movieMatrix) > minItems,
colCounts(movieMatrix) > minUsers],
main = "Heatmap of the Top Users and Movies (Non-Normalized)")moviesNorm <- normalize(movieMatrix)
image(moviesNorm[rowCounts(moviesNorm) > minItems,
colCounts(moviesNorm) > minUsers],
main = "Heatmap of the Top Users and Movies (Normalized)")As part of UBCF, given a new user, its similar users are first identified. Then, the top-rated items rated by similar users are recommended.
For each new user, we need to follow these steps:
User-to-User Collaborative Filtering takes into account the information of different users by examining the similarity between them and recommending items based on past ratings. The closer the users, the more likely a past item rated by one user (but not by another) is to be recommended.
eval <- evaluationScheme(movieMatrix, method="split", train=0.8, given=-5)#similarity matrix
similarity_users <- similarity(movieMatrix[1:25, ], method = "cosine", which = "users")
image(as.matrix(similarity_users), main = "User similarity")# non-normalized
UBCF_Null_C <- Recommender(getData(eval, "train"), "UBCF", param=list(normalize = NULL, method="Cosine"))
# centered
UBCF_Center_C <- Recommender(getData(eval, "train"), "UBCF", param=list(normalize = "center", method="Cosine"))
# Z-score normalization
UBCF_Zscore_C <- Recommender(getData(eval, "train"), "UBCF", param=list(normalize = "Z-score", method="Cosine"))
# compute predicted ratings
p1 <- predict(UBCF_Null_C, getData(eval, "known"), type="ratings")
p2 <- predict(UBCF_Center_C, getData(eval, "known"), type="ratings")
p3 <- predict(UBCF_Zscore_C, getData(eval, "known"), type="ratings")
# set all predictions that fall outside the valid range to the boundary values
p1@data@x[p1@data@x[] < -10] <- -10
p1@data@x[p1@data@x[] > 10] <- 10
p2@data@x[p2@data@x[] < -10] <- -10
p2@data@x[p2@data@x[] > 10] <- 10
p3@data@x[p3@data@x[] < -10] <- -10
p3@data@x[p3@data@x[] > 10] <- 10
# aggregate the performance statistics
error_UCOS <- rbind(
UBCF_N_C = calcPredictionAccuracy(p1, getData(eval, "unknown")),
UBCF_C_C = calcPredictionAccuracy(p2, getData(eval, "unknown")),
UBCF_Z_C = calcPredictionAccuracy(p3, getData(eval, "unknown"))
)
kable(error_UCOS) %>%
kable_styling(bootstrap_options = c("striped","hover","condensed","responsive"),full_width = F,position = "left",font_size = 12) %>%
row_spec(0, background ="blue")| RMSE | MSE | MAE | |
|---|---|---|---|
| UBCF_N_C | 3.4222238 | 11.7116156 | 3.2567619 |
| UBCF_C_C | 0.9019521 | 0.8135176 | 0.6879081 |
| UBCF_Z_C | 0.8997447 | 0.8095406 | 0.6872006 |
# non-normalized
UBCF_Null_P <- Recommender(getData(eval, "train"), "UBCF", param=list(normalize = NULL, method="pearson"))
# centered
UBCF_Center_P <- Recommender(getData(eval, "train"), "UBCF", param=list(normalize = "center",method="pearson"))
# Z-score normalization
UBCF_Zscore_P <- Recommender(getData(eval, "train"), "UBCF", param=list(normalize = "Z-score",method="pearson"))
# compute predicted ratings
p1 <- predict(UBCF_Null_P, getData(eval, "known"), type="ratings")
p2 <- predict(UBCF_Center_P, getData(eval, "known"), type="ratings")
p3 <- predict(UBCF_Zscore_P, getData(eval, "known"), type="ratings")
# set all predictions that fall outside the valid range to the boundary values
p1@data@x[p1@data@x[] < -10] <- -10
p1@data@x[p1@data@x[] > 10] <- 10
p2@data@x[p2@data@x[] < -10] <- -10
p2@data@x[p2@data@x[] > 10] <- 10
p3@data@x[p3@data@x[] < -10] <- -10
p3@data@x[p3@data@x[] > 10] <- 10
# aggregate the performance statistics
error_UPC <- rbind(
UBCF_Null_P = calcPredictionAccuracy(p1, getData(eval, "unknown")),
UBCF_Center_P = calcPredictionAccuracy(p2, getData(eval, "unknown")),
UBCF_Zscore_P = calcPredictionAccuracy(p3, getData(eval, "unknown"))
)
kable(error_UPC)%>%
kable_styling(bootstrap_options = c("striped","hover","condensed","responsive"),full_width = F,position = "left",font_size = 12) %>%
row_spec(0, background ="green")| RMSE | MSE | MAE | |
|---|---|---|---|
| UBCF_Null_P | 3.3194254 | 11.0185848 | 3.1413891 |
| UBCF_Center_P | 0.8999459 | 0.8099025 | 0.6855067 |
| UBCF_Zscore_P | 0.8988404 | 0.8079141 | 0.6849178 |
# memory cleanup
rm(UBCF_Null_P, UBCF_Center_P, UBCF_Zscore_P)Split our set into training set (80%) and testing set (20%).
set.seed(88)
which_train <- sample(x = c(TRUE, FALSE), size = nrow(movieMatrix), replace = TRUE, prob = c(0.8, 0.2))
movieTrain <- movieMatrix[which_train, ]
movieTest <- movieMatrix[!which_train, ]model <- Recommender(movieTrain, method = "UBCF") pred <- predict(model, newdata = movieTest, n = 6)
# Recommendations for the first user
recommended <- pred@itemLabels[pred@items[[1]]]
recommended <- as.data.frame(as.integer(recommended))
colnames(recommended) <- c("movieId")
data <- recommended %>% inner_join(Movies, by = "movieId") %>% select(Movie = "title")
knitr::kable(data, format = "html") %>%
kableExtra::kable_styling(bootstrap_options = c("striped", "hover"))%>%
row_spec(0, background ="gray")| Movie |
|---|
| Clerks (1994) |
| Shawshank Redemption, The (1994) |
| Babe (1995) |
| Silence of the Lambs, The (1991) |
| Terminator 2: Judgment Day (1991) |
| Braveheart (1995) |
model <- Recommender(movieTrain, method = "UBCF", parameter = list(normalize = NULL))
pred <- predict(model, newdata = movieTest, n = 6)
recommended <- pred@itemLabels[pred@items[[1]]]
recommended <- as.data.frame(as.integer(recommended))
colnames(recommended) <- c("movieId")
data <- recommended %>% inner_join(Movies, by = "movieId") %>% select(Movie = "title")
knitr::kable(data, format = "html") %>%
kableExtra::kable_styling(bootstrap_options = c("striped", "hover"))%>%
row_spec(0, background ="gray")| Movie |
|---|
| Terminator 2: Judgment Day (1991) |
| Braveheart (1995) |
| True Lies (1994) |
| Jurassic Park (1993) |
| Mask, The (1994) |
| Fugitive, The (1993) |
#Estimating RMSE
set.seed(1)
RMSE.model <- Recommender(getData(eval, "train"), method = "UBCF",
param=list(normalize = "center", method="Cosine", nn=25))
prediction <- predict(RMSE.model, getData(eval, "known"), type="ratings")
rmse_ubcf <- calcPredictionAccuracy(prediction, getData(eval, "unknown"))[1]
rmse_ubcf## RMSE
## 0.9019521
Because the recommender system created is User-to-User, the “UBCF” method (User Based Collaborative Filter method) was used, where the closeness between users was measured using the cosine.
# Creation of the model - U(ser) B(ased) C(ollaborative) F(iltering)
user_user = Recommender(data = movieMatrix, method = "UBCF", parameter = list(k = 30, method = "Cosine"))## Available parameter (with default values):
## method = cosine
## nn = 25
## sample = FALSE
## normalize = center
## verbose = FALSE
RecommenderModel <- Recommender(movieMatrix, method = "UBCF", param=list(normalize = "center", method="Cosine", nn=25))A function was created where inputing the user’s Id number returned a list of six recommended movies. Again, taking the first user (User 1), for comparison purposes, the six recommendations were made below
#Making predictions
prediction <- predict(RecommenderModel, movieMatrix[1:25, ], type="ratings")
as(prediction, "matrix")[,1:5]## 1 2 3 6 7
## 1 NA 4.340140 NA NA 4.353489
## 4 3.528490 3.457831 3.447622 3.498386 3.422135
## 6 3.858358 NA NA NA NA
## 7 NA 3.523564 3.576188 3.725728 3.536314
## 10 3.133835 3.179463 3.159379 3.321302 3.138100
## 11 3.970450 3.904767 3.951220 NA 3.872547
## 15 NA 3.505555 3.454035 3.483054 3.467534
## 16 3.871616 3.874187 3.858255 3.725271 3.721579
## 17 NA 4.298033 4.311119 4.390863 4.347222
## 18 NA NA 3.709183 NA 3.853180
## 19 NA NA NA 3.085819 NA
## 20 3.896590 NA 3.837305 4.147534 3.843624
## 21 NA NA 3.410807 3.692985 3.363228
## 22 2.927387 2.797588 2.835984 2.863688 2.794773
## 23 3.746736 3.733187 3.609929 NA 3.633333
## 24 4.041467 3.888864 3.764917 NA 3.768818
## 27 NA NA 3.689655 3.775412 3.685947
## 28 3.108168 3.000881 3.049727 NA 3.140110
## 29 4.410258 4.346827 4.294886 4.267973 4.287637
## 32 NA 3.741314 NA NA NA
## 33 NA 4.020835 4.033898 4.043976 NA
## 34 3.345094 3.506636 3.421719 3.475645 3.416418
## 36 2.693373 2.407687 2.569662 2.720175 2.525594
## 38 3.186351 3.213115 3.213115 3.213115 3.162594
## 39 4.121287 4.111854 4.067869 4.148320 4.048987
# recommending
n_recommended = 6
predictions = predict(object = user_user, newdata = movieTest, n = n_recommended)
#predictions
user_pred = function(idNum){
user_x = predictions@items[[idNum]]
user_x = predictions@itemLabels[user_x]
return(data.frame(user_x))
}
#as.data.frame(user_pred(1)) %>% inner_join(Movies, by = c("user_x" = "movieId")) %>% select(Movie = "title")
user_pred(1)## user_x
## 1 223
## 2 593
## 3 318
## 4 34
## 5 608
## 6 260
recc_matrix = sapply(predictions@items, function(x){
colnames(data)[x]
})
number_of_items = data.frame(table(unlist(recc_matrix, use.names=FALSE)))
sorted = number_of_items[order(number_of_items$Freq, decreasing = T),][1:10,]
kable(sorted)| Var1 | Freq | |
|---|---|---|
| 1 | Movie | 3 |
| NA | NA | NA |
| NA.1 | NA | NA |
| NA.2 | NA | NA |
| NA.3 | NA | NA |
| NA.4 | NA | NA |
| NA.5 | NA | NA |
| NA.6 | NA | NA |
| NA.7 | NA | NA |
| NA.8 | NA | NA |
ggplot(data=sorted, aes(x=Var1, y=Freq)) +
geom_bar(stat="identity", fill="steelblue")+
geom_text(aes(label=Freq), color="red", size=3)+
theme_minimal()+
xlab("Movie Titles")+
coord_flip()# non-normalized
IBCF_Null_C <- Recommender(getData(eval, "train"), "IBCF", param=list(normalize = NULL, method="Cosine"))
# centered
IBCF_Center_C <- Recommender(getData(eval, "train"), "IBCF", param=list(normalize = "center",method="Cosine"))
# Z-score normalization
IBCF_Zscore_C <- Recommender(getData(eval, "train"), "IBCF", param=list(normalize = "Z-score",method="Cosine"))
# compute predicted ratings
p1 <- predict(IBCF_Null_C, getData(eval, "known"), type="ratings")
p2 <- predict(IBCF_Center_C, getData(eval, "known"), type="ratings")
p3 <- predict(IBCF_Zscore_C, getData(eval, "known"), type="ratings")
# set all predictions that fall outside the valid range to the boundary values
p1@data@x[p1@data@x[] < -10] <- -10
p1@data@x[p1@data@x[] > 10] <- 10
p2@data@x[p2@data@x[] < -10] <- -10
p2@data@x[p2@data@x[] > 10] <- 10
p3@data@x[p3@data@x[] < -10] <- -10
p3@data@x[p3@data@x[] > 10] <- 10
# aggregate the performance statistics
error_ICOS <- rbind(
IBCF_Null_C = calcPredictionAccuracy(p1, getData(eval, "unknown")),
IBCF_Center_C = calcPredictionAccuracy(p2, getData(eval, "unknown")),
IBCF_Zscore_C = calcPredictionAccuracy(p3, getData(eval, "unknown"))
)
kable(error_ICOS)%>%
kable_styling(bootstrap_options = c("striped","hover","condensed","responsive"),full_width = F,position = "left",font_size = 12) %>%
row_spec(0, background ="blue")| RMSE | MSE | MAE | |
|---|---|---|---|
| IBCF_Null_C | 0.9487026 | 0.9000366 | 0.6876243 |
| IBCF_Center_C | 1.0856698 | 1.1786790 | 0.8204156 |
| IBCF_Zscore_C | 1.1078457 | 1.2273220 | 0.8333644 |
# non-normalized
IBCF_Null_P <- Recommender(getData(eval, "train"), "IBCF", param=list(normalize = NULL, method="pearson"))
# centered
IBCF_Center_P <- Recommender(getData(eval, "train"), "IBCF", param=list(normalize = "center",method="pearson"))
# Z-score normalization
IBCF_Zscore_P <- Recommender(getData(eval, "train"), "IBCF", param=list(normalize = "Z-score",method="pearson"))
# compute predicted ratings
p1 <- predict(IBCF_Null_P, getData(eval, "known"), type="ratings")
p2 <- predict(IBCF_Center_P, getData(eval, "known"), type="ratings")
p3 <- predict(IBCF_Zscore_P, getData(eval, "known"), type="ratings")
# set all predictions that fall outside the valid range to the boundary values
p1@data@x[p1@data@x[] < -10] <- -10
p1@data@x[p1@data@x[] > 10] <- 10
p2@data@x[p2@data@x[] < -10] <- -10
p2@data@x[p2@data@x[] > 10] <- 10
p3@data@x[p3@data@x[] < -10] <- -10
p3@data@x[p3@data@x[] > 10] <- 10
# aggregate the performance statistics
error_IPC <- rbind(
IBCF_N_P = calcPredictionAccuracy(p1, getData(eval, "unknown")),
IBCF_C_P = calcPredictionAccuracy(p2, getData(eval, "unknown")),
IBCF_Z_P = calcPredictionAccuracy(p3, getData(eval, "unknown"))
)
kable(error_IPC)%>%
kable_styling(bootstrap_options = c("striped","hover","condensed","responsive"),full_width = F,position = "left",font_size = 12) %>%
row_spec(0, background ="blue")| RMSE | MSE | MAE | |
|---|---|---|---|
| IBCF_N_P | 0.9413230 | 0.8860890 | 0.6991531 |
| IBCF_C_P | 0.9557215 | 0.9134037 | 0.7109719 |
| IBCF_Z_P | 1.0134660 | 1.0271133 | 0.7480463 |
# memory cleanup
rm(IBCF_N_P, IBCF_C_P, IBCF_Z_P)Split our set into training set (80%) and testing set (20%).
set.seed(88)
which_train <- sample(x = c(TRUE, FALSE), size = nrow(movieMatrix),
replace = TRUE, prob = c(0.8, 0.2))
movieTrain <- movieMatrix[which_train, ]
movieTest <- movieMatrix[!which_train, ]model <- Recommender(movieTrain, method = "IBCF")
similarityMatrix <- getModel(model)$sim
which_max <- order(colSums(similarityMatrix > 0), decreasing = TRUE)[1:10]
topMovies <- as.data.frame(as.integer(rownames(similarityMatrix)[which_max]))
colnames(topMovies) <- c("movieId")
data <- topMovies %>% inner_join(Movies, by = "movieId") %>% select(Movie = "title")
knitr::kable(data, format = "html") %>%
kableExtra::kable_styling(bootstrap_options = c("striped", "hover"))| Movie |
|---|
| Disclosure (1994) |
| Eraser (1996) |
| City Slickers II: The Legend of Curly’s Gold (1994) |
| First Knight (1995) |
| Piano, The (1993) |
| Congo (1995) |
| Beverly Hills Cop III (1994) |
| Cable Guy, The (1996) |
| Broken Arrow (1996) |
| Coneheads (1993) |
pred <- predict(model, newdata = movieTest, n = 6)
# Movie ratings of the first user
user1 <- as.data.frame(movieTest@data[1,movieTest@data[1,]>0])
colnames(user1) <- c("Rating")
user1[c("movieId")] <- as.integer(rownames(user1))
data <- Movies %>%
inner_join(user1, by = "movieId") %>%
select(Movie = "title", Rating) %>%
arrange(desc(Rating))
knitr::kable(data, format = "html") %>%
kableExtra::kable_styling(bootstrap_options = c("striped", "hover"))| Movie | Rating |
|---|---|
| Batman Begins (2005) | 5.0 |
| Casino Royale (2006) | 5.0 |
| King’s Speech, The (2010) | 5.0 |
| Dark Knight Rises, The (2012) | 5.0 |
| Shrek (2001) | 4.5 |
| Legally Blonde (2001) | 4.5 |
| Dark Knight, The (2008) | 4.5 |
| Aladdin (1992) | 4.0 |
| Casablanca (1942) | 4.0 |
| Gladiator (2000) | 4.0 |
| Lord of the Rings: The Fellowship of the Ring, The (2001) | 4.0 |
| Beautiful Mind, A (2001) | 4.0 |
| Lord of the Rings: The Two Towers, The (2002) | 4.0 |
| Love Actually (2003) | 4.0 |
| Lord of the Rings: The Return of the King, The (2003) | 4.0 |
| Up (2009) | 4.0 |
| Forrest Gump (1994) | 3.5 |
| Pretty Woman (1990) | 3.5 |
| As Good as It Gets (1997) | 3.5 |
| Notting Hill (1999) | 3.5 |
| Bridget Jones’s Diary (2001) | 3.5 |
| Finding Nemo (2003) | 3.5 |
| Spider-Man 2 (2004) | 3.5 |
| Bourne Supremacy, The (2004) | 3.5 |
| Bourne Ultimatum, The (2007) | 3.5 |
| Juno (2007) | 3.5 |
| Graduate, The (1967) | 3.0 |
| When Harry Met Sally… (1989) | 3.0 |
| Mr. & Mrs. Smith (2005) | 3.0 |
| 300 (2007) | 3.0 |
| Harry Potter and the Half-Blood Prince (2009) | 3.0 |
| Sherlock Holmes (2009) | 3.0 |
| Incredibles, The (2004) | 2.5 |
| Avatar (2009) | 2.5 |
| Pulp Fiction (1994) | 1.0 |
| American Beauty (1999) | 1.0 |
| Wolf of Wall Street, The (2013) | 1.0 |
| Mary Poppins (1964) | 0.5 |
| Matrix, The (1999) | 0.5 |
| Sixth Sense, The (1999) | 0.5 |
| Fight Club (1999) | 0.5 |
| Grand Budapest Hotel, The (2014) | 0.5 |
| Interstellar (2014) | 0.5 |
# Recommendations for the first user
recommended <- pred@itemLabels[pred@items[[1]]]
recommended <- as.data.frame(as.integer(recommended))
colnames(recommended) <- c("movieId")
data <- recommended %>% inner_join(Movies, by = "movieId") %>% select(Movie = "title")
knitr::kable(data, format = "html") %>%
kableExtra::kable_styling(bootstrap_options = c("striped", "hover"))| Movie |
|---|
| Taxi Driver (1976) |
| Fugitive, The (1993) |
| Fargo (1996) |
| Raising Arizona (1987) |
| Face/Off (1997) |
| Being John Malkovich (1999) |
item_item = Recommender(data = movieTrain, method = "IBCF",
parameter = list(k = 30, method = "Cosine"))
item_item## Recommender of type 'IBCF' for 'realRatingMatrix'
## learned using 304 users.
# recommending
n_recommended = 6
predictions = predict(object = item_item, newdata = movieTest, n = n_recommended)
#predictions
item_pred = function(idNum){
user_x = predictions@items[[idNum]]
user_x = predictions@itemLabels[user_x]
return(data.frame(user_x))
}
item_pred(1)## user_x
## 1 111
## 2 457
## 3 608
## 4 1394
## 5 1573
## 6 2997
recc_matrix = sapply(predictions@items, function(x){
colnames(data)[x]
})
number_of_items = data.frame(table(unlist(recc_matrix, use.names=FALSE)))
sorted = number_of_items[order(number_of_items$Freq, decreasing = T),][1:10,]
kable(sorted)| Var1 | Freq | |
|---|---|---|
| 1 | Movie | 1 |
| NA | NA | NA |
| NA.1 | NA | NA |
| NA.2 | NA | NA |
| NA.3 | NA | NA |
| NA.4 | NA | NA |
| NA.5 | NA | NA |
| NA.6 | NA | NA |
| NA.7 | NA | NA |
| NA.8 | NA | NA |
set.seed(101)
minimum = min(rowCounts(movieMatrix))
minimum## [1] 11
evaluation = evaluationScheme(data = movieMatrix, method = "cross-validation", k = 10, given = 10, goodRating = 3.5)
evaluation## Evaluation scheme with 10 items given
## Method: 'cross-validation' with 10 run(s).
## Good ratings: >=3.500000
## Data set: 378 x 436 rating matrix of class 'realRatingMatrix' with 36214 ratings.
ev_train = getData(evaluation, "train")
ev_known = getData(evaluation, "known")
ev_unknown = getData(evaluation, "unknown")# Item
item_model = Recommender(data = ev_train, method = "IBCF", parameter = list(method = "Cosine"))
item_model_pred = predict(object = item_model, newdata = ev_known, n = 10, type = "ratings")
item = calcPredictionAccuracy(x = item_model_pred, data = ev_unknown, byUser = FALSE)
# User
user_model = Recommender(data = ev_train, method = "UBCF", parameter = list(method = "Cosine"))
user_model_pred = predict(object = user_model, newdata = ev_known, n = 10, type = "ratings")
user = calcPredictionAccuracy(x = user_model_pred, data = ev_unknown, byUser = FALSE)
# Comparison
kable(rbind(item, user))%>%
kable_styling(bootstrap_options = c("striped","hover","condensed","responsive"),full_width = F,position = "left",font_size = 12) %>%
row_spec(0, background ="gray")| RMSE | MSE | MAE | |
|---|---|---|---|
| item | 1.4217016 | 2.0212355 | 1.0709321 |
| user | 0.9706831 | 0.9422256 | 0.7631322 |
eval_sets = evaluationScheme(data = movieMatrix, method = "cross-validation", k = 4, given = 10, goodRating = 3.5)
I_results = evaluate(x = eval_sets, method = "IBCF", n = seq(10, 100, 10))## IBCF run fold/sample [model time/prediction time]
## 1 [0.46sec/0.01sec]
## 2 [0.41sec/0.01sec]
## 3 [0.4sec/0.02sec]
## 4 [0.44sec/0.02sec]
kable(head(getConfusionMatrix(I_results)[[1]]))%>%
kable_styling(bootstrap_options = c("striped","hover","condensed","responsive"),full_width = F,position = "left",font_size = 12) %>%
row_spec(0, background ="gray")| TP | FP | FN | TN | precision | recall | TPR | FPR | |
|---|---|---|---|---|---|---|---|---|
| 10 | 1.395833 | 8.604167 | 60.17708 | 355.8229 | 0.1395833 | 0.0270559 | 0.0270559 | 0.0237245 |
| 20 | 2.833333 | 17.166667 | 58.73958 | 347.2604 | 0.1416667 | 0.0490555 | 0.0490555 | 0.0471791 |
| 30 | 4.250000 | 25.750000 | 57.32292 | 338.6771 | 0.1416667 | 0.0724219 | 0.0724219 | 0.0707783 |
| 40 | 5.552083 | 34.406250 | 56.02083 | 330.0208 | 0.1390625 | 0.0949230 | 0.0949230 | 0.0946737 |
| 50 | 6.833333 | 43.020833 | 54.73958 | 321.4062 | 0.1373958 | 0.1160428 | 0.1160428 | 0.1183702 |
| 60 | 8.083333 | 51.666667 | 53.48958 | 312.7604 | 0.1357639 | 0.1332360 | 0.1332360 | 0.1420368 |
U_results = evaluate(x = eval_sets, method = "UBCF", n = seq(10, 100, 10))## UBCF run fold/sample [model time/prediction time]
## 1 [0sec/0.13sec]
## 2 [0sec/0.12sec]
## 3 [0sec/0.1sec]
## 4 [0.02sec/0.09sec]
kable(head(getConfusionMatrix(U_results)[[1]]))%>%
kable_styling(bootstrap_options = c("striped","hover","condensed","responsive"),full_width = F,position = "left",font_size = 12) %>%
row_spec(0, background ="gray")| TP | FP | FN | TN | precision | recall | TPR | FPR | |
|---|---|---|---|---|---|---|---|---|
| 10 | 3.020833 | 6.979167 | 58.55208 | 357.4479 | 0.3020833 | 0.0532672 | 0.0532672 | 0.0186696 |
| 20 | 5.177083 | 14.822917 | 56.39583 | 349.6042 | 0.2588542 | 0.0892096 | 0.0892096 | 0.0398768 |
| 30 | 6.979167 | 23.020833 | 54.59375 | 341.4062 | 0.2326389 | 0.1188407 | 0.1188407 | 0.0621899 |
| 40 | 8.833333 | 31.166667 | 52.73958 | 333.2604 | 0.2208333 | 0.1486357 | 0.1486357 | 0.0844939 |
| 50 | 10.531250 | 39.468750 | 51.04167 | 324.9583 | 0.2106250 | 0.1740115 | 0.1740115 | 0.1071271 |
| 60 | 12.375000 | 47.625000 | 49.19792 | 316.8021 | 0.2062500 | 0.2025819 | 0.2025819 | 0.1293319 |
plot(U_results, annotate = TRUE, main = "ROC curve of UBCF")plot(I_results, annotate = TRUE, main = "ROC curve of IBCF")mult_models = list(
IBCF_cos = list(name = "IBCF", param = list(method = "Cosine")),
IBCF_pearson = list(name = "IBCF", param = list(method = "pearson")),
UBCF_cos = list(name = "UBCF", param = list(method = "Cosine")),
UBCF_pearson = list(name = "UBCF", param = list(method = "pearson")),
Random = list(name = "RANDOM", param = NULL),
Popular = list(name = "POPULAR", param = NULL)
)
# Testing models
models = evaluate(eval_sets, mult_models, n= c(1, 5, seq(10, 100, 10)))## IBCF run fold/sample [model time/prediction time]
## 1 [0.38sec/0.03sec]
## 2 [0.4sec/0.01sec]
## 3 [0.41sec/0.04sec]
## 4 [0.43sec/0.02sec]
## IBCF run fold/sample [model time/prediction time]
## 1 [0.44sec/0.03sec]
## 2 [0.44sec/0.02sec]
## 3 [0.45sec/0.03sec]
## 4 [0.44sec/0.03sec]
## UBCF run fold/sample [model time/prediction time]
## 1 [0.01sec/0.11sec]
## 2 [0sec/0.13sec]
## 3 [0sec/0.13sec]
## 4 [0sec/0.14sec]
## UBCF run fold/sample [model time/prediction time]
## 1 [0sec/0.14sec]
## 2 [0sec/0.1sec]
## 3 [0sec/0.12sec]
## 4 [0sec/0.13sec]
## RANDOM run fold/sample [model time/prediction time]
## 1 [0sec/0.05sec]
## 2 [0sec/0.03sec]
## 3 [0sec/0.04sec]
## 4 [0sec/0.04sec]
## POPULAR run fold/sample [model time/prediction time]
## 1 [0sec/0.17sec]
## 2 [0.02sec/0.17sec]
## 3 [0sec/0.16sec]
## 4 [0sec/0.15sec]
Below shows the ROC and Precision/Recall plots and comparative performance of each of the models.
# Plotting models
plot(models, annotate = T, legend="topleft")plot(models, "prec/rec", annotate = F, main="Precision/Recall", legend="topright")As can be inferred from the plots above, Popular model is clearly the best choice among these models followed by IBCF Pearson model and UBCF Cosine model respectively.
This assignment helped in working with the most basic approach to building a recommender system in R using the recommenderlab package. As part of the learning exercise, learnt basic steps or recommender system. For a more usable recommender system, more development and testing would be needed.
The positives and negatives of the UBCF approach over IBCF in general.
Positive: User-based Collaborative Filtering gives recommendations that complements to the item the user was interacting with. This provides a strong recommendation than item-based Collaborative Filtering recommender can provide as users might not be looking for direct substitutes to a movie they had just viewed or previously watched.
Negative: User-based Collaborative Filtering is type of Memory-based that uses all user data persisted in the database to create recommendations. Comparing the pairwise correlation of every user in your dataset is not scalable. If there were millions of users, this computation would be very time consuming. Possible ways to get around this would be to implement some form of dimensionality reduction, such as Principal Component Analysis, or to use a model-based algorithm instead.
Also, UBCF relies on past user choices to make future recommendations. The implications of this is that it assumes that a user’s taste and preference remains more or less constant over time, which might not be true and makes it difficult to pre-compute user similarities offline.