The goal of this assignment is give you practice working with Matrix Factorization techniques.
Your task is implement a matrix factorization method-such as singular value decomposition (SVD) or Alternating Least Squares (ALS)-in the context of a recommender system.
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 35
## 35 36
## 36 37
## 37 38
## 38 39
## 39 40
## 40 41
## 41 42
## 42 43
## 43 44
## 44 45
## 45 46
## 46 47
## 47 48
## 48 49
## 49 50
## 50 52
## 51 53
## 52 54
## 53 55
## 54 57
## 55 58
## 56 59
## 57 60
## 58 61
## 59 62
## 60 63
## 61 64
## 62 65
## 63 66
## 64 68
## 65 69
## 66 70
## 67 71
## 68 72
## 69 73
## 70 74
## 71 76
## 72 77
## 73 78
## 74 79
## 75 80
## 76 81
## 77 82
## 78 83
## 79 84
## 80 85
## 81 86
## 82 87
## 83 88
## 84 89
## 85 92
## 86 93
## 87 94
## 88 95
## 89 96
## 90 97
## 91 98
## 92 99
## 93 100
## 94 101
## 95 102
## 96 103
## 97 104
## 98 105
## 99 107
## 100 108
## 101 110
## 102 111
## 103 112
## 104 113
## 105 114
## 106 116
## 107 117
## 108 118
## 109 119
## 110 121
## 111 122
## 112 123
## 113 124
## 114 125
## 115 126
## 116 129
## 117 130
## 118 131
## 119 132
## 120 135
## 121 137
## 122 140
## 123 141
## 124 144
## 125 145
## 126 146
## 127 147
## 128 148
## 129 149
## 130 150
## 131 151
## 132 152
## 133 153
## 134 154
## 135 155
## 136 156
## 137 157
## 138 158
## 139 159
## 140 160
## 141 161
## 142 162
## 143 163
## 144 164
## 145 165
## 146 166
## 147 167
## 148 168
## 149 169
## 150 170
## 151 171
## 152 172
## 153 173
## 154 174
## 155 175
## 156 176
## 157 177
## 158 178
## 159 179
## 160 180
## 161 181
## 162 183
## 163 184
## 164 185
## 165 186
## 166 187
## 167 188
## 168 189
## 169 190
## 170 191
## 171 193
## 172 194
## 173 195
## 174 196
## 175 198
## 176 199
## 177 200
## 178 201
## 179 202
## 180 203
## 181 204
## 182 205
## 183 206
## 184 207
## 185 208
## 186 209
## 187 211
## 188 213
## 189 214
## 190 215
## 191 216
## 192 217
## 193 218
## 194 219
## 195 220
## 196 222
## 197 223
## 198 224
## 199 225
## 200 227
## 201 228
## 202 229
## 203 230
## 204 231
## 205 232
## 206 233
## 207 234
## 208 235
## 209 236
## 210 237
## 211 238
## 212 239
## 213 240
## 214 241
## 215 242
## 216 243
## 217 244
## 218 245
## 219 246
## 220 247
## 221 248
## 222 249
## 223 250
## 224 251
## 225 252
## 226 253
## 227 254
## 228 255
## 229 256
## 230 257
## 231 258
## 232 259
## 233 260
## 234 261
## 235 262
## 236 263
## 237 264
## 238 265
## 239 266
## 240 267
## 241 268
## 242 269
## 243 270
## 244 271
## 245 272
## 246 273
## 247 274
## 248 275
## 249 276
## 250 277
## 251 278
## 252 279
## 253 280
## 254 281
## 255 282
## 256 283
## 257 285
## 258 287
## 259 288
## 260 289
## 261 290
## 262 291
## 263 292
## 264 293
## 265 294
## 266 295
## 267 296
## 268 299
## 269 300
## 270 301
## 271 302
## 272 303
## 273 304
## 274 305
## 275 306
## 276 307
## 277 308
## 278 309
## 279 312
## 280 313
## 281 314
## 282 315
## 283 316
## 284 317
## 285 318
## 286 319
## 287 320
## 288 321
## 289 322
## 290 324
## 291 325
## 292 326
## 293 327
## 294 328
## 295 329
## 296 330
## 297 331
## 298 332
## 299 333
## 300 334
## 301 335
## 302 336
## 303 337
## 304 338
## 305 339
## 306 340
## 307 341
## 308 342
## 309 343
## 310 344
## 311 345
## 312 346
## 313 347
## 314 348
## 315 349
## 316 350
## 317 351
## 318 352
## 319 353
## 320 354
## 321 355
## 322 356
## 323 357
## 324 358
## 325 360
## 326 361
## 327 362
## 328 363
## 329 364
## 330 365
## 331 366
## 332 367
## 333 368
## 334 369
## 335 370
## 336 371
## 337 372
## 338 373
## 339 374
## 340 375
## 341 376
## 342 377
## 343 378
## 344 379
## 345 380
## 346 381
## 347 382
## 348 383
## 349 384
## 350 387
## 351 388
## 352 389
## 353 390
## 354 391
## 355 392
## 356 393
## 357 401
## 358 405
## 359 407
## 360 408
## 361 409
## 362 410
## 363 412
## 364 413
## 365 414
## 366 415
## 367 416
## 368 417
## 369 418
## 370 419
## 371 420
## 372 421
## 373 422
## 374 423
## 375 424
## 376 425
## 377 426
## 378 427
## 379 428
## 380 429
## 381 431
## 382 432
## 383 433
## 384 434
## 385 435
## 386 436
## 387 437
## 388 438
## 389 439
## 390 440
## 391 441
## 392 442
## 393 443
## 394 444
## 395 445
## 396 446
## 397 447
## 398 448
## 399 449
## 400 450
## 401 451
## 402 452
## 403 453
## 404 454
## 405 455
## 406 456
## 407 457
## 408 458
## 409 459
## 410 460
## 411 461
## 412 463
## 413 464
## 414 465
## 415 466
## 416 467
## 417 468
## 418 469
## 419 470
## 420 471
## 421 472
## 422 473
## 423 474
## 424 475
## 425 476
## 426 477
## 427 479
## 428 480
## 429 481
## 430 482
## 431 483
## 432 484
## 433 485
## 434 486
## 435 487
## 436 488
## 437 489
## 438 490
## 439 491
## 440 492
## 441 493
## 442 494
## 443 495
## 444 496
## 445 497
## 446 498
## 447 499
## 448 500
## 449 501
## 450 502
## 451 504
## 452 505
## 453 506
## 454 507
## 455 508
## 456 509
## 457 510
## 458 511
## 459 512
## 460 513
## 461 514
## 462 515
## 463 516
## 464 517
## 465 518
## 466 519
## 467 520
## 468 521
## 469 522
## 470 523
## 471 524
## 472 526
## 473 527
## 474 528
## 475 529
## 476 531
## 477 532
## 478 533
## 479 534
## 480 535
## 481 536
## 482 537
## 483 538
## 484 539
## 485 540
## 486 541
## 487 542
## 488 543
## 489 544
## 490 546
## 491 547
## 492 548
## 493 549
## 494 550
## 495 551
## 496 552
## 497 553
## 498 554
## 499 555
## 500 556
## 501 558
## 502 559
## 503 561
## 504 562
## 505 563
## 506 564
## 507 565
## 508 567
## 509 568
## 510 569
## 511 571
## 512 573
## 513 574
## 514 575
## 515 577
## 516 580
## 517 581
## 518 582
## 519 585
## 520 586
## 521 587
## 522 588
## 523 589
## 524 590
## 525 592
## 526 593
## 527 594
## 528 595
## 529 596
## 530 597
## 531 599
## 532 600
## 533 603
## 534 605
## 535 606
## 536 608
## 537 609
## 538 610
## 539 611
## 540 612
## 541 613
## 542 614
## 543 615
## 544 616
## 545 617
## 546 619
## 547 620
## 548 621
## 549 626
## 550 627
## 551 628
## 552 630
## 553 631
## 554 632
## 555 633
## 556 635
## 557 637
## 558 638
## 559 639
## 560 640
## 561 647
## 562 648
## 563 650
## 564 651
## 565 653
## 566 656
## 567 659
## 568 661
## 569 662
## 570 663
## 571 664
## 572 665
## 573 667
## 574 668
## 575 670
## 576 671
## 577 673
## 578 674
## 579 678
## 580 679
## 581 680
## 582 681
## 583 685
## 584 687
## 585 688
## 586 690
## 587 691
## 588 692
## 589 694
## 590 695
## 591 696
## 592 697
## 593 698
## 594 700
## 595 702
## 596 703
## 597 704
## 598 705
## 599 707
## 600 708
## 601 709
## 602 710
## 603 711
## 604 714
## 605 715
## 606 718
## 607 719
## 608 720
## 609 721
## 610 722
## 611 724
## 612 725
## 613 726
## 614 728
## 615 731
## 616 733
## 617 735
## 618 736
## 619 737
## 620 741
## 621 742
## 622 743
## 623 745
## 624 746
## 625 747
## 626 748
## 627 750
## 628 753
## 629 754
## 630 755
## 631 756
## 632 757
## 633 759
## 634 760
## 635 761
## 636 762
## 637 764
## 638 765
## 639 766
## 640 767
## 641 769
## 642 775
## 643 778
## 644 779
## 645 780
## 646 781
## 647 782
## 648 783
## 649 784
## 650 785
## 651 786
## 652 787
## 653 788
## 654 793
## 655 798
## 656 799
## 657 800
## 658 801
## 659 802
## 660 803
## 661 804
## 662 805
## 663 806
## 664 808
## 665 809
## 666 810
## 667 813
## 668 816
## 669 818
## 670 820
## 671 824
## 672 828
## 673 829
## 674 830
## 675 831
## 676 832
## 677 833
## 678 834
## 679 835
## 680 836
## 681 837
## 682 838
## 683 839
## 684 840
## 685 841
## 686 842
## 687 844
## 688 845
## 689 846
## 690 848
## 691 849
## 692 850
## 693 851
## 694 852
## 695 854
## 696 858
## 697 861
## 698 864
## 699 865
## 700 866
## 701 867
## 702 869
## 703 870
## 704 872
## 705 875
## 706 876
## 707 879
## 708 880
## 709 881
## 710 882
## 711 885
## 712 886
## 713 888
## 714 889
## 715 891
## 716 892
## 717 893
## 718 896
## 719 897
## 720 898
## 721 899
## 722 900
## 723 901
## 724 902
## 725 903
## 726 904
## 727 905
## 728 906
## 729 907
## 730 908
## 731 909
## 732 910
## 733 911
## 734 912
## 735 913
## 736 914
## 737 915
## 738 916
## 739 917
## 740 918
## 741 919
## 742 920
## 743 921
## 744 922
## 745 923
## 746 924
## 747 926
## 748 927
## 749 928
## 750 929
## 751 930
## 752 931
## 753 932
## 754 933
## 755 934
## 756 935
## 757 936
## 758 937
## 759 938
## 760 939
## 761 940
## 762 941
## 763 942
## 764 943
## 765 944
## 766 945
## 767 946
## 768 947
## 769 948
## 770 949
## 771 950
## 772 951
## 773 952
## 774 953
## 775 954
## 776 955
## 777 956
## 778 957
## 779 960
## 780 961
## 781 962
## 782 963
## 783 964
## 784 965
## 785 966
## 786 968
## 787 969
## 788 970
## 789 971
## 790 972
## 791 973
## 792 976
## 793 980
## 794 981
## 795 982
## 796 984
## 797 986
## 798 987
## 799 988
## 800 990
## 801 991
## 802 992
## 803 994
## 804 996
## 805 997
## 806 998
## 807 999
## 808 1003
## 809 1004
## 810 1005
## 811 1006
## 812 1007
## 813 1008
## 814 1009
## 815 1010
## 816 1011
## 817 1012
## 818 1013
## 819 1014
## 820 1015
## 821 1016
## 822 1017
## 823 1018
## 824 1019
## 825 1020
## 826 1021
## 827 1022
## 828 1023
## 829 1024
## 830 1025
## 831 1026
## 832 1027
## 833 1028
## 834 1029
## 835 1030
## 836 1031
## 837 1032
## 838 1033
## 839 1034
## 840 1035
## 841 1036
## 842 1037
## 843 1040
## 844 1041
## 845 1042
## 846 1043
## 847 1044
## 848 1046
## 849 1047
## 850 1049
## 851 1050
## 852 1051
## 853 1053
## 854 1054
## 855 1055
## 856 1056
## 857 1057
## 858 1059
## 859 1060
## 860 1061
## 861 1063
## 862 1064
## 863 1066
## 864 1067
## 865 1068
## 866 1069
## 867 1073
## 868 1076
## 869 1077
## 870 1078
## 871 1079
## 872 1080
## 873 1081
## 874 1082
## 875 1083
## 876 1084
## 877 1085
## 878 1086
## 879 1087
## 880 1088
## 881 1089
## 882 1090
## 883 1091
## 884 1092
## 885 1093
## 886 1094
## 887 1095
## 888 1096
## 889 1097
## 890 1099
## 891 1100
## 892 1101
## 893 1103
## 894 1104
## 895 1105
## 896 1111
## 897 1112
## 898 1113
## 899 1114
## 900 1120
## 901 1123
## 902 1124
## 903 1125
## 904 1126
## 905 1127
## 906 1128
## 907 1129
## 908 1130
## 909 1131
## 910 1132
## 911 1133
## 912 1135
## 913 1136
## 914 1137
## 915 1145
## 916 1147
## 917 1148
## 918 1150
## 919 1151
## 920 1152
## 921 1153
## 922 1154
## 923 1161
## 924 1162
## 925 1163
## 926 1164
## 927 1165
## 928 1167
## 929 1168
## 930 1169
## 931 1171
## 932 1172
## 933 1173
## 934 1174
## 935 1175
## 936 1176
## 937 1177
## 938 1178
## 939 1179
## 940 1180
## 941 1181
## 942 1183
## 943 1184
## 944 1185
## 945 1186
## 946 1187
## 947 1188
## 948 1189
## 949 1190
## 950 1191
## 951 1192
## 952 1193
## 953 1194
## 954 1196
## 955 1197
## 956 1198
## 957 1199
## 958 1200
## 959 1201
## 960 1202
## 961 1203
## 962 1204
## 963 1206
## 964 1207
## 965 1208
## 966 1209
## 967 1210
## 968 1211
## 969 1212
## 970 1213
## 971 1214
## 972 1215
## 973 1216
## 974 1217
## 975 1218
## 976 1219
## 977 1220
## 978 1221
## 979 1222
## 980 1223
## 981 1224
## 982 1225
## 983 1226
## 984 1227
## 985 1228
## 986 1230
## 987 1231
## 988 1232
## 989 1233
## 990 1234
## 991 1235
## 992 1236
## 993 1237
## 994 1238
## 995 1240
## 996 1241
## 997 1242
## 998 1243
## 999 1244
## 1000 1245
## 1001 1246
## 1002 1247
## 1003 1248
## 1004 1249
## 1005 1250
## 1006 1251
## 1007 1252
## 1008 1253
## 1009 1254
## 1010 1255
## 1011 1256
## 1012 1257
## 1013 1258
## 1014 1259
## 1015 1260
## 1016 1261
## 1017 1262
## 1018 1263
## 1019 1264
## 1020 1265
## 1021 1266
## 1022 1267
## 1023 1268
## 1024 1269
## 1025 1270
## 1026 1271
## 1027 1272
## 1028 1273
## 1029 1274
## 1030 1275
## 1031 1276
## 1032 1277
## 1033 1278
## 1034 1279
## 1035 1280
## 1036 1281
## 1037 1282
## 1038 1283
## 1039 1284
## 1040 1285
## 1041 1286
## 1042 1287
## 1043 1288
## 1044 1289
## 1045 1290
## 1046 1291
## 1047 1292
## 1048 1293
## 1049 1295
## 1050 1296
## 1051 1297
## 1052 1298
## 1053 1299
## 1054 1300
## 1055 1301
## 1056 1302
## 1057 1303
## 1058 1304
## 1059 1305
## 1060 1306
## 1061 1307
## 1062 1310
## 1063 1311
## 1064 1312
## 1065 1317
## 1066 1320
## 1067 1321
## 1068 1322
## 1069 1323
## 1070 1324
## 1071 1325
## 1072 1326
## 1073 1327
## 1074 1328
## 1075 1329
## 1076 1330
## 1077 1331
## 1078 1332
## 1079 1333
## 1080 1334
## 1081 1335
## 1082 1336
## 1083 1337
## 1084 1339
## 1085 1340
## 1086 1341
## 1087 1342
## 1088 1343
## 1089 1344
## 1090 1345
## 1091 1346
## 1092 1347
## 1093 1348
## 1094 1349
## 1095 1350
## 1096 1351
## 1097 1352
## 1098 1353
## 1099 1354
## 1100 1355
## 1101 1356
## 1102 1357
## 1103 1358
## 1104 1359
## 1105 1361
## 1106 1363
## 1107 1365
## 1108 1366
## 1109 1367
## 1110 1369
## 1111 1370
## 1112 1371
## 1113 1372
## 1114 1373
## 1115 1374
## 1116 1375
## 1117 1376
## 1118 1377
## 1119 1378
## 1120 1379
## 1121 1380
## 1122 1381
## 1123 1382
## 1124 1384
## 1125 1385
## 1126 1387
## 1127 1388
## 1128 1389
## 1129 1390
## 1130 1391
## 1131 1392
## 1132 1393
## 1133 1394
## 1134 1395
## 1135 1396
## 1136 1397
## 1137 1398
## 1138 1399
## 1139 1401
## 1140 1404
## 1141 1405
## 1142 1406
## 1143 1407
## 1144 1408
## 1145 1409
## 1146 1410
## 1147 1411
## 1148 1413
## 1149 1414
## 1150 1415
## 1151 1416
## 1152 1417
## 1153 1419
## 1154 1420
## 1155 1422
## 1156 1423
## 1157 1425
## 1158 1427
## 1159 1428
## 1160 1429
## 1161 1430
## 1162 1431
## 1163 1432
## 1164 1433
## 1165 1437
## 1166 1438
## 1167 1440
## 1168 1441
## 1169 1442
## 1170 1444
## 1171 1445
## 1172 1446
## 1173 1447
## 1174 1449
## 1175 1450
## 1176 1453
## 1177 1454
## 1178 1455
## 1179 1456
## 1180 1457
## 1181 1458
## 1182 1459
## 1183 1460
## 1184 1461
## 1185 1463
## 1186 1464
## 1187 1465
## 1188 1466
## 1189 1468
## 1190 1472
## 1191 1473
## 1192 1474
## 1193 1475
## 1194 1476
## 1195 1479
## 1196 1480
## 1197 1482
## 1198 1483
## 1199 1484
## 1200 1485
## 1201 1487
## 1202 1488
## 1203 1489
## 1204 1490
## 1205 1493
## 1206 1495
## 1207 1497
## 1208 1498
## 1209 1499
## 1210 1500
## 1211 1501
## 1212 1502
## 1213 1503
## 1214 1504
## 1215 1507
## 1216 1508
## 1217 1513
## 1218 1515
## 1219 1516
## 1220 1517
## 1221 1518
## 1222 1523
## 1223 1525
## 1224 1526
## 1225 1527
## 1226 1529
## 1227 1531
## 1228 1532
## 1229 1535
## 1230 1537
## 1231 1539
## 1232 1541
## 1233 1542
## 1234 1543
## 1235 1544
## 1236 1545
## 1237 1546
## 1238 1549
## 1239 1550
## 1240 1552
## 1241 1554
## 1242 1555
## 1243 1556
## 1244 1562
## 1245 1563
## 1246 1564
## 1247 1566
## 1248 1569
## 1249 1570
## 1250 1571
## 1251 1572
## 1252 1573
## 1253 1575
## 1254 1580
## 1255 1581
## 1256 1582
## 1257 1583
## 1258 1584
## 1259 1586
## 1260 1587
## 1261 1588
## 1262 1589
## 1263 1590
## 1264 1591
## 1265 1592
## 1266 1593
## 1267 1594
## 1268 1595
## 1269 1596
## 1270 1597
## 1271 1598
## 1272 1599
## 1273 1600
## 1274 1601
## 1275 1602
## 1276 1603
## 1277 1604
## 1278 1605
## 1279 1606
## 1280 1608
## 1281 1609
## 1282 1610
## 1283 1611
## 1284 1612
## 1285 1613
## 1286 1614
## 1287 1615
## 1288 1616
## 1289 1617
## 1290 1619
## 1291 1620
## 1292 1621
## 1293 1623
## 1294 1624
## 1295 1625
## 1296 1626
## 1297 1627
## 1298 1629
## 1299 1631
## 1300 1632
## 1301 1633
## 1302 1635
## 1303 1636
## 1304 1639
## 1305 1640
## 1306 1641
## 1307 1642
## 1308 1643
## 1309 1644
## 1310 1645
## 1311 1646
## 1312 1647
## 1313 1648
## 1314 1649
## 1315 1652
## 1316 1653
## 1317 1654
## 1318 1655
## 1319 1657
## 1320 1658
## 1321 1660
## 1322 1661
## 1323 1663
## 1324 1665
## 1325 1667
## 1326 1668
## 1327 1669
## 1328 1670
## 1329 1671
## 1330 1672
## 1331 1673
## 1332 1674
## 1333 1676
## 1334 1678
## 1335 1680
## 1336 1681
## 1337 1682
## 1338 1683
## 1339 1684
## 1340 1686
## 1341 1687
## 1342 1688
## 1343 1689
## 1344 1690
## 1345 1692
## 1346 1693
## 1347 1694
## 1348 1696
## 1349 1699
## 1350 1701
## 1351 1702
## 1352 1703
## 1353 1704
## 1354 1707
## 1355 1711
## 1356 1713
## 1357 1715
## 1358 1717
## 1359 1719
## 1360 1721
## 1361 1722
## 1362 1726
## 1363 1727
## 1364 1728
## 1365 1729
## 1366 1730
## 1367 1731
## 1368 1732
## 1369 1733
## 1370 1734
## 1371 1735
## 1372 1739
## 1373 1744
## 1374 1746
## 1375 1747
## 1376 1748
## 1377 1750
## 1378 1752
## 1379 1753
## 1380 1754
## 1381 1755
## 1382 1756
## 1383 1757
## 1384 1759
## 1385 1760
## 1386 1762
## 1387 1767
## 1388 1769
## 1389 1771
## 1390 1772
## 1391 1777
## 1392 1779
## 1393 1783
## 1394 1784
## 1395 1785
## 1396 1788
## 1397 1791
## 1398 1792
## 1399 1794
## 1400 1795
## 1401 1796
## 1402 1797
## 1403 1798
## 1404 1799
## 1405 1801
## 1406 1804
## 1407 1805
## 1408 1806
## 1409 1807
## 1410 1809
## 1411 1810
## 1412 1812
## 1413 1816
## 1414 1819
## 1415 1821
## 1416 1822
## 1417 1824
## 1418 1826
## 1419 1827
## 1420 1831
## 1421 1833
## 1422 1834
## 1423 1835
## 1424 1836
## 1425 1837
## 1426 1839
## 1427 1840
## 1428 1841
## 1429 1844
## 1430 1845
## 1431 1846
## 1432 1848
## 1433 1852
## 1434 1854
## 1435 1855
## 1436 1856
## 1437 1858
## 1438 1859
## 1439 1860
## 1440 1861
## 1441 1862
## 1442 1863
## 1443 1864
## 1444 1865
## 1445 1866
## 1446 1870
## 1447 1873
## 1448 1874
## 1449 1875
## 1450 1876
## 1451 1878
## 1452 1880
## 1453 1881
## 1454 1882
## 1455 1883
## 1456 1884
## 1457 1885
## 1458 1886
## 1459 1887
## 1460 1888
## 1461 1889
## 1462 1891
## 1463 1892
## 1464 1894
## 1465 1895
## 1466 1896
## 1467 1897
## 1468 1900
## 1469 1901
## 1470 1902
## 1471 1903
## 1472 1904
## 1473 1907
## 1474 1909
## 1475 1910
## 1476 1911
## 1477 1912
## 1478 1913
## 1479 1914
## 1480 1916
## 1481 1917
## 1482 1918
## 1483 1919
## 1484 1920
## 1485 1921
## 1486 1922
## 1487 1923
## 1488 1924
## 1489 1925
## 1490 1926
## 1491 1927
## 1492 1928
## 1493 1929
## 1494 1931
## 1495 1932
## 1496 1933
## 1497 1934
## 1498 1935
## 1499 1936
## 1500 1937
## 1501 1938
## 1502 1939
## 1503 1940
## 1504 1941
## 1505 1942
## 1506 1943
## 1507 1944
## 1508 1945
## 1509 1946
## 1510 1947
## 1511 1948
## 1512 1949
## 1513 1950
## 1514 1951
## 1515 1952
## 1516 1953
## 1517 1954
## 1518 1955
## 1519 1956
## 1520 1957
## 1521 1958
## 1522 1959
## 1523 1960
## 1524 1961
## 1525 1962
## 1526 1963
## 1527 1964
## 1528 1965
## 1529 1966
## 1530 1967
## 1531 1968
## 1532 1969
## 1533 1970
## 1534 1971
## 1535 1972
## 1536 1973
## 1537 1974
## 1538 1975
## 1539 1976
## 1540 1977
## 1541 1978
## 1542 1979
## 1543 1980
## 1544 1981
## 1545 1982
## 1546 1983
## 1547 1984
## 1548 1985
## 1549 1986
## 1550 1987
## 1551 1988
## 1552 1989
## 1553 1990
## 1554 1991
## 1555 1992
## 1556 1993
## 1557 1994
## 1558 1995
## 1559 1996
## 1560 1997
## 1561 1998
## 1562 1999
## 1563 2000
## 1564 2001
## 1565 2002
## 1566 2003
## 1567 2004
## 1568 2005
## 1569 2006
## 1570 2007
## 1571 2008
## 1572 2009
## 1573 2010
## 1574 2011
## 1575 2012
## 1576 2013
## 1577 2014
## 1578 2015
## 1579 2016
## 1580 2017
## 1581 2018
## 1582 2019
## 1583 2020
## 1584 2021
## 1585 2022
## 1586 2023
## 1587 2024
## 1588 2025
## 1589 2026
## 1590 2027
## 1591 2028
## 1592 2029
## 1593 2031
## 1594 2032
## 1595 2033
## 1596 2034
## 1597 2035
## 1598 2036
## 1599 2037
## 1600 2038
## 1601 2039
## 1602 2040
## 1603 2041
## 1604 2042
## 1605 2043
## 1606 2044
## 1607 2045
## 1608 2046
## 1609 2047
## 1610 2048
## 1611 2049
## 1612 2050
## 1613 2051
## 1614 2052
## 1615 2053
## 1616 2054
## 1617 2055
## 1618 2056
## 1619 2057
## 1620 2058
## 1621 2059
## 1622 2060
## 1623 2062
## 1624 2063
## 1625 2064
## 1626 2065
## 1627 2066
## 1628 2067
## 1629 2068
## 1630 2069
## 1631 2070
## 1632 2071
## 1633 2072
## 1634 2073
## 1635 2074
## 1636 2075
## 1637 2076
## 1638 2077
## 1639 2078
## 1640 2079
## 1641 2080
## 1642 2081
## 1643 2082
## 1644 2083
## 1645 2084
## 1646 2085
## 1647 2086
## 1648 2087
## 1649 2088
## 1650 2089
## 1651 2090
## 1652 2091
## 1653 2092
## 1654 2093
## 1655 2094
## 1656 2095
## 1657 2096
## 1658 2097
## 1659 2098
## 1660 2099
## 1661 2100
## 1662 2101
## 1663 2102
## 1664 2103
## 1665 2104
## 1666 2105
## 1667 2106
## 1668 2107
## 1669 2108
## 1670 2109
## 1671 2110
## 1672 2111
## 1673 2112
## 1674 2113
## 1675 2114
## 1676 2115
## 1677 2116
## 1678 2117
## 1679 2118
## 1680 2119
## 1681 2120
## 1682 2121
## 1683 2122
## 1684 2123
## 1685 2124
## 1686 2125
## 1687 2126
## 1688 2128
## 1689 2130
## 1690 2131
## 1691 2132
## 1692 2133
## 1693 2134
## 1694 2135
## 1695 2136
## 1696 2137
## 1697 2138
## 1698 2139
## 1699 2140
## 1700 2141
## 1701 2142
## 1702 2143
## 1703 2144
## 1704 2145
## 1705 2146
## 1706 2147
## 1707 2148
## 1708 2149
## 1709 2150
## 1710 2151
## 1711 2152
## 1712 2153
## 1713 2154
## 1714 2155
## 1715 2159
## 1716 2160
## 1717 2161
## 1718 2162
## 1719 2163
## 1720 2164
## 1721 2165
## 1722 2166
## 1723 2167
## 1724 2168
## 1725 2169
## 1726 2170
## 1727 2171
## 1728 2173
## 1729 2174
## 1730 2176
## 1731 2177
## 1732 2178
## 1733 2180
## 1734 2181
## 1735 2182
## 1736 2183
## 1737 2184
## 1738 2186
## 1739 2187
## 1740 2188
## 1741 2189
## 1742 2190
## 1743 2191
## 1744 2193
## 1745 2194
## 1746 2195
## 1747 2197
## 1748 2200
## 1749 2201
## 1750 2202
## 1751 2203
## 1752 2204
## 1753 2205
## 1754 2206
## 1755 2207
## 1756 2208
## 1757 2210
## 1758 2212
## 1759 2214
## 1760 2215
## 1761 2219
## 1762 2221
## 1763 2227
## 1764 2231
## 1765 2232
## 1766 2236
## 1767 2237
## 1768 2238
## 1769 2239
## 1770 2240
## 1771 2241
## 1772 2243
## 1773 2244
## 1774 2245
## 1775 2246
## 1776 2247
## 1777 2248
## 1778 2249
## 1779 2250
## 1780 2252
## 1781 2253
## 1782 2254
## 1783 2255
## 1784 2256
## 1785 2257
## 1786 2259
## 1787 2260
## 1788 2261
## 1789 2262
## 1790 2263
## 1791 2264
## 1792 2265
## 1793 2266
## 1794 2267
## 1795 2268
## 1796 2269
## 1797 2271
## 1798 2272
## 1799 2273
## 1800 2275
## 1801 2276
## 1802 2278
## 1803 2279
## 1804 2280
## 1805 2282
## 1806 2283
## 1807 2284
## 1808 2285
## 1809 2286
## 1810 2287
## 1811 2288
## 1812 2289
## 1813 2290
## 1814 2291
## 1815 2292
## 1816 2294
## 1817 2295
## 1818 2296
## 1819 2297
## 1820 2300
## 1821 2301
## 1822 2302
## 1823 2303
## 1824 2304
## 1825 2305
## 1826 2306
## 1827 2307
## 1828 2310
## 1829 2311
## 1830 2312
## 1831 2313
## 1832 2314
## 1833 2315
## 1834 2316
## 1835 2318
## 1836 2320
## 1837 2321
## 1838 2322
## 1839 2323
## 1840 2324
## 1841 2325
## 1842 2327
## 1843 2328
## 1844 2329
## 1845 2330
## 1846 2331
## 1847 2333
## 1848 2334
## 1849 2335
## 1850 2336
## 1851 2337
## 1852 2338
## 1853 2339
## 1854 2340
## 1855 2342
## 1856 2344
## 1857 2345
## 1858 2346
## 1859 2347
## 1860 2348
## 1861 2349
## 1862 2350
## 1863 2351
## 1864 2352
## 1865 2353
## 1866 2354
## 1867 2355
## 1868 2356
## 1869 2357
## 1870 2359
## 1871 2360
## 1872 2361
## 1873 2362
## 1874 2363
## 1875 2364
## 1876 2365
## 1877 2366
## 1878 2367
## 1879 2368
## 1880 2369
## 1881 2370
## 1882 2371
## 1883 2372
## 1884 2373
## 1885 2374
## 1886 2375
## 1887 2376
## 1888 2377
## 1889 2378
## 1890 2379
## 1891 2380
## 1892 2381
## 1893 2382
## 1894 2383
## 1895 2384
## 1896 2385
## 1897 2386
## 1898 2387
## 1899 2388
## 1900 2389
## 1901 2390
## 1902 2391
## 1903 2392
## 1904 2393
## 1905 2394
## 1906 2395
## 1907 2396
## 1908 2397
## 1909 2398
## 1910 2399
## 1911 2400
## 1912 2401
## 1913 2402
## 1914 2403
## 1915 2404
## 1916 2405
## 1917 2406
## 1918 2407
## 1919 2408
## 1920 2409
## 1921 2410
## 1922 2411
## 1923 2412
## 1924 2413
## 1925 2414
## 1926 2415
## 1927 2416
## 1928 2417
## 1929 2418
## 1930 2419
## 1931 2420
## 1932 2421
## 1933 2422
## 1934 2423
## 1935 2424
## 1936 2425
## 1937 2427
## 1938 2428
## 1939 2429
## 1940 2430
## 1941 2431
## 1942 2432
## 1943 2433
## 1944 2434
## 1945 2435
## 1946 2436
## 1947 2437
## 1948 2438
## 1949 2439
## 1950 2440
## 1951 2441
## 1952 2442
## 1953 2443
## 1954 2445
## 1955 2446
## 1956 2447
## 1957 2448
## 1958 2449
## 1959 2450
## 1960 2451
## 1961 2453
## 1962 2454
## 1963 2455
## 1964 2456
## 1965 2457
## 1966 2458
## 1967 2459
## 1968 2460
## 1969 2461
## 1970 2462
## 1971 2463
## 1972 2464
## 1973 2465
## 1974 2467
## 1975 2468
## 1976 2469
## 1977 2470
## 1978 2471
## 1979 2472
## 1980 2473
## 1981 2474
## 1982 2475
## 1983 2476
## 1984 2478
## 1985 2479
## 1986 2481
## 1987 2482
## 1988 2483
## 1989 2485
## 1990 2486
## 1991 2487
## 1992 2488
## 1993 2490
## 1994 2491
## 1995 2492
## 1996 2493
## 1997 2494
## 1998 2495
## 1999 2496
## 2000 2497
## 2001 2498
## 2002 2499
## 2003 2500
## 2004 2501
## 2005 2502
## 2006 2504
## 2007 2505
## 2008 2506
## 2009 2507
## 2010 2511
## 2011 2513
## 2012 2514
## 2013 2515
## 2014 2516
## 2015 2517
## 2016 2518
## 2017 2519
## 2018 2520
## 2019 2521
## 2020 2522
## 2021 2523
## 2022 2524
## 2023 2525
## 2024 2526
## 2025 2527
## 2026 2528
## 2027 2529
## 2028 2530
## 2029 2531
## 2030 2532
## 2031 2533
## 2032 2534
## 2033 2535
## 2034 2536
## 2035 2537
## 2036 2539
## 2037 2540
## 2038 2541
## 2039 2542
## 2040 2545
## 2041 2546
## 2042 2548
## 2043 2549
## 2044 2550
## 2045 2551
## 2046 2552
## 2047 2553
## 2048 2554
## 2049 2555
## 2050 2557
## 2051 2558
## 2052 2559
## 2053 2560
## 2054 2561
## 2055 2562
## 2056 2563
## 2057 2565
## 2058 2566
## 2059 2567
## 2060 2568
## 2061 2569
## 2062 2570
## 2063 2571
## 2064 2572
## 2065 2573
## 2066 2574
## 2067 2575
## 2068 2577
## 2069 2579
## 2070 2580
## 2071 2581
## 2072 2582
## 2073 2583
## 2074 2585
## 2075 2586
## 2076 2587
## 2077 2589
## 2078 2590
## 2079 2594
## 2080 2596
## 2081 2597
## 2082 2598
## 2083 2599
## 2084 2600
## 2085 2605
## 2086 2606
## 2087 2607
## 2088 2609
## 2089 2610
## 2090 2611
## 2091 2612
## 2092 2613
## 2093 2615
## 2094 2616
## 2095 2617
## 2096 2618
## 2097 2620
## 2098 2621
## 2099 2622
## 2100 2624
## 2101 2625
## 2102 2626
## 2103 2627
## 2104 2628
## 2105 2629
## 2106 2630
## 2107 2631
## 2108 2633
## 2109 2634
## 2110 2635
## 2111 2636
## 2112 2637
## 2113 2638
## 2114 2639
## 2115 2640
## 2116 2641
## 2117 2642
## 2118 2643
## 2119 2644
## 2120 2647
## 2121 2648
## 2122 2649
## 2123 2650
## 2124 2651
## 2125 2652
## 2126 2653
## 2127 2654
## 2128 2655
## 2129 2656
## 2130 2657
## 2131 2659
## 2132 2660
## 2133 2661
## 2134 2662
## 2135 2664
## 2136 2668
## 2137 2669
## 2138 2670
## 2139 2671
## 2140 2672
## 2141 2673
## 2142 2674
## 2143 2676
## 2144 2677
## 2145 2678
## 2146 2681
## 2147 2682
## 2148 2683
## 2149 2686
## 2150 2687
## 2151 2688
## 2152 2689
## 2153 2690
## 2154 2691
## 2155 2692
## 2156 2693
## 2157 2694
## 2158 2696
## 2159 2697
## 2160 2699
## 2161 2700
## 2162 2701
## 2163 2702
## 2164 2704
## 2165 2706
## 2166 2707
## 2167 2708
## 2168 2709
## 2169 2710
## 2170 2712
## 2171 2713
## 2172 2714
## 2173 2715
## 2174 2716
## 2175 2717
## 2176 2718
## 2177 2719
## 2178 2720
## 2179 2721
## 2180 2722
## 2181 2723
## 2182 2724
## 2183 2725
## 2184 2726
## 2185 2727
## 2186 2728
## 2187 2729
## 2188 2730
## 2189 2731
## 2190 2732
## 2191 2733
## 2192 2734
## 2193 2735
## 2194 2736
## 2195 2738
## 2196 2739
## 2197 2741
## 2198 2745
## 2199 2746
## 2200 2747
## 2201 2748
## 2202 2749
## 2203 2750
## 2204 2751
## 2205 2752
## 2206 2753
## 2207 2754
## 2208 2755
## 2209 2757
## 2210 2758
## 2211 2759
## 2212 2761
## 2213 2762
## 2214 2763
## 2215 2764
## 2216 2766
## 2217 2767
## 2218 2769
## 2219 2770
## 2220 2771
## 2221 2772
## 2222 2774
## 2223 2775
## 2224 2776
## 2225 2779
## 2226 2780
## 2227 2781
## 2228 2782
## 2229 2783
## 2230 2784
## 2231 2786
## 2232 2787
## 2233 2788
## 2234 2789
## 2235 2790
## 2236 2791
## 2237 2792
## 2238 2793
## 2239 2794
## 2240 2795
## 2241 2796
## 2242 2797
## 2243 2798
## 2244 2799
## 2245 2800
## 2246 2801
## 2247 2802
## 2248 2803
## 2249 2804
## 2250 2805
## 2251 2806
## 2252 2807
## 2253 2808
## 2254 2809
## 2255 2810
## 2256 2812
## 2257 2815
## 2258 2816
## 2259 2817
## 2260 2819
## 2261 2820
## 2262 2822
## 2263 2824
## 2264 2826
## 2265 2827
## 2266 2828
## 2267 2829
## 2268 2832
## 2269 2835
## 2270 2836
## 2271 2837
## 2272 2839
## 2273 2840
## 2274 2841
## 2275 2843
## 2276 2844
## 2277 2845
## 2278 2846
## 2279 2847
## 2280 2848
## 2281 2849
## 2282 2850
## 2283 2851
## 2284 2852
## 2285 2853
## 2286 2855
## 2287 2856
## 2288 2857
## 2289 2858
## 2290 2859
## 2291 2860
## 2292 2861
## 2293 2862
## 2294 2863
## 2295 2864
## 2296 2866
## 2297 2867
## 2298 2868
## 2299 2869
## 2300 2870
## 2301 2871
## 2302 2872
## 2303 2874
## 2304 2875
## 2305 2876
## 2306 2877
## 2307 2878
## 2308 2879
## 2309 2880
## 2310 2881
## 2311 2882
## 2312 2883
## 2313 2884
## 2314 2885
## 2315 2886
## 2316 2887
## 2317 2888
## 2318 2889
## 2319 2890
## 2320 2891
## 2321 2892
## 2322 2893
## 2323 2894
## 2324 2897
## 2325 2898
## 2326 2899
## 2327 2900
## 2328 2901
## 2329 2902
## 2330 2903
## 2331 2904
## 2332 2905
## 2333 2906
## 2334 2907
## 2335 2908
## 2336 2912
## 2337 2913
## 2338 2915
## 2339 2916
## 2340 2917
## 2341 2918
## 2342 2919
## 2343 2920
## 2344 2921
## 2345 2922
## 2346 2923
## 2347 2924
## 2348 2925
## 2349 2926
## 2350 2927
## 2351 2928
## 2352 2929
## 2353 2930
## 2354 2932
## 2355 2935
## 2356 2936
## 2357 2937
## 2358 2938
## 2359 2939
## 2360 2940
## 2361 2941
## 2362 2942
## 2363 2943
## 2364 2944
## 2365 2945
## 2366 2946
## 2367 2947
## 2368 2948
## 2369 2949
## 2370 2950
## 2371 2951
## 2372 2952
## 2373 2953
## 2374 2956
## 2375 2959
## 2376 2961
## 2377 2962
## 2378 2964
## 2379 2966
## 2380 2967
## 2381 2968
## 2382 2969
## 2383 2970
## 2384 2971
## 2385 2972
## 2386 2973
## 2387 2974
## 2388 2975
## 2389 2976
## 2390 2977
## 2391 2978
## 2392 2979
## 2393 2981
## 2394 2982
## 2395 2983
## 2396 2984
## 2397 2985
## 2398 2986
## 2399 2987
## 2400 2988
## 2401 2989
## 2402 2990
## 2403 2991
## 2404 2992
## 2405 2993
## 2406 2995
## 2407 2996
## 2408 2997
## 2409 2998
## 2410 3000
## 2411 3001
## 2412 3002
## 2413 3003
## 2414 3004
## 2415 3005
## 2416 3006
## 2417 3007
## 2418 3008
## 2419 3010
## 2420 3011
## 2421 3013
## 2422 3015
## 2423 3016
## 2424 3017
## 2425 3018
## 2426 3019
## 2427 3020
## 2428 3021
## 2429 3022
## 2430 3024
## 2431 3025
## 2432 3028
## 2433 3029
## 2434 3030
## 2435 3031
## 2436 3032
## 2437 3033
## 2438 3034
## 2439 3035
## 2440 3036
## 2441 3037
## 2442 3038
## 2443 3039
## 2444 3040
## 2445 3041
## 2446 3042
## 2447 3043
## 2448 3044
## 2449 3045
## 2450 3046
## 2451 3047
## 2452 3048
## 2453 3051
## 2454 3052
## 2455 3053
## 2456 3054
## 2457 3055
## 2458 3057
## 2459 3060
## 2460 3061
## 2461 3062
## 2462 3063
## 2463 3064
## 2464 3066
## 2465 3067
## 2466 3068
## 2467 3069
## 2468 3070
## 2469 3071
## 2470 3072
## 2471 3074
## 2472 3075
## 2473 3076
## 2474 3077
## 2475 3078
## 2476 3079
## 2477 3081
## 2478 3082
## 2479 3083
## 2480 3086
## 2481 3087
## 2482 3088
## 2483 3089
## 2484 3090
## 2485 3091
## 2486 3093
## 2487 3094
## 2488 3095
## 2489 3096
## 2490 3097
## 2491 3098
## 2492 3099
## 2493 3100
## 2494 3101
## 2495 3102
## 2496 3103
## 2497 3104
## 2498 3105
## 2499 3106
## 2500 3107
## 2501 3108
## 2502 3109
## 2503 3110
## 2504 3111
## 2505 3112
## 2506 3113
## 2507 3114
## 2508 3115
## 2509 3116
## 2510 3117
## 2511 3118
## 2512 3120
## 2513 3121
## 2514 3122
## 2515 3125
## 2516 3127
## 2517 3128
## 2518 3129
## 2519 3130
## 2520 3133
## 2521 3134
## 2522 3135
## 2523 3136
## 2524 3138
## 2525 3140
## 2526 3141
## 2527 3142
## 2528 3143
## 2529 3144
## 2530 3145
## 2531 3146
## 2532 3147
## 2533 3148
## 2534 3150
## 2535 3152
## 2536 3153
## 2537 3155
## 2538 3156
## 2539 3157
## 2540 3158
## 2541 3159
## 2542 3160
## 2543 3161
## 2544 3163
## 2545 3165
## 2546 3166
## 2547 3167
## 2548 3168
## 2549 3169
## 2550 3171
## 2551 3173
## 2552 3174
## 2553 3175
## 2554 3176
## 2555 3177
## 2556 3178
## 2557 3179
## 2558 3180
## 2559 3181
## 2560 3182
## 2561 3183
## 2562 3185
## 2563 3186
## 2564 3188
## 2565 3189
## 2566 3190
## 2567 3192
## 2568 3194
## 2569 3196
## 2570 3197
## 2571 3198
## 2572 3199
## 2573 3200
## 2574 3201
## 2575 3202
## 2576 3203
## 2577 3204
## 2578 3205
## 2579 3206
## 2580 3207
## 2581 3208
## 2582 3210
## 2583 3211
## 2584 3213
## 2585 3214
## 2586 3216
## 2587 3217
## 2588 3218
## 2589 3219
## 2590 3221
## 2591 3223
## 2592 3224
## 2593 3225
## 2594 3232
## 2595 3235
## 2596 3238
## 2597 3239
## 2598 3240
## 2599 3241
## 2600 3243
## 2601 3244
## 2602 3245
## 2603 3246
## 2604 3247
## 2605 3248
## 2606 3249
## 2607 3250
## 2608 3251
## 2609 3252
## 2610 3253
## 2611 3254
## 2612 3255
## 2613 3256
## 2614 3257
## 2615 3258
## 2616 3259
## 2617 3260
## 2618 3261
## 2619 3262
## 2620 3263
## 2621 3264
## 2622 3265
## 2623 3266
## 2624 3267
## 2625 3268
## 2626 3269
## 2627 3270
## 2628 3271
## 2629 3272
## 2630 3273
## 2631 3274
## 2632 3275
## 2633 3276
## 2634 3281
## 2635 3282
## 2636 3284
## 2637 3285
## 2638 3286
## 2639 3287
## 2640 3289
## 2641 3292
## 2642 3294
## 2643 3296
## 2644 3298
## 2645 3299
## 2646 3300
## 2647 3301
## 2648 3302
## 2649 3303
## 2650 3304
## 2651 3306
## 2652 3307
## 2653 3308
## 2654 3309
## 2655 3310
## 2656 3313
## 2657 3314
## 2658 3316
## 2659 3317
## 2660 3318
## 2661 3320
## 2662 3324
## 2663 3325
## 2664 3326
## 2665 3327
## 2666 3328
## 2667 3329
## 2668 3330
## 2669 3331
## 2670 3334
## 2671 3338
## 2672 3339
## 2673 3340
## 2674 3341
## 2675 3342
## 2676 3343
## 2677 3344
## 2678 3347
## 2679 3349
## 2680 3350
## 2681 3351
## 2682 3354
## 2683 3355
## 2684 3357
## 2685 3358
## 2686 3359
## 2687 3360
## 2688 3361
## 2689 3362
## 2690 3363
## 2691 3364
## 2692 3365
## 2693 3368
## 2694 3370
## 2695 3371
## 2696 3377
## 2697 3379
## 2698 3380
## 2699 3384
## 2700 3385
## 2701 3386
## 2702 3387
## 2703 3388
## 2704 3390
## 2705 3391
## 2706 3392
## 2707 3393
## 2708 3394
## 2709 3395
## 2710 3396
## 2711 3397
## 2712 3398
## 2713 3399
## 2714 3400
## 2715 3401
## 2716 3402
## 2717 3404
## 2718 3405
## 2719 3406
## 2720 3408
## 2721 3409
## 2722 3412
## 2723 3414
## 2724 3415
## 2725 3417
## 2726 3418
## 2727 3420
## 2728 3421
## 2729 3422
## 2730 3423
## 2731 3424
## 2732 3425
## 2733 3426
## 2734 3427
## 2735 3428
## 2736 3429
## 2737 3430
## 2738 3431
## 2739 3432
## 2740 3434
## 2741 3435
## 2742 3436
## 2743 3437
## 2744 3438
## 2745 3439
## 2746 3440
## 2747 3441
## 2748 3442
## 2749 3444
## 2750 3445
## 2751 3446
## 2752 3447
## 2753 3448
## 2754 3449
## 2755 3450
## 2756 3451
## 2757 3452
## 2758 3453
## 2759 3454
## 2760 3456
## 2761 3457
## 2762 3459
## 2763 3460
## 2764 3461
## 2765 3462
## 2766 3463
## 2767 3465
## 2768 3466
## 2769 3467
## 2770 3468
## 2771 3469
## 2772 3470
## 2773 3471
## 2774 3474
## 2775 3475
## 2776 3476
## 2777 3477
## 2778 3478
## 2779 3479
## 2780 3480
## 2781 3481
## 2782 3483
## 2783 3484
## 2784 3487
## 2785 3489
## 2786 3490
## 2787 3491
## 2788 3492
## 2789 3494
## 2790 3495
## 2791 3496
## 2792 3497
## 2793 3498
## 2794 3499
## 2795 3500
## 2796 3501
## 2797 3502
## 2798 3503
## 2799 3504
## 2800 3505
## 2801 3506
## 2802 3507
## 2803 3508
## 2804 3509
## 2805 3510
## 2806 3511
## 2807 3512
## 2808 3513
## 2809 3515
## 2810 3516
## 2811 3518
## 2812 3519
## 2813 3520
## 2814 3521
## 2815 3522
## 2816 3524
## 2817 3525
## 2818 3526
## 2819 3527
## 2820 3528
## 2821 3529
## 2822 3531
## 2823 3534
## 2824 3535
## 2825 3536
## 2826 3537
## 2827 3538
## 2828 3539
## 2829 3540
## 2830 3543
## 2831 3544
## 2832 3545
## 2833 3546
## 2834 3547
## 2835 3548
## 2836 3549
## 2837 3550
## 2838 3551
## 2839 3552
## 2840 3553
## 2841 3554
## 2842 3555
## 2843 3556
## 2844 3557
## 2845 3559
## 2846 3560
## 2847 3563
## 2848 3564
## 2849 3565
## 2850 3566
## 2851 3567
## 2852 3568
## 2853 3569
## 2854 3571
## 2855 3572
## 2856 3573
## 2857 3574
## 2858 3575
## 2859 3576
## 2860 3577
## 2861 3578
## 2862 3579
## 2863 3580
## 2864 3581
## 2865 3584
## 2866 3587
## 2867 3588
## 2868 3590
## 2869 3591
## 2870 3593
## 2871 3594
## 2872 3596
## 2873 3598
## 2874 3599
## 2875 3600
## 2876 3602
## 2877 3604
## 2878 3605
## 2879 3606
## 2880 3608
## 2881 3609
## 2882 3611
## 2883 3612
## 2884 3613
## 2885 3614
## 2886 3615
## 2887 3616
## 2888 3617
## 2889 3618
## 2890 3619
## 2891 3620
## 2892 3621
## 2893 3622
## 2894 3623
## 2895 3624
## 2896 3626
## 2897 3627
## 2898 3628
## 2899 3629
## 2900 3632
## 2901 3633
## 2902 3634
## 2903 3635
## 2904 3637
## 2905 3638
## 2906 3639
## 2907 3640
## 2908 3643
## 2909 3646
## 2910 3649
## 2911 3653
## 2912 3654
## 2913 3655
## 2914 3656
## 2915 3657
## 2916 3658
## 2917 3659
## 2918 3660
## 2919 3661
## 2920 3662
## 2921 3663
## 2922 3664
## 2923 3665
## 2924 3668
## 2925 3669
## 2926 3671
## 2927 3672
## 2928 3673
## 2929 3674
## 2930 3675
## 2931 3676
## 2932 3677
## 2933 3678
## 2934 3679
## 2935 3680
## 2936 3681
## 2937 3682
## 2938 3683
## 2939 3684
## 2940 3685
## 2941 3686
## 2942 3687
## 2943 3688
## 2944 3689
## 2945 3690
## 2946 3691
## 2947 3692
## 2948 3693
## 2949 3694
## 2950 3695
## 2951 3696
## 2952 3697
## 2953 3698
## 2954 3699
## 2955 3700
## 2956 3701
## 2957 3702
## 2958 3703
## 2959 3704
## 2960 3705
## 2961 3706
## 2962 3707
## 2963 3708
## 2964 3709
## 2965 3710
## 2966 3712
## 2967 3713
## 2968 3714
## 2969 3715
## 2970 3716
## 2971 3717
## 2972 3718
## 2973 3719
## 2974 3720
## 2975 3721
## 2976 3723
## 2977 3724
## 2978 3725
## 2979 3726
## 2980 3727
## 2981 3728
## 2982 3729
## 2983 3730
## 2984 3731
## 2985 3732
## 2986 3733
## 2987 3734
## 2988 3735
## 2989 3736
## 2990 3737
## 2991 3738
## 2992 3739
## 2993 3740
## 2994 3741
## 2995 3742
## 2996 3743
## 2997 3744
## 2998 3745
## 2999 3746
## 3000 3747
## 3001 3751
## 3002 3752
## 3003 3753
## 3004 3754
## 3005 3755
## 3006 3757
## 3007 3758
## 3008 3759
## 3009 3760
## 3010 3761
## 3011 3763
## 3012 3764
## 3013 3765
## 3014 3766
## 3015 3768
## 3016 3769
## 3017 3770
## 3018 3771
## 3019 3773
## 3020 3774
## 3021 3775
## 3022 3777
## 3023 3780
## 3024 3783
## 3025 3784
## 3026 3785
## 3027 3786
## 3028 3787
## 3029 3788
## 3030 3789
## 3031 3790
## 3032 3791
## 3033 3792
## 3034 3793
## 3035 3794
## 3036 3795
## 3037 3798
## 3038 3799
## 3039 3800
## 3040 3801
## 3041 3802
## 3042 3804
## 3043 3805
## 3044 3806
## 3045 3807
## 3046 3809
## 3047 3810
## 3048 3811
## 3049 3812
## 3050 3813
## 3051 3814
## 3052 3816
## 3053 3819
## 3054 3820
## 3055 3821
## 3056 3822
## 3057 3823
## 3058 3824
## 3059 3825
## 3060 3826
## 3061 3827
## 3062 3829
## 3063 3831
## 3064 3832
## 3065 3833
## 3066 3834
## 3067 3835
## 3068 3836
## 3069 3837
## 3070 3838
## 3071 3839
## 3072 3840
## 3073 3841
## 3074 3843
## 3075 3844
## 3076 3845
## 3077 3846
## 3078 3847
## 3079 3848
## 3080 3849
## 3081 3851
## 3082 3852
## 3083 3854
## 3084 3855
## 3085 3857
## 3086 3858
## 3087 3859
## 3088 3860
## 3089 3861
## 3090 3863
## 3091 3864
## 3092 3865
## 3093 3868
## 3094 3869
## 3095 3870
## 3096 3871
## 3097 3872
## 3098 3873
## 3099 3875
## 3100 3877
## 3101 3879
## 3102 3880
## 3103 3882
## 3104 3883
## 3105 3885
## 3106 3886
## 3107 3889
## 3108 3890
## 3109 3891
## 3110 3892
## 3111 3893
## 3112 3895
## 3113 3896
## 3114 3897
## 3115 3900
## 3116 3901
## 3117 3902
## 3118 3903
## 3119 3905
## 3120 3906
## 3121 3908
## 3122 3909
## 3123 3910
## 3124 3911
## 3125 3913
## 3126 3914
## 3127 3915
## 3128 3916
## 3129 3917
## 3130 3918
## 3131 3919
## 3132 3920
## 3133 3921
## 3134 3922
## 3135 3923
## 3136 3924
## 3137 3925
## 3138 3926
## 3139 3927
## 3140 3928
## 3141 3929
## 3142 3930
## 3143 3932
## 3144 3933
## 3145 3934
## 3146 3936
## 3147 3937
## 3148 3938
## 3149 3939
## 3150 3940
## 3151 3941
## 3152 3942
## 3153 3943
## 3154 3945
## 3155 3946
## 3156 3947
## 3157 3948
## 3158 3949
## 3159 3950
## 3160 3951
## 3161 3952
## 3162 3953
## 3163 3955
## 3164 3956
## 3165 3957
## 3166 3959
## 3167 3960
## 3168 3961
## 3169 3962
## 3170 3963
## 3171 3964
## 3172 3965
## 3173 3966
## 3174 3967
## 3175 3968
## 3176 3969
## 3177 3970
## 3178 3971
## 3179 3972
## 3180 3973
## 3181 3975
## 3182 3976
## 3183 3977
## 3184 3978
## 3185 3979
## 3186 3980
## 3187 3981
## 3188 3983
## 3189 3984
## 3190 3985
## 3191 3986
## 3192 3987
## 3193 3988
## 3194 3989
## 3195 3990
## 3196 3991
## 3197 3992
## 3198 3993
## 3199 3994
## 3200 3996
## 3201 3997
## 3202 3998
## 3203 3999
## 3204 4000
## 3205 4001
## 3206 4002
## 3207 4003
## 3208 4005
## 3209 4006
## 3210 4007
## 3211 4008
## 3212 4009
## 3213 4010
## 3214 4011
## 3215 4012
## 3216 4014
## 3217 4015
## 3218 4016
## 3219 4017
## 3220 4018
## 3221 4019
## 3222 4020
## 3223 4021
## 3224 4022
## 3225 4023
## 3226 4024
## 3227 4025
## 3228 4026
## 3229 4027
## 3230 4029
## 3231 4030
## 3232 4031
## 3233 4033
## 3234 4034
## 3235 4035
## 3236 4036
## 3237 4037
## 3238 4039
## 3239 4040
## 3240 4041
## 3241 4042
## 3242 4043
## 3243 4045
## 3244 4046
## 3245 4047
## 3246 4048
## 3247 4051
## 3248 4052
## 3249 4053
## 3250 4054
## 3251 4055
## 3252 4056
## 3253 4060
## 3254 4061
## 3255 4062
## 3256 4063
## 3257 4066
## 3258 4067
## 3259 4068
## 3260 4069
## 3261 4073
## 3262 4076
## 3263 4077
## 3264 4079
## 3265 4080
## 3266 4081
## 3267 4082
## 3268 4084
## 3269 4085
## 3270 4086
## 3271 4088
## 3272 4089
## 3273 4090
## 3274 4091
## 3275 4092
## 3276 4095
## 3277 4098
## 3278 4101
## 3279 4102
## 3280 4103
## 3281 4104
## 3282 4105
## 3283 4106
## 3284 4108
## 3285 4109
## 3286 4111
## 3287 4114
## 3288 4115
## 3289 4116
## 3290 4117
## 3291 4121
## 3292 4122
## 3293 4123
## 3294 4124
## 3295 4126
## 3296 4128
## 3297 4130
## 3298 4131
## 3299 4132
## 3300 4133
## 3301 4135
## 3302 4136
## 3303 4139
## 3304 4140
## 3305 4141
## 3306 4142
## 3307 4143
## 3308 4144
## 3309 4146
## 3310 4148
## 3311 4149
## 3312 4151
## 3313 4153
## 3314 4155
## 3315 4156
## 3316 4158
## 3317 4159
## 3318 4161
## 3319 4162
## 3320 4166
## 3321 4167
## 3322 4168
## 3323 4169
## 3324 4171
## 3325 4173
## 3326 4174
## 3327 4175
## 3328 4177
## 3329 4178
## 3330 4179
## 3331 4180
## 3332 4181
## 3333 4183
## 3334 4184
## 3335 4185
## 3336 4186
## 3337 4187
## 3338 4188
## 3339 4189
## 3340 4190
## 3341 4191
## 3342 4194
## 3343 4195
## 3344 4197
## 3345 4198
## 3346 4200
## 3347 4201
## 3348 4203
## 3349 4205
## 3350 4207
## 3351 4208
## 3352 4210
## 3353 4211
## 3354 4212
## 3355 4213
## 3356 4214
## 3357 4215
## 3358 4216
## 3359 4217
## 3360 4218
## 3361 4219
## 3362 4220
## 3363 4221
## 3364 4222
## 3365 4223
## 3366 4224
## 3367 4225
## 3368 4226
## 3369 4228
## 3370 4229
## 3371 4231
## 3372 4232
## 3373 4233
## 3374 4234
## 3375 4235
## 3376 4236
## 3377 4237
## 3378 4238
## 3379 4239
## 3380 4241
## 3381 4246
## 3382 4247
## 3383 4248
## 3384 4251
## 3385 4252
## 3386 4254
## 3387 4255
## 3388 4262
## 3389 4263
## 3390 4265
## 3391 4266
## 3392 4267
## 3393 4268
## 3394 4270
## 3395 4271
## 3396 4273
## 3397 4274
## 3398 4275
## 3399 4276
## 3400 4277
## 3401 4278
## 3402 4279
## 3403 4280
## 3404 4281
## 3405 4282
## 3406 4284
## 3407 4290
## 3408 4291
## 3409 4292
## 3410 4293
## 3411 4294
## 3412 4296
## 3413 4297
## 3414 4298
## 3415 4299
## 3416 4300
## 3417 4302
## 3418 4304
## 3419 4305
## 3420 4306
## 3421 4308
## 3422 4310
## 3423 4312
## 3424 4316
## 3425 4317
## 3426 4318
## 3427 4319
## 3428 4321
## 3429 4322
## 3430 4324
## 3431 4326
## 3432 4327
## 3433 4329
## 3434 4332
## 3435 4333
## 3436 4334
## 3437 4337
## 3438 4338
## 3439 4339
## 3440 4340
## 3441 4342
## 3442 4343
## 3443 4344
## 3444 4345
## 3445 4347
## 3446 4349
## 3447 4350
## 3448 4351
## 3449 4352
## 3450 4353
## 3451 4354
## 3452 4355
## 3453 4356
## 3454 4357
## 3455 4359
## 3456 4360
## 3457 4361
## 3458 4366
## 3459 4367
## 3460 4368
## 3461 4369
## 3462 4370
## 3463 4371
## 3464 4372
## 3465 4375
## 3466 4378
## 3467 4380
## 3468 4381
## 3469 4383
## 3470 4384
## 3471 4386
## 3472 4387
## 3473 4388
## 3474 4389
## 3475 4390
## 3476 4391
## 3477 4392
## 3478 4394
## 3479 4396
## 3480 4397
## 3481 4399
## 3482 4401
## 3483 4402
## 3484 4403
## 3485 4404
## 3486 4405
## 3487 4406
## 3488 4407
## 3489 4409
## 3490 4410
## 3491 4411
## 3492 4414
## 3493 4415
## 3494 4417
## 3495 4420
## 3496 4422
## 3497 4424
## 3498 4426
## 3499 4427
## 3500 4428
## 3501 4432
## 3502 4433
## 3503 4437
## 3504 4438
## 3505 4440
## 3506 4441
## 3507 4442
## 3508 4443
## 3509 4444
## 3510 4445
## 3511 4446
## 3512 4447
## 3513 4448
## 3514 4450
## 3515 4451
## 3516 4452
## 3517 4453
## 3518 4454
## 3519 4458
## 3520 4459
## 3521 4462
## 3522 4464
## 3523 4465
## 3524 4466
## 3525 4467
## 3526 4469
## 3527 4470
## 3528 4471
## 3529 4473
## 3530 4474
## 3531 4475
## 3532 4477
## 3533 4478
## 3534 4479
## 3535 4480
## 3536 4482
## 3537 4483
## 3538 4486
## 3539 4487
## 3540 4488
## 3541 4489
## 3542 4490
## 3543 4491
## 3544 4492
## 3545 4493
## 3546 4495
## 3547 4496
## 3548 4498
## 3549 4499
## 3550 4500
## 3551 4501
## 3552 4502
## 3553 4503
## 3554 4506
## 3555 4508
## 3556 4509
## 3557 4511
## 3558 4515
## 3559 4516
## 3560 4518
## 3561 4519
## 3562 4520
## 3563 4521
## 3564 4522
## 3565 4523
## 3566 4524
## 3567 4526
## 3568 4527
## 3569 4528
## 3570 4529
## 3571 4531
## 3572 4532
## 3573 4533
## 3574 4534
## 3575 4535
## 3576 4537
## 3577 4538
## 3578 4539
## 3579 4541
## 3580 4543
## 3581 4544
## 3582 4545
## 3583 4546
## 3584 4550
## 3585 4552
## 3586 4553
## 3587 4555
## 3588 4557
## 3589 4558
## 3590 4559
## 3591 4560
## 3592 4561
## 3593 4562
## 3594 4563
## 3595 4564
## 3596 4565
## 3597 4566
## 3598 4567
## 3599 4568
## 3600 4569
## 3601 4570
## 3602 4571
## 3603 4572
## 3604 4573
## 3605 4577
## 3606 4578
## 3607 4584
## 3608 4585
## 3609 4587
## 3610 4589
## 3611 4590
## 3612 4591
## 3613 4592
## 3614 4593
## 3615 4600
## 3616 4602
## 3617 4603
## 3618 4605
## 3619 4606
## 3620 4608
## 3621 4610
## 3622 4612
## 3623 4614
## 3624 4615
## 3625 4616
## 3626 4617
## 3627 4618
## 3628 4619
## 3629 4621
## 3630 4622
## 3631 4623
## 3632 4624
## 3633 4625
## 3634 4626
## 3635 4627
## 3636 4628
## 3637 4629
## 3638 4630
## 3639 4632
## 3640 4634
## 3641 4636
## 3642 4638
## 3643 4639
## 3644 4640
## 3645 4641
## 3646 4642
## 3647 4643
## 3648 4644
## 3649 4645
## 3650 4649
## 3651 4652
## 3652 4654
## 3653 4655
## 3654 4658
## 3655 4659
## 3656 4660
## 3657 4661
## 3658 4662
## 3659 4663
## 3660 4664
## 3661 4666
## 3662 4667
## 3663 4670
## 3664 4673
## 3665 4674
## 3666 4675
## 3667 4676
## 3668 4677
## 3669 4678
## 3670 4679
## 3671 4680
## 3672 4681
## 3673 4682
## 3674 4684
## 3675 4686
## 3676 4687
## 3677 4688
## 3678 4690
## 3679 4691
## 3680 4692
## 3681 4696
## 3682 4697
## 3683 4698
## 3684 4699
## 3685 4700
## 3686 4701
## 3687 4703
## 3688 4704
## 3689 4705
## 3690 4706
## 3691 4709
## 3692 4710
## 3693 4711
## 3694 4712
## 3695 4713
## 3696 4714
## 3697 4716
## 3698 4717
## 3699 4718
## 3700 4719
## 3701 4720
## 3702 4721
## 3703 4722
## 3704 4723
## 3705 4724
## 3706 4725
## 3707 4727
## 3708 4728
## 3709 4731
## 3710 4732
## 3711 4733
## 3712 4734
## 3713 4735
## 3714 4736
## 3715 4737
## 3716 4738
## 3717 4740
## 3718 4741
## 3719 4743
## 3720 4744
## 3721 4745
## 3722 4748
## 3723 4749
## 3724 4750
## 3725 4751
## 3726 4752
## 3727 4753
## 3728 4754
## 3729 4755
## 3730 4756
## 3731 4757
## 3732 4761
## 3733 4763
## 3734 4765
## 3735 4766
## 3736 4767
## 3737 4768
## 3738 4769
## 3739 4770
## 3740 4771
## 3741 4772
## 3742 4774
## 3743 4775
## 3744 4776
## 3745 4782
## 3746 4783
## 3747 4784
## 3748 4787
## 3749 4789
## 3750 4792
## 3751 4795
## 3752 4796
## 3753 4798
## 3754 4799
## 3755 4800
## 3756 4801
## 3757 4802
## 3758 4803
## 3759 4804
## 3760 4806
## 3761 4809
## 3762 4810
## 3763 4811
## 3764 4812
## 3765 4814
## 3766 4815
## 3767 4816
## 3768 4818
## 3769 4821
## 3770 4822
## 3771 4823
## 3772 4826
## 3773 4830
## 3774 4831
## 3775 4832
## 3776 4833
## 3777 4834
## 3778 4835
## 3779 4836
## 3780 4837
## 3781 4840
## 3782 4842
## 3783 4844
## 3784 4846
## 3785 4848
## 3786 4849
## 3787 4851
## 3788 4854
## 3789 4855
## 3790 4857
## 3791 4859
## 3792 4861
## 3793 4862
## 3794 4863
## 3795 4865
## 3796 4866
## 3797 4867
## 3798 4873
## 3799 4874
## 3800 4875
## 3801 4876
## 3802 4878
## 3803 4880
## 3804 4881
## 3805 4885
## 3806 4886
## 3807 4887
## 3808 4888
## 3809 4889
## 3810 4890
## 3811 4893
## 3812 4895
## 3813 4896
## 3814 4897
## 3815 4898
## 3816 4899
## 3817 4901
## 3818 4902
## 3819 4903
## 3820 4911
## 3821 4912
## 3822 4914
## 3823 4915
## 3824 4920
## 3825 4921
## 3826 4923
## 3827 4925
## 3828 4927
## 3829 4928
## 3830 4929
## 3831 4930
## 3832 4932
## 3833 4933
## 3834 4936
## 3835 4941
## 3836 4945
## 3837 4947
## 3838 4948
## 3839 4949
## 3840 4951
## 3841 4952
## 3842 4954
## 3843 4956
## 3844 4957
## 3845 4958
## 3846 4960
## 3847 4961
## 3848 4963
## 3849 4964
## 3850 4965
## 3851 4967
## 3852 4968
## 3853 4969
## 3854 4970
## 3855 4971
## 3856 4972
## 3857 4973
## 3858 4974
## 3859 4975
## 3860 4976
## 3861 4977
## 3862 4978
## 3863 4979
## 3864 4980
## 3865 4981
## 3866 4984
## 3867 4987
## 3868 4988
## 3869 4989
## 3870 4990
## 3871 4992
## 3872 4993
## 3873 4994
## 3874 4995
## 3875 4996
## 3876 4998
## 3877 4999
## 3878 5000
## 3879 5001
## 3880 5002
## 3881 5003
## 3882 5004
## 3883 5008
## 3884 5009
## 3885 5010
## 3886 5012
## 3887 5013
## 3888 5014
## 3889 5015
## 3890 5016
## 3891 5017
## 3892 5018
## 3893 5021
## 3894 5022
## 3895 5023
## 3896 5025
## 3897 5026
## 3898 5027
## 3899 5028
## 3900 5033
## 3901 5034
## 3902 5038
## 3903 5039
## 3904 5040
## 3905 5041
## 3906 5042
## 3907 5043
## 3908 5046
## 3909 5047
## 3910 5048
## 3911 5049
## 3912 5051
## 3913 5053
## 3914 5054
## 3915 5055
## 3916 5056
## 3917 5057
## 3918 5059
## 3919 5060
## 3920 5061
## 3921 5062
## 3922 5063
## 3923 5064
## 3924 5065
## 3925 5066
## 3926 5069
## 3927 5071
## 3928 5072
## 3929 5073
## 3930 5074
## 3931 5075
## 3932 5076
## 3933 5079
## 3934 5080
## 3935 5081
## 3936 5083
## 3937 5085
## 3938 5087
## 3939 5088
## 3940 5092
## 3941 5093
## 3942 5094
## 3943 5095
## 3944 5096
## 3945 5097
## 3946 5098
## 3947 5099
## 3948 5101
## 3949 5102
## 3950 5103
## 3951 5105
## 3952 5106
## 3953 5107
## 3954 5108
## 3955 5109
## 3956 5110
## 3957 5111
## 3958 5114
## 3959 5117
## 3960 5119
## 3961 5120
## 3962 5121
## 3963 5122
## 3964 5125
## 3965 5127
## 3966 5128
## 3967 5134
## 3968 5135
## 3969 5137
## 3970 5139
## 3971 5141
## 3972 5142
## 3973 5146
## 3974 5147
## 3975 5151
## 3976 5152
## 3977 5153
## 3978 5159
## 3979 5161
## 3980 5164
## 3981 5165
## 3982 5167
## 3983 5168
## 3984 5169
## 3985 5170
## 3986 5171
## 3987 5172
## 3988 5177
## 3989 5179
## 3990 5180
## 3991 5182
## 3992 5186
## 3993 5187
## 3994 5193
## 3995 5198
## 3996 5199
## 3997 5202
## 3998 5203
## 3999 5205
## 4000 5208
## 4001 5210
## 4002 5214
## 4003 5218
## 4004 5219
## 4005 5220
## 4006 5222
## 4007 5223
## 4008 5224
## 4009 5225
## 4010 5226
## 4011 5227
## 4012 5229
## 4013 5230
## 4014 5231
## 4015 5232
## 4016 5233
## 4017 5234
## 4018 5236
## 4019 5237
## 4020 5238
## 4021 5241
## 4022 5242
## 4023 5243
## 4024 5244
## 4025 5246
## 4026 5247
## 4027 5248
## 4028 5250
## 4029 5254
## 4030 5255
## 4031 5256
## 4032 5258
## 4033 5264
## 4034 5265
## 4035 5266
## 4036 5267
## 4037 5269
## 4038 5271
## 4039 5275
## 4040 5276
## 4041 5277
## 4042 5278
## 4043 5279
## 4044 5282
## 4045 5283
## 4046 5285
## 4047 5288
## 4048 5289
## 4049 5291
## 4050 5292
## 4051 5293
## 4052 5294
## 4053 5296
## 4054 5297
## 4055 5298
## 4056 5299
## 4057 5300
## 4058 5301
## 4059 5302
## 4060 5303
## 4061 5304
## 4062 5305
## 4063 5307
## 4064 5308
## 4065 5309
## 4066 5312
## 4067 5313
## 4068 5315
## 4069 5316
## 4070 5319
## 4071 5323
## 4072 5324
## 4073 5325
## 4074 5329
## 4075 5333
## 4076 5334
## 4077 5335
## 4078 5337
## 4079 5339
## 4080 5341
## 4081 5342
## 4082 5343
## 4083 5344
## 4084 5346
## 4085 5348
## 4086 5349
## 4087 5352
## 4088 5353
## 4089 5354
## 4090 5356
## 4091 5357
## 4092 5359
## 4093 5360
## 4094 5361
## 4095 5363
## 4096 5364
## 4097 5365
## 4098 5366
## 4099 5367
## 4100 5372
## 4101 5373
## 4102 5375
## 4103 5377
## 4104 5378
## 4105 5379
## 4106 5380
## 4107 5382
## 4108 5383
## 4109 5384
## 4110 5385
## 4111 5387
## 4112 5388
## 4113 5389
## 4114 5391
## 4115 5395
## 4116 5398
## 4117 5400
## 4118 5401
## 4119 5404
## 4120 5410
## 4121 5413
## 4122 5414
## 4123 5415
## 4124 5416
## 4125 5417
## 4126 5418
## 4127 5419
## 4128 5420
## 4129 5421
## 4130 5422
## 4131 5425
## 4132 5427
## 4133 5428
## 4134 5433
## 4135 5434
## 4136 5438
## 4137 5440
## 4138 5443
## 4139 5444
## 4140 5445
## 4141 5446
## 4142 5447
## 4143 5448
## 4144 5449
## 4145 5450
## 4146 5452
## 4147 5458
## 4148 5459
## 4149 5460
## 4150 5462
## 4151 5463
## 4152 5464
## 4153 5466
## 4154 5470
## 4155 5471
## 4156 5473
## 4157 5475
## 4158 5477
## 4159 5478
## 4160 5479
## 4161 5480
## 4162 5481
## 4163 5483
## 4164 5489
## 4165 5490
## 4166 5498
## 4167 5500
## 4168 5501
## 4169 5502
## 4170 5503
## 4171 5504
## 4172 5505
## 4173 5506
## 4174 5507
## 4175 5508
## 4176 5515
## 4177 5516
## 4178 5517
## 4179 5518
## 4180 5521
## 4181 5522
## 4182 5523
## 4183 5524
## 4184 5525
## 4185 5527
## 4186 5528
## 4187 5530
## 4188 5531
## 4189 5534
## 4190 5535
## 4191 5538
## 4192 5539
## 4193 5540
## 4194 5541
## 4195 5544
## 4196 5548
## 4197 5553
## 4198 5556
## 4199 5558
## 4200 5560
## 4201 5561
## 4202 5562
## 4203 5564
## 4204 5568
## 4205 5569
## 4206 5570
## 4207 5572
## 4208 5573
## 4209 5574
## 4210 5575
## 4211 5577
## 4212 5581
## 4213 5582
## 4214 5585
## 4215 5588
## 4216 5597
## 4217 5599
## 4218 5600
## 4219 5601
## 4220 5602
## 4221 5603
## 4222 5604
## 4223 5605
## 4224 5607
## 4225 5608
## 4226 5609
## 4227 5611
## 4228 5612
## 4229 5613
## 4230 5615
## 4231 5617
## 4232 5618
## 4233 5619
## 4234 5620
## 4235 5621
## 4236 5622
## 4237 5625
## 4238 5628
## 4239 5629
## 4240 5630
## 4241 5632
## 4242 5633
## 4243 5636
## 4244 5637
## 4245 5638
## 4246 5641
## 4247 5642
## 4248 5643
## 4249 5644
## 4250 5646
## 4251 5649
## 4252 5650
## 4253 5651
## 4254 5655
## 4255 5662
## 4256 5663
## 4257 5666
## 4258 5667
## 4259 5668
## 4260 5669
## 4261 5670
## 4262 5672
## 4263 5673
## 4264 5675
## 4265 5677
## 4266 5678
## 4267 5679
## 4268 5680
## 4269 5682
## 4270 5684
## 4271 5685
## 4272 5686
## 4273 5689
## 4274 5690
## 4275 5691
## 4276 5693
## 4277 5694
## 4278 5696
## 4279 5699
## 4280 5700
## 4281 5703
## 4282 5705
## 4283 5707
## 4284 5710
## 4285 5712
## 4286 5715
## 4287 5718
## 4288 5723
## 4289 5729
## 4290 5732
## 4291 5734
## 4292 5735
## 4293 5736
## 4294 5737
## 4295 5742
## 4296 5745
## 4297 5746
## 4298 5747
## 4299 5752
## 4300 5754
## 4301 5765
## 4302 5768
## 4303 5772
## 4304 5773
## 4305 5777
## 4306 5778
## 4307 5779
## 4308 5780
## 4309 5782
## 4310 5784
## 4311 5785
## 4312 5787
## 4313 5788
## 4314 5791
## 4315 5792
## 4316 5795
## 4317 5796
## 4318 5799
## 4319 5801
## 4320 5803
## 4321 5808
## 4322 5809
## 4323 5810
## 4324 5812
## 4325 5815
## 4326 5816
## 4327 5818
## 4328 5819
## 4329 5820
## 4330 5825
## 4331 5826
## 4332 5828
## 4333 5829
## 4334 5830
## 4335 5832
## 4336 5833
## 4337 5834
## 4338 5836
## 4339 5839
## 4340 5840
## 4341 5841
## 4342 5843
## 4343 5846
## 4344 5847
## 4345 5850
## 4346 5853
## 4347 5854
## 4348 5857
## 4349 5859
## 4350 5864
## 4351 5866
## 4352 5867
## 4353 5868
## 4354 5869
## 4355 5872
## 4356 5873
## 4357 5874
## 4358 5875
## 4359 5876
## 4360 5878
## 4361 5879
## 4362 5880
## 4363 5881
## 4364 5882
## 4365 5883
## 4366 5888
## 4367 5891
## 4368 5893
## 4369 5899
## 4370 5900
## 4371 5901
## 4372 5902
## 4373 5903
## 4374 5909
## 4375 5910
## 4376 5913
## 4377 5914
## 4378 5915
## 4379 5917
## 4380 5918
## 4381 5923
## 4382 5926
## 4383 5927
## 4384 5932
## 4385 5933
## 4386 5936
## 4387 5938
## 4388 5940
## 4389 5941
## 4390 5942
## 4391 5943
## 4392 5944
## 4393 5945
## 4394 5947
## 4395 5949
## 4396 5952
## 4397 5954
## 4398 5955
## 4399 5956
## 4400 5957
## 4401 5958
## 4402 5959
## 4403 5960
## 4404 5961
## 4405 5962
## 4406 5963
## 4407 5965
## 4408 5966
## 4409 5968
## 4410 5969
## 4411 5970
## 4412 5971
## 4413 5980
## 4414 5981
## 4415 5984
## 4416 5985
## 4417 5986
## 4418 5989
## 4419 5991
## 4420 5992
## 4421 5993
## 4422 5994
## 4423 5995
## 4424 6000
## 4425 6001
## 4426 6003
## 4427 6005
## 4428 6006
## 4429 6008
## 4430 6012
## 4431 6013
## 4432 6014
## 4433 6016
## 4434 6021
## 4435 6022
## 4436 6025
## 4437 6027
## 4438 6031
## 4439 6032
## 4440 6033
## 4441 6035
## 4442 6037
## 4443 6039
## 4444 6040
## 4445 6042
## 4446 6047
## 4447 6051
## 4448 6056
## 4449 6057
## 4450 6058
## 4451 6059
## 4452 6060
## 4453 6062
## 4454 6063
## 4455 6064
## 4456 6073
## 4457 6077
## 4458 6078
## 4459 6084
## 4460 6091
## 4461 6092
## 4462 6093
## 4463 6095
## 4464 6096
## 4465 6100
## 4466 6101
## 4467 6103
## 4468 6104
## 4469 6105
## 4470 6107
## 4471 6109
## 4472 6114
## 4473 6115
## 4474 6116
## 4475 6121
## 4476 6122
## 4477 6123
## 4478 6124
## 4479 6125
## 4480 6126
## 4481 6127
## 4482 6132
## 4483 6133
## 4484 6140
## 4485 6143
## 4486 6148
## 4487 6154
## 4488 6155
## 4489 6156
## 4490 6157
## 4491 6159
## 4492 6162
## 4493 6163
## 4494 6166
## 4495 6170
## 4496 6178
## 4497 6180
## 4498 6182
## 4499 6183
## 4500 6184
## 4501 6185
## 4502 6186
## 4503 6187
## 4504 6188
## 4505 6195
## 4506 6197
## 4507 6198
## 4508 6201
## 4509 6203
## 4510 6204
## 4511 6207
## 4512 6211
## 4513 6212
## 4514 6213
## 4515 6214
## 4516 6215
## 4517 6216
## 4518 6218
## 4519 6219
## 4520 6223
## 4521 6225
## 4522 6227
## 4523 6228
## 4524 6229
## 4525 6230
## 4526 6231
## 4527 6232
## 4528 6233
## 4529 6234
## 4530 6235
## 4531 6237
## 4532 6238
## 4533 6239
## 4534 6240
## 4535 6242
## 4536 6243
## 4537 6244
## 4538 6245
## 4539 6247
## 4540 6249
## 4541 6250
## 4542 6252
## 4543 6254
## 4544 6256
## 4545 6257
## 4546 6260
## 4547 6261
## 4548 6263
## 4549 6264
## 4550 6265
## 4551 6266
## 4552 6268
## 4553 6269
## 4554 6271
## 4555 6273
## 4556 6276
## 4557 6279
## 4558 6281
## 4559 6283
## 4560 6284
## 4561 6286
## 4562 6287
## 4563 6290
## 4564 6291
## 4565 6294
## 4566 6295
## 4567 6296
## 4568 6297
## 4569 6298
## 4570 6299
## 4571 6300
## 4572 6301
## 4573 6302
## 4574 6303
## 4575 6305
## 4576 6306
## 4577 6308
## 4578 6314
## 4579 6315
## 4580 6316
## 4581 6318
## 4582 6322
## 4583 6323
## 4584 6327
## 4585 6329
## 4586 6331
## 4587 6332
## 4588 6333
## 4589 6335
## 4590 6337
## 4591 6338
## 4592 6339
## 4593 6341
## 4594 6342
## 4595 6344
## 4596 6345
## 4597 6348
## 4598 6349
## 4599 6350
## 4600 6355
## 4601 6356
## 4602 6357
## 4603 6358
## 4604 6365
## 4605 6367
## 4606 6368
## 4607 6369
## 4608 6370
## 4609 6373
## 4610 6375
## 4611 6377
## 4612 6378
## 4613 6379
## 4614 6380
## 4615 6383
## 4616 6384
## 4617 6385
## 4618 6386
## 4619 6387
## 4620 6390
## 4621 6395
## 4622 6400
## 4623 6404
## 4624 6405
## 4625 6408
## 4626 6410
## 4627 6412
## 4628 6413
## 4629 6414
## 4630 6415
## 4631 6416
## 4632 6419
## 4633 6422
## 4634 6423
## 4635 6424
## 4636 6425
## 4637 6426
## 4638 6427
## 4639 6428
## 4640 6429
## 4641 6431
## 4642 6432
## 4643 6433
## 4644 6436
## 4645 6440
## 4646 6442
## 4647 6446
## 4648 6447
## 4649 6448
## 4650 6449
## 4651 6450
## 4652 6452
## 4653 6454
## 4654 6458
## 4655 6460
## 4656 6461
## 4657 6464
## 4658 6465
## 4659 6466
## 4660 6467
## 4661 6468
## 4662 6470
## 4663 6473
## 4664 6474
## 4665 6476
## 4666 6477
## 4667 6480
## 4668 6482
## 4669 6484
## 4670 6493
## 4671 6498
## 4672 6502
## 4673 6503
## 4674 6506
## 4675 6509
## 4676 6513
## 4677 6514
## 4678 6515
## 4679 6516
## 4680 6518
## 4681 6521
## 4682 6522
## 4683 6525
## 4684 6527
## 4685 6528
## 4686 6530
## 4687 6531
## 4688 6533
## 4689 6534
## 4690 6535
## 4691 6536
## 4692 6537
## 4693 6538
## 4694 6539
## 4695 6541
## 4696 6547
## 4697 6548
## 4698 6550
## 4699 6552
## 4700 6559
## 4701 6561
## 4702 6562
## 4703 6564
## 4704 6565
## 4705 6566
## 4706 6568
## 4707 6571
## 4708 6579
## 4709 6582
## 4710 6584
## 4711 6585
## 4712 6586
## 4713 6587
## 4714 6591
## 4715 6592
## 4716 6593
## 4717 6595
## 4718 6596
## 4719 6598
## 4720 6599
## 4721 6600
## 4722 6602
## 4723 6603
## 4724 6609
## 4725 6611
## 4726 6612
## 4727 6613
## 4728 6615
## 4729 6617
## 4730 6618
## 4731 6620
## 4732 6624
## 4733 6628
## 4734 6629
## 4735 6630
## 4736 6636
## 4737 6638
## 4738 6639
## 4739 6641
## 4740 6643
## 4741 6644
## 4742 6645
## 4743 6646
## 4744 6650
## 4745 6658
## 4746 6659
## 4747 6662
## 4748 6663
## 4749 6664
## 4750 6665
## 4751 6666
## 4752 6669
## 4753 6671
## 4754 6676
## 4755 6678
## 4756 6679
## 4757 6683
## 4758 6684
## 4759 6686
## 4760 6690
## 4761 6695
## 4762 6703
## 4763 6706
## 4764 6707
## 4765 6708
## 4766 6709
## 4767 6710
## 4768 6711
## 4769 6713
## 4770 6718
## 4771 6721
## 4772 6722
## 4773 6723
## 4774 6724
## 4775 6725
## 4776 6728
## 4777 6730
## 4778 6731
## 4779 6732
## 4780 6735
## 4781 6739
## 4782 6743
## 4783 6744
## 4784 6748
## 4785 6751
## 4786 6753
## 4787 6754
## 4788 6755
## 4789 6757
## 4790 6760
## 4791 6762
## 4792 6763
## 4793 6764
## 4794 6765
## 4795 6768
## 4796 6769
## 4797 6770
## 4798 6771
## 4799 6772
## 4800 6773
## 4801 6774
## 4802 6776
## 4803 6777
## 4804 6779
## 4805 6780
## 4806 6782
## 4807 6783
## 4808 6785
## 4809 6786
## 4810 6787
## 4811 6788
## 4812 6790
## 4813 6791
## 4814 6793
## 4815 6794
## 4816 6796
## 4817 6797
## 4818 6798
## 4819 6800
## 4820 6803
## 4821 6806
## 4822 6807
## 4823 6808
## 4824 6810
## 4825 6811
## 4826 6812
## 4827 6813
## 4828 6814
## 4829 6816
## 4830 6818
## 4831 6820
## 4832 6822
## 4833 6826
## 4834 6827
## 4835 6828
## 4836 6829
## 4837 6830
## 4838 6832
## 4839 6835
## 4840 6840
## 4841 6850
## 4842 6851
## 4843 6852
## 4844 6856
## 4845 6857
## 4846 6858
## 4847 6862
## 4848 6863
## 4849 6864
## 4850 6867
## 4851 6868
## 4852 6869
## 4853 6870
## 4854 6872
## 4855 6873
## 4856 6874
## 4857 6875
## 4858 6877
## 4859 6879
## 4860 6880
## 4861 6881
## 4862 6883
## 4863 6884
## 4864 6885
## 4865 6887
## 4866 6888
## 4867 6889
## 4868 6890
## 4869 6892
## 4870 6893
## 4871 6896
## 4872 6898
## 4873 6902
## 4874 6906
## 4875 6909
## 4876 6918
## 4877 6920
## 4878 6927
## 4879 6930
## 4880 6932
## 4881 6934
## 4882 6935
## 4883 6936
## 4884 6940
## 4885 6942
## 4886 6944
## 4887 6945
## 4888 6947
## 4889 6950
## 4890 6951
## 4891 6952
## 4892 6953
## 4893 6954
## 4894 6957
## 4895 6958
## 4896 6959
## 4897 6961
## 4898 6963
## 4899 6964
## 4900 6966
## 4901 6970
## 4902 6971
## 4903 6974
## 4904 6975
## 4905 6977
## 4906 6978
## 4907 6979
## 4908 6981
## 4909 6982
## 4910 6983
## 4911 6985
## 4912 6986
## 4913 6987
## 4914 6989
## 4915 6990
## 4916 6991
## 4917 6992
## 4918 6993
## 4919 6995
## 4920 6996
## 4921 6997
## 4922 6999
## 4923 7000
## 4924 7001
## 4925 7002
## 4926 7003
## 4927 7004
## 4928 7005
## 4929 7007
## 4930 7008
## 4931 7009
## 4932 7010
## 4933 7011
## 4934 7012
## 4935 7013
## 4936 7016
## 4937 7017
## 4938 7018
## 4939 7020
## 4940 7022
## 4941 7023
## 4942 7024
## 4943 7025
## 4944 7026
## 4945 7027
## 4946 7028
## 4947 7029
## 4948 7034
## 4949 7036
## 4950 7038
## 4951 7040
## 4952 7042
## 4953 7043
## 4954 7044
## 4955 7045
## 4956 7046
## 4957 7048
## 4958 7050
## 4959 7051
## 4960 7055
## 4961 7056
## 4962 7058
## 4963 7059
## 4964 7060
## 4965 7061
## 4966 7062
## 4967 7063
## 4968 7064
## 4969 7065
## 4970 7067
## 4971 7068
## 4972 7069
## 4973 7070
## 4974 7071
## 4975 7072
## 4976 7073
## 4977 7074
## 4978 7075
## 4979 7076
## 4980 7078
## 4981 7079
## 4982 7080
## 4983 7081
## 4984 7082
## 4985 7083
## 4986 7084
## 4987 7085
## 4988 7086
## 4989 7087
## 4990 7088
## 4991 7089
## 4992 7090
## 4993 7091
## 4994 7093
## 4995 7095
## 4996 7096
## 4997 7099
## 4998 7101
## 4999 7102
## 5000 7104
## 5001 7107
## 5002 7108
## 5003 7110
## 5004 7111
## 5005 7115
## 5006 7116
## 5007 7117
## 5008 7121
## 5009 7122
## 5010 7123
## 5011 7125
## 5012 7126
## 5013 7130
## 5014 7131
## 5015 7132
## 5016 7135
## 5017 7136
## 5018 7137
## 5019 7139
## 5020 7142
## 5021 7143
## 5022 7147
## 5023 7149
## 5024 7150
## 5025 7151
## 5026 7152
## 5027 7153
## 5028 7154
## 5029 7155
## 5030 7156
## 5031 7158
## 5032 7160
## 5033 7161
## 5034 7162
## 5035 7163
## 5036 7164
## 5037 7165
## 5038 7171
## 5039 7172
## 5040 7173
## 5041 7177
## 5042 7178
## 5043 7179
## 5044 7180
## 5045 7182
## 5046 7186
## 5047 7189
## 5048 7190
## 5049 7192
## 5050 7193
## 5051 7195
## 5052 7196
## 5053 7198
## 5054 7199
## 5055 7204
## 5056 7206
## 5057 7207
## 5058 7208
## 5059 7209
## 5060 7210
## 5061 7211
## 5062 7212
## 5063 7215
## 5064 7216
## 5065 7217
## 5066 7219
## 5067 7222
## 5068 7223
## 5069 7228
## 5070 7234
## 5071 7235
## 5072 7236
## 5073 7238
## 5074 7243
## 5075 7245
## 5076 7247
## 5077 7248
## 5078 7250
## 5079 7254
## 5080 7255
## 5081 7256
## 5082 7257
## 5083 7258
## 5084 7260
## 5085 7263
## 5086 7265
## 5087 7266
## 5088 7272
## 5089 7282
## 5090 7283
## 5091 7285
## 5092 7293
## 5093 7294
## 5094 7299
## 5095 7300
## 5096 7302
## 5097 7303
## 5098 7305
## 5099 7307
## 5100 7308
## 5101 7309
## 5102 7311
## 5103 7312
## 5104 7315
## 5105 7316
## 5106 7317
## 5107 7318
## 5108 7319
## 5109 7320
## 5110 7323
## 5111 7324
## 5112 7325
## 5113 7327
## 5114 7334
## 5115 7335
## 5116 7340
## 5117 7343
## 5118 7346
## 5119 7347
## 5120 7348
## 5121 7349
## 5122 7352
## 5123 7354
## 5124 7355
## 5125 7357
## 5126 7358
## 5127 7360
## 5128 7361
## 5129 7362
## 5130 7366
## 5131 7367
## 5132 7369
## 5133 7371
## 5134 7372
## 5135 7373
## 5136 7374
## 5137 7375
## 5138 7376
## 5139 7379
## 5140 7380
## 5141 7381
## 5142 7382
## 5143 7386
## 5144 7387
## 5145 7394
## 5146 7395
## 5147 7396
## 5148 7407
## 5149 7411
## 5150 7415
## 5151 7419
## 5152 7437
## 5153 7438
## 5154 7439
## 5155 7444
## 5156 7445
## 5157 7448
## 5158 7449
## 5159 7450
## 5160 7451
## 5161 7453
## 5162 7454
## 5163 7456
## 5164 7458
## 5165 7459
## 5166 7460
## 5167 7478
## 5168 7481
## 5169 7482
## 5170 7484
## 5171 7487
## 5172 7492
## 5173 7493
## 5174 7502
## 5175 7505
## 5176 7541
## 5177 7560
## 5178 7564
## 5179 7566
## 5180 7569
## 5181 7570
## 5182 7571
## 5183 7572
## 5184 7573
## 5185 7574
## 5186 7577
## 5187 7579
## 5188 7583
## 5189 7584
## 5190 7585
## 5191 7586
## 5192 7587
## 5193 7613
## 5194 7614
## 5195 7615
## 5196 7616
## 5197 7619
## 5198 7620
## 5199 7624
## 5200 7625
## 5201 7627
## 5202 7636
## 5203 7649
## 5204 7650
## 5205 7669
## 5206 7697
## 5207 7698
## 5208 7700
## 5209 7701
## 5210 7702
## 5211 7705
## 5212 7706
## 5213 7708
## 5214 7713
## 5215 7714
## 5216 7720
## 5217 7728
## 5218 7738
## 5219 7743
## 5220 7748
## 5221 7753
## 5222 7757
## 5223 7759
## 5224 7762
## 5225 7764
## 5226 7766
## 5227 7767
## 5228 7771
## 5229 7773
## 5230 7774
## 5231 7782
## 5232 7786
## 5233 7787
## 5234 7789
## 5235 7790
## 5236 7791
## 5237 7792
## 5238 7802
## 5239 7809
## 5240 7810
## 5241 7811
## 5242 7812
## 5243 7815
## 5244 7817
## 5245 7818
## 5246 7820
## 5247 7822
## 5248 7826
## 5249 7827
## 5250 7831
## 5251 7832
## 5252 7833
## 5253 7834
## 5254 7835
## 5255 7836
## 5256 7840
## 5257 7841
## 5258 7842
## 5259 7843
## 5260 7844
## 5261 7845
## 5262 7846
## 5263 7872
## 5264 7878
## 5265 7881
## 5266 7882
## 5267 7883
## 5268 7888
## 5269 7889
## 5270 7892
## 5271 7894
## 5272 7895
## 5273 7897
## 5274 7899
## 5275 7914
## 5276 7915
## 5277 7916
## 5278 7919
## 5279 7920
## 5280 7921
## 5281 7922
## 5282 7924
## 5283 7925
## 5284 7926
## 5285 7932
## 5286 7934
## 5287 7935
## 5288 7936
## 5289 7938
## 5290 7939
## 5291 7941
## 5292 7942
## 5293 7943
## 5294 7944
## 5295 7946
## 5296 7947
## 5297 7948
## 5298 7951
## 5299 7958
## 5300 7959
## 5301 7976
## 5302 7979
## 5303 7980
## 5304 7981
## 5305 7982
## 5306 7983
## 5307 7984
## 5308 7987
## 5309 7990
## 5310 7991
## 5311 7995
## 5312 8003
## 5313 8008
## 5314 8009
## 5315 8010
## 5316 8011
## 5317 8012
## 5318 8014
## 5319 8015
## 5320 8016
## 5321 8019
## 5322 8033
## 5323 8039
## 5324 8042
## 5325 8044
## 5326 8056
## 5327 8057
## 5328 8070
## 5329 8093
## 5330 8094
## 5331 8117
## 5332 8121
## 5333 8123
## 5334 8125
## 5335 8126
## 5336 8128
## 5337 8129
## 5338 8130
## 5339 8131
## 5340 8132
## 5341 8133
## 5342 8136
## 5343 8137
## 5344 8138
## 5345 8142
## 5346 8143
## 5347 8147
## 5348 8154
## 5349 8157
## 5350 8158
## 5351 8167
## 5352 8169
## 5353 8183
## 5354 8187
## 5355 8188
## 5356 8189
## 5357 8190
## 5358 8191
## 5359 8194
## 5360 8195
## 5361 8196
## 5362 8197
## 5363 8199
## 5364 8207
## 5365 8208
## 5366 8225
## 5367 8228
## 5368 8235
## 5369 8236
## 5370 8239
## 5371 8240
## 5372 8253
## 5373 8254
## 5374 8256
## 5375 8257
## 5376 8261
## 5377 8263
## 5378 8264
## 5379 8266
## 5380 8267
## 5381 8268
## 5382 8273
## 5383 8275
## 5384 8290
## 5385 8327
## 5386 8331
## 5387 8332
## 5388 8336
## 5389 8337
## 5390 8338
## 5391 8340
## 5392 8341
## 5393 8360
## 5394 8361
## 5395 8362
## 5396 8363
## 5397 8364
## 5398 8366
## 5399 8367
## 5400 8368
## 5401 8369
## 5402 8370
## 5403 8371
## 5404 8372
## 5405 8373
## 5406 8376
## 5407 8385
## 5408 8387
## 5409 8388
## 5410 8392
## 5411 8403
## 5412 8404
## 5413 8410
## 5414 8420
## 5415 8422
## 5416 8423
## 5417 8447
## 5418 8451
## 5419 8453
## 5420 8459
## 5421 8460
## 5422 8462
## 5423 8463
## 5424 8464
## 5425 8465
## 5426 8477
## 5427 8482
## 5428 8484
## 5429 8485
## 5430 8487
## 5431 8491
## 5432 8492
## 5433 8493
## 5434 8494
## 5435 8499
## 5436 8502
## 5437 8504
## 5438 8507
## 5439 8511
## 5440 8522
## 5441 8524
## 5442 8525
## 5443 8526
## 5444 8527
## 5445 8528
## 5446 8529
## 5447 8530
## 5448 8531
## 5449 8533
## 5450 8534
## 5451 8535
## 5452 8537
## 5453 8542
## 5454 8544
## 5455 8571
## 5456 8572
## 5457 8574
## 5458 8575
## 5459 8576
## 5460 8577
## 5461 8580
## 5462 8581
## 5463 8582
## 5464 8583
## 5465 8584
## 5466 8589
## 5467 8591
## 5468 8596
## 5469 8600
## 5470 8604
## 5471 8607
## 5472 8609
## 5473 8610
## 5474 8611
## 5475 8612
## 5476 8614
## 5477 8616
## 5478 8617
## 5479 8618
## 5480 8620
## 5481 8622
## 5482 8623
## 5483 8625
## 5484 8629
## 5485 8633
## 5486 8636
## 5487 8638
## 5488 8640
## 5489 8641
## 5490 8642
## 5491 8643
## 5492 8644
## 5493 8645
## 5494 8650
## 5495 8654
## 5496 8656
## 5497 8657
## 5498 8661
## 5499 8665
## 5500 8666
## 5501 8667
## 5502 8670
## 5503 8672
## 5504 8675
## 5505 8684
## 5506 8689
## 5507 8690
## 5508 8695
## 5509 8699
## 5510 8700
## 5511 8709
## 5512 8711
## 5513 8712
## 5514 8713
## 5515 8718
## 5516 8720
## 5517 8722
## 5518 8724
## 5519 8725
## 5520 8727
## 5521 8730
## 5522 8743
## 5523 8745
## 5524 8751
## 5525 8752
## 5526 8753
## 5527 8754
## 5528 8761
## 5529 8763
## 5530 8765
## 5531 8766
## 5532 8767
## 5533 8768
## 5534 8772
## 5535 8777
## 5536 8779
## 5537 8781
## 5538 8783
## 5539 8784
## 5540 8785
## 5541 8790
## 5542 8795
## 5543 8796
## 5544 8797
## 5545 8798
## 5546 8799
## 5547 8800
## 5548 8807
## 5549 8808
## 5550 8810
## 5551 8811
## 5552 8813
## 5553 8814
## 5554 8819
## 5555 8820
## 5556 8821
## 5557 8823
## 5558 8827
## 5559 8828
## 5560 8830
## 5561 8831
## 5562 8832
## 5563 8833
## 5564 8835
## 5565 8836
## 5566 8838
## 5567 8839
## 5568 8840
## 5569 8848
## 5570 8850
## 5571 8851
## 5572 8853
## 5573 8854
## 5574 8857
## 5575 8859
## 5576 8860
## 5577 8861
## 5578 8864
## 5579 8865
## 5580 8866
## 5581 8870
## 5582 8871
## 5583 8872
## 5584 8873
## 5585 8874
## 5586 8879
## 5587 8880
## 5588 8882
## 5589 8884
## 5590 8892
## 5591 8893
## 5592 8899
## 5593 8903
## 5594 8906
## 5595 8907
## 5596 8908
## 5597 8910
## 5598 8911
## 5599 8914
## 5600 8915
## 5601 8916
## 5602 8917
## 5603 8918
## 5604 8920
## 5605 8921
## 5606 8923
## 5607 8927
## 5608 8928
## 5609 8929
## 5610 8930
## 5611 8931
## 5612 8933
## 5613 8935
## 5614 8937
## 5615 8938
## 5616 8943
## 5617 8946
## 5618 8947
## 5619 8948
## 5620 8949
## 5621 8950
## 5622 8951
## 5623 8954
## 5624 8955
## 5625 8957
## 5626 8958
## 5627 8961
## 5628 8963
## 5629 8964
## 5630 8965
## 5631 8966
## 5632 8968
## 5633 8969
## 5634 8970
## 5635 8972
## 5636 8973
## 5637 8974
## 5638 8977
## 5639 8979
## 5640 8981
## 5641 8982
## 5642 8983
## 5643 8984
## 5644 8985
## 5645 8986
## 5646 8987
## 5647 8988
## 5648 8989
## 5649 8998
## 5650 8999
## 5651 9000
## 5652 9001
## 5653 9004
## 5654 9005
## 5655 9010
## 5656 9012
## 5657 9018
## 5658 25737
## 5659 25744
## 5660 25750
## 5661 25752
## 5662 25753
## 5663 25755
## 5664 25763
## 5665 25764
## 5666 25769
## 5667 25771
## 5668 25773
## 5669 25774
## 5670 25777
## 5671 25788
## 5672 25792
## 5673 25795
## 5674 25801
## 5675 25805
## 5676 25807
## 5677 25825
## 5678 25826
## 5679 25827
## 5680 25828
## 5681 25839
## 5682 25841
## 5683 25842
## 5684 25850
## 5685 25852
## 5686 25856
## 5687 25865
## 5688 25868
## 5689 25874
## 5690 25882
## 5691 25886
## 5692 25891
## 5693 25898
## 5694 25900
## 5695 25901
## 5696 25904
## 5697 25906
## 5698 25911
## 5699 25916
## 5700 25920
## 5701 25927
## 5702 25929
## 5703 25930
## 5704 25937
## 5705 25940
## 5706 25941
## 5707 25945
## 5708 25947
## 5709 25952
## 5710 25962
## 5711 25965
## 5712 25971
## 5713 25972
## 5714 25993
## 5715 25995
## 5716 25996
## 5717 25999
## 5718 26003
## 5719 26005
## 5720 26007
## 5721 26009
## 5722 26010
## 5723 26012
## 5724 26013
## 5725 26025
## 5726 26052
## 5727 26079
## 5728 26082
## 5729 26084
## 5730 26085
## 5731 26086
## 5732 26093
## 5733 26094
## 5734 26111
## 5735 26116
## 5736 26117
## 5737 26122
## 5738 26125
## 5739 26131
## 5740 26133
## 5741 26147
## 5742 26150
## 5743 26151
## 5744 26152
## 5745 26157
## 5746 26160
## 5747 26163
## 5748 26164
## 5749 26171
## 5750 26172
## 5751 26176
## 5752 26178
## 5753 26180
## 5754 26188
## 5755 26198
## 5756 26199
## 5757 26208
## 5758 26228
## 5759 26229
## 5760 26231
## 5761 26241
## 5762 26242
## 5763 26251
## 5764 26258
## 5765 26265
## 5766 26268
## 5767 26271
## 5768 26294
## 5769 26302
## 5770 26303
## 5771 26313
## 5772 26317
## 5773 26318
## 5774 26320
## 5775 26322
## 5776 26323
## 5777 26324
## 5778 26325
## 5779 26326
## 5780 26338
## 5781 26342
## 5782 26346
## 5783 26349
## 5784 26350
## 5785 26366
## 5786 26371
## 5787 26375
## 5788 26386
## 5789 26391
## 5790 26393
## 5791 26394
## 5792 26400
## 5793 26403
## 5794 26404
## 5795 26409
## 5796 26413
## 5797 26414
## 5798 26422
## 5799 26425
## 5800 26430
## 5801 26435
## 5802 26462
## 5803 26464
## 5804 26467
## 5805 26471
## 5806 26472
## 5807 26480
## 5808 26485
## 5809 26487
## 5810 26492
## 5811 26494
## 5812 26501
## 5813 26505
## 5814 26509
## 5815 26513
## 5816 26524
## 5817 26528
## 5818 26547
## 5819 26554
## 5820 26555
## 5821 26562
## 5822 26564
## 5823 26574
## 5824 26578
## 5825 26581
## 5826 26585
## 5827 26587
## 5828 26599
## 5829 26603
## 5830 26606
## 5831 26614
## 5832 26622
## 5833 26631
## 5834 26649
## 5835 26655
## 5836 26662
## 5837 26663
## 5838 26680
## 5839 26684
## 5840 26686
## 5841 26689
## 5842 26693
## 5843 26694
## 5844 26695
## 5845 26700
## 5846 26701
## 5847 26702
## 5848 26704
## 5849 26712
## 5850 26726
## 5851 26729
## 5852 26731
## 5853 26732
## 5854 26736
## 5855 26737
## 5856 26749
## 5857 26750
## 5858 26775
## 5859 26776
## 5860 26782
## 5861 26784
## 5862 26788
## 5863 26791
## 5864 26797
## 5865 26809
## 5866 26810
## 5867 26812
## 5868 26819
## 5869 26835
## 5870 26838
## 5871 26840
## 5872 26842
## 5873 26843
## 5874 26850
## 5875 26854
## 5876 26865
## 5877 26870
## 5878 26886
## 5879 26903
## 5880 26915
## 5881 26947
## 5882 26974
## 5883 26999
## 5884 27002
## 5885 27005
## 5886 27020
## 5887 27022
## 5888 27032
## 5889 27075
## 5890 27109
## 5891 27156
## 5892 27178
## 5893 27186
## 5894 27193
## 5895 27251
## 5896 27253
## 5897 27255
## 5898 27266
## 5899 27317
## 5900 27322
## 5901 27329
## 5902 27334
## 5903 27338
## 5904 27351
## 5905 27369
## 5906 27373
## 5907 27376
## 5908 27397
## 5909 27410
## 5910 27416
## 5911 27423
## 5912 27441
## 5913 27478
## 5914 27482
## 5915 27523
## 5916 27544
## 5917 27555
## 5918 27592
## 5919 27604
## 5920 27611
## 5921 27646
## 5922 27648
## 5923 27660
## 5924 27664
## 5925 27674
## 5926 27685
## 5927 27689
## 5928 27700
## 5929 27704
## 5930 27706
## 5931 27713
## 5932 27721
## 5933 27722
## 5934 27724
## 5935 27727
## 5936 27728
## 5937 27731
## 5938 27741
## 5939 27751
## 5940 27768
## 5941 27772
## 5942 27773
## 5943 27778
## 5944 27783
## 5945 27784
## 5946 27788
## 5947 27790
## 5948 27792
## 5949 27793
## 5950 27798
## 5951 27800
## 5952 27801
## 5953 27802
## 5954 27803
## 5955 27808
## 5956 27812
## 5957 27815
## 5958 27816
## 5959 27821
## 5960 27822
## 5961 27826
## 5962 27831
## 5963 27834
## 5964 27837
## 5965 27838
## 5966 27839
## 5967 27846
## 5968 27850
## 5969 27851
## 5970 27857
## 5971 27867
## 5972 27869
## 5973 27871
## 5974 27873
## 5975 27875
## 5976 27876
## 5977 27878
## 5978 27879
## 5979 27882
## 5980 27899
## 5981 27904
## 5982 27912
## 5983 27922
## 5984 30707
## 5985 30712
## 5986 30723
## 5987 30745
## 5988 30749
## 5989 30783
## 5990 30793
## 5991 30803
## 5992 30810
## 5993 30812
## 5994 30816
## 5995 30818
## 5996 30820
## 5997 30822
## 5998 30825
## 5999 30846
## 6000 30848
## 6001 30850
## 6002 30867
## 6003 30883
## 6004 30892
## 6005 30894
## 6006 30898
## 6007 31000
## 6008 31026
## 6009 31035
## 6010 31101
## 6011 31104
## 6012 31109
## 6013 31114
## 6014 31116
## 6015 31150
## 6016 31156
## 6017 31162
## 6018 31184
## 6019 31193
## 6020 31221
## 6021 31225
## 6022 31270
## 6023 31284
## 6024 31290
## 6025 31364
## 6026 31374
## 6027 31408
## 6028 31410
## 6029 31413
## 6030 31420
## 6031 31422
## 6032 31427
## 6033 31431
## 6034 31433
## 6035 31435
## 6036 31437
## 6037 31445
## 6038 31502
## 6039 31522
## 6040 31524
## 6041 31547
## 6042 31549
## 6043 31658
## 6044 31660
## 6045 31682
## 6046 31685
## 6047 31689
## 6048 31694
## 6049 31696
## 6050 31700
## 6051 31724
## 6052 31737
## 6053 31747
## 6054 31770
## 6055 31804
## 6056 31878
## 6057 31903
## 6058 31921
## 6059 31923
## 6060 31930
## 6061 31952
## 6062 31956
## 6063 31963
## 6064 31973
## 6065 32017
## 6066 32019
## 6067 32022
## 6068 32025
## 6069 32029
## 6070 32031
## 6071 32078
## 6072 32139
## 6073 32153
## 6074 32160
## 6075 32170
## 6076 32174
## 6077 32203
## 6078 32211
## 6079 32234
## 6080 32280
## 6081 32289
## 6082 32291
## 6083 32296
## 6084 32298
## 6085 32302
## 6086 32349
## 6087 32352
## 6088 32369
## 6089 32371
## 6090 32381
## 6091 32387
## 6092 32395
## 6093 32444
## 6094 32456
## 6095 32460
## 6096 32464
## 6097 32469
## 6098 32515
## 6099 32525
## 6100 32554
## 6101 32562
## 6102 32582
## 6103 32587
## 6104 32591
## 6105 32596
## 6106 32598
## 6107 32632
## 6108 32666
## 6109 32686
## 6110 32728
## 6111 32735
## 6112 32743
## 6113 32797
## 6114 32825
## 6115 32840
## 6116 32844
## 6117 32853
## 6118 32882
## 6119 32892
## 6120 32898
## 6121 32914
## 6122 32943
## 6123 33004
## 6124 33021
## 6125 33085
## 6126 33124
## 6127 33138
## 6128 33145
## 6129 33154
## 6130 33158
## 6131 33162
## 6132 33164
## 6133 33166
## 6134 33171
## 6135 33296
## 6136 33312
## 6137 33358
## 6138 33380
## 6139 33437
## 6140 33493
## 6141 33495
## 6142 33499
## 6143 33558
## 6144 33587
## 6145 33592
## 6146 33615
## 6147 33621
## 6148 33639
## 6149 33646
## 6150 33660
## 6151 33669
## 6152 33672
## 6153 33679
## 6154 33681
## 6155 33683
## 6156 33688
## 6157 33750
## 6158 33760
## 6159 33794
## 6160 33817
## 6161 33826
## 6162 33830
## 6163 33834
## 6164 33836
## 6165 33838
## 6166 33880
## 6167 33896
## 6168 33903
## 6169 33912
## 6170 33917
## 6171 34002
## 6172 34018
## 6173 34048
## 6174 34072
## 6175 34129
## 6176 34143
## 6177 34150
## 6178 34153
## 6179 34162
## 6180 34164
## 6181 34198
## 6182 34271
## 6183 34319
## 6184 34321
## 6185 34323
## 6186 34326
## 6187 34332
## 6188 34334
## 6189 34336
## 6190 34338
## 6191 34359
## 6192 34364
## 6193 34405
## 6194 34435
## 6195 34437
## 6196 34517
## 6197 34520
## 6198 34523
## 6199 34528
## 6200 34530
## 6201 34532
## 6202 34534
## 6203 34536
## 6204 34542
## 6205 34552
## 6206 34583
## 6207 34608
## 6208 35836
## 6209 35957
## 6210 36152
## 6211 36276
## 6212 36289
## 6213 36397
## 6214 36401
## 6215 36509
## 6216 36517
## 6217 36519
## 6218 36525
## 6219 36527
## 6220 36529
## 6221 36533
## 6222 36535
## 6223 36553
## 6224 36708
## 6225 36931
## 6226 37211
## 6227 37240
## 6228 37277
## 6229 37380
## 6230 37382
## 6231 37384
## 6232 37386
## 6233 37475
## 6234 37477
## 6235 37720
## 6236 37727
## 6237 37729
## 6238 37731
## 6239 37733
## 6240 37736
## 6241 37739
## 6242 37741
## 6243 37785
## 6244 37830
## 6245 37853
## 6246 37855
## 6247 37857
## 6248 38038
## 6249 38061
## 6250 38304
## 6251 38384
## 6252 38499
## 6253 38798
## 6254 38886
## 6255 38992
## 6256 38994
## 6257 39052
## 6258 39183
## 6259 39231
## 6260 39234
## 6261 39292
## 6262 39307
## 6263 39381
## 6264 39398
## 6265 39408
## 6266 39414
## 6267 39416
## 6268 39419
## 6269 39421
## 6270 39427
## 6271 39435
## 6272 39444
## 6273 39446
## 6274 39659
## 6275 39715
## 6276 39768
## 6277 39779
## 6278 39869
## 6279 39941
## 6280 40148
## 6281 40226
## 6282 40278
## 6283 40339
## 6284 40412
## 6285 40414
## 6286 40491
## 6287 40574
## 6288 40581
## 6289 40583
## 6290 40597
## 6291 40614
## 6292 40629
## 6293 40723
## 6294 40732
## 6295 40815
## 6296 40817
## 6297 40819
## 6298 40826
## 6299 40833
## 6300 40851
## 6301 40870
## 6302 40946
## 6303 40959
## 6304 41226
## 6305 41285
## 6306 41336
## 6307 41527
## 6308 41566
## 6309 41569
## 6310 41571
## 6311 41573
## 6312 41585
## 6313 41714
## 6314 41716
## 6315 41769
## 6316 41863
## 6317 41912
## 6318 41997
## 6319 42002
## 6320 42004
## 6321 42007
## 6322 42009
## 6323 42011
## 6324 42013
## 6325 42015
## 6326 42163
## 6327 42191
## 6328 42197
## 6329 42217
## 6330 42351
## 6331 42418
## 6332 42632
## 6333 42677
## 6334 42681
## 6335 42718
## 6336 42721
## 6337 42723
## 6338 42725
## 6339 42728
## 6340 42730
## 6341 42732
## 6342 42734
## 6343 42738
## 6344 42740
## 6345 42783
## 6346 42900
## 6347 42935
## 6348 42946
## 6349 42958
## 6350 43177
## 6351 43267
## 6352 43333
## 6353 43351
## 6354 43376
## 6355 43391
## 6356 43396
## 6357 43419
## 6358 43556
## 6359 43558
## 6360 43560
## 6361 43635
## 6362 43679
## 6363 43708
## 6364 43744
## 6365 43832
## 6366 43836
## 6367 43838
## 6368 43869
## 6369 43871
## 6370 43899
## 6371 43904
## 6372 43908
## 6373 43910
## 6374 43917
## 6375 43919
## 6376 43921
## 6377 43928
## 6378 43930
## 6379 43932
## 6380 43936
## 6381 44004
## 6382 44022
## 6383 44073
## 6384 44191
## 6385 44193
## 6386 44195
## 6387 44197
## 6388 44199
## 6389 44204
## 6390 44225
## 6391 44245
## 6392 44301
## 6393 44317
## 6394 44397
## 6395 44421
## 6396 44511
## 6397 44555
## 6398 44587
## 6399 44597
## 6400 44613
## 6401 44633
## 6402 44665
## 6403 44671
## 6404 44694
## 6405 44709
## 6406 44717
## 6407 44731
## 6408 44759
## 6409 44761
## 6410 44788
## 6411 44828
## 6412 44840
## 6413 44849
## 6414 44864
## 6415 44911
## 6416 44972
## 6417 44974
## 6418 45000
## 6419 45028
## 6420 45062
## 6421 45081
## 6422 45172
## 6423 45179
## 6424 45183
## 6425 45186
## 6426 45208
## 6427 45210
## 6428 45221
## 6429 45382
## 6430 45431
## 6431 45440
## 6432 45442
## 6433 45447
## 6434 45499
## 6435 45501
## 6436 45506
## 6437 45517
## 6438 45521
## 6439 45662
## 6440 45666
## 6441 45668
## 6442 45672
## 6443 45679
## 6444 45720
## 6445 45722
## 6446 45726
## 6447 45728
## 6448 45730
## 6449 45732
## 6450 45837
## 6451 45880
## 6452 45928
## 6453 45942
## 6454 45950
## 6455 45969
## 6456 45987
## 6457 46062
## 6458 46322
## 6459 46335
## 6460 46337
## 6461 46347
## 6462 46530
## 6463 46544
## 6464 46559
## 6465 46561
## 6466 46574
## 6467 46578
## 6468 46664
## 6469 46723
## 6470 46772
## 6471 46850
## 6472 46855
## 6473 46865
## 6474 46919
## 6475 46948
## 6476 46965
## 6477 46967
## 6478 46970
## 6479 46972
## 6480 46974
## 6481 46976
## 6482 47044
## 6483 47092
## 6484 47099
## 6485 47122
## 6486 47124
## 6487 47148
## 6488 47152
## 6489 47196
## 6490 47200
## 6491 47202
## 6492 47254
## 6493 47261
## 6494 47274
## 6495 47287
## 6496 47330
## 6497 47382
## 6498 47384
## 6499 47404
## 6500 47423
## 6501 47465
## 6502 47491
## 6503 47493
## 6504 47518
## 6505 47606
## 6506 47610
## 6507 47629
## 6508 47640
## 6509 47714
## 6510 47721
## 6511 47728
## 6512 47810
## 6513 47815
## 6514 47894
## 6515 47937
## 6516 47950
## 6517 47952
## 6518 47978
## 6519 47997
## 6520 47999
## 6521 48032
## 6522 48043
## 6523 48061
## 6524 48082
## 6525 48142
## 6526 48159
## 6527 48165
## 6528 48198
## 6529 48231
## 6530 48262
## 6531 48268
## 6532 48301
## 6533 48304
## 6534 48319
## 6535 48322
## 6536 48385
## 6537 48394
## 6538 48414
## 6539 48501
## 6540 48516
## 6541 48518
## 6542 48520
## 6543 48522
## 6544 48560
## 6545 48591
## 6546 48593
## 6547 48596
## 6548 48660
## 6549 48682
## 6550 48696
## 6551 48698
## 6552 48711
## 6553 48738
## 6554 48741
## 6555 48744
## 6556 48774
## 6557 48780
## 6558 48783
## 6559 48791
## 6560 48817
## 6561 48856
## 6562 48872
## 6563 48877
## 6564 48972
## 6565 48982
## 6566 48997
## 6567 49013
## 6568 49132
## 6569 49220
## 6570 49225
## 6571 49265
## 6572 49272
## 6573 49274
## 6574 49278
## 6575 49280
## 6576 49284
## 6577 49286
## 6578 49299
## 6579 49314
## 6580 49394
## 6581 49396
## 6582 49526
## 6583 49528
## 6584 49530
## 6585 49647
## 6586 49649
## 6587 49651
## 6588 49688
## 6589 49772
## 6590 49817
## 6591 49822
## 6592 49824
## 6593 49902
## 6594 49910
## 6595 49917
## 6596 49932
## 6597 49957
## 6598 49961
## 6599 50005
## 6600 50011
## 6601 50064
## 6602 50068
## 6603 50147
## 6604 50160
## 6605 50162
## 6606 50189
## 6607 50245
## 6608 50259
## 6609 50442
## 6610 50445
## 6611 50514
## 6612 50583
## 6613 50601
## 6614 50641
## 6615 50651
## 6616 50658
## 6617 50685
## 6618 50703
## 6619 50740
## 6620 50742
## 6621 50792
## 6622 50794
## 6623 50798
## 6624 50802
## 6625 50804
## 6626 50806
## 6627 50842
## 6628 50851
## 6629 50872
## 6630 50912
## 6631 50923
## 6632 50954
## 6633 51044
## 6634 51077
## 6635 51080
## 6636 51084
## 6637 51086
## 6638 51088
## 6639 51091
## 6640 51094
## 6641 51127
## 6642 51174
## 6643 51207
## 6644 51255
## 6645 51277
## 6646 51304
## 6647 51357
## 6648 51372
## 6649 51380
## 6650 51412
## 6651 51418
## 6652 51471
## 6653 51540
## 6654 51575
## 6655 51662
## 6656 51698
## 6657 51705
## 6658 51709
## 6659 51773
## 6660 51834
## 6661 51884
## 6662 51925
## 6663 51927
## 6664 51931
## 6665 51935
## 6666 51937
## 6667 51939
## 6668 52241
## 6669 52245
## 6670 52281
## 6671 52287
## 6672 52319
## 6673 52328
## 6674 52378
## 6675 52435
## 6676 52456
## 6677 52458
## 6678 52460
## 6679 52462
## 6680 52528
## 6681 52545
## 6682 52579
## 6683 52604
## 6684 52606
## 6685 52617
## 6686 52644
## 6687 52666
## 6688 52668
## 6689 52694
## 6690 52712
## 6691 52717
## 6692 52722
## 6693 52730
## 6694 52767
## 6695 52831
## 6696 52885
## 6697 52913
## 6698 52950
## 6699 52952
## 6700 52967
## 6701 52973
## 6702 52975
## 6703 53000
## 6704 53024
## 6705 53038
## 6706 53121
## 6707 53123
## 6708 53125
## 6709 53129
## 6710 53133
## 6711 53138
## 6712 53189
## 6713 53207
## 6714 53318
## 6715 53322
## 6716 53326
## 6717 53435
## 6718 53447
## 6719 53460
## 6720 53464
## 6721 53466
## 6722 53468
## 6723 53519
## 6724 53550
## 6725 53737
## 6726 53883
## 6727 53887
## 6728 53894
## 6729 53953
## 6730 53956
## 6731 53972
## 6732 53974
## 6733 53993
## 6734 53996
## 6735 53999
## 6736 54001
## 6737 54004
## 6738 54190
## 6739 54220
## 6740 54251
## 6741 54256
## 6742 54259
## 6743 54270
## 6744 54272
## 6745 54276
## 6746 54281
## 6747 54286
## 6748 54290
## 6749 54328
## 6750 54331
## 6751 54372
## 6752 54419
## 6753 54426
## 6754 54503
## 6755 54513
## 6756 54648
## 6757 54732
## 6758 54734
## 6759 54736
## 6760 54745
## 6761 54768
## 6762 54771
## 6763 54775
## 6764 54780
## 6765 54785
## 6766 54787
## 6767 54881
## 6768 54910
## 6769 54995
## 6770 54997
## 6771 54999
## 6772 55031
## 6773 55052
## 6774 55063
## 6775 55069
## 6776 55071
## 6777 55078
## 6778 55094
## 6779 55100
## 6780 55110
## 6781 55116
## 6782 55118
## 6783 55156
## 6784 55167
## 6785 55207
## 6786 55232
## 6787 55245
## 6788 55247
## 6789 55250
## 6790 55253
## 6791 55259
## 6792 55261
## 6793 55267
## 6794 55269
## 6795 55272
## 6796 55274
## 6797 55276
## 6798 55280
## 6799 55282
## 6800 55290
## 6801 55294
## 6802 55363
## 6803 55417
## 6804 55442
## 6805 55444
## 6806 55451
## 6807 55498
## 6808 55555
## 6809 55566
## 6810 55577
## 6811 55652
## 6812 55684
## 6813 55687
## 6814 55721
## 6815 55732
## 6816 55757
## 6817 55765
## 6818 55768
## 6819 55805
## 6820 55814
## 6821 55820
## 6822 55830
## 6823 55851
## 6824 55872
## 6825 55895
## 6826 55908
## 6827 55946
## 6828 55995
## 6829 55999
## 6830 56003
## 6831 56015
## 6832 56030
## 6833 56069
## 6834 56079
## 6835 56095
## 6836 56145
## 6837 56152
## 6838 56156
## 6839 56169
## 6840 56171
## 6841 56174
## 6842 56176
## 6843 56251
## 6844 56274
## 6845 56286
## 6846 56333
## 6847 56336
## 6848 56339
## 6849 56367
## 6850 56563
## 6851 56587
## 6852 56607
## 6853 56633
## 6854 56715
## 6855 56757
## 6856 56775
## 6857 56782
## 6858 56788
## 6859 56801
## 6860 56805
## 6861 56869
## 6862 56885
## 6863 56908
## 6864 56915
## 6865 56921
## 6866 56941
## 6867 56949
## 6868 57038
## 6869 57223
## 6870 57243
## 6871 57274
## 6872 57326
## 6873 57353
## 6874 57368
## 6875 57401
## 6876 57418
## 6877 57430
## 6878 57453
## 6879 57504
## 6880 57526
## 6881 57528
## 6882 57532
## 6883 57640
## 6884 57669
## 6885 57792
## 6886 57845
## 6887 57910
## 6888 57951
## 6889 57972
## 6890 57980
## 6891 58025
## 6892 58029
## 6893 58047
## 6894 58103
## 6895 58105
## 6896 58107
## 6897 58146
## 6898 58154
## 6899 58156
## 6900 58191
## 6901 58293
## 6902 58295
## 6903 58297
## 6904 58299
## 6905 58301
## 6906 58303
## 6907 58306
## 6908 58315
## 6909 58347
## 6910 58351
## 6911 58365
## 6912 58376
## 6913 58425
## 6914 58432
## 6915 58520
## 6916 58554
## 6917 58559
## 6918 58627
## 6919 58649
## 6920 58655
## 6921 58706
## 6922 58803
## 6923 58839
## 6924 58879
## 6925 58889
## 6926 58904
## 6927 58964
## 6928 58972
## 6929 58975
## 6930 58998
## 6931 59014
## 6932 59016
## 6933 59018
## 6934 59022
## 6935 59037
## 6936 59103
## 6937 59118
## 6938 59126
## 6939 59141
## 6940 59143
## 6941 59180
## 6942 59258
## 6943 59273
## 6944 59306
## 6945 59315
## 6946 59333
## 6947 59339
## 6948 59369
## 6949 59387
## 6950 59392
## 6951 59418
## 6952 59421
## 6953 59429
## 6954 59447
## 6955 59501
## 6956 59519
## 6957 59549
## 6958 59590
## 6959 59594
## 6960 59615
## 6961 59669
## 6962 59684
## 6963 59721
## 6964 59725
## 6965 59727
## 6966 59731
## 6967 59784
## 6968 59805
## 6969 59810
## 6970 59814
## 6971 59832
## 6972 59834
## 6973 59846
## 6974 59900
## 6975 59935
## 6976 59945
## 6977 59985
## 6978 59995
## 6979 60037
## 6980 60040
## 6981 60069
## 6982 60072
## 6983 60074
## 6984 60086
## 6985 60126
## 6986 60128
## 6987 60135
## 6988 60137
## 6989 60161
## 6990 60291
## 6991 60293
## 6992 60295
## 6993 60333
## 6994 60343
## 6995 60382
## 6996 60384
## 6997 60397
## 6998 60471
## 6999 60487
## 7000 60514
## 7001 60516
## 7002 60609
## 7003 60649
## 7004 60674
## 7005 60684
## 7006 60753
## 7007 60756
## 7008 60760
## 7009 60763
## 7010 60766
## 7011 60832
## 7012 60857
## 7013 60937
## 7014 60943
## 7015 60950
## 7016 60990
## 7017 61013
## 7018 61024
## 7019 61026
## 7020 61071
## 7021 61075
## 7022 61123
## 7023 61132
## 7024 61160
## 7025 61167
## 7026 61206
## 7027 61210
## 7028 61236
## 7029 61240
## 7030 61248
## 7031 61250
## 7032 61289
## 7033 61323
## 7034 61348
## 7035 61350
## 7036 61352
## 7037 61357
## 7038 61361
## 7039 61394
## 7040 61401
## 7041 61465
## 7042 61634
## 7043 61646
## 7044 61705
## 7045 61729
## 7046 62049
## 7047 62081
## 7048 62113
## 7049 62115
## 7050 62155
## 7051 62203
## 7052 62250
## 7053 62331
## 7054 62336
## 7055 62344
## 7056 62374
## 7057 62376
## 7058 62378
## 7059 62383
## 7060 62394
## 7061 62434
## 7062 62437
## 7063 62511
## 7064 62644
## 7065 62718
## 7066 62733
## 7067 62764
## 7068 62792
## 7069 62801
## 7070 62849
## 7071 62912
## 7072 62956
## 7073 62999
## 7074 63062
## 7075 63072
## 7076 63082
## 7077 63113
## 7078 63131
## 7079 63179
## 7080 63239
## 7081 63276
## 7082 63393
## 7083 63436
## 7084 63479
## 7085 63481
## 7086 63515
## 7087 63540
## 7088 63629
## 7089 63808
## 7090 63826
## 7091 63836
## 7092 63853
## 7093 63859
## 7094 63876
## 7095 63992
## 7096 64030
## 7097 64032
## 7098 64034
## 7099 64114
## 7100 64116
## 7101 64153
## 7102 64197
## 7103 64229
## 7104 64249
## 7105 64278
## 7106 64285
## 7107 64321
## 7108 64338
## 7109 64497
## 7110 64499
## 7111 64501
## 7112 64508
## 7113 64575
## 7114 64614
## 7115 64620
## 7116 64622
## 7117 64660
## 7118 64695
## 7119 64701
## 7120 64716
## 7121 64839
## 7122 64900
## 7123 64957
## 7124 64969
## 7125 64983
## 7126 64990
## 7127 64993
## 7128 64997
## 7129 65037
## 7130 65088
## 7131 65126
## 7132 65130
## 7133 65133
## 7134 65135
## 7135 65188
## 7136 65193
## 7137 65216
## 7138 65230
## 7139 65259
## 7140 65261
## 7141 65310
## 7142 65418
## 7143 65465
## 7144 65514
## 7145 65552
## 7146 65567
## 7147 65577
## 7148 65585
## 7149 65601
## 7150 65638
## 7151 65642
## 7152 65665
## 7153 65682
## 7154 65685
## 7155 65802
## 7156 65982
## 7157 66019
## 7158 66066
## 7159 66090
## 7160 66097
## 7161 66130
## 7162 66171
## 7163 66198
## 7164 66200
## 7165 66203
## 7166 66246
## 7167 66297
## 7168 66310
## 7169 66317
## 7170 66335
## 7171 66371
## 7172 66427
## 7173 66509
## 7174 66544
## 7175 66596
## 7176 66659
## 7177 66665
## 7178 66686
## 7179 66744
## 7180 66785
## 7181 66798
## 7182 66808
## 7183 66915
## 7184 66934
## 7185 67087
## 7186 67193
## 7187 67197
## 7188 67252
## 7189 67255
## 7190 67267
## 7191 67295
## 7192 67361
## 7193 67408
## 7194 67429
## 7195 67504
## 7196 67508
## 7197 67665
## 7198 67695
## 7199 67734
## 7200 67788
## 7201 67799
## 7202 67867
## 7203 67923
## 7204 67957
## 7205 67997
## 7206 68073
## 7207 68099
## 7208 68135
## 7209 68137
## 7210 68157
## 7211 68159
## 7212 68194
## 7213 68205
## 7214 68237
## 7215 68269
## 7216 68319
## 7217 68324
## 7218 68347
## 7219 68358
## 7220 68444
## 7221 68486
## 7222 68536
## 7223 68554
## 7224 68614
## 7225 68659
## 7226 68791
## 7227 68793
## 7228 68835
## 7229 68838
## 7230 68848
## 7231 68872
## 7232 68884
## 7233 68901
## 7234 68932
## 7235 68945
## 7236 68952
## 7237 68954
## 7238 68959
## 7239 68965
## 7240 68967
## 7241 69069
## 7242 69118
## 7243 69122
## 7244 69134
## 7245 69241
## 7246 69253
## 7247 69275
## 7248 69278
## 7249 69280
## 7250 69306
## 7251 69406
## 7252 69436
## 7253 69458
## 7254 69481
## 7255 69495
## 7256 69516
## 7257 69524
## 7258 69526
## 7259 69529
## 7260 69559
## 7261 69604
## 7262 69606
## 7263 69640
## 7264 69644
## 7265 69654
## 7266 69685
## 7267 69712
## 7268 69720
## 7269 69746
## 7270 69757
## 7271 69761
## 7272 69784
## 7273 69805
## 7274 69821
## 7275 69844
## 7276 69849
## 7277 69908
## 7278 69945
## 7279 69951
## 7280 69974
## 7281 70121
## 7282 70159
## 7283 70183
## 7284 70188
## 7285 70201
## 7286 70282
## 7287 70286
## 7288 70293
## 7289 70305
## 7290 70336
## 7291 70344
## 7292 70418
## 7293 70465
## 7294 70488
## 7295 70533
## 7296 70545
## 7297 70565
## 7298 70567
## 7299 70597
## 7300 70599
## 7301 70663
## 7302 70678
## 7303 70697
## 7304 70728
## 7305 70751
## 7306 70762
## 7307 70846
## 7308 70862
## 7309 70898
## 7310 70927
## 7311 70946
## 7312 70984
## 7313 70994
## 7314 71033
## 7315 71057
## 7316 71102
## 7317 71106
## 7318 71108
## 7319 71131
## 7320 71135
## 7321 71156
## 7322 71180
## 7323 71205
## 7324 71211
## 7325 71248
## 7326 71252
## 7327 71254
## 7328 71264
## 7329 71282
## 7330 71304
## 7331 71318
## 7332 71379
## 7333 71390
## 7334 71404
## 7335 71429
## 7336 71433
## 7337 71438
## 7338 71460
## 7339 71462
## 7340 71464
## 7341 71466
## 7342 71468
## 7343 71490
## 7344 71494
## 7345 71518
## 7346 71520
## 7347 71525
## 7348 71530
## 7349 71533
## 7350 71535
## 7351 71573
## 7352 71579
## 7353 71640
## 7354 71650
## 7355 71668
## 7356 71700
## 7357 71732
## 7358 71745
## 7359 71755
## 7360 71804
## 7361 71810
## 7362 71823
## 7363 71838
## 7364 71876
## 7365 71899
## 7366 72011
## 7367 72043
## 7368 72104
## 7369 72109
## 7370 72129
## 7371 72131
## 7372 72165
## 7373 72169
## 7374 72171
## 7375 72176
## 7376 72209
## 7377 72224
## 7378 72226
## 7379 72294
## 7380 72308
## 7381 72356
## 7382 72367
## 7383 72378
## 7384 72380
## 7385 72386
## 7386 72393
## 7387 72395
## 7388 72405
## 7389 72407
## 7390 72479
## 7391 72489
## 7392 72603
## 7393 72605
## 7394 72612
## 7395 72626
## 7396 72630
## 7397 72641
## 7398 72647
## 7399 72683
## 7400 72694
## 7401 72696
## 7402 72701
## 7403 72720
## 7404 72731
## 7405 72733
## 7406 72737
## 7407 72741
## 7408 72762
## 7409 72781
## 7410 72880
## 7411 72919
## 7412 72947
## 7413 72998
## 7414 73015
## 7415 73017
## 7416 73023
## 7417 73042
## 7418 73101
## 7419 73106
## 7420 73168
## 7421 73211
## 7422 73266
## 7423 73268
## 7424 73276
## 7425 73290
## 7426 73319
## 7427 73321
## 7428 73323
## 7429 73344
## 7430 73386
## 7431 73392
## 7432 73469
## 7433 73488
## 7434 73531
## 7435 73572
## 7436 73587
## 7437 73664
## 7438 73741
## 7439 73759
## 7440 73808
## 7441 73854
## 7442 73860
## 7443 73881
## 7444 73929
## 7445 74089
## 7446 74115
## 7447 74152
## 7448 74154
## 7449 74156
## 7450 74228
## 7451 74275
## 7452 74282
## 7453 74324
## 7454 74327
## 7455 74370
## 7456 74416
## 7457 74438
## 7458 74450
## 7459 74452
## 7460 74458
## 7461 74486
## 7462 74508
## 7463 74510
## 7464 74530
## 7465 74532
## 7466 74545
## 7467 74580
## 7468 74624
## 7469 74630
## 7470 74649
## 7471 74668
## 7472 74677
## 7473 74685
## 7474 74688
## 7475 74698
## 7476 74727
## 7477 74740
## 7478 74754
## 7479 74787
## 7480 74789
## 7481 74795
## 7482 74851
## 7483 74868
## 7484 74916
## 7485 74944
## 7486 74946
## 7487 74948
## 7488 75341
## 7489 75349
## 7490 75440
## 7491 75803
## 7492 75805
## 7493 75813
## 7494 75816
## 7495 75823
## 7496 75983
## 7497 75985
## 7498 75990
## 7499 76030
## 7500 76054
## 7501 76060
## 7502 76077
## 7503 76091
## 7504 76093
## 7505 76111
## 7506 76173
## 7507 76175
## 7508 76210
## 7509 76251
## 7510 76272
## 7511 76293
## 7512 76303
## 7513 76738
## 7514 76763
## 7515 77191
## 7516 77201
## 7517 77206
## 7518 77291
## 7519 77307
## 7520 77359
## 7521 77364
## 7522 77414
## 7523 77421
## 7524 77427
## 7525 77435
## 7526 77455
## 7527 77561
## 7528 77658
## 7529 77798
## 7530 77800
## 7531 77808
## 7532 77810
## 7533 77837
## 7534 77846
## 7535 77866
## 7536 77907
## 7537 78034
## 7538 78039
## 7539 78041
## 7540 78088
## 7541 78101
## 7542 78105
## 7543 78111
## 7544 78116
## 7545 78122
## 7546 78160
## 7547 78174
## 7548 78209
## 7549 78218
## 7550 78264
## 7551 78266
## 7552 78316
## 7553 78321
## 7554 78349
## 7555 78467
## 7556 78469
## 7557 78499
## 7558 78517
## 7559 78544
## 7560 78574
## 7561 78637
## 7562 78653
## 7563 78703
## 7564 78729
## 7565 78772
## 7566 78829
## 7567 78836
## 7568 78893
## 7569 78903
## 7570 78967
## 7571 79006
## 7572 79008
## 7573 79029
## 7574 79057
## 7575 79091
## 7576 79132
## 7577 79134
## 7578 79136
## 7579 79139
## 7580 79163
## 7581 79185
## 7582 79203
## 7583 79224
## 7584 79242
## 7585 79251
## 7586 79259
## 7587 79274
## 7588 79293
## 7589 79299
## 7590 79318
## 7591 79357
## 7592 79428
## 7593 79469
## 7594 79553
## 7595 79588
## 7596 79590
## 7597 79592
## 7598 79677
## 7599 79686
## 7600 79695
## 7601 79702
## 7602 79720
## 7603 79796
## 7604 79824
## 7605 79868
## 7606 79879
## 7607 79946
## 7608 80026
## 7609 80083
## 7610 80126
## 7611 80166
## 7612 80185
## 7613 80217
## 7614 80219
## 7615 80241
## 7616 80346
## 7617 80350
## 7618 80363
## 7619 80463
## 7620 80489
## 7621 80549
## 7622 80551
## 7623 80553
## 7624 80572
## 7625 80584
## 7626 80586
## 7627 80590
## 7628 80599
## 7629 80615
## 7630 80693
## 7631 80717
## 7632 80727
## 7633 80736
## 7634 80748
## 7635 80831
## 7636 80839
## 7637 80844
## 7638 80846
## 7639 80858
## 7640 80860
## 7641 80862
## 7642 80864
## 7643 80906
## 7644 80917
## 7645 80969
## 7646 81018
## 7647 81054
## 7648 81083
## 7649 81132
## 7650 81138
## 7651 81156
## 7652 81158
## 7653 81191
## 7654 81229
## 7655 81417
## 7656 81512
## 7657 81516
## 7658 81535
## 7659 81537
## 7660 81562
## 7661 81564
## 7662 81591
## 7663 81641
## 7664 81660
## 7665 81782
## 7666 81784
## 7667 81786
## 7668 81788
## 7669 81819
## 7670 81831
## 7671 81834
## 7672 81845
## 7673 81847
## 7674 81898
## 7675 81910
## 7676 81932
## 7677 81949
## 7678 82035
## 7679 82037
## 7680 82041
## 7681 82093
## 7682 82095
## 7683 82150
## 7684 82152
## 7685 82167
## 7686 82169
## 7687 82173
## 7688 82202
## 7689 82242
## 7690 82313
## 7691 82378
## 7692 82459
## 7693 82461
## 7694 82463
## 7695 82499
## 7696 82527
## 7697 82534
## 7698 82608
## 7699 82667
## 7700 82852
## 7701 82854
## 7702 82931
## 7703 82934
## 7704 83086
## 7705 83096
## 7706 83132
## 7707 83134
## 7708 83177
## 7709 83270
## 7710 83293
## 7711 83318
## 7712 83322
## 7713 83332
## 7714 83349
## 7715 83359
## 7716 83361
## 7717 83374
## 7718 83411
## 7719 83480
## 7720 83506
## 7721 83603
## 7722 83613
## 7723 83803
## 7724 83827
## 7725 83829
## 7726 83910
## 7727 83976
## 7728 84098
## 7729 84116
## 7730 84152
## 7731 84154
## 7732 84160
## 7733 84187
## 7734 84236
## 7735 84304
## 7736 84312
## 7737 84374
## 7738 84392
## 7739 84395
## 7740 84414
## 7741 84506
## 7742 84601
## 7743 84615
## 7744 84637
## 7745 84696
## 7746 84772
## 7747 84844
## 7748 84847
## 7749 84944
## 7750 84950
## 7751 84952
## 7752 84954
## 7753 85016
## 7754 85020
## 7755 85022
## 7756 85025
## 7757 85056
## 7758 85131
## 7759 85179
## 7760 85213
## 7761 85261
## 7762 85316
## 7763 85342
## 7764 85367
## 7765 85394
## 7766 85397
## 7767 85399
## 7768 85401
## 7769 85412
## 7770 85414
## 7771 85438
## 7772 85510
## 7773 85572
## 7774 85612
## 7775 85736
## 7776 85774
## 7777 85780
## 7778 85788
## 7779 85796
## 7780 85881
## 7781 86000
## 7782 86014
## 7783 86028
## 7784 86059
## 7785 86142
## 7786 86190
## 7787 86290
## 7788 86293
## 7789 86298
## 7790 86320
## 7791 86332
## 7792 86345
## 7793 86347
## 7794 86377
## 7795 86487
## 7796 86504
## 7797 86548
## 7798 86593
## 7799 86626
## 7800 86644
## 7801 86721
## 7802 86781
## 7803 86817
## 7804 86833
## 7805 86835
## 7806 86852
## 7807 86864
## 7808 86880
## 7809 86882
## 7810 86884
## 7811 86892
## 7812 86898
## 7813 86911
## 7814 86982
## 7815 87192
## 7816 87205
## 7817 87218
## 7818 87222
## 7819 87232
## 7820 87234
## 7821 87298
## 7822 87304
## 7823 87306
## 7824 87383
## 7825 87430
## 7826 87444
## 7827 87483
## 7828 87485
## 7829 87520
## 7830 87522
## 7831 87529
## 7832 87598
## 7833 87660
## 7834 87785
## 7835 87869
## 7836 87876
## 7837 87884
## 7838 87930
## 7839 87975
## 7840 88024
## 7841 88106
## 7842 88118
## 7843 88125
## 7844 88129
## 7845 88140
## 7846 88163
## 7847 88179
## 7848 88235
## 7849 88267
## 7850 88272
## 7851 88345
## 7852 88356
## 7853 88380
## 7854 88405
## 7855 88672
## 7856 88682
## 7857 88744
## 7858 88785
## 7859 88810
## 7860 88812
## 7861 88879
## 7862 88932
## 7863 88950
## 7864 88954
## 7865 89000
## 7866 89030
## 7867 89039
## 7868 89045
## 7869 89047
## 7870 89072
## 7871 89085
## 7872 89087
## 7873 89090
## 7874 89102
## 7875 89118
## 7876 89194
## 7877 89203
## 7878 89260
## 7879 89300
## 7880 89305
## 7881 89321
## 7882 89337
## 7883 89343
## 7884 89356
## 7885 89388
## 7886 89408
## 7887 89427
## 7888 89470
## 7889 89492
## 7890 89678
## 7891 89745
## 7892 89753
## 7893 89759
## 7894 89761
## 7895 89774
## 7896 89804
## 7897 89837
## 7898 89840
## 7899 89864
## 7900 89870
## 7901 89881
## 7902 89904
## 7903 90057
## 7904 90061
## 7905 90249
## 7906 90266
## 7907 90343
## 7908 90345
## 7909 90357
## 7910 90374
## 7911 90376
## 7912 90403
## 7913 90405
## 7914 90428
## 7915 90430
## 7916 90439
## 7917 90469
## 7918 90522
## 7919 90524
## 7920 90531
## 7921 90576
## 7922 90600
## 7923 90603
## 7924 90647
## 7925 90717
## 7926 90719
## 7927 90738
## 7928 90746
## 7929 90863
## 7930 90866
## 7931 90870
## 7932 90888
## 7933 90890
## 7934 90947
## 7935 91077
## 7936 91094
## 7937 91104
## 7938 91126
## 7939 91128
## 7940 91134
## 7941 91199
## 7942 91273
## 7943 91286
## 7944 91323
## 7945 91325
## 7946 91355
## 7947 91414
## 7948 91470
## 7949 91483
## 7950 91485
## 7951 91488
## 7952 91500
## 7953 91505
## 7954 91529
## 7955 91535
## 7956 91542
## 7957 91548
## 7958 91582
## 7959 91610
## 7960 91622
## 7961 91628
## 7962 91630
## 7963 91653
## 7964 91658
## 7965 91660
## 7966 91673
## 7967 91688
## 7968 91690
## 7969 91842
## 7970 91869
## 7971 91873
## 7972 91886
## 7973 91890
## 7974 91935
## 7975 91947
## 7976 91974
## 7977 91976
## 7978 91978
## 7979 92004
## 7980 92008
## 7981 92048
## 7982 92058
## 7983 92163
## 7984 92198
## 7985 92206
## 7986 92210
## 7987 92234
## 7988 92259
## 7989 92264
## 7990 92309
## 7991 92420
## 7992 92424
## 7993 92439
## 7994 92494
## 7995 92496
## 7996 92498
## 7997 92507
## 7998 92509
## 7999 92535
## 8000 92613
## 8001 92665
## 8002 92681
## 8003 92694
## 8004 92751
## 8005 92756
## 8006 92938
## 8007 92954
## 8008 92966
## 8009 93040
## 8010 93061
## 8011 93242
## 8012 93265
## 8013 93270
## 8014 93272
## 8015 93287
## 8016 93320
## 8017 93324
## 8018 93326
## 8019 93363
## 8020 93422
## 8021 93432
## 8022 93443
## 8023 93498
## 8024 93510
## 8025 93512
## 8026 93563
## 8027 93693
## 8028 93700
## 8029 93721
## 8030 93766
## 8031 93805
## 8032 93831
## 8033 93838
## 8034 93840
## 8035 93855
## 8036 93980
## 8037 93982
## 8038 94011
## 8039 94015
## 8040 94018
## 8041 94024
## 8042 94070
## 8043 94266
## 8044 94323
## 8045 94325
## 8046 94466
## 8047 94478
## 8048 94480
## 8049 94494
## 8050 94672
## 8051 94677
## 8052 94777
## 8053 94780
## 8054 94799
## 8055 94833
## 8056 94864
## 8057 94896
## 8058 94919
## 8059 94931
## 8060 94939
## 8061 94953
## 8062 94959
## 8063 94969
## 8064 95067
## 8065 95088
## 8066 95105
## 8067 95113
## 8068 95115
## 8069 95135
## 8070 95147
## 8071 95165
## 8072 95167
## 8073 95182
## 8074 95199
## 8075 95201
## 8076 95207
## 8077 95307
## 8078 95309
## 8079 95311
## 8080 95313
## 8081 95375
## 8082 95377
## 8083 95441
## 8084 95443
## 8085 95449
## 8086 95473
## 8087 95475
## 8088 95499
## 8089 95508
## 8090 95510
## 8091 95543
## 8092 95558
## 8093 95567
## 8094 95583
## 8095 95654
## 8096 95720
## 8097 95740
## 8098 95744
## 8099 95752
## 8100 95761
## 8101 95780
## 8102 95782
## 8103 95858
## 8104 95873
## 8105 95875
## 8106 95949
## 8107 95963
## 8108 95965
## 8109 96004
## 8110 96007
## 8111 96020
## 8112 96075
## 8113 96079
## 8114 96110
## 8115 96114
## 8116 96150
## 8117 96281
## 8118 96314
## 8119 96373
## 8120 96417
## 8121 96432
## 8122 96448
## 8123 96467
## 8124 96488
## 8125 96490
## 8126 96530
## 8127 96563
## 8128 96565
## 8129 96588
## 8130 96590
## 8131 96606
## 8132 96610
## 8133 96616
## 8134 96634
## 8135 96655
## 8136 96667
## 8137 96691
## 8138 96726
## 8139 96728
## 8140 96737
## 8141 96792
## 8142 96811
## 8143 96815
## 8144 96821
## 8145 96829
## 8146 96832
## 8147 96849
## 8148 96861
## 8149 96863
## 8150 96901
## 8151 96911
## 8152 97057
## 8153 97168
## 8154 97188
## 8155 97225
## 8156 97230
## 8157 97254
## 8158 97304
## 8159 97306
## 8160 97328
## 8161 97393
## 8162 97395
## 8163 97470
## 8164 97593
## 8165 97639
## 8166 97673
## 8167 97742
## 8168 97744
## 8169 97752
## 8170 97757
## 8171 97817
## 8172 97826
## 8173 97836
## 8174 97858
## 8175 97860
## 8176 97866
## 8177 97870
## 8178 97895
## 8179 97913
## 8180 97921
## 8181 97923
## 8182 97936
## 8183 97938
## 8184 97957
## 8185 97994
## 8186 98000
## 8187 98056
## 8188 98083
## 8189 98122
## 8190 98124
## 8191 98126
## 8192 98154
## 8193 98160
## 8194 98175
## 8195 98230
## 8196 98243
## 8197 98279
## 8198 98296
## 8199 98369
## 8200 98441
## 8201 98458
## 8202 98473
## 8203 98491
## 8204 98585
## 8205 98587
## 8206 98604
## 8207 98607
## 8208 98611
## 8209 98615
## 8210 98795
## 8211 98803
## 8212 98809
## 8213 98829
## 8214 98836
## 8215 98908
## 8216 98913
## 8217 98933
## 8218 98961
## 8219 98963
## 8220 99005
## 8221 99007
## 8222 99030
## 8223 99085
## 8224 99089
## 8225 99106
## 8226 99112
## 8227 99114
## 8228 99117
## 8229 99145
## 8230 99149
## 8231 99220
## 8232 99270
## 8233 99273
## 8234 99276
## 8235 99296
## 8236 99320
## 8237 99415
## 8238 99437
## 8239 99468
## 8240 99470
## 8241 99574
## 8242 99609
## 8243 99615
## 8244 99669
## 8245 99675
## 8246 99728
## 8247 99741
## 8248 99764
## 8249 99795
## 8250 99811
## 8251 99813
## 8252 99839
## 8253 99846
## 8254 99912
## 8255 99917
## 8256 99992
## 8257 100017
## 8258 100032
## 8259 100034
## 8260 100083
## 8261 100106
## 8262 100159
## 8263 100163
## 8264 100226
## 8265 100272
## 8266 100304
## 8267 100306
## 8268 100326
## 8269 100365
## 8270 100383
## 8271 100390
## 8272 100450
## 8273 100487
## 8274 100498
## 8275 100517
## 8276 100527
## 8277 100553
## 8278 100556
## 8279 100581
## 8280 100714
## 8281 100745
## 8282 100843
## 8283 101025
## 8284 101070
## 8285 101076
## 8286 101088
## 8287 101106
## 8288 101112
## 8289 101142
## 8290 101283
## 8291 101285
## 8292 101360
## 8293 101362
## 8294 101415
## 8295 101525
## 8296 101529
## 8297 101531
## 8298 101577
## 8299 101612
## 8300 101741
## 8301 101850
## 8302 101864
## 8303 101884
## 8304 101895
## 8305 101904
## 8306 101947
## 8307 101962
## 8308 102033
## 8309 102123
## 8310 102125
## 8311 102165
## 8312 102194
## 8313 102217
## 8314 102252
## 8315 102278
## 8316 102378
## 8317 102396
## 8318 102407
## 8319 102445
## 8320 102469
## 8321 102481
## 8322 102588
## 8323 102666
## 8324 102684
## 8325 102686
## 8326 102716
## 8327 102720
## 8328 102753
## 8329 102792
## 8330 102800
## 8331 102819
## 8332 102880
## 8333 102903
## 8334 102905
## 8335 102993
## 8336 102995
## 8337 103042
## 8338 103048
## 8339 103107
## 8340 103137
## 8341 103141
## 8342 103210
## 8343 103221
## 8344 103228
## 8345 103235
## 8346 103249
## 8347 103253
## 8348 103279
## 8349 103299
## 8350 103335
## 8351 103339
## 8352 103341
## 8353 103372
## 8354 103384
## 8355 103444
## 8356 103449
## 8357 103502
## 8358 103539
## 8359 103543
## 8360 103596
## 8361 103624
## 8362 103655
## 8363 103659
## 8364 103671
## 8365 103688
## 8366 103731
## 8367 103755
## 8368 103772
## 8369 103801
## 8370 103810
## 8371 103813
## 8372 103819
## 8373 103865
## 8374 103883
## 8375 103980
## 8376 103984
## 8377 104069
## 8378 104074
## 8379 104076
## 8380 104078
## 8381 104119
## 8382 104129
## 8383 104211
## 8384 104218
## 8385 104241
## 8386 104243
## 8387 104245
## 8388 104272
## 8389 104283
## 8390 104303
## 8391 104312
## 8392 104321
## 8393 104337
## 8394 104339
## 8395 104374
## 8396 104419
## 8397 104441
## 8398 104457
## 8399 104590
## 8400 104595
## 8401 104597
## 8402 104662
## 8403 104726
## 8404 104757
## 8405 104760
## 8406 104841
## 8407 104863
## 8408 104879
## 8409 104881
## 8410 104906
## 8411 104913
## 8412 104925
## 8413 104944
## 8414 105037
## 8415 105121
## 8416 105197
## 8417 105211
## 8418 105213
## 8419 105246
## 8420 105254
## 8421 105351
## 8422 105355
## 8423 105429
## 8424 105468
## 8425 105504
## 8426 105585
## 8427 105593
## 8428 105715
## 8429 105731
## 8430 105755
## 8431 105763
## 8432 105769
## 8433 105844
## 8434 105954
## 8435 106002
## 8436 106004
## 8437 106011
## 8438 106022
## 8439 106062
## 8440 106072
## 8441 106100
## 8442 106111
## 8443 106144
## 8444 106204
## 8445 106236
## 8446 106330
## 8447 106332
## 8448 106397
## 8449 106417
## 8450 106438
## 8451 106441
## 8452 106452
## 8453 106471
## 8454 106473
## 8455 106487
## 8456 106489
## 8457 106491
## 8458 106540
## 8459 106542
## 8460 106642
## 8461 106696
## 8462 106762
## 8463 106766
## 8464 106782
## 8465 106839
## 8466 106870
## 8467 106873
## 8468 106883
## 8469 106916
## 8470 106918
## 8471 106920
## 8472 107042
## 8473 107057
## 8474 107069
## 8475 107081
## 8476 107083
## 8477 107141
## 8478 107314
## 8479 107348
## 8480 107382
## 8481 107406
## 8482 107412
## 8483 107447
## 8484 107516
## 8485 107555
## 8486 107559
## 8487 107636
## 8488 107649
## 8489 107702
## 8490 107769
## 8491 107771
## 8492 107910
## 8493 107945
## 8494 107953
## 8495 107978
## 8496 107999
## 8497 108076
## 8498 108090
## 8499 108156
## 8500 108188
## 8501 108190
## 8502 108192
## 8503 108447
## 8504 108506
## 8505 108514
## 8506 108548
## 8507 108551
## 8508 108583
## 8509 108601
## 8510 108689
## 8511 108709
## 8512 108715
## 8513 108727
## 8514 108729
## 8515 108795
## 8516 108873
## 8517 108928
## 8518 108932
## 8519 108945
## 8520 108949
## 8521 108979
## 8522 108981
## 8523 109042
## 8524 109074
## 8525 109161
## 8526 109183
## 8527 109187
## 8528 109191
## 8529 109205
## 8530 109249
## 8531 109295
## 8532 109317
## 8533 109359
## 8534 109372
## 8535 109374
## 8536 109483
## 8537 109487
## 8538 109576
## 8539 109578
## 8540 109673
## 8541 109687
## 8542 109740
## 8543 109742
## 8544 109846
## 8545 109848
## 8546 109850
## 8547 109853
## 8548 109864
## 8549 109895
## 8550 110058
## 8551 110102
## 8552 110110
## 8553 110127
## 8554 110194
## 8555 110297
## 8556 110348
## 8557 110352
## 8558 110453
## 8559 110461
## 8560 110501
## 8561 110553
## 8562 110586
## 8563 110591
## 8564 110611
## 8565 110645
## 8566 110655
## 8567 110730
## 8568 110748
## 8569 110752
## 8570 110771
## 8571 110781
## 8572 110826
## 8573 110858
## 8574 110871
## 8575 110873
## 8576 110882
## 8577 111113
## 8578 111228
## 8579 111235
## 8580 111249
## 8581 111251
## 8582 111360
## 8583 111362
## 8584 111364
## 8585 111384
## 8586 111443
## 8587 111486
## 8588 111505
## 8589 111529
## 8590 111617
## 8591 111622
## 8592 111624
## 8593 111659
## 8594 111663
## 8595 111680
## 8596 111743
## 8597 111759
## 8598 111781
## 8599 111795
## 8600 111913
## 8601 111921
## 8602 111931
## 8603 112006
## 8604 112062
## 8605 112070
## 8606 112112
## 8607 112138
## 8608 112171
## 8609 112175
## 8610 112183
## 8611 112277
## 8612 112290
## 8613 112303
## 8614 112334
## 8615 112370
## 8616 112399
## 8617 112421
## 8618 112450
## 8619 112460
## 8620 112497
## 8621 112515
## 8622 112550
## 8623 112552
## 8624 112556
## 8625 112577
## 8626 112582
## 8627 112623
## 8628 112653
## 8629 112655
## 8630 112689
## 8631 112735
## 8632 112749
## 8633 112767
## 8634 112788
## 8635 112804
## 8636 112818
## 8637 112850
## 8638 112852
## 8639 112897
## 8640 112911
## 8641 112921
## 8642 112940
## 8643 113064
## 8644 113186
## 8645 113207
## 8646 113220
## 8647 113225
## 8648 113252
## 8649 113275
## 8650 113345
## 8651 113348
## 8652 113378
## 8653 113416
## 8654 113453
## 8655 113532
## 8656 113565
## 8657 113573
## 8658 113640
## 8659 113705
## 8660 113741
## 8661 113780
## 8662 113829
## 8663 113862
## 8664 113938
## 8665 114028
## 8666 114044
## 8667 114060
## 8668 114074
## 8669 114082
## 8670 114122
## 8671 114180
## 8672 114254
## 8673 114265
## 8674 114342
## 8675 114459
## 8676 114464
## 8677 114552
## 8678 114601
## 8679 114635
## 8680 114662
## 8681 114670
## 8682 114707
## 8683 114762
## 8684 114766
## 8685 114795
## 8686 114818
## 8687 114925
## 8688 114935
## 8689 115122
## 8690 115139
## 8691 115147
## 8692 115149
## 8693 115151
## 8694 115170
## 8695 115174
## 8696 115210
## 8697 115216
## 8698 115231
## 8699 115502
## 8700 115534
## 8701 115569
## 8702 115617
## 8703 115624
## 8704 115664
## 8705 115680
## 8706 115713
## 8707 115877
## 8708 115881
## 8709 115927
## 8710 116012
## 8711 116136
## 8712 116161
## 8713 116207
## 8714 116397
## 8715 116413
## 8716 116419
## 8717 116503
## 8718 116660
## 8719 116797
## 8720 116799
## 8721 116823
## 8722 116849
## 8723 116855
## 8724 116887
## 8725 116897
## 8726 116939
## 8727 116977
## 8728 116985
## 8729 117107
## 8730 117121
## 8731 117123
## 8732 117176
## 8733 117192
## 8734 117434
## 8735 117444
## 8736 117456
## 8737 117511
## 8738 117529
## 8739 117533
## 8740 117590
## 8741 117851
## 8742 117871
## 8743 117895
## 8744 118082
## 8745 118105
## 8746 118248
## 8747 118260
## 8748 118326
## 8749 118334
## 8750 118354
## 8751 118468
## 8752 118696
## 8753 118700
## 8754 118702
## 8755 118814
## 8756 118880
## 8757 118890
## 8758 118898
## 8759 118900
## 8760 118924
## 8761 118985
## 8762 118997
## 8763 119068
## 8764 119141
## 8765 119145
## 8766 119155
## 8767 119655
## 8768 120392
## 8769 120466
## 8770 120635
## 8771 120637
## 8772 120783
## 8773 120799
## 8774 120805
## 8775 120821
## 8776 121113
## 8777 121126
## 8778 121171
## 8779 121231
## 8780 121491
## 8781 121618
## 8782 122490
## 8783 122882
## 8784 122886
## 8785 122888
## 8786 122890
## 8787 122892
## 8788 122900
## 8789 122902
## 8790 122904
## 8791 122920
## 8792 122924
## 8793 122932
## 8794 123663
## 8795 123695
## 8796 123947
## 8797 124859
## 8798 125916
## 8799 126006
## 8800 126106
## 8801 126420
## 8802 126430
## 8803 126548
## 8804 127052
## 8805 127096
## 8806 127098
## 8807 127108
## 8808 127114
## 8809 127124
## 8810 127136
## 8811 127144
## 8812 127152
## 8813 127158
## 8814 127164
## 8815 127178
## 8816 127194
## 8817 127198
## 8818 127202
## 8819 127204
## 8820 127206
## 8821 127212
## 8822 127319
## 8823 127728
## 8824 128235
## 8825 128360
## 8826 128512
## 8827 128520
## 8828 128592
## 8829 128606
## 8830 128616
## 8831 128620
## 8832 128846
## 8833 129009
## 8834 129191
## 8835 129250
## 8836 129313
## 8837 129354
## 8838 129364
## 8839 129428
## 8840 129514
## 8841 129653
## 8842 129657
## 8843 129659
## 8844 129737
## 8845 129937
## 8846 130073
## 8847 130083
## 8848 130087
## 8849 130351
## 8850 130448
## 8851 130450
## 8852 130452
## 8853 130490
## 8854 130520
## 8855 130522
## 8856 130576
## 8857 130580
## 8858 130628
## 8859 130634
## 8860 130642
## 8861 130682
## 8862 130960
## 8863 130970
## 8864 130980
## 8865 131013
## 8866 131168
## 8867 131451
## 8868 131714
## 8869 131724
## 8870 131796
## 8871 131830
## 8872 132046
## 8873 132074
## 8874 132146
## 8875 132157
## 8876 132333
## 8877 132458
## 8878 132462
## 8879 132480
## 8880 132488
## 8881 132496
## 8882 132547
## 8883 132549
## 8884 132618
## 8885 132796
## 8886 132800
## 8887 132888
## 8888 132952
## 8889 132961
## 8890 133195
## 8891 133281
## 8892 133295
## 8893 133365
## 8894 133377
## 8895 133419
## 8896 133545
## 8897 133645
## 8898 133771
## 8899 133782
## 8900 133798
## 8901 133824
## 8902 134025
## 8903 134130
## 8904 134158
## 8905 134170
## 8906 134246
## 8907 134368
## 8908 134393
## 8909 134528
## 8910 134569
## 8911 134783
## 8912 134853
## 8913 134859
## 8914 134881
## 8915 135133
## 8916 135137
## 8917 135264
## 8918 135266
## 8919 135268
## 8920 135436
## 8921 135508
## 8922 135518
## 8923 135532
## 8924 135536
## 8925 135567
## 8926 135569
## 8927 135861
## 8928 135887
## 8929 136016
## 8930 136018
## 8931 136020
## 8932 136305
## 8933 136445
## 8934 136447
## 8935 136449
## 8936 136562
## 8937 136592
## 8938 136598
## 8939 136602
## 8940 136654
## 8941 136666
## 8942 136800
## 8943 136816
## 8944 136864
## 8945 137337
## 8946 137403
## 8947 137595
## 8948 137857
## 8949 138036
## 8950 138204
## 8951 138208
## 8952 138258
## 8953 138546
## 8954 138610
## 8955 138696
## 8956 138698
## 8957 139116
## 8958 139130
## 8959 139385
## 8960 139415
## 8961 139620
## 8962 139642
## 8963 139644
## 8964 139757
## 8965 139855
## 8966 139915
## 8967 140110
## 8968 140152
## 8969 140174
## 8970 140237
## 8971 140247
## 8972 140265
## 8973 140267
## 8974 140523
## 8975 140711
## 8976 140715
## 8977 140725
## 8978 140739
## 8979 140741
## 8980 140743
## 8981 140745
## 8982 140747
## 8983 140749
## 8984 140751
## 8985 140753
## 8986 140755
## 8987 140757
## 8988 140759
## 8989 140761
## 8990 140763
## 8991 140816
## 8992 140880
## 8993 140928
## 8994 141124
## 8995 141422
## 8996 141668
## 8997 141688
## 8998 141718
## 8999 141749
## 9000 141866
## 9001 141886
## 9002 141890
## 9003 141956
## 9004 142068
## 9005 142192
## 9006 142240
## 9007 142258
## 9008 142422
## 9009 142448
## 9010 142488
## 9011 142507
## 9012 142536
## 9013 142997
## 9014 143255
## 9015 143257
## 9016 143377
## 9017 143385
## 9018 143410
## 9019 143472
## 9020 143657
## 9021 143859
## 9022 144172
## 9023 144620
## 9024 144714
## 9025 144976
## 9026 145150
## 9027 145307
## 9028 145775
## 9029 145839
## 9030 145935
## 9031 146309
## 9032 146443
## 9033 146501
## 9034 146604
## 9035 146656
## 9036 146682
## 9037 146688
## 9038 147006
## 9039 147010
## 9040 147037
## 9041 147426
## 9042 147845
## 9043 148168
## 9044 148238
## 9045 148372
## 9046 148482
## 9047 148626
## 9048 148652
## 9049 148881
## 9050 148888
## 9051 148956
## 9052 149352
## 9053 149354
## 9054 149406
## 9055 149532
## 9056 149572
## 9057 149590
## 9058 149606
## 9059 149612
## 9060 149830
## 9061 150401
## 9062 150548
## 9063 150856
## 9064 151307
## 9065 151639
## 9066 152017
## 9067 152025
## 9068 152057
## 9069 152077
## 9070 152079
## 9071 152081
## 9072 152091
## 9073 152173
## 9074 152844
## 9075 153584
## 9076 155064
## 9077 155392
## 9078 155611
## 9079 155820
## 9080 156025
## 9081 156387
## 9082 156607
## 9083 156609
## 9084 156726
## 9085 157200
## 9086 157296
## 9087 157407
## 9088 157667
## 9089 158238
## 9090 158314
## 9091 158528
## 9092 158783
## 9093 158956
## 9094 159093
## 9095 159462
## 9096 159690
## 9097 159755
## 9098 159858
## 9099 159972
## 9100 160080
## 9101 160271
## 9102 160438
## 9103 160440
## 9104 160563
## 9105 160565
## 9106 160567
## 9107 160590
## 9108 160656
## 9109 160718
## 9110 160954
## 9111 161084
## 9112 161155
## 9113 161336
## 9114 161582
## 9115 161594
## 9116 161830
## 9117 161918
## 9118 161944
## 9119 162376
## 9120 162542
## 9121 162672
## 9122 163056
## 9123 163949
## 9124 164977
## 9125 164979
## 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 Carrington (1995)
## 35 Dead Man Walking (1995)
## 36 Across the Sea of Time (1995)
## 37 It Takes Two (1995)
## 38 Clueless (1995)
## 39 Cry, the Beloved Country (1995)
## 40 Richard III (1995)
## 41 Dead Presidents (1995)
## 42 Restoration (1995)
## 43 Mortal Kombat (1995)
## 44 To Die For (1995)
## 45 How to Make an American Quilt (1995)
## 46 Seven (a.k.a. Se7en) (1995)
## 47 Pocahontas (1995)
## 48 When Night Is Falling (1995)
## 49 Usual Suspects, The (1995)
## 50 Mighty Aphrodite (1995)
## 51 Lamerica (1994)
## 52 Big Green, The (1995)
## 53 Georgia (1995)
## 54 Home for the Holidays (1995)
## 55 Postman, The (Postino, Il) (1994)
## 56 Confessional, The (Confessionnal, Le) (1995)
## 57 Indian in the Cupboard, The (1995)
## 58 Eye for an Eye (1996)
## 59 Mr. Holland's Opus (1995)
## 60 Don't Be a Menace to South Central While Drinking Your Juice in the Hood (1996)
## 61 Two if by Sea (1996)
## 62 Bio-Dome (1996)
## 63 Lawnmower Man 2: Beyond Cyberspace (1996)
## 64 French Twist (Gazon maudit) (1995)
## 65 Friday (1995)
## 66 From Dusk Till Dawn (1996)
## 67 Fair Game (1995)
## 68 Kicking and Screaming (1995)
## 69 Misérables, Les (1995)
## 70 Bed of Roses (1996)
## 71 Screamers (1995)
## 72 Nico Icon (1995)
## 73 Crossing Guard, The (1995)
## 74 Juror, The (1996)
## 75 White Balloon, The (Badkonake sefid) (1995)
## 76 Things to Do in Denver When You're Dead (1995)
## 77 Antonia's Line (Antonia) (1995)
## 78 Once Upon a Time... When We Were Colored (1995)
## 79 Last Summer in the Hamptons (1995)
## 80 Angels and Insects (1995)
## 81 White Squall (1996)
## 82 Dunston Checks In (1996)
## 83 Black Sheep (1996)
## 84 Nick of Time (1995)
## 85 Mary Reilly (1996)
## 86 Vampire in Brooklyn (1995)
## 87 Beautiful Girls (1996)
## 88 Broken Arrow (1996)
## 89 In the Bleak Midwinter (1995)
## 90 Hate (Haine, La) (1995)
## 91 Shopping (1994)
## 92 Heidi Fleiss: Hollywood Madam (1995)
## 93 City Hall (1996)
## 94 Bottle Rocket (1996)
## 95 Mr. Wrong (1996)
## 96 Unforgettable (1996)
## 97 Happy Gilmore (1996)
## 98 Bridges of Madison County, The (1995)
## 99 Muppet Treasure Island (1996)
## 100 Catwalk (1996)
## 101 Braveheart (1995)
## 102 Taxi Driver (1976)
## 103 Rumble in the Bronx (Hont faan kui) (1995)
## 104 Before and After (1996)
## 105 Margaret's Museum (1995)
## 106 Anne Frank Remembered (1995)
## 107 Young Poisoner's Handbook, The (1995)
## 108 If Lucy Fell (1996)
## 109 Steal Big, Steal Little (1995)
## 110 Boys of St. Vincent, The (1992)
## 111 Boomerang (1992)
## 112 Chungking Express (Chung Hing sam lam) (1994)
## 113 Star Maker, The (Uomo delle stelle, L') (1995)
## 114 Flirting With Disaster (1996)
## 115 NeverEnding Story III, The (1994)
## 116 Pie in the Sky (1996)
## 117 Angela (1995)
## 118 Frankie Starlight (1995)
## 119 Jade (1995)
## 120 Down Periscope (1996)
## 121 Man of the Year (1995)
## 122 Up Close and Personal (1996)
## 123 Birdcage, The (1996)
## 124 Brothers McMullen, The (1995)
## 125 Bad Boys (1995)
## 126 Amazing Panda Adventure, The (1995)
## 127 Basketball Diaries, The (1995)
## 128 Awfully Big Adventure, An (1995)
## 129 Amateur (1994)
## 130 Apollo 13 (1995)
## 131 Rob Roy (1995)
## 132 Addiction, The (1995)
## 133 Batman Forever (1995)
## 134 Beauty of the Day (Belle de jour) (1967)
## 135 Beyond Rangoon (1995)
## 136 Blue in the Face (1995)
## 137 Canadian Bacon (1995)
## 138 Casper (1995)
## 139 Clockers (1995)
## 140 Congo (1995)
## 141 Crimson Tide (1995)
## 142 Crumb (1994)
## 143 Desperado (1995)
## 144 Devil in a Blue Dress (1995)
## 145 Die Hard: With a Vengeance (1995)
## 146 Doom Generation, The (1995)
## 147 Feast of July (1995)
## 148 First Knight (1995)
## 149 Free Willy 2: The Adventure Home (1995)
## 150 Hackers (1995)
## 151 Jeffrey (1995)
## 152 Johnny Mnemonic (1995)
## 153 Judge Dredd (1995)
## 154 Jury Duty (1995)
## 155 Kids (1995)
## 156 Living in Oblivion (1995)
## 157 Lord of Illusions (1995)
## 158 Love & Human Remains (1993)
## 159 Mad Love (1995)
## 160 Mallrats (1995)
## 161 Mighty Morphin Power Rangers: The Movie (1995)
## 162 Mute Witness (1994)
## 163 Nadja (1994)
## 164 Net, The (1995)
## 165 Nine Months (1995)
## 166 Party Girl (1995)
## 167 Prophecy, The (1995)
## 168 Reckless (1995)
## 169 Safe (1995)
## 170 Scarlet Letter, The (1995)
## 171 Showgirls (1995)
## 172 Smoke (1995)
## 173 Something to Talk About (1995)
## 174 Species (1995)
## 175 Strange Days (1995)
## 176 Umbrellas of Cherbourg, The (Parapluies de Cherbourg, Les) (1964)
## 177 Tie That Binds, The (1995)
## 178 Three Wishes (1995)
## 179 Total Eclipse (1995)
## 180 To Wong Foo, Thanks for Everything! Julie Newmar (1995)
## 181 Under Siege 2: Dark Territory (1995)
## 182 Unstrung Heroes (1995)
## 183 Unzipped (1995)
## 184 Walk in the Clouds, A (1995)
## 185 Waterworld (1995)
## 186 White Man's Burden (1995)
## 187 Browning Version, The (1994)
## 188 Burnt by the Sun (Utomlyonnye solntsem) (1994)
## 189 Before the Rain (Pred dozhdot) (1994)
## 190 Before Sunrise (1995)
## 191 Billy Madison (1995)
## 192 Babysitter, The (1995)
## 193 Boys on the Side (1995)
## 194 Cure, The (1995)
## 195 Castle Freak (1995)
## 196 Circle of Friends (1995)
## 197 Clerks (1994)
## 198 Don Juan DeMarco (1995)
## 199 Disclosure (1994)
## 200 Drop Zone (1994)
## 201 Destiny Turns on the Radio (1995)
## 202 Death and the Maiden (1994)
## 203 Dolores Claiborne (1995)
## 204 Dumb & Dumber (Dumb and Dumber) (1994)
## 205 Eat Drink Man Woman (Yin shi nan nu) (1994)
## 206 Exotica (1994)
## 207 Exit to Eden (1994)
## 208 Ed Wood (1994)
## 209 French Kiss (1995)
## 210 Forget Paris (1995)
## 211 Far From Home: The Adventures of Yellow Dog (1995)
## 212 Goofy Movie, A (1995)
## 213 Hideaway (1995)
## 214 Fluke (1995)
## 215 Farinelli: il castrato (1994)
## 216 Gordy (1995)
## 217 Gumby: The Movie (1995)
## 218 The Glass Shield (1994)
## 219 Hoop Dreams (1994)
## 220 Heavenly Creatures (1994)
## 221 Houseguest (1994)
## 222 Immortal Beloved (1994)
## 223 Heavyweights (Heavy Weights) (1995)
## 224 Hunted, The (1995)
## 225 I.Q. (1994)
## 226 Interview with the Vampire: The Vampire Chronicles (1994)
## 227 Jefferson in Paris (1995)
## 228 Jerky Boys, The (1995)
## 229 Junior (1994)
## 230 Just Cause (1995)
## 231 Kid in King Arthur's Court, A (1995)
## 232 Kiss of Death (1995)
## 233 Star Wars: Episode IV - A New Hope (1977)
## 234 Little Women (1994)
## 235 Little Princess, A (1995)
## 236 Ladybird Ladybird (1994)
## 237 Enfer, L' (1994)
## 238 Like Water for Chocolate (Como agua para chocolate) (1992)
## 239 Legends of the Fall (1994)
## 240 Major Payne (1995)
## 241 Little Odessa (1994)
## 242 My Crazy Life (Mi vida loca) (1993)
## 243 Love Affair (1994)
## 244 Losing Isaiah (1995)
## 245 Madness of King George, The (1994)
## 246 Mary Shelley's Frankenstein (Frankenstein) (1994)
## 247 Man of the House (1995)
## 248 Mixed Nuts (1994)
## 249 Milk Money (1994)
## 250 Miracle on 34th Street (1994)
## 251 Miami Rhapsody (1995)
## 252 My Family (1995)
## 253 Murder in the First (1995)
## 254 Nobody's Fool (1994)
## 255 Nell (1994)
## 256 New Jersey Drive (1995)
## 257 Beyond Bedlam (1993)
## 258 Nina Takes a Lover (1994)
## 259 Natural Born Killers (1994)
## 260 Only You (1994)
## 261 Once Were Warriors (1994)
## 262 Poison Ivy II (1996)
## 263 Outbreak (1995)
## 264 Léon: The Professional (a.k.a. The Professional) (Léon) (1994)
## 265 Perez Family, The (1995)
## 266 Pyromaniac's Love Story, A (1995)
## 267 Pulp Fiction (1994)
## 268 Priest (1994)
## 269 Quiz Show (1994)
## 270 Picture Bride (Bijo photo) (1994)
## 271 Queen Margot (Reine Margot, La) (1994)
## 272 Quick and the Dead, The (1995)
## 273 Roommates (1995)
## 274 Ready to Wear (Pret-A-Porter) (1994)
## 275 Three Colors: Red (Trois couleurs: Rouge) (1994)
## 276 Three Colors: Blue (Trois couleurs: Bleu) (1993)
## 277 Three Colors: White (Trzy kolory: Bialy) (1994)
## 278 Red Firecracker, Green Firecracker (Pao Da Shuang Deng) (1994)
## 279 Stuart Saves His Family (1995)
## 280 Swan Princess, The (1994)
## 281 Secret of Roan Inish, The (1994)
## 282 Specialist, The (1994)
## 283 Stargate (1994)
## 284 Santa Clause, The (1994)
## 285 Shawshank Redemption, The (1994)
## 286 Shallow Grave (1994)
## 287 Suture (1993)
## 288 Strawberry and Chocolate (Fresa y chocolate) (1993)
## 289 Swimming with Sharks (1995)
## 290 Sum of Us, The (1994)
## 291 National Lampoon's Senior Trip (1995)
## 292 To Live (Huozhe) (1994)
## 293 Tank Girl (1995)
## 294 Tales from the Crypt Presents: Demon Knight (1995)
## 295 Star Trek: Generations (1994)
## 296 Tales from the Hood (1995)
## 297 Tom & Viv (1994)
## 298 Village of the Damned (1995)
## 299 Tommy Boy (1995)
## 300 Vanya on 42nd Street (1994)
## 301 Underneath (1995)
## 302 Walking Dead, The (1995)
## 303 What's Eating Gilbert Grape (1993)
## 304 Virtuosity (1995)
## 305 While You Were Sleeping (1995)
## 306 War, The (1994)
## 307 Double Happiness (1994)
## 308 Muriel's Wedding (1994)
## 309 Baby-Sitters Club, The (1995)
## 310 Ace Ventura: Pet Detective (1994)
## 311 Adventures of Priscilla, Queen of the Desert, The (1994)
## 312 Backbeat (1993)
## 313 Bitter Moon (1992)
## 314 Bullets Over Broadway (1994)
## 315 Clear and Present Danger (1994)
## 316 Client, The (1994)
## 317 Corrina, Corrina (1994)
## 318 Crooklyn (1994)
## 319 Crow, The (1994)
## 320 Cobb (1994)
## 321 Flintstones, The (1994)
## 322 Forrest Gump (1994)
## 323 Four Weddings and a Funeral (1994)
## 324 Higher Learning (1995)
## 325 I Love Trouble (1994)
## 326 It Could Happen to You (1994)
## 327 Jungle Book, The (1994)
## 328 Wonderful, Horrible Life of Leni Riefenstahl, The (Macht der Bilder: Leni Riefenstahl, Die) (1993)
## 329 Lion King, The (1994)
## 330 Little Buddha (1993)
## 331 Wes Craven's New Nightmare (Nightmare on Elm Street Part 7: Freddy's Finale, A) (1994)
## 332 Mask, The (1994)
## 333 Maverick (1994)
## 334 Mrs. Parker and the Vicious Circle (1994)
## 335 Naked Gun 33 1/3: The Final Insult (1994)
## 336 Paper, The (1994)
## 337 Reality Bites (1994)
## 338 Red Rock West (1992)
## 339 Richie Rich (1994)
## 340 Safe Passage (1994)
## 341 River Wild, The (1994)
## 342 Speed (1994)
## 343 Speechless (1994)
## 344 Timecop (1994)
## 345 True Lies (1994)
## 346 When a Man Loves a Woman (1994)
## 347 Wolf (1994)
## 348 Wyatt Earp (1994)
## 349 Bad Company (1995)
## 350 Low Down Dirty Shame, A (1994)
## 351 Boys Life (1995)
## 352 Colonel Chabert, Le (1994)
## 353 Faster Pussycat! Kill! Kill! (1965)
## 354 Jason's Lyric (1994)
## 355 Secret Adventures of Tom Thumb, The (1993)
## 356 Street Fighter (1994)
## 357 Mirage (1995)
## 358 Highlander III: The Sorcerer (a.k.a. Highlander: The Final Dimension) (1994)
## 359 In the Mouth of Madness (1995)
## 360 8 Seconds (1994)
## 361 Above the Rim (1994)
## 362 Addams Family Values (1993)
## 363 Age of Innocence, The (1993)
## 364 Airheads (1994)
## 365 Air Up There, The (1994)
## 366 Another Stakeout (1993)
## 367 Bad Girls (1994)
## 368 Barcelona (1994)
## 369 Being Human (1993)
## 370 Beverly Hillbillies, The (1993)
## 371 Beverly Hills Cop III (1994)
## 372 Black Beauty (1994)
## 373 Blink (1994)
## 374 Blown Away (1994)
## 375 Blue Chips (1994)
## 376 Blue Sky (1994)
## 377 Body Snatchers (1993)
## 378 Boxing Helena (1993)
## 379 Bronx Tale, A (1993)
## 380 Cabin Boy (1994)
## 381 Carlito's Way (1993)
## 382 City Slickers II: The Legend of Curly's Gold (1994)
## 383 Clean Slate (1994)
## 384 Cliffhanger (1993)
## 385 Coneheads (1993)
## 386 Color of Night (1994)
## 387 Cops and Robbersons (1994)
## 388 Cowboy Way, The (1994)
## 389 Dangerous Game (1993)
## 390 Dave (1993)
## 391 Dazed and Confused (1993)
## 392 Demolition Man (1993)
## 393 Endless Summer 2, The (1994)
## 394 Even Cowgirls Get the Blues (1993)
## 395 Fatal Instinct (1993)
## 396 Farewell My Concubine (Ba wang bie ji) (1993)
## 397 Favor, The (1994)
## 398 Fearless (1993)
## 399 Fear of a Black Hat (1994)
## 400 With Honors (1994)
## 401 Flesh and Bone (1993)
## 402 Widows' Peak (1994)
## 403 For Love or Money (1993)
## 404 Firm, The (1993)
## 405 Free Willy (1993)
## 406 Fresh (1994)
## 407 Fugitive, The (1993)
## 408 Geronimo: An American Legend (1993)
## 409 Getaway, The (1994)
## 410 Getting Even with Dad (1994)
## 411 Go Fish (1994)
## 412 Guilty as Sin (1993)
## 413 Hard Target (1993)
## 414 Heaven & Earth (1993)
## 415 Hot Shots! Part Deux (1993)
## 416 Live Nude Girls (1995)
## 417 Englishman Who Went Up a Hill But Came Down a Mountain, The (1995)
## 418 House of the Spirits, The (1993)
## 419 House Party 3 (1994)
## 420 Hudsucker Proxy, The (1994)
## 421 I'll Do Anything (1994)
## 422 In the Army Now (1994)
## 423 In the Line of Fire (1993)
## 424 In the Name of the Father (1993)
## 425 Inkwell, The (1994)
## 426 What's Love Got to Do with It? (1993)
## 427 Judgment Night (1993)
## 428 Jurassic Park (1993)
## 429 Kalifornia (1993)
## 430 Killing Zoe (1994)
## 431 King of the Hill (1993)
## 432 Lassie (1994)
## 433 Last Action Hero (1993)
## 434 Life with Mikey (1993)
## 435 Lightning Jack (1994)
## 436 M. Butterfly (1993)
## 437 Made in America (1993)
## 438 Malice (1993)
## 439 Man Without a Face, The (1993)
## 440 Manhattan Murder Mystery (1993)
## 441 Menace II Society (1993)
## 442 Executive Decision (1996)
## 443 In the Realm of the Senses (Ai no corrida) (1976)
## 444 What Happened Was... (1994)
## 445 Much Ado About Nothing (1993)
## 446 Mr. Jones (1993)
## 447 Mr. Wonderful (1993)
## 448 Mrs. Doubtfire (1993)
## 449 Naked (1993)
## 450 Next Karate Kid, The (1994)
## 451 No Escape (1994)
## 452 North (1994)
## 453 Orlando (1992)
## 454 Perfect World, A (1993)
## 455 Philadelphia (1993)
## 456 Piano, The (1993)
## 457 Poetic Justice (1993)
## 458 Program, The (1993)
## 459 Puppet Masters, The (1994)
## 460 Radioland Murders (1994)
## 461 Ref, The (1994)
## 462 Remains of the Day, The (1993)
## 463 Renaissance Man (1994)
## 464 Rising Sun (1993)
## 465 Road to Wellville, The (1994)
## 466 RoboCop 3 (1993)
## 467 Robin Hood: Men in Tights (1993)
## 468 Romeo Is Bleeding (1993)
## 469 Romper Stomper (1992)
## 470 Ruby in Paradise (1993)
## 471 Rudy (1993)
## 472 Savage Nights (Nuits fauves, Les) (1992)
## 473 Schindler's List (1993)
## 474 Scout, The (1994)
## 475 Searching for Bobby Fischer (1993)
## 476 Secret Garden, The (1993)
## 477 Serial Mom (1994)
## 478 Shadow, The (1994)
## 479 Shadowlands (1993)
## 480 Short Cuts (1993)
## 481 Simple Twist of Fate, A (1994)
## 482 Sirens (1994)
## 483 Six Degrees of Separation (1993)
## 484 Sleepless in Seattle (1993)
## 485 Sliver (1993)
## 486 Blade Runner (1982)
## 487 Son in Law (1993)
## 488 So I Married an Axe Murderer (1993)
## 489 Striking Distance (1993)
## 490 Super Mario Bros. (1993)
## 491 Surviving the Game (1994)
## 492 Terminal Velocity (1994)
## 493 Thirty-Two Short Films About Glenn Gould (1993)
## 494 Threesome (1994)
## 495 Nightmare Before Christmas, The (1993)
## 496 Three Musketeers, The (1993)
## 497 Tombstone (1993)
## 498 Trial by Jury (1994)
## 499 True Romance (1993)
## 500 War Room, The (1993)
## 501 Pagemaster, The (1994)
## 502 Paris, France (1993)
## 503 Killer (Bulletproof Heart) (1994)
## 504 Welcome to the Dollhouse (1995)
## 505 Germinal (1993)
## 506 Chasers (1994)
## 507 Cronos (1993)
## 508 Kika (1993)
## 509 Bhaji on the Beach (1993)
## 510 Little Big League (1994)
## 511 Wedding Gift, The (1994)
## 512 Ciao, Professore! (Io speriamo che me la cavo) (1992)
## 513 Spanking the Monkey (1994)
## 514 Little Rascals, The (1994)
## 515 Andre (1994)
## 516 Princess Caraboo (1994)
## 517 Celluloid Closet, The (1995)
## 518 Métisse (Café au Lait) (1993)
## 519 Brady Bunch Movie, The (1995)
## 520 Home Alone (1990)
## 521 Ghost (1990)
## 522 Aladdin (1992)
## 523 Terminator 2: Judgment Day (1991)
## 524 Dances with Wolves (1990)
## 525 Batman (1989)
## 526 Silence of the Lambs, The (1991)
## 527 Snow White and the Seven Dwarfs (1937)
## 528 Beauty and the Beast (1991)
## 529 Pinocchio (1940)
## 530 Pretty Woman (1990)
## 531 Wild Bunch, The (1969)
## 532 Love and a .45 (1994)
## 533 Bye Bye, Love (1995)
## 534 One Fine Day (1996)
## 535 Candyman: Farewell to the Flesh (1995)
## 536 Fargo (1996)
## 537 Homeward Bound II: Lost in San Francisco (1996)
## 538 Heavy Metal (1981)
## 539 Hellraiser: Bloodline (1996)
## 540 Pallbearer, The (1996)
## 541 Jane Eyre (1996)
## 542 Loaded (1994)
## 543 Bread and Chocolate (Pane e cioccolata) (1973)
## 544 Aristocats, The (1970)
## 545 Flower of My Secret, The (La flor de mi secreto) (1995)
## 546 Ed (1996)
## 547 Scream of Stone (Cerro Torre: Schrei aus Stein) (1991)
## 548 My Favorite Season (1993)
## 549 Thin Line Between Love and Hate, A (1996)
## 550 Last Supper, The (1995)
## 551 Primal Fear (1996)
## 552 Carried Away (1996)
## 553 All Dogs Go to Heaven 2 (1996)
## 554 Land and Freedom (Tierra y libertad) (1995)
## 555 Denise Calls Up (1995)
## 556 Family Thing, A (1996)
## 557 Sgt. Bilko (1996)
## 558 Jack and Sarah (1995)
## 559 Girl 6 (1996)
## 560 Diabolique (1996)
## 561 Courage Under Fire (1996)
## 562 Mission: Impossible (1996)
## 563 Moll Flanders (1996)
## 564 Superweib, Das (1996)
## 565 Dragonheart (1996)
## 566 Eddie (1996)
## 567 Purple Noon (Plein soleil) (1960)
## 568 James and the Giant Peach (1996)
## 569 Fear (1996)
## 570 Kids in the Hall: Brain Candy (1996)
## 571 Faithful (1996)
## 572 Underground (1995)
## 573 Bloodsport 2 (a.k.a. Bloodsport II: The Next Kumite) (1996)
## 574 Song of the Little Road (Pather Panchali) (1955)
## 575 World of Apu, The (Apur Sansar) (1959)
## 576 Mystery Science Theater 3000: The Movie (1996)
## 577 Space Jam (1996)
## 578 Barbarella (1968)
## 579 Some Folks Call It a Sling Blade (1993)
## 580 Run of the Country, The (1995)
## 581 Alphaville (Alphaville, une étrange aventure de Lemmy Caution) (1965)
## 582 Coup de torchon (Clean Slate) (1981)
## 583 It's My Party (1996)
## 584 Country Life (1994)
## 585 Operation Dumbo Drop (1995)
## 586 Promise, The (Versprechen, Das) (1995)
## 587 Mrs. Winterbourne (1996)
## 588 Solo (1996)
## 589 Substitute, The (1996)
## 590 True Crime (1996)
## 591 Butterfly Kiss (1995)
## 592 Feeling Minnesota (1996)
## 593 Delta of Venus (1995)
## 594 Angus (1995)
## 595 Faces (1968)
## 596 Boys (1996)
## 597 Quest, The (1996)
## 598 Cosi (1996)
## 599 Mulholland Falls (1996)
## 600 Truth About Cats & Dogs, The (1996)
## 601 Oliver & Company (1988)
## 602 Celtic Pride (1996)
## 603 Flipper (1996)
## 604 Dead Man (1995)
## 605 Horseman on the Roof, The (Hussard sur le toit, Le) (1995)
## 606 Visitors, The (Visiteurs, Les) (1993)
## 607 Multiplicity (1996)
## 608 Wallace & Gromit: The Best of Aardman Animation (1996)
## 609 Halfmoon (Paul Bowles - Halbmond) (1995)
## 610 Haunted World of Edward D. Wood Jr., The (1996)
## 611 Craft, The (1996)
## 612 Great White Hype, The (1996)
## 613 Last Dance (1996)
## 614 Cold Comfort Farm (1995)
## 615 Heaven's Prisoners (1996)
## 616 Rock, The (1996)
## 617 Cemetery Man (Dellamorte Dellamore) (1994)
## 618 Twister (1996)
## 619 Barb Wire (1996)
## 620 Ghost in the Shell (Kôkaku kidôtai) (1995)
## 621 Thinner (1996)
## 622 Spy Hard (1996)
## 623 Wallace & Gromit: A Close Shave (1995)
## 624 Force of Evil (1948)
## 625 Stupids, The (1996)
## 626 Arrival, The (1996)
## 627 Dr. Strangelove or: How I Learned to Stop Worrying and Love the Bomb (1964)
## 628 Month by the Lake, A (1995)
## 629 Gold Diggers: The Secret of Bear Mountain (1995)
## 630 Kim (1950)
## 631 Carmen Miranda: Bananas Is My Business (1994)
## 632 Ashes of Time (Dung che sai duk) (1994)
## 633 Maya Lin: A Strong Clear Vision (1994)
## 634 Stalingrad (1993)
## 635 Phantom, The (1996)
## 636 Striptease (1996)
## 637 Heavy (1995)
## 638 Jack (1996)
## 639 I Shot Andy Warhol (1996)
## 640 Grass Harp, The (1995)
## 641 Marlene Dietrich: Shadow and Light (1996)
## 642 Spirits of the Dead (1968)
## 643 Trainspotting (1996)
## 644 'Til There Was You (1997)
## 645 Independence Day (a.k.a. ID4) (1996)
## 646 Stealing Beauty (1996)
## 647 Fan, The (1996)
## 648 Hunchback of Notre Dame, The (1996)
## 649 Cable Guy, The (1996)
## 650 Kingpin (1996)
## 651 Eraser (1996)
## 652 Gate of Heavenly Peace, The (1995)
## 653 Nutty Professor, The (1996)
## 654 My Life and Times With Antonin Artaud (En compagnie d'Antonin Artaud) (1993)
## 655 Daylight (1996)
## 656 Frighteners, The (1996)
## 657 Lone Star (1996)
## 658 Harriet the Spy (1996)
## 659 Phenomenon (1996)
## 660 Walking and Talking (1996)
## 661 She's the One (1996)
## 662 Time to Kill, A (1996)
## 663 American Buffalo (1996)
## 664 Alaska (1996)
## 665 Fled (1996)
## 666 Kazaam (1996)
## 667 Larger Than Life (1996)
## 668 Two Deaths (1995)
## 669 Very Brady Sequel, A (1996)
## 670 Death in the Garden (Mort en ce jardin, La) (1956)
## 671 Kaspar Hauser (1993)
## 672 Adventures of Pinocchio, The (1996)
## 673 Joe's Apartment (1996)
## 674 First Wives Club, The (1996)
## 675 Stonewall (1995)
## 676 Ransom (1996)
## 677 High School High (1996)
## 678 Phat Beach (1996)
## 679 Foxfire (1996)
## 680 Chain Reaction (1996)
## 681 Matilda (1996)
## 682 Emma (1996)
## 683 Crow: City of Angels, The (1996)
## 684 House Arrest (1996)
## 685 Eyes Without a Face (Yeux sans visage, Les) (1959)
## 686 Tales from the Crypt Presents: Bordello of Blood (1996)
## 687 Story of Xinghua, The (Xinghua san yue tian) (1994)
## 688 Day the Sun Turned Cold, The (Tianguo niezi) (1994)
## 689 Flirt (1995)
## 690 Spitfire Grill, The (1996)
## 691 Escape from L.A. (1996)
## 692 Cyclo (Xich lo) (1995)
## 693 Basquiat (1996)
## 694 Tin Cup (1996)
## 695 Ballad of Narayama, The (Narayama Bushiko) (1958)
## 696 Godfather, The (1972)
## 697 Supercop (Police Story 3: Supercop) (Jing cha gu shi III: Chao ji jing cha) (1992)
## 698 Wife, The (1995)
## 699 Small Faces (1996)
## 700 Bound (1996)
## 701 Carpool (1996)
## 702 Kansas City (1996)
## 703 Gone Fishin' (1997)
## 704 Vive L'Amour (Ai qing wan sui) (1994)
## 705 Nothing to Lose (1994)
## 706 Supercop 2 (Project S) (Chao ji ji hua) (1993)
## 707 Relic, The (1997)
## 708 Island of Dr. Moreau, The (1996)
## 709 First Kid (1996)
## 710 Trigger Effect, The (1996)
## 711 Bogus (1996)
## 712 Bulletproof (1996)
## 713 Land Before Time III: The Time of the Great Giving (1995)
## 714 1-900 (06) (1994)
## 715 Halloween: The Curse of Michael Myers (Halloween 6: The Curse of Michael Myers) (1995)
## 716 Twelfth Night (1996)
## 717 Mother Night (1996)
## 718 Wild Reeds (Les roseaux sauvages) (1994)
## 719 For Whom the Bell Tolls (1943)
## 720 Philadelphia Story, The (1940)
## 721 Singin' in the Rain (1952)
## 722 American in Paris, An (1951)
## 723 Funny Face (1957)
## 724 Breakfast at Tiffany's (1961)
## 725 Vertigo (1958)
## 726 Rear Window (1954)
## 727 It Happened One Night (1934)
## 728 Gaslight (1944)
## 729 Gay Divorcee, The (1934)
## 730 North by Northwest (1959)
## 731 Apartment, The (1960)
## 732 Some Like It Hot (1959)
## 733 Charade (1963)
## 734 Casablanca (1942)
## 735 Maltese Falcon, The (1941)
## 736 My Fair Lady (1964)
## 737 Sabrina (1954)
## 738 Roman Holiday (1953)
## 739 Little Princess, The (1939)
## 740 Meet Me in St. Louis (1944)
## 741 Wizard of Oz, The (1939)
## 742 Gone with the Wind (1939)
## 743 My Favorite Year (1982)
## 744 Sunset Blvd. (a.k.a. Sunset Boulevard) (1950)
## 745 Citizen Kane (1941)
## 746 2001: A Space Odyssey (1968)
## 747 All About Eve (1950)
## 748 Women, The (1939)
## 749 Rebecca (1940)
## 750 Foreign Correspondent (1940)
## 751 Notorious (1946)
## 752 Spellbound (1945)
## 753 Affair to Remember, An (1957)
## 754 To Catch a Thief (1955)
## 755 Father of the Bride (1950)
## 756 Band Wagon, The (1953)
## 757 Ninotchka (1939)
## 758 Love in the Afternoon (1957)
## 759 Gigi (1958)
## 760 Reluctant Debutante, The (1958)
## 761 Adventures of Robin Hood, The (1938)
## 762 Mark of Zorro, The (1940)
## 763 Laura (1944)
## 764 Ghost and Mrs. Muir, The (1947)
## 765 Lost Horizon (1937)
## 766 Top Hat (1935)
## 767 To Be or Not to Be (1942)
## 768 My Man Godfrey (1936)
## 769 Giant (1956)
## 770 East of Eden (1955)
## 771 Thin Man, The (1934)
## 772 His Girl Friday (1940)
## 773 Around the World in 80 Days (1956)
## 774 It's a Wonderful Life (1946)
## 775 Mr. Smith Goes to Washington (1939)
## 776 Bringing Up Baby (1938)
## 777 Penny Serenade (1941)
## 778 Scarlet Letter, The (1926)
## 779 Angel on My Shoulder (1946)
## 780 Little Lord Fauntleroy (1936)
## 781 They Made Me a Criminal (1939)
## 782 Inspector General, The (1949)
## 783 Angel and the Badman (1947)
## 784 39 Steps, The (1935)
## 785 A Walk in the Sun (1945)
## 786 Night of the Living Dead (1968)
## 787 African Queen, The (1951)
## 788 Beat the Devil (1953)
## 789 Cat on a Hot Tin Roof (1958)
## 790 Last Time I Saw Paris, The (1954)
## 791 Meet John Doe (1941)
## 792 Farewell to Arms, A (1932)
## 793 Yes, Madam (a.k.a. Police Assassins) (a.k.a. In the Line of Duty 2) (Huang gu shi jie) (1985)
## 794 Dangerous Ground (1997)
## 795 Picnic (1955)
## 796 Pompatus of Love, The (1996)
## 797 Fly Away Home (1996)
## 798 Bliss (1997)
## 799 Grace of My Heart (1996)
## 800 Maximum Risk (1996)
## 801 Michael Collins (1996)
## 802 Rich Man's Wife, The (1996)
## 803 Big Night (1996)
## 804 Last Man Standing (1996)
## 805 Caught (1996)
## 806 Set It Off (1996)
## 807 2 Days in the Valley (1996)
## 808 Extreme Measures (1996)
## 809 Glimmer Man, The (1996)
## 810 D3: The Mighty Ducks (1996)
## 811 Chamber, The (1996)
## 812 Apple Dumpling Gang, The (1975)
## 813 Davy Crockett, King of the Wild Frontier (1955)
## 814 Escape to Witch Mountain (1975)
## 815 Love Bug, The (1969)
## 816 Herbie Rides Again (1974)
## 817 Old Yeller (1957)
## 818 Parent Trap, The (1961)
## 819 Pollyanna (1960)
## 820 Homeward Bound: The Incredible Journey (1993)
## 821 Shaggy Dog, The (1959)
## 822 Swiss Family Robinson (1960)
## 823 That Darn Cat! (1965)
## 824 20,000 Leagues Under the Sea (1954)
## 825 Cool Runnings (1993)
## 826 Angels in the Outfield (1994)
## 827 Cinderella (1950)
## 828 Winnie the Pooh and the Blustery Day (1968)
## 829 Three Caballeros, The (1945)
## 830 Sword in the Stone, The (1963)
## 831 So Dear to My Heart (1949)
## 832 Robin Hood: Prince of Thieves (1991)
## 833 Mary Poppins (1964)
## 834 Dumbo (1941)
## 835 Pete's Dragon (1977)
## 836 Bedknobs and Broomsticks (1971)
## 837 Alice in Wonderland (1951)
## 838 Fox and the Hound, The (1981)
## 839 Freeway (1996)
## 840 Sound of Music, The (1965)
## 841 Die Hard (1988)
## 842 Lawnmower Man, The (1992)
## 843 Secret Agent, The (1996)
## 844 Secrets & Lies (1996)
## 845 That Thing You Do! (1996)
## 846 To Gillian on Her 37th Birthday (1996)
## 847 Surviving Picasso (1996)
## 848 Beautiful Thing (1996)
## 849 Long Kiss Goodnight, The (1996)
## 850 Ghost and the Darkness, The (1996)
## 851 Looking for Richard (1996)
## 852 Trees Lounge (1996)
## 853 Normal Life (1996)
## 854 Get on the Bus (1996)
## 855 Shadow Conspiracy (1997)
## 856 Jude (1996)
## 857 Everyone Says I Love You (1996)
## 858 William Shakespeare's Romeo + Juliet (1996)
## 859 Swingers (1996)
## 860 Sleepers (1996)
## 861 Johns (1996)
## 862 Aladdin and the King of Thieves (1996)
## 863 Shall We Dance (1937)
## 864 Damsel in Distress, A (1937)
## 865 Crossfire (1947)
## 866 Murder, My Sweet (1944)
## 867 Willy Wonka & the Chocolate Factory (1971)
## 868 Innocents, The (1961)
## 869 Sleeper (1973)
## 870 Bananas (1971)
## 871 Fish Called Wanda, A (1988)
## 872 Monty Python's Life of Brian (1979)
## 873 Victor/Victoria (1982)
## 874 Candidate, The (1972)
## 875 Great Race, The (1965)
## 876 Bonnie and Clyde (1967)
## 877 Old Man and the Sea, The (1958)
## 878 Dial M for Murder (1954)
## 879 Madame Butterfly (1995)
## 880 Dirty Dancing (1987)
## 881 Reservoir Dogs (1992)
## 882 Platoon (1986)
## 883 Weekend at Bernie's (1989)
## 884 Basic Instinct (1992)
## 885 Doors, The (1991)
## 886 Crying Game, The (1992)
## 887 Glengarry Glen Ross (1992)
## 888 Sophie's Choice (1982)
## 889 E.T. the Extra-Terrestrial (1982)
## 890 Christmas Carol, A (1938)
## 891 Days of Thunder (1990)
## 892 Top Gun (1986)
## 893 Rebel Without a Cause (1955)
## 894 Streetcar Named Desire, A (1951)
## 895 Children of the Corn IV: The Gathering (1996)
## 896 Microcosmos (Microcosmos: Le peuple de l'herbe) (1996)
## 897 Palookaville (1996)
## 898 Associate, The (1996)
## 899 Funeral, The (1996)
## 900 People vs. Larry Flynt, The (1996)
## 901 Perfect Candidate, A (1996)
## 902 On Golden Pond (1981)
## 903 Return of the Pink Panther, The (1975)
## 904 Drop Dead Fred (1991)
## 905 Abyss, The (1989)
## 906 Fog, The (1980)
## 907 Escape from New York (1981)
## 908 Howling, The (1980)
## 909 Jean de Florette (1986)
## 910 Manon of the Spring (Manon des sources) (1986)
## 911 Talking About Sex (1994)
## 912 Private Benjamin (1980)
## 913 Monty Python and the Holy Grail (1975)
## 914 Hustler White (1996)
## 915 Snowriders (1996)
## 916 When We Were Kings (1996)
## 917 Wallace & Gromit: The Wrong Trousers (1993)
## 918 Return of Martin Guerre, The (Retour de Martin Guerre, Le) (1982)
## 919 Lesson Faust (1994)
## 920 He Walked by Night (1948)
## 921 Raw Deal (1948)
## 922 T-Men (1947)
## 923 Tin Drum, The (Blechtrommel, Die) (1979)
## 924 Ruling Class, The (1972)
## 925 Mina Tannenbaum (1994)
## 926 2 ou 3 choses que je sais d'elle (2 or 3 Things I Know About Her) (1967)
## 927 Bloody Child, The (1996)
## 928 Dear God (1996)
## 929 Bad Moon (1996)
## 930 American Dream (1990)
## 931 Bob Roberts (1992)
## 932 Cinema Paradiso (Nuovo cinema Paradiso) (1989)
## 933 Cook the Thief His Wife & Her Lover, The (1989)
## 934 Dead Tired (Grosse Fatigue) (1994)
## 935 Delicatessen (1991)
## 936 Double Life of Veronique, The (Double Vie de Véronique, La) (1991)
## 937 Enchanted April (1992)
## 938 Paths of Glory (1957)
## 939 Grifters, The (1990)
## 940 Hear My Song (1991)
## 941 Shooter, The (1997)
## 942 English Patient, The (1996)
## 943 Mediterraneo (1991)
## 944 My Left Foot (1989)
## 945 Sex, Lies, and Videotape (1989)
## 946 Passion Fish (1992)
## 947 Strictly Ballroom (1992)
## 948 Thin Blue Line, The (1988)
## 949 Tie Me Up! Tie Me Down! (áÃ\201tame!) (1990)
## 950 Madonna: Truth or Dare (1991)
## 951 Paris Is Burning (1990)
## 952 One Flew Over the Cuckoo's Nest (1975)
## 953 Cheech and Chong's Up in Smoke (1978)
## 954 Star Wars: Episode V - The Empire Strikes Back (1980)
## 955 Princess Bride, The (1987)
## 956 Raiders of the Lost Ark (Indiana Jones and the Raiders of the Lost Ark) (1981)
## 957 Brazil (1985)
## 958 Aliens (1986)
## 959 Good, the Bad and the Ugly, The (Buono, il brutto, il cattivo, Il) (1966)
## 960 Withnail & I (1987)
## 961 12 Angry Men (1957)
## 962 Lawrence of Arabia (1962)
## 963 Clockwork Orange, A (1971)
## 964 To Kill a Mockingbird (1962)
## 965 Apocalypse Now (1979)
## 966 Once Upon a Time in the West (C'era una volta il West) (1968)
## 967 Star Wars: Episode VI - Return of the Jedi (1983)
## 968 Wings of Desire (Himmel über Berlin, Der) (1987)
## 969 Third Man, The (1949)
## 970 Goodfellas (1990)
## 971 Alien (1979)
## 972 Army of Darkness (1993)
## 973 Big Blue, The (Grand bleu, Le) (1988)
## 974 Ran (1985)
## 975 Killer, The (Die xue shuang xiong) (1989)
## 976 Psycho (1960)
## 977 Blues Brothers, The (1980)
## 978 Godfather: Part II, The (1974)
## 979 Full Metal Jacket (1987)
## 980 Grand Day Out with Wallace and Gromit, A (1989)
## 981 Henry V (1989)
## 982 Amadeus (1984)
## 983 Quiet Man, The (1952)
## 984 Once Upon a Time in America (1984)
## 985 Raging Bull (1980)
## 986 Annie Hall (1977)
## 987 Right Stuff, The (1983)
## 988 Stalker (1979)
## 989 Boot, Das (Boat, The) (1981)
## 990 Sting, The (1973)
## 991 Harold and Maude (1971)
## 992 Trust (1990)
## 993 Seventh Seal, The (Sjunde inseglet, Det) (1957)
## 994 Local Hero (1983)
## 995 Terminator, The (1984)
## 996 Dead Alive (Braindead) (1992)
## 997 Glory (1989)
## 998 Rosencrantz and Guildenstern Are Dead (1990)
## 999 Manhattan (1979)
## 1000 Miller's Crossing (1990)
## 1001 Dead Poets Society (1989)
## 1002 Graduate, The (1967)
## 1003 Touch of Evil (1958)
## 1004 Femme Nikita, La (Nikita) (1990)
## 1005 Bridge on the River Kwai, The (1957)
## 1006 8 1/2 (8ý) (1963)
## 1007 Chinatown (1974)
## 1008 Day the Earth Stood Still, The (1951)
## 1009 Treasure of the Sierra Madre, The (1948)
## 1010 Bad Taste (1987)
## 1011 Duck Soup (1933)
## 1012 Better Off Dead... (1985)
## 1013 Shining, The (1980)
## 1014 Stand by Me (1986)
## 1015 M (1931)
## 1016 Evil Dead II (Dead by Dawn) (1987)
## 1017 Great Escape, The (1963)
## 1018 Deer Hunter, The (1978)
## 1019 Diva (1981)
## 1020 Groundhog Day (1993)
## 1021 Unforgiven (1992)
## 1022 Manchurian Candidate, The (1962)
## 1023 Pump Up the Volume (1990)
## 1024 Arsenic and Old Lace (1944)
## 1025 Back to the Future (1985)
## 1026 Fried Green Tomatoes (1991)
## 1027 Patton (1970)
## 1028 Down by Law (1986)
## 1029 Akira (1988)
## 1030 Highlander (1986)
## 1031 Cool Hand Luke (1967)
## 1032 Cyrano de Bergerac (1990)
## 1033 Young Frankenstein (1974)
## 1034 Night on Earth (1991)
## 1035 Raise the Red Lantern (Da hong deng long gao gao gua) (1991)
## 1036 Great Dictator, The (1940)
## 1037 Fantasia (1940)
## 1038 High Noon (1952)
## 1039 Big Sleep, The (1946)
## 1040 Heathers (1989)
## 1041 Somewhere in Time (1980)
## 1042 Ben-Hur (1959)
## 1043 This Is Spinal Tap (1984)
## 1044 Koyaanisqatsi (a.k.a. Koyaanisqatsi: Life Out of Balance) (1983)
## 1045 Some Kind of Wonderful (1987)
## 1046 Indiana Jones and the Last Crusade (1989)
## 1047 Being There (1979)
## 1048 Gandhi (1982)
## 1049 Unbearable Lightness of Being, The (1988)
## 1050 Room with a View, A (1986)
## 1051 Real Genius (1985)
## 1052 Pink Floyd: The Wall (1982)
## 1053 Killing Fields, The (1984)
## 1054 My Life as a Dog (Mitt liv som hund) (1985)
## 1055 Forbidden Planet (1956)
## 1056 Field of Dreams (1989)
## 1057 Man Who Would Be King, The (1975)
## 1058 Butch Cassidy and the Sundance Kid (1969)
## 1059 Paris, Texas (1984)
## 1060 Until the End of the World (Bis ans Ende der Welt) (1991)
## 1061 When Harry Met Sally... (1989)
## 1062 Hype! (1996)
## 1063 Santa with Muscles (1996)
## 1064 Female Perversions (1996)
## 1065 I'm Not Rappaport (1996)
## 1066 Alienó (a.k.a. Alien 3) (1992)
## 1067 American Werewolf in London, An (1981)
## 1068 Amityville 1992: It's About Time (1992)
## 1069 Amityville 3-D (1983)
## 1070 Amityville: Dollhouse (1996)
## 1071 Amityville: A New Generation (1993)
## 1072 Amityville II: The Possession (1982)
## 1073 Amityville Horror, The (1979)
## 1074 Amityville Curse, The (1990)
## 1075 Blood for Dracula (Andy Warhol's Dracula) (1974)
## 1076 April Fool's Day (1986)
## 1077 Audrey Rose (1977)
## 1078 Believers, The (1987)
## 1079 Birds, The (1963)
## 1080 Blob, The (1958)
## 1081 Blood Beach (1981)
## 1082 Body Parts (1991)
## 1083 Body Snatcher, The (1945)
## 1084 Dracula (Bram Stoker's Dracula) (1992)
## 1085 Bride of Frankenstein, The (Bride of Frankenstein) (1935)
## 1086 Burnt Offerings (1976)
## 1087 Candyman (1992)
## 1088 Cape Fear (1991)
## 1089 Cape Fear (1962)
## 1090 Carrie (1976)
## 1091 Cat People (1982)
## 1092 Nightmare on Elm Street, A (1984)
## 1093 Nosferatu (Nosferatu, eine Symphonie des Grauens) (1922)
## 1094 Vampire in Venice (Nosferatu a Venezia) (Nosferatu in Venice) (1986)
## 1095 Omen, The (1976)
## 1096 Blood and Wine (Blood & Wine) (1996)
## 1097 Albino Alligator (1996)
## 1098 Mirror Has Two Faces, The (1996)
## 1099 Breaking the Waves (1996)
## 1100 Nightwatch (1997)
## 1101 Star Trek: First Contact (1996)
## 1102 Shine (1996)
## 1103 Sling Blade (1996)
## 1104 Jingle All the Way (1996)
## 1105 Paradise Lost: The Child Murders at Robin Hood Hills (1996)
## 1106 Preacher's Wife, The (1996)
## 1107 Ridicule (1996)
## 1108 Crucible, The (1996)
## 1109 101 Dalmatians (1996)
## 1110 I Can't Sleep (J'ai pas sommeil) (1994)
## 1111 Die Hard 2 (1990)
## 1112 Star Trek: The Motion Picture (1979)
## 1113 Star Trek VI: The Undiscovered Country (1991)
## 1114 Star Trek V: The Final Frontier (1989)
## 1115 Star Trek II: The Wrath of Khan (1982)
## 1116 Star Trek III: The Search for Spock (1984)
## 1117 Star Trek IV: The Voyage Home (1986)
## 1118 Batman Returns (1992)
## 1119 Young Guns (1988)
## 1120 Young Guns II (1990)
## 1121 Grease (1978)
## 1122 Grease 2 (1982)
## 1123 Marked for Death (1990)
## 1124 Substance of Fire, The (1996)
## 1125 Under Siege (1992)
## 1126 Jaws (1975)
## 1127 Jaws 2 (1978)
## 1128 Jaws 3-D (1983)
## 1129 My Fellow Americans (1996)
## 1130 Mars Attacks! (1996)
## 1131 Citizen Ruth (1996)
## 1132 Jerry Maguire (1996)
## 1133 Raising Arizona (1987)
## 1134 Tin Men (1987)
## 1135 Sneakers (1992)
## 1136 Bastard Out of Carolina (1996)
## 1137 In Love and War (1996)
## 1138 Marvin's Room (1996)
## 1139 Ghosts of Mississippi (1996)
## 1140 Night Falls on Manhattan (1996)
## 1141 Beavis and Butt-Head Do America (1996)
## 1142 La Cérémonie (1995)
## 1143 Scream (1996)
## 1144 Last of the Mohicans, The (1992)
## 1145 Michael (1996)
## 1146 Evening Star, The (1996)
## 1147 Hamlet (1996)
## 1148 Whole Wide World, The (1996)
## 1149 Mother (1996)
## 1150 Thieves (Voleurs, Les) (1996)
## 1151 Evita (1996)
## 1152 Portrait of a Lady, The (1996)
## 1153 Walkabout (1971)
## 1154 Message to Love: The Isle of Wight Festival (1996)
## 1155 Murder at 1600 (1997)
## 1156 Hearts and Minds (1996)
## 1157 Fierce Creatures (1997)
## 1158 Turbulence (1997)
## 1159 Angel Baby (1995)
## 1160 First Strike (Police Story 4: First Strike) (Ging chaat goo si 4: Ji gaan daan yam mo) (1996)
## 1161 Underworld (1996)
## 1162 Beverly Hills Ninja (1997)
## 1163 Metro (1997)
## 1164 The Machine (1994)
## 1165 Cement Garden, The (1993)
## 1166 Dante's Peak (1997)
## 1167 Amos & Andrew (1993)
## 1168 Benny & Joon (1993)
## 1169 Prefontaine (1997)
## 1170 Guantanamera (1994)
## 1171 McHale's Navy (1997)
## 1172 Kolya (Kolja) (1996)
## 1173 Gridlock'd (1997)
## 1174 Waiting for Guffman (1996)
## 1175 Prisoner of the Mountains (Kavkazsky plennik) (1996)
## 1176 Beautician and the Beast, The (1997)
## 1177 SubUrbia (1997)
## 1178 Hotel de Love (1996)
## 1179 Pest, The (1997)
## 1180 Fools Rush In (1997)
## 1181 Touch (1997)
## 1182 Absolute Power (1997)
## 1183 That Darn Cat (1997)
## 1184 Vegas Vacation (National Lampoon's Las Vegas Vacation) (1997)
## 1185 That Old Feeling (1997)
## 1186 Lost Highway (1997)
## 1187 Rosewood (1997)
## 1188 Donnie Brasco (1997)
## 1189 Booty Call (1997)
## 1190 City of Industry (1997)
## 1191 Best Men (1997)
## 1192 Jungle2Jungle (a.k.a. Jungle 2 Jungle) (1997)
## 1193 Kama Sutra: A Tale of Love (1996)
## 1194 Private Parts (1997)
## 1195 Saint, The (1997)
## 1196 Smilla's Sense of Snow (1997)
## 1197 Van, The (1996)
## 1198 Crash (1996)
## 1199 Daytrippers, The (1996)
## 1200 Liar Liar (1997)
## 1201 Selena (1997)
## 1202 Devil's Own, The (1997)
## 1203 Cats Don't Dance (1997)
## 1204 B*A*P*S (1997)
## 1205 Love and Other Catastrophes (1996)
## 1206 Turbo: A Power Rangers Movie (1997)
## 1207 Double Team (1997)
## 1208 Inventing the Abbotts (1997)
## 1209 Anaconda (1997)
## 1210 Grosse Pointe Blank (1997)
## 1211 Keys to Tulsa (1997)
## 1212 Kissed (1996)
## 1213 8 Heads in a Duffel Bag (1997)
## 1214 Hollow Reed (1996)
## 1215 Paradise Road (1997)
## 1216 Traveller (1997)
## 1217 Romy and Michele's High School Reunion (1997)
## 1218 Volcano (1997)
## 1219 Children of the Revolution (1996)
## 1220 Austin Powers: International Man of Mystery (1997)
## 1221 Breakdown (1997)
## 1222 Truth or Consequences, N.M. (1997)
## 1223 Warriors of Virtue (1997)
## 1224 Fathers' Day (1997)
## 1225 Fifth Element, The (1997)
## 1226 Nowhere (1997)
## 1227 Losing Chase (1996)
## 1228 Sprung (1997)
## 1229 Love! Valour! Compassion! (1997)
## 1230 Shall We Dance? (Shall We Dansu?) (1996)
## 1231 Twin Town (1997)
## 1232 Addicted to Love (1997)
## 1233 Brassed Off (1996)
## 1234 Designated Mourner, The (1997)
## 1235 Lost World: Jurassic Park, The (1997)
## 1236 Ponette (1996)
## 1237 Schizopolis (1996)
## 1238 Rough Magic (1995)
## 1239 Trial and Error (1997)
## 1240 Con Air (1997)
## 1241 Pillow Book, The (1996)
## 1242 To Have, or Not (En avoir (ou pas)) (1995)
## 1243 Speed 2: Cruise Control (1997)
## 1244 Batman & Robin (1997)
## 1245 Dream With the Fishes (1997)
## 1246 For Roseanna (Roseanna's Grave) (1997)
## 1247 Hercules (1997)
## 1248 My Best Friend's Wedding (1997)
## 1249 Tetsuo II: Body Hammer (1992)
## 1250 When the Cat's Away (Chacun cherche son chat) (1996)
## 1251 Contempt (Mépris, Le) (1963)
## 1252 Face/Off (1997)
## 1253 Gabbeh (1996)
## 1254 Men in Black (a.k.a. MIB) (1997)
## 1255 Out to Sea (1997)
## 1256 Wild America (1997)
## 1257 Simple Wish, A (1997)
## 1258 Contact (1997)
## 1259 G.I. Jane (1997)
## 1260 Conan the Barbarian (1982)
## 1261 George of the Jungle (1997)
## 1262 Cop Land (1997)
## 1263 Event Horizon (1997)
## 1264 Spawn (1997)
## 1265 Air Bud (1997)
## 1266 Picture Perfect (1997)
## 1267 In the Company of Men (1997)
## 1268 Free Willy 3: The Rescue (1997)
## 1269 Career Girls (1997)
## 1270 Conspiracy Theory (1997)
## 1271 Desperate Measures (1998)
## 1272 Steel (1997)
## 1273 She's So Lovely (1997)
## 1274 Hoodlum (1997)
## 1275 Leave It to Beaver (1997)
## 1276 Mimic (1997)
## 1277 Money Talks (1997)
## 1278 Excess Baggage (1997)
## 1279 Kull the Conqueror (1997)
## 1280 Air Force One (1997)
## 1281 187 (One Eight Seven) (1997)
## 1282 Hunt for Red October, The (1990)
## 1283 My Own Private Idaho (1991)
## 1284 Kiss Me, Guido (1997)
## 1285 Star Maps (1997)
## 1286 In & Out (1997)
## 1287 Edge, The (1997)
## 1288 Peacemaker, The (1997)
## 1289 L.A. Confidential (1997)
## 1290 Seven Years in Tibet (1997)
## 1291 Kiss the Girls (1997)
## 1292 Soul Food (1997)
## 1293 Wishmaster (1997)
## 1294 Thousand Acres, A (1997)
## 1295 Game, The (1997)
## 1296 Fire Down Below (1997)
## 1297 U Turn (1997)
## 1298 MatchMaker, The (1997)
## 1299 Assignment, The (1997)
## 1300 Smile Like Yours, A (1997)
## 1301 Ulee's Gold (1997)
## 1302 Ice Storm, The (1997)
## 1303 Stag (1997)
## 1304 Chasing Amy (1997)
## 1305 How to Be a Player (1997)
## 1306 Full Monty, The (1997)
## 1307 Indian Summer (a.k.a. Alive & Kicking) (1996)
## 1308 Mrs. Brown (a.k.a. Her Majesty, Mrs. Brown) (1997)
## 1309 I Know What You Did Last Summer (1997)
## 1310 The Devil's Advocate (1997)
## 1311 RocketMan (a.k.a. Rocket Man) (1997)
## 1312 Playing God (1997)
## 1313 House of Yes, The (1997)
## 1314 Fast, Cheap & Out of Control (1997)
## 1315 Year of the Horse (1997)
## 1316 Gattaca (1997)
## 1317 FairyTale: A True Story (1997)
## 1318 Phantoms (1998)
## 1319 Wonderland (1997)
## 1320 Life Less Ordinary, A (1997)
## 1321 Eve's Bayou (1997)
## 1322 Switchback (1997)
## 1323 Stripes (1981)
## 1324 Bean (1997)
## 1325 Mad City (1997)
## 1326 One Night Stand (1997)
## 1327 Tango Lesson, The (1997)
## 1328 Welcome to Sarajevo (1997)
## 1329 Deceiver (1997)
## 1330 Rainmaker, The (1997)
## 1331 Boogie Nights (1997)
## 1332 Witness (1985)
## 1333 Starship Troopers (1997)
## 1334 Joy Luck Club, The (1993)
## 1335 Sliding Doors (1998)
## 1336 Mortal Kombat: Annihilation (1997)
## 1337 Truman Show, The (1998)
## 1338 Wings of the Dove, The (1997)
## 1339 Mrs. Dalloway (1997)
## 1340 Red Corner (1997)
## 1341 Jackal, The (1997)
## 1342 Anastasia (1997)
## 1343 Man Who Knew Too Little, The (1997)
## 1344 Alien: Resurrection (1997)
## 1345 Alien Escape (1995)
## 1346 Amistad (1997)
## 1347 Apostle, The (1997)
## 1348 Bent (1997)
## 1349 Butcher Boy, The (1997)
## 1350 Deconstructing Harry (1997)
## 1351 Flubber (1997)
## 1352 For Richer or Poorer (1997)
## 1353 Good Will Hunting (1997)
## 1354 Home Alone 3 (1997)
## 1355 Midnight in the Garden of Good and Evil (1997)
## 1356 Mouse Hunt (1997)
## 1357 Office Killer (1997)
## 1358 Scream 2 (1997)
## 1359 Sweet Hereafter, The (1997)
## 1360 Titanic (1997)
## 1361 Tomorrow Never Dies (1997)
## 1362 Postman, The (1997)
## 1363 Horse Whisperer, The (1998)
## 1364 Winter Guest, The (1997)
## 1365 Jackie Brown (1997)
## 1366 Kundun (1997)
## 1367 Mr. Magoo (1997)
## 1368 Big Lebowski, The (1998)
## 1369 Afterglow (1997)
## 1370 My Life in Pink (Ma vie en rose) (1997)
## 1371 Great Expectations (1998)
## 1372 3 Ninjas: High Noon On Mega Mountain (1998)
## 1373 Firestorm (1998)
## 1374 Senseless (1998)
## 1375 Wag the Dog (1997)
## 1376 Dark City (1998)
## 1377 Star Kid (1997)
## 1378 Hard Rain (1998)
## 1379 Half Baked (1998)
## 1380 Fallen (1998)
## 1381 Shooting Fish (1997)
## 1382 Prophecy II, The (1998)
## 1383 Fallen Angels (Duo luo tian shi) (1995)
## 1384 Four Days in September (O Que Ãâ° Isso, Companheiro?) (1997)
## 1385 Spice World (1997)
## 1386 Deep Rising (1998)
## 1387 Music From Another Room (1998)
## 1388 Replacement Killers, The (1998)
## 1389 Night Flier (1997)
## 1390 Blues Brothers 2000 (1998)
## 1391 Wedding Singer, The (1998)
## 1392 Sphere (1998)
## 1393 Palmetto (1998)
## 1394 As Good as It Gets (1997)
## 1395 King of New York (1990)
## 1396 Men with Guns (1997)
## 1397 Twilight (1998)
## 1398 U.S. Marshals (1998)
## 1399 Love and Death on Long Island (1997)
## 1400 Callejón de los milagros, El (1995)
## 1401 In God's Hands (1998)
## 1402 Everest (1998)
## 1403 Hush (1998)
## 1404 Suicide Kings (1997)
## 1405 Man in the Iron Mask, The (1998)
## 1406 Newton Boys, The (1998)
## 1407 Wild Things (1998)
## 1408 Paulie (1998)
## 1409 Cool, Dry Place, A (1998)
## 1410 Fireworks (Hana-bi) (1997)
## 1411 Primary Colors (1998)
## 1412 Wide Awake (1998)
## 1413 Two Girls and a Guy (1997)
## 1414 Storefront Hitchcock (1997)
## 1415 Object of My Affection, The (1998)
## 1416 Meet the Deedles (1998)
## 1417 Homegrown (1998)
## 1418 Barney's Great Adventure (1998)
## 1419 Big One, The (1997)
## 1420 Lost in Space (1998)
## 1421 Mercury Rising (1998)
## 1422 Spanish Prisoner, The (1997)
## 1423 City of Angels (1998)
## 1424 Last Days of Disco, The (1998)
## 1425 Odd Couple II, The (1998)
## 1426 My Giant (1998)
## 1427 He Got Game (1998)
## 1428 Gingerbread Man, The (1998)
## 1429 Live Flesh (Carne trémula) (1997)
## 1430 Zero Effect (1998)
## 1431 Nil By Mouth (1997)
## 1432 Borrowers, The (1997)
## 1433 Love Walked In (1998)
## 1434 Kissing a Fool (1998)
## 1435 Krippendorf's Tribe (1998)
## 1436 Kurt & Courtney (1998)
## 1437 Mr. Nice Guy (Yat goh ho yan) (1997)
## 1438 Taste of Cherry (Ta'm e guilass) (1997)
## 1439 Character (Karakter) (1997)
## 1440 Junk Mail (Budbringeren) (1997)
## 1441 Species II (1998)
## 1442 Major League: Back to the Minors (1998)
## 1443 Sour Grapes (1998)
## 1444 Wild Man Blues (1997)
## 1445 Big Hit, The (1998)
## 1446 Dancer, Texas Pop. 81 (1998)
## 1447 Misérables, Les (1998)
## 1448 Still Breathing (1997)
## 1449 Clockwatchers (1997)
## 1450 Deep Impact (1998)
## 1451 Woo (1998)
## 1452 Lawn Dogs (1997)
## 1453 Quest for Camelot (1998)
## 1454 Godzilla (1998)
## 1455 Bulworth (1998)
## 1456 Fear and Loathing in Las Vegas (1998)
## 1457 Opposite of Sex, The (1998)
## 1458 I Got the Hook Up (1998)
## 1459 Almost Heroes (1998)
## 1460 Hope Floats (1998)
## 1461 Insomnia (1997)
## 1462 Ugly, The (1997)
## 1463 Perfect Murder, A (1998)
## 1464 Six Days Seven Nights (1998)
## 1465 Can't Hardly Wait (1998)
## 1466 Cousin Bette (1998)
## 1467 High Art (1998)
## 1468 Children of Heaven, The (Bacheha-Ye Aseman) (1997)
## 1469 Dear Jesse (1997)
## 1470 Dream for an Insomniac (1996)
## 1471 Hav Plenty (1997)
## 1472 Henry Fool (1997)
## 1473 Mulan (1998)
## 1474 X-Files: Fight the Future, The (1998)
## 1475 I Went Down (1997)
## 1476 Dr. Dolittle (1998)
## 1477 Out of Sight (1998)
## 1478 Picnic at Hanging Rock (1975)
## 1479 Smoke Signals (1998)
## 1480 Buffalo '66 (a.k.a. Buffalo 66) (1998)
## 1481 Armageddon (1998)
## 1482 Lethal Weapon 4 (1998)
## 1483 Madeline (1998)
## 1484 Small Soldiers (1998)
## 1485 Pi (1998)
## 1486 Whatever (1998)
## 1487 There's Something About Mary (1998)
## 1488 Plan 9 from Outer Space (1959)
## 1489 Wings (1927)
## 1490 Broadway Melody, The (1929)
## 1491 All Quiet on the Western Front (1930)
## 1492 Cimarron (1931)
## 1493 Grand Hotel (1932)
## 1494 Mutiny on the Bounty (1935)
## 1495 Great Ziegfeld, The (1936)
## 1496 Life of Emile Zola, The (1937)
## 1497 You Can't Take It with You (1938)
## 1498 How Green Was My Valley (1941)
## 1499 Mrs. Miniver (1942)
## 1500 Going My Way (1944)
## 1501 Lost Weekend, The (1945)
## 1502 Best Years of Our Lives, The (1946)
## 1503 Gentleman's Agreement (1947)
## 1504 Hamlet (1948)
## 1505 All the King's Men (1949)
## 1506 Greatest Show on Earth, The (1952)
## 1507 From Here to Eternity (1953)
## 1508 On the Waterfront (1954)
## 1509 Marty (1955)
## 1510 West Side Story (1961)
## 1511 Tom Jones (1963)
## 1512 Man for All Seasons, A (1966)
## 1513 In the Heat of the Night (1967)
## 1514 Oliver! (1968)
## 1515 Midnight Cowboy (1969)
## 1516 French Connection, The (1971)
## 1517 Rocky (1976)
## 1518 Kramer vs. Kramer (1979)
## 1519 Ordinary People (1980)
## 1520 Chariots of Fire (1981)
## 1521 Terms of Endearment (1983)
## 1522 Out of Africa (1985)
## 1523 Last Emperor, The (1987)
## 1524 Rain Man (1988)
## 1525 Driving Miss Daisy (1989)
## 1526 Take the Money and Run (1969)
## 1527 Klute (1971)
## 1528 Repo Man (1984)
## 1529 Metropolitan (1990)
## 1530 Labyrinth (1986)
## 1531 Breakfast Club, The (1985)
## 1532 Nightmare on Elm Street 2: Freddy's Revenge, A (1985)
## 1533 Nightmare on Elm Street 3: Dream Warriors, A (1987)
## 1534 Nightmare on Elm Street 4: The Dream Master, A (1988)
## 1535 Nightmare on Elm Street 5: The Dream Child, A (1989)
## 1536 Freddy's Dead: The Final Nightmare (Nightmare on Elm Street Part 6: Freddy's Dead, A) (1991)
## 1537 Friday the 13th (1980)
## 1538 Friday the 13th Part 2 (1981)
## 1539 Friday the 13th Part 3: 3D (1982)
## 1540 Friday the 13th Part IV: The Final Chapter (1984)
## 1541 Friday the 13th Part V: A New Beginning (1985)
## 1542 Friday the 13th Part VI: Jason Lives (1986)
## 1543 Friday the 13th Part VII: The New Blood (1988)
## 1544 Friday the 13th Part VIII: Jason Takes Manhattan (1989)
## 1545 Halloween (1978)
## 1546 Halloween II (1981)
## 1547 Halloween III: Season of the Witch (1982)
## 1548 Halloween 4: The Return of Michael Myers (1988)
## 1549 Halloween 5: The Revenge of Michael Myers (1989)
## 1550 Prom Night (1980)
## 1551 Prom Night II (1987)
## 1552 Prom Night III: The Last Kiss (1989)
## 1553 Prom Night IV: Deliver Us From Evil (1992)
## 1554 Child's Play (1988)
## 1555 Child's Play 2 (1990)
## 1556 Child's Play 3 (1991)
## 1557 Poltergeist (1982)
## 1558 Poltergeist II: The Other Side (1986)
## 1559 Poltergeist III (1988)
## 1560 Exorcist, The (1973)
## 1561 Exorcist II: The Heretic (1977)
## 1562 Exorcist III, The (1990)
## 1563 Lethal Weapon (1987)
## 1564 Lethal Weapon 2 (1989)
## 1565 Lethal Weapon 3 (1992)
## 1566 Gremlins (1984)
## 1567 Gremlins 2: The New Batch (1990)
## 1568 Goonies, The (1985)
## 1569 Mask of Zorro, The (1998)
## 1570 Polish Wedding (1998)
## 1571 This World, Then the Fireworks (1997)
## 1572 Soylent Green (1973)
## 1573 Metropolis (1927)
## 1574 Back to the Future Part II (1989)
## 1575 Back to the Future Part III (1990)
## 1576 Poseidon Adventure, The (1972)
## 1577 Freaky Friday (1977)
## 1578 Absent-Minded Professor, The (1961)
## 1579 Apple Dumpling Gang Rides Again, The (1979)
## 1580 Babes in Toyland (1961)
## 1581 Bambi (1942)
## 1582 Seven Samurai (Shichinin no samurai) (1954)
## 1583 Dangerous Liaisons (1988)
## 1584 Dune (1984)
## 1585 Last Temptation of Christ, The (1988)
## 1586 Godfather: Part III, The (1990)
## 1587 Rapture, The (1991)
## 1588 Lolita (1997)
## 1589 Disturbing Behavior (1998)
## 1590 Jane Austen's Mafia! (1998)
## 1591 Saving Private Ryan (1998)
## 1592 Billy's Hollywood Screen Kiss (1997)
## 1593 Million Dollar Duck, The (a.k.a. $1,000,000 Duck) (1971)
## 1594 Barefoot Executive, The (1971)
## 1595 Black Cauldron, The (1985)
## 1596 Black Hole, The (1979)
## 1597 Blackbeard's Ghost (1968)
## 1598 Blank Check (1994)
## 1599 Candleshoe (1977)
## 1600 Cat from Outer Space, The (1978)
## 1601 Cheetah (1989)
## 1602 Computer Wore Tennis Shoes, The (1969)
## 1603 Condorman (1981)
## 1604 D2: The Mighty Ducks (1994)
## 1605 Darby O'Gill and the Little People (1959)
## 1606 Devil and Max Devlin, The (1981)
## 1607 Far Off Place, A (1993)
## 1608 Flight of the Navigator (1986)
## 1609 Gnome-Mobile, The (1967)
## 1610 Great Mouse Detective, The (1986)
## 1611 Happiest Millionaire, The (1967)
## 1612 Herbie Goes Bananas (1980)
## 1613 Herbie Goes to Monte Carlo (1977)
## 1614 Hocus Pocus (1993)
## 1615 Honey, I Blew Up the Kid (1992)
## 1616 Honey, I Shrunk the Kids (1989)
## 1617 Hot Lead and Cold Feet (1978)
## 1618 In Search of the Castaways (1962)
## 1619 Incredible Journey, The (1963)
## 1620 Negotiator, The (1998)
## 1621 Parent Trap, The (1998)
## 1622 BASEketball (1998)
## 1623 Governess, The (1998)
## 1624 Seventh Heaven (Septième ciel, Le) (1997)
## 1625 Roger & Me (1989)
## 1626 Purple Rose of Cairo, The (1985)
## 1627 Out of the Past (1947)
## 1628 Doctor Zhivago (1965)
## 1629 Fanny and Alexander (Fanny och Alexander) (1982)
## 1630 Trip to Bountiful, The (1985)
## 1631 Tender Mercies (1983)
## 1632 And the Band Played On (1993)
## 1633 'burbs, The (1989)
## 1634 Fandango (1985)
## 1635 Night Porter, The (Portiere di notte, Il) (1974)
## 1636 Mephisto (1981)
## 1637 Blue Velvet (1986)
## 1638 Journey of Natty Gann, The (1985)
## 1639 Jungle Book, The (1967)
## 1640 Kidnapped (1960)
## 1641 Lady and the Tramp (1955)
## 1642 Little Mermaid, The (1989)
## 1643 Mighty Ducks, The (1992)
## 1644 Muppet Christmas Carol, The (1992)
## 1645 Newsies (1992)
## 1646 101 Dalmatians (One Hundred and One Dalmatians) (1961)
## 1647 One Magic Christmas (1985)
## 1648 Peter Pan (1953)
## 1649 Popeye (1980)
## 1650 Rescuers Down Under, The (1990)
## 1651 Rescuers, The (1977)
## 1652 Return from Witch Mountain (1978)
## 1653 Return of Jafar, The (1994)
## 1654 Return to Oz (1985)
## 1655 Rocketeer, The (1991)
## 1656 Shaggy D.A., The (1976)
## 1657 Sleeping Beauty (1959)
## 1658 Something Wicked This Way Comes (1983)
## 1659 Son of Flubber (1963)
## 1660 Song of the South (1946)
## 1661 Splash (1984)
## 1662 Squanto: A Warrior's Tale (1994)
## 1663 Steamboat Willie (1928)
## 1664 Tall Tale (1995)
## 1665 Tex (1982)
## 1666 Tron (1982)
## 1667 Swing Kids (1993)
## 1668 Halloween H20: 20 Years Later (Halloween 7: The Revenge of Laurie Strode) (1998)
## 1669 L.A. Story (1991)
## 1670 Jerk, The (1979)
## 1671 Dead Men Don't Wear Plaid (1982)
## 1672 Man with Two Brains, The (1983)
## 1673 Grand Canyon (1991)
## 1674 Graveyard Shift (Stephen King's Graveyard Shift) (1990)
## 1675 Outsiders, The (1983)
## 1676 Indiana Jones and the Temple of Doom (1984)
## 1677 Lord of the Rings, The (1978)
## 1678 1984 (Nineteen Eighty-Four) (1984)
## 1679 Dead Zone, The (1983)
## 1680 Maximum Overdrive (1986)
## 1681 Needful Things (1993)
## 1682 Cujo (1983)
## 1683 Children of the Corn (1984)
## 1684 All Dogs Go to Heaven (1989)
## 1685 Addams Family, The (1991)
## 1686 Ever After: A Cinderella Story (1998)
## 1687 Snake Eyes (1998)
## 1688 Safe Men (1998)
## 1689 Atlantic City (1980)
## 1690 Autumn Sonata (Höstsonaten) (1978)
## 1691 Who's Afraid of Virginia Woolf? (1966)
## 1692 Adventures in Babysitting (1987)
## 1693 Weird Science (1985)
## 1694 Doctor Dolittle (1967)
## 1695 Nutty Professor, The (1963)
## 1696 Charlotte's Web (1973)
## 1697 Watership Down (1978)
## 1698 Secret of NIMH, The (1982)
## 1699 Dark Crystal, The (1982)
## 1700 American Tail, An (1986)
## 1701 American Tail: Fievel Goes West, An (1991)
## 1702 Legend (1985)
## 1703 Sixteen Candles (1984)
## 1704 Pretty in Pink (1986)
## 1705 St. Elmo's Fire (1985)
## 1706 Clan of the Cave Bear, The (1986)
## 1707 House (1986)
## 1708 House II: The Second Story (1987)
## 1709 Gods Must Be Crazy, The (1980)
## 1710 Gods Must Be Crazy II, The (1989)
## 1711 Air Bud: Golden Receiver (1998)
## 1712 Avengers, The (1998)
## 1713 How Stella Got Her Groove Back (1998)
## 1714 Slums of Beverly Hills, The (1998)
## 1715 Henry: Portrait of a Serial Killer (1986)
## 1716 Rosemary's Baby (1968)
## 1717 NeverEnding Story, The (1984)
## 1718 NeverEnding Story II: The Next Chapter, The (1990)
## 1719 Attack of the Killer Tomatoes! (1978)
## 1720 Surf Nazis Must Die (1987)
## 1721 Your Friends and Neighbors (1998)
## 1722 Return to Paradise (1998)
## 1723 Blade (1998)
## 1724 Dance with Me (1998)
## 1725 Dead Man on Campus (1998)
## 1726 Wrongfully Accused (1998)
## 1727 Next Stop Wonderland (1998)
## 1728 Navigator: A Mediaeval Odyssey, The (1988)
## 1729 Beetlejuice (1988)
## 1730 Rope (1948)
## 1731 Family Plot (1976)
## 1732 Frenzy (1972)
## 1733 Torn Curtain (1966)
## 1734 Marnie (1964)
## 1735 Wrong Man, The (1956)
## 1736 Man Who Knew Too Much, The (1956)
## 1737 Trouble with Harry, The (1955)
## 1738 Strangers on a Train (1951)
## 1739 Stage Fright (1950)
## 1740 54 (1998)
## 1741 I Married A Strange Person! (1997)
## 1742 Why Do Fools Fall In Love? (1998)
## 1743 Merry War, A (1997)
## 1744 Willow (1988)
## 1745 Untouchables, The (1987)
## 1746 Dirty Work (1998)
## 1747 Firelight (1997)
## 1748 Under Capricorn (1949)
## 1749 Paradine Case, The (1947)
## 1750 Lifeboat (1944)
## 1751 Shadow of a Doubt (1943)
## 1752 Saboteur (1942)
## 1753 Mr. & Mrs. Smith (1941)
## 1754 Suspicion (1941)
## 1755 Jamaica Inn (1939)
## 1756 Lady Vanishes, The (1938)
## 1757 Sabotage (1936)
## 1758 Man Who Knew Too Much, The (1934)
## 1759 Number Seventeen (a.k.a. Number 17) (1932)
## 1760 Rich and Strange (1931)
## 1761 Murder! (1930)
## 1762 Blackmail (1929)
## 1763 Lodger: A Story of the London Fog, The (1927)
## 1764 Rounders (1998)
## 1765 Cube (1997)
## 1766 Simon Birch (1998)
## 1767 Without Limits (1998)
## 1768 Seven Beauties (Pasqualino Settebellezze) (1976)
## 1769 Swept Away (Travolti da un insolito destino nell'azzurro mare d'Agosto) (1975)
## 1770 My Bodyguard (1980)
## 1771 Class (1983)
## 1772 Broadcast News (1987)
## 1773 Allnighter, The (1987)
## 1774 Working Girl (1988)
## 1775 Stars and Bars (1988)
## 1776 Married to the Mob (1988)
## 1777 Say Anything... (1989)
## 1778 My Blue Heaven (1990)
## 1779 Men Don't Leave (1990)
## 1780 Hero (1992)
## 1781 Toys (1992)
## 1782 Choices (1981)
## 1783 Young Doctors in Love (1982)
## 1784 Parasite (1982)
## 1785 No Small Affair (1984)
## 1786 Blame It on Rio (1984)
## 1787 Wisdom (1986)
## 1788 One Crazy Summer (1986)
## 1789 About Last Night... (1986)
## 1790 Seventh Sign, The (1988)
## 1791 We're No Angels (1989)
## 1792 Nothing But Trouble (1991)
## 1793 Butcher's Wife, The (1991)
## 1794 Mortal Thoughts (1991)
## 1795 Few Good Men, A (1992)
## 1796 Indecent Proposal (1993)
## 1797 Permanent Midnight (1998)
## 1798 One True Thing (1998)
## 1799 Rush Hour (1998)
## 1800 Six-String Samurai (1998)
## 1801 Soldier's Daughter Never Cries, A (1998)
## 1802 Ronin (1998)
## 1803 Urban Legend (1998)
## 1804 Clay Pigeons (1998)
## 1805 Pecker (1998)
## 1806 Sheltering Sky, The (1990)
## 1807 Bandit Queen (1994)
## 1808 If.... (1968)
## 1809 Fiendish Plot of Dr. Fu Manchu, The (1980)
## 1810 Them! (1954)
## 1811 Thing, The (1982)
## 1812 Player, The (1992)
## 1813 Stardust Memories (1980)
## 1814 Edward Scissorhands (1990)
## 1815 Overnight Delivery (1998)
## 1816 Antz (1998)
## 1817 Impostors, The (1998)
## 1818 Night at the Roxbury, A (1998)
## 1819 What Dreams May Come (1998)
## 1820 Producers, The (1968)
## 1821 History of the World: Part I (1981)
## 1822 My Cousin Vinny (1992)
## 1823 Nashville (1975)
## 1824 Love Is the Devil (1998)
## 1825 Slam (1998)
## 1826 Holy Man (1998)
## 1827 One Tough Cop (1998)
## 1828 Mighty, The (1998)
## 1829 2010: The Year We Make Contact (1984)
## 1830 Children of a Lesser God (1986)
## 1831 Elephant Man, The (1980)
## 1832 Beloved (1998)
## 1833 Bride of Chucky (Child's Play 4) (1998)
## 1834 Practical Magic (1998)
## 1835 Happiness (1998)
## 1836 Apt Pupil (1998)
## 1837 Pleasantville (1998)
## 1838 Soldier (1998)
## 1839 Cruise, The (1998)
## 1840 Life Is Beautiful (La Vita è bella) (1997)
## 1841 Orgazmo (1997)
## 1842 Tales from the Darkside: The Movie (1990)
## 1843 Vampires (1998)
## 1844 American History X (1998)
## 1845 Hands on a Hard Body (1996)
## 1846 Living Out Loud (1998)
## 1847 Gods and Monsters (1998)
## 1848 Siege, The (1998)
## 1849 Waterboy, The (1998)
## 1850 Elizabeth (1998)
## 1851 Velvet Goldmine (1998)
## 1852 I Still Know What You Did Last Summer (1998)
## 1853 I'll Be Home For Christmas (1998)
## 1854 Meet Joe Black (1998)
## 1855 Hard Core Logo (1996)
## 1856 Runaway Train (1985)
## 1857 Desert Bloom (1986)
## 1858 Stepford Wives, The (1975)
## 1859 Pope of Greenwich Village, The (1984)
## 1860 Sid and Nancy (1986)
## 1861 Mona Lisa (1986)
## 1862 Heart Condition (1990)
## 1863 Nights of Cabiria (Notti di Cabiria, Le) (1957)
## 1864 Big Chill, The (1983)
## 1865 Enemy of the State (1998)
## 1866 Rugrats Movie, The (1998)
## 1867 Bug's Life, A (1998)
## 1868 Celebrity (1998)
## 1869 Central Station (Central do Brasil) (1998)
## 1870 Waking Ned Devine (a.k.a. Waking Ned) (1998)
## 1871 Celebration, The (Festen) (1998)
## 1872 Pink Flamingos (1972)
## 1873 Glen or Glenda (1953)
## 1874 Godzilla (Gojira) (1954)
## 1875 Godzilla 1985: The Legend Is Reborn (Gojira) (Godzilla) (Return of Godzilla, The) (1984)
## 1876 King Kong vs. Godzilla (Kingukongu tai Gojira) (1962)
## 1877 King Kong (1933)
## 1878 King Kong (1976)
## 1879 King Kong Lives (1986)
## 1880 Desperately Seeking Susan (1985)
## 1881 Emerald Forest, The (1985)
## 1882 Fletch (1985)
## 1883 Fletch Lives (1989)
## 1884 Red Sonja (1985)
## 1885 Gung Ho (1986)
## 1886 Money Pit, The (1986)
## 1887 View to a Kill, A (1985)
## 1888 Lifeforce (1985)
## 1889 Police Academy (1984)
## 1890 Police Academy 2: Their First Assignment (1985)
## 1891 Police Academy 3: Back in Training (1986)
## 1892 Police Academy 4: Citizens on Patrol (1987)
## 1893 Police Academy 5: Assignment: Miami Beach (1988)
## 1894 Police Academy 6: City Under Siege (1989)
## 1895 Babe: Pig in the City (1998)
## 1896 Home Fries (1998)
## 1897 Jerry Springer: Ringmaster (1998)
## 1898 Very Bad Things (1998)
## 1899 Steam: The Turkish Bath (Hamam) (1997)
## 1900 Psycho (1998)
## 1901 Little Voice (1998)
## 1902 Simple Plan, A (1998)
## 1903 Jack Frost (1998)
## 1904 Star Trek: Insurrection (1998)
## 1905 Prince of Egypt, The (1998)
## 1906 Rushmore (1998)
## 1907 Shakespeare in Love (1998)
## 1908 Mass Appeal (1984)
## 1909 Miracle on 34th Street (1947)
## 1910 Santa Claus: The Movie (1985)
## 1911 Prancer (1989)
## 1912 Pale Rider (1985)
## 1913 Rambo: First Blood Part II (1985)
## 1914 First Blood (Rambo: First Blood) (1982)
## 1915 Rambo III (1988)
## 1916 Jewel of the Nile, The (1985)
## 1917 Romancing the Stone (1984)
## 1918 Cocoon (1985)
## 1919 Cocoon: The Return (1988)
## 1920 Rocky II (1979)
## 1921 Rocky III (1982)
## 1922 Rocky IV (1985)
## 1923 Rocky V (1990)
## 1924 Clue (1985)
## 1925 Young Sherlock Holmes (1985)
## 1926 Violets Are Blue... (1986)
## 1927 Back to School (1986)
## 1928 Heartburn (1986)
## 1929 Nothing in Common (1986)
## 1930 Extremities (1986)
## 1931 Karate Kid, The (1984)
## 1932 Karate Kid, Part II, The (1986)
## 1933 Karate Kid, Part III, The (1989)
## 1934 Christmas Vacation (National Lampoon's Christmas Vacation) (1989)
## 1935 You've Got Mail (1998)
## 1936 General, The (1998)
## 1937 Thin Red Line, The (1998)
## 1938 Faculty, The (1998)
## 1939 Mighty Joe Young (1998)
## 1940 Mighty Joe Young (1949)
## 1941 Patch Adams (1998)
## 1942 Stepmom (1998)
## 1943 Civil Action, A (1998)
## 1944 Down in the Delta (1998)
## 1945 Hurlyburly (1998)
## 1946 Tea with Mussolini (1999)
## 1947 Wilde (1997)
## 1948 Outside Ozona (1998)
## 1949 Affliction (1997)
## 1950 Another Day in Paradise (1998)
## 1951 Hi-Lo Country, The (1998)
## 1952 Hilary and Jackie (1998)
## 1953 Playing by Heart (1998)
## 1954 At First Sight (1999)
## 1955 In Dreams (1999)
## 1956 Varsity Blues (1999)
## 1957 Virus (1999)
## 1958 Garbage Pail Kids Movie, The (1987)
## 1959 Howard the Duck (1986)
## 1960 Gate, The (1987)
## 1961 Boy Who Could Fly, The (1986)
## 1962 Fly, The (1958)
## 1963 Fly, The (1986)
## 1964 Fly II, The (1989)
## 1965 Running Scared (1986)
## 1966 Armed and Dangerous (1986)
## 1967 Texas Chainsaw Massacre, The (1974)
## 1968 Texas Chainsaw Massacre 2, The (1986)
## 1969 Leatherface: Texas Chainsaw Massacre III (1990)
## 1970 Texas Chainsaw Massacre: The Next Generation (a.k.a. The Return of the Texas Chainsaw Massacre) (1994)
## 1971 Ruthless People (1986)
## 1972 Trick or Treat (1986)
## 1973 Deadly Friend (1986)
## 1974 Name of the Rose, The (Name der Rose, Der) (1986)
## 1975 Jumpin' Jack Flash (1986)
## 1976 Peggy Sue Got Married (1986)
## 1977 Crocodile Dundee (1986)
## 1978 Crocodile Dundee II (1988)
## 1979 Tough Guys (1986)
## 1980 Soul Man (1986)
## 1981 Color of Money, The (1986)
## 1982 52 Pick-Up (1986)
## 1983 Heartbreak Ridge (1986)
## 1984 áThree Amigos! (1986)
## 1985 Gloria (1999)
## 1986 My Name Is Joe (1998)
## 1987 Still Crazy (1998)
## 1988 Day of the Beast, The (DÃÂa de la Bestia, El) (1995)
## 1989 She's All That (1999)
## 1990 24 Hour Woman, The (1998)
## 1991 Blood, Guts, Bullets and Octane (1998)
## 1992 Peeping Tom (1960)
## 1993 Payback (1999)
## 1994 Simply Irresistible (1999)
## 1995 20 Dates (1998)
## 1996 Harmonists, The (1997)
## 1997 Last Days, The (1998)
## 1998 Fantastic Planet, The (Planète sauvage, La) (1973)
## 1999 Blast from the Past (1999)
## 2000 Message in a Bottle (1999)
## 2001 My Favorite Martian (1999)
## 2002 God Said 'Ha!' (1998)
## 2003 Jawbreaker (1999)
## 2004 October Sky (1999)
## 2005 Office Space (1999)
## 2006 200 Cigarettes (1999)
## 2007 8MM (1999)
## 2008 Other Sister, The (1999)
## 2009 Breakfast of Champions (1999)
## 2010 Long Goodbye, The (1973)
## 2011 Pet Sematary (1989)
## 2012 Pet Sematary II (1992)
## 2013 Children of the Corn II: The Final Sacrifice (1993)
## 2014 Children of the Corn III (1994)
## 2015 Christine (1983)
## 2016 Night Shift (1982)
## 2017 House on Haunted Hill (1959)
## 2018 Airport (1970)
## 2019 Airport 1975 (1974)
## 2020 Airport '77 (1977)
## 2021 Rollercoaster (1977)
## 2022 Towering Inferno, The (1974)
## 2023 Alligator (1980)
## 2024 Meteor (1979)
## 2025 Westworld (1973)
## 2026 Logan's Run (1976)
## 2027 Planet of the Apes (1968)
## 2028 Beneath the Planet of the Apes (1970)
## 2029 Battle for the Planet of the Apes (1973)
## 2030 Conquest of the Planet of the Apes (1972)
## 2031 Escape from the Planet of the Apes (1971)
## 2032 Avalanche (1978)
## 2033 Earthquake (1974)
## 2034 Concorde: Airport '79, The (1979)
## 2035 Beyond the Poseidon Adventure (1979)
## 2036 Analyze This (1999)
## 2037 Corruptor, The (1999)
## 2038 Cruel Intentions (1999)
## 2039 Lock, Stock & Two Smoking Barrels (1998)
## 2040 Relax... It's Just Sex (1998)
## 2041 Deep End of the Ocean, The (1999)
## 2042 Rage: Carrie 2, The (1999)
## 2043 Wing Commander (1999)
## 2044 Haunting, The (1963)
## 2045 Dead Ringers (1988)
## 2046 My Boyfriend's Back (1993)
## 2047 Village of the Damned (1960)
## 2048 Children of the Damned (1963)
## 2049 Baby Geniuses (1999)
## 2050 I Stand Alone (Seul contre tous) (1998)
## 2051 Forces of Nature (1999)
## 2052 King and I, The (1999)
## 2053 Ravenous (1999)
## 2054 True Crime (1999)
## 2055 Bandits (1997)
## 2056 Dangerous Beauty (1998)
## 2057 King and I, The (1956)
## 2058 Doug's 1st Movie (1999)
## 2059 EDtv (1999)
## 2060 Mod Squad, The (1999)
## 2061 Among Giants (1998)
## 2062 Walk on the Moon, A (1999)
## 2063 Matrix, The (1999)
## 2064 10 Things I Hate About You (1999)
## 2065 Tango (1998)
## 2066 Out-of-Towners, The (1999)
## 2067 Dreamlife of Angels, The (Vie rêvée des anges, La) (1998)
## 2068 Metroland (1997)
## 2069 Following (1998)
## 2070 Go (1999)
## 2071 Never Been Kissed (1999)
## 2072 Twin Dragons (Shuang long hui) (1992)
## 2073 Cookie's Fortune (1999)
## 2074 Lovers of the Arctic Circle, The (Los Amantes del CÃÂrculo Polar) (1998)
## 2075 Goodbye Lover (1999)
## 2076 Life (1999)
## 2077 Friends & Lovers (1999)
## 2078 Hideous Kinky (1998)
## 2079 Open Your Eyes (Abre los ojos) (1997)
## 2080 SLC Punk! (1998)
## 2081 Lost & Found (1999)
## 2082 Pushing Tin (1999)
## 2083 Election (1999)
## 2084 eXistenZ (1999)
## 2085 Entrapment (1999)
## 2086 Idle Hands (1999)
## 2087 Get Real (1998)
## 2088 King of Masks, The (Bian Lian) (1996)
## 2089 Three Seasons (1999)
## 2090 Winslow Boy, The (1999)
## 2091 Mildred Pierce (1945)
## 2092 Night of the Comet (1984)
## 2093 My Science Project (1985)
## 2094 Dick Tracy (1990)
## 2095 Mummy, The (1999)
## 2096 Castle, The (1997)
## 2097 This Is My Father (1998)
## 2098 Xiu Xiu: The Sent-Down Girl (Tian yu) (1998)
## 2099 William Shakespeare's A Midsummer Night's Dream (1999)
## 2100 After Life (Wandafuru raifu) (1998)
## 2101 Black Mask (Hak hap) (1996)
## 2102 Edge of Seventeen (1998)
## 2103 Endurance (1999)
## 2104 Star Wars: Episode I - The Phantom Menace (1999)
## 2105 Love Letter, The (1999)
## 2106 Besieged (a.k.a. L' Assedio) (1998)
## 2107 Frogs for Snakes (1998)
## 2108 Mummy, The (1932)
## 2109 Mummy, The (1959)
## 2110 Mummy's Curse, The (1944)
## 2111 Mummy's Ghost, The (1944)
## 2112 Mummy's Hand, The (1940)
## 2113 Mummy's Tomb, The (1942)
## 2114 Mommie Dearest (1981)
## 2115 Superman (1978)
## 2116 Superman II (1980)
## 2117 Superman III (1983)
## 2118 Superman IV: The Quest for Peace (1987)
## 2119 Dracula (1931)
## 2120 House of Frankenstein (1944)
## 2121 Frankenstein (1931)
## 2122 Son of Frankenstein (1939)
## 2123 Ghost of Frankenstein, The (1942)
## 2124 Frankenstein Meets the Wolf Man (1943)
## 2125 Curse of Frankenstein, The (1957)
## 2126 Son of Dracula (1943)
## 2127 Wolf Man, The (1941)
## 2128 Howling II: Your Sister Is a Werewolf (1985)
## 2129 Tarantula (1955)
## 2130 Rocky Horror Picture Show, The (1975)
## 2131 It Came from Hollywood (1982)
## 2132 Thing from Another World, The (1951)
## 2133 It Came from Outer Space (1953)
## 2134 War of the Worlds, The (1953)
## 2135 Invasion of the Body Snatchers (1956)
## 2136 Swamp Thing (1982)
## 2137 Pork Chop Hill (1959)
## 2138 Run Silent Run Deep (1958)
## 2139 Notting Hill (1999)
## 2140 Thirteenth Floor, The (1999)
## 2141 Eternity and a Day (Mia aoniotita kai mia mera) (1998)
## 2142 Loss of Sexual Innocence, The (1999)
## 2143 Instinct (1999)
## 2144 Buena Vista Social Club (1999)
## 2145 Desert Blue (1998)
## 2146 Free Enterprise (1998)
## 2147 Limbo (1999)
## 2148 Austin Powers: The Spy Who Shagged Me (1999)
## 2149 Red Violin, The (Violon rouge, Le) (1998)
## 2150 Tarzan (1999)
## 2151 General's Daughter, The (1999)
## 2152 Get Bruce (1999)
## 2153 Ideal Husband, An (1999)
## 2154 Legend of 1900, The (a.k.a. The Legend of the Pianist on the Ocean) (Leggenda del pianista sull'oceano) (1998)
## 2155 Run Lola Run (Lola rennt) (1998)
## 2156 Trekkies (1997)
## 2157 Big Daddy (1999)
## 2158 Dinner Game, The (Dîner de cons, Le) (1998)
## 2159 My Son the Fanatic (1997)
## 2160 Arachnophobia (1990)
## 2161 South Park: Bigger, Longer and Uncut (1999)
## 2162 Wild Wild West (1999)
## 2163 Summer of Sam (1999)
## 2164 Lovers on the Bridge, The (Amants du Pont-Neuf, Les) (1991)
## 2165 American Pie (1999)
## 2166 Arlington Road (1999)
## 2167 Autumn Tale, An (Conte d'automne) (1998)
## 2168 Muppets From Space (1999)
## 2169 Blair Witch Project, The (1999)
## 2170 Eyes Wide Shut (1999)
## 2171 Lake Placid (1999)
## 2172 Wood, The (1999)
## 2173 Velocity of Gary, The (1998)
## 2174 Ghostbusters (a.k.a. Ghost Busters) (1984)
## 2175 Ghostbusters II (1989)
## 2176 Drop Dead Gorgeous (1999)
## 2177 Haunting, The (1999)
## 2178 Inspector Gadget (1999)
## 2179 Trick (1999)
## 2180 Deep Blue Sea (1999)
## 2181 Mystery Men (1999)
## 2182 Runaway Bride (1999)
## 2183 Twin Falls Idaho (1999)
## 2184 Killing, The (1956)
## 2185 Killer's Kiss (1955)
## 2186 Spartacus (1960)
## 2187 Lolita (1962)
## 2188 Barry Lyndon (1975)
## 2189 400 Blows, The (Les quatre cents coups) (1959)
## 2190 Jules and Jim (Jules et Jim) (1961)
## 2191 Vibes (1988)
## 2192 Mosquito Coast, The (1986)
## 2193 Golden Child, The (1986)
## 2194 Brighton Beach Memoirs (1986)
## 2195 Crimes of the Heart (1986)
## 2196 Color Purple, The (1985)
## 2197 No Mercy (1986)
## 2198 Mission, The (1986)
## 2199 Little Shop of Horrors (1986)
## 2200 Little Shop of Horrors, The (1960)
## 2201 Allan Quatermain and the Lost City of Gold (1987)
## 2202 Morning After, The (1986)
## 2203 Radio Days (1987)
## 2204 From the Hip (1987)
## 2205 Outrageous Fortune (1987)
## 2206 Bedroom Window, The (1987)
## 2207 Deadtime Stories (1987)
## 2208 Light of Day (1987)
## 2209 Frances (1982)
## 2210 Plenty (1985)
## 2211 Dick (1999)
## 2212 Iron Giant, The (1999)
## 2213 Sixth Sense, The (1999)
## 2214 Thomas Crown Affair, The (1999)
## 2215 Thomas Crown Affair, The (1968)
## 2216 Adventures of Sebastian Cole, The (1998)
## 2217 Illuminata (1998)
## 2218 Yards, The (2000)
## 2219 Bowfinger (1999)
## 2220 Brokedown Palace (1999)
## 2221 Detroit Rock City (1999)
## 2222 Better Than Chocolate (1999)
## 2223 Head On (1998)
## 2224 Marcello Mastroianni: I Remember Yes, I Remember (Marcello Mastroianni: mi ricordo, sì, io mi ricordo) (1997)
## 2225 Heaven Can Wait (1978)
## 2226 Raven, The (1963)
## 2227 Tingler, The (1959)
## 2228 Pit and the Pendulum (1961)
## 2229 Tomb of Ligeia, The (1965)
## 2230 Masque of the Red Death, The (1964)
## 2231 Haunted Honeymoon (1986)
## 2232 Cat's Eye (1985)
## 2233 Monty Python's And Now for Something Completely Different (1971)
## 2234 Damien: Omen II (1978)
## 2235 Final Conflict, The (a.k.a. Omen III: The Final Conflict) (1981)
## 2236 Airplane! (1980)
## 2237 Airplane II: The Sequel (1982)
## 2238 American Werewolf in Paris, An (1997)
## 2239 European Vacation (aka National Lampoon's European Vacation) (1985)
## 2240 National Lampoon's Vacation (1983)
## 2241 Funny Farm (1988)
## 2242 Big (1988)
## 2243 Problem Child (1990)
## 2244 Problem Child 2 (1991)
## 2245 Little Nemo: Adventures in Slumberland (1992)
## 2246 Oscar and Lucinda (a.k.a. Oscar & Lucinda) (1997)
## 2247 Tequila Sunrise (1988)
## 2248 Pelican Brief, The (1993)
## 2249 Christmas Story, A (1983)
## 2250 Mickey Blue Eyes (1999)
## 2251 Teaching Mrs. Tingle (1999)
## 2252 Universal Soldier: The Return (1999)
## 2253 Universal Soldier (1992)
## 2254 Love Stinks (1999)
## 2255 Perfect Blue (1997)
## 2256 In Too Deep (1999)
## 2257 Iron Eagle (1986)
## 2258 Iron Eagle II (1988)
## 2259 Aces: Iron Eagle III (1992)
## 2260 Three Days of the Condor (3 Days of the Condor) (1975)
## 2261 Hamlet (1964)
## 2262 Medicine Man (1992)
## 2263 On the Ropes (1999)
## 2264 13th Warrior, The (1999)
## 2265 Astronaut's Wife, The (1999)
## 2266 Dudley Do-Right (1999)
## 2267 Muse, The (1999)
## 2268 Lost Son, The (1999)
## 2269 Chill Factor (1999)
## 2270 Outside Providence (1999)
## 2271 Bedrooms & Hallways (1998)
## 2272 West Beirut (West Beyrouth) (1998)
## 2273 Stigmata (1999)
## 2274 Stir of Echoes (1999)
## 2275 Black Cat, White Cat (Crna macka, beli macor) (1998)
## 2276 Minus Man, The (1999)
## 2277 Whiteboyz (1999)
## 2278 Adventures of Milo and Otis, The (Koneko monogatari) (1986)
## 2279 Only Angels Have Wings (1939)
## 2280 Othello (Tragedy of Othello: The Moor of Venice, The) (1952)
## 2281 Queens Logic (1991)
## 2282 Public Access (1993)
## 2283 Saturn 3 (1980)
## 2284 Soldier's Story, A (1984)
## 2285 Alice, Sweet Alice (a.k.a. Communion) (a.k.a. Holy Terror) (1976)
## 2286 Nightmares (1983)
## 2287 I Saw What You Did (1965)
## 2288 Yellow Submarine (1968)
## 2289 American Beauty (1999)
## 2290 Stop Making Sense (1984)
## 2291 Blue Streak (1999)
## 2292 For Love of the Game (1999)
## 2293 Caligula (1979)
## 2294 Hard Day's Night, A (1964)
## 2295 Splendor (1999)
## 2296 Buddy Holly Story, The (1978)
## 2297 Fright Night (1985)
## 2298 Fright Night Part II (1988)
## 2299 Separation, The (Séparation, La) (1994)
## 2300 Barefoot in the Park (1967)
## 2301 Deliverance (1972)
## 2302 Excalibur (1981)
## 2303 Pajama Game, The (1957)
## 2304 Sommersby (1993)
## 2305 Thumbelina (1994)
## 2306 Tommy (1975)
## 2307 Hell Night (1981)
## 2308 Armour of God II: Operation Condor (Operation Condor) (Fei ying gai wak) (1991)
## 2309 Armour of God (Long xiong hu di) (1987)
## 2310 Double Jeopardy (1999)
## 2311 Jakob the Liar (1999)
## 2312 Mumford (1999)
## 2313 Dog Park (1998)
## 2314 Guinevere (1999)
## 2315 Adventures of Elmo in Grouchland, The (1999)
## 2316 Simon Sez (1999)
## 2317 Drive Me Crazy (1999)
## 2318 Mystery, Alaska (1999)
## 2319 Three Kings (1999)
## 2320 Happy, Texas (1999)
## 2321 New Rose Hotel (1998)
## 2322 Plunkett & MaCleane (1999)
## 2323 Romance (1999)
## 2324 And the Ship Sails On (E la nave va) (1983)
## 2325 Dark Half, The (1993)
## 2326 Gulliver's Travels (1939)
## 2327 Monkey Shines (1988)
## 2328 Phantasm (1979)
## 2329 Psycho II (1983)
## 2330 Psycho III (1986)
## 2331 Rain (1932)
## 2332 Sanjuro (Tsubaki Sanjûrô) (1962)
## 2333 Random Hearts (1999)
## 2334 Superstar (1999)
## 2335 Boys Don't Cry (1999)
## 2336 Limey, The (1999)
## 2337 The Mating Habits of the Earthbound Human (1999)
## 2338 Risky Business (1983)
## 2339 Total Recall (1990)
## 2340 Body Heat (1981)
## 2341 Ferris Bueller's Day Off (1986)
## 2342 Year of Living Dangerously, The (1982)
## 2343 Children of Paradise (Les enfants du paradis) (1945)
## 2344 High Plains Drifter (1973)
## 2345 Hang 'Em High (1968)
## 2346 Handle with Care (a.k.a. Citizen's Band) (1977)
## 2347 Drunken Master (Jui kuen) (1978)
## 2348 Conformist, The (Conformista, Il) (1970)
## 2349 Hairspray (1988)
## 2350 Brief Encounter (1946)
## 2351 Razor's Edge, The (1984)
## 2352 Reds (1981)
## 2353 Return with Honor (1998)
## 2354 Days of Heaven (1978)
## 2355 Lady Eve, The (1941)
## 2356 Sullivan's Travels (1941)
## 2357 Palm Beach Story, The (1942)
## 2358 Man Facing Southeast (1986)
## 2359 Niagara (1953)
## 2360 Gilda (1946)
## 2361 South Pacific (1958)
## 2362 Flashdance (1983)
## 2363 Indochine (1992)
## 2364 Dirty Dozen, The (1967)
## 2365 Mike's Murder (1984)
## 2366 Help! (1965)
## 2367 Goldfinger (1964)
## 2368 From Russia with Love (1963)
## 2369 Dr. No (1962)
## 2370 Blue Lagoon, The (1980)
## 2371 Fistful of Dollars, A (Per un pugno di dollari) (1964)
## 2372 Sydney (Hard Eight) (1996)
## 2373 Home Alone 2: Lost in New York (1992)
## 2374 Someone to Watch Over Me (1987)
## 2375 Fight Club (1999)
## 2376 Story of Us, The (1999)
## 2377 Fever Pitch (1997)
## 2378 Julien Donkey-Boy (1999)
## 2379 Straight Story, The (1999)
## 2380 Bad Seed, The (1956)
## 2381 Time Bandits (1981)
## 2382 Man and a Woman, A (Un homme et une femme) (1966)
## 2383 Fitzcarraldo (1982)
## 2384 All That Jazz (1979)
## 2385 Red Sorghum (Hong gao liang) (1987)
## 2386 Crimes and Misdemeanors (1989)
## 2387 Bats (1999)
## 2388 Best Man, The (1999)
## 2389 Bringing Out the Dead (1999)
## 2390 Crazy in Alabama (1999)
## 2391 Three to Tango (1999)
## 2392 Body Shots (1999)
## 2393 Brother, Can You Spare a Dime? (1975)
## 2394 Guardian, The (1990)
## 2395 Ipcress File, The (1965)
## 2396 On Any Sunday (1971)
## 2397 RoboCop (1987)
## 2398 RoboCop 2 (1990)
## 2399 Who Framed Roger Rabbit? (1988)
## 2400 Melvin and Howard (1980)
## 2401 For Your Eyes Only (1981)
## 2402 Licence to Kill (1989)
## 2403 Live and Let Die (1973)
## 2404 Rawhead Rex (1986)
## 2405 Thunderball (1965)
## 2406 House on Haunted Hill (1999)
## 2407 Music of the Heart (1999)
## 2408 Being John Malkovich (1999)
## 2409 Dreaming of Joseph Lees (1999)
## 2410 Princess Mononoke (Mononoke-hime) (1997)
## 2411 Suburbans, The (1999)
## 2412 My Best Fiend (Mein liebster Feind) (1999)
## 2413 Train of Life (Train de vie) (1998)
## 2414 Bachelor, The (1999)
## 2415 Bone Collector, The (1999)
## 2416 Insider, The (1999)
## 2417 American Movie (1999)
## 2418 Last Night (1998)
## 2419 Rosetta (1999)
## 2420 They Shoot Horses, Don't They? (1969)
## 2421 Bride of Re-Animator (1990)
## 2422 Coma (1978)
## 2423 Creepshow (1982)
## 2424 Creepshow 2 (1987)
## 2425 Re-Animator (1985)
## 2426 Drugstore Cowboy (1989)
## 2427 Falling Down (1993)
## 2428 Funhouse, The (1981)
## 2429 General, The (1926)
## 2430 Piranha (1978)
## 2431 Rough Night in Jericho (1967)
## 2432 Taming of the Shrew, The (1967)
## 2433 Nighthawks (1981)
## 2434 Yojimbo (1961)
## 2435 Repossessed (1990)
## 2436 Omega Man, The (1971)
## 2437 Spaceballs (1987)
## 2438 Robin Hood (1973)
## 2439 Mister Roberts (1955)
## 2440 Quest for Fire (Guerre du feu, La) (1981)
## 2441 Little Big Man (1970)
## 2442 Face in the Crowd, A (1957)
## 2443 Trading Places (1983)
## 2444 Meatballs (1979)
## 2445 Meatballs Part II (1984)
## 2446 Meatballs III (1987)
## 2447 Meatballs 4 (1992)
## 2448 Dead Again (1991)
## 2449 Peter's Friends (1992)
## 2450 Incredibly True Adventure of Two Girls in Love, The (1995)
## 2451 Experience Preferred... But Not Essential (1982)
## 2452 Under the Rainbow (1981)
## 2453 Anywhere But Here (1999)
## 2454 Dogma (1999)
## 2455 Messenger: The Story of Joan of Arc, The (1999)
## 2456 Pokémon: The First Movie (1998)
## 2457 Felicia's Journey (1999)
## 2458 Where's Marlowe? (1998)
## 2459 Commitments, The (1991)
## 2460 Holiday Inn (1942)
## 2461 Longest Day, The (1962)
## 2462 Poison Ivy (1992)
## 2463 Poison Ivy: New Seduction (1997)
## 2464 Tora! Tora! Tora! (1970)
## 2465 Women on the Verge of a Nervous Breakdown (Mujeres al borde de un ataque de nervios) (1988)
## 2466 Verdict, The (1982)
## 2467 Effect of Gamma Rays on Man-in-the-Moon Marigolds, The (1972)
## 2468 Adventures of Buckaroo Banzai Across the 8th Dimension, The (1984)
## 2469 Stand and Deliver (1988)
## 2470 Moonstruck (1987)
## 2471 Jeremiah Johnson (1972)
## 2472 Repulsion (1965)
## 2473 Irma la Douce (1963)
## 2474 42 Up (1998)
## 2475 Liberty Heights (1999)
## 2476 Mansfield Park (1999)
## 2477 Sleepy Hollow (1999)
## 2478 World Is Not Enough, The (1999)
## 2479 All About My Mother (Todo sobre mi madre) (1999)
## 2480 Babes in Toyland (1934)
## 2481 Scrooged (1988)
## 2482 Harvey (1950)
## 2483 Bicycle Thieves (a.k.a. The Bicycle Thief) (a.k.a. The Bicycle Thieves) (Ladri di biciclette) (1948)
## 2484 Matewan (1987)
## 2485 Kagemusha (1980)
## 2486 McCabe & Mrs. Miller (1971)
## 2487 Maurice (1987)
## 2488 Grapes of Wrath, The (1940)
## 2489 My Man Godfrey (1957)
## 2490 Shop Around the Corner, The (1940)
## 2491 Natural, The (1984)
## 2492 Shampoo (1975)
## 2493 River Runs Through It, A (1992)
## 2494 Fatal Attraction (1987)
## 2495 Jagged Edge (1985)
## 2496 Stanley & Iris (1990)
## 2497 Midnight Run (1988)
## 2498 Awakenings (1990)
## 2499 Come See the Paradise (1990)
## 2500 Backdraft (1991)
## 2501 Fisher King, The (1991)
## 2502 River, The (1984)
## 2503 Country (1984)
## 2504 Places in the Heart (1984)
## 2505 'night Mother (1986)
## 2506 End of Days (1999)
## 2507 Toy Story 2 (1999)
## 2508 Flawless (1999)
## 2509 Miss Julie (1999)
## 2510 Ride with the Devil (1999)
## 2511 Tumbleweeds (1999)
## 2512 Distinguished Gentleman, The (1992)
## 2513 Hitch-Hiker, The (1953)
## 2514 Santa Fe Trail (1940)
## 2515 End of the Affair, The (1999)
## 2516 Holy Smoke (1999)
## 2517 Map of the World, A (1999)
## 2518 Sweet and Lowdown (1999)
## 2519 Bonfire of the Vanities (1990)
## 2520 Go West (1925)
## 2521 Grand Illusion (La grande illusion) (1937)
## 2522 Great Santini, The (1979)
## 2523 James Dean Story, The (1957)
## 2524 Stealing Home (1988)
## 2525 Three Ages (1923)
## 2526 Two Jakes, The (1990)
## 2527 U2: Rattle and Hum (1988)
## 2528 Hell in the Pacific (1968)
## 2529 Glass Bottom Boat, The (1966)
## 2530 Cradle Will Rock (1999)
## 2531 Deuce Bigalow: Male Gigolo (1999)
## 2532 Green Mile, The (1999)
## 2533 Cider House Rules, The (1999)
## 2534 War Zone, The (1999)
## 2535 Last Picture Show, The (1971)
## 2536 7th Voyage of Sinbad, The (1958)
## 2537 Anna and the King (1999)
## 2538 Bicentennial Man (1999)
## 2539 Stuart Little (1999)
## 2540 Emperor and the Assassin, The (Jing ke ci qin wang) (1999)
## 2541 Fantasia 2000 (1999)
## 2542 Magnolia (1999)
## 2543 Onegin (1999)
## 2544 Topsy-Turvy (1999)
## 2545 Boiling Point (1993)
## 2546 Brenda Starr (1989)
## 2547 Carnal Knowledge (1971)
## 2548 Easy Rider (1969)
## 2549 The Falcon and the Snowman (1985)
## 2550 Room at the Top (1959)
## 2551 Any Given Sunday (1999)
## 2552 Man on the Moon (1999)
## 2553 Galaxy Quest (1999)
## 2554 Talented Mr. Ripley, The (1999)
## 2555 Next Friday (2000)
## 2556 Hurricane, The (1999)
## 2557 Angela's Ashes (1999)
## 2558 Play it to the Bone (1999)
## 2559 Titus (1999)
## 2560 Mr. Death: The Rise and Fall of Fred A. Leuchter, Jr. (1999)
## 2561 Third Miracle, The (1999)
## 2562 Snow Falling on Cedars (1999)
## 2563 Girl, Interrupted (1999)
## 2564 Life and Times of Hank Greenberg, The (1998)
## 2565 My Dog Skip (1999)
## 2566 Supernova (2000)
## 2567 Terrorist, The (a.k.a. Malli) (Theeviravaathi) (1998)
## 2568 Way We Were, The (1973)
## 2569 Stalag 17 (1953)
## 2570 Presidio, The (1988)
## 2571 Papillon (1973)
## 2572 Pal Joey (1957)
## 2573 Last Detail, The (1973)
## 2574 Five Easy Pieces (1970)
## 2575 Even Dwarfs Started Small (Auch Zwerge haben klein angefangen) (1971)
## 2576 Dead Calm (1989)
## 2577 Boys from Brazil, The (1978)
## 2578 Black Sunday (La maschera del demonio) (1960)
## 2579 Against All Odds (1984)
## 2580 Snows of Kilimanjaro, The (1952)
## 2581 Loaded Weapon 1 (National Lampoon's Loaded Weapon 1) (1993)
## 2582 Fast Times at Ridgemont High (1982)
## 2583 Cry in the Dark, A (1988)
## 2584 Batman: Mask of the Phantasm (1993)
## 2585 American Flyers (1985)
## 2586 Vampyros Lesbos (Vampiras, Las) (1971)
## 2587 Star Is Born, A (1937)
## 2588 Poison (1991)
## 2589 Pacific Heights (1990)
## 2590 Draughtsman's Contract, The (1982)
## 2591 Zed & Two Noughts, A (1985)
## 2592 Woman in the Dunes (Suna no onna) (1964)
## 2593 Down to You (2000)
## 2594 Seven Chances (1925)
## 2595 Where the Buffalo Roam (1980)
## 2596 Eye of the Beholder (1999)
## 2597 Isn't She Great? (2000)
## 2598 Big Tease, The (1999)
## 2599 Cup, The (Phörpa) (1999)
## 2600 Encino Man (1992)
## 2601 Goodbye Girl, The (1977)
## 2602 I Am Cuba (Soy Cuba/Ya Kuba) (1964)
## 2603 Malcolm X (1992)
## 2604 Sister Act (1992)
## 2605 Sister Act 2: Back in the Habit (1993)
## 2606 Hand That Rocks the Cradle, The (1992)
## 2607 Alive (1993)
## 2608 Agnes of God (1985)
## 2609 Scent of a Woman (1992)
## 2610 Wayne's World (1992)
## 2611 Wayne's World 2 (1993)
## 2612 League of Their Own, A (1992)
## 2613 Patriot Games (1992)
## 2614 Bodyguard, The (1992)
## 2615 Death Becomes Her (1992)
## 2616 Far and Away (1992)
## 2617 Howards End (1992)
## 2618 Singles (1992)
## 2619 Twin Peaks: Fire Walk with Me (1992)
## 2620 White Men Can't Jump (1992)
## 2621 Buffy the Vampire Slayer (1992)
## 2622 Hard-Boiled (Lat sau san taam) (1992)
## 2623 Man Bites Dog (C'est arrivé près de chez vous) (1992)
## 2624 Mariachi, El (1992)
## 2625 Stop! Or My Mom Will Shoot (1992)
## 2626 Forever Young (1992)
## 2627 Cutting Edge, The (1992)
## 2628 Of Mice and Men (1992)
## 2629 Bad Lieutenant (1992)
## 2630 Scream 3 (2000)
## 2631 Single White Female (1992)
## 2632 Boondock Saints, The (2000)
## 2633 Gun Shy (2000)
## 2634 Brandon Teena Story, The (1998)
## 2635 Different for Girls (1996)
## 2636 They Might Be Giants (1971)
## 2637 Beach, The (2000)
## 2638 Snow Day (2000)
## 2639 Tigger Movie, The (2000)
## 2640 Not One Less (Yi ge dou bu neng shao) (1999)
## 2641 Big Combo, The (1955)
## 2642 Eaten Alive (1977)
## 2643 To Sir with Love (1967)
## 2644 Boiler Room (2000)
## 2645 Hanging Up (2000)
## 2646 Pitch Black (2000)
## 2647 Whole Nine Yards, The (2000)
## 2648 Beautiful People (1999)
## 2649 Black Tar Heroin: The Dark End of the Street (2000)
## 2650 Blue Collar (1978)
## 2651 Circus, The (1928)
## 2652 City Lights (1931)
## 2653 Flamingo Kid, The (1984)
## 2654 Dog's Life, A (1918)
## 2655 Kid, The (1921)
## 2656 Class Reunion (1982)
## 2657 Big Trees, The (1952)
## 2658 Reindeer Games (2000)
## 2659 Wonder Boys (2000)
## 2660 Deterrence (1999)
## 2661 Mifune's Last Song (Mifunes sidste sang) (1999)
## 2662 Drowning Mona (2000)
## 2663 Next Best Thing, The (2000)
## 2664 What Planet Are You From? (2000)
## 2665 Beyond the Mat (1999)
## 2666 Ghost Dog: The Way of the Samurai (1999)
## 2667 The Year My Voice Broke (1987)
## 2668 Splendor in the Grass (1961)
## 2669 My Tutor (1983)
## 2670 Key Largo (1948)
## 2671 For All Mankind (1989)
## 2672 Cross of Iron (1977)
## 2673 Bride of the Monster (1955)
## 2674 Born Yesterday (1950)
## 2675 Birdy (1984)
## 2676 And God Created Woman (1988)
## 2677 Blood Feast (1963)
## 2678 Never Cry Wolf (1983)
## 2679 Perils of Pauline, The (1947)
## 2680 Raisin in the Sun, A (1961)
## 2681 Two Thousand Maniacs! (1964)
## 2682 Mission to Mars (2000)
## 2683 Ninth Gate, The (1999)
## 2684 East-West (Est-ouest) (1999)
## 2685 Defending Your Life (1991)
## 2686 Breaking Away (1979)
## 2687 Hoosiers (a.k.a. Best Shot) (1986)
## 2688 Bull Durham (1988)
## 2689 Dog Day Afternoon (1975)
## 2690 American Graffiti (1973)
## 2691 Asphalt Jungle, The (1950)
## 2692 Searchers, The (1956)
## 2693 Big Country, The (1958)
## 2694 Betrayed (1988)
## 2695 Bound for Glory (1976)
## 2696 Hangmen Also Die! (1943)
## 2697 On the Beach (1959)
## 2698 Railroaded! (1947)
## 2699 Taking of Pelham One Two Three, The (1974)
## 2700 Volunteers (1985)
## 2701 JFK (1991)
## 2702 Who's Harry Crumb? (1989)
## 2703 Harry and the Hendersons (1987)
## 2704 Shanghai Surprise (1986)
## 2705 Who's That Girl? (1987)
## 2706 She-Devil (1989)
## 2707 Date with an Angel (1987)
## 2708 Blind Date (1987)
## 2709 Nadine (1987)
## 2710 Muppet Movie, The (1979)
## 2711 Great Muppet Caper, The (1981)
## 2712 Muppets Take Manhattan, The (1984)
## 2713 Sesame Street Presents Follow That Bird (1985)
## 2714 We're Back! A Dinosaur's Story (1993)
## 2715 Baby... Secret of the Lost Legend (1985)
## 2716 Turtle Diary (1985)
## 2717 Titanic (1953)
## 2718 Night to Remember, A (1958)
## 2719 Captain Horatio Hornblower R.N. (1951)
## 2720 Erin Brockovich (2000)
## 2721 Final Destination (2000)
## 2722 Bear, The (Ours, L') (1988)
## 2723 Love Is a Many-Splendored Thing (1955)
## 2724 Mirror, The (Zerkalo) (1975)
## 2725 Crimson Pirate, The (1952)
## 2726 Thelma & Louise (1991)
## 2727 ...And Justice for All (1979)
## 2728 Animal House (1978)
## 2729 She's Gotta Have It (1986)
## 2730 School Daze (1988)
## 2731 Do the Right Thing (1989)
## 2732 Mo' Better Blues (1990)
## 2733 Jungle Fever (1991)
## 2734 Coogan's Bluff (1968)
## 2735 Champ, The (1979)
## 2736 Creature Comforts (1989)
## 2737 Death Wish (1974)
## 2738 Death Wish 2 (1982)
## 2739 Death Wish 3 (1985)
## 2740 Death Wish 5: The Face of Death (1994)
## 2741 Double Indemnity (1944)
## 2742 Dying Young (1991)
## 2743 Cool as Ice (1991)
## 2744 Teenage Mutant Ninja Turtles (1990)
## 2745 Teenage Mutant Ninja Turtles II: The Secret of the Ooze (1991)
## 2746 Teenage Mutant Ninja Turtles III (1993)
## 2747 Red Dawn (1984)
## 2748 Band of the Hand (1986)
## 2749 Bloodsport (1988)
## 2750 Eyes of Laura Mars (1978)
## 2751 Funny Bones (1995)
## 2752 Good Earth, The (1937)
## 2753 Good Morning, Vietnam (1987)
## 2754 Good Mother, The (1988)
## 2755 Grumpy Old Men (1993)
## 2756 Guess Who's Coming to Dinner (1967)
## 2757 Romeo Must Die (2000)
## 2758 Here on Earth (2000)
## 2759 Whatever It Takes (2000)
## 2760 Color of Paradise, The (Rang-e khoda) (1999)
## 2761 Waking the Dead (2000)
## 2762 Gothic (1986)
## 2763 Hillbillys in a Haunted House (1967)
## 2764 Lord of the Flies (1963)
## 2765 Modern Times (1936)
## 2766 Last Resort (National Lampoon's Last Resort) (1994)
## 2767 That's Life! (1986)
## 2768 Heart and Souls (1993)
## 2769 Hud (1963)
## 2770 Hustler, The (1961)
## 2771 Inherit the Wind (1960)
## 2772 Dersu Uzala (1975)
## 2773 Close Encounters of the Third Kind (1977)
## 2774 Retroactive (1997)
## 2775 Place in the Sun, A (1951)
## 2776 Jacob's Ladder (1990)
## 2777 Empire Records (1995)
## 2778 Bamba, La (1987)
## 2779 Ladyhawke (1985)
## 2780 Lucas (1986)
## 2781 High Fidelity (2000)
## 2782 Road to El Dorado, The (2000)
## 2783 Skulls, The (2000)
## 2784 El Dorado (1966)
## 2785 Hook (1991)
## 2786 Horror Express (1972)
## 2787 My Chauffeur (1986)
## 2788 Son of the Sheik, The (1926)
## 2789 True Grit (1969)
## 2790 Roadside Prophets (1992)
## 2791 Madame Sousatzka (1988)
## 2792 Max Dugan Returns (1983)
## 2793 Midnight Express (1978)
## 2794 Misery (1990)
## 2795 Mr. Saturday Night (1992)
## 2796 Murphy's Romance (1985)
## 2797 My Life (1993)
## 2798 Solaris (Solyaris) (1972)
## 2799 Network (1976)
## 2800 No Way Out (1987)
## 2801 North Dallas Forty (1979)
## 2802 Odd Couple, The (1968)
## 2803 Outlaw Josey Wales, The (1976)
## 2804 Black and White (1999)
## 2805 Frequency (2000)
## 2806 Ready to Rumble (2000)
## 2807 Return to Me (2000)
## 2808 Rules of Engagement (2000)
## 2809 Me Myself I (2000)
## 2810 Bell, Book and Candle (1958)
## 2811 End of Violence, The (1997)
## 2812 Force 10 from Navarone (1978)
## 2813 How to Stuff a Wild Bikini (1965)
## 2814 Mystery Train (1989)
## 2815 Sacco and Vanzetti (Sacco e Vanzetti) (1971)
## 2816 Arthur (1981)
## 2817 Bachelor Party (1984)
## 2818 Parenthood (1989)
## 2819 Predator (1987)
## 2820 Prince of Tides, The (1991)
## 2821 Postman Always Rings Twice, The (1981)
## 2822 All the Vermeers in New York (1990)
## 2823 28 Days (2000)
## 2824 American Psycho (2000)
## 2825 Keeping the Faith (2000)
## 2826 Where the Money Is (2000)
## 2827 East is East (1999)
## 2828 Filth and the Fury, The (2000)
## 2829 Passion of Mind (2000)
## 2830 Diner (1982)
## 2831 Shakes the Clown (1992)
## 2832 Cabaret (1972)
## 2833 What Ever Happened to Baby Jane? (1962)
## 2834 Prick Up Your Ears (1987)
## 2835 Auntie Mame (1958)
## 2836 Guys and Dolls (1955)
## 2837 The Hunger (1983)
## 2838 Marathon Man (1976)
## 2839 Caddyshack (1980)
## 2840 Gossip (2000)
## 2841 Love and Basketball (2000)
## 2842 U-571 (2000)
## 2843 Virgin Suicides, The (1999)
## 2844 Jennifer 8 (1992)
## 2845 Limelight (1952)
## 2846 Empire of Passion (a.k.a. In the Realm of Passion) (a.k.a. Phantom Love) (Ai No Borei) (1978)
## 2847 Crow: Salvation, The (2000)
## 2848 Flintstones in Viva Rock Vegas, The (2000)
## 2849 Where the Heart Is (2000)
## 2850 Big Kahuna, The (2000)
## 2851 Bossa Nova (2000)
## 2852 Smiling Fish and Goat on Fire (1999)
## 2853 Idiots, The (Idioterne) (1998)
## 2854 Time Code (2000)
## 2855 Carnosaur (1993)
## 2856 Carnosaur 2 (1995)
## 2857 Carnosaur 3: Primal Species (1996)
## 2858 Defying Gravity (1997)
## 2859 Hidden, The (1987)
## 2860 Two Moon Junction (1988)
## 2861 Gladiator (2000)
## 2862 I Dreamed of Africa (2000)
## 2863 Up at the Villa (2000)
## 2864 Human Traffic (1999)
## 2865 Breathless (1983)
## 2866 Inferno (1980)
## 2867 King of Marvin Gardens, The (1972)
## 2868 Lords of Flatbush, The (1974)
## 2869 Mr. Mom (1983)
## 2870 Battlefield Earth (2000)
## 2871 Center Stage (2000)
## 2872 Screwed (2000)
## 2873 Hamlet (2000)
## 2874 Anchors Aweigh (1945)
## 2875 Blue Hawaii (1961)
## 2876 G.I. Blues (1960)
## 2877 Gypsy (1962)
## 2878 King Creole (1958)
## 2879 On the Town (1949)
## 2880 Pee-wee's Big Adventure (1985)
## 2881 Regret to Inform (1998)
## 2882 Saludos Amigos (1943)
## 2883 The Slipper and the Rose: The Story of Cinderella (1976)
## 2884 Things Change (1988)
## 2885 Honeymoon in Vegas (1992)
## 2886 Dinosaur (2000)
## 2887 Loser (2000)
## 2888 Road Trip (2000)
## 2889 Small Time Crooks (2000)
## 2890 Hollywood Knights, The (1980)
## 2891 Myth of Fingerprints, The (1997)
## 2892 Possession (1981)
## 2893 Twelve Chairs, The (1970)
## 2894 Mission: Impossible II (2000)
## 2895 Shanghai Noon (2000)
## 2896 8 ý Women (a.k.a. 8 1/2 Women) (a.k.a. Eight and a Half Women) (1999)
## 2897 Carnival of Souls (1962)
## 2898 Flying Tigers (1942)
## 2899 Gold Rush, The (1925)
## 2900 Monsieur Verdoux (1947)
## 2901 On Her Majesty's Secret Service (1969)
## 2902 Seven Days in May (1964)
## 2903 Spy Who Loved Me, The (1977)
## 2904 Vagabond (Sans toit ni loi) (1985)
## 2905 Moonraker (1979)
## 2906 Man with the Golden Gun, The (1974)
## 2907 King in New York, A (1957)
## 2908 Fighting Seabees, The (1944)
## 2909 Big Momma's House (2000)
## 2910 American Gigolo (1980)
## 2911 Endless Summer, The (1966)
## 2912 Guns of Navarone, The (1961)
## 2913 Blow-Out (La grande bouffe) (1973)
## 2914 Lured (1947)
## 2915 Pandora and the Flying Dutchman (1951)
## 2916 Quatermass and the Pit (1967)
## 2917 Quatermass 2 (Enemy from Space) (1957)
## 2918 Puppet Master (1989)
## 2919 Puppet Master II (1991)
## 2920 Puppet Master III: Toulon's Revenge (1991)
## 2921 Puppet Master 4 (1993)
## 2922 Puppet Master 5: The Final Chapter (1994)
## 2923 Curse of the Puppet Master (Puppet Master 6: The Curse) (1998)
## 2924 Romeo and Juliet (1968)
## 2925 Stay Tuned (1992)
## 2926 Blazing Saddles (1974)
## 2927 Benji (1974)
## 2928 Benji the Hunted (1987)
## 2929 For the Love of Benji (1977)
## 2930 White Christmas (1954)
## 2931 Eraserhead (1977)
## 2932 Baraka (1992)
## 2933 Man with the Golden Arm, The (1955)
## 2934 Decline of Western Civilization, The (1981)
## 2935 Decline of Western Civilization Part II: The Metal Years, The (1988)
## 2936 For a Few Dollars More (Per qualche dollaro in più) (1965)
## 2937 Magnum Force (1973)
## 2938 Blood Simple (1984)
## 2939 Fabulous Baker Boys, The (1989)
## 2940 Prizzi's Honor (1985)
## 2941 Flatliners (1990)
## 2942 Light Years (Gandahar) (1988)
## 2943 Porky's (1982)
## 2944 Porky's II: The Next Day (1983)
## 2945 Porky's Revenge (1985)
## 2946 Private School (1983)
## 2947 Class of Nuke 'Em High (1986)
## 2948 Toxic Avenger, The (1985)
## 2949 Toxic Avenger, Part II, The (1989)
## 2950 Toxic Avenger Part III: The Last Temptation of Toxie, The (1989)
## 2951 Night of the Creeps (1986)
## 2952 Predator 2 (1990)
## 2953 Running Man, The (1987)
## 2954 Starman (1984)
## 2955 Brother from Another Planet, The (1984)
## 2956 Alien Nation (1988)
## 2957 Mad Max (1979)
## 2958 Road Warrior, The (Mad Max 2) (1981)
## 2959 Mad Max Beyond Thunderdome (1985)
## 2960 Bird on a Wire (1990)
## 2961 Angel Heart (1987)
## 2962 9 1/2 Weeks (Nine 1/2 Weeks) (1986)
## 2963 Firestarter (1984)
## 2964 Sleepwalkers (1992)
## 2965 Action Jackson (1988)
## 2966 Soapdish (1991)
## 2967 Long Walk Home, The (1990)
## 2968 Clara's Heart (1988)
## 2969 Burglar (1987)
## 2970 Fatal Beauty (1987)
## 2971 Gone in 60 Seconds (2000)
## 2972 American Pimp (1999)
## 2973 Love's Labour's Lost (2000)
## 2974 Sunshine (1999)
## 2975 Trixie (2000)
## 2976 Hamlet (1990)
## 2977 Coming Home (1978)
## 2978 American Pop (1981)
## 2979 Assault on Precinct 13 (1976)
## 2980 Near Dark (1987)
## 2981 One False Move (1992)
## 2982 Shaft (1971)
## 2983 Conversation, The (1974)
## 2984 Cutter's Way (1981)
## 2985 Fury, The (1978)
## 2986 Paper Chase, The (1973)
## 2987 Prince of the City (1981)
## 2988 Serpico (1973)
## 2989 Ace in the Hole (Big Carnival, The) (1951)
## 2990 Lonely Are the Brave (1962)
## 2991 Sugarland Express, The (1974)
## 2992 Trouble in Paradise (1932)
## 2993 Big Trouble in Little China (1986)
## 2994 Badlands (1973)
## 2995 Battleship Potemkin (1925)
## 2996 Boys and Girls (2000)
## 2997 Shaft (2000)
## 2998 Titan A.E. (2000)
## 2999 Butterfly (La lengua de las mariposas) (1999)
## 3000 Jesus' Son (1999)
## 3001 Chicken Run (2000)
## 3002 Me, Myself & Irene (2000)
## 3003 Patriot, The (2000)
## 3004 Adventures of Rocky and Bullwinkle, The (2000)
## 3005 Perfect Storm, The (2000)
## 3006 Asylum (1972)
## 3007 Communion (1989)
## 3008 Fun and Fancy Free (1947)
## 3009 Kentucky Fried Movie, The (1977)
## 3010 Blood In, Blood Out (1993)
## 3011 F/X (1986)
## 3012 F/X2 (a.k.a. F/X 2 - The Deadly Art of Illusion) (1991)
## 3013 Hot Spot, The (1990)
## 3014 Missing in Action (1984)
## 3015 Braddock: Missing in Action III (1988)
## 3016 Thunderbolt and Lightfoot (1974)
## 3017 Dreamscape (1984)
## 3018 The Golden Voyage of Sinbad (1973)
## 3019 House Party (1990)
## 3020 House Party 2 (1991)
## 3021 Make Mine Music (1946)
## 3022 Nekromantik (1987)
## 3023 Rocketship X-M (1950)
## 3024 Croupier (1998)
## 3025 Kid, The (2000)
## 3026 Scary Movie (2000)
## 3027 But I'm a Cheerleader (1999)
## 3028 Shower (Xizao) (1999)
## 3029 Blow-Up (Blowup) (1966)
## 3030 Pawnbroker, The (1964)
## 3031 Groove (2000)
## 3032 Footloose (1984)
## 3033 Duel in the Sun (1946)
## 3034 X-Men (2000)
## 3035 Chuck & Buck (2000)
## 3036 Five Senses, The (1999)
## 3037 What Lies Beneath (2000)
## 3038 Pokémon the Movie 2000 (2000)
## 3039 Criminal Lovers (1999)
## 3040 Anatomy of a Murder (1959)
## 3041 Freejack (1992)
## 3042 H.O.T.S. (1979)
## 3043 Knightriders (1981)
## 3044 Mackenna's Gold (1969)
## 3045 Sinbad and the Eye of the Tiger (1977)
## 3046 What About Bob? (1991)
## 3047 White Sands (1992)
## 3048 Breaker Morant (1980)
## 3049 Everything You Always Wanted to Know About Sex * But Were Afraid to Ask (1972)
## 3050 Interiors (1978)
## 3051 Love and Death (1975)
## 3052 Official Story, The (La historia oficial) (1985)
## 3053 Tampopo (1985)
## 3054 Thomas and the Magic Railroad (2000)
## 3055 Nutty Professor II: The Klumps (2000)
## 3056 Girl on the Bridge, The (Fille sur le pont, La) (1999)
## 3057 Wonderland (1999)
## 3058 Autumn in New York (2000)
## 3059 Coyote Ugly (2000)
## 3060 Hollow Man (2000)
## 3061 Space Cowboys (2000)
## 3062 Mad About Mambo (2000)
## 3063 Saving Grace (2000)
## 3064 Black Sabbath (Tre volti della paura, I) (1963)
## 3065 Brain That Wouldn't Die, The (1962)
## 3066 Bronco Billy (1980)
## 3067 Crush, The (1993)
## 3068 Kelly's Heroes (1970)
## 3069 Phantasm II (1988)
## 3070 Phantasm III: Lord of the Dead (1994)
## 3071 Phantasm IV: Oblivion (1998)
## 3072 Pumpkinhead (1988)
## 3073 Air America (1990)
## 3074 Sleepaway Camp (1983)
## 3075 Steel Magnolias (1989)
## 3076 And God Created Woman (Et Dieu... créa la femme) (1956)
## 3077 Easy Money (1983)
## 3078 Ilsa, She Wolf of the SS (1974)
## 3079 Silent Fall (1994)
## 3080 The Spiral Staircase (1945)
## 3081 I'm the One That I Want (2000)
## 3082 Tao of Steve, The (2000)
## 3083 Aimée & Jaguar (1999)
## 3084 Affair of Love, An (Liaison pornographique, Une) (1999)
## 3085 Bless the Child (2000)
## 3086 Cecil B. DeMented (2000)
## 3087 Eyes of Tammy Faye, The (2000)
## 3088 Opportunists, The (2000)
## 3089 Replacements, The (2000)
## 3090 Cell, The (2000)
## 3091 Godzilla 2000 (Gojira ni-sen mireniamu) (1999)
## 3092 Original Kings of Comedy, The (2000)
## 3093 Naked Gun: From the Files of Police Squad!, The (1988)
## 3094 Naked Gun 2 1/2: The Smell of Fear, The (1991)
## 3095 Our Town (1940)
## 3096 Shane (1953)
## 3097 Suddenly, Last Summer (1959)
## 3098 Cat Ballou (1965)
## 3099 Devil Rides Out, The (1968)
## 3100 Supergirl (1984)
## 3101 Art of War, The (2000)
## 3102 Ballad of Ramblin' Jack, The (2000)
## 3103 Bring It On (2000)
## 3104 Catfish in Black Bean Sauce (2000)
## 3105 Love & Sex (2000)
## 3106 Steal This Movie! (2000)
## 3107 Highlander: Endgame (Highlander IV) (2000)
## 3108 Back Stage (2000)
## 3109 Turn It Up (2000)
## 3110 Anatomy (Anatomie) (2000)
## 3111 Nurse Betty (2000)
## 3112 Watcher, The (2000)
## 3113 Way of the Gun, The (2000)
## 3114 Almost Famous (2000)
## 3115 Crime and Punishment in Suburbia (2000)
## 3116 Duets (2000)
## 3117 Goya in Bordeaux (Goya en Burdeos) (1999)
## 3118 Urbania (2000)
## 3119 Specials, The (2000)
## 3120 Under Suspicion (2000)
## 3121 Urban Legends: Final Cut (2000)
## 3122 Woman on Top (2000)
## 3123 Dancer in the Dark (2000)
## 3124 Best in Show (2000)
## 3125 Barenaked in America (1999)
## 3126 Broken Hearts Club, The (2000)
## 3127 Girlfight (2000)
## 3128 Remember the Titans (2000)
## 3129 Hellraiser (1987)
## 3130 Hellbound: Hellraiser II (1988)
## 3131 Hellraiser III: Hell on Earth (1992)
## 3132 Faraway, So Close (In weiter Ferne, so nah!) (1993)
## 3133 Beach Party (1963)
## 3134 Bikini Beach (1964)
## 3135 Return of the Fly (1959)
## 3136 Pajama Party (1964)
## 3137 Stranger Than Paradise (1984)
## 3138 Voyage to the Bottom of the Sea (1961)
## 3139 Fantastic Voyage (1966)
## 3140 Abbott and Costello Meet Frankenstein (1948)
## 3141 Bank Dick, The (1940)
## 3142 Creature from the Black Lagoon, The (1954)
## 3143 Invisible Man, The (1933)
## 3144 Killer Shrews, The (1959)
## 3145 Kronos (1957)
## 3146 Phantom of the Opera (1943)
## 3147 Runaway (1984)
## 3148 Slumber Party Massacre, The (1982)
## 3149 Slumber Party Massacre II (1987)
## 3150 Slumber Party Massacre III (1990)
## 3151 Sorority House Massacre (1986)
## 3152 Sorority House Massacre II (1990)
## 3153 Bamboozled (2000)
## 3154 Digimon: The Movie (2000)
## 3155 Get Carter (2000)
## 3156 Get Carter (1971)
## 3157 Meet the Parents (2000)
## 3158 Requiem for a Dream (2000)
## 3159 Tigerland (2000)
## 3160 Two Family House (2000)
## 3161 Contender, The (2000)
## 3162 Dr. T and the Women (2000)
## 3163 Ladies Man, The (2000)
## 3164 Lost Souls (2000)
## 3165 Billy Jack (1971)
## 3166 Time Machine, The (1960)
## 3167 Haunted (1995)
## 3168 Ghoulies (1985)
## 3169 Ghoulies II (1987)
## 3170 Unsinkable Molly Brown, The (1964)
## 3171 Adventures of Ichabod and Mr. Toad, The (1949)
## 3172 Strange Love of Martha Ivers, The (1946)
## 3173 Detour (1945)
## 3174 Billy Elliot (2000)
## 3175 Bedazzled (2000)
## 3176 Pay It Forward (2000)
## 3177 Beyond, The (E tu vivrai nel terrore - L'aldilÃÂ ) (1981)
## 3178 Private Eyes, The (1981)
## 3179 Legend of Drunken Master, The (Jui kuen II) (1994)
## 3180 Book of Shadows: Blair Witch 2 (2000)
## 3181 Lucky Numbers (2000)
## 3182 Stardom (2000)
## 3183 Charlie's Angels (2000)
## 3184 Legend of Bagger Vance, The (2000)
## 3185 Little Nicky (2000)
## 3186 Men of Honor (2000)
## 3187 Red Planet (2000)
## 3188 You Can Count on Me (2000)
## 3189 Diamonds Are Forever (1971)
## 3190 Eagle Has Landed, The (1976)
## 3191 6th Day, The (2000)
## 3192 Bounce (2000)
## 3193 How the Grinch Stole Christmas (a.k.a. The Grinch) (2000)
## 3194 One Day in September (1999)
## 3195 Rugrats in Paris: The Movie (2000)
## 3196 102 Dalmatians (2000)
## 3197 Malèna (2000)
## 3198 Quills (2000)
## 3199 Unbreakable (2000)
## 3200 Crouching Tiger, Hidden Dragon (Wo hu cang long) (2000)
## 3201 Dungeons & Dragons (2000)
## 3202 Proof of Life (2000)
## 3203 Vertical Limit (2000)
## 3204 Bounty, The (1984)
## 3205 Code of Silence (1985)
## 3206 Planes, Trains & Automobiles (1987)
## 3207 She's Having a Baby (1988)
## 3208 Living Daylights, The (1987)
## 3209 Transformers: The Movie (1986)
## 3210 Wall Street (1987)
## 3211 Born on the Fourth of July (1989)
## 3212 Talk Radio (1988)
## 3213 Brewster's Millions (1985)
## 3214 Snatch (2000)
## 3215 Punchline (1988)
## 3216 Chocolat (2000)
## 3217 Dude, Where's My Car? (2000)
## 3218 Emperor's New Groove, The (2000)
## 3219 Pollock (2000)
## 3220 What Women Want (2000)
## 3221 Finding Forrester (2000)
## 3222 Gift, The (2000)
## 3223 Before Night Falls (2000)
## 3224 Cast Away (2000)
## 3225 Family Man, The (2000)
## 3226 House of Mirth, The (2000)
## 3227 Miss Congeniality (2000)
## 3228 Nowhere to Hide (Injeong sajeong bol geot eobtda) (1999)
## 3229 O Brother, Where Art Thou? (2000)
## 3230 State and Main (2000)
## 3231 Dracula 2000 (2000)
## 3232 All the Pretty Horses (2000)
## 3233 Thirteen Days (2000)
## 3234 Traffic (2000)
## 3235 Claim, The (2000)
## 3236 Shadow of the Vampire (2000)
## 3237 House of Games (1987)
## 3238 Annie (1982)
## 3239 Don't Tell Mom the Babysitter's Dead (1991)
## 3240 Officer and a Gentleman, An (1982)
## 3241 Alamo, The (1960)
## 3242 At Close Range (1986)
## 3243 Breakheart Pass (1975)
## 3244 Friendly Persuasion (1956)
## 3245 Gettysburg (1993)
## 3246 Imaginary Crimes (1994)
## 3247 Horrors of Spider Island (Ein Toter Hing im Netz) (1960)
## 3248 Antitrust (2001)
## 3249 Double Take (2001)
## 3250 Save the Last Dance (2001)
## 3251 Panic (2000)
## 3252 Pledge, The (2001)
## 3253 Love Field (1992)
## 3254 The Man in the Moon (1991)
## 3255 Mystic Pizza (1988)
## 3256 Prelude to a Kiss (1992)
## 3257 I'm Gonna Git You Sucka (1988)
## 3258 Untamed Heart (1993)
## 3259 Sugar & Spice (2001)
## 3260 Wedding Planner, The (2001)
## 3261 Invisible Circus, The (2001)
## 3262 Two Ninas (1999)
## 3263 With a Friend Like Harry... (Harry, un ami qui vous veut du bien) (2000)
## 3264 Amazon Women on the Moon (1987)
## 3265 Baby Boom (1987)
## 3266 Back to the Beach (1987)
## 3267 Barfly (1987)
## 3268 Beverly Hills Cop II (1987)
## 3269 Beverly Hills Cop (1984)
## 3270 Big Easy, The (1987)
## 3271 Big Town, The (1987)
## 3272 Born in East L.A. (1987)
## 3273 Brave Little Toaster, The (1987)
## 3274 Can't Buy Me Love (1987)
## 3275 Cherry 2000 (1987)
## 3276 Cry Freedom (1987)
## 3277 Dead, The (1987)
## 3278 Dogs in Space (1987)
## 3279 Eddie Murphy Raw (1987)
## 3280 Empire of the Sun (1987)
## 3281 Ernest Goes to Camp (1987)
## 3282 Evil Dead, The (1981)
## 3283 Extreme Prejudice (1987)
## 3284 Five Corners (1987)
## 3285 Flowers in the Attic (1987)
## 3286 Gardens of Stone (1987)
## 3287 Good Morning, Babylon (1987)
## 3288 Hiding Out (1987)
## 3289 Hollywood Shuffle (1987)
## 3290 Hope and Glory (1987)
## 3291 Innerspace (1987)
## 3292 Ironweed (1987)
## 3293 Ishtar (1987)
## 3294 Jaws: The Revenge (1987)
## 3295 Less Than Zero (1987)
## 3296 Lost Boys, The (1987)
## 3297 Maid to Order (1987)
## 3298 Making Mr. Right (1987)
## 3299 Mannequin (1987)
## 3300 Masters of the Universe (1987)
## 3301 Monster Squad, The (1987)
## 3302 Month in the Country, A (1987)
## 3303 No Man's Land (1987)
## 3304 North Shore (1987)
## 3305 Head Over Heels (2001)
## 3306 Left Behind: The Movie (2000)
## 3307 Valentine (2001)
## 3308 In the Mood For Love (Fa yeung nin wa) (2000)
## 3309 Million Dollar Hotel, The (2001)
## 3310 Hannibal (2001)
## 3311 Saving Silverman (Evil Woman) (2001)
## 3312 Taste of Others, The (Le goût des autres) (2000)
## 3313 Down to Earth (2001)
## 3314 Sweet November (2001)
## 3315 Company Man (2000)
## 3316 Monkeybone (2001)
## 3317 3000 Miles to Graceland (2001)
## 3318 Mexican, The (2001)
## 3319 See Spot Run (2001)
## 3320 Series 7: The Contenders (2001)
## 3321 15 Minutes (2001)
## 3322 Get Over It (2001)
## 3323 Blow Dry (a.k.a. Never Better) (2001)
## 3324 Long Night's Journey Into Day (2000)
## 3325 When Brendan Met Trudy (2000)
## 3326 Avalon (1990)
## 3327 Gray's Anatomy (1996)
## 3328 Mirror Crack'd, The (1980)
## 3329 Of Mice and Men (1939)
## 3330 Pixote (1981)
## 3331 Reform School Girls (1986)
## 3332 Tapeheads (1988)
## 3333 Unbelievable Truth, The (1989)
## 3334 Bishop's Wife, The (1947)
## 3335 Elvis: That's the Way It Is (1970)
## 3336 Fortune Cookie, The (1966)
## 3337 Lilies of the Field (1963)
## 3338 Hans Christian Andersen (1952)
## 3339 Greatest Story Ever Told, The (1965)
## 3340 Elmer Gantry (1960)
## 3341 Alfie (1966)
## 3342 I Know Where I'm Going! (1945)
## 3343 Abominable Dr. Phibes, The (1971)
## 3344 Real Life (1979)
## 3345 Battle Beyond the Stars (1980)
## 3346 Double Impact (1991)
## 3347 End, The (1978)
## 3348 Harley Davidson and the Marlboro Man (1991)
## 3349 Mermaids (1990)
## 3350 Navy Seals (1990)
## 3351 Unmade Beds (1997)
## 3352 Manhunter (1986)
## 3353 Reversal of Fortune (1990)
## 3354 Death on the Nile (1978)
## 3355 Deepstar Six (1989)
## 3356 Revenge of the Nerds (1984)
## 3357 Revenge of the Nerds II: Nerds in Paradise (1987)
## 3358 Longtime Companion (1990)
## 3359 4 Little Girls (1997)
## 3360 River's Edge (1986)
## 3361 Girls Just Want to Have Fun (1985)
## 3362 Longest Yard, The (1974)
## 3363 Necessary Roughness (1991)
## 3364 C.H.U.D. (1984)
## 3365 Enemy at the Gates (2001)
## 3366 Exit Wounds (2001)
## 3367 Dish, The (2001)
## 3368 Memento (2000)
## 3369 Heartbreakers (2001)
## 3370 Say It Isn't So (2001)
## 3371 Someone Like You (2001)
## 3372 Spy Kids (2001)
## 3373 Tomcats (2001)
## 3374 Tailor of Panama, The (2001)
## 3375 Amores Perros (Love's a Bitch) (2000)
## 3376 Keep the River on Your Right: A Modern Cannibal Tale (2000)
## 3377 Gleaners & I, The (Les glaneurs et la glaneuse) (2000)
## 3378 Along Came a Spider (2001)
## 3379 Blow (2001)
## 3380 Pokémon 3: The Movie (2001)
## 3381 Bridget Jones's Diary (2001)
## 3382 Joe Dirt (2001)
## 3383 Josie and the Pussycats (2001)
## 3384 Chopper (2000)
## 3385 Circle, The (Dayereh) (2000)
## 3386 Crocodile Dundee in Los Angeles (2001)
## 3387 Freddy Got Fingered (2001)
## 3388 Scarface (1983)
## 3389 Days of Wine and Roses (1962)
## 3390 Driven (2001)
## 3391 Forsaken, The (2001)
## 3392 One Night at McCool's (2001)
## 3393 Town & Country (2001)
## 3394 Mummy Returns, The (2001)
## 3395 Eureka (Yurîka) (2000)
## 3396 Under the Sand (2000)
## 3397 Cleopatra (1963)
## 3398 Krull (1983)
## 3399 Lost in America (1985)
## 3400 Lost World, The (1925)
## 3401 Triumph of the Will (Triumph des Willens) (1934)
## 3402 True Believer (1989)
## 3403 World According to Garp, The (1982)
## 3404 Candy (1968)
## 3405 Fellini Satyricon (1969)
## 3406 Frankie and Johnny (1966)
## 3407 For the Boys (1991)
## 3408 Nine to Five (a.k.a. 9 to 5) (1980)
## 3409 Norma Rae (1979)
## 3410 Summer Rental (1985)
## 3411 5,000 Fingers of Dr. T, The (1953)
## 3412 Love Story (1970)
## 3413 Pelle the Conqueror (Pelle erobreren) (1987)
## 3414 Rififi (Du rififi chez les hommes) (1955)
## 3415 Knight's Tale, A (2001)
## 3416 Bread and Roses (2000)
## 3417 King Is Alive, The (2000)
## 3418 Startup.com (2001)
## 3419 Angel Eyes (2001)
## 3420 Shrek (2001)
## 3421 Moulin Rouge (2001)
## 3422 Pearl Harbor (2001)
## 3423 Himalaya (Himalaya - l'enfance d'un chef) (1999)
## 3424 Ice Castles (1978)
## 3425 Love Potion #9 (1992)
## 3426 Postcards From the Edge (1990)
## 3427 Apache (1954)
## 3428 City Slickers (1991)
## 3429 Eight Men Out (1988)
## 3430 Kentuckian, The (1955)
## 3431 Mississippi Burning (1988)
## 3432 Magnificent Seven, The (1960)
## 3433 Rio Bravo (1959)
## 3434 Suspect (1987)
## 3435 Throw Momma from the Train (1987)
## 3436 Yi Yi (2000)
## 3437 Sand Pebbles, The (1966)
## 3438 Twelve O'Clock High (1949)
## 3439 Von Ryan's Express (1965)
## 3440 Animal, The (2001)
## 3441 Big Eden (2000)
## 3442 Evolution (2001)
## 3443 Swordfish (2001)
## 3444 Anniversary Party, The (2001)
## 3445 Divided We Fall (MusÃÂme si pomáhat) (2000)
## 3446 Catch-22 (1970)
## 3447 Forgotten Silver (1996)
## 3448 Point Break (1991)
## 3449 Shag (1989)
## 3450 Uncommon Valor (1983)
## 3451 Unlawful Entry (1992)
## 3452 Youngblood (1986)
## 3453 Gentlemen Prefer Blondes (1953)
## 3454 How to Marry a Millionaire (1953)
## 3455 Seven Year Itch, The (1955)
## 3456 There's No Business Like Show Business (1954)
## 3457 Tootsie (1982)
## 3458 Atlantis: The Lost Empire (2001)
## 3459 Lara Croft: Tomb Raider (2001)
## 3460 Dr. Dolittle 2 (2001)
## 3461 Fast and the Furious, The (2001)
## 3462 A.I. Artificial Intelligence (2001)
## 3463 Baby Boy (2001)
## 3464 Crazy/Beautiful (2001)
## 3465 Adventures of Felix, The (a.k.a. Funny Felix) (Drôle de Félix) (2000)
## 3466 Sexy Beast (2000)
## 3467 Princess and the Warrior, The (Krieger und die Kaiserin, Der) (2000)
## 3468 Closet, The (Placard, Le) (2001)
## 3469 Crimson Rivers, The (Rivières pourpres, Les) (2000)
## 3470 Lumumba (2000)
## 3471 Cats & Dogs (2001)
## 3472 Kiss of the Dragon (2001)
## 3473 Scary Movie 2 (2001)
## 3474 Lost and Delirious (2001)
## 3475 Rape Me (Baise-moi) (2000)
## 3476 Vertical Ray of the Sun, The (Mua he chieu thang dung) (2000)
## 3477 Alice (1990)
## 3478 Beach Blanket Bingo (1965)
## 3479 Cannonball Run, The (1981)
## 3480 Cannonball Run II (1984)
## 3481 Diary of a Chambermaid (Journal d'une femme de chambre, Le) (1964)
## 3482 Donovan's Reef (1963)
## 3483 Dr. Goldfoot and the Bikini Machine (1965)
## 3484 Fall of the House of Usher, The (House of Usher) (1960)
## 3485 Faust (1926)
## 3486 Last Laugh, The (Letzte Mann, Der) (1924)
## 3487 Man Who Shot Liberty Valance, The (1962)
## 3488 Salvador (1986)
## 3489 Shadows and Fog (1991)
## 3490 Something Wild (1986)
## 3491 Sons of Katie Elder (1965)
## 3492 X: The Man with the X-Ray Eyes (1963)
## 3493 Cheech & Chong's Nice Dreams (1981)
## 3494 House by the Cemetery, The (Quella villa accanto al cimitero) (1981)
## 3495 Barefoot Contessa, The (1954)
## 3496 Cries and Whispers (Viskningar och rop) (1972)
## 3497 Garden of the Finzi-Continis, The (Giardino dei Finzi-Contini, Il) (1970)
## 3498 Kiss Me Deadly (1955)
## 3499 Lion in Winter, The (1968)
## 3500 Misfits, The (1961)
## 3501 Sweet Smell of Success (1957)
## 3502 Written on the Wind (1956)
## 3503 Suspiria (1977)
## 3504 Fist of Fury (Chinese Connection, The) (Jing wu men) (1972)
## 3505 Big Boss, The (Fists of Fury) (Tang shan da xiong) (1971)
## 3506 Game of Death (1978)
## 3507 Last Dragon, The (1985)
## 3508 Outland (1981)
## 3509 Way of the Dragon, The (a.k.a. Return of the Dragon) (Meng long guo jiang) (1972)
## 3510 T-Rex: Back to the Cretaceous (1998)
## 3511 Final Fantasy: The Spirits Within (2001)
## 3512 Legally Blonde (2001)
## 3513 Score, The (2001)
## 3514 Bully (2001)
## 3515 Jump Tomorrow (2001)
## 3516 Made (2001)
## 3517 Michael Jordan to the Max (2000)
## 3518 More (1998)
## 3519 Africa: The Serengeti (1994)
## 3520 Alaska: Spirit of the Wild (1997)
## 3521 18 Again! (1988)
## 3522 Accidental Tourist, The (1988)
## 3523 Accused, The (1988)
## 3524 Above the Law (1988)
## 3525 Adventures of Baron Munchausen, The (1988)
## 3526 Appointment with Death (1988)
## 3527 Ariel (1988)
## 3528 Arthur 2: On the Rocks (1988)
## 3529 Bat*21 (1988)
## 3530 Beaches (1988)
## 3531 Beast of War, The (Beast, The) (1988)
## 3532 Big Top Pee-Wee (1988)
## 3533 Biloxi Blues (1988)
## 3534 Bird (1988)
## 3535 Blob, The (1988)
## 3536 Bright Lights, Big City (1988)
## 3537 Caddyshack II (1988)
## 3538 Clean and Sober (1988)
## 3539 Cocktail (1988)
## 3540 Colors (1988)
## 3541 Coming to America (1988)
## 3542 Couch Trip, The (1988)
## 3543 Criminal Law (1988)
## 3544 Critters (1986)
## 3545 Critters 2: The Main Course (1988)
## 3546 Crossing Delancey (1988)
## 3547 D.O.A. (1988)
## 3548 Dead Pool, The (1988)
## 3549 Dirty Rotten Scoundrels (1988)
## 3550 Drowning by Numbers (1988)
## 3551 Elvira, Mistress of the Dark (1988)
## 3552 Ernest Saves Christmas (1988)
## 3553 Everybody's All-American (1988)
## 3554 Frantic (1988)
## 3555 Gorillas in the Mist (1988)
## 3556 Great Outdoors, The (1988)
## 3557 High Spirits (1988)
## 3558 Imagine: John Lennon (1988)
## 3559 Johnny Be Good (1988)
## 3560 The Lair of the White Worm (1988)
## 3561 Land Before Time, The (1988)
## 3562 License to Drive (1988)
## 3563 Little Nikita (1988)
## 3564 Masquerade (1988)
## 3565 Milagro Beanfield War (1988)
## 3566 Moon Over Parador (1988)
## 3567 My Stepmother Is an Alien (1988)
## 3568 Night in the Life of Jimmy Reardon, A (1988)
## 3569 Off Limits (1988)
## 3570 Bagdad Cafe (Out of Rosenheim) (1987)
## 3571 Red Heat (1988)
## 3572 Return of the Living Dead Part II (1988)
## 3573 Return of the Living Dead, The (1985)
## 3574 Return to Snowy River (a.k.a. The Man From Snowy River II) (1988)
## 3575 Man from Snowy River, The (1982)
## 3576 Running on Empty (1988)
## 3577 Salome's Last Dance (1988)
## 3578 Salsa (1988)
## 3579 Serpent and the Rainbow, The (1988)
## 3580 Shoot to Kill (1988)
## 3581 Short Circuit 2 (1988)
## 3582 Short Circuit (1986)
## 3583 Vanishing, The (Spoorloos) (1988)
## 3584 Switching Channels (1988)
## 3585 Tetsuo, the Ironman (Tetsuo) (1988)
## 3586 They Live (1988)
## 3587 Torch Song Trilogy (1988)
## 3588 Tucker: The Man and His Dream (1988)
## 3589 Twins (1988)
## 3590 Vice Versa (1988)
## 3591 Watchers (1988)
## 3592 Waxwork (1988)
## 3593 Without a Clue (1988)
## 3594 Young Einstein (1988)
## 3595 Always (1989)
## 3596 American Ninja (1985)
## 3597 American Ninja 2: The Confrontation (1987)
## 3598 American Ninja 3: Blood Hunt (1989)
## 3599 Best of the Best (1989)
## 3600 Best of the Best 2 (1993)
## 3601 Big Picture, The (1989)
## 3602 Bill & Ted's Excellent Adventure (1989)
## 3603 Black Rain (1989)
## 3604 Blaze (1989)
## 3605 Casualties of War (1989)
## 3606 Chances Are (1989)
## 3607 Dream a Little Dream (1989)
## 3608 Dream Team, The (1989)
## 3609 Earth Girls Are Easy (1988)
## 3610 Eddie and the Cruisers (1983)
## 3611 Enemies: A Love Story (1989)
## 3612 Erik the Viking (1989)
## 3613 Experts, The (1989)
## 3614 Family Business (1989)
## 3615 Gross Anatomy (a.k.a. A Cut Above) (1989)
## 3616 Harlem Nights (1989)
## 3617 Her Alibi (1989)
## 3618 How to Get Ahead in Advertising (1989)
## 3619 Immediate Family (1989)
## 3620 Innocent Man, An (1989)
## 3621 January Man, The (1989)
## 3622 Jesus of Montreal (Jésus de Montréal) (1989)
## 3623 Kickboxer (1989)
## 3624 Last Exit to Brooklyn (1989)
## 3625 Lean on Me (1989)
## 3626 Let It Ride (1989)
## 3627 Leviathan (1989)
## 3628 Little Monsters (1989)
## 3629 Look Who's Talking (1989)
## 3630 Loverboy (1989)
## 3631 Major League (1989)
## 3632 Meet the Feebles (1989)
## 3633 Millennium (1989)
## 3634 Miracle Mile (1989)
## 3635 Miss Firecracker (1989)
## 3636 New York Stories (1989)
## 3637 Next of Kin (1989)
## 3638 No Holds Barred (1989)
## 3639 Package, The (1989)
## 3640 Penn & Teller Get Killed (1989)
## 3641 Punisher, The (1989)
## 3642 Jurassic Park III (2001)
## 3643 America's Sweethearts (2001)
## 3644 Brother (2000)
## 3645 Ghost World (2001)
## 3646 Hedwig and the Angry Inch (2000)
## 3647 Planet of the Apes (2001)
## 3648 Bread and Tulips (Pane e tulipani) (2000)
## 3649 Cure (1997)
## 3650 Wet Hot American Summer (2001)
## 3651 Return of Swamp Thing, The (1989)
## 3652 Road House (1989)
## 3653 Romero (1989)
## 3654 Santa Sangre (1989)
## 3655 Scandal (1989)
## 3656 Scenes from the Class Struggle in Beverly Hills (1989)
## 3657 Sea of Love (1989)
## 3658 See No Evil, Hear No Evil (1989)
## 3659 She's Out of Control (1989)
## 3660 Shirley Valentine (1989)
## 3661 Skin Deep (1989)
## 3662 Slaves of New York (1989)
## 3663 Stepfather, The (1987)
## 3664 Tango & Cash (1989)
## 3665 Tap (1989)
## 3666 Three Fugitives (1989)
## 3667 Troop Beverly Hills (1989)
## 3668 Turner & Hooch (1989)
## 3669 UHF (1989)
## 3670 Uncle Buck (1989)
## 3671 Vampire's Kiss (1989)
## 3672 War of the Roses, The (1989)
## 3673 Warlock (1989)
## 3674 Worth Winning (1989)
## 3675 Weekend at Bernie's II (1993)
## 3676 Billy Liar (1963)
## 3677 Black Robe (1991)
## 3678 Cotton Club, The (1984)
## 3679 Def-Con 4 (1985)
## 3680 Hotel New Hampshire, The (1984)
## 3681 Zorro, the Gay Blade (1981)
## 3682 Basket Case (1982)
## 3683 Orphans (1997)
## 3684 Original Sin (2001)
## 3685 Princess Diaries, The (2001)
## 3686 Rush Hour 2 (2001)
## 3687 Chocolat (1988)
## 3688 Hatari! (1962)
## 3689 Cage aux Folles, La (1978)
## 3690 Cage aux Folles II, La (1980)
## 3691 Paint Your Wagon (1969)
## 3692 Shootist, The (1976)
## 3693 Theremin: An Electronic Odyssey (1993)
## 3694 Wild Child, The (Enfant sauvage, L') (1970)
## 3695 Altered States (1980)
## 3696 Any Which Way You Can (1980)
## 3697 Bad Timing: A Sensual Obsession (1980)
## 3698 Battle Creek Brawl (Big Brawl, The) (1980)
## 3699 American Pie 2 (2001)
## 3700 Osmosis Jones (2001)
## 3701 Others, The (2001)
## 3702 American Outlaws (2001)
## 3703 All Over the Guy (2001)
## 3704 Deep End, The (2001)
## 3705 On the Edge (2001)
## 3706 Session 9 (2001)
## 3707 Captain Corelli's Mandolin (2001)
## 3708 Rat Race (2001)
## 3709 Innocence (2000)
## 3710 Bubble Boy (2001)
## 3711 Curse of the Jade Scorpion, The (2001)
## 3712 Jay and Silent Bob Strike Back (2001)
## 3713 Ghosts of Mars (2001)
## 3714 Summer Catch (2001)
## 3715 American Rhapsody, An (2001)
## 3716 Happy Accidents (2000)
## 3717 Maybe Baby (2000)
## 3718 Together (Tillsammans) (2000)
## 3719 Tortilla Soup (2001)
## 3720 Jeepers Creepers (2001)
## 3721 O (2001)
## 3722 3 Ninjas (1992)
## 3723 3 Ninjas Kick Back (1994)
## 3724 3 Ninjas Knuckle Up (1995)
## 3725 Hunter, The (1980)
## 3726 Maniac (1980)
## 3727 Vamp (1986)
## 3728 Wicker Man, The (1973)
## 3729 Wish Upon a Star (1996)
## 3730 Musketeer, The (2001)
## 3731 Rock Star (2001)
## 3732 Diamond Men (2001)
## 3733 Iron Ladies, The (Satree lek) (2000)
## 3734 L.I.E. (2001)
## 3735 Our Lady of the Assassins (Virgen de los sicarios, La) (2000)
## 3736 Abbott and Costello Meet the Mummy (1955)
## 3737 Dr. Mabuse: The Gambler (Dr. Mabuse, der Spieler) (1922)
## 3738 Into the Arms of Strangers: Stories of the Kindertransport (2000)
## 3739 Glass House, The (2001)
## 3740 Hardball (2001)
## 3741 Dinner Rush (2000)
## 3742 Big Trouble (2002)
## 3743 Glitter (2001)
## 3744 Training Day (2001)
## 3745 Sidewalks of New York (2001)
## 3746 Endurance: Shackleton's Legendary Antarctic Expedition, The (2000)
## 3747 French Lieutenant's Woman, The (1981)
## 3748 Little Man Tate (1991)
## 3749 Phantom of the Paradise (1974)
## 3750 13 Ghosts (1960)
## 3751 Father Goose (1964)
## 3752 Grass Is Greener, The (1960)
## 3753 Indiscreet (1958)
## 3754 It's a Mad, Mad, Mad, Mad World (1963)
## 3755 King Solomon's Mines (1937)
## 3756 Little Foxes, The (1941)
## 3757 Operation Petticoat (1959)
## 3758 Play Misty for Me (1971)
## 3759 Pocketful of Miracles (1961)
## 3760 Shop on Main Street, The (Obchod na korze) (1965)
## 3761 Silkwood (1983)
## 3762 I Never Promised You a Rose Garden (1977)
## 3763 Quadrophenia (1979)
## 3764 SpaceCamp (1986)
## 3765 Don't Say a Word (2001)
## 3766 Hearts in Atlantis (2001)
## 3767 Zoolander (2001)
## 3768 Extreme Days (2001)
## 3769 Joy Ride (2001)
## 3770 Max Keeble's Big Move (2001)
## 3771 Serendipity (2001)
## 3772 Big Red One, The (1980)
## 3773 Brubaker (1980)
## 3774 Can't Stop the Music (1980)
## 3775 Carny (1980)
## 3776 Changeling, The (1980)
## 3777 Cheech & Chong's Next Movie (1980)
## 3778 Coal Miner's Daughter (1980)
## 3779 Competition, The (1980)
## 3780 Cruising (1980)
## 3781 Last Metro, The (Dernier métro, Le) (1980)
## 3782 Dogs of War, The (1980)
## 3783 Bandits (2001)
## 3784 Iron Monkey (Siu nin Wong Fei-hung ji: Tit Ma Lau) (1993)
## 3785 Mulholland Drive (2001)
## 3786 My First Mister (2001)
## 3787 Things Behind the Sun (2001)
## 3788 Clambake (1967)
## 3789 Dirty Harry (1971)
## 3790 Fiddler on the Roof (1971)
## 3791 Kansas (1988)
## 3792 Mission to Mir (1997)
## 3793 Not Without My Daughter (1991)
## 3794 Female Trouble (1975)
## 3795 From Hell (2001)
## 3796 Last Castle, The (2001)
## 3797 Riding in Cars with Boys (2001)
## 3798 Waking Life (2001)
## 3799 K-PAX (2001)
## 3800 On the Line (2001)
## 3801 Thirteen Ghosts (a.k.a. Thir13en Ghosts) (2001)
## 3802 Donnie Darko (2001)
## 3803 Life as a House (2001)
## 3804 Man Who Wasn't There, The (2001)
## 3805 Domestic Disturbance (2001)
## 3806 Monsters, Inc. (2001)
## 3807 One, The (2001)
## 3808 Tape (2001)
## 3809 Heist (2001)
## 3810 Shallow Hal (2001)
## 3811 When a Stranger Calls (1979)
## 3812 Wash, The (2001)
## 3813 Harry Potter and the Sorcerer's Stone (a.k.a. Harry Potter and the Philosopher's Stone) (2001)
## 3814 Fluffer, The (2001)
## 3815 Novocaine (2001)
## 3816 Black Knight (2001)
## 3817 Spy Game (2001)
## 3818 Devil's Backbone, The (Espinazo del diablo, El) (2001)
## 3819 In the Bedroom (2001)
## 3820 Jabberwocky (1977)
## 3821 Funny Girl (1968)
## 3822 Breathless (Ã\200 bout de souffle) (1960)
## 3823 Beastmaster, The (1982)
## 3824 Now, Voyager (1942)
## 3825 Little Women (1933)
## 3826 Guadalcanal Diary (1943)
## 3827 Cheap Detective, The (1978)
## 3828 Last Wave, The (1977)
## 3829 That Obscure Object of Desire (Cet obscur objet du désir) (1977)
## 3830 Toy, The (1982)
## 3831 Funeral in Berlin (1966)
## 3832 Dressed to Kill (1980)
## 3833 Earthling, The (1980)
## 3834 Fame (1980)
## 3835 Flash Gordon (1980)
## 3836 Enforcer, The (1976)
## 3837 Gauntlet, The (1977)
## 3838 I Bury the Living (1958)
## 3839 Invasion U.S.A. (1985)
## 3840 Lord of the Flies (1990)
## 3841 Morons From Outer Space (1985)
## 3842 Ocean's Eleven (a.k.a. Ocean's 11) (1960)
## 3843 Stunt Man, The (1980)
## 3844 Sudden Impact (1983)
## 3845 Behind Enemy Lines (2001)
## 3846 Independent, The (2000)
## 3847 Pornstar: The Legend of Ron Jeremy (2001)
## 3848 Ocean's Eleven (2001)
## 3849 Baran (2001)
## 3850 Business of Strangers, The (2001)
## 3851 No Man's Land (2001)
## 3852 Piñero (2001)
## 3853 And Then There Were None (1945)
## 3854 Blue Angel, The (Blaue Engel, Der) (1930)
## 3855 Moscow on the Hudson (1984)
## 3856 Owl and the Pussycat, The (1970)
## 3857 Amelie (Fabuleux destin d'Amélie Poulain, Le) (2001)
## 3858 Not Another Teen Movie (2001)
## 3859 Vanilla Sky (2001)
## 3860 Iris (2001)
## 3861 Kandahar (Safar e Ghandehar) (2001)
## 3862 Lantana (2001)
## 3863 Royal Tenenbaums, The (2001)
## 3864 Bill & Ted's Bogus Journey (1991)
## 3865 Clockwise (1986)
## 3866 Morgan! (1966)
## 3867 Spacehunter: Adventures in the Forbidden Zone (1983)
## 3868 White Water Summer (1987)
## 3869 How High (2001)
## 3870 Jimmy Neutron: Boy Genius (2001)
## 3871 Kate & Leopold (2001)
## 3872 Lord of the Rings: The Fellowship of the Ring, The (2001)
## 3873 Majestic, The (2001)
## 3874 Beautiful Mind, A (2001)
## 3875 Little Otik (Otesánek) (2000)
## 3876 Defiant Ones, The (1958)
## 3877 Dodsworth (1936)
## 3878 Medium Cool (1969)
## 3879 Sahara (1943)
## 3880 Fritz the Cat (1972)
## 3881 Nine Lives of Fritz the Cat, The (1974)
## 3882 Party, The (1968)
## 3883 Witness for the Prosecution (1957)
## 3884 Ali (2001)
## 3885 Black Hawk Down (2001)
## 3886 Yentl (1983)
## 3887 Gosford Park (2001)
## 3888 I Am Sam (2001)
## 3889 Monster's Ball (2001)
## 3890 Shipping News, The (2001)
## 3891 Big Heat, The (1953)
## 3892 Motorama (1991)
## 3893 Murder by Death (1976)
## 3894 Servant, The (1963)
## 3895 Waterdance, The (1992)
## 3896 Orange County (2002)
## 3897 Brotherhood of the Wolf (Pacte des loups, Le) (2001)
## 3898 Another 48 Hrs. (1990)
## 3899 What Time Is It There? (Ni neibian jidian) (2001)
## 3900 Russia House, The (1990)
## 3901 Truly, Madly, Deeply (1991)
## 3902 Flight of Dragons, The (1982)
## 3903 Dragonslayer (1981)
## 3904 Conan the Destroyer (1984)
## 3905 Fire and Ice (1983)
## 3906 Forbidden Zone (1980)
## 3907 Formula, The (1980)
## 3908 Impostor (2002)
## 3909 Kung Pow: Enter the Fist (2002)
## 3910 Snow Dogs (2002)
## 3911 48 Hrs. (1982)
## 3912 Italian for Beginners (Italiensk for begyndere) (2000)
## 3913 Blankman (1994)
## 3914 Brainstorm (1983)
## 3915 Dragon: The Bruce Lee Story (1993)
## 3916 Enigma of Kaspar Hauser, The (a.k.a. Mystery of Kaspar Hauser, The) (Jeder für sich und Gott Gegen Alle) (1974)
## 3917 4 for Texas (1963)
## 3918 Little Dieter Needs to Fly (1997)
## 3919 M*A*S*H (a.k.a. MASH) (1970)
## 3920 Mrs. Soffel (1984)
## 3921 Seconds (1966)
## 3922 One-Eyed Jacks (1961)
## 3923 The Count of Monte Cristo (2002)
## 3924 Mothman Prophecies, The (2002)
## 3925 Walk to Remember, A (2002)
## 3926 Escaflowne: The Movie (Escaflowne) (2000)
## 3927 Maelström (2000)
## 3928 Metropolis (2001)
## 3929 Son's Room, The (Stanza del figlio, La) (2001)
## 3930 Storytelling (2001)
## 3931 Waydowntown (2000)
## 3932 Adventures of Huck Finn, The (1993)
## 3933 Young at Heart (1954)
## 3934 Slackers (2002)
## 3935 Birthday Girl (2001)
## 3936 Rare Birds (2001)
## 3937 Carmen Jones (1954)
## 3938 Get Out Your Handkerchiefs (Préparez vos mouchoirs) (1978)
## 3939 Going Places (Valseuses, Les) (1974)
## 3940 Big Fat Liar (2002)
## 3941 Collateral Damage (2002)
## 3942 Rollerball (2002)
## 3943 Scotland, Pa. (2001)
## 3944 Baby's Day Out (1994)
## 3945 Bright Eyes (1934)
## 3946 Dimples (1936)
## 3947 Heidi (1937)
## 3948 Richard Pryor Here and Now (1983)
## 3949 Rookie of the Year (1993)
## 3950 Sandlot, The (1993)
## 3951 Don't Look Now (1973)
## 3952 Crossroads (2002)
## 3953 Hart's War (2002)
## 3954 John Q (2002)
## 3955 Return to Never Land (2002)
## 3956 Super Troopers (2001)
## 3957 Good Son, The (1993)
## 3958 Bad and the Beautiful, The (1952)
## 3959 Funny Lady (1975)
## 3960 Saturday Night and Sunday Morning (1960)
## 3961 Sleuth (1972)
## 3962 Stroszek (1977)
## 3963 Summer of '42 (1971)
## 3964 Used Cars (1980)
## 3965 Dragonfly (2002)
## 3966 Queen of the Damned (2002)
## 3967 Mean Machine (2001)
## 3968 Monsoon Wedding (2001)
## 3969 Scratch (2001)
## 3970 Bad News Bears, The (1976)
## 3971 Bad News Bears in Breaking Training, The (1977)
## 3972 Firemen's Ball, The (HorÃÂ, má panenko) (1967)
## 3973 Vampire Hunter D: Bloodlust (Banpaia hantâ D) (2000)
## 3974 Wild Strawberries (Smultronstället) (1957)
## 3975 40 Days and 40 Nights (2002)
## 3976 We Were Soldiers (2002)
## 3977 Trouble Every Day (2001)
## 3978 Ferngully: The Last Rainforest (1992)
## 3979 Intersection (1994)
## 3980 Troll in Central Park, A (1994)
## 3981 Zombie (a.k.a. Zombie 2: The Dead Are Among Us) (Zombi 2) (1979)
## 3982 My Favorite Brunette (1947)
## 3983 Royal Wedding (1951)
## 3984 Scarlet Street (1945)
## 3985 All About the Benjamins (2002)
## 3986 Time Machine, The (2002)
## 3987 Full Frontal (2002)
## 3988 Magnificent Ambersons, The (1942)
## 3989 Gloria (1980)
## 3990 Great Rock 'n' Roll Swindle, The (1980)
## 3991 Hawk the Slayer (1980)
## 3992 Honeysuckle Rose (a.k.a. On the Road Again) (1980)
## 3993 Hopscotch (1980)
## 3994 Jazz Singer, The (1980)
## 3995 Long Good Friday, The (1980)
## 3996 Long Riders, The (1980)
## 3997 Mon oncle d'Amérique (1980)
## 3998 The Monster Club (1981)
## 3999 Motel Hell (1980)
## 4000 Ninth Configuration, The (a.k.a. Twinkle, Twinkle, Killer Kane) (1980)
## 4001 Burial Ground (a.k.a. Zombie Horror) (a.k.a. Zombie 3) (Notti del Terrore, Le) (1981)
## 4002 Oh, God! (1977)
## 4003 Ice Age (2002)
## 4004 Resident Evil (2002)
## 4005 Showtime (2002)
## 4006 Kissing Jessica Stein (2001)
## 4007 Pauline & Paulette (Pauline en Paulette) (2001)
## 4008 Promises (2001)
## 4009 And Your Mother Too (Y tu mamá también) (2001)
## 4010 All the Right Moves (1983)
## 4011 Barabbas (1961)
## 4012 I Think I Do (1997)
## 4013 Paleface, The (1948)
## 4014 Road to Morocco (1942)
## 4015 Road to Singapore (1940)
## 4016 Road to Utopia (1946)
## 4017 Road to Zanzibar (1941)
## 4018 Tale of Springtime, A (Conte de Printemps) (1990)
## 4019 Taps (1981)
## 4020 Return of the Secaucus 7 (1980)
## 4021 Seems Like Old Times (1980)
## 4022 Serial (1980)
## 4023 Young Master, The (Shi di chu ma) (1980)
## 4024 Shogun Assassin (1980)
## 4025 Smokey and the Bandit II (1980)
## 4026 Smokey and the Bandit (1977)
## 4027 Smokey and the Bandit III (1983)
## 4028 Stir Crazy (1980)
## 4029 Blade II (2002)
## 4030 Sorority Boys (2002)
## 4031 Stolen Summer (2002)
## 4032 George Washington (2000)
## 4033 Clockstoppers (2002)
## 4034 Death to Smoochy (2002)
## 4035 Panic Room (2002)
## 4036 Rookie, The (2002)
## 4037 Piano Teacher, The (La pianiste) (2001)
## 4038 30 Years to Life (2001)
## 4039 Boxcar Bertha (1972)
## 4040 Crimes of Passion (1984)
## 4041 Evil That Men Do, The (1984)
## 4042 Fraternity Vacation (1985)
## 4043 Impromptu (1991)
## 4044 High Crimes (2002)
## 4045 National Lampoon's Van Wilder (2002)
## 4046 Lucky Break (2001)
## 4047 Atomic Cafe, The (1982)
## 4048 Body and Soul (1947)
## 4049 Rashomon (Rashômon) (1950)
## 4050 Slap Shot (1977)
## 4051 Changing Lanes (2002)
## 4052 Frailty (2001)
## 4053 Sweetest Thing, The (2002)
## 4054 Cat's Meow, The (2002)
## 4055 Human Nature (2001)
## 4056 My Big Fat Greek Wedding (2002)
## 4057 3:10 to Yuma (1957)
## 4058 Bite the Bullet (1975)
## 4059 Breakout (1975)
## 4060 Joe Versus the Volcano (1990)
## 4061 Rome, Open City (a.k.a. Open City) (Roma, cittÃÂ aperta) (1945)
## 4062 Return of the Killer Tomatoes! (1988)
## 4063 Taking Care of Business (1990)
## 4064 Three Men and a Baby (1987)
## 4065 Three Men and a Little Lady (1990)
## 4066 Murder by Numbers (2002)
## 4067 The Scorpion King (2002)
## 4068 Chelsea Walls (2001)
## 4069 Enigma (2001)
## 4070 Nine Queens (Nueve reinas) (2000)
## 4071 Jason X (2002)
## 4072 Life or Something Like It (2002)
## 4073 Dogtown and Z-Boyz (2001)
## 4074 Salton Sea, The (2002)
## 4075 Bob le Flambeur (1955)
## 4076 Cadillac Man (1990)
## 4077 Coca-Cola Kid, The (1985)
## 4078 Delirious (1991)
## 4079 Husbands and Wives (1992)
## 4080 Lenny (1974)
## 4081 Nomads (1986)
## 4082 Temp, The (1993)
## 4083 Thief of Hearts (1984)
## 4084 Wild Orchid (1990)
## 4085 Hollywood Ending (2002)
## 4086 Spider-Man (2002)
## 4087 The Big Sleep (1978)
## 4088 Butterflies Are Free (1972)
## 4089 Cactus Flower (1969)
## 4090 Giant Spider Invasion, The (1975)
## 4091 Iron Will (1994)
## 4092 Rambling Rose (1991)
## 4093 Survivors, The (1983)
## 4094 White Fang (1991)
## 4095 New Guy, The (2002)
## 4096 Unfaithful (2002)
## 4097 Lady and the Duke, The (Anglaise et le duc, L') (2001)
## 4098 Whore (1991)
## 4099 My Beautiful Laundrette (1985)
## 4100 Calamity Jane (1953)
## 4101 Cranes Are Flying, The (Letyat zhuravli) (1957)
## 4102 Harvey Girls, The (1946)
## 4103 About a Boy (2002)
## 4104 Star Wars: Episode II - Attack of the Clones (2002)
## 4105 Believer, The (2001)
## 4106 Importance of Being Earnest, The (2002)
## 4107 Every Which Way But Loose (1978)
## 4108 Hound of the Baskervilles, The (1959)
## 4109 I Want to Live! (1958)
## 4110 Last Waltz, The (1978)
## 4111 Enough (2002)
## 4112 Insomnia (2002)
## 4113 Spirit: Stallion of the Cimarron (2002)
## 4114 Thirteen Conversations About One Thing (a.k.a. 13 Conversations) (2001)
## 4115 Gambler, The (1974)
## 4116 Requiem for a Heavyweight (1962)
## 4117 Sum of All Fears, The (2002)
## 4118 Undercover Brother (2002)
## 4119 84 Charing Cross Road (1987)
## 4120 Silent Running (1972)
## 4121 Zombie Holocaust (a.k.a. Doctor Butcher M.D.) (Zombi Holocaust) (1980)
## 4122 Bad Company (2002)
## 4123 Divine Secrets of the Ya-Ya Sisterhood (2002)
## 4124 Cherish (2002)
## 4125 Fast Runner, The (Atanarjuat) (2001)
## 4126 Bourne Identity, The (2002)
## 4127 Scooby-Doo (2002)
## 4128 Windtalkers (2002)
## 4129 Dangerous Lives of Altar Boys, The (2002)
## 4130 Emperor's New Clothes, The (2001)
## 4131 Dark Blue World (Tmavomodrý svet) (2001)
## 4132 Caveman (1981)
## 4133 Cheech & Chong's The Corsican Brothers (1984)
## 4134 Silver Bullet (Stephen King's Silver Bullet) (1985)
## 4135 Sorry, Wrong Number (1948)
## 4136 Men at Work (1990)
## 4137 She Wore a Yellow Ribbon (1949)
## 4138 Juwanna Mann (2002)
## 4139 Lilo & Stitch (2002)
## 4140 Minority Report (2002)
## 4141 Rabbit-Proof Fence (2002)
## 4142 Sunshine State (2002)
## 4143 Hey Arnold! The Movie (2002)
## 4144 Mr. Deeds (2002)
## 4145 Lovely & Amazing (2001)
## 4146 Look Who's Talking Now (1993)
## 4147 Like Mike (2002)
## 4148 Men in Black II (a.k.a. MIIB) (a.k.a. MIB 2) (2002)
## 4149 Powerpuff Girls, The (2002)
## 4150 Crocodile Hunter: Collision Course, The (2002)
## 4151 Reign of Fire (2002)
## 4152 Road to Perdition (2002)
## 4153 My Wife is an Actress (Ma Femme est une Actrice) (2001)
## 4154 The Importance of Being Earnest (1952)
## 4155 Perfect (1985)
## 4156 Fox and His Friends (Faustrecht der Freiheit) (1975)
## 4157 Z (1969)
## 4158 Sex and Lucia (LucÃÂa y el sexo) (2001)
## 4159 Eight Legged Freaks (2002)
## 4160 K-19: The Widowmaker (2002)
## 4161 Stuart Little 2 (2002)
## 4162 Austin Powers in Goldmember (2002)
## 4163 Kid Stays in the Picture, The (2002)
## 4164 Nosferatu the Vampyre (Nosferatu: Phantom der Nacht) (1979)
## 4165 The Big Bus (1976)
## 4166 Red Beard (Akahige) (1965)
## 4167 Top Secret! (1984)
## 4168 Master of Disguise, The (2002)
## 4169 Signs (2002)
## 4170 Last Kiss, The (Ultimo bacio, L') (2001)
## 4171 Spy Kids 2: The Island of Lost Dreams (2002)
## 4172 Good Girl, The (2002)
## 4173 Blood Work (2002)
## 4174 xXx (2002)
## 4175 24 Hour Party People (2002)
## 4176 Songs From the Second Floor (SÃÂ¥nger frÃÂ¥n andra vÃÂ¥ningen) (2000)
## 4177 Read My Lips (Sur mes lèvres) (2001)
## 4178 Nightcap (Merci pour le chocolat) (2000)
## 4179 Beau Pere (a.k.a. Stepfather) (Beau-père) (1981)
## 4180 Principal, The (1987)
## 4181 Rollerball (1975)
## 4182 Adventures of Pluto Nash, The (2002)
## 4183 Blue Crush (2002)
## 4184 Mostly Martha (Bella Martha) (2001)
## 4185 Possession (2002)
## 4186 One Hour Photo (2002)
## 4187 Simone (S1m0ne) (2002)
## 4188 Undisputed (2002)
## 4189 Hush! (2001)
## 4190 How I Killed My Father (a.k.a. My Father and I) (Comment j'ai tué mon Père) (2001)
## 4191 Care Bears Movie, The (1985)
## 4192 Care Bears Movie II: A New Generation (1986)
## 4193 Clash of the Titans (1981)
## 4194 Hot Shots! (1991)
## 4195 Time After Time (1979)
## 4196 Down and Out in Beverly Hills (1986)
## 4197 Stakeout (1987)
## 4198 FearDotCom (a.k.a. Fear.com) (a.k.a. Fear Dot Com) (2002)
## 4199 Love and a Bullet (2002)
## 4200 Ã\200 nous la liberté (Freedom for Us) (1931)
## 4201 True Colors (1991)
## 4202 Snipes (2001)
## 4203 Swimfan (2002)
## 4204 Johnny Dangerously (1984)
## 4205 Last House on the Left, The (1972)
## 4206 Thesis (Tesis) (1996)
## 4207 Barbershop (2002)
## 4208 Stealing Harvard (2002)
## 4209 Transporter, The (2002)
## 4210 Alias Betty (Betty Fisher et autres histoires) (2001)
## 4211 Igby Goes Down (2002)
## 4212 Betsy's Wedding (1990)
## 4213 Captain Ron (1992)
## 4214 Ernest Scared Stupid (1991)
## 4215 Hills Have Eyes, The (1977)
## 4216 Suburban Commando (1991)
## 4217 Tabu: A Story of the South Seas (1931)
## 4218 Wanderers, The (1979)
## 4219 Yearling, The (1946)
## 4220 Ladykillers, The (1955)
## 4221 Lavender Hill Mob, The (1951)
## 4222 Man in the White Suit, The (1951)
## 4223 Ratcatcher (1999)
## 4224 Son of the Bride (Hijo de la novia, El) (2001)
## 4225 Das Experiment (Experiment, The) (2001)
## 4226 Ballistic: Ecks vs. Sever (2002)
## 4227 Four Feathers, The (2002)
## 4228 Trapped (2002)
## 4229 8 Women (2002)
## 4230 Invincible (2001)
## 4231 Secretary (2002)
## 4232 Spirited Away (Sen to Chihiro no kamikakushi) (2001)
## 4233 Trials of Henry Kissinger, The (2002)
## 4234 Sweet Home Alabama (2002)
## 4235 Tuxedo, The (2002)
## 4236 Charly (2002)
## 4237 Moonlight Mile (2002)
## 4238 Wasabi (2001)
## 4239 Jonah: A VeggieTales Movie (2002)
## 4240 Red Dragon (2002)
## 4241 Bloody Sunday (2002)
## 4242 Heaven (2002)
## 4243 Welcome to Collinwood (2002)
## 4244 Flirting (1991)
## 4245 Godzilla vs. Mothra (Mosura tai Gojira) (1964)
## 4246 Moderns, The (1988)
## 4247 Onion Field, The (1979)
## 4248 Powaqqatsi (1988)
## 4249 Pride of the Yankees, The (1942)
## 4250 Valmont (1989)
## 4251 Horror of Dracula (Dracula) (1958)
## 4252 Strange Brew (1983)
## 4253 Incredible Mr. Limpet, The (1964)
## 4254 Fan, The (1981)
## 4255 Wrong Guy, The (1997)
## 4256 Below (2002)
## 4257 Rules of Attraction, The (2002)
## 4258 Tuck Everlasting (2002)
## 4259 White Oleander (2002)
## 4260 Bowling for Columbine (2002)
## 4261 Comedian (2002)
## 4262 Pokemon 4 Ever (a.k.a. Pokémon 4: The Movie) (2002)
## 4263 Punch-Drunk Love (2002)
## 4264 Swept Away (2002)
## 4265 Abandon (2002)
## 4266 Formula 51 (2001)
## 4267 Ring, The (2002)
## 4268 Auto Focus (2002)
## 4269 Grey Zone, The (2001)
## 4270 Naqoyqatsi (2002)
## 4271 Real Women Have Curves (2002)
## 4272 Russian Ark (Russkiy Kovcheg) (2002)
## 4273 Billy Bathgate (1991)
## 4274 Grave of the Fireflies (Hotaru no haka) (1988)
## 4275 Jason Goes to Hell: The Final Friday (1993)
## 4276 Saturday Night Fever (1977)
## 4277 Staying Alive (1983)
## 4278 Urban Cowboy (1980)
## 4279 Tom Horn (1980)
## 4280 The Pumaman (1980)
## 4281 Wholly Moses (1980)
## 4282 Xanadu (1980)
## 4283 Absence of Malice (1981)
## 4284 Banana Joe (1981)
## 4285 Blow Out (1981)
## 4286 Burning, The (1981)
## 4287 Carbon Copy (1981)
## 4288 Continental Divide (1981)
## 4289 Endless Love (1981)
## 4290 Eye of the Needle (1981)
## 4291 Faces of Death 2 (1981)
## 4292 Faces of Death (1978)
## 4293 Faces of Death 3 (1985)
## 4294 Faces of Death 4 (1990)
## 4295 First Monday in October (1981)
## 4296 Four Seasons, The (1981)
## 4297 Galaxy of Terror (Quest) (1981)
## 4298 Gallipoli (1981)
## 4299 Gregory's Girl (1981)
## 4300 Hand, The (1981)
## 4301 Looney, Looney, Looney Bugs Bunny Movie, The (1981)
## 4302 Modern Problems (1981)
## 4303 My Dinner with André (1981)
## 4304 Neighbors (1981)
## 4305 Pennies from Heaven (1981)
## 4306 Pieces (Mil gritos tiene la noche) (One Thousand Cries Has the Night) (1982)
## 4307 Piranha II: The Spawning (1981)
## 4308 Polyester (1981)
## 4309 Professional, The (Le professionnel) (1981)
## 4310 Ghost Ship (2002)
## 4311 Jackass: The Movie (2002)
## 4312 Truth About Charlie, The (2002)
## 4313 All or Nothing (2002)
## 4314 Frida (2002)
## 4315 Roger Dodger (2002)
## 4316 Big Knife, The (1955)
## 4317 Casino Royale (1967)
## 4318 Exodus (1960)
## 4319 Russians Are Coming, the Russians Are Coming, The (1966)
## 4320 I Spy (2002)
## 4321 Weight of Water, The (2000)
## 4322 Femme Fatale (2002)
## 4323 8 Mile (2002)
## 4324 Far from Heaven (2002)
## 4325 Half Past Dead (2002)
## 4326 Harry Potter and the Chamber of Secrets (2002)
## 4327 Crime of Father Amaro, The (Crimen del padre Amaro, El) (2002)
## 4328 Interview with the Assassin (2002)
## 4329 Standing in the Shadows of Motown (2002)
## 4330 Life and Death of Colonel Blimp, The (1943)
## 4331 Rio Grande (1950)
## 4332 Blackrock (1997)
## 4333 Men with Brooms (2002)
## 4334 Mysterious Island (1961)
## 4335 Left Behind II: Tribulation Force (2002)
## 4336 Dog Soldiers (2002)
## 4337 Fingers (1978)
## 4338 Houseboat (1958)
## 4339 My Father's Glory (La gloire de mon père) (1990)
## 4340 My Mother's Castle (Château de ma mère, Le) (1990)
## 4341 Return to the Blue Lagoon (1991)
## 4342 Toy Soldiers (1991)
## 4343 Raggedy Man (1981)
## 4344 Ragtime (1981)
## 4345 Road Games (a.k.a. Roadgames) (1981)
## 4346 Scanners (1981)
## 4347 Sharky's Machine (1981)
## 4348 So Fine (1981)
## 4349 Southern Comfort (1981)
## 4350 Tarzan, the Ape Man (1981)
## 4351 They All Laughed (1981)
## 4352 Thief (1981)
## 4353 This Is Elvis (1981)
## 4354 True Confessions (1981)
## 4355 Die Another Day (2002)
## 4356 The Emperor's Club (2002)
## 4357 Friday After Next (2002)
## 4358 Personal Velocity (2002)
## 4359 Quiet American, The (2002)
## 4360 Talk to Her (Hable con Ella) (2002)
## 4361 Eight Crazy Nights (Adam Sandler's Eight Crazy Nights) (2002)
## 4362 Extreme Ops (2002)
## 4363 Solaris (2002)
## 4364 Treasure Planet (2002)
## 4365 They (2002)
## 4366 Brother (Brat) (1997)
## 4367 I Spit on Your Grave (Day of the Woman) (1978)
## 4368 Last Seduction, The (1994)
## 4369 Zulu (1964)
## 4370 Analyze That (2002)
## 4371 Empire (2002)
## 4372 Adaptation (2002)
## 4373 Equilibrium (2002)
## 4374 Visitor Q (Bizita Q) (2001)
## 4375 Bolero (Uns et les autres, Les) (1981)
## 4376 Warning for the Joensson Gang (Varning för Jönssonligan) (1981)
## 4377 Vernon, Florida (1981)
## 4378 Victory (a.k.a. Escape to Victory) (1981)
## 4379 Zoot Suit (1981)
## 4380 Alone in the Dark (1982)
## 4381 Author! Author! (1982)
## 4382 Best Friends (1982)
## 4383 Best Little Whorehouse in Texas, The (1982)
## 4384 Burden of Dreams (1982)
## 4385 Cannery Row (1982)
## 4386 Come Back to the Five and Dime, Jimmy Dean, Jimmy Dean (1982)
## 4387 Deathtrap (1982)
## 4388 Eating Raoul (1982)
## 4389 Drumline (2002)
## 4390 Hot Chick, The (2002)
## 4391 Maid in Manhattan (2002)
## 4392 Star Trek: Nemesis (2002)
## 4393 About Schmidt (2002)
## 4394 Evelyn (2002)
## 4395 Intact (Intacto) (2001)
## 4396 Lord of the Rings: The Two Towers, The (2002)
## 4397 25th Hour (2002)
## 4398 Antwone Fisher (2002)
## 4399 Gangs of New York (2002)
## 4400 Two Weeks Notice (2002)
## 4401 Wild Thornberrys Movie, The (2002)
## 4402 Narc (2002)
## 4403 Bad Influence (1990)
## 4404 Blue Steel (1990)
## 4405 Body of Evidence (1993)
## 4406 Children's Hour, The (1961)
## 4407 Duellists, The (1977)
## 4408 Kiss Before Dying, A (1956)
## 4409 Miami Blues (1990)
## 4410 My Girl 2 (1994)
## 4411 My Girl (1991)
## 4412 My Neighbor Totoro (Tonari no Totoro) (1988)
## 4413 Black Christmas (1974)
## 4414 Day of the Triffids, The (1962)
## 4415 Story of O, The (Histoire d'O) (1975)
## 4416 Asoka (Ashoka the Great) (2001)
## 4417 Fat City (1972)
## 4418 Catch Me If You Can (2002)
## 4419 Chicago (2002)
## 4420 Hours, The (2002)
## 4421 Max (2002)
## 4422 Nicholas Nickleby (2002)
## 4423 Pianist, The (2002)
## 4424 House on the Edge of the Park, The (Casa sperduta nel parco, La) (1980)
## 4425 King of Comedy, The (1983)
## 4426 Confessions of a Dangerous Mind (2002)
## 4427 Blue Collar Comedy Tour: The Movie (2003)
## 4428 Just Married (2003)
## 4429 Son, The (Le fils) (2002)
## 4430 Guy Thing, A (2003)
## 4431 Kangaroo Jack (2003)
## 4432 National Security (2003)
## 4433 City of God (Cidade de Deus) (2002)
## 4434 American Friend, The (Amerikanische Freund, Der) (1977)
## 4435 American Me (1992)
## 4436 CB4 - The Movie (1993)
## 4437 Dogfight (1991)
## 4438 Imitation of Life (1959)
## 4439 Little Romance, A (1979)
## 4440 Mystery Date (1991)
## 4441 Pépé le Moko (1937)
## 4442 Summer Lovers (1982)
## 4443 Woman in Red, The (1984)
## 4444 Darkness Falls (2003)
## 4445 Blind Spot: Hitler's Secretary (Im toten Winkel - Hitlers Sekretärin) (2002)
## 4446 Dead Reckoning (1947)
## 4447 Harder They Come, The (1973)
## 4448 Chaos (2001)
## 4449 Biker Boyz (2003)
## 4450 Final Destination 2 (2003)
## 4451 Recruit, The (2003)
## 4452 Guru, The (2002)
## 4453 Lost in La Mancha (2002)
## 4454 May (2002)
## 4455 Harder They Fall, The (1956)
## 4456 Victim (1961)
## 4457 Evil Under the Sun (1982)
## 4458 Firefox (1982)
## 4459 Honkytonk Man (1982)
## 4460 Labyrinth of Passion (Laberinto de Pasiones) (1982)
## 4461 Last American Virgin, The (1982)
## 4462 Last Unicorn, The (1982)
## 4463 Dragon Lord (a.k.a. Dragon Strike) (Long Xiao Ye) (1982)
## 4464 Making Love (1982)
## 4465 Midsummer Night's Sex Comedy, A (1982)
## 4466 Missing (1982)
## 4467 Monsignor (1982)
## 4468 Monty Python Live at the Hollywood Bowl (1982)
## 4469 Moonlighting (1982)
## 4470 Night of the Shooting Stars (Notte di San Lorenzo, La) (1982)
## 4471 One from the Heart (1982)
## 4472 Permanent Vacation (1982)
## 4473 Personal Best (1982)
## 4474 Pirate Movie, The (1982)
## 4475 Querelle (1982)
## 4476 Richard Pryor Live on the Sunset Strip (1982)
## 4477 Sunless (Sans Soleil) (1983)
## 4478 Savannah Smiles (1982)
## 4479 Secret Policeman's Other Ball, The (1982)
## 4480 Veronika Voss (Sehnsucht der Veronika Voss, Die) (1982)
## 4481 Shoot the Moon (1982)
## 4482 New York Ripper, The (Squartatore di New York, Lo) (1982)
## 4483 State of Things, The (Stand der Dinge, Der) (1982)
## 4484 Tenebre (1982)
## 4485 Trail of the Pink Panther (1982)
## 4486 White Dog (1982)
## 4487 Deliver Us from Eva (2003)
## 4488 How to Lose a Guy in 10 Days (2003)
## 4489 Shanghai Knights (2003)
## 4490 Daredevil (2003)
## 4491 All the Real Girls (2003)
## 4492 Gerry (2002)
## 4493 He Loves Me... He Loves Me Not (Ã\200 la folie... pas du tout) (2002)
## 4494 Dennis the Menace (1993)
## 4495 Black Stallion, The (1979)
## 4496 Patch of Blue, A (1965)
## 4497 Q & A (1990)
## 4498 Thrill of It All, The (1963)
## 4499 Pillow Talk (1959)
## 4500 Man Who Fell to Earth, The (1976)
## 4501 Dark Blue (2003)
## 4502 Gods and Generals (2003)
## 4503 Life of David Gale, The (2003)
## 4504 Old School (2003)
## 4505 Stone Reader (2002)
## 4506 Spider (2002)
## 4507 American Heart (1992)
## 4508 Lady Jane (1986)
## 4509 Life Stinks (1991)
## 4510 Meteor Man, The (1993)
## 4511 Slaughter Rule, The (2002)
## 4512 Ten (2002)
## 4513 Bringing Down the House (2003)
## 4514 Tears of the Sun (2003)
## 4515 Irreversible (Irréversible) (2002)
## 4516 Laurel Canyon (2002)
## 4517 Nowhere in Africa (Nirgendwo in Afrika) (2001)
## 4518 Bend It Like Beckham (2002)
## 4519 Hunted, The (2003)
## 4520 Spun (2001)
## 4521 King of Kings (1961)
## 4522 Loving You (1957)
## 4523 Talk of the Town, The (1942)
## 4524 Two-Lane Blacktop (1971)
## 4525 Bang the Drum Slowly (1973)
## 4526 Benny Goodman Story, The (1955)
## 4527 Born Free (1966)
## 4528 Born Yesterday (1993)
## 4529 Equus (1977)
## 4530 Europa Europa (Hitlerjunge Salomon) (1990)
## 4531 Glenn Miller Story, The (1953)
## 4532 Green Card (1990)
## 4533 Journey to the Center of the Earth (1959)
## 4534 One Good Cop (1991)
## 4535 Ringu (Ring) (1998)
## 4536 Ringu 2 (Ring 2) (1999)
## 4537 Salaam Bombay! (1988)
## 4538 Sweet Charity (1969)
## 4539 Women in Love (1969)
## 4540 Boat Trip (2003)
## 4541 Dreamcatcher (2003)
## 4542 View from the Top (2003)
## 4543 Awful Truth, The (1937)
## 4544 House with Laughing Windows, The (Casa dalle finestre che ridono, La) (1976)
## 4545 I Am Curious (Yellow) (Jag är nyfiken - en film i gult) (1967)
## 4546 Robe, The (1953)
## 4547 Wind (1992)
## 4548 Basic (2003)
## 4549 Core, The (2003)
## 4550 Head of State (2003)
## 4551 What a Girl Wants (2003)
## 4552 Raising Victor Vargas (2002)
## 4553 Stevie (2002)
## 4554 Day for Night (La Nuit Américaine) (1973)
## 4555 In a Lonely Place (1950)
## 4556 Wake of the Red Witch (1948)
## 4557 Good Thief, The (2002)
## 4558 Phone Booth (2002)
## 4559 Cowboy Bebop: The Movie (Cowboy Bebop: Tengoku no Tobira) (2001)
## 4560 DysFunktional Family (2003)
## 4561 Man Without a Past, The (Mies vailla menneisyyttä) (2002)
## 4562 Anger Management (2003)
## 4563 House of 1000 Corpses (2003)
## 4564 Lilya 4-Ever (Lilja 4-ever) (2002)
## 4565 Bulletproof Monk (2003)
## 4566 Chasing Papi (a.k.a. Papi Chulo) (2003)
## 4567 Mighty Wind, A (2003)
## 4568 Holes (2003)
## 4569 Malibu's Most Wanted (2003)
## 4570 Winged Migration (Peuple migrateur, Le) (2001)
## 4571 Flickering Lights (Blinkende lygter) (2000)
## 4572 Straw Dogs (1971)
## 4573 Beginning of the End (1957)
## 4574 Andromeda Strain, The (1971)
## 4575 Fahrenheit 451 (1966)
## 4576 I Am Trying to Break Your Heart (2002)
## 4577 Legal Eagles (1986)
## 4578 Undercover Blues (1993)
## 4579 Wildcats (1986)
## 4580 Wiz, The (1978)
## 4581 Marrying Man, The (Too Hot to Handle) (1991)
## 4582 Confidence (2003)
## 4583 Identity (2003)
## 4584 Decade Under the Influence, A (2003)
## 4585 Manic (2001)
## 4586 Spellbound (2002)
## 4587 Lizzie McGuire Movie, The (2003)
## 4588 X2: X-Men United (2003)
## 4589 Dancer Upstairs, The (2002)
## 4590 Owning Mahowny (2003)
## 4591 Daddy Day Care (2003)
## 4592 Man on the Train (Homme du train, L') (2002)
## 4593 Shape of Things, The (2003)
## 4594 Trip, The (2002)
## 4595 101 Reykjavik (101 ReykjavÃÂk) (2000)
## 4596 Chorus Line, A (1985)
## 4597 Breakin' 2: Electric Boogaloo (1984)
## 4598 Breakin' (1984)
## 4599 Laputa: Castle in the Sky (Tenkû no shiro Rapyuta) (1986)
## 4600 Girls, Les (1957)
## 4601 Gunfight at the O.K. Corral (1957)
## 4602 High Society (1956)
## 4603 Kiss Me Kate (1953)
## 4604 Matrix Reloaded, The (2003)
## 4605 Down with Love (2003)
## 4606 Cinemania (2002)
## 4607 Friends and Family (2001)
## 4608 Spanish Apartment, The (L'auberge espagnole) (2002)
## 4609 Bruce Almighty (2003)
## 4610 Gigantic (A Tale of Two Johns) (2002)
## 4611 Finding Nemo (2003)
## 4612 Italian Job, The (2003)
## 4613 Wrong Turn (2003)
## 4614 Capturing the Friedmans (2003)
## 4615 2 Fast 2 Furious (Fast and the Furious 2, The) (2003)
## 4616 Love the Hard Way (2001)
## 4617 Whale Rider (2002)
## 4618 Nevada Smith (1966)
## 4619 Once a Thief (Zong heng si hai) (1991)
## 4620 Silk Stockings (1957)
## 4621 Crazies, The (a.k.a. Code Name: Trixie) (1973)
## 4622 Murder on a Sunday Morning (Un coupable idéal) (2001)
## 4623 White Sheik, The (Sceicco bianco, Lo) (1952)
## 4624 Treasure Island (1950)
## 4625 Animals are Beautiful People (1974)
## 4626 Car Wash (1976)
## 4627 Destry Rides Again (1939)
## 4628 Electric Horseman, The (1979)
## 4629 Gay Purr-ee (1962)
## 4630 Intervista (1987)
## 4631 King Rat (1965)
## 4632 Mr. & Mrs. Bridge (1990)
## 4633 Shenandoah (1965)
## 4634 Straight Talk (1992)
## 4635 Oscar (1991)
## 4636 6th Man, The (Sixth Man, The) (1997)
## 4637 Far Country, The (1954)
## 4638 Railway Children, The (1970)
## 4639 Two Mules for Sister Sara (1970)
## 4640 Winchester '73 (1950)
## 4641 Battle Cry (1955)
## 4642 Courtship of Eddie's Father, The (1963)
## 4643 Man with the Movie Camera, The (Chelovek s kino-apparatom) (1929)
## 4644 This Boy's Life (1993)
## 4645 Barton Fink (1991)
## 4646 Belle époque (1992)
## 4647 Comancheros, The (1961)
## 4648 Duel at Diablo (1966)
## 4649 Flight of the Phoenix, The (1965)
## 4650 From the Terrace (1960)
## 4651 Heaven Knows, Mr. Allison (1957)
## 4652 Long, Hot Summer, The (1958)
## 4653 Music Box (1989)
## 4654 Blue Max, The (1966)
## 4655 Trial, The (Procès, Le) (1962)
## 4656 Unforgiven, The (1960)
## 4657 Good Burger (1997)
## 4658 Jubilee (1977)
## 4659 Mississippi Masala (1991)
## 4660 Quai des Orfèvres (Jenny Lamour) (1947)
## 4661 Stranger Among Us, A (1992)
## 4662 Chisum (1970)
## 4663 Half Moon Street (1986)
## 4664 Truce, The (a.k.a. La Tregua) (1996)
## 4665 Shattered (1991)
## 4666 Song of Bernadette, The (1943)
## 4667 Thoroughly Modern Millie (1967)
## 4668 Dumb and Dumberer: When Harry Met Lloyd (2003)
## 4669 Hollywood Homicide (2003)
## 4670 Alex and Emma (2003)
## 4671 Murphy's War (1971)
## 4672 28 Days Later (2002)
## 4673 Charlie's Angels: Full Throttle (2003)
## 4674 Fulltime Killer (Chuen jik sat sau) (2001)
## 4675 Ali: Fear Eats the Soul (Angst essen Seele auf) (1974)
## 4676 Made for Each Other (1939)
## 4677 Ring of Terror (1962)
## 4678 You Only Live Once (1937)
## 4679 Anastasia (1956)
## 4680 Flight of the Intruder (1991)
## 4681 Main Event, The (1979)
## 4682 Man's Favorite Sport? (1964)
## 4683 Nuts (1987)
## 4684 Scaramouche (1952)
## 4685 Start the Revolution Without Me (1970)
## 4686 Tenant, The (Locataire, Le) (1976)
## 4687 Hour of the Pig, The (1993)
## 4688 What's Up, Doc? (1972)
## 4689 Hulk (2003)
## 4690 Legally Blonde 2: Red, White & Blonde (2003)
## 4691 Sinbad: Legend of the Seven Seas (2003)
## 4692 Terminator 3: Rise of the Machines (2003)
## 4693 Swimming Pool (2003)
## 4694 Pirates of the Caribbean: The Curse of the Black Pearl (2003)
## 4695 League of Extraordinary Gentlemen, The (a.k.a. LXG) (2003)
## 4696 Northfork (2003)
## 4697 Bad Boys II (2003)
## 4698 Johnny English (2003)
## 4699 Dirty Pretty Things (2002)
## 4700 Little Giants (1994)
## 4701 Mouse That Roared, The (1959)
## 4702 Spencer's Mountain (1963)
## 4703 Lara Croft Tomb Raider: The Cradle of Life (2003)
## 4704 Seabiscuit (2003)
## 4705 Spy Kids 3-D: Game Over (2003)
## 4706 Camp (2003)
## 4707 Mondays in the Sun (Lunes al sol, Los) (2002)
## 4708 One, Two, Three (1961)
## 4709 Remo Williams: The Adventure Begins (1985)
## 4710 What's Up, Tiger Lily? (1966)
## 4711 White Lightning (1973)
## 4712 American Wedding (American Pie 3) (2003)
## 4713 Gigli (2003)
## 4714 Magdalene Sisters, The (2002)
## 4715 Secret Lives of Dentists, The (2002)
## 4716 Freaky Friday (2003)
## 4717 S.W.A.T. (2003)
## 4718 Divorce, Le (2003)
## 4719 Step Into Liquid (2002)
## 4720 Accattone (1961)
## 4721 ...And God Spoke (1993)
## 4722 Brain Damage (1988)
## 4723 Double Life, A (1947)
## 4724 Gospel According to St. Matthew, The (Vangelo secondo Matteo, Il) (1964)
## 4725 Umberto D. (1952)
## 4726 Brother's Keeper (1992)
## 4727 Day of the Dolphin, The (1973)
## 4728 Freddy vs. Jason (2003)
## 4729 Open Range (2003)
## 4730 Shaolin Soccer (Siu lam juk kau) (2001)
## 4731 American Splendor (2003)
## 4732 Agent Cody Banks (2003)
## 4733 Hot Dog... The Movie (1984)
## 4734 House of Wax (1953)
## 4735 Inn of the Sixth Happiness, The (1958)
## 4736 Sure Thing, The (1985)
## 4737 Valley Girl (1983)
## 4738 Wait Until Dark (1967)
## 4739 Code Unknown (Code inconnu: Récit incomplet de divers voyages) (2000)
## 4740 Tokyo Story (Tôkyô monogatari) (1953)
## 4741 Green Ray, The (Rayon vert, Le) (1986)
## 4742 THX 1138 (1971)
## 4743 Valley of the Dolls (1967)
## 4744 Kind Hearts and Coronets (1949)
## 4745 10 (1979)
## 4746 Tremors (1990)
## 4747 Pink Panther, The (1963)
## 4748 Pink Panther Strikes Again, The (1976)
## 4749 Commando (1985)
## 4750 Dracula (1979)
## 4751 Discreet Charm of the Bourgeoisie, The (Charme discret de la bourgeoisie, Le) (1972)
## 4752 Ikiru (1952)
## 4753 Angel at My Table, An (1990)
## 4754 Incident at Oglala (1992)
## 4755 Handmaid's Tale, The (1990)
## 4756 Revolution OS (2001)
## 4757 Fire (1996)
## 4758 Death in Venice (Morte a Venezia) (1971)
## 4759 Medallion, The (2003)
## 4760 Don't Tempt Me (Sin noticias de Dios) (2001)
## 4761 Jeepers Creepers 2 (2003)
## 4762 Order, The (2003)
## 4763 Taking Sides (2001)
## 4764 Cabin Fever (2002)
## 4765 Matchstick Men (2003)
## 4766 Once Upon a Time in Mexico (2003)
## 4767 Dummy (2002)
## 4768 Lost in Translation (2003)
## 4769 Millennium Actress (Sennen joyû) (2001)
## 4770 Gotcha! (1985)
## 4771 Once Upon a Time in China (Wong Fei Hung) (1991)
## 4772 Once Upon a Time in China II (Wong Fei-hung Ji Yi: Naam yi dong ji keung) (1992)
## 4773 Once Upon a Time in China III (Wong Fei-hung tsi sam: Siwong tsangba) (1993)
## 4774 Paper Moon (1973)
## 4775 Sgt. Pepper's Lonely Hearts Club Band (1978)
## 4776 Ugly American, The (1963)
## 4777 Convoy (1978)
## 4778 Day of the Dead (1985)
## 4779 Hello, Dolly! (1969)
## 4780 Rose, The (1979)
## 4781 At War with the Army (1950)
## 4782 Jungle Book (1942)
## 4783 Once Bitten (1985)
## 4784 Brood, The (1979)
## 4785 Cold Creek Manor (2003)
## 4786 Secondhand Lions (2003)
## 4787 Underworld (2003)
## 4788 Bubba Ho-tep (2002)
## 4789 Demonlover (2002)
## 4790 In This World (2002)
## 4791 Yossi & Jagger (2002)
## 4792 Duplex (2003)
## 4793 Rundown, The (2003)
## 4794 Under the Tuscan Sun (2003)
## 4795 Luther (2003)
## 4796 Mambo Italiano (2003)
## 4797 My Life Without Me (2003)
## 4798 Dorm Daze (National Lampoon Presents Dorm Daze) (2003)
## 4799 To Be and to Have (ÃÅ tre et avoir) (2002)
## 4800 Triplets of Belleville, The (Les triplettes de Belleville) (2003)
## 4801 Videodrome (1983)
## 4802 Lagaan: Once Upon a Time in India (2001)
## 4803 Judgment at Nuremberg (1961)
## 4804 Same Time, Next Year (1978)
## 4805 Brief History of Time, A (1991)
## 4806 Leningrad Cowboys Go America (1989)
## 4807 Rules of the Game, The (La règle du jeu) (1939)
## 4808 Seven Brides for Seven Brothers (1954)
## 4809 Kiss of the Spider Woman (1985)
## 4810 All the President's Men (1976)
## 4811 Angie (1994)
## 4812 Avalon (2001)
## 4813 Babette's Feast (Babettes gæstebud) (1987)
## 4814 Beethoven (1992)
## 4815 Beethoven's 2nd (1993)
## 4816 Boyz N the Hood (1991)
## 4817 Bugsy (1991)
## 4818 Bugsy Malone (1976)
## 4819 Cobra (1986)
## 4820 Phenomena (a.k.a. Creepers) (1985)
## 4821 Time and Tide (Seunlau Ngaklau) (2000)
## 4822 Monty Python's The Meaning of Life (1983)
## 4823 Where Eagles Dare (1968)
## 4824 Sleeping with the Enemy (1991)
## 4825 PCU (1994)
## 4826 Rookie, The (1990)
## 4827 Ghost and Mr. Chicken, The (1966)
## 4828 City Heat (1984)
## 4829 Three O'Clock High (1987)
## 4830 Come and See (Idi i smotri) (1985)
## 4831 Ginger Snaps (2000)
## 4832 Ballad of Little Jo, The (1993)
## 4833 Shakiest Gun in the West, The (1968)
## 4834 It's Pat (1994)
## 4835 Sunday in the Country, A (Un dimanche ÃÂ la campagne) (1984)
## 4836 Gun in Betty Lou's Handbag, The (1992)
## 4837 Sudden Fear (1952)
## 4838 Regarding Henry (1991)
## 4839 Alien Contamination (1980)
## 4840 Hospital, The (1971)
## 4841 Leap of Faith (1992)
## 4842 Gas, Food, Lodging (1992)
## 4843 In Cold Blood (1967)
## 4844 Yankee Doodle Dandy (1942)
## 4845 Ninja Scroll (Jûbei ninpûchô) (1995)
## 4846 Knife in the Water (Nóz w wodzie) (1962)
## 4847 Out of Time (2003)
## 4848 School of Rock (2003)
## 4849 Concert for George, The (2003)
## 4850 Station Agent, The (2003)
## 4851 Wonderland (2003)
## 4852 Bus 174 (Ãânibus 174) (2002)
## 4853 Mystic River (2003)
## 4854 House of the Dead, The (2003)
## 4855 Intolerable Cruelty (2003)
## 4856 Kill Bill: Vol. 1 (2003)
## 4857 Dopamine (2003)
## 4858 Girls Will Be Girls (2003)
## 4859 Runaway Jury (2003)
## 4860 Texas Chainsaw Massacre, The (2003)
## 4861 Pieces of April (2003)
## 4862 Sylvia (2003)
## 4863 Veronica Guerin (2003)
## 4864 In the Cut (2003)
## 4865 Radio (2003)
## 4866 Scary Movie 3 (2003)
## 4867 Brother Bear (2003)
## 4868 Elephant (2003)
## 4869 Singing Detective, The (2003)
## 4870 Italian Job, The (1969)
## 4871 Shoah (1985)
## 4872 Sweet Sixteen (2002)
## 4873 Interstate 60 (2002)
## 4874 That Was Then... This Is Now (1985)
## 4875 Eye, The (Gin gwai) (Jian gui) (2002)
## 4876 Unvanquished, The (Aparajito) (1957)
## 4877 Cercle Rouge, Le (Red Circle, The) (1970)
## 4878 Human Stain, The (2003)
## 4879 Girlhood (2003)
## 4880 Shattered Glass (2003)
## 4881 Matrix Revolutions, The (2003)
## 4882 Revolution Will Not Be Televised, The (a.k.a. Chavez: Inside the Coup) (2003)
## 4883 Elf (2003)
## 4884 In My Skin (Dans ma Peau) (2002)
## 4885 Love Actually (2003)
## 4886 Father of the Bride (1991)
## 4887 My Architect: A Son's Journey (2003)
## 4888 Master and Commander: The Far Side of the World (2003)
## 4889 Missing, The (2003)
## 4890 Cat in the Hat, The (2003)
## 4891 Gothika (2003)
## 4892 21 Grams (2003)
## 4893 Barbarian Invasions, The (Les invasions barbares) (2003)
## 4894 Bad Santa (2003)
## 4895 Haunted Mansion, The (2003)
## 4896 Timeline (2003)
## 4897 Damage (Fatale) (1992)
## 4898 Devil's Playground (2002)
## 4899 Dance with a Stranger (1985)
## 4900 Darkman (1990)
## 4901 Desk Set (1957)
## 4902 Europa (Zentropa) (1991)
## 4903 Freshman, The (1990)
## 4904 Funny Games (1997)
## 4905 New Jack City (1991)
## 4906 Slacker (1991)
## 4907 WarGames (1983)
## 4908 Ordet (Word, The) (1955)
## 4909 Forbidden Games (Jeux interdits) (1952)
## 4910 Jane Eyre (1944)
## 4911 Passion of Joan of Arc, The (Passion de Jeanne d'Arc, La) (1928)
## 4912 Ben-Hur: A Tale of the Christ (1925)
## 4913 Cabinet of Dr. Caligari, The (Cabinet des Dr. Caligari., Das) (1920)
## 4914 Gorky Park (1983)
## 4915 The Great Train Robbery (1978)
## 4916 Greystoke: The Legend of Tarzan, Lord of the Apes (1984)
## 4917 Guarding Tess (1994)
## 4918 Hannah and Her Sisters (1986)
## 4919 Hercules in New York (1970)
## 4920 Highlander II: The Quickening (1991)
## 4921 Hoffa (1992)
## 4922 Housesitter (1992)
## 4923 Hudson Hawk (1991)
## 4924 Invasion of the Body Snatchers (1978)
## 4925 Mindwalk (1990)
## 4926 Kafka (1991)
## 4927 Kindergarten Cop (1990)
## 4928 King Ralph (1991)
## 4929 Last Boy Scout, The (1991)
## 4930 Last Tango in Paris (Ultimo tango a Parigi) (1972)
## 4931 Lorenzo's Oil (1992)
## 4932 Lover, The (Amant, L') (1992)
## 4933 Bullfighter, The (Matador) (1986)
## 4934 Mr. Destiny (1990)
## 4935 Night of the Hunter, The (1955)
## 4936 Over the Top (1987)
## 4937 Passenger 57 (1992)
## 4938 Presumed Innocent (1990)
## 4939 Proof (1991)
## 4940 Battle Royale (Batoru rowaiaru) (2000)
## 4941 Wedding Banquet, The (Xi yan) (1993)
## 4942 Salo, or The 120 Days of Sodom (Salò o le 120 giornate di Sodoma) (1976)
## 4943 Midnight Clear, A (1992)
## 4944 Summer School (1987)
## 4945 Silverado (1985)
## 4946 Quick Change (1990)
## 4947 Rabid (1977)
## 4948 Show Me Love (Fucking Ãâ¦mÃÂ¥l) (1998)
## 4949 Teen Wolf (1985)
## 4950 Things You Can Tell Just by Looking at Her (2000)
## 4951 To Live and Die in L.A. (1985)
## 4952 Betty Blue (37ð2 le matin) (1986)
## 4953 Vivre sa vie: Film en douze tableaux (My Life to Live) (1962)
## 4954 Wild at Heart (1990)
## 4955 Witches, The (1990)
## 4956 Witches of Eastwick, The (1987)
## 4957 Nothing to Lose (1997)
## 4958 Follow the Fleet (1936)
## 4959 What's New, Pussycat (1965)
## 4960 Swing Time (1936)
## 4961 Public Enemy, The (1931)
## 4962 Life with Father (1947)
## 4963 National Velvet (1944)
## 4964 Jesus Christ Superstar (1973)
## 4965 Dark Victory (1939)
## 4966 Birdman of Alcatraz (1962)
## 4967 Aguirre: The Wrath of God (Aguirre, der Zorn Gottes) (1972)
## 4968 Beauty and the Beast (La belle et la bête) (1946)
## 4969 Birth of a Nation, The (1915)
## 4970 Juliet of the Spirits (Giulietta degli spiriti) (1965)
## 4971 Last Year at Marienbad (L'Année dernière àMarienbad) (1961)
## 4972 Macbeth (a.k.a. Tragedy of Macbeth, The) (1971)
## 4973 Red River (1948)
## 4974 Woman Under the Influence, A (1974)
## 4975 Stagecoach (1939)
## 4976 Shot in the Dark, A (1964)
## 4977 Navigator, The (1924)
## 4978 Court Jester, The (1956)
## 4979 Bullitt (1968)
## 4980 Jezebel (1938)
## 4981 Hunchback of Notre Dame, The (1939)
## 4982 42nd Street (1933)
## 4983 I'm No Angel (1933)
## 4984 That Touch of Mink (1962)
## 4985 Sweet Dreams (1985)
## 4986 Play It Again, Sam (1972)
## 4987 Send Me No Flowers (1964)
## 4988 Pygmalion (1938)
## 4989 Passage to India, A (1984)
## 4990 Black Orpheus (Orfeu Negro) (1959)
## 4991 Amarcord (1973)
## 4992 Hero (Ying xiong) (2002)
## 4993 Horse Feathers (1932)
## 4994 Front Page, The (1974)
## 4995 Looking for Mr. Goodbar (1977)
## 4996 Rivers and Tides (2001)
## 4997 Nausicaä of the Valley of the Wind (Kaze no tani no Naushika) (1984)
## 4998 Doc Hollywood (1991)
## 4999 Dragnet (1987)
## 5000 1941 (1979)
## 5001 Foul Play (1978)
## 5002 Crime Story (Zhong an zu) (1993)
## 5003 Blind Beast (Môjuu) (1969)
## 5004 Ryan's Daughter (1970)
## 5005 Deep Red (Profondo rosso) (1975)
## 5006 Diabolique (Les diaboliques) (1955)
## 5007 Leprechaun (1993)
## 5008 Adam's Rib (1949)
## 5009 King of Hearts (1966)
## 5010 Naked Lunch (1991)
## 5011 Spring Forward (1999)
## 5012 Killing of a Chinese Bookie, The (1976)
## 5013 Darling (1965)
## 5014 Summer Place, A (1959)
## 5015 Night at the Opera, A (1935)
## 5016 Shoot the Piano Player (Tirez sur le pianiste) (1960)
## 5017 Stolen Kisses (Baisers volés) (1968)
## 5018 Cooler, The (2003)
## 5019 In America (2002)
## 5020 Honey (2003)
## 5021 Last Samurai, The (2003)
## 5022 Big Fish (2003)
## 5023 Something's Gotta Give (2003)
## 5024 Stuck on You (2003)
## 5025 Girl with a Pearl Earring (2003)
## 5026 Statement, The (2003)
## 5027 Lord of the Rings: The Return of the King, The (2003)
## 5028 Mona Lisa Smile (2003)
## 5029 Calendar Girls (2003)
## 5030 Fog of War: Eleven Lessons from the Life of Robert S. McNamara, The (2003)
## 5031 House of Sand and Fog (2003)
## 5032 Monster (2003)
## 5033 Cheaper by the Dozen (2003)
## 5034 Cold Mountain (2003)
## 5035 Paycheck (2003)
## 5036 Peter Pan (2003)
## 5037 Company, The (2003)
## 5038 Aileen: Life and Death of a Serial Killer (2003)
## 5039 Distant (Uzak) (2002)
## 5040 Along Came Polly (2004)
## 5041 Osama (2003)
## 5042 Great Gatsby, The (1974)
## 5043 Wuthering Heights (1992)
## 5044 Odds Against Tomorrow (1959)
## 5045 Lord Love a Duck (1966)
## 5046 Once Upon a Crime... (1992)
## 5047 Car 54, Where Are You? (1994)
## 5048 Jane Eyre (1970)
## 5049 Only the Strong (1993)
## 5050 Adventures of Ford Fairlane, The (1990)
## 5051 Enforcer, The (1951)
## 5052 Men, The (1950)
## 5053 The Pick-up Artist (1987)
## 5054 Melvin Goes to Dinner (2003)
## 5055 Hells Angels on Wheels (1967)
## 5056 Mon Oncle (My Uncle) (1958)
## 5057 Where the Boys Are (1960)
## 5058 Dr. Jekyll and Mr. Hyde (1941)
## 5059 M. Hulotâ\200\231s Holiday (Mr. Hulot's Holiday) (Vacances de Monsieur Hulot, Les) (1953)
## 5060 My Darling Clementine (1946)
## 5061 People Will Talk (1951)
## 5062 I Was a Male War Bride (1949)
## 5063 To Have and Have Not (1944)
## 5064 High Sierra (1941)
## 5065 Dark Passage (1947)
## 5066 They Drive by Night (1940)
## 5067 Reefer Madness (a.k.a. Tell Your Children) (1938)
## 5068 D.O.A. (1950)
## 5069 Cool World (1992)
## 5070 Strada, La (1954)
## 5071 Ichi the Killer (Koroshiya 1) (2001)
## 5072 Boy and His Dog, A (1975)
## 5073 Ashes and Diamonds (Popiól i diament) (1958)
## 5074 Intolerance: Love's Struggle Throughout the Ages (1916)
## 5075 Tormented (1960)
## 5076 Chitty Chitty Bang Bang (1968)
## 5077 Suriyothai (a.k.a. Legend of Suriyothai, The) (2001)
## 5078 Out of Towners, The (1970)
## 5079 The Butterfly Effect (2004)
## 5080 Win a Date with Tad Hamilton! (2004)
## 5081 Touching the Void (2003)
## 5082 Big Bounce, The (2004)
## 5083 Perfect Score, The (2004)
## 5084 Latter Days (2003)
## 5085 Miracle (2004)
## 5086 Dreamers, The (2003)
## 5087 Lost Skeleton of Cadavra, The (2002)
## 5088 Super Fly (Superfly) (1972)
## 5089 Hip Hop Witch, Da (2000)
## 5090 Swing Shift (1984)
## 5091 Thirteen (2003)
## 5092 50 First Dates (2004)
## 5093 Welcome to Mooseport (2004)
## 5094 Monsieur Ibrahim (Monsieur Ibrahim et les fleurs du Coran) (2003)
## 5095 Vanishing Point (1971)
## 5096 Thief of Bagdad, The (1924)
## 5097 The Diary of Anne Frank (1959)
## 5098 Black Widow (1987)
## 5099 Flesh & Blood (1985)
## 5100 King Solomon's Mines (1985)
## 5101 Black Pirate, The (1926)
## 5102 Goodbye, Mr. Chips (1939)
## 5103 Follow Me, Boys! (1966)
## 5104 Against the Ropes (2004)
## 5105 Confessions of a Teenage Drama Queen (2004)
## 5106 EuroTrip (2004)
## 5107 Passion of the Christ, The (2004)
## 5108 Club Dread (2004)
## 5109 Dirty Dancing: Havana Nights (2004)
## 5110 Good bye, Lenin! (2003)
## 5111 Hidalgo (2004)
## 5112 Starsky & Hutch (2004)
## 5113 Persona (1966)
## 5114 Front, The (1976)
## 5115 Pickup on South Street (1953)
## 5116 Just One of the Guys (1985)
## 5117 Wisconsin Death Trip (1999)
## 5118 Girl Next Door, The (2004)
## 5119 Secret Window (2004)
## 5120 Spartan (2004)
## 5121 Broken Wings (Knafayim Shvurot) (2002)
## 5122 Wilbur Wants to Kill Himself (2002)
## 5123 Mad Dog and Glory (1993)
## 5124 Mr. Toad's Wild Ride (a.k.a. The Wind in the Willows) (1996)
## 5125 Peyton Place (1957)
## 5126 Searching for Debra Winger (2002)
## 5127 Dawn of the Dead (2004)
## 5128 Eternal Sunshine of the Spotless Mind (2004)
## 5129 Taking Lives (2004)
## 5130 Jersey Girl (2004)
## 5131 Ladykillers, The (2004)
## 5132 Scooby-Doo 2: Monsters Unleashed (2004)
## 5133 Dogville (2003)
## 5134 Ned Kelly (2003)
## 5135 Hellboy (2004)
## 5136 Home on the Range (2004)
## 5137 Prince & Me, The (2004)
## 5138 Walking Tall (2004)
## 5139 The Alamo (2004)
## 5140 Ella Enchanted (2004)
## 5141 Whole Ten Yards, The (2004)
## 5142 I'm Not Scared (Io non ho paura) (2003)
## 5143 Ten Commandments, The (1956)
## 5144 Dawn of the Dead (1978)
## 5145 Those Magnificent Men in Their Flying Machines (1965)
## 5146 Cheaper by the Dozen (1950)
## 5147 Scenes From a Marriage (Scener ur ett äktenskap) (1973)
## 5148 Africa Screams (1949)
## 5149 Munchies (1987)
## 5150 Late Show, The (1977)
## 5151 After Hours (1985)
## 5152 Connie and Carla (2004)
## 5153 Kill Bill: Vol. 2 (2004)
## 5154 Punisher, The (2004)
## 5155 13 Going on 30 (2004)
## 5156 Man on Fire (2004)
## 5157 Envy (2004)
## 5158 Godsend (2004)
## 5159 Laws of Attraction (2004)
## 5160 Mean Girls (2004)
## 5161 New York Minute (2004)
## 5162 Van Helsing (2004)
## 5163 Valentin (ValentÃÂn) (2002)
## 5164 Troy (2004)
## 5165 Carandiru (2003)
## 5166 Coffee and Cigarettes (2003)
## 5167 Swimming to Cambodia (1987)
## 5168 Enemy Mine (1985)
## 5169 Enter the Dragon (1973)
## 5170 Gimme Shelter (1970)
## 5171 Henry & June (1990)
## 5172 Martin (1977)
## 5173 Three Faces of Eve, The (1957)
## 5174 Band of Brothers (2001)
## 5175 Kingdom, The (Riget) (1994)
## 5176 100 Girls (2000)
## 5177 Fail-Safe (1964)
## 5178 Kwaidan (Kaidan) (1964)
## 5179 28 Up (1985)
## 5180 You Only Live Twice (1967)
## 5181 Octopussy (1983)
## 5182 Blue Gardenia, The (1953)
## 5183 Wit (2001)
## 5184 Never Say Never Again (1983)
## 5185 Maborosi (Maboroshi no hikari) (1995)
## 5186 Magic Flute, The (Trollflöjten) (1975)
## 5187 Pride and Prejudice (1940)
## 5188 In This Our Life (1942)
## 5189 Woman of the Year (1942)
## 5190 Summertime (1955)
## 5191 Soldier of Orange (a.k.a. Survival Run) (Soldaat van Oranje) (1977)
## 5192 Samouraï, Le (Godson, The) (1967)
## 5193 White Palace (1990)
## 5194 Oklahoma! (1955)
## 5195 Desert Hearts (1985)
## 5196 Body Double (1984)
## 5197 Miracle Worker, The (1962)
## 5198 Monster in a Box (1992)
## 5199 School Ties (1992)
## 5200 Girl (1998)
## 5201 Just Write (1997)
## 5202 Raising Cain (1992)
## 5203 Babylon 5: In the Beginning (1998)
## 5204 Witchfinder General (Conquerer Worm, The) (1968)
## 5205 Pride and Prejudice (1995)
## 5206 Prince and the Showgirl, The (1957)
## 5207 China Syndrome, The (1979)
## 5208 Wages of Fear, The (Salaire de la peur, Le) (1953)
## 5209 Look Who's Talking Too (1990)
## 5210 Bells of St. Mary's, The (1945)
## 5211 Pat and Mike (1952)
## 5212 Animal Crackers (1930)
## 5213 Bedazzled (1967)
## 5214 Cat People (1942)
## 5215 Camelot (1967)
## 5216 Four Musketeers, The (1974)
## 5217 Postman Always Rings Twice, The (1946)
## 5218 That's The Way I Like It (a.k.a. Forever Fever) (1998)
## 5219 Explorers (1985)
## 5220 Pierrot le fou (1965)
## 5221 Tuesdays with Morrie (1999)
## 5222 Jason and the Argonauts (1963)
## 5223 Nostalghia (1983)
## 5224 Tinker, Tailor, Soldier, Spy (1979)
## 5225 Driller Killer, The (1979)
## 5226 Throne of Blood (Kumonosu jô) (1957)
## 5227 Best of Youth, The (La meglio gioventù) (2003)
## 5228 Zorba the Greek (Alexis Zorbas) (1964)
## 5229 Bang, Bang, You're Dead (2002)
## 5230 My Side of the Mountain (1969)
## 5231 Sniper (1993)
## 5232 Genghis Blues (1999)
## 5233 To Hell and Back (1955)
## 5234 11'09"01 - September 11 (2002)
## 5235 Bon Voyage, Charlie Brown (and Don't Come Back!) (1980)
## 5236 Internal Affairs (1990)
## 5237 Parallax View, The (1974)
## 5238 Warriors, The (1979)
## 5239 Ambush (Rukajärven tie) (1999)
## 5240 Babylon 5: A Call to Arms (1999)
## 5241 Babylon 5: The River of Souls (1998)
## 5242 Babylon 5: Thirdspace (1998)
## 5243 True Stories (1986)
## 5244 Zardoz (1974)
## 5245 School For Scoundrels (1960)
## 5246 Virgin Spring, The (Jungfrukällan) (1960)
## 5247 Mogambo (1953)
## 5248 Secret Life of Walter Mitty, The (1947)
## 5249 Cypher (2002)
## 5250 Another Thin Man (1939)
## 5251 Thin Man Goes Home, The (1945)
## 5252 Shadow of the Thin Man (1941)
## 5253 After the Thin Man (1936)
## 5254 Song of the Thin Man (1947)
## 5255 Woodstock (1970)
## 5256 Gunga Din (1939)
## 5257 Children of Dune (2003)
## 5258 Dune (2000)
## 5259 Lammbock (2001)
## 5260 Legend, The (Legend of Fong Sai-Yuk, The) (Fong Sai Yuk) (1993)
## 5261 Tremors II: Aftershocks (1996)
## 5262 Tremors 3: Back to Perfection (2001)
## 5263 Getting It Right (1989)
## 5264 Straight to Hell (1987)
## 5265 White Zombie (1932)
## 5266 The Plague of the Zombies (1966)
## 5267 I Walked with a Zombie (1943)
## 5268 How to Succeed in Business Without Really Trying (1967)
## 5269 Pat Garrett and Billy the Kid (1973)
## 5270 Street Fighter, The (Gekitotsu! Satsujin ken) (1974)
## 5271 Duck, You Sucker (1971)
## 5272 Bring Me the Head of Alfredo Garcia (1974)
## 5273 Ballad of Cable Hogue, The (1970)
## 5274 Master of the Flying Guillotine (Du bi quan wang da po xue di zi) (1975)
## 5275 Berlin: Symphony of a Great City (Berlin: Die Sinfonie der Großstadt) (1927)
## 5276 Samurai Fiction (SF: Episode One) (1998)
## 5277 Gidget (1959)
## 5278 Drunken Angel (Yoidore tenshi) (1948)
## 5279 Desperate Living (1977)
## 5280 Devil's Rain, The (1975)
## 5281 Valachi Papers,The (1972)
## 5282 Stray Dog (Nora inu) (1949)
## 5283 Hidden Fortress, The (Kakushi-toride no san-akunin) (1958)
## 5284 High and Low (Tengoku to jigoku) (1963)
## 5285 Dark Days (2000)
## 5286 Zelig (1983)
## 5287 Face to Face (Ansikte mot ansikte) (1976)
## 5288 Shame (Skammen) (1968)
## 5289 Winter Light (Nattvardsgästerna) (1963)
## 5290 Through a Glass Darkly (SÃÂ¥som i en spegel) (1961)
## 5291 Smiles of a Summer Night (Sommarnattens leende) (1955)
## 5292 Summer with Monika (Sommaren med Monika) (1953)
## 5293 Killers, The (1946)
## 5294 Night of the Iguana, The (1964)
## 5295 Reflections in a Golden Eye (1967)
## 5296 Under the Volcano (1984)
## 5297 Wise Blood (1979)
## 5298 Nightbreed (1990)
## 5299 Bloody Mama (1970)
## 5300 Trip, The (1967)
## 5301 Ken Park (2002)
## 5302 Monterey Pop (1968)
## 5303 Bridge Too Far, A (1977)
## 5304 Infernal Affairs (Mou gaan dou) (2002)
## 5305 Tale of Two Sisters, A (Janghwa, Hongryeon) (2003)
## 5306 Broadway Danny Rose (1984)
## 5307 From Beyond (1986)
## 5308 Dolls (1987)
## 5309 Rock 'N' Roll High School (1979)
## 5310 Death Race 2000 (1975)
## 5311 Wild Angels, The (1966)
## 5312 Bedlam (1946)
## 5313 Brigadoon (1954)
## 5314 Marjorie Morningstar (1958)
## 5315 Power of One, The (1992)
## 5316 Weather Underground, The (2002)
## 5317 Kikujiro (Kikujirô no natsu) (1999)
## 5318 Spring, Summer, Fall, Winter... and Spring (Bom yeoreum gaeul gyeoul geurigo bom) (2003)
## 5319 Phantom Tollbooth, The (1970)
## 5320 Getaway, The (1972)
## 5321 Dark Water (Honogurai mizu no soko kara) (2002)
## 5322 How to Steal a Million (1966)
## 5323 Support Your Local Sheriff! (1969)
## 5324 Mean Streets (1973)
## 5325 I Am a Fugitive from a Chain Gang (1932)
## 5326 Harper (1966)
## 5327 Sweet Bird of Youth (1962)
## 5328 Grill Point (Halbe Treppe) (2002)
## 5329 Shiri (Swiri) (1999)
## 5330 Bad Day at Black Rock (1955)
## 5331 In China They Eat Dogs (I Kina spiser de hunde) (1999)
## 5332 Seducing Doctor Lewis (Grande séduction, La) (2003)
## 5333 Sammy and Rosie Get Laid (1987)
## 5334 Sunrise: A Song of Two Humans (1927)
## 5335 Shock Corridor (1963)
## 5336 Au revoir les enfants (1987)
## 5337 Sex: The Annabel Chong Story (1999)
## 5338 Girl Next Door, The (1999)
## 5339 Pursuit of Happiness (2001)
## 5340 Gladiator (1992)
## 5341 Inheritance, The (Arven) (2003)
## 5342 Indestructible Man (1956)
## 5343 Wasp Woman, The (1959)
## 5344 Attack of the Giant Leeches (1959)
## 5345 Dead or Alive: Hanzaisha (1999)
## 5346 Lola Montès (1955)
## 5347 Charly (1968)
## 5348 Dolce Vita, La (1960)
## 5349 Jin Roh: The Wolf Brigade (Jin-Rô) (1998)
## 5350 Rush (1991)
## 5351 Captain Blood (1935)
## 5352 *batteries not included (1987)
## 5353 Educating Rita (1983)
## 5354 On Moonlight Bay (1951)
## 5355 Sansho the Bailiff (Sanshô dayû) (1954)
## 5356 Zazie dans le métro (1960)
## 5357 Americanization of Emily, The (1964)
## 5358 Anne of the Thousand Days (1969)
## 5359 Baby Doll (1956)
## 5360 Avventura, L' (Adventure, The) (1960)
## 5361 Beyond the Valley of the Dolls (1970)
## 5362 Hiroshima Mon Amour (1959)
## 5363 Ugetsu (Ugetsu monogatari) (1953)
## 5364 Day of the Jackal, The (1973)
## 5365 Razor's Edge, The (1946)
## 5366 Night of the Living Dead (1990)
## 5367 Maltese Falcon, The (a.k.a. Dangerous Female) (1931)
## 5368 Safety Last! (1923)
## 5369 While the City Sleeps (1956)
## 5370 Viridiana (1961)
## 5371 Totally F***ed Up (1993)
## 5372 Lupin III: The Castle Of Cagliostro (Rupan sansei: Kariosutoro no shiro) (1979)
## 5373 Arizona Dream (1993)
## 5374 Queen Christina (1933)
## 5375 Battleground (1949)
## 5376 3 Women (Three Women) (1977)
## 5377 Take Me Out to the Ball Game (1949)
## 5378 Grey Gardens (1975)
## 5379 Purple Rain (1984)
## 5380 Signs of Life (Lebenszeichen) (1968)
## 5381 Point of No Return (1993)
## 5382 Tale of Ham and Passion, A (Jamón, Jamón) (1992)
## 5383 College (1927)
## 5384 Mitchell (1975)
## 5385 Dolls (2002)
## 5386 Man Who Came to Dinner, The (1942)
## 5387 Sunday Bloody Sunday (1971)
## 5388 Major and the Minor, The (1942)
## 5389 Caine Mutiny, The (1954)
## 5390 Black Narcissus (1947)
## 5391 Escape from Alcatraz (1979)
## 5392 Oliver Twist (1948)
## 5393 Shrek 2 (2004)
## 5394 Day After Tomorrow, The (2004)
## 5395 Raising Helen (2004)
## 5396 Soul Plane (2004)
## 5397 Baadasssss! (How to Get the Man's Foot Outta Your Ass) (2003)
## 5398 Saved! (2004)
## 5399 Time of the Wolf, The (Le temps du loup) (2003)
## 5400 Harry Potter and the Prisoner of Azkaban (2004)
## 5401 Mindhunters (2004)
## 5402 Blind Swordsman: Zatoichi, The (Zatôichi) (2003)
## 5403 Chronicles of Riddick, The (2004)
## 5404 Garfield: The Movie (2004)
## 5405 Stepford Wives, The (2004)
## 5406 Napoleon Dynamite (2004)
## 5407 Lover Come Back (1961)
## 5408 Police Academy: Mission to Moscow (1994)
## 5409 Ring of Bright Water (1969)
## 5410 Fool for Love (1985)
## 5411 Helen of Troy (1956)
## 5412 Hound of the Baskervilles, The (1939)
## 5413 Suddenly (1954)
## 5414 Possessed (1947)
## 5415 Kings Row (1942)
## 5416 Kid Brother, The (1927)
## 5417 This Island Earth (1955)
## 5418 Blackboard Jungle (1955)
## 5419 It Had to Be You (2000)
## 5420 Heiress, The (1949)
## 5421 State Fair (1945)
## 5422 Executive Suite (1954)
## 5423 Johnny Belinda (1948)
## 5424 Super Size Me (2004)
## 5425 Johnny Eager (1942)
## 5426 Jetée, La (1962)
## 5427 Picture of Dorian Gray, The (1945)
## 5428 Human Condition I, The (Ningen no joken I) (1959)
## 5429 Samsara (2001)
## 5430 Please Don't Eat the Daisies (1960)
## 5431 White Heat (1949)
## 5432 Christmas Carol, A (Scrooge) (1951)
## 5433 Memphis Belle (1990)
## 5434 Cincinnati Kid, The (1965)
## 5435 Pretty Baby (1978)
## 5436 Show Boat (1951)
## 5437 Box of Moon Light (1996)
## 5438 Freaks (1932)
## 5439 Immigrant, The (1917)
## 5440 My Little Chickadee (1940)
## 5441 High and the Mighty, The (1954)
## 5442 Ugly Dachshund, The (1966)
## 5443 Around the World in 80 Days (2004)
## 5444 I'll Sleep When I'm Dead (2003)
## 5445 Dodgeball: A True Underdog Story (2004)
## 5446 Terminal, The (2004)
## 5447 Dear Frankie (2004)
## 5448 White Chicks (2004)
## 5449 Notebook, The (2004)
## 5450 Two Brothers (Deux frères) (2004)
## 5451 De-Lovely (2004)
## 5452 Kaena: The Prophecy (Kaena: La prophétie) (2003)
## 5453 Day at the Races, A (1937)
## 5454 Now You See Him, Now You Don't (1972)
## 5455 Bob & Carol & Ted & Alice (1969)
## 5456 Littlest Rebel, The (1935)
## 5457 Claymation Christmas Celebration, A (1987)
## 5458 Happenstance (Battement d'ailes du papillon, Le) (2001)
## 5459 Kopps (2003)
## 5460 Comandante (2003)
## 5461 Into the Woods (1991)
## 5462 Pirates of Silicon Valley (1999)
## 5463 Manufacturing Consent: Noam Chomsky and the Media (1992)
## 5464 Clock, The (1945)
## 5465 Leave Her to Heaven (1945)
## 5466 Winter War (Talvisota) (1989)
## 5467 Philadelphia Experiment, The (1984)
## 5468 Revenge of the Pink Panther (1978)
## 5469 Angels with Dirty Faces (1938)
## 5470 Taxi (1998)
## 5471 Tokyo Godfathers (2003)
## 5472 Our Hospitality (1923)
## 5473 All of Me (1984)
## 5474 Farmer's Daughter, The (1947)
## 5475 Lassie Come Home (1943)
## 5476 Overboard (1987)
## 5477 By the Light of the Silvery Moon (1953)
## 5478 Butterfield 8 (1960)
## 5479 Johnny Guitar (1954)
## 5480 Exterminating Angel, The (Ã\201ngel exterminador, El) (1962)
## 5481 Fahrenheit 9/11 (2004)
## 5482 Roxanne (1987)
## 5483 Same River Twice, The (2003)
## 5484 Book of Life, The (1998)
## 5485 Last Starfighter, The (1984)
## 5486 Spider-Man 2 (2004)
## 5487 Before Sunset (2004)
## 5488 King Arthur (2004)
## 5489 Anchorman: The Legend of Ron Burgundy (2004)
## 5490 Sleepover (2004)
## 5491 Cinderella Story, A (2004)
## 5492 I, Robot (2004)
## 5493 Maria Full of Grace (Maria, Llena eres de gracia) (2004)
## 5494 Long Day's Journey Into Night (1962)
## 5495 Prince Valiant (1954)
## 5496 Short Film About Killing, A (Krótki film o zabijaniu) (1988)
## 5497 Tin Star, The (1957)
## 5498 How the West Was Won (1962)
## 5499 Bourne Supremacy, The (2004)
## 5500 Catwoman (2004)
## 5501 A Home at the End of the World (2004)
## 5502 Testament of Dr. Mabuse, The (Das Testament des Dr. Mabuse) (1933)
## 5503 Battle Hymn (1957)
## 5504 Enemy Below, The (1957)
## 5505 Man Escaped, A (Un condamné àmort s'est échappé ou Le vent souffle où il veut) (1956)
## 5506 Shock to the System, A (1990)
## 5507 Slaughterhouse-Five (1972)
## 5508 Bachelor and the Bobby-Soxer, The (1947)
## 5509 Dancing in September (2000)
## 5510 Destination Tokyo (1943)
## 5511 How I Got Into College (1989)
## 5512 Mr. Blandings Builds His Dream House (1948)
## 5513 My Favorite Wife (1940)
## 5514 New Adventures of Pippi Longstocking, The (1988)
## 5515 Snake Pit, The (1948)
## 5516 Super, The (1991)
## 5517 Two of a Kind (1983)
## 5518 Leopard, The (Gattopardo, Il) (1963)
## 5519 Goodbye, Columbus (1969)
## 5520 Day of the Locust, The (1975)
## 5521 To End All Wars (2001)
## 5522 Biggles (1986)
## 5523 World of Suzie Wong, The (1960)
## 5524 Gun Crazy (a.k.a. Deadly Is the Female) (1949)
## 5525 Set-Up, The (1949)
## 5526 Unprecedented: The 2000 Presidential Election (2002)
## 5527 Prime of Miss Jean Brodie, The (1969)
## 5528 Three Lives of Thomasina, The (1964)
## 5529 One and Only, Genuine, Original Family Band, The (1968)
## 5530 This Gun for Hire (1942)
## 5531 Black Angel (1946)
## 5532 Big Clock, The (1948)
## 5533 Criss Cross (1949)
## 5534 Spy Who Came in from the Cold, The (1965)
## 5535 Roadkill (a.k.a. Roadkill: Move or Die) (1989)
## 5536 Bon Voyage (2003)
## 5537 Manchurian Candidate, The (2004)
## 5538 Village, The (2004)
## 5539 Garden State (2004)
## 5540 Early Summer (Bakushû) (1951)
## 5541 Revengers Tragedy (2002)
## 5542 Musa the Warrior (Musa) (2001)
## 5543 Funny Thing Happened on the Way to the Forum, A (1966)
## 5544 Salesman (1969)
## 5545 Collateral (2004)
## 5546 Little Black Book (2004)
## 5547 Code 46 (2003)
## 5548 Harold and Kumar Go to White Castle (2004)
## 5549 Princess Diaries 2: Royal Engagement, The (2004)
## 5550 AVP: Alien vs. Predator (2004)
## 5551 Yu-Gi-Oh! (2004)
## 5552 We Don't Live Here Anymore (2004)
## 5553 Without a Paddle (2004)
## 5554 Double Trouble (1967)
## 5555 Spinout (1966)
## 5556 Harum Scarum (1965)
## 5557 Sting II, The (1983)
## 5558 Bill Cosby, Himself (1983)
## 5559 Dead Ringer (1964)
## 5560 Anacondas: The Hunt for the Blood Orchid (2004)
## 5561 Suspect Zero (2004)
## 5562 Warriors of Heaven and Earth (Tian di ying xiong) (2003)
## 5563 Vanity Fair (2004)
## 5564 Paparazzi (2004)
## 5565 Wicker Park (2004)
## 5566 Alice Doesn't Live Here Anymore (1974)
## 5567 Mangler, The (1995)
## 5568 Who's That Knocking at My Door? (1967)
## 5569 Vitelloni, I (a.k.a. The Young and the Passionate) (1953)
## 5570 Flipper (1963)
## 5571 Smile (1975)
## 5572 Small Circle of Friends, A (1980)
## 5573 Night of the Demons (1988)
## 5574 Lilith (1964)
## 5575 SuperBabies: Baby Geniuses 2 (2004)
## 5576 Cellular (2004)
## 5577 Resident Evil: Apocalypse (2004)
## 5578 Mr. 3000 (2004)
## 5579 Sky Captain and the World of Tomorrow (2004)
## 5580 Wimbledon (2004)
## 5581 Forgotten, The (2004)
## 5582 Last Shot, The (2004)
## 5583 Dirty Shame, A (2004)
## 5584 Motorcycle Diaries, The (Diarios de motocicleta) (2004)
## 5585 Shaun of the Dead (2004)
## 5586 Murder on the Orient Express (1974)
## 5587 Mask (1985)
## 5588 Boston Strangler, The (1968)
## 5589 Man with One Red Shoe, The (1985)
## 5590 Basket Case 3: The Progeny (1992)
## 5591 Basket Case 2 (1990)
## 5592 Hardcore (1979)
## 5593 Terror, The (1963)
## 5594 Cannibal Holocaust (1980)
## 5595 Shark Tale (2004)
## 5596 Ladder 49 (2004)
## 5597 I Heart Huckabees (2004)
## 5598 Raise Your Voice (2004)
## 5599 Primer (2004)
## 5600 Stage Beauty (2004)
## 5601 Shall We Dance? (2004)
## 5602 Team America: World Police (2004)
## 5603 Eulogy (2004)
## 5604 Country Girl, The (1954)
## 5605 Rose Tattoo, The (1955)
## 5606 Tess (1979)
## 5607 Cannonball (1976)
## 5608 Fearless Vampire Killers, The (1967)
## 5609 Black Beauty (1971)
## 5610 Five Obstructions, The (Fem benspænd, De) (2003)
## 5611 Born Rich (2003)
## 5612 Decline of the American Empire, The (Déclin de l'empire américain, Le) (1986)
## 5613 All I Want for Christmas (1991)
## 5614 Friday Night Lights (2004)
## 5615 Tarnation (2003)
## 5616 Being Julia (2004)
## 5617 Surviving Christmas (2004)
## 5618 Grudge, The (2004)
## 5619 Alfie (2004)
## 5620 Sideways (2004)
## 5621 The Machinist (2004)
## 5622 Vera Drake (2004)
## 5623 Lightning in a Bottle (2004)
## 5624 Undertow (2004)
## 5625 Saw (2004)
## 5626 Ray (2004)
## 5627 Incredibles, The (2004)
## 5628 It's All About Love (2003)
## 5629 Callas Forever (2002)
## 5630 Polar Express, The (2004)
## 5631 Kinsey (2004)
## 5632 After the Sunset (2004)
## 5633 Bridget Jones: The Edge of Reason (2004)
## 5634 Finding Neverland (2004)
## 5635 National Treasure (2004)
## 5636 Bad Education (La mala educación) (2004)
## 5637 SpongeBob SquarePants Movie, The (2004)
## 5638 Alexander (2004)
## 5639 Guerrilla: The Taking of Patty Hearst (2004)
## 5640 Closer (2004)
## 5641 I Am David (2003)
## 5642 House of Flying Daggers (Shi mian mai fu) (2004)
## 5643 Ocean's Twelve (2004)
## 5644 Blade: Trinity (2004)
## 5645 Bellboy, The (1960)
## 5646 Bush's Brain (2004)
## 5647 Cinderfella (1960)
## 5648 Damn Yankees! (1958)
## 5649 That's Entertainment (1974)
## 5650 That's Entertainment, Part II (1976)
## 5651 That's Entertainment! III (1994)
## 5652 Wackiest Ship in the Army, The (1960)
## 5653 D.A.R.Y.L. (1985)
## 5654 Fire in the Sky (1993)
## 5655 Love Me If You Dare (Jeux d'enfants) (2003)
## 5656 Ruby Gentry (1952)
## 5657 Control Room (2004)
## 5658 Golem, The (Golem, wie er in die Welt kam, Der) (1920)
## 5659 Haxan: Witchcraft Through the Ages (a.k.a. The Witches) (1922)
## 5660 Sherlock Jr. (1924)
## 5661 Freshman, The (1925)
## 5662 Greed (1924)
## 5663 Phantom of the Opera, The (1925)
## 5664 Pandora's Box (Büchse der Pandora, Die) (1929)
## 5665 Cameraman, The (1928)
## 5666 Steamboat Bill, Jr. (1928)
## 5667 Andalusian Dog, An (Chien andalou, Un) (1929)
## 5668 Little Caesar (1931)
## 5669 Golden Age, The (Ãâge d'Or, L') (1930)
## 5670 Monkey Business (1931)
## 5671 Scarface (1932)
## 5672 I Was Born, But... (a.k.a. Children of Tokyo) (Otona no miru ehon - Umarete wa mita keredo) (1932)
## 5673 Dinner at Eight (1933)
## 5674 She Done Him Wrong (1933)
## 5675 Atalante, L' (1934)
## 5676 Black Cat, The (1934)
## 5677 Fury (1936)
## 5678 Libeled Lady (1936)
## 5679 Mr. Deeds Goes to Town (1936)
## 5680 Petrified Forest, The (1936)
## 5681 Nothing Sacred (1937)
## 5682 Stage Door (1937)
## 5683 Topper (1937)
## 5684 Holiday (1938)
## 5685 Gaslight (1940)
## 5686 Wuthering Heights (1939)
## 5687 Letter, The (1940)
## 5688 Ball of Fire (1941)
## 5689 Never Give a Sucker an Even Break (1941)
## 5690 Hard Way, The (1943)
## 5691 Random Harvest (1942)
## 5692 Heaven Can Wait (1943)
## 5693 Day of Wrath (Vredens dag) (1943)
## 5694 Curse of the Cat People, The (1944)
## 5695 Henry V (Chronicle History of King Henry the Fift with His Battell Fought at Agincourt in France, The) (1944)
## 5696 Ministry of Fear (1944)
## 5697 Mr. Skeffington (1944)
## 5698 Woman in the Window, The (1944)
## 5699 They Were Expendable (1945)
## 5700 Blue Dahlia, The (1946)
## 5701 Stranger, The (1946)
## 5702 Nightmare Alley (1947)
## 5703 Odd Man Out (1947)
## 5704 Easter Parade (1948)
## 5705 Lady from Shanghai, The (1947)
## 5706 Letter from an Unknown Woman (1948)
## 5707 They Live by Night (1949)
## 5708 Unfaithfully Yours (1948)
## 5709 Letter to Three Wives, A (1949)
## 5710 King Solomon's Mines (1950)
## 5711 Summer Stock (1950)
## 5712 Carrie (1952)
## 5713 Clash by Night (1952)
## 5714 Magnificent Obsession (1954)
## 5715 Samurai I: Musashi Miyamoto (Miyamoto Musashi) (1954)
## 5716 Star Is Born, A (1954)
## 5717 The Wild One (1953)
## 5718 Night and Fog (Nuit et brouillard) (1955)
## 5719 Samurai II: Duel at Ichijoji Temple (Zoku Miyamoto Musashi: Ichijôji no kettô) (1955)
## 5720 Unknown Soldier, The (Tuntematon sotilas) (1955)
## 5721 Burmese Harp, The (Biruma no tategoto) (1956)
## 5722 Carousel (1956)
## 5723 Samurai III: Duel on Ganryu Island (a.k.a. Bushido) (Miyamoto Musashi kanketsuhen: kettô Ganryûjima) (1956)
## 5724 Rodan (Sora no daikaijû Radon) (1956)
## 5725 Spirit of St. Louis, The (1957)
## 5726 Pickpocket (1959)
## 5727 David and Lisa (1962)
## 5728 Harakiri (Seppuku) (1962)
## 5729 Music Man, The (1962)
## 5730 Mutiny on the Bounty (1962)
## 5731 Occurrence at Owl Creek Bridge, An (La rivière du hibou) (1962)
## 5732 Wonderful World of the Brothers Grimm, The (1962)
## 5733 Eclisse, L' (Eclipse) (1962)
## 5734 Becket (1964)
## 5735 Hush... Hush, Sweet Charlotte (1964)
## 5736 Killers, The (1964)
## 5737 Onibaba (1964)
## 5738 Spider Baby or, The Maddest Story Ever Told (Spider Baby) (1968)
## 5739 Battle of Algiers, The (La battaglia di Algeri) (1966)
## 5740 Charlie Brown Christmas, A (1965)
## 5741 Thousand Clowns, A (1965)
## 5742 Andrei Rublev (Andrey Rublyov) (1969)
## 5743 Au Hasard Balthazar (1966)
## 5744 Batman (1966)
## 5745 Manos: The Hands of Fate (1966)
## 5746 Asterix and the Gauls (Astérix le Gaulois) (1967)
## 5747 Don't Look Back (1967)
## 5748 Fando and Lis (Fando y Lis) (1968)
## 5749 Play Time (a.k.a. Playtime) (1967)
## 5750 Point Blank (1967)
## 5751 Titicut Follies (1967)
## 5752 Two for the Road (1967)
## 5753 Up the Down Staircase (1967)
## 5754 Heart Is a Lonely Hunter, The (1968)
## 5755 Yours, Mine and Ours (1968)
## 5756 Alice's Restaurant (1969)
## 5757 My Night At Maud's (Ma Nuit Chez Maud) (1969)
## 5758 Swedish Love Story, A (Kärlekshistoria, En) (1970)
## 5759 Landlord, The (1970)
## 5760 Performance (1970)
## 5761 The Devils (1971)
## 5762 Duel (1971)
## 5763 Mon Oncle Antoine (1971)
## 5764 Topo, El (1970)
## 5765 Dr. Phibes Rises Again (1972)
## 5766 The Tall Blond Man with One Black Shoe (1972)
## 5767 Lady Sings the Blues (1972)
## 5768 My Name Is Nobody (Il Mio nome è Nessuno) (1973)
## 5769 Scarecrow (1973)
## 5770 Sisters (1973)
## 5771 California Split (1974)
## 5772 Emmanuelle (1974)
## 5773 Phantom of Liberty, The (Fantôme de la liberté, Le) (1974)
## 5774 Flesh for Frankenstein (a.k.a. Andy Warhol's Frankenstein) (1973)
## 5775 Gone in 60 Seconds (1974)
## 5776 Groove Tube, The (1974)
## 5777 Harry and Tonto (1974)
## 5778 Hearts and Minds (1974)
## 5779 Holy Mountain, The (Montaña sagrada, La) (1973)
## 5780 Cousin cousine (1975)
## 5781 Farewell, My Lovely (1975)
## 5782 Story of Adele H., The (Histoire d'Adèle H., L') (1975)
## 5783 Night Moves (1975)
## 5784 Passenger, The (Professione: reporter) (1975)
## 5785 Harlan County U.S.A. (1976)
## 5786 The Missouri Breaks (1976)
## 5787 Silver Streak (1976)
## 5788 High Anxiety (1977)
## 5789 New York, New York (1977)
## 5790 Sorcerer (1977)
## 5791 Turning Point, The (1977)
## 5792 Gates of Heaven (1978)
## 5793 Hobbit, The (1977)
## 5794 In Praise of Older Women (1978)
## 5795 Clonus Horror, The (1979)
## 5796 Snake in the Eagle's Shadow (Se ying diu sau) (1978)
## 5797 Wedding, A (1978)
## 5798 Hair (1979)
## 5799 In-Laws, The (1979)
## 5800 Luna, La (1979)
## 5801 Starting Over (1979)
## 5802 Bad Boys (1983)
## 5803 Blue Thunder (1983)
## 5804 Day After, The (1983)
## 5805 Eddie Murphy Delirious (1983)
## 5806 Norte, El (1984)
## 5807 Raiders of Atlantis, The (1983)
## 5808 Rumble Fish (1983)
## 5809 Star 80 (1983)
## 5810 Twilight Zone: The Movie (1983)
## 5811 Suburbia (1984)
## 5812 Choose Me (1984)
## 5813 Comfort and Joy (1984)
## 5814 Electric Dreams (1984)
## 5815 Ice Pirates, The (1984)
## 5816 Times of Harvey Milk, The (1984)
## 5817 Anne of Green Gables (1985)
## 5818 Police Story (Ging chaat goo si) (1985)
## 5819 Quiet Earth, The (1985)
## 5820 Spies Like Us (1985)
## 5821 White Nights (1985)
## 5822 'Round Midnight (1986)
## 5823 Ginger and Fred (Ginger e Fred) (1986)
## 5824 Sacrifice, The (Offret - Sacraficatio) (1986)
## 5825 Sherman's March (1985)
## 5826 Better Tomorrow, A (Ying hung boon sik) (1986)
## 5827 Decalogue, The (Dekalog) (1989)
## 5828 Law of Desire (Ley del deseo, La) (1987)
## 5829 Prince of Darkness (1987)
## 5830 Chinese Ghost Story, A (Sinnui yauwan) (1987)
## 5831 Bourne Identity, The (1988)
## 5832 Dominick and Eugene (1988)
## 5833 Alice (Neco z Alenky) (1988)
## 5834 Lonesome Dove (1989)
## 5835 Common Threads: Stories from the Quilt (1989)
## 5836 Kiki's Delivery Service (Majo no takkyûbin) (1989)
## 5837 Monsieur Hire (1989)
## 5838 Cry-Baby (1990)
## 5839 Frankenhooker (1990)
## 5840 Ghost Dad (1990)
## 5841 Havana (1990)
## 5842 It (1990)
## 5843 Ju Dou (1990)
## 5844 Krays, The (1990)
## 5845 Nuns on the Run (1990)
## 5846 Patlabor: The Movie (Kidô keisatsu patorebâ: The Movie) (1989)
## 5847 Reflecting Skin, The (1990)
## 5848 State of Grace (1990)
## 5849 35 Up (1991)
## 5850 Dutch (1991)
## 5851 Hearts of Darkness: A Filmmakers Apocalypse (1991)
## 5852 Homicide (1991)
## 5853 Johnny Stecchino (1991)
## 5854 Riki-Oh: The Story of Ricky (Lik Wong) (1991)
## 5855 Light Sleeper (1992)
## 5856 Prospero's Books (1991)
## 5857 Quigley Down Under (1990)
## 5858 Johnny Suede (1991)
## 5859 Porco Rosso (Crimson Pig) (Kurenai no buta) (1992)
## 5860 Mambo Kings, The (1992)
## 5861 Night and the City (1992)
## 5862 Story of Qiu Ju, The (Qiu Ju da guan si) (1992)
## 5863 Shining Through (1992)
## 5864 Visions of Light: The Art of Cinematography (1992)
## 5865 Baby of Mâcon, The (a.k.a. The Baby of Macon) (1993)
## 5866 Bad Boy Bubby (1993)
## 5867 Barbarians at the Gate (1993)
## 5868 Fortress (1992)
## 5869 Positively True Adventures of the Alleged Texas Cheerleader-Murdering Mom, The (1993)
## 5870 Snapper, The (1993)
## 5871 Sonatine (Sonachine) (1993)
## 5872 Tai Chi Master (Twin Warriors) (Tai ji: Zhang San Feng) (1993)
## 5873 Three of Hearts (1993)
## 5874 71 Fragments of a Chronology of Chance (71 Fragmente einer Chronologie des Zufalls) (1994)
## 5875 Darkman II: Return of Durant, The (1995)
## 5876 Fist of Legend (Jing wu ying xiong) (1994)
## 5877 Major League II (1994)
## 5878 Defender, The (a.k.a. Bodyguard from Beijing, The) (Zhong Nan Hai bao biao) (1994)
## 5879 Whisper of the Heart (Mimi wo sumaseba) (1995)
## 5880 Tromeo and Juliet (1996)
## 5881 Pusher (1996)
## 5882 Gummo (1997)
## 5883 Lion King II: Simba's Pride, The (1998)
## 5884 From the Earth to the Moon (1998)
## 5885 Interview, The (1998)
## 5886 Gia (1998)
## 5887 Thursday (1998)
## 5888 Who Am I? (Wo shi shei) (1998)
## 5889 Addams Family Reunion (1998)
## 5890 Lady Snowblood (Shurayukihime) (1973)
## 5891 Neon Genesis Evangelion: The End of Evangelion (Shin seiki Evangelion Gekijô-ban: Air/Magokoro wo, kimi ni) (1997)
## 5892 In July (Im Juli) (2000)
## 5893 Kirikou and the Sorceress (Kirikou et la sorcière) (1998)
## 5894 Taxi 2 (2000)
## 5895 10th Kingdom, The (2000)
## 5896 Extremely Goofy Movie, An (2000)
## 5897 Wind Will Carry Us, The (Bad ma ra khahad bord) (1999)
## 5898 2046 (2004)
## 5899 Audition (Ãâdishon) (1999)
## 5900 Paragraph 175 (2000)
## 5901 Paradise Lost 2: Revelations (2000)
## 5902 Sound and Fury (2000)
## 5903 The Hole (2001)
## 5904 Spiral (2000)
## 5905 Daria: Is It Fall Yet? (2000)
## 5906 61* (2001)
## 5907 Tunnel, The (Tunnel, Der) (2001)
## 5908 Joint Security Area (Gongdong gyeongbi guyeok JSA) (2000)
## 5909 Conspiracy (2001)
## 5910 Jalla! Jalla! (2000)
## 5911 O Auto da Compadecida (Dog's Will, A) (2000)
## 5912 Blood: The Last Vampire (2000)
## 5913 Ali G Indahouse (2002)
## 5914 Cube 2: Hypercube (2002)
## 5915 My Sassy Girl (Yeopgijeogin geunyeo) (2001)
## 5916 Waterboys (2001)
## 5917 Fubar (2002)
## 5918 Sympathy for Mr. Vengeance (Boksuneun naui geot) (2002)
## 5919 Suicide Club (Jisatsu saakuru) (2001)
## 5920 Battlestar Galactica (2003)
## 5921 Soldier's Girl (2003)
## 5922 Bright Young Things (2003)
## 5923 Animatrix, The (2003)
## 5924 Brown Bunny, The (2003)
## 5925 11:14 (2003)
## 5926 Bring It On Again (2004)
## 5927 Crimson Rivers 2: Angels of the Apocalypse (Rivières pourpres II - Les anges de l'apocalypse, Les) (2004)
## 5928 Evil (Ondskan) (2003)
## 5929 Battle Royale 2: Requiem (Batoru rowaiaru II: Chinkonka) (2003)
## 5930 Lemony Snicket's A Series of Unfortunate Events (2004)
## 5931 Bukowski: Born into This (2003)
## 5932 Very Long Engagement, A (Un long dimanche de fiançailles) (2004)
## 5933 Last Life in the Universe (Ruang rak noi nid mahasan) (2003)
## 5934 Hitler: The Rise of Evil (2003)
## 5935 Head-On (Gegen die Wand) (2004)
## 5936 Ghost in the Shell 2: Innocence (a.k.a. Innocence) (Inosensu) (2004)
## 5937 Cat Returns, The (Neko no ongaeshi) (2002)
## 5938 Twilight Samurai, The (Tasogare Seibei) (2002)
## 5939 'Salem's Lot (2004)
## 5940 Intimate Strangers (Confidences trop intimes) (2004)
## 5941 Ju-on: The Grudge (2002)
## 5942 Old Boy (2003)
## 5943 Ginger Snaps Back: The Beginning (2004)
## 5944 Lost Embrace (Abrazo partido, El) (2004)
## 5945 One Missed Call (Chakushin ari) (2003)
## 5946 Jacket, The (2005)
## 5947 Millions (2004)
## 5948 Saddest Music in the World, The (2003)
## 5949 Starship Troopers 2: Hero of the Federation (2004)
## 5950 Ju-on: The Grudge 2 (2003)
## 5951 Interstella 5555: The 5tory of the 5ecret 5tar 5ystem (2003)
## 5952 Ong-Bak: The Thai Warrior (Ong Bak) (2003)
## 5953 Infernal Affairs 2 (Mou gaan dou II) (2003)
## 5954 Sea Inside, The (Mar adentro) (2004)
## 5955 Spanglish (2004)
## 5956 Festival Express (2003)
## 5957 Chorus, The (Choristes, Les) (2004)
## 5958 Saints and Soldiers (2003)
## 5959 Interpreter, The (2005)
## 5960 Open Water (2003)
## 5961 Touch of Pink (2004)
## 5962 Layer Cake (2004)
## 5963 Return, The (Vozvrashcheniye) (2003)
## 5964 Flight of the Phoenix (2004)
## 5965 Mean Creek (2004)
## 5966 Ring Two, The (2005)
## 5967 Corporation, The (2003)
## 5968 Yes Men, The (2003)
## 5969 Fond Kiss, A (Ae Fond Kiss...) (2004)
## 5970 As it is in Heaven (SÃÂ¥ som i himmelen) (2004)
## 5971 Football Factory, The (2004)
## 5972 Tae Guk Gi: The Brotherhood of War (Taegukgi hwinalrimyeo) (2004)
## 5973 Something the Lord Made (2004)
## 5974 Metallica: Some Kind of Monster (2004)
## 5975 Redemption: The Stan Tookie Williams Story (2004)
## 5976 Schultze Gets the Blues (2003)
## 5977 Born into Brothels (2004)
## 5978 DiG! (2004)
## 5979 Riding Giants (2004)
## 5980 What the #$*! Do We Know!? (a.k.a. What the Bleep Do We Know!?) (2004)
## 5981 Scanner Darkly, A (2006)
## 5982 Outfoxed: Rupert Murdoch's War on Journalism (2004)
## 5983 Jerry Seinfeld: 'I'm Telling You for the Last Time' (1998)
## 5984 Million Dollar Baby (2004)
## 5985 Narrow Margin, The (1952)
## 5986 Vincent & Theo (1990)
## 5987 Gozu (Gokudô kyôfu dai-gekijô: Gozu) (2003)
## 5988 Hotel Rwanda (2004)
## 5989 Blood and Black Lace (Sei donne per l'assassino) (1964)
## 5990 Charlie and the Chocolate Factory (2005)
## 5991 3-Iron (Bin-jip) (2004)
## 5992 Life Aquatic with Steve Zissou, The (2004)
## 5993 Aviator, The (2004)
## 5994 Phantom of the Opera, The (2004)
## 5995 Beyond the Sea (2004)
## 5996 Woodsman, The (2004)
## 5997 In Good Company (2004)
## 5998 Meet the Fockers (2004)
## 5999 Assassination of Richard Nixon, The (2004)
## 6000 Love Song for Bobby Long, A (2004)
## 6001 Merchant of Venice, The (2004)
## 6002 Kamikaze Girls (Shimotsuma monogatari) (2004)
## 6003 Fat Albert (2004)
## 6004 In the Realms of the Unreal (2004)
## 6005 White Noise (2005)
## 6006 Upside of Anger, The (2005)
## 6007 Sweet Liberty (1986)
## 6008 Phantom of the Opera, The (1989)
## 6009 Testament (1983)
## 6010 Stander (2003)
## 6011 Hester Street (1975)
## 6012 Bigamist, The (1953)
## 6013 Imaginary Heroes (2004)
## 6014 Sergeant York (1941)
## 6015 Wizards (1977)
## 6016 Abbott and Costello Meet the Invisible Man (1951)
## 6017 Life and Death of Peter Sellers, The (2004)
## 6018 Appleseed (Appurushîdo) (2004)
## 6019 Many Adventures of Winnie the Pooh, The (1977)
## 6020 Elektra (2005)
## 6021 Coach Carter (2005)
## 6022 Shivers (They Came from Within) (1975)
## 6023 Star Is Born, A (1976)
## 6024 Beastmaster 2: Through the Portal of Time (1991)
## 6025 Memories of Murder (Salinui chueok) (2003)
## 6026 Hobson's Choice (1954)
## 6027 Summer Storm (Sommersturm) (2004)
## 6028 Downfall (Untergang, Der) (2004)
## 6029 White Sound, The (Das weiße Rauschen) (2001)
## 6030 Assault on Precinct 13 (2005)
## 6031 Are We There Yet? (2005)
## 6032 Hide and Seek (2005)
## 6033 Boogeyman (2005)
## 6034 Wedding Date, The (2005)
## 6035 Rory O'Shea Was Here (Inside I'm Dancing) (2004)
## 6036 Nobody Knows (Dare mo shiranai) (2004)
## 6037 Employee of the Month (2004)
## 6038 Salem's Lot (1979)
## 6039 Marriage of Maria Braun, The (Ehe der Maria Braun, Die) (1979)
## 6040 Bitter Tears of Petra von Kant, The (bitteren Tränen der Petra von Kant, Die) (1972)
## 6041 Lessons of Darkness (Lektionen in Finsternis) (1992)
## 6042 Fata Morgana (1971)
## 6043 Howl's Moving Castle (Hauru no ugoku shiro) (2004)
## 6044 Steamboy (Suchîmubôi) (2004)
## 6045 Nomi Song, The (2004)
## 6046 Hitch (2005)
## 6047 Inside Deep Throat (2005)
## 6048 Bride & Prejudice (2004)
## 6049 Constantine (2005)
## 6050 Because of Winn-Dixie (2005)
## 6051 Pauly Shore Is Dead (2003)
## 6052 Bunny Lake Is Missing (1965)
## 6053 The Boyfriend School (1990)
## 6054 Night and the City (1950)
## 6055 Night Watch (Nochnoy dozor) (2004)
## 6056 Kung Fu Hustle (Gong fu) (2004)
## 6057 Zelary (2003)
## 6058 Seven-Per-Cent Solution, The (1976)
## 6059 Three Musketeers, The (1973)
## 6060 Masculin Féminin (1966)
## 6061 Control (Kontroll) (2003)
## 6062 5x2 (2004)
## 6063 Bed & Board (Domicile conjugal) (1970)
## 6064 Germany Year Zero (Germania anno zero) (Deutschland im Jahre Null) (1948)
## 6065 Pacifier, The (2005)
## 6066 Be Cool (2005)
## 6067 Gunner Palace (2004)
## 6068 Walk on Water (2004)
## 6069 Hostage (2005)
## 6070 Robots (2005)
## 6071 Godzilla vs. Mechagodzilla II (Gojira VS Mekagojira) (1993)
## 6072 Agony and the Ecstasy, The (1965)
## 6073 Once Upon a Forest (1993)
## 6074 Twentieth Century (1934)
## 6075 Chronicles (Crónicas) (2004)
## 6076 Green Berets, The (1968)
## 6077 Brian's Song (1971)
## 6078 Thriller: A Cruel Picture (Thriller - en grym film) (1974)
## 6079 Julia (1977)
## 6080 The 3 Penny Opera (1931)
## 6081 Ice Princess (2005)
## 6082 Melinda and Melinda (2004)
## 6083 Miss Congeniality 2: Armed and Fabulous (2005)
## 6084 Guess Who (2005)
## 6085 League of Ordinary Gentlemen, A (2004)
## 6086 Stella Dallas (1937)
## 6087 Thief and the Cobbler, The (a.k.a. Arabian Knight) (1995)
## 6088 Panic in the Streets (1950)
## 6089 Call Northside 777 (1948)
## 6090 Bells Are Ringing (1960)
## 6091 Sword of Doom, The (Dai-bosatsu tôge) (1966)
## 6092 Attack of the Mushroom People (Matango) (1963)
## 6093 Carmen (1983)
## 6094 Pom Poko (a.k.a. Raccoon War, The) (Heisei tanuki gassen pompoko) (1994)
## 6095 Knockin' on Heaven's Door (1997)
## 6096 City of Hope (1991)
## 6097 We're No Angels (1955)
## 6098 Walker (1987)
## 6099 The Earrings of Madame de... (1953)
## 6100 Memories (Memorîzu) (1995)
## 6101 Harvie Krumpet (2003)
## 6102 Wild Parrots of Telegraph Hill, The (2003)
## 6103 Sin City (2005)
## 6104 Look at Me (Comme une image) (2004)
## 6105 Sahara (2005)
## 6106 Fever Pitch (2005)
## 6107 Electra Glide in Blue (1973)
## 6108 National Lampoon's Lady Killers (National Lampoon's Gold Diggers) (2003)
## 6109 Blood on Satan's Claw (a.k.a. Satan's Skin) (1971)
## 6110 Little Girl Who Lives Down the Lane, The (1976)
## 6111 Arabian Nights (Il fiore delle mille e una notte) (1974)
## 6112 Ringu 0: Bâsudei (2000)
## 6113 Satan's Brew (Satansbraten) (1976)
## 6114 Sexmission (Seksmisja) (1984)
## 6115 Vincent (1982)
## 6116 Waterloo Bridge (1940)
## 6117 Sorrow and the Pity, The (Le chagrin et la pitié) (1969)
## 6118 Big Store, The (1941)
## 6119 Ivan's Childhood (a.k.a. My Name is Ivan) (Ivanovo detstvo) (1962)
## 6120 Trip to the Moon, A (Voyage dans la lune, Le) (1902)
## 6121 Carrie (2002)
## 6122 Life Is Sweet (1990)
## 6123 Hitchhiker's Guide to the Galaxy, The (2005)
## 6124 Dark Habits (Entre tinieblas) (1983)
## 6125 Amityville Horror, The (2005)
## 6126 Before the Fall (NaPolA - Elite für den Führer) (2004)
## 6127 Palindromes (2004)
## 6128 Lot Like Love, A (2005)
## 6129 Enron: The Smartest Guys in the Room (2005)
## 6130 xXx: State of the Union (2005)
## 6131 Kingdom of Heaven (2005)
## 6132 House of Wax (2005)
## 6133 Crash (2004)
## 6134 Mysterious Skin (2004)
## 6135 Buying the Cow (2002)
## 6136 Cocoanuts, The (1929)
## 6137 Off the Map (2003)
## 6138 25 Watts (2001)
## 6139 Unleashed (Danny the Dog) (2005)
## 6140 Star Wars: Episode III - Revenge of the Sith (2005)
## 6141 Kicking & Screaming (2005)
## 6142 Monster-in-Law (2005)
## 6143 Snow Walker, The (2003)
## 6144 Uninvited, The (1944)
## 6145 Bad Guy (Nabbeun namja) (2001)
## 6146 Madagascar (2005)
## 6147 Somersault (2004)
## 6148 Mad Hot Ballroom (2005)
## 6149 Longest Yard, The (2005)
## 6150 Cinderella Man (2005)
## 6151 Sisterhood of the Traveling Pants, The (2005)
## 6152 Lords of Dogtown (2005)
## 6153 Mr. & Mrs. Smith (2005)
## 6154 Adventures of Sharkboy and Lavagirl 3-D, The (2005)
## 6155 High Tension (Haute tension) (Switchblade Romance) (2003)
## 6156 Parineeta (2005)
## 6157 Innocent Voices (Voces inocentes) (2004)
## 6158 Anna and the King of Siam (1946)
## 6159 Batman Begins (2005)
## 6160 My Summer of Love (2004)
## 6161 Saint Ralph (2004)
## 6162 Herbie: Fully Loaded (2005)
## 6163 Land of the Dead (2005)
## 6164 Bewitched (2005)
## 6165 Rize (2005)
## 6166 Me and You and Everyone We Know (2005)
## 6167 3 Extremes (Three... Extremes) (Saam gaang yi) (2004)
## 6168 Edukators, The (Die Fetten Jahre sind vorbei) (2004)
## 6169 Unmarried Woman, An (1978)
## 6170 Member of the Wedding, The (1952)
## 6171 Room Service (1938)
## 6172 At the Circus (1939)
## 6173 War of the Worlds (2005)
## 6174 March of the Penguins (Marche de l'empereur, La) (2005)
## 6175 Rebound (2005)
## 6176 Dark Water (2005)
## 6177 Fantastic Four (2005)
## 6178 Murderball (2005)
## 6179 Wedding Crashers (2005)
## 6180 Happy Endings (2005)
## 6181 Russian Dolls (Les poupées russes) (2005)
## 6182 Hustle & Flow (2005)
## 6183 Island, The (2005)
## 6184 Bad News Bears (2005)
## 6185 Devil's Rejects, The (2005)
## 6186 Last Days (2005)
## 6187 Sky High (2005)
## 6188 Stealth (2005)
## 6189 Must Love Dogs (2005)
## 6190 Aristocrats, The (2005)
## 6191 Georgy Girl (1966)
## 6192 This Is My Life (1992)
## 6193 Serenity (2005)
## 6194 Sholay (1975)
## 6195 Broken Flowers (2005)
## 6196 Berserk (1967)
## 6197 Dukes of Hazzard, The (2005)
## 6198 The Chumscrubber (2005)
## 6199 Junebug (2005)
## 6200 Deuce Bigalow: European Gigolo (2005)
## 6201 Skeleton Key, The (2005)
## 6202 Four Brothers (2005)
## 6203 The Great Raid (2005)
## 6204 Grizzly Man (2005)
## 6205 Girl in the Café, The (2005)
## 6206 Prime Cut (1972)
## 6207 Best of Everything, The (1959)
## 6208 40-Year-Old Virgin, The (2005)
## 6209 Red Eye (2005)
## 6210 Dreamchild (1985)
## 6211 Hidden (a.k.a. Cache) (Caché) (2005)
## 6212 Asterix & Obelix vs. Caesar (Astérix et Obélix contre César) (1999)
## 6213 Valiant (2005)
## 6214 Brothers Grimm, The (2005)
## 6215 Cave, The (2005)
## 6216 Constant Gardener, The (2005)
## 6217 Transporter 2 (2005)
## 6218 Just Like Heaven (2005)
## 6219 Proof (2005)
## 6220 Lord of War (2005)
## 6221 Cry_Wolf (a.k.a. Cry Wolf) (2005)
## 6222 Everything Is Illuminated (2005)
## 6223 In Old Chicago (1937)
## 6224 Family Guy Presents Stewie Griffin: The Untold Story (2005)
## 6225 New Police Story (Xin jing cha gu shi) (2004)
## 6226 Go West (1940)
## 6227 Why We Fight (2005)
## 6228 200 Motels (1971)
## 6229 Doom (2005)
## 6230 Domino (2005)
## 6231 Waiting... (2005)
## 6232 Aeon Flux (2005)
## 6233 Unfinished Life, An (2005)
## 6234 Man, The (2005)
## 6235 Exorcism of Emily Rose, The (2005)
## 6236 Flightplan (2005)
## 6237 Corpse Bride (2005)
## 6238 Green Street Hooligans (a.k.a. Hooligans) (2005)
## 6239 History of Violence, A (2005)
## 6240 Oliver Twist (2005)
## 6241 Greatest Game Ever Played, The (2005)
## 6242 Capote (2005)
## 6243 Anderson Tapes, The (1971)
## 6244 Final Fantasy VII: Advent Children (2004)
## 6245 Into the Blue (2005)
## 6246 Prize Winner of Defiance Ohio, The (2005)
## 6247 MirrorMask (2005)
## 6248 Wallace & Gromit in The Curse of the Were-Rabbit (2005)
## 6249 Kiss Kiss Bang Bang (2005)
## 6250 No Direction Home: Bob Dylan (2005)
## 6251 Hail the Conquering Hero (1944)
## 6252 Angels in America (2003)
## 6253 In Her Shoes (2005)
## 6254 Squid and the Whale, The (2005)
## 6255 Two for the Money (2005)
## 6256 Separate Lies (2005)
## 6257 Star Wreck: In the Pirkinning (2005)
## 6258 Brokeback Mountain (2005)
## 6259 Elizabethtown (2005)
## 6260 North Country (2005)
## 6261 Good Night, and Good Luck. (2005)
## 6262 Dreamer: Inspired by a True Story (2005)
## 6263 Proposition, The (2005)
## 6264 C.S.A.: The Confederate States of America (2004)
## 6265 Left Behind: World at War (2005)
## 6266 Shopgirl (2005)
## 6267 Kids in America (2005)
## 6268 Where the Truth Lies (2005)
## 6269 After School Special (a.k.a. Barely Legal) (2003)
## 6270 Stay (2005)
## 6271 Legend of Zorro, The (2005)
## 6272 Weather Man, The (2005)
## 6273 Saw II (2005)
## 6274 Teorema (1968)
## 6275 American Pie Presents: Band Camp (American Pie 4: Band Camp) (2005)
## 6276 Life is a Miracle (Zivot je cudo) (2004)
## 6277 Tarzan and His Mate (1934)
## 6278 Manderlay (2005)
## 6279 Love on the Run (Amour en fuite, L') (1979)
## 6280 Revolver (2005)
## 6281 Wild Zero (2000)
## 6282 Jarhead (2005)
## 6283 Chicken Little (2005)
## 6284 Dead Man's Shoes (2004)
## 6285 Joyeux Noël (Merry Christmas) (2005)
## 6286 Match Factory Girl, The (Tulitikkutehtaan tyttö) (1990)
## 6287 Get Rich or Die Tryin' (2005)
## 6288 Just Friends (2005)
## 6289 Syriana (2005)
## 6290 One-Way Ticket to Mombasa (Menolippu Mombasaan) (2002)
## 6291 Derailed (2005)
## 6292 Pride & Prejudice (2005)
## 6293 Wolf Creek (2005)
## 6294 Descent, The (2005)
## 6295 Harry Potter and the Goblet of Fire (2005)
## 6296 Dinner with Friends (2001)
## 6297 Walk the Line (2005)
## 6298 Rent (2005)
## 6299 Fists in the Pocket (Pugni in tasca, I) (1965)
## 6300 Zathura (2005)
## 6301 C.R.A.Z.Y. (2005)
## 6302 Sarah Silverman: Jesus Is Magic (2005)
## 6303 Ice Harvest, The (2005)
## 6304 Sounder (1972)
## 6305 Match Point (2005)
## 6306 Nazarin (NazarÃÂn) (1959)
## 6307 Paradise Now (2005)
## 6308 Chronicles of Narnia: The Lion, the Witch and the Wardrobe, The (2005)
## 6309 King Kong (2005)
## 6310 Memoirs of a Geisha (2005)
## 6311 Family Stone, The (2005)
## 6312 Kiss of Death (1947)
## 6313 Dona Flor and Her Two Husbands (Dona Flor e Seus Dois Maridos) (1976)
## 6314 Matador, The (2005)
## 6315 Mozart and the Whale (2005)
## 6316 Three Burials of Melquiades Estrada, The (2006)
## 6317 Slim Susie (Smala Sussie) (2003)
## 6318 Munich (2005)
## 6319 Producers, The (2005)
## 6320 Transamerica (2005)
## 6321 Rumor Has It... (2005)
## 6322 Cheaper by the Dozen 2 (2005)
## 6323 Fun with Dick and Jane (2005)
## 6324 Ringer, The (2005)
## 6325 Casanova (2005)
## 6326 Richard Pryor: Live in Concert (1979)
## 6327 Luxo Jr. (1986)
## 6328 Keeping Mum (2005)
## 6329 Late Spring (Banshun) (1949)
## 6330 Threads (1984)
## 6331 New World, The (2005)
## 6332 Lady Vengeance (Sympathy for Lady Vengeance) (Chinjeolhan geumjassi) (2005)
## 6333 Cutting Edge: The Magic of Movie Editing, The (2004)
## 6334 49th Parallel (1941)
## 6335 District 13 (Banlieue 13) (2004)
## 6336 BloodRayne (2005)
## 6337 Hostel (2005)
## 6338 Grandma's Boy (2006)
## 6339 Tristan & Isolde (2006)
## 6340 Glory Road (2006)
## 6341 Last Holiday (2006)
## 6342 Hoodwinked! (2005)
## 6343 Underworld: Evolution (2006)
## 6344 Looking for Comedy in the Muslim World (2005)
## 6345 Shadows of Our Forgotten Ancestors (Tini zabutykh predkiv) (1964)
## 6346 Cul-de-sac (1966)
## 6347 Riding Alone for Thousands of Miles (Qian li zou dan qi) (2005)
## 6348 Project A ('A' gai waak) (1983)
## 6349 Little Manhattan (2005)
## 6350 Over the Edge (1979)
## 6351 On Probation (Tiempo de Valientes) (2005)
## 6352 Water (2005)
## 6353 Temptations, The (1998)
## 6354 Sophie Scholl: The Final Days (Sophie Scholl - Die letzten Tage) (2005)
## 6355 Matti: Hell Is for Heroes (Matti) (2006)
## 6356 World's Fastest Indian, The (2005)
## 6357 Bandidas (2006)
## 6358 Annapolis (2006)
## 6359 Big Momma's House 2 (2006)
## 6360 Nanny McPhee (2005)
## 6361 Bye Bye Birdie (1963)
## 6362 Final Destination 3 (2006)
## 6363 Block Party (a.k.a. Dave Chappelle's Block Party) (2005)
## 6364 Imagine Me & You (2005)
## 6365 Call of Cthulhu, The (2005)
## 6366 Pink Panther, The (2006)
## 6367 Troll (1986)
## 6368 Curious George (2006)
## 6369 Firewall (2006)
## 6370 Tony Takitani (2004)
## 6371 When a Stranger Calls (2006)
## 6372 London (2005)
## 6373 Neil Young: Heart of Gold (2006)
## 6374 Eight Below (2006)
## 6375 Date Movie (2006)
## 6376 Running Scared (2006)
## 6377 Ultraviolet (2006)
## 6378 Just My Luck (2006)
## 6379 Pulse (2006)
## 6380 16 Blocks (2006)
## 6381 Failure to Launch (2006)
## 6382 Ice Age 2: The Meltdown (2006)
## 6383 Stromboli (1950)
## 6384 V for Vendetta (2006)
## 6385 She's the Man (2006)
## 6386 Thank You for Smoking (2006)
## 6387 Find Me Guilty (2006)
## 6388 Inside Man (2006)
## 6389 Tsotsi (2005)
## 6390 Aquamarine (2006)
## 6391 Leprechaun in the Hood (2000)
## 6392 Lights in the Dusk (Laitakaupungin valot) (2006)
## 6393 Kummeli Stories (1995)
## 6394 Hills Have Eyes, The (2006)
## 6395 Personal Journey with Martin Scorsese Through American Movies, A (1995)
## 6396 Unknown White Male (2005)
## 6397 Lives of Others, The (Das leben der Anderen) (2006)
## 6398 Nanook of the North (1922)
## 6399 Youth of the Beast (Yaju no seishun) (1963)
## 6400 Take the Lead (2006)
## 6401 Devil and Daniel Johnston, The (2005)
## 6402 Lucky Number Slevin (2006)
## 6403 Wild Blue Yonder, The (2005)
## 6404 Volver (2006)
## 6405 Akeelah and the Bee (2006)
## 6406 Lisbela e o Prisioneiro (Lisbela and the Prisoner) (2003)
## 6407 Stay Alive (2006)
## 6408 Basic Instinct 2 (2006)
## 6409 Brick (2005)
## 6410 This Film Is Not Yet Rated (2006)
## 6411 Slither (2006)
## 6412 Benchwarmers, The (2006)
## 6413 Renaissance (2006)
## 6414 Friends with Money (2006)
## 6415 Magic (1978)
## 6416 Scary Movie 4 (2006)
## 6417 Hard Candy (2005)
## 6418 Chinoise, La (1967)
## 6419 Prairie Home Companion, A (2006)
## 6420 Sentinel, The (2006)
## 6421 Silent Hill (2006)
## 6422 23 (23 - Nichts ist so wie es scheint) (1998)
## 6423 Glass Key, The (1942)
## 6424 Protector, The (a.k.a. Warrior King) (Tom yum goong) (2005)
## 6425 Mission: Impossible III (2006)
## 6426 RV (2006)
## 6427 United 93 (2006)
## 6428 Stick It (2006)
## 6429 Down in the Valley (2005)
## 6430 Over the Hedge (2006)
## 6431 Art School Confidential (2006)
## 6432 Poseidon (2006)
## 6433 Da Vinci Code, The (2006)
## 6434 X-Men: The Last Stand (2006)
## 6435 Break-Up, The (2006)
## 6436 Twelve and Holding (2005)
## 6437 Cars (2006)
## 6438 Wassup Rockers (2005)
## 6439 Omen, The (2006)
## 6440 Nacho Libre (2006)
## 6441 Lake House, The (2006)
## 6442 Click (2006)
## 6443 Seventh Victim, The (1943)
## 6444 Devil Wears Prada, The (2006)
## 6445 Pirates of the Caribbean: Dead Man's Chest (2006)
## 6446 You, Me and Dupree (2006)
## 6447 Clerks II (2006)
## 6448 Lady in the Water (2006)
## 6449 My Super Ex-Girlfriend (2006)
## 6450 Let It Be (1970)
## 6451 Marie Antoinette (2006)
## 6452 Who Killed the Electric Car? (2006)
## 6453 Mother and the Whore, The (Maman et la putain, La) (1973)
## 6454 Inconvenient Truth, An (2006)
## 6455 Career Opportunities (1991)
## 6456 Chuck Berry Hail! Hail! Rock 'n' Roll (1987)
## 6457 High School Musical (2006)
## 6458 Jet Li's Fearless (Huo Yuan Jia) (2006)
## 6459 Fast and the Furious: Tokyo Drift, The (Fast and the Furious 3, The) (2006)
## 6460 Garfield: A Tail of Two Kitties (2006)
## 6461 Metal: A Headbanger's Journey (2005)
## 6462 Superman Returns (2006)
## 6463 Edward II (1991)
## 6464 Road to Guantanamo, The (2006)
## 6465 Leonard Cohen: I'm Your Man (2005)
## 6466 OH in Ohio, The (2006)
## 6467 Little Miss Sunshine (2006)
## 6468 Fallen Idol, The (1948)
## 6469 Babel (2006)
## 6470 Strangers with Candy (2005)
## 6471 Wordplay (2006)
## 6472 Army of Shadows (L'armée des ombres) (1969)
## 6473 Little Man (2006)
## 6474 End of the Spear (2005)
## 6475 Monster House (2006)
## 6476 Snakes on a Plane (2006)
## 6477 Scoop (2006)
## 6478 Talladega Nights: The Ballad of Ricky Bobby (2006)
## 6479 Night at the Museum (2006)
## 6480 World Trade Center (2006)
## 6481 Stranger than Fiction (2006)
## 6482 Miami Vice (2006)
## 6483 On Dangerous Ground (1952)
## 6484 Pursuit of Happyness, The (2006)
## 6485 John Tucker Must Die (2006)
## 6486 Ant Bully, The (2006)
## 6487 Mrs. Palfrey at the Claremont (2005)
## 6488 Cria Cuervos (1976)
## 6489 Rainmaker, The (1956)
## 6490 Crank (2006)
## 6491 Secret Life of Words, The (2005)
## 6492 Chaos (2005)
## 6493 Night Listener, The (2006)
## 6494 Murmur of the Heart (Le souffle au coeur) (1971)
## 6495 Compulsion (1959)
## 6496 Dirty Mary Crazy Larry (1974)
## 6497 Step Up (2006)
## 6498 Zoom (2006)
## 6499 Mind Game (2004)
## 6500 Half Nelson (2006)
## 6501 Tideland (2005)
## 6502 Adam's Apples (Adams æbler) (2005)
## 6503 Cabin in the Sky (1943)
## 6504 Accepted (2006)
## 6505 Captain January (1936)
## 6506 Illusionist, The (2006)
## 6507 The Queen (2006)
## 6508 Beerfest (2006)
## 6509 Blithe Spirit (1945)
## 6510 Red Balloon, The (Ballon rouge, Le) (1956)
## 6511 Green for Danger (1946)
## 6512 Wicker Man, The (2006)
## 6513 Crossover (2006)
## 6514 Wind That Shakes the Barley, The (2006)
## 6515 Severance (2006)
## 6516 Hollywoodland (2006)
## 6517 Covenant, The (2006)
## 6518 SherryBaby (2006)
## 6519 Idiocracy (2006)
## 6520 Jesus Camp (2006)
## 6521 Tiger and the Snow, The (La tigre e la neve) (2005)
## 6522 Fountain, The (2006)
## 6523 Snoopy Come Home (1972)
## 6524 Science of Sleep, The (La science des rêves) (2006)
## 6525 Black Dahlia, The (2006)
## 6526 Everyone's Hero (2006)
## 6527 Seventh Continent, The (Der siebente Kontinent) (1989)
## 6528 Streamers (1983)
## 6529 Taxidermia (2006)
## 6530 Bridge, The (2006)
## 6531 Empire Falls (2005)
## 6532 Private Life of Henry VIII, The (1933)
## 6533 Apocalypto (2006)
## 6534 Flyboys (2006)
## 6535 Jackass Number Two (2006)
## 6536 Borat: Cultural Learnings of America for Make Benefit Glorious Nation of Kazakhstan (2006)
## 6537 Pan's Labyrinth (Laberinto del fauno, El) (2006)
## 6538 Open Season (2006)
## 6539 G.O.R.A. (2004)
## 6540 Departed, The (2006)
## 6541 Texas Chainsaw Massacre: The Beginning, The (2006)
## 6542 Employee of the Month (2006)
## 6543 Stormbreaker (Alex Rider: Operation Stormbreaker) (2006)
## 6544 Running With Scissors (2006)
## 6545 Grudge 2, The (2006)
## 6546 Man of the Year (2006)
## 6547 Marine, The (2006)
## 6548 Elementary Particles, The (Elementarteilchen) (2006)
## 6549 Offside (2006)
## 6550 Little Children (2006)
## 6551 Deliver Us from Evil (2006)
## 6552 Facing the Giants (2006)
## 6553 Last King of Scotland, The (2006)
## 6554 U.S. vs. John Lennon, The (2006)
## 6555 Shortbus (2006)
## 6556 Children of Men (2006)
## 6557 Prestige, The (2006)
## 6558 Flags of Our Fathers (2006)
## 6559 Flicka (2006)
## 6560 Sleeping Dogs Lie (a.k.a. Stay) (2006)
## 6561 Guide to Recognizing Your Saints, A (2006)
## 6562 13 Tzameti (2005)
## 6563 Saw III (2006)
## 6564 Lunacy (SÃÂlenÃÂ) (2006)
## 6565 Flushed Away (2006)
## 6566 Perfume: The Story of a Murderer (2006)
## 6567 Santa Clause 3: The Escape Clause, The (2006)
## 6568 Shut Up & Sing (2006)
## 6569 For Your Consideration (2006)
## 6570 Street Fight (2005)
## 6571 Shooting Dogs (a.k.a. Beyond the Gates) (2005)
## 6572 Casino Royale (2006)
## 6573 Happy Feet (2006)
## 6574 DéjàVu (Deja Vu) (2006)
## 6575 Bobby (2006)
## 6576 10 Items or Less (2006)
## 6577 Holiday, The (2006)
## 6578 Luna de Avellaneda (2004)
## 6579 Harsh Times (2006)
## 6580 Simon of the Desert (Simón del desierto) (1965)
## 6581 Tenacious D in The Pick of Destiny (2006)
## 6582 National Lampoon's Van Wilder: The Rise of Taj (2006)
## 6583 Turistas (2006)
## 6584 Blood Diamond (2006)
## 6585 Charlotte's Web (2006)
## 6586 Eragon (2006)
## 6587 Rocky Balboa (2006)
## 6588 Dam Busters, The (1955)
## 6589 Painted Veil, The (2006)
## 6590 Plague Dogs, The (1982)
## 6591 Good Shepherd, The (2006)
## 6592 Dreamgirls (2006)
## 6593 Decameron, The (Decameron, Il) (1971)
## 6594 Freedom Writers (2007)
## 6595 When the Levees Broke: A Requiem in Four Acts (2006)
## 6596 Inland Empire (2006)
## 6597 History Boys, The (2006)
## 6598 Notes on a Scandal (2006)
## 6599 Curse of the Golden Flower (Man cheng jin dai huang jin jia) (2006)
## 6600 Bothersome Man, The (Brysomme mannen, Den) (2006)
## 6601 Good German, The (2006)
## 6602 Letters from Iwo Jima (2006)
## 6603 Black Christmas (2006)
## 6604 Miss Potter (2006)
## 6605 Arthur and the Invisibles (2007)
## 6606 American Pie Presents The Naked Mile (American Pie 5: The Naked Mile) (2006)
## 6607 Alice in the Cities (Alice in den Stadten) (1974)
## 6608 Old Joy (2006)
## 6609 Alpha Dog (2007)
## 6610 Hitcher, The (2007)
## 6611 After the Wedding (Efter brylluppet) (2006)
## 6612 Linda Linda Linda (2005)
## 6613 Bridge to Terabithia (2007)
## 6614 House (Hausu) (1977)
## 6615 Kenny (2006)
## 6616 49 Up (2005)
## 6617 Waitress (2007)
## 6618 Secret, The (2006)
## 6619 Seven Up! (1964)
## 6620 7 Plus Seven (1970)
## 6621 Catch and Release (2006)
## 6622 Smokin' Aces (2006)
## 6623 Epic Movie (2007)
## 6624 Because I Said So (2007)
## 6625 Hannibal Rising (2007)
## 6626 Norbit (2007)
## 6627 Boss of It All, The (Direktøren for det hele) (2006)
## 6628 Cocaine Cowboys (2006)
## 6629 Ratatouille (2007)
## 6630 Paris, I Love You (Paris, je t'aime) (2006)
## 6631 Astronaut Farmer, The (2007)
## 6632 It's a Boy Girl Thing (2006)
## 6633 Magical Mystery Tour (1967)
## 6634 Ghost Rider (2007)
## 6635 Breach (2007)
## 6636 Music and Lyrics (2007)
## 6637 Number 23, The (2007)
## 6638 Reno 911!: Miami (2007)
## 6639 Black Snake Moan (2006)
## 6640 Gray Matters (2006)
## 6641 loudQUIETloud: A Film About the Pixies (2006)
## 6642 Factory Girl (2006)
## 6643 Street Trash (1987)
## 6644 Hot Fuzz (2007)
## 6645 36th Chamber of Shaolin, The (Shao Lin san shi liu fang) (Master Killer) (1978)
## 6646 Karla (2006)
## 6647 Citizen X (1995)
## 6648 "Great Performances" Cats (1998)
## 6649 Canterbury Tales, The (I racconti di Canterbury) (1972)
## 6650 Next (2007)
## 6651 Breaking and Entering (2006)
## 6652 Amazing Grace (2006)
## 6653 Zodiac (2007)
## 6654 Wild Hogs (2007)
## 6655 300 (2007)
## 6656 Last Mimzy, The (2007)
## 6657 Priceless (Hors de prix) (2006)
## 6658 Host, The (Gwoemul) (2006)
## 6659 America, America (1963)
## 6660 Becoming Jane (2007)
## 6661 Namesake, The (2006)
## 6662 Premonition (2007)
## 6663 Dead Silence (2007)
## 6664 Reign Over Me (2007)
## 6665 Shooter (2007)
## 6666 Hills Have Eyes II, The (2007)
## 6667 TMNT (Teenage Mutant Ninja Turtles) (2007)
## 6668 Lookout, The (2007)
## 6669 Blades of Glory (2007)
## 6670 Grindhouse (2007)
## 6671 Meet the Robinsons (2007)
## 6672 Inglorious Bastards (Quel maledetto treno blindato) (1978)
## 6673 Sunshine (2007)
## 6674 No Way Out (1950)
## 6675 How the Grinch Stole Christmas! (1966)
## 6676 Perfect Stranger (2007)
## 6677 Disturbia (2007)
## 6678 Pathfinder (2007)
## 6679 Aqua Teen Hunger Force Colon Movie Film for Theaters (2007)
## 6680 Tristana (1970)
## 6681 Puccini for Beginners (2006)
## 6682 Vie en Rose, La (Môme, La) (2007)
## 6683 Fracture (2007)
## 6684 Big Nothing (2006)
## 6685 Woman on the Beach (Haebyeonui yeoin) (2006)
## 6686 Vacancy (2007)
## 6687 Benny's Video (1992)
## 6688 In the Land of Women (2007)
## 6689 Mr. Bean's Holiday (2007)
## 6690 Invisible, The (2007)
## 6691 Condemned, The (2007)
## 6692 Spider-Man 3 (2007)
## 6693 It's a Very Merry Muppet Christmas Movie (2002)
## 6694 21 Up (1977)
## 6695 Maniac Cop (1988)
## 6696 Paprika (Papurika) (2006)
## 6697 Sylvia Scarlett (1935)
## 6698 Day Watch (Dnevnoy dozor) (2006)
## 6699 This Is England (2006)
## 6700 Away from Her (2006)
## 6701 Knocked Up (2007)
## 6702 Hairspray (2007)
## 6703 28 Weeks Later (2007)
## 6704 Jonestown: The Life and Death of Peoples Temple (2006)
## 6705 Red Dust (1932)
## 6706 Shrek the Third (2007)
## 6707 Once (2006)
## 6708 Pirates of the Caribbean: At World's End (2007)
## 6709 Mr. Brooks (2007)
## 6710 Gracie (2007)
## 6711 Librarian: Return to King Solomon's Mines, The (2006)
## 6712 Eagle vs Shark (2007)
## 6713 88 Minutes (2008)
## 6714 Cashback (2006)
## 6715 Ocean's Thirteen (2007)
## 6716 Them (Ils) (2006)
## 6717 Hostel: Part II (2007)
## 6718 Paranoid Park (2007)
## 6719 Surf's Up (2007)
## 6720 Fantastic Four: Rise of the Silver Surfer (2007)
## 6721 Nancy Drew (2007)
## 6722 Fido (2006)
## 6723 Death Proof (2007)
## 6724 Rescue Dawn (2006)
## 6725 Night of the Generals, The (1967)
## 6726 Power of Nightmares, The: The Rise of the Politics of Fear (2004)
## 6727 O Lucky Man! (1973)
## 6728 Sicko (2007)
## 6729 1408 (2007)
## 6730 Death at a Funeral (2007)
## 6731 Live Free or Die Hard (2007)
## 6732 License to Wed (2007)
## 6733 Evan Almighty (2007)
## 6734 Transformers (2007)
## 6735 Captivity (2007)
## 6736 Harry Potter and the Order of the Phoenix (2007)
## 6737 I Now Pronounce You Chuck and Larry (2007)
## 6738 Across the Universe (2007)
## 6739 Sterile Cuckoo, The (1969)
## 6740 Dorian Blues (2004)
## 6741 Hot Rod (2007)
## 6742 Stardust (2007)
## 6743 Skinwalkers (2007)
## 6744 Simpsons Movie, The (2007)
## 6745 No Reservations (2007)
## 6746 Charlie Bartlett (2007)
## 6747 Bourne Ultimatum, The (2007)
## 6748 Bratz: The Movie (2007)
## 6749 My Best Friend (Mon meilleur ami) (2006)
## 6750 You Kill Me (2007)
## 6751 Tell No One (Ne le dis ÃÂ personne) (2006)
## 6752 Czech Dream (Ceský sen) (2004)
## 6753 12:08 East of Bucharest (A fost sau n-a fost?) (2006)
## 6754 Superbad (2007)
## 6755 Talk to Me (2007)
## 6756 Rush Hour 3 (2007)
## 6757 Balls of Fury (2007)
## 6758 Sydney White (2007)
## 6759 Kingdom, The (2007)
## 6760 Rocket Science (2007)
## 6761 Daddy Day Camp (2007)
## 6762 Invasion, The (2007)
## 6763 War (2007)
## 6764 Nanny Diaries, The (2007)
## 6765 Halloween (2007)
## 6766 Death Sentence (2007)
## 6767 King of Kong, The (2007)
## 6768 Behind the Mask: The Rise of Leslie Vernon (2006)
## 6769 Planet Terror (2007)
## 6770 3:10 to Yuma (2007)
## 6771 Shoot 'Em Up (2007)
## 6772 Evening with Kevin Smith, An (2002)
## 6773 Atonement (2007)
## 6774 My Winnipeg (2007)
## 6775 4 Months, 3 Weeks and 2 Days (4 luni, 3 saptamâni si 2 zile) (2007)
## 6776 No End in Sight (2007)
## 6777 Far from the Madding Crowd (1967)
## 6778 In the Valley of Elah (2007)
## 6779 I Could Never Be Your Woman (2007)
## 6780 December Boys (2007)
## 6781 Hunting Party, The (2007)
## 6782 Eastern Promises (2007)
## 6783 Unreasonable Man, An (2006)
## 6784 Tekkonkinkreet (Tekkon kinkurîto) (2006)
## 6785 Cashback (2004)
## 6786 Resident Evil: Extinction (2007)
## 6787 Good Luck Chuck (2007)
## 6788 Into the Wild (2007)
## 6789 Game Plan, The (2007)
## 6790 Lust, Caution (Se, jie) (2007)
## 6791 Seeker: The Dark Is Rising, The (2007)
## 6792 Heartbreak Kid, The (2007)
## 6793 Dan in Real Life (2007)
## 6794 Darjeeling Limited, The (2007)
## 6795 We Own the Night (2007)
## 6796 Elizabeth: The Golden Age (2007)
## 6797 Michael Clayton (2007)
## 6798 Lars and the Real Girl (2007)
## 6799 30 Days of Night (2007)
## 6800 Gone Baby Gone (2007)
## 6801 Weirdsville (2007)
## 6802 Assassination of Jesse James by the Coward Robert Ford, The (2007)
## 6803 Irina Palm (2007)
## 6804 Persepolis (2007)
## 6805 Control (2007)
## 6806 The Jane Austen Book Club (2007)
## 6807 Silk (2007)
## 6808 Edge of Heaven, The (Auf der anderen Seite) (2007)
## 6809 Tyler Perry's Why Did I Get Married? (2007)
## 6810 Saw IV (2007)
## 6811 Scum (1979)
## 6812 City of Violence, The (Jjakpae) (2006)
## 6813 My Kid Could Paint That (2007)
## 6814 Elite Squad (Tropa de Elite) (2007)
## 6815 Martian Child (2007)
## 6816 Chilly Scenes of Winter (Head Over Heels) (1979)
## 6817 American Gangster (2007)
## 6818 Bee Movie (2007)
## 6819 Before the Devil Knows You're Dead (2007)
## 6820 Diving Bell and the Butterfly, The (Scaphandre et le papillon, Le) (2007)
## 6821 No Country for Old Men (2007)
## 6822 Be Kind Rewind (2008)
## 6823 Crazy Love (2007)
## 6824 August Rush (2007)
## 6825 Desperate Hours, The (1955)
## 6826 Man from Earth, The (2007)
## 6827 Lions For Lambs (2007)
## 6828 Beowulf (2007)
## 6829 Mr. Magorium's Wonder Emporium (2007)
## 6830 Southland Tales (2006)
## 6831 Kansas City Confidential (1952)
## 6832 Darfur Now (2007)
## 6833 Murder Party (2007)
## 6834 Smiley Face (2007)
## 6835 XXY (2007)
## 6836 Mist, The (2007)
## 6837 Enchanted (2007)
## 6838 Hitman (2007)
## 6839 Awake (2007)
## 6840 Golden Compass, The (2007)
## 6841 I Am Legend (2007)
## 6842 Alvin and the Chipmunks (2007)
## 6843 Futurama: Bender's Big Score (2007)
## 6844 Margot at the Wedding (2007)
## 6845 I'm Not There (2007)
## 6846 Savages, The (2007)
## 6847 Wrong Turn 2: Dead End (2007)
## 6848 Orphanage, The (Orfanato, El) (2007)
## 6849 Juno (2007)
## 6850 Helvetica (2007)
## 6851 Bucket List, The (2007)
## 6852 Kite Runner, The (2007)
## 6853 Butterfly on a Wheel (Shattered) (2007)
## 6854 Wristcutters: A Love Story (2006)
## 6855 Sweeney Todd: The Demon Barber of Fleet Street (2007)
## 6856 National Treasure: Book of Secrets (2007)
## 6857 There Will Be Blood (2007)
## 6858 Charlie Wilson's War (2007)
## 6859 AVPR: Aliens vs. Predator - Requiem (2007)
## 6860 Walk Hard: The Dewey Cox Story (2007)
## 6861 Drained (O cheiro do Ralo) (2006)
## 6862 Great Debaters, The (2007)
## 6863 Dedication (2007)
## 6864 Water Horse: Legend of the Deep, The (2007)
## 6865 Battlestar Galactica: Razor (2007)
## 6866 P.S. I Love You (2007)
## 6867 27 Dresses (2008)
## 6868 To the Left of the Father (Lavoura Arcaica) (2001)
## 6869 D-War (Dragon Wars) (2007)
## 6870 Band's Visit, The (Bikur Ha-Tizmoret) (2007)
## 6871 [REC] (2007)
## 6872 In the Name of the King: A Dungeon Siege Tale (2008)
## 6873 Flawless (2007)
## 6874 Cloverfield (2008)
## 6875 Cleaner (2007)
## 6876 Rachel, Rachel (1968)
## 6877 Welcome to L.A. (1976)
## 6878 Arranged (2007)
## 6879 Girl Who Leapt Through Time, The (Toki o kakeru shôjo) (2006)
## 6880 Untraceable (2008)
## 6881 Rambo (Rambo 4) (2008)
## 6882 Meet the Spartans (2008)
## 6883 Hellboy II: The Golden Army (2008)
## 6884 In Bruges (2008)
## 6885 Caramel (Sukkar banat) (2007)
## 6886 Joe Strummer: The Future Is Unwritten (2007)
## 6887 Teeth (2007)
## 6888 Fool's Gold (2008)
## 6889 Deep Water (2006)
## 6890 Art of Negative Thinking, The (Kunsten ÃÂ¥ tenke negativt) (2006)
## 6891 Jumper (2008)
## 6892 It's a Free World... (2007)
## 6893 Definitely, Maybe (2008)
## 6894 Vantage Point (2008)
## 6895 Spiderwick Chronicles, The (2008)
## 6896 Step Up 2 the Streets (2008)
## 6897 Witless Protection (2008)
## 6898 Other Boleyn Girl, The (2008)
## 6899 Semi-Pro (2008)
## 6900 Taxi to the Dark Side (2007)
## 6901 10,000 BC (2008)
## 6902 Bank Job, The (2008)
## 6903 Doomsday (2008)
## 6904 Horton Hears a Who! (2008)
## 6905 Funny Games U.S. (2007)
## 6906 Counterfeiters, The (Die Fälscher) (2007)
## 6907 Mongol (2007)
## 6908 Love Guru, The (2008)
## 6909 Penelope (2006)
## 6910 City of Men (Cidade dos Homens) (2007)
## 6911 Chicago 10 (2007)
## 6912 Zeitgeist: The Movie (2007)
## 6913 Heima (2007)
## 6914 What Just Happened (2008)
## 6915 Mala Noche (1985)
## 6916 Class, The (Klass) (2007)
## 6917 Dark Knight, The (2008)
## 6918 Never Back Down (2008)
## 6919 Napoléon (1927)
## 6920 Drillbit Taylor (2008)
## 6921 Under the Same Moon (Misma luna, La) (2007)
## 6922 21 (2008)
## 6923 Leatherheads (2008)
## 6924 Shine a Light (2008)
## 6925 Business of Being Born, The (2008)
## 6926 Chan Is Missing (1982)
## 6927 Inside (Ã\200 l'intérieur) (2007)
## 6928 Nim's Island (2008)
## 6929 Ruins, The (2008)
## 6930 Forgetting Sarah Marshall (2008)
## 6931 Superhero Movie (2008)
## 6932 Street Kings (2008)
## 6933 Visitor, The (2007)
## 6934 Harold & Kumar Escape from Guantanamo Bay (2008)
## 6935 Speed Racer (2008)
## 6936 Forbidden Kingdom, The (2008)
## 6937 Happy-Go-Lucky (2008)
## 6938 Religulous (2008)
## 6939 Son of Rambow (2007)
## 6940 Super High Me (2007)
## 6941 Tarzan Finds a Son! (1939)
## 6942 Baby Mama (2008)
## 6943 Delirious (2006)
## 6944 Prom Night (2008)
## 6945 Iron Man (2008)
## 6946 Made of Honor (2008)
## 6947 Mister Lonely (2007)
## 6948 Taken (2008)
## 6949 Fall, The (2006)
## 6950 Stargate: The Ark of Truth (2008)
## 6951 American Crime, An (2007)
## 6952 What Happens in Vegas... (2008)
## 6953 American Pie Presents Beta House (American Pie 6: Beta House) (2007)
## 6954 Fiorile (1993)
## 6955 Chronicles of Narnia: Prince Caspian, The (2008)
## 6956 Reprise (2006)
## 6957 Shelter (2007)
## 6958 Young at Heart (a.k.a. Young@Heart) (2007)
## 6959 War, Inc. (2008)
## 6960 Indiana Jones and the Kingdom of the Crystal Skull (2008)
## 6961 Following Sean (2005)
## 6962 Lake of Fire (2006)
## 6963 Grand, The (2007)
## 6964 Sex and the City (2008)
## 6965 Strangers, The (2008)
## 6966 Bigger, Stronger, Faster* (2008)
## 6967 Kung Fu Panda (2008)
## 6968 Antonio das Mortes (O Dragão da Maldade contra o Santo Guerreiro) (1969)
## 6969 Recount (2008)
## 6970 Ex Drummer (2007)
## 6971 Where the Sidewalk Ends (1950)
## 6972 100 Rifles (1969)
## 6973 Iron Mask, The (1929)
## 6974 You Don't Mess with the Zohan (2008)
## 6975 Flesh Gordon (1974)
## 6976 Mark of Zorro, The (1920)
## 6977 Chaos Theory (2007)
## 6978 Boy A (2007)
## 6979 Happening, The (2008)
## 6980 Incredible Hulk, The (2008)
## 6981 WALL÷E (2008)
## 6982 Wanted (2008)
## 6983 Hancock (2008)
## 6984 Boy Culture (2006)
## 6985 Get Smart (2008)
## 6986 Young People Fucking (a.k.a. YPF) (2007)
## 6987 Surfwise (2007)
## 6988 Rape of Europa, The (2006)
## 6989 Futurama: The Beast with a Billion Backs (2008)
## 6990 Gonzo: The Life and Work of Dr. Hunter S. Thompson (2008)
## 6991 Wackness, The (2008)
## 6992 Up the Yangtze (2007)
## 6993 Encounters at the End of the World (2008)
## 6994 Wee Willie Winkie (1937)
## 6995 Roman Polanski: Wanted and Desired (2008)
## 6996 Z Channel: A Magnificent Obsession (2004)
## 6997 Mamma Mia! (2008)
## 6998 Rogue (2007)
## 6999 It's the Great Pumpkin, Charlie Brown (1966)
## 7000 Journey to the Center of the Earth (2008)
## 7001 Meet Dave (2008)
## 7002 Death Note (2006)
## 7003 Space Chimps (2008)
## 7004 Stargate: Continuum (2008)
## 7005 Watchmen (2009)
## 7006 Felon (2008)
## 7007 Step Brothers (2008)
## 7008 X-Files: I Want to Believe, The (2008)
## 7009 American Teen (2008)
## 7010 Man on Wire (2008)
## 7011 Pathology (2008)
## 7012 Tracey Fragments, The (2007)
## 7013 Mummy: Tomb of the Dragon Emperor, The (2008)
## 7014 Frozen River (2008)
## 7015 Vicky Cristina Barcelona (2008)
## 7016 End of Summer, The (Early Autumn) (Kohayagawa-ke no aki) (1961)
## 7017 Absolute Giganten (1999)
## 7018 Pineapple Express (2008)
## 7019 Red Cliff (Chi bi) (2008)
## 7020 Sisterhood of the Traveling Pants 2, The (2008)
## 7021 Elegy (2008)
## 7022 High School Musical 2 (2007)
## 7023 Tropic Thunder (2008)
## 7024 Star Wars: The Clone Wars (2008)
## 7025 Henry Poole is Here (2008)
## 7026 In the City of Sylvia (En la ciudad de Sylvia) (2007)
## 7027 Mutant Chronicles (2008)
## 7028 Waltz with Bashir (Vals im Bashir) (2008)
## 7029 Let the Right One In (LÃÂ¥t den rätte komma in) (2008)
## 7030 Death Race (2008)
## 7031 House Bunny, The (2008)
## 7032 Sukiyaki Western Django (2008)
## 7033 Burn After Reading (2008)
## 7034 Disaster Movie (2008)
## 7035 Babylon A.D. (2008)
## 7036 Traitor (2008)
## 7037 Trouble the Water (2008)
## 7038 Women, The (2008)
## 7039 Onion Movie, The (2008)
## 7040 Spirit, The (2008)
## 7041 Bangkok Dangerous (2008)
## 7042 Son of Lassie (1945)
## 7043 DarkBlueAlmostBlack (Azuloscurocasinegro) (2006)
## 7044 Lakeview Terrace (2008)
## 7045 Ghost Town (2008)
## 7046 1984 (1956)
## 7047 Eagle Eye (2008)
## 7048 How to Lose Friends & Alienate People (2008)
## 7049 Six Shooter (2004)
## 7050 Nick and Norah's Infinite Playlist (2008)
## 7051 Martyrs (2008)
## 7052 Gomorrah (Gomorra) (2008)
## 7053 Dead Leaves (2004)
## 7054 FLCL (2000)
## 7055 Rachel Getting Married (2008)
## 7056 Body of Lies (2008)
## 7057 City of Ember (2008)
## 7058 Magicians (2007)
## 7059 20,000 Leagues Under the Sea (1916)
## 7060 Max Payne (2008)
## 7061 Zack and Miri Make a Porno (2008)
## 7062 W. (2008)
## 7063 Synecdoche, New York (2008)
## 7064 Wave, The (Welle, Die) (2008)
## 7065 Angus, Thongs and Perfect Snogging (2008)
## 7066 Quarantine (2008)
## 7067 Black Moon (1975)
## 7068 Pride and Glory (2008)
## 7069 Lone Wolf and Cub: Baby Cart to Hades (Kozure Ãâkami: Shinikazeni mukau ubaguruma) (1972)
## 7070 RocknRolla (2008)
## 7071 High School Musical 3: Senior Year (2008)
## 7072 Futurama: Bender's Game (2008)
## 7073 Madagascar: Escape 2 Africa (2008)
## 7074 Changeling (2008)
## 7075 Road, The (2009)
## 7076 Slumdog Millionaire (2008)
## 7077 Quantum of Solace (2008)
## 7078 Role Models (2008)
## 7079 Tokyo! (2008)
## 7080 Cinderella (1997)
## 7081 Crows Zero (Kurôzu zero) (2007)
## 7082 Camp Rock (2008)
## 7083 Saw V (2008)
## 7084 Sex Drive (2008)
## 7085 Soul Men (2008)
## 7086 The Island (2006)
## 7087 Beverly Hills Chihuahua (2008)
## 7088 Fanny (1961)
## 7089 Class, The (Entre les murs) (2008)
## 7090 Splinter (2008)
## 7091 Manson Family, The (2003)
## 7092 Australia (2008)
## 7093 Bolt (2008)
## 7094 Milk (2008)
## 7095 Twilight (2008)
## 7096 Transporter 3 (2008)
## 7097 Four Christmases (2008)
## 7098 Boy in the Striped Pajamas, The (Boy in the Striped Pyjamas, The) (2008)
## 7099 Fireproof (2008)
## 7100 Igor (2008)
## 7101 Devil's Chair, The (2006)
## 7102 Hunger (2008)
## 7103 Cadillac Records (2008)
## 7104 Shrek the Halls (2007)
## 7105 Pervert's Guide to Cinema, The (2006)
## 7106 Wallace and Gromit in 'A Matter of Loaf and Death' (2008)
## 7107 Friend of Mine, A (Ein Freund von mir) (2006)
## 7108 Gypsy (1993)
## 7109 Day the Earth Stood Still, The (2008)
## 7110 Che: Part One (2008)
## 7111 Che: Part Two (2008)
## 7112 Starship Troopers 3: Marauder (2008)
## 7113 Doubt (2008)
## 7114 Gran Torino (2008)
## 7115 Frost/Nixon (2008)
## 7116 Reader, The (2008)
## 7117 Waiter (Ober) (2006)
## 7118 Sword of the Stranger (Sutorejia: Mukô hadan) (2007)
## 7119 I've Loved You So Long (Il y a longtemps que je t'aime) (2008)
## 7120 Seven Pounds (2008)
## 7121 Wrestler, The (2008)
## 7122 Chinese Ghost Story II, A (Sien nui yau wan II yan gaan do) (1990)
## 7123 Curious Case of Benjamin Button, The (2008)
## 7124 Yes Man (2008)
## 7125 Valkyrie (2008)
## 7126 Pete Seeger: The Power of Song (2007)
## 7127 5 Centimeters per Second (Byôsoku 5 senchimêtoru) (2007)
## 7128 War of the Worlds (2005)
## 7129 Ben X (2007)
## 7130 Bedtime Stories (2008)
## 7131 Choke (2008)
## 7132 Revolutionary Road (2008)
## 7133 Blackadder Back & Forth (1999)
## 7134 Blackadder's Christmas Carol (1988)
## 7135 Dear Zachary: A Letter to a Son About His Father (2008)
## 7136 Wild Child (2008)
## 7137 Defiance (2008)
## 7138 Marley & Me (2008)
## 7139 Involuntary (De ofrivilliga) (2008)
## 7140 Ponyo (Gake no ue no Ponyo) (2008)
## 7141 Poultrygeist: Night of the Chicken Dead (2006)
## 7142 Wendy and Lucy (2008)
## 7143 Last Chance Harvey (2008)
## 7144 Ip Man (2008)
## 7145 Replicant (2001)
## 7146 Passengers (2008)
## 7147 Tale of Despereaux, The (2008)
## 7148 Bride Wars (2009)
## 7149 My Bloody Valentine 3-D (2009)
## 7150 Aspen (1991)
## 7151 Timecrimes (CronocrÃÂmenes, Los) (2007)
## 7152 Hamlet (2000)
## 7153 Underworld: Rise of the Lycans (2009)
## 7154 Inkheart (2008)
## 7155 Paul Blart: Mall Cop (2009)
## 7156 Outlander (2008)
## 7157 Great Ecstasy of Woodcarver Steiner, The (Große Ekstase des Bildschnitzers Steiner, Die) (1974)
## 7158 Grudge 3, The (2009)
## 7159 Eden Lake (2008)
## 7160 Coraline (2009)
## 7161 Chocolate (2008)
## 7162 Push (2009)
## 7163 International, The (2009)
## 7164 Two Lovers (2008)
## 7165 He's Just Not That Into You (2009)
## 7166 Numbskull Emptybrook (Uuno Turhapuro) (1973)
## 7167 Futurama: Into the Wild Green Yonder (2009)
## 7168 Frontière(s) (2007)
## 7169 Comet in Moominland (1992)
## 7170 Afro Samurai: Resurrection (2009)
## 7171 Departures (Okuribito) (2008)
## 7172 My Name Is Bruce (2007)
## 7173 Funny People (2009)
## 7174 Nuremberg (2000)
## 7175 Mystery Team (2009)
## 7176 Tyler Perry's Madea Goes to Jail (2009)
## 7177 Away We Go (2009)
## 7178 Unsuspected, The (1947)
## 7179 Divo, Il (2008)
## 7180 Good, the Bad, the Weird, The (Joheunnom nabbeunnom isanghannom) (2008)
## 7181 Pink Panther 2, The (2009)
## 7182 Far Cry (2008)
## 7183 Rock-A-Doodle (1991)
## 7184 Dr. Horrible's Sing-Along Blog (2008)
## 7185 I Love You, Man (2009)
## 7186 Duplicity (2009)
## 7187 Knowing (2009)
## 7188 Ong-Bak 2: The Beginning (Ong Bak 2) (2008)
## 7189 Girl with the Dragon Tattoo, The (Män som hatar kvinnor) (2009)
## 7190 Sunshine Cleaning (2008)
## 7191 Kung Fu Panda: Secrets of the Furious Five (2008)
## 7192 Echelon Conspiracy (2009)
## 7193 Monsters vs. Aliens (2009)
## 7194 Sita Sings the Blues (2008)
## 7195 Land of Silence and Darkness (Land des Schweigens und der Dunkelheit) (1971)
## 7196 Baader Meinhof Komplex, Der (2008)
## 7197 Anvil! The Story of Anvil (2008)
## 7198 Observe and Report (2009)
## 7199 Adventureland (2009)
## 7200 Confessions of a Shopaholic (2009)
## 7201 The Butterfly Effect 3: Revelations (2009)
## 7202 Dragonball Evolution (2009)
## 7203 Fast & Furious (Fast and the Furious 4, The) (2009)
## 7204 Superstar: The Karen Carpenter Story (1988)
## 7205 In the Loop (2009)
## 7206 Pirate Radio (2009)
## 7207 Apollo 13: To the Edge and Back (1994)
## 7208 17 Again (2009)
## 7209 Nana (2005)
## 7210 Inglourious Basterds (2009)
## 7211 State of Play (2009)
## 7212 Damned United, The (2009)
## 7213 Crank: High Voltage (2009)
## 7214 Moon (2009)
## 7215 Young Victoria, The (2009)
## 7216 X-Men Origins: Wolverine (2009)
## 7217 Girlfriend Experience, The (2009)
## 7218 Sin Nombre (2009)
## 7219 Star Trek (2009)
## 7220 Great Buck Howard, The (2008)
## 7221 Red Cliff Part II (Chi Bi Xia: Jue Zhan Tian Xia) (2009)
## 7222 Stanley Kubrick: A Life in Pictures (2001)
## 7223 Angels & Demons (2009)
## 7224 Seduction of Joe Tynan, The (1979)
## 7225 Fanboys (2009)
## 7226 Terminator Salvation (2009)
## 7227 Night at the Museum: Battle of the Smithsonian (2009)
## 7228 Were the World Mine (2008)
## 7229 Every Little Step (2008)
## 7230 Brothers Bloom, The (2008)
## 7231 Paisan (PaisÃÂ ) (1946)
## 7232 Shall We Kiss? (Un baiser s'il vous plait) (2007)
## 7233 Chop Shop (2007)
## 7234 Soloist, The (2009)
## 7235 Neon Genesis Evangelion: Death & Rebirth (Shin seiki Evangelion Gekijô-ban: Shito shinsei) (1997)
## 7236 Drag Me to Hell (2009)
## 7237 Up (2009)
## 7238 Fullmetal Alchemist the Movie: Conqueror of Shamballa (Gekijô-ban hagane no renkinjutsushi: Shanbara wo yuku mono) (2005)
## 7239 Dance Flick (2009)
## 7240 Summer Hours (Heure d'été, L') (2008)
## 7241 Fired Up (2009)
## 7242 In the Electric Mist (2009)
## 7243 Hangover, The (2009)
## 7244 Antichrist (2009)
## 7245 Berlin Alexanderplatz (1980)
## 7246 New in Town (2009)
## 7247 Dead Snow (Død snø) (2009)
## 7248 Land of the Lost (2009)
## 7249 Clique, The (2008)
## 7250 Taking of Pelham 1 2 3, The (2009)
## 7251 Proposal, The (2009)
## 7252 Year One (2009)
## 7253 Tyson (2008)
## 7254 Hurt Locker, The (2008)
## 7255 Breakfast with Scot (2007)
## 7256 Limits of Control, The (2009)
## 7257 Raiders of the Lost Ark: The Adaptation (1989)
## 7258 Transformers: Revenge of the Fallen (2009)
## 7259 Home (2009)
## 7260 File on Thelma Jordan, The (1950)
## 7261 Whatever Works (2009)
## 7262 Ghosts of Girlfriends Past (2009)
## 7263 Public Enemies (2009)
## 7264 Ice Age: Dawn of the Dinosaurs (2009)
## 7265 Prison Break: The Final Break (2009)
## 7266 Daria: Is It College Yet? (2002)
## 7267 My Sister's Keeper (2009)
## 7268 Hood of Horror (2006)
## 7269 Watchmen: Tales of the Black Freighter (2009)
## 7270 (500) Days of Summer (2009)
## 7271 Through the Olive Trees (Zire darakhatan zeyton) (1994)
## 7272 Brüno (Bruno) (2009)
## 7273 Librarian, The: The Curse of the Judas Chalice (2008)
## 7274 Men of War (1994)
## 7275 Harry Potter and the Half-Blood Prince (2009)
## 7276 Roots (1977)
## 7277 Group, The (1966)
## 7278 Fast and the Furious, The (1955)
## 7279 Imaginarium of Doctor Parnassus, The (2009)
## 7280 Shiver (EskalofrÃÂo) (2008)
## 7281 'Neath the Arizona Skies (1934)
## 7282 Orphan (2009)
## 7283 Ugly Truth, The (2009)
## 7284 Wild River (1960)
## 7285 High Hopes (1988)
## 7286 Aliens in the Attic (2009)
## 7287 District 9 (2009)
## 7288 Julie & Julia (2009)
## 7289 Race to Witch Mountain (2009)
## 7290 G.I. Joe: The Rise of Cobra (2009)
## 7291 Cold Souls (2009)
## 7292 Introducing Dorothy Dandridge (1999)
## 7293 Jerusalema (Gangster's Paradise: Jerusalema) (2008)
## 7294 Wings of Hope (Julianes Sturz in den Dschungel) (2000)
## 7295 Evangelion: 1.0 You Are (Not) Alone (Evangerion shin gekijôban: Jo) (2007)
## 7296 Deal, The (2008)
## 7297 Goods: Live Hard, Sell Hard, The (2009)
## 7298 Adam (2009)
## 7299 Gigantic (2008)
## 7300 Time Traveler's Wife, The (2009)
## 7301 I Love You, Beth Cooper (2009)
## 7302 Huhwihaji Anha (No Regret) (2006)
## 7303 G-Force (2009)
## 7304 Bronson (2009)
## 7305 Little Richard (2000)
## 7306 Curiosity of Chance, The (2006)
## 7307 Lorna's Silence (Le silence de Lorna) (2008)
## 7308 It Might Get Loud (2008)
## 7309 Post Grad (2009)
## 7310 To Each His Own Cinema (Chacun son cinéma ou Ce petit coup au coeur quand la lumière s'éteint et que le film commence) (2007)
## 7311 Troll 2 (1990)
## 7312 Taking Woodstock (2009)
## 7313 Halloween II (2009)
## 7314 Secret in Their Eyes, The (El secreto de sus ojos) (2009)
## 7315 9 (2009)
## 7316 Three Musketeers, The (1933)
## 7317 Frequently Asked Questions About Time Travel (2009)
## 7318 White Ribbon, The (Das weiße Band) (2009)
## 7319 Most Hated Family in America, The (2007)
## 7320 Pandorum (2009)
## 7321 Men Who Stare at Goats, The (2009)
## 7322 Padre padrone (1977)
## 7323 Jennifer's Body (2009)
## 7324 Informant!, The (2009)
## 7325 Extract (2009)
## 7326 Final Destination, The (Final Destination 4) (Final Destination in 3-D, The) (2009)
## 7327 Gamer (2009)
## 7328 Cloudy with a Chance of Meatballs (2009)
## 7329 Food, Inc. (2008)
## 7330 Thirst (Bakjwi) (2009)
## 7331 Terra (a.k.a. Battle for Terra) (2007)
## 7332 Paranormal Activity (2009)
## 7333 Not Quite Hollywood: The Wild, Untold Story of Ozploitation! (2008)
## 7334 3 Worlds of Gulliver, The (1960)
## 7335 World's Greatest Dad (2009)
## 7336 Black God, White Devil (Deus e o Diabo na Terra do Sol) (1964)
## 7337 Still Walking (Aruitemo aruitemo) (2008)
## 7338 Wanted (2009)
## 7339 Cove, The (2009)
## 7340 Serious Man, A (2009)
## 7341 City Island (2009)
## 7342 Ink (2009)
## 7343 Grace (2009)
## 7344 Haunted World of El Superbeasto, The (2009)
## 7345 Whip It (2009)
## 7346 Invention of Lying, The (2009)
## 7347 A-Haunting We Will Go (1942)
## 7348 Surrogates (2009)
## 7349 Next Day Air (2009)
## 7350 Zombieland (2009)
## 7351 Whiteout (2009)
## 7352 Education, An (2009)
## 7353 Burma VJ: Reporting from a Closed Country (Burma VJ: Reporter i et lukket land) (2008)
## 7354 Werner Herzog Eats His Shoe (1980)
## 7355 Couples Retreat (2009)
## 7356 Deadgirl (2008)
## 7357 I Sell the Dead (2008)
## 7358 Where the Wild Things Are (2009)
## 7359 Earth Entranced (Terra em Transe) (1967)
## 7360 Reckless (1984)
## 7361 Legionnaire (1998)
## 7362 New York, I Love You (2009)
## 7363 Law Abiding Citizen (2009)
## 7364 Amelia (2009)
## 7365 Mary and Max (2009)
## 7366 Up in the Air (2009)
## 7367 Monsters vs Aliens: Mutant Pumpkins from Outer Space (2009)
## 7368 Balance (1989)
## 7369 Vampire Girl vs. Frankenstein Girl (Kyûketsu Shôjo tai Shôjo Furanken) (2009)
## 7370 Saw VI (2009)
## 7371 Michael Jackson's This Is It (2009)
## 7372 Cirque du Freak: The Vampire's Assistant (2009)
## 7373 Good Hair (2009)
## 7374 Black Dynamite (2009)
## 7375 Big Fan (2009)
## 7376 Astro Boy (2009)
## 7377 Gentlemen Broncos (2009)
## 7378 Fantastic Mr. Fox (2009)
## 7379 Christmas Carol, A (2009)
## 7380 Battlestar Galactica: The Plan (2009)
## 7381 Partly Cloudy (2009)
## 7382 Grey Gardens (2009)
## 7383 2012 (2009)
## 7384 Box, The (2009)
## 7385 Broken Embraces (Los abrazos rotos) (2009)
## 7386 Fourth Kind, The (2009)
## 7387 Precious (2009)
## 7388 Bad Lieutenant: Port of Call New Orleans (2009)
## 7389 Twilight Saga: New Moon, The (2009)
## 7390 Messenger, The (2009)
## 7391 Ninja Assassin (2009)
## 7392 Merry Madagascar (2009)
## 7393 Brothers (2009)
## 7394 Fly, The (Légy, A) (1980)
## 7395 Billy Blazes, Esq. (1919)
## 7396 Sleep Dealer (2008)
## 7397 Blind Side, The (2009)
## 7398 Zorn's Lemma (1970)
## 7399 Limit (Limite) (1931)
## 7400 Shrink (2009)
## 7401 Old Dogs (2009)
## 7402 Planet 51 (2009)
## 7403 Single Man, A (2009)
## 7404 Lovely Bones, The (2009)
## 7405 Invictus (2009)
## 7406 Princess and the Frog, The (2009)
## 7407 Everybody's Fine (2009)
## 7408 Armored (2009)
## 7409 Red Chapel (Røde kapel) (2006)
## 7410 Flaming Creatures (1963)
## 7411 Did You Hear About the Morgans? (2009)
## 7412 Make the Yuletide Gay (2009)
## 7413 Avatar (2009)
## 7414 It's Complicated (2009)
## 7415 Sherlock Holmes (2009)
## 7416 Crazy Heart (2009)
## 7417 Alvin and the Chipmunks: The Squeakquel (2009)
## 7418 Looking for Eric (2009)
## 7419 American Pie Presents: The Book of Love (American Pie 7: The Book of Love) (2009)
## 7420 Carriers (2009)
## 7421 Pontypool (2008)
## 7422 Youth in Revolt (2009)
## 7423 Daybreakers (2010)
## 7424 Age of Stupid, The (2009)
## 7425 Hachiko: A Dog's Story (a.k.a. Hachi: A Dog's Tale) (2009)
## 7426 Leap Year (2010)
## 7427 Book of Eli, The (2010)
## 7428 Girl Who Kicked the Hornet's Nest, The (Luftslottet som sprängdes) (2009)
## 7429 Prophet, A (Un Prophète) (2009)
## 7430 Staten Island (2009)
## 7431 Collapse (2009)
## 7432 Mr. Warmth: The Don Rickles Project (2007)
## 7433 Blood: The Last Vampire (2009)
## 7434 Last of England, The (1988)
## 7435 My Son, My Son, What Have Ye Done (2009)
## 7436 Soul Kitchen (2009)
## 7437 Dragon Hunters (Chasseurs de dragons) (2008)
## 7438 Ninja (2009)
## 7439 Hellsing Ultimate OVA Series (2006)
## 7440 Chaser, The (Chugyeogja) (2008)
## 7441 Rudolph, the Red-Nosed Reindeer (1964)
## 7442 Nowhere Boy (2009)
## 7443 3 Idiots (2009)
## 7444 Legion (2010)
## 7445 Peter Pan (1960)
## 7446 Dante's Inferno Animated (2010)
## 7447 Zach Galifianakis: Live at the Purple Onion (2006)
## 7448 When in Rome (2010)
## 7449 Edge of Darkness (2010)
## 7450 Triangle (2009)
## 7451 I Love You Phillip Morris (2009)
## 7452 Anne of Green Gables: The Sequel (a.k.a. Anne of Avonlea) (1987)
## 7453 Temple Grandin (2010)
## 7454 First Day of the Rest of Your Life, The (Le premier jour du reste de ta vie) (2008)
## 7455 House of the Devil, The (2009)
## 7456 Fish Tank (2009)
## 7457 Legend of the Red Dragon (a.k.a. New Legend of Shaolin, The) (Hong Xi Guan: Zhi Shao Lin wu zu) (1994)
## 7458 Valentine's Day (2010)
## 7459 Wolfman, The (2010)
## 7460 Shutter Island (2010)
## 7461 $9.99 (2008)
## 7462 Persuasion (2007)
## 7463 Girl Who Played with Fire, The (Flickan som lekte med elden) (2009)
## 7464 Percy Jackson & the Olympians: The Lightning Thief (2010)
## 7465 Cop Out (2010)
## 7466 Ghost Writer, The (2010)
## 7467 Spy Next Door, The (2010)
## 7468 Agora (2009)
## 7469 Tom Thumb (1958)
## 7470 Shades of Ray (2008)
## 7471 District 13: Ultimatum (Banlieue 13 - Ultimatum) (2009)
## 7472 Yes Men Fix the World, The (2009)
## 7473 Crazies, The (2010)
## 7474 Dear John (2010)
## 7475 Tooth Fairy (2010)
## 7476 Gentlemen of Fortune (Dzhentlmeny udachi) (1972)
## 7477 Fermat's Room (La habitación de Fermat) (2007)
## 7478 Room, The (2003)
## 7479 My Name is Khan (2010)
## 7480 Alice in Wonderland (2010)
## 7481 Green Zone (2010)
## 7482 From Paris with Love (2010)
## 7483 Dorian Gray (2009)
## 7484 Greenberg (2010)
## 7485 Brooklyn's Finest (2010)
## 7486 She's Out of My League (2010)
## 7487 Harry Brown (2009)
## 7488 Remember Me (2010)
## 7489 Teenage Caveman (2002)
## 7490 Will Ferrell: You're Welcome America - A Final Night with George W Bush (2009)
## 7491 Our Family Wedding (2010)
## 7492 Bounty Hunter, The (2010)
## 7493 Leaves of Grass (2009)
## 7494 Women in Trouble (2009)
## 7495 Combat Shock (1986)
## 7496 North Face (Nordwand) (2008)
## 7497 Repo Men (2010)
## 7498 Apprenticeship of Duddy Kravitz, The (1974)
## 7499 Case 39 (2009)
## 7500 Oceans (Océans) (2009)
## 7501 Slammin' Salmon, The (2009)
## 7502 Hot Tub Time Machine (2010)
## 7503 Mother (Madeo) (2009)
## 7504 How to Train Your Dragon (2010)
## 7505 About Elly (Darbareye Elly) (2009)
## 7506 Micmacs (Micmacs ÃÂ tire-larigot) (2009)
## 7507 Clash of the Titans (2010)
## 7508 Defendor (2009)
## 7509 Kick-Ass (2010)
## 7510 Five Minutes of Heaven (2009)
## 7511 Date Night (2010)
## 7512 Mark of the Devil (Hexen bis aufs Blut gequält) (1970)
## 7513 Steam of Life (Miesten vuoro) (2010)
## 7514 Runaways, The (2010)
## 7515 Death at a Funeral (2010)
## 7516 Valhalla Rising (2009)
## 7517 Diary of a Wimpy Kid (2010)
## 7518 Aria (1987)
## 7519 Dogtooth (Kynodontas) (2009)
## 7520 Red Riding: 1983 (2009)
## 7521 Losers, The (2010)
## 7522 Last Song, The (2010)
## 7523 Cyrus (2010)
## 7524 Human Centipede, The (First Sequence) (2009)
## 7525 This Is the Army (1943)
## 7526 Exit Through the Gift Shop (2010)
## 7527 Iron Man 2 (2010)
## 7528 Cosmos (1980)
## 7529 Nightmare on Elm Street, A (2010)
## 7530 Four Lions (2010)
## 7531 Bobby Deerfield (1977)
## 7532 Diary of a Nymphomaniac (Diario de una Ninfómana) (2008)
## 7533 You Don't Know Jack (2010)
## 7534 12 Angry Men (1997)
## 7535 Robin Hood (2010)
## 7536 Red Chapel, The (Røde kapel, Det) (2009)
## 7537 Cemetery Junction (2010)
## 7538 Blue Valentine (2010)
## 7539 Killers (2010)
## 7540 Buried (2010)
## 7541 Life After Tomorrow (2006)
## 7542 Prince of Persia: The Sands of Time (2010)
## 7543 Artists and Models (1955)
## 7544 Please Give (2010)
## 7545 Peter & the Wolf (2006)
## 7546 Ricky Gervais Live: Animals (2003)
## 7547 Sex and the City 2 (2010)
## 7548 Get Him to the Greek (2010)
## 7549 Unthinkable (2010)
## 7550 Back-up Plan, The (2010)
## 7551 Splice (2009)
## 7552 Letters to Juliet (2010)
## 7553 41-Year-Old Virgin Who Knocked Up Sarah Marshall and Felt Superbad About It, The (2010)
## 7554 Exam (2009)
## 7555 Jonah Hex (2010)
## 7556 A-Team, The (2010)
## 7557 Toy Story 3 (2010)
## 7558 Joan Rivers: A Piece of Work (2010)
## 7559 Ricky Gervais Live 3: Fame (2007)
## 7560 Winter's Bone (2010)
## 7561 Shrek Forever After (a.k.a. Shrek: The Final Chapter) (2010)
## 7562 Everyone Else (Alle Anderen) (2009)
## 7563 TiMER (2009)
## 7564 24: Redemption (2008)
## 7565 Twilight Saga: Eclipse, The (2010)
## 7566 Betrayal, The (Nerakhoon) (2008)
## 7567 Enter the Void (2009)
## 7568 Last Airbender, The (2010)
## 7569 State of Siege (Ãâ°tat de siège) (1972)
## 7570 Island of Dr. Moreau, The (1977)
## 7571 Empire of Dreams: The Story of the 'Star Wars' Trilogy (2004)
## 7572 South Park: Imaginationland (2008)
## 7573 Kurt Cobain About a Son (2006)
## 7574 Predators (2010)
## 7575 Despicable Me (2010)
## 7576 Inception (2010)
## 7577 Grown Ups (2010)
## 7578 Thirst (2008)
## 7579 Sorcerer's Apprentice, The (2010)
## 7580 Swedish Auto (2006)
## 7581 Knight and Day (2010)
## 7582 Nightwatching (2007)
## 7583 Karate Kid, The (2010)
## 7584 Kids Are All Right, The (2010)
## 7585 Serbian Film, A (Srpski film) (2010)
## 7586 Cherrybomb (2009)
## 7587 Batman: Under the Red Hood (2010)
## 7588 Salt (2010)
## 7589 No. 1 Ladies' Detective Agency, The (2008)
## 7590 Winnebago Man (2009)
## 7591 Mr. Nobody (2009)
## 7592 Dinner for Schmucks (2010)
## 7593 Northerners, The (De noorderlingen) (1992)
## 7594 Ip Man 2 (2010)
## 7595 Charlie St. Cloud (2010)
## 7596 Rebound, The (2009)
## 7597 Other Guys, The (2010)
## 7598 Two Escobars, The (2010)
## 7599 All Tomorrow's Parties (2009)
## 7600 Expendables, The (2010)
## 7601 Scott Pilgrim vs. the World (2010)
## 7602 Animal Kingdom (2010)
## 7603 Centurion (2010)
## 7604 Babies (Bébé(s)) (2010)
## 7605 Heartless (2009)
## 7606 Piranha (Piranha 3D) (2010)
## 7607 Joneses, The (2009)
## 7608 Tekken (2010)
## 7609 Dragon Ball Z: Dead Zone (Doragon bôru Z 1: Ora no Gohan wo kaese) (1989)
## 7610 American, The (2010)
## 7611 Switch, The (2010)
## 7612 GasLand (2010)
## 7613 Hated (1994)
## 7614 Machete (2010)
## 7615 Going the Distance (2010)
## 7616 Song to Remember, A (1945)
## 7617 Vampires Suck (2010)
## 7618 Resident Evil: Afterlife (2010)
## 7619 Social Network, The (2010)
## 7620 Town, The (2010)
## 7621 Easy A (2010)
## 7622 Eat Pray Love (2010)
## 7623 Howl (2010)
## 7624 I'm Still Here (2010)
## 7625 Patrik Age 1.5 (Patrik 1,5) (2008)
## 7626 Flipped (2010)
## 7627 Wall Street: Money Never Sleeps (2010)
## 7628 Buster Keaton: A Hard Act to Follow (1987)
## 7629 Legend of the Guardians: The Owls of Ga'Hoole (2010)
## 7630 It's Kind of a Funny Story (2010)
## 7631 Voyeur (Abel) (1986)
## 7632 Middle Men (2009)
## 7633 Poughkeepsie Tapes, The (2007)
## 7634 Alice in Wonderland (1933)
## 7635 Let Me In (2010)
## 7636 Secretariat (2010)
## 7637 Lake Mungo (2008)
## 7638 Devil (2010)
## 7639 You Again (2010)
## 7640 Life as We Know It (2010)
## 7641 Catfish (2010)
## 7642 You Will Meet a Tall Dark Stranger (2010)
## 7643 Inside Job (2010)
## 7644 Monsters (2010)
## 7645 Never Let Me Go (2010)
## 7646 Illusionist, The (L'illusionniste) (2010)
## 7647 Love Is Colder Than Death (Liebe ist kälter als der Tod) (1969)
## 7648 Kaboom (2010)
## 7649 Rubber (2010)
## 7650 7 Days (Les 7 jours du talion) (2010)
## 7651 Jackass 3D (2010)
## 7652 Restrepo (2010)
## 7653 Waiting for 'Superman' (2010)
## 7654 Red (2010)
## 7655 Paranormal Activity 2 (2010)
## 7656 Hereafter (2010)
## 7657 Black Death (2010)
## 7658 Saw VII 3D - The Final Chapter (2010)
## 7659 Due Date (2010)
## 7660 127 Hours (2010)
## 7661 Megamind (2010)
## 7662 Black Swan (2010)
## 7663 Fair Game (2010)
## 7664 1990: The Bronx Warriors (1990: I guerrieri del Bronx) (1982)
## 7665 Unstoppable (2010)
## 7666 Morning Glory (2010)
## 7667 Certified Copy (Copie conforme) (2010)
## 7668 Next Three Days, The (2010)
## 7669 Biutiful (2010)
## 7670 First Beautiful Thing, The (La prima cosa bella) (2010)
## 7671 Harry Potter and the Deathly Hallows: Part 1 (2010)
## 7672 King's Speech, The (2010)
## 7673 Tangled (2010)
## 7674 Agony and the Ecstasy of Phil Spector, The (2009)
## 7675 Art of the Steal, The (2009)
## 7676 Fighter, The (2010)
## 7677 Romantics, The (2010)
## 7678 Cocaine Cowboys II: Hustlin' With the Godmother (2008)
## 7679 Tillman Story, The (2010)
## 7680 Loved Ones, The (2009)
## 7681 London Boulevard (2010)
## 7682 Skyline (2010)
## 7683 Bunny and the Bull (2009)
## 7684 Beastly (2011)
## 7685 Love and Other Drugs (2010)
## 7686 Chronicles of Narnia: The Voyage of the Dawn Treader, The (2010)
## 7687 Tiny Furniture (2010)
## 7688 Tourist, The (2010)
## 7689 Rare Exports: A Christmas Tale (Rare Exports) (2010)
## 7690 Nightfall (1957)
## 7691 All Good Things (2010)
## 7692 True Grit (2010)
## 7693 Tron: Legacy (2010)
## 7694 Another Year (2010)
## 7695 How Do You Know (2010)
## 7696 Barney's Version (2010)
## 7697 Company Men, The (2010)
## 7698 Zerophilia (2005)
## 7699 I Saw the Devil (Akmareul boatda) (2010)
## 7700 Little Fockers (2010)
## 7701 Gulliver's Travels (2010)
## 7702 Last Circus, The (Balada triste de trompeta) (Sad Trumpet Ballad, A) (2010)
## 7703 Most Dangerous Man in America: Daniel Ellsberg and the Pentagon Papers, The (2009)
## 7704 Burlesque (2010)
## 7705 Haunted House, The (1921)
## 7706 Secret World of Arrietty, The (Kari-gurashi no Arietti) (2010)
## 7707 Tucker & Dale vs Evil (2010)
## 7708 Yogi Bear (2010)
## 7709 Made in Dagenham (2010)
## 7710 Waste Land (2010)
## 7711 Goat, The (1921)
## 7712 Boat, The (1921)
## 7713 Who Is Harry Nilsson (And Why Is Everybody Talkin' About Him?) (2010)
## 7714 Green Hornet, The (2011)
## 7715 Play House, The (1921)
## 7716 Paleface, The (1922)
## 7717 Warrior's Way, The (2010)
## 7718 Cops (1922)
## 7719 Season of the Witch (2011)
## 7720 Ricky Gervais Live 4: Science (2010)
## 7721 Fern flowers (Fleur de fougère) (1949)
## 7722 Cowboys & Aliens (2011)
## 7723 Day & Night (2010)
## 7724 Marwencol (2010)
## 7725 Scorpio Rising (1964)
## 7726 Dilemma, The (2011)
## 7727 Trip, The (2010)
## 7728 Phone Call from a Stranger (1952)
## 7729 Poetry (Shi) (2010)
## 7730 Limitless (2011)
## 7731 Transcendent Man (2009)
## 7732 Wishful Drinking (2010)
## 7733 Evangelion: 2.0 You Can (Not) Advance (Evangerion shin gekijôban: Ha) (2009)
## 7734 White Stripes Under Great White Northern Lights, The (2009)
## 7735 What Women Want (a.k.a. I Know a Woman's Heart) (2011)
## 7736 Home Alone 4 (2002)
## 7737 No Strings Attached (2011)
## 7738 Lincoln Lawyer, The (2011)
## 7739 Rite, The (2011)
## 7740 All-Star Superman (2011)
## 7741 Silent Souls (Ovsyanki) (2010)
## 7742 Unknown (2011)
## 7743 Cedar Rapids (2011)
## 7744 Gnomeo & Juliet (2011)
## 7745 Burke and Hare (2010)
## 7746 Paul (2011)
## 7747 Brother 2 (Brat 2) (2000)
## 7748 Emma (2009)
## 7749 Rango (2011)
## 7750 Take Me Home Tonight (2011)
## 7751 Confessions (Kokuhaku) (2010)
## 7752 Adjustment Bureau, The (2011)
## 7753 Cropsey (2009)
## 7754 Mechanic, The (2011)
## 7755 Hall Pass (2011)
## 7756 Eagle, The (2011)
## 7757 I Am Number Four (2011)
## 7758 Battle: Los Angeles (2011)
## 7759 Summer Wars (Samâ wôzu) (2009)
## 7760 Sunset Limited, The (2011)
## 7761 Mars Needs Moms (2011)
## 7762 Winnie the Pooh and Tigger Too (1974)
## 7763 Elite Squad: The Enemy Within (Tropa de Elite 2 - O Inimigo Agora Ãâ° Outro) (2010)
## 7764 Just Go with It (2011)
## 7765 Cave of Forgotten Dreams (2010)
## 7766 Red Riding Hood (2011)
## 7767 Big Mommas: Like Father, Like Son (2011)
## 7768 Super (2010)
## 7769 Troll Hunter, The (Trolljegeren) (2010)
## 7770 Source Code (2011)
## 7771 Jane Eyre (2011)
## 7772 Sucker Punch (2011)
## 7773 New Daughter, The (2009)
## 7774 Eden (2006)
## 7775 BURN-E (2008)
## 7776 Senna (2010)
## 7777 Family Guy Presents: It's a Trap (2010)
## 7778 Insidious (2010)
## 7779 Hobo with a Shotgun (2011)
## 7780 Win Win (2011)
## 7781 Boy (2010)
## 7782 Diary of a Wimpy Kid: Rodrick Rules (2011)
## 7783 Henry's Crime (2010)
## 7784 Hop (2011)
## 7785 13 Assassins (Jûsan-nin no shikaku) (2010)
## 7786 Hanna (2011)
## 7787 American: The Bill Hicks Story (2009)
## 7788 Arthur (2011)
## 7789 Rio (2011)
## 7790 Melancholia (2011)
## 7791 Thor (2011)
## 7792 Louis C.K.: Hilarious (2010)
## 7793 Louis C.K.: Chewed Up (2008)
## 7794 Louis C.K.: Shameless (2007)
## 7795 Mildred Pierce (2011)
## 7796 Voices from the List (2004)
## 7797 Water for Elephants (2011)
## 7798 African Cats (2011)
## 7799 Socialism (Film socialisme) (2010)
## 7800 Fast Five (Fast and the Furious 5, The) (2011)
## 7801 Idiots and Angels (2008)
## 7802 Incendies (2010)
## 7803 Something Borrowed (2011)
## 7804 Bridesmaids (2011)
## 7805 Priest (2011)
## 7806 Beaver, The (2011)
## 7807 Mothra (Mosura) (1961)
## 7808 Pirates of the Caribbean: On Stranger Tides (2011)
## 7809 Midnight in Paris (2011)
## 7810 Kid With a Bike, The (Le gamin au vélo) (2011)
## 7811 The Man from Nowhere (2010)
## 7812 Tree of Life, The (2011)
## 7813 Hangover Part II, The (2011)
## 7814 Destroy All Monsters (Kaijû sôshingeki) (1968)
## 7815 Attack the Block (2011)
## 7816 Tunnel, The (2011)
## 7817 He Ran All the Way (1951)
## 7818 Kung Fu Panda 2 (2011)
## 7819 X-Men: First Class (2011)
## 7820 Submarine (2010)
## 7821 Everything Must Go (2010)
## 7822 Beginners (2010)
## 7823 Super 8 (2011)
## 7824 Curly Top (1935)
## 7825 Green Lantern (2011)
## 7826 Elektra Luxx (2010)
## 7827 Mr. Popper's Penguins (2011)
## 7828 Bad Teacher (2011)
## 7829 Transformers: Dark of the Moon (2011)
## 7830 Larry Crowne (2011)
## 7831 Your Highness (2011)
## 7832 Dolly Sisters, The (1945)
## 7833 Too Big to Fail (2011)
## 7834 Takers (2010)
## 7835 Horrible Bosses (2011)
## 7836 Cars 2 (2011)
## 7837 Savage Messiah (1972)
## 7838 Page One: Inside the New York Times (2011)
## 7839 Burn Notice: The Fall of Sam Axe (2011)
## 7840 To Sleep with Anger (1990)
## 7841 Mahler (1974)
## 7842 Perfect Host, The (2010)
## 7843 Harry Potter and the Deathly Hallows: Part 2 (2011)
## 7844 Drive (2011)
## 7845 Captain America: The First Avenger (2011)
## 7846 Crazy, Stupid, Love. (2011)
## 7847 One Day (2011)
## 7848 Guard, The (2011)
## 7849 Winnie the Pooh (2011)
## 7850 Woman, The (2011)
## 7851 Mike's New Car (2002)
## 7852 Smurfs, The (2011)
## 7853 Dylan Dog: Dead of Night (2010)
## 7854 Friends with Benefits (2011)
## 7855 Our Idiot Brother (2011)
## 7856 Letter to Elia, A (2010)
## 7857 Rise of the Planet of the Apes (2011)
## 7858 Change-Up, The (2011)
## 7859 Help, The (2011)
## 7860 30 Minutes or Less (2011)
## 7861 Gantz (2011)
## 7862 Final Destination 5 (2011)
## 7863 Conspirator, The (2010)
## 7864 Very Harold & Kumar 3D Christmas, A (2011)
## 7865 Carancho (2010)
## 7866 Fright Night (2011)
## 7867 Another Earth (2011)
## 7868 Rocky VI (1986)
## 7869 Hesher (2010)
## 7870 Stake Land (2010)
## 7871 Debt, The (2011)
## 7872 Colombiana (2011)
## 7873 Bill Cunningham New York (2011)
## 7874 Freakonomics (2010)
## 7875 Skin I Live In, The (La piel que habito) (2011)
## 7876 Prom (2011)
## 7877 Magic Trip (2011)
## 7878 Project Nim (2011)
## 7879 Win/win (2010)
## 7880 Inbetweeners Movie, The (2011)
## 7881 Future, The (2011)
## 7882 Interrupters, The (2011)
## 7883 Red State (2011)
## 7884 Chinese Take-Out (Chinese Take-Away) (Un cuento chino) (2011)
## 7885 I Don't Know How She Does It (2011)
## 7886 April Love (1957)
## 7887 Shark Night 3D (2011)
## 7888 Contagion (2011)
## 7889 Moneyball (2011)
## 7890 Northanger Abbey (2007)
## 7891 Avengers, The (2012)
## 7892 Tinker Tailor Soldier Spy (2011)
## 7893 Separation, A (Jodaeiye Nader az Simin) (2011)
## 7894 Dangerous Method, A (2011)
## 7895 Warrior (2011)
## 7896 Ides of March, The (2011)
## 7897 Kill List (2011)
## 7898 Killer Elite (2011)
## 7899 50/50 (2011)
## 7900 Clapham Junction (2007)
## 7901 Superman and the Mole-Men (1951)
## 7902 The Artist (2011)
## 7903 Take Shelter (2011)
## 7904 Myth of the American Sleepover, The (2010)
## 7905 Real Steel (2011)
## 7906 Buck (2011)
## 7907 Footloose (2011)
## 7908 Thing, The (2011)
## 7909 Tyrannosaur (2011)
## 7910 Martha Marcy May Marlene (2011)
## 7911 We Need to Talk About Kevin (2011)
## 7912 Three Musketeers, The (2011)
## 7913 In Time (2011)
## 7914 Margaret (2011)
## 7915 Carnage (2011)
## 7916 Margin Call (2011)
## 7917 Paranormal Activity 3 (2011)
## 7918 Johnny English Reborn (2011)
## 7919 Abduction (2011)
## 7920 Shame (2011)
## 7921 What's Your Number? (2011)
## 7922 Headhunters (Hodejegerne) (2011)
## 7923 Batman: Year One (2011)
## 7924 Puss in Boots (2011)
## 7925 Tower Heist (2011)
## 7926 J. Edgar (2011)
## 7927 Double, The (2011)
## 7928 Adventures of Tintin, The (2011)
## 7929 George Harrison: Living in the Material World (2011)
## 7930 Hugo (2011)
## 7931 Trespass (2011)
## 7932 Immortals (2011)
## 7933 Jack and Jill (2011)
## 7934 Oslo, August 31st (Oslo, 31. august) (2011)
## 7935 Descendants, The (2011)
## 7936 Muppets, The (2011)
## 7937 Twilight Saga: Breaking Dawn - Part 1, The (2011)
## 7938 War Horse (2011)
## 7939 Rum Diary, The (2011)
## 7940 My Week with Marilyn (2011)
## 7941 Weekend (2011)
## 7942 Bunraku (2010)
## 7943 Little Colonel, The (1935)
## 7944 Sitter, The (2011)
## 7945 Extremely Loud and Incredibly Close (2011)
## 7946 Asterix and the Vikings (Astérix et les Vikings) (2006)
## 7947 Arthur Christmas (2011)
## 7948 Violet & Daisy (2011)
## 7949 Bullet to the Head (2012)
## 7950 Expendables 2, The (2012)
## 7951 Snowman, The (1982)
## 7952 The Hunger Games (2012)
## 7953 Clone (Womb) (2010)
## 7954 Dark Knight Rises, The (2012)
## 7955 Bourne Legacy, The (2012)
## 7956 Sherlock Holmes: A Game of Shadows (2011)
## 7957 Life in a Day (2011)
## 7958 Stagecoach (1966)
## 7959 Toronto Stories (2008)
## 7960 Young Adult (2011)
## 7961 New Year's Eve (2011)
## 7962 Mission: Impossible - Ghost Protocol (2011)
## 7963 We Bought a Zoo (2011)
## 7964 Girl with the Dragon Tattoo, The (2011)
## 7965 Darkest Hour, The (2011)
## 7966 Albert Nobbs (2011)
## 7967 Salvation Boulevard (2011)
## 7968 Friends with Kids (2011)
## 7969 Contraband (2012)
## 7970 Being Elmo: A Puppeteer's Journey (2011)
## 7971 Joyful Noise (2012)
## 7972 Dolphin Tale (2011)
## 7973 Iron Lady, The (2011)
## 7974 Albatross (2011)
## 7975 Revenant, The (2009)
## 7976 Underworld: Awakening (2012)
## 7977 Grey, The (2012)
## 7978 Man on a Ledge (2012)
## 7979 Chill Out! (Descongélate!) (2003)
## 7980 Haywire (2011)
## 7981 Whistleblower, The (2010)
## 7982 Human Centipede II (Full Sequence), The (2011)
## 7983 Fados (2007)
## 7984 Seeking Justice (2011)
## 7985 Hostel: Part III (2011)
## 7986 Disappearance of Haruhi Suzumiya, The (Suzumiya Haruhi no shôshitsu) (2010)
## 7987 Red Tails (2012)
## 7988 Intouchables (2011)
## 7989 One for the Money (2012)
## 7990 Innkeepers, The (2011)
## 7991 Chronicle (2012)
## 7992 Dottie Gets Spanked (1993)
## 7993 Art of Getting By, The (2011)
## 7994 Dylan Moran: Monster (2004)
## 7995 Dylan Moran: Like, Totally (2006)
## 7996 Dylan Moran Live: What It Is (2009)
## 7997 Safe House (2012)
## 7998 Vow, The (2012)
## 7999 Louis C.K.: Live at the Beacon Theater (2011)
## 8000 Holding Trevor (2007)
## 8001 For a Good Time, Call... (2012)
## 8002 Journey 2: The Mysterious Island (2012)
## 8003 Perfect Sense (2011)
## 8004 Kokowääh (2011)
## 8005 Hearts of the West (1975)
## 8006 Ghost Rider: Spirit of Vengeance (2012)
## 8007 Prayers for Bobby (2009)
## 8008 Love Wrecked (2005)
## 8009 Civil War, The (1990)
## 8010 October Baby (2011)
## 8011 Gone (2012)
## 8012 Courageous (2011)
## 8013 Project X (2012)
## 8014 Dr. Seuss' The Lorax (2012)
## 8015 Big Year, The (2011)
## 8016 Trailer Park Boys (1999)
## 8017 Undefeated (2011)
## 8018 This Means War (2012)
## 8019 John Carter (2012)
## 8020 Starbuck (2011)
## 8021 Forks Over Knives (2011)
## 8022 Goon (2011)
## 8023 Game Change (2012)
## 8024 21 Jump Street (2012)
## 8025 Jeff, Who Lives at Home (2012)
## 8026 Lockout (2012)
## 8027 Casa de mi Padre (2012)
## 8028 Corman's World: Exploits of a Hollywood Rebel (2011)
## 8029 Jiro Dreams of Sushi (2011)
## 8030 Wrath of the Titans (2012)
## 8031 Iron Sky (2012)
## 8032 American Reunion (American Pie 4) (2012)
## 8033 The Raid: Redemption (2011)
## 8034 Cabin in the Woods, The (2012)
## 8035 God Bless America (2011)
## 8036 Three Stooges, The (2012)
## 8037 Raven, The (2012)
## 8038 Big Bang, The (2011)
## 8039 Mirror Mirror (2012)
## 8040 Battleship (2012)
## 8041 Louis Theroux: The Most Hated Family in America in Crisis (2011)
## 8042 Best Exotic Marigold Hotel, The (2011)
## 8043 Five-Year Engagement, The (2012)
## 8044 Think Like a Man (2012)
## 8045 Lucky One, The (2012)
## 8046 Black Mirror (2011)
## 8047 Dark Shadows (2012)
## 8048 The Scorpion King: Rise of a Warrior (2008)
## 8049 96 Minutes (2011)
## 8050 Across the Line: The Exodus of Charlie Wright (2010)
## 8051 Dictator, The (2012)
## 8052 Men in Black III (M.III.B.) (M.I.B.ó) (2012)
## 8053 Snow White and the Huntsman (2012)
## 8054 Sound of My Voice (2011)
## 8055 Pirates! Band of Misfits, The (2012)
## 8056 Prometheus (2012)
## 8057 Bernie (2011)
## 8058 Inhale (2010)
## 8059 Take This Waltz (2011)
## 8060 Sound of Noise (2010)
## 8061 Wanderlust (2012)
## 8062 Moonrise Kingdom (2012)
## 8063 Kahaani (2012)
## 8064 Thousand Words, A (2012)
## 8065 Safety Not Guaranteed (2012)
## 8066 Madagascar 3: Europe's Most Wanted (2012)
## 8067 Eaux d'artifice (1953)
## 8068 Inauguration of the Pleasure Dome (1954)
## 8069 Your Sister's Sister (2011)
## 8070 Dragon Ball: Sleeping Princess in Devil's Castle (Doragon bôru: Majinjô no nemuri hime) (1987)
## 8071 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)
## 8072 Brave (2012)
## 8073 Dragon Ball Z the Movie: The Tree of Might (Doragon bôru Z 3: Chikyû marugoto chô kessen) (1990)
## 8074 What to Expect When You're Expecting (2012)
## 8075 To Rome with Love (2012)
## 8076 Abraham Lincoln: Vampire Hunter (2012)
## 8077 Rock of Ages (2012)
## 8078 Seeking a Friend for the End of the World (2012)
## 8079 Presto (2008)
## 8080 Jack-Jack Attack (2005)
## 8081 Boundin' (2003)
## 8082 One Man Band (2005)
## 8083 Ted (2012)
## 8084 Giant Mechanical Man, The (2012)
## 8085 Magic Mike (2012)
## 8086 Dragon Ball Z: The Return of Cooler (Doragon bôru Z 6: Gekitotsu! Hyakuoku pawâ no senshi) (1992)
## 8087 Dragon Ball Z: Cooler's Revenge (Doragon bôru Z 5: Tobikkiri no saikyô tai saikyô) (1991)
## 8088 Dragon Ball Z: Broly - The Legendary Super Saiyan (Doragon bôru Z 8: Moetsukiro!! Nessen retsusen-chô gekisen) (1993)
## 8089 Cleanskin (2012)
## 8090 Amazing Spider-Man, The (2012)
## 8091 Ice Age 4: Continental Drift (2012)
## 8092 Beasts of the Southern Wild (2012)
## 8093 People Like Us (2012)
## 8094 Savages (2012)
## 8095 Geri's Game (1997)
## 8096 Watch, The (2012)
## 8097 Adventures of Mary-Kate and Ashley, The: The Case of the United States Navy Adventure (1997)
## 8098 2 Days in New York (2012)
## 8099 Terminal USA (1993)
## 8100 Killer Joe (2011)
## 8101 Dragon Ball Z: Bio-Broly (Doragon bôru Z 11: Sûpâ senshi gekiha! Katsu no wa ore da) (1994)
## 8102 Dragon Ball Z: Fusion Reborn (Doragon bôru Z 12: Fukkatsu no fyushon!! Gokû to Bejîta) (1995)
## 8103 For the Birds (2000)
## 8104 Ruby Sparks (2012)
## 8105 Total Recall (2012)
## 8106 Immature, The (Immaturi) (2011)
## 8107 Dragon Ball Z: Wrath of the Dragon (Doragon bôru Z 13: Ryûken bakuhatsu!! Gokû ga yaraneba dare ga yaru) (1995)
## 8108 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)
## 8109 Dragon Ball Z: The History of Trunks (Doragon bôru Z: Zetsubô e no hankô!! Nokosareta chô senshi - Gohan to Torankusu) (1993)
## 8110 Dragon Ball GT: A Hero's Legacy (Doragon bôru GT: Gokû gaiden! Yûki no akashi wa sû-shin-chû) (1997)
## 8111 Sidewalls (Medianeras) (2011)
## 8112 Bleak House (2005)
## 8113 Skyfall (2012)
## 8114 Campaign, The (2012)
## 8115 Brake (2012)
## 8116 Queen of Versailles, The (2012)
## 8117 ParaNorman (2012)
## 8118 Celeste and Jesse Forever (Celeste & Jesse Forever) (2012)
## 8119 Broken (2012)
## 8120 Premium Rush (2012)
## 8121 Lawless (2012)
## 8122 Piranha 3DD (a.k.a. Piranha DD) (2012)
## 8123 Sleepwalk with Me (2012)
## 8124 Searching for Sugar Man (2012)
## 8125 Possession, The (2012)
## 8126 Conception (2011)
## 8127 Paradise Lost 3: Purgatory (2011)
## 8128 Bachelorette (2012)
## 8129 Pitch Perfect (2012)
## 8130 Cold Light of Day, The (2012)
## 8131 Samsara (2011)
## 8132 Looper (2012)
## 8133 That's My Boy (2012)
## 8134 Apartment 143 (2011)
## 8135 Robot & Frank (2012)
## 8136 Ai Weiwei: Never Sorry (2012)
## 8137 Resident Evil: Retribution (2012)
## 8138 Lola Versus (2012)
## 8139 Master, The (2012)
## 8140 Dredd (2012)
## 8141 Kismet (1955)
## 8142 End of Watch (2012)
## 8143 V/H/S (2012)
## 8144 Perks of Being a Wallflower, The (2012)
## 8145 Hunt, The (Jagten) (2012)
## 8146 Holy Motors (2012)
## 8147 Sparkle (2012)
## 8148 Taken 2 (2012)
## 8149 Paperboy, The (2012)
## 8150 Making of a Legend: Gone with the Wind, The (1988)
## 8151 Royal Affair, A (Kongelig affære, En) (2012)
## 8152 Kon-Tiki (2012)
## 8153 Marley (2012)
## 8154 Sinister (2012)
## 8155 Hotel Transylvania (2012)
## 8156 Side by Side (2012)
## 8157 Shakespeare-Wallah (1965)
## 8158 Argo (2012)
## 8159 Seven Psychopaths (2012)
## 8160 Liberal Arts (2012)
## 8161 House I Live In, The (2012)
## 8162 West of Memphis (2012)
## 8163 Catch .44 (2011)
## 8164 Tony (2009)
## 8165 How to Survive a Plague (2012)
## 8166 56 Up (2012)
## 8167 Alex Cross (2012)
## 8168 Ambassador, The (Ambassadøren) (2011)
## 8169 Cloud Atlas (2012)
## 8170 'Hellboy': The Seeds of Creation (2004)
## 8171 Pumping Iron II: The Women (1985)
## 8172 Patience Stone, The (2012)
## 8173 Here Comes the Boom (2012)
## 8174 Mental (2012)
## 8175 Killing Them Softly (2012)
## 8176 Imposter, The (2012)
## 8177 Sessions, The (Surrogate, The) (2012)
## 8178 What Richard Did (2012)
## 8179 Wreck-It Ralph (2012)
## 8180 Silver Linings Playbook (2012)
## 8181 Flight (2012)
## 8182 Anna Karenina (2012)
## 8183 Life of Pi (2012)
## 8184 Excision (2012)
## 8185 Union Square (2011)
## 8186 Student of the Year (2012)
## 8187 Amour (2012)
## 8188 Jackass 3.5 (2011)
## 8189 Indie Game: The Movie (2012)
## 8190 Batman: The Dark Knight Returns, Part 1 (2012)
## 8191 Capital (Le capital) (2012)
## 8192 Lincoln (2012)
## 8193 Nature Calls (2012)
## 8194 Vamps (2012)
## 8195 10 Years (2011)
## 8196 Rise of the Guardians (2012)
## 8197 Fantastic Fear of Everything, A (2012)
## 8198 Deadfall (2012)
## 8199 Halo 4: Forward Unto Dawn (2012)
## 8200 Rebecca of Sunnybrook Farm (1938)
## 8201 Baby Take a Bow (1934)
## 8202 Sleeping Car Murder, The (Compartiment tueurs) (1965)
## 8203 Paperman (2012)
## 8204 Hitchcock (2012)
## 8205 Caesar Must Die (Cesare deve morire) (2012)
## 8206 From Up on Poppy Hill (Kokuriko-zaka kara) (2011)
## 8207 Redline (2009)
## 8208 Just Around the Corner (1938)
## 8209 Burn Up! (1991)
## 8210 Jazz (2001)
## 8211 Little Miss Broadway (1938)
## 8212 Hobbit: An Unexpected Journey, The (2012)
## 8213 Evil Cult, The (Lord of the Wu Tang) (Yi tian tu long ji: Zhi mo jiao jiao zhu) (1993)
## 8214 Hyde Park on Hudson (2012)
## 8215 How to Make Love to a Woman (2010)
## 8216 Violeta Went to Heaven (Violeta se fue a los cielos) (2011)
## 8217 Yossi (Ha-Sippur Shel Yossi) (2012)
## 8218 Zero Dark Thirty (2012)
## 8219 Neighbouring Sounds (O som ao redor) (2012)
## 8220 Fire with Fire (2012)
## 8221 Warm Bodies (2013)
## 8222 Wrong (2012)
## 8223 Our Little Girl (1935)
## 8224 Poor Little Rich Girl (1936)
## 8225 Guilt Trip, The (2012)
## 8226 Jack Reacher (2012)
## 8227 Django Unchained (2012)
## 8228 This Is 40 (2012)
## 8229 Impossible, The (Imposible, Lo) (2012)
## 8230 Misérables, Les (2012)
## 8231 Quartet (2012)
## 8232 Stand Up and Cheer! (1934)
## 8233 Stowaway (1936)
## 8234 Susannah of the Mounties (1939)
## 8235 Would You Rather (2012)
## 8236 Maximum Conviction (2012)
## 8237 Parental Guidance (2012)
## 8238 John Dies at the End (2012)
## 8239 Central Park Five, The (2012)
## 8240 Collection, The (2012)
## 8241 Promised Land (2012)
## 8242 Judas Kiss (2011)
## 8243 Role/Play (2010)
## 8244 Aftermath (1994)
## 8245 Eat Sleep Die (̉ta sova d̦) (2012)
## 8246 Gangster Squad (2013)
## 8247 Company You Keep, The (2012)
## 8248 It's Such a Beautiful Day (2012)
## 8249 Whores' Glory (2011)
## 8250 Beware of Mr. Baker (2012)
## 8251 Batman: The Dark Knight Returns, Part 2 (2013)
## 8252 Paul Williams Still Alive (2011)
## 8253 Everything or Nothing: The Untold Story of 007 (2012)
## 8254 Mama (2013)
## 8255 Upstream Color (2013)
## 8256 Shadow Dancer (2012)
## 8257 Keep the Lights On (2012)
## 8258 Beauty Is Embarrassing (2012)
## 8259 Girl Model (2011)
## 8260 Movie 43 (2013)
## 8261 Pervert's Guide to Ideology, The (2012)
## 8262 Sightseers (2012)
## 8263 Hansel & Gretel: Witch Hunters (2013)
## 8264 Why Stop Now (2012)
## 8265 Snow White (Blancanieves) (2012)
## 8266 Liability, The (2012)
## 8267 Angst (1983)
## 8268 Stand Up Guys (2012)
## 8269 Call Me Kuchu (2012)
## 8270 Side Effects (2013)
## 8271 Identity Thief (2013)
## 8272 Battlestar Galactica: Blood & Chrome (2012)
## 8273 Beautiful Creatures (2013)
## 8274 Good Day to Die Hard, A (2013)
## 8275 World Before Her, The (2012)
## 8276 Safe Haven (2013)
## 8277 Frozen Planet (2011)
## 8278 Act of Killing, The (2012)
## 8279 Room 237 (2012)
## 8280 Before Midnight (2013)
## 8281 TPB AFK: The Pirate Bay Away from Keyboard (2013)
## 8282 Oh Boy (A Coffee in Berlin) (2012)
## 8283 Jack the Giant Slayer (2013)
## 8284 Wadjda (2012)
## 8285 G.I. Joe: Retaliation (2013)
## 8286 Stoker (2013)
## 8287 Sound City (2013)
## 8288 Oz the Great and Powerful (2013)
## 8289 Croods, The (2013)
## 8290 Incredible Burt Wonderstone, The (2013)
## 8291 Spring Breakers (2013)
## 8292 Call, The (2013)
## 8293 Olympus Has Fallen (2013)
## 8294 First Time, The (2012)
## 8295 Place Beyond the Pines, The (2012)
## 8296 Brass Teapot, The (2012)
## 8297 Phil Spector (2013)
## 8298 Host, The (2013)
## 8299 Admission (2013)
## 8300 Trance (2013)
## 8301 Death on the Staircase (Soupçons) (2004)
## 8302 Oblivion (2013)
## 8303 Dark Tide (2012)
## 8304 42 (2013)
## 8305 Happy (2011)
## 8306 From the Sky Down (2011)
## 8307 Wolf Children (Okami kodomo no ame to yuki) (2012)
## 8308 Pain & Gain (2013)
## 8309 This Is the End (2013)
## 8310 Iron Man 3 (2013)
## 8311 English Teacher, The (2013)
## 8312 Mud (2012)
## 8313 Bill Hicks: Revelations (1993)
## 8314 Legendary Weapons of China (1982)
## 8315 Pawn (2013)
## 8316 Syrup (2013)
## 8317 Woman in the Fifth, The (Femme du Vème, La) (2011)
## 8318 Great Gatsby, The (2013)
## 8319 Star Trek Into Darkness (2013)
## 8320 Wish You Were Here (2012)
## 8321 Internship, The (2013)
## 8322 Stories We Tell (2012)
## 8323 Ivan Vasilievich: Back to the Future (Ivan Vasilievich menyaet professiyu) (1973)
## 8324 Only God Forgives (2013)
## 8325 Hangover Part III, The (2013)
## 8326 Fast & Furious 6 (Fast and the Furious 6, The) (2013)
## 8327 Epic (2013)
## 8328 Past, The (Le passé) (2013)
## 8329 Broken Circle Breakdown, The (2012)
## 8330 Frances Ha (2012)
## 8331 Behind the Candelabra (2013)
## 8332 After Earth (2013)
## 8333 Now You See Me (2013)
## 8334 Lovelace (2013)
## 8335 Way, Way Back, The (2013)
## 8336 Foxfire (2012)
## 8337 Man of Steel (2013)
## 8338 Kings of Summer, The (2013)
## 8339 20 Feet from Stardom (Twenty Feet from Stardom) (2013)
## 8340 Bling Ring, The (2013)
## 8341 Monsters University (2013)
## 8342 Fullmetal Alchemist: The Sacred Star of Milos (2011)
## 8343 Not Suitable for Children (2012)
## 8344 Pacific Rim (2013)
## 8345 Best Offer, The (Migliore offerta, La) (2013)
## 8346 World War Z (2013)
## 8347 Elysium (2013)
## 8348 What Maisie Knew (2012)
## 8349 American Mary (2012)
## 8350 Despicable Me 2 (2013)
## 8351 White House Down (2013)
## 8352 World's End, The (2013)
## 8353 Heat, The (2013)
## 8354 Lone Ranger, The (2013)
## 8355 Woody Allen: A Documentary (2012)
## 8356 Passion (2012)
## 8357 Knot, The (2012)
## 8358 The Spectacular Now (2013)
## 8359 Lifeguard, The (2013)
## 8360 Sharknado (2013)
## 8361 Fruitvale Station (2013)
## 8362 R.I.P.D. (2013)
## 8363 Justice League: The Flashpoint Paradox (2013)
## 8364 Joker (2012)
## 8365 Conjuring, The (2013)
## 8366 Angel Named Billy, An (2007)
## 8367 Turbo (2013)
## 8368 Wolverine, The (2013)
## 8369 Drinking Buddies (2013)
## 8370 Red 2 (2013)
## 8371 Miami Connection (1987)
## 8372 Coffee Town (2013)
## 8373 Revenge for Jolly! (2012)
## 8374 2 Guns (2013)
## 8375 Blue Jasmine (2013)
## 8376 Great Beauty, The (Grande Bellezza, La) (2013)
## 8377 Louis C.K.: Oh My God (2013)
## 8378 Percy Jackson: Sea of Monsters (2013)
## 8379 Smurfs 2, The (2013)
## 8380 Alan Partridge: Alpha Papa (2013)
## 8381 Forsyte Saga, The (1967)
## 8382 Man of Tai Chi (2013)
## 8383 We're the Millers (2013)
## 8384 Grown Ups 2 (2013)
## 8385 Kick-Ass 2 (2013)
## 8386 Riddick (2013)
## 8387 Planes (2013)
## 8388 Blackfish (2013)
## 8389 Wind Rises, The (Kaze tachinu) (2013)
## 8390 Jobs (2013)
## 8391 Mortal Instruments: City of Bones, The (2013)
## 8392 Touchy Feely (2013)
## 8393 Lee Daniels' The Butler (2013)
## 8394 In a World... (2013)
## 8395 About Time (2013)
## 8396 Justice League: Crisis on Two Earths (2010)
## 8397 Frozen Ground, The (2013)
## 8398 You're Next (2011)
## 8399 Tidal Wave (2009)
## 8400 Family Band: The Cowsills Story (2011)
## 8401 Chicago 8, The (2011)
## 8402 First Nudie Musical, The (1976)
## 8403 Koch (2012)
## 8404 Evocateur: The Morton Downey Jr. Movie (2012)
## 8405 Getaway (2013)
## 8406 Gravity (2013)
## 8407 What If (2013)
## 8408 Prisoners (2013)
## 8409 Out of the Furnace (Dust to Dust) (Low Dweller, The) (2013)
## 8410 Austenland (2013)
## 8411 Rush (2013)
## 8412 Family, The (2013)
## 8413 Short Term 12 (2013)
## 8414 To Do List, The (2013)
## 8415 Inescapable (2012)
## 8416 Nebraska (2013)
## 8417 Enough Said (2013)
## 8418 Don Jon (2013)
## 8419 Mood Indigo (L'écume des jours) (2013)
## 8420 Crystal Fairy & the Magical Cactus and 2012 (2013)
## 8421 Runner Runner (2013)
## 8422 Blue Is the Warmest Color (La vie d'Adèle) (2013)
## 8423 Inequality for All (2013)
## 8424 Cloudy with a Chance of Meatballs 2 (2013)
## 8425 Captain Phillips (2013)
## 8426 Machete Kills (Machete 2) (2013)
## 8427 Filth (2013)
## 8428 Just Wright (2010)
## 8429 Carrie (2013)
## 8430 Counselor, The (2013)
## 8431 Bloodsucking Freaks (1976)
## 8432 Congress, The (2013)
## 8433 12 Years a Slave (2013)
## 8434 All Is Lost (2013)
## 8435 Ender's Game (2013)
## 8436 Maniac (1963)
## 8437 Blue Umbrella, The (2013)
## 8438 Toy Story of Terror (2013)
## 8439 Jackass Presents: Bad Grandpa (2013)
## 8440 Thor: The Dark World (2013)
## 8441 Dallas Buyers Club (2013)
## 8442 Marc Maron: Thinky Pain (2013)
## 8443 Selfish Giant, The (2013)
## 8444 Pieta (2013)
## 8445 Somm (2012)
## 8446 Last Vegas (2013)
## 8447 Muscle Shoals (2013)
## 8448 Stephen Tobolowsky's Birthday Party (2005)
## 8449 Absent (Ausente) (2011)
## 8450 Philomena (2013)
## 8451 Book Thief, The (2013)
## 8452 Ida (2013)
## 8453 One Piece Film: Strong World (2009)
## 8454 One Piece Film Z (2012)
## 8455 The Hunger Games: Catching Fire (2013)
## 8456 Hobbit: The Desolation of Smaug, The (2013)
## 8457 47 Ronin (2013)
## 8458 Delivery Man (2013)
## 8459 Charlie Countryman (2013)
## 8460 Day of the Doctor, The (2013)
## 8461 Frozen (2013)
## 8462 Trigun: Badlands Rumble (2010)
## 8463 Inside Llewyn Davis (2013)
## 8464 Wolf of Wall Street, The (2013)
## 8465 Mandela: Long Walk to Freedom (2013)
## 8466 Grave Encounters 2 (2012)
## 8467 Evangelion: 3.0 You Can (Not) Redo (2012)
## 8468 All is Bright (2013)
## 8469 American Hustle (2013)
## 8470 Secret Life of Walter Mitty, The (2013)
## 8471 Her (2013)
## 8472 Six by Sondheim (2013)
## 8473 Dead Set (2008)
## 8474 Lone Survivor (2013)
## 8475 Zatoichi on the Road (Zatôichi kenka-tabi) (Zatôichi 5) (1963)
## 8476 Geography Club (2013)
## 8477 Saving Mr. Banks (2013)
## 8478 Oldboy (2013)
## 8479 Anchorman 2: The Legend Continues (2013)
## 8480 Whoopi Goldberg Presents Moms Mabley (2013)
## 8481 Snowpiercer (2013)
## 8482 Kidnapping, Caucasian Style (Kavkazskaya plennitsa) (1967)
## 8483 Wrong Cops (2013)
## 8484 Punk's Dead: SLC Punk! 2 (2014)
## 8485 Fireworks Wednesday (Chaharshanbe-soori) (2006)
## 8486 Am Ende eiens viel zu kurzen Tages (Death of a superhero) (2011)
## 8487 Springsteen & I (2013)
## 8488 Borgman (2013)
## 8489 Grudge Match (2013)
## 8490 Paranormal Activity: The Marked Ones (2014)
## 8491 Only Lovers Left Alive (2013)
## 8492 I Know That Voice (2013)
## 8493 Bad Karma (2012)
## 8494 Dragon Ball Z: Battle of Gods (2013)
## 8495 Like Father, Like Son (Soshite chichi ni naru) (2013)
## 8496 Dragon ball Z 04: Lord Slug (1991)
## 8497 Other Shore, The (2013)
## 8498 Dragon Ball: The Path to Power (Doragon bôru: Saikyô e no michi) (1996)
## 8499 Ride Along (2014)
## 8500 Jack Ryan: Shadow Recruit (2014)
## 8501 Divergent (2014)
## 8502 Hotel Chevalier (Part 1 of 'The Darjeeling Limited') (2007)
## 8503 Atrocious (2010)
## 8504 Dark Touch (2013)
## 8505 Yeh Jawaani Hai Deewani (2013)
## 8506 Big Bang Theory, The (2007-)
## 8507 String, The (Le fil) (2009)
## 8508 Fawlty Towers (1975-1979)
## 8509 Drift (2013)
## 8510 I, Frankenstein (2014)
## 8511 Generation Kill (2008)
## 8512 Better Living Through Chemistry (2014)
## 8513 Nymphomaniac: Volume I (2013)
## 8514 Enemy (2013)
## 8515 Wonder Woman (2009)
## 8516 Same Love, Same Rain (El mismo amor, la misma lluvia) (1999)
## 8517 Monuments Men, The (2014)
## 8518 The Lego Movie (2014)
## 8519 RoboCop (2014)
## 8520 Art of the Steal, The (2013)
## 8521 Cowboy Bebop (1998)
## 8522 Nymphomaniac: Volume II (2013)
## 8523 Knights of Badassdom (2013)
## 8524 Four, The (Si da ming bu) (2012)
## 8525 Venus in Fur (La Vénus àla fourrure) (2013)
## 8526 Date and Switch (2014)
## 8527 Zero Theorem, The (2013)
## 8528 Winter's Tale (2014)
## 8529 No Nukes (1980)
## 8530 Journey, The (El viaje) (1992)
## 8531 Cold Comes the Night (2013)
## 8532 Someone Marry Barry (2014)
## 8533 Gerontophilia (2013)
## 8534 About Last Night (2014)
## 8535 Grand Budapest Hotel, The (2014)
## 8536 That Awkward Moment (2014)
## 8537 Interstellar (2014)
## 8538 Welcome to the Jungle (2013)
## 8539 Non-Stop (2014)
## 8540 300: Rise of an Empire (2014)
## 8541 Particle Fever (2013)
## 8542 Obvious Child (2014)
## 8543 Cheap Thrills (2013)
## 8544 Mr. Peabody & Sherman (2014)
## 8545 Under the Skin (2013)
## 8546 Need for Speed (2014)
## 8547 Barefoot (2014)
## 8548 Veronica Mars (2014)
## 8549 Bad Words (2013)
## 8550 Broderskab (Brotherhood) (2009)
## 8551 Captain America: The Winter Soldier (2014)
## 8552 Starred Up (2013)
## 8553 Noah (2014)
## 8554 Mistaken for Strangers (2013)
## 8555 Muppets Most Wanted (2014)
## 8556 Wetlands (Feuchtgebiete) (2013)
## 8557 Survival Island (Three) (2005)
## 8558 Draft Day (2014)
## 8559 We Are the Best! (Vi är bäst!) (2013)
## 8560 The Raid 2: Berandal (2014)
## 8561 The Amazing Spider-Man 2 (2014)
## 8562 Calvary (2014)
## 8563 Oculus (2013)
## 8564 Cold in July (2014)
## 8565 Witching and Bitching (Brujas de Zugarramurdi, Las) (2014)
## 8566 Rio 2 (2014)
## 8567 Transcendence (2014)
## 8568 Wake Wood (2010)
## 8569 Mondo Hollywood (1967)
## 8570 Other Woman, The (2014)
## 8571 Mulan II (2004)
## 8572 Brick Mansions (2014)
## 8573 Firstborn (1984)
## 8574 Rocket, The (2013)
## 8575 Centenarian Who Climbed Out the Window and Vanished, The (HundraÃÂ¥ringen som klev ut genom fönstret och försvann) (2013)
## 8576 Locke (2013)
## 8577 Neighbors (2014)
## 8578 Fragile Trust: Plagiarism, Power, and Jayson Blair at the New York Times, A (2013)
## 8579 Jodorowsky's Dune (2013)
## 8580 Belle (2013)
## 8581 Immigrant, The (2013)
## 8582 Lucy (2014)
## 8583 X-Men: Days of Future Past (2014)
## 8584 Godzilla (2014)
## 8585 Blue Ruin (2013)
## 8586 Chef (2014)
## 8587 Lesson of the Evil (Aku no kyôten) (2012)
## 8588 Love God?, The (1969)
## 8589 Normal Heart, The (2014)
## 8590 Blended (2014)
## 8591 Begin Again (2013)
## 8592 Kelly & Cal (2014)
## 8593 Maleficent (2014)
## 8594 Zombeavers (2014)
## 8595 At Middleton (2013)
## 8596 A Million Ways to Die in the West (2014)
## 8597 Edge of Tomorrow (2014)
## 8598 Mission: Impossible - Rogue Nation (2015)
## 8599 Million Dollar Arm (2014)
## 8600 Lilting (2014)
## 8601 The Fault in Our Stars (2014)
## 8602 Raze (2013)
## 8603 Tangled Ever After (2012)
## 8604 Camille Claudel 1915 (2013)
## 8605 Maps to the Stars (2014)
## 8606 Back in the Day (2014)
## 8607 22 Jump Street (2014)
## 8608 Equalizer, The (2014)
## 8609 How to Train Your Dragon 2 (2014)
## 8610 Birdman: Or (The Unexpected Virtue of Ignorance) (2014)
## 8611 Haunt (2013)
## 8612 Boyhood (2014)
## 8613 Think Like a Man Too (2014)
## 8614 Internet's Own Boy: The Story of Aaron Swartz, The (2014)
## 8615 Transformers: Age of Extinction (2014)
## 8616 Finding Vivian Maier (2013)
## 8617 Frank (2014)
## 8618 They Came Together (2014)
## 8619 Planes: Fire & Rescue (2014)
## 8620 Tammy (2014)
## 8621 Babadook, The (2014)
## 8622 White God (Fehér isten) (2014)
## 8623 Whiplash (2014)
## 8624 Gone Girl (2014)
## 8625 Willie & Phil (1980)
## 8626 Life Itself (2014)
## 8627 Dawn of the Planet of the Apes (2014)
## 8628 Battered Bastards of Baseball, The (2014)
## 8629 No One Lives (2012)
## 8630 Miss Violence (2013)
## 8631 Charlie's Country (2013)
## 8632 And So It Goes (2014)
## 8633 Premature (2014)
## 8634 Sex Tape (2014)
## 8635 I Origins (2014)
## 8636 Purge: Anarchy, The (2014)
## 8637 Words and Pictures (2013)
## 8638 Guardians of the Galaxy (2014)
## 8639 The Expendables 3 (2014)
## 8640 Hercules (2014)
## 8641 Once My Mother (2014)
## 8642 A Most Wanted Man (2014)
## 8643 Trip to Italy, The (2014)
## 8644 Felony (2013)
## 8645 Get on Up (2014)
## 8646 Dog, The (2013)
## 8647 Magic in the Moonlight (2014)
## 8648 Housebound (2014)
## 8649 The Hundred-Foot Journey (2014)
## 8650 Jupiter Ascending (2015)
## 8651 Teenage Mutant Ninja Turtles (2014)
## 8652 Giver, The (2014)
## 8653 Revenge of the Green Dragons (2014)
## 8654 Let's Be Cops (2014)
## 8655 Inbetweeners 2, The (2014)
## 8656 Sacrament, The (2013)
## 8657 Sin City: A Dame to Kill For (2014)
## 8658 Canal, The (2014)
## 8659 Two Days, One Night (Deux jours, une nuit) (2014)
## 8660 Coherence (2013)
## 8661 As Above, So Below (2014)
## 8662 One I Love, The (2014)
## 8663 Guest, The (2014)
## 8664 Nixon by Nixon: In His Own Words (2014)
## 8665 Pride (2014)
## 8666 Honeymoon (2014)
## 8667 The Drop (2014)
## 8668 The Skeleton Twins (2014)
## 8669 Bambi Meets Godzilla (1969)
## 8670 Dim Sum: A Little Bit of Heart (1985)
## 8671 Maze Runner, The (2014)
## 8672 1971 (2014)
## 8673 Laggies (2014)
## 8674 Force Majeure (Turist) (2014)
## 8675 White Bird in a Blizzard (2014)
## 8676 Helter Skelter (1976)
## 8677 Boxtrolls, The (2014)
## 8678 This Is Where I Leave You (2014)
## 8679 Look of Silence, The (2014)
## 8680 American Sniper (2014)
## 8681 Tusk (2014)
## 8682 Horns (2014)
## 8683 Two Night Stand (2014)
## 8684 SS Experiment Love Camp (Lager SSadis Kastrat Kommandantur) (1976)
## 8685 Dracula Untold (2014)
## 8686 Stretch (2014)
## 8687 Captive, The (2014)
## 8688 Predestination (2014)
## 8689 What We Do in the Shadows (2014)
## 8690 Challenge to Lassie (1949)
## 8691 The Best of Me (2014)
## 8692 John Wick (2014)
## 8693 Plastic (2014)
## 8694 Judge, The (2014)
## 8695 Love Is Strange (2014)
## 8696 Fury (2014)
## 8697 Salvation, The (2014)
## 8698 St. Vincent (2014)
## 8699 Rewrite, The (2014)
## 8700 Ouija (2014)
## 8701 Nightcrawler (2014)
## 8702 Big Hero 6 (2014)
## 8703 Dream Home (Wai dor lei ah yut ho) (2010)
## 8704 The Book of Life (2014)
## 8705 Time Lapse (2014)
## 8706 Ex Machina (2015)
## 8707 Simpsons: The Longest Daycare, The (2012)
## 8708 9 (2005)
## 8709 Doctor Strange (2007)
## 8710 The Young Savages (1961)
## 8711 Olive Kitteridge (2014)
## 8712 Foxcatcher (2014)
## 8713 Zulu (2013)
## 8714 Stonehearst Asylum (2014)
## 8715 Life Partners (2014)
## 8716 Drive Hard (2014)
## 8717 The Possession of Michael King (2014)
## 8718 Free Fall (2013)
## 8719 The Imitation Game (2014)
## 8720 Inherent Vice (2014)
## 8721 The Hunger Games: Mockingjay - Part 1 (2014)
## 8722 Sex Ed (2014)
## 8723 The Way He Looks (2014)
## 8724 Exodus: Gods and Kings (2014)
## 8725 Wild Tales (2014)
## 8726 Werner - Beinhart! (1990)
## 8727 Dumb and Dumber To (2014)
## 8728 The Longest Week (2014)
## 8729 Miss Meadows (2014)
## 8730 Dorothy Mills (2008)
## 8731 Dear White People (2014)
## 8732 The Theory of Everything (2014)
## 8733 Doctor Who: The Time of the Doctor (2013)
## 8734 Starry Eyes (2014)
## 8735 Song of the Sea (2014)
## 8736 Beyond the Lights (2014)
## 8737 Hello Ladies: The Movie (2014)
## 8738 Jurassic World (2015)
## 8739 Citizenfour (2014)
## 8740 Horrible Bosses 2 (2014)
## 8741 Penguins of Madagascar (2014)
## 8742 Water Diviner, The (2014)
## 8743 Maze Runner: Scorch Trials (2015)
## 8744 The Voices (2014)
## 8745 Trailer Park Boys: Live at the North Pole (2014)
## 8746 Dying of the Light (2014)
## 8747 The Borderlands (2013)
## 8748 By the Gun (2014)
## 8749 Omen IV: The Awakening (1991)
## 8750 Kill the Messenger (2014)
## 8751 Mei and the Kittenbus (2002)
## 8752 The Hobbit: The Battle of the Five Armies (2014)
## 8753 Selma (2014)
## 8754 Unbroken (2014)
## 8755 Playing It Cool (2014)
## 8756 Girl Walks Home Alone at Night, A (2014)
## 8757 Bill Hicks: Relentless (1992)
## 8758 A Most Violent Year (2014)
## 8759 Wild (2014)
## 8760 Top Five (2014)
## 8761 Big Eyes (2014)
## 8762 Into the Woods (2014)
## 8763 Men, Women & Children (2014)
## 8764 The Interview (2014)
## 8765 Kingsman: The Secret Service (2015)
## 8766 Night at the Museum: Secret of the Tomb (2014)
## 8767 Seventh Son (2014)
## 8768 Comet (2014)
## 8769 Chappie (2015)
## 8770 Taken 3 (2015)
## 8771 Blackhat (2015)
## 8772 Son of a Gun (2014)
## 8773 Terminator Genisys (2015)
## 8774 Robin Williams: Weapons of Self Destruction (2009)
## 8775 The War at Home (1979)
## 8776 Shriek If You Know What I Did Last Friday the Thirteenth (2000)
## 8777 The Car (1977)
## 8778 Red Army (2014)
## 8779 It Follows (2014)
## 8780 Off Beat (2004)
## 8781 The Great Gatsby (1926)
## 8782 Wicked Blood (2014)
## 8783 Mad Max: Fury Road (2015)
## 8784 Star Wars: Episode VII - The Force Awakens (2015)
## 8785 Ben-hur (2016)
## 8786 Warcraft (2016)
## 8787 Avengers: Age of Ultron (2015)
## 8788 Ant-Man (2015)
## 8789 Fantastic Four (2015)
## 8790 Deadpool (2016)
## 8791 Captain America: Civil War (2016)
## 8792 X-Men: Apocalypse (2016)
## 8793 Elsa & Fred (2014)
## 8794 The Passionate Plumber (1932)
## 8795 The Story on Page One (1959)
## 8796 Cake (2014)
## 8797 The Gambler (2014)
## 8798 Fifty Shades of Grey (2015)
## 8799 Rudolph the Red-Nosed Reindeer (1948)
## 8800 Beastie Boys: Sabotage (1994)
## 8801 American Heist (2015)
## 8802 The Pacific (2010)
## 8803 The DUFF (2015)
## 8804 Operation 'Y' & Other Shurik's Adventures (1965)
## 8805 Project Almanac (2015)
## 8806 Louis C.K.: Live at The Comedy Store (2015)
## 8807 Brooklyn (2015)
## 8808 The End of the Tour (2015)
## 8809 I'll See You in My Dreams (2015)
## 8810 True Story (2015)
## 8811 Drunk Stoned Brilliant Dead: The Story of the National Lampoon (2015)
## 8812 Going Clear: Scientology and the Prison of Belief (2015)
## 8813 Tig (2015)
## 8814 What Happened, Miss Simone? (2015)
## 8815 99 Homes (2014)
## 8816 The D Train (2015)
## 8817 Dope (2015)
## 8818 Me and Earl and the Dying Girl (2015)
## 8819 The Overnight (2015)
## 8820 People, Places, Things (2015)
## 8821 The Stanford Prison Experiment (2015)
## 8822 The Loft (2014)
## 8823 Back Soon (2007)
## 8824 Stormy Weather (1943)
## 8825 The Hateful Eight (2015)
## 8826 Paper Towns (2015)
## 8827 The Wedding Ringer (2015)
## 8828 The Boy Next Door (2015)
## 8829 45 Years (2015)
## 8830 As We Were Dreaming (2015)
## 8831 Victoria (2015)
## 8832 An Evening with Robin Williams (1982)
## 8833 Getting Go, the Go Doc Project (2013)
## 8834 The Clowns (1970)
## 8835 Superfast! (2015)
## 8836 Reality (2014)
## 8837 Focus (2015)
## 8838 Every Thing Will Be Fine (2015)
## 8839 The Second Best Exotic Marigold Hotel (2015)
## 8840 George Carlin: It's Bad for Ya! (2008)
## 8841 Ismael (2013)
## 8842 Tracers (2015)
## 8843 McFarland, USA (2015)
## 8844 Unfinished Business (2015)
## 8845 Run All Night (2015)
## 8846 Cinderella (2015)
## 8847 Kidnapping Mr. Heineken (2015)
## 8848 The Cobbler (2015)
## 8849 The Wrecking Crew (2008)
## 8850 Poltergeist (2015)
## 8851 Pan (2015)
## 8852 While We're Young (2014)
## 8853 Insurgent (2015)
## 8854 Home (2015)
## 8855 The Brave Little Toaster Goes to Mars (1998)
## 8856 Midnight Special (2015)
## 8857 The Disappearance of Eleanor Rigby: Her (2013)
## 8858 Boys (2014)
## 8859 Furious 7 (2015)
## 8860 Backcountry (2014)
## 8861 Muck (2015)
## 8862 The Conrad Boys (2006)
## 8863 George Carlin: Life Is Worth Losing (2005)
## 8864 The Day That Lasted 21 Years (2012)
## 8865 Get Hard (2015)
## 8866 Phoenix (2014)
## 8867 The Atticus Institute (2015)
## 8868 Last Knights (2015)
## 8869 The Jinx: The Life and Deaths of Robert Durst (2015)
## 8870 Woman in Gold (2015)
## 8871 Samba (2014)
## 8872 Tomorrowland (2015)
## 8873 No No: A Dockumentary (2014)
## 8874 The Harvest (2013)
## 8875 Paul Blart: Mall Cop 2 (2015)
## 8876 Seve (2014)
## 8877 Monkey Kingdom (2015)
## 8878 Sword of Vengeance (2014)
## 8879 The Age of Adaline (2015)
## 8880 Lovesick (2014)
## 8881 Danny Collins (2015)
## 8882 A Girl Like Her (2015)
## 8883 Grandma (2015)
## 8884 Kite (2014)
## 8885 San Andreas (2015)
## 8886 Welcome to Me (2014)
## 8887 Comedy Central Roast of James Franco (2013)
## 8888 Sarfarosh (1999)
## 8889 Far from the Madding Crowd (2015)
## 8890 Hitman: Agent 47 (2015)
## 8891 Ricki and the Flash (2015)
## 8892 Cocaine Cowboys: Reloaded (2014)
## 8893 Partisan (2015)
## 8894 Infini (2015)
## 8895 Pitch Perfect 2 (2015)
## 8896 Just Before I Go (2014)
## 8897 Carol (2015)
## 8898 The Lobster (2015)
## 8899 Maggie (2015)
## 8900 Hot Pursuit (2015)
## 8901 The Human Centipede III (Final Sequence) (2015)
## 8902 Open Secret (2013)
## 8903 The Martian (2015)
## 8904 Return to Sender (2015)
## 8905 Kung Fury (2015)
## 8906 Survivor (2015)
## 8907 Spy (2015)
## 8908 Trainwreck (2015)
## 8909 Aloha (2015)
## 8910 She's Funny That Way (2015)
## 8911 Entourage (2015)
## 8912 Inside Out (2015)
## 8913 The Wolfpack (2015)
## 8914 Love & Mercy (2014)
## 8915 The Hunger Games: Mockingjay - Part 2 (2015)
## 8916 Pixels (2015)
## 8917 Zenon: Girl of the 21st Century (1999)
## 8918 Zenon: The Zequel (2001)
## 8919 Zenon: Z3 (2004)
## 8920 The Secret Life of Pets (2016)
## 8921 A Deadly Adoption (2015)
## 8922 Self/less (2015)
## 8923 The Last Witch Hunter (2015)
## 8924 Suicide Squad (2016)
## 8925 Independence Day: Resurgence (2016)
## 8926 Star Trek 3 (2016)
## 8927 Ted 2 (2015)
## 8928 Minions (2015)
## 8929 The Good Dinosaur (2015)
## 8930 Black Mass (2015)
## 8931 Spectre (2015)
## 8932 Sharknado 3: Oh Hell No! (2015)
## 8933 George Carlin: Back in Town (1996)
## 8934 George Carlin: You Are All Diseased (1999)
## 8935 Ghost in the Shell 2.0 (2008)
## 8936 Steve Jobs (2015)
## 8937 Freaky Friday (1995)
## 8938 Vacation (2015)
## 8939 Creep (2014)
## 8940 The Face of an Angel (2015)
## 8941 Search Party (2014)
## 8942 Robot Overlords (2014)
## 8943 Bad Asses on the Bayou (2015)
## 8944 Batman v Superman: Dawn of Justice (2016)
## 8945 Amy (2015)
## 8946 Swimming Upstream (2002)
## 8947 Magic Mike XXL (2015)
## 8948 The Jungle Book (2016)
## 8949 The Man from U.N.C.L.E. (2015)
## 8950 7 Days in Hell (2015)
## 8951 The Walk (2015)
## 8952 Nasty Baby (2015)
## 8953 The Opposite Sex (2014)
## 8954 The Gallows (2015)
## 8955 Hands in the Air (2010)
## 8956 El vals de los inútiles (2014)
## 8957 Requiem For The Big East (2014)
## 8958 Afro Samurai (2007)
## 8959 The Revenant (2015)
## 8960 Irrational Man (2015)
## 8961 Everything's Gonna Be Great (1998)
## 8962 Southpaw (2015)
## 8963 Sicario (2015)
## 8964 Best of Enemies (2015)
## 8965 Anomalisa (2015)
## 8966 How to Make Love Like an Englishman (2014)
## 8967 The Intern (2015)
## 8968 Dreamcatcher (2015)
## 8969 Room (2015)
## 8970 The Runner (2015)
## 8971 The Gift (2015)
## 8972 George Carlin: Jammin' in New York (1992)
## 8973 The Witch (2015)
## 8974 Visit, The (2015)
## 8975 American Ultra (2015)
## 8976 Straight Outta Compton (2015)
## 8977 Cop Car (2015)
## 8978 Eighteen (2005)
## 8979 Get Your Stuff (2000)
## 8980 The Man I Love (1997)
## 8981 10 Attitudes (2001)
## 8982 16 Wishes (2010)
## 8983 29th and Gay (2005)
## 8984 Almost Normal (2005)
## 8985 The Men Next Door (2012)
## 8986 Long-Term Relationship (2006)
## 8987 3-Day Weekend (2008)
## 8988 The Big Gay Musical (2009)
## 8989 The Biggest Fan (2002)
## 8990 Boy Crazy (2009)
## 8991 Tangerine (2015)
## 8992 Fashion Victims (2007)
## 8993 Joy (2015)
## 8994 FAQs (2005)
## 8995 Suffragette (2015)
## 8996 War Room (2015)
## 8997 Legend (2015)
## 8998 Deathgasm (2015)
## 8999 The Danish Girl (2015)
## 9000 Green Room (2015)
## 9001 The Dress (1996)
## 9002 Beasts of No Nation (2015)
## 9003 Contracted: Phase II (2015)
## 9004 Tiger Orange (2014)
## 9005 Female on the Beach (1955)
## 9006 Romeos (2011)
## 9007 Listen to Me Marlon (2015)
## 9008 The Night Before (2015)
## 9009 Everest (2015)
## 9010 Spotlight (2015)
## 9011 Pawn Sacrifice (2015)
## 9012 Burnt (2015)
## 9013 Hotel Transylvania 2 (2015)
## 9014 Narcopolis (2014)
## 9015 Ashby (2015)
## 9016 Glen Campbell: I'll Be Me (2014)
## 9017 Bridge of Spies (2015)
## 9018 Hyena Road
## 9019 Into the Grizzly Maze (2015)
## 9020 The Invitation (2015)
## 9021 Hail, Caesar! (2016)
## 9022 February (2015)
## 9023 Goosebumps (2015)
## 9024 The Perfect Guy (2015)
## 9025 Bone Tomahawk (2015)
## 9026 The Dressmaker (2015)
## 9027 Strictly Business (1991)
## 9028 Rubble Kings (2015)
## 9029 Concussion (2015)
## 9030 Peanuts Movie, The (2015)
## 9031 The Boy and the Beast (2015)
## 9032 Plan B (2009)
## 9033 Land of Storms (2014)
## 9034 Naomi and Ely's No Kiss List (2015)
## 9035 Creed (2015)
## 9036 Twinsters (2015)
## 9037 Solace (2015)
## 9038 Bana Masal Anlatma (2015)
## 9039 Thou Gild'st the Even (2013)
## 9040 Straight-Jacket (2004)
## 9041 ðtirazñm Var (2014)
## 9042 Manson Family Vacation (2015)
## 9043 Pek Yakñnda (2014)
## 9044 A Very Murray Christmas (2015)
## 9045 Schneider vs. Bax (2015)
## 9046 Truth (2015)
## 9047 Big Short, The (2015)
## 9048 The Ridiculous 6 (2015)
## 9049 World of Tomorrow (2015)
## 9050 Zoolander 2 (2016)
## 9051 How to Be Single (2016)
## 9052 Daddy's Home (2015)
## 9053 Sisters (2015)
## 9054 Kung Fu Panda 3 (2016)
## 9055 Marco Polo: One Hundred Eyes (2015)
## 9056 A.R.O.G. (2008)
## 9057 Standoff (2016)
## 9058 Bajirao Mastani (2015)
## 9059 Swelter (2014)
## 9060 Pride and Prejudice and Zombies (2016)
## 9061 Close Range (2015)
## 9062 Sherlock: The Abominable Bride (2016)
## 9063 Making a Murderer (2015)
## 9064 The Lovers and the Despot
## 9065 The Boy (2016)
## 9066 Me Before You (2016)
## 9067 SOMM: Into the Bottle (2016)
## 9068 Miles Ahead (2016)
## 9069 10 Cloverfield Lane (2016)
## 9070 London Has Fallen (2016)
## 9071 Zootopia (2016)
## 9072 The Brothers Grimsby (2016)
## 9073 Michael Jackson's Thriller (1983)
## 9074 Demons (1971)
## 9075 The Last Days of Emma Blank (2009)
## 9076 The Neon Demon (2016)
## 9077 Hello, My Name Is Doris (2016)
## 9078 Life Is Sacred (2014)
## 9079 Keanu (2016)
## 9080 Ice Age: The Great Egg-Scapade (2016)
## 9081 Sing Street (2016)
## 9082 The Huntsman Winter's War (2016)
## 9083 Neighbors 2: Sorority Rising (2016)
## 9084 Hush (2016)
## 9085 Money Monster (2016)
## 9086 Finding Dory (2016)
## 9087 I Am Wrath (2016)
## 9088 Mother's Day (2016)
## 9089 The Nice Guys (2016)
## 9090 Daniel Tosh: Completely Serious (2007)
## 9091 The Shallows (2016)
## 9092 The Handmaiden (2016)
## 9093 Kill Command (2016)
## 9094 Now You See Me 2 (2016)
## 9095 The Video Dead (1987)
## 9096 Teenage Mutant Ninja Turtles: Out of the Shadows (2016)
## 9097 Popstar: Never Stop Never Stopping (2016)
## 9098 The Conjuring 2 (2016)
## 9099 Approaching the Unknown (2016)
## 9100 Ghostbusters (2016)
## 9101 Central Intelligence (2016)
## 9102 Jason Bourne (2016)
## 9103 The Maid's Room (2014)
## 9104 The Legend of Tarzan (2016)
## 9105 The Purge: Election Year (2016)
## 9106 Mike & Dave Need Wedding Dates (2016)
## 9107 Survive and Advance (2013)
## 9108 Tallulah (2016)
## 9109 Piper (2016)
## 9110 Nerve (2016)
## 9111 My Friend Rockefeller (2015)
## 9112 Sunspring (2016)
## 9113 Author: The JT LeRoy Story (2016)
## 9114 Hell or High Water (2016)
## 9115 Kingsglaive: Final Fantasy XV (2016)
## 9116 Body (2015)
## 9117 Sharknado 4: The 4th Awakens (2016)
## 9118 The Last Brickmaker in America (2001)
## 9119 Stranger Things
## 9120 Rustom (2016)
## 9121 Mohenjo Daro (2016)
## 9122 Shin Godzilla (2016)
## 9123 The Beatles: Eight Days a Week - The Touring Years (2016)
## 9124 The Gay Desperado (1936)
## 9125 Women of '69, Unboxed
## 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 Drama|Romance
## 35 Crime|Drama
## 36 Documentary|IMAX
## 37 Children|Comedy
## 38 Comedy|Romance
## 39 Drama
## 40 Drama|War
## 41 Action|Crime|Drama
## 42 Drama
## 43 Action|Adventure|Fantasy
## 44 Comedy|Drama|Thriller
## 45 Drama|Romance
## 46 Mystery|Thriller
## 47 Animation|Children|Drama|Musical|Romance
## 48 Drama|Romance
## 49 Crime|Mystery|Thriller
## 50 Comedy|Drama|Romance
## 51 Adventure|Drama
## 52 Children|Comedy
## 53 Drama
## 54 Drama
## 55 Comedy|Drama|Romance
## 56 Drama|Mystery
## 57 Adventure|Children|Fantasy
## 58 Drama|Thriller
## 59 Drama
## 60 Comedy|Crime
## 61 Comedy|Romance
## 62 Comedy
## 63 Action|Sci-Fi|Thriller
## 64 Comedy|Romance
## 65 Comedy
## 66 Action|Comedy|Horror|Thriller
## 67 Action
## 68 Comedy|Drama
## 69 Drama|War
## 70 Drama|Romance
## 71 Action|Sci-Fi|Thriller
## 72 Documentary
## 73 Action|Crime|Drama|Thriller
## 74 Drama|Thriller
## 75 Children|Drama
## 76 Crime|Drama|Romance
## 77 Comedy|Drama
## 78 Drama|Romance
## 79 Comedy|Drama
## 80 Drama|Romance
## 81 Action|Adventure|Drama
## 82 Children|Comedy
## 83 Comedy
## 84 Action|Thriller
## 85 Drama|Horror|Thriller
## 86 Comedy|Horror|Romance
## 87 Comedy|Drama|Romance
## 88 Action|Adventure|Thriller
## 89 Comedy|Drama
## 90 Crime|Drama
## 91 Action|Thriller
## 92 Documentary
## 93 Drama|Thriller
## 94 Adventure|Comedy|Crime|Romance
## 95 Comedy
## 96 Mystery|Sci-Fi|Thriller
## 97 Comedy
## 98 Drama|Romance
## 99 Adventure|Children|Comedy|Musical
## 100 Documentary
## 101 Action|Drama|War
## 102 Crime|Drama|Thriller
## 103 Action|Adventure|Comedy|Crime
## 104 Drama|Mystery
## 105 Drama
## 106 Documentary
## 107 Crime|Drama
## 108 Comedy|Romance
## 109 Comedy
## 110 Drama
## 111 Comedy|Romance
## 112 Drama|Mystery|Romance
## 113 Drama
## 114 Comedy
## 115 Adventure|Children|Fantasy
## 116 Comedy|Romance
## 117 Drama
## 118 Drama|Romance
## 119 Thriller
## 120 Comedy
## 121 Documentary
## 122 Drama|Romance
## 123 Comedy
## 124 Comedy
## 125 Action|Comedy|Crime|Drama|Thriller
## 126 Adventure|Children
## 127 Drama
## 128 Drama
## 129 Crime|Drama|Thriller
## 130 Adventure|Drama|IMAX
## 131 Action|Drama|Romance|War
## 132 Drama|Horror
## 133 Action|Adventure|Comedy|Crime
## 134 Drama
## 135 Adventure|Drama|War
## 136 Comedy|Drama
## 137 Comedy|War
## 138 Adventure|Children
## 139 Crime|Drama|Mystery
## 140 Action|Adventure|Mystery|Sci-Fi
## 141 Drama|Thriller|War
## 142 Documentary
## 143 Action|Romance|Western
## 144 Crime|Film-Noir|Mystery|Thriller
## 145 Action|Crime|Thriller
## 146 Comedy|Crime|Drama
## 147 Drama
## 148 Action|Drama|Romance
## 149 Adventure|Children|Drama
## 150 Action|Adventure|Crime|Thriller
## 151 Comedy|Drama
## 152 Action|Sci-Fi|Thriller
## 153 Action|Crime|Sci-Fi
## 154 Comedy
## 155 Drama
## 156 Comedy
## 157 Horror
## 158 Comedy|Drama
## 159 Drama|Romance
## 160 Comedy|Romance
## 161 Action|Children
## 162 Comedy|Horror|Thriller
## 163 Drama
## 164 Action|Crime|Thriller
## 165 Comedy|Romance
## 166 Comedy
## 167 Fantasy|Horror|Mystery
## 168 Comedy|Fantasy
## 169 Thriller
## 170 Drama|Romance
## 171 Drama
## 172 Comedy|Drama
## 173 Comedy|Drama|Romance
## 174 Horror|Sci-Fi
## 175 Action|Crime|Drama|Mystery|Sci-Fi|Thriller
## 176 Drama|Musical|Romance
## 177 Thriller
## 178 Drama|Fantasy
## 179 Drama|Romance
## 180 Comedy
## 181 Action
## 182 Comedy|Drama
## 183 Documentary
## 184 Drama|Romance
## 185 Action|Adventure|Sci-Fi
## 186 Drama
## 187 Drama
## 188 Drama
## 189 Drama|War
## 190 Drama|Romance
## 191 Comedy
## 192 Drama|Thriller
## 193 Comedy|Drama
## 194 Drama
## 195 Horror
## 196 Drama|Romance
## 197 Comedy
## 198 Comedy|Drama|Romance
## 199 Drama|Thriller
## 200 Action|Thriller
## 201 Comedy
## 202 Drama|Thriller
## 203 Drama|Thriller
## 204 Adventure|Comedy
## 205 Comedy|Drama|Romance
## 206 Drama
## 207 Comedy
## 208 Comedy|Drama
## 209 Action|Comedy|Romance
## 210 Comedy|Romance
## 211 Adventure|Children
## 212 Animation|Children|Comedy|Romance
## 213 Thriller
## 214 Children|Drama
## 215 Drama|Musical
## 216 Children|Comedy|Fantasy
## 217 Animation|Children
## 218 Crime|Drama
## 219 Documentary
## 220 Crime|Drama
## 221 Comedy
## 222 Drama|Romance
## 223 Children|Comedy
## 224 Action
## 225 Comedy|Romance
## 226 Drama|Horror
## 227 Drama
## 228 Comedy
## 229 Comedy|Sci-Fi
## 230 Mystery|Thriller
## 231 Adventure|Children|Comedy|Fantasy|Romance
## 232 Crime|Drama|Thriller
## 233 Action|Adventure|Sci-Fi
## 234 Drama
## 235 Children|Drama
## 236 Drama
## 237 Drama
## 238 Drama|Fantasy|Romance
## 239 Drama|Romance|War|Western
## 240 Comedy
## 241 Crime|Drama
## 242 Drama
## 243 Drama|Romance
## 244 Drama
## 245 Comedy|Drama
## 246 Drama|Horror|Sci-Fi
## 247 Comedy
## 248 Comedy
## 249 Comedy|Romance
## 250 Drama
## 251 Comedy
## 252 Drama
## 253 Drama|Thriller
## 254 Comedy|Drama|Romance
## 255 Drama
## 256 Crime|Drama
## 257 Drama|Horror
## 258 Comedy|Romance
## 259 Action|Crime|Thriller
## 260 Comedy|Romance
## 261 Crime|Drama
## 262 Drama|Thriller
## 263 Action|Drama|Sci-Fi|Thriller
## 264 Action|Crime|Drama|Thriller
## 265 Comedy|Romance
## 266 Comedy|Romance
## 267 Comedy|Crime|Drama|Thriller
## 268 Drama
## 269 Drama
## 270 Drama|Romance
## 271 Drama|Romance
## 272 Action|Thriller|Western
## 273 Comedy|Drama
## 274 Comedy
## 275 Drama
## 276 Drama
## 277 Comedy|Drama
## 278 Drama
## 279 Comedy
## 280 Animation|Children
## 281 Children|Drama|Fantasy|Mystery
## 282 Action|Drama|Thriller
## 283 Action|Adventure|Sci-Fi
## 284 Comedy|Drama|Fantasy
## 285 Crime|Drama
## 286 Comedy|Drama|Thriller
## 287 Film-Noir|Thriller
## 288 Drama
## 289 Comedy|Drama
## 290 Comedy|Drama
## 291 Comedy
## 292 Drama
## 293 Action|Comedy|Sci-Fi
## 294 Horror|Thriller
## 295 Adventure|Drama|Sci-Fi
## 296 Action|Crime|Horror
## 297 Drama
## 298 Horror|Sci-Fi
## 299 Comedy
## 300 Drama
## 301 Mystery|Thriller
## 302 Drama|War
## 303 Drama
## 304 Action|Sci-Fi|Thriller
## 305 Comedy|Romance
## 306 Adventure|Drama|War
## 307 Drama
## 308 Comedy
## 309 Children
## 310 Comedy
## 311 Comedy|Drama
## 312 Drama|Musical
## 313 Drama|Film-Noir|Romance
## 314 Comedy
## 315 Action|Crime|Drama|Thriller
## 316 Drama|Mystery|Thriller
## 317 Comedy|Drama|Romance
## 318 Comedy|Drama
## 319 Action|Crime|Fantasy|Thriller
## 320 Drama
## 321 Children|Comedy|Fantasy
## 322 Comedy|Drama|Romance|War
## 323 Comedy|Romance
## 324 Drama
## 325 Action|Comedy
## 326 Comedy|Drama|Romance
## 327 Adventure|Children|Romance
## 328 Documentary
## 329 Adventure|Animation|Children|Drama|Musical|IMAX
## 330 Drama
## 331 Drama|Horror|Mystery|Thriller
## 332 Action|Comedy|Crime|Fantasy
## 333 Adventure|Comedy|Western
## 334 Drama
## 335 Action|Comedy
## 336 Comedy|Drama
## 337 Comedy|Drama|Romance
## 338 Thriller
## 339 Children|Comedy
## 340 Drama
## 341 Action|Thriller
## 342 Action|Romance|Thriller
## 343 Comedy|Romance
## 344 Action|Sci-Fi|Thriller
## 345 Action|Adventure|Comedy|Romance|Thriller
## 346 Drama|Romance
## 347 Drama|Horror|Romance|Thriller
## 348 Western
## 349 Action|Crime|Drama
## 350 Action|Comedy
## 351 Drama
## 352 Drama|Romance|War
## 353 Action|Crime|Drama
## 354 Crime|Drama
## 355 Adventure|Animation
## 356 Action|Adventure|Fantasy
## 357 Action|Thriller
## 358 Action|Fantasy
## 359 Horror|Thriller
## 360 Drama
## 361 Crime|Drama
## 362 Children|Comedy|Fantasy
## 363 Drama
## 364 Comedy
## 365 Comedy
## 366 Comedy|Thriller
## 367 Western
## 368 Comedy|Romance
## 369 Drama
## 370 Comedy
## 371 Action|Comedy|Crime|Thriller
## 372 Adventure|Children|Drama
## 373 Thriller
## 374 Action|Thriller
## 375 Drama
## 376 Drama|Romance
## 377 Horror|Sci-Fi|Thriller
## 378 Drama|Mystery|Romance|Thriller
## 379 Drama
## 380 Comedy
## 381 Crime|Drama
## 382 Adventure|Comedy|Western
## 383 Comedy
## 384 Action|Adventure|Thriller
## 385 Comedy|Sci-Fi
## 386 Drama|Thriller
## 387 Comedy
## 388 Action|Comedy|Drama
## 389 Drama
## 390 Comedy|Romance
## 391 Comedy
## 392 Action|Adventure|Sci-Fi
## 393 Adventure|Documentary
## 394 Comedy|Romance
## 395 Comedy
## 396 Drama|Romance
## 397 Comedy|Romance
## 398 Drama
## 399 Comedy
## 400 Comedy|Drama
## 401 Drama|Mystery|Romance
## 402 Drama
## 403 Comedy|Romance
## 404 Drama|Thriller
## 405 Adventure|Children|Drama
## 406 Crime|Drama|Thriller
## 407 Thriller
## 408 Drama|Western
## 409 Action|Adventure|Crime|Drama|Romance|Thriller
## 410 Comedy
## 411 Drama|Romance
## 412 Crime|Drama|Thriller
## 413 Action|Adventure|Crime|Thriller
## 414 Action|Drama|War
## 415 Action|Comedy|War
## 416 Comedy
## 417 Comedy|Romance
## 418 Drama|Romance
## 419 Comedy
## 420 Comedy
## 421 Comedy|Drama
## 422 Comedy|War
## 423 Action|Thriller
## 424 Drama
## 425 Comedy|Drama
## 426 Drama|Musical
## 427 Action|Crime|Thriller
## 428 Action|Adventure|Sci-Fi|Thriller
## 429 Drama|Thriller
## 430 Crime|Drama|Thriller
## 431 Drama
## 432 Adventure|Children
## 433 Action|Adventure|Comedy|Fantasy
## 434 Comedy
## 435 Comedy|Western
## 436 Drama|Romance
## 437 Comedy
## 438 Thriller
## 439 Drama
## 440 Comedy|Mystery
## 441 Action|Crime|Drama
## 442 Action|Adventure|Thriller
## 443 Drama
## 444 Comedy|Drama|Romance|Thriller
## 445 Comedy|Romance
## 446 Drama|Romance
## 447 Comedy|Romance
## 448 Comedy|Drama
## 449 Drama
## 450 Action|Children|Romance
## 451 Action|Drama|Sci-Fi
## 452 Comedy
## 453 Drama|Fantasy|Romance
## 454 Crime|Drama|Thriller
## 455 Drama
## 456 Drama|Romance
## 457 Drama
## 458 Action|Drama
## 459 Horror|Sci-Fi
## 460 Comedy|Mystery|Romance
## 461 Comedy
## 462 Drama|Romance
## 463 Comedy|Drama
## 464 Action|Drama|Mystery
## 465 Comedy
## 466 Action|Crime|Drama|Sci-Fi|Thriller
## 467 Comedy
## 468 Crime|Thriller
## 469 Action|Drama
## 470 Drama
## 471 Drama
## 472 Drama
## 473 Drama|War
## 474 Comedy|Drama
## 475 Drama
## 476 Children|Drama
## 477 Comedy|Crime|Horror
## 478 Action|Adventure|Fantasy|Mystery
## 479 Drama|Romance
## 480 Drama
## 481 Drama
## 482 Drama
## 483 Drama
## 484 Comedy|Drama|Romance
## 485 Thriller
## 486 Action|Sci-Fi|Thriller
## 487 Comedy|Drama|Romance
## 488 Comedy|Romance|Thriller
## 489 Action|Crime
## 490 Action|Adventure|Children|Comedy|Fantasy|Sci-Fi
## 491 Action|Adventure|Thriller
## 492 Action|Mystery|Thriller
## 493 Drama|Musical
## 494 Comedy|Romance
## 495 Animation|Children|Fantasy|Musical
## 496 Action|Adventure|Comedy|Romance
## 497 Action|Drama|Western
## 498 Crime|Drama|Thriller
## 499 Crime|Thriller
## 500 Documentary
## 501 Action|Adventure|Animation|Children|Fantasy
## 502 Comedy
## 503 Drama|Thriller
## 504 Comedy|Drama
## 505 Drama|Romance
## 506 Comedy
## 507 Drama|Horror
## 508 Comedy|Drama
## 509 Comedy|Drama
## 510 Comedy|Drama
## 511 Drama|Romance
## 512 Drama
## 513 Comedy|Drama
## 514 Children|Comedy
## 515 Adventure|Children|Drama
## 516 Drama
## 517 Documentary
## 518 Comedy|Drama
## 519 Comedy
## 520 Children|Comedy
## 521 Comedy|Drama|Fantasy|Romance|Thriller
## 522 Adventure|Animation|Children|Comedy|Musical
## 523 Action|Sci-Fi
## 524 Adventure|Drama|Western
## 525 Action|Crime|Thriller
## 526 Crime|Horror|Thriller
## 527 Animation|Children|Drama|Fantasy|Musical
## 528 Animation|Children|Fantasy|Musical|Romance|IMAX
## 529 Animation|Children|Fantasy|Musical
## 530 Comedy|Romance
## 531 Adventure|Western
## 532 Action|Comedy|Crime
## 533 Comedy
## 534 Drama|Romance
## 535 Fantasy|Horror
## 536 Comedy|Crime|Drama|Thriller
## 537 Adventure|Children
## 538 Action|Adventure|Animation|Horror|Sci-Fi
## 539 Action|Horror|Sci-Fi
## 540 Comedy
## 541 Drama|Romance
## 542 Drama|Thriller
## 543 Comedy|Drama
## 544 Animation|Children
## 545 Comedy|Drama
## 546 Comedy
## 547 Drama
## 548 Drama
## 549 Comedy
## 550 Drama|Thriller
## 551 Crime|Drama|Mystery|Thriller
## 552 Drama|Romance
## 553 Adventure|Animation|Children|Fantasy|Musical|Romance
## 554 Drama|War
## 555 Comedy
## 556 Comedy|Drama
## 557 Comedy
## 558 Romance
## 559 Comedy|Drama
## 560 Drama|Thriller
## 561 Action|Crime|Drama|War
## 562 Action|Adventure|Mystery|Thriller
## 563 Drama
## 564 Comedy
## 565 Action|Adventure|Fantasy
## 566 Comedy
## 567 Crime|Drama|Thriller
## 568 Adventure|Animation|Children|Fantasy|Musical
## 569 Thriller
## 570 Comedy
## 571 Comedy
## 572 Comedy|Drama|War
## 573 Action
## 574 Drama
## 575 Drama
## 576 Comedy|Sci-Fi
## 577 Adventure|Animation|Children|Comedy|Fantasy|Sci-Fi
## 578 Adventure|Comedy|Sci-Fi
## 579 Drama|Thriller
## 580 Drama
## 581 Drama|Mystery|Romance|Sci-Fi|Thriller
## 582 Crime
## 583 Drama
## 584 Drama|Romance
## 585 Action|Adventure|Comedy|War
## 586 Drama|Romance
## 587 Comedy|Romance
## 588 Action|Sci-Fi|Thriller
## 589 Action|Crime|Drama
## 590 Mystery|Thriller
## 591 Drama|Thriller
## 592 Drama|Romance
## 593 Drama
## 594 Comedy
## 595 Drama
## 596 Drama
## 597 Action|Adventure
## 598 Comedy
## 599 Crime|Drama|Thriller
## 600 Comedy|Romance
## 601 Adventure|Animation|Children|Comedy|Musical
## 602 Comedy
## 603 Adventure|Children
## 604 Drama|Mystery|Western
## 605 Drama|Romance
## 606 Comedy|Fantasy|Sci-Fi
## 607 Comedy
## 608 Adventure|Animation|Comedy
## 609 Drama
## 610 Documentary
## 611 Drama|Fantasy|Horror|Thriller
## 612 Comedy
## 613 Drama
## 614 Comedy
## 615 Crime|Thriller
## 616 Action|Adventure|Thriller
## 617 Horror
## 618 Action|Adventure|Romance|Thriller
## 619 Action|Sci-Fi
## 620 Animation|Sci-Fi
## 621 Horror|Thriller
## 622 Comedy
## 623 Animation|Children|Comedy
## 624 Film-Noir
## 625 Comedy
## 626 Action|Sci-Fi|Thriller
## 627 Comedy|War
## 628 Comedy|Drama|Romance
## 629 Adventure|Children
## 630 Children|Drama
## 631 Documentary
## 632 Drama
## 633 Documentary
## 634 Drama|War
## 635 Action|Adventure
## 636 Comedy|Crime
## 637 Drama|Romance
## 638 Comedy|Drama
## 639 Drama
## 640 Comedy|Drama
## 641 Documentary
## 642 Horror|Mystery
## 643 Comedy|Crime|Drama
## 644 Drama|Romance
## 645 Action|Adventure|Sci-Fi|Thriller
## 646 Drama
## 647 Drama|Thriller
## 648 Animation|Children|Drama|Musical|Romance
## 649 Comedy|Thriller
## 650 Comedy
## 651 Action|Drama|Thriller
## 652 Documentary
## 653 Comedy|Fantasy|Romance|Sci-Fi
## 654 Drama
## 655 Action|Adventure|Drama|Thriller
## 656 Comedy|Horror|Thriller
## 657 Drama|Mystery|Western
## 658 Children|Comedy
## 659 Drama|Romance
## 660 Comedy|Drama|Romance
## 661 Comedy|Romance
## 662 Drama|Thriller
## 663 Crime|Drama
## 664 Adventure|Children
## 665 Action|Adventure
## 666 Children|Comedy|Fantasy
## 667 Comedy
## 668 Drama
## 669 Comedy
## 670 Drama
## 671 Drama|Mystery
## 672 Adventure|Children
## 673 Comedy|Fantasy|Musical
## 674 Comedy
## 675 Drama
## 676 Crime|Thriller
## 677 Comedy
## 678 Comedy
## 679 Drama
## 680 Action|Adventure|Thriller
## 681 Children|Comedy|Fantasy
## 682 Comedy|Drama|Romance
## 683 Action|Thriller
## 684 Children|Comedy
## 685 Horror
## 686 Comedy|Horror
## 687 Drama
## 688 Drama
## 689 Drama
## 690 Drama
## 691 Action|Adventure|Sci-Fi|Thriller
## 692 Crime|Drama
## 693 Drama
## 694 Comedy|Drama|Romance
## 695 Drama
## 696 Crime|Drama
## 697 Action|Comedy|Crime|Thriller
## 698 Comedy|Drama
## 699 Drama
## 700 Crime|Drama|Romance|Thriller
## 701 Comedy|Crime
## 702 Crime|Drama|Musical|Thriller
## 703 Comedy
## 704 Drama
## 705 Action|Crime|Drama
## 706 Action|Comedy|Crime|Thriller
## 707 Horror|Thriller
## 708 Sci-Fi|Thriller
## 709 Children|Comedy
## 710 Drama|Thriller
## 711 Children|Drama|Fantasy
## 712 Action|Comedy|Crime
## 713 Adventure|Animation|Children|Musical
## 714 Drama|Romance
## 715 Horror|Thriller
## 716 Comedy|Drama|Romance
## 717 Drama
## 718 Drama
## 719 Adventure|Drama|Romance|War
## 720 Comedy|Drama|Romance
## 721 Comedy|Musical|Romance
## 722 Musical|Romance
## 723 Comedy|Musical
## 724 Drama|Romance
## 725 Drama|Mystery|Romance|Thriller
## 726 Mystery|Thriller
## 727 Comedy|Romance
## 728 Drama|Thriller
## 729 Comedy|Musical|Romance
## 730 Action|Adventure|Mystery|Romance|Thriller
## 731 Comedy|Drama|Romance
## 732 Comedy|Crime
## 733 Comedy|Crime|Mystery|Romance|Thriller
## 734 Drama|Romance
## 735 Film-Noir|Mystery
## 736 Comedy|Drama|Musical|Romance
## 737 Comedy|Romance
## 738 Comedy|Drama|Romance
## 739 Children|Drama
## 740 Musical
## 741 Adventure|Children|Fantasy|Musical
## 742 Drama|Romance|War
## 743 Comedy
## 744 Drama|Film-Noir|Romance
## 745 Drama|Mystery
## 746 Adventure|Drama|Sci-Fi
## 747 Drama
## 748 Comedy
## 749 Drama|Mystery|Romance|Thriller
## 750 Drama|Film-Noir|Mystery|Thriller
## 751 Film-Noir|Romance|Thriller
## 752 Mystery|Romance|Thriller
## 753 Drama|Romance
## 754 Crime|Mystery|Romance|Thriller
## 755 Comedy
## 756 Comedy|Musical
## 757 Comedy|Romance
## 758 Comedy|Romance
## 759 Musical
## 760 Comedy|Drama
## 761 Action|Adventure|Romance
## 762 Adventure
## 763 Crime|Film-Noir|Mystery
## 764 Drama|Fantasy|Romance
## 765 Drama
## 766 Comedy|Musical|Romance
## 767 Comedy|Drama|War
## 768 Comedy|Romance
## 769 Drama|Romance|Western
## 770 Drama
## 771 Comedy|Crime
## 772 Comedy|Romance
## 773 Adventure|Comedy
## 774 Children|Drama|Fantasy|Romance
## 775 Drama
## 776 Comedy|Romance
## 777 Drama|Romance
## 778 Drama
## 779 Crime|Drama
## 780 Drama
## 781 Crime|Drama
## 782 Musical
## 783 Romance|Western
## 784 Drama|Mystery|Thriller
## 785 Drama|War
## 786 Horror|Sci-Fi|Thriller
## 787 Adventure|Comedy|Romance|War
## 788 Adventure|Comedy|Crime|Drama|Romance
## 789 Drama
## 790 Drama
## 791 Comedy|Drama
## 792 Romance|War
## 793 Action
## 794 Drama
## 795 Drama
## 796 Comedy|Drama
## 797 Adventure|Children
## 798 Drama|Romance
## 799 Comedy|Drama
## 800 Action|Adventure|Thriller
## 801 Drama
## 802 Thriller
## 803 Comedy|Drama
## 804 Action|Crime|Drama|Thriller
## 805 Drama|Thriller
## 806 Action|Crime
## 807 Crime|Film-Noir
## 808 Drama|Thriller
## 809 Action|Thriller
## 810 Children|Comedy
## 811 Drama
## 812 Children|Comedy|Western
## 813 Adventure|Western
## 814 Adventure|Children|Fantasy
## 815 Children|Comedy
## 816 Children|Comedy|Fantasy|Romance
## 817 Children|Drama
## 818 Children|Comedy|Romance
## 819 Children|Comedy|Drama
## 820 Adventure|Children|Drama
## 821 Children|Comedy
## 822 Adventure|Children
## 823 Children|Comedy|Mystery
## 824 Adventure|Drama|Sci-Fi
## 825 Comedy
## 826 Children|Comedy
## 827 Animation|Children|Fantasy|Musical|Romance
## 828 Animation|Children|Musical
## 829 Animation|Children|Musical
## 830 Animation|Children|Fantasy|Musical
## 831 Children|Drama
## 832 Adventure|Drama
## 833 Children|Comedy|Fantasy|Musical
## 834 Animation|Children|Drama|Musical
## 835 Adventure|Animation|Children|Musical
## 836 Adventure|Children|Musical
## 837 Adventure|Animation|Children|Fantasy|Musical
## 838 Animation|Children|Drama
## 839 Comedy|Crime|Drama|Thriller
## 840 Musical|Romance
## 841 Action|Crime|Thriller
## 842 Action|Horror|Sci-Fi|Thriller
## 843 Drama
## 844 Drama
## 845 Comedy|Drama
## 846 Drama|Romance
## 847 Drama
## 848 Drama|Romance
## 849 Action|Drama|Thriller
## 850 Action|Adventure
## 851 Documentary|Drama
## 852 Drama
## 853 Crime|Drama|Romance
## 854 Drama
## 855 Thriller
## 856 Drama
## 857 Comedy|Musical|Romance
## 858 Drama|Romance
## 859 Comedy|Drama
## 860 Thriller
## 861 Drama
## 862 Animation|Children|Comedy|Fantasy|Musical|Romance
## 863 Comedy|Musical|Romance
## 864 Comedy|Musical|Romance
## 865 Crime|Film-Noir
## 866 Crime|Film-Noir|Thriller
## 867 Children|Comedy|Fantasy|Musical
## 868 Drama|Horror|Thriller
## 869 Comedy|Sci-Fi
## 870 Comedy|War
## 871 Comedy|Crime
## 872 Comedy
## 873 Comedy|Musical|Romance
## 874 Drama
## 875 Comedy|Musical
## 876 Crime|Drama
## 877 Adventure|Drama
## 878 Crime|Mystery|Thriller
## 879 Musical
## 880 Drama|Musical|Romance
## 881 Crime|Mystery|Thriller
## 882 Drama|War
## 883 Comedy
## 884 Crime|Mystery|Thriller
## 885 Drama
## 886 Drama|Romance|Thriller
## 887 Drama
## 888 Drama
## 889 Children|Drama|Sci-Fi
## 890 Children|Drama|Fantasy
## 891 Action|Drama|Romance
## 892 Action|Romance
## 893 Drama
## 894 Drama
## 895 Horror
## 896 Documentary
## 897 Action|Comedy|Drama
## 898 Comedy
## 899 Crime|Drama
## 900 Comedy|Drama
## 901 Documentary
## 902 Drama
## 903 Comedy|Crime
## 904 Comedy|Fantasy
## 905 Action|Adventure|Sci-Fi|Thriller
## 906 Horror
## 907 Action|Adventure|Sci-Fi|Thriller
## 908 Horror|Mystery
## 909 Drama|Mystery
## 910 Drama
## 911 Comedy|Drama
## 912 Comedy
## 913 Adventure|Comedy|Fantasy
## 914 Romance
## 915 Documentary
## 916 Documentary
## 917 Animation|Children|Comedy|Crime
## 918 Drama
## 919 Animation|Comedy|Drama|Fantasy
## 920 Crime|Film-Noir|Thriller
## 921 Film-Noir
## 922 Film-Noir
## 923 Drama|War
## 924 Comedy|Drama
## 925 Drama
## 926 Drama
## 927 Drama|Thriller
## 928 Comedy
## 929 Action|Adventure|Horror
## 930 Documentary
## 931 Comedy
## 932 Drama
## 933 Comedy|Drama
## 934 Comedy
## 935 Comedy|Drama|Romance
## 936 Drama|Fantasy|Romance
## 937 Drama|Romance
## 938 Drama|War
## 939 Crime|Drama|Film-Noir
## 940 Comedy
## 941 Western
## 942 Drama|Romance|War
## 943 Comedy|Drama
## 944 Drama
## 945 Drama
## 946 Drama
## 947 Comedy|Romance
## 948 Documentary
## 949 Crime|Drama|Romance
## 950 Documentary|Musical
## 951 Documentary
## 952 Drama
## 953 Comedy
## 954 Action|Adventure|Sci-Fi
## 955 Action|Adventure|Comedy|Fantasy|Romance
## 956 Action|Adventure
## 957 Fantasy|Sci-Fi
## 958 Action|Adventure|Horror|Sci-Fi
## 959 Action|Adventure|Western
## 960 Comedy
## 961 Drama
## 962 Adventure|Drama|War
## 963 Crime|Drama|Sci-Fi|Thriller
## 964 Drama
## 965 Action|Drama|War
## 966 Action|Drama|Western
## 967 Action|Adventure|Sci-Fi
## 968 Drama|Fantasy|Romance
## 969 Film-Noir|Mystery|Thriller
## 970 Crime|Drama
## 971 Horror|Sci-Fi
## 972 Action|Adventure|Comedy|Fantasy|Horror
## 973 Adventure|Drama|Romance
## 974 Drama|War
## 975 Action|Crime|Drama|Thriller
## 976 Crime|Horror
## 977 Action|Comedy|Musical
## 978 Crime|Drama
## 979 Drama|War
## 980 Adventure|Animation|Children|Comedy|Sci-Fi
## 981 Action|Drama|Romance|War
## 982 Drama
## 983 Drama|Romance
## 984 Crime|Drama
## 985 Drama
## 986 Comedy|Romance
## 987 Drama
## 988 Drama|Mystery|Sci-Fi
## 989 Action|Drama|War
## 990 Comedy|Crime
## 991 Comedy|Drama|Romance
## 992 Comedy|Drama|Romance
## 993 Drama
## 994 Comedy
## 995 Action|Sci-Fi|Thriller
## 996 Comedy|Fantasy|Horror
## 997 Drama|War
## 998 Comedy|Drama
## 999 Comedy|Drama|Romance
## 1000 Crime|Drama|Film-Noir|Thriller
## 1001 Drama
## 1002 Comedy|Drama|Romance
## 1003 Crime|Film-Noir|Thriller
## 1004 Action|Crime|Romance|Thriller
## 1005 Adventure|Drama|War
## 1006 Drama|Fantasy
## 1007 Crime|Film-Noir|Mystery|Thriller
## 1008 Drama|Sci-Fi|Thriller
## 1009 Action|Adventure|Drama|Western
## 1010 Comedy|Horror|Sci-Fi
## 1011 Comedy|Musical|War
## 1012 Comedy|Romance
## 1013 Horror
## 1014 Adventure|Drama
## 1015 Crime|Film-Noir|Thriller
## 1016 Action|Comedy|Fantasy|Horror
## 1017 Action|Adventure|Drama|War
## 1018 Drama|War
## 1019 Action|Drama|Mystery|Romance|Thriller
## 1020 Comedy|Fantasy|Romance
## 1021 Drama|Western
## 1022 Crime|Thriller|War
## 1023 Comedy|Drama
## 1024 Comedy|Mystery|Thriller
## 1025 Adventure|Comedy|Sci-Fi
## 1026 Comedy|Crime|Drama
## 1027 Drama|War
## 1028 Comedy|Drama|Film-Noir
## 1029 Action|Adventure|Animation|Sci-Fi
## 1030 Action|Adventure|Fantasy
## 1031 Drama
## 1032 Comedy|Drama|Romance
## 1033 Comedy|Fantasy
## 1034 Comedy|Drama
## 1035 Drama
## 1036 Comedy|Drama|War
## 1037 Animation|Children|Fantasy|Musical
## 1038 Drama|Western
## 1039 Crime|Film-Noir|Mystery
## 1040 Comedy
## 1041 Drama|Romance
## 1042 Action|Adventure|Drama
## 1043 Comedy
## 1044 Documentary
## 1045 Drama|Romance
## 1046 Action|Adventure
## 1047 Comedy|Drama
## 1048 Drama
## 1049 Drama
## 1050 Drama|Romance
## 1051 Comedy
## 1052 Drama|Musical
## 1053 Drama|War
## 1054 Comedy|Drama
## 1055 Drama|Sci-Fi
## 1056 Children|Drama|Fantasy
## 1057 Adventure|Drama
## 1058 Action|Western
## 1059 Drama|Romance
## 1060 Adventure|Drama|Sci-Fi
## 1061 Comedy|Romance
## 1062 Documentary
## 1063 Comedy
## 1064 Drama
## 1065 Comedy
## 1066 Action|Horror|Sci-Fi|Thriller
## 1067 Comedy|Horror|Thriller
## 1068 Horror
## 1069 Horror
## 1070 Horror
## 1071 Horror
## 1072 Horror
## 1073 Drama|Horror|Mystery|Thriller
## 1074 Horror
## 1075 Horror
## 1076 Horror
## 1077 Horror
## 1078 Horror|Thriller
## 1079 Horror|Thriller
## 1080 Horror|Sci-Fi
## 1081 Horror|Mystery
## 1082 Horror|Thriller
## 1083 Drama|Horror|Thriller
## 1084 Fantasy|Horror|Romance|Thriller
## 1085 Drama|Horror|Sci-Fi
## 1086 Horror
## 1087 Horror|Thriller
## 1088 Thriller
## 1089 Crime|Drama|Thriller
## 1090 Drama|Fantasy|Horror|Thriller
## 1091 Drama|Fantasy|Horror
## 1092 Horror|Thriller
## 1093 Horror
## 1094 Horror
## 1095 Horror|Mystery|Thriller
## 1096 Crime|Drama|Thriller
## 1097 Crime|Thriller
## 1098 Comedy|Drama|Romance
## 1099 Drama|Mystery
## 1100 Horror|Thriller
## 1101 Action|Adventure|Sci-Fi|Thriller
## 1102 Drama|Romance
## 1103 Drama
## 1104 Children|Comedy
## 1105 Documentary
## 1106 Drama
## 1107 Drama
## 1108 Drama
## 1109 Adventure|Children|Comedy
## 1110 Drama|Thriller
## 1111 Action|Adventure|Thriller
## 1112 Adventure|Sci-Fi
## 1113 Action|Mystery|Sci-Fi
## 1114 Action|Sci-Fi
## 1115 Action|Adventure|Sci-Fi|Thriller
## 1116 Action|Adventure|Sci-Fi
## 1117 Adventure|Comedy|Sci-Fi
## 1118 Action|Crime
## 1119 Action|Comedy|Western
## 1120 Action|Western
## 1121 Comedy|Musical|Romance
## 1122 Comedy|Musical|Romance
## 1123 Action|Drama
## 1124 Drama
## 1125 Action|Drama|Thriller
## 1126 Action|Horror
## 1127 Horror|Thriller
## 1128 Action|Horror
## 1129 Comedy
## 1130 Action|Comedy|Sci-Fi
## 1131 Comedy|Drama
## 1132 Drama|Romance
## 1133 Comedy
## 1134 Comedy|Drama
## 1135 Action|Comedy|Crime|Drama|Sci-Fi
## 1136 Drama
## 1137 Romance|War
## 1138 Drama
## 1139 Drama
## 1140 Crime|Drama
## 1141 Adventure|Animation|Comedy|Crime
## 1142 Crime|Drama|Mystery|Thriller
## 1143 Comedy|Horror|Mystery|Thriller
## 1144 Action|Romance|War|Western
## 1145 Comedy|Drama|Fantasy|Romance
## 1146 Comedy|Drama
## 1147 Crime|Drama|Romance
## 1148 Drama
## 1149 Comedy
## 1150 Crime|Drama|Romance
## 1151 Drama|Musical
## 1152 Drama
## 1153 Adventure|Drama
## 1154 Documentary
## 1155 Crime|Drama|Mystery|Thriller
## 1156 Drama
## 1157 Comedy
## 1158 Action|Thriller
## 1159 Drama
## 1160 Action|Adventure|Comedy|Thriller
## 1161 Comedy|Thriller
## 1162 Action|Comedy
## 1163 Action|Comedy|Crime|Drama|Thriller
## 1164 Horror|Sci-Fi|Thriller
## 1165 Drama
## 1166 Action|Thriller
## 1167 Comedy
## 1168 Comedy|Romance
## 1169 Drama
## 1170 Comedy
## 1171 Comedy|War
## 1172 Comedy|Drama
## 1173 Crime
## 1174 Comedy
## 1175 War
## 1176 Comedy|Romance
## 1177 Comedy|Drama
## 1178 Comedy|Romance
## 1179 Comedy
## 1180 Comedy|Drama|Romance
## 1181 Drama|Fantasy|Romance
## 1182 Mystery|Thriller
## 1183 Children|Comedy|Mystery
## 1184 Comedy
## 1185 Comedy|Romance
## 1186 Crime|Drama|Fantasy|Film-Noir|Mystery|Romance
## 1187 Action|Drama
## 1188 Crime|Drama
## 1189 Comedy|Romance
## 1190 Crime|Thriller
## 1191 Action|Comedy|Crime|Drama
## 1192 Children|Comedy
## 1193 Romance
## 1194 Comedy|Drama
## 1195 Action|Romance|Sci-Fi|Thriller
## 1196 Drama|Thriller
## 1197 Comedy|Drama
## 1198 Drama|Thriller
## 1199 Comedy|Drama|Mystery|Romance
## 1200 Comedy
## 1201 Drama|Musical
## 1202 Action|Drama|Thriller
## 1203 Animation|Children|Musical
## 1204 Comedy
## 1205 Romance
## 1206 Action|Adventure|Children
## 1207 Action
## 1208 Drama|Romance
## 1209 Action|Adventure|Thriller
## 1210 Comedy|Crime|Romance
## 1211 Crime
## 1212 Drama|Romance
## 1213 Comedy
## 1214 Drama
## 1215 Drama|War
## 1216 Drama
## 1217 Comedy
## 1218 Action|Drama|Thriller
## 1219 Comedy
## 1220 Action|Adventure|Comedy
## 1221 Action|Thriller
## 1222 Action|Crime|Romance
## 1223 Action|Adventure|Children|Fantasy
## 1224 Comedy
## 1225 Action|Adventure|Comedy|Sci-Fi
## 1226 Comedy|Drama
## 1227 Drama
## 1228 Comedy
## 1229 Drama|Romance
## 1230 Comedy|Drama|Romance
## 1231 Comedy|Crime
## 1232 Comedy|Romance
## 1233 Comedy|Drama|Romance
## 1234 Drama
## 1235 Action|Adventure|Sci-Fi|Thriller
## 1236 Drama
## 1237 Comedy
## 1238 Drama|Romance
## 1239 Comedy|Romance
## 1240 Action|Adventure|Thriller
## 1241 Drama|Romance
## 1242 Drama
## 1243 Action|Romance|Thriller
## 1244 Action|Adventure|Fantasy|Thriller
## 1245 Drama
## 1246 Comedy|Drama|Romance
## 1247 Adventure|Animation|Children|Comedy|Musical
## 1248 Comedy|Romance
## 1249 Horror|Sci-Fi
## 1250 Comedy|Romance
## 1251 Drama
## 1252 Action|Crime|Drama|Thriller
## 1253 Drama
## 1254 Action|Comedy|Sci-Fi
## 1255 Comedy
## 1256 Adventure|Children
## 1257 Children|Fantasy
## 1258 Drama|Sci-Fi
## 1259 Action|Drama
## 1260 Action|Adventure|Fantasy
## 1261 Children|Comedy
## 1262 Action|Crime|Drama|Thriller
## 1263 Horror|Sci-Fi|Thriller
## 1264 Action|Adventure|Sci-Fi|Thriller
## 1265 Children|Comedy
## 1266 Comedy|Romance
## 1267 Comedy|Drama
## 1268 Adventure|Children|Drama
## 1269 Drama
## 1270 Drama|Mystery|Romance|Thriller
## 1271 Crime|Drama|Thriller
## 1272 Action
## 1273 Drama|Romance
## 1274 Crime|Drama|Film-Noir
## 1275 Comedy
## 1276 Horror|Sci-Fi|Thriller
## 1277 Action|Comedy
## 1278 Adventure|Romance
## 1279 Action|Adventure
## 1280 Action|Thriller
## 1281 Drama|Thriller
## 1282 Action|Adventure|Thriller
## 1283 Drama|Romance
## 1284 Comedy
## 1285 Drama
## 1286 Comedy
## 1287 Adventure|Drama
## 1288 Action|Thriller|War
## 1289 Crime|Film-Noir|Mystery|Thriller
## 1290 Adventure|Drama|War
## 1291 Crime|Drama|Mystery|Thriller
## 1292 Drama
## 1293 Horror
## 1294 Drama
## 1295 Drama|Mystery|Thriller
## 1296 Action|Drama|Thriller
## 1297 Crime|Drama|Mystery
## 1298 Comedy|Romance
## 1299 Action|Thriller
## 1300 Comedy|Romance
## 1301 Drama
## 1302 Drama
## 1303 Action|Thriller
## 1304 Comedy|Drama|Romance
## 1305 Comedy
## 1306 Comedy|Drama
## 1307 Comedy|Drama
## 1308 Drama|Romance
## 1309 Horror|Mystery|Thriller
## 1310 Drama|Mystery|Thriller
## 1311 Children|Comedy|Romance|Sci-Fi
## 1312 Crime|Drama|Thriller
## 1313 Comedy|Drama
## 1314 Documentary
## 1315 Documentary
## 1316 Drama|Sci-Fi|Thriller
## 1317 Children|Drama|Fantasy
## 1318 Drama|Horror|Thriller
## 1319 Comedy|Documentary
## 1320 Romance|Thriller
## 1321 Drama
## 1322 Crime|Mystery|Thriller
## 1323 Comedy|War
## 1324 Comedy
## 1325 Action|Drama
## 1326 Drama
## 1327 Romance
## 1328 Drama|War
## 1329 Crime|Drama|Thriller
## 1330 Drama
## 1331 Drama
## 1332 Drama|Romance|Thriller
## 1333 Action|Sci-Fi
## 1334 Drama|Romance
## 1335 Drama|Romance
## 1336 Action|Adventure|Fantasy
## 1337 Comedy|Drama|Sci-Fi
## 1338 Drama|Romance
## 1339 Drama|Romance
## 1340 Crime|Thriller
## 1341 Action|Thriller
## 1342 Adventure|Animation|Children|Drama|Musical
## 1343 Comedy|Crime|Thriller
## 1344 Action|Horror|Sci-Fi
## 1345 Horror|Sci-Fi
## 1346 Drama|Mystery
## 1347 Drama
## 1348 Drama|War
## 1349 Comedy|Drama
## 1350 Comedy|Drama
## 1351 Children|Comedy|Fantasy
## 1352 Comedy
## 1353 Drama|Romance
## 1354 Children|Comedy
## 1355 Crime|Drama|Mystery
## 1356 Children|Comedy
## 1357 Thriller
## 1358 Comedy|Horror|Mystery|Thriller
## 1359 Drama
## 1360 Drama|Romance
## 1361 Action|Adventure|Thriller
## 1362 Action|Adventure|Drama|Sci-Fi
## 1363 Drama|Romance
## 1364 Drama
## 1365 Crime|Drama|Thriller
## 1366 Drama
## 1367 Comedy
## 1368 Comedy|Crime
## 1369 Drama|Romance
## 1370 Comedy|Drama
## 1371 Drama|Romance
## 1372 Action|Children|Comedy
## 1373 Action|Adventure|Thriller
## 1374 Comedy
## 1375 Comedy
## 1376 Adventure|Film-Noir|Sci-Fi|Thriller
## 1377 Adventure|Children|Fantasy|Sci-Fi
## 1378 Action|Crime|Thriller
## 1379 Comedy
## 1380 Crime|Drama|Fantasy|Thriller
## 1381 Comedy|Romance
## 1382 Horror
## 1383 Drama|Romance
## 1384 Drama
## 1385 Comedy
## 1386 Action|Horror|Sci-Fi
## 1387 Drama|Romance
## 1388 Action|Crime|Thriller
## 1389 Horror
## 1390 Action|Comedy|Musical
## 1391 Comedy|Romance
## 1392 Sci-Fi|Thriller
## 1393 Crime|Drama|Mystery|Romance|Thriller
## 1394 Comedy|Drama|Romance
## 1395 Crime|Thriller
## 1396 Action|Drama
## 1397 Crime|Drama|Thriller
## 1398 Action|Crime|Thriller
## 1399 Comedy|Drama
## 1400 Drama
## 1401 Action|Drama
## 1402 Documentary|IMAX
## 1403 Thriller
## 1404 Comedy|Crime|Drama|Mystery|Thriller
## 1405 Action|Adventure|Drama
## 1406 Crime|Drama
## 1407 Crime|Drama|Mystery|Thriller
## 1408 Adventure|Children|Comedy
## 1409 Drama
## 1410 Crime|Drama
## 1411 Comedy|Drama
## 1412 Children|Comedy|Drama
## 1413 Comedy|Drama
## 1414 Documentary|Musical
## 1415 Comedy|Romance
## 1416 Children|Comedy
## 1417 Comedy|Thriller
## 1418 Adventure|Children
## 1419 Comedy|Documentary
## 1420 Action|Adventure|Sci-Fi
## 1421 Action|Drama|Thriller
## 1422 Crime|Drama|Mystery|Thriller
## 1423 Drama|Fantasy|Romance
## 1424 Comedy|Drama
## 1425 Comedy
## 1426 Comedy
## 1427 Drama
## 1428 Drama|Thriller
## 1429 Drama|Romance
## 1430 Comedy|Mystery|Thriller
## 1431 Drama
## 1432 Adventure|Children|Comedy|Fantasy
## 1433 Drama|Thriller
## 1434 Comedy|Romance
## 1435 Comedy
## 1436 Documentary
## 1437 Action|Comedy
## 1438 Drama
## 1439 Drama
## 1440 Comedy|Thriller
## 1441 Horror|Sci-Fi
## 1442 Comedy
## 1443 Comedy
## 1444 Documentary
## 1445 Action|Comedy|Crime
## 1446 Comedy|Drama
## 1447 Crime|Drama|Romance|War
## 1448 Comedy|Romance
## 1449 Comedy
## 1450 Drama|Sci-Fi|Thriller
## 1451 Comedy|Romance
## 1452 Drama
## 1453 Adventure|Animation|Children|Fantasy|Musical
## 1454 Action|Sci-Fi|Thriller
## 1455 Comedy|Drama|Romance
## 1456 Adventure|Comedy|Drama
## 1457 Comedy|Drama|Romance
## 1458 Comedy
## 1459 Adventure|Comedy|Western
## 1460 Comedy|Drama|Romance
## 1461 Drama|Mystery|Thriller
## 1462 Horror|Thriller
## 1463 Thriller
## 1464 Adventure|Comedy|Romance
## 1465 Comedy|Drama|Romance
## 1466 Comedy
## 1467 Drama|Romance
## 1468 Comedy|Drama
## 1469 Documentary
## 1470 Drama|Romance
## 1471 Comedy
## 1472 Comedy|Drama
## 1473 Adventure|Animation|Children|Comedy|Drama|Musical|Romance
## 1474 Action|Crime|Mystery|Sci-Fi|Thriller
## 1475 Comedy|Crime|Drama
## 1476 Comedy
## 1477 Comedy|Crime|Drama|Romance|Thriller
## 1478 Drama|Mystery
## 1479 Comedy|Drama
## 1480 Drama|Romance
## 1481 Action|Romance|Sci-Fi|Thriller
## 1482 Action|Comedy|Crime|Thriller
## 1483 Children|Comedy
## 1484 Animation|Children|Fantasy|War
## 1485 Drama|Sci-Fi|Thriller
## 1486 Drama
## 1487 Comedy|Romance
## 1488 Horror|Sci-Fi
## 1489 Action|Drama|Romance|War
## 1490 Musical
## 1491 Action|Drama|War
## 1492 Drama|Western
## 1493 Drama|Romance
## 1494 Adventure|Drama
## 1495 Drama|Musical
## 1496 Drama
## 1497 Comedy|Romance
## 1498 Drama|Musical|Romance
## 1499 Drama|War
## 1500 Comedy|Drama|Musical
## 1501 Drama
## 1502 Drama|War
## 1503 Drama
## 1504 Drama
## 1505 Drama
## 1506 Drama
## 1507 Drama|Romance|War
## 1508 Crime|Drama
## 1509 Drama|Romance
## 1510 Drama|Musical|Romance
## 1511 Adventure|Comedy|Romance
## 1512 Drama
## 1513 Drama|Mystery
## 1514 Drama|Musical
## 1515 Drama
## 1516 Action|Crime|Thriller
## 1517 Drama
## 1518 Drama
## 1519 Drama
## 1520 Drama
## 1521 Comedy|Drama
## 1522 Drama|Romance
## 1523 Drama
## 1524 Drama
## 1525 Drama
## 1526 Comedy|Crime
## 1527 Drama|Mystery
## 1528 Comedy|Sci-Fi
## 1529 Comedy
## 1530 Adventure|Fantasy|Musical
## 1531 Comedy|Drama
## 1532 Horror
## 1533 Horror|Thriller
## 1534 Horror|Thriller
## 1535 Horror
## 1536 Horror
## 1537 Horror|Mystery|Thriller
## 1538 Horror
## 1539 Horror
## 1540 Horror
## 1541 Horror
## 1542 Horror
## 1543 Horror
## 1544 Horror
## 1545 Horror
## 1546 Horror
## 1547 Horror
## 1548 Horror
## 1549 Horror
## 1550 Horror
## 1551 Horror|Thriller
## 1552 Horror
## 1553 Horror
## 1554 Horror|Thriller
## 1555 Horror|Thriller
## 1556 Comedy|Horror|Thriller
## 1557 Horror|Thriller
## 1558 Horror|Thriller
## 1559 Horror|Thriller
## 1560 Horror|Mystery
## 1561 Horror
## 1562 Horror
## 1563 Action|Comedy|Crime|Drama
## 1564 Action|Comedy|Crime|Drama
## 1565 Action|Comedy|Crime|Drama
## 1566 Comedy|Horror
## 1567 Comedy|Horror
## 1568 Action|Adventure|Children|Comedy|Fantasy
## 1569 Action|Comedy|Romance
## 1570 Comedy
## 1571 Crime|Drama|Film-Noir
## 1572 Drama|Mystery|Sci-Fi|Thriller
## 1573 Drama|Sci-Fi
## 1574 Adventure|Comedy|Sci-Fi
## 1575 Adventure|Comedy|Sci-Fi|Western
## 1576 Action|Adventure|Drama
## 1577 Children|Comedy|Fantasy
## 1578 Children|Comedy|Fantasy
## 1579 Children|Comedy|Western
## 1580 Children|Fantasy|Musical
## 1581 Animation|Children|Drama
## 1582 Action|Adventure|Drama
## 1583 Drama|Romance
## 1584 Adventure|Sci-Fi
## 1585 Drama
## 1586 Crime|Drama|Mystery|Thriller
## 1587 Drama|Mystery
## 1588 Drama|Romance
## 1589 Horror|Thriller
## 1590 Comedy|Crime
## 1591 Action|Drama|War
## 1592 Comedy|Romance
## 1593 Children|Comedy
## 1594 Children|Comedy
## 1595 Adventure|Animation|Children|Fantasy
## 1596 Children|Sci-Fi
## 1597 Children|Comedy
## 1598 Children|Comedy
## 1599 Adventure|Children|Comedy
## 1600 Children|Comedy|Sci-Fi
## 1601 Adventure|Children
## 1602 Children|Comedy
## 1603 Action|Adventure|Children|Comedy
## 1604 Children|Comedy
## 1605 Adventure|Children|Fantasy
## 1606 Comedy|Fantasy
## 1607 Adventure|Children|Drama|Romance
## 1608 Adventure|Children|Sci-Fi
## 1609 Adventure|Children|Fantasy|Musical
## 1610 Action|Animation|Children|Crime
## 1611 Comedy|Musical
## 1612 Adventure|Children|Comedy
## 1613 Adventure|Children|Comedy
## 1614 Children|Comedy|Fantasy|Horror
## 1615 Children|Comedy|Sci-Fi
## 1616 Adventure|Children|Comedy|Fantasy|Sci-Fi
## 1617 Action|Comedy|Western
## 1618 Adventure|Children
## 1619 Adventure|Children
## 1620 Action|Crime|Drama|Mystery|Thriller
## 1621 Children|Comedy|Romance
## 1622 Comedy
## 1623 Drama|Romance
## 1624 Drama|Romance
## 1625 Documentary
## 1626 Comedy|Drama|Fantasy|Romance
## 1627 Film-Noir
## 1628 Drama|Romance|War
## 1629 Drama|Fantasy|Mystery
## 1630 Drama
## 1631 Drama|Romance|Western
## 1632 Drama
## 1633 Comedy
## 1634 Comedy
## 1635 Crime|Drama|Romance
## 1636 Drama|War
## 1637 Drama|Mystery|Thriller
## 1638 Adventure|Children
## 1639 Animation|Children|Comedy|Musical
## 1640 Adventure|Children|Drama
## 1641 Animation|Children|Comedy|Romance
## 1642 Animation|Children|Comedy|Musical|Romance
## 1643 Children|Comedy
## 1644 Children|Comedy|Musical
## 1645 Children|Musical
## 1646 Adventure|Animation|Children
## 1647 Drama|Fantasy
## 1648 Animation|Children|Fantasy|Musical
## 1649 Adventure|Comedy|Musical
## 1650 Adventure|Animation|Children
## 1651 Adventure|Animation|Children|Crime|Drama
## 1652 Children|Sci-Fi
## 1653 Adventure|Animation|Children|Fantasy|Musical|Romance
## 1654 Adventure|Children|Fantasy
## 1655 Action|Adventure|Sci-Fi
## 1656 Children|Comedy
## 1657 Animation|Children|Musical
## 1658 Children|Drama|Fantasy|Mystery|Thriller
## 1659 Children|Comedy
## 1660 Adventure|Animation|Children|Musical
## 1661 Comedy|Fantasy|Romance
## 1662 Adventure|Drama
## 1663 Animation|Children|Comedy|Musical
## 1664 Adventure|Children|Fantasy|Western
## 1665 Drama
## 1666 Action|Adventure|Sci-Fi
## 1667 Drama|War
## 1668 Horror|Thriller
## 1669 Comedy|Romance
## 1670 Comedy
## 1671 Comedy|Crime|Thriller
## 1672 Comedy
## 1673 Crime|Drama
## 1674 Horror|Thriller
## 1675 Drama
## 1676 Action|Adventure|Fantasy
## 1677 Adventure|Animation|Children|Fantasy
## 1678 Drama|Sci-Fi
## 1679 Thriller
## 1680 Horror
## 1681 Drama|Horror
## 1682 Horror|Thriller
## 1683 Horror|Thriller
## 1684 Animation|Children|Comedy|Drama|Fantasy
## 1685 Children|Comedy|Fantasy
## 1686 Comedy|Drama|Romance
## 1687 Action|Crime|Mystery|Thriller
## 1688 Comedy
## 1689 Crime|Drama|Romance
## 1690 Drama
## 1691 Drama
## 1692 Adventure|Comedy
## 1693 Comedy|Fantasy|Sci-Fi
## 1694 Adventure|Children|Musical
## 1695 Comedy|Sci-Fi
## 1696 Animation|Children
## 1697 Adventure|Animation|Children|Drama|Fantasy
## 1698 Adventure|Animation|Children|Drama
## 1699 Adventure|Fantasy
## 1700 Adventure|Animation|Children|Comedy
## 1701 Adventure|Animation|Children|Musical|Western
## 1702 Adventure|Fantasy|Romance
## 1703 Comedy|Romance
## 1704 Comedy|Drama|Romance
## 1705 Drama|Romance
## 1706 Adventure|Drama|Fantasy
## 1707 Comedy|Fantasy|Horror
## 1708 Comedy|Fantasy|Horror
## 1709 Adventure|Comedy
## 1710 Comedy
## 1711 Children|Comedy
## 1712 Action|Adventure
## 1713 Drama|Romance
## 1714 Comedy|Drama
## 1715 Crime|Horror|Thriller
## 1716 Drama|Horror|Thriller
## 1717 Adventure|Children|Fantasy
## 1718 Adventure|Children|Fantasy
## 1719 Comedy|Horror
## 1720 Action|Comedy|Drama|Horror
## 1721 Comedy|Drama
## 1722 Crime|Drama|Romance|Thriller
## 1723 Action|Horror|Thriller
## 1724 Drama|Romance
## 1725 Comedy
## 1726 Action|Comedy
## 1727 Comedy|Drama|Romance
## 1728 Adventure|Fantasy|Sci-Fi
## 1729 Comedy|Fantasy
## 1730 Crime|Drama|Thriller
## 1731 Comedy|Thriller
## 1732 Thriller
## 1733 Thriller
## 1734 Drama|Mystery|Romance|Thriller
## 1735 Drama|Film-Noir|Thriller
## 1736 Adventure|Drama|Mystery|Thriller
## 1737 Comedy|Mystery
## 1738 Crime|Drama|Film-Noir|Thriller
## 1739 Mystery|Romance|Thriller
## 1740 Drama
## 1741 Animation|Comedy|Fantasy|Sci-Fi
## 1742 Drama
## 1743 Comedy
## 1744 Action|Adventure|Fantasy
## 1745 Action|Crime|Drama
## 1746 Comedy
## 1747 Drama
## 1748 Drama
## 1749 Drama
## 1750 Drama|War
## 1751 Crime|Drama|Thriller
## 1752 Mystery|Thriller
## 1753 Comedy|Romance
## 1754 Film-Noir|Mystery|Thriller
## 1755 Drama
## 1756 Drama|Mystery|Thriller
## 1757 Thriller
## 1758 Drama|Thriller
## 1759 Thriller
## 1760 Comedy|Romance
## 1761 Mystery|Thriller
## 1762 Drama|Thriller
## 1763 Crime|Drama|Thriller
## 1764 Drama
## 1765 Horror|Mystery|Sci-Fi|Thriller
## 1766 Drama
## 1767 Drama
## 1768 Comedy|Drama
## 1769 Comedy|Drama
## 1770 Drama
## 1771 Comedy
## 1772 Comedy|Drama|Romance
## 1773 Comedy|Romance
## 1774 Comedy|Drama|Romance
## 1775 Action|Comedy|Romance
## 1776 Comedy
## 1777 Comedy|Drama|Romance
## 1778 Comedy
## 1779 Drama
## 1780 Comedy|Drama
## 1781 Comedy|Fantasy
## 1782 Drama
## 1783 Comedy
## 1784 Horror|Sci-Fi
## 1785 Comedy|Romance
## 1786 Comedy|Romance
## 1787 Crime|Drama
## 1788 Comedy
## 1789 Comedy|Drama|Romance
## 1790 Drama|Fantasy|Thriller
## 1791 Comedy|Crime
## 1792 Adventure|Comedy
## 1793 Comedy|Romance
## 1794 Mystery|Thriller
## 1795 Crime|Drama|Thriller
## 1796 Drama|Romance
## 1797 Drama
## 1798 Drama
## 1799 Action|Comedy|Crime|Thriller
## 1800 Action|Adventure|Sci-Fi
## 1801 Drama
## 1802 Action|Crime|Thriller
## 1803 Horror|Thriller
## 1804 Crime
## 1805 Comedy|Drama
## 1806 Drama
## 1807 Drama
## 1808 Drama
## 1809 Comedy
## 1810 Horror|Sci-Fi|Thriller
## 1811 Action|Horror|Sci-Fi|Thriller
## 1812 Comedy|Crime|Drama
## 1813 Comedy|Drama
## 1814 Drama|Fantasy|Romance
## 1815 Comedy|Romance
## 1816 Adventure|Animation|Children|Comedy|Fantasy
## 1817 Comedy
## 1818 Comedy
## 1819 Adventure|Drama|Fantasy|Romance
## 1820 Comedy
## 1821 Comedy|Musical
## 1822 Comedy
## 1823 Drama|Musical
## 1824 Drama
## 1825 Drama
## 1826 Comedy
## 1827 Action|Crime
## 1828 Drama
## 1829 Sci-Fi
## 1830 Drama
## 1831 Drama
## 1832 Drama
## 1833 Comedy|Horror|Thriller
## 1834 Drama|Fantasy|Mystery|Romance
## 1835 Comedy|Drama
## 1836 Drama|Thriller
## 1837 Comedy|Drama|Fantasy
## 1838 Action|Sci-Fi|War
## 1839 Documentary
## 1840 Comedy|Drama|Romance|War
## 1841 Comedy
## 1842 Fantasy|Horror|Thriller
## 1843 Horror|Western
## 1844 Crime|Drama
## 1845 Comedy|Documentary
## 1846 Comedy|Drama|Romance
## 1847 Drama
## 1848 Action|Thriller
## 1849 Comedy
## 1850 Drama
## 1851 Drama
## 1852 Horror|Mystery|Thriller
## 1853 Comedy|Romance
## 1854 Romance
## 1855 Comedy|Drama
## 1856 Action|Adventure|Drama|Thriller
## 1857 Drama
## 1858 Mystery|Sci-Fi|Thriller
## 1859 Drama
## 1860 Drama
## 1861 Comedy|Thriller
## 1862 Comedy
## 1863 Drama
## 1864 Comedy|Drama
## 1865 Action|Thriller
## 1866 Animation|Children|Comedy
## 1867 Adventure|Animation|Children|Comedy
## 1868 Comedy
## 1869 Drama
## 1870 Comedy
## 1871 Drama
## 1872 Comedy
## 1873 Drama
## 1874 Drama|Horror|Sci-Fi
## 1875 Action|Horror|Sci-Fi|Thriller
## 1876 Action|Sci-Fi
## 1877 Action|Adventure|Fantasy|Horror
## 1878 Adventure|Fantasy|Romance|Sci-Fi|Thriller
## 1879 Adventure|Sci-Fi
## 1880 Comedy|Drama|Romance
## 1881 Action|Adventure|Drama
## 1882 Comedy|Crime|Mystery
## 1883 Comedy
## 1884 Action|Adventure|Fantasy
## 1885 Comedy|Drama
## 1886 Comedy
## 1887 Action|Adventure|Thriller
## 1888 Horror|Sci-Fi
## 1889 Comedy|Crime
## 1890 Comedy|Crime
## 1891 Comedy|Crime
## 1892 Comedy|Crime
## 1893 Comedy|Crime
## 1894 Comedy|Crime
## 1895 Adventure|Children|Drama
## 1896 Comedy|Romance
## 1897 Comedy|Drama
## 1898 Comedy|Crime
## 1899 Drama|Romance
## 1900 Crime|Horror|Thriller
## 1901 Comedy
## 1902 Crime|Drama|Thriller
## 1903 Children|Comedy|Drama
## 1904 Action|Drama|Romance|Sci-Fi
## 1905 Animation|Musical
## 1906 Comedy|Drama
## 1907 Comedy|Drama|Romance
## 1908 Drama
## 1909 Comedy|Drama
## 1910 Adventure|Children|Fantasy
## 1911 Children|Drama|Fantasy
## 1912 Western
## 1913 Action|Adventure|Thriller
## 1914 Action|Adventure|Drama|Thriller
## 1915 Action|Adventure|Thriller|War
## 1916 Action|Adventure|Comedy|Romance
## 1917 Action|Adventure|Comedy|Romance
## 1918 Comedy|Sci-Fi
## 1919 Comedy|Sci-Fi
## 1920 Action|Drama
## 1921 Action|Drama
## 1922 Action|Drama
## 1923 Action|Drama
## 1924 Comedy|Crime|Mystery|Thriller
## 1925 Action|Adventure|Children|Fantasy|Mystery|Thriller
## 1926 Drama|Romance
## 1927 Comedy
## 1928 Comedy|Drama
## 1929 Comedy
## 1930 Drama|Thriller
## 1931 Drama
## 1932 Action|Adventure|Drama
## 1933 Action|Adventure|Children|Drama
## 1934 Comedy
## 1935 Comedy|Romance
## 1936 Crime
## 1937 Action|Drama|War
## 1938 Horror|Sci-Fi
## 1939 Action|Adventure|Drama|Fantasy|Thriller
## 1940 Adventure|Children|Drama
## 1941 Comedy|Drama
## 1942 Drama
## 1943 Drama
## 1944 Drama
## 1945 Drama
## 1946 Comedy|Drama|War
## 1947 Drama
## 1948 Comedy|Drama|Thriller
## 1949 Drama
## 1950 Drama
## 1951 Drama|Romance|Western
## 1952 Drama
## 1953 Drama|Romance
## 1954 Drama
## 1955 Horror|Thriller
## 1956 Comedy|Drama
## 1957 Horror|Sci-Fi
## 1958 Adventure|Children|Comedy
## 1959 Adventure|Comedy|Sci-Fi
## 1960 Horror
## 1961 Drama|Fantasy
## 1962 Horror|Mystery|Sci-Fi
## 1963 Drama|Horror|Sci-Fi|Thriller
## 1964 Horror|Sci-Fi
## 1965 Action|Comedy
## 1966 Comedy|Crime
## 1967 Horror
## 1968 Horror
## 1969 Comedy|Horror|Thriller
## 1970 Horror
## 1971 Comedy
## 1972 Horror
## 1973 Horror
## 1974 Crime|Drama|Mystery|Thriller
## 1975 Action|Comedy|Romance|Thriller
## 1976 Comedy|Drama
## 1977 Adventure|Comedy
## 1978 Action|Adventure|Comedy
## 1979 Comedy
## 1980 Comedy
## 1981 Drama
## 1982 Action|Mystery|Thriller
## 1983 Action|War
## 1984 Comedy|Western
## 1985 Drama|Thriller
## 1986 Drama|Romance
## 1987 Comedy|Romance
## 1988 Adventure|Comedy|Thriller
## 1989 Comedy|Romance
## 1990 Comedy|Drama
## 1991 Action|Comedy
## 1992 Drama|Horror|Thriller
## 1993 Action|Thriller
## 1994 Comedy|Romance
## 1995 Comedy|Romance
## 1996 Drama
## 1997 Documentary
## 1998 Animation|Sci-Fi
## 1999 Comedy|Romance
## 2000 Romance
## 2001 Comedy|Sci-Fi
## 2002 Comedy
## 2003 Comedy
## 2004 Drama
## 2005 Comedy|Crime
## 2006 Comedy|Drama
## 2007 Drama|Mystery|Thriller
## 2008 Comedy|Drama|Romance
## 2009 Comedy|Sci-Fi
## 2010 Crime|Film-Noir
## 2011 Horror
## 2012 Comedy|Horror
## 2013 Horror
## 2014 Horror
## 2015 Horror
## 2016 Comedy
## 2017 Drama|Horror|Thriller
## 2018 Drama
## 2019 Action|Drama|Thriller
## 2020 Drama
## 2021 Drama|Thriller
## 2022 Action|Adventure|Drama|Thriller
## 2023 Action|Horror|Sci-Fi
## 2024 Sci-Fi
## 2025 Action|Sci-Fi|Thriller|Western
## 2026 Action|Adventure|Sci-Fi
## 2027 Action|Drama|Sci-Fi
## 2028 Action|Sci-Fi
## 2029 Action|Sci-Fi
## 2030 Action|Sci-Fi
## 2031 Action|Sci-Fi
## 2032 Action
## 2033 Action|Drama|Thriller
## 2034 Drama
## 2035 Adventure
## 2036 Comedy
## 2037 Action|Crime|Drama|Thriller
## 2038 Drama
## 2039 Comedy|Crime|Thriller
## 2040 Comedy
## 2041 Drama
## 2042 Horror
## 2043 Action|Sci-Fi
## 2044 Horror|Thriller
## 2045 Drama|Horror|Thriller
## 2046 Comedy
## 2047 Horror|Sci-Fi|Thriller
## 2048 Horror|Sci-Fi|Thriller
## 2049 Comedy
## 2050 Drama|Thriller
## 2051 Comedy|Romance
## 2052 Animation|Children
## 2053 Horror|Thriller
## 2054 Crime|Thriller
## 2055 Drama
## 2056 Drama
## 2057 Drama|Musical|Romance
## 2058 Animation|Children
## 2059 Comedy
## 2060 Action|Crime
## 2061 Comedy|Drama|Romance
## 2062 Drama|Romance
## 2063 Action|Sci-Fi|Thriller
## 2064 Comedy|Romance
## 2065 Drama|Musical
## 2066 Comedy
## 2067 Drama
## 2068 Comedy|Drama
## 2069 Crime|Mystery|Thriller
## 2070 Comedy|Crime
## 2071 Comedy|Romance
## 2072 Action|Comedy
## 2073 Comedy|Drama
## 2074 Drama|Romance
## 2075 Comedy|Crime|Thriller
## 2076 Comedy|Crime|Drama
## 2077 Comedy|Drama|Romance
## 2078 Drama
## 2079 Drama|Romance|Sci-Fi|Thriller
## 2080 Comedy|Drama
## 2081 Comedy|Romance
## 2082 Comedy
## 2083 Comedy
## 2084 Action|Sci-Fi|Thriller
## 2085 Crime|Thriller
## 2086 Comedy|Horror
## 2087 Drama|Romance
## 2088 Drama
## 2089 Drama
## 2090 Drama
## 2091 Drama|Film-Noir
## 2092 Comedy|Horror|Sci-Fi
## 2093 Adventure|Sci-Fi
## 2094 Action|Crime
## 2095 Action|Adventure|Comedy|Fantasy|Horror|Thriller
## 2096 Comedy
## 2097 Drama|Romance
## 2098 Drama
## 2099 Comedy|Fantasy
## 2100 Drama|Fantasy
## 2101 Action|Adventure|Crime|Sci-Fi|Thriller
## 2102 Comedy|Drama|Romance
## 2103 Documentary|Drama
## 2104 Action|Adventure|Sci-Fi
## 2105 Comedy|Romance
## 2106 Drama
## 2107 Comedy|Film-Noir|Thriller
## 2108 Horror|Romance
## 2109 Horror
## 2110 Horror
## 2111 Horror
## 2112 Horror
## 2113 Horror
## 2114 Drama
## 2115 Action|Adventure|Sci-Fi
## 2116 Action|Sci-Fi
## 2117 Action|Adventure|Sci-Fi
## 2118 Action|Adventure|Sci-Fi
## 2119 Horror
## 2120 Horror
## 2121 Drama|Horror|Sci-Fi
## 2122 Horror
## 2123 Horror
## 2124 Horror
## 2125 Horror
## 2126 Horror
## 2127 Drama|Fantasy|Horror
## 2128 Horror
## 2129 Horror|Sci-Fi
## 2130 Comedy|Horror|Musical|Sci-Fi
## 2131 Comedy|Documentary
## 2132 Horror|Sci-Fi
## 2133 Sci-Fi
## 2134 Action|Drama|Sci-Fi
## 2135 Horror|Sci-Fi|Thriller
## 2136 Horror|Sci-Fi
## 2137 War
## 2138 War
## 2139 Comedy|Romance
## 2140 Drama|Sci-Fi|Thriller
## 2141 Drama
## 2142 Drama|Fantasy
## 2143 Drama|Thriller
## 2144 Documentary|Musical
## 2145 Drama
## 2146 Comedy|Romance|Sci-Fi
## 2147 Drama
## 2148 Action|Adventure|Comedy
## 2149 Drama|Mystery
## 2150 Adventure|Animation|Children|Drama
## 2151 Crime|Drama|Mystery|Thriller
## 2152 Documentary
## 2153 Comedy|Romance
## 2154 Drama
## 2155 Action|Crime
## 2156 Documentary
## 2157 Comedy
## 2158 Comedy
## 2159 Comedy|Drama|Romance
## 2160 Comedy|Horror
## 2161 Animation|Comedy|Musical
## 2162 Action|Comedy|Sci-Fi|Western
## 2163 Drama
## 2164 Drama|Romance
## 2165 Comedy|Romance
## 2166 Thriller
## 2167 Romance
## 2168 Children|Comedy
## 2169 Drama|Horror|Thriller
## 2170 Drama|Mystery|Thriller
## 2171 Horror|Thriller
## 2172 Drama
## 2173 Comedy|Romance
## 2174 Action|Comedy|Sci-Fi
## 2175 Comedy|Fantasy|Sci-Fi
## 2176 Comedy
## 2177 Horror|Thriller
## 2178 Action|Adventure|Children|Comedy
## 2179 Comedy|Romance
## 2180 Action|Horror|Sci-Fi|Thriller
## 2181 Action|Comedy|Fantasy
## 2182 Comedy|Romance
## 2183 Drama
## 2184 Crime|Film-Noir
## 2185 Crime|Film-Noir
## 2186 Action|Drama|Romance|War
## 2187 Drama|Romance
## 2188 Drama|Romance|War
## 2189 Crime|Drama
## 2190 Drama|Romance
## 2191 Adventure|Comedy|Romance
## 2192 Adventure|Drama|Thriller
## 2193 Action|Adventure|Comedy|Fantasy|Mystery
## 2194 Comedy
## 2195 Comedy|Drama
## 2196 Drama
## 2197 Action|Crime|Thriller
## 2198 Drama
## 2199 Comedy|Horror|Musical
## 2200 Comedy|Horror
## 2201 Action|Adventure|Comedy
## 2202 Drama|Mystery
## 2203 Comedy|Drama
## 2204 Comedy|Drama
## 2205 Comedy|Mystery
## 2206 Thriller
## 2207 Horror
## 2208 Drama
## 2209 Drama
## 2210 Drama
## 2211 Comedy
## 2212 Adventure|Animation|Children|Drama|Sci-Fi
## 2213 Drama|Horror|Mystery
## 2214 Action|Mystery
## 2215 Crime|Drama|Romance|Thriller
## 2216 Comedy|Drama
## 2217 Comedy
## 2218 Crime|Drama
## 2219 Comedy
## 2220 Drama
## 2221 Comedy
## 2222 Comedy|Romance
## 2223 Drama
## 2224 Documentary
## 2225 Comedy
## 2226 Comedy|Horror
## 2227 Horror
## 2228 Horror
## 2229 Horror
## 2230 Horror
## 2231 Comedy
## 2232 Horror
## 2233 Comedy
## 2234 Horror
## 2235 Horror|Thriller
## 2236 Comedy
## 2237 Comedy
## 2238 Comedy|Horror|Romance|Thriller
## 2239 Adventure|Comedy|Romance
## 2240 Comedy
## 2241 Comedy
## 2242 Comedy|Drama|Fantasy|Romance
## 2243 Children|Comedy
## 2244 Comedy
## 2245 Adventure|Animation|Children|Drama|Fantasy
## 2246 Drama|Romance
## 2247 Action|Drama|Romance|Thriller
## 2248 Crime|Drama|Mystery|Romance|Thriller
## 2249 Children|Comedy
## 2250 Comedy|Romance
## 2251 Comedy|Thriller
## 2252 Action|Sci-Fi
## 2253 Action|Sci-Fi
## 2254 Comedy
## 2255 Animation|Horror|Mystery|Thriller
## 2256 Action|Thriller
## 2257 Action|War
## 2258 Action|War
## 2259 Action
## 2260 Drama|Mystery|Romance|Thriller
## 2261 Drama
## 2262 Adventure|Romance
## 2263 Documentary|Drama
## 2264 Action|Adventure|Fantasy
## 2265 Horror|Sci-Fi|Thriller
## 2266 Children|Comedy
## 2267 Comedy
## 2268 Drama
## 2269 Action|Adventure|Comedy|Thriller
## 2270 Comedy
## 2271 Comedy|Romance
## 2272 Drama
## 2273 Drama|Thriller
## 2274 Horror|Mystery|Thriller
## 2275 Comedy|Romance
## 2276 Drama|Mystery
## 2277 Comedy|Drama
## 2278 Adventure|Children|Comedy|Drama
## 2279 Adventure|Drama|Romance
## 2280 Drama
## 2281 Comedy|Drama
## 2282 Drama|Thriller
## 2283 Adventure|Sci-Fi|Thriller
## 2284 Drama
## 2285 Horror|Mystery
## 2286 Horror
## 2287 Thriller
## 2288 Adventure|Animation|Comedy|Fantasy|Musical
## 2289 Drama|Romance
## 2290 Documentary|Musical
## 2291 Comedy
## 2292 Comedy|Drama
## 2293 Drama
## 2294 Adventure|Comedy|Musical
## 2295 Comedy
## 2296 Drama
## 2297 Comedy|Horror|Thriller
## 2298 Horror
## 2299 Drama
## 2300 Comedy
## 2301 Adventure|Drama|Thriller
## 2302 Adventure|Fantasy
## 2303 Comedy|Musical|Romance
## 2304 Drama|Mystery|Romance
## 2305 Animation|Children|Fantasy
## 2306 Musical
## 2307 Horror
## 2308 Action|Adventure|Comedy
## 2309 Action|Adventure|Comedy
## 2310 Action|Crime|Drama|Thriller
## 2311 Drama
## 2312 Comedy|Drama
## 2313 Comedy|Romance
## 2314 Drama|Romance
## 2315 Children|Comedy
## 2316 Action|Comedy
## 2317 Comedy|Romance
## 2318 Comedy|Drama
## 2319 Action|Adventure|Comedy|Drama|War
## 2320 Comedy
## 2321 Action|Drama
## 2322 Action|Adventure|Drama
## 2323 Drama|Romance
## 2324 Comedy|War
## 2325 Horror|Mystery
## 2326 Adventure|Animation|Children
## 2327 Horror|Sci-Fi
## 2328 Horror|Sci-Fi
## 2329 Horror|Mystery|Thriller
## 2330 Horror|Thriller
## 2331 Drama
## 2332 Action|Adventure|Drama
## 2333 Drama|Romance
## 2334 Comedy
## 2335 Drama
## 2336 Crime|Drama|Thriller
## 2337 Comedy|Sci-Fi
## 2338 Comedy
## 2339 Action|Adventure|Sci-Fi|Thriller
## 2340 Crime|Thriller
## 2341 Comedy
## 2342 Drama|Romance|War
## 2343 Drama|Romance
## 2344 Western
## 2345 Crime|Drama|Western
## 2346 Comedy
## 2347 Action|Comedy
## 2348 Drama
## 2349 Comedy|Drama
## 2350 Drama|Romance
## 2351 Drama
## 2352 Drama|Romance
## 2353 Documentary
## 2354 Drama
## 2355 Comedy|Romance
## 2356 Adventure|Comedy|Romance
## 2357 Comedy
## 2358 Drama|Sci-Fi
## 2359 Drama|Thriller
## 2360 Drama|Film-Noir|Mystery|Romance
## 2361 Musical|Romance|War
## 2362 Drama|Romance
## 2363 Drama|Romance
## 2364 Action|Drama|War
## 2365 Mystery
## 2366 Comedy|Musical
## 2367 Action|Adventure|Thriller
## 2368 Action|Adventure|Thriller
## 2369 Action|Adventure|Thriller
## 2370 Adventure|Drama|Romance
## 2371 Action|Western
## 2372 Crime|Drama|Thriller
## 2373 Children|Comedy
## 2374 Action|Crime|Thriller
## 2375 Action|Crime|Drama|Thriller
## 2376 Comedy|Drama
## 2377 Comedy|Romance
## 2378 Drama
## 2379 Adventure|Drama
## 2380 Drama|Thriller
## 2381 Adventure|Comedy|Fantasy|Sci-Fi
## 2382 Drama|Romance
## 2383 Adventure|Drama
## 2384 Drama|Fantasy|Musical
## 2385 Drama|War
## 2386 Comedy|Crime|Drama
## 2387 Horror|Thriller
## 2388 Comedy|Drama
## 2389 Drama
## 2390 Comedy|Drama
## 2391 Comedy|Romance
## 2392 Drama
## 2393 Documentary
## 2394 Horror|Thriller
## 2395 Thriller
## 2396 Documentary
## 2397 Action|Crime|Drama|Sci-Fi|Thriller
## 2398 Action|Crime|Sci-Fi|Thriller
## 2399 Adventure|Animation|Children|Comedy|Crime|Fantasy|Mystery
## 2400 Drama
## 2401 Action|Adventure|Thriller
## 2402 Action|Adventure|Thriller
## 2403 Action|Adventure|Thriller
## 2404 Horror|Thriller
## 2405 Action|Adventure|Thriller
## 2406 Horror|Thriller
## 2407 Drama
## 2408 Comedy|Drama|Fantasy
## 2409 Drama|Romance
## 2410 Action|Adventure|Animation|Drama|Fantasy
## 2411 Drama
## 2412 Documentary
## 2413 Comedy|Drama|Romance|War
## 2414 Comedy|Romance
## 2415 Thriller
## 2416 Drama|Thriller
## 2417 Documentary
## 2418 Drama|Sci-Fi
## 2419 Drama
## 2420 Drama
## 2421 Comedy|Horror
## 2422 Thriller
## 2423 Horror
## 2424 Horror
## 2425 Comedy|Horror|Sci-Fi
## 2426 Crime|Drama
## 2427 Action|Drama
## 2428 Horror
## 2429 Comedy|War
## 2430 Horror|Sci-Fi
## 2431 Western
## 2432 Comedy
## 2433 Action|Drama
## 2434 Action|Adventure
## 2435 Comedy
## 2436 Action|Drama|Sci-Fi|Thriller
## 2437 Comedy|Sci-Fi
## 2438 Adventure|Animation|Children|Comedy|Musical
## 2439 Comedy|Drama|War
## 2440 Adventure|Drama
## 2441 Western
## 2442 Drama
## 2443 Comedy
## 2444 Comedy
## 2445 Comedy
## 2446 Comedy
## 2447 Comedy
## 2448 Mystery|Romance|Thriller
## 2449 Comedy|Drama
## 2450 Comedy|Romance
## 2451 Drama
## 2452 Comedy
## 2453 Comedy|Drama
## 2454 Adventure|Comedy|Fantasy
## 2455 Drama|War
## 2456 Adventure|Animation|Children|Fantasy|Sci-Fi
## 2457 Thriller
## 2458 Comedy
## 2459 Comedy|Drama|Musical
## 2460 Comedy|Musical
## 2461 Action|Drama|War
## 2462 Drama|Thriller
## 2463 Drama|Thriller
## 2464 Action|Drama|War
## 2465 Comedy|Drama
## 2466 Drama|Mystery
## 2467 Drama
## 2468 Adventure|Comedy|Sci-Fi
## 2469 Comedy|Drama
## 2470 Comedy|Romance
## 2471 Western
## 2472 Drama|Horror
## 2473 Comedy
## 2474 Documentary
## 2475 Drama
## 2476 Comedy|Drama|Romance
## 2477 Fantasy|Horror|Mystery|Romance
## 2478 Action|Adventure|Thriller
## 2479 Drama
## 2480 Children|Comedy|Fantasy|Musical
## 2481 Comedy|Fantasy|Romance
## 2482 Comedy|Fantasy
## 2483 Drama
## 2484 Drama
## 2485 Drama|War
## 2486 Drama|Western
## 2487 Drama|Romance
## 2488 Drama
## 2489 Comedy
## 2490 Comedy|Drama|Romance
## 2491 Drama
## 2492 Comedy|Drama|Romance
## 2493 Drama
## 2494 Drama|Thriller
## 2495 Crime|Romance|Thriller
## 2496 Drama|Romance
## 2497 Action|Comedy|Crime|Thriller
## 2498 Drama|Mystery
## 2499 Drama|Romance
## 2500 Action|Drama
## 2501 Comedy|Drama|Fantasy|Romance
## 2502 Drama
## 2503 Drama
## 2504 Drama
## 2505 Drama
## 2506 Action|Fantasy|Horror|Mystery|Thriller
## 2507 Adventure|Animation|Children|Comedy|Fantasy
## 2508 Drama
## 2509 Drama
## 2510 Drama|Romance|War
## 2511 Drama
## 2512 Comedy
## 2513 Drama|Film-Noir
## 2514 Drama|Romance|Western
## 2515 Drama
## 2516 Comedy|Drama
## 2517 Drama
## 2518 Comedy|Drama
## 2519 Comedy|Crime|Drama
## 2520 Comedy|Western
## 2521 Drama|War
## 2522 Drama
## 2523 Documentary
## 2524 Drama
## 2525 Comedy
## 2526 Drama
## 2527 Documentary|Musical
## 2528 Drama|War
## 2529 Comedy|Romance
## 2530 Drama
## 2531 Comedy
## 2532 Crime|Drama
## 2533 Drama
## 2534 Drama|Thriller
## 2535 Drama
## 2536 Action|Adventure|Fantasy
## 2537 Drama|Romance
## 2538 Drama|Romance|Sci-Fi
## 2539 Children|Comedy|Fantasy
## 2540 Drama
## 2541 Animation|Children|Musical|IMAX
## 2542 Drama
## 2543 Drama|Romance
## 2544 Comedy|Drama|Musical
## 2545 Action|Drama
## 2546 Adventure
## 2547 Comedy|Drama
## 2548 Adventure|Drama
## 2549 Crime|Drama|Thriller
## 2550 Drama
## 2551 Drama
## 2552 Comedy|Drama
## 2553 Adventure|Comedy|Sci-Fi
## 2554 Drama|Mystery|Thriller
## 2555 Comedy
## 2556 Drama
## 2557 Drama
## 2558 Comedy|Drama
## 2559 Drama
## 2560 Documentary
## 2561 Drama
## 2562 Drama
## 2563 Drama
## 2564 Documentary
## 2565 Children|Drama
## 2566 Adventure|Sci-Fi|Thriller
## 2567 Drama
## 2568 Drama|Romance
## 2569 Drama|War
## 2570 Action|Crime|Romance|Thriller
## 2571 Crime|Drama
## 2572 Comedy|Drama|Musical|Romance
## 2573 Comedy|Drama
## 2574 Drama
## 2575 Drama|Horror
## 2576 Thriller
## 2577 Action|Mystery|Thriller
## 2578 Horror
## 2579 Romance
## 2580 Adventure
## 2581 Action|Comedy
## 2582 Comedy|Drama|Romance
## 2583 Drama
## 2584 Animation|Children
## 2585 Drama
## 2586 Fantasy|Horror|Thriller
## 2587 Drama
## 2588 Drama
## 2589 Mystery|Thriller
## 2590 Drama
## 2591 Drama
## 2592 Drama
## 2593 Comedy|Romance
## 2594 Comedy
## 2595 Comedy
## 2596 Thriller
## 2597 Comedy
## 2598 Comedy
## 2599 Comedy
## 2600 Comedy
## 2601 Comedy|Romance
## 2602 Drama
## 2603 Drama
## 2604 Comedy|Crime
## 2605 Comedy
## 2606 Drama|Thriller
## 2607 Drama
## 2608 Drama|Mystery
## 2609 Drama
## 2610 Comedy
## 2611 Comedy
## 2612 Comedy|Drama
## 2613 Action|Crime|Drama|Thriller
## 2614 Drama|Romance|Thriller
## 2615 Comedy|Fantasy
## 2616 Adventure|Drama|Romance
## 2617 Drama
## 2618 Comedy|Drama|Romance
## 2619 Crime|Drama|Mystery|Thriller
## 2620 Comedy|Drama
## 2621 Action|Comedy|Horror
## 2622 Action|Crime|Drama|Thriller
## 2623 Comedy|Crime|Drama|Thriller
## 2624 Action|Crime|Thriller|Western
## 2625 Action|Comedy
## 2626 Drama|Romance|Sci-Fi
## 2627 Comedy|Drama|Romance
## 2628 Drama
## 2629 Crime|Drama
## 2630 Comedy|Horror|Mystery|Thriller
## 2631 Drama|Thriller
## 2632 Action|Crime|Drama|Thriller
## 2633 Comedy
## 2634 Documentary
## 2635 Comedy
## 2636 Comedy|Mystery|Romance
## 2637 Adventure|Drama
## 2638 Comedy
## 2639 Animation|Children
## 2640 Drama
## 2641 Film-Noir
## 2642 Horror
## 2643 Drama
## 2644 Crime|Drama|Thriller
## 2645 Comedy|Drama
## 2646 Horror|Sci-Fi|Thriller
## 2647 Comedy|Crime
## 2648 Comedy
## 2649 Documentary
## 2650 Crime|Drama
## 2651 Comedy
## 2652 Comedy|Drama|Romance
## 2653 Comedy|Drama
## 2654 Comedy
## 2655 Comedy|Drama
## 2656 Comedy
## 2657 Action|Drama
## 2658 Action|Thriller
## 2659 Comedy|Drama
## 2660 Drama|Thriller
## 2661 Comedy|Drama|Romance
## 2662 Comedy
## 2663 Comedy|Drama
## 2664 Comedy|Sci-Fi
## 2665 Documentary
## 2666 Crime|Drama
## 2667 Drama|Romance
## 2668 Drama|Romance
## 2669 Drama
## 2670 Crime|Drama|Film-Noir|Thriller
## 2671 Documentary
## 2672 War
## 2673 Horror|Sci-Fi
## 2674 Comedy
## 2675 Drama|War
## 2676 Comedy|Drama|Romance
## 2677 Horror
## 2678 Adventure|Drama
## 2679 Comedy
## 2680 Drama
## 2681 Horror
## 2682 Sci-Fi
## 2683 Fantasy|Horror|Mystery|Thriller
## 2684 Drama|Romance
## 2685 Comedy|Drama|Fantasy|Romance
## 2686 Comedy|Drama
## 2687 Drama|Romance
## 2688 Comedy|Drama|Romance
## 2689 Crime|Drama
## 2690 Comedy|Drama
## 2691 Crime|Film-Noir
## 2692 Drama|Western
## 2693 Romance|Western
## 2694 Drama|Thriller
## 2695 Drama
## 2696 Drama|War
## 2697 Drama
## 2698 Film-Noir
## 2699 Action|Crime
## 2700 Comedy
## 2701 Drama|Mystery|Thriller
## 2702 Comedy|Mystery
## 2703 Children|Comedy
## 2704 Adventure|Crime|Drama|Romance
## 2705 Comedy
## 2706 Comedy
## 2707 Comedy|Fantasy|Romance
## 2708 Comedy|Romance
## 2709 Comedy
## 2710 Adventure|Children|Comedy|Musical
## 2711 Children|Comedy
## 2712 Children|Comedy|Musical
## 2713 Children|Comedy
## 2714 Adventure|Animation|Children|Fantasy
## 2715 Adventure|Sci-Fi
## 2716 Comedy|Drama|Romance
## 2717 Action|Drama
## 2718 Action|Drama
## 2719 Action|Adventure|Drama|War
## 2720 Drama
## 2721 Drama|Thriller
## 2722 Adventure|Children|Drama
## 2723 Drama|Romance|War
## 2724 Drama
## 2725 Adventure|Comedy
## 2726 Adventure|Crime|Drama
## 2727 Drama|Thriller
## 2728 Comedy
## 2729 Comedy|Romance
## 2730 Drama
## 2731 Drama
## 2732 Drama|Musical
## 2733 Drama|Romance
## 2734 Crime
## 2735 Drama
## 2736 Animation|Comedy
## 2737 Action|Crime|Drama
## 2738 Action|Drama
## 2739 Action|Drama
## 2740 Action|Drama
## 2741 Crime|Drama|Film-Noir
## 2742 Drama|Romance
## 2743 Drama
## 2744 Action|Children|Comedy|Fantasy|Sci-Fi
## 2745 Action|Children|Fantasy
## 2746 Action|Adventure|Children|Comedy|Fantasy
## 2747 Action|Drama|War
## 2748 Action|Crime|Drama
## 2749 Action
## 2750 Mystery|Thriller
## 2751 Comedy|Drama
## 2752 Drama
## 2753 Comedy|Drama|War
## 2754 Drama
## 2755 Comedy
## 2756 Drama
## 2757 Action|Crime|Romance|Thriller
## 2758 Drama|Romance
## 2759 Comedy|Romance
## 2760 Drama
## 2761 Drama|Thriller
## 2762 Drama|Horror
## 2763 Comedy
## 2764 Adventure|Drama|Thriller
## 2765 Comedy|Drama|Romance
## 2766 Comedy
## 2767 Drama
## 2768 Comedy|Fantasy
## 2769 Drama|Western
## 2770 Drama
## 2771 Drama
## 2772 Adventure|Drama
## 2773 Adventure|Drama|Sci-Fi
## 2774 Sci-Fi|Thriller
## 2775 Drama|Romance
## 2776 Horror|Mystery
## 2777 Comedy|Drama
## 2778 Drama
## 2779 Adventure|Fantasy|Romance
## 2780 Drama|Romance
## 2781 Comedy|Drama|Romance
## 2782 Animation|Children
## 2783 Thriller
## 2784 Western
## 2785 Adventure|Comedy|Fantasy
## 2786 Horror
## 2787 Comedy
## 2788 Adventure|Comedy|Romance
## 2789 Adventure|Drama|Western
## 2790 Comedy|Drama
## 2791 Drama
## 2792 Comedy
## 2793 Drama
## 2794 Drama|Horror|Thriller
## 2795 Comedy|Drama
## 2796 Comedy|Romance
## 2797 Drama
## 2798 Drama|Mystery|Sci-Fi
## 2799 Comedy|Drama
## 2800 Drama|Mystery|Thriller
## 2801 Comedy|Drama
## 2802 Comedy
## 2803 Action|Adventure|Drama|Thriller|Western
## 2804 Drama
## 2805 Drama|Thriller
## 2806 Comedy
## 2807 Drama|Romance
## 2808 Drama|Thriller
## 2809 Comedy|Romance
## 2810 Comedy|Fantasy|Romance
## 2811 Drama|Thriller
## 2812 Action|Drama|War
## 2813 Comedy
## 2814 Comedy|Drama
## 2815 Drama
## 2816 Comedy|Romance
## 2817 Comedy
## 2818 Comedy|Drama
## 2819 Action|Sci-Fi|Thriller
## 2820 Drama|Romance
## 2821 Crime|Thriller
## 2822 Comedy|Drama|Romance
## 2823 Drama
## 2824 Crime|Horror|Mystery|Thriller
## 2825 Comedy|Drama|Romance
## 2826 Comedy|Drama
## 2827 Comedy
## 2828 Documentary
## 2829 Drama|Mystery|Romance
## 2830 Comedy|Drama
## 2831 Comedy
## 2832 Drama|Musical
## 2833 Drama|Horror|Thriller
## 2834 Comedy|Drama
## 2835 Comedy|Drama
## 2836 Comedy|Musical|Romance
## 2837 Horror
## 2838 Crime|Drama|Thriller
## 2839 Comedy
## 2840 Drama|Thriller
## 2841 Drama|Romance
## 2842 Action|Thriller|War
## 2843 Drama|Romance
## 2844 Mystery|Thriller
## 2845 Comedy|Drama|Romance
## 2846 Crime|Drama|Romance
## 2847 Action|Horror
## 2848 Children|Comedy
## 2849 Comedy|Drama
## 2850 Comedy|Drama
## 2851 Comedy|Drama|Romance
## 2852 Comedy|Romance
## 2853 Comedy|Drama
## 2854 Comedy|Drama
## 2855 Horror|Sci-Fi
## 2856 Horror|Sci-Fi
## 2857 Horror|Sci-Fi
## 2858 Drama
## 2859 Action|Horror|Sci-Fi
## 2860 Drama|Romance
## 2861 Action|Adventure|Drama
## 2862 Drama
## 2863 Drama
## 2864 Comedy
## 2865 Action|Drama|Romance|Thriller
## 2866 Horror
## 2867 Crime|Drama
## 2868 Comedy|Drama
## 2869 Comedy|Drama
## 2870 Action|Sci-Fi
## 2871 Drama|Musical
## 2872 Comedy
## 2873 Crime|Drama|Romance|Thriller
## 2874 Comedy|Musical
## 2875 Comedy|Musical
## 2876 Comedy|Musical|Romance
## 2877 Musical
## 2878 Crime|Drama|Musical
## 2879 Comedy|Musical|Romance
## 2880 Adventure|Comedy
## 2881 Documentary
## 2882 Animation|Children|Comedy
## 2883 Adventure|Children|Fantasy|Musical|Romance
## 2884 Comedy
## 2885 Comedy|Romance
## 2886 Adventure|Animation|Children
## 2887 Comedy|Romance
## 2888 Comedy
## 2889 Comedy|Crime
## 2890 Comedy
## 2891 Comedy|Drama
## 2892 Drama|Horror
## 2893 Comedy
## 2894 Action|Adventure|Thriller
## 2895 Action|Adventure|Comedy|Western
## 2896 Comedy
## 2897 Horror|Thriller
## 2898 Action|Drama|Romance|War
## 2899 Adventure|Comedy|Romance
## 2900 Comedy|Crime
## 2901 Action|Adventure|Romance|Thriller
## 2902 Thriller
## 2903 Action|Adventure|Thriller
## 2904 Drama
## 2905 Action|Adventure|Sci-Fi|Thriller
## 2906 Action|Adventure|Thriller
## 2907 Comedy|Drama
## 2908 Action|Drama|War
## 2909 Comedy
## 2910 Drama
## 2911 Documentary
## 2912 Action|Adventure|Drama|War
## 2913 Drama
## 2914 Crime|Film-Noir|Mystery|Thriller
## 2915 Drama
## 2916 Horror|Sci-Fi
## 2917 Sci-Fi|Thriller
## 2918 Horror|Sci-Fi|Thriller
## 2919 Horror|Sci-Fi|Thriller
## 2920 Horror|Sci-Fi|Thriller
## 2921 Horror|Sci-Fi|Thriller
## 2922 Horror|Sci-Fi|Thriller
## 2923 Horror|Sci-Fi|Thriller
## 2924 Drama|Romance
## 2925 Comedy
## 2926 Comedy|Western
## 2927 Adventure|Children
## 2928 Adventure|Children
## 2929 Adventure|Children|Comedy|Drama
## 2930 Comedy|Musical|Romance
## 2931 Drama|Horror
## 2932 Documentary
## 2933 Drama
## 2934 Documentary|Musical
## 2935 Documentary
## 2936 Action|Drama|Thriller|Western
## 2937 Action|Crime|Drama|Thriller
## 2938 Crime|Drama|Film-Noir
## 2939 Drama|Romance
## 2940 Comedy|Drama|Romance
## 2941 Horror|Sci-Fi|Thriller
## 2942 Adventure|Animation|Fantasy|Sci-Fi
## 2943 Comedy
## 2944 Comedy
## 2945 Comedy
## 2946 Comedy
## 2947 Comedy|Horror
## 2948 Comedy|Horror
## 2949 Comedy|Horror
## 2950 Comedy|Horror
## 2951 Comedy|Horror|Sci-Fi|Thriller
## 2952 Action|Sci-Fi|Thriller
## 2953 Action|Sci-Fi
## 2954 Adventure|Drama|Romance|Sci-Fi
## 2955 Drama|Sci-Fi
## 2956 Crime|Drama|Sci-Fi|Thriller
## 2957 Action|Adventure|Sci-Fi
## 2958 Action|Adventure|Sci-Fi|Thriller
## 2959 Action|Adventure|Sci-Fi
## 2960 Action|Comedy|Romance
## 2961 Film-Noir|Horror|Mystery|Thriller
## 2962 Drama|Romance
## 2963 Horror|Thriller
## 2964 Horror
## 2965 Action|Comedy|Crime|Thriller
## 2966 Comedy
## 2967 Drama
## 2968 Drama
## 2969 Comedy|Crime
## 2970 Action|Comedy|Crime|Drama
## 2971 Action|Crime
## 2972 Documentary
## 2973 Comedy|Romance
## 2974 Drama
## 2975 Comedy|Crime|Mystery
## 2976 Drama
## 2977 Drama|War
## 2978 Animation|Musical
## 2979 Action|Thriller
## 2980 Horror|Western
## 2981 Crime|Drama|Film-Noir|Thriller
## 2982 Action|Crime|Drama|Thriller
## 2983 Drama|Mystery
## 2984 Drama|Thriller
## 2985 Horror
## 2986 Drama
## 2987 Drama
## 2988 Crime|Drama
## 2989 Drama
## 2990 Drama|Western
## 2991 Drama
## 2992 Comedy|Romance
## 2993 Action|Adventure|Comedy|Fantasy
## 2994 Crime|Drama|Thriller
## 2995 Drama|War
## 2996 Comedy|Romance
## 2997 Action|Crime|Thriller
## 2998 Action|Adventure|Animation|Children|Sci-Fi
## 2999 Drama
## 3000 Drama
## 3001 Animation|Children|Comedy
## 3002 Adventure|Comedy
## 3003 Action|Drama|War
## 3004 Adventure|Animation|Children|Comedy|Fantasy
## 3005 Drama|Thriller
## 3006 Horror
## 3007 Drama|Sci-Fi|Thriller
## 3008 Animation|Children|Musical
## 3009 Comedy
## 3010 Action|Crime|Drama|Thriller
## 3011 Action|Crime|Thriller
## 3012 Action|Crime|Thriller
## 3013 Crime|Drama|Romance
## 3014 Action|War
## 3015 Action|War
## 3016 Action
## 3017 Horror|Sci-Fi|Thriller
## 3018 Action|Adventure|Fantasy
## 3019 Comedy
## 3020 Comedy|Drama|Romance
## 3021 Animation|Children|Musical
## 3022 Comedy|Horror
## 3023 Sci-Fi
## 3024 Crime|Drama
## 3025 Comedy|Fantasy
## 3026 Comedy|Horror
## 3027 Comedy
## 3028 Comedy
## 3029 Drama|Mystery
## 3030 Drama
## 3031 Drama
## 3032 Drama
## 3033 Drama|Romance|Western
## 3034 Action|Adventure|Sci-Fi
## 3035 Comedy|Drama
## 3036 Drama
## 3037 Drama|Horror|Mystery
## 3038 Animation|Children
## 3039 Crime|Drama|Romance|Thriller
## 3040 Drama|Mystery
## 3041 Action|Sci-Fi
## 3042 Comedy
## 3043 Action|Adventure|Drama
## 3044 Western
## 3045 Adventure|Fantasy
## 3046 Comedy
## 3047 Drama|Thriller
## 3048 Drama|War
## 3049 Comedy
## 3050 Drama
## 3051 Comedy
## 3052 Drama
## 3053 Comedy
## 3054 Children
## 3055 Comedy
## 3056 Drama|Romance
## 3057 Drama
## 3058 Drama|Romance
## 3059 Comedy|Drama|Romance
## 3060 Horror|Sci-Fi|Thriller
## 3061 Action|Adventure|Comedy|Sci-Fi
## 3062 Comedy|Romance
## 3063 Comedy
## 3064 Horror
## 3065 Horror|Sci-Fi
## 3066 Adventure|Drama|Romance
## 3067 Thriller
## 3068 Action|Comedy|War
## 3069 Action|Fantasy|Horror|Sci-Fi|Thriller
## 3070 Horror
## 3071 Horror
## 3072 Horror
## 3073 Action|Comedy
## 3074 Horror
## 3075 Drama
## 3076 Drama
## 3077 Comedy
## 3078 Horror
## 3079 Drama|Thriller
## 3080 Horror|Mystery|Thriller
## 3081 Comedy
## 3082 Comedy
## 3083 Drama|Romance|War
## 3084 Drama|Romance
## 3085 Thriller
## 3086 Comedy
## 3087 Documentary
## 3088 Comedy|Crime|Drama
## 3089 Comedy
## 3090 Drama|Horror|Thriller
## 3091 Action|Adventure|Sci-Fi
## 3092 Comedy|Documentary
## 3093 Action|Comedy|Crime|Romance
## 3094 Comedy
## 3095 Drama
## 3096 Drama|Western
## 3097 Drama
## 3098 Comedy|Western
## 3099 Horror
## 3100 Action|Adventure|Fantasy
## 3101 Action|Thriller
## 3102 Documentary
## 3103 Comedy
## 3104 Comedy|Drama
## 3105 Comedy|Drama|Romance
## 3106 Drama
## 3107 Action|Adventure|Fantasy
## 3108 Documentary
## 3109 Crime|Drama
## 3110 Horror
## 3111 Comedy|Crime|Drama|Romance|Thriller
## 3112 Crime|Thriller
## 3113 Crime|Thriller
## 3114 Drama
## 3115 Comedy|Drama
## 3116 Comedy|Drama
## 3117 Drama
## 3118 Drama
## 3119 Comedy
## 3120 Crime|Thriller
## 3121 Horror
## 3122 Comedy|Romance
## 3123 Drama|Musical
## 3124 Comedy
## 3125 Documentary
## 3126 Drama
## 3127 Drama
## 3128 Drama
## 3129 Horror
## 3130 Horror
## 3131 Horror
## 3132 Drama|Fantasy|Mystery|Romance
## 3133 Comedy
## 3134 Comedy
## 3135 Horror|Sci-Fi
## 3136 Comedy
## 3137 Comedy|Drama
## 3138 Adventure|Sci-Fi
## 3139 Adventure|Sci-Fi
## 3140 Comedy|Horror
## 3141 Comedy
## 3142 Adventure|Horror|Sci-Fi
## 3143 Horror|Sci-Fi
## 3144 Horror|Sci-Fi
## 3145 Sci-Fi
## 3146 Horror|Musical|Thriller
## 3147 Sci-Fi|Thriller
## 3148 Horror
## 3149 Horror
## 3150 Horror
## 3151 Horror
## 3152 Horror
## 3153 Comedy
## 3154 Adventure|Animation|Children
## 3155 Action|Drama|Thriller
## 3156 Action|Crime|Drama|Thriller
## 3157 Comedy
## 3158 Drama
## 3159 Drama
## 3160 Drama
## 3161 Drama|Thriller
## 3162 Comedy|Romance
## 3163 Comedy
## 3164 Drama|Horror|Thriller
## 3165 Action|Drama
## 3166 Action|Adventure|Sci-Fi
## 3167 Drama|Thriller
## 3168 Horror
## 3169 Comedy|Horror
## 3170 Musical
## 3171 Animation|Children
## 3172 Drama|Film-Noir
## 3173 Crime|Film-Noir
## 3174 Drama
## 3175 Comedy
## 3176 Drama
## 3177 Horror
## 3178 Comedy|Mystery
## 3179 Action|Comedy
## 3180 Crime|Horror|Mystery|Thriller
## 3181 Comedy|Drama
## 3182 Comedy|Drama
## 3183 Action|Comedy
## 3184 Drama|Romance
## 3185 Comedy
## 3186 Drama
## 3187 Action|Sci-Fi|Thriller
## 3188 Drama|Romance
## 3189 Action|Adventure|Thriller
## 3190 Drama|War
## 3191 Action|Sci-Fi|Thriller
## 3192 Drama|Romance
## 3193 Children|Comedy|Fantasy
## 3194 Documentary
## 3195 Animation|Children|Comedy
## 3196 Children|Comedy
## 3197 Drama|Romance|War
## 3198 Drama|Romance
## 3199 Drama|Sci-Fi
## 3200 Action|Drama|Romance
## 3201 Action|Adventure|Comedy|Fantasy
## 3202 Drama
## 3203 Action|Adventure
## 3204 Adventure|Drama
## 3205 Action
## 3206 Comedy
## 3207 Comedy
## 3208 Action|Adventure|Thriller
## 3209 Adventure|Animation|Children|Sci-Fi
## 3210 Drama
## 3211 Drama|War
## 3212 Drama
## 3213 Comedy
## 3214 Comedy|Crime|Thriller
## 3215 Comedy|Drama
## 3216 Drama|Romance
## 3217 Comedy|Sci-Fi
## 3218 Adventure|Animation|Children|Comedy|Fantasy
## 3219 Drama
## 3220 Comedy|Romance
## 3221 Drama
## 3222 Thriller
## 3223 Drama
## 3224 Drama
## 3225 Comedy|Drama|Romance
## 3226 Romance
## 3227 Comedy|Crime
## 3228 Action|Comedy|Crime|Thriller
## 3229 Adventure|Comedy|Crime
## 3230 Comedy|Drama
## 3231 Horror
## 3232 Drama|Romance|Western
## 3233 Drama|Thriller|War
## 3234 Crime|Drama|Thriller
## 3235 Romance|Western
## 3236 Drama|Horror
## 3237 Crime|Film-Noir|Mystery|Thriller
## 3238 Children|Musical
## 3239 Comedy
## 3240 Drama|Romance
## 3241 Action|Drama|War|Western
## 3242 Crime|Drama
## 3243 Western
## 3244 Drama
## 3245 Drama|War
## 3246 Drama
## 3247 Horror|Sci-Fi
## 3248 Crime|Drama|Thriller
## 3249 Action|Comedy
## 3250 Drama|Romance
## 3251 Drama
## 3252 Crime|Drama|Mystery|Thriller
## 3253 Drama
## 3254 Drama|Romance
## 3255 Comedy|Drama|Romance
## 3256 Comedy|Drama|Romance
## 3257 Action|Comedy
## 3258 Drama|Romance
## 3259 Comedy
## 3260 Comedy|Romance
## 3261 Drama|Romance
## 3262 Comedy|Romance
## 3263 Drama|Thriller
## 3264 Comedy|Sci-Fi
## 3265 Comedy
## 3266 Comedy
## 3267 Comedy|Drama|Romance
## 3268 Action|Comedy|Crime|Thriller
## 3269 Action|Comedy|Crime|Drama
## 3270 Action|Crime|Mystery|Romance|Thriller
## 3271 Drama|Romance|Thriller
## 3272 Comedy
## 3273 Animation|Children
## 3274 Comedy|Romance
## 3275 Romance|Sci-Fi
## 3276 Drama
## 3277 Drama
## 3278 Drama
## 3279 Comedy|Documentary
## 3280 Action|Adventure|Drama|War
## 3281 Comedy
## 3282 Fantasy|Horror|Thriller
## 3283 Action|Crime|Drama|Thriller|Western
## 3284 Drama
## 3285 Drama|Thriller
## 3286 Drama|War
## 3287 Drama
## 3288 Comedy
## 3289 Comedy
## 3290 Drama
## 3291 Action|Adventure|Comedy|Sci-Fi
## 3292 Drama
## 3293 Comedy
## 3294 Horror|Thriller
## 3295 Drama
## 3296 Comedy|Horror|Thriller
## 3297 Comedy|Fantasy
## 3298 Comedy|Romance|Sci-Fi
## 3299 Comedy|Romance
## 3300 Action|Adventure|Fantasy|Sci-Fi
## 3301 Adventure|Comedy|Horror
## 3302 Drama
## 3303 Crime|Drama
## 3304 Drama|Romance
## 3305 Comedy|Romance
## 3306 Action|Adventure|Drama|Thriller
## 3307 Horror|Mystery
## 3308 Drama|Romance
## 3309 Drama|Mystery|Romance
## 3310 Horror|Thriller
## 3311 Comedy|Romance
## 3312 Comedy|Drama|Romance
## 3313 Comedy|Fantasy|Romance
## 3314 Drama|Romance
## 3315 Comedy
## 3316 Animation|Comedy|Fantasy
## 3317 Action|Thriller
## 3318 Action|Comedy
## 3319 Comedy
## 3320 Action|Drama
## 3321 Thriller
## 3322 Comedy|Romance
## 3323 Comedy
## 3324 Documentary
## 3325 Comedy|Romance
## 3326 Drama
## 3327 Comedy|Drama
## 3328 Crime|Mystery|Thriller
## 3329 Drama
## 3330 Drama
## 3331 Action|Drama
## 3332 Comedy
## 3333 Comedy|Drama
## 3334 Comedy|Drama|Romance
## 3335 Documentary
## 3336 Comedy|Drama|Romance
## 3337 Drama
## 3338 Children|Musical
## 3339 Drama
## 3340 Drama
## 3341 Comedy|Drama|Romance
## 3342 Drama|Romance|War
## 3343 Horror|Mystery
## 3344 Comedy
## 3345 Sci-Fi
## 3346 Action
## 3347 Comedy
## 3348 Action|Crime|Drama
## 3349 Comedy|Drama|Romance
## 3350 Action|Adventure|War
## 3351 Documentary
## 3352 Action|Crime|Drama|Horror|Thriller
## 3353 Drama
## 3354 Crime|Mystery
## 3355 Horror|Sci-Fi|Thriller
## 3356 Comedy
## 3357 Comedy
## 3358 Drama
## 3359 Documentary
## 3360 Crime|Drama
## 3361 Comedy
## 3362 Comedy
## 3363 Comedy
## 3364 Horror
## 3365 Drama|War
## 3366 Action|Thriller
## 3367 Comedy
## 3368 Mystery|Thriller
## 3369 Comedy|Crime|Romance
## 3370 Comedy|Romance
## 3371 Comedy|Romance
## 3372 Action|Adventure|Children|Comedy
## 3373 Comedy
## 3374 Drama|Thriller
## 3375 Drama|Thriller
## 3376 Documentary
## 3377 Documentary
## 3378 Action|Crime|Mystery|Thriller
## 3379 Crime|Drama
## 3380 Animation|Children
## 3381 Comedy|Drama|Romance
## 3382 Adventure|Comedy|Mystery|Romance
## 3383 Comedy
## 3384 Drama|Thriller
## 3385 Drama
## 3386 Comedy|Drama
## 3387 Comedy
## 3388 Action|Crime|Drama
## 3389 Drama
## 3390 Action|Thriller
## 3391 Horror
## 3392 Comedy
## 3393 Comedy
## 3394 Action|Adventure|Comedy|Thriller
## 3395 Drama
## 3396 Drama
## 3397 Drama|Romance
## 3398 Action|Adventure|Fantasy|Sci-Fi
## 3399 Comedy
## 3400 Adventure|Sci-Fi
## 3401 Documentary
## 3402 Crime
## 3403 Comedy|Drama|Romance
## 3404 Comedy
## 3405 Drama|Fantasy
## 3406 Comedy
## 3407 Comedy|Drama|Musical
## 3408 Comedy|Crime
## 3409 Drama
## 3410 Comedy
## 3411 Children|Fantasy|Musical
## 3412 Drama|Romance
## 3413 Drama
## 3414 Crime|Film-Noir|Thriller
## 3415 Action|Comedy|Romance
## 3416 Drama
## 3417 Drama
## 3418 Documentary
## 3419 Romance|Thriller
## 3420 Adventure|Animation|Children|Comedy|Fantasy|Romance
## 3421 Drama|Musical|Romance
## 3422 Action|Drama|Romance|War
## 3423 Adventure|Drama
## 3424 Drama
## 3425 Comedy|Romance
## 3426 Comedy|Drama
## 3427 Western
## 3428 Comedy|Western
## 3429 Drama
## 3430 Drama|Western
## 3431 Crime|Drama|Thriller
## 3432 Adventure|Western
## 3433 Western
## 3434 Crime|Drama|Thriller
## 3435 Comedy|Crime
## 3436 Drama
## 3437 Drama|Romance|War
## 3438 Drama|War
## 3439 Action|Adventure|Drama|War
## 3440 Comedy
## 3441 Drama|Romance
## 3442 Comedy|Sci-Fi
## 3443 Action|Crime|Drama
## 3444 Drama
## 3445 Comedy|Drama
## 3446 Comedy|War
## 3447 Comedy|Documentary
## 3448 Action|Crime|Thriller
## 3449 Comedy|Drama
## 3450 Action|War
## 3451 Crime|Thriller
## 3452 Action|Drama
## 3453 Comedy|Musical|Romance
## 3454 Comedy|Drama|Romance
## 3455 Comedy
## 3456 Musical
## 3457 Comedy|Romance
## 3458 Adventure|Animation|Children|Fantasy
## 3459 Action|Adventure
## 3460 Comedy
## 3461 Action|Crime|Thriller
## 3462 Adventure|Drama|Sci-Fi
## 3463 Crime|Drama
## 3464 Drama|Romance
## 3465 Comedy|Drama
## 3466 Crime|Drama
## 3467 Drama|Romance
## 3468 Comedy
## 3469 Crime|Drama|Mystery|Thriller
## 3470 Drama
## 3471 Children|Comedy
## 3472 Action
## 3473 Comedy
## 3474 Drama
## 3475 Crime|Drama|Thriller
## 3476 Drama
## 3477 Comedy|Drama|Fantasy|Romance
## 3478 Comedy|Musical
## 3479 Action|Comedy
## 3480 Action|Comedy
## 3481 Comedy|Drama
## 3482 Action|Comedy|Romance
## 3483 Comedy
## 3484 Horror
## 3485 Drama|Fantasy|Horror
## 3486 Drama
## 3487 Crime|Drama|Western
## 3488 Drama|Thriller|War
## 3489 Comedy|Drama|Mystery|Thriller
## 3490 Comedy|Crime|Drama
## 3491 Western
## 3492 Sci-Fi|Thriller
## 3493 Comedy
## 3494 Horror
## 3495 Drama
## 3496 Drama
## 3497 Drama
## 3498 Film-Noir
## 3499 Drama
## 3500 Comedy|Drama|Romance|Western
## 3501 Drama|Film-Noir
## 3502 Drama
## 3503 Horror
## 3504 Action|Drama|Romance|Thriller
## 3505 Action|Thriller
## 3506 Action
## 3507 Action|Comedy|Drama
## 3508 Action|Sci-Fi|Thriller
## 3509 Action|Crime
## 3510 Adventure|Documentary|IMAX
## 3511 Adventure|Animation|Fantasy|Sci-Fi
## 3512 Comedy|Romance
## 3513 Action|Drama
## 3514 Crime|Drama|Thriller
## 3515 Comedy|Drama|Romance
## 3516 Comedy
## 3517 Documentary|IMAX
## 3518 Animation|Drama|Sci-Fi|IMAX
## 3519 Documentary|IMAX
## 3520 Documentary|IMAX
## 3521 Comedy|Fantasy
## 3522 Comedy|Drama|Romance
## 3523 Drama
## 3524 Action|Crime|Drama
## 3525 Adventure|Comedy|Fantasy
## 3526 Crime|Mystery
## 3527 Drama
## 3528 Comedy|Romance
## 3529 Drama|War
## 3530 Comedy|Drama|Musical
## 3531 Drama|War
## 3532 Adventure|Children|Comedy
## 3533 Comedy|Drama
## 3534 Drama|Musical
## 3535 Horror|Sci-Fi
## 3536 Drama
## 3537 Comedy
## 3538 Drama
## 3539 Drama|Romance
## 3540 Action|Crime|Drama
## 3541 Comedy|Romance
## 3542 Comedy
## 3543 Thriller
## 3544 Comedy|Sci-Fi
## 3545 Comedy|Horror|Sci-Fi
## 3546 Comedy|Romance
## 3547 Film-Noir|Mystery|Thriller
## 3548 Action|Crime|Thriller
## 3549 Comedy
## 3550 Comedy|Drama
## 3551 Comedy|Horror
## 3552 Children|Comedy
## 3553 Romance
## 3554 Crime|Mystery|Thriller
## 3555 Drama
## 3556 Comedy
## 3557 Comedy
## 3558 Documentary
## 3559 Comedy
## 3560 Comedy|Horror
## 3561 Adventure|Animation|Children|Fantasy
## 3562 Comedy
## 3563 Drama
## 3564 Mystery|Romance|Thriller
## 3565 Comedy|Drama|Fantasy
## 3566 Comedy
## 3567 Comedy|Romance|Sci-Fi
## 3568 Comedy|Romance
## 3569 Action|Thriller|War
## 3570 Comedy|Drama
## 3571 Action
## 3572 Comedy|Horror
## 3573 Comedy|Horror|Sci-Fi
## 3574 Adventure|Drama|Western
## 3575 Drama|Romance|Western
## 3576 Drama
## 3577 Comedy|Drama
## 3578 Musical|Romance
## 3579 Horror
## 3580 Action|Adventure
## 3581 Comedy|Sci-Fi
## 3582 Comedy|Sci-Fi
## 3583 Drama|Thriller
## 3584 Comedy
## 3585 Action|Horror|Sci-Fi|Thriller
## 3586 Action|Sci-Fi|Thriller
## 3587 Comedy|Drama|Romance
## 3588 Drama
## 3589 Comedy
## 3590 Comedy
## 3591 Horror|Sci-Fi
## 3592 Comedy|Horror
## 3593 Comedy|Mystery
## 3594 Comedy
## 3595 Drama|Fantasy|Romance
## 3596 Action|Adventure
## 3597 Action|Adventure
## 3598 Action|Adventure
## 3599 Action
## 3600 Action
## 3601 Comedy|Drama
## 3602 Adventure|Comedy|Sci-Fi
## 3603 Action|Crime|Drama
## 3604 Comedy|Drama
## 3605 Drama|War
## 3606 Comedy|Romance
## 3607 Comedy|Drama|Romance
## 3608 Comedy
## 3609 Comedy|Musical|Sci-Fi
## 3610 Drama|Musical|Mystery
## 3611 Drama
## 3612 Adventure|Comedy|Fantasy
## 3613 Comedy
## 3614 Comedy
## 3615 Comedy|Drama
## 3616 Comedy|Crime|Romance
## 3617 Comedy|Romance
## 3618 Comedy|Fantasy
## 3619 Drama
## 3620 Crime|Drama
## 3621 Comedy|Crime|Mystery|Thriller
## 3622 Drama
## 3623 Action
## 3624 Drama
## 3625 Drama
## 3626 Comedy
## 3627 Horror|Sci-Fi|Thriller
## 3628 Comedy
## 3629 Comedy|Romance
## 3630 Comedy
## 3631 Comedy
## 3632 Animation|Comedy|Musical
## 3633 Drama|Sci-Fi|Thriller
## 3634 Drama|Romance|Sci-Fi
## 3635 Comedy
## 3636 Comedy|Drama
## 3637 Action|Crime|Thriller
## 3638 Action
## 3639 Action|Thriller
## 3640 Adventure|Comedy
## 3641 Action
## 3642 Action|Adventure|Sci-Fi|Thriller
## 3643 Comedy|Romance
## 3644 Action|Crime|Thriller
## 3645 Comedy|Drama
## 3646 Comedy|Drama|Musical
## 3647 Action|Adventure|Drama|Sci-Fi
## 3648 Comedy|Drama|Romance
## 3649 Crime|Horror|Thriller
## 3650 Comedy
## 3651 Comedy|Horror|Sci-Fi
## 3652 Action|Drama
## 3653 Drama
## 3654 Drama|Horror|Mystery|Thriller
## 3655 Drama
## 3656 Comedy
## 3657 Crime|Drama|Thriller
## 3658 Comedy|Crime
## 3659 Comedy
## 3660 Comedy|Romance
## 3661 Comedy
## 3662 Drama
## 3663 Horror|Thriller
## 3664 Action|Comedy|Crime|Thriller
## 3665 Drama
## 3666 Action|Comedy
## 3667 Comedy
## 3668 Comedy|Crime
## 3669 Comedy
## 3670 Comedy
## 3671 Comedy|Fantasy|Horror
## 3672 Comedy|Drama
## 3673 Action|Horror
## 3674 Comedy
## 3675 Adventure|Comedy
## 3676 Comedy
## 3677 Adventure|Drama
## 3678 Crime|Musical
## 3679 Action|Sci-Fi
## 3680 Drama
## 3681 Comedy
## 3682 Comedy|Horror
## 3683 Comedy|Drama
## 3684 Drama|Romance|Thriller
## 3685 Children|Comedy|Romance
## 3686 Action|Comedy
## 3687 Drama
## 3688 Adventure|Comedy
## 3689 Comedy
## 3690 Comedy
## 3691 Comedy|Musical|Western
## 3692 Drama|Western
## 3693 Documentary
## 3694 Drama
## 3695 Drama|Sci-Fi
## 3696 Comedy
## 3697 Drama
## 3698 Action|Comedy
## 3699 Comedy
## 3700 Action|Animation|Comedy|Crime|Drama|Romance|Thriller
## 3701 Drama|Horror|Mystery|Thriller
## 3702 Action|Comedy|Western
## 3703 Comedy
## 3704 Drama
## 3705 Drama
## 3706 Horror|Thriller
## 3707 Drama|Romance|War
## 3708 Comedy
## 3709 Drama
## 3710 Comedy
## 3711 Comedy
## 3712 Adventure|Comedy
## 3713 Horror|Sci-Fi|Thriller
## 3714 Comedy|Drama|Romance
## 3715 Drama
## 3716 Romance|Sci-Fi
## 3717 Comedy|Romance
## 3718 Comedy|Drama|Romance
## 3719 Comedy|Romance
## 3720 Horror
## 3721 Drama
## 3722 Action|Children|Comedy
## 3723 Action|Children|Comedy
## 3724 Action|Children
## 3725 Action|Thriller
## 3726 Horror
## 3727 Comedy|Horror
## 3728 Drama|Horror|Mystery|Thriller
## 3729 Comedy
## 3730 Action|Adventure|Drama|Romance
## 3731 Comedy|Drama|Musical
## 3732 Drama
## 3733 Comedy
## 3734 Drama
## 3735 Crime|Drama|Romance
## 3736 Comedy|Horror
## 3737 Crime|Mystery|Thriller
## 3738 Documentary
## 3739 Thriller
## 3740 Drama
## 3741 Drama
## 3742 Comedy|Crime
## 3743 Drama|Musical|Romance
## 3744 Crime|Drama|Thriller
## 3745 Comedy|Romance
## 3746 Documentary
## 3747 Drama
## 3748 Drama
## 3749 Comedy|Fantasy|Horror|Musical|Thriller
## 3750 Horror
## 3751 Adventure|Comedy|Romance|War
## 3752 Comedy|Romance
## 3753 Comedy|Romance
## 3754 Action|Adventure|Comedy|Crime
## 3755 Action|Adventure|Drama|Romance|Thriller
## 3756 Drama
## 3757 Action|Comedy|Romance|War
## 3758 Drama|Thriller
## 3759 Comedy|Drama
## 3760 Drama
## 3761 Drama
## 3762 Drama
## 3763 Drama|Musical
## 3764 Adventure|Sci-Fi
## 3765 Thriller
## 3766 Drama
## 3767 Comedy
## 3768 Action|Adventure|Comedy|Drama
## 3769 Adventure|Thriller
## 3770 Children|Comedy
## 3771 Comedy|Romance
## 3772 Action|Adventure|Drama|War
## 3773 Crime|Drama
## 3774 Comedy|Musical
## 3775 Drama
## 3776 Horror|Mystery|Thriller
## 3777 Comedy
## 3778 Drama
## 3779 Drama|Romance
## 3780 Crime|Drama|Thriller
## 3781 Drama|Romance
## 3782 Drama|War
## 3783 Comedy|Crime|Romance
## 3784 Action|Comedy
## 3785 Crime|Drama|Film-Noir|Mystery|Thriller
## 3786 Comedy|Drama
## 3787 Drama
## 3788 Musical
## 3789 Action|Crime|Thriller
## 3790 Drama|Musical
## 3791 Crime|Drama
## 3792 Documentary|IMAX
## 3793 Drama
## 3794 Comedy|Crime
## 3795 Crime|Horror|Mystery|Thriller
## 3796 Action
## 3797 Comedy|Drama
## 3798 Animation|Drama|Fantasy
## 3799 Drama|Fantasy|Mystery|Sci-Fi
## 3800 Comedy|Romance
## 3801 Horror|Thriller
## 3802 Drama|Mystery|Sci-Fi|Thriller
## 3803 Drama
## 3804 Crime|Drama
## 3805 Thriller
## 3806 Adventure|Animation|Children|Comedy|Fantasy
## 3807 Action|Sci-Fi|Thriller
## 3808 Drama
## 3809 Crime|Drama
## 3810 Comedy|Fantasy|Romance
## 3811 Horror|Thriller
## 3812 Comedy
## 3813 Adventure|Children|Fantasy
## 3814 Drama|Romance
## 3815 Comedy|Crime|Mystery|Thriller
## 3816 Adventure|Comedy|Fantasy
## 3817 Action|Crime|Drama|Thriller
## 3818 Drama|Fantasy|Horror|Thriller|War
## 3819 Drama
## 3820 Adventure|Comedy|Fantasy
## 3821 Drama|Musical|Romance
## 3822 Crime|Drama|Romance
## 3823 Action|Adventure|Fantasy
## 3824 Drama|Romance
## 3825 Drama|Romance
## 3826 Action|War
## 3827 Comedy
## 3828 Fantasy|Mystery|Thriller
## 3829 Drama
## 3830 Comedy
## 3831 Action|Drama|Thriller
## 3832 Mystery|Thriller
## 3833 Adventure|Drama
## 3834 Drama|Musical
## 3835 Action|Adventure|Sci-Fi
## 3836 Crime
## 3837 Action
## 3838 Horror
## 3839 Action|Thriller
## 3840 Adventure|Drama|Thriller
## 3841 Comedy|Sci-Fi
## 3842 Comedy|Crime
## 3843 Action|Adventure|Comedy|Drama|Romance|Thriller
## 3844 Crime|Thriller
## 3845 Action|Drama|War
## 3846 Comedy
## 3847 Documentary
## 3848 Crime|Thriller
## 3849 Adventure|Drama|Romance
## 3850 Action|Drama|Thriller
## 3851 Drama|War
## 3852 Drama
## 3853 Crime|Mystery
## 3854 Drama
## 3855 Comedy|Drama
## 3856 Comedy
## 3857 Comedy|Romance
## 3858 Comedy
## 3859 Mystery|Romance|Sci-Fi|Thriller
## 3860 Drama
## 3861 Drama
## 3862 Drama|Mystery|Thriller
## 3863 Comedy|Drama
## 3864 Adventure|Comedy|Fantasy|Sci-Fi
## 3865 Comedy
## 3866 Comedy|Drama|Fantasy
## 3867 Action|Adventure|Sci-Fi
## 3868 Adventure
## 3869 Comedy
## 3870 Adventure|Animation|Children|Comedy
## 3871 Comedy|Romance
## 3872 Adventure|Fantasy
## 3873 Comedy|Drama|Romance
## 3874 Drama|Romance
## 3875 Comedy|Drama|Fantasy
## 3876 Adventure|Crime|Drama|Thriller
## 3877 Drama|Romance
## 3878 Drama|Romance
## 3879 Action|Drama|War
## 3880 Animation
## 3881 Animation
## 3882 Comedy
## 3883 Drama|Mystery|Thriller
## 3884 Drama
## 3885 Action|Drama|War
## 3886 Drama|Musical|Romance
## 3887 Comedy|Drama|Mystery
## 3888 Drama
## 3889 Drama|Romance
## 3890 Drama
## 3891 Drama|Film-Noir
## 3892 Adventure|Comedy|Crime|Drama|Fantasy|Mystery|Sci-Fi|Thriller
## 3893 Comedy|Crime|Mystery|Thriller
## 3894 Drama
## 3895 Drama
## 3896 Comedy
## 3897 Action|Mystery|Thriller
## 3898 Action|Comedy|Crime|Drama|Thriller
## 3899 Drama
## 3900 Drama|Thriller
## 3901 Drama|Romance
## 3902 Adventure|Animation|Children|Drama|Fantasy
## 3903 Action|Adventure|Fantasy
## 3904 Action|Adventure|Fantasy
## 3905 Animation|Fantasy
## 3906 Musical|Sci-Fi
## 3907 Thriller
## 3908 Action|Drama|Sci-Fi|Thriller
## 3909 Action|Comedy
## 3910 Adventure|Children|Comedy
## 3911 Action|Comedy|Crime|Drama
## 3912 Comedy|Drama|Romance
## 3913 Comedy
## 3914 Sci-Fi|Thriller
## 3915 Action|Drama
## 3916 Crime|Drama
## 3917 Comedy|Western
## 3918 Documentary
## 3919 Comedy|Drama|War
## 3920 Drama|Romance
## 3921 Mystery|Sci-Fi|Thriller
## 3922 Western
## 3923 Action|Adventure|Drama|Thriller
## 3924 Drama|Fantasy|Horror|Mystery|Thriller
## 3925 Drama|Romance
## 3926 Action|Adventure|Animation|Drama|Fantasy
## 3927 Drama|Romance
## 3928 Animation|Sci-Fi
## 3929 Drama
## 3930 Comedy|Drama
## 3931 Comedy
## 3932 Adventure|Children|Comedy|Drama
## 3933 Drama|Musical|Romance
## 3934 Comedy
## 3935 Drama|Romance
## 3936 Comedy|Drama
## 3937 Drama|Musical
## 3938 Comedy|Drama|Romance
## 3939 Comedy|Crime|Drama
## 3940 Children|Comedy
## 3941 Action|Thriller
## 3942 Action|Sci-Fi
## 3943 Comedy|Crime
## 3944 Comedy
## 3945 Comedy|Drama
## 3946 Musical
## 3947 Children|Drama
## 3948 Comedy|Documentary
## 3949 Comedy|Fantasy
## 3950 Children|Comedy|Drama
## 3951 Drama|Horror|Thriller
## 3952 Comedy|Musical|Romance
## 3953 Drama|War
## 3954 Crime|Drama|Thriller
## 3955 Adventure|Animation|Children
## 3956 Comedy|Crime|Mystery
## 3957 Drama|Thriller
## 3958 Drama
## 3959 Comedy|Musical
## 3960 Drama
## 3961 Comedy|Mystery|Thriller
## 3962 Comedy|Drama
## 3963 Drama
## 3964 Comedy
## 3965 Drama|Fantasy|Mystery|Romance|Thriller
## 3966 Fantasy|Horror
## 3967 Comedy|Drama
## 3968 Comedy|Romance
## 3969 Documentary
## 3970 Comedy
## 3971 Comedy
## 3972 Comedy|Drama
## 3973 Animation|Fantasy|Horror|Sci-Fi
## 3974 Drama
## 3975 Comedy|Romance
## 3976 Action|Drama|War
## 3977 Drama|Horror|Thriller
## 3978 Animation|Children|Comedy|Musical
## 3979 Drama|Romance
## 3980 Animation|Children
## 3981 Horror
## 3982 Comedy|Mystery
## 3983 Comedy|Musical|Romance
## 3984 Film-Noir
## 3985 Action|Comedy|Crime
## 3986 Action|Adventure|Sci-Fi
## 3987 Comedy|Drama|Romance
## 3988 Drama|Romance
## 3989 Drama|Thriller
## 3990 Documentary
## 3991 Action|Fantasy
## 3992 Drama|Romance
## 3993 Comedy
## 3994 Musical
## 3995 Drama|Thriller
## 3996 Western
## 3997 Drama
## 3998 Comedy|Horror
## 3999 Comedy|Horror
## 4000 Drama|War
## 4001 Horror
## 4002 Comedy|Fantasy
## 4003 Adventure|Animation|Children|Comedy
## 4004 Action|Horror|Sci-Fi|Thriller
## 4005 Action|Comedy
## 4006 Comedy|Romance
## 4007 Comedy|Drama
## 4008 Documentary
## 4009 Drama|Romance
## 4010 Drama|Romance
## 4011 Adventure|Drama
## 4012 Comedy
## 4013 Comedy|Western
## 4014 Comedy
## 4015 Comedy|Musical
## 4016 Comedy
## 4017 Comedy
## 4018 Drama|Romance
## 4019 Drama
## 4020 Drama
## 4021 Comedy|Romance
## 4022 Comedy
## 4023 Action|Comedy
## 4024 Action|Adventure
## 4025 Action|Comedy
## 4026 Action|Comedy
## 4027 Action|Comedy
## 4028 Comedy
## 4029 Action|Horror|Thriller
## 4030 Comedy
## 4031 Drama
## 4032 Drama
## 4033 Action|Adventure|Sci-Fi|Thriller
## 4034 Comedy|Crime|Drama
## 4035 Thriller
## 4036 Drama
## 4037 Drama
## 4038 Comedy|Drama|Romance
## 4039 Drama
## 4040 Drama|Romance|Thriller
## 4041 Action|Thriller
## 4042 Comedy|Romance
## 4043 Comedy|Romance
## 4044 Thriller
## 4045 Comedy
## 4046 Comedy|Crime
## 4047 Documentary|War
## 4048 Drama|Film-Noir
## 4049 Crime|Drama|Mystery
## 4050 Comedy
## 4051 Drama|Thriller
## 4052 Crime|Drama|Thriller
## 4053 Comedy|Romance
## 4054 Drama|Thriller
## 4055 Comedy|Romance
## 4056 Comedy|Romance
## 4057 Action|Adventure|Drama|Thriller|Western
## 4058 Action|Adventure|Western
## 4059 Action|Adventure
## 4060 Comedy|Romance
## 4061 Drama|War
## 4062 Comedy|Horror|Sci-Fi
## 4063 Comedy
## 4064 Comedy
## 4065 Comedy|Romance
## 4066 Crime|Thriller
## 4067 Action|Adventure|Fantasy|Thriller
## 4068 Drama
## 4069 Romance|Thriller
## 4070 Crime|Thriller
## 4071 Horror|Sci-Fi|Thriller
## 4072 Comedy|Romance
## 4073 Documentary
## 4074 Crime|Drama|Thriller
## 4075 Crime|Drama
## 4076 Comedy|Crime
## 4077 Comedy|Romance
## 4078 Comedy
## 4079 Comedy|Drama
## 4080 Drama
## 4081 Horror|Mystery|Thriller
## 4082 Drama|Thriller
## 4083 Drama|Thriller
## 4084 Drama|Romance
## 4085 Comedy|Drama
## 4086 Action|Adventure|Sci-Fi|Thriller
## 4087 Thriller
## 4088 Comedy|Drama
## 4089 Comedy
## 4090 Horror|Sci-Fi
## 4091 Adventure
## 4092 Drama
## 4093 Comedy
## 4094 Adventure
## 4095 Comedy
## 4096 Drama|Thriller
## 4097 Drama|Romance
## 4098 Drama
## 4099 Drama|Romance
## 4100 Musical|Western
## 4101 Drama|Romance|War
## 4102 Comedy|Musical|Western
## 4103 Comedy|Drama|Romance
## 4104 Action|Adventure|Sci-Fi|IMAX
## 4105 Drama
## 4106 Comedy|Drama|Romance
## 4107 Comedy
## 4108 Crime|Horror|Mystery
## 4109 Crime|Drama
## 4110 Documentary
## 4111 Drama|Thriller
## 4112 Action|Crime|Drama|Mystery|Thriller
## 4113 Adventure|Animation|Children|Western
## 4114 Drama
## 4115 Drama
## 4116 Drama
## 4117 Drama|Thriller
## 4118 Comedy
## 4119 Drama|Romance
## 4120 Drama|Sci-Fi
## 4121 Horror
## 4122 Action|Comedy|Crime
## 4123 Comedy|Drama
## 4124 Comedy|Drama|Thriller
## 4125 Drama|Fantasy
## 4126 Action|Mystery|Thriller
## 4127 Adventure|Children|Comedy|Fantasy|Mystery
## 4128 Action|Drama|War
## 4129 Drama
## 4130 Comedy
## 4131 Drama|War
## 4132 Comedy
## 4133 Comedy
## 4134 Adventure|Drama|Horror|Mystery|Thriller
## 4135 Drama|Film-Noir|Thriller
## 4136 Action|Comedy
## 4137 Western
## 4138 Comedy
## 4139 Adventure|Animation|Children|Sci-Fi
## 4140 Action|Crime|Mystery|Sci-Fi|Thriller
## 4141 Adventure|Drama
## 4142 Drama
## 4143 Adventure|Animation|Children|Comedy
## 4144 Comedy|Romance
## 4145 Comedy|Drama|Romance
## 4146 Children|Comedy|Romance
## 4147 Children|Comedy|Fantasy
## 4148 Action|Comedy|Sci-Fi
## 4149 Action|Animation|Children|Comedy
## 4150 Adventure|Comedy
## 4151 Action|Adventure|Fantasy
## 4152 Crime|Drama
## 4153 Comedy|Drama|Romance
## 4154 Comedy|Romance
## 4155 Drama|Romance
## 4156 Drama
## 4157 Drama|Mystery|Thriller
## 4158 Drama|Romance
## 4159 Action|Comedy|Horror|Sci-Fi
## 4160 Action|Adventure|Drama|Thriller
## 4161 Children|Comedy
## 4162 Comedy
## 4163 Documentary
## 4164 Horror
## 4165 Action|Comedy
## 4166 Drama
## 4167 Comedy
## 4168 Comedy|Mystery
## 4169 Horror|Sci-Fi|Thriller
## 4170 Comedy|Drama|Romance
## 4171 Adventure|Children
## 4172 Comedy|Drama
## 4173 Crime|Drama|Mystery|Thriller
## 4174 Action|Crime|Thriller
## 4175 Comedy|Drama|Musical
## 4176 Drama
## 4177 Crime|Drama|Thriller
## 4178 Crime|Thriller
## 4179 Drama
## 4180 Action|Crime|Drama
## 4181 Action|Drama|Sci-Fi
## 4182 Action|Adventure|Comedy|Sci-Fi
## 4183 Adventure|Drama|Romance
## 4184 Comedy|Drama|Romance
## 4185 Drama|Romance
## 4186 Drama|Thriller
## 4187 Comedy|Drama|Fantasy|Sci-Fi
## 4188 Drama
## 4189 Drama
## 4190 Drama
## 4191 Animation|Children|Fantasy
## 4192 Animation|Children
## 4193 Action|Adventure|Fantasy|Romance
## 4194 Action|Comedy|Romance|War
## 4195 Sci-Fi|Thriller
## 4196 Comedy
## 4197 Comedy|Crime|Romance|Thriller
## 4198 Crime|Horror|Thriller
## 4199 Action|Crime
## 4200 Comedy|Musical
## 4201 Drama
## 4202 Drama|Thriller
## 4203 Thriller
## 4204 Comedy
## 4205 Crime|Horror|Thriller
## 4206 Drama|Horror|Thriller
## 4207 Comedy
## 4208 Comedy|Crime
## 4209 Action|Crime
## 4210 Crime|Drama
## 4211 Comedy|Drama
## 4212 Comedy
## 4213 Adventure|Comedy
## 4214 Comedy
## 4215 Horror
## 4216 Comedy|Sci-Fi
## 4217 Drama|Romance
## 4218 Drama
## 4219 Children|Drama
## 4220 Comedy|Crime
## 4221 Comedy|Crime
## 4222 Comedy|Sci-Fi
## 4223 Drama
## 4224 Comedy|Drama
## 4225 Drama|Thriller
## 4226 Action|Thriller
## 4227 Adventure|War
## 4228 Action|Thriller
## 4229 Comedy|Crime|Musical|Mystery
## 4230 Drama
## 4231 Comedy|Drama|Romance
## 4232 Adventure|Animation|Fantasy
## 4233 Documentary
## 4234 Comedy|Romance
## 4235 Action|Comedy
## 4236 Comedy|Drama|Romance
## 4237 Drama|Romance
## 4238 Action|Comedy|Crime|Drama|Thriller
## 4239 Animation|Children|Musical
## 4240 Crime|Mystery|Thriller
## 4241 Drama
## 4242 Drama
## 4243 Comedy|Crime
## 4244 Drama
## 4245 Action|Adventure|Fantasy|Sci-Fi
## 4246 Drama
## 4247 Drama
## 4248 Documentary
## 4249 Drama
## 4250 Drama|Romance
## 4251 Horror
## 4252 Comedy
## 4253 Animation|Comedy|War
## 4254 Drama|Thriller
## 4255 Comedy|Romance|Thriller
## 4256 Horror
## 4257 Comedy|Drama|Romance|Thriller
## 4258 Drama|Fantasy
## 4259 Drama
## 4260 Documentary
## 4261 Comedy|Documentary
## 4262 Adventure|Animation|Children|Fantasy
## 4263 Comedy|Drama|Romance
## 4264 Comedy|Romance
## 4265 Drama|Thriller
## 4266 Action|Comedy|Crime|Thriller
## 4267 Horror|Mystery|Thriller
## 4268 Crime|Drama
## 4269 Drama
## 4270 Documentary
## 4271 Comedy|Drama
## 4272 Drama|Fantasy|War
## 4273 Crime|Drama
## 4274 Animation|Drama|War
## 4275 Action|Horror
## 4276 Comedy|Drama|Romance
## 4277 Comedy|Drama|Musical
## 4278 Drama
## 4279 Western
## 4280 Action|Adventure|Fantasy|Sci-Fi
## 4281 Comedy
## 4282 Fantasy|Musical|Romance
## 4283 Drama|Romance
## 4284 Comedy
## 4285 Mystery|Thriller
## 4286 Horror
## 4287 Comedy
## 4288 Comedy|Romance
## 4289 Drama|Romance
## 4290 Thriller
## 4291 Documentary|Horror
## 4292 Documentary|Horror
## 4293 Documentary|Horror
## 4294 Documentary|Horror
## 4295 Comedy|Drama
## 4296 Comedy|Drama
## 4297 Action|Horror|Mystery|Sci-Fi
## 4298 Drama|War
## 4299 Comedy|Romance
## 4300 Drama|Horror
## 4301 Animation|Children|Comedy
## 4302 Comedy|Fantasy
## 4303 Drama
## 4304 Comedy
## 4305 Musical|Romance
## 4306 Horror|Mystery|Thriller
## 4307 Horror|Sci-Fi
## 4308 Comedy
## 4309 Action|Drama|Thriller
## 4310 Horror
## 4311 Action|Comedy|Documentary
## 4312 Mystery|Thriller
## 4313 Drama
## 4314 Drama|Romance
## 4315 Comedy|Drama
## 4316 Film-Noir
## 4317 Action|Adventure|Comedy
## 4318 Drama|Romance|War
## 4319 Comedy|War
## 4320 Action|Adventure|Comedy|Crime
## 4321 Thriller
## 4322 Crime|Thriller
## 4323 Drama
## 4324 Drama|Romance
## 4325 Action|Crime|Thriller
## 4326 Adventure|Fantasy
## 4327 Drama|Romance
## 4328 Drama
## 4329 Documentary|Musical
## 4330 Drama|Romance|War
## 4331 Romance|Western
## 4332 Drama|Thriller
## 4333 Comedy|Drama|Romance
## 4334 Adventure|Sci-Fi
## 4335 Drama
## 4336 Action|Horror
## 4337 Drama
## 4338 Comedy|Romance
## 4339 Adventure|Drama
## 4340 Comedy|Drama
## 4341 Adventure|Romance
## 4342 Action|Drama
## 4343 Drama
## 4344 Drama
## 4345 Thriller
## 4346 Horror|Sci-Fi|Thriller
## 4347 Crime|Drama|Romance
## 4348 Comedy
## 4349 Drama|Thriller|War
## 4350 Adventure
## 4351 Comedy
## 4352 Crime|Drama|Thriller
## 4353 Documentary|Drama|Musical
## 4354 Crime|Drama
## 4355 Action|Adventure|Thriller
## 4356 Drama
## 4357 Comedy
## 4358 Drama
## 4359 Drama|Thriller|War
## 4360 Drama|Romance
## 4361 Animation|Comedy|Musical
## 4362 Action|Adventure|Crime|Thriller
## 4363 Drama|Romance|Sci-Fi
## 4364 Adventure|Animation|Children|Sci-Fi|IMAX
## 4365 Horror|Thriller
## 4366 Crime|Drama
## 4367 Horror|Thriller
## 4368 Crime|Drama|Thriller
## 4369 Action|Drama|War
## 4370 Comedy|Crime
## 4371 Crime|Drama
## 4372 Comedy|Drama|Romance
## 4373 Action|Sci-Fi|Thriller
## 4374 Comedy|Drama|Horror
## 4375 Drama|War
## 4376 Comedy|Crime
## 4377 Documentary
## 4378 Action|Drama|War
## 4379 Drama|Musical
## 4380 Horror
## 4381 Comedy|Drama
## 4382 Comedy|Drama|Romance
## 4383 Comedy|Drama|Musical|Romance
## 4384 Documentary
## 4385 Drama
## 4386 Drama
## 4387 Comedy|Crime|Mystery|Thriller
## 4388 Comedy
## 4389 Comedy|Drama|Musical|Romance
## 4390 Comedy
## 4391 Comedy|Romance
## 4392 Action|Drama|Sci-Fi|Thriller
## 4393 Comedy|Drama
## 4394 Drama
## 4395 Thriller
## 4396 Adventure|Fantasy
## 4397 Crime|Drama
## 4398 Drama
## 4399 Crime|Drama
## 4400 Comedy|Romance
## 4401 Animation|Children|Comedy
## 4402 Crime|Drama|Thriller
## 4403 Drama|Thriller
## 4404 Action|Thriller
## 4405 Drama|Thriller
## 4406 Drama
## 4407 Action|War
## 4408 Film-Noir|Mystery
## 4409 Comedy|Crime|Drama
## 4410 Comedy|Drama|Romance
## 4411 Comedy|Drama|Romance
## 4412 Animation|Children|Drama|Fantasy
## 4413 Horror|Mystery|Thriller
## 4414 Horror|Sci-Fi
## 4415 Drama|Romance
## 4416 Action|Drama|Romance
## 4417 Drama
## 4418 Crime|Drama
## 4419 Comedy|Crime|Drama|Musical
## 4420 Drama|Romance
## 4421 Drama
## 4422 Drama|Romance
## 4423 Drama|War
## 4424 Horror|Thriller
## 4425 Comedy|Drama
## 4426 Comedy|Crime|Drama|Thriller
## 4427 Comedy|Documentary
## 4428 Comedy|Romance
## 4429 Drama
## 4430 Comedy|Romance
## 4431 Action|Comedy
## 4432 Action|Comedy
## 4433 Action|Adventure|Crime|Drama|Thriller
## 4434 Crime|Drama|Mystery|Thriller
## 4435 Drama
## 4436 Comedy
## 4437 Drama|Romance
## 4438 Drama|Romance
## 4439 Comedy|Romance
## 4440 Comedy
## 4441 Crime|Drama|Romance
## 4442 Comedy|Drama|Romance
## 4443 Comedy|Romance
## 4444 Horror|Thriller
## 4445 Documentary
## 4446 Drama|Film-Noir|Mystery
## 4447 Action|Crime|Drama
## 4448 Comedy|Crime|Drama
## 4449 Action|Crime|Drama
## 4450 Horror|Thriller
## 4451 Action|Thriller
## 4452 Comedy|Romance
## 4453 Documentary
## 4454 Drama|Horror
## 4455 Drama|Film-Noir
## 4456 Crime|Drama
## 4457 Crime|Drama|Mystery
## 4458 Action|Sci-Fi|Thriller
## 4459 Comedy|Drama
## 4460 Comedy
## 4461 Comedy|Drama
## 4462 Animation|Children|Fantasy
## 4463 Action
## 4464 Drama
## 4465 Comedy|Romance
## 4466 Drama|Mystery|Thriller
## 4467 Drama|War
## 4468 Comedy
## 4469 Drama
## 4470 Drama|War
## 4471 Drama|Romance
## 4472 Drama
## 4473 Drama
## 4474 Adventure|Comedy|Musical
## 4475 Drama
## 4476 Comedy|Documentary
## 4477 Documentary
## 4478 Comedy
## 4479 Comedy|Documentary|Musical
## 4480 Drama
## 4481 Drama
## 4482 Crime|Horror|Mystery|Thriller
## 4483 Drama
## 4484 Horror|Mystery|Thriller
## 4485 Comedy|Crime
## 4486 Drama|Horror|Thriller
## 4487 Comedy|Romance
## 4488 Comedy|Romance
## 4489 Action|Adventure|Comedy
## 4490 Action|Crime
## 4491 Drama|Romance
## 4492 Adventure|Drama
## 4493 Romance|Thriller
## 4494 Comedy
## 4495 Adventure|Children|Drama
## 4496 Drama|Romance
## 4497 Crime|Drama
## 4498 Comedy
## 4499 Comedy|Musical|Romance
## 4500 Drama|Sci-Fi
## 4501 Action|Crime|Drama|Thriller
## 4502 Action|Drama|War
## 4503 Crime|Drama|Thriller
## 4504 Comedy
## 4505 Documentary
## 4506 Drama|Mystery
## 4507 Crime|Drama
## 4508 Drama|Romance
## 4509 Comedy
## 4510 Comedy
## 4511 Drama
## 4512 Drama
## 4513 Comedy
## 4514 Action|Drama|Thriller
## 4515 Crime|Drama|Mystery|Thriller
## 4516 Drama
## 4517 Drama
## 4518 Comedy|Drama|Romance
## 4519 Action|Drama|Thriller
## 4520 Comedy|Crime|Drama
## 4521 Drama
## 4522 Drama|Musical
## 4523 Comedy|Romance|Thriller
## 4524 Drama
## 4525 Drama
## 4526 Drama|Musical
## 4527 Adventure|Children|Drama
## 4528 Comedy|Romance
## 4529 Drama|Mystery
## 4530 Drama|War
## 4531 Drama
## 4532 Comedy|Drama|Romance
## 4533 Adventure|Children|Sci-Fi
## 4534 Action|Crime|Drama
## 4535 Horror|Mystery|Thriller
## 4536 Horror|Mystery
## 4537 Drama
## 4538 Comedy|Drama|Musical|Romance
## 4539 Drama|Romance
## 4540 Comedy
## 4541 Drama|Horror|Sci-Fi|Thriller
## 4542 Comedy|Romance
## 4543 Comedy|Romance
## 4544 Horror|Mystery|Thriller
## 4545 Drama
## 4546 Drama
## 4547 Action|Romance
## 4548 Drama|Thriller|War
## 4549 Action|Drama|Sci-Fi|Thriller
## 4550 Comedy
## 4551 Comedy|Drama|Romance
## 4552 Comedy|Drama|Romance
## 4553 Documentary
## 4554 Comedy|Drama|Romance
## 4555 Drama|Film-Noir|Mystery|Romance
## 4556 Action|Adventure|Drama
## 4557 Crime|Drama
## 4558 Drama|Thriller
## 4559 Action|Animation|Sci-Fi|Thriller
## 4560 Comedy|Documentary
## 4561 Comedy|Crime|Drama
## 4562 Comedy
## 4563 Horror
## 4564 Crime|Drama
## 4565 Action|Adventure|Sci-Fi
## 4566 Comedy
## 4567 Comedy|Musical
## 4568 Adventure|Children|Comedy|Mystery
## 4569 Comedy|Crime
## 4570 Documentary
## 4571 Action|Comedy|Crime
## 4572 Drama|Thriller
## 4573 Sci-Fi
## 4574 Mystery|Sci-Fi
## 4575 Drama|Sci-Fi
## 4576 Documentary
## 4577 Comedy|Crime|Romance
## 4578 Comedy|Crime
## 4579 Comedy
## 4580 Adventure|Children|Comedy|Fantasy|Musical
## 4581 Comedy|Romance
## 4582 Crime|Thriller
## 4583 Crime|Horror|Mystery|Thriller
## 4584 Documentary
## 4585 Drama
## 4586 Documentary
## 4587 Children|Comedy|Romance
## 4588 Action|Adventure|Sci-Fi|Thriller
## 4589 Crime|Drama|Thriller
## 4590 Crime|Drama|Thriller
## 4591 Children|Comedy
## 4592 Comedy|Drama
## 4593 Drama
## 4594 Comedy|Drama|Romance
## 4595 Comedy|Drama|Romance
## 4596 Comedy|Drama|Musical
## 4597 Musical
## 4598 Drama|Musical
## 4599 Action|Adventure|Animation|Children|Fantasy|Sci-Fi
## 4600 Musical
## 4601 Western
## 4602 Comedy|Musical|Romance
## 4603 Comedy|Musical|Romance
## 4604 Action|Adventure|Sci-Fi|Thriller|IMAX
## 4605 Comedy|Romance
## 4606 Documentary
## 4607 Comedy
## 4608 Comedy|Drama|Romance
## 4609 Comedy|Drama|Fantasy|Romance
## 4610 Documentary
## 4611 Adventure|Animation|Children|Comedy
## 4612 Action|Crime
## 4613 Horror|Thriller
## 4614 Documentary
## 4615 Action|Crime|Thriller
## 4616 Crime|Drama|Romance
## 4617 Drama
## 4618 Western
## 4619 Action|Comedy|Crime|Thriller
## 4620 Musical
## 4621 Action|Drama|Horror|Sci-Fi|Thriller
## 4622 Documentary
## 4623 Comedy|Romance
## 4624 Adventure|Children
## 4625 Comedy|Documentary
## 4626 Comedy
## 4627 Comedy|Western
## 4628 Comedy|Western
## 4629 Animation|Children|Musical
## 4630 Comedy|Drama
## 4631 Drama|War
## 4632 Drama
## 4633 Drama|War|Western
## 4634 Comedy
## 4635 Comedy|Crime|Mystery|Romance
## 4636 Comedy
## 4637 Western
## 4638 Children|Drama
## 4639 Comedy|War|Western
## 4640 Western
## 4641 Drama|War
## 4642 Comedy
## 4643 Documentary
## 4644 Drama
## 4645 Drama|Thriller
## 4646 Comedy|Romance
## 4647 Action|Adventure|Drama|Romance
## 4648 War
## 4649 Action|Adventure|Drama
## 4650 Drama
## 4651 Drama|War
## 4652 Drama
## 4653 Drama
## 4654 Adventure|Drama|War
## 4655 Drama
## 4656 Drama|Western
## 4657 Children|Comedy
## 4658 Drama
## 4659 Drama|Romance
## 4660 Crime|Drama
## 4661 Crime|Drama|Romance
## 4662 Western
## 4663 Drama|Thriller
## 4664 Drama
## 4665 Mystery|Thriller
## 4666 Drama
## 4667 Comedy|Musical
## 4668 Comedy
## 4669 Action|Crime|Drama
## 4670 Comedy|Drama|Romance
## 4671 War
## 4672 Action|Horror|Sci-Fi
## 4673 Action|Adventure|Comedy|Crime|Thriller
## 4674 Action|Thriller
## 4675 Drama|Romance
## 4676 Comedy|Drama|Romance
## 4677 Horror
## 4678 Crime|Film-Noir
## 4679 Drama
## 4680 Action|War
## 4681 Comedy
## 4682 Comedy
## 4683 Drama
## 4684 Adventure|Romance
## 4685 Comedy
## 4686 Drama|Horror|Mystery|Thriller
## 4687 Crime|Drama|Mystery
## 4688 Comedy
## 4689 Action|Adventure|Sci-Fi
## 4690 Comedy
## 4691 Adventure|Animation|Children|Fantasy
## 4692 Action|Adventure|Sci-Fi
## 4693 Drama|Mystery|Thriller
## 4694 Action|Adventure|Comedy|Fantasy
## 4695 Action|Fantasy|Sci-Fi
## 4696 Drama|Fantasy
## 4697 Action|Comedy|Crime|Thriller
## 4698 Action|Comedy|Thriller
## 4699 Crime|Drama|Thriller
## 4700 Children|Comedy
## 4701 Comedy|War
## 4702 Comedy|Drama
## 4703 Action|Adventure|Comedy|Romance|Thriller
## 4704 Drama
## 4705 Action|Adventure|Children
## 4706 Comedy|Musical
## 4707 Drama
## 4708 Comedy
## 4709 Action|Comedy|Crime|Thriller
## 4710 Adventure|Comedy|Crime|Thriller
## 4711 Action|Crime|Drama
## 4712 Comedy
## 4713 Comedy|Crime|Romance
## 4714 Drama
## 4715 Drama
## 4716 Children|Comedy|Fantasy
## 4717 Action|Thriller
## 4718 Comedy|Drama|Romance
## 4719 Documentary
## 4720 Drama
## 4721 Comedy
## 4722 Comedy|Horror
## 4723 Crime|Drama|Film-Noir
## 4724 Drama
## 4725 Drama
## 4726 Documentary
## 4727 Drama
## 4728 Action|Horror|Thriller
## 4729 Western
## 4730 Action|Comedy
## 4731 Comedy|Drama
## 4732 Action|Adventure|Children|Fantasy
## 4733 Comedy
## 4734 Crime|Horror|Mystery|Thriller
## 4735 Adventure|Drama
## 4736 Comedy|Romance
## 4737 Comedy|Romance
## 4738 Drama|Thriller
## 4739 Drama
## 4740 Drama
## 4741 Drama|Romance
## 4742 Action|Adventure|Drama|Sci-Fi
## 4743 Drama
## 4744 Comedy|Drama
## 4745 Comedy|Romance
## 4746 Comedy|Horror|Sci-Fi
## 4747 Comedy|Crime
## 4748 Comedy|Crime
## 4749 Action|Adventure
## 4750 Horror|Romance
## 4751 Comedy|Drama|Fantasy
## 4752 Drama
## 4753 Drama
## 4754 Documentary
## 4755 Drama|Sci-Fi
## 4756 Documentary
## 4757 Drama
## 4758 Drama|Romance
## 4759 Action|Comedy|Crime|Fantasy
## 4760 Comedy|Fantasy|Mystery
## 4761 Horror|Thriller
## 4762 Horror|Mystery|Thriller
## 4763 Drama
## 4764 Horror|Thriller
## 4765 Comedy|Crime|Drama
## 4766 Action|Adventure|Crime|Thriller
## 4767 Comedy|Drama|Romance
## 4768 Comedy|Drama|Romance
## 4769 Animation|Drama|Romance
## 4770 Comedy
## 4771 Action|Adventure|Drama
## 4772 Action|Romance
## 4773 Action
## 4774 Comedy|Crime|Drama
## 4775 Adventure|Musical
## 4776 Drama
## 4777 Action|Comedy|Drama
## 4778 Horror|Sci-Fi|Thriller
## 4779 Comedy|Musical|Romance
## 4780 Drama
## 4781 Comedy|Musical|Romance
## 4782 Adventure|Fantasy
## 4783 Comedy|Horror
## 4784 Horror
## 4785 Drama|Thriller
## 4786 Children|Comedy|Drama
## 4787 Action|Fantasy|Horror
## 4788 Comedy|Horror
## 4789 Crime|Drama|Mystery|Thriller
## 4790 Adventure|Drama
## 4791 Drama|Romance
## 4792 Comedy|Crime
## 4793 Action|Adventure|Comedy
## 4794 Comedy|Drama|Romance
## 4795 Drama
## 4796 Comedy
## 4797 Drama|Romance
## 4798 Comedy
## 4799 Documentary
## 4800 Animation|Comedy|Fantasy
## 4801 Fantasy|Horror|Sci-Fi|Thriller
## 4802 Comedy|Drama|Musical|Romance
## 4803 Drama
## 4804 Comedy|Drama|Romance
## 4805 Documentary
## 4806 Comedy|Musical
## 4807 Comedy|Drama
## 4808 Comedy|Musical|Romance|Western
## 4809 Drama
## 4810 Drama|Thriller
## 4811 Comedy|Drama|Romance
## 4812 Drama|Fantasy|Sci-Fi
## 4813 Drama
## 4814 Children|Comedy|Drama
## 4815 Children|Comedy
## 4816 Crime|Drama
## 4817 Crime|Drama
## 4818 Children|Comedy|Crime|Musical
## 4819 Action|Crime
## 4820 Horror|Mystery|Thriller
## 4821 Action|Crime|Thriller
## 4822 Comedy
## 4823 Action|Adventure|War
## 4824 Drama|Thriller
## 4825 Comedy
## 4826 Action|Comedy|Thriller
## 4827 Comedy|Romance
## 4828 Action|Comedy
## 4829 Comedy
## 4830 Drama|War
## 4831 Drama|Horror|Thriller
## 4832 Drama|Western
## 4833 Comedy|Western
## 4834 Comedy
## 4835 Drama
## 4836 Comedy|Mystery
## 4837 Film-Noir|Horror|Thriller
## 4838 Drama
## 4839 Action|Horror|Sci-Fi
## 4840 Comedy|Drama
## 4841 Comedy|Drama
## 4842 Drama|Romance
## 4843 Crime|Drama
## 4844 Drama|Musical
## 4845 Action|Adventure|Animation|Fantasy
## 4846 Drama
## 4847 Crime|Drama|Thriller
## 4848 Comedy|Musical
## 4849 Documentary|Musical
## 4850 Comedy|Drama
## 4851 Crime|Drama|Mystery|Thriller
## 4852 Crime|Documentary
## 4853 Crime|Drama|Mystery
## 4854 Action|Horror
## 4855 Comedy|Romance
## 4856 Action|Crime|Thriller
## 4857 Comedy|Drama|Romance
## 4858 Comedy
## 4859 Drama|Thriller
## 4860 Horror
## 4861 Comedy|Drama
## 4862 Drama|Romance
## 4863 Crime|Drama|Thriller
## 4864 Crime|Drama|Mystery|Romance|Thriller
## 4865 Drama
## 4866 Comedy|Horror
## 4867 Adventure|Animation|Children
## 4868 Drama
## 4869 Comedy|Drama|Musical|Mystery
## 4870 Action|Comedy|Crime
## 4871 Documentary|War
## 4872 Drama
## 4873 Adventure|Comedy|Drama|Fantasy|Mystery|Sci-Fi|Thriller
## 4874 Drama
## 4875 Thriller
## 4876 Drama
## 4877 Crime|Thriller
## 4878 Drama|Romance|Thriller
## 4879 Documentary
## 4880 Crime|Drama
## 4881 Action|Adventure|Sci-Fi|Thriller|IMAX
## 4882 Documentary
## 4883 Children|Comedy|Fantasy
## 4884 Drama
## 4885 Comedy|Drama|Romance
## 4886 Comedy
## 4887 Documentary
## 4888 Adventure|Drama|War
## 4889 Adventure|Thriller|Western
## 4890 Children|Comedy
## 4891 Horror|Thriller
## 4892 Crime|Drama|Mystery|Romance|Thriller
## 4893 Comedy|Crime|Drama|Mystery|Romance
## 4894 Comedy|Crime
## 4895 Children|Comedy|Fantasy|Horror
## 4896 Action|Adventure|Sci-Fi
## 4897 Drama
## 4898 Documentary
## 4899 Crime|Drama|Thriller
## 4900 Action|Crime|Fantasy|Sci-Fi|Thriller
## 4901 Comedy|Romance
## 4902 Drama|Thriller
## 4903 Comedy|Crime
## 4904 Drama|Horror|Thriller
## 4905 Action|Crime|Drama
## 4906 Comedy|Drama
## 4907 Drama|Sci-Fi|Thriller
## 4908 Drama
## 4909 Drama|War
## 4910 Drama|Romance
## 4911 Drama
## 4912 Adventure|Drama|Romance
## 4913 Crime|Fantasy|Horror
## 4914 Crime|Drama|Thriller
## 4915 Action|Adventure|Comedy|Crime|Drama
## 4916 Adventure|Drama|Romance
## 4917 Comedy|Drama
## 4918 Comedy|Drama|Romance
## 4919 Action|Comedy|Fantasy
## 4920 Action|Sci-Fi
## 4921 Crime|Drama
## 4922 Comedy|Romance
## 4923 Action|Adventure|Comedy
## 4924 Horror|Mystery|Sci-Fi|Thriller
## 4925 Drama
## 4926 Comedy|Drama|Mystery|Sci-Fi|Thriller
## 4927 Action|Comedy|Crime|Thriller
## 4928 Comedy
## 4929 Action|Comedy|Crime|Drama|Thriller
## 4930 Drama|Romance
## 4931 Drama
## 4932 Drama|Romance
## 4933 Comedy|Crime|Drama
## 4934 Comedy|Fantasy
## 4935 Drama|Film-Noir|Thriller
## 4936 Action|Drama
## 4937 Action|Thriller
## 4938 Crime|Drama|Thriller
## 4939 Comedy|Drama|Romance
## 4940 Action|Drama|Horror|Thriller
## 4941 Comedy|Drama|Romance
## 4942 Drama
## 4943 Drama|War
## 4944 Comedy
## 4945 Action|Western
## 4946 Comedy|Crime
## 4947 Horror|Thriller
## 4948 Drama|Romance
## 4949 Comedy|Fantasy
## 4950 Drama|Romance
## 4951 Action|Crime|Drama|Thriller
## 4952 Drama|Romance
## 4953 Drama
## 4954 Crime|Drama|Mystery|Romance|Thriller
## 4955 Children|Fantasy
## 4956 Comedy|Fantasy|Horror|Thriller
## 4957 Action|Adventure|Comedy|Crime
## 4958 Comedy|Musical|Romance
## 4959 Comedy
## 4960 Comedy|Musical|Romance
## 4961 Action|Crime|Drama
## 4962 Comedy
## 4963 Children|Drama
## 4964 Drama|Musical
## 4965 Drama|Romance
## 4966 Drama
## 4967 Adventure|Drama
## 4968 Drama|Fantasy
## 4969 Drama|War
## 4970 Comedy|Drama|Fantasy|Romance
## 4971 Drama|Mystery|Romance
## 4972 Drama
## 4973 Action|Adventure|Western
## 4974 Drama
## 4975 Action|Drama|Romance|Western
## 4976 Comedy|Crime|Mystery
## 4977 Comedy
## 4978 Adventure|Comedy|Musical
## 4979 Action|Crime|Drama|Thriller
## 4980 Drama
## 4981 Drama
## 4982 Drama|Musical|Romance
## 4983 Comedy
## 4984 Comedy|Romance
## 4985 Drama
## 4986 Comedy|Romance
## 4987 Comedy|Romance
## 4988 Comedy|Drama
## 4989 Adventure|Drama
## 4990 Drama|Romance
## 4991 Comedy|Drama
## 4992 Action|Adventure|Drama
## 4993 Comedy
## 4994 Comedy
## 4995 Drama
## 4996 Documentary
## 4997 Adventure|Animation|Drama|Fantasy|Sci-Fi
## 4998 Comedy|Romance
## 4999 Comedy|Crime|Drama
## 5000 Comedy|War
## 5001 Comedy|Thriller
## 5002 Action|Crime|Drama
## 5003 Drama|Thriller
## 5004 Drama|Romance
## 5005 Horror|Mystery|Thriller
## 5006 Horror|Mystery|Thriller
## 5007 Comedy|Horror
## 5008 Comedy|Romance
## 5009 Comedy|Drama|War
## 5010 Drama|Fantasy|Mystery|Sci-Fi
## 5011 Drama
## 5012 Comedy|Crime|Drama|Film-Noir|Musical
## 5013 Drama
## 5014 Drama
## 5015 Comedy|Musical|Romance
## 5016 Crime|Drama|Romance|Thriller
## 5017 Comedy|Drama|Romance
## 5018 Comedy|Drama|Romance
## 5019 Drama|Romance
## 5020 Drama|Romance
## 5021 Action|Adventure|Drama|War
## 5022 Drama|Fantasy|Romance
## 5023 Comedy|Drama|Romance
## 5024 Comedy
## 5025 Drama|Romance
## 5026 Drama|Thriller
## 5027 Action|Adventure|Drama|Fantasy
## 5028 Drama|Romance
## 5029 Comedy
## 5030 Documentary|War
## 5031 Drama
## 5032 Crime|Drama
## 5033 Children|Comedy
## 5034 Drama|Romance|War
## 5035 Action|Sci-Fi|Thriller
## 5036 Action|Adventure|Children|Fantasy
## 5037 Drama|Musical
## 5038 Documentary
## 5039 Drama
## 5040 Comedy|Romance
## 5041 Drama
## 5042 Drama
## 5043 Drama|Romance
## 5044 Crime|Drama|Thriller
## 5045 Comedy
## 5046 Comedy|Mystery
## 5047 Comedy
## 5048 Drama
## 5049 Action
## 5050 Action|Comedy
## 5051 Crime|Drama|Film-Noir
## 5052 Drama
## 5053 Comedy|Crime|Drama|Romance
## 5054 Comedy|Drama
## 5055 Drama
## 5056 Comedy
## 5057 Comedy
## 5058 Drama|Horror
## 5059 Comedy
## 5060 Western
## 5061 Comedy|Romance
## 5062 Comedy|Romance
## 5063 Adventure|Drama|Romance|Thriller|War
## 5064 Crime|Drama|Film-Noir|Thriller
## 5065 Crime|Drama|Film-Noir|Romance|Thriller
## 5066 Drama
## 5067 Comedy|Drama
## 5068 Drama|Film-Noir|Mystery
## 5069 Animation|Comedy|Fantasy
## 5070 Drama
## 5071 Action|Comedy|Crime|Drama|Horror|Thriller
## 5072 Sci-Fi
## 5073 Drama|War
## 5074 Drama
## 5075 Horror|Thriller
## 5076 Adventure|Children|Comedy|Fantasy|Musical
## 5077 Action|Adventure|Drama|War
## 5078 Comedy
## 5079 Drama|Sci-Fi|Thriller
## 5080 Comedy|Romance
## 5081 Adventure|Documentary
## 5082 Comedy|Crime|Thriller
## 5083 Comedy|Crime
## 5084 Comedy|Drama|Romance
## 5085 Drama
## 5086 Drama
## 5087 Comedy|Horror|Sci-Fi
## 5088 Action|Crime|Drama
## 5089 Comedy|Horror|Thriller
## 5090 Drama
## 5091 Drama
## 5092 Comedy|Romance
## 5093 Comedy
## 5094 Drama
## 5095 Action|Drama
## 5096 Action|Adventure|Fantasy
## 5097 Drama|War
## 5098 Crime|Drama|Mystery|Thriller
## 5099 Action|Adventure|Drama|War
## 5100 Adventure|Comedy
## 5101 Action|Adventure
## 5102 Drama|Romance
## 5103 Comedy|Drama
## 5104 Comedy|Drama
## 5105 Comedy
## 5106 Adventure|Comedy
## 5107 Drama
## 5108 Comedy|Horror
## 5109 Romance
## 5110 Comedy|Drama
## 5111 Adventure|Drama
## 5112 Action|Comedy|Crime|Thriller
## 5113 Drama
## 5114 Comedy|Drama
## 5115 Film-Noir
## 5116 Comedy
## 5117 Documentary
## 5118 Comedy|Romance
## 5119 Mystery|Thriller
## 5120 Thriller
## 5121 Drama
## 5122 Comedy|Drama|Romance
## 5123 Comedy|Drama|Romance
## 5124 Adventure|Animation|Comedy
## 5125 Drama|Romance
## 5126 Documentary
## 5127 Action|Drama|Horror|Thriller
## 5128 Drama|Romance|Sci-Fi
## 5129 Crime|Drama|Thriller
## 5130 Comedy|Drama|Romance
## 5131 Comedy|Crime
## 5132 Action|Adventure|Children|Comedy|Mystery
## 5133 Drama|Mystery|Thriller
## 5134 Drama
## 5135 Action|Adventure|Fantasy|Horror
## 5136 Animation|Children|Comedy|Musical|Western
## 5137 Comedy|Romance
## 5138 Action
## 5139 Drama|War|Western
## 5140 Comedy|Fantasy|Romance
## 5141 Action|Comedy|Crime
## 5142 Drama|Mystery|Thriller
## 5143 Adventure|Drama
## 5144 Action|Drama|Horror
## 5145 Action|Adventure|Comedy
## 5146 Comedy|Drama
## 5147 Drama
## 5148 Adventure|Comedy
## 5149 Comedy|Horror
## 5150 Comedy|Crime|Drama|Mystery
## 5151 Comedy|Thriller
## 5152 Comedy
## 5153 Action|Drama|Thriller
## 5154 Action|Crime|Thriller
## 5155 Comedy|Fantasy|Romance
## 5156 Action|Crime|Drama|Mystery|Thriller
## 5157 Comedy
## 5158 Drama|Horror|Thriller
## 5159 Comedy|Romance
## 5160 Comedy
## 5161 Action|Adventure|Comedy
## 5162 Action|Adventure|Fantasy|Horror
## 5163 Drama
## 5164 Action|Adventure|Drama|War
## 5165 Crime|Drama
## 5166 Comedy|Drama
## 5167 Drama
## 5168 Adventure|Drama|Sci-Fi
## 5169 Action|Crime
## 5170 Documentary
## 5171 Drama
## 5172 Drama|Horror
## 5173 Drama
## 5174 Action|Drama|War
## 5175 Drama|Horror|Mystery
## 5176 Comedy|Romance
## 5177 Drama|Thriller|War
## 5178 Horror
## 5179 Documentary
## 5180 Action|Adventure|Sci-Fi|Thriller
## 5181 Action|Adventure|Thriller
## 5182 Crime|Drama|Film-Noir|Thriller
## 5183 Drama
## 5184 Action|Adventure|Thriller
## 5185 Drama
## 5186 Comedy|Fantasy|Musical|Romance
## 5187 Comedy|Drama|Romance
## 5188 Drama
## 5189 Comedy|Romance
## 5190 Drama|Romance
## 5191 Drama|Thriller|War
## 5192 Crime|Drama|Thriller
## 5193 Drama
## 5194 Musical|Romance|Western
## 5195 Drama
## 5196 Mystery|Thriller
## 5197 Drama
## 5198 Comedy|Drama
## 5199 Drama
## 5200 Drama
## 5201 Comedy
## 5202 Horror|Thriller
## 5203 Adventure|Sci-Fi
## 5204 Horror
## 5205 Drama|Romance
## 5206 Comedy|Romance
## 5207 Drama|Thriller
## 5208 Action|Adventure|Drama|Thriller
## 5209 Comedy|Romance
## 5210 Drama
## 5211 Comedy|Romance
## 5212 Comedy|Musical
## 5213 Comedy|Fantasy
## 5214 Drama|Horror|Romance|Thriller
## 5215 Drama|Musical|Romance
## 5216 Action|Adventure|Comedy|Romance
## 5217 Crime|Drama|Film-Noir|Thriller
## 5218 Comedy|Drama|Romance
## 5219 Adventure|Children|Sci-Fi
## 5220 Crime|Drama
## 5221 Drama
## 5222 Action|Adventure|Fantasy
## 5223 Drama
## 5224 Drama|Thriller
## 5225 Drama|Horror
## 5226 Action|Drama|Thriller|War
## 5227 Drama
## 5228 Adventure|Drama
## 5229 Drama
## 5230 Adventure|Children
## 5231 Action|Drama
## 5232 Documentary
## 5233 Action|Drama|War
## 5234 Drama
## 5235 Animation|Children|Comedy
## 5236 Crime|Thriller
## 5237 Thriller
## 5238 Action|Adventure|Crime|Thriller
## 5239 Drama|Romance|War
## 5240 Adventure|Sci-Fi
## 5241 Drama|Sci-Fi
## 5242 Drama|Sci-Fi
## 5243 Comedy|Musical
## 5244 Fantasy|Sci-Fi
## 5245 Comedy
## 5246 Crime|Drama
## 5247 Adventure|Drama|Romance
## 5248 Comedy|Romance|Thriller
## 5249 Action|Sci-Fi|Thriller
## 5250 Comedy|Crime|Drama|Mystery|Romance
## 5251 Comedy|Crime|Mystery
## 5252 Comedy|Crime|Mystery
## 5253 Comedy|Crime|Mystery|Romance
## 5254 Comedy|Crime|Drama|Musical|Mystery|Romance
## 5255 Documentary|Musical
## 5256 Adventure|Comedy|War
## 5257 Fantasy|Sci-Fi
## 5258 Drama|Fantasy|Sci-Fi
## 5259 Comedy
## 5260 Action|Comedy
## 5261 Comedy|Horror|Sci-Fi
## 5262 Comedy|Horror|Sci-Fi
## 5263 Comedy|Drama
## 5264 Comedy|Crime|Western
## 5265 Horror
## 5266 Horror
## 5267 Drama|Horror
## 5268 Comedy|Musical
## 5269 Western
## 5270 Action
## 5271 Action|Western
## 5272 Crime|Drama|Thriller
## 5273 Comedy|Western
## 5274 Action
## 5275 Documentary
## 5276 Action|Adventure|Comedy
## 5277 Comedy
## 5278 Drama|Film-Noir
## 5279 Comedy|Crime
## 5280 Horror
## 5281 Crime|Drama
## 5282 Drama|Film-Noir|Thriller
## 5283 Action|Adventure
## 5284 Crime|Drama|Film-Noir|Thriller
## 5285 Documentary
## 5286 Comedy
## 5287 Drama|Fantasy|Horror|Mystery
## 5288 Drama|War
## 5289 Drama
## 5290 Drama
## 5291 Comedy|Romance
## 5292 Drama|Romance
## 5293 Crime|Film-Noir
## 5294 Drama|Thriller
## 5295 Drama
## 5296 Drama
## 5297 Comedy|Drama
## 5298 Fantasy|Horror
## 5299 Crime|Drama
## 5300 Drama
## 5301 Drama
## 5302 Documentary|Musical
## 5303 Action|Drama|War
## 5304 Crime|Drama|Thriller
## 5305 Drama|Horror|Mystery|Thriller
## 5306 Comedy
## 5307 Horror|Sci-Fi
## 5308 Horror
## 5309 Comedy|Musical
## 5310 Action|Sci-Fi
## 5311 Action|Drama
## 5312 Drama|Horror
## 5313 Fantasy|Musical|Romance
## 5314 Drama
## 5315 Drama
## 5316 Documentary
## 5317 Comedy|Drama
## 5318 Drama
## 5319 Adventure|Animation|Children|Fantasy
## 5320 Action|Crime|Drama|Thriller
## 5321 Drama|Horror|Mystery|Thriller
## 5322 Comedy|Crime|Romance
## 5323 Comedy|Western
## 5324 Crime|Drama
## 5325 Crime|Drama|Film-Noir
## 5326 Crime|Drama|Mystery
## 5327 Drama
## 5328 Drama
## 5329 Action|Drama|Romance|Thriller
## 5330 Drama|Thriller|Western
## 5331 Action|Comedy
## 5332 Comedy
## 5333 Comedy|Drama
## 5334 Drama|Romance
## 5335 Drama
## 5336 Drama
## 5337 Documentary
## 5338 Documentary
## 5339 Comedy|Romance
## 5340 Action|Drama
## 5341 Drama
## 5342 Crime|Horror|Sci-Fi
## 5343 Horror|Sci-Fi
## 5344 Horror|Sci-Fi
## 5345 Action|Crime
## 5346 Drama
## 5347 Drama|Sci-Fi
## 5348 Drama
## 5349 Animation|Fantasy|Thriller
## 5350 Crime|Drama
## 5351 Action|Adventure|Romance
## 5352 Children|Comedy|Fantasy|Sci-Fi
## 5353 Comedy|Drama
## 5354 Comedy|Musical
## 5355 Drama
## 5356 Comedy
## 5357 Comedy|Drama|War
## 5358 Drama
## 5359 Drama
## 5360 Drama|Mystery|Romance
## 5361 Comedy|Horror
## 5362 Drama|Romance|War
## 5363 Drama|Thriller
## 5364 Crime|Thriller
## 5365 Drama
## 5366 Horror
## 5367 Mystery
## 5368 Action|Comedy|Romance
## 5369 Drama|Film-Noir
## 5370 Comedy|Drama
## 5371 Drama
## 5372 Action|Adventure|Animation|Comedy|Crime|Mystery
## 5373 Comedy|Drama|Fantasy|Romance
## 5374 Drama|Romance
## 5375 Action|Drama|War
## 5376 Drama
## 5377 Comedy|Musical|Romance
## 5378 Documentary
## 5379 Drama|Musical
## 5380 Drama
## 5381 Action|Thriller
## 5382 Comedy|Drama|Romance
## 5383 Comedy
## 5384 Action|Crime
## 5385 Drama|Romance
## 5386 Comedy
## 5387 Drama
## 5388 Comedy|Romance
## 5389 Drama|War
## 5390 Drama
## 5391 Drama|Thriller
## 5392 Adventure|Crime|Drama
## 5393 Adventure|Animation|Children|Comedy|Musical|Romance
## 5394 Action|Adventure|Drama|Sci-Fi|Thriller
## 5395 Comedy|Drama|Romance
## 5396 Comedy
## 5397 Drama
## 5398 Comedy|Drama
## 5399 Drama
## 5400 Adventure|Fantasy|IMAX
## 5401 Action|Crime|Horror|Mystery|Thriller
## 5402 Action|Comedy|Crime|Drama
## 5403 Action|Sci-Fi|Thriller
## 5404 Animation|Children|Comedy
## 5405 Comedy|Fantasy|Thriller
## 5406 Comedy
## 5407 Comedy|Romance
## 5408 Comedy|Crime
## 5409 Comedy|Drama
## 5410 Drama
## 5411 Action|Adventure|Drama|Romance|War
## 5412 Crime|Mystery|Thriller
## 5413 Crime|Drama|Film-Noir
## 5414 Drama|Film-Noir
## 5415 Drama|Romance
## 5416 Children|Comedy|Romance
## 5417 Sci-Fi
## 5418 Drama
## 5419 Comedy|Romance
## 5420 Drama|Romance
## 5421 Musical|Romance
## 5422 Drama
## 5423 Drama
## 5424 Comedy|Documentary|Drama
## 5425 Crime|Drama|Film-Noir|Romance
## 5426 Romance|Sci-Fi
## 5427 Drama|Fantasy|Horror
## 5428 Drama|War
## 5429 Adventure|Drama|Romance
## 5430 Children|Comedy|Musical
## 5431 Crime|Drama|Film-Noir
## 5432 Drama|Fantasy
## 5433 Action|Drama|War
## 5434 Drama
## 5435 Drama
## 5436 Drama|Musical|Romance
## 5437 Comedy|Drama
## 5438 Crime|Drama|Horror
## 5439 Comedy
## 5440 Comedy|Western
## 5441 Drama
## 5442 Children|Comedy
## 5443 Adventure|Children|Comedy
## 5444 Crime|Drama
## 5445 Comedy
## 5446 Comedy|Drama|Romance
## 5447 Drama|Romance
## 5448 Action|Comedy|Crime
## 5449 Drama|Romance
## 5450 Adventure|Children|Drama
## 5451 Drama|Musical
## 5452 Action|Adventure|Animation|Children|Sci-Fi
## 5453 Comedy|Musical
## 5454 Comedy|Sci-Fi
## 5455 Comedy|Drama
## 5456 Children|Drama
## 5457 Animation|Children|Comedy|Musical
## 5458 Comedy|Drama
## 5459 Action|Comedy
## 5460 Documentary
## 5461 Adventure|Comedy|Fantasy|Musical
## 5462 Documentary|Drama
## 5463 Documentary|War
## 5464 Adventure|Drama|Romance
## 5465 Drama|Film-Noir
## 5466 Drama|War
## 5467 Adventure|Drama|Sci-Fi
## 5468 Comedy|Crime
## 5469 Crime|Drama|Film-Noir|Thriller
## 5470 Action|Comedy
## 5471 Adventure|Animation|Drama
## 5472 Comedy
## 5473 Comedy|Fantasy
## 5474 Comedy
## 5475 Adventure|Children|Drama
## 5476 Comedy|Romance
## 5477 Children|Musical|Romance
## 5478 Drama
## 5479 Drama|Western
## 5480 Comedy|Drama|Fantasy|Mystery
## 5481 Documentary
## 5482 Comedy|Romance
## 5483 Documentary
## 5484 Comedy|Fantasy
## 5485 Action|Adventure|Comedy|Sci-Fi
## 5486 Action|Adventure|Sci-Fi|IMAX
## 5487 Drama|Romance
## 5488 Action|Adventure|Drama|War
## 5489 Comedy
## 5490 Comedy
## 5491 Comedy|Romance
## 5492 Action|Adventure|Sci-Fi|Thriller
## 5493 Crime|Drama
## 5494 Drama
## 5495 Adventure
## 5496 Crime|Drama
## 5497 Western
## 5498 Adventure|Drama|Western
## 5499 Action|Crime|Thriller
## 5500 Action|Crime|Fantasy
## 5501 Drama|Romance
## 5502 Crime|Horror|Mystery|Thriller
## 5503 Drama
## 5504 Action|Drama|War
## 5505 Adventure|Drama
## 5506 Comedy|Crime|Thriller
## 5507 Comedy|Drama|Sci-Fi|War
## 5508 Comedy
## 5509 Drama
## 5510 Adventure|War
## 5511 Comedy|Romance
## 5512 Comedy
## 5513 Comedy|Romance
## 5514 Adventure|Children|Fantasy|Musical
## 5515 Drama
## 5516 Comedy
## 5517 Comedy|Fantasy|Romance
## 5518 Drama|War
## 5519 Comedy|Drama|Romance
## 5520 Drama
## 5521 Action|Drama|War
## 5522 Adventure|Fantasy|Sci-Fi
## 5523 Drama|Romance
## 5524 Crime|Drama|Film-Noir
## 5525 Drama|Film-Noir|Romance
## 5526 Documentary
## 5527 Drama
## 5528 Children|Drama
## 5529 Children|Comedy|Musical
## 5530 Crime|Film-Noir|Thriller
## 5531 Drama|Film-Noir|Mystery
## 5532 Crime|Film-Noir|Thriller
## 5533 Crime|Drama|Film-Noir
## 5534 Drama|Thriller
## 5535 Drama
## 5536 Comedy|Drama
## 5537 Thriller
## 5538 Drama|Mystery|Thriller
## 5539 Comedy|Drama|Romance
## 5540 Drama
## 5541 Comedy|Horror
## 5542 Action|Adventure|Drama|War
## 5543 Comedy|Musical
## 5544 Documentary
## 5545 Action|Crime|Drama|Thriller
## 5546 Comedy|Romance
## 5547 Romance|Sci-Fi
## 5548 Adventure|Comedy
## 5549 Comedy|Romance
## 5550 Action|Horror|Sci-Fi|Thriller
## 5551 Action|Adventure|Animation|Fantasy
## 5552 Drama
## 5553 Comedy
## 5554 Musical
## 5555 Comedy|Musical
## 5556 Comedy|Musical
## 5557 Comedy|Crime
## 5558 Comedy|Documentary
## 5559 Drama|Thriller
## 5560 Adventure|Drama|Horror|Sci-Fi|Thriller
## 5561 Crime|Thriller
## 5562 Action|Adventure|Drama
## 5563 Drama|Romance
## 5564 Drama|Thriller
## 5565 Drama|Romance|Thriller
## 5566 Drama|Romance
## 5567 Horror
## 5568 Drama
## 5569 Drama
## 5570 Adventure|Children|Drama
## 5571 Comedy
## 5572 Drama
## 5573 Horror
## 5574 Drama
## 5575 Comedy
## 5576 Action|Crime|Drama|Mystery|Thriller
## 5577 Action|Horror|Sci-Fi|Thriller
## 5578 Comedy|Drama
## 5579 Action|Adventure|Sci-Fi
## 5580 Comedy|Romance
## 5581 Drama|Mystery|Sci-Fi|Thriller
## 5582 Comedy
## 5583 Comedy
## 5584 Adventure|Drama
## 5585 Comedy|Horror
## 5586 Crime|Mystery|Thriller
## 5587 Drama
## 5588 Crime|Drama|Mystery|Thriller
## 5589 Comedy|Thriller
## 5590 Comedy|Horror
## 5591 Comedy|Horror
## 5592 Drama
## 5593 Horror|Mystery
## 5594 Horror
## 5595 Animation|Children|Comedy
## 5596 Action|Drama|Thriller
## 5597 Comedy
## 5598 Romance
## 5599 Drama|Sci-Fi
## 5600 Drama
## 5601 Comedy|Romance
## 5602 Action|Adventure|Animation|Comedy
## 5603 Comedy|Crime|Drama
## 5604 Drama
## 5605 Drama|Romance
## 5606 Drama|Romance
## 5607 Action|Comedy|Drama
## 5608 Comedy|Horror
## 5609 Children|Drama
## 5610 Documentary
## 5611 Documentary
## 5612 Comedy|Drama
## 5613 Children|Comedy|Romance
## 5614 Action|Drama
## 5615 Documentary
## 5616 Comedy|Drama
## 5617 Comedy
## 5618 Horror|Mystery|Thriller
## 5619 Comedy|Drama|Romance
## 5620 Comedy|Drama|Romance
## 5621 Drama|Mystery|Thriller
## 5622 Drama
## 5623 Documentary
## 5624 Crime|Drama|Thriller
## 5625 Horror|Mystery|Thriller
## 5626 Drama
## 5627 Action|Adventure|Animation|Children|Comedy
## 5628 Drama|Romance|Sci-Fi|Thriller
## 5629 Drama
## 5630 Adventure|Animation|Children|Fantasy|IMAX
## 5631 Drama
## 5632 Action|Adventure|Comedy|Crime|Thriller
## 5633 Comedy|Drama|Romance
## 5634 Drama
## 5635 Action|Adventure|Drama|Mystery|Thriller
## 5636 Drama|Thriller
## 5637 Adventure|Animation|Children|Comedy
## 5638 Action|Adventure|Drama|War
## 5639 Documentary
## 5640 Drama|Romance
## 5641 Drama
## 5642 Action|Drama|Romance
## 5643 Action|Comedy|Crime|Thriller
## 5644 Action|Fantasy|Horror|Thriller
## 5645 Comedy
## 5646 Documentary
## 5647 Comedy
## 5648 Comedy|Musical
## 5649 Documentary
## 5650 Documentary
## 5651 Documentary
## 5652 Comedy|War
## 5653 Adventure|Children|Sci-Fi
## 5654 Drama|Mystery|Sci-Fi
## 5655 Drama|Romance
## 5656 Drama
## 5657 Documentary|War
## 5658 Fantasy|Horror
## 5659 Documentary|Horror
## 5660 Comedy|Fantasy|Romance
## 5661 Comedy
## 5662 Drama
## 5663 Drama|Horror
## 5664 Drama
## 5665 Comedy|Drama|Romance
## 5666 Comedy|Romance
## 5667 Fantasy
## 5668 Crime|Drama
## 5669 Comedy|Drama|Romance
## 5670 Comedy
## 5671 Crime|Drama
## 5672 Comedy|Drama
## 5673 Comedy|Drama|Romance
## 5674 Comedy|Romance
## 5675 Comedy|Drama|Romance
## 5676 Adventure|Crime|Horror|Thriller
## 5677 Drama|Film-Noir
## 5678 Comedy|Romance
## 5679 Comedy|Romance
## 5680 Crime|Drama|Romance
## 5681 Comedy|Drama|Romance
## 5682 Drama
## 5683 Comedy|Fantasy|Romance
## 5684 Comedy|Drama|Romance
## 5685 Mystery|Thriller
## 5686 Drama|Romance
## 5687 Drama|Film-Noir
## 5688 Comedy|Romance
## 5689 Comedy|Musical
## 5690 Drama
## 5691 Drama|Romance
## 5692 Comedy|Fantasy|Romance
## 5693 Drama
## 5694 Drama
## 5695 Drama|War
## 5696 Drama|Film-Noir|Thriller
## 5697 Drama|Romance
## 5698 Crime|Film-Noir|Thriller
## 5699 Drama|War
## 5700 Crime|Drama|Film-Noir|Mystery|Thriller
## 5701 Drama|Film-Noir|Thriller
## 5702 Drama|Film-Noir
## 5703 Crime|Drama|Film-Noir|Thriller
## 5704 Musical|Romance
## 5705 Drama|Film-Noir|Mystery
## 5706 Drama|Romance
## 5707 Crime|Film-Noir|Romance
## 5708 Comedy
## 5709 Comedy|Drama
## 5710 Action|Adventure|Romance
## 5711 Comedy|Musical|Romance
## 5712 Drama|Romance
## 5713 Drama|Film-Noir
## 5714 Drama|Romance
## 5715 Action|Adventure|Drama
## 5716 Drama|Musical
## 5717 Drama
## 5718 Crime|Documentary|War
## 5719 Action|Adventure|Drama
## 5720 Drama|War
## 5721 Drama|War
## 5722 Musical|Romance
## 5723 Action|Adventure|Drama
## 5724 Adventure
## 5725 Adventure|Drama
## 5726 Crime|Drama
## 5727 Drama
## 5728 Drama
## 5729 Children|Comedy|Musical|Romance
## 5730 Adventure|Drama|Romance
## 5731 Drama|War
## 5732 Adventure|Animation|Children|Comedy|Drama|Fantasy|Musical|Romance
## 5733 Drama
## 5734 Drama
## 5735 Horror|Thriller
## 5736 Action|Crime|Drama|Film-Noir|Thriller
## 5737 Drama|Horror|War
## 5738 Comedy|Horror
## 5739 Drama|War
## 5740 Animation|Children|Comedy
## 5741 Comedy|Drama|Romance
## 5742 Drama|War
## 5743 Crime|Drama
## 5744 Action|Adventure|Comedy
## 5745 Horror
## 5746 Action|Adventure|Animation|Children|Comedy
## 5747 Documentary|Musical
## 5748 Adventure|Fantasy
## 5749 Comedy
## 5750 Action|Crime|Drama|Thriller
## 5751 Documentary|Drama
## 5752 Comedy|Drama|Romance
## 5753 Drama
## 5754 Drama
## 5755 Children|Comedy
## 5756 Comedy|Drama
## 5757 Comedy|Drama|Romance
## 5758 Drama|Romance
## 5759 Comedy|Drama
## 5760 Crime|Drama|Thriller
## 5761 Drama
## 5762 Action|Mystery|Thriller
## 5763 Drama
## 5764 Fantasy|Western
## 5765 Adventure|Comedy|Horror|Romance
## 5766 Comedy|Mystery
## 5767 Drama|Musical
## 5768 Comedy|Western
## 5769 Drama
## 5770 Horror|Thriller
## 5771 Comedy|Drama
## 5772 Drama|Romance
## 5773 Comedy|Drama
## 5774 Drama|Horror|Sci-Fi
## 5775 Action|Crime|Drama
## 5776 Comedy
## 5777 Comedy|Drama
## 5778 Documentary|War
## 5779 Drama
## 5780 Comedy|Romance
## 5781 Crime|Mystery|Thriller
## 5782 Drama
## 5783 Crime|Thriller
## 5784 Drama
## 5785 Documentary
## 5786 Drama|Western
## 5787 Action|Comedy|Crime
## 5788 Comedy|Thriller
## 5789 Drama|Musical|Romance
## 5790 Action|Thriller
## 5791 Drama|Romance
## 5792 Documentary
## 5793 Animation|Children|Fantasy
## 5794 Drama
## 5795 Horror|Sci-Fi
## 5796 Action|Comedy
## 5797 Comedy|Drama
## 5798 Comedy|Drama|Musical
## 5799 Action|Comedy
## 5800 Drama
## 5801 Comedy|Romance
## 5802 Crime|Drama|Thriller
## 5803 Action|Crime|Drama
## 5804 Drama|Sci-Fi
## 5805 Comedy|Documentary
## 5806 Adventure|Drama
## 5807 Action|Mystery|Sci-Fi
## 5808 Drama
## 5809 Drama
## 5810 Fantasy|Horror|Sci-Fi|Thriller
## 5811 Drama
## 5812 Comedy|Romance
## 5813 Comedy
## 5814 Comedy|Drama|Romance|Sci-Fi
## 5815 Action|Adventure|Comedy|Sci-Fi
## 5816 Documentary
## 5817 Children|Drama
## 5818 Action|Comedy|Crime|Thriller
## 5819 Drama|Mystery|Sci-Fi
## 5820 Comedy
## 5821 Drama
## 5822 Drama|Musical
## 5823 Comedy|Drama
## 5824 Drama
## 5825 Documentary
## 5826 Crime|Drama|Thriller
## 5827 Crime|Drama|Romance
## 5828 Comedy|Drama|Romance
## 5829 Fantasy|Horror|Sci-Fi|Thriller
## 5830 Action|Fantasy|Horror|Romance
## 5831 Action|Adventure|Drama|Mystery|Thriller
## 5832 Drama
## 5833 Animation|Fantasy|Mystery
## 5834 Adventure|Drama|Western
## 5835 Documentary
## 5836 Adventure|Animation|Children|Drama|Fantasy
## 5837 Crime|Romance|Thriller
## 5838 Comedy|Musical|Romance
## 5839 Comedy|Horror
## 5840 Comedy|Fantasy
## 5841 Drama
## 5842 Drama|Fantasy|Horror|Mystery|Thriller
## 5843 Drama
## 5844 Drama
## 5845 Comedy|Crime
## 5846 Action|Animation|Crime|Drama|Film-Noir|Mystery|Sci-Fi|Thriller
## 5847 Drama|Horror|Thriller
## 5848 Crime|Drama|Thriller
## 5849 Documentary
## 5850 Comedy
## 5851 Documentary
## 5852 Crime|Drama|Thriller
## 5853 Comedy
## 5854 Action|Crime|Thriller
## 5855 Crime|Drama
## 5856 Drama|Fantasy
## 5857 Adventure|Drama|Western
## 5858 Comedy|Musical|Romance
## 5859 Adventure|Animation|Comedy|Fantasy|Romance
## 5860 Drama|Musical
## 5861 Crime|Drama
## 5862 Comedy|Drama
## 5863 Drama|Romance|Thriller|War
## 5864 Documentary
## 5865 Drama
## 5866 Drama
## 5867 Drama
## 5868 Action|Sci-Fi
## 5869 Comedy|Thriller
## 5870 Comedy|Drama
## 5871 Action|Comedy|Crime|Drama
## 5872 Action|Adventure|Comedy|Drama
## 5873 Comedy|Romance
## 5874 Drama
## 5875 Action|Crime|Horror
## 5876 Action|Drama
## 5877 Comedy
## 5878 Action
## 5879 Animation|Drama|Romance
## 5880 Comedy|Drama
## 5881 Crime|Thriller
## 5882 Drama
## 5883 Adventure|Animation|Children|Musical|Romance
## 5884 Action|Documentary|Drama|Thriller
## 5885 Crime|Drama|Mystery|Thriller
## 5886 Drama|Romance
## 5887 Action|Crime|Thriller
## 5888 Action|Adventure|Comedy|Sci-Fi|Thriller
## 5889 Children|Comedy|Fantasy
## 5890 Action|Crime|Drama|Thriller
## 5891 Action|Animation|Drama|Fantasy|Sci-Fi
## 5892 Comedy|Romance
## 5893 Adventure|Animation|Children|Fantasy
## 5894 Action|Comedy
## 5895 Adventure|Comedy|Fantasy
## 5896 Animation|Children|Comedy
## 5897 Drama
## 5898 Drama|Fantasy|Romance|Sci-Fi
## 5899 Drama|Horror|Mystery|Romance|Thriller
## 5900 Documentary
## 5901 Documentary
## 5902 Documentary
## 5903 Drama|Horror|Mystery|Thriller
## 5904 Horror
## 5905 Animation|Comedy
## 5906 Drama
## 5907 Action|Drama|Thriller
## 5908 Crime|Drama|Mystery|Thriller|War
## 5909 Drama|War
## 5910 Comedy|Drama|Romance
## 5911 Adventure|Comedy
## 5912 Action|Animation|Horror
## 5913 Comedy
## 5914 Horror|Mystery|Sci-Fi
## 5915 Comedy|Romance
## 5916 Comedy
## 5917 Comedy
## 5918 Crime|Drama
## 5919 Horror|Mystery|Thriller
## 5920 Drama|Sci-Fi|War
## 5921 Drama
## 5922 Comedy|Drama
## 5923 Action|Animation|Drama|Sci-Fi
## 5924 Drama
## 5925 Comedy|Crime|Drama|Mystery|Thriller
## 5926 Comedy
## 5927 Action|Crime|Thriller
## 5928 Drama
## 5929 Action|Drama|Thriller|War
## 5930 Adventure|Children|Comedy|Fantasy
## 5931 Documentary
## 5932 Drama|Mystery|Romance|War
## 5933 Drama|Romance
## 5934 Drama
## 5935 Drama|Romance
## 5936 Action|Animation|Drama|Sci-Fi|Thriller
## 5937 Adventure|Animation|Children|Fantasy
## 5938 Drama|Romance
## 5939 Drama|Horror|Mystery|Thriller
## 5940 Drama
## 5941 Horror
## 5942 Mystery|Thriller
## 5943 Fantasy|Horror
## 5944 Comedy|Drama
## 5945 Horror|Mystery
## 5946 Drama|Mystery|Sci-Fi|Thriller
## 5947 Children|Comedy|Crime|Drama|Fantasy
## 5948 Comedy|Drama|Fantasy|Musical|Romance
## 5949 Action|Horror|Sci-Fi|War
## 5950 Horror
## 5951 Adventure|Animation|Fantasy|Musical|Sci-Fi
## 5952 Action|Thriller
## 5953 Action|Crime|Drama|Thriller
## 5954 Drama
## 5955 Comedy|Drama|Romance
## 5956 Documentary|Musical
## 5957 Drama
## 5958 Action|Adventure|Drama|War
## 5959 Drama|Thriller
## 5960 Drama|Thriller
## 5961 Comedy|Drama|Romance
## 5962 Crime|Drama|Thriller
## 5963 Drama
## 5964 Action|Adventure
## 5965 Drama|Thriller
## 5966 Drama|Horror|Mystery|Thriller
## 5967 Documentary
## 5968 Documentary
## 5969 Drama|Romance
## 5970 Drama|Musical|Romance
## 5971 Action|Drama
## 5972 Action|Drama|War
## 5973 Drama
## 5974 Documentary
## 5975 Crime|Documentary|Drama
## 5976 Comedy|Drama
## 5977 Documentary
## 5978 Documentary
## 5979 Documentary
## 5980 Comedy|Documentary|Drama
## 5981 Animation|Drama|Mystery|Sci-Fi|Thriller
## 5982 Documentary
## 5983 Comedy|Documentary
## 5984 Drama
## 5985 Crime|Drama|Film-Noir
## 5986 Drama
## 5987 Comedy|Crime|Drama|Horror|Mystery
## 5988 Drama|War
## 5989 Horror|Thriller
## 5990 Adventure|Children|Comedy|Fantasy|IMAX
## 5991 Drama|Romance
## 5992 Adventure|Comedy|Fantasy
## 5993 Drama
## 5994 Drama|Musical|Romance
## 5995 Drama|Musical
## 5996 Drama
## 5997 Comedy|Drama
## 5998 Comedy
## 5999 Crime|Drama|Thriller
## 6000 Drama
## 6001 Drama
## 6002 Comedy
## 6003 Comedy|Fantasy
## 6004 Animation|Documentary
## 6005 Drama|Horror|Mystery|Sci-Fi|Thriller
## 6006 Comedy|Drama|Romance
## 6007 Comedy
## 6008 Drama|Horror|Musical
## 6009 Drama
## 6010 Action|Crime|Drama
## 6011 Drama
## 6012 Drama
## 6013 Comedy|Drama
## 6014 Drama|War
## 6015 Animation|Fantasy|Sci-Fi|War
## 6016 Comedy|Sci-Fi
## 6017 Comedy|Drama
## 6018 Action|Animation|Fantasy|Sci-Fi
## 6019 Animation|Children|Musical
## 6020 Action|Adventure|Crime|Drama
## 6021 Drama
## 6022 Drama|Horror|Sci-Fi
## 6023 Drama|Musical|Romance
## 6024 Action|Adventure|Fantasy|Sci-Fi
## 6025 Crime|Drama|Mystery|Thriller
## 6026 Comedy|Drama|Romance
## 6027 Drama|Romance
## 6028 Drama|War
## 6029 Drama
## 6030 Action|Crime|Drama|Thriller
## 6031 Children|Comedy
## 6032 Horror|Mystery|Thriller
## 6033 Drama|Horror|Mystery|Thriller
## 6034 Comedy|Romance
## 6035 Drama
## 6036 Drama
## 6037 Comedy|Drama
## 6038 Drama|Horror|Mystery|Thriller
## 6039 Drama
## 6040 Drama
## 6041 Documentary|War
## 6042 Documentary|Drama|Sci-Fi
## 6043 Adventure|Animation|Fantasy|Romance
## 6044 Action|Animation|Drama|Sci-Fi
## 6045 Documentary|Musical
## 6046 Comedy|Romance
## 6047 Documentary
## 6048 Comedy|Musical|Romance
## 6049 Action|Fantasy|Horror|Thriller
## 6050 Children|Comedy|Drama
## 6051 Comedy
## 6052 Mystery|Thriller
## 6053 Comedy|Romance
## 6054 Film-Noir|Thriller
## 6055 Action|Fantasy|Horror|Mystery|Sci-Fi|Thriller
## 6056 Action|Comedy
## 6057 Drama|Romance
## 6058 Adventure|Comedy|Crime|Drama|Mystery|Thriller
## 6059 Action|Adventure|Comedy
## 6060 Drama
## 6061 Comedy|Crime|Drama|Mystery
## 6062 Drama|Romance
## 6063 Comedy|Drama
## 6064 Drama|War
## 6065 Action|Comedy
## 6066 Comedy|Crime|Musical
## 6067 Documentary|War
## 6068 Drama|Thriller
## 6069 Action|Crime|Drama|Thriller
## 6070 Adventure|Animation|Children|Comedy|Fantasy|Sci-Fi|IMAX
## 6071 Action|Drama|Sci-Fi
## 6072 Drama
## 6073 Adventure|Animation|Children|Fantasy
## 6074 Comedy
## 6075 Crime|Drama
## 6076 Action|Drama|War
## 6077 Drama
## 6078 Action|Crime|Drama|Thriller
## 6079 Drama
## 6080 Comedy|Drama|Musical
## 6081 Children|Comedy|Drama
## 6082 Comedy|Drama
## 6083 Adventure|Comedy|Crime
## 6084 Comedy|Romance
## 6085 Documentary
## 6086 Drama
## 6087 Adventure|Animation|Comedy|Fantasy
## 6088 Crime|Drama|Film-Noir|Thriller
## 6089 Crime|Drama|Film-Noir
## 6090 Comedy|Musical|Romance
## 6091 Action|Drama
## 6092 Fantasy|Horror|Sci-Fi|Thriller
## 6093 Drama|Musical|Romance
## 6094 Animation|Comedy|Drama|Fantasy
## 6095 Action|Comedy|Crime|Drama
## 6096 Drama
## 6097 Comedy|Crime|Drama
## 6098 Adventure|Drama|War|Western
## 6099 Drama|Romance
## 6100 Animation|Fantasy|Sci-Fi|Thriller
## 6101 Animation|Comedy|Drama
## 6102 Documentary
## 6103 Action|Crime|Film-Noir|Mystery|Thriller
## 6104 Comedy|Drama|Romance
## 6105 Action|Adventure|Comedy
## 6106 Comedy|Romance
## 6107 Action|Crime
## 6108 Comedy
## 6109 Horror|Thriller
## 6110 Drama|Mystery|Thriller
## 6111 Comedy|Drama|Fantasy
## 6112 Drama|Horror|Thriller
## 6113 Comedy|Drama
## 6114 Adventure|Comedy|Sci-Fi
## 6115 Animation
## 6116 Drama|Romance|War
## 6117 Documentary|War
## 6118 Comedy|Musical
## 6119 Drama|War
## 6120 Action|Adventure|Fantasy|Sci-Fi
## 6121 Drama|Horror|Thriller
## 6122 Comedy|Drama
## 6123 Adventure|Comedy|Sci-Fi
## 6124 Comedy|Drama
## 6125 Horror|Thriller
## 6126 Drama|War
## 6127 Adventure|Comedy|Drama
## 6128 Comedy|Drama|Romance
## 6129 Documentary
## 6130 Action|Crime|Thriller
## 6131 Action|Drama|Romance|War
## 6132 Horror|Thriller
## 6133 Crime|Drama
## 6134 Drama|Mystery
## 6135 Comedy|Romance
## 6136 Comedy|Musical
## 6137 Comedy|Drama
## 6138 Comedy|Drama
## 6139 Action|Crime|Drama|Thriller
## 6140 Action|Adventure|Sci-Fi
## 6141 Comedy
## 6142 Comedy|Romance
## 6143 Adventure|Drama
## 6144 Horror|Mystery|Romance
## 6145 Drama
## 6146 Adventure|Animation|Children|Comedy
## 6147 Drama
## 6148 Children|Documentary
## 6149 Comedy|Drama
## 6150 Drama|Romance
## 6151 Adventure|Comedy|Drama
## 6152 Action|Comedy|Drama
## 6153 Action|Adventure|Comedy|Romance
## 6154 Action|Adventure|Children|Fantasy
## 6155 Horror|Thriller
## 6156 Drama|Musical|Romance
## 6157 Drama|War
## 6158 Drama|Romance
## 6159 Action|Crime|IMAX
## 6160 Drama|Romance
## 6161 Comedy|Drama
## 6162 Adventure|Comedy|Romance
## 6163 Action|Horror|Thriller
## 6164 Comedy|Fantasy|Romance
## 6165 Documentary
## 6166 Comedy|Drama
## 6167 Horror
## 6168 Comedy|Crime|Drama|Romance
## 6169 Comedy|Drama|Romance
## 6170 Drama
## 6171 Comedy
## 6172 Comedy|Musical
## 6173 Action|Adventure|Sci-Fi|Thriller
## 6174 Documentary
## 6175 Comedy
## 6176 Drama|Horror|Thriller
## 6177 Action|Adventure|Sci-Fi
## 6178 Documentary
## 6179 Comedy|Romance
## 6180 Comedy|Drama
## 6181 Comedy|Romance
## 6182 Crime|Drama
## 6183 Action|Sci-Fi|Thriller
## 6184 Children|Comedy
## 6185 Action|Crime|Horror
## 6186 Drama
## 6187 Action|Adventure|Children|Comedy
## 6188 Action|Adventure|Sci-Fi|Thriller
## 6189 Comedy|Romance
## 6190 Comedy|Documentary
## 6191 Comedy
## 6192 Comedy|Drama
## 6193 Action|Adventure|Sci-Fi
## 6194 Action|Adventure|Comedy|Musical|Romance|Thriller
## 6195 Comedy|Drama
## 6196 Horror|Mystery|Thriller
## 6197 Action|Adventure|Comedy
## 6198 Comedy|Drama
## 6199 Comedy|Drama
## 6200 Comedy
## 6201 Drama|Horror|Mystery|Thriller
## 6202 Action|Crime|Drama
## 6203 Action|Drama|War
## 6204 Documentary
## 6205 Drama|Romance
## 6206 Action|Crime|Drama
## 6207 Drama|Romance
## 6208 Comedy|Romance
## 6209 Horror|Thriller
## 6210 Drama|Fantasy|Romance
## 6211 Drama|Mystery|Thriller
## 6212 Adventure|Children|Comedy|Fantasy
## 6213 Adventure|Animation|Children|Comedy|Fantasy|War
## 6214 Comedy|Fantasy|Horror|Thriller
## 6215 Action|Adventure|Horror|Mystery|Sci-Fi|Thriller
## 6216 Drama|Thriller
## 6217 Action|Crime|Thriller
## 6218 Comedy|Fantasy|Romance
## 6219 Drama
## 6220 Action|Crime|Drama|Thriller|War
## 6221 Drama|Horror|Mystery|Thriller
## 6222 Comedy|Drama
## 6223 Action|Drama|Musical|War
## 6224 Adventure|Animation|Comedy
## 6225 Action|Crime|Drama
## 6226 Comedy|Musical|Western
## 6227 Documentary
## 6228 Comedy|Musical
## 6229 Action|Horror|Sci-Fi
## 6230 Crime|Drama|Thriller
## 6231 Comedy
## 6232 Action|Sci-Fi
## 6233 Drama
## 6234 Action|Comedy|Crime
## 6235 Crime|Drama|Horror|Thriller
## 6236 Action|Drama|Thriller
## 6237 Animation|Comedy|Fantasy|Musical|Romance
## 6238 Crime|Drama
## 6239 Action|Crime|Drama|Thriller
## 6240 Drama
## 6241 Drama
## 6242 Crime|Drama
## 6243 Crime|Drama|Thriller
## 6244 Action|Adventure|Animation|Fantasy|Sci-Fi
## 6245 Action|Adventure|Crime|Thriller
## 6246 Drama
## 6247 Adventure|Children|Drama|Fantasy
## 6248 Adventure|Animation|Children|Comedy
## 6249 Comedy|Crime|Mystery|Thriller
## 6250 Documentary
## 6251 Comedy
## 6252 Drama|Fantasy
## 6253 Comedy|Drama
## 6254 Comedy|Drama
## 6255 Drama
## 6256 Drama|Romance|Thriller
## 6257 Action|Comedy|Sci-Fi
## 6258 Drama|Romance
## 6259 Comedy|Drama|Romance
## 6260 Drama
## 6261 Crime|Drama
## 6262 Children|Drama
## 6263 Crime|Drama|Western
## 6264 Comedy|Drama
## 6265 Drama
## 6266 Comedy|Drama|Romance
## 6267 Comedy|Drama
## 6268 Drama|Thriller
## 6269 Comedy
## 6270 Thriller
## 6271 Action|Adventure|Drama|Western
## 6272 Comedy|Drama
## 6273 Horror|Thriller
## 6274 Drama
## 6275 Comedy
## 6276 Comedy|Drama|Musical|Romance|War
## 6277 Action|Adventure
## 6278 Drama
## 6279 Comedy|Drama|Romance
## 6280 Crime|Drama|Thriller
## 6281 Action|Comedy|Horror|Romance|Sci-Fi
## 6282 Action|Drama|War
## 6283 Action|Adventure|Animation|Children|Comedy|Sci-Fi
## 6284 Crime|Thriller
## 6285 Drama|War
## 6286 Comedy|Drama
## 6287 Action|Crime|Drama
## 6288 Comedy|Romance
## 6289 Drama|Thriller
## 6290 Comedy|Drama
## 6291 Drama|Thriller
## 6292 Drama|Romance
## 6293 Crime|Horror|Thriller
## 6294 Adventure|Drama|Horror|Thriller
## 6295 Adventure|Fantasy|Thriller|IMAX
## 6296 Comedy|Drama
## 6297 Drama|Musical|Romance
## 6298 Drama|Musical|Romance
## 6299 Drama
## 6300 Action|Adventure|Children|Fantasy
## 6301 Drama
## 6302 Comedy|Musical
## 6303 Action|Comedy|Crime|Thriller
## 6304 Drama
## 6305 Crime|Drama|Romance
## 6306 Drama
## 6307 Crime|Drama|Thriller|War
## 6308 Adventure|Children|Fantasy
## 6309 Action|Adventure|Drama|Fantasy|Thriller
## 6310 Drama|Romance
## 6311 Comedy|Drama|Romance
## 6312 Crime|Drama|Film-Noir
## 6313 Comedy
## 6314 Comedy|Drama|Thriller
## 6315 Comedy|Drama|Romance
## 6316 Adventure|Crime|Drama
## 6317 Comedy|Crime|Mystery
## 6318 Action|Crime|Drama|Thriller
## 6319 Comedy|Musical
## 6320 Adventure|Comedy|Drama
## 6321 Comedy|Drama|Romance
## 6322 Adventure|Comedy
## 6323 Comedy|Crime
## 6324 Comedy
## 6325 Action|Adventure|Comedy|Drama|Romance
## 6326 Comedy|Documentary
## 6327 Animation|Children
## 6328 Comedy|Crime
## 6329 Drama
## 6330 Drama|Sci-Fi|War
## 6331 Adventure|Drama|Romance
## 6332 Crime|Drama|Mystery|Thriller
## 6333 Documentary
## 6334 Adventure|Drama|Thriller|War
## 6335 Action|Crime|Sci-Fi
## 6336 Action|Fantasy
## 6337 Horror
## 6338 Comedy
## 6339 Drama|Romance
## 6340 Drama
## 6341 Comedy
## 6342 Animation|Children|Comedy
## 6343 Action|Fantasy|Horror
## 6344 Comedy
## 6345 Drama|Romance
## 6346 Comedy|Crime|Drama|Thriller
## 6347 Drama
## 6348 Action|Comedy
## 6349 Children|Comedy|Romance
## 6350 Crime|Drama
## 6351 Action|Comedy
## 6352 Drama|Romance
## 6353 Drama|Musical
## 6354 Drama|War
## 6355 Comedy|Drama
## 6356 Drama
## 6357 Action|Comedy|Crime|Western
## 6358 Drama
## 6359 Action|Comedy|Crime
## 6360 Children|Comedy|Fantasy
## 6361 Comedy|Musical
## 6362 Horror|Mystery|Thriller
## 6363 Comedy|Documentary
## 6364 Comedy|Drama|Romance
## 6365 Horror|Thriller
## 6366 Adventure|Comedy|Crime
## 6367 Comedy|Fantasy|Horror
## 6368 Adventure|Animation|Children|Comedy
## 6369 Crime|Drama|Thriller
## 6370 Drama
## 6371 Horror|Thriller
## 6372 Drama
## 6373 Documentary|Musical
## 6374 Action|Adventure|Drama|Romance
## 6375 Comedy|Romance
## 6376 Action|Crime|Thriller
## 6377 Action|Fantasy|Sci-Fi|Thriller
## 6378 Comedy|Romance
## 6379 Action|Drama|Fantasy|Horror|Mystery|Sci-Fi|Thriller
## 6380 Crime|Thriller
## 6381 Comedy|Romance
## 6382 Adventure|Animation|Children|Comedy
## 6383 Drama
## 6384 Action|Sci-Fi|Thriller|IMAX
## 6385 Comedy|Romance
## 6386 Comedy|Drama
## 6387 Comedy|Crime|Drama
## 6388 Crime|Drama|Thriller
## 6389 Crime|Drama
## 6390 Children|Comedy|Fantasy
## 6391 Action|Comedy|Horror
## 6392 Crime|Drama
## 6393 Comedy
## 6394 Drama|Horror|Thriller
## 6395 Documentary
## 6396 Documentary
## 6397 Drama|Romance|Thriller
## 6398 Documentary|Drama
## 6399 Action|Crime|Mystery
## 6400 Drama
## 6401 Documentary
## 6402 Crime|Drama|Mystery
## 6403 Sci-Fi
## 6404 Comedy|Drama
## 6405 Drama
## 6406 Comedy|Romance
## 6407 Horror|Sci-Fi|Thriller
## 6408 Crime|Drama|Mystery|Thriller
## 6409 Crime|Drama|Film-Noir|Mystery
## 6410 Documentary
## 6411 Comedy|Horror|Sci-Fi
## 6412 Comedy
## 6413 Action|Animation|Film-Noir|Sci-Fi|Thriller
## 6414 Comedy|Drama|Romance
## 6415 Drama|Horror|Romance|Thriller
## 6416 Comedy|Horror
## 6417 Drama|Thriller
## 6418 Comedy|Drama
## 6419 Comedy|Drama|Musical
## 6420 Crime|Drama|Thriller
## 6421 Fantasy|Horror|Thriller
## 6422 Drama|Thriller
## 6423 Crime|Drama|Film-Noir|Mystery
## 6424 Action|Comedy|Crime|Thriller
## 6425 Action|Adventure|Thriller
## 6426 Adventure|Children|Comedy
## 6427 Crime|Drama
## 6428 Comedy
## 6429 Drama|Romance
## 6430 Adventure|Animation|Children|Comedy
## 6431 Comedy|Drama
## 6432 Action|Adventure|Thriller|IMAX
## 6433 Drama|Mystery|Thriller
## 6434 Action|Sci-Fi|Thriller
## 6435 Comedy|Drama|Romance
## 6436 Drama
## 6437 Animation|Children|Comedy
## 6438 Comedy|Drama
## 6439 Horror|Thriller
## 6440 Comedy
## 6441 Drama|Fantasy|Romance
## 6442 Adventure|Comedy|Drama|Fantasy|Romance
## 6443 Drama|Film-Noir|Horror|Mystery
## 6444 Comedy|Drama
## 6445 Action|Adventure|Fantasy
## 6446 Comedy
## 6447 Comedy
## 6448 Drama|Fantasy|Mystery
## 6449 Comedy|Fantasy|Romance
## 6450 Documentary
## 6451 Drama|Romance
## 6452 Documentary
## 6453 Drama
## 6454 Documentary
## 6455 Comedy|Romance
## 6456 Documentary|Musical
## 6457 Children|Comedy|Drama|Musical|Romance
## 6458 Action|Drama
## 6459 Action|Crime|Drama|Thriller
## 6460 Animation|Children|Comedy
## 6461 Documentary
## 6462 Action|Adventure|Sci-Fi|IMAX
## 6463 Drama
## 6464 Drama|War
## 6465 Documentary|Musical
## 6466 Comedy
## 6467 Adventure|Comedy|Drama
## 6468 Drama|Mystery|Thriller
## 6469 Drama|Thriller
## 6470 Comedy
## 6471 Documentary
## 6472 Action|Drama|Thriller|War
## 6473 Comedy
## 6474 Drama
## 6475 Animation|Children|Fantasy|Mystery
## 6476 Action|Comedy|Horror|Thriller
## 6477 Comedy|Fantasy|Mystery
## 6478 Action|Comedy
## 6479 Action|Comedy|Fantasy|IMAX
## 6480 Drama
## 6481 Comedy|Drama|Fantasy|Romance
## 6482 Action|Crime|Drama|Thriller
## 6483 Crime|Drama|Film-Noir
## 6484 Drama
## 6485 Comedy|Romance
## 6486 Adventure|Animation|Children|Comedy|Fantasy|IMAX
## 6487 Comedy|Drama
## 6488 Drama
## 6489 Comedy|Romance|Thriller|Western
## 6490 Action|Thriller
## 6491 Drama|Romance
## 6492 Action|Crime|Drama|Thriller
## 6493 Fantasy|Mystery|Thriller
## 6494 Drama
## 6495 Crime|Drama|Thriller
## 6496 Action|Crime|Drama|Romance
## 6497 Drama|Romance
## 6498 Adventure|Comedy|Drama|Fantasy
## 6499 Adventure|Animation|Comedy|Fantasy|Romance|Sci-Fi
## 6500 Drama
## 6501 Drama|Fantasy|Thriller
## 6502 Comedy|Drama
## 6503 Fantasy|Musical
## 6504 Comedy
## 6505 Children|Comedy|Musical
## 6506 Drama|Fantasy|Mystery|Romance
## 6507 Drama
## 6508 Comedy
## 6509 Comedy|Drama|Fantasy|Romance
## 6510 Children|Fantasy
## 6511 Crime|Mystery
## 6512 Horror|Mystery|Thriller
## 6513 Action|Drama
## 6514 Drama|War
## 6515 Comedy|Horror|Thriller
## 6516 Crime|Drama|Mystery|Thriller
## 6517 Action|Horror|Thriller
## 6518 Drama
## 6519 Adventure|Comedy|Sci-Fi|Thriller
## 6520 Documentary|Drama
## 6521 Comedy|Drama|Romance|War
## 6522 Drama|Fantasy|Romance
## 6523 Animation|Children|Comedy|Musical
## 6524 Comedy|Drama|Fantasy|Romance
## 6525 Crime|Drama|Mystery|Thriller
## 6526 Adventure|Animation|Children|Comedy
## 6527 Drama
## 6528 Drama|War
## 6529 Comedy|Drama|Horror
## 6530 Documentary
## 6531 Drama|Romance
## 6532 Comedy|Drama
## 6533 Adventure|Drama|Thriller
## 6534 Action|Adventure|Drama|War
## 6535 Comedy|Documentary
## 6536 Comedy
## 6537 Drama|Fantasy|Thriller
## 6538 Adventure|Animation|Children|Comedy|IMAX
## 6539 Adventure|Comedy|Sci-Fi
## 6540 Crime|Drama|Thriller
## 6541 Horror|Thriller
## 6542 Comedy
## 6543 Action|Children
## 6544 Comedy|Drama
## 6545 Drama|Horror|Mystery|Thriller
## 6546 Comedy|Thriller
## 6547 Action|Drama|Thriller
## 6548 Drama|Romance
## 6549 Comedy|Drama
## 6550 Drama|Romance
## 6551 Documentary
## 6552 Action|Drama
## 6553 Drama|Thriller
## 6554 Documentary
## 6555 Comedy|Drama|Romance
## 6556 Action|Adventure|Drama|Sci-Fi|Thriller
## 6557 Drama|Mystery|Sci-Fi|Thriller
## 6558 Drama|War
## 6559 Children|Drama
## 6560 Comedy|Drama|Romance
## 6561 Crime|Drama
## 6562 Film-Noir|Thriller
## 6563 Crime|Horror|Thriller
## 6564 Animation|Horror
## 6565 Animation|Comedy
## 6566 Crime|Drama|Thriller
## 6567 Comedy|Fantasy
## 6568 Documentary
## 6569 Comedy
## 6570 Documentary
## 6571 Documentary|Drama|War
## 6572 Action|Adventure|Thriller
## 6573 Adventure|Animation|Children|Comedy|IMAX
## 6574 Action|Sci-Fi|Thriller
## 6575 Drama
## 6576 Comedy|Drama|Romance
## 6577 Comedy|Romance
## 6578 Drama|Romance
## 6579 Action|Crime|Drama
## 6580 Drama
## 6581 Adventure|Comedy|Musical
## 6582 Comedy
## 6583 Adventure|Drama|Horror|Mystery|Thriller
## 6584 Action|Adventure|Crime|Drama|Thriller|War
## 6585 Children|Comedy|Drama|Fantasy
## 6586 Action|Adventure|Fantasy
## 6587 Action|Drama
## 6588 Action|Drama|War
## 6589 Drama|Romance
## 6590 Adventure|Animation|Drama
## 6591 Drama|Thriller
## 6592 Drama|Musical
## 6593 Comedy|Drama
## 6594 Drama
## 6595 Documentary
## 6596 Drama|Mystery|Thriller
## 6597 Comedy|Drama
## 6598 Drama
## 6599 Action|Drama
## 6600 Comedy|Drama|Fantasy|Mystery
## 6601 Drama|Mystery|Thriller
## 6602 Drama|War
## 6603 Action|Horror|Thriller
## 6604 Drama
## 6605 Action|Children|Fantasy
## 6606 Comedy|Romance
## 6607 Drama
## 6608 Drama
## 6609 Crime|Drama
## 6610 Action|Horror|Thriller
## 6611 Drama
## 6612 Comedy|Drama
## 6613 Adventure|Children|Fantasy
## 6614 Comedy|Fantasy|Horror
## 6615 Comedy
## 6616 Documentary
## 6617 Comedy|Drama|Romance
## 6618 Documentary
## 6619 Documentary
## 6620 Documentary
## 6621 Comedy|Drama|Romance
## 6622 Action|Crime|Drama|Thriller
## 6623 Adventure|Comedy
## 6624 Comedy|Drama|Romance
## 6625 Drama|Horror|Thriller
## 6626 Comedy|Romance
## 6627 Comedy|Drama
## 6628 Documentary
## 6629 Animation|Children|Drama
## 6630 Romance
## 6631 Drama
## 6632 Comedy|Romance
## 6633 Comedy|Musical
## 6634 Action|Fantasy|Thriller
## 6635 Drama|Thriller
## 6636 Comedy|Romance
## 6637 Drama|Mystery|Thriller
## 6638 Comedy
## 6639 Drama
## 6640 Comedy|Drama|Romance
## 6641 Documentary
## 6642 Drama
## 6643 Comedy|Horror
## 6644 Action|Comedy|Crime|Mystery
## 6645 Action|Adventure
## 6646 Crime|Drama|Thriller
## 6647 Crime|Drama|Thriller
## 6648 Musical
## 6649 Comedy|Drama
## 6650 Action|Sci-Fi|Thriller
## 6651 Drama
## 6652 Drama|Romance
## 6653 Crime|Drama|Thriller
## 6654 Adventure|Comedy
## 6655 Action|Fantasy|War|IMAX
## 6656 Adventure|Children|Sci-Fi
## 6657 Comedy|Romance
## 6658 Comedy|Drama|Horror|Sci-Fi|Thriller
## 6659 Drama
## 6660 Drama|Romance
## 6661 Drama|Romance
## 6662 Drama|Fantasy|Mystery|Thriller
## 6663 Horror|Mystery|Thriller
## 6664 Drama
## 6665 Action|Drama|Thriller
## 6666 Horror|Thriller
## 6667 Action|Adventure|Animation|Children|Comedy|Fantasy
## 6668 Crime|Drama|Thriller
## 6669 Comedy|Romance
## 6670 Action|Crime|Horror|Sci-Fi|Thriller
## 6671 Action|Adventure|Animation|Children|Comedy|Sci-Fi
## 6672 Action|Adventure|Drama|War
## 6673 Adventure|Drama|Sci-Fi|Thriller
## 6674 Drama|Film-Noir
## 6675 Animation|Comedy|Fantasy|Musical
## 6676 Crime|Drama|Mystery|Thriller
## 6677 Drama|Thriller
## 6678 Action|Adventure|Drama|Thriller|War
## 6679 Action|Adventure|Animation|Comedy|Fantasy|Mystery|Sci-Fi
## 6680 Drama
## 6681 Comedy|Romance
## 6682 Drama|Musical
## 6683 Crime|Drama|Mystery|Thriller
## 6684 Comedy|Crime|Thriller
## 6685 Comedy|Drama
## 6686 Horror|Thriller
## 6687 Drama|Horror
## 6688 Comedy|Drama|Romance
## 6689 Comedy
## 6690 Crime|Drama|Fantasy|Mystery|Thriller
## 6691 Action|Adventure|Crime|Thriller
## 6692 Action|Adventure|Sci-Fi|Thriller|IMAX
## 6693 Children|Comedy
## 6694 Documentary
## 6695 Action|Crime|Horror|Thriller
## 6696 Animation|Mystery|Sci-Fi
## 6697 Comedy|Drama|Romance
## 6698 Action|Fantasy|Horror|Thriller
## 6699 Drama
## 6700 Drama
## 6701 Comedy|Drama|Romance
## 6702 Comedy|Drama|Musical
## 6703 Horror|Sci-Fi|Thriller
## 6704 Documentary
## 6705 Drama
## 6706 Adventure|Animation|Children|Comedy|Fantasy
## 6707 Drama|Musical|Romance
## 6708 Action|Adventure|Comedy|Fantasy
## 6709 Crime|Drama|Thriller
## 6710 Drama
## 6711 Action|Adventure|Fantasy
## 6712 Comedy
## 6713 Crime|Drama|Mystery|Thriller
## 6714 Comedy|Drama|Romance
## 6715 Crime|Thriller
## 6716 Horror
## 6717 Crime|Horror|Thriller
## 6718 Crime|Drama
## 6719 Animation|Children|Comedy
## 6720 Action|Adventure|Sci-Fi
## 6721 Adventure|Crime|Thriller
## 6722 Comedy|Horror|Thriller
## 6723 Action|Adventure|Crime|Horror|Thriller
## 6724 Action|Adventure|Drama|War
## 6725 Crime|Drama|Mystery|Thriller|War
## 6726 Documentary
## 6727 Comedy|Drama|Fantasy|Musical
## 6728 Documentary|Drama
## 6729 Drama|Horror|Thriller
## 6730 Comedy
## 6731 Action|Adventure|Crime|Thriller
## 6732 Comedy|Romance
## 6733 Comedy|Fantasy
## 6734 Action|Sci-Fi|Thriller|IMAX
## 6735 Crime|Thriller
## 6736 Adventure|Drama|Fantasy|IMAX
## 6737 Comedy|Romance
## 6738 Drama|Fantasy|Musical|Romance
## 6739 Comedy|Drama
## 6740 Comedy
## 6741 Comedy
## 6742 Adventure|Comedy|Fantasy|Romance
## 6743 Horror|Thriller
## 6744 Animation|Comedy
## 6745 Comedy|Drama|Romance
## 6746 Comedy|Drama
## 6747 Action|Crime|Thriller
## 6748 Comedy
## 6749 Comedy
## 6750 Comedy|Crime|Thriller
## 6751 Crime|Drama|Mystery|Thriller
## 6752 Documentary
## 6753 Comedy|Drama
## 6754 Comedy
## 6755 Drama
## 6756 Action|Comedy|Crime|Thriller
## 6757 Comedy
## 6758 Comedy
## 6759 Action|Drama|Thriller
## 6760 Comedy|Drama
## 6761 Children|Comedy
## 6762 Action|Drama|Horror|Sci-Fi|Thriller
## 6763 Action|Thriller
## 6764 Comedy|Drama|Romance
## 6765 Horror
## 6766 Drama|Thriller
## 6767 Documentary
## 6768 Comedy|Horror|Thriller
## 6769 Action|Horror|Sci-Fi
## 6770 Action|Crime|Drama|Western
## 6771 Action|Comedy|Crime
## 6772 Comedy|Documentary
## 6773 Drama|Romance|War
## 6774 Documentary|Fantasy
## 6775 Drama
## 6776 Documentary
## 6777 Drama|Romance
## 6778 Drama|Mystery
## 6779 Comedy|Romance
## 6780 Drama
## 6781 Action|Adventure|Comedy|Drama|Thriller
## 6782 Crime|Drama|Thriller
## 6783 Documentary
## 6784 Action|Adventure|Animation|Crime|Fantasy
## 6785 Comedy|Drama
## 6786 Action|Horror|Sci-Fi|Thriller
## 6787 Comedy|Romance
## 6788 Action|Adventure|Drama
## 6789 Comedy
## 6790 Drama|Romance|Thriller|War
## 6791 Action|Adventure|Drama|Fantasy
## 6792 Comedy|Drama|Romance
## 6793 Comedy|Drama|Romance
## 6794 Adventure|Comedy|Drama
## 6795 Crime|Drama
## 6796 Drama
## 6797 Drama|Thriller
## 6798 Comedy|Drama
## 6799 Horror|Thriller
## 6800 Crime|Drama|Mystery
## 6801 Comedy|Crime|Drama
## 6802 Crime|Drama|Western
## 6803 Drama
## 6804 Animation|Drama
## 6805 Drama
## 6806 Comedy|Drama|Romance
## 6807 Adventure|Drama|Romance
## 6808 Drama
## 6809 Comedy|Drama
## 6810 Crime|Horror|Thriller
## 6811 Crime|Drama
## 6812 Action|Crime|Drama
## 6813 Documentary
## 6814 Action|Crime|Drama|Thriller
## 6815 Comedy|Drama
## 6816 Comedy|Drama|Romance
## 6817 Crime|Drama|Thriller
## 6818 Animation|Comedy
## 6819 Crime|Drama|Thriller
## 6820 Drama
## 6821 Crime|Drama
## 6822 Comedy
## 6823 Documentary
## 6824 Drama|Musical
## 6825 Drama|Film-Noir|Thriller
## 6826 Drama|Sci-Fi
## 6827 Drama|Thriller|War
## 6828 Action|Adventure|Animation|Fantasy|IMAX
## 6829 Children|Comedy|Fantasy
## 6830 Comedy|Drama|Sci-Fi|Thriller
## 6831 Crime|Drama|Film-Noir|Mystery
## 6832 Documentary
## 6833 Comedy|Drama|Horror|Thriller
## 6834 Comedy
## 6835 Drama
## 6836 Horror|Sci-Fi
## 6837 Adventure|Animation|Children|Comedy|Fantasy|Musical|Romance
## 6838 Action|Crime|Thriller
## 6839 Drama|Thriller
## 6840 Adventure|Children|Fantasy
## 6841 Action|Horror|Sci-Fi|Thriller|IMAX
## 6842 Children|Comedy
## 6843 Animation|Comedy|Sci-Fi
## 6844 Drama
## 6845 Drama
## 6846 Comedy|Drama
## 6847 Action|Horror|Thriller
## 6848 Drama|Horror|Mystery|Thriller
## 6849 Comedy|Drama|Romance
## 6850 Documentary
## 6851 Comedy|Drama
## 6852 Drama
## 6853 Crime|Drama|Thriller
## 6854 Drama|Fantasy|Romance
## 6855 Drama|Horror|Musical|Thriller
## 6856 Action|Adventure
## 6857 Drama|Western
## 6858 Comedy|Drama|War
## 6859 Action|Horror|Sci-Fi
## 6860 Comedy|Musical
## 6861 Comedy
## 6862 Drama
## 6863 Comedy|Drama|Romance
## 6864 Adventure|Children|Fantasy
## 6865 Action|Drama|Sci-Fi|Thriller
## 6866 Comedy|Drama|Romance
## 6867 Comedy|Romance
## 6868 Drama
## 6869 Action|Adventure|Drama|Fantasy
## 6870 Comedy|Drama
## 6871 Drama|Horror|Thriller
## 6872 Action|Adventure|Fantasy
## 6873 Crime|Drama
## 6874 Action|Mystery|Sci-Fi|Thriller
## 6875 Crime|Thriller
## 6876 Drama|Romance
## 6877 Drama|Musical
## 6878 Comedy|Drama|Romance
## 6879 Animation|Comedy|Drama|Romance|Sci-Fi
## 6880 Crime|Thriller
## 6881 Action|Drama|Thriller|War
## 6882 Comedy
## 6883 Action|Adventure|Fantasy|Sci-Fi
## 6884 Comedy|Crime|Drama|Thriller
## 6885 Comedy
## 6886 Documentary
## 6887 Comedy|Horror
## 6888 Action|Adventure|Comedy|Romance
## 6889 Documentary
## 6890 Comedy|Drama
## 6891 Action|Adventure|Drama|Sci-Fi|Thriller
## 6892 Drama
## 6893 Comedy|Drama|Romance
## 6894 Action|Drama|Thriller
## 6895 Adventure|Children|Drama|Fantasy|IMAX
## 6896 Drama|Musical|Romance
## 6897 Comedy
## 6898 Drama|Romance
## 6899 Comedy
## 6900 Documentary
## 6901 Adventure|Romance|Thriller
## 6902 Action|Crime|Thriller
## 6903 Action|Drama|Sci-Fi|Thriller
## 6904 Adventure|Animation|Children|Comedy
## 6905 Drama|Thriller
## 6906 Crime|Drama|War
## 6907 Drama|War
## 6908 Comedy
## 6909 Comedy|Fantasy|Romance
## 6910 Drama
## 6911 Animation|Documentary
## 6912 Documentary|War
## 6913 Documentary
## 6914 Comedy|Drama
## 6915 Drama
## 6916 Drama
## 6917 Action|Crime|Drama|IMAX
## 6918 Action
## 6919 Drama|War
## 6920 Comedy
## 6921 Drama
## 6922 Crime|Drama|Romance|Thriller
## 6923 Comedy|Drama|Romance
## 6924 Documentary|Musical|IMAX
## 6925 Documentary
## 6926 Crime
## 6927 Horror|Thriller
## 6928 Adventure|Comedy|Fantasy
## 6929 Horror|Thriller
## 6930 Comedy|Romance
## 6931 Action|Comedy|Sci-Fi
## 6932 Crime|Drama|Thriller
## 6933 Drama|Romance
## 6934 Adventure|Comedy
## 6935 Action|Children|Sci-Fi|IMAX
## 6936 Action|Adventure|Comedy|Fantasy
## 6937 Comedy|Drama
## 6938 Comedy|Documentary
## 6939 Children|Comedy|Drama
## 6940 Comedy|Documentary
## 6941 Action|Adventure
## 6942 Comedy
## 6943 Comedy|Drama
## 6944 Horror|Mystery|Thriller
## 6945 Action|Adventure|Sci-Fi
## 6946 Comedy|Romance
## 6947 Comedy|Drama
## 6948 Action|Crime|Drama|Thriller
## 6949 Adventure|Drama|Fantasy
## 6950 Action|Fantasy|Sci-Fi
## 6951 Crime
## 6952 Comedy|Romance
## 6953 Comedy
## 6954 Drama
## 6955 Adventure|Children|Fantasy
## 6956 Drama
## 6957 Drama|Romance
## 6958 Documentary|Musical
## 6959 Comedy|Crime|Thriller
## 6960 Action|Adventure|Comedy|Sci-Fi
## 6961 Documentary
## 6962 Documentary
## 6963 Comedy
## 6964 Comedy|Romance
## 6965 Horror|Thriller
## 6966 Documentary
## 6967 Action|Animation|Children|Comedy|IMAX
## 6968 Drama|Western
## 6969 Drama
## 6970 Comedy|Crime|Drama|Horror
## 6971 Crime|Drama|Film-Noir
## 6972 Adventure|War|Western
## 6973 Adventure|Drama|Romance
## 6974 Comedy
## 6975 Adventure|Comedy|Sci-Fi
## 6976 Adventure|Romance|Western
## 6977 Comedy|Drama|Romance
## 6978 Crime|Drama
## 6979 Drama|Sci-Fi|Thriller
## 6980 Action|Sci-Fi
## 6981 Adventure|Animation|Children|Romance|Sci-Fi
## 6982 Action|Thriller
## 6983 Action|Adventure|Comedy|Crime|Fantasy
## 6984 Drama
## 6985 Action|Comedy
## 6986 Comedy
## 6987 Documentary
## 6988 Documentary
## 6989 Action|Animation|Comedy|Romance|Sci-Fi
## 6990 Documentary
## 6991 Comedy|Drama|Romance
## 6992 Documentary
## 6993 Documentary
## 6994 Adventure
## 6995 Documentary
## 6996 Documentary
## 6997 Comedy|Musical|Romance
## 6998 Action|Adventure|Horror|Sci-Fi|Thriller
## 6999 Animation|Children|Comedy
## 7000 Action|Adventure|Sci-Fi
## 7001 Adventure|Children|Comedy|Romance|Sci-Fi
## 7002 Adventure|Crime|Drama|Horror|Mystery
## 7003 Adventure|Animation|Comedy
## 7004 Sci-Fi
## 7005 Action|Drama|Mystery|Sci-Fi|Thriller|IMAX
## 7006 Crime|Drama
## 7007 Comedy
## 7008 Drama|Mystery|Sci-Fi|Thriller
## 7009 Documentary
## 7010 Documentary
## 7011 Crime|Horror|Thriller
## 7012 Drama
## 7013 Action|Adventure|Fantasy|Thriller
## 7014 Drama
## 7015 Comedy|Drama|Romance
## 7016 Drama
## 7017 Action|Comedy|Drama|Romance
## 7018 Action|Comedy|Crime
## 7019 Action|Adventure|Drama|War
## 7020 Adventure|Comedy|Drama|Romance
## 7021 Drama|Romance
## 7022 Comedy|Drama|Musical|Romance
## 7023 Action|Adventure|Comedy|War
## 7024 Action|Adventure|Animation|Sci-Fi
## 7025 Drama|Mystery
## 7026 Drama
## 7027 Action|Adventure|Sci-Fi
## 7028 Animation|Documentary|Drama|War
## 7029 Drama|Fantasy|Horror|Romance
## 7030 Action|Adventure|Sci-Fi|Thriller
## 7031 Comedy
## 7032 Action|Western
## 7033 Comedy|Crime|Drama
## 7034 Comedy
## 7035 Action|Adventure|Sci-Fi|Thriller
## 7036 Crime|Drama|Thriller
## 7037 Documentary
## 7038 Comedy|Drama
## 7039 Comedy
## 7040 Action|Comedy|Fantasy|Thriller
## 7041 Action|Crime|Thriller
## 7042 Children|Drama
## 7043 Drama|Romance
## 7044 Drama|Thriller
## 7045 Comedy|Fantasy|Romance
## 7046 Drama|Sci-Fi
## 7047 Action|Crime|Thriller|IMAX
## 7048 Comedy
## 7049 Comedy|Drama
## 7050 Comedy|Drama|Romance
## 7051 Horror
## 7052 Crime|Drama
## 7053 Action|Adventure|Animation|Comedy|Sci-Fi
## 7054 Animation|Comedy|Fantasy|Sci-Fi
## 7055 Drama|Romance
## 7056 Action|Drama|Thriller
## 7057 Adventure|Children|Sci-Fi
## 7058 Comedy
## 7059 Action|Adventure|Sci-Fi
## 7060 Action|Crime|Drama|Thriller
## 7061 Comedy|Drama|Romance
## 7062 Drama
## 7063 Comedy|Drama
## 7064 Drama
## 7065 Comedy|Romance
## 7066 Drama|Horror|Mystery|Thriller
## 7067 Fantasy|Mystery|Sci-Fi|War
## 7068 Crime|Drama
## 7069 Action|Drama
## 7070 Action|Crime
## 7071 Musical
## 7072 Action|Adventure|Animation|Comedy|Fantasy|Sci-Fi
## 7073 Action|Adventure|Animation|Children|Comedy|IMAX
## 7074 Crime|Drama|Mystery
## 7075 Adventure|Drama|Thriller
## 7076 Crime|Drama|Romance
## 7077 Action|Adventure|Thriller
## 7078 Comedy
## 7079 Drama
## 7080 Children|Fantasy|Musical|Romance
## 7081 Action
## 7082 Comedy|Musical|Romance
## 7083 Crime|Horror|Thriller
## 7084 Comedy
## 7085 Comedy|Musical
## 7086 Drama|Mystery
## 7087 Adventure|Children|Comedy
## 7088 Drama|Romance
## 7089 Drama
## 7090 Action|Horror|Thriller
## 7091 Crime|Drama|Horror
## 7092 Adventure|Drama|War|Western
## 7093 Action|Adventure|Animation|Children|Comedy
## 7094 Drama
## 7095 Drama|Fantasy|Romance|Thriller
## 7096 Action|Adventure|Crime|Thriller
## 7097 Comedy
## 7098 Drama|War
## 7099 Drama|Romance
## 7100 Animation|Comedy
## 7101 Horror
## 7102 Drama
## 7103 Drama|Musical
## 7104 Adventure|Animation|Comedy|Fantasy
## 7105 Documentary
## 7106 Animation|Comedy
## 7107 Comedy|Drama
## 7108 Comedy|Drama|Musical
## 7109 Drama|Sci-Fi|Thriller|IMAX
## 7110 Drama|War
## 7111 Drama|War
## 7112 Action|Sci-Fi|War
## 7113 Drama|Mystery
## 7114 Crime|Drama
## 7115 Drama
## 7116 Drama|Romance
## 7117 Comedy
## 7118 Action|Adventure|Animation
## 7119 Drama|Mystery
## 7120 Drama
## 7121 Drama
## 7122 Action|Adventure|Fantasy|Horror|Romance
## 7123 Drama|Fantasy|Mystery|Romance
## 7124 Comedy
## 7125 Drama|Thriller|War
## 7126 Documentary
## 7127 Animation|Drama|Romance
## 7128 Action|Sci-Fi
## 7129 Drama
## 7130 Adventure|Children|Comedy
## 7131 Comedy|Drama
## 7132 Drama|Romance
## 7133 Comedy
## 7134 Comedy
## 7135 Documentary
## 7136 Drama|Romance
## 7137 Drama|Thriller|War
## 7138 Comedy|Drama
## 7139 Drama
## 7140 Adventure|Animation|Children|Fantasy
## 7141 Comedy|Horror|Musical
## 7142 Drama
## 7143 Drama|Romance
## 7144 Action|Drama|War
## 7145 Action|Sci-Fi|Thriller
## 7146 Drama|Mystery|Thriller
## 7147 Adventure|Animation|Children|Comedy|Fantasy
## 7148 Comedy|Romance
## 7149 Horror|Thriller
## 7150 Documentary
## 7151 Sci-Fi|Thriller
## 7152 Drama
## 7153 Action|Fantasy|Horror|Thriller
## 7154 Adventure|Fantasy
## 7155 Action|Comedy|Crime
## 7156 Action|Adventure|Sci-Fi
## 7157 Documentary
## 7158 Horror
## 7159 Horror|Thriller
## 7160 Animation|Fantasy|Thriller
## 7161 Action|Drama
## 7162 Sci-Fi|Thriller
## 7163 Drama|Thriller
## 7164 Drama|Romance
## 7165 Comedy|Drama|Romance
## 7166 Comedy
## 7167 Action|Animation|Comedy|Sci-Fi
## 7168 Drama|Horror|Thriller
## 7169 Adventure|Animation|Fantasy
## 7170 Animation
## 7171 Drama
## 7172 Comedy|Horror
## 7173 Comedy|Drama
## 7174 Drama|War
## 7175 Comedy|Crime|Mystery
## 7176 Comedy|Crime|Drama
## 7177 Comedy|Drama|Romance
## 7178 Drama|Film-Noir|Thriller
## 7179 Drama
## 7180 Action|Adventure|Comedy|Western
## 7181 Adventure|Comedy|Mystery
## 7182 Action|Adventure|Drama
## 7183 Adventure|Animation|Children|Musical
## 7184 Comedy|Drama|Musical|Sci-Fi
## 7185 Comedy
## 7186 Crime|Romance|Thriller
## 7187 Action|Drama|Mystery|Sci-Fi|Thriller
## 7188 Action
## 7189 Crime|Drama|Mystery|Thriller
## 7190 Comedy|Drama
## 7191 Action|Animation|Children|Comedy
## 7192 Action|Mystery|Thriller
## 7193 Animation|Sci-Fi|IMAX
## 7194 Animation|Musical
## 7195 Documentary
## 7196 Action|Crime|Drama|Thriller
## 7197 Documentary|Musical
## 7198 Action|Comedy
## 7199 Comedy|Drama
## 7200 Comedy|Romance
## 7201 Drama|Fantasy|Sci-Fi|Thriller
## 7202 Action|Adventure|Fantasy|Sci-Fi
## 7203 Action|Crime|Drama|Thriller
## 7204 Drama|Musical
## 7205 Comedy
## 7206 Comedy|Drama
## 7207 Documentary
## 7208 Comedy|Drama
## 7209 Drama
## 7210 Action|Drama|War
## 7211 Crime|Drama|Thriller
## 7212 Drama
## 7213 Action|Comedy|Crime
## 7214 Drama|Mystery|Sci-Fi|Thriller
## 7215 Drama|Romance
## 7216 Action|Sci-Fi|Thriller
## 7217 Drama
## 7218 Crime|Drama|Thriller
## 7219 Action|Adventure|Sci-Fi|IMAX
## 7220 Comedy
## 7221 Action|Drama|War
## 7222 Documentary
## 7223 Crime|Drama|Mystery|Thriller
## 7224 Drama
## 7225 Adventure|Comedy|Drama
## 7226 Action|Adventure|Sci-Fi|Thriller
## 7227 Action|Comedy|IMAX
## 7228 Adventure|Fantasy|Musical|Romance
## 7229 Documentary
## 7230 Adventure|Comedy|Crime|Romance
## 7231 Drama|War
## 7232 Comedy|Romance
## 7233 Drama
## 7234 Drama|Musical
## 7235 Action|Animation|Mystery|Sci-Fi
## 7236 Comedy|Horror
## 7237 Adventure|Animation|Children|Drama
## 7238 Action|Adventure|Animation|Drama
## 7239 Comedy|Musical
## 7240 Drama
## 7241 Comedy
## 7242 Drama|Mystery
## 7243 Comedy|Crime
## 7244 Drama|Fantasy
## 7245 Drama
## 7246 Comedy|Romance
## 7247 Action|Adventure|Comedy|Horror
## 7248 Action|Adventure|Comedy|Sci-Fi
## 7249 Comedy
## 7250 Crime|Drama|Thriller
## 7251 Comedy|Romance
## 7252 Adventure|Comedy
## 7253 Documentary
## 7254 Action|Drama|Thriller|War
## 7255 Drama|Romance
## 7256 Crime|Drama|Film-Noir
## 7257 Action|Adventure|Thriller
## 7258 Action|Adventure|Sci-Fi|IMAX
## 7259 Documentary
## 7260 Crime|Drama|Film-Noir|Mystery
## 7261 Comedy|Romance
## 7262 Comedy|Fantasy|Romance
## 7263 Crime|Drama|Thriller
## 7264 Action|Adventure|Animation|Children|Comedy|Romance
## 7265 Action|Drama|Thriller
## 7266 Animation|Comedy
## 7267 Drama
## 7268 Comedy|Drama|Horror
## 7269 Action|Adventure|Animation|Horror
## 7270 Comedy|Drama|Romance
## 7271 Drama
## 7272 Comedy
## 7273 Action|Adventure|Fantasy
## 7274 Action|Drama
## 7275 Adventure|Fantasy|Mystery|Romance|IMAX
## 7276 Drama|War
## 7277 Drama
## 7278 Crime|Mystery
## 7279 Drama|Fantasy
## 7280 Horror|Thriller
## 7281 Western
## 7282 Drama|Horror|Mystery|Thriller
## 7283 Comedy|Drama|Romance
## 7284 Drama|Romance
## 7285 Comedy
## 7286 Adventure|Children|Fantasy|Sci-Fi
## 7287 Mystery|Sci-Fi|Thriller
## 7288 Comedy|Drama|Romance
## 7289 Adventure|Children|Fantasy|Sci-Fi|Thriller
## 7290 Action|Adventure|Sci-Fi|Thriller
## 7291 Comedy|Drama
## 7292 Drama|Musical|Romance
## 7293 Action|Crime|Drama
## 7294 Adventure|Documentary
## 7295 Action|Animation|Sci-Fi
## 7296 Comedy
## 7297 Comedy
## 7298 Drama|Romance
## 7299 Comedy|Romance
## 7300 Drama|Romance|Sci-Fi
## 7301 Comedy|Romance
## 7302 Drama
## 7303 Action|Adventure|Children|Fantasy
## 7304 Action|Comedy|Drama|Thriller
## 7305 Drama
## 7306 Comedy
## 7307 Drama
## 7308 Documentary
## 7309 Comedy
## 7310 Comedy|Drama
## 7311 Fantasy|Horror
## 7312 Comedy
## 7313 Horror|Thriller
## 7314 Crime|Drama|Mystery|Romance|Thriller
## 7315 Adventure|Animation|Sci-Fi
## 7316 Action|Adventure|Thriller
## 7317 Comedy|Sci-Fi
## 7318 Drama|Mystery
## 7319 Documentary
## 7320 Horror|Sci-Fi|Thriller
## 7321 Action|Comedy|Drama
## 7322 Drama
## 7323 Comedy|Horror|Sci-Fi|Thriller
## 7324 Comedy|Crime|Drama|Thriller
## 7325 Comedy
## 7326 Horror|Thriller
## 7327 Action|Sci-Fi|Thriller
## 7328 Animation|Children|Fantasy|IMAX
## 7329 Documentary
## 7330 Drama|Horror
## 7331 Adventure|Animation|Sci-Fi
## 7332 Horror|Thriller
## 7333 Documentary
## 7334 Adventure|Fantasy
## 7335 Comedy|Drama
## 7336 Adventure|Crime|Drama|Western
## 7337 Drama
## 7338 Action|Romance
## 7339 Documentary
## 7340 Comedy|Drama
## 7341 Comedy|Drama
## 7342 Action|Fantasy|Sci-Fi
## 7343 Drama|Horror|Thriller
## 7344 Action|Animation|Comedy|Horror|Thriller
## 7345 Comedy|Drama
## 7346 Comedy
## 7347 Comedy
## 7348 Action|Sci-Fi|Thriller
## 7349 Action|Comedy|Crime
## 7350 Action|Comedy|Horror
## 7351 Action|Crime|Drama|Mystery|Thriller
## 7352 Drama|Romance
## 7353 Documentary
## 7354 Documentary
## 7355 Comedy|Romance
## 7356 Horror
## 7357 Comedy|Horror
## 7358 Adventure|Children|Drama|Fantasy|IMAX
## 7359 Drama
## 7360 Comedy|Drama|Romance
## 7361 Action|Adventure|Drama|War
## 7362 Drama|Romance
## 7363 Drama|Thriller
## 7364 Drama
## 7365 Animation|Comedy|Drama
## 7366 Drama|Romance
## 7367 Animation|Comedy|Sci-Fi
## 7368 Animation|Drama|Mystery|Sci-Fi|Thriller
## 7369 Action|Comedy|Horror|Romance
## 7370 Crime|Horror|Mystery|Thriller
## 7371 Documentary|Musical|IMAX
## 7372 Action|Adventure|Comedy|Fantasy|Horror|Thriller
## 7373 Comedy|Documentary
## 7374 Action|Comedy
## 7375 Comedy|Crime|Drama
## 7376 Action|Animation|Children|Sci-Fi
## 7377 Comedy
## 7378 Adventure|Animation|Children|Comedy|Crime
## 7379 Animation|Children|Drama|Fantasy|IMAX
## 7380 Action|Adventure|Drama|Sci-Fi
## 7381 Animation|Children|Comedy|Fantasy
## 7382 Drama
## 7383 Action|Drama|Sci-Fi|Thriller
## 7384 Drama|Horror|Mystery|Sci-Fi|Thriller
## 7385 Drama|Romance|Thriller
## 7386 Horror|Mystery|Sci-Fi|Thriller
## 7387 Drama
## 7388 Crime|Drama
## 7389 Drama|Fantasy|Horror|Romance|Thriller
## 7390 Drama|Romance|War
## 7391 Action|Crime|Drama|Thriller
## 7392 Animation
## 7393 Drama|Thriller|War
## 7394 Animation|Comedy
## 7395 Comedy|Western
## 7396 Sci-Fi
## 7397 Drama
## 7398 Drama
## 7399 Drama
## 7400 Drama
## 7401 Comedy
## 7402 Adventure|Animation|Children|Comedy|Sci-Fi
## 7403 Drama
## 7404 Crime|Drama|Fantasy|Horror|Thriller
## 7405 Drama
## 7406 Animation|Children|Fantasy|Musical|Romance
## 7407 Drama
## 7408 Action|Drama|Thriller
## 7409 Comedy|Documentary
## 7410 Drama
## 7411 Comedy|Crime|Drama|Romance
## 7412 Comedy|Romance
## 7413 Action|Adventure|Sci-Fi|IMAX
## 7414 Comedy|Romance
## 7415 Action|Crime|Mystery|Thriller
## 7416 Drama|Romance
## 7417 Animation|Children|Comedy|Musical
## 7418 Comedy|Drama|Fantasy
## 7419 Comedy
## 7420 Drama|Horror|Thriller
## 7421 Horror|Thriller
## 7422 Comedy|Drama|Romance
## 7423 Action|Drama|Horror|Thriller
## 7424 Documentary
## 7425 Drama
## 7426 Comedy|Romance
## 7427 Action|Adventure|Drama
## 7428 Action|Crime|Mystery
## 7429 Crime|Drama
## 7430 Crime|Drama
## 7431 Documentary
## 7432 Documentary
## 7433 Action|Horror|Thriller
## 7434 Drama
## 7435 Drama|Horror
## 7436 Comedy
## 7437 Adventure|Animation|Children
## 7438 Action|Crime|Drama|Thriller
## 7439 Action|Animation|Horror
## 7440 Crime|Drama|Thriller
## 7441 Adventure|Animation|Children|Fantasy|Musical
## 7442 Drama
## 7443 Comedy|Drama|Romance
## 7444 Action|Fantasy|Horror|Thriller
## 7445 Children|Fantasy|Musical
## 7446 Action|Animation|Fantasy
## 7447 Comedy|Documentary
## 7448 Comedy|Romance
## 7449 Drama|Thriller
## 7450 Drama|Horror|Mystery|Thriller
## 7451 Comedy|Drama|Romance
## 7452 Children|Drama|Romance
## 7453 Drama
## 7454 Comedy|Drama
## 7455 Horror|Thriller
## 7456 Drama
## 7457 Action|Adventure|Comedy|Drama|Romance
## 7458 Comedy|Romance
## 7459 Horror|Thriller
## 7460 Drama|Mystery|Thriller
## 7461 Animation
## 7462 Drama|Romance
## 7463 Action|Crime|Drama|Mystery|Thriller
## 7464 Adventure|Fantasy
## 7465 Action|Comedy|Crime
## 7466 Drama|Mystery|Thriller
## 7467 Action|Children|Comedy
## 7468 Adventure|Drama|Romance
## 7469 Children|Fantasy|Musical
## 7470 Comedy|Drama|Romance
## 7471 Action|Sci-Fi
## 7472 Documentary
## 7473 Action|Drama|Horror|Sci-Fi|Thriller
## 7474 Drama|Romance|War
## 7475 Comedy|Fantasy
## 7476 Comedy|Crime|Drama|Mystery
## 7477 Mystery|Thriller
## 7478 Comedy|Drama|Romance
## 7479 Drama|Romance
## 7480 Adventure|Fantasy|IMAX
## 7481 Action|Drama|Thriller|War
## 7482 Action|Crime
## 7483 Drama|Horror|Sci-Fi
## 7484 Comedy|Drama
## 7485 Crime|Drama|Thriller
## 7486 Comedy
## 7487 Crime|Drama|Thriller
## 7488 Drama|Romance
## 7489 Horror|Sci-Fi|Thriller
## 7490 Comedy
## 7491 Comedy
## 7492 Action|Comedy|Romance
## 7493 Comedy|Crime|Drama|Thriller
## 7494 Comedy
## 7495 Drama|Horror|War
## 7496 Adventure|Drama
## 7497 Action|Sci-Fi|Thriller
## 7498 Comedy|Drama
## 7499 Horror|Thriller
## 7500 Documentary|Drama
## 7501 Comedy
## 7502 Comedy|Sci-Fi
## 7503 Crime|Drama|Mystery|Thriller
## 7504 Adventure|Animation|Children|Fantasy|IMAX
## 7505 Drama|Mystery
## 7506 Comedy|Crime
## 7507 Action|Adventure|Drama|Fantasy
## 7508 Comedy|Crime|Drama
## 7509 Action|Comedy
## 7510 Crime|Drama|Thriller
## 7511 Action|Comedy|Romance
## 7512 Drama|Horror
## 7513 Documentary
## 7514 Drama|Musical
## 7515 Comedy
## 7516 Action|Drama|War
## 7517 Children|Comedy
## 7518 Comedy|Drama
## 7519 Drama
## 7520 Crime|Drama|Mystery
## 7521 Action|Adventure|Drama|Mystery|Thriller
## 7522 Drama|Romance
## 7523 Comedy|Drama|Romance
## 7524 Horror
## 7525 Comedy|Musical|War
## 7526 Comedy|Documentary
## 7527 Action|Adventure|Sci-Fi|Thriller|IMAX
## 7528 Documentary
## 7529 Fantasy|Horror|Thriller
## 7530 Comedy|Drama
## 7531 Drama|Romance
## 7532 Drama
## 7533 Drama
## 7534 Crime|Drama
## 7535 Action|Adventure|Drama|Romance|War
## 7536 Comedy|Documentary
## 7537 Comedy|Drama|Romance
## 7538 Drama|Romance
## 7539 Action|Comedy
## 7540 Mystery|Thriller
## 7541 Documentary
## 7542 Action|Adventure|Fantasy|Romance|IMAX
## 7543 Comedy|Musical
## 7544 Comedy|Drama
## 7545 Animation|Musical
## 7546 Comedy
## 7547 Comedy|Drama|Romance
## 7548 Comedy
## 7549 Drama|Thriller
## 7550 Comedy|Romance
## 7551 Horror|Sci-Fi|Thriller
## 7552 Drama|Romance
## 7553 Comedy
## 7554 Mystery|Thriller
## 7555 Action|Drama|Thriller|Western
## 7556 Action|Comedy|Thriller
## 7557 Adventure|Animation|Children|Comedy|Fantasy|IMAX
## 7558 Documentary
## 7559 Comedy
## 7560 Drama|Thriller
## 7561 Adventure|Animation|Children|Comedy|Fantasy|IMAX
## 7562 Drama|Romance
## 7563 Comedy|Drama|Fantasy|Romance
## 7564 Action|Adventure|Crime|Drama|Thriller
## 7565 Fantasy|Romance|Thriller|IMAX
## 7566 Documentary
## 7567 Drama
## 7568 Action|Adventure|Fantasy
## 7569 Drama|Thriller
## 7570 Adventure|Fantasy|Horror|Romance|Sci-Fi|Thriller
## 7571 Documentary
## 7572 Animation|Comedy|Fantasy
## 7573 Documentary|Musical
## 7574 Action|Sci-Fi|Thriller
## 7575 Animation|Children|Comedy|Crime
## 7576 Action|Crime|Drama|Mystery|Sci-Fi|Thriller|IMAX
## 7577 Comedy
## 7578 Drama
## 7579 Action|Adventure|Children|Comedy|Fantasy
## 7580 Drama|Romance
## 7581 Action|Comedy|Romance
## 7582 Drama|Mystery
## 7583 Action|Children|Drama
## 7584 Comedy|Drama
## 7585 Horror|Thriller
## 7586 Drama|Thriller
## 7587 Action|Animation
## 7588 Action|Thriller
## 7589 Comedy|Crime|Mystery
## 7590 Comedy|Documentary
## 7591 Drama|Fantasy|Romance|Sci-Fi
## 7592 Comedy
## 7593 Comedy
## 7594 Action
## 7595 Drama|Fantasy|Romance
## 7596 Comedy|Romance
## 7597 Action|Comedy
## 7598 Crime|Documentary
## 7599 Documentary|Musical
## 7600 Action|Adventure|Thriller
## 7601 Action|Comedy|Fantasy|Musical|Romance
## 7602 Crime|Drama
## 7603 Action|Adventure|Drama|Thriller|War
## 7604 Documentary
## 7605 Fantasy|Horror|Mystery|Thriller
## 7606 Action|Horror|Thriller
## 7607 Comedy|Drama
## 7608 Action|Sci-Fi
## 7609 Action|Adventure|Animation|Fantasy|Sci-Fi
## 7610 Drama|Thriller
## 7611 Comedy|Romance
## 7612 Documentary
## 7613 Documentary
## 7614 Action|Adventure|Comedy|Crime|Thriller
## 7615 Comedy|Romance
## 7616 Drama
## 7617 Comedy
## 7618 Action|Horror|Sci-Fi|Thriller|IMAX
## 7619 Drama
## 7620 Crime|Drama|Thriller
## 7621 Comedy|Romance
## 7622 Drama|Romance
## 7623 Drama
## 7624 Comedy|Drama
## 7625 Comedy|Drama|Romance
## 7626 Comedy|Drama|Romance
## 7627 Drama
## 7628 Documentary
## 7629 Adventure|Animation|Fantasy|IMAX
## 7630 Comedy|Drama
## 7631 Comedy
## 7632 Comedy|Crime|Drama
## 7633 Horror|Mystery|Thriller
## 7634 Adventure|Children|Fantasy
## 7635 Drama|Horror|Mystery
## 7636 Adventure|Drama
## 7637 Drama|Mystery|Thriller
## 7638 Horror|Mystery|Thriller
## 7639 Comedy
## 7640 Comedy|Romance
## 7641 Documentary|Mystery
## 7642 Comedy|Romance
## 7643 Documentary
## 7644 Drama|Sci-Fi
## 7645 Drama|Romance|Sci-Fi
## 7646 Animation
## 7647 Comedy|Crime|Romance
## 7648 Comedy|Sci-Fi
## 7649 Action|Adventure|Comedy|Crime|Drama|Film-Noir|Horror|Mystery|Thriller|Western
## 7650 Thriller
## 7651 Action|Comedy|Documentary
## 7652 Documentary|War
## 7653 Documentary
## 7654 Action|Comedy
## 7655 Horror|IMAX
## 7656 Drama|Fantasy
## 7657 Adventure|Drama|Horror|Mystery
## 7658 Horror|Mystery|Thriller
## 7659 Comedy
## 7660 Adventure|Drama|Thriller
## 7661 Action|Animation|Children|Comedy|Sci-Fi|IMAX
## 7662 Drama|Thriller
## 7663 Drama|Thriller
## 7664 Action|Sci-Fi
## 7665 Action|Drama|Thriller
## 7666 Comedy|Drama|Romance
## 7667 Drama
## 7668 Crime|Drama|Romance|Thriller
## 7669 Drama
## 7670 Comedy|Drama
## 7671 Action|Adventure|Fantasy|IMAX
## 7672 Drama
## 7673 Animation|Children|Comedy|Fantasy|Musical|Romance|IMAX
## 7674 Documentary
## 7675 Documentary
## 7676 Drama
## 7677 Comedy|Drama|Romance
## 7678 Crime|Documentary
## 7679 Documentary
## 7680 Horror
## 7681 Crime|Romance
## 7682 Sci-Fi|Thriller
## 7683 Adventure|Comedy|Drama
## 7684 Drama|Fantasy|Romance
## 7685 Comedy|Drama|Romance
## 7686 Adventure|Children|Fantasy
## 7687 Comedy
## 7688 Drama|Thriller
## 7689 Action|Comedy
## 7690 Crime|Drama|Film-Noir
## 7691 Drama|Mystery|Thriller
## 7692 Western
## 7693 Action|Adventure|Sci-Fi|IMAX
## 7694 Drama
## 7695 Comedy|Drama|Romance
## 7696 Drama
## 7697 Drama
## 7698 Comedy|Romance
## 7699 Crime|Thriller
## 7700 Comedy
## 7701 Adventure|Comedy|Fantasy
## 7702 Comedy|Drama|War
## 7703 Documentary
## 7704 Drama|Musical|Romance
## 7705 Comedy
## 7706 Animation|Children|Fantasy
## 7707 Comedy|Horror
## 7708 Children|Comedy
## 7709 Comedy|Drama
## 7710 Documentary
## 7711 Comedy
## 7712 Comedy
## 7713 Documentary
## 7714 Action|Comedy|Crime|Fantasy|Thriller|IMAX
## 7715 Comedy
## 7716 Comedy
## 7717 Action|Fantasy|Western
## 7718 Comedy
## 7719 Adventure|Drama|Fantasy
## 7720 Comedy
## 7721 Animation
## 7722 Action|Sci-Fi|Thriller|Western|IMAX
## 7723 Animation|Children
## 7724 Documentary
## 7725 (no genres listed)
## 7726 Comedy|Drama
## 7727 Comedy|Drama
## 7728 Drama
## 7729 Drama
## 7730 Sci-Fi|Thriller
## 7731 Documentary
## 7732 Documentary
## 7733 Action|Animation|Drama|Sci-Fi
## 7734 Documentary
## 7735 Comedy|Romance
## 7736 Children|Comedy|Crime
## 7737 Comedy|Romance
## 7738 Crime|Drama|Thriller
## 7739 Drama|Horror|Thriller
## 7740 Action|Adventure|Animation|Sci-Fi
## 7741 Drama
## 7742 Drama|Mystery|Thriller
## 7743 Comedy
## 7744 Adventure|Animation|Children|Comedy|Fantasy|Romance
## 7745 Comedy|Thriller
## 7746 Adventure|Comedy|Sci-Fi
## 7747 Crime|Drama
## 7748 Comedy|Drama|Romance
## 7749 Action|Adventure|Animation|Children|Comedy|Western
## 7750 Comedy|Drama
## 7751 Drama|Horror
## 7752 Romance|Sci-Fi|Thriller
## 7753 Documentary|Horror
## 7754 Action|Drama|Thriller
## 7755 Comedy
## 7756 Adventure|Drama
## 7757 Action|Sci-Fi|Thriller|IMAX
## 7758 Action|Sci-Fi|War
## 7759 Adventure|Animation|Comedy|Sci-Fi
## 7760 Drama
## 7761 Action|Adventure|Animation|Children|Comedy|Sci-Fi|IMAX
## 7762 Animation|Children
## 7763 Action|Crime|Drama
## 7764 Comedy|Romance
## 7765 Documentary
## 7766 Fantasy|Horror|Mystery|Thriller
## 7767 Comedy
## 7768 Action|Comedy|Drama
## 7769 Fantasy|Horror
## 7770 Action|Drama|Mystery|Sci-Fi|Thriller
## 7771 Drama|Romance
## 7772 Action|Fantasy|Thriller|IMAX
## 7773 Horror|Thriller
## 7774 Drama|Romance
## 7775 Adventure|Animation|Children|Sci-Fi
## 7776 Documentary
## 7777 Animation|Comedy|Sci-Fi
## 7778 Fantasy|Horror|Thriller
## 7779 Action|Adventure|Crime|Thriller
## 7780 Comedy|Drama
## 7781 Comedy|Drama
## 7782 Comedy
## 7783 Comedy|Crime
## 7784 Animation|Children|Comedy
## 7785 Action
## 7786 Action|Adventure|Mystery|Thriller
## 7787 Comedy|Documentary
## 7788 Comedy
## 7789 Adventure|Animation|Children|Comedy
## 7790 Drama|Sci-Fi
## 7791 Action|Adventure|Drama|Fantasy|IMAX
## 7792 Comedy
## 7793 Comedy
## 7794 Comedy
## 7795 Drama
## 7796 Documentary
## 7797 Drama|Romance
## 7798 Adventure|Documentary
## 7799 Drama
## 7800 Action|Crime|Drama|Thriller|IMAX
## 7801 Animation|Drama|Fantasy
## 7802 Drama|Mystery|War
## 7803 Comedy|Drama|Romance
## 7804 Comedy
## 7805 Action|Horror|Sci-Fi|Thriller
## 7806 Drama
## 7807 Adventure|Fantasy|Sci-Fi
## 7808 Action|Adventure|Fantasy|IMAX
## 7809 Comedy|Fantasy|Romance
## 7810 Drama
## 7811 Action|Crime|Thriller
## 7812 Drama
## 7813 Comedy
## 7814 Action|Sci-Fi|Thriller
## 7815 Action|Comedy|Sci-Fi
## 7816 Drama|Horror|Thriller
## 7817 Crime|Drama|Film-Noir
## 7818 Action|Adventure|Animation|Children|Comedy|IMAX
## 7819 Action|Adventure|Sci-Fi|Thriller|War
## 7820 Comedy|Drama|Romance
## 7821 Comedy|Drama
## 7822 Drama
## 7823 Mystery|Sci-Fi|Thriller|IMAX
## 7824 Children|Musical|Romance
## 7825 Action|Adventure|Sci-Fi
## 7826 Comedy
## 7827 Comedy
## 7828 Comedy
## 7829 Action|Adventure|Sci-Fi|War|IMAX
## 7830 Comedy|Drama|Romance
## 7831 Action|Adventure|Comedy|Fantasy
## 7832 Drama|Musical|Romance
## 7833 Drama
## 7834 Action|Crime|Thriller
## 7835 Comedy|Crime
## 7836 Adventure|Animation|Children|Comedy|IMAX
## 7837 Drama
## 7838 Documentary
## 7839 Crime|Drama|Mystery
## 7840 Drama
## 7841 Drama
## 7842 Crime|Drama|Thriller
## 7843 Action|Adventure|Drama|Fantasy|Mystery|IMAX
## 7844 Crime|Drama|Film-Noir|Thriller
## 7845 Action|Adventure|Sci-Fi|Thriller|War
## 7846 Comedy|Drama|Romance
## 7847 Drama|Romance
## 7848 Comedy|Crime
## 7849 Animation|Children|Comedy
## 7850 Horror
## 7851 Animation|Comedy
## 7852 Animation|Children|Comedy
## 7853 Comedy|Horror|Mystery|Thriller
## 7854 Comedy|Romance
## 7855 Comedy
## 7856 Documentary
## 7857 Action|Drama|Sci-Fi|Thriller
## 7858 Comedy
## 7859 Drama
## 7860 Action|Comedy|Crime
## 7861 Action|Horror|Sci-Fi
## 7862 Horror|Thriller|IMAX
## 7863 Drama
## 7864 Comedy
## 7865 Crime|Drama|Romance
## 7866 Comedy|Horror
## 7867 Drama|Romance|Sci-Fi
## 7868 Comedy
## 7869 Drama
## 7870 Horror
## 7871 Drama|Thriller
## 7872 Action|Adventure|Drama|Thriller
## 7873 Documentary
## 7874 Documentary
## 7875 Drama
## 7876 Comedy|Drama
## 7877 Documentary
## 7878 Documentary
## 7879 Drama
## 7880 Adventure|Comedy
## 7881 Drama
## 7882 Documentary
## 7883 Action|Crime|Horror|Thriller
## 7884 Comedy
## 7885 Comedy
## 7886 Comedy|Drama|Musical
## 7887 Horror|Thriller
## 7888 Sci-Fi|Thriller|IMAX
## 7889 Drama
## 7890 Drama|Romance
## 7891 Action|Adventure|Sci-Fi|IMAX
## 7892 Drama|Film-Noir|Thriller
## 7893 Drama
## 7894 Drama|Thriller
## 7895 Drama
## 7896 Drama
## 7897 Horror|Mystery|Thriller
## 7898 Action|Thriller
## 7899 Comedy|Drama
## 7900 Drama
## 7901 Children|Mystery|Sci-Fi
## 7902 Comedy|Drama|Romance
## 7903 Drama
## 7904 Comedy|Drama|Romance
## 7905 Action|Drama|Sci-Fi|IMAX
## 7906 Documentary
## 7907 Comedy|Drama|Musical
## 7908 Horror|Mystery|Sci-Fi|Thriller
## 7909 Drama
## 7910 Drama|Thriller
## 7911 Drama|Thriller
## 7912 Action|Adventure
## 7913 Crime|Sci-Fi|Thriller
## 7914 Drama
## 7915 Comedy|Drama
## 7916 Drama|Thriller
## 7917 Horror
## 7918 Adventure|Comedy|Thriller
## 7919 Action|Drama|Mystery|Thriller
## 7920 Drama
## 7921 Comedy|Romance
## 7922 Action|Crime|Thriller
## 7923 Action|Animation|Crime
## 7924 Adventure|Animation|Comedy|Fantasy|IMAX
## 7925 Action|Comedy|Crime
## 7926 Drama
## 7927 Action|Crime|Drama|Mystery|Thriller
## 7928 Action|Animation|Mystery|IMAX
## 7929 Documentary
## 7930 Children|Drama|Mystery
## 7931 Crime|Drama|Thriller
## 7932 Action|Drama|Fantasy
## 7933 Comedy
## 7934 Drama
## 7935 Comedy|Drama
## 7936 Children|Comedy|Musical
## 7937 Adventure|Drama|Fantasy|Romance
## 7938 Drama|War
## 7939 Comedy|Drama|Thriller
## 7940 Drama
## 7941 Drama|Romance
## 7942 Action|Drama|Fantasy
## 7943 Children|Comedy|Crime|Drama
## 7944 Comedy
## 7945 Drama
## 7946 Adventure|Animation|Children|Comedy|Fantasy
## 7947 Animation|Children|Comedy|Drama
## 7948 Action|Drama
## 7949 Action|Crime|Film-Noir
## 7950 Action|Adventure
## 7951 Animation|Children|Musical
## 7952 Action|Adventure|Drama|Sci-Fi|Thriller
## 7953 Drama|Romance|Sci-Fi
## 7954 Action|Adventure|Crime|IMAX
## 7955 Action|Adventure|Drama|Thriller|IMAX
## 7956 Action|Adventure|Comedy|Crime|Mystery|Thriller
## 7957 Documentary|Drama
## 7958 Western
## 7959 Drama
## 7960 Comedy|Drama
## 7961 Comedy|Romance
## 7962 Action|Adventure|Thriller|IMAX
## 7963 Comedy|Drama
## 7964 Drama|Thriller
## 7965 Action|Horror|Sci-Fi|Thriller
## 7966 Drama
## 7967 Comedy|Thriller
## 7968 Comedy
## 7969 Action|Crime|Drama|Thriller
## 7970 Documentary
## 7971 Comedy|Musical
## 7972 Children|Drama
## 7973 Drama
## 7974 Drama
## 7975 Comedy|Horror
## 7976 Action|Fantasy|Horror|IMAX
## 7977 Action|Drama
## 7978 Crime|Thriller
## 7979 Comedy|Drama
## 7980 Action|Thriller
## 7981 Drama|Thriller
## 7982 Horror
## 7983 Documentary|Musical
## 7984 Action|Drama|Thriller
## 7985 Horror|Thriller
## 7986 Adventure|Animation|Drama|Mystery|Sci-Fi
## 7987 Action|Adventure|Drama|War
## 7988 Comedy|Drama
## 7989 Action|Comedy|Crime
## 7990 Horror|Thriller
## 7991 Action|Sci-Fi|Thriller
## 7992 Drama
## 7993 Drama|Romance
## 7994 Comedy|Documentary
## 7995 Comedy
## 7996 Comedy
## 7997 Action|Crime|Mystery|Thriller
## 7998 Drama|Romance
## 7999 Comedy
## 8000 Drama|Romance
## 8001 Comedy|Drama|Romance
## 8002 Action|Adventure|Comedy|Sci-Fi|IMAX
## 8003 Drama|Romance|Sci-Fi
## 8004 Comedy
## 8005 Comedy|Western
## 8006 Action|Fantasy|Thriller
## 8007 Drama
## 8008 Comedy|Romance
## 8009 Documentary|War
## 8010 Drama
## 8011 Drama|Thriller
## 8012 Drama
## 8013 Comedy
## 8014 Animation|Fantasy|Musical|IMAX
## 8015 Comedy
## 8016 Comedy|Crime
## 8017 Documentary
## 8018 Action|Comedy|Romance
## 8019 Action|Adventure|Sci-Fi|IMAX
## 8020 Comedy
## 8021 Documentary
## 8022 Comedy|Drama
## 8023 Drama
## 8024 Action|Comedy|Crime
## 8025 Comedy|Drama
## 8026 Action|Sci-Fi|Thriller
## 8027 Comedy
## 8028 Documentary
## 8029 Documentary
## 8030 Action|Adventure|Fantasy|IMAX
## 8031 Action|Comedy|Sci-Fi
## 8032 Comedy
## 8033 Action|Crime
## 8034 Comedy|Horror|Sci-Fi|Thriller
## 8035 Comedy|Drama
## 8036 Comedy
## 8037 Mystery|Thriller
## 8038 Action|Thriller
## 8039 Adventure|Comedy|Fantasy
## 8040 Action|Sci-Fi|Thriller|IMAX
## 8041 Documentary
## 8042 Comedy|Drama
## 8043 Comedy|Romance
## 8044 Comedy
## 8045 Drama
## 8046 Drama|Sci-Fi
## 8047 Comedy|Horror|IMAX
## 8048 Action|Adventure|Fantasy
## 8049 Drama|Thriller
## 8050 Crime|Drama
## 8051 Comedy
## 8052 Action|Comedy|Sci-Fi|IMAX
## 8053 Action|Adventure|Drama
## 8054 Drama|Mystery|Sci-Fi
## 8055 Adventure|Animation|Children|Comedy
## 8056 Action|Horror|Sci-Fi|IMAX
## 8057 Comedy|Crime|Drama
## 8058 Drama|Thriller
## 8059 Drama|Romance
## 8060 Comedy|Crime|Musical
## 8061 Comedy
## 8062 Comedy|Drama|Romance
## 8063 Crime|Drama|Thriller
## 8064 Comedy|Drama
## 8065 Comedy|Drama
## 8066 Adventure|Animation|Children|Comedy|IMAX
## 8067 Fantasy
## 8068 Fantasy
## 8069 Comedy|Drama
## 8070 Action|Adventure|Animation|Children
## 8071 Action|Adventure|Animation|Sci-Fi|Thriller
## 8072 Action|Adventure|Animation|Children
## 8073 Action|Adventure|Animation|Sci-Fi
## 8074 Comedy|Drama|Romance
## 8075 Comedy
## 8076 Action|Fantasy|Horror|Thriller
## 8077 Comedy|Drama|Musical|IMAX
## 8078 Comedy|Drama|Romance
## 8079 Animation|Children|Comedy|Fantasy
## 8080 Adventure|Animation|Children|Comedy
## 8081 Animation|Children
## 8082 Animation|Comedy|Musical
## 8083 Comedy|Fantasy
## 8084 Comedy|Drama|Romance
## 8085 Drama|Romance
## 8086 Action|Adventure|Animation
## 8087 Action|Adventure|Animation
## 8088 Action|Adventure|Animation
## 8089 Crime|Drama|Thriller
## 8090 Action|Adventure|Sci-Fi|IMAX
## 8091 Adventure|Animation|Comedy
## 8092 Drama|Fantasy
## 8093 Drama
## 8094 Crime|Drama|Thriller
## 8095 Animation|Children
## 8096 Comedy|Sci-Fi
## 8097 Children|Musical|Mystery
## 8098 Comedy
## 8099 Comedy
## 8100 Crime|Thriller
## 8101 Action|Adventure|Animation
## 8102 Action|Adventure|Animation
## 8103 Animation|Children|Comedy
## 8104 Comedy|Fantasy|Romance
## 8105 Action|Sci-Fi|Thriller
## 8106 Comedy
## 8107 Action|Adventure|Animation
## 8108 Action|Adventure|Animation
## 8109 Action|Adventure|Animation
## 8110 Action|Adventure|Animation
## 8111 Drama
## 8112 Drama
## 8113 Action|Adventure|Thriller|IMAX
## 8114 Comedy
## 8115 Crime|Thriller
## 8116 Documentary
## 8117 Adventure|Animation|Comedy
## 8118 Comedy|Drama|Romance
## 8119 Drama
## 8120 Action|Thriller
## 8121 Crime|Drama
## 8122 Comedy|Horror
## 8123 Comedy|Drama
## 8124 Documentary
## 8125 Horror|Thriller
## 8126 Comedy|Romance
## 8127 Documentary
## 8128 Comedy
## 8129 Comedy|Musical
## 8130 Action|Thriller
## 8131 Documentary
## 8132 Action|Crime|Sci-Fi
## 8133 Comedy
## 8134 Horror|Thriller
## 8135 Comedy|Drama|Sci-Fi
## 8136 Documentary
## 8137 Action|Horror|Sci-Fi|IMAX
## 8138 Comedy|Romance
## 8139 Drama
## 8140 Action|Sci-Fi
## 8141 Adventure|Comedy|Fantasy|Musical|Romance
## 8142 Crime|Drama|Thriller
## 8143 Horror|Thriller
## 8144 Drama|Romance
## 8145 Drama
## 8146 Drama|Fantasy|Musical|Mystery|Sci-Fi
## 8147 Drama|Musical
## 8148 Action|Crime|Drama|Thriller
## 8149 Thriller
## 8150 Documentary
## 8151 Drama|Romance
## 8152 Adventure|Documentary|Drama
## 8153 Documentary
## 8154 Horror|Thriller
## 8155 Animation|Children|Comedy
## 8156 Documentary
## 8157 Drama
## 8158 Drama|Thriller
## 8159 Comedy|Crime
## 8160 Comedy|Drama
## 8161 Documentary
## 8162 Documentary
## 8163 Action|Drama|Thriller
## 8164 Drama|Horror|Thriller
## 8165 Documentary
## 8166 Documentary
## 8167 Action|Crime|Mystery|Thriller
## 8168 Documentary
## 8169 Drama|Sci-Fi|IMAX
## 8170 Action|Adventure|Comedy|Documentary|Fantasy
## 8171 Documentary
## 8172 Drama|War
## 8173 Action|Comedy
## 8174 Comedy|Drama
## 8175 Crime|Drama|Thriller
## 8176 Documentary
## 8177 Drama
## 8178 Drama
## 8179 Animation|Comedy
## 8180 Comedy|Drama
## 8181 Drama
## 8182 Drama
## 8183 Adventure|Drama|IMAX
## 8184 Crime|Drama|Horror|Thriller
## 8185 Drama
## 8186 Comedy|Romance
## 8187 Drama|Romance
## 8188 Comedy|Documentary
## 8189 Documentary
## 8190 Action|Animation|Sci-Fi
## 8191 Drama
## 8192 Drama|War
## 8193 Comedy
## 8194 Comedy|Horror|Romance
## 8195 Comedy|Drama|Romance
## 8196 Adventure|Animation|Children|Fantasy|IMAX
## 8197 Comedy
## 8198 Crime|Drama|Thriller
## 8199 Action|Sci-Fi|Thriller
## 8200 Children|Comedy|Drama|Musical
## 8201 Children|Comedy|Drama
## 8202 Drama|Mystery|Thriller
## 8203 Animation|Comedy|Romance
## 8204 Drama
## 8205 Drama
## 8206 Animation|Drama|Romance
## 8207 Action|Animation|Sci-Fi
## 8208 Comedy|Musical
## 8209 Action|Animation
## 8210 Documentary
## 8211 Drama|Musical
## 8212 Adventure|Fantasy|IMAX
## 8213 Action|Fantasy
## 8214 Comedy|Drama
## 8215 Comedy|Romance
## 8216 Drama
## 8217 Drama|Romance
## 8218 Action|Drama|Thriller
## 8219 Drama|Thriller
## 8220 Action|Crime|Drama
## 8221 Comedy|Horror|Romance
## 8222 Comedy|Drama
## 8223 Comedy|Drama|Romance
## 8224 Adventure|Musical|Romance
## 8225 Comedy
## 8226 Action|Crime|Thriller
## 8227 Action|Drama|Western
## 8228 Drama
## 8229 Drama|Thriller
## 8230 Drama|Musical|Romance|IMAX
## 8231 Comedy|Drama
## 8232 Comedy|Musical
## 8233 Adventure|Musical
## 8234 Drama
## 8235 Horror|Thriller
## 8236 Action|Adventure|Thriller
## 8237 Comedy
## 8238 Comedy|Fantasy|Horror
## 8239 Documentary
## 8240 Action|Horror|Thriller
## 8241 Drama
## 8242 Drama|Sci-Fi
## 8243 Drama
## 8244 Horror
## 8245 Drama
## 8246 Action|Crime|Drama
## 8247 Thriller
## 8248 Animation|Comedy|Drama|Fantasy|Sci-Fi
## 8249 Documentary
## 8250 Documentary
## 8251 Action|Animation
## 8252 Comedy|Documentary|Musical
## 8253 Documentary
## 8254 Horror
## 8255 Romance|Sci-Fi|Thriller
## 8256 Crime|Drama|Thriller
## 8257 Drama
## 8258 Documentary
## 8259 Documentary
## 8260 Comedy
## 8261 Documentary
## 8262 Comedy
## 8263 Action|Fantasy|Horror|IMAX
## 8264 Comedy|Drama
## 8265 Drama
## 8266 Action|Thriller
## 8267 Drama|Horror
## 8268 Comedy|Crime
## 8269 Documentary
## 8270 Crime|Drama|Mystery|Thriller
## 8271 Comedy|Crime
## 8272 Sci-Fi
## 8273 Drama|Fantasy|Romance
## 8274 Action|Crime|Thriller|IMAX
## 8275 Documentary
## 8276 Drama|Mystery|Romance
## 8277 Documentary
## 8278 Documentary
## 8279 Documentary
## 8280 Drama|Romance
## 8281 Documentary
## 8282 Comedy|Drama
## 8283 Adventure|Fantasy|IMAX
## 8284 Drama
## 8285 Action|Adventure|Sci-Fi|Thriller|IMAX
## 8286 Drama|Mystery|Thriller
## 8287 Documentary
## 8288 Action|Adventure|Fantasy|IMAX
## 8289 Adventure|Animation|Comedy
## 8290 Comedy
## 8291 Comedy|Crime|Drama
## 8292 Drama|Thriller
## 8293 Action|Thriller
## 8294 Comedy|Drama|Romance
## 8295 Crime|Drama
## 8296 Comedy|Fantasy|Thriller
## 8297 Drama
## 8298 Action|Adventure|Romance
## 8299 Comedy|Romance
## 8300 Crime|Thriller
## 8301 Crime|Documentary
## 8302 Action|Adventure|Sci-Fi|IMAX
## 8303 Adventure|Drama|Thriller
## 8304 Drama
## 8305 Documentary|Drama
## 8306 Documentary
## 8307 Animation|Fantasy
## 8308 Action|Comedy|Crime
## 8309 Action|Comedy
## 8310 Action|Sci-Fi|Thriller|IMAX
## 8311 Comedy|Drama
## 8312 Adventure|Crime|Drama
## 8313 Comedy
## 8314 Action|Adventure
## 8315 Crime|Thriller
## 8316 Comedy|Drama
## 8317 Drama|Mystery|Thriller
## 8318 Drama
## 8319 Action|Adventure|Sci-Fi|IMAX
## 8320 Drama|Mystery
## 8321 Comedy
## 8322 Documentary
## 8323 Adventure|Comedy
## 8324 Drama|Thriller
## 8325 Comedy
## 8326 Action|Crime|Thriller|IMAX
## 8327 Adventure|Animation|Fantasy
## 8328 Drama|Mystery|Romance
## 8329 Drama
## 8330 Comedy|Drama
## 8331 Drama
## 8332 Action|Adventure|Sci-Fi|IMAX
## 8333 Crime|Mystery|Thriller
## 8334 Drama
## 8335 Comedy|Drama
## 8336 Drama
## 8337 Action|Adventure|Fantasy|Sci-Fi|IMAX
## 8338 Comedy
## 8339 Documentary
## 8340 Crime|Drama
## 8341 Adventure|Animation|Comedy
## 8342 Action|Adventure|Animation
## 8343 Comedy|Romance
## 8344 Action|Adventure|Sci-Fi|IMAX
## 8345 Thriller
## 8346 Action|Drama|Horror|IMAX
## 8347 Action|Drama|Sci-Fi|IMAX
## 8348 Drama
## 8349 Horror|Thriller
## 8350 Animation|Children|Comedy|IMAX
## 8351 Action|Drama|Thriller|IMAX
## 8352 Action|Comedy|Sci-Fi
## 8353 Action|Comedy|Crime
## 8354 Action|Adventure|Western|IMAX
## 8355 Documentary
## 8356 Crime|Drama|Mystery|Thriller
## 8357 Comedy|Romance
## 8358 Comedy|Drama|Romance
## 8359 Comedy|Drama
## 8360 Sci-Fi
## 8361 Drama
## 8362 Action|Comedy|Fantasy
## 8363 Action|Adventure|Animation|Fantasy|Sci-Fi
## 8364 Comedy
## 8365 Horror|Thriller
## 8366 Drama
## 8367 Adventure|Animation|Children|Comedy|Fantasy
## 8368 Action|Adventure|Fantasy|Sci-Fi
## 8369 Comedy|Drama|Romance
## 8370 Action|Comedy|Crime|Thriller
## 8371 Action|Crime
## 8372 Comedy
## 8373 Comedy|Drama
## 8374 Action|Comedy|Crime
## 8375 Drama
## 8376 Comedy|Drama
## 8377 Comedy
## 8378 Adventure|Children|Fantasy
## 8379 Animation|Children|Comedy
## 8380 Comedy
## 8381 Drama
## 8382 Action|IMAX
## 8383 Comedy|Crime
## 8384 Comedy
## 8385 Action|Comedy|Crime
## 8386 Action|Sci-Fi|Thriller|IMAX
## 8387 Adventure|Animation|Comedy
## 8388 Documentary
## 8389 Animation|Drama|Romance
## 8390 Drama
## 8391 Action|Adventure|Drama|IMAX
## 8392 Drama
## 8393 Drama
## 8394 Comedy
## 8395 Drama|Fantasy|Romance
## 8396 Action|Animation|Sci-Fi
## 8397 Crime|Drama|Thriller
## 8398 Horror|Thriller
## 8399 Drama
## 8400 Documentary
## 8401 Drama
## 8402 Comedy|Musical
## 8403 Documentary
## 8404 Documentary
## 8405 Action|Crime
## 8406 Action|Sci-Fi|IMAX
## 8407 Comedy|Drama|Romance
## 8408 Drama|Mystery|Thriller
## 8409 Drama|Thriller
## 8410 Comedy|Romance
## 8411 Action|Drama
## 8412 Action|Comedy|Crime
## 8413 Drama
## 8414 Comedy
## 8415 Action|Drama|War
## 8416 Adventure|Drama
## 8417 Comedy|Drama|Romance
## 8418 Comedy|Drama|Romance
## 8419 Drama|Fantasy
## 8420 Adventure|Comedy
## 8421 Crime|Drama|Thriller
## 8422 Drama|Romance
## 8423 Documentary
## 8424 Animation|Children|Comedy|Fantasy
## 8425 Adventure|Drama|Thriller|IMAX
## 8426 Action|Crime|Thriller
## 8427 Comedy|Crime|Drama
## 8428 Comedy|Romance
## 8429 Drama|Horror
## 8430 Crime|Drama|Thriller
## 8431 Horror
## 8432 Animation|Sci-Fi
## 8433 Drama
## 8434 Action|Adventure|Drama
## 8435 Action|Adventure|Sci-Fi|IMAX
## 8436 Crime|Horror|Mystery|Romance|Thriller
## 8437 Animation
## 8438 Animation|Children|Comedy
## 8439 Comedy
## 8440 Action|Adventure|Fantasy|IMAX
## 8441 Drama
## 8442 Comedy
## 8443 Drama
## 8444 Drama
## 8445 Documentary
## 8446 Comedy|Drama|Romance
## 8447 Documentary
## 8448 Comedy|Documentary|Drama
## 8449 Drama|Thriller
## 8450 Comedy|Drama
## 8451 Children|Drama|War
## 8452 Drama
## 8453 Action|Adventure|Animation|Comedy|Fantasy
## 8454 Action|Adventure|Animation|Fantasy
## 8455 Action|Adventure|Sci-Fi|IMAX
## 8456 Adventure|Fantasy|IMAX
## 8457 Action|Adventure|Fantasy
## 8458 Comedy
## 8459 Action|Comedy|Romance
## 8460 Adventure|Drama|Sci-Fi
## 8461 Adventure|Animation|Comedy|Fantasy|Musical|Romance
## 8462 Action|Animation|Sci-Fi|Western
## 8463 Drama
## 8464 Comedy|Crime|Drama
## 8465 Drama
## 8466 Horror
## 8467 Action|Animation|Drama
## 8468 Comedy|Drama
## 8469 Crime|Drama
## 8470 Adventure|Comedy|Drama
## 8471 Drama|Romance|Sci-Fi
## 8472 Documentary
## 8473 Comedy|Drama|Horror
## 8474 Action|Drama|Thriller|War
## 8475 Action|Drama
## 8476 Comedy|Drama|Romance
## 8477 Comedy|Drama
## 8478 Action|Drama|Mystery
## 8479 Comedy
## 8480 Documentary
## 8481 Action|Drama|Sci-Fi
## 8482 Comedy|Romance
## 8483 Comedy|Crime
## 8484 Comedy
## 8485 Drama|Mystery|Romance
## 8486 Animation|Drama
## 8487 Documentary
## 8488 Thriller
## 8489 Comedy
## 8490 Horror|Thriller
## 8491 Drama|Horror|Romance
## 8492 Documentary
## 8493 Thriller
## 8494 Action|Animation|Fantasy|IMAX
## 8495 Drama
## 8496 Animation|Children
## 8497 Adventure|Documentary
## 8498 Action|Adventure|Animation|Children
## 8499 Action|Comedy
## 8500 Action|Drama|Thriller|IMAX
## 8501 Adventure|Romance|Sci-Fi|IMAX
## 8502 Drama
## 8503 Horror|Thriller
## 8504 Horror
## 8505 Comedy|Drama|Musical|Romance
## 8506 Comedy
## 8507 Drama
## 8508 Comedy
## 8509 Drama
## 8510 Action|Fantasy|Sci-Fi|IMAX
## 8511 Drama|War
## 8512 Comedy|Drama
## 8513 Drama
## 8514 Mystery|Thriller
## 8515 Action|Adventure|Animation|Fantasy
## 8516 Comedy|Drama|Romance
## 8517 Action|Drama|War
## 8518 Action|Adventure|Animation|Children|Comedy|Fantasy
## 8519 Action|Crime|Sci-Fi|IMAX
## 8520 Crime
## 8521 Action|Adventure|Animation|Crime|Sci-Fi
## 8522 Drama|Mystery
## 8523 Adventure|Comedy|Fantasy
## 8524 Action|Crime|Fantasy
## 8525 Drama
## 8526 Comedy
## 8527 Drama|Fantasy|Sci-Fi
## 8528 Drama|Fantasy|Mystery
## 8529 Documentary|Musical
## 8530 Drama
## 8531 Crime|Drama|Thriller
## 8532 Comedy
## 8533 Comedy|Romance
## 8534 Comedy|Romance
## 8535 Comedy|Drama
## 8536 Comedy|Romance
## 8537 Sci-Fi|IMAX
## 8538 Comedy
## 8539 Action|Mystery|Thriller
## 8540 Action|Drama|War|IMAX
## 8541 Documentary
## 8542 Comedy|Romance
## 8543 Comedy|Thriller
## 8544 Adventure|Animation|Comedy
## 8545 Horror|Sci-Fi|Thriller
## 8546 Action|Crime|Drama|IMAX
## 8547 Comedy|Drama|Romance
## 8548 Comedy|Crime|Drama
## 8549 Comedy
## 8550 Drama
## 8551 Action|Adventure|Sci-Fi|IMAX
## 8552 Drama
## 8553 Adventure|Drama|IMAX
## 8554 Comedy|Documentary
## 8555 Adventure|Comedy|Crime
## 8556 Comedy|Drama
## 8557 Adventure|Drama|Horror
## 8558 Drama
## 8559 Children|Comedy|Drama
## 8560 Action|Crime|Thriller
## 8561 Action|Sci-Fi|IMAX
## 8562 Comedy|Drama
## 8563 Horror
## 8564 Drama|Thriller
## 8565 Comedy|Fantasy
## 8566 Adventure|Animation|Children|Comedy
## 8567 Drama|Sci-Fi|IMAX
## 8568 Drama|Horror|Mystery
## 8569 Documentary
## 8570 Comedy|Romance
## 8571 Action|Animation|Children|Comedy|Musical
## 8572 Action|Crime|Drama
## 8573 Drama|Thriller
## 8574 Drama
## 8575 Adventure|Comedy|Drama
## 8576 Drama
## 8577 Comedy
## 8578 Documentary
## 8579 Documentary|Sci-Fi
## 8580 Drama
## 8581 Drama|Romance
## 8582 Action|Sci-Fi
## 8583 Action|Adventure|Sci-Fi
## 8584 Action|Adventure|Sci-Fi|IMAX
## 8585 Thriller
## 8586 Comedy
## 8587 Thriller
## 8588 Comedy
## 8589 Drama
## 8590 Comedy
## 8591 Comedy|Romance
## 8592 Comedy|Drama
## 8593 Action|Adventure|Children|IMAX
## 8594 Action|Comedy|Horror
## 8595 Comedy|Romance
## 8596 Comedy|Western
## 8597 Action|Sci-Fi|IMAX
## 8598 Action|Adventure|Thriller
## 8599 Comedy|Drama
## 8600 Drama
## 8601 Drama|Romance
## 8602 Action|Horror
## 8603 Action|Animation|Children
## 8604 Drama
## 8605 Drama
## 8606 Comedy
## 8607 Action|Comedy|Crime
## 8608 Action|Crime|Thriller
## 8609 Action|Adventure|Animation
## 8610 Comedy|Drama
## 8611 Horror|Mystery
## 8612 Drama
## 8613 Comedy|Romance
## 8614 Documentary
## 8615 Action|Adventure|Sci-Fi
## 8616 Documentary
## 8617 Comedy|Drama|Mystery
## 8618 Comedy|Romance
## 8619 Adventure|Animation|Comedy
## 8620 Comedy
## 8621 Drama|Horror|Thriller
## 8622 Drama
## 8623 Drama
## 8624 Drama|Thriller
## 8625 Comedy|Drama|Romance
## 8626 Documentary
## 8627 Sci-Fi
## 8628 Documentary
## 8629 Horror|Thriller
## 8630 Drama|Mystery
## 8631 Drama
## 8632 Comedy|Drama|Romance
## 8633 Comedy
## 8634 Comedy
## 8635 Drama|Sci-Fi
## 8636 Action|Horror|Thriller
## 8637 Comedy|Drama|Romance
## 8638 Action|Adventure|Sci-Fi
## 8639 Action|Adventure
## 8640 Action|Adventure
## 8641 Documentary
## 8642 Thriller
## 8643 Comedy|Drama
## 8644 Thriller
## 8645 Drama|Musical
## 8646 Documentary
## 8647 Comedy|Drama|Romance
## 8648 Comedy|Horror|Thriller
## 8649 Comedy|Drama
## 8650 Action|Adventure|Sci-Fi
## 8651 Action|Adventure|Comedy
## 8652 Drama|Sci-Fi
## 8653 Action|Crime|Drama
## 8654 Comedy|Crime
## 8655 Comedy
## 8656 Horror|Thriller
## 8657 Action|Crime|Thriller
## 8658 Horror|Thriller
## 8659 Drama
## 8660 Drama|Mystery|Sci-Fi|Thriller
## 8661 Horror|Thriller
## 8662 Comedy|Drama|Romance
## 8663 Thriller
## 8664 Documentary
## 8665 Comedy|Drama
## 8666 Horror
## 8667 Crime|Drama|Thriller
## 8668 Drama
## 8669 Animation|Comedy
## 8670 Comedy
## 8671 Action|Mystery|Sci-Fi
## 8672 Documentary
## 8673 Comedy|Romance
## 8674 Drama
## 8675 Drama|Romance|Thriller
## 8676 Crime|Drama|Thriller
## 8677 Adventure|Animation|Children|Comedy|Fantasy
## 8678 Comedy|Drama
## 8679 Documentary
## 8680 Action|War
## 8681 Comedy|Drama|Horror
## 8682 Horror|Mystery
## 8683 Comedy|Romance
## 8684 Horror|War
## 8685 Action|Drama|Fantasy
## 8686 Action|Comedy|Crime
## 8687 Crime|Drama|Thriller
## 8688 Action|Mystery|Sci-Fi|Thriller
## 8689 Comedy|Horror
## 8690 Children|Drama
## 8691 Drama|Romance
## 8692 Action|Thriller
## 8693 Action|Crime
## 8694 Drama
## 8695 Drama
## 8696 Action|Drama|War
## 8697 Drama|Western
## 8698 Comedy
## 8699 Comedy|Romance
## 8700 Horror
## 8701 Crime|Drama|Thriller
## 8702 Action|Animation|Comedy
## 8703 Horror
## 8704 Adventure|Animation|Romance
## 8705 Crime|Drama|Sci-Fi|Thriller
## 8706 Drama|Sci-Fi|Thriller
## 8707 Animation|Comedy
## 8708 Animation|Fantasy
## 8709 Action|Animation|Children|Fantasy|Sci-Fi
## 8710 Crime|Drama
## 8711 Drama
## 8712 Drama
## 8713 Crime|Drama|Thriller
## 8714 Thriller
## 8715 Comedy|Romance
## 8716 Action|Comedy|Crime
## 8717 Horror
## 8718 Drama
## 8719 Drama|Thriller|War
## 8720 Comedy|Crime|Drama|Mystery|Romance
## 8721 Adventure|Sci-Fi|Thriller
## 8722 Comedy|Romance
## 8723 Drama|Romance
## 8724 Action|Adventure|Drama
## 8725 Comedy|Drama|Thriller
## 8726 Action|Animation|Comedy
## 8727 Comedy
## 8728 Comedy|Drama
## 8729 Drama
## 8730 Drama|Horror|Mystery|Thriller
## 8731 Comedy|Drama
## 8732 Drama|Romance
## 8733 (no genres listed)
## 8734 Horror
## 8735 Animation|Children|Fantasy
## 8736 Drama
## 8737 Comedy
## 8738 Action|Adventure|Drama|Sci-Fi|Thriller
## 8739 Documentary
## 8740 Comedy|Crime
## 8741 Adventure|Animation|Children|Comedy
## 8742 Action|Drama|War
## 8743 Action|Thriller
## 8744 Comedy|Crime|Thriller
## 8745 Comedy
## 8746 Drama|Thriller
## 8747 Horror|Mystery
## 8748 Crime|Drama|Thriller
## 8749 Horror|Mystery|Thriller
## 8750 Crime|Drama|Mystery|Thriller
## 8751 Animation|Fantasy
## 8752 Adventure|Fantasy
## 8753 Drama
## 8754 Drama|War
## 8755 Comedy|Romance
## 8756 Horror|Romance|Thriller
## 8757 Comedy
## 8758 Action|Crime|Drama|Thriller
## 8759 Drama
## 8760 Comedy
## 8761 Drama
## 8762 Children|Comedy|Fantasy|Musical
## 8763 Comedy|Drama
## 8764 Action|Comedy
## 8765 Action|Adventure|Comedy|Crime
## 8766 Adventure|Children|Comedy|Fantasy
## 8767 Adventure|Children|Fantasy
## 8768 Comedy|Drama|Romance|Sci-Fi
## 8769 Action|Thriller
## 8770 Action|Crime|Thriller
## 8771 Action|Crime|Drama|Mystery|Thriller
## 8772 Action|Crime|Drama
## 8773 Action|Adventure|Sci-Fi|Thriller
## 8774 Comedy
## 8775 Documentary|War
## 8776 Comedy|Horror
## 8777 Horror|Mystery|Thriller
## 8778 Documentary
## 8779 Horror
## 8780 Drama|Romance
## 8781 Drama
## 8782 Action|Drama|Thriller
## 8783 Action|Adventure|Sci-Fi|Thriller
## 8784 Action|Adventure|Fantasy|Sci-Fi|IMAX
## 8785 (no genres listed)
## 8786 Action|Adventure|Fantasy
## 8787 Action|Adventure|Sci-Fi
## 8788 Action|Adventure|Sci-Fi
## 8789 Action|Adventure|Fantasy|Sci-Fi
## 8790 Action|Adventure|Comedy|Sci-Fi
## 8791 Action|Sci-Fi|Thriller
## 8792 Action|Adventure|Fantasy|Sci-Fi
## 8793 Children|Comedy|Romance
## 8794 Comedy
## 8795 Drama
## 8796 Drama
## 8797 Crime|Drama|Thriller
## 8798 Drama|Romance
## 8799 Animation|Children|Fantasy
## 8800 (no genres listed)
## 8801 Action
## 8802 Action|Adventure|Drama|War
## 8803 Comedy
## 8804 Comedy|Crime|Romance
## 8805 Sci-Fi|Thriller
## 8806 Comedy
## 8807 Drama|Romance
## 8808 Drama
## 8809 Comedy|Drama
## 8810 Drama|Mystery|Thriller
## 8811 Comedy|Documentary
## 8812 Documentary
## 8813 Documentary
## 8814 Documentary
## 8815 Drama
## 8816 Comedy
## 8817 Comedy|Drama
## 8818 Drama
## 8819 Comedy
## 8820 Comedy
## 8821 Drama|Thriller
## 8822 Thriller
## 8823 Drama|Romance
## 8824 Comedy|Documentary|Drama
## 8825 Western
## 8826 Drama|Mystery|Romance
## 8827 Comedy
## 8828 Mystery|Thriller
## 8829 Drama
## 8830 (no genres listed)
## 8831 (no genres listed)
## 8832 Comedy
## 8833 Drama
## 8834 Comedy|Drama|Fantasy|Sci-Fi
## 8835 (no genres listed)
## 8836 Comedy
## 8837 Comedy|Crime|Drama|Romance
## 8838 Drama
## 8839 Comedy|Drama
## 8840 Comedy
## 8841 Drama
## 8842 Action
## 8843 Drama
## 8844 Comedy
## 8845 Action|Crime|Drama|Thriller
## 8846 Children|Drama|Fantasy|Romance
## 8847 Action|Crime|Drama|Thriller
## 8848 Comedy|Drama|Fantasy
## 8849 Documentary
## 8850 Horror|Thriller
## 8851 Adventure|Children|Fantasy
## 8852 Comedy|Drama
## 8853 Action|Sci-Fi|Thriller
## 8854 Adventure|Animation|Children|Comedy|Fantasy|Sci-Fi
## 8855 Animation|Children
## 8856 Drama|Sci-Fi
## 8857 Drama
## 8858 Drama
## 8859 Action|Crime|Thriller
## 8860 Drama|Horror|Thriller
## 8861 Horror
## 8862 Drama
## 8863 Comedy
## 8864 Documentary
## 8865 Comedy|Crime
## 8866 Drama
## 8867 Horror
## 8868 Action|Adventure
## 8869 Documentary
## 8870 Drama
## 8871 Comedy|Drama
## 8872 Action|Adventure|Children|Mystery|Sci-Fi
## 8873 Documentary
## 8874 Drama|Thriller
## 8875 Action|Comedy|Crime
## 8876 Documentary|Drama
## 8877 Documentary
## 8878 Action|Adventure|Drama
## 8879 Drama|Fantasy|Romance
## 8880 Comedy|Romance
## 8881 Comedy|Drama
## 8882 Drama
## 8883 (no genres listed)
## 8884 Action|Crime|Drama|Mystery|Thriller
## 8885 Action|Drama|Thriller
## 8886 Comedy|Drama
## 8887 Comedy
## 8888 (no genres listed)
## 8889 Drama
## 8890 Action|Crime|Thriller
## 8891 Comedy|Drama
## 8892 Documentary
## 8893 Drama|Thriller
## 8894 Horror|Sci-Fi|Thriller
## 8895 Comedy
## 8896 Comedy|Drama
## 8897 Drama|Romance
## 8898 Comedy|Romance|Sci-Fi
## 8899 Drama|Horror|Thriller
## 8900 Action|Comedy
## 8901 Horror
## 8902 (no genres listed)
## 8903 Adventure|Drama|Sci-Fi
## 8904 Thriller
## 8905 Action|Comedy|Fantasy|Sci-Fi
## 8906 Action|Thriller
## 8907 Action|Comedy|Crime
## 8908 Comedy|Romance
## 8909 Comedy|Drama|Romance
## 8910 Comedy
## 8911 Comedy
## 8912 Adventure|Animation|Children|Comedy|Drama|Fantasy
## 8913 Documentary
## 8914 Drama
## 8915 Adventure|Sci-Fi
## 8916 Action|Comedy|Sci-Fi
## 8917 Adventure|Children|Comedy
## 8918 Adventure|Children|Comedy|Sci-Fi
## 8919 Adventure|Children|Comedy
## 8920 Animation|Comedy
## 8921 Comedy|Thriller
## 8922 Action|Mystery|Sci-Fi|Thriller
## 8923 Action|Adventure|Fantasy
## 8924 Action|Crime|Sci-Fi
## 8925 Action|Adventure|Sci-Fi
## 8926 Action|Adventure|Sci-Fi
## 8927 Comedy
## 8928 Adventure|Animation|Children|Comedy
## 8929 Adventure|Animation|Children|Comedy|Fantasy
## 8930 Crime|Drama
## 8931 Action|Adventure|Crime
## 8932 Horror|Sci-Fi
## 8933 Comedy
## 8934 Comedy
## 8935 Action|Animation|Sci-Fi
## 8936 Drama
## 8937 (no genres listed)
## 8938 Adventure|Comedy
## 8939 Horror|Thriller
## 8940 Drama
## 8941 Comedy
## 8942 Action|Adventure|Sci-Fi
## 8943 Action|Comedy
## 8944 Action|Adventure|Fantasy|Sci-Fi
## 8945 Documentary
## 8946 Drama
## 8947 Comedy|Drama
## 8948 Adventure|Drama|Fantasy
## 8949 Action|Adventure|Comedy
## 8950 Comedy
## 8951 Adventure|Drama|Thriller
## 8952 Drama
## 8953 Comedy
## 8954 Horror|Thriller
## 8955 Comedy|Drama|Romance
## 8956 Documentary
## 8957 Documentary
## 8958 Action|Adventure|Animation|Drama|Fantasy
## 8959 Adventure|Drama
## 8960 Crime|Drama
## 8961 Adventure|Children|Comedy|Drama
## 8962 Action|Drama
## 8963 Crime|Drama|Mystery
## 8964 Documentary
## 8965 Animation|Comedy|Fantasy
## 8966 Comedy|Romance
## 8967 Comedy
## 8968 Children|Crime|Documentary
## 8969 Drama
## 8970 Drama
## 8971 Drama|Horror
## 8972 Comedy
## 8973 Horror
## 8974 Comedy|Horror
## 8975 Action|Comedy|Sci-Fi|Thriller
## 8976 Drama
## 8977 Crime|Thriller
## 8978 Drama
## 8979 Drama|Romance
## 8980 Drama
## 8981 Comedy|Drama|Romance
## 8982 Children|Drama|Fantasy
## 8983 Comedy
## 8984 Comedy|Drama|Sci-Fi
## 8985 (no genres listed)
## 8986 Comedy|Romance
## 8987 Drama
## 8988 Comedy|Drama|Romance
## 8989 Comedy|Romance
## 8990 (no genres listed)
## 8991 Comedy|Drama
## 8992 Comedy
## 8993 Comedy|Drama
## 8994 Drama
## 8995 Drama
## 8996 Drama
## 8997 Crime|Thriller
## 8998 Comedy|Horror
## 8999 Drama
## 9000 (no genres listed)
## 9001 Comedy|Drama
## 9002 Drama|War
## 9003 Drama|Horror|Thriller
## 9004 Drama
## 9005 Crime|Drama|Mystery|Romance|Thriller
## 9006 Drama
## 9007 Documentary
## 9008 Comedy
## 9009 Adventure|Drama|Thriller
## 9010 Thriller
## 9011 Drama
## 9012 Drama
## 9013 Animation|Comedy
## 9014 Mystery|Sci-Fi|Thriller
## 9015 Comedy|Drama
## 9016 Documentary|Drama
## 9017 Drama|Thriller
## 9018 (no genres listed)
## 9019 Action|Horror|Thriller
## 9020 Horror|Thriller
## 9021 Comedy
## 9022 Horror
## 9023 Adventure|Comedy|Horror
## 9024 Drama|Thriller
## 9025 Horror|Western
## 9026 Comedy|Drama|Thriller
## 9027 Comedy|Romance
## 9028 Documentary
## 9029 Drama
## 9030 Adventure|Animation|Children|Comedy
## 9031 Action|Adventure|Animation
## 9032 Comedy|Drama|Romance
## 9033 Drama
## 9034 Comedy|Drama|Romance
## 9035 Drama
## 9036 Documentary
## 9037 Fantasy|Mystery|Thriller
## 9038 Comedy|Drama
## 9039 Drama|Fantasy|Romance
## 9040 Comedy
## 9041 Action|Crime|Drama
## 9042 Comedy|Drama|Thriller
## 9043 Action|Comedy|Drama
## 9044 Comedy
## 9045 Comedy|Thriller
## 9046 Drama
## 9047 Drama
## 9048 Comedy|Western
## 9049 Animation|Comedy
## 9050 Comedy
## 9051 Comedy|Romance
## 9052 Comedy
## 9053 Children|Comedy
## 9054 Action|Adventure|Animation
## 9055 (no genres listed)
## 9056 Comedy|Fantasy
## 9057 Thriller
## 9058 Romance|War
## 9059 Action|Drama|Thriller
## 9060 Comedy|Horror|Romance|Thriller
## 9061 Action|Crime
## 9062 Action|Crime|Drama|Mystery|Thriller
## 9063 Documentary
## 9064 (no genres listed)
## 9065 Horror|Thriller
## 9066 Drama|Romance
## 9067 Documentary
## 9068 Drama
## 9069 Thriller
## 9070 Action|Crime|Thriller
## 9071 Action|Adventure|Animation|Children|Comedy
## 9072 Comedy
## 9073 Horror
## 9074 Horror
## 9075 Comedy
## 9076 Drama|Horror|Mystery
## 9077 Drama
## 9078 Documentary
## 9079 Comedy
## 9080 Adventure|Animation|Children|Comedy
## 9081 Drama
## 9082 Action|Adventure|Drama|Fantasy
## 9083 Comedy
## 9084 Thriller
## 9085 Drama|Thriller
## 9086 Adventure|Animation|Comedy
## 9087 Action|Crime|Drama|Thriller
## 9088 Comedy
## 9089 Crime|Mystery|Thriller
## 9090 Comedy
## 9091 Drama|Thriller
## 9092 Drama|Romance|Thriller
## 9093 Action|Horror|Sci-Fi
## 9094 Action|Comedy|Thriller
## 9095 Horror
## 9096 Action|Adventure|Comedy
## 9097 Comedy
## 9098 Horror
## 9099 Drama|Sci-Fi|Thriller
## 9100 Action|Comedy|Horror|Sci-Fi
## 9101 Action|Comedy
## 9102 Action
## 9103 Thriller
## 9104 Action|Adventure
## 9105 Action|Horror|Sci-Fi
## 9106 Comedy
## 9107 (no genres listed)
## 9108 Drama
## 9109 Animation
## 9110 Drama|Thriller
## 9111 Documentary
## 9112 Sci-Fi
## 9113 Documentary
## 9114 Crime|Drama
## 9115 Action|Adventure|Animation|Drama|Fantasy|Sci-Fi
## 9116 Drama|Horror|Thriller
## 9117 Action|Adventure|Horror|Sci-Fi
## 9118 Drama
## 9119 Drama
## 9120 Romance|Thriller
## 9121 Adventure|Drama|Romance
## 9122 Action|Adventure|Fantasy|Sci-Fi
## 9123 Documentary
## 9124 Comedy
## 9125 Documentary
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 | 31 | 2.5 | 1260759144 |
| 1 | 1029 | 3.0 | 1260759179 |
| 1 | 1061 | 3.0 | 1260759182 |
| 1 | 1129 | 2.0 | 1260759185 |
| 1 | 1172 | 4.0 | 1260759205 |
| 1 | 1263 | 2.0 | 1260759151 |
| 1 | 1287 | 2.0 | 1260759187 |
| 1 | 1293 | 2.0 | 1260759148 |
| 1 | 1339 | 3.5 | 1260759125 |
| 1 | 1343 | 2.0 | 1260759131 |
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 31 2.5 1260759144
## 2 1 1029 3.0 1260759179
## 3 1 1061 3.0 1260759182
## 4 1 1129 2.0 1260759185
## 5 1 1172 4.0 1260759205
## 6 1 1263 2.0 1260759151
## 7 1 1287 2.0 1260759187
## 8 1 1293 2.0 1260759148
## 9 1 1339 3.5 1260759125
## 10 1 1343 2.0 1260759131
## 11 1 1371 2.5 1260759135
## 12 1 1405 1.0 1260759203
## 13 1 1953 4.0 1260759191
## 14 1 2105 4.0 1260759139
## 15 1 2150 3.0 1260759194
## 16 1 2193 2.0 1260759198
## 17 1 2294 2.0 1260759108
## 18 1 2455 2.5 1260759113
## 19 1 2968 1.0 1260759200
## 20 1 3671 3.0 1260759117
## 21 2 10 4.0 835355493
## 22 2 17 5.0 835355681
## 23 2 39 5.0 835355604
## 24 2 47 4.0 835355552
## 25 2 50 4.0 835355586
## 26 2 52 3.0 835356031
## 27 2 62 3.0 835355749
## 28 2 110 4.0 835355532
## 29 2 144 3.0 835356016
## 30 2 150 5.0 835355395
## 31 2 153 4.0 835355441
## 32 2 161 3.0 835355493
## 33 2 165 3.0 835355441
## 34 2 168 3.0 835355710
## 35 2 185 3.0 835355511
## 36 2 186 3.0 835355664
## 37 2 208 3.0 835355511
## 38 2 222 5.0 835355840
## 39 2 223 1.0 835355749
## 40 2 225 3.0 835355552
## 41 2 235 3.0 835355664
## 42 2 248 3.0 835355896
## 43 2 253 4.0 835355511
## 44 2 261 4.0 835355681
## 45 2 265 5.0 835355697
## 46 2 266 5.0 835355586
## 47 2 272 3.0 835355767
## 48 2 273 4.0 835355779
## 49 2 292 3.0 835355492
## 50 2 296 4.0 835355395
## 51 2 300 3.0 835355532
## 52 2 314 4.0 835356044
## 53 2 317 2.0 835355551
## 54 2 319 1.0 835355918
## 55 2 339 3.0 835355492
## 56 2 349 4.0 835355441
## 57 2 350 4.0 835355697
## 58 2 356 3.0 835355628
## 59 2 357 3.0 835355749
## 60 2 364 3.0 835355604
## 61 2 367 3.0 835355619
## 62 2 370 2.0 835355932
## 63 2 371 3.0 835355968
## 64 2 372 3.0 835356094
## 65 2 377 3.0 835355710
## 66 2 382 3.0 835356165
## 67 2 405 2.0 835356246
## 68 2 410 3.0 835355532
## 69 2 454 4.0 835355604
## 70 2 457 3.0 835355511
## 71 2 468 4.0 835355790
## 72 2 474 2.0 835355828
## 73 2 480 4.0 835355643
## 74 2 485 3.0 835355918
## 75 2 497 3.0 835355880
## 76 2 500 4.0 835355731
## 77 2 508 4.0 835355860
## 78 2 509 4.0 835355719
## 79 2 515 4.0 835355817
## 80 2 527 4.0 835355731
## 81 2 537 4.0 835356199
## 82 2 539 3.0 835355767
## 83 2 550 3.0 835356109
## 84 2 551 5.0 835355767
## 85 2 552 3.0 835355860
## 86 2 585 5.0 835355817
## 87 2 586 3.0 835355790
## 88 2 587 3.0 835355779
## 89 2 588 3.0 835355441
## 90 2 589 5.0 835355697
## 91 2 590 5.0 835355395
## 92 2 592 5.0 835355395
## 93 2 593 3.0 835355511
## 94 2 616 3.0 835355932
## 95 2 661 4.0 835356141
## 96 2 720 4.0 835355978
## 97 3 60 3.0 1298861675
## 98 3 110 4.0 1298922049
## 99 3 247 3.5 1298861637
## 100 3 267 3.0 1298861761
## 101 3 296 4.5 1298862418
## 102 3 318 5.0 1298862121
## 103 3 355 2.5 1298861589
## 104 3 356 5.0 1298862167
## 105 3 377 2.5 1298923242
## 106 3 527 3.0 1298862528
## 107 3 588 3.0 1298922100
## 108 3 592 3.0 1298923247
## 109 3 593 3.0 1298921840
## 110 3 595 2.0 1298923260
## 111 3 736 3.5 1298932787
## 112 3 778 4.0 1298863157
## 113 3 866 3.0 1298861687
## 114 3 1197 5.0 1298932770
## 115 3 1210 3.0 1298921795
## 116 3 1235 4.0 1298861628
## 117 3 1271 3.0 1298861605
## 118 3 1378 4.0 1298861658
## 119 3 1580 3.5 1298922089
## 120 3 1721 4.5 1298923236
## 121 3 1884 4.0 1298863143
## 122 3 2028 4.0 1298921862
## 123 3 2318 4.0 1298861753
## 124 3 2513 3.0 1298861789
## 125 3 2694 3.0 1298862710
## 126 3 2702 3.5 1298861796
## 127 3 2716 3.0 1298924017
## 128 3 2762 3.5 1298922057
## 129 3 2841 4.0 1298861733
## 130 3 2858 4.0 1298921825
## 131 3 2959 5.0 1298862874
## 132 3 3243 3.0 1298861968
## 133 3 3510 4.0 1298861633
## 134 3 3949 5.0 1298863174
## 135 3 5349 3.0 1298923266
## 136 3 5669 3.5 1298862672
## 137 3 6377 3.0 1298922080
## 138 3 7153 2.5 1298921787
## 139 3 7361 3.0 1298922065
## 140 3 8622 3.5 1298861650
## 141 3 8636 3.0 1298932766
## 142 3 27369 3.5 1298862555
## 143 3 44191 3.5 1298932740
## 144 3 48783 4.5 1298862361
## 145 3 50068 4.5 1298862467
## 146 3 58559 3.0 1298922071
## 147 3 84236 4.0 1298922130
## 148 4 10 4.0 949810645
## 149 4 34 5.0 949919556
## 150 4 112 5.0 949810582
## 151 4 141 5.0 949919681
## 152 4 153 4.0 949811346
## 153 4 173 3.0 949811346
## 154 4 185 3.0 949920047
## 155 4 260 5.0 949779042
## 156 4 289 4.0 949778802
## 157 4 296 5.0 949895708
## 158 4 329 3.0 949810618
## 159 4 349 5.0 949810582
## 160 4 356 5.0 949919763
## 161 4 357 5.0 949919681
## 162 4 364 5.0 949949538
## 163 4 367 4.0 949895887
## 164 4 380 3.0 949810534
## 165 4 410 3.0 949919883
## 166 4 431 3.0 949895772
## 167 4 434 4.0 949810688
## 168 4 435 1.0 949920135
## 169 4 440 4.0 949919802
## 170 4 442 4.0 949920028
## 171 4 464 4.0 949811315
## 172 4 480 5.0 949810582
## 173 4 541 5.0 949779091
## 174 4 588 5.0 949949486
## 175 4 589 5.0 949919938
## 176 4 590 3.0 949810534
## 177 4 594 5.0 949949538
## 178 4 596 5.0 949949638
## 179 4 610 4.0 949982238
## 180 4 616 5.0 949949444
## 181 4 858 5.0 949779022
## 182 4 903 5.0 949919189
## 183 4 910 4.0 949919306
## 184 4 913 5.0 949919247
## 185 4 919 5.0 949949396
## 186 4 1011 4.0 949919454
## 187 4 1016 4.0 949919322
## 188 4 1022 5.0 949949638
## 189 4 1028 5.0 949949638
## 190 4 1030 5.0 949896377
## 191 4 1031 5.0 949896377
## 192 4 1032 5.0 949949538
## 193 4 1033 5.0 949949638
## 194 4 1036 5.0 949896244
## 195 4 1073 5.0 949919372
## 196 4 1079 5.0 949811523
## 197 4 1089 5.0 949895732
## 198 4 1097 5.0 949778771
## 199 4 1125 5.0 949919399
## 200 4 1127 5.0 949896275
## 201 4 1136 5.0 949919372
## 202 4 1194 5.0 949919419
## 203 4 1196 5.0 949779173
## 204 4 1197 5.0 949811490
## 205 4 1198 5.0 949779173
## 206 4 1200 5.0 949896244
## 207 4 1206 5.0 949896159
## 208 4 1208 5.0 949779173
## 209 4 1210 5.0 949778714
## 210 4 1213 5.0 949895708
## 211 4 1214 5.0 949810261
## 212 4 1219 5.0 949779173
## 213 4 1220 5.0 949811523
## 214 4 1222 5.0 949918693
## 215 4 1225 5.0 949779173
## 216 4 1230 5.0 949919372
## 217 4 1240 5.0 949896244
## 218 4 1243 5.0 949919519
## 219 4 1257 5.0 949811602
## 220 4 1258 5.0 949918743
## 221 4 1259 4.0 949811559
## 222 4 1265 5.0 949919591
## 223 4 1270 5.0 949811523
## 224 4 1278 5.0 949919372
## 225 4 1282 5.0 949949396
## 226 4 1285 4.0 949811559
## 227 4 1288 5.0 949811490
## 228 4 1291 5.0 949918743
## 229 4 1298 4.0 949918927
## 230 4 1307 4.0 949811602
## 231 4 1332 4.0 949896275
## 232 4 1334 5.0 949982274
## 233 4 1344 5.0 949919247
## 234 4 1356 4.0 949810582
## 235 4 1371 4.0 949810302
## 236 4 1372 3.0 949920004
## 237 4 1374 4.0 949918787
## 238 4 1376 3.0 949918904
## 239 4 1377 3.0 949810688
## 240 4 1380 5.0 949896377
## 241 4 1387 5.0 949810261
## 242 4 1388 4.0 949810302
## 243 4 1396 5.0 949895772
## 244 4 1544 3.0 949811230
## 245 4 1580 5.0 949919978
## 246 4 1663 4.0 949811559
## 247 4 1674 5.0 949896244
## 248 4 1805 1.0 949895864
## 249 4 1858 5.0 949919738
## 250 4 1917 4.0 949810688
## 251 4 1918 2.0 949895956
## 252 4 1953 5.0 949810261
## 253 4 1954 5.0 949810261
## 254 4 1961 5.0 949918743
## 255 4 1967 3.0 949949538
## 256 4 1968 5.0 949811559
## 257 4 1994 5.0 949896309
## 258 4 2000 5.0 949811602
## 259 4 2002 3.0 949895907
## 260 4 2003 2.0 949918970
## 261 4 2005 5.0 949896070
## 262 4 2014 4.0 949919454
## 263 4 2018 5.0 949778771
## 264 4 2020 4.0 949811738
## 265 4 2021 4.0 949896114
## 266 4 2033 4.0 949982239
## 267 4 2034 4.0 949896183
## 268 4 2046 5.0 949810618
## 269 4 2054 3.0 949896114
## 270 4 2064 5.0 949918648
## 271 4 2078 5.0 949949444
## 272 4 2080 5.0 949919306
## 273 4 2081 4.0 949982239
## 274 4 2085 5.0 949949444
## 275 4 2086 5.0 949896114
## 276 4 2087 5.0 949949638
## 277 4 2091 5.0 949896183
## 278 4 2094 4.0 949920028
## 279 4 2096 5.0 949949538
## 280 4 2100 5.0 949896114
## 281 4 2102 5.0 949949396
## 282 4 2105 4.0 949896114
## 283 4 2109 5.0 949919399
## 284 4 2110 3.0 949896309
## 285 4 2114 5.0 949918927
## 286 4 2115 5.0 949918994
## 287 4 2124 4.0 949919763
## 288 4 2140 5.0 949896070
## 289 4 2141 4.0 949982239
## 290 4 2143 4.0 949896114
## 291 4 2144 5.0 949811603
## 292 4 2161 5.0 949896070
## 293 4 2174 5.0 949896070
## 294 4 2193 3.0 949896070
## 295 4 2194 5.0 949918764
## 296 4 2248 4.0 949811559
## 297 4 2263 3.0 949896309
## 298 4 2268 5.0 949895772
## 299 4 2289 5.0 949919556
## 300 4 2348 4.0 949918927
## 301 4 2371 4.0 949811603
## 302 4 2403 4.0 949918994
## 303 4 2406 5.0 949918994
## 304 4 2409 4.0 949810302
## 305 4 2454 5.0 949982274
## 306 4 2467 5.0 949918875
## 307 4 2551 4.0 949896275
## 308 4 2616 1.0 949895993
## 309 4 2628 5.0 949810582
## 310 4 2640 5.0 949810261
## 311 4 2659 3.0 949918671
## 312 4 2683 4.0 949896497
## 313 4 2699 4.0 949896497
## 314 4 2716 5.0 949811523
## 315 4 2723 5.0 949810582
## 316 4 2734 4.0 949778714
## 317 4 2770 1.0 949896521
## 318 4 2788 5.0 949919399
## 319 4 2791 5.0 949811490
## 320 4 2795 4.0 949811603
## 321 4 2797 5.0 949896070
## 322 4 2804 5.0 949811738
## 323 4 2822 3.0 949811230
## 324 4 2867 3.0 949918875
## 325 4 2872 5.0 949896114
## 326 4 2877 5.0 949896377
## 327 4 2902 2.0 949896309
## 328 4 2903 1.0 949896309
## 329 4 2916 4.0 949810534
## 330 4 2918 5.0 949811559
## 331 4 2968 5.0 949896070
## 332 4 2986 3.0 949896015
## 333 4 2987 5.0 949918807
## 334 4 2991 5.0 949810261
## 335 4 3016 3.0 949896543
## 336 4 3034 5.0 949949444
## 337 4 3039 4.0 949811559
## 338 4 3040 5.0 949919419
## 339 4 3060 5.0 949919656
## 340 4 3071 4.0 949918715
## 341 4 3101 4.0 949896275
## 342 4 3104 4.0 949811603
## 343 4 3108 5.0 949919738
## 344 4 3169 4.0 949918904
## 345 4 3208 2.0 949778946
## 346 4 3210 4.0 949811523
## 347 4 3251 5.0 949918970
## 348 4 3255 4.0 949919738
## 349 4 3263 3.0 949919845
## 350 4 3265 5.0 949895732
## 351 4 4006 2.0 949982238
## 352 5 3 4.0 1163374957
## 353 5 39 4.0 1163374952
## 354 5 104 4.0 1163374639
## 355 5 141 4.0 1163374242
## 356 5 150 4.0 1163374404
## 357 5 231 3.5 1163373762
## 358 5 277 4.5 1163373208
## 359 5 344 3.5 1163373636
## 360 5 356 4.0 1163374152
## 361 5 364 4.0 1163373752
## 362 5 367 4.0 1163373755
## 363 5 377 4.0 1163373610
## 364 5 440 4.0 1163374477
## 365 5 500 4.5 1163373718
## 366 5 586 4.0 1163374392
## 367 5 588 3.5 1163373551
## 368 5 595 4.0 1163374190
## 369 5 597 5.0 1163373711
## 370 5 788 3.5 1163374993
## 371 5 858 2.5 1163373651
## 372 5 903 3.5 1163373135
## 373 5 919 4.0 1163374286
## 374 5 1022 4.0 1163373316
## 375 5 1035 5.0 1163373103
## 376 5 1193 3.0 1163374173
## 377 5 1221 2.5 1163374239
## 378 5 1247 4.0 1163374582
## 379 5 1307 4.0 1163374495
## 380 5 1380 5.0 1163373044
## 381 5 1393 3.5 1163374165
## 382 5 1485 4.5 1163374608
## 383 5 1544 3.5 1163374562
## 384 5 1682 4.0 1163374214
## 385 5 1721 4.0 1163373744
## 386 5 1777 4.0 1163374601
## 387 5 1784 4.5 1163374251
## 388 5 1923 4.5 1163373726
## 389 5 1961 4.0 1163373675
## 390 5 1968 4.0 1163374324
## 391 5 1997 3.5 1163374593
## 392 5 2023 1.5 1163373188
## 393 5 2081 5.0 1163373109
## 394 5 2273 4.0 1163373276
## 395 5 2294 4.0 1163373251
## 396 5 2355 3.5 1163374184
## 397 5 2424 4.0 1163373193
## 398 5 2502 3.5 1163374290
## 399 5 2683 4.0 1163373679
## 400 5 2694 4.5 1163373293
## 401 5 2706 4.0 1163374246
## 402 5 2762 3.5 1163373743
## 403 5 2770 3.5 1163374947
## 404 5 2918 3.5 1163374278
## 405 5 2997 3.5 1163374127
## 406 5 3114 3.5 1163374263
## 407 5 3176 3.5 1163374408
## 408 5 3408 4.0 1163374137
## 409 5 3753 3.5 1163373148
## 410 5 3897 4.5 1163374235
## 411 5 3948 3.5 1163374198
## 412 5 4014 4.0 1163373273
## 413 5 4018 4.0 1163375025
## 414 5 4022 3.5 1163373696
## 415 5 4025 4.5 1163375145
## 416 5 4306 3.5 1163374103
## 417 5 4308 3.5 1163374354
## 418 5 4447 4.5 1163375033
## 419 5 4718 3.5 1163375131
## 420 5 4963 3.0 1163373548
## 421 5 4995 4.5 1163373616
## 422 5 5266 3.5 1163374995
## 423 5 5299 4.5 1163373299
## 424 5 5349 4.5 1163373606
## 425 5 5464 4.0 1163374443
## 426 5 5669 3.5 1163374206
## 427 5 5679 4.5 1163374389
## 428 5 5816 3.0 1163373688
## 429 5 5995 4.0 1163374533
## 430 5 6218 3.5 1163374491
## 431 5 6373 4.0 1163374572
## 432 5 6377 4.0 1163373626
## 433 5 6502 4.0 1163374455
## 434 5 6711 2.5 1163373238
## 435 5 6942 4.0 1163374511
## 436 5 8376 4.0 1163374742
## 437 5 8464 4.0 1163374381
## 438 5 8622 3.5 1163374118
## 439 5 8636 4.5 1163373593
## 440 5 8644 4.0 1163374426
## 441 5 30707 4.5 1163374340
## 442 5 30749 4.5 1163374702
## 443 5 30793 3.5 1163374177
## 444 5 33166 5.0 1163374211
## 445 5 33679 4.0 1163374517
## 446 5 34162 4.5 1163374227
## 447 5 35836 4.0 1163374275
## 448 5 40819 4.5 1163374283
## 449 5 41566 4.0 1163374144
## 450 5 41569 4.0 1163374167
## 451 5 48385 4.5 1163374357
## 452 6 111 4.0 1109258212
## 453 6 158 2.0 1108134263
## 454 6 173 2.0 1109258228
## 455 6 293 5.0 1108134539
## 456 6 596 4.0 1108134269
## 457 6 903 4.0 1108134299
## 458 6 1204 5.0 1108134266
## 459 6 1250 4.5 1108134284
## 460 6 1259 4.5 1109258196
## 461 6 1276 4.5 1108134309
## 462 6 1285 4.5 1108134339
## 463 6 1358 2.0 1109258181
## 464 6 1639 2.0 1109258179
## 465 6 1687 2.0 1109258281
## 466 6 1747 2.0 1109258194
## 467 6 1876 0.5 1108134334
## 468 6 1909 3.0 1108134344
## 469 6 2001 3.0 1108134289
## 470 6 2019 4.0 1109258270
## 471 6 2072 4.0 1109258285
## 472 6 2174 4.0 1109258175
## 473 6 2502 3.5 1108134291
## 474 6 2528 3.0 1109258245
## 475 6 2529 4.0 1108134293
## 476 6 2571 1.0 1109258202
## 477 6 2657 2.0 1108134271
## 478 6 2692 4.0 1108134274
## 479 6 2723 3.0 1109258257
## 480 6 2761 4.5 1108134545
## 481 6 2890 3.0 1109258199
## 482 6 3052 1.0 1108134337
## 483 6 3114 4.0 1109258183
## 484 6 3300 3.5 1109258250
## 485 6 3751 1.5 1109258190
## 486 6 4641 1.5 1109258217
## 487 6 4975 1.5 1109258226
## 488 6 5952 5.0 1108134311
## 489 6 7090 3.0 1108134534
## 490 6 7153 5.0 1108134519
## 491 6 7361 4.0 1108134524
## 492 6 8368 3.5 1108134526
## 493 6 8636 4.0 1108134537
## 494 6 8784 3.0 1108134531
## 495 6 8874 4.5 1108134521
## 496 7 1 3.0 851866703
## 497 7 10 3.0 851869035
## 498 7 21 3.0 851867289
## 499 7 31 3.0 851868750
## 500 7 34 4.0 851867861
## 501 7 40 4.0 851866901
## 502 7 104 3.0 851866744
## 503 7 110 5.0 851868188
## 504 7 112 4.0 851866720
## 505 7 141 4.0 851866704
## 506 7 151 4.0 851868206
## 507 7 198 2.0 851868704
## 508 7 207 3.0 851868705
## 509 7 260 5.0 851869062
## 510 7 272 3.0 851868188
## 511 7 316 2.0 851869161
## 512 7 318 5.0 851868187
## 513 7 329 3.0 851868524
## 514 7 333 3.0 851867345
## 515 7 345 3.0 851867621
## 516 7 355 3.0 851867941
## 517 7 356 3.0 851868188
## 518 7 357 3.0 851867436
## 519 7 364 3.0 851868020
## 520 7 367 3.0 851867790
## 521 7 377 3.0 851869291
## 522 7 380 4.0 851869291
## 523 7 480 4.0 851869161
## 524 7 500 3.0 851867669
## 525 7 534 4.0 851868246
## 526 7 539 3.0 851867688
## 527 7 541 4.0 851869035
## 528 7 551 4.0 851868019
## 529 7 588 4.0 851868044
## 530 7 589 3.0 851869140
## 531 7 590 4.0 851868186
## 532 7 592 3.0 851868863
## 533 7 594 4.0 851868020
## 534 7 595 3.0 851868044
## 535 7 610 3.0 851868074
## 536 7 671 4.0 851866806
## 537 7 708 3.0 851866744
## 538 7 720 5.0 851868019
## 539 7 724 2.0 851866784
## 540 7 736 1.0 851866704
## 541 7 737 1.0 851866763
## 542 7 745 5.0 851868020
## 543 7 780 3.0 851866703
## 544 7 786 2.0 851866744
## 545 7 924 4.0 851868289
## 546 7 1036 3.0 851869102
## 547 7 1073 3.0 851866744
## 548 7 1079 4.0 851867320
## 549 7 1080 4.0 851867289
## 550 7 1097 3.0 851868308
## 551 7 1125 3.0 851867553
## 552 7 1129 3.0 851869103
## 553 7 1136 4.0 851867289
## 554 7 1148 5.0 851868019
## 555 7 1196 5.0 851869034
## 556 7 1197 3.0 851867289
## 557 7 1198 5.0 851869035
## 558 7 1210 5.0 851869034
## 559 7 1220 4.0 851867379
## 560 7 1223 5.0 851868044
## 561 7 1225 5.0 851868246
## 562 7 1231 4.0 851868321
## 563 7 1240 4.0 851869062
## 564 7 1242 5.0 851868289
## 565 7 1270 3.0 851867436
## 566 7 1275 4.0 851869080
## 567 7 1278 3.0 851867436
## 568 7 1287 4.0 851868332
## 569 7 1288 4.0 851867401
## 570 7 1291 3.0 851867320
## 571 7 1298 3.0 851868471
## 572 7 1302 4.0 851868471
## 573 7 1307 3.0 851867401
## 574 7 1353 3.0 851866935
## 575 7 1371 3.0 851869160
## 576 7 1372 3.0 851869102
## 577 7 1373 2.0 851869230
## 578 7 1374 4.0 851869035
## 579 7 1375 3.0 851869140
## 580 7 1376 3.0 851869062
## 581 7 1394 3.0 851867688
## 582 7 1405 5.0 851866978
## 583 7 1408 1.0 851869140
## 584 8 32 5.0 1154465405
## 585 8 45 2.5 1154389572
## 586 8 47 5.0 1154464836
## 587 8 50 5.0 1154400173
## 588 8 110 4.0 1154473268
## 589 8 260 3.5 1154464829
## 590 8 282 2.0 1154389420
## 591 8 296 4.0 1154465380
## 592 8 318 5.0 1154464714
## 593 8 356 4.0 1154400390
## 594 8 457 4.5 1154400475
## 595 8 520 3.5 1154389356
## 596 8 524 2.0 1154400357
## 597 8 527 5.0 1154400170
## 598 8 543 5.0 1154389386
## 599 8 589 4.0 1154464853
## 600 8 593 4.5 1154464833
## 601 8 628 4.0 1154400284
## 602 8 805 3.5 1154389432
## 603 8 858 5.0 1154400181
## 604 8 1196 3.5 1154464841
## 605 8 1197 4.0 1154464887
## 606 8 1198 4.0 1154464730
## 607 8 1210 4.0 1154464769
## 608 8 1219 4.0 1154465573
## 609 8 1225 4.0 1154465394
## 610 8 1258 4.0 1154465555
## 611 8 1259 4.0 1154464811
## 612 8 1265 3.0 1154465230
## 613 8 1270 4.0 1154464747
## 614 8 1291 4.0 1154464720
## 615 8 1302 3.5 1154400465
## 616 8 1358 0.5 1154474527
## 617 8 1387 4.0 1154465285
## 618 8 1393 3.0 1154400324
## 619 8 1500 4.0 1154465235
## 620 8 1552 3.0 1154389408
## 621 8 1617 3.5 1154464990
## 622 8 1625 5.0 1154389385
## 623 8 1674 4.0 1154389491
## 624 8 1704 4.0 1154473252
## 625 8 1754 3.0 1154400308
## 626 8 1777 5.0 1154400458
## 627 8 1876 3.5 1154389528
## 628 8 1961 5.0 1154473322
## 629 8 2028 4.0 1154473259
## 630 8 2100 3.0 1154389460
## 631 8 2139 3.0 1154465222
## 632 8 2194 4.5 1154464735
## 633 8 2302 4.5 1154400414
## 634 8 2324 4.0 1154464850
## 635 8 2329 5.0 1154473217
## 636 8 2353 3.5 1154389340
## 637 8 2423 3.5 1154400351
## 638 8 2502 5.0 1154464889
## 639 8 2571 5.0 1154464738
## 640 8 2716 3.5 1154464944
## 641 8 2762 4.5 1154464717
## 642 8 2770 2.5 1154389541
## 643 8 2791 4.5 1154465558
## 644 8 2797 3.5 1154400340
## 645 8 2804 3.5 1154473419
## 646 8 2841 3.0 1154400360
## 647 8 2858 4.5 1154464950
## 648 8 2918 5.0 1154473364
## 649 8 2959 4.0 1154464901
## 650 8 3147 4.5 1154400266
## 651 8 3578 5.0 1154400441
## 652 8 3916 3.5 1154400198
## 653 8 3948 4.0 1154389482
## 654 8 3996 4.0 1154465526
## 655 8 4011 4.5 1154464873
## 656 8 4019 3.5 1154400245
## 657 8 4034 4.5 1154465279
## 658 8 4226 5.0 1154464905
## 659 8 4262 4.0 1154464915
## 660 8 4448 2.5 1154400334
## 661 8 4886 3.5 1154464808
## 662 8 4896 3.5 1154400398
## 663 8 4963 4.5 1154400383
## 664 8 4973 4.0 1154465373
## 665 8 4993 3.5 1154464819
## 666 8 4995 3.5 1154389449
## 667 8 5064 5.0 1154400236
## 668 8 5378 3.5 1154389552
## 669 8 5445 4.5 1154400449
## 670 8 5464 4.0 1154464756
## 671 8 5630 4.0 1154400407
## 672 8 5650 4.0 1154465399
## 673 8 5669 3.0 1154465385
## 674 8 5952 4.0 1154464762
## 675 8 5989 3.5 1154400444
## 676 8 6377 4.0 1154389474
## 677 8 6378 3.0 1154400191
## 678 8 6870 4.0 1154464895
## 679 8 6874 5.0 1154465296
## 680 8 6879 3.0 1154400253
## 681 8 7143 3.5 1154400294
## 682 8 7153 4.0 1154464753
## 683 8 7361 4.0 1154465367
## 684 8 7438 4.0 1154464994
## 685 8 8533 2.5 1154400471
## 686 8 8784 4.5 1154464868
## 687 8 8873 4.0 1154465499
## 688 8 8874 3.0 1154465548
## 689 8 32587 3.5 1154465243
## 690 8 33166 4.5 1154473310
## 691 8 33493 4.5 1154400263
## 692 8 33794 4.5 1154464726
## 693 8 34162 3.5 1154400423
## 694 8 40583 3.5 1154473088
## 695 8 40819 3.5 1154473264
## 696 8 42007 2.0 1154473042
## 697 8 43556 3.5 1154473022
## 698 8 43871 3.0 1154473014
## 699 8 44004 3.0 1154473017
## 700 9 1 4.0 938629179
## 701 9 17 4.0 938628337
## 702 9 26 3.0 938628655
## 703 9 36 5.0 938629110
## 704 9 47 3.0 938628897
## 705 9 318 4.0 938628966
## 706 9 497 4.0 938628777
## 707 9 515 4.0 938628577
## 708 9 527 5.0 938628843
## 709 9 534 5.0 938628337
## 710 9 593 4.0 938628843
## 711 9 608 5.0 938628843
## 712 9 733 2.0 938628337
## 713 9 1059 5.0 938629250
## 714 9 1177 3.0 938629470
## 715 9 1357 4.0 938628655
## 716 9 1358 4.0 938628450
## 717 9 1411 3.0 938628655
## 718 9 1541 2.0 938628777
## 719 9 1584 4.0 938629341
## 720 9 1680 4.0 938629054
## 721 9 1682 5.0 938628690
## 722 9 1704 4.0 938628966
## 723 9 1721 3.0 938629470
## 724 9 1784 5.0 938628966
## 725 9 2028 4.0 938629341
## 726 9 2125 4.0 938629522
## 727 9 2140 4.0 938629747
## 728 9 2249 4.0 938629053
## 729 9 2268 3.0 938629053
## 730 9 2273 3.0 938628777
## 731 9 2278 4.0 938628897
## 732 9 2291 4.0 938629341
## 733 9 2294 2.0 938629250
## 734 9 2302 4.0 938628843
## 735 9 2391 4.0 939122916
## 736 9 2396 4.0 938628577
## 737 9 2427 2.0 938629681
## 738 9 2490 3.0 938629681
## 739 9 2501 4.0 938628966
## 740 9 2539 2.0 938629341
## 741 9 2571 5.0 938628450
## 742 9 2628 3.0 938628843
## 743 9 2762 4.0 938627748
## 744 9 2857 4.0 938629681
## 745 10 50 5.0 942766420
## 746 10 152 4.0 942766793
## 747 10 318 4.0 942766515
## 748 10 344 3.0 942766603
## 749 10 345 4.0 942766603
## 750 10 592 3.0 942767328
## 751 10 735 4.0 942766974
## 752 10 1036 3.0 942767258
## 753 10 1089 3.0 942766420
## 754 10 1101 2.0 942767328
## 755 10 1127 4.0 942767328
## 756 10 1196 4.0 942767258
## 757 10 1197 4.0 942767258
## 758 10 1198 4.0 942767258
## 759 10 1200 4.0 942767258
## 760 10 1210 4.0 942767258
## 761 10 1220 3.0 942767328
## 762 10 1240 4.0 942767258
## 763 10 1291 4.0 942767258
## 764 10 1358 5.0 942766420
## 765 10 1423 4.0 942766420
## 766 10 1459 3.0 942766725
## 767 10 1499 3.0 942766845
## 768 10 1611 5.0 942767029
## 769 10 1690 3.0 942766679
## 770 10 1704 4.0 942766472
## 771 10 1719 5.0 942766472
## 772 10 1887 2.0 942766845
## 773 10 1923 5.0 942766515
## 774 10 2108 3.0 942766472
## 775 10 2344 5.0 942766991
## 776 10 2406 4.0 942767328
## 777 10 2410 2.0 942767328
## 778 10 2539 4.0 942766845
## 779 10 2571 5.0 942766515
## 780 10 2826 5.0 942766109
## 781 10 2827 3.0 942766251
## 782 10 2840 3.0 942766213
## 783 10 2841 4.0 942766029
## 784 10 2881 3.0 942766164
## 785 10 2890 4.0 942765978
## 786 10 2907 2.0 942766213
## 787 10 2926 5.0 942767121
## 788 10 2995 2.0 942766251
## 789 10 3005 3.0 942766059
## 790 10 3019 4.0 942767571
## 791 11 50 5.0 1391658537
## 792 11 70 1.0 1391656827
## 793 11 126 4.0 1391657561
## 794 11 169 3.0 1391657297
## 795 11 296 5.0 1391658423
## 796 11 778 4.5 1391658505
## 797 11 785 3.5 1391656845
## 798 11 923 5.0 1391658556
## 799 11 1027 4.5 1391658634
## 800 11 1201 5.0 1391658440
## 801 11 1408 5.0 1391658667
## 802 11 1918 3.0 1391657062
## 803 11 2042 3.5 1391657376
## 804 11 2596 4.5 1391657543
## 805 11 2762 3.0 1391658583
## 806 11 3424 3.0 1391657112
## 807 11 5669 3.0 1391658601
## 808 11 6598 5.0 1391657861
## 809 11 26614 5.0 1391658574
## 810 11 48516 5.0 1391658450
## 811 11 51084 4.0 1391657605
## 812 11 58295 4.5 1391657459
## 813 11 71211 3.5 1391657720
## 814 11 77455 4.5 1391658141
## 815 11 79132 4.0 1391658115
## 816 11 80489 4.5 1391658399
## 817 11 80906 3.0 1391658137
## 818 11 81158 4.0 1391658210
## 819 11 81562 3.5 1391658218
## 820 11 88129 4.0 1391658385
## 821 11 91500 4.5 1391658311
## 822 11 91529 4.5 1391658125
## 823 11 91548 4.0 1391658270
## 824 11 96079 4.0 1391658186
## 825 11 96861 4.0 1391657924
## 826 11 97938 4.0 1391657610
## 827 11 104841 5.0 1391658157
## 828 11 106487 5.0 1391657798
## 829 12 253 3.0 968045587
## 830 12 529 1.0 968045407
## 831 12 538 3.0 968045438
## 832 12 608 2.0 968045353
## 833 12 673 1.0 968045732
## 834 12 736 4.0 968045680
## 835 12 737 3.0 968045764
## 836 12 1028 1.0 968045500
## 837 12 1032 2.0 968045561
## 838 12 1077 3.0 968045500
## 839 12 1197 1.0 955407153
## 840 12 1215 5.0 968045353
## 841 12 1220 5.0 955407153
## 842 12 1230 2.0 968045354
## 843 12 1235 5.0 968045354
## 844 12 1295 1.0 955407153
## 845 12 1374 1.0 968045475
## 846 12 1387 4.0 968045475
## 847 12 1639 2.0 968045438
## 848 12 1732 3.0 968045529
## 849 12 2259 2.0 955407153
## 850 12 2355 2.0 968045475
## 851 12 2460 4.0 968045680
## 852 12 2529 1.0 968045475
## 853 12 2668 2.0 968045764
## 854 12 2959 4.0 968045407
## 855 12 3146 2.0 968045732
## 856 12 3148 1.0 968045379
## 857 12 3176 3.0 968045649
## 858 12 3179 2.0 968045354
## 859 12 3298 4.0 968045529
## 860 12 3324 1.0 968045732
## 861 12 3408 4.0 968045379
## 862 12 3474 4.0 955407153
## 863 12 3770 3.0 968045619
## 864 12 3773 2.0 968045680
## 865 12 3780 2.0 968045619
## 866 12 3791 1.0 968045232
## 867 12 3793 5.0 968045232
## 868 12 3794 3.0 968045232
## 869 12 3798 4.0 968045232
## 870 12 3799 1.0 968045198
## 871 12 3801 3.0 968045198
## 872 12 3809 3.0 968045172
## 873 12 3825 5.0 968045142
## 874 12 3827 2.0 968045142
## 875 12 3829 2.0 968045106
## 876 12 3831 4.0 968045106
## 877 12 3841 2.0 968045074
## 878 12 3844 1.0 968045074
## 879 12 3861 3.0 968045015
## 880 12 3863 5.0 968045015
## 881 12 3864 3.0 968045015
## 882 12 3865 5.0 968045015
## 883 12 3869 2.0 968044981
## 884 12 3871 2.0 968044981
## 885 12 3873 3.0 968044981
## 886 12 3879 5.0 968044949
## 887 12 3885 3.0 968044949
## 888 12 3886 2.0 968044949
## 889 12 6184 4.0 968045173
## 890 13 1 5.0 1331380058
## 891 13 47 2.5 1331380914
## 892 13 110 4.0 1331380038
## 893 13 277 4.0 1331379348
## 894 13 296 3.5 1331380895
## 895 13 318 4.5 1331380029
## 896 13 356 5.0 1331380018
## 897 13 362 4.5 1331379479
## 898 13 480 3.0 1331380025
## 899 13 524 3.5 1331379485
## 900 13 527 4.0 1331380901
## 901 13 531 4.0 1331379483
## 902 13 587 3.0 1331380851
## 903 13 590 4.0 1331380062
## 904 13 914 4.0 1331379366
## 905 13 919 3.5 1331380871
## 906 13 1027 3.0 1331379520
## 907 13 1259 4.0 1331380814
## 908 13 1265 2.5 1331380845
## 909 13 1918 3.0 1331379386
## 910 13 1961 4.0 1331380745
## 911 13 2355 4.0 1331380741
## 912 13 2571 3.0 1331380888
## 913 13 2572 3.5 1331379777
## 914 13 2761 4.0 1331379470
## 915 13 2762 3.0 1331380765
## 916 13 2804 3.0 1331380731
## 917 13 2908 3.0 1331379494
## 918 13 2918 3.0 1331380761
## 919 13 3114 3.0 1331380738
## 920 13 3147 4.0 1331380752
## 921 13 3255 3.5 1331379342
## 922 13 3396 3.5 1331379599
## 923 13 3624 3.0 1331379574
## 924 13 4306 4.0 1331380721
## 925 13 4310 4.5 1331379506
## 926 13 4321 2.5 1331379589
## 927 13 4718 3.5 1331379530
## 928 13 4878 4.5 1331380145
## 929 13 4886 3.5 1331380834
## 930 13 4993 4.5 1331380883
## 931 13 5989 4.0 1331380785
## 932 13 6377 4.5 1331380734
## 933 13 7361 4.0 1331380159
## 934 13 7502 4.5 1331380306
## 935 13 54286 3.5 1331380782
## 936 13 58559 4.5 1331380873
## 937 13 64614 4.5 1331380830
## 938 13 69757 4.0 1331379748
## 939 13 78499 4.0 1331380725
## 940 13 81834 4.5 1331380387
## 941 13 88125 4.5 1331380390
## 942 13 93363 3.0 1331379985
## 943 14 594 1.0 976243997
## 944 14 1196 4.0 976243997
## 945 14 1721 3.0 976243912
## 946 14 2038 3.0 976244179
## 947 14 2355 2.0 976244179
## 948 14 2394 3.0 976244471
## 949 14 2628 3.0 976243933
## 950 14 2683 2.0 976244131
## 951 14 2716 3.0 976244313
## 952 14 2720 2.0 976244367
## 953 14 2724 3.0 976244524
## 954 14 2861 2.0 976244287
## 955 14 3114 4.0 976244591
## 956 14 3157 2.0 976244564
## 957 14 3175 5.0 976244313
## 958 14 3354 3.0 976243997
## 959 14 3623 3.0 976244423
## 960 14 3751 4.0 976244205
## 961 14 3986 3.0 976244107
## 962 14 3988 4.0 976244343
## 963 15 1 2.0 997938310
## 964 15 2 2.0 1134521380
## 965 15 5 4.5 1093070098
## 966 15 6 4.0 1040205753
## 967 15 10 3.0 1093028290
## 968 15 11 2.5 1093028381
## 969 15 14 2.5 1166586286
## 970 15 16 3.5 1093070150
## 971 15 17 3.0 997939404
## 972 15 19 1.0 1093028409
## 973 15 21 4.5 1058249528
## 974 15 22 2.5 1093070415
## 975 15 25 3.0 1033345172
## 976 15 32 4.0 997938466
## 977 15 34 3.0 997938310
## 978 15 36 1.0 1033345287
## 979 15 39 2.5 1093028334
## 980 15 44 3.0 1122576665
## 981 15 47 5.0 1054449816
## 982 15 50 5.0 997938500
## 983 15 52 2.5 1093070271
## 984 15 62 2.0 1093028336
## 985 15 70 0.5 1093070467
## 986 15 82 5.0 1044220302
## 987 15 94 3.0 1166587063
## 988 15 95 1.5 1093028331
## 989 15 101 4.0 1134522072
## 990 15 104 1.0 1093070113
## 991 15 107 2.0 1166586594
## 992 15 110 3.0 1040205792
## 993 15 111 5.0 997938500
## 994 15 112 2.5 1093070156
## 995 15 123 4.0 997938358
## 996 15 125 3.5 1245362506
## 997 15 145 3.5 1134521543
## 998 15 149 5.0 1075142933
## 999 15 150 3.0 997939380
## 1000 15 153 1.0 1128274517
## 1001 15 157 2.0 1052896975
## 1002 15 160 0.5 1093028411
## 1003 15 161 3.0 1093028319
## 1004 15 162 4.0 997938676
## 1005 15 163 2.0 1166586021
## 1006 15 164 4.0 997938413
## 1007 15 165 3.0 1093028183
## 1008 15 170 2.5 1166586376
## 1009 15 172 1.0 1093070329
## 1010 15 175 4.0 1166587180
## 1011 15 176 4.0 1046209579
## 1012 15 180 3.0 1166586276
## 1013 15 185 2.0 1052896916
## 1014 15 193 1.0 1193435347
## 1015 15 196 2.0 1093070170
## 1016 15 198 1.5 1134521967
## 1017 15 208 1.5 1193435482
## 1018 15 214 2.0 1033345241
## 1019 15 215 4.5 1054449903
## 1020 15 216 1.0 1349622582
## 1021 15 223 4.0 997939415
## 1022 15 225 1.0 1134521432
## 1023 15 230 1.0 1033345068
## 1024 15 231 3.5 1093028308
## 1025 15 232 4.0 1033345227
## 1026 15 233 4.0 1033344772
## 1027 15 235 4.0 997939415
## 1028 15 237 3.5 1166586251
## 1029 15 246 5.0 997938656
## 1030 15 247 2.0 997938567
## 1031 15 252 2.0 1093070318
## 1032 15 253 2.0 1093028328
## 1033 15 260 5.0 997938437
## 1034 15 265 1.0 1058250479
## 1035 15 288 2.0 1093028372
## 1036 15 292 1.0 1093028298
## 1037 15 293 5.0 997938567
## 1038 15 296 5.0 997938771
## 1039 15 300 4.0 1054449869
## 1040 15 306 5.0 997938737
## 1041 15 307 4.0 997938894
## 1042 15 308 4.0 1052897100
## 1043 15 316 3.0 1052896866
## 1044 15 317 1.0 1093028399
## 1045 15 318 2.0 997938727
## 1046 15 322 2.5 1120209787
## 1047 15 329 1.5 1093028255
## 1048 15 335 2.0 997938391
## 1049 15 339 2.5 1122576622
## 1050 15 342 3.0 1058250589
## 1051 15 344 2.0 1093028220
## 1052 15 349 3.0 997939193
## 1053 15 353 3.0 1093070088
## 1054 15 355 0.5 1122576667
## 1055 15 356 1.0 1058250631
## 1056 15 357 3.5 1058250490
## 1057 15 364 4.0 997939065
## 1058 15 367 2.0 1374637824
## 1059 15 370 3.5 1122576670
## 1060 15 371 2.0 1443385370
## 1061 15 372 3.0 1465793100
## 1062 15 373 3.5 1054449871
## 1063 15 377 4.0 1033344267
## 1064 15 380 4.0 997939179
## 1065 15 382 3.5 1166586661
## 1066 15 429 1.0 1465955324
## 1067 15 431 4.0 1132469126
## 1068 15 434 3.0 1093028320
## 1069 15 435 1.0 1093070102
## 1070 15 440 2.5 1058250627
## 1071 15 441 4.0 997938322
## 1072 15 442 1.0 1193435522
## 1073 15 454 3.0 1093028323
## 1074 15 457 5.0 997938567
## 1075 15 466 2.5 1134521456
## 1076 15 471 3.0 1166586067
## 1077 15 474 3.0 1093028384
## 1078 15 480 3.0 997939193
## 1079 15 481 3.0 1166586748
## 1080 15 483 1.0 997938905
## 1081 15 485 0.5 1093070332
## 1082 15 494 4.0 1093028414
## 1083 15 500 3.0 1035258747
## 1084 15 508 1.5 1093028394
## 1085 15 509 2.0 1093028389
## 1086 15 520 3.5 1443384915
## 1087 15 524 2.5 1166586387
## 1088 15 527 4.0 997937239
## 1089 15 535 3.0 1033345148
## 1090 15 539 2.0 1093028325
## 1091 15 540 1.5 1240203835
## 1092 15 541 5.0 997938438
## 1093 15 543 3.0 1093070381
## 1094 15 549 5.0 997938676
## 1095 15 551 2.0 997939055
## 1096 15 555 4.0 1033344257
## 1097 15 556 3.5 1361078504
## 1098 15 562 3.0 1166586512
## 1099 15 574 3.0 1141391972
## 1100 15 586 2.0 1093028377
## 1101 15 587 1.0 1093028322
## 1102 15 588 0.5 1093028161
## 1103 15 589 4.0 997938451
## 1104 15 590 3.0 1093028142
## 1105 15 592 4.0 997939162
## 1106 15 593 5.0 997938500
## 1107 15 594 2.5 1245021392
## 1108 15 597 2.5 1093028267
## 1109 15 608 5.0 997938500
## 1110 15 610 3.0 1052896916
## 1111 15 628 2.5 1093070326
## 1112 15 647 1.5 1134521628
## 1113 15 648 4.0 1093028231
## 1114 15 663 2.0 1035258608
## 1115 15 665 3.0 997939348
## 1116 15 674 3.0 1052896916
## 1117 15 680 2.0 1052896867
## 1118 15 708 3.0 1093028406
## 1119 15 720 3.0 1033345122
## 1120 15 724 2.0 1166586237
## 1121 15 733 3.5 1093028260
## 1122 15 736 1.0 1093028237
## 1123 15 745 3.0 997938288
## 1124 15 748 2.5 1166586565
## 1125 15 750 4.0 997938438
## 1126 15 762 2.0 1093070454
## 1127 15 778 4.0 1054450167
## 1128 15 780 2.5 1093028151
## 1129 15 784 2.5 1093070207
## 1130 15 785 3.0 1033344834
## 1131 15 786 0.5 1093028395
## 1132 15 788 1.5 1134521382
## 1133 15 799 3.0 1136904835
## 1134 15 800 5.0 997938391
## 1135 15 802 1.0 1128274713
## 1136 15 803 4.5 1054450008
## 1137 15 804 3.5 1134522085
## 1138 15 832 1.0 1166586002
## 1139 15 836 2.0 1166586995
## 1140 15 851 4.0 1035258747
## 1141 15 858 5.0 997938703
## 1142 15 866 4.0 997938567
## 1143 15 899 5.0 1058250570
## 1144 15 903 5.0 997938346
## 1145 15 904 5.0 997938346
## 1146 15 908 5.0 997938500
## 1147 15 909 4.0 997939604
## 1148 15 910 2.5 1122576681
## 1149 15 911 4.0 1058250459
## 1150 15 912 5.0 997938140
## 1151 15 913 4.0 1416119525
## 1152 15 914 1.5 1058250501
## 1153 15 916 1.0 1128274460
## 1154 15 919 3.0 997938737
## 1155 15 920 3.5 1093070090
## 1156 15 922 1.0 1040205624
## 1157 15 923 5.0 997938727
## 1158 15 924 5.0 997938358
## 1159 15 926 3.0 1044219825
## 1160 15 931 1.0 1058250466
## 1161 15 953 3.0 997938800
## 1162 15 994 4.0 997939453
## 1163 15 1020 2.0 1166586619
## 1164 15 1035 2.0 1034544304
## 1165 15 1036 4.0 997938528
## 1166 15 1041 5.0 997938905
## 1167 15 1047 2.5 1348976598
## 1168 15 1059 1.5 1166586136
## 1169 15 1060 4.0 1054450184
## 1170 15 1073 3.0 997938603
## 1171 15 1079 4.0 997937239
## 1172 15 1084 3.0 997938787
## 1173 15 1088 2.0 1122576683
## 1174 15 1089 4.0 997938528
## 1175 15 1092 2.5 1193436089
## 1176 15 1093 2.0 1166586415
## 1177 15 1094 4.0 1033345199
## 1178 15 1095 4.0 1040205624
## 1179 15 1097 4.0 997938466
## 1180 15 1100 2.5 1458506296
## 1181 15 1101 3.0 1093070163
## 1182 15 1120 1.0 1055439464
## 1183 15 1127 4.0 997939162
## 1184 15 1131 2.5 1345397949
## 1185 15 1136 2.5 1128274586
## 1186 15 1147 3.5 1386368101
## 1187 15 1148 3.0 997938288
## 1188 15 1171 4.0 1054449673
## 1189 15 1173 3.0 1193435335
## 1190 15 1176 4.0 997938862
## 1191 15 1178 3.0 997938771
## 1192 15 1179 4.0 1033344257
## 1193 15 1183 2.0 1443384910
## 1194 15 1186 4.5 1166586456
## 1195 15 1189 3.5 1361078481
## 1196 15 1193 5.0 997938760
## 1197 15 1196 5.0 997938438
## 1198 15 1197 1.0 1040205753
## 1199 15 1198 4.0 997939111
## 1200 15 1199 1.0 1093070386
## 1201 15 1200 4.0 997938528
## 1202 15 1201 3.5 1345398232
## 1203 15 1203 4.0 997938784
## 1204 15 1204 2.0 997939111
## 1205 15 1206 5.0 997938438
## 1206 15 1207 3.0 1044347743
## 1207 15 1208 5.0 997938822
## 1208 15 1209 4.5 1345398245
## 1209 15 1210 5.0 997938466
## 1210 15 1211 1.5 1058250487
## 1211 15 1212 3.0 1166586696
## 1212 15 1213 3.0 997938749
## 1213 15 1214 4.0 997938203
## 1214 15 1215 1.5 1054271469
## 1215 15 1217 2.0 1055439440
## 1216 15 1218 4.0 997939207
## 1217 15 1219 3.0 997938203
## 1218 15 1220 1.0 1093070109
## 1219 15 1221 5.0 997938712
## 1220 15 1222 4.0 997939614
## 1221 15 1223 4.0 997938288
## 1222 15 1225 4.0 1034544304
## 1223 15 1228 4.0 997938800
## 1224 15 1230 3.0 1044347881
## 1225 15 1231 4.0 1054450216
## 1226 15 1233 3.0 997938727
## 1227 15 1234 4.0 1054450238
## 1228 15 1235 3.5 1166586368
## 1229 15 1240 3.0 997938451
## 1230 15 1243 2.0 1033345172
## 1231 15 1244 5.0 997938151
## 1232 15 1246 1.0 1093070174
## 1233 15 1247 5.0 997938171
## 1234 15 1248 3.0 997938509
## 1235 15 1249 3.0 997938500
## 1236 15 1250 4.0 997938760
## 1237 15 1251 3.0 997938749
## 1238 15 1252 5.0 997938346
## 1239 15 1254 3.5 1345398347
## 1240 15 1258 4.0 997938219
## 1241 15 1259 3.0 997938917
## 1242 15 1260 3.0 997938981
## 1243 15 1262 1.5 1134521651
## 1244 15 1263 4.0 1120208625
## 1245 15 1264 3.0 997938162
## 1246 15 1265 4.0 997938171
## 1247 15 1266 4.0 997939360
## 1248 15 1267 5.0 997938500
## 1249 15 1270 5.0 997938451
## 1250 15 1272 3.5 1054450246
## 1251 15 1276 2.5 1054450208
## 1252 15 1280 3.0 997938941
## 1253 15 1281 1.0 1063565335
## 1254 15 1283 3.0 1416120074
## 1255 15 1284 3.0 1345397986
## 1256 15 1287 2.0 1033345087
## 1257 15 1288 4.0 1163876491
## 1258 15 1289 4.0 1465793922
## 1259 15 1290 3.0 1035258608
## 1260 15 1291 4.0 997939144
## 1261 15 1293 4.0 997938894
## 1262 15 1297 4.0 1166587005
## 1263 15 1302 3.0 1093070459
## 1264 15 1303 2.0 1054450251
## 1265 15 1304 3.0 1040205753
## 1266 15 1307 5.0 997938162
## 1267 15 1320 3.0 1134521497
## 1268 15 1333 2.0 997938219
## 1269 15 1334 2.0 1052896916
## 1270 15 1339 2.0 1134521654
## 1271 15 1342 2.0 1033345050
## 1272 15 1356 2.0 1052896819
## 1273 15 1358 1.0 997938500
## 1274 15 1361 3.5 1361078494
## 1275 15 1370 3.0 1093070198
## 1276 15 1377 3.0 1093070479
## 1277 15 1380 2.5 1166586012
## 1278 15 1385 3.0 1458506268
## 1279 15 1387 4.0 1040205754
## 1280 15 1391 0.5 1093070145
## 1281 15 1393 3.5 1058250612
## 1282 15 1394 4.0 997939021
## 1283 15 1396 4.0 1055439459
## 1284 15 1405 3.0 1052897043
## 1285 15 1407 5.0 997938219
## 1286 15 1449 4.0 997939358
## 1287 15 1464 4.0 997938391
## 1288 15 1466 4.0 997939439
## 1289 15 1476 3.0 1134522057
## 1290 15 1479 1.5 1338699256
## 1291 15 1483 3.0 1193435343
## 1292 15 1484 3.0 997938358
## 1293 15 1485 3.0 1093070397
## 1294 15 1500 3.0 1093070210
## 1295 15 1502 1.5 1425876701
## 1296 15 1503 1.0 1035258747
## 1297 15 1513 2.0 1033344937
## 1298 15 1517 3.0 997939453
## 1299 15 1527 1.0 1052896819
## 1300 15 1529 3.0 997939393
## 1301 15 1544 1.0 1093070319
## 1302 15 1546 4.0 997938322
## 1303 15 1552 1.5 1134521507
## 1304 15 1556 2.5 1166587010
## 1305 15 1562 1.5 1166586212
## 1306 15 1569 3.5 1134521624
## 1307 15 1573 4.0 997938476
## 1308 15 1580 4.0 997939179
## 1309 15 1584 4.0 1052896685
## 1310 15 1589 2.0 1093028013
## 1311 15 1597 2.0 1134521585
## 1312 15 1608 1.0 1093070221
## 1313 15 1610 3.0 1040205754
## 1314 15 1615 3.0 997939193
## 1315 15 1616 3.0 1166587214
## 1316 15 1617 5.0 997938346
## 1317 15 1625 4.0 997938391
## 1318 15 1635 4.0 1033345134
## 1319 15 1639 4.0 1054449877
## 1320 15 1644 1.5 1166586517
## 1321 15 1645 3.0 997938413
## 1322 15 1649 2.0 997938647
## 1323 15 1653 3.0 1052896685
## 1324 15 1663 3.0 1058250115
## 1325 15 1673 3.0 1033345299
## 1326 15 1676 4.0 1052896916
## 1327 15 1680 3.0 1166586583
## 1328 15 1682 2.0 997939424
## 1329 15 1689 4.5 1465880892
## 1330 15 1690 1.0 1134521603
## 1331 15 1694 3.0 997938879
## 1332 15 1704 4.0 1033345148
## 1333 15 1717 4.0 1166586533
## 1334 15 1719 4.0 997938931
## 1335 15 1721 1.5 1093028339
## 1336 15 1722 3.5 1134521534
## 1337 15 1729 1.0 1033344286
## 1338 15 1732 3.5 1054449676
## 1339 15 1735 0.5 1166981862
## 1340 15 1747 3.5 1134521589
## 1341 15 1748 4.0 997938451
## 1342 15 1752 3.5 1469330699
## 1343 15 1753 1.0 1349622617
## 1344 15 1754 3.5 1460076717
## 1345 15 1777 2.0 1134521514
## 1346 15 1779 1.0 1166586707
## 1347 15 1784 3.0 1033345287
## 1348 15 1792 3.0 1458506454
## 1349 15 1805 3.0 997938391
## 1350 15 1807 1.5 1093028022
## 1351 15 1810 2.5 1166587162
## 1352 15 1816 2.5 1465881179
## 1353 15 1827 4.0 997938676
## 1354 15 1831 2.0 1166586439
## 1355 15 1834 3.5 1058250734
## 1356 15 1836 2.0 1469330727
## 1357 15 1845 4.0 1052897012
## 1358 15 1859 5.0 997938834
## 1359 15 1860 4.0 997939439
## 1360 15 1862 2.0 1469330647
## 1361 15 1876 2.0 1134521539
## 1362 15 1882 1.5 1166586478
## 1363 15 1883 4.0 1052897043
## 1364 15 1889 3.0 1054449827
## 1365 15 1895 2.5 1469330584
## 1366 15 1897 1.5 1054450597
## 1367 15 1904 3.5 1075142949
## 1368 15 1909 2.0 1052896819
## 1369 15 1912 5.0 1033345241
## 1370 15 1914 3.5 1054449899
## 1371 15 1917 2.0 1052896916
## 1372 15 1921 4.0 1052896819
## 1373 15 1923 4.5 1054449908
## 1374 15 1945 4.0 997938954
## 1375 15 1950 3.0 1058249502
## 1376 15 1952 3.0 997938810
## 1377 15 1953 3.0 997938528
## 1378 15 1954 3.0 1040205792
## 1379 15 1955 4.5 1338698424
## 1380 15 1956 4.0 1166587036
## 1381 15 1961 3.5 1093028404
## 1382 15 1962 3.0 1033345068
## 1383 15 1964 3.0 997938372
## 1384 15 1968 4.0 1052897128
## 1385 15 1994 2.5 1166586228
## 1386 15 1997 5.0 997938255
## 1387 15 2000 3.0 1052896975
## 1388 15 2003 3.0 1034544351
## 1389 15 2005 4.0 997938630
## 1390 15 2006 4.0 1035258747
## 1391 15 2010 3.0 1052896685
## 1392 15 2011 3.0 1044219825
## 1393 15 2012 1.0 1046209705
## 1394 15 2018 2.0 1044347881
## 1395 15 2019 4.5 1134521638
## 1396 15 2020 2.5 1379040745
## 1397 15 2025 2.0 1465881239
## 1398 15 2028 3.0 997938784
## 1399 15 2041 2.0 1033344732
## 1400 15 2054 2.0 997938630
## 1401 15 2058 2.5 1166586203
## 1402 15 2060 2.0 1052896975
## 1403 15 2064 4.5 1338698431
## 1404 15 2076 3.0 997938413
## 1405 15 2100 2.0 997938603
## 1406 15 2105 4.0 1052896867
## 1407 15 2108 4.5 1058250482
## 1408 15 2115 4.0 1193435562
## 1409 15 2124 2.0 1033345050
## 1410 15 2126 1.0 1166587068
## 1411 15 2133 3.5 1166587080
## 1412 15 2134 3.5 1122576686
## 1413 15 2140 3.0 1052896819
## 1414 15 2145 2.0 1034544351
## 1415 15 2150 3.0 997937311
## 1416 15 2160 3.0 1166586521
## 1417 15 2161 3.0 997938630
## 1418 15 2167 3.0 997939162
## 1419 15 2174 4.0 997938603
## 1420 15 2186 3.0 997938528
## 1421 15 2194 4.0 1040205754
## 1422 15 2231 3.0 1052897043
## 1423 15 2232 4.0 997938466
## 1424 15 2243 4.5 1128274472
## 1425 15 2248 3.5 1054449665
## 1426 15 2268 1.0 1093070270
## 1427 15 2269 2.5 1465881227
## 1428 15 2273 2.5 1166586189
## 1429 15 2278 2.5 1134521675
## 1430 15 2282 0.5 1469330645
## 1431 15 2288 3.0 1052896740
## 1432 15 2289 4.0 997938322
## 1433 15 2291 3.0 997939439
## 1434 15 2294 2.0 1052897012
## 1435 15 2302 3.5 1093070399
## 1436 15 2303 3.0 997938931
## 1437 15 2311 2.0 1052896916
## 1438 15 2313 3.5 1345397769
## 1439 15 2318 4.5 1054449678
## 1440 15 2321 3.5 1122576690
## 1441 15 2324 2.0 997939328
## 1442 15 2329 1.0 1054450149
## 1443 15 2333 3.0 1033344795
## 1444 15 2334 3.0 1469330601
## 1445 15 2336 2.0 1033344772
## 1446 15 2340 2.0 1134522028
## 1447 15 2351 1.0 1044347881
## 1448 15 2353 0.5 1134521484
## 1449 15 2355 2.0 997939055
## 1450 15 2357 3.0 997938834
## 1451 15 2360 2.0 997937311
## 1452 15 2366 3.0 1040205792
## 1453 15 2369 1.0 1033344752
## 1454 15 2371 3.5 1166586655
## 1455 15 2378 3.0 997937311
## 1456 15 2387 3.5 1465880711
## 1457 15 2391 3.0 997938567
## 1458 15 2395 5.0 997939404
## 1459 15 2396 2.0 997938162
## 1460 15 2405 3.0 1052897012
## 1461 15 2406 3.5 1458506447
## 1462 15 2407 3.0 1052896819
## 1463 15 2413 4.5 1425875796
## 1464 15 2424 1.5 1134521618
## 1465 15 2427 3.0 1040205754
## 1466 15 2428 1.0 1033344782
## 1467 15 2439 2.0 997939328
## 1468 15 2447 2.5 1122576697
## 1469 15 2455 3.5 1166586146
## 1470 15 2467 1.0 997938413
## 1471 15 2478 4.0 1122576699
## 1472 15 2490 1.0 1033344906
## 1473 15 2501 3.0 997938760
## 1474 15 2502 5.0 1033344897
## 1475 15 2505 0.5 1122576701
## 1476 15 2528 2.0 1347937598
## 1477 15 2539 2.5 1465880194
## 1478 15 2541 1.0 1033344732
## 1479 15 2542 1.0 997939415
## 1480 15 2560 3.0 1033344917
## 1481 15 2568 0.5 1469330735
## 1482 15 2571 5.0 997938438
## 1483 15 2572 5.0 1033344641
## 1484 15 2574 1.0 1033344897
## 1485 15 2575 3.0 1033344772
## 1486 15 2579 2.5 1054449822
## 1487 15 2580 3.0 997939393
## 1488 15 2581 1.0 1033344897
## 1489 15 2585 1.0 1033344865
## 1490 15 2594 4.0 997938466
## 1491 15 2598 1.5 1166587193
## 1492 15 2599 3.0 997939021
## 1493 15 2600 3.0 1033344995
## 1494 15 2605 1.0 1033344772
## 1495 15 2617 1.0 1093070339
## 1496 15 2624 3.0 997939255
## 1497 15 2628 2.5 1093028374
## 1498 15 2640 4.0 997939179
## 1499 15 2648 3.0 997938219
## 1500 15 2657 2.0 1052896819
## 1501 15 2671 4.0 997939653
## 1502 15 2678 1.0 1033344752
## 1503 15 2683 1.0 1033344657
## 1504 15 2686 3.0 997938372
## 1505 15 2692 3.0 997938151
## 1506 15 2699 3.0 1033345068
## 1507 15 2700 3.0 1033344958
## 1508 15 2701 1.0 1245361903
## 1509 15 2702 1.5 1122576707
## 1510 15 2706 3.0 1033344657
## 1511 15 2707 3.0 1033344663
## 1512 15 2709 1.0 1033344878
## 1513 15 2710 1.0 1033344702
## 1514 15 2712 4.0 997939623
## 1515 15 2713 1.0 1033344834
## 1516 15 2716 4.0 997938219
## 1517 15 2717 3.5 1465793437
## 1518 15 2718 1.5 1469330590
## 1519 15 2722 2.0 1033344732
## 1520 15 2723 1.0 1033344897
## 1521 15 2726 2.5 1054450195
## 1522 15 2729 3.0 997939653
## 1523 15 2759 1.0 1033344752
## 1524 15 2761 2.0 997939037
## 1525 15 2762 1.0 997938500
## 1526 15 2763 1.0 1033344970
## 1527 15 2769 2.0 997937762
## 1528 15 2770 4.0 1033344702
## 1529 15 2791 4.0 997939008
## 1530 15 2795 3.5 1065197456
## 1531 15 2797 4.0 997938603
## 1532 15 2803 1.5 1166587203
## 1533 15 2819 3.0 997938567
## 1534 15 2840 1.0 1033344958
## 1535 15 2841 2.0 1033344958
## 1536 15 2858 4.0 997938310
## 1537 15 2871 4.0 997939144
## 1538 15 2881 1.0 1033344752
## 1539 15 2890 4.0 1054450160
## 1540 15 2905 4.0 1040205754
## 1541 15 2908 1.0 997938879
## 1542 15 2912 4.0 1040205754
## 1543 15 2915 1.5 1345397822
## 1544 15 2916 4.0 997938466
## 1545 15 2918 4.0 1054449710
## 1546 15 2925 4.0 1166585692
## 1547 15 2947 5.0 1040205655
## 1548 15 2949 4.0 1040205655
## 1549 15 2952 1.0 1054449851
## 1550 15 2959 5.0 997938894
## 1551 15 2973 4.0 997939623
## 1552 15 2976 2.0 1469330578
## 1553 15 2983 4.0 997938576
## 1554 15 2985 3.0 1052896740
## 1555 15 2987 4.0 997939144
## 1556 15 2990 3.5 1345398317
## 1557 15 2993 4.0 1345381197
## 1558 15 2997 5.0 997938310
## 1559 15 3000 4.0 997939086
## 1560 15 3004 1.0 1033344685
## 1561 15 3005 1.0 1033344702
## 1562 15 3006 5.0 997938800
## 1563 15 3007 2.5 1361078485
## 1564 15 3008 2.0 1033344865
## 1565 15 3010 4.0 997938727
## 1566 15 3019 3.0 997938954
## 1567 15 3020 3.0 1166586681
## 1568 15 3030 4.0 997939021
## 1569 15 3033 4.0 1052896867
## 1570 15 3039 4.0 1033344267
## 1571 15 3044 3.0 1058250603
## 1572 15 3052 3.0 997939653
## 1573 15 3060 4.0 1052896975
## 1574 15 3077 3.0 1033345241
## 1575 15 3081 1.0 1033344958
## 1576 15 3082 3.0 1166586269
## 1577 15 3083 5.0 997938310
## 1578 15 3089 3.0 997938895
## 1579 15 3101 4.0 997937311
## 1580 15 3104 4.0 1040205792
## 1581 15 3107 3.0 1316395917
## 1582 15 3108 4.0 997939453
## 1583 15 3113 2.0 1166587025
## 1584 15 3114 1.0 1033344983
## 1585 15 3128 4.0 997938931
## 1586 15 3129 3.5 1054449917
## 1587 15 3134 1.0 1044347881
## 1588 15 3146 1.5 1460076724
## 1589 15 3147 1.0 997939415
## 1590 15 3148 1.0 1134521933
## 1591 15 3150 3.0 1245361773
## 1592 15 3152 3.0 997938931
## 1593 15 3157 1.0 1033344970
## 1594 15 3160 3.0 997938941
## 1595 15 3168 2.5 1338698402
## 1596 15 3173 2.5 1122576723
## 1597 15 3174 1.0 1033344865
## 1598 15 3175 4.0 997939162
## 1599 15 3176 2.0 997938413
## 1600 15 3181 1.0 997939393
## 1601 15 3182 2.0 997937726
## 1602 15 3185 2.0 1033344958
## 1603 15 3210 5.0 1054449670
## 1604 15 3219 2.0 1033344897
## 1605 15 3225 1.0 997938046
## 1606 15 3246 4.0 1033345148
## 1607 15 3250 2.0 1034544351
## 1608 15 3253 3.0 997939639
## 1609 15 3255 2.0 1134521644
## 1610 15 3256 2.0 1361831567
## 1611 15 3261 4.0 1058250521
## 1612 15 3262 1.0 997938391
## 1613 15 3265 4.0 1345397753
## 1614 15 3266 5.0 1034544304
## 1615 15 3267 3.0 1063565307
## 1616 15 3272 2.0 1033345227
## 1617 15 3273 1.0 997937890
## 1618 15 3275 0.5 1347936677
## 1619 15 3285 2.0 1416119608
## 1620 15 3286 3.0 997937999
## 1621 15 3298 4.0 1033344702
## 1622 15 3300 5.0 997937876
## 1623 15 3301 4.0 1044348420
## 1624 15 3307 3.0 1082220247
## 1625 15 3316 1.5 1416119948
## 1626 15 3317 5.0 997937786
## 1627 15 3318 3.0 997937986
## 1628 15 3320 5.0 1040205943
## 1629 15 3328 4.0 997937748
## 1630 15 3358 2.5 1096005300
## 1631 15 3361 3.0 1054449689
## 1632 15 3362 3.5 1120209453
## 1633 15 3386 3.0 997938391
## 1634 15 3390 1.0 997937239
## 1635 15 3408 2.0 1033344772
## 1636 15 3409 4.0 997937902
## 1637 15 3418 1.0 1040205754
## 1638 15 3421 1.5 1063565279
## 1639 15 3429 3.0 997938310
## 1640 15 3435 2.5 1054450188
## 1641 15 3448 2.5 1193436085
## 1642 15 3461 3.0 997939144
## 1643 15 3462 1.5 1063565329
## 1644 15 3471 4.0 1034544304
## 1645 15 3476 4.5 1465881233
## 1646 15 3477 3.0 1093028035
## 1647 15 3481 5.0 997937748
## 1648 15 3484 0.5 1465880417
## 1649 15 3489 2.0 1166586405
## 1650 15 3499 3.0 997938242
## 1651 15 3504 4.0 997938810
## 1652 15 3505 4.0 1134521930
## 1653 15 3510 2.0 1033344795
## 1654 15 3512 3.0 997937926
## 1655 15 3527 3.0 1052896819
## 1656 15 3534 1.0 997937935
## 1657 15 3535 1.0 997937822
## 1658 15 3536 4.0 997937808
## 1659 15 3538 1.5 1096005190
## 1660 15 3543 2.0 1033344752
## 1661 15 3552 2.0 1465880183
## 1662 15 3555 1.0 1166586553
## 1663 15 3556 3.0 997937786
## 1664 15 3566 3.0 997937902
## 1665 15 3569 4.0 997937682
## 1666 15 3571 4.0 997937848
## 1667 15 3577 3.5 1465954636
## 1668 15 3578 2.0 1033344795
## 1669 15 3598 3.0 997937762
## 1670 15 3617 4.0 997937822
## 1671 15 3618 2.0 997937876
## 1672 15 3623 1.0 1033344878
## 1673 15 3624 2.0 1122576735
## 1674 15 3626 3.0 997937961
## 1675 15 3633 4.0 1345381200
## 1676 15 3634 2.0 1044347881
## 1677 15 3635 3.5 1345397811
## 1678 15 3638 3.5 1345398289
## 1679 15 3639 2.0 1345397721
## 1680 15 3671 2.0 1166586157
## 1681 15 3683 4.0 997938800
## 1682 15 3707 5.0 1465881231
## 1683 15 3717 1.0 1163876415
## 1684 15 3728 4.0 1443385280
## 1685 15 3730 5.0 997938346
## 1686 15 3735 2.0 997938822
## 1687 15 3742 2.5 1082220261
## 1688 15 3745 1.0 997937836
## 1689 15 3747 2.0 997937700
## 1690 15 3751 1.0 997937726
## 1691 15 3752 1.0 997937971
## 1692 15 3755 1.5 1416119541
## 1693 15 3763 2.0 1122576740
## 1694 15 3783 2.0 997937700
## 1695 15 3785 4.0 997937822
## 1696 15 3786 2.0 1033344712
## 1697 15 3787 3.0 997937795
## 1698 15 3788 3.0 997938391
## 1699 15 3793 2.0 997937808
## 1700 15 3794 4.0 997937914
## 1701 15 3798 2.0 997937999
## 1702 15 3800 2.0 1039243666
## 1703 15 3801 3.0 997938372
## 1704 15 3823 2.0 997937726
## 1705 15 3825 1.0 997938015
## 1706 15 3826 1.0 997938035
## 1707 15 3827 2.5 1134522068
## 1708 15 3852 3.0 1044348420
## 1709 15 3854 3.0 1240203682
## 1710 15 3861 3.0 1044348492
## 1711 15 3863 2.0 997937860
## 1712 15 3868 4.0 1134521920
## 1713 15 3882 4.0 997937890
## 1714 15 3892 1.0 1039243705
## 1715 15 3893 1.0 997937860
## 1716 15 3896 3.0 997937890
## 1717 15 3897 3.0 997937700
## 1718 15 3910 2.0 997937848
## 1719 15 3911 2.0 997937427
## 1720 15 3915 5.0 997937700
## 1721 15 3943 3.0 997937860
## 1722 15 3948 5.0 1044348382
## 1723 15 3949 5.0 997937413
## 1724 15 3952 4.0 997937890
## 1725 15 3956 1.0 997937986
## 1726 15 3967 1.0 997937762
## 1727 15 3968 2.5 1425876021
## 1728 15 3969 1.0 997937459
## 1729 15 3977 3.0 997937848
## 1730 15 3979 1.0 997938035
## 1731 15 3981 1.0 1033344924
## 1732 15 3983 5.0 997937413
## 1733 15 3984 4.0 1338698406
## 1734 15 3986 1.0 997937926
## 1735 15 3987 4.0 997937961
## 1736 15 3988 1.0 1166587057
## 1737 15 3989 3.0 997937700
## 1738 15 3990 1.0 997937999
## 1739 15 3993 1.0 997937902
## 1740 15 3994 4.0 997937442
## 1741 15 3996 5.0 997937413
## 1742 15 3998 1.0 997937614
## 1743 15 3999 3.0 997937459
## 1744 15 4005 3.5 1345398275
## 1745 15 4006 3.0 1052896916
## 1746 15 4007 3.5 1426110367
## 1747 15 4010 2.0 1033345087
## 1748 15 4011 1.0 997937606
## 1749 15 4014 2.0 1044348492
## 1750 15 4015 5.0 997937442
## 1751 15 4017 4.0 997937413
## 1752 15 4018 1.0 1044348492
## 1753 15 4019 2.0 1416119589
## 1754 15 4020 3.0 997937442
## 1755 15 4021 3.0 997937427
## 1756 15 4022 3.0 997937413
## 1757 15 4023 2.0 997937442
## 1758 15 4025 1.0 1044348492
## 1759 15 4027 3.0 997937606
## 1760 15 4029 4.0 1033343955
## 1761 15 4030 2.0 997937459
## 1762 15 4033 4.0 1084489330
## 1763 15 4034 4.0 997937413
## 1764 15 4036 1.0 997937427
## 1765 15 4037 3.0 997938372
## 1766 15 4052 1.0 997937442
## 1767 15 4055 1.0 1033344023
## 1768 15 4056 5.0 997937442
## 1769 15 4066 4.0 997938994
## 1770 15 4079 4.0 1052896685
## 1771 15 4082 1.0 1034544351
## 1772 15 4085 3.0 1345398332
## 1773 15 4121 3.0 1033344307
## 1774 15 4144 4.0 997937700
## 1775 15 4148 1.0 997938035
## 1776 15 4149 1.0 1349622626
## 1777 15 4158 2.0 997937459
## 1778 15 4161 3.0 997937914
## 1779 15 4167 1.0 997937986
## 1780 15 4168 3.0 1040205943
## 1781 15 4210 4.5 1061496845
## 1782 15 4223 1.0 997937775
## 1783 15 4225 1.0 997937762
## 1784 15 4226 5.0 997937682
## 1785 15 4232 3.0 997939162
## 1786 15 4235 4.0 997937713
## 1787 15 4238 3.0 997937986
## 1788 15 4239 1.0 997937808
## 1789 15 4246 2.0 997937713
## 1790 15 4247 1.0 1349622526
## 1791 15 4262 3.0 1120209753
## 1792 15 4270 1.5 1166586578
## 1793 15 4271 4.0 997937762
## 1794 15 4299 2.5 1374637769
## 1795 15 4302 5.0 997937808
## 1796 15 4306 1.0 1033343955
## 1797 15 4308 2.0 1033343955
## 1798 15 4310 3.0 997937366
## 1799 15 4321 2.0 997939193
## 1800 15 4322 4.0 1345397847
## 1801 15 4343 1.0 997937949
## 1802 15 4344 2.0 997937334
## 1803 15 4351 3.0 1349048073
## 1804 15 4361 5.0 997938151
## 1805 15 4367 1.0 997937374
## 1806 15 4369 3.0 997937366
## 1807 15 4370 1.0 997937822
## 1808 15 4372 3.0 1039243666
## 1809 15 4378 3.0 1033343955
## 1810 15 4380 2.0 1033345068
## 1811 15 4381 2.0 997937346
## 1812 15 4383 3.0 997937775
## 1813 15 4386 1.0 997937384
## 1814 15 4388 3.0 1416119736
## 1815 15 4410 3.0 997939653
## 1816 15 4446 4.0 997937334
## 1817 15 4447 1.5 1096005216
## 1818 15 4448 1.0 997937822
## 1819 15 4450 2.0 1054774846
## 1820 15 4451 2.5 1075143282
## 1821 15 4489 4.5 1345397842
## 1822 15 4546 3.0 997938203
## 1823 15 4571 3.0 997938617
## 1824 15 4621 3.0 997937575
## 1825 15 4623 4.0 997937575
## 1826 15 4638 1.0 997937346
## 1827 15 4639 1.0 1033344625
## 1828 15 4641 3.0 1033343955
## 1829 15 4642 1.5 1469330631
## 1830 15 4643 3.0 997937346
## 1831 15 4654 1.0 997937551
## 1832 15 4658 2.0 997937544
## 1833 15 4666 1.0 997937539
## 1834 15 4675 2.0 997937530
## 1835 15 4678 4.0 997937519
## 1836 15 4679 3.0 997937519
## 1837 15 4700 2.0 997937366
## 1838 15 4701 3.0 997937366
## 1839 15 4713 4.0 997937494
## 1840 15 4718 4.0 1044348492
## 1841 15 4719 2.0 1374637779
## 1842 15 4720 2.0 1039243705
## 1843 15 4723 3.5 1054449465
## 1844 15 4727 3.0 1052896975
## 1845 15 4728 4.0 1044348492
## 1846 15 4731 5.0 1033344023
## 1847 15 4734 1.0 1044348420
## 1848 15 4738 3.5 1075143297
## 1849 15 4744 1.0 1039243705
## 1850 15 4776 2.5 1054449369
## 1851 15 4816 3.0 1166586875
## 1852 15 4823 2.5 1416119762
## 1853 15 4844 2.0 1044348492
## 1854 15 4848 2.0 1054449351
## 1855 15 4873 5.0 1040206368
## 1856 15 4878 4.0 1039243666
## 1857 15 4881 1.5 1054449340
## 1858 15 4886 5.0 1033344055
## 1859 15 4888 3.0 1054449355
## 1860 15 4890 3.0 1033343866
## 1861 15 4896 1.0 1040206325
## 1862 15 4901 4.0 1054449484
## 1863 15 4902 2.0 1033343828
## 1864 15 4903 5.0 1033939395
## 1865 15 4914 4.0 1465880321
## 1866 15 4958 1.0 1469330599
## 1867 15 4963 4.0 1044348382
## 1868 15 4973 2.0 1033343815
## 1869 15 4974 2.0 1349622574
## 1870 15 4975 1.0 1040205965
## 1871 15 4979 5.0 1033343841
## 1872 15 4992 1.5 1425876112
## 1873 15 4993 5.0 1033343815
## 1874 15 4995 1.0 1033343815
## 1875 15 5000 3.5 1443385401
## 1876 15 5008 3.5 1120209745
## 1877 15 5010 4.5 1054449333
## 1878 15 5013 2.0 1033343815
## 1879 15 5015 1.0 1033344055
## 1880 15 5026 2.0 1041532617
## 1881 15 5060 1.5 1054450221
## 1882 15 5066 3.0 1033343866
## 1883 15 5071 5.0 1044348382
## 1884 15 5074 1.0 1096005077
## 1885 15 5075 4.0 1033344006
## 1886 15 5110 1.5 1416119882
## 1887 15 5120 3.0 1345397962
## 1888 15 5128 1.0 1033343934
## 1889 15 5135 4.0 1044348382
## 1890 15 5170 2.0 1033343901
## 1891 15 5171 0.5 1416119747
## 1892 15 5218 1.0 1033344044
## 1893 15 5219 1.0 1033343934
## 1894 15 5220 3.0 1033343919
## 1895 15 5222 2.0 1122925555
## 1896 15 5225 1.5 1075143288
## 1897 15 5254 1.0 1033343866
## 1898 15 5266 1.0 1033344286
## 1899 15 5269 4.5 1240203827
## 1900 15 5279 0.5 1054449705
## 1901 15 5283 3.0 1033343934
## 1902 15 5291 3.5 1416120007
## 1903 15 5293 3.0 1033343841
## 1904 15 5296 1.5 1465880704
## 1905 15 5298 2.5 1367800223
## 1906 15 5299 0.5 1416119542
## 1907 15 5308 2.5 1465794274
## 1908 15 5313 1.0 1033343919
## 1909 15 5319 3.5 1054449455
## 1910 15 5339 3.5 1345397799
## 1911 15 5346 3.5 1465954627
## 1912 15 5349 1.0 1039243048
## 1913 15 5363 1.0 1033343901
## 1914 15 5364 2.5 1465881201
## 1915 15 5377 4.0 1096005096
## 1916 15 5378 3.0 1039243048
## 1917 15 5388 2.0 1166586831
## 1918 15 5391 2.5 1367800228
## 1919 15 5400 3.0 1039243048
## 1920 15 5410 2.0 1052896740
## 1921 15 5416 1.5 1096005195
## 1922 15 5418 2.0 1033344065
## 1923 15 5419 1.0 1039243069
## 1924 15 5444 1.0 1040205624
## 1925 15 5445 5.0 1033344034
## 1926 15 5449 2.0 1033344188
## 1927 15 5458 1.0 1033344374
## 1928 15 5459 1.0 1033344188
## 1929 15 5463 1.0 1033344188
## 1930 15 5464 0.5 1166586482
## 1931 15 5477 5.0 1033344357
## 1932 15 5478 2.0 1052896819
## 1933 15 5481 2.0 1033344374
## 1934 15 5500 4.0 1033344296
## 1935 15 5502 1.0 1033344129
## 1936 15 5504 2.0 1033344119
## 1937 15 5507 1.0 1033344145
## 1938 15 5508 3.0 1054503542
## 1939 15 5515 4.0 1033344401
## 1940 15 5524 1.0 1033344137
## 1941 15 5528 1.0 1033344334
## 1942 15 5541 3.0 1035258747
## 1943 15 5553 2.0 1035258747
## 1944 15 5568 3.0 1035258747
## 1945 15 5577 2.5 1054513297
## 1946 15 5617 3.5 1222576379
## 1947 15 5618 1.5 1084489317
## 1948 15 5620 0.5 1425876082
## 1949 15 5630 1.5 1055439475
## 1950 15 5650 3.0 1034544351
## 1951 15 5662 4.0 1035258564
## 1952 15 5669 4.0 1046209630
## 1953 15 5673 3.5 1075142963
## 1954 15 5679 4.0 1035258362
## 1955 15 5791 2.0 1039242955
## 1956 15 5792 4.0 1054449327
## 1957 15 5809 3.0 1052906939
## 1958 15 5816 1.0 1416119666
## 1959 15 5872 3.0 1166587383
## 1960 15 5878 1.0 1066591270
## 1961 15 5893 5.0 1040205624
## 1962 15 5902 4.0 1044220069
## 1963 15 5903 2.0 1357110234
## 1964 15 5909 1.0 1096005087
## 1965 15 5945 1.0 1096005111
## 1966 15 5952 5.0 1040448133
## 1967 15 5954 1.0 1084489297
## 1968 15 5956 2.5 1163876422
## 1969 15 5957 4.5 1075143302
## 1970 15 5959 3.0 1443385275
## 1971 15 5968 3.0 1040205624
## 1972 15 5989 2.5 1134521661
## 1973 15 5991 1.0 1096005123
## 1974 15 5995 4.0 1120209437
## 1975 15 6003 1.5 1096005130
## 1976 15 6016 2.0 1093027992
## 1977 15 6025 3.0 1046209643
## 1978 15 6037 3.0 1465954655
## 1979 15 6059 2.0 1416119908
## 1980 15 6155 0.5 1416119753
## 1981 15 6157 0.5 1416119690
## 1982 15 6180 1.0 1046209705
## 1983 15 6188 3.5 1416119611
## 1984 15 6203 3.0 1046209705
## 1985 15 6218 0.5 1096005101
## 1986 15 6271 4.0 1052897100
## 1987 15 6281 1.0 1163876393
## 1988 15 6283 1.0 1416119893
## 1989 15 6287 0.5 1425876025
## 1990 15 6296 1.5 1096005116
## 1991 15 6299 2.5 1075142952
## 1992 15 6303 2.5 1055439424
## 1993 15 6327 4.0 1084489307
## 1994 15 6331 3.0 1120208617
## 1995 15 6333 3.0 1052896685
## 1996 15 6365 1.0 1054271424
## 1997 15 6373 2.0 1134522002
## 1998 15 6377 1.0 1061496771
## 1999 15 6378 3.0 1122576748
## 2000 15 6380 3.0 1166585438
## 2001 15 6385 1.5 1084489293
## 2002 15 6433 3.0 1465793939
## 2003 15 6440 3.5 1054449659
## 2004 15 6442 3.5 1055439392
## 2005 15 6464 2.5 1056617566
## 2006 15 6502 3.5 1058249439
## 2007 15 6503 2.5 1134521973
## 2008 15 6534 2.0 1061496778
## 2009 15 6537 2.5 1058249457
## 2010 15 6539 3.5 1061496766
## 2011 15 6547 1.0 1061496761
## 2012 15 6552 1.5 1082220233
## 2013 15 6586 3.0 1416119958
## 2014 15 6593 1.0 1096005208
## 2015 15 6620 1.5 1082220241
## 2016 15 6641 4.0 1093028561
## 2017 15 6650 3.5 1120209771
## 2018 15 6708 2.0 1082220217
## 2019 15 6711 3.5 1065197251
## 2020 15 6754 0.5 1425876028
## 2021 15 6773 1.0 1465881072
## 2022 15 6783 2.0 1082220258
## 2023 15 6787 5.0 1120209297
## 2024 15 6816 4.0 1096005320
## 2025 15 6820 2.5 1067797435
## 2026 15 6863 2.0 1082220208
## 2027 15 6867 3.5 1093981691
## 2028 15 6870 3.5 1068955127
## 2029 15 6873 1.0 1096005187
## 2030 15 6874 1.0 1067797349
## 2031 15 6875 1.0 1096005180
## 2032 15 6879 2.5 1416119807
## 2033 15 6885 1.0 1465954640
## 2034 15 6932 4.5 1075142920
## 2035 15 6934 1.5 1338699263
## 2036 15 6936 1.0 1075142924
## 2037 15 6942 3.0 1088621558
## 2038 15 6944 4.0 1465794270
## 2039 15 6947 1.0 1347936706
## 2040 15 6953 2.0 1083003232
## 2041 15 6957 4.0 1222576385
## 2042 15 6961 2.5 1240203829
## 2043 15 6975 4.0 1093028559
## 2044 15 6978 2.5 1097770851
## 2045 15 6979 3.0 1257734253
## 2046 15 6989 2.5 1348976559
## 2047 15 7003 2.0 1367800233
## 2048 15 7004 2.5 1374637760
## 2049 15 7008 3.5 1240203970
## 2050 15 7010 3.5 1465954687
## 2051 15 7028 3.5 1132469120
## 2052 15 7034 4.5 1443384409
## 2053 15 7090 3.0 1120209290
## 2054 15 7123 3.5 1347936794
## 2055 15 7132 3.0 1096005056
## 2056 15 7143 2.0 1088621554
## 2057 15 7147 1.5 1088621484
## 2058 15 7153 1.5 1075142916
## 2059 15 7156 3.0 1120209458
## 2060 15 7162 1.0 1075142909
## 2061 15 7173 0.5 1416119886
## 2062 15 7199 1.0 1096005109
## 2063 15 7254 1.0 1166587408
## 2064 15 7265 3.5 1193435338
## 2065 15 7293 1.0 1093028019
## 2066 15 7317 3.0 1082220195
## 2067 15 7323 2.0 1222576372
## 2068 15 7325 0.5 1416119755
## 2069 15 7327 1.5 1082220223
## 2070 15 7346 3.0 1465954961
## 2071 15 7348 2.0 1093028001
## 2072 15 7361 5.0 1082220175
## 2073 15 7371 1.0 1097770844
## 2074 15 7373 1.5 1134521979
## 2075 15 7438 0.5 1093981610
## 2076 15 7444 1.0 1425876074
## 2077 15 7445 1.5 1416119694
## 2078 15 7451 3.5 1416119705
## 2079 15 7458 1.5 1166587430
## 2080 15 7484 4.0 1338698422
## 2081 15 7487 1.5 1240203696
## 2082 15 7560 3.5 1093070784
## 2083 15 7569 3.5 1345397687
## 2084 15 7573 2.5 1345398305
## 2085 15 7698 3.0 1345381192
## 2086 15 7792 2.5 1345397672
## 2087 15 7925 3.0 1096005042
## 2088 15 8011 2.0 1093027976
## 2089 15 8264 4.0 1465793979
## 2090 15 8360 2.5 1134522006
## 2091 15 8361 4.0 1093027865
## 2092 15 8366 2.5 1088621517
## 2093 15 8368 1.5 1163876352
## 2094 15 8376 2.5 1166587363
## 2095 15 8464 3.0 1416119547
## 2096 15 8528 1.0 1122576284
## 2097 15 8529 1.5 1257734240
## 2098 15 8531 1.5 1465880288
## 2099 15 8581 2.5 1361078268
## 2100 15 8582 3.5 1120209740
## 2101 15 8622 3.5 1163876408
## 2102 15 8623 3.0 1096005049
## 2103 15 8636 3.0 1093027850
## 2104 15 8638 4.0 1128274489
## 2105 15 8641 3.0 1349622612
## 2106 15 8644 1.0 1163876378
## 2107 15 8645 2.0 1120210020
## 2108 15 8665 3.5 1093027853
## 2109 15 8781 0.5 1416119915
## 2110 15 8784 2.0 1134521997
## 2111 15 8798 3.0 1166586987
## 2112 15 8807 2.5 1349622634
## 2113 15 8865 1.0 1166981777
## 2114 15 8874 2.5 1122925517
## 2115 15 8910 2.5 1120210034
## 2116 15 8914 4.5 1101423864
## 2117 15 8917 4.0 1465880526
## 2118 15 8930 2.5 1166585434
## 2119 15 8948 1.0 1166981765
## 2120 15 8949 4.5 1120209300
## 2121 15 8950 2.0 1357110243
## 2122 15 8957 3.0 1134522096
## 2123 15 8958 3.5 1134522079
## 2124 15 8961 2.0 1101423869
## 2125 15 8970 2.0 1163876370
## 2126 15 8972 3.5 1374637712
## 2127 15 8974 2.5 1374637844
## 2128 15 8984 2.0 1166981834
## 2129 15 26131 5.0 1222575895
## 2130 15 26152 4.0 1134521251
## 2131 15 26587 5.0 1416120087
## 2132 15 26729 4.5 1166585398
## 2133 15 26810 2.0 1166587331
## 2134 15 27020 2.5 1240203954
## 2135 15 27478 2.5 1349622724
## 2136 15 27660 4.0 1166587397
## 2137 15 27773 1.0 1134521148
## 2138 15 27821 1.0 1348976609
## 2139 15 27846 4.0 1120209293
## 2140 15 27904 2.5 1347936774
## 2141 15 30707 1.5 1127035004
## 2142 15 30749 2.0 1120208607
## 2143 15 30810 1.5 1136904803
## 2144 15 30812 0.5 1416119604
## 2145 15 30825 1.5 1416119717
## 2146 15 31685 0.5 1361831527
## 2147 15 31696 3.5 1127035028
## 2148 15 32587 3.5 1136087271
## 2149 15 33004 0.5 1127035016
## 2150 15 33154 3.5 1338702522
## 2151 15 33166 3.5 1132469115
## 2152 15 33493 5.0 1132469077
## 2153 15 33679 3.5 1136904851
## 2154 15 33794 4.5 1120208603
## 2155 15 34048 0.5 1316395912
## 2156 15 34072 1.5 1361078474
## 2157 15 34150 1.0 1416119744
## 2158 15 34162 1.0 1141391741
## 2159 15 34319 1.0 1316395893
## 2160 15 34334 1.5 1367765144
## 2161 15 34405 0.5 1357110418
## 2162 15 34542 3.5 1141391837
## 2163 15 35836 3.0 1135737540
## 2164 15 35957 2.5 1141391844
## 2165 15 36517 1.5 1138537176
## 2166 15 36529 1.0 1416119600
## 2167 15 37386 2.0 1465954599
## 2168 15 37729 2.0 1141391812
## 2169 15 37741 2.5 1425876066
## 2170 15 38061 4.5 1222576339
## 2171 15 38886 1.5 1338698465
## 2172 15 39292 4.5 1166587434
## 2173 15 40583 2.0 1416119810
## 2174 15 40815 1.5 1416119662
## 2175 15 41997 2.5 1258259502
## 2176 15 42718 4.5 1348976510
## 2177 15 44004 1.0 1465880318
## 2178 15 44191 2.5 1240211404
## 2179 15 44195 2.0 1222576358
## 2180 15 44199 4.0 1222575879
## 2181 15 44555 1.0 1465794625
## 2182 15 44597 2.5 1316408165
## 2183 15 44665 1.0 1240211399
## 2184 15 44761 1.5 1357109999
## 2185 15 44788 4.0 1465793925
## 2186 15 45186 2.5 1316396016
## 2187 15 45447 1.0 1425876007
## 2188 15 45499 2.5 1338698829
## 2189 15 45517 0.5 1416119707
## 2190 15 45666 4.0 1374637848
## 2191 15 45672 1.5 1465794277
## 2192 15 45720 1.5 1416119790
## 2193 15 45722 2.0 1416120304
## 2194 15 45728 0.5 1416119889
## 2195 15 45950 3.0 1169616283
## 2196 15 46530 0.5 1338699292
## 2197 15 46578 1.0 1338702417
## 2198 15 46723 2.0 1367800237
## 2199 15 46970 2.0 1416119963
## 2200 15 46972 3.5 1374637631
## 2201 15 46976 3.5 1222576367
## 2202 15 47610 1.5 1245382906
## 2203 15 47999 2.5 1465793916
## 2204 15 48043 0.5 1416119898
## 2205 15 48082 1.0 1347937644
## 2206 15 48385 4.0 1257734226
## 2207 15 48394 1.5 1348976680
## 2208 15 48516 3.0 1222575856
## 2209 15 48774 4.0 1240211394
## 2210 15 48780 4.0 1222578045
## 2211 15 49272 4.0 1222578063
## 2212 15 49278 2.5 1316395906
## 2213 15 49286 2.5 1465880683
## 2214 15 50851 3.5 1443384396
## 2215 15 50872 3.5 1245361883
## 2216 15 51080 4.5 1222578101
## 2217 15 51255 1.5 1222576350
## 2218 15 51540 5.0 1222578057
## 2219 15 51662 2.0 1347936470
## 2220 15 52245 1.5 1349622540
## 2221 15 52328 1.5 1347936786
## 2222 15 52604 2.0 1443384826
## 2223 15 52722 1.5 1338699286
## 2224 15 52973 3.5 1349622826
## 2225 15 53322 3.5 1425876037
## 2226 15 53464 1.5 1443385025
## 2227 15 53894 2.5 1338702524
## 2228 15 53972 3.0 1338698806
## 2229 15 53996 4.0 1257734285
## 2230 15 54001 2.0 1416119677
## 2231 15 54272 1.0 1425875994
## 2232 15 54286 2.5 1258259468
## 2233 15 54372 4.5 1238804101
## 2234 15 54503 3.5 1338698617
## 2235 15 54881 4.5 1361078498
## 2236 15 55247 1.0 1416120041
## 2237 15 55269 1.0 1374638435
## 2238 15 55276 3.5 1222578076
## 2239 15 55442 2.5 1416119972
## 2240 15 55765 2.0 1361078252
## 2241 15 55820 2.0 1338698362
## 2242 15 55830 2.5 1443384839
## 2243 15 56174 1.0 1416119594
## 2244 15 56367 2.0 1374638451
## 2245 15 56563 4.0 1465793961
## 2246 15 56775 3.0 1443385030
## 2247 15 56782 1.0 1416119686
## 2248 15 57368 1.5 1425876060
## 2249 15 57640 4.0 1216576560
## 2250 15 57669 1.5 1338702423
## 2251 15 58025 1.0 1338698854
## 2252 15 58295 1.5 1347936713
## 2253 15 58559 4.5 1222024895
## 2254 15 58998 1.5 1240203919
## 2255 15 59126 4.0 1465793918
## 2256 15 59315 4.5 1216576545
## 2257 15 59369 2.5 1347936669
## 2258 15 59519 3.5 1216576555
## 2259 15 59615 1.0 1338698814
## 2260 15 59784 3.5 1357110059
## 2261 15 59900 1.5 1349622715
## 2262 15 60037 0.5 1216576611
## 2263 15 60040 3.0 1216576596
## 2264 15 60069 4.5 1216576570
## 2265 15 60072 1.0 1316396154
## 2266 15 60074 1.0 1416119795
## 2267 15 60126 1.0 1361831545
## 2268 15 60295 3.5 1316395628
## 2269 15 60684 4.0 1238801478
## 2270 15 60766 3.5 1240211388
## 2271 15 61024 1.0 1357110065
## 2272 15 61132 2.0 1222024906
## 2273 15 61323 1.0 1257734243
## 2274 15 61394 2.0 1349622731
## 2275 15 62374 3.5 1367764780
## 2276 15 62434 3.5 1443384812
## 2277 15 62511 4.5 1367800217
## 2278 15 63082 0.5 1357110411
## 2279 15 63113 3.5 1245309336
## 2280 15 63131 2.0 1338698608
## 2281 15 63859 3.0 1348976367
## 2282 15 64620 2.0 1245021120
## 2283 15 64839 1.0 1416119731
## 2284 15 64957 1.5 1416119711
## 2285 15 65642 4.5 1357110430
## 2286 15 65802 0.5 1465880993
## 2287 15 66097 3.0 1238804089
## 2288 15 66130 1.5 1240202854
## 2289 15 66203 1.0 1465880257
## 2290 15 66596 1.5 1465880651
## 2291 15 66665 3.0 1257733143
## 2292 15 66934 0.5 1338698623
## 2293 15 67087 1.5 1426110601
## 2294 15 67193 1.5 1257733150
## 2295 15 67665 3.5 1245021164
## 2296 15 67734 1.5 1374638441
## 2297 15 67997 4.0 1338702402
## 2298 15 68157 3.0 1338698899
## 2299 15 68159 4.0 1245021148
## 2300 15 68237 3.5 1338698337
## 2301 15 68319 2.0 1316396161
## 2302 15 68324 1.0 1465954712
## 2303 15 68358 4.5 1245021136
## 2304 15 68791 4.0 1316396225
## 2305 15 68793 3.0 1374637633
## 2306 15 68954 2.0 1338698886
## 2307 15 69122 1.0 1338702414
## 2308 15 69306 2.0 1389440855
## 2309 15 69406 1.0 1361831532
## 2310 15 69436 0.5 1465880996
## 2311 15 69481 4.5 1338698471
## 2312 15 69524 4.0 1458506351
## 2313 15 69526 3.0 1257733119
## 2314 15 70286 5.0 1257734187
## 2315 15 70293 3.5 1261945002
## 2316 15 70336 4.5 1316395878
## 2317 15 70697 2.5 1374637773
## 2318 15 70862 2.5 1465793997
## 2319 15 71211 3.5 1257734180
## 2320 15 71264 1.5 1465794388
## 2321 15 71282 2.5 1465793912
## 2322 15 71462 3.0 1465793920
## 2323 15 71464 2.0 1257735545
## 2324 15 71535 1.0 1425876002
## 2325 15 71838 2.0 1465880969
## 2326 15 72011 2.5 1338702430
## 2327 15 72226 1.5 1338698882
## 2328 15 72378 1.0 1357110070
## 2329 15 72998 4.0 1261944230
## 2330 15 73017 1.0 1273090173
## 2331 15 73344 3.5 1316395633
## 2332 15 74458 0.5 1338698316
## 2333 15 74649 4.0 1338702442
## 2334 15 74795 1.5 1367764758
## 2335 15 74851 0.5 1361831555
## 2336 15 76077 2.0 1458506610
## 2337 15 76093 4.0 1273090169
## 2338 15 76251 3.0 1273090163
## 2339 15 76293 3.0 1361831522
## 2340 15 76738 2.5 1379040852
## 2341 15 77364 2.5 1367765175
## 2342 15 77455 4.0 1367801385
## 2343 15 77561 1.0 1316395588
## 2344 15 78209 3.0 1458506646
## 2345 15 78469 3.0 1316395983
## 2346 15 78499 2.0 1338698896
## 2347 15 78574 4.5 1443384445
## 2348 15 79057 2.5 1367765128
## 2349 15 79132 5.0 1316395554
## 2350 15 79185 2.5 1458506381
## 2351 15 79242 2.5 1465880302
## 2352 15 79293 1.5 1349048062
## 2353 15 79428 1.0 1349622587
## 2354 15 79695 0.5 1367765181
## 2355 15 79702 1.5 1338698870
## 2356 15 80126 1.0 1465794431
## 2357 15 80185 3.0 1374638009
## 2358 15 80463 2.0 1361078260
## 2359 15 80489 4.0 1316395567
## 2360 15 80862 2.5 1465793930
## 2361 15 80906 4.0 1361078281
## 2362 15 81158 3.0 1367801466
## 2363 15 81191 3.0 1374638035
## 2364 15 81229 3.5 1348976539
## 2365 15 81591 1.0 1338698369
## 2366 15 81782 3.0 1316395900
## 2367 15 81834 2.0 1458506571
## 2368 15 81845 3.0 1367801474
## 2369 15 81847 1.0 1338698918
## 2370 15 81932 3.0 1338698461
## 2371 15 82461 3.0 1316396252
## 2372 15 82854 0.5 1465880518
## 2373 15 83270 1.0 1361078285
## 2374 15 83293 3.5 1367801456
## 2375 15 83349 1.0 1316396136
## 2376 15 83613 0.5 1367765123
## 2377 15 83827 4.0 1425875865
## 2378 15 84152 3.0 1345381190
## 2379 15 84374 2.5 1465880243
## 2380 15 84392 2.5 1367801369
## 2381 15 84954 1.0 1347936749
## 2382 15 85414 4.0 1316395607
## 2383 15 85774 4.0 1367801387
## 2384 15 86190 1.5 1348976211
## 2385 15 86332 1.0 1316395573
## 2386 15 86644 1.5 1338698824
## 2387 15 86781 5.0 1316395597
## 2388 15 86833 4.0 1458506593
## 2389 15 86882 2.5 1458506580
## 2390 15 86898 3.5 1458507263
## 2391 15 86911 0.5 1458505901
## 2392 15 87222 4.0 1458506624
## 2393 15 87232 1.5 1316395580
## 2394 15 87304 0.5 1374638031
## 2395 15 87306 1.0 1347936763
## 2396 15 87430 0.5 1338698810
## 2397 15 87485 1.0 1458507259
## 2398 15 87520 4.5 1316396021
## 2399 15 87869 2.5 1458506136
## 2400 15 87930 2.0 1443385461
## 2401 15 88125 3.0 1416120053
## 2402 15 88129 2.5 1338698356
## 2403 15 88140 1.0 1348976202
## 2404 15 88163 3.5 1386367929
## 2405 15 88356 1.5 1316408269
## 2406 15 88744 4.5 1316395487
## 2407 15 88950 0.5 1316395783
## 2408 15 89090 1.5 1367801460
## 2409 15 89337 3.0 1374638024
## 2410 15 89470 1.5 1458506641
## 2411 15 89492 5.0 1361078138
## 2412 15 89745 3.0 1338697857
## 2413 15 89840 1.0 1349048081
## 2414 15 90249 3.5 1338698848
## 2415 15 90266 2.5 1367801470
## 2416 15 90428 4.5 1348977157
## 2417 15 90439 0.5 1361078276
## 2418 15 90531 4.0 1338698144
## 2419 15 90600 3.5 1367801363
## 2420 15 90603 2.5 1348976195
## 2421 15 90647 3.0 1374637765
## 2422 15 90746 1.5 1338698014
## 2423 15 90866 1.0 1338698247
## 2424 15 90870 0.5 1465880427
## 2425 15 91500 0.5 1338697915
## 2426 15 91505 1.0 1347936860
## 2427 15 91529 3.0 1345350956
## 2428 15 91535 2.0 1348979143
## 2429 15 91542 1.0 1348976183
## 2430 15 91630 2.5 1338698134
## 2431 15 91653 4.5 1338698154
## 2432 15 91658 4.0 1338698344
## 2433 15 91842 3.0 1338698158
## 2434 15 91869 3.0 1338697924
## 2435 15 92420 1.5 1465880962
## 2436 15 92507 2.5 1338698152
## 2437 15 93326 1.0 1361831455
## 2438 15 93363 1.0 1338699137
## 2439 15 93510 3.0 1338697920
## 2440 15 93721 2.0 1458507291
## 2441 15 93831 2.5 1338697984
## 2442 15 93840 3.5 1338697905
## 2443 15 94015 1.0 1338697996
## 2444 15 94018 1.0 1338698001
## 2445 15 94478 1.0 1338698006
## 2446 15 94677 4.0 1338697991
## 2447 15 94777 2.5 1338697968
## 2448 15 94780 1.5 1345351002
## 2449 15 94833 1.5 1338697964
## 2450 15 94864 1.5 1345350968
## 2451 15 94959 1.0 1374638428
## 2452 15 95105 1.0 1345350979
## 2453 15 95167 1.0 1345350959
## 2454 15 95199 0.5 1465880715
## 2455 15 95311 1.5 1347937652
## 2456 15 95443 0.5 1357109952
## 2457 15 95510 3.5 1345350961
## 2458 15 95558 1.0 1357109941
## 2459 15 95875 1.5 1345350995
## 2460 15 96079 3.0 1361831420
## 2461 15 96150 2.0 1345350973
## 2462 15 96488 3.5 1361076608
## 2463 15 96610 1.5 1374637996
## 2464 15 96667 2.5 1357109969
## 2465 15 96737 2.5 1458506349
## 2466 15 97304 2.5 1367764836
## 2467 15 97393 3.5 1386368013
## 2468 15 97866 3.5 1361076604
## 2469 15 97913 2.5 1426110392
## 2470 15 97923 3.0 1386367936
## 2471 15 97938 2.5 1389482906
## 2472 15 98122 0.5 1465793928
## 2473 15 98154 0.5 1425876388
## 2474 15 98809 0.5 1416119923
## 2475 15 98961 3.0 1367764716
## 2476 15 99007 1.0 1465880234
## 2477 15 99112 3.5 1458506339
## 2478 15 99114 1.5 1425876390
## 2479 15 99149 1.0 1357109923
## 2480 15 99468 2.5 1386368031
## 2481 15 99811 4.0 1361831110
## 2482 15 100032 2.0 1361076617
## 2483 15 100083 0.5 1465880648
## 2484 15 100365 2.5 1361831156
## 2485 15 100383 1.0 1400818425
## 2486 15 100517 3.0 1381534422
## 2487 15 100556 4.0 1374638046
## 2488 15 100581 1.5 1465793952
## 2489 15 100714 3.0 1386367955
## 2490 15 100745 1.0 1367764695
## 2491 15 101076 3.0 1367764864
## 2492 15 101112 0.5 1465880292
## 2493 15 101362 3.0 1465880371
## 2494 15 101864 3.5 1400818444
## 2495 15 101895 1.0 1386367999
## 2496 15 102123 1.5 1458506656
## 2497 15 102125 2.0 1389482894
## 2498 15 102445 3.0 1386367981
## 2499 15 102800 2.5 1386367968
## 2500 15 102880 0.5 1400818394
## 2501 15 102903 1.0 1458506599
## 2502 15 103042 2.5 1386367923
## 2503 15 103228 5.0 1379040901
## 2504 15 103249 0.5 1465794267
## 2505 15 103253 1.0 1465954520
## 2506 15 103372 1.0 1465880282
## 2507 15 103810 1.5 1465880264
## 2508 15 104211 3.5 1458506673
## 2509 15 104241 1.0 1458506703
## 2510 15 104272 3.0 1425875562
## 2511 15 104726 3.0 1381534394
## 2512 15 104841 3.5 1386367735
## 2513 15 104879 4.0 1381534447
## 2514 15 105504 3.5 1425875553
## 2515 15 106072 2.0 1443384429
## 2516 15 106111 1.0 1386367830
## 2517 15 106332 3.5 1386367813
## 2518 15 106489 2.0 1389440765
## 2519 15 106782 3.5 1416120264
## 2520 15 106916 1.5 1416120141
## 2521 15 106920 4.5 1416119571
## 2522 15 107348 0.5 1465881258
## 2523 15 107406 4.0 1425875579
## 2524 15 107910 4.5 1426110023
## 2525 15 108188 2.0 1416120159
## 2526 15 108190 0.5 1458506323
## 2527 15 108689 0.5 1465954590
## 2528 15 108729 1.0 1465954969
## 2529 15 108932 1.5 1407125286
## 2530 15 108945 1.0 1458506369
## 2531 15 109187 0.5 1465794437
## 2532 15 109374 1.0 1416119568
## 2533 15 109487 3.5 1425875392
## 2534 15 109673 1.5 1416120169
## 2535 15 109687 2.5 1465793948
## 2536 15 109848 3.0 1425875503
## 2537 15 110102 4.0 1416120131
## 2538 15 110127 0.5 1416120162
## 2539 15 110553 0.5 1416120149
## 2540 15 110730 1.0 1416120159
## 2541 15 110771 2.0 1465880696
## 2542 15 111228 2.5 1443385454
## 2543 15 111360 1.0 1425875482
## 2544 15 111362 3.5 1416120099
## 2545 15 111364 4.0 1400818348
## 2546 15 111443 4.0 1407125275
## 2547 15 111622 4.5 1425875435
## 2548 15 111759 4.5 1416120100
## 2549 15 111781 4.5 1443384269
## 2550 15 112138 3.5 1407125270
## 2551 15 112171 2.5 1425875460
## 2552 15 112183 2.0 1426110071
## 2553 15 112370 3.5 1416120171
## 2554 15 112552 1.5 1443384078
## 2555 15 112556 4.5 1425875403
## 2556 15 112623 4.0 1407125273
## 2557 15 112788 1.0 1465880699
## 2558 15 112852 4.5 1416119564
## 2559 15 112940 1.5 1425875476
## 2560 15 113345 0.5 1465794105
## 2561 15 113348 2.0 1425875488
## 2562 15 113378 0.5 1425875497
## 2563 15 113741 1.0 1425875574
## 2564 15 114180 1.0 1465793290
## 2565 15 114635 4.0 1416120202
## 2566 15 115149 4.0 1425875463
## 2567 15 115502 3.5 1443384500
## 2568 15 115569 5.0 1425875406
## 2569 15 115617 1.5 1425875413
## 2570 15 115713 3.5 1443384091
## 2571 15 116161 1.0 1425875458
## 2572 15 116797 0.5 1425875401
## 2573 15 116799 0.5 1465794406
## 2574 15 116823 0.5 1425875449
## 2575 15 116897 4.5 1443384373
## 2576 15 117176 1.0 1425875426
## 2577 15 117529 4.0 1443384296
## 2578 15 117533 3.5 1443384084
## 2579 15 118696 1.5 1443384307
## 2580 15 119141 2.0 1443384336
## 2581 15 119145 1.5 1425875443
## 2582 15 120466 1.5 1443384294
## 2583 15 120799 3.0 1443384317
## 2584 15 121171 3.0 1465793971
## 2585 15 121231 4.5 1458507341
## 2586 15 122882 1.0 1443384389
## 2587 15 122886 3.5 1458505928
## 2588 15 122890 3.0 1466051442
## 2589 15 122892 3.0 1443384000
## 2590 15 122900 3.0 1443384283
## 2591 15 122902 0.5 1443384352
## 2592 15 122904 1.0 1458505916
## 2593 15 122920 3.0 1465793115
## 2594 15 122924 2.5 1465793601
## 2595 15 127136 1.0 1443385387
## 2596 15 128360 2.5 1458505982
## 2597 15 129937 1.5 1443384322
## 2598 15 130452 2.0 1458506093
## 2599 15 130490 0.5 1465794100
## 2600 15 130576 2.0 1465793706
## 2601 15 130634 2.0 1458506081
## 2602 15 131013 3.0 1443384337
## 2603 15 132046 0.5 1465794103
## 2604 15 132480 3.0 1458506026
## 2605 15 132796 3.0 1443384330
## 2606 15 132961 3.0 1458507347
## 2607 15 134130 3.5 1458505912
## 2608 15 134368 4.5 1443384275
## 2609 15 134393 4.0 1458506097
## 2610 15 134853 1.0 1458505921
## 2611 15 135133 0.5 1465794150
## 2612 15 135436 1.0 1469330276
## 2613 15 135567 3.0 1467259301
## 2614 15 135569 3.0 1469330245
## 2615 15 136020 3.0 1458506089
## 2616 15 136562 1.5 1458506078
## 2617 15 136864 3.0 1465793719
## 2618 15 137337 3.5 1458505989
## 2619 15 137857 3.0 1465793116
## 2620 15 138036 1.0 1443384531
## 2621 15 139385 2.5 1458505973
## 2622 15 139644 3.0 1458505986
## 2623 15 139757 3.5 1465793975
## 2624 15 139855 2.0 1458506009
## 2625 15 140110 2.5 1465956541
## 2626 15 140174 4.0 1458505917
## 2627 15 140267 4.0 1465793185
## 2628 15 140711 2.5 1443384516
## 2629 15 140928 0.5 1465793205
## 2630 15 142488 3.5 1458505911
## 2631 15 142507 3.0 1465793179
## 2632 15 143385 2.5 1458506017
## 2633 15 145839 1.0 1465793183
## 2634 15 145935 3.0 1465793201
## 2635 15 146656 3.5 1458506016
## 2636 15 148626 3.5 1458505924
## 2637 15 149352 3.0 1465793208
## 2638 15 149354 3.5 1458506107
## 2639 15 149406 4.0 1465793192
## 2640 15 152057 0.5 1465793700
## 2641 15 152077 2.0 1465793170
## 2642 15 152079 1.5 1465880375
## 2643 15 152081 3.0 1460076733
## 2644 15 155820 1.0 1465793639
## 2645 15 156607 0.5 1465793691
## 2646 15 156609 3.5 1465793621
## 2647 15 157200 1.5 1465793612
## 2648 15 157296 2.0 1467259316
## 2649 15 157667 1.5 1465793630
## 2650 15 158238 3.5 1465794051
## 2651 15 158528 3.5 1467259294
## 2652 15 159093 1.0 1465793091
## 2653 15 159690 2.0 1465880080
## 2654 15 159755 1.0 1465793093
## 2655 15 159858 4.0 1466802910
## 2656 15 159972 0.5 1469330481
## 2657 15 160080 1.0 1469330238
## 2658 15 160271 2.5 1466802905
## 2659 15 160563 1.0 1469330270
## 2660 15 160565 2.0 1469330266
## 2661 15 160567 4.0 1469330242
## 2662 15 161155 0.5 1469330307
## 2663 16 50 4.5 1178364904
## 2664 16 318 4.0 1178364881
## 2665 16 337 4.0 1137577638
## 2666 16 527 4.0 1178364921
## 2667 16 750 4.0 1137577630
## 2668 16 1653 5.0 1137577694
## 2669 16 1704 5.0 1178363907
## 2670 16 1961 3.5 1178364916
## 2671 16 2012 4.0 1137577687
## 2672 16 2278 3.5 1137577912
## 2673 16 2539 4.0 1137577918
## 2674 16 2706 5.0 1137577616
## 2675 16 2797 3.0 1137577645
## 2676 16 2858 4.0 1148214528
## 2677 16 3623 4.0 1137577753
## 2678 16 4014 3.5 1137577979
## 2679 16 4231 4.5 1148214227
## 2680 16 4246 4.0 1137577889
## 2681 16 4718 4.5 1148214543
## 2682 16 4738 4.5 1148214272
## 2683 16 4772 5.0 1148214289
## 2684 16 4823 4.0 1148214251
## 2685 16 4995 4.5 1178364909
## 2686 16 5349 3.0 1137577776
## 2687 16 5445 4.5 1137577730
## 2688 16 6016 4.0 1178364961
## 2689 16 6711 4.5 1137578034
## 2690 16 6874 3.5 1137577905
## 2691 16 7346 4.0 1148214661
## 2692 17 6 4.5 1127469542
## 2693 17 25 4.5 1127469531
## 2694 17 29 4.5 1127470880
## 2695 17 32 4.5 1127469436
## 2696 17 36 4.5 1127469535
## 2697 17 47 5.0 1127469246
## 2698 17 50 5.0 1127469450
## 2699 17 111 5.0 1127469023
## 2700 17 170 4.0 1127470242
## 2701 17 172 3.5 1127468646
## 2702 17 185 3.0 1127469509
## 2703 17 194 4.0 1127470280
## 2704 17 198 5.0 1127468896
## 2705 17 223 2.5 1127469577
## 2706 17 235 5.0 1127469684
## 2707 17 247 2.0 1127471027
## 2708 17 260 3.5 1127474688
## 2709 17 288 2.0 1127469552
## 2710 17 293 4.0 1127469604
## 2711 17 296 5.0 1127469297
## 2712 17 307 3.5 1127471192
## 2713 17 318 5.0 1127469420
## 2714 17 348 3.5 1127470013
## 2715 17 356 2.5 1127469401
## 2716 17 377 0.5 1127469444
## 2717 17 431 4.5 1127471468
## 2718 17 480 0.5 1127469407
## 2719 17 482 0.5 1127475344
## 2720 17 492 5.0 1127472949
## 2721 17 527 4.0 1127469434
## 2722 17 541 5.0 1127469561
## 2723 17 555 4.0 1127469779
## 2724 17 590 3.0 1127469416
## 2725 17 593 4.5 1127469396
## 2726 17 608 3.5 1127469440
## 2727 17 680 4.5 1127472555
## 2728 17 714 4.5 1127473893
## 2729 17 736 2.5 1127469466
## 2730 17 778 4.5 1127469230
## 2731 17 858 5.0 1127469000
## 2732 17 866 4.5 1127470263
## 2733 17 903 5.0 1127468839
## 2734 17 904 4.5 1127468627
## 2735 17 908 5.0 1127468595
## 2736 17 910 3.5 1127470036
## 2737 17 912 4.5 1127471471
## 2738 17 913 5.0 1127468808
## 2739 17 922 5.0 1127468822
## 2740 17 923 4.5 1127469756
## 2741 17 924 4.5 1127469594
## 2742 17 928 4.5 1127471079
## 2743 17 930 3.5 1127472146
## 2744 17 931 4.5 1127474822
## 2745 17 942 3.5 1127470622
## 2746 17 965 3.5 1127470607
## 2747 17 1036 2.5 1127473110
## 2748 17 1077 4.0 1127473686
## 2749 17 1079 2.5 1127469628
## 2750 17 1089 5.0 1127469308
## 2751 17 1092 4.0 1127469973
## 2752 17 1095 2.0 1127471148
## 2753 17 1104 3.5 1127470400
## 2754 17 1136 5.0 1127469568
## 2755 17 1173 1.0 1127472932
## 2756 17 1175 4.5 1127470987
## 2757 17 1193 4.5 1127469556
## 2758 17 1199 4.5 1127469923
## 2759 17 1206 5.0 1127469650
## 2760 17 1210 3.5 1127473503
## 2761 17 1212 5.0 1127468800
## 2762 17 1213 5.0 1127469622
## 2763 17 1218 4.0 1127474633
## 2764 17 1220 4.0 1127469667
## 2765 17 1221 5.0 1127469002
## 2766 17 1230 5.0 1127469749
## 2767 17 1232 5.0 1127471445
## 2768 17 1235 5.0 1127470230
## 2769 17 1237 5.0 1127469169
## 2770 17 1240 3.0 1127474779
## 2771 17 1241 0.5 1127472490
## 2772 17 1244 4.0 1127470206
## 2773 17 1245 4.0 1127470820
## 2774 17 1246 5.0 1127469721
## 2775 17 1248 5.0 1127468791
## 2776 17 1249 2.5 1127470114
## 2777 17 1251 3.5 1127470489
## 2778 17 1252 5.0 1127468638
## 2779 17 1255 2.0 1127472442
## 2780 17 1258 3.5 1127469694
## 2781 17 1263 4.5 1127470072
## 2782 17 1265 4.5 1127469234
## 2783 17 1267 5.0 1127470095
## 2784 17 1270 4.5 1127469473
## 2785 17 1298 4.5 1127473670
## 2786 17 1333 2.0 1127470062
## 2787 17 1348 5.0 1127470930
## 2788 17 1396 3.0 1127468688
## 2789 17 1411 5.0 1127473298
## 2790 17 1464 5.0 1127468930
## 2791 17 1466 4.5 1127469223
## 2792 17 1517 3.0 1127469661
## 2793 17 1570 2.5 1127475516
## 2794 17 1580 2.5 1127469521
## 2795 17 1597 2.5 1127469976
## 2796 17 1617 4.5 1127469527
## 2797 17 1625 5.0 1127469905
## 2798 17 1627 4.0 1127471602
## 2799 17 1645 3.5 1127469988
## 2800 17 1653 5.0 1127468587
## 2801 17 1673 4.5 1127469912
## 2802 17 1674 4.5 1127474863
## 2803 17 1704 4.0 1127469601
## 2804 17 1721 0.5 1127472770
## 2805 17 1729 2.5 1127470069
## 2806 17 1732 4.0 1127468617
## 2807 17 1748 4.5 1127470043
## 2808 17 1809 3.0 1127469129
## 2809 17 1834 4.5 1127471258
## 2810 17 1884 5.0 1127472570
## 2811 17 1921 5.0 1127470262
## 2812 17 1923 3.0 1127469612
## 2813 17 1997 4.0 1127469217
## 2814 17 2010 5.0 1127470918
## 2815 17 2011 4.0 1127469773
## 2816 17 2012 4.0 1127469738
## 2817 17 2021 3.5 1127473090
## 2818 17 2023 4.0 1127469006
## 2819 17 2028 3.5 1127469494
## 2820 17 2066 5.0 1127468880
## 2821 17 2067 4.5 1127470656
## 2822 17 2076 5.0 1127468938
## 2823 17 2110 3.5 1127475491
## 2824 17 2117 4.5 1127474890
## 2825 17 2118 4.0 1127472523
## 2826 17 2159 2.5 1127473955
## 2827 17 2160 4.5 1127469357
## 2828 17 2167 2.0 1127470030
## 2829 17 2204 4.5 1127474873
## 2830 17 2232 4.5 1127474381
## 2831 17 2278 3.5 1127470130
## 2832 17 2324 4.5 1127469815
## 2833 17 2329 4.0 1127469961
## 2834 17 2353 3.5 1127468671
## 2835 17 2396 4.5 1127469563
## 2836 17 2455 4.0 1127470079
## 2837 17 2467 5.0 1127469379
## 2838 17 2490 4.0 1127470158
## 2839 17 2502 1.0 1127469848
## 2840 17 2539 2.5 1127470166
## 2841 17 2551 5.0 1127472530
## 2842 17 2571 5.0 1127469486
## 2843 17 2579 5.0 1127470677
## 2844 17 2594 5.0 1127470875
## 2845 17 2600 5.0 1127468906
## 2846 17 2606 3.0 1127472715
## 2847 17 2657 3.0 1127469890
## 2848 17 2672 3.5 1127473623
## 2849 17 2677 4.0 1127473860
## 2850 17 2683 3.0 1127469619
## 2851 17 2692 4.5 1127469870
## 2852 17 2707 3.5 1127473627
## 2853 17 2710 3.5 1127469711
## 2854 17 2712 3.0 1127469824
## 2855 17 2726 4.5 1127474088
## 2856 17 2762 4.5 1127469504
## 2857 17 2791 2.0 1127469746
## 2858 17 2858 4.5 1127469479
## 2859 17 2892 3.5 1127469374
## 2860 17 2916 4.0 1127469652
## 2861 17 2918 3.0 1127469690
## 2862 17 2952 2.5 1127472212
## 2863 17 2959 5.0 1127469609
## 2864 17 2973 5.0 1127471286
## 2865 17 2997 5.0 1127469583
## 2866 17 3018 4.0 1127476640
## 2867 17 3134 5.0 1127471284
## 2868 17 3147 4.0 1127469868
## 2869 17 3160 2.5 1127470023
## 2870 17 3253 2.0 1127469202
## 2871 17 3262 4.5 1127472389
## 2872 17 3267 4.0 1127474810
## 2873 17 3328 4.0 1127469266
## 2874 17 3386 4.0 1127473609
## 2875 17 3408 2.5 1127469817
## 2876 17 3435 5.0 1127468813
## 2877 17 3476 4.5 1127473589
## 2878 17 3503 4.5 1127471452
## 2879 17 3504 3.5 1127470537
## 2880 17 3535 4.5 1127470423
## 2881 17 3578 4.0 1127469591
## 2882 17 3598 4.0 1127473228
## 2883 17 3676 5.0 1127472406
## 2884 17 3730 3.0 1127472085
## 2885 17 3735 4.0 1127470532
## 2886 17 3742 4.0 1127468949
## 2887 17 3785 3.5 1127470327
## 2888 17 3788 4.5 1127470461
## 2889 17 3863 3.5 1127470285
## 2890 17 3949 4.0 1127470334
## 2891 17 3977 1.0 1127468701
## 2892 17 3994 4.0 1127469984
## 2893 17 3996 4.5 1127469664
## 2894 17 4027 1.5 1127469852
## 2895 17 4034 4.0 1127468683
## 2896 17 4037 4.5 1127471074
## 2897 17 4210 3.0 1127475013
## 2898 17 4226 5.0 1127469783
## 2899 17 4239 3.5 1127470473
## 2900 17 4246 0.5 1127470119
## 2901 17 4262 5.0 1127470830
## 2902 17 4306 3.5 1127471221
## 2903 17 4404 5.0 1127471153
## 2904 17 4437 5.0 1127469334
## 2905 17 4546 4.5 1127470728
## 2906 17 4552 4.0 1127474968
## 2907 17 4645 4.5 1127474815
## 2908 17 4725 4.5 1127475151
## 2909 17 4848 5.0 1127468922
## 2910 17 4878 4.0 1127470287
## 2911 17 4886 3.5 1127473495
## 2912 17 4896 0.5 1127470004
## 2913 17 4914 5.0 1127471176
## 2914 17 4963 4.0 1127469940
## 2915 17 4973 4.5 1127470007
## 2916 17 4975 4.0 1127475485
## 2917 17 4993 4.5 1127469643
## 2918 17 4995 3.0 1127473364
## 2919 17 5015 4.0 1127473564
## 2920 17 5017 5.0 1127470960
## 2921 17 5054 4.0 1127475207
## 2922 17 5060 0.5 1127469827
## 2923 17 5062 5.0 1127472353
## 2924 17 5072 2.5 1127474324
## 2925 17 5105 5.0 1127475000
## 2926 17 5137 4.5 1127471041
## 2927 17 5254 2.5 1127473845
## 2928 17 5266 3.0 1127475457
## 2929 17 5299 0.5 1127470247
## 2930 17 5316 1.5 1127475188
## 2931 17 5349 1.5 1127469195
## 2932 17 5388 4.0 1127473818
## 2933 17 5418 3.5 1127470134
## 2934 17 5445 4.5 1127468673
## 2935 17 5464 4.0 1127471240
## 2936 17 5502 0.5 1127470299
## 2937 17 5574 2.0 1127473010
## 2938 17 5608 4.5 1127470799
## 2939 17 5630 4.0 1127475183
## 2940 17 5669 4.5 1127470238
## 2941 17 5679 4.0 1127472858
## 2942 17 5686 2.5 1127475440
## 2943 17 5782 4.5 1127470685
## 2944 17 5809 2.0 1127473119
## 2945 17 5853 3.0 1127472423
## 2946 17 5867 4.0 1127471265
## 2947 17 5881 4.0 1127471454
## 2948 17 5893 2.0 1127471062
## 2949 17 5903 3.5 1127475067
## 2950 17 5949 4.5 1127474818
## 2951 17 5952 4.5 1127469753
## 2952 17 6016 5.0 1127470498
## 2953 17 6059 3.5 1127474362
## 2954 17 6140 4.0 1127474765
## 2955 17 6197 4.5 1127475051
## 2956 17 6214 3.0 1127474841
## 2957 17 6242 4.0 1127472872
## 2958 17 6281 3.5 1127475334
## 2959 17 6287 1.0 1127472991
## 2960 17 6294 0.5 1127472976
## 2961 17 6322 2.0 1127475308
## 2962 17 6323 2.0 1127473829
## 2963 17 6365 2.0 1127470144
## 2964 17 6378 2.0 1127472896
## 2965 17 6383 0.5 1127472979
## 2966 17 6385 4.0 1127470895
## 2967 17 6502 3.0 1127469259
## 2968 17 6503 0.5 1127473548
## 2969 17 6530 5.0 1127474791
## 2970 17 6538 4.0 1127474916
## 2971 17 6584 3.5 1127475452
## 2972 17 6643 4.5 1127468985
## 2973 17 6666 4.5 1127474277
## 2974 17 6708 3.5 1127471196
## 2975 17 6711 1.5 1127470254
## 2976 17 6757 4.0 1127473461
## 2977 17 6774 4.0 1127472413
## 2978 17 6777 4.0 1127472303
## 2979 17 6790 3.5 1127475092
## 2980 17 6858 2.0 1127471327
## 2981 17 6874 4.5 1127470187
## 2982 17 6971 5.0 1127471166
## 2983 17 6975 3.5 1127475055
## 2984 17 6979 3.5 1127473832
## 2985 17 6987 5.0 1127470752
## 2986 17 6993 4.0 1127471083
## 2987 17 7003 4.0 1127475101
## 2988 17 7013 2.5 1127470546
## 2989 17 7022 4.5 1127470734
## 2990 17 7044 2.5 1127474852
## 2991 17 7068 4.5 1127474908
## 2992 17 7069 4.5 1127470872
## 2993 17 7084 3.5 1127471213
## 2994 17 7090 4.0 1127472094
## 2995 17 7115 4.5 1127469062
## 2996 17 7116 4.5 1127470554
## 2997 17 7123 5.0 1127474398
## 2998 17 7135 4.5 1127471109
## 2999 17 7153 4.5 1127470693
## 3000 17 7163 2.0 1127473904
## 3001 17 7223 4.0 1127470592
## 3002 17 7254 4.0 1127473557
## 3003 17 7361 4.5 1127470361
## 3004 17 7371 5.0 1127473913
## 3005 17 7438 4.5 1127470380
## 3006 17 7445 1.0 1127475148
## 3007 17 7587 5.0 1127470520
## 3008 17 7700 5.0 1127469051
## 3009 17 7728 4.5 1127471038
## 3010 17 7771 5.0 1127473707
## 3011 17 7792 4.0 1127472156
## 3012 17 7827 4.0 1127474420
## 3013 17 7981 5.0 1127470503
## 3014 17 7982 3.5 1127471336
## 3015 17 7991 0.5 1127475448
## 3016 17 8195 3.0 1127474877
## 3017 17 8228 5.0 1127470713
## 3018 17 8360 3.0 1127472844
## 3019 17 8370 3.0 1127470866
## 3020 17 8477 4.5 1127474727
## 3021 17 8600 4.0 1127472266
## 3022 17 8620 3.5 1127471100
## 3023 17 8622 3.0 1127473138
## 3024 17 8644 2.0 1127473808
## 3025 17 8665 3.5 1127472829
## 3026 17 8690 3.0 1127471144
## 3027 17 8781 2.0 1127473772
## 3028 17 8783 0.5 1127473349
## 3029 17 8798 4.5 1127472292
## 3030 17 8865 0.5 1127475524
## 3031 17 8874 3.5 1127470706
## 3032 17 8914 4.5 1127470716
## 3033 17 8928 3.0 1127475246
## 3034 17 8950 5.0 1127470724
## 3035 17 8957 3.0 1127471549
## 3036 17 8958 5.0 1127470911
## 3037 17 8973 3.5 1127470788
## 3038 17 8983 2.5 1127471208
## 3039 17 27266 3.5 1127468773
## 3040 17 27317 5.0 1127471031
## 3041 17 27604 3.0 1127475110
## 3042 17 27721 4.0 1127470792
## 3043 17 27773 5.0 1127469035
## 3044 17 27788 3.0 1127475574
## 3045 17 27834 4.5 1127471248
## 3046 17 31410 5.0 1127469049
## 3047 17 31878 3.0 1127472057
## 3048 17 31952 4.5 1127474893
## 3049 17 32587 5.0 1127470680
## 3050 17 33004 2.5 1127475161
## 3051 17 33615 1.0 1127473991
## 3052 17 33683 2.0 1127475261
## 3053 17 34048 3.0 1127475175
## 3054 17 34437 5.0 1127470435
## 3055 18 5 3.0 856006982
## 3056 18 6 4.0 856006982
## 3057 18 7 3.0 856006982
## 3058 18 9 3.0 856007219
## 3059 18 14 2.0 856007147
## 3060 18 17 4.0 856006886
## 3061 18 18 3.0 856007359
## 3062 18 25 5.0 856006886
## 3063 18 32 5.0 856006885
## 3064 18 36 3.0 856006982
## 3065 18 52 3.0 856007075
## 3066 18 62 4.0 856006886
## 3067 18 74 2.0 856007279
## 3068 18 76 3.0 856007359
## 3069 18 79 2.0 856007147
## 3070 18 81 3.0 856007495
## 3071 18 85 4.0 856007495
## 3072 18 86 4.0 856007409
## 3073 18 92 3.0 856007409
## 3074 18 95 3.0 856006886
## 3075 18 100 4.0 856007279
## 3076 18 140 3.0 856007147
## 3077 18 141 4.0 856006885
## 3078 18 260 3.0 856007075
## 3079 18 376 3.0 856007075
## 3080 18 494 3.0 856006982
## 3081 18 608 4.0 856006982
## 3082 18 628 4.0 856007147
## 3083 18 640 3.0 856007359
## 3084 18 648 3.0 856006886
## 3085 18 653 4.0 856007075
## 3086 18 707 3.0 856007279
## 3087 18 708 4.0 856007075
## 3088 18 719 3.0 856007219
## 3089 18 733 4.0 856006982
## 3090 18 736 2.0 856006885
## 3091 18 743 3.0 856007219
## 3092 18 748 3.0 856007359
## 3093 18 762 1.0 856007147
## 3094 18 765 2.0 856007587
## 3095 18 780 3.0 856006885
## 3096 18 785 4.0 856007495
## 3097 18 786 4.0 856006982
## 3098 18 788 3.0 856007075
## 3099 18 802 4.0 856007219
## 3100 18 805 4.0 856007147
## 3101 18 818 3.0 856092135
## 3102 18 832 3.0 856007219
## 3103 18 849 4.0 856007587
## 3104 18 852 3.0 856007279
## 3105 18 880 1.0 856007587
## 3106 19 1 3.0 855190091
## 3107 19 2 3.0 855194773
## 3108 19 3 3.0 855194718
## 3109 19 4 3.0 855192868
## 3110 19 6 3.0 855190128
## 3111 19 7 3.0 855190128
## 3112 19 9 3.0 855190232
## 3113 19 10 3.0 855192496
## 3114 19 11 3.0 855192773
## 3115 19 14 5.0 855190167
## 3116 19 16 5.0 855191930
## 3117 19 21 3.0 855193244
## 3118 19 22 3.0 855192868
## 3119 19 23 1.0 855194301
## 3120 19 25 3.0 855190091
## 3121 19 29 3.0 855190349
## 3122 19 32 3.0 855190091
## 3123 19 34 4.0 855191622
## 3124 19 35 3.0 855192496
## 3125 19 36 3.0 855190954
## 3126 19 39 3.0 855193076
## 3127 19 42 3.0 855192210
## 3128 19 45 3.0 855191478
## 3129 19 47 5.0 855191517
## 3130 19 48 3.0 855193488
## 3131 19 50 4.0 855192835
## 3132 19 52 3.0 855190167
## 3133 19 57 3.0 855192717
## 3134 19 58 3.0 855190167
## 3135 19 63 3.0 855190349
## 3136 19 64 2.0 855193770
## 3137 19 70 4.0 855191324
## 3138 19 74 3.0 855190261
## 3139 19 89 3.0 855193220
## 3140 19 94 3.0 855190290
## 3141 19 95 3.0 855190091
## 3142 19 97 4.0 855190550
## 3143 19 101 3.0 855190531
## 3144 19 105 3.0 855192656
## 3145 19 110 3.0 855193530
## 3146 19 111 5.0 855191324
## 3147 19 112 3.0 855190128
## 3148 19 122 3.0 855194378
## 3149 19 125 3.0 855191429
## 3150 19 141 3.0 855190091
## 3151 19 145 4.0 855193720
## 3152 19 150 3.0 855191289
## 3153 19 153 3.0 855193751
## 3154 19 154 4.0 855191383
## 3155 19 159 4.0 855191775
## 3156 19 160 4.0 855194718
## 3157 19 162 5.0 855191226
## 3158 19 165 3.0 855191227
## 3159 19 166 2.0 855194264
## 3160 19 172 1.0 855194345
## 3161 19 176 4.0 855191383
## 3162 19 177 2.0 855192496
## 3163 19 179 2.0 855193865
## 3164 19 180 3.0 855192957
## 3165 19 194 4.0 855191383
## 3166 19 196 3.0 855193806
## 3167 19 198 3.0 855191478
## 3168 19 202 3.0 855193054
## 3169 19 206 3.0 855192120
## 3170 19 208 3.0 855194790
## 3171 19 209 2.0 855193510
## 3172 19 215 3.0 855191324
## 3173 19 223 4.0 855191622
## 3174 19 229 4.0 855191701
## 3175 19 230 5.0 855192308
## 3176 19 231 3.0 855194087
## 3177 19 235 3.0 855191324
## 3178 19 246 4.0 855191478
## 3179 19 247 4.0 855191430
## 3180 19 249 3.0 855193530
## 3181 19 253 3.0 855191430
## 3182 19 260 4.0 855190199
## 3183 19 261 4.0 855194216
## 3184 19 262 5.0 855193220
## 3185 19 266 1.0 855194773
## 3186 19 269 3.0 855191882
## 3187 19 276 1.0 855194605
## 3188 19 281 3.0 855192982
## 3189 19 283 3.0 855192910
## 3190 19 288 5.0 855191383
## 3191 19 292 4.0 855193465
## 3192 19 293 4.0 855194693
## 3193 19 296 5.0 855191226
## 3194 19 300 3.0 855193220
## 3195 19 306 5.0 855191584
## 3196 19 307 5.0 855191622
## 3197 19 308 5.0 855191654
## 3198 19 316 3.0 855194824
## 3199 19 318 4.0 855195189
## 3200 19 326 5.0 855191383
## 3201 19 328 4.0 855192210
## 3202 19 329 3.0 855192814
## 3203 19 332 3.0 855193274
## 3204 19 333 3.0 855194773
## 3205 19 334 4.0 855191846
## 3206 19 337 3.0 855193643
## 3207 19 339 4.0 855193599
## 3208 19 340 3.0 855193404
## 3209 19 344 3.0 855194560
## 3210 19 345 3.0 855191289
## 3211 19 346 3.0 855192910
## 3212 19 348 4.0 855191622
## 3213 19 349 3.0 855193558
## 3214 19 350 3.0 855193864
## 3215 19 353 3.0 855192868
## 3216 19 354 3.0 855192178
## 3217 19 356 5.0 855192120
## 3218 19 357 5.0 855193770
## 3219 19 361 4.0 855193330
## 3220 19 364 3.0 855195078
## 3221 19 365 3.0 855192385
## 3222 19 366 3.0 855192254
## 3223 19 367 3.0 855194531
## 3224 19 369 3.0 855192636
## 3225 19 371 3.0 855193244
## 3226 19 372 1.0 855192254
## 3227 19 373 4.0 855191816
## 3228 19 376 3.0 855190166
## 3229 19 377 3.0 855191289
## 3230 19 379 3.0 855193845
## 3231 19 380 3.0 855191228
## 3232 19 382 3.0 855192120
## 3233 19 383 3.0 855193914
## 3234 19 407 3.0 855193558
## 3235 19 412 3.0 855192605
## 3236 19 423 3.0 855193488
## 3237 19 428 3.0 855191701
## 3238 19 429 4.0 855194419
## 3239 19 431 4.0 855192210
## 3240 19 434 3.0 855194301
## 3241 19 440 3.0 855193330
## 3242 19 441 3.0 855192455
## 3243 19 445 3.0 855193404
## 3244 19 448 3.0 855192001
## 3245 19 450 3.0 855194345
## 3246 19 451 3.0 855193700
## 3247 19 454 3.0 855193599
## 3248 19 456 4.0 855192910
## 3249 19 457 4.0 855192385
## 3250 19 464 4.0 855193488
## 3251 19 465 5.0 855193892
## 3252 19 468 4.0 855194397
## 3253 19 471 3.0 855192558
## 3254 19 474 3.0 855192419
## 3255 19 475 3.0 855191654
## 3256 19 479 2.0 855193806
## 3257 19 480 4.0 855192279
## 3258 19 481 1.0 855192308
## 3259 19 482 2.0 855192940
## 3260 19 485 1.0 855193330
## 3261 19 491 3.0 855193449
## 3262 19 493 4.0 855191517
## 3263 19 494 3.0 855190128
## 3264 19 500 3.0 855194264
## 3265 19 501 5.0 855191228
## 3266 19 504 3.0 855193845
## 3267 19 507 3.0 855192558
## 3268 19 508 3.0 855192061
## 3269 19 509 4.0 855194216
## 3270 19 513 1.0 855193700
## 3271 19 515 5.0 855193012
## 3272 19 517 2.0 855193301
## 3273 19 519 1.0 855194590
## 3274 19 520 3.0 855193449
## 3275 19 522 3.0 855193301
## 3276 19 527 4.0 855191478
## 3277 19 529 3.0 855192717
## 3278 19 531 5.0 855193358
## 3279 19 534 5.0 855192910
## 3280 19 535 4.0 855191324
## 3281 19 537 3.0 855192688
## 3282 19 541 4.0 855191622
## 3283 19 547 4.0 855194419
## 3284 19 550 3.0 855192254
## 3285 19 551 4.0 855192419
## 3286 19 555 3.0 855192033
## 3287 19 562 3.0 855190447
## 3288 19 580 1.0 855194052
## 3289 19 586 3.0 855194743
## 3290 19 588 3.0 855195077
## 3291 19 589 3.0 855191383
## 3292 19 590 3.0 855191289
## 3293 19 592 4.0 855191964
## 3294 19 593 3.0 855191229
## 3295 19 594 4.0 855191383
## 3296 19 595 5.0 855195077
## 3297 19 596 5.0 855191553
## 3298 19 597 3.0 855193530
## 3299 19 599 4.0 855192636
## 3300 19 608 5.0 855190128
## 3301 19 610 4.0 855192688
## 3302 19 612 3.0 855190427
## 3303 19 628 3.0 855190199
## 3304 19 648 3.0 855190091
## 3305 19 653 3.0 855190167
## 3306 19 661 4.0 855190199
## 3307 19 662 3.0 855190382
## 3308 19 663 4.0 855190349
## 3309 19 674 4.0 855194072
## 3310 19 703 3.0 855190606
## 3311 19 724 3.0 855193404
## 3312 19 733 3.0 855190128
## 3313 19 736 3.0 855190091
## 3314 19 748 3.0 855190290
## 3315 19 750 5.0 855191289
## 3316 19 780 3.0 855190091
## 3317 19 784 3.0 855190167
## 3318 19 785 3.0 855190349
## 3319 19 786 3.0 855191702
## 3320 19 788 3.0 855190167
## 3321 19 799 3.0 855190382
## 3322 19 800 3.0 855191324
## 3323 19 802 3.0 855190232
## 3324 19 805 3.0 855190199
## 3325 19 858 5.0 855191478
## 3326 19 880 2.0 855190382
## 3327 19 891 3.0 855194072
## 3328 19 898 5.0 855192178
## 3329 19 902 3.0 855192496
## 3330 19 903 4.0 855191622
## 3331 19 904 5.0 855191430
## 3332 19 908 4.0 855191553
## 3333 19 911 5.0 855192582
## 3334 19 912 3.0 855191552
## 3335 19 913 5.0 855191654
## 3336 19 914 3.0 855193012
## 3337 19 915 4.0 855192740
## 3338 19 916 5.0 855192773
## 3339 19 917 4.0 855193358
## 3340 19 920 4.0 855192717
## 3341 19 923 5.0 855191517
## 3342 19 924 4.0 855191289
## 3343 19 928 5.0 855192419
## 3344 19 929 4.0 855193274
## 3345 19 930 4.0 855192210
## 3346 19 931 3.0 855192814
## 3347 19 933 3.0 855192582
## 3348 19 940 4.0 855192033
## 3349 19 950 4.0 855192419
## 3350 19 951 5.0 855192279
## 3351 19 953 5.0 855192178
## 3352 19 954 4.0 855192385
## 3353 19 955 4.0 855192090
## 3354 19 965 4.0 855192061
## 3355 19 966 4.0 855194498
## 3356 19 968 5.0 855192582
## 3357 19 969 5.0 855192254
## 3358 19 982 4.0 855193628
## 3359 19 1013 3.0 855193700
## 3360 19 1019 4.0 855192120
## 3361 19 1022 4.0 855195136
## 3362 19 1023 4.0 855192347
## 3363 19 1028 3.0 855192347
## 3364 19 1029 5.0 855192033
## 3365 19 1035 4.0 855193194
## 3366 19 1036 4.0 855191324
## 3367 19 1041 5.0 855190467
## 3368 19 1042 3.0 855192178
## 3369 19 1060 5.0 855190606
## 3370 19 1061 3.0 855190382
## 3371 19 1073 4.0 855190128
## 3372 19 1077 3.0 855191775
## 3373 19 1079 4.0 855191701
## 3374 19 1080 3.0 855191289
## 3375 19 1082 3.0 855195268
## 3376 19 1084 4.0 855191324
## 3377 19 1086 4.0 855191517
## 3378 19 1088 3.0 855193599
## 3379 19 1089 4.0 855191228
## 3380 19 1090 4.0 855191584
## 3381 19 1091 3.0 855194052
## 3382 19 1092 1.0 855192773
## 3383 19 1093 3.0 855192910
## 3384 19 1094 4.0 855191816
## 3385 19 1095 5.0 855192001
## 3386 19 1097 5.0 855191517
## 3387 19 1101 3.0 855193194
## 3388 19 1103 4.0 855191882
## 3389 19 1104 4.0 855191584
## 3390 19 1124 3.0 855192940
## 3391 19 1126 3.0 855194282
## 3392 19 1127 3.0 855195373
## 3393 19 1128 4.0 855193275
## 3394 19 1129 3.0 855192347
## 3395 19 1130 4.0 855192910
## 3396 19 1136 5.0 855191430
## 3397 19 1148 4.0 855191228
## 3398 19 1161 3.0 855192254
## 3399 19 1171 3.0 855192740
## 3400 19 1175 3.0 855191882
## 3401 19 1176 4.0 855193194
## 3402 19 1178 5.0 855192496
## 3403 19 1179 5.0 855192717
## 3404 19 1183 3.0 855190427
## 3405 19 1185 4.0 855192496
## 3406 19 1193 4.0 855191478
## 3407 19 1196 5.0 855191622
## 3408 19 1197 3.0 855191701
## 3409 19 1198 4.0 855191430
## 3410 19 1199 4.0 855191701
## 3411 19 1200 4.0 855191553
## 3412 19 1201 4.0 855191654
## 3413 19 1203 4.0 855191702
## 3414 19 1204 4.0 855191964
## 3415 19 1206 4.0 855191478
## 3416 19 1207 5.0 855191775
## 3417 19 1208 5.0 855191478
## 3418 19 1210 4.0 855191882
## 3419 19 1211 5.0 855192454
## 3420 19 1212 4.0 855191740
## 3421 19 1213 5.0 855191553
## 3422 19 1214 4.0 855191584
## 3423 19 1215 4.0 855192419
## 3424 19 1216 2.0 855192814
## 3425 19 1217 5.0 855192090
## 3426 19 1218 4.0 855192385
## 3427 19 1219 5.0 855191517
## 3428 19 1220 5.0 855192558
## 3429 19 1221 5.0 855191584
## 3430 19 1222 5.0 855191740
## 3431 19 1225 5.0 855191846
## 3432 19 1227 3.0 855192517
## 3433 19 1228 5.0 855191882
## 3434 19 1230 4.0 855191622
## 3435 19 1231 5.0 855192061
## 3436 19 1233 4.0 855191740
## 3437 19 1237 4.0 855192419
## 3438 19 1238 5.0 855192347
## 3439 19 1240 4.0 855191383
## 3440 19 1242 5.0 855191882
## 3441 19 1244 4.0 855192001
## 3442 19 1246 3.0 855192868
## 3443 19 1247 3.0 855191702
## 3444 19 1248 4.0 855192347
## 3445 19 1249 4.0 855191816
## 3446 19 1250 4.0 855191882
## 3447 19 1252 4.0 855191816
## 3448 19 1253 4.0 855191930
## 3449 19 1254 5.0 855192033
## 3450 19 1257 5.0 855192279
## 3451 19 1258 5.0 855192033
## 3452 19 1259 3.0 855192061
## 3453 19 1260 5.0 855192001
## 3454 19 1261 5.0 855192347
## 3455 19 1262 4.0 855191930
## 3456 19 1263 4.0 855191775
## 3457 19 1265 4.0 855192773
## 3458 19 1266 4.0 855191930
## 3459 19 1267 4.0 855191740
## 3460 19 1268 3.0 855192688
## 3461 19 1269 4.0 855192033
## 3462 19 1270 5.0 855192178
## 3463 19 1271 3.0 855192455
## 3464 19 1272 3.0 855191964
## 3465 19 1274 4.0 855192636
## 3466 19 1275 3.0 855192605
## 3467 19 1276 4.0 855191930
## 3468 19 1278 4.0 855191654
## 3469 19 1282 4.0 855191846
## 3470 19 1283 4.0 855192120
## 3471 19 1284 4.0 855191930
## 3472 19 1285 3.0 855191846
## 3473 19 1286 4.0 855193358
## 3474 19 1287 4.0 855192517
## 3475 19 1288 5.0 855191816
## 3476 19 1290 3.0 855193035
## 3477 19 1291 3.0 855192090
## 3478 19 1292 4.0 855192255
## 3479 19 1297 4.0 855192717
## 3480 19 1298 1.0 855192455
## 3481 19 1299 4.0 855192308
## 3482 19 1302 3.0 855192210
## 3483 19 1304 3.0 855192120
## 3484 19 1306 3.0 855193274
## 3485 19 1307 3.0 855192558
## 3486 19 1320 3.0 855193628
## 3487 19 1321 3.0 855192308
## 3488 19 1327 3.0 855193806
## 3489 19 1332 2.0 855193932
## 3490 19 1333 4.0 855192090
## 3491 19 1334 3.0 855193599
## 3492 19 1336 3.0 855194641
## 3493 19 1339 3.0 855192773
## 3494 19 1342 3.0 855193358
## 3495 19 1343 4.0 855192558
## 3496 19 1344 5.0 855192636
## 3497 19 1345 4.0 855192605
## 3498 19 1347 3.0 855192835
## 3499 19 1348 5.0 855192496
## 3500 19 1350 3.0 855192814
## 3501 19 1354 5.0 855190606
## 3502 19 1356 3.0 855190199
## 3503 19 1357 4.0 855190571
## 3504 19 1370 4.0 855192636
## 3505 19 1371 4.0 855193404
## 3506 19 1372 2.0 855193035
## 3507 19 1373 3.0 855193845
## 3508 19 1374 3.0 855192496
## 3509 19 1375 4.0 855193244
## 3510 19 1376 3.0 855192740
## 3511 19 1377 3.0 855193700
## 3512 19 1378 2.0 855193244
## 3513 19 1380 3.0 855193194
## 3514 19 1381 3.0 855194670
## 3515 19 1382 1.0 855194188
## 3516 19 1385 3.0 855193076
## 3517 19 1387 5.0 855192033
## 3518 19 1388 1.0 855193946
## 3519 19 1389 1.0 855194693
## 3520 19 1391 2.0 855190404
## 3521 19 1393 3.0 855190404
## 3522 19 1394 5.0 855192061
## 3523 19 1396 3.0 855193012
## 3524 19 1405 3.0 855190404
## 3525 19 1408 3.0 855192910
## 3526 19 1441 3.0 855192982
## 3527 19 2019 3.0 855192254
## 3528 19 4970 4.0 855193274
## 3529 20 1 3.5 1238729767
## 3530 20 32 2.5 1238729782
## 3531 20 34 3.5 1238729861
## 3532 20 107 3.5 1224042765
## 3533 20 110 2.0 1238729747
## 3534 20 150 3.0 1238729755
## 3535 20 153 4.0 1238729818
## 3536 20 207 2.5 1224042795
## 3537 20 231 1.0 1238729849
## 3538 20 260 1.5 1224043057
## 3539 20 296 0.5 1238729735
## 3540 20 316 3.5 1238729834
## 3541 20 318 4.5 1224043037
## 3542 20 344 1.0 1238729802
## 3543 20 356 2.0 1238729739
## 3544 20 364 3.5 1238729826
## 3545 20 367 1.0 1238729854
## 3546 20 380 4.0 1238729779
## 3547 20 457 4.5 1238729750
## 3548 20 480 3.0 1238729744
## 3549 20 497 5.0 1238731010
## 3550 20 500 3.0 1238729842
## 3551 20 527 2.5 1224043054
## 3552 20 588 3.5 1238729785
## 3553 20 590 2.0 1238729764
## 3554 20 592 4.0 1238729759
## 3555 20 593 0.5 1238729741
## 3556 20 595 4.0 1238729816
## 3557 20 597 4.0 1238729844
## 3558 20 608 2.0 1238729789
## 3559 20 671 4.0 1224042769
## 3560 20 720 5.0 1224043166
## 3561 20 736 3.5 1238729831
## 3562 20 745 5.0 1224043160
## 3563 20 750 4.0 1224043081
## 3564 20 780 5.0 1238729772
## 3565 20 858 2.0 1238729822
## 3566 20 904 3.0 1224043134
## 3567 20 905 3.5 1238729311
## 3568 20 912 2.0 1224043067
## 3569 20 1019 3.0 1224042752
## 3570 20 1097 1.5 1238729863
## 3571 20 1103 4.0 1224042813
## 3572 20 1136 4.5 1224043119
## 3573 20 1148 5.0 1224043170
## 3574 20 1196 2.0 1238729793
## 3575 20 1198 4.5 1238729807
## 3576 20 1204 4.5 1238729342
## 3577 20 1207 4.0 1224043156
## 3578 20 1210 3.0 1238729777
## 3579 20 1247 1.0 1238730775
## 3580 20 1269 4.0 1238730754
## 3581 20 1270 3.5 1238729811
## 3582 20 1293 3.5 1238730771
## 3583 20 1378 3.0 1224042777
## 3584 20 1441 2.5 1224042802
## 3585 20 1580 5.0 1238729865
## 3586 20 1680 5.0 1224042771
## 3587 20 1907 4.0 1224042740
## 3588 20 1960 4.0 1224042737
## 3589 20 2013 3.0 1224042811
## 3590 20 2405 4.5 1224042788
## 3591 20 2571 4.5 1238729799
## 3592 20 2690 5.0 1238731025
## 3593 20 2762 3.5 1238729839
## 3594 20 2908 0.5 1238731034
## 3595 20 2959 0.5 1224043052
## 3596 20 3148 0.5 1224042755
## 3597 20 3196 0.5 1238729331
## 3598 20 3406 4.5 1238731020
## 3599 20 3555 2.0 1224042780
## 3600 20 3809 2.0 1224042827
## 3601 20 4993 4.0 1224043029
## 3602 20 5380 4.0 1238729247
## 3603 20 5618 3.5 1224043145
## 3604 20 5747 4.0 1238729389
## 3605 20 6201 4.5 1224043219
## 3606 20 6385 4.5 1238730960
## 3607 20 6516 4.0 1224043284
## 3608 20 6753 4.0 1224043266
## 3609 20 7153 4.0 1224043033
## 3610 20 7212 5.0 1224043242
## 3611 20 7841 1.0 1224043213
## 3612 20 8191 4.0 1224043180
## 3613 20 8493 3.5 1224043257
## 3614 20 8611 1.5 1224043185
## 3615 20 8970 2.5 1224043294
## 3616 20 26111 4.0 1238729255
## 3617 20 31116 5.0 1224043273
## 3618 20 32469 4.0 1224043282
## 3619 20 38038 4.5 1238730751
## 3620 20 47721 1.0 1238729405
## 3621 20 51471 5.0 1224043232
## 3622 20 54259 4.0 1238730925
## 3623 20 58047 4.0 1224043238
## 3624 20 58299 3.5 1224043018
## 3625 20 59784 4.0 1238731039
## 3626 20 64285 5.0 1238731016
## 3627 21 10 3.0 853846478
## 3628 21 21 3.0 853846669
## 3629 21 32 4.0 853157476
## 3630 21 34 4.0 853846442
## 3631 21 36 3.0 853157544
## 3632 21 44 3.0 853846547
## 3633 21 47 4.0 853846400
## 3634 21 95 3.0 853157476
## 3635 21 112 4.0 853157544
## 3636 21 151 4.0 853846547
## 3637 21 181 2.0 853846288
## 3638 21 196 3.0 853847536
## 3639 21 208 2.0 853846511
## 3640 21 260 3.0 853846669
## 3641 21 266 3.0 853846207
## 3642 21 273 3.0 853847723
## 3643 21 288 3.0 853857742
## 3644 21 296 3.0 853846400
## 3645 21 316 3.0 853847574
## 3646 21 329 3.0 853846400
## 3647 21 333 3.0 853846752
## 3648 21 344 3.0 853847612
## 3649 21 356 4.0 853846443
## 3650 21 377 4.0 853846511
## 3651 21 379 3.0 853852608
## 3652 21 380 3.0 853846783
## 3653 21 393 3.0 853856221
## 3654 21 442 3.0 853846579
## 3655 21 457 3.0 853846443
## 3656 21 466 3.0 853846873
## 3657 21 480 3.0 853846511
## 3658 21 485 3.0 853847574
## 3659 21 509 4.0 853846612
## 3660 21 527 5.0 853846400
## 3661 21 541 3.0 853846813
## 3662 21 543 3.0 853847688
## 3663 21 551 3.0 853846443
## 3664 21 553 3.0 853846547
## 3665 21 586 3.0 853847813
## 3666 21 589 5.0 853846400
## 3667 21 590 4.0 853846443
## 3668 21 592 3.0 853846639
## 3669 21 593 4.0 853846400
## 3670 21 594 3.0 853846612
## 3671 21 595 3.0 853846511
## 3672 21 597 3.0 853846723
## 3673 21 610 2.0 853846511
## 3674 21 648 3.0 853157476
## 3675 21 733 3.0 853157544
## 3676 21 750 5.0 853848506
## 3677 21 780 3.0 853157476
## 3678 21 849 3.0 853845946
## 3679 21 858 4.0 853850728
## 3680 21 899 3.0 853850791
## 3681 21 908 3.0 853850699
## 3682 21 910 3.0 853850791
## 3683 21 912 5.0 853848342
## 3684 21 913 4.0 853850728
## 3685 21 914 5.0 853850835
## 3686 21 918 4.0 853852058
## 3687 21 919 4.0 853850874
## 3688 21 920 4.0 853851052
## 3689 21 921 4.0 853849142
## 3690 21 923 5.0 853850699
## 3691 21 924 4.0 853848314
## 3692 21 945 3.0 853851841
## 3693 21 948 3.0 853851861
## 3694 21 952 3.0 853851892
## 3695 21 953 5.0 853850752
## 3696 21 954 4.0 853850874
## 3697 21 969 5.0 853850728
## 3698 21 1012 3.0 853849003
## 3699 21 1019 3.0 853848034
## 3700 21 1022 3.0 853851203
## 3701 21 1028 3.0 853848062
## 3702 21 1031 3.0 853852140
## 3703 21 1032 3.0 853848342
## 3704 21 1035 4.0 853848002
## 3705 21 1036 4.0 853846443
## 3706 21 1079 3.0 853846752
## 3707 21 1080 3.0 853846723
## 3708 21 1088 2.0 853853701
## 3709 21 1089 3.0 853847910
## 3710 21 1090 4.0 853848134
## 3711 21 1091 3.0 853853956
## 3712 21 1097 3.0 853847780
## 3713 21 1103 3.0 853847910
## 3714 21 1124 4.0 853852079
## 3715 21 1125 4.0 853851156
## 3716 21 1127 3.0 853851608
## 3717 21 1129 3.0 853848738
## 3718 21 1135 3.0 853852316
## 3719 21 1136 5.0 853847612
## 3720 21 1148 5.0 853846639
## 3721 21 1173 5.0 853852208
## 3722 21 1175 4.0 853851089
## 3723 21 1193 3.0 853850791
## 3724 21 1196 4.0 853847910
## 3725 21 1198 5.0 853847813
## 3726 21 1199 4.0 853848156
## 3727 21 1200 4.0 853848507
## 3728 21 1203 4.0 853850791
## 3729 21 1206 5.0 853851732
## 3730 21 1208 4.0 853851052
## 3731 21 1210 4.0 853848134
## 3732 21 1214 4.0 853849211
## 3733 21 1217 5.0 853851024
## 3734 21 1221 3.0 853850905
## 3735 21 1222 3.0 853851222
## 3736 21 1224 5.0 853850791
## 3737 21 1225 5.0 853850728
## 3738 21 1228 4.0 853851024
## 3739 21 1231 3.0 853850752
## 3740 21 1234 3.0 853850874
## 3741 21 1240 5.0 853848082
## 3742 21 1246 4.0 853852020
## 3743 21 1250 4.0 853850728
## 3744 21 1252 3.0 853850835
## 3745 21 1253 3.0 853850835
## 3746 21 1254 5.0 853850835
## 3747 21 1256 3.0 853850968
## 3748 21 1259 4.0 853851113
## 3749 21 1263 4.0 853851203
## 3750 21 1265 3.0 853851052
## 3751 21 1266 3.0 853850874
## 3752 21 1270 4.0 853849003
## 3753 21 1275 2.0 853848737
## 3754 21 1281 4.0 853850997
## 3755 21 1282 3.0 853850933
## 3756 21 1283 4.0 853850874
## 3757 21 1287 5.0 853850791
## 3758 21 1288 4.0 853850835
## 3759 21 1291 4.0 853848558
## 3760 21 1292 4.0 853851174
## 3761 21 1295 3.0 853852020
## 3762 21 1296 4.0 853851089
## 3763 21 1297 3.0 853851203
## 3764 21 1298 3.0 853852097
## 3765 21 1301 3.0 853850968
## 3766 21 1302 4.0 853851113
## 3767 21 1303 5.0 853850997
## 3768 21 1320 3.0 853853496
## 3769 21 1321 4.0 853851156
## 3770 21 1327 3.0 853853725
## 3771 21 1334 3.0 853852524
## 3772 21 1345 3.0 853852058
## 3773 21 1346 3.0 853853473
## 3774 21 1350 3.0 853852140
## 3775 21 1370 3.0 853851257
## 3776 21 1371 3.0 853852263
## 3777 21 1372 3.0 853851257
## 3778 21 1373 3.0 853853545
## 3779 21 1374 4.0 853849676
## 3780 21 1375 3.0 853851841
## 3781 21 1376 3.0 853850905
## 3782 21 1380 3.0 853852501
## 3783 21 1387 3.0 853850968
## 3784 21 1388 3.0 853854148
## 3785 21 1394 4.0 853851089
## 3786 21 1395 3.0 853853593
## 3787 21 1427 3.0 854522908
## 3788 21 5060 3.0 853850933
## 3789 22 32 4.5 1131662086
## 3790 22 44 2.0 1131662481
## 3791 22 47 3.5 1131662466
## 3792 22 48 2.0 1131661907
## 3793 22 70 3.0 1131661969
## 3794 22 153 3.0 1131662452
## 3795 22 158 1.0 1131661890
## 3796 22 163 4.5 1131664404
## 3797 22 173 1.5 1131662930
## 3798 22 208 2.0 1131664520
## 3799 22 231 2.5 1131662440
## 3800 22 235 2.0 1131662423
## 3801 22 253 4.5 1131662653
## 3802 22 260 4.0 1131663354
## 3803 22 267 2.0 1131663069
## 3804 22 296 5.0 1131664320
## 3805 22 315 3.0 1131662435
## 3806 22 355 2.0 1131753358
## 3807 22 356 3.5 1131663409
## 3808 22 442 2.5 1131662387
## 3809 22 457 4.5 1131662090
## 3810 22 480 4.5 1131662100
## 3811 22 485 2.5 1131753373
## 3812 22 541 4.5 1131664363
## 3813 22 551 5.0 1131663387
## 3814 22 552 3.0 1131661923
## 3815 22 555 4.0 1131663369
## 3816 22 586 1.0 1131664533
## 3817 22 588 2.0 1131662084
## 3818 22 589 5.0 1131663268
## 3819 22 592 4.5 1131663223
## 3820 22 593 4.5 1131723291
## 3821 22 648 5.0 1131663139
## 3822 22 784 1.5 1131662400
## 3823 22 785 2.5 1131662414
## 3824 22 858 4.0 1131662354
## 3825 22 1080 3.5 1131662357
## 3826 22 1089 4.0 1131662364
## 3827 22 1097 2.5 1131723086
## 3828 22 1101 2.0 1131662346
## 3829 22 1148 2.0 1131661960
## 3830 22 1196 4.5 1131663322
## 3831 22 1198 5.0 1131663397
## 3832 22 1200 5.0 1131663177
## 3833 22 1201 2.5 1131662370
## 3834 22 1208 3.5 1131662293
## 3835 22 1210 5.0 1131662093
## 3836 22 1214 3.5 1131663188
## 3837 22 1215 4.0 1131753179
## 3838 22 1240 4.0 1131662287
## 3839 22 1255 4.0 1131663479
## 3840 22 1263 3.0 1131753381
## 3841 22 1270 4.0 1131663366
## 3842 22 1291 5.0 1131663232
## 3843 22 1320 3.5 1131661937
## 3844 22 1339 4.5 1131663305
## 3845 22 1356 4.0 1131662309
## 3846 22 1371 2.0 1131662302
## 3847 22 1372 4.0 1131662635
## 3848 22 1374 3.5 1131662312
## 3849 22 1375 4.0 1131662317
## 3850 22 1376 4.0 1131661918
## 3851 22 1377 4.0 1131662328
## 3852 22 1387 4.0 1131662323
## 3853 22 1391 3.5 1131662334
## 3854 22 1527 4.5 1131663284
## 3855 22 1544 3.0 1131663044
## 3856 22 1580 4.0 1131664393
## 3857 22 1608 2.5 1131662271
## 3858 22 1625 2.0 1131663328
## 3859 22 1641 2.0 1131662659
## 3860 22 1645 2.5 1131662268
## 3861 22 1682 2.5 1131663443
## 3862 22 1693 2.0 1131664773
## 3863 22 1721 3.0 1131662252
## 3864 22 1722 3.5 1131662000
## 3865 22 1769 2.5 1131723166
## 3866 22 1799 4.0 1131663219
## 3867 22 1876 2.0 1131661994
## 3868 22 1884 4.5 1131663032
## 3869 22 1909 3.0 1131663020
## 3870 22 1917 2.5 1131664489
## 3871 22 1923 2.5 1131662243
## 3872 22 1997 3.0 1131662014
## 3873 22 2006 2.5 1131661978
## 3874 22 2011 3.5 1131723076
## 3875 22 2023 3.5 1131662226
## 3876 22 2081 2.5 1131661945
## 3877 22 2115 3.5 1131662232
## 3878 22 2174 4.0 1131662911
## 3879 22 2232 3.5 1131663357
## 3880 22 2288 4.0 1131664741
## 3881 22 2291 4.5 1131663683
## 3882 22 2301 3.5 1131664754
## 3883 22 2340 2.5 1131664719
## 3884 22 2402 3.0 1131723151
## 3885 22 2431 2.0 1131663013
## 3886 22 2459 4.0 1131664733
## 3887 22 2502 1.5 1131663552
## 3888 22 2542 4.5 1131664217
## 3889 22 2571 4.5 1131662900
## 3890 22 2605 2.0 1131723146
## 3891 22 2616 2.5 1131664710
## 3892 22 2617 2.5 1131723065
## 3893 22 2657 2.0 1131661911
## 3894 22 2672 2.0 1131664699
## 3895 22 2683 2.5 1131662202
## 3896 22 2700 2.0 1131662216
## 3897 22 2701 2.0 1131662209
## 3898 22 2710 2.0 1131662220
## 3899 22 2712 4.5 1131664480
## 3900 22 2716 3.0 1131662152
## 3901 22 2717 3.0 1131662710
## 3902 22 2723 2.0 1131663006
## 3903 22 2762 4.0 1131663393
## 3904 22 2763 1.5 1131662185
## 3905 22 2858 4.0 1131662179
## 3906 22 2881 2.0 1131664676
## 3907 22 2953 1.0 1131664687
## 3908 22 2959 4.0 1131663892
## 3909 22 2985 2.0 1131662174
## 3910 22 2987 4.0 1131662150
## 3911 22 2990 3.0 1131662717
## 3912 22 3033 4.0 1131664474
## 3913 22 3052 2.5 1131663311
## 3914 22 3081 5.0 1131662155
## 3915 22 3082 3.5 1131723124
## 3916 22 3147 2.5 1131662169
## 3917 22 3176 2.5 1131662162
## 3918 22 3213 4.0 1131664330
## 3919 22 3253 1.5 1131662194
## 3920 22 3285 2.0 1131723135
## 3921 22 3300 3.0 1131662989
## 3922 22 3354 2.5 1131662687
## 3923 22 3355 4.5 1131662678
## 3924 22 3408 1.5 1131662190
## 3925 22 3438 3.0 1131664651
## 3926 22 3527 4.0 1131753186
## 3927 22 3535 4.5 1131662694
## 3928 22 3578 3.0 1131663515
## 3929 22 3623 2.5 1131661897
## 3930 22 3697 2.5 1131664627
## 3931 22 3751 2.0 1131662894
## 3932 22 3793 4.5 1131663506
## 3933 22 3809 2.0 1131662700
## 3934 22 3826 2.0 1131723113
## 3935 22 3868 4.0 1131664598
## 3936 22 3977 2.5 1131753363
## 3937 22 3994 3.0 1131663359
## 3938 22 3996 2.0 1131662121
## 3939 22 3999 2.0 1131664612
## 3940 22 4011 4.5 1131663886
## 3941 22 4015 2.0 1131664618
## 3942 22 4027 2.0 1131723071
## 3943 22 4105 4.0 1131662565
## 3944 22 4226 5.0 1131662110
## 3945 22 4239 2.0 1131664374
## 3946 22 4262 3.5 1131663472
## 3947 22 4306 4.5 1131664226
## 3948 22 4370 3.5 1131664587
## 3949 22 4383 3.5 1131663565
## 3950 22 4643 2.5 1131663696
## 3951 22 4701 4.0 1131662966
## 3952 22 4720 2.5 1131663383
## 3953 22 4776 3.0 1131663420
## 3954 22 4886 4.0 1131661901
## 3955 22 4896 3.5 1131662103
## 3956 22 4963 2.5 1131662107
## 3957 22 4975 4.5 1131662960
## 3958 22 4993 5.0 1131662640
## 3959 22 5010 2.5 1131662670
## 3960 22 5026 4.0 1131663341
## 3961 22 5219 3.0 1131662525
## 3962 22 5266 2.5 1131664572
## 3963 22 5349 5.0 1131662096
## 3964 22 5400 2.5 1131664567
## 3965 22 5445 4.5 1131662075
## 3966 22 5459 3.5 1131662534
## 3967 22 5464 2.5 1131663373
## 3968 22 5630 4.5 1131663277
## 3969 22 5679 4.0 1131663330
## 3970 22 5816 3.5 1131663263
## 3971 22 5872 3.5 1131662504
## 3972 22 5903 4.0 1131663118
## 3973 22 5952 4.5 1131662637
## 3974 22 5989 3.5 1131663453
## 3975 22 6286 4.5 1131662846
## 3976 22 6333 4.5 1131663238
## 3977 22 6365 2.5 1131663156
## 3978 22 6373 2.0 1131662491
## 3979 22 6502 3.0 1131662517
## 3980 22 6539 4.0 1131663881
## 3981 22 6541 2.5 1131662684
## 3982 22 6754 2.5 1131723215
## 3983 22 6874 4.0 1131663918
## 3984 22 6893 2.0 1131664302
## 3985 22 6934 2.0 1131663158
## 3986 22 7143 4.0 1131663528
## 3987 22 7147 4.0 1131663431
## 3988 22 7153 4.0 1131662007
## 3989 22 7360 3.5 1131663298
## 3990 22 7373 3.0 1131662518
## 3991 22 7438 4.5 1131663403
## 3992 22 7454 3.0 1131663081
## 3993 22 7482 4.0 1131664239
## 3994 22 8360 3.5 1131662473
## 3995 22 8368 3.5 1131662938
## 3996 22 8636 4.5 1131663248
## 3997 22 8798 3.0 1131663440
## 3998 22 8947 3.0 1131663094
## 3999 22 8950 4.0 1131663467
## 4000 22 8957 4.5 1131663282
## 4001 22 8961 3.5 1131663378
## 4002 22 30793 4.0 1131663273
## 4003 22 31184 4.5 1131753070
## 4004 22 31696 4.0 1131663089
## 4005 22 32587 4.5 1131663293
## 4006 22 33493 2.5 1131663228
## 4007 22 33794 3.0 1131662462
## 4008 22 37729 5.0 1131663664
## 4009 23 1 3.0 1148729853
## 4010 23 6 3.5 1148730128
## 4011 23 11 3.5 1166728170
## 4012 23 16 4.0 1148672550
## 4013 23 19 2.0 1148669114
## 4014 23 20 1.5 1148720884
## 4015 23 24 3.5 1148673467
## 4016 23 32 4.0 1148730400
## 4017 23 34 3.5 1166728173
## 4018 23 47 4.5 1148669590
## 4019 23 50 4.0 1148670466
## 4020 23 58 3.5 1148672099
## 4021 23 62 4.0 1166728220
## 4022 23 89 4.0 1148669357
## 4023 23 104 3.5 1148730116
## 4024 23 110 3.5 1148669588
## 4025 23 111 5.0 1148671365
## 4026 23 150 3.5 1148672933
## 4027 23 153 3.0 1148720873
## 4028 23 154 4.0 1148672842
## 4029 23 172 2.5 1148386188
## 4030 23 185 3.5 1148778581
## 4031 23 224 4.0 1148729797
## 4032 23 235 4.0 1148729698
## 4033 23 236 4.5 1148386155
## 4034 23 246 4.5 1148729570
## 4035 23 247 4.0 1148673304
## 4036 23 252 4.0 1148669102
## 4037 23 253 3.5 1148668973
## 4038 23 260 4.5 1148668970
## 4039 23 262 4.0 1148728957
## 4040 23 265 3.5 1148673465
## 4041 23 292 2.5 1148720795
## 4042 23 293 4.0 1148672319
## 4043 23 296 4.5 1148671517
## 4044 23 300 4.0 1149868544
## 4045 23 306 3.5 1148777951
## 4046 23 307 2.5 1148777966
## 4047 23 316 3.5 1148668967
## 4048 23 318 5.0 1148668964
## 4049 23 319 4.5 1148669351
## 4050 23 337 4.5 1148672736
## 4051 23 344 2.0 1148668961
## 4052 23 345 4.0 1148673085
## 4053 23 356 4.5 1148728785
## 4054 23 380 4.0 1148673420
## 4055 23 425 3.5 1148669891
## 4056 23 431 3.5 1148730048
## 4057 23 442 3.5 1148720861
## 4058 23 457 3.5 1148673418
## 4059 23 465 3.5 1148669887
## 4060 23 471 3.5 1148730134
## 4061 23 480 3.5 1148729018
## 4062 23 485 3.0 1148720907
## 4063 23 492 4.5 1148669346
## 4064 23 497 4.5 1148669881
## 4065 23 508 4.5 1148669092
## 4066 23 509 4.5 1148672198
## 4067 23 527 3.5 1148729022
## 4068 23 532 3.5 1148720627
## 4069 23 535 4.5 1166036040
## 4070 23 539 2.5 1148729848
## 4071 23 541 3.0 1148668958
## 4072 23 586 3.5 1166728142
## 4073 23 588 4.0 1166728178
## 4074 23 589 3.5 1149868397
## 4075 23 590 2.5 1148728787
## 4076 23 592 3.5 1148670328
## 4077 23 593 4.5 1148671818
## 4078 23 595 4.5 1148672375
## 4079 23 597 3.0 1149868548
## 4080 23 605 4.0 1148669338
## 4081 23 608 4.5 1148669574
## 4082 23 648 4.5 1148672950
## 4083 23 653 2.5 1148669090
## 4084 23 668 4.5 1148669877
## 4085 23 670 4.5 1166035850
## 4086 23 745 4.5 1148669873
## 4087 23 750 4.5 1148670499
## 4088 23 778 4.5 1148669858
## 4089 23 780 3.5 1148673415
## 4090 23 788 2.0 1148669865
## 4091 23 802 3.5 1148669863
## 4092 23 805 3.5 1148669087
## 4093 23 841 4.0 1148729708
## 4094 23 858 5.0 1148670263
## 4095 23 898 4.5 1148671970
## 4096 23 899 4.5 1148671949
## 4097 23 900 2.5 1148728764
## 4098 23 903 3.5 1148671779
## 4099 23 904 4.5 1148729610
## 4100 23 905 4.0 1148728730
## 4101 23 908 5.0 1148669850
## 4102 23 909 3.5 1148730009
## 4103 23 910 4.5 1148777884
## 4104 23 911 4.0 1148671953
## 4105 23 912 5.0 1148669852
## 4106 23 913 4.0 1148670548
## 4107 23 914 3.0 1148673452
## 4108 23 920 3.5 1148778793
## 4109 23 922 4.5 1148671777
## 4110 23 923 5.0 1148669082
## 4111 23 924 3.5 1148729982
## 4112 23 926 4.0 1148729661
## 4113 23 928 4.5 1148671884
## 4114 23 930 4.0 1148671832
## 4115 23 931 4.5 1148672493
## 4116 23 933 3.5 1148671931
## 4117 23 942 4.0 1148669571
## 4118 23 948 3.5 1148721097
## 4119 23 949 3.5 1148721092
## 4120 23 952 3.5 1148728814
## 4121 23 953 4.5 1148670154
## 4122 23 954 5.0 1148669329
## 4123 23 955 3.5 1148669327
## 4124 23 965 3.5 1148729987
## 4125 23 969 3.5 1148669080
## 4126 23 971 3.5 1148721086
## 4127 23 1035 2.5 1148728784
## 4128 23 1036 3.0 1148668956
## 4129 23 1041 4.0 1148672085
## 4130 23 1059 4.5 1148672402
## 4131 23 1061 3.5 1148673456
## 4132 23 1077 4.0 1148669318
## 4133 23 1078 4.0 1148778808
## 4134 23 1080 4.0 1166728186
## 4135 23 1084 4.0 1148729677
## 4136 23 1089 3.5 1148671525
## 4137 23 1090 4.0 1148669833
## 4138 23 1096 2.5 1148669302
## 4139 23 1097 5.0 1148671542
## 4140 23 1101 3.0 1148673102
## 4141 23 1103 4.5 1148721090
## 4142 23 1104 4.0 1148721053
## 4143 23 1136 4.0 1148672286
## 4144 23 1172 5.0 1148670101
## 4145 23 1175 3.5 1148669299
## 4146 23 1176 3.0 1148670388
## 4147 23 1178 4.0 1148671770
## 4148 23 1183 4.0 1148728807
## 4149 23 1185 3.0 1149868223
## 4150 23 1188 4.0 1148669075
## 4151 23 1193 4.5 1148670482
## 4152 23 1196 4.5 1148670884
## 4153 23 1197 5.0 1148670172
## 4154 23 1198 4.5 1148670494
## 4155 23 1199 3.5 1148730030
## 4156 23 1201 4.0 1148669828
## 4157 23 1202 4.5 1148671384
## 4158 23 1203 4.5 1148669826
## 4159 23 1204 5.0 1148669072
## 4160 23 1206 4.5 1148669820
## 4161 23 1207 3.5 1148670496
## 4162 23 1208 5.0 1148670275
## 4163 23 1210 4.0 1148670888
## 4164 23 1211 3.5 1148670960
## 4165 23 1212 3.5 1148671412
## 4166 23 1213 5.0 1148669055
## 4167 23 1217 4.5 1148672270
## 4168 23 1218 3.5 1148672325
## 4169 23 1219 5.0 1148669822
## 4170 23 1221 4.5 1148670266
## 4171 23 1222 3.5 1148671596
## 4172 23 1225 4.5 1148671816
## 4173 23 1227 3.5 1149868188
## 4174 23 1228 4.0 1148671814
## 4175 23 1230 4.0 1148673449
## 4176 23 1231 4.0 1166036046
## 4177 23 1232 4.0 1166035984
## 4178 23 1233 3.5 1148778850
## 4179 23 1234 3.5 1148386185
## 4180 23 1235 1.5 1148669296
## 4181 23 1237 4.5 1148729642
## 4182 23 1240 3.5 1148730410
## 4183 23 1241 2.5 1148720563
## 4184 23 1243 3.5 1148672048
## 4185 23 1244 3.5 1148671992
## 4186 23 1246 4.0 1166036059
## 4187 23 1247 4.0 1148671859
## 4188 23 1248 4.5 1148671856
## 4189 23 1250 4.0 1148671782
## 4190 23 1251 5.0 1148671642
## 4191 23 1252 4.5 1148386150
## 4192 23 1254 3.5 1148777838
## 4193 23 1256 3.5 1148730086
## 4194 23 1258 3.5 1148671587
## 4195 23 1260 4.0 1148671822
## 4196 23 1262 4.0 1148778812
## 4197 23 1263 3.0 1148778787
## 4198 23 1265 4.0 1148730406
## 4199 23 1266 3.5 1148728732
## 4200 23 1267 5.0 1148671808
## 4201 23 1269 4.0 1148669291
## 4202 23 1270 4.5 1148729820
## 4203 23 1272 2.0 1148670285
## 4204 23 1277 3.5 1148720736
## 4205 23 1280 5.0 1148670134
## 4206 23 1281 3.0 1148777902
## 4207 23 1284 4.0 1148671835
## 4208 23 1287 4.0 1148669816
## 4209 23 1288 3.5 1148386142
## 4210 23 1291 3.5 1148730139
## 4211 23 1293 5.0 1148728738
## 4212 23 1304 4.0 1148728856
## 4213 23 1305 4.5 1148670953
## 4214 23 1307 4.0 1148669057
## 4215 23 1333 3.5 1148672025
## 4216 23 1343 4.0 1148672530
## 4217 23 1348 2.5 1148777918
## 4218 23 1354 4.5 1148669286
## 4219 23 1356 3.0 1148669063
## 4220 23 1377 2.5 1148670340
## 4221 23 1380 2.5 1166728237
## 4222 23 1387 3.5 1148669051
## 4223 23 1391 3.5 1148730168
## 4224 23 1393 4.0 1148729341
## 4225 23 1394 4.0 1148669808
## 4226 23 1408 3.5 1148720760
## 4227 23 1411 3.5 1148669282
## 4228 23 1438 3.0 1148720878
## 4229 23 1464 2.0 1149868079
## 4230 23 1499 1.5 1148720958
## 4231 23 1500 4.5 1148386128
## 4232 23 1515 3.0 1148720919
## 4233 23 1527 3.5 1166728241
## 4234 23 1544 2.0 1148720846
## 4235 23 1552 3.0 1148669048
## 4236 23 1556 0.5 1148778558
## 4237 23 1562 1.0 1148670343
## 4238 23 1580 3.5 1148668953
## 4239 23 1584 4.0 1148669800
## 4240 23 1608 2.5 1148669045
## 4241 23 1617 4.0 1148670522
## 4242 23 1625 4.5 1148671498
## 4243 23 1673 4.0 1148671436
## 4244 23 1682 5.0 1148670981
## 4245 23 1693 4.0 1148669270
## 4246 23 1704 3.5 1148729054
## 4247 23 1721 5.0 1148670121
## 4248 23 1722 3.0 1148669792
## 4249 23 1732 4.0 1148669789
## 4250 23 1735 4.5 1148728970
## 4251 23 1748 5.0 1148669787
## 4252 23 1792 3.5 1148669267
## 4253 23 1797 3.5 1148728611
## 4254 23 1835 3.5 1148670970
## 4255 23 1860 5.0 1148671375
## 4256 23 1873 3.0 1148730178
## 4257 23 1876 3.0 1148673442
## 4258 23 1900 3.5 1148730066
## 4259 23 1907 3.5 1148669265
## 4260 23 1917 2.0 1148720837
## 4261 23 1927 3.0 1148728727
## 4262 23 1931 4.0 1148669541
## 4263 23 1932 1.5 1148728810
## 4264 23 1935 4.0 1148672116
## 4265 23 1941 3.5 1148728751
## 4266 23 1944 4.0 1148721075
## 4267 23 1945 4.5 1148672322
## 4268 23 1946 4.0 1148669538
## 4269 23 1947 4.0 1148728761
## 4270 23 1949 3.5 1148730162
## 4271 23 1950 4.5 1148728725
## 4272 23 1951 3.0 1148728794
## 4273 23 1952 4.0 1148673306
## 4274 23 1953 3.0 1148671908
## 4275 23 1954 3.0 1148728778
## 4276 23 1955 4.0 1148728759
## 4277 23 1956 1.0 1148728746
## 4278 23 1957 3.5 1148728769
## 4279 23 1958 3.5 1148728790
## 4280 23 1959 2.5 1148728802
## 4281 23 1960 1.5 1148728736
## 4282 23 1961 4.0 1148728753
## 4283 23 1962 3.5 1148728767
## 4284 23 1997 3.5 1148728429
## 4285 23 2002 3.5 1148669764
## 4286 23 2010 3.5 1148669261
## 4287 23 2011 4.0 1148729668
## 4288 23 2012 4.5 1148673438
## 4289 23 2019 4.0 1148669760
## 4290 23 2022 4.0 1148672527
## 4291 23 2023 3.0 1148669036
## 4292 23 2027 3.5 1148669531
## 4293 23 2028 4.0 1148671551
## 4294 23 2067 2.5 1148728867
## 4295 23 2068 5.0 1148671632
## 4296 23 2115 4.0 1148670901
## 4297 23 2126 2.0 1148720894
## 4298 23 2132 4.0 1148729968
## 4299 23 2143 1.5 1148669258
## 4300 23 2174 3.5 1166728231
## 4301 23 2176 5.0 1148672486
## 4302 23 2178 3.0 1148730098
## 4303 23 2181 4.0 1148672510
## 4304 23 2183 3.5 1148672500
## 4305 23 2186 5.0 1148671801
## 4306 23 2194 3.5 1148386163
## 4307 23 2203 4.0 1148671878
## 4308 23 2205 3.5 1148672515
## 4309 23 2231 3.5 1148669228
## 4310 23 2248 3.5 1148729360
## 4311 23 2273 3.5 1148669739
## 4312 23 2278 4.0 1148669751
## 4313 23 2289 4.0 1148671976
## 4314 23 2291 4.0 1148672768
## 4315 23 2313 3.5 1148673578
## 4316 23 2321 5.0 1148669024
## 4317 23 2324 3.5 1148730155
## 4318 23 2329 2.5 1148669021
## 4319 23 2333 3.5 1148669225
## 4320 23 2334 2.5 1148669239
## 4321 23 2336 3.0 1148671939
## 4322 23 2351 5.0 1148671652
## 4323 23 2353 3.0 1148386176
## 4324 23 2357 4.0 1148729689
## 4325 23 2360 3.5 1148730053
## 4326 23 2361 4.0 1148720603
## 4327 23 2394 3.5 1148778590
## 4328 23 2396 4.5 1148728756
## 4329 23 2406 4.0 1148669018
## 4330 23 2424 3.0 1148729858
## 4331 23 2467 4.0 1149868383
## 4332 23 2474 2.5 1148669219
## 4333 23 2501 4.0 1148669215
## 4334 23 2502 4.0 1149868257
## 4335 23 2539 2.0 1149868567
## 4336 23 2542 3.5 1149868269
## 4337 23 2571 4.0 1149868185
## 4338 23 2575 3.0 1148672184
## 4339 23 2580 3.5 1148669719
## 4340 23 2599 3.5 1148730088
## 4341 23 2600 4.0 1148729974
## 4342 23 2617 3.5 1166728248
## 4343 23 2628 2.5 1148670873
## 4344 23 2640 4.5 1148669716
## 4345 23 2644 3.5 1148671340
## 4346 23 2648 4.5 1148671324
## 4347 23 2657 3.0 1148669012
## 4348 23 2692 5.0 1148670082
## 4349 23 2699 1.5 1148386172
## 4350 23 2702 4.0 1148669210
## 4351 23 2712 4.5 1148669709
## 4352 23 2716 3.0 1166036066
## 4353 23 2721 3.5 1148673094
## 4354 23 2724 2.0 1148669714
## 4355 23 2726 4.5 1148671845
## 4356 23 2728 4.0 1148728854
## 4357 23 2729 3.5 1149868713
## 4358 23 2730 4.0 1148671606
## 4359 23 2731 5.0 1148672620
## 4360 23 2739 4.0 1148729011
## 4361 23 2746 2.0 1149867815
## 4362 23 2762 4.0 1149868231
## 4363 23 2805 2.5 1148669200
## 4364 23 2858 3.5 1148669501
## 4365 23 2871 3.5 1148672034
## 4366 23 2890 4.0 1148729102
## 4367 23 2905 4.0 1148672294
## 4368 23 2908 3.5 1148673075
## 4369 23 2918 4.0 1148671999
## 4370 23 2932 4.0 1148672683
## 4371 23 2947 3.5 1148669008
## 4372 23 2952 3.5 1148730113
## 4373 23 2953 3.5 1148669191
## 4374 23 2959 3.5 1148778865
## 4375 23 2970 4.0 1148729713
## 4376 23 2976 4.5 1148672556
## 4377 23 2987 3.5 1149868562
## 4378 23 2997 4.5 1148671474
## 4379 23 3006 4.5 1148670519
## 4380 23 3019 3.5 1148778622
## 4381 23 3020 2.5 1148720744
## 4382 23 3052 3.5 1148669706
## 4383 23 3053 2.0 1148669188
## 4384 23 3067 5.0 1148673055
## 4385 23 3081 3.0 1148672778
## 4386 23 3082 2.5 1148720826
## 4387 23 3083 5.0 1148670143
## 4388 23 3088 2.5 1148671916
## 4389 23 3089 4.5 1148671881
## 4390 23 3095 3.0 1148673280
## 4391 23 3100 3.5 1148728895
## 4392 23 3114 3.5 1148669703
## 4393 23 3147 3.0 1148729851
## 4394 23 3152 2.0 1148728701
## 4395 23 3155 2.5 1148669181
## 4396 23 3159 4.0 1148728602
## 4397 23 3160 4.5 1148669695
## 4398 23 3168 4.0 1148672142
## 4399 23 3176 5.0 1148672449
## 4400 23 3201 3.5 1148672101
## 4401 23 3245 4.5 1148671428
## 4402 23 3246 4.5 1148671904
## 4403 23 3248 3.0 1148669488
## 4404 23 3252 4.5 1148729808
## 4405 23 3267 3.5 1148730163
## 4406 23 3307 4.0 1148670551
## 4407 23 3310 5.0 1148671686
## 4408 23 3317 4.0 1148671963
## 4409 23 3365 2.5 1148721061
## 4410 23 3371 3.5 1148728891
## 4411 23 3386 5.0 1148728875
## 4412 23 3405 3.5 1148721102
## 4413 23 3408 4.5 1148386153
## 4414 23 3415 1.5 1166035912
## 4415 23 3424 4.0 1148673292
## 4416 23 3435 4.5 1148670554
## 4417 23 3448 4.0 1149868559
## 4418 23 3462 4.5 1148669482
## 4419 23 3468 3.0 1148669175
## 4420 23 3471 4.5 1148669004
## 4421 23 3475 3.5 1148721082
## 4422 23 3481 3.5 1148729373
## 4423 23 3489 3.5 1148671696
## 4424 23 3498 4.5 1148671997
## 4425 23 3503 3.5 1148669480
## 4426 23 3504 3.0 1148669173
## 4427 23 3510 3.5 1148730416
## 4428 23 3535 4.0 1148670362
## 4429 23 3546 4.0 1148669470
## 4430 23 3559 2.0 1148721157
## 4431 23 3569 1.0 1148669685
## 4432 23 3578 4.0 1148728779
## 4433 23 3618 3.0 1148669465
## 4434 23 3623 2.0 1148386159
## 4435 23 3629 4.0 1148672311
## 4436 23 3668 3.0 1148669458
## 4437 23 3671 3.5 1149868554
## 4438 23 3681 3.5 1148669165
## 4439 23 3730 3.5 1148730072
## 4440 23 3736 4.0 1148671793
## 4441 23 3741 2.5 1148777893
## 4442 23 3751 4.0 1148386124
## 4443 23 3753 2.0 1148669688
## 4444 23 3788 4.0 1148729675
## 4445 23 3801 2.0 1148671784
## 4446 23 3844 3.0 1148669156
## 4447 23 3871 3.0 1148721105
## 4448 23 3897 4.5 1148669002
## 4449 23 3910 4.5 1148672113
## 4450 23 3949 5.0 1148673043
## 4451 23 3983 4.5 1148671887
## 4452 23 3989 4.0 1148777876
## 4453 23 3992 3.5 1148729496
## 4454 23 3994 4.0 1148669000
## 4455 23 3996 4.0 1148670535
## 4456 23 4007 4.0 1148670060
## 4457 23 4008 4.0 1166036125
## 4458 23 4011 4.5 1149868172
## 4459 23 4014 3.5 1148672776
## 4460 23 4022 2.0 1148729830
## 4461 23 4027 3.5 1148728652
## 4462 23 4034 3.5 1148386146
## 4463 23 4037 3.5 1148669449
## 4464 23 4103 3.5 1148671975
## 4465 23 4148 1.0 1149868599
## 4466 23 4167 3.0 1148669447
## 4467 23 4223 2.0 1148670048
## 4468 23 4225 4.0 1148669443
## 4469 23 4226 4.5 1148670464
## 4470 23 4235 4.0 1148671013
## 4471 23 4267 4.0 1148778637
## 4472 23 4278 3.5 1148670046
## 4473 23 4282 2.0 1148670035
## 4474 23 4297 3.5 1148672150
## 4475 23 4308 4.5 1148672412
## 4476 23 4310 1.5 1148778542
## 4477 23 4312 3.5 1148670033
## 4478 23 4343 3.0 1148670029
## 4479 23 4344 0.5 1148669153
## 4480 23 4359 2.0 1148672030
## 4481 23 4370 3.0 1148672429
## 4482 23 4378 4.0 1148672167
## 4483 23 4432 3.5 1148672010
## 4484 23 4447 3.5 1148669150
## 4485 23 4458 3.0 1148730000
## 4486 23 4564 1.5 1148729027
## 4487 23 4571 3.5 1148670025
## 4488 23 4641 4.0 1148671968
## 4489 23 4720 4.0 1148673475
## 4490 23 4816 3.0 1148670015
## 4491 23 4823 4.0 1148669432
## 4492 23 4848 4.0 1149868082
## 4493 23 4857 3.5 1148669430
## 4494 23 4865 3.5 1148669145
## 4495 23 4878 3.5 1148730080
## 4496 23 4881 3.5 1148669142
## 4497 23 4886 3.5 1148730186
## 4498 23 4896 3.5 1148673770
## 4499 23 4901 3.0 1148670011
## 4500 23 4914 5.0 1148669659
## 4501 23 4963 5.0 1148673020
## 4502 23 4967 5.0 1148673264
## 4503 23 4973 5.0 1148668997
## 4504 23 4975 2.0 1148729348
## 4505 23 4976 3.0 1148730142
## 4506 23 4978 4.5 1148730339
## 4507 23 4979 4.0 1148672064
## 4508 23 4993 4.0 1148670407
## 4509 23 4995 4.5 1148668988
## 4510 23 5013 4.5 1148671395
## 4511 23 5014 1.0 1148669423
## 4512 23 5015 3.5 1148671310
## 4513 23 5060 3.0 1148668984
## 4514 23 5073 3.0 1149868375
## 4515 23 5096 3.0 1148670003
## 4516 23 5114 4.0 1148672017
## 4517 23 5135 4.0 1148669420
## 4518 23 5147 4.0 1148721046
## 4519 23 5177 4.5 1148669995
## 4520 23 5222 4.0 1149868484
## 4521 23 5225 5.0 1148671005
## 4522 23 5266 4.0 1148669126
## 4523 23 5291 4.0 1148669408
## 4524 23 5299 2.5 1166728155
## 4525 23 5304 3.5 1148777819
## 4526 23 5348 3.5 1148669987
## 4527 23 5349 2.0 1148670299
## 4528 23 5367 4.0 1148673117
## 4529 23 5373 3.5 1148721129
## 4530 23 5377 3.5 1148729991
## 4531 23 5378 0.5 1148668981
## 4532 23 5385 3.5 1148669651
## 4533 23 5388 3.5 1148730375
## 4534 23 5445 3.0 1148671569
## 4535 23 5446 4.0 1148671806
## 4536 23 5463 2.5 1148669404
## 4537 23 5464 2.0 1148728872
## 4538 23 5470 3.0 1148669643
## 4539 23 5489 3.0 1148729764
## 4540 23 5502 4.0 1166728165
## 4541 23 5599 3.5 1148728844
## 4542 23 5618 3.5 1148670503
## 4543 23 5633 4.5 1148670377
## 4544 23 5669 4.0 1148729681
## 4545 23 5673 4.5 1148729615
## 4546 23 5679 3.5 1148728452
## 4547 23 5682 3.5 1148672044
## 4548 23 5810 4.0 1148669981
## 4549 23 5816 2.5 1148668978
## 4550 23 5878 4.0 1148671891
## 4551 23 5881 4.0 1148778680
## 4552 23 5882 1.5 1148728632
## 4553 23 5902 5.0 1148671465
## 4554 23 5940 4.0 1148728401
## 4555 23 5949 4.0 1148730381
## 4556 23 5952 4.0 1148670412
## 4557 23 5954 3.5 1148729985
## 4558 23 5956 3.5 1148672553
## 4559 23 5971 4.5 1148728488
## 4560 23 5989 5.0 1148669635
## 4561 23 5991 2.5 1148728773
## 4562 23 5992 5.0 1148671728
## 4563 23 5995 4.5 1148670480
## 4564 23 6001 4.5 1148671984
## 4565 23 6008 3.0 1166035845
## 4566 23 6016 5.0 1148670462
## 4567 23 6162 2.5 1148673567
## 4568 23 6197 2.5 1149868386
## 4569 23 6214 3.5 1148730363
## 4570 23 6218 4.0 1148673695
## 4571 23 6235 4.0 1148671914
## 4572 23 6281 4.0 1148669973
## 4573 23 6323 3.5 1149868589
## 4574 23 6333 3.5 1148673429
## 4575 23 6365 4.5 1148729589
## 4576 23 6377 3.5 1148670511
## 4577 23 6404 3.5 1148777788
## 4578 23 6415 1.5 1148671670
## 4579 23 6440 3.5 1148728655
## 4580 23 6537 3.0 1148730486
## 4581 23 6539 4.5 1148729602
## 4582 23 6552 3.5 1148730325
## 4583 23 6591 4.0 1148729489
## 4584 23 6599 3.5 1166728191
## 4585 23 6611 4.5 1148672103
## 4586 23 6620 3.5 1148777833
## 4587 23 6641 2.5 1149868022
## 4588 23 6643 4.5 1148673277
## 4589 23 6666 3.0 1148672862
## 4590 23 6669 4.0 1148669957
## 4591 23 6708 3.5 1148672069
## 4592 23 6709 1.5 1148669388
## 4593 23 6711 3.0 1148672708
## 4594 23 6783 4.0 1148671403
## 4595 23 6787 4.0 1148670473
## 4596 23 6796 3.5 1148777887
## 4597 23 6807 3.0 1148669120
## 4598 23 6867 3.5 1148670540
## 4599 23 6870 3.5 1148671873
## 4600 23 6873 4.0 1148728657
## 4601 23 6874 5.0 1148673160
## 4602 23 6881 4.5 1148729597
## 4603 23 6890 4.0 1148729704
## 4604 23 6918 5.0 1148721147
## 4605 23 6932 4.0 1148673289
## 4606 23 6934 3.0 1148669952
## 4607 23 6944 3.0 1149867788
## 4608 23 6947 2.5 1148669950
## 4609 23 6953 3.5 1148673142
## 4610 23 6954 3.0 1148777906
## 4611 23 6975 4.5 1149868005
## 4612 23 6981 2.5 1148721109
## 4613 23 6982 2.0 1148721080
## 4614 23 6985 4.0 1148669947
## 4615 23 6987 4.0 1148669620
## 4616 23 6993 3.5 1148671989
## 4617 23 7004 2.0 1148720869
## 4618 23 7008 1.5 1148673512
## 4619 23 7013 4.0 1148721066
## 4620 23 7038 4.0 1148778107
## 4621 23 7042 2.5 1148672120
## 4622 23 7063 4.5 1148729768
## 4623 23 7070 4.5 1148672289
## 4624 23 7072 4.5 1148729652
## 4625 23 7088 4.0 1148721133
## 4626 23 7090 4.5 1148729574
## 4627 23 7104 2.0 1148729032
## 4628 23 7132 3.5 1148671849
## 4629 23 7136 5.0 1148672629
## 4630 23 7139 3.5 1148672333
## 4631 23 7147 4.0 1166728160
## 4632 23 7153 4.5 1148386181
## 4633 23 7160 3.0 1148671300
## 4634 23 7161 2.0 1149867747
## 4635 23 7162 2.0 1148669384
## 4636 23 7234 4.0 1148669943
## 4637 23 7265 4.0 1148673554
## 4638 23 7323 4.0 1148777881
## 4639 23 7347 3.0 1148669381
## 4640 23 7361 4.5 1148670469
## 4641 23 7371 4.5 1148730359
## 4642 23 7419 3.5 1148671745
## 4643 23 7438 3.5 1148673159
## 4644 23 7458 2.0 1148673729
## 4645 23 7569 3.5 1166036074
## 4646 23 7587 4.0 1148672248
## 4647 23 7713 3.5 1148671356
## 4648 23 7748 3.5 1148672143
## 4649 23 7759 1.0 1166035969
## 4650 23 7766 4.0 1148670517
## 4651 23 7771 4.0 1148728880
## 4652 23 7942 3.0 1148729504
## 4653 23 8019 3.5 1148728467
## 4654 23 8042 4.5 1148669605
## 4655 23 8125 4.0 1148728849
## 4656 23 8154 3.5 1148673274
## 4657 23 8195 3.0 1148672148
## 4658 23 8239 3.5 1148672825
## 4659 23 8338 3.5 1148728858
## 4660 23 8368 4.0 1148673762
## 4661 23 8376 4.5 1148673478
## 4662 23 8464 3.5 1148671852
## 4663 23 8507 3.5 1148777848
## 4664 23 8529 2.0 1148729024
## 4665 23 8636 3.5 1148670303
## 4666 23 8656 2.5 1148777970
## 4667 23 8873 4.5 1148669373
## 4668 23 8910 4.0 1148778304
## 4669 23 8949 3.5 1148673283
## 4670 23 8955 5.0 1148671738
## 4671 23 8958 4.5 1148671289
## 4672 23 8966 3.5 1148730147
## 4673 23 8970 4.5 1148672765
## 4674 23 8973 4.0 1148673065
## 4675 23 8984 3.0 1148673032
## 4676 23 25753 3.5 1148730109
## 4677 23 25769 4.5 1148672235
## 4678 23 25805 2.5 1148777777
## 4679 23 26052 4.0 1148672082
## 4680 23 26131 4.0 1148670559
## 4681 23 26242 5.0 1148672259
## 4682 23 26729 4.5 1166035835
## 4683 23 27266 3.0 1148669930
## 4684 23 27317 3.0 1148730354
## 4685 23 27721 3.0 1148672301
## 4686 23 27803 4.5 1148672274
## 4687 23 30707 3.5 1148672278
## 4688 23 30749 4.5 1148670456
## 4689 23 30793 3.5 1148730062
## 4690 23 30812 3.5 1148669374
## 4691 23 30820 4.0 1148669926
## 4692 23 31101 4.0 1149867880
## 4693 23 31658 3.5 1148728505
## 4694 23 32587 3.5 1149868226
## 4695 23 32892 4.0 1166035981
## 4696 23 33162 2.5 1148673735
## 4697 23 33166 5.0 1148728740
## 4698 23 33493 4.0 1148670866
## 4699 23 33794 3.5 1148730017
## 4700 23 33903 3.5 1148673299
## 4701 23 34048 3.0 1148671579
## 4702 23 34143 2.5 1148728469
## 4703 23 34326 4.0 1148673587
## 4704 23 34437 3.0 1148672716
## 4705 23 36517 3.5 1148730328
## 4706 23 36529 3.5 1148730343
## 4707 23 36535 4.5 1148728385
## 4708 23 37733 3.5 1148730331
## 4709 23 37736 3.0 1148670189
## 4710 23 37741 4.0 1148670454
## 4711 23 38038 4.0 1148670525
## 4712 23 39183 4.5 1148671229
## 4713 23 39231 4.0 1148673719
## 4714 23 39292 4.5 1148670458
## 4715 23 39869 4.0 1149867915
## 4716 23 40278 3.5 1148671243
## 4717 23 40583 4.0 1148729077
## 4718 23 40629 4.0 1148671251
## 4719 23 40815 3.0 1148673758
## 4720 23 40819 3.0 1148671278
## 4721 23 41285 4.5 1148729584
## 4722 23 41569 2.0 1148720535
## 4723 23 41571 2.5 1148728902
## 4724 23 41863 3.5 1148777867
## 4725 23 41997 4.0 1148671219
## 4726 23 42004 4.0 1149867706
## 4727 23 42418 3.5 1148671236
## 4728 23 42734 3.0 1148778653
## 4729 23 44191 4.5 1148669596
## 4730 23 44204 4.0 1148670935
## 4731 23 45186 3.5 1148672962
## 4732 23 45447 1.5 1149867891
## 4733 23 45722 2.5 1166728253
## 4734 23 48385 3.5 1166728226
## 4735 24 6 5.0 849321588
## 4736 24 36 3.0 849321616
## 4737 24 81 4.0 849321769
## 4738 24 95 3.0 849321588
## 4739 24 150 3.0 849282414
## 4740 24 165 4.0 849282506
## 4741 24 296 5.0 849282414
## 4742 24 316 3.0 849282540
## 4743 24 356 4.0 849282540
## 4744 24 380 4.0 849282414
## 4745 24 457 4.0 849282507
## 4746 24 588 3.0 849282506
## 4747 24 590 4.0 849282414
## 4748 24 592 3.0 849282414
## 4749 24 610 3.0 849321669
## 4750 24 648 4.0 849321569
## 4751 24 736 3.0 849321569
## 4752 24 780 4.0 849282720
## 4753 24 786 4.0 849321569
## 4754 24 1034 3.0 849321955
## 4755 24 1161 4.0 849321826
## 4756 25 3 3.0 859625254
## 4757 25 32 4.0 859625180
## 4758 25 78 3.0 859625874
## 4759 25 104 4.0 859625336
## 4760 25 260 4.0 859625336
## 4761 25 494 3.0 859625254
## 4762 25 608 3.0 859625254
## 4763 25 653 2.0 859625336
## 4764 25 663 2.0 859625772
## 4765 25 707 3.0 859625553
## 4766 25 778 4.0 859625495
## 4767 25 780 4.0 859625180
## 4768 25 784 3.0 859625336
## 4769 25 786 3.0 859625254
## 4770 25 788 2.0 859625336
## 4771 25 802 5.0 859625442
## 4772 25 832 3.0 859625495
## 4773 25 842 2.0 859625824
## 4774 25 1073 5.0 859625254
## 4775 25 1354 1.0 859625931
## 4776 25 1356 3.0 859625442
## 4777 25 1358 5.0 859625974
## 4778 25 1391 2.0 859625669
## 4779 25 1405 3.0 859625669
## 4780 25 1409 2.0 859625845
## 4781 25 1483 3.0 859626258
## 4782 26 1 5.0 1360087980
## 4783 26 32 4.5 1354313537
## 4784 26 47 4.5 1360088070
## 4785 26 50 4.5 1360088047
## 4786 26 63 0.5 1351544773
## 4787 26 69 4.5 1351544454
## 4788 26 153 3.5 1360088114
## 4789 26 165 2.5 1360088108
## 4790 26 260 3.0 1360087975
## 4791 26 296 3.5 1360087955
## 4792 26 316 0.5 1360088129
## 4793 26 318 4.0 1360087964
## 4794 26 344 0.5 1360088074
## 4795 26 356 4.5 1352058551
## 4796 26 367 2.0 1360088133
## 4797 26 377 3.0 1360088079
## 4798 26 380 3.0 1360088041
## 4799 26 457 3.5 1360088007
## 4800 26 480 2.5 1360087958
## 4801 26 500 1.0 1360088125
## 4802 26 555 3.5 1352636797
## 4803 26 589 4.0 1360088014
## 4804 26 593 3.5 1354752756
## 4805 26 608 3.5 1360088060
## 4806 26 648 2.5 1360088081
## 4807 26 720 3.0 1351544331
## 4808 26 733 3.0 1360088143
## 4809 26 778 4.5 1354313990
## 4810 26 780 3.5 1360088024
## 4811 26 858 4.0 1360088089
## 4812 26 1036 3.5 1352058567
## 4813 26 1089 3.5 1371811577
## 4814 26 1196 3.5 1360088053
## 4815 26 1198 4.0 1360088064
## 4816 26 1210 3.5 1352058572
## 4817 26 1405 1.5 1351544316
## 4818 26 1527 4.0 1352636822
## 4819 26 1580 3.5 1360088119
## 4820 26 1653 3.5 1371811514
## 4821 26 1687 3.5 1351544445
## 4822 26 1732 4.0 1354752882
## 4823 26 1753 3.0 1351544792
## 4824 26 1831 3.0 1351544355
## 4825 26 1884 4.0 1352636799
## 4826 26 2028 3.0 1352058527
## 4827 26 2329 4.0 1371811575
## 4828 26 2355 4.0 1363376250
## 4829 26 2542 5.0 1352058619
## 4830 26 2571 5.0 1354752806
## 4831 26 2692 4.5 1354752751
## 4832 26 2858 4.0 1360088058
## 4833 26 2959 4.0 1354752886
## 4834 26 3108 2.0 1351544362
## 4835 26 3114 4.5 1371811559
## 4836 26 3147 3.0 1352058543
## 4837 26 3275 4.0 1352597810
## 4838 26 3481 2.5 1353708984
## 4839 26 3578 2.5 1352058529
## 4840 26 3744 4.0 1351544464
## 4841 26 4011 5.0 1351545050
## 4842 26 4019 4.0 1351544397
## 4843 26 4027 3.0 1351545093
## 4844 26 4161 3.5 1351544451
## 4845 26 4226 4.0 1353708990
## 4846 26 4262 2.5 1354752813
## 4847 26 4306 4.0 1351545101
## 4848 26 4776 4.0 1352058758
## 4849 26 4844 2.0 1351544780
## 4850 26 4865 4.5 1351544467
## 4851 26 4963 1.5 1352058557
## 4852 26 4973 3.5 1351545042
## 4853 26 4979 4.0 1353344972
## 4854 26 4995 3.0 1352058609
## 4855 26 5010 3.5 1352597808
## 4856 26 5110 4.0 1353345028
## 4857 26 5218 4.0 1353344992
## 4858 26 5418 4.0 1352058538
## 4859 26 5608 4.0 1364420293
## 4860 26 5617 2.0 1353708976
## 4861 26 5903 2.5 1352058766
## 4862 26 5952 4.0 1360088161
## 4863 26 5954 3.0 1352058603
## 4864 26 5989 2.0 1352921335
## 4865 26 6016 5.0 1352597728
## 4866 26 6333 0.5 1357253672
## 4867 26 6539 1.5 1357253678
## 4868 26 6708 3.5 1353344968
## 4869 26 6867 4.0 1351545056
## 4870 26 6870 3.0 1352921346
## 4871 26 6874 4.5 1352597710
## 4872 26 7323 4.0 1363810269
## 4873 26 7361 3.5 1365194619
## 4874 26 7438 3.5 1352838248
## 4875 26 7445 4.5 1352058756
## 4876 26 8368 3.0 1352058778
## 4877 26 8665 4.0 1352058548
## 4878 26 8784 2.0 1351545109
## 4879 26 8798 5.0 1352058660
## 4880 26 8874 1.5 1351545104
## 4881 26 8961 4.0 1351545119
## 4882 26 27376 0.5 1357253708
## 4883 26 27831 5.0 1351544753
## 4884 26 30810 3.0 1353708965
## 4885 26 31410 2.0 1352838206
## 4886 26 31878 4.0 1353344939
## 4887 26 32587 4.0 1352058784
## 4888 26 33794 4.0 1352921319
## 4889 26 34437 3.0 1353344981
## 4890 26 36529 4.0 1352058516
## 4891 26 37731 3.0 1357253700
## 4892 26 37741 3.5 1352921338
## 4893 26 38038 3.0 1361215024
## 4894 26 38061 4.5 1351545085
## 4895 26 41997 4.0 1352597707
## 4896 26 44191 5.0 1353708699
## 4897 26 44195 5.0 1351545082
## 4898 26 44199 4.5 1352058510
## 4899 26 44665 3.5 1352058533
## 4900 26 46976 4.0 1351545138
## 4901 26 47610 4.5 1352058666
## 4902 26 48516 4.5 1352921298
## 4903 26 48774 3.0 1353797039
## 4904 26 48780 4.5 1352921315
## 4905 26 49272 4.0 1352597697
## 4906 26 49278 3.0 1353962805
## 4907 26 49530 4.0 1352058503
## 4908 26 50851 3.5 1353868066
## 4909 26 50872 5.0 1352597714
## 4910 26 51255 3.5 1351545097
## 4911 26 51662 4.0 1352838254
## 4912 26 52604 4.0 1352920880
## 4913 26 52952 4.0 1353709027
## 4914 26 53129 4.5 1365194986
## 4915 26 53972 3.0 1352058770
## 4916 26 54286 5.0 1352058561
## 4917 26 54503 2.5 1353344881
## 4918 26 55118 2.5 1352921375
## 4919 26 55167 0.5 1357253685
## 4920 26 55247 4.0 1352838245
## 4921 26 55276 3.5 1352838242
## 4922 26 55280 3.5 1361215017
## 4923 26 55765 2.5 1352058524
## 4924 26 55820 3.0 1353708936
## 4925 26 56782 3.5 1351544480
## 4926 26 57669 3.5 1351545114
## 4927 26 58559 5.0 1352597791
## 4928 26 59315 3.5 1352597733
## 4929 26 59369 5.0 1352058657
## 4930 26 59387 3.0 1353868028
## 4931 26 59784 5.0 1352597790
## 4932 26 60069 3.0 1352838257
## 4933 26 60684 5.0 1352920912
## 4934 26 61024 3.0 1353345002
## 4935 26 61323 3.5 1353345011
## 4936 26 62849 4.5 1357253777
## 4937 26 63082 3.0 1352838237
## 4938 26 65514 5.0 1352597777
## 4939 26 67997 3.5 1353709018
## 4940 26 68157 3.5 1352597735
## 4941 26 68358 2.0 1353797029
## 4942 26 68954 3.5 1351545047
## 4943 26 69122 3.5 1352838229
## 4944 26 70533 0.5 1357253681
## 4945 26 71464 2.0 1353345007
## 4946 26 72998 3.5 1352597807
## 4947 26 73017 3.5 1352597692
## 4948 26 73587 4.5 1353344976
## 4949 26 79132 3.5 1354313972
## 4950 26 80489 2.0 1354313516
## 4951 26 82459 4.0 1351544798
## 4952 26 91542 3.5 1351545019
## 4953 26 92259 4.5 1354313566
## 4954 27 50 4.0 939077258
## 4955 27 73 5.0 939079553
## 4956 27 111 4.0 939076893
## 4957 27 296 4.0 939077164
## 4958 27 527 5.0 939079002
## 4959 27 593 4.0 939076893
## 4960 27 1213 4.0 939080935
## 4961 27 1343 4.0 939078921
## 4962 27 1584 4.0 939079553
## 4963 27 1610 4.0 939080148
## 4964 27 1639 4.0 939079118
## 4965 27 1704 5.0 939080090
## 4966 27 1721 3.0 939079855
## 4967 27 1892 4.0 939079553
## 4968 27 2356 2.0 939082326
## 4969 27 2391 3.0 939078921
## 4970 27 2396 2.0 939077258
## 4971 27 2501 4.0 939079779
## 4972 27 2502 4.0 939082276
## 4973 27 2710 1.0 939076569
## 4974 27 2712 4.0 939076677
## 4975 27 2762 5.0 939076519
## 4976 27 2858 5.0 939076519
## 4977 28 21 5.0 938942396
## 4978 28 58 5.0 938944078
## 4979 28 110 4.0 938944407
## 4980 28 345 5.0 938944923
## 4981 28 898 5.0 938944407
## 4982 28 899 5.0 938944744
## 4983 28 902 5.0 938944550
## 4984 28 903 3.0 938944636
## 4985 28 904 4.0 938942682
## 4986 28 908 5.0 938944975
## 4987 28 909 4.0 938944975
## 4988 28 913 4.0 938943150
## 4989 28 920 5.0 938942682
## 4990 28 924 4.0 938942755
## 4991 28 926 5.0 938942821
## 4992 28 933 4.0 938944683
## 4993 28 953 2.0 938944139
## 4994 28 1059 5.0 938944408
## 4995 28 1079 5.0 938943028
## 4996 28 1094 4.0 938942614
## 4997 28 1203 5.0 938943524
## 4998 28 1206 4.0 938944744
## 4999 28 1219 5.0 938943150
## 5000 28 1225 5.0 938944457
## 5001 28 1250 5.0 938943202
## 5002 28 1252 5.0 938944923
## 5003 28 1267 5.0 938943028
## 5004 28 1296 5.0 938944505
## 5005 28 1300 4.0 938944139
## 5006 28 1366 5.0 938944636
## 5007 28 1610 4.0 938943245
## 5008 28 1617 5.0 938942458
## 5009 28 1674 4.0 938944683
## 5010 28 1831 1.0 938942755
## 5011 28 1883 4.0 938944505
## 5012 28 1945 5.0 938943202
## 5013 28 1956 4.0 938944407
## 5014 28 1962 3.0 938943150
## 5015 28 2019 2.0 938942821
## 5016 28 2028 3.0 938942529
## 5017 28 2109 5.0 938944457
## 5018 28 2202 5.0 938943408
## 5019 28 2291 4.0 938943524
## 5020 28 2300 4.0 938944975
## 5021 28 2324 5.0 938944237
## 5022 28 2406 2.0 938944923
## 5023 28 2470 4.0 938943150
## 5024 28 2571 5.0 938944505
## 5025 28 2583 5.0 938943879
## 5026 28 2662 4.0 938943976
## 5027 29 778 5.0 1313927169
## 5028 29 1569 2.0 1313925564
## 5029 29 1681 0.5 1313925259
## 5030 29 1717 3.0 1313925074
## 5031 29 2065 0.5 1313925699
## 5032 29 2367 0.5 1313925185
## 5033 29 2384 1.5 1313925639
## 5034 29 2459 3.5 1313924474
## 5035 29 2513 3.0 1313924446
## 5036 29 2571 5.0 1313927206
## 5037 29 2713 3.0 1313925688
## 5038 29 2717 2.5 1313925589
## 5039 29 2942 0.5 1313925693
## 5040 29 3720 4.0 1313924856
## 5041 29 5065 2.0 1313925220
## 5042 29 6365 2.5 1313927224
## 5043 29 6502 5.0 1313927249
## 5044 29 6934 2.5 1313927226
## 5045 29 27822 4.0 1313925421
## 5046 29 51662 4.5 1313927193
## 5047 29 58559 5.0 1313927309
## 5048 29 73268 3.0 1313924902
## 5049 30 1 4.0 944943070
## 5050 30 2 2.0 945277634
## 5051 30 6 4.0 945276746
## 5052 30 8 4.0 968786809
## 5053 30 11 4.0 948141296
## 5054 30 14 4.0 945276564
## 5055 30 16 5.0 945115684
## 5056 30 18 2.0 945277971
## 5057 30 21 5.0 945276705
## 5058 30 23 4.0 945278756
## 5059 30 25 4.0 945115684
## 5060 30 32 2.0 945122277
## 5061 30 34 4.0 1039067883
## 5062 30 42 3.0 945278415
## 5063 30 45 3.0 1060795346
## 5064 30 47 4.0 986745716
## 5065 30 50 5.0 945113887
## 5066 30 52 5.0 945122740
## 5067 30 60 2.0 945277094
## 5068 30 70 4.0 1007352836
## 5069 30 78 2.0 945706968
## 5070 30 100 4.0 945277812
## 5071 30 110 5.0 945122218
## 5072 30 111 4.0 945113485
## 5073 30 118 3.0 994458116
## 5074 30 141 4.0 951010161
## 5075 30 150 5.0 945122277
## 5076 30 158 3.0 945277588
## 5077 30 161 5.0 948166619
## 5078 30 162 1.0 945113597
## 5079 30 165 4.0 948141601
## 5080 30 170 4.0 994458393
## 5081 30 196 2.0 999626484
## 5082 30 203 3.0 994458432
## 5083 30 208 2.0 945278527
## 5084 30 209 2.0 945277654
## 5085 30 224 4.0 996057525
## 5086 30 227 2.0 945279013
## 5087 30 228 2.0 986009538
## 5088 30 235 4.0 945114746
## 5089 30 253 4.0 948141681
## 5090 30 254 3.0 945276587
## 5091 30 260 4.0 948167472
## 5092 30 261 4.0 951008613
## 5093 30 272 4.0 996883776
## 5094 30 281 4.0 945115182
## 5095 30 282 5.0 964459362
## 5096 30 288 1.0 952884892
## 5097 30 296 5.0 994439589
## 5098 30 300 5.0 945122065
## 5099 30 317 4.0 945277330
## 5100 30 318 5.0 945112993
## 5101 30 337 5.0 945121922
## 5102 30 344 2.0 994458003
## 5103 30 348 5.0 945114800
## 5104 30 349 5.0 945277064
## 5105 30 350 4.0 960819270
## 5106 30 356 5.0 945122709
## 5107 30 357 4.0 945122526
## 5108 30 364 3.0 945276685
## 5109 30 368 4.0 945277588
## 5110 30 369 3.0 945277422
## 5111 30 371 4.0 945277277
## 5112 30 377 4.0 945276660
## 5113 30 380 4.0 945277224
## 5114 30 382 4.0 945277520
## 5115 30 410 4.0 948165514
## 5116 30 412 5.0 945114031
## 5117 30 413 2.0 995228802
## 5118 30 419 2.0 945278777
## 5119 30 424 4.0 946161737
## 5120 30 425 4.0 945114071
## 5121 30 426 2.0 945277698
## 5122 30 428 5.0 945115767
## 5123 30 432 3.0 954818652
## 5124 30 434 4.0 945277634
## 5125 30 440 4.0 945122305
## 5126 30 445 4.0 986009342
## 5127 30 451 4.0 945277919
## 5128 30 454 5.0 945276439
## 5129 30 457 5.0 945122219
## 5130 30 459 4.0 944943155
## 5131 30 463 4.0 945277405
## 5132 30 471 4.0 945112993
## 5133 30 472 4.0 945278328
## 5134 30 474 5.0 945115411
## 5135 30 477 4.0 945114453
## 5136 30 480 4.0 948140634
## 5137 30 485 4.0 945278179
## 5138 30 492 4.0 945276493
## 5139 30 500 4.0 945277277
## 5140 30 507 4.0 968786739
## 5141 30 508 5.0 945122127
## 5142 30 509 5.0 945122648
## 5143 30 515 5.0 945114031
## 5144 30 517 4.0 945278094
## 5145 30 518 2.0 945277535
## 5146 30 523 2.0 945116219
## 5147 30 527 5.0 945121654
## 5148 30 531 3.0 945122884
## 5149 30 532 2.0 945277742
## 5150 30 534 4.0 946161937
## 5151 30 535 4.0 945115684
## 5152 30 538 4.0 945115018
## 5153 30 539 3.0 945276726
## 5154 30 540 4.0 960820031
## 5155 30 541 4.0 948166511
## 5156 30 553 4.0 948140535
## 5157 30 555 5.0 945115684
## 5158 30 556 4.0 945113656
## 5159 30 581 3.0 945276726
## 5160 30 586 4.0 945278021
## 5161 30 587 2.0 945277405
## 5162 30 588 5.0 945276393
## 5163 30 589 4.0 948140376
## 5164 30 590 5.0 945115727
## 5165 30 592 4.0 945294508
## 5166 30 593 4.0 945114031
## 5167 30 594 3.0 945116219
## 5168 30 595 5.0 945122884
## 5169 30 596 4.0 960918653
## 5170 30 597 4.0 945122819
## 5171 30 608 5.0 945121703
## 5172 30 628 5.0 946162223
## 5173 30 640 3.0 951009961
## 5174 30 647 5.0 945276778
## 5175 30 661 2.0 945277181
## 5176 30 707 3.0 945278043
## 5177 30 733 4.0 945277145
## 5178 30 736 4.0 945277919
## 5179 30 750 3.0 945112993
## 5180 30 762 3.0 945278328
## 5181 30 765 3.0 951009383
## 5182 30 767 4.0 990239999
## 5183 30 780 4.0 945277224
## 5184 30 782 3.0 945276900
## 5185 30 800 4.0 945115105
## 5186 30 805 5.0 945277026
## 5187 30 806 1.0 945278630
## 5188 30 832 4.0 945276918
## 5189 30 858 5.0 945113250
## 5190 30 869 2.0 960819972
## 5191 30 898 5.0 945123379
## 5192 30 899 4.0 945280609
## 5193 30 903 4.0 948167638
## 5194 30 904 4.0 948167359
## 5195 30 908 4.0 948167200
## 5196 30 912 5.0 945113329
## 5197 30 913 5.0 945113429
## 5198 30 914 4.0 945115727
## 5199 30 919 4.0 952885624
## 5200 30 920 5.0 945114843
## 5201 30 921 5.0 945115217
## 5202 30 922 5.0 945280543
## 5203 30 923 5.0 945123035
## 5204 30 924 4.0 945114984
## 5205 30 928 5.0 945123334
## 5206 30 947 4.0 945114585
## 5207 30 950 4.0 961353806
## 5208 30 953 4.0 945123629
## 5209 30 954 4.0 945115133
## 5210 30 969 4.0 948166413
## 5211 30 971 4.0 945116296
## 5212 30 996 3.0 986009052
## 5213 30 1006 4.0 960819546
## 5214 30 1010 3.0 945295766
## 5215 30 1012 3.0 945295955
## 5216 30 1013 4.0 945295766
## 5217 30 1017 2.0 945295766
## 5218 30 1018 3.0 945295766
## 5219 30 1025 4.0 945295766
## 5220 30 1027 3.0 945278498
## 5221 30 1028 4.0 945295702
## 5222 30 1035 4.0 968785945
## 5223 30 1036 4.0 945115767
## 5224 30 1042 4.0 945116137
## 5225 30 1061 3.0 946162006
## 5226 30 1073 3.0 945295466
## 5227 30 1078 2.0 945114585
## 5228 30 1079 5.0 945294292
## 5229 30 1081 4.0 945294437
## 5230 30 1082 4.0 945114495
## 5231 30 1084 4.0 945113844
## 5232 30 1086 4.0 948166679
## 5233 30 1088 4.0 945294811
## 5234 30 1089 5.0 948167359
## 5235 30 1090 4.0 945294381
## 5236 30 1091 1.0 945295052
## 5237 30 1092 4.0 948141124
## 5238 30 1093 1.0 945115105
## 5239 30 1094 5.0 945121755
## 5240 30 1095 5.0 945113694
## 5241 30 1096 5.0 945294381
## 5242 30 1097 4.0 945115628
## 5243 30 1101 4.0 960917771
## 5244 30 1104 4.0 952885531
## 5245 30 1114 3.0 1039068134
## 5246 30 1120 4.0 945116296
## 5247 30 1124 4.0 945115411
## 5248 30 1126 2.0 960819766
## 5249 30 1129 3.0 945294508
## 5250 30 1135 3.0 945294700
## 5251 30 1171 3.0 945122605
## 5252 30 1179 5.0 945114819
## 5253 30 1181 4.0 968786007
## 5254 30 1186 4.0 945294437
## 5255 30 1189 3.0 945114638
## 5256 30 1193 4.0 944943070
## 5257 30 1196 4.0 945123680
## 5258 30 1197 3.0 945114495
## 5259 30 1198 5.0 945294292
## 5260 30 1200 3.0 948166414
## 5261 30 1206 2.0 945114673
## 5262 30 1207 5.0 945113377
## 5263 30 1208 5.0 945123246
## 5264 30 1210 4.0 945294508
## 5265 30 1212 3.0 951007847
## 5266 30 1213 5.0 945114231
## 5267 30 1214 4.0 945295323
## 5268 30 1219 4.0 952884971
## 5269 30 1220 5.0 945294381
## 5270 30 1221 5.0 945123035
## 5271 30 1222 4.0 945115684
## 5272 30 1225 5.0 948166414
## 5273 30 1226 4.0 945296019
## 5274 30 1227 5.0 945294292
## 5275 30 1228 5.0 945123065
## 5276 30 1231 5.0 945114800
## 5277 30 1234 5.0 945123522
## 5278 30 1235 2.0 945114453
## 5279 30 1240 4.0 945116137
## 5280 30 1242 5.0 945114495
## 5281 30 1244 4.0 945114271
## 5282 30 1245 4.0 945122127
## 5283 30 1246 4.0 945294508
## 5284 30 1247 4.0 952885104
## 5285 30 1250 5.0 945123210
## 5286 30 1252 5.0 945123065
## 5287 30 1258 4.0 945114365
## 5288 30 1259 4.0 945123827
## 5289 30 1263 5.0 945114843
## 5290 30 1265 4.0 945121960
## 5291 30 1266 5.0 945115218
## 5292 30 1267 5.0 945112993
## 5293 30 1270 5.0 951010688
## 5294 30 1271 4.0 945115293
## 5295 30 1272 5.0 945123246
## 5296 30 1276 5.0 945114271
## 5297 30 1277 5.0 945122526
## 5298 30 1278 3.0 945113844
## 5299 30 1283 4.0 948166855
## 5300 30 1285 4.0 945880277
## 5301 30 1286 3.0 945294811
## 5302 30 1291 4.0 945294509
## 5303 30 1292 5.0 945123170
## 5304 30 1302 4.0 945115684
## 5305 30 1303 4.0 945115218
## 5306 30 1304 4.0 944943155
## 5307 30 1307 4.0 952885624
## 5308 30 1320 3.0 951009284
## 5309 30 1321 4.0 945294509
## 5310 30 1327 4.0 945295543
## 5311 30 1332 4.0 960917865
## 5312 30 1333 5.0 945295702
## 5313 30 1334 4.0 945296019
## 5314 30 1339 4.0 945121560
## 5315 30 1343 5.0 945122846
## 5316 30 1345 3.0 945115456
## 5317 30 1346 4.0 945295052
## 5318 30 1350 4.0 945115807
## 5319 30 1352 4.0 945879533
## 5320 30 1358 5.0 945113981
## 5321 30 1366 5.0 945277990
## 5322 30 1370 4.0 945277207
## 5323 30 1377 3.0 945277674
## 5324 30 1378 4.0 945295052
## 5325 30 1380 4.0 945295543
## 5326 30 1385 3.0 945277556
## 5327 30 1387 4.0 945280937
## 5328 30 1388 3.0 960918255
## 5329 30 1390 3.0 945278359
## 5330 30 1393 4.0 994439147
## 5331 30 1394 5.0 945114495
## 5332 30 1395 5.0 945294509
## 5333 30 1396 4.0 945277002
## 5334 30 1399 3.0 945115018
## 5335 30 1422 4.0 945278156
## 5336 30 1438 3.0 945277760
## 5337 30 1440 3.0 960819894
## 5338 30 1459 4.0 948142097
## 5339 30 1461 4.0 945278857
## 5340 30 1466 5.0 945114724
## 5341 30 1485 4.0 945277520
## 5342 30 1488 4.0 945278415
## 5343 30 1508 4.0 945277797
## 5344 30 1517 3.0 1011327941
## 5345 30 1523 4.0 980135256
## 5346 30 1552 4.0 945278003
## 5347 30 1562 3.0 945278893
## 5348 30 1566 4.0 948165379
## 5349 30 1580 4.0 945880463
## 5350 30 1584 5.0 946162247
## 5351 30 1588 2.0 945277026
## 5352 30 1589 3.0 945122819
## 5353 30 1598 4.0 945277971
## 5354 30 1608 5.0 945276984
## 5355 30 1610 5.0 945276587
## 5356 30 1611 2.0 945123592
## 5357 30 1614 3.0 945276660
## 5358 30 1617 5.0 945113887
## 5359 30 1620 4.0 968786680
## 5360 30 1624 4.0 948140224
## 5361 30 1625 3.0 945276960
## 5362 30 1645 5.0 945116175
## 5363 30 1672 4.0 945276439
## 5364 30 1673 4.0 945122330
## 5365 30 1674 5.0 945123741
## 5366 30 1682 5.0 946162223
## 5367 30 1686 4.0 946161879
## 5368 30 1690 3.0 948142097
## 5369 30 1694 5.0 945114071
## 5370 30 1701 4.0 945115767
## 5371 30 1704 5.0 945121832
## 5372 30 1711 5.0 945277361
## 5373 30 1721 4.0 945277460
## 5374 30 1726 2.0 945122710
## 5375 30 1729 5.0 945116296
## 5376 30 1732 3.0 945122710
## 5377 30 1747 4.0 945115933
## 5378 30 1783 4.0 994439516
## 5379 30 1784 5.0 951010688
## 5380 30 1785 4.0 986008828
## 5381 30 1791 4.0 945278540
## 5382 30 1798 3.0 945279033
## 5383 30 1805 4.0 948141222
## 5384 30 1810 3.0 945276705
## 5385 30 1834 4.0 949977510
## 5386 30 1864 3.0 945279097
## 5387 30 1873 5.0 945122010
## 5388 30 1876 4.0 948141904
## 5389 30 1882 2.0 1030334513
## 5390 30 1884 1.0 948165859
## 5391 30 1892 5.0 945122605
## 5392 30 1912 4.0 945276249
## 5393 30 1917 4.0 945278278
## 5394 30 1923 4.0 945115864
## 5395 30 1943 3.0 945296041
## 5396 30 1945 4.0 945114192
## 5397 30 1947 4.0 945123854
## 5398 30 1951 4.0 945113057
## 5399 30 1952 4.0 948167081
## 5400 30 1953 4.0 952885034
## 5401 30 1954 5.0 945114883
## 5402 30 1955 4.0 945114961
## 5403 30 1956 4.0 945113844
## 5404 30 1957 4.0 945123497
## 5405 30 1958 3.0 945115767
## 5406 30 1960 5.0 945114800
## 5407 30 1961 5.0 945294381
## 5408 30 1962 5.0 945114883
## 5409 30 1965 4.0 986738498
## 5410 30 1968 4.0 945294381
## 5411 30 1982 3.0 945116252
## 5412 30 1994 4.0 945294641
## 5413 30 1997 5.0 945123317
## 5414 30 2000 4.0 945294641
## 5415 30 2001 4.0 945294764
## 5416 30 2002 3.0 945278278
## 5417 30 2003 3.0 994457962
## 5418 30 2009 3.0 948167472
## 5419 30 2011 4.0 945294811
## 5420 30 2012 3.0 945278244
## 5421 30 2013 3.0 948167277
## 5422 30 2015 3.0 952884997
## 5423 30 2023 5.0 1039070774
## 5424 30 2024 1.0 945115480
## 5425 30 2025 4.0 945115548
## 5426 30 2028 5.0 945113656
## 5427 30 2054 1.0 944943070
## 5428 30 2064 4.0 945113775
## 5429 30 2065 5.0 945294381
## 5430 30 2070 4.0 945123718
## 5431 30 2076 4.0 951008775
## 5432 30 2078 3.0 948166931
## 5433 30 2081 4.0 986735779
## 5434 30 2082 2.0 945277311
## 5435 30 2083 4.0 960818505
## 5436 30 2088 3.0 945295156
## 5437 30 2094 4.0 945277405
## 5438 30 2105 2.0 994439964
## 5439 30 2108 4.0 945276856
## 5440 30 2109 3.0 945295466
## 5441 30 2112 3.0 945276493
## 5442 30 2114 4.0 945294437
## 5443 30 2115 4.0 945294811
## 5444 30 2116 3.0 952744480
## 5445 30 2117 3.0 945294641
## 5446 30 2118 4.0 948166679
## 5447 30 2120 4.0 948141369
## 5448 30 2121 2.0 968788273
## 5449 30 2122 2.0 945295156
## 5450 30 2124 4.0 945276960
## 5451 30 2126 4.0 945116219
## 5452 30 2136 3.0 945295766
## 5453 30 2144 3.0 945116220
## 5454 30 2145 3.0 945294700
## 5455 30 2146 4.0 945295052
## 5456 30 2148 1.0 945294872
## 5457 30 2159 2.0 945113656
## 5458 30 2160 5.0 945280501
## 5459 30 2166 4.0 946162071
## 5460 30 2174 4.0 945294381
## 5461 30 2183 4.0 952743252
## 5462 30 2184 4.0 945295955
## 5463 30 2188 3.0 968787840
## 5464 30 2193 3.0 945294700
## 5465 30 2194 5.0 945114961
## 5466 30 2231 5.0 945276882
## 5467 30 2236 3.0 945276439
## 5468 30 2240 4.0 945294641
## 5469 30 2243 5.0 945115900
## 5470 30 2245 4.0 948167638
## 5471 30 2247 4.0 945294764
## 5472 30 2249 4.0 945276685
## 5473 30 2252 4.0 951009217
## 5474 30 2253 3.0 945277634
## 5475 30 2255 2.0 960917865
## 5476 30 2259 3.0 948165999
## 5477 30 2263 2.0 945294858
## 5478 30 2264 2.0 945295069
## 5479 30 2267 4.0 945277094
## 5480 30 2268 5.0 1037583956
## 5481 30 2269 5.0 945278188
## 5482 30 2278 3.0 945277113
## 5483 30 2286 1.0 945295214
## 5484 30 2289 5.0 945114406
## 5485 30 2291 5.0 945122526
## 5486 30 2296 2.0 945278963
## 5487 30 2300 5.0 945115512
## 5488 30 2301 4.0 945294509
## 5489 30 2302 4.0 945276393
## 5490 30 2307 4.0 948069839
## 5491 30 2311 3.0 945294811
## 5492 30 2313 4.0 945114453
## 5493 30 2320 4.0 945277718
## 5494 30 2321 5.0 945122794
## 5495 30 2329 3.0 945115512
## 5496 30 2334 3.0 945277654
## 5497 30 2336 5.0 945115270
## 5498 30 2346 3.0 960918218
## 5499 30 2347 3.0 945295543
## 5500 30 2352 4.0 948070285
## 5501 30 2353 5.0 945276439
## 5502 30 2355 5.0 948166591
## 5503 30 2367 2.0 945295588
## 5504 30 2369 4.0 945294811
## 5505 30 2371 3.0 945294509
## 5506 30 2374 3.0 945880314
## 5507 30 2376 4.0 945295052
## 5508 30 2389 3.0 945117801
## 5509 30 2391 5.0 948167472
## 5510 30 2396 5.0 945117110
## 5511 30 2398 4.0 945296110
## 5512 30 2402 3.0 954818726
## 5513 30 2403 3.0 948141433
## 5514 30 2407 4.0 945294700
## 5515 30 2409 4.0 945295588
## 5516 30 2410 4.0 945295156
## 5517 30 2411 4.0 945295214
## 5518 30 2412 4.0 945278718
## 5519 30 2417 3.0 945880314
## 5520 30 2418 3.0 945294912
## 5521 30 2420 2.0 945294912
## 5522 30 2424 4.0 945277094
## 5523 30 2427 1.0 945116330
## 5524 30 2432 4.0 945122740
## 5525 30 2433 4.0 946161981
## 5526 30 2435 2.0 945122356
## 5527 30 2454 4.0 945296019
## 5528 30 2457 4.0 945294437
## 5529 30 2463 4.0 945294641
## 5530 30 2468 2.0 945295214
## 5531 30 2470 4.0 945294764
## 5532 30 2474 5.0 945294381
## 5533 30 2490 5.0 945115345
## 5534 30 2505 3.0 945117685
## 5535 30 2513 1.0 945295052
## 5536 30 2517 2.0 945294858
## 5537 30 2518 3.0 945294764
## 5538 30 2520 4.0 945295543
## 5539 30 2521 3.0 968788273
## 5540 30 2523 3.0 945295466
## 5541 30 2524 4.0 945295543
## 5542 30 2528 3.0 945295543
## 5543 30 2529 4.0 945295703
## 5544 30 2530 2.0 945295588
## 5545 30 2531 2.0 945295543
## 5546 30 2532 3.0 945295543
## 5547 30 2533 2.0 994438963
## 5548 30 2535 4.0 945295543
## 5549 30 2539 4.0 945117600
## 5550 30 2551 2.0 945294641
## 5551 30 2561 4.0 945117751
## 5552 30 2571 3.0 945117284
## 5553 30 2574 3.0 945117855
## 5554 30 2577 3.0 986009301
## 5555 30 2598 4.0 945118444
## 5556 30 2599 5.0 945113775
## 5557 30 2605 4.0 945118833
## 5558 30 2611 5.0 949984748
## 5559 30 2616 3.0 945278292
## 5560 30 2617 3.0 1012830681
## 5561 30 2639 4.0 945294641
## 5562 30 2640 4.0 948167578
## 5563 30 2641 4.0 945294764
## 5564 30 2642 1.0 945295156
## 5565 30 2664 3.0 945115326
## 5566 30 2671 4.0 946161135
## 5567 30 2687 5.0 945118470
## 5568 30 2688 4.0 945118833
## 5569 30 2701 2.0 945117855
## 5570 30 2702 2.0 945114316
## 5571 30 2707 3.0 945117685
## 5572 30 2712 4.0 945118444
## 5573 30 2716 4.0 945294437
## 5574 30 2729 5.0 945114961
## 5575 30 2730 4.0 945295323
## 5576 30 2738 3.0 945116067
## 5577 30 2739 5.0 948166619
## 5578 30 2741 4.0 945294976
## 5579 30 2746 4.0 948141418
## 5580 30 2749 4.0 960917771
## 5581 30 2750 4.0 986738419
## 5582 30 2757 2.0 945294700
## 5583 30 2762 5.0 945118236
## 5584 30 2763 5.0 945118516
## 5585 30 2770 3.0 945118400
## 5586 30 2782 4.0 1002769837
## 5587 30 2787 4.0 945294764
## 5588 30 2790 3.0 945113125
## 5589 30 2791 2.0 945113981
## 5590 30 2793 3.0 945278645
## 5591 30 2794 3.0 945295156
## 5592 30 2795 4.0 945294437
## 5593 30 2797 5.0 951010736
## 5594 30 2802 4.0 945294912
## 5595 30 2803 4.0 945277046
## 5596 30 2804 4.0 945117941
## 5597 30 2805 4.0 947306097
## 5598 30 2819 4.0 948140044
## 5599 30 2829 4.0 945118685
## 5600 30 2841 4.0 945118578
## 5601 30 2851 2.0 945295588
## 5602 30 2852 5.0 945115018
## 5603 30 2856 4.0 945295797
## 5604 30 2858 5.0 945118093
## 5605 30 2861 4.0 961265714
## 5606 30 2871 4.0 945114365
## 5607 30 2875 4.0 945277277
## 5608 30 2881 4.0 945118754
## 5609 30 2883 4.0 945115242
## 5610 30 2890 4.0 945277046
## 5611 30 2908 4.0 960715669
## 5612 30 2912 4.0 1010373507
## 5613 30 2916 4.0 945116175
## 5614 30 2917 5.0 945113844
## 5615 30 2918 5.0 945115548
## 5616 30 2929 5.0 945123854
## 5617 30 2942 3.0 945295052
## 5618 30 2944 5.0 945295703
## 5619 30 2947 4.0 948140634
## 5620 30 2950 3.0 951162572
## 5621 30 2952 5.0 945115628
## 5622 30 2956 4.0 945294811
## 5623 30 2959 4.0 945118444
## 5624 30 2966 4.0 960658881
## 5625 30 2967 4.0 945296019
## 5626 30 2971 4.0 945115990
## 5627 30 2973 5.0 945123170
## 5628 30 2976 3.0 945118516
## 5629 30 2977 2.0 945118906
## 5630 30 2985 4.0 945294641
## 5631 30 2987 5.0 945294641
## 5632 30 2989 4.0 945294858
## 5633 30 2991 4.0 945295466
## 5634 30 3006 5.0 945113775
## 5635 30 3015 3.0 945295466
## 5636 30 3019 3.0 945123497
## 5637 30 3020 4.0 951008850
## 5638 30 3032 4.0 945295466
## 5639 30 3035 4.0 952885177
## 5640 30 3038 5.0 1014613565
## 5641 30 3039 4.0 945115864
## 5642 30 3044 3.0 945276778
## 5643 30 3053 4.0 948167081
## 5644 30 3063 2.0 945277311
## 5645 30 3068 5.0 945113694
## 5646 30 3071 4.0 954815132
## 5647 30 3072 4.0 948167200
## 5648 30 3074 4.0 948141681
## 5649 30 3081 3.0 945118516
## 5650 30 3082 3.0 1033398031
## 5651 30 3087 2.0 945294811
## 5652 30 3095 3.0 945113597
## 5653 30 3098 4.0 951008931
## 5654 30 3101 5.0 945115727
## 5655 30 3102 5.0 945294641
## 5656 30 3104 4.0 945115767
## 5657 30 3105 4.0 948140431
## 5658 30 3107 4.0 1039070693
## 5659 30 3108 2.0 945116137
## 5660 30 3111 5.0 945113057
## 5661 30 3114 5.0 948069950
## 5662 30 3120 4.0 951009217
## 5663 30 3130 3.0 945278929
## 5664 30 3138 3.0 986738761
## 5665 30 3141 4.0 952885578
## 5666 30 3144 3.0 945295766
## 5667 30 3147 4.0 946590784
## 5668 30 3152 4.0 945115767
## 5669 30 3156 4.0 968785158
## 5670 30 3160 5.0 949713340
## 5671 30 3167 4.0 960918160
## 5672 30 3169 3.0 945117941
## 5673 30 3173 3.0 948595947
## 5674 30 3174 4.0 996708747
## 5675 30 3176 4.0 949275887
## 5676 30 3185 3.0 950389052
## 5677 30 3197 4.0 951162481
## 5678 30 3198 5.0 948070040
## 5679 30 3204 4.0 951010161
## 5680 30 3206 4.0 951162533
## 5681 30 3210 4.0 951008022
## 5682 30 3218 1.0 952744452
## 5683 30 3219 4.0 948142236
## 5684 30 3244 4.0 948165577
## 5685 30 3246 5.0 948164324
## 5686 30 3247 3.0 951009046
## 5687 30 3249 4.0 948141904
## 5688 30 3252 4.0 952059599
## 5689 30 3253 4.0 948070151
## 5690 30 3255 4.0 948140634
## 5691 30 3256 4.0 952884934
## 5692 30 3257 3.0 960819766
## 5693 30 3258 3.0 960819374
## 5694 30 3263 4.0 948070151
## 5695 30 3269 3.0 951009046
## 5696 30 3274 4.0 951009251
## 5697 30 3286 2.0 952224346
## 5698 30 3296 4.0 954816853
## 5699 30 3298 5.0 951007880
## 5700 30 3308 4.0 951009217
## 5701 30 3316 2.0 994439603
## 5702 30 3334 4.0 960918606
## 5703 30 3354 4.0 953426082
## 5704 30 3358 5.0 986008589
## 5705 30 3359 4.0 954814831
## 5706 30 3360 5.0 952743252
## 5707 30 3361 4.0 952743110
## 5708 30 3362 5.0 952742834
## 5709 30 3363 4.0 952743008
## 5710 30 3370 4.0 960917657
## 5711 30 3385 2.0 954818846
## 5712 30 3386 4.0 952059512
## 5713 30 3391 3.0 968788547
## 5714 30 3394 3.0 954818365
## 5715 30 3395 4.0 986748223
## 5716 30 3418 4.0 952742981
## 5717 30 3420 4.0 960918160
## 5718 30 3421 4.0 1039070693
## 5719 30 3426 4.0 954816853
## 5720 30 3428 4.0 952744582
## 5721 30 3441 2.0 960917865
## 5722 30 3445 3.0 954818149
## 5723 30 3448 4.0 954816853
## 5724 30 3451 4.0 960918381
## 5725 30 3468 5.0 960918333
## 5726 30 3476 2.0 960819182
## 5727 30 3478 4.0 954816963
## 5728 30 3483 3.0 955926108
## 5729 30 3489 4.0 960819851
## 5730 30 3494 3.0 960918425
## 5731 30 3498 4.0 954816242
## 5732 30 3499 4.0 960818935
## 5733 30 3500 4.0 954818244
## 5734 30 3504 4.0 954814782
## 5735 30 3505 4.0 954815298
## 5736 30 3506 3.0 960918218
## 5737 30 3507 4.0 954816963
## 5738 30 3513 5.0 956970748
## 5739 30 3524 3.0 960917702
## 5740 30 3526 4.0 960917609
## 5741 30 3528 2.0 960819512
## 5742 30 3529 4.0 954818365
## 5743 30 3535 3.0 957052972
## 5744 30 3536 4.0 986011269
## 5745 30 3537 4.0 957566237
## 5746 30 3543 5.0 954814639
## 5747 30 3545 4.0 960918106
## 5748 30 3546 4.0 954815680
## 5749 30 3548 4.0 960918499
## 5750 30 3549 4.0 954815132
## 5751 30 3551 4.0 960918106
## 5752 30 3556 4.0 994279619
## 5753 30 3557 4.0 960819972
## 5754 30 3566 2.0 986008334
## 5755 30 3578 4.0 976597909
## 5756 30 3608 4.0 960917528
## 5757 30 3613 4.0 986738498
## 5758 30 3614 4.0 960819270
## 5759 30 3618 4.0 994279649
## 5760 30 3638 4.0 960918218
## 5761 30 3649 4.0 960917771
## 5762 30 3671 4.0 960918106
## 5763 30 3683 5.0 960917558
## 5764 30 3684 4.0 960917609
## 5765 30 3685 4.0 960917609
## 5766 30 3686 4.0 968787368
## 5767 30 3688 2.0 960917865
## 5768 30 3701 3.0 960917657
## 5769 30 3702 4.0 960918106
## 5770 30 3704 3.0 960917771
## 5771 30 3712 4.0 960818505
## 5772 30 3713 5.0 960818373
## 5773 30 3724 4.0 960918160
## 5774 30 3734 4.0 960917609
## 5775 30 3735 5.0 986739028
## 5776 30 3751 4.0 986008260
## 5777 30 3753 5.0 963756658
## 5778 30 3763 3.0 986745621
## 5779 30 3783 4.0 996418263
## 5780 30 3791 4.0 968787421
## 5781 30 3804 2.0 968788764
## 5782 30 3812 3.0 1039065693
## 5783 30 3826 4.0 965514373
## 5784 30 3834 4.0 986738865
## 5785 30 3844 4.0 968787159
## 5786 30 3852 4.0 994457359
## 5787 30 3859 4.0 994455829
## 5788 30 3873 4.0 968786587
## 5789 30 3897 4.0 1055788141
## 5790 30 3927 4.0 986739319
## 5791 30 3948 4.0 986008295
## 5792 30 3952 5.0 986008260
## 5793 30 3957 2.0 994438640
## 5794 30 3983 4.0 997488960
## 5795 30 3994 4.0 995850415
## 5796 30 3996 4.0 994279539
## 5797 30 4002 4.0 986738419
## 5798 30 4007 5.0 986738498
## 5799 30 4008 5.0 994457943
## 5800 30 4009 4.0 986738419
## 5801 30 4011 4.0 996950355
## 5802 30 4012 2.0 1015714238
## 5803 30 4014 5.0 1001961206
## 5804 30 4018 4.0 1017012514
## 5805 30 4022 4.0 1055788174
## 5806 30 4025 3.0 1009341085
## 5807 30 4027 5.0 994439405
## 5808 30 4029 4.0 994279539
## 5809 30 4033 5.0 980135286
## 5810 30 4034 5.0 980818214
## 5811 30 4037 5.0 986735749
## 5812 30 4039 3.0 986738661
## 5813 30 4041 4.0 986738559
## 5814 30 4055 4.0 994289229
## 5815 30 4060 4.0 986008739
## 5816 30 4062 4.0 986738559
## 5817 30 4063 3.0 994459012
## 5818 30 4085 4.0 986738419
## 5819 30 4086 4.0 986738419
## 5820 30 4088 5.0 1002769931
## 5821 30 4090 3.0 986738661
## 5822 30 4102 4.0 986738559
## 5823 30 4111 4.0 985829845
## 5824 30 4122 4.0 1039066670
## 5825 30 4126 4.0 986738613
## 5826 30 4128 4.0 986738559
## 5827 30 4132 2.0 986738761
## 5828 30 4146 1.0 1039070344
## 5829 30 4148 5.0 994457943
## 5830 30 4167 3.0 986008184
## 5831 30 4190 4.0 986739319
## 5832 30 4211 5.0 986008618
## 5833 30 4214 3.0 986738613
## 5834 30 4226 3.0 1055785445
## 5835 30 4228 3.0 986008121
## 5836 30 4239 5.0 990924261
## 5837 30 4246 4.0 993305342
## 5838 30 4262 4.0 994456359
## 5839 30 4263 5.0 994456480
## 5840 30 4276 4.0 994457484
## 5841 30 4280 4.0 994456957
## 5842 30 4291 3.0 994457827
## 5843 30 4292 4.0 990239709
## 5844 30 4306 5.0 1006149047
## 5845 30 4308 5.0 993305296
## 5846 30 4310 4.0 990924190
## 5847 30 4316 3.0 994458606
## 5848 30 4318 4.0 994458330
## 5849 30 4321 4.0 994457641
## 5850 30 4322 4.0 1039066094
## 5851 30 4326 5.0 990239742
## 5852 30 4333 3.0 1039066739
## 5853 30 4344 4.0 993305401
## 5854 30 4345 4.0 998109431
## 5855 30 4352 3.0 1039067403
## 5856 30 4354 4.0 1039069100
## 5857 30 4361 4.0 994456359
## 5858 30 4370 4.0 995253235
## 5859 30 4378 3.0 999310004
## 5860 30 4396 2.0 1039067528
## 5861 30 4406 5.0 994474005
## 5862 30 4409 2.0 1039069165
## 5863 30 4410 4.0 1039066447
## 5864 30 4447 4.0 1000003813
## 5865 30 4464 4.0 994458116
## 5866 30 4465 5.0 994456957
## 5867 30 4474 3.0 994457142
## 5868 30 4482 4.0 1039067222
## 5869 30 4486 4.0 994457417
## 5870 30 4487 3.0 1039067434
## 5871 30 4488 3.0 994440115
## 5872 30 4489 4.0 1039066779
## 5873 30 4491 2.0 1039066699
## 5874 30 4495 3.0 994457641
## 5875 30 4496 4.0 1002770429
## 5876 30 4498 4.0 1039066447
## 5877 30 4499 4.0 1009340636
## 5878 30 4503 4.0 1039066670
## 5879 30 4522 5.0 994456213
## 5880 30 4524 4.0 994458764
## 5881 30 4526 3.0 1039067528
## 5882 30 4528 2.0 1002770641
## 5883 30 4557 5.0 994457057
## 5884 30 4564 4.0 1039066538
## 5885 30 4570 4.0 1039066094
## 5886 30 4573 4.0 1039067284
## 5887 30 4608 4.0 994458546
## 5888 30 4615 1.0 994458003
## 5889 30 4617 5.0 994456213
## 5890 30 4621 3.0 994457962
## 5891 30 4627 2.0 996950674
## 5892 30 4628 5.0 994456636
## 5893 30 4629 2.0 996950674
## 5894 30 4639 4.0 997064028
## 5895 30 4643 4.0 996939545
## 5896 30 4661 4.0 996950608
## 5897 30 4681 3.0 996950542
## 5898 30 4700 4.0 1009339092
## 5899 30 4709 4.0 996950542
## 5900 30 4710 4.0 996950542
## 5901 30 4713 3.0 996950542
## 5902 30 4714 2.0 996950542
## 5903 30 4728 3.0 1014533110
## 5904 30 4733 4.0 1021348160
## 5905 30 4751 4.0 1039066923
## 5906 30 4776 4.0 1039070065
## 5907 30 4787 5.0 1002769606
## 5908 30 4803 4.0 1002769606
## 5909 30 4815 4.0 1001732228
## 5910 30 4830 4.0 1003621148
## 5911 30 4832 3.0 1002769561
## 5912 30 4835 5.0 1002769561
## 5913 30 4881 4.0 1030333611
## 5914 30 4886 4.0 1004923866
## 5915 30 4889 4.0 1006148969
## 5916 30 4890 3.0 1006492881
## 5917 30 4896 4.0 1009935138
## 5918 30 4898 4.0 1055788107
## 5919 30 4929 3.0 1006492955
## 5920 30 4932 4.0 1006492955
## 5921 30 4941 2.0 1006492955
## 5922 30 4951 3.0 1009340636
## 5923 30 4954 4.0 1008086617
## 5924 30 4960 4.0 1020575100
## 5925 30 4963 5.0 1009695904
## 5926 30 4971 4.0 1009340636
## 5927 30 4978 5.0 1017556925
## 5928 30 4979 4.0 1012097954
## 5929 30 4993 3.0 1010289168
## 5930 30 4995 5.0 1019362987
## 5931 30 5015 4.0 1015738983
## 5932 30 5027 3.0 1011328056
## 5933 30 5043 3.0 1009937419
## 5934 30 5049 4.0 1011328004
## 5935 30 5060 3.0 945114153
## 5936 30 5061 3.0 1011328004
## 5937 30 5064 5.0 1012169711
## 5938 30 5111 4.0 1014004783
## 5939 30 5120 4.0 1055791286
## 5940 30 5122 4.0 1014004783
## 5941 30 5125 2.0 1012830712
## 5942 30 5127 3.0 1016419671
## 5943 30 5152 5.0 1020056483
## 5944 30 5161 4.0 1014004730
## 5945 30 5172 4.0 1030933052
## 5946 30 5187 4.0 1015205545
## 5947 30 5193 3.0 1014613681
## 5948 30 5198 4.0 1014613681
## 5949 30 5208 4.0 1014613681
## 5950 30 5214 3.0 1039065866
## 5951 30 5237 4.0 1015713629
## 5952 30 5247 3.0 1015205474
## 5953 30 5250 4.0 1015205474
## 5954 30 5269 1.0 1036123436
## 5955 30 5276 4.0 1019363280
## 5956 30 5277 2.0 1019363280
## 5957 30 5293 5.0 1033397995
## 5958 30 5297 4.0 1037686951
## 5959 30 5299 5.0 1031799237
## 5960 30 5303 3.0 1019363219
## 5961 30 5307 3.0 1019363219
## 5962 30 5308 4.0 1020056776
## 5963 30 5309 3.0 1020056776
## 5964 30 5334 4.0 1019363168
## 5965 30 5335 2.0 1019363168
## 5966 30 5344 4.0 1019363168
## 5967 30 5359 4.0 1020056711
## 5968 30 5364 4.0 1060013900
## 5969 30 5366 1.0 1020056711
## 5970 30 5382 2.0 1021348305
## 5971 30 5388 4.0 1022478671
## 5972 30 5391 4.0 1029558644
## 5973 30 5400 4.0 1023517288
## 5974 30 5445 4.0 1024891611
## 5975 30 5452 2.0 1024891677
## 5976 30 5464 5.0 1027051203
## 5977 30 5471 3.0 1027051268
## 5978 30 5502 3.0 1046105730
## 5979 30 5506 4.0 1030232314
## 5980 30 5534 4.0 1029516219
## 5981 30 5544 4.0 1029516219
## 5982 30 5548 4.0 1029516219
## 5983 30 5561 4.0 1030232487
## 5984 30 5564 3.0 1035175467
## 5985 30 5581 3.0 1031799315
## 5986 30 5620 4.0 1033944353
## 5987 30 5630 5.0 1033879863
## 5988 30 5655 3.0 1039067403
## 5989 30 5670 4.0 1060013921
## 5990 30 5679 1.0 1036367646
## 5991 30 5680 4.0 1036984289
## 5992 30 5689 4.0 1033880299
## 5993 30 5694 2.0 1033880299
## 5994 30 5696 4.0 1033880299
## 5995 30 5699 4.0 1033880299
## 5996 30 5703 3.0 1033880263
## 5997 30 5705 4.0 1033880263
## 5998 30 5707 4.0 1033880263
## 5999 30 5712 4.0 1039066538
## 6000 30 5723 4.0 1033880263
## 6001 30 5729 3.0 1039067617
## 6002 30 5732 4.0 1033880263
## 6003 30 5742 4.0 1033880263
## 6004 30 5745 4.0 1033879938
## 6005 30 5773 3.0 1035175594
## 6006 30 5812 5.0 1042494862
## 6007 30 5843 4.0 1036367914
## 6008 30 5846 4.0 1036367914
## 6009 30 5847 5.0 1036367914
## 6010 30 5854 4.0 1039070904
## 6011 30 5857 1.0 1036367914
## 6012 30 5859 2.0 1036367914
## 6013 30 5869 4.0 1036367914
## 6014 30 5900 3.5 1060013944
## 6015 30 5902 4.0 1045502600
## 6016 30 5923 3.0 1038203534
## 6017 30 5926 3.0 1038203534
## 6018 30 5927 4.0 1038203534
## 6019 30 5933 4.0 1038203534
## 6020 30 5938 4.0 1038203534
## 6021 30 5940 3.0 1039066739
## 6022 30 5945 4.0 1046106724
## 6023 30 5956 5.0 1041284839
## 6024 30 5959 3.0 1060736279
## 6025 30 5960 5.0 1040659215
## 6026 30 5961 4.0 1041284839
## 6027 30 5962 3.0 1040659215
## 6028 30 5968 4.0 1041284839
## 6029 30 5989 5.0 1041284703
## 6030 30 5991 5.0 1043686934
## 6031 30 6001 5.0 1040659119
## 6032 30 6027 4.0 1042495022
## 6033 30 6084 3.0 1043687080
## 6034 30 6096 3.0 1043687080
## 6035 30 6101 2.0 1043687080
## 6036 30 6103 2.0 1043687080
## 6037 30 6115 3.0 1043687014
## 6038 30 6127 4.0 1043687015
## 6039 30 6180 3.0 1055798065
## 6040 30 6186 2.0 1046106675
## 6041 30 6212 3.0 1049142071
## 6042 30 6233 3.0 1048704049
## 6043 30 6234 3.0 1048704049
## 6044 30 6237 4.0 1055798009
## 6045 30 6238 4.0 1049142167
## 6046 30 6240 3.0 1049142157
## 6047 30 6263 3.0 1049142105
## 6048 30 6281 4.0 1049749056
## 6049 30 6308 4.0 1049749117
## 6050 30 6318 3.0 1049749117
## 6051 30 6345 4.0 1055797910
## 6052 30 6413 3.5 1055797818
## 6053 30 6419 5.0 1055788249
## 6054 30 6422 4.0 1055797845
## 6055 30 6436 5.0 1055788276
## 6056 30 6440 4.0 1055797723
## 6057 30 6452 5.0 1055788246
## 6058 30 6473 4.0 1055797789
## 6059 30 6565 4.5 1060013871
## 6060 31 31 4.0 1273541953
## 6061 31 32 4.5 1273720546
## 6062 31 50 3.5 1273633559
## 6063 31 111 4.5 1273714533
## 6064 31 260 4.0 1273720416
## 6065 31 296 4.5 1273714417
## 6066 31 318 4.0 1273542992
## 6067 31 372 3.5 1273541973
## 6068 31 379 4.0 1273542073
## 6069 31 527 5.0 1273543009
## 6070 31 541 4.0 1273720299
## 6071 31 778 3.5 1273720368
## 6072 31 858 4.5 1273720163
## 6073 31 904 4.0 1273714421
## 6074 31 1089 4.5 1273714480
## 6075 31 1091 3.0 1273542081
## 6076 31 1186 2.0 1273542019
## 6077 31 1197 4.5 1273542870
## 6078 31 1206 4.5 1273720435
## 6079 31 1208 4.5 1273542817
## 6080 31 1221 4.5 1273714380
## 6081 31 1234 4.5 1273714490
## 6082 31 1299 4.0 1273542012
## 6083 31 1378 4.0 1273542028
## 6084 31 1416 3.0 1273542066
## 6085 31 1957 4.5 1273542033
## 6086 31 1967 4.5 1273541999
## 6087 31 2028 4.5 1273542882
## 6088 31 2248 4.0 1273541967
## 6089 31 2329 4.5 1273542808
## 6090 31 2502 4.0 1273720582
## 6091 31 2571 4.5 1273720348
## 6092 31 2692 4.5 1273542879
## 6093 31 2959 5.0 1273542969
## 6094 31 2997 4.5 1273720551
## 6095 31 3072 3.0 1273541964
## 6096 31 3087 3.5 1273542085
## 6097 31 3698 4.5 1273542046
## 6098 31 3755 4.0 1273541939
## 6099 31 3897 4.0 1274150193
## 6100 31 3911 4.0 1273541943
## 6101 31 4886 4.0 1274150314
## 6102 31 4979 3.5 1274150321
## 6103 31 4993 4.5 1273720397
## 6104 31 5418 4.5 1274150200
## 6105 31 5952 4.5 1274149537
## 6106 31 5995 3.5 1273553986
## 6107 31 6539 3.5 1274150289
## 6108 31 6711 4.5 1274150179
## 6109 31 7153 4.5 1273720461
## 6110 31 7361 5.0 1273542961
## 6111 31 8961 4.0 1274150085
## 6112 31 33154 4.0 1274149939
## 6113 31 33794 4.5 1274149910
## 6114 31 44191 4.0 1274150249
## 6115 31 44195 4.0 1273720591
## 6116 31 48394 4.5 1274149580
## 6117 31 50872 4.5 1274150130
## 6118 31 54503 4.0 1274157016
## 6119 31 55280 4.5 1274150341
## 6120 31 55820 4.0 1273720255
## 6121 31 58559 5.0 1273542984
## 6122 31 59315 5.0 1274150005
## 6123 31 64614 4.5 1273720384
## 6124 31 72226 4.0 1273720329
## 6125 31 72998 4.0 1274150047
## 6126 31 74789 4.5 1273542596
## 6127 31 76093 3.5 1273720454
## 6128 31 76251 5.0 1273897820
## 6129 32 2 4.0 834828285
## 6130 32 19 3.0 834828185
## 6131 32 31 4.0 834828440
## 6132 32 44 3.0 834828337
## 6133 32 110 5.0 834828155
## 6134 32 150 5.0 834828059
## 6135 32 153 4.0 834828085
## 6136 32 158 3.0 834828318
## 6137 32 165 4.0 834828085
## 6138 32 168 3.0 834828318
## 6139 32 173 3.0 834828227
## 6140 32 204 4.0 834828285
## 6141 32 208 4.0 834828137
## 6142 32 225 2.0 834828168
## 6143 32 231 5.0 834828108
## 6144 32 252 3.0 834828268
## 6145 32 261 4.0 834828302
## 6146 32 266 3.0 834828185
## 6147 32 292 5.0 834828123
## 6148 32 296 2.0 834828059
## 6149 32 300 3.0 834828155
## 6150 32 316 3.0 834828108
## 6151 32 317 3.0 834828168
## 6152 32 333 3.0 834828337
## 6153 32 337 4.0 834828248
## 6154 32 344 4.0 834828085
## 6155 32 349 5.0 834828084
## 6156 32 350 3.0 834828337
## 6157 32 356 5.0 834828248
## 6158 32 364 3.0 834828227
## 6159 32 367 4.0 834828248
## 6160 32 377 4.0 834828361
## 6161 32 380 3.0 834828059
## 6162 32 410 3.0 834828155
## 6163 32 420 2.0 834828185
## 6164 32 428 3.0 834828632
## 6165 32 432 3.0 834828199
## 6166 32 434 3.0 834828123
## 6167 32 440 4.0 834828302
## 6168 32 442 4.0 834828361
## 6169 32 457 5.0 834828155
## 6170 32 480 5.0 834828286
## 6171 32 553 5.0 834828248
## 6172 32 588 3.0 834828085
## 6173 32 589 5.0 834828337
## 6174 32 590 5.0 834828059
## 6175 32 592 4.0 834828059
## 6176 32 595 2.0 834828108
## 6177 33 19 3.0 1032769612
## 6178 33 88 3.0 1032678367
## 6179 33 157 1.0 1033543456
## 6180 33 231 3.0 1032769595
## 6181 33 344 4.0 1032769612
## 6182 33 377 2.0 1032676906
## 6183 33 532 4.0 1032768899
## 6184 33 562 4.0 1032859878
## 6185 33 832 4.0 1033604138
## 6186 33 851 1.0 1032678174
## 6187 33 908 4.0 1032676906
## 6188 33 1060 4.0 1032859767
## 6189 33 1091 4.0 1032772901
## 6190 33 1120 4.0 1032766375
## 6191 33 1186 5.0 1032679370
## 6192 33 1196 2.0 1032679359
## 6193 33 1197 4.0 1032679865
## 6194 33 1198 4.0 1032679359
## 6195 33 1230 4.0 1032676887
## 6196 33 1258 5.0 1032679331
## 6197 33 1259 4.0 1032679449
## 6198 33 1285 4.0 1032679577
## 6199 33 1291 4.0 1032679682
## 6200 33 1347 2.0 1032679990
## 6201 33 1359 3.0 1032859220
## 6202 33 1394 2.0 1032679469
## 6203 33 1407 4.0 1032769282
## 6204 33 1717 3.0 1032769282
## 6205 33 1760 1.0 1032859270
## 6206 33 1784 4.0 1033604541
## 6207 33 1967 2.0 1032679534
## 6208 33 1974 3.0 1032680083
## 6209 33 1982 4.0 1032766234
## 6210 33 1983 4.0 1032766234
## 6211 33 1984 1.0 1032766234
## 6212 33 1994 5.0 1032679707
## 6213 33 2005 4.0 1032679843
## 6214 33 2006 4.0 1032678268
## 6215 33 2060 3.0 1032860971
## 6216 33 2064 5.0 1032679359
## 6217 33 2088 2.0 1032680420
## 6218 33 2107 2.0 1032676887
## 6219 33 2145 4.0 1032678268
## 6220 33 2170 2.0 1032860951
## 6221 33 2193 2.0 1032680004
## 6222 33 2329 4.0 1032766347
## 6223 33 2371 4.0 1032679978
## 6224 33 2395 3.0 1033192223
## 6225 33 2470 4.0 1032680420
## 6226 33 2502 5.0 1032858907
## 6227 33 2507 1.0 1032766463
## 6228 33 2541 4.0 1032766168
## 6229 33 2599 4.0 1032859343
## 6230 33 2617 2.0 1032859504
## 6231 33 2689 1.0 1032766852
## 6232 33 2706 3.0 1032858995
## 6233 33 2787 4.0 1032680233
## 6234 33 2793 2.0 1032768775
## 6235 33 2795 4.0 1032859847
## 6236 33 2888 2.0 1032859012
## 6237 33 2891 1.0 1032859119
## 6238 33 2917 4.0 1032679534
## 6239 33 2918 4.0 1032679449
## 6240 33 2926 3.0 1032679887
## 6241 33 2959 4.0 1032678153
## 6242 33 2997 4.0 1033604225
## 6243 33 3007 5.0 1032859587
## 6244 33 3157 2.0 1032859389
## 6245 33 3273 2.0 1032769282
## 6246 33 3298 4.0 1032677550
## 6247 33 3317 2.0 1032859878
## 6248 33 3408 3.0 1032677405
## 6249 33 3481 3.0 1032769523
## 6250 33 3552 3.0 1032769002
## 6251 33 3566 2.0 1032677594
## 6252 33 3568 3.0 1032677740
## 6253 33 3608 4.0 1032679682
## 6254 33 3617 4.0 1034930027
## 6255 33 3747 2.0 1032677346
## 6256 33 3752 2.0 1034930090
## 6257 33 3785 3.0 1032769237
## 6258 33 3794 4.0 1032677485
## 6259 33 3852 4.0 1032859750
## 6260 33 3858 3.0 1032859050
## 6261 33 3865 2.0 1032766929
## 6262 33 3868 4.0 1032860933
## 6263 33 3893 2.0 1032769543
## 6264 33 3897 3.0 1032859587
## 6265 33 3910 2.0 1032677362
## 6266 33 3911 5.0 1032769506
## 6267 33 4016 4.0 1032769543
## 6268 33 4017 4.0 1032677266
## 6269 33 4027 2.0 1032676888
## 6270 33 4214 4.0 1032680097
## 6271 33 4247 3.0 1034930190
## 6272 33 4248 1.0 1032859254
## 6273 33 4251 4.0 1032677507
## 6274 33 4333 4.0 1032679936
## 6275 33 4340 4.0 1034930133
## 6276 33 4378 3.0 1032677333
## 6277 33 4388 2.0 1032769250
## 6278 33 4447 2.0 1033604248
## 6279 33 4450 5.0 1032677313
## 6280 33 4452 2.0 1034929996
## 6281 33 4483 5.0 1032676888
## 6282 33 4488 2.0 1032679865
## 6283 33 4502 2.0 1032678282
## 6284 33 4509 4.0 1032680097
## 6285 33 4558 3.0 1032680212
## 6286 33 4621 4.0 1032680375
## 6287 33 4622 3.0 1032767204
## 6288 33 4641 3.0 1033604322
## 6289 33 4643 2.0 1032677637
## 6290 33 4649 4.0 1032859151
## 6291 33 4652 4.0 1032676792
## 6292 33 4662 4.0 1032676888
## 6293 33 4678 3.0 1032678352
## 6294 33 4679 5.0 1032679978
## 6295 33 4718 4.0 1032768802
## 6296 33 4728 3.0 1034930125
## 6297 33 4809 3.0 1032679488
## 6298 33 4878 4.0 1032677282
## 6299 33 4890 4.0 1032678268
## 6300 33 4898 4.0 1034930060
## 6301 33 4929 4.0 1032680332
## 6302 33 4956 3.0 1032858930
## 6303 33 4963 3.0 1032769523
## 6304 33 4974 3.0 1032858979
## 6305 33 4975 4.0 1032677541
## 6306 33 4988 3.0 1032859878
## 6307 33 5015 4.0 1032676999
## 6308 33 5074 4.0 1032677012
## 6309 33 5106 2.0 1032678432
## 6310 33 5282 4.0 1032678324
## 6311 33 5339 4.0 1035340620
## 6312 33 5483 4.0 1032677082
## 6313 33 5669 4.0 1037009003
## 6314 33 5673 5.0 1037008981
## 6315 34 6 3.0 973747402
## 6316 34 21 4.0 973748254
## 6317 34 32 5.0 973747284
## 6318 34 39 3.0 973747340
## 6319 34 47 5.0 973747188
## 6320 34 50 5.0 973748491
## 6321 34 70 4.0 973746231
## 6322 34 110 4.0 973747427
## 6323 34 150 4.0 973746527
## 6324 34 198 3.0 973747709
## 6325 34 253 4.0 973747949
## 6326 34 260 4.0 973747559
## 6327 34 288 4.0 973746243
## 6328 34 293 4.0 973748543
## 6329 34 296 5.0 973746450
## 6330 34 316 4.0 973747797
## 6331 34 337 5.0 973746864
## 6332 34 377 3.0 973748307
## 6333 34 407 3.0 973747985
## 6334 34 442 3.0 973747797
## 6335 34 482 5.0 973747271
## 6336 34 527 4.0 973746450
## 6337 34 541 4.0 973747459
## 6338 34 555 5.0 973746273
## 6339 34 556 4.0 973747188
## 6340 34 562 4.0 973747258
## 6341 34 581 4.0 973747385
## 6342 34 589 5.0 973747591
## 6343 34 593 4.0 973746494
## 6344 34 595 4.0 973746365
## 6345 34 599 3.0 973748336
## 6346 34 608 4.0 973746527
## 6347 34 610 4.0 973747740
## 6348 34 678 5.0 973746450
## 6349 34 724 4.0 973747985
## 6350 34 750 4.0 973746814
## 6351 34 858 4.0 973746463
## 6352 34 912 5.0 973746569
## 6353 34 913 5.0 973747459
## 6354 34 919 3.0 973748587
## 6355 34 923 5.0 973748034
## 6356 34 924 5.0 973747559
## 6357 34 940 5.0 973748614
## 6358 34 969 4.0 973748413
## 6359 34 1036 4.0 973748196
## 6360 34 1059 5.0 973747315
## 6361 34 1089 4.0 973748508
## 6362 34 1090 4.0 973746543
## 6363 34 1092 4.0 973749001
## 6364 34 1097 3.0 973747591
## 6365 34 1103 4.0 973748111
## 6366 34 1104 4.0 973746681
## 6367 34 1120 3.0 973747156
## 6368 34 1129 4.0 973747643
## 6369 34 1130 3.0 973747911
## 6370 34 1147 4.0 973747105
## 6371 34 1178 5.0 973746655
## 6372 34 1179 1.0 973747354
## 6373 34 1193 4.0 973746231
## 6374 34 1196 3.0 973748587
## 6375 34 1198 4.0 973748163
## 6376 34 1200 4.0 973748196
## 6377 34 1201 4.0 973748228
## 6378 34 1204 5.0 973748401
## 6379 34 1206 5.0 973747591
## 6380 34 1207 5.0 973746527
## 6381 34 1208 5.0 973748045
## 6382 34 1213 5.0 973747188
## 6383 34 1214 5.0 973747848
## 6384 34 1215 3.0 973747591
## 6385 34 1219 5.0 973747848
## 6386 34 1220 3.0 973748787
## 6387 34 1221 4.0 973748676
## 6388 34 1222 5.0 973748069
## 6389 34 1231 4.0 973746476
## 6390 34 1234 3.0 973747017
## 6391 34 1240 5.0 973747559
## 6392 34 1247 5.0 973748112
## 6393 34 1250 4.0 973746543
## 6394 34 1252 4.0 973747459
## 6395 34 1253 4.0 973746707
## 6396 34 1254 5.0 973748587
## 6397 34 1258 4.0 973747877
## 6398 34 1259 4.0 973746961
## 6399 34 1262 4.0 973748587
## 6400 34 1263 4.0 973748427
## 6401 34 1267 5.0 973747459
## 6402 34 1270 3.0 973747017
## 6403 34 1272 4.0 973748427
## 6404 34 1276 5.0 973746569
## 6405 34 1287 5.0 973748228
## 6406 34 1298 3.0 973748443
## 6407 34 1299 4.0 973746569
## 6408 34 1320 3.0 973747797
## 6409 34 1321 4.0 973747895
## 6410 34 1339 4.0 973747964
## 6411 34 1340 3.0 973747877
## 6412 34 1358 5.0 973746613
## 6413 34 1387 3.0 973748196
## 6414 34 1396 4.0 973747658
## 6415 34 1407 4.0 973747924
## 6416 34 1464 1.0 973748964
## 6417 34 1527 3.0 973747685
## 6418 34 1580 3.0 973747621
## 6419 34 1589 4.0 973748979
## 6420 34 1597 3.0 973749013
## 6421 34 1610 4.0 973748228
## 6422 34 1617 4.0 973746214
## 6423 34 1645 3.0 973748979
## 6424 34 1653 4.0 973747685
## 6425 34 1676 3.0 973747777
## 6426 34 1690 3.0 973747797
## 6427 34 1754 3.0 973749026
## 6428 34 1923 4.0 973747327
## 6429 34 1931 5.0 973748614
## 6430 34 1952 2.0 973746627
## 6431 34 1954 3.0 973748277
## 6432 34 1965 3.0 973747591
## 6433 34 1997 5.0 973747911
## 6434 34 2009 4.0 973747643
## 6435 34 2028 4.0 973746494
## 6436 34 2064 5.0 973746961
## 6437 34 2076 5.0 973748919
## 6438 34 2105 4.0 973747765
## 6439 34 2288 5.0 973747609
## 6440 34 2289 5.0 973746929
## 6441 34 2311 4.0 973747752
## 6442 34 2338 2.0 973749049
## 6443 34 2353 3.0 973748307
## 6444 34 2366 4.0 973747877
## 6445 34 2396 4.0 973747245
## 6446 34 2407 3.0 973747685
## 6447 34 2527 4.0 973747697
## 6448 34 2528 3.0 973747723
## 6449 34 2529 4.0 973747643
## 6450 34 2553 3.0 973747609
## 6451 34 2571 5.0 973747559
## 6452 34 2599 4.0 973746995
## 6453 34 2644 4.0 973747877
## 6454 34 2648 4.0 973747848
## 6455 34 2657 4.0 973747723
## 6456 34 2662 4.0 973747591
## 6457 34 2716 2.0 973747877
## 6458 34 2762 4.0 973748508
## 6459 34 2793 3.0 973747985
## 6460 34 2797 3.0 973748713
## 6461 34 2858 4.0 973746365
## 6462 34 2863 4.0 973748787
## 6463 34 2871 4.0 973748523
## 6464 34 2901 4.0 973747740
## 6465 34 2908 5.0 973746655
## 6466 34 2916 4.0 973747658
## 6467 34 2921 4.0 973748350
## 6468 34 2944 3.0 973748196
## 6469 34 2949 3.0 973748228
## 6470 34 2951 4.0 973748254
## 6471 34 2971 4.0 973748809
## 6472 34 2985 3.0 973747643
## 6473 34 2987 4.0 973748598
## 6474 34 3032 4.0 973747740
## 6475 34 3035 5.0 973746668
## 6476 34 3062 4.0 973748228
## 6477 34 3066 3.0 973746214
## 6478 34 3074 4.0 973748361
## 6479 34 3168 4.0 973748614
## 6480 34 3196 5.0 973746655
## 6481 34 3256 3.0 973747385
## 6482 34 3286 1.0 973746896
## 6483 34 3361 4.0 973746974
## 6484 34 3386 4.0 973748941
## 6485 34 3418 3.0 973748196
## 6486 34 3467 4.0 973748336
## 6487 34 3468 4.0 973746707
## 6488 34 3471 4.0 973747591
## 6489 34 3504 5.0 973746668
## 6490 34 3508 4.0 973748350
## 6491 34 3527 4.0 973747658
## 6492 34 3551 4.0 973748523
## 6493 34 3634 5.0 973746734
## 6494 34 3702 5.0 973747591
## 6495 34 3703 4.0 973747539
## 6496 34 3706 4.0 973747482
## 6497 34 3727 4.0 973746760
## 6498 34 3811 5.0 973746597
## 6499 34 3917 4.0 973747938
## 6500 34 3927 4.0 973747685
## 6501 34 5060 3.0 973747017
## 6502 35 24 2.5 1174450075
## 6503 35 230 1.5 1174450069
## 6504 35 247 3.0 1174450074
## 6505 35 468 4.0 1174450073
## 6506 35 724 2.0 1174450068
## 6507 35 838 4.0 1174450072
## 6508 35 914 1.5 1174450057
## 6509 35 1029 1.5 1174450070
## 6510 35 1047 1.5 1174450053
## 6511 35 1188 0.5 1174450079
## 6512 35 1231 1.5 1174450076
## 6513 35 1249 2.5 1174450052
## 6514 35 1267 1.0 1174450054
## 6515 35 2105 3.5 1174450064
## 6516 35 2278 4.0 1174450063
## 6517 35 2289 3.5 1174450061
## 6518 35 2336 2.0 1174450051
## 6519 35 2968 0.5 1174450080
## 6520 35 3072 5.0 1174450056
## 6521 35 3755 2.5 1174450059
## 6522 36 6 3.0 847057147
## 6523 36 16 3.0 847057223
## 6524 36 18 4.0 847058210
## 6525 36 21 3.0 847056854
## 6526 36 25 4.0 847057119
## 6527 36 31 3.0 847057202
## 6528 36 32 5.0 847056901
## 6529 36 36 4.0 853005249
## 6530 36 41 3.0 847057696
## 6531 36 45 4.0 847057256
## 6532 36 50 4.0 847056901
## 6533 36 52 3.0 847057520
## 6534 36 55 4.0 853005393
## 6535 36 57 4.0 847057727
## 6536 36 58 5.0 847057363
## 6537 36 68 4.0 847058235
## 6538 36 111 4.0 847057202
## 6539 36 144 4.0 847057626
## 6540 36 145 3.0 847057301
## 6541 36 147 3.0 847057765
## 6542 36 151 3.0 847058110
## 6543 36 165 3.0 847056547
## 6544 36 216 3.0 847057385
## 6545 36 223 5.0 847057223
## 6546 36 232 5.0 847057504
## 6547 36 236 3.0 847057018
## 6548 36 242 4.0 847058186
## 6549 36 246 4.0 847057256
## 6550 36 248 2.0 847057444
## 6551 36 249 4.0 847057471
## 6552 36 252 3.0 847057061
## 6553 36 253 4.0 847056783
## 6554 36 256 3.0 847057136
## 6555 36 260 5.0 847057564
## 6556 36 261 4.0 847057120
## 6557 36 265 5.0 847057136
## 6558 36 272 4.0 847057240
## 6559 36 273 3.0 847057240
## 6560 36 277 3.0 847057202
## 6561 36 282 3.0 847056984
## 6562 36 288 4.0 847056803
## 6563 36 293 5.0 847057094
## 6564 36 296 4.0 847056510
## 6565 36 300 4.0 847056819
## 6566 36 306 5.0 847057482
## 6567 36 307 5.0 847057520
## 6568 36 308 5.0 847057594
## 6569 36 312 3.0 847057827
## 6570 36 315 5.0 847056984
## 6571 36 318 4.0 847056636
## 6572 36 321 5.0 847058110
## 6573 36 334 4.0 847058173
## 6574 36 345 4.0 847057385
## 6575 36 348 3.0 847057278
## 6576 36 350 3.0 847056948
## 6577 36 356 3.0 847056636
## 6578 36 357 4.0 847056901
## 6579 36 362 4.0 847057314
## 6580 36 368 3.0 847057119
## 6581 36 372 3.0 847057444
## 6582 36 381 3.0 847057328
## 6583 36 382 3.0 847057520
## 6584 36 412 5.0 847057626
## 6585 36 420 3.0 847056926
## 6586 36 431 4.0 847057363
## 6587 36 432 3.0 847056948
## 6588 36 434 3.0 847056636
## 6589 36 440 3.0 847056926
## 6590 36 454 3.0 847056783
## 6591 36 457 3.0 847056547
## 6592 36 469 4.0 847058159
## 6593 36 475 4.0 847057363
## 6594 36 480 3.0 847056636
## 6595 36 481 4.0 847057626
## 6596 36 491 3.0 847057385
## 6597 36 508 4.0 847057047
## 6598 36 509 4.0 847057018
## 6599 36 515 3.0 847057179
## 6600 36 521 4.0 847057776
## 6601 36 524 3.0 847057575
## 6602 36 527 5.0 847056901
## 6603 36 531 4.0 847057444
## 6604 36 532 3.0 847057415
## 6605 36 534 4.0 847057552
## 6606 36 539 3.0 847056854
## 6607 36 540 3.0 847057363
## 6608 36 543 3.0 847057328
## 6609 36 551 3.0 847057094
## 6610 36 586 2.0 847056854
## 6611 36 587 3.0 847056854
## 6612 36 588 3.0 847056547
## 6613 36 590 3.0 847056510
## 6614 36 592 3.0 847056510
## 6615 36 593 4.0 847056670
## 6616 36 597 3.0 847056819
## 6617 36 640 3.0 853005492
## 6618 36 720 4.0 847057827
## 6619 36 778 5.0 847058362
## 6620 36 788 2.0 853005800
## 6621 36 838 4.0 847058174
## 6622 36 1036 3.0 847057696
## 6623 36 1150 3.0 847057928
## 6624 36 1356 4.0 853005393
## 6625 36 1367 3.0 853005621
## 6626 37 1 4.0 981308121
## 6627 37 364 5.0 981308154
## 6628 37 595 5.0 981308140
## 6629 37 902 2.0 981308246
## 6630 37 912 5.0 981308213
## 6631 37 920 5.0 981308224
## 6632 37 940 3.0 981308294
## 6633 37 1193 5.0 981304357
## 6634 37 1196 3.0 981308309
## 6635 37 1246 5.0 981304357
## 6636 37 1307 5.0 981308234
## 6637 37 1907 5.0 981308177
## 6638 37 2028 4.0 981304316
## 6639 37 2081 5.0 981308154
## 6640 37 2085 4.0 981308140
## 6641 37 2273 3.0 981304291
## 6642 37 2858 4.0 981308009
## 6643 37 3357 4.0 981304887
## 6644 37 3481 4.0 981307942
## 6645 37 3538 4.0 981307942
## 6646 37 3564 4.0 981304357
## 6647 37 3751 3.0 981307942
## 6648 37 3948 4.0 981307968
## 6649 37 3977 3.0 981307838
## 6650 37 3996 5.0 981304524
## 6651 37 4011 3.0 981304524
## 6652 37 4014 4.0 981304557
## 6653 37 4015 3.0 981304635
## 6654 37 4018 5.0 981304606
## 6655 37 4034 5.0 981307823
## 6656 37 4054 3.0 981307823
## 6657 37 4069 4.0 981304524
## 6658 38 16 4.5 1389771630
## 6659 38 47 4.0 1416075134
## 6660 38 110 4.0 1390332781
## 6661 38 293 4.5 1389806635
## 6662 38 296 5.0 1389730389
## 6663 38 306 4.5 1389721577
## 6664 38 318 4.5 1389722765
## 6665 38 356 4.5 1390465407
## 6666 38 364 4.0 1389806534
## 6667 38 365 4.5 1389721943
## 6668 38 367 3.0 1416075151
## 6669 38 527 4.5 1392361524
## 6670 38 588 4.0 1389806512
## 6671 38 590 3.5 1389806500
## 6672 38 593 4.5 1392361495
## 6673 38 778 4.0 1389806694
## 6674 38 838 4.5 1389721548
## 6675 38 858 4.5 1389722583
## 6676 38 926 4.5 1416074954
## 6677 38 1078 4.5 1389721750
## 6678 38 1080 4.0 1389806738
## 6679 38 1136 4.0 1389722713
## 6680 38 1172 4.5 1389867840
## 6681 38 1213 4.0 1416075195
## 6682 38 1221 4.5 1389722598
## 6683 38 1244 4.0 1389721555
## 6684 38 1289 4.5 1389723752
## 6685 38 1682 4.0 1416075214
## 6686 38 1704 3.5 1416075186
## 6687 38 2000 3.0 1416075336
## 6688 38 2025 3.0 1389721837
## 6689 38 2068 5.0 1389722661
## 6690 38 2075 4.5 1389722398
## 6691 38 2092 3.5 1389721935
## 6692 38 2131 4.5 1389771994
## 6693 38 2194 3.0 1416075365
## 6694 38 2324 4.5 1389723398
## 6695 38 2571 4.0 1416075122
## 6696 38 2641 4.0 1389721528
## 6697 38 2686 4.0 1389721611
## 6698 38 2750 4.0 1389721880
## 6699 38 2858 4.0 1389722718
## 6700 38 2959 4.0 1389722656
## 6701 38 3328 5.0 1389721692
## 6702 38 3578 4.5 1416075166
## 6703 38 3677 5.0 1389723727
## 6704 38 4114 5.0 1389772593
## 6705 38 4226 4.5 1389722696
## 6706 38 4422 4.5 1389727818
## 6707 38 4862 3.5 1390248633
## 6708 38 4936 3.5 1389722066
## 6709 38 4973 4.0 1389722650
## 6710 38 4993 4.0 1389806551
## 6711 38 4995 4.5 1416075239
## 6712 38 5349 4.0 1416075232
## 6713 38 5418 4.5 1416075296
## 6714 38 5952 4.5 1416075161
## 6715 38 6107 5.0 1389772624
## 6716 38 6365 3.0 1416075350
## 6717 38 6539 4.0 1416075210
## 6718 38 6870 4.5 1389771156
## 6719 38 6874 4.0 1416075281
## 6720 38 6953 4.5 1390248823
## 6721 38 7063 4.5 1389724072
## 6722 38 7089 5.0 1389722376
## 6723 38 7153 4.5 1389722731
## 6724 38 7234 4.0 1416074901
## 6725 38 7327 4.5 1389727905
## 6726 38 7396 4.5 1389771972
## 6727 38 7438 3.5 1416075321
## 6728 38 7936 4.5 1389727866
## 6729 38 7941 5.0 1389727843
## 6730 38 8154 4.0 1416074904
## 6731 38 8197 4.5 1389727922
## 6732 38 8239 4.5 1389727802
## 6733 38 8656 4.5 1389770804
## 6734 38 26587 4.5 1389722725
## 6735 38 33794 4.0 1416075331
## 6736 38 44555 4.5 1389722602
## 6737 38 48682 5.0 1389723788
## 6738 38 49530 4.0 1449693140
## 6739 38 55118 4.5 1389771542
## 6740 38 55247 3.5 1449693163
## 6741 38 58559 4.5 1389722628
## 6742 38 59447 5.0 1389772590
## 6743 38 60069 4.0 1389721498
## 6744 38 64614 4.5 1449693148
## 6745 38 69761 5.0 1389723595
## 6746 38 71180 5.0 1389772585
## 6747 38 73344 4.5 1389727890
## 6748 38 76111 5.0 1389723643
## 6749 38 79132 4.0 1389722704
## 6750 38 86781 4.5 1390248771
## 6751 38 89759 5.0 1389723529
## 6752 38 96829 4.0 1404126075
## 6753 38 97826 5.0 1389723592
## 6754 38 98587 5.0 1389772588
## 6755 38 100843 4.5 1390150283
## 6756 38 101070 3.0 1416074797
## 6757 38 102753 5.0 1389723691
## 6758 38 103980 4.0 1390151672
## 6759 38 105197 4.5 1416074943
## 6760 38 105355 4.5 1404126065
## 6761 38 105769 4.5 1394397488
## 6762 38 106487 4.5 1392238405
## 6763 38 106782 4.0 1392124587
## 6764 38 107555 5.0 1389723664
## 6765 38 109374 4.0 1416074859
## 6766 38 110102 4.0 1413132672
## 6767 38 110586 4.5 1413132591
## 6768 38 134130 4.5 1445451791
## 6769 39 6 4.0 832523607
## 6770 39 10 5.0 832523129
## 6771 39 16 5.0 832525129
## 6772 39 21 3.0 833532967
## 6773 39 22 4.0 832523361
## 6774 39 31 3.0 832525157
## 6775 39 47 4.0 832523229
## 6776 39 50 3.0 832523307
## 6777 39 69 3.0 832523276
## 6778 39 70 5.0 832523201
## 6779 39 73 3.0 833532967
## 6780 39 76 3.0 832523411
## 6781 39 110 5.0 832523550
## 6782 39 145 3.0 832523738
## 6783 39 150 4.0 832523013
## 6784 39 153 3.0 832523045
## 6785 39 160 3.0 832523339
## 6786 39 162 5.0 832525181
## 6787 39 165 5.0 832523045
## 6788 39 168 3.0 832525093
## 6789 39 170 3.0 832525181
## 6790 39 175 3.0 833534728
## 6791 39 177 4.0 832523386
## 6792 39 180 5.0 832523276
## 6793 39 188 2.0 832523411
## 6794 39 198 5.0 832523229
## 6795 39 220 4.0 832523478
## 6796 39 223 4.0 832523276
## 6797 39 231 4.0 832523082
## 6798 39 253 4.0 832523151
## 6799 39 273 3.0 832523340
## 6800 39 285 4.0 832523436
## 6801 39 288 4.0 832523339
## 6802 39 293 4.0 832523276
## 6803 39 296 5.0 832523013
## 6804 39 315 4.0 832525157
## 6805 39 316 4.0 832523082
## 6806 39 328 5.0 832523229
## 6807 39 330 2.0 832523386
## 6808 39 332 3.0 832523386
## 6809 39 333 3.0 832523307
## 6810 39 338 3.0 832525157
## 6811 39 344 4.0 832523045
## 6812 39 353 5.0 832523201
## 6813 39 366 3.0 832523411
## 6814 39 380 5.0 832523013
## 6815 39 426 3.0 832523386
## 6816 39 434 4.0 832523129
## 6817 39 457 4.0 832523550
## 6818 39 553 4.0 832525093
## 6819 39 555 4.0 832525157
## 6820 39 588 3.0 832523045
## 6821 39 590 3.0 832523013
## 6822 39 592 3.0 832523013
## 6823 39 593 3.0 832523340
## 6824 39 595 3.0 832523082
## 6825 39 606 4.0 832523411
## 6826 39 611 5.0 832523386
## 6827 39 648 4.0 833532966
## 6828 39 662 5.0 833534266
## 6829 39 663 4.0 833534728
## 6830 39 743 4.0 833533335
## 6831 40 50 4.5 1466993349
## 6832 40 260 4.5 1466993118
## 6833 40 1136 5.0 1466993530
## 6834 40 1196 4.5 1466993354
## 6835 40 1197 5.0 1466993529
## 6836 40 1198 4.5 1466993346
## 6837 40 2959 4.0 1466993115
## 6838 40 4226 5.0 1466993204
## 6839 40 4993 4.5 1466993344
## 6840 40 7153 4.5 1466993342
## 6841 40 7361 4.5 1466993378
## 6842 40 8874 4.5 1466993229
## 6843 40 8961 4.5 1466993276
## 6844 40 33794 4.0 1466993488
## 6845 40 38061 5.0 1466993335
## 6846 40 44191 4.5 1466993481
## 6847 40 48516 5.0 1466993384
## 6848 40 48774 5.0 1466993158
## 6849 40 48780 5.0 1466993190
## 6850 40 49272 4.5 1466993355
## 6851 40 51255 5.0 1466993234
## 6852 40 51540 4.5 1466993333
## 6853 40 55820 4.5 1466993372
## 6854 40 58559 4.5 1466993341
## 6855 40 68157 4.0 1466993490
## 6856 40 68237 4.5 1466993381
## 6857 40 68954 4.5 1466993409
## 6858 40 70286 4.5 1466993382
## 6859 40 74458 3.5 1466993111
## 6860 40 79132 4.5 1466993067
## 6861 40 79702 4.5 1466993225
## 6862 40 99114 4.0 1466993108
## 6863 40 106920 5.0 1466993170
## 6864 40 109487 4.5 1466993210
## 6865 40 112556 4.0 1466993109
## 6866 40 116797 4.0 1466993120
## 6867 40 122882 4.5 1466993261
## 6868 40 122886 4.5 1466993084
## 6869 40 122904 4.5 1466993083
## 6870 40 127202 5.0 1466993138
## 6871 40 134130 4.0 1466993078
## 6872 40 152077 5.0 1466993247
## 6873 40 152081 4.0 1466993080
## 6874 41 2 3.5 1093888283
## 6875 41 29 4.0 1109812071
## 6876 41 110 4.0 1107100653
## 6877 41 130 4.5 1093889645
## 6878 41 165 4.0 1093889934
## 6879 41 172 3.5 1093886586
## 6880 41 173 4.0 1093887939
## 6881 41 196 3.0 1107100488
## 6882 41 208 4.0 1093889464
## 6883 41 233 4.0 1093889445
## 6884 41 253 4.0 1093889592
## 6885 41 260 4.0 1093886942
## 6886 41 262 4.5 1093888245
## 6887 41 316 3.5 1093887342
## 6888 41 327 4.0 1093887872
## 6889 41 329 4.0 1093887332
## 6890 41 332 4.0 1093887890
## 6891 41 353 4.0 1093889723
## 6892 41 356 3.5 1109811944
## 6893 41 377 4.5 1093889928
## 6894 41 380 4.0 1093889918
## 6895 41 426 3.0 1093887714
## 6896 41 435 4.0 1107100407
## 6897 41 442 3.5 1093887565
## 6898 41 457 4.0 1109812244
## 6899 41 541 5.0 1093886954
## 6900 41 592 4.0 1109816473
## 6901 41 610 3.0 1093886809
## 6902 41 648 4.0 1093889939
## 6903 41 674 4.0 1093886816
## 6904 41 736 4.0 1093889943
## 6905 41 748 3.5 1093889745
## 6906 41 780 4.0 1093889923
## 6907 41 849 4.0 1093887933
## 6908 41 917 4.0 1093888232
## 6909 41 919 4.0 1093888563
## 6910 41 924 5.0 1093886949
## 6911 41 986 3.5 1093888257
## 6912 41 1037 3.5 1093887515
## 6913 41 1073 4.0 1093888221
## 6914 41 1077 4.0 1093886957
## 6915 41 1097 4.0 1093887808
## 6916 41 1127 3.5 1093887255
## 6917 41 1129 4.5 1093887235
## 6918 41 1196 4.0 1093886850
## 6919 41 1200 4.0 1093887592
## 6920 41 1206 3.5 1093886864
## 6921 41 1210 4.0 1109812957
## 6922 41 1214 4.0 1093886842
## 6923 41 1220 5.0 1093888517
## 6924 41 1222 4.0 1109812135
## 6925 41 1240 4.0 1093886838
## 6926 41 1270 4.0 1093887801
## 6927 41 1298 5.0 1097643542
## 6928 41 1302 3.0 1093886607
## 6929 41 1320 4.0 1093886800
## 6930 41 1333 2.5 1093886688
## 6931 41 1356 4.0 1093887320
## 6932 41 1371 3.5 1093886662
## 6933 41 1372 4.0 1093887228
## 6934 41 1373 4.0 1093887305
## 6935 41 1374 4.5 1093887459
## 6936 41 1375 4.0 1093886628
## 6937 41 1376 4.0 1093887310
## 6938 41 1437 4.0 1093888850
## 6939 41 1527 4.0 1093887546
## 6940 41 1545 4.5 1093889656
## 6941 41 1552 3.5 1109816599
## 6942 41 1580 4.0 1093887797
## 6943 41 1591 4.0 1109817081
## 6944 41 1676 4.0 1107100370
## 6945 41 1690 4.0 1093886682
## 6946 41 1719 4.0 1093889432
## 6947 41 1747 3.0 1093886675
## 6948 41 1748 4.0 1093886696
## 6949 41 1772 4.0 1093888605
## 6950 41 1779 3.5 1109816608
## 6951 41 1876 3.5 1093887570
## 6952 41 1880 4.0 1093889528
## 6953 41 1917 4.0 1093887494
## 6954 41 1965 3.0 1093887748
## 6955 41 1997 4.0 1093886646
## 6956 41 2001 3.0 1093886639
## 6957 41 2003 2.5 1093886710
## 6958 41 2009 4.5 1093887358
## 6959 41 2011 4.0 1093886978
## 6960 41 2012 3.5 1093887247
## 6961 41 2025 5.0 1093888806
## 6962 41 2105 5.0 1093886731
## 6963 41 2117 5.0 1093887657
## 6964 41 2174 4.0 1093889070
## 6965 41 2232 3.5 1093887225
## 6966 41 2311 4.0 1093887270
## 6967 41 2322 3.5 1093887900
## 6968 41 2454 3.0 1093887778
## 6969 41 2455 3.0 1093886717
## 6970 41 2520 3.0 1093889767
## 6971 41 2521 3.5 1093889882
## 6972 41 2522 4.0 1093889880
## 6973 41 2528 4.0 1093886794
## 6974 41 2529 4.0 1093887555
## 6975 41 2530 3.0 1093887368
## 6976 41 2531 3.0 1093887455
## 6977 41 2532 3.0 1093887370
## 6978 41 2536 2.5 1093889776
## 6979 41 2553 4.0 1093887787
## 6980 41 2571 5.0 1093886846
## 6981 41 2600 3.5 1093887446
## 6982 41 2640 4.0 1093887000
## 6983 41 2641 3.5 1093886996
## 6984 41 2642 3.5 1093887641
## 6985 41 2729 3.5 1093888808
## 6986 41 2746 3.5 1093888619
## 6987 41 2808 4.0 1109813581
## 6988 41 2858 4.5 1093889955
## 6989 41 2877 4.0 1093888474
## 6990 41 2916 3.5 1093887350
## 6991 41 2918 4.0 1107100646
## 6992 41 2950 4.0 1093889376
## 6993 41 3033 4.0 1093886735
## 6994 41 3156 4.0 1093887653
## 6995 41 3175 4.0 1107100458
## 6996 41 3253 3.0 1093886668
## 6997 41 3300 4.0 1109812788
## 6998 41 3354 3.5 1107102322
## 6999 41 3471 4.0 1093887804
## 7000 41 3479 4.0 1093889047
## 7001 41 3556 4.0 1093889492
## 7002 41 3593 4.0 1093888032
## 7003 41 3638 3.5 1093887254
## 7004 41 3698 3.5 1093887241
## 7005 41 3699 3.5 1109816504
## 7006 41 3702 4.0 1093887379
## 7007 41 3703 4.0 1093887539
## 7008 41 3704 4.0 1093887217
## 7009 41 3745 3.5 1093886835
## 7010 41 3793 4.0 1109812900
## 7011 41 3802 3.5 1093887961
## 7012 41 3863 3.5 1093886804
## 7013 41 3910 4.0 1093888544
## 7014 41 3937 3.0 1093887835
## 7015 41 3986 3.5 1107100521
## 7016 41 4039 4.0 1093888299
## 7017 41 4232 4.0 1109815125
## 7018 41 4306 4.0 1093888109
## 7019 41 4370 4.0 1093887385
## 7020 41 4443 3.5 1109812764
## 7021 41 4446 4.0 1093886811
## 7022 41 4553 4.5 1107100717
## 7023 41 4625 3.5 1109814401
## 7024 41 4678 4.0 1097643815
## 7025 41 4691 2.5 1107100577
## 7026 41 4789 5.0 1093888629
## 7027 41 4811 4.0 1093888505
## 7028 41 4874 3.5 1093887686
## 7029 41 4936 4.0 1093888656
## 7030 41 5219 4.0 1109814362
## 7031 41 5349 3.5 1107100440
## 7032 41 5445 4.0 1093887670
## 7033 41 5459 3.5 1093887634
## 7034 41 5463 3.5 1093887667
## 7035 41 5490 3.5 1093889755
## 7036 41 5518 4.5 1093888754
## 7037 41 5522 4.0 1093887626
## 7038 41 5618 4.0 1093889018
## 7039 41 5694 3.5 1093888602
## 7040 41 5705 4.0 1093888574
## 7041 41 5881 3.0 1107100419
## 7042 41 5903 4.5 1093887315
## 7043 41 5981 4.0 1093887680
## 7044 41 6116 4.5 1107100678
## 7045 41 6157 4.0 1109816658
## 7046 41 6264 3.5 1093887841
## 7047 41 6303 4.0 1093887726
## 7048 41 6316 4.5 1093889299
## 7049 41 6333 4.0 1109812953
## 7050 41 6365 4.0 1093887300
## 7051 41 6385 4.5 1093889479
## 7052 41 6502 3.5 1109813193
## 7053 41 6537 3.5 1093887324
## 7054 41 6541 4.0 1107100382
## 7055 41 6645 4.0 1093887757
## 7056 41 6678 3.0 1093887605
## 7057 41 6725 5.0 1107100700
## 7058 41 6863 4.0 1093889696
## 7059 41 6934 4.0 1093887354
## 7060 41 6951 4.0 1093888293
## 7061 41 6979 4.5 1093887507
## 7062 41 7001 4.0 1093887733
## 7063 41 7060 4.5 1093888481
## 7064 41 7164 4.5 1109814931
## 7065 41 7373 4.0 1107100536
## 7066 41 7817 3.0 1093887692
## 7067 41 7991 4.0 1093887208
## 7068 41 8371 4.0 1107101191
## 7069 41 8499 4.0 1093888986
## 7070 41 8633 4.0 1093886983
## 7071 41 8644 4.5 1109816462
## 7072 41 8861 4.0 1109814414
## 7073 42 110 4.0 1473258241
## 7074 42 165 3.5 1473258327
## 7075 42 260 4.5 1473258165
## 7076 42 296 5.0 1473258343
## 7077 42 318 5.0 1473258147
## 7078 42 349 4.0 1473258352
## 7079 42 356 4.5 1473258274
## 7080 42 380 3.5 1473258331
## 7081 42 457 5.0 1473258276
## 7082 42 480 5.0 1473258322
## 7083 42 508 3.5 1473258311
## 7084 42 527 4.5 1473258231
## 7085 42 588 4.0 1473258320
## 7086 42 589 5.0 1473258239
## 7087 42 648 4.0 1473258424
## 7088 42 733 3.5 1473258305
## 7089 42 780 4.5 1473258392
## 7090 42 1036 5.0 1473258238
## 7091 42 1097 5.0 1473258304
## 7092 42 1196 5.0 1473258161
## 7093 42 1198 5.0 1473258167
## 7094 42 1200 5.0 1473258283
## 7095 42 1210 4.0 1473258220
## 7096 42 1291 4.5 1473258209
## 7097 42 1320 1.5 1473258445
## 7098 42 1370 3.5 1473258346
## 7099 42 1527 4.0 1473258360
## 7100 42 1573 3.0 1473258409
## 7101 42 1704 4.5 1473258315
## 7102 42 1721 4.0 1473258371
## 7103 42 2028 4.0 1473258242
## 7104 42 2571 3.5 1473258169
## 7105 42 2916 4.0 1473258329
## 7106 42 2985 4.0 1473258309
## 7107 42 3793 3.5 1473258388
## 7108 42 3996 2.5 1473258340
## 7109 42 4886 4.0 1473258318
## 7110 42 4993 5.0 1473258228
## 7111 42 5349 4.0 1473258373
## 7112 42 5952 4.5 1473258214
## 7113 42 7153 4.0 1473258181
## 7114 42 7502 5.0 1473258230
## 7115 42 8636 4.0 1473258386
## 7116 42 8961 4.0 1473258362
## 7117 42 33794 3.5 1473258269
## 7118 42 40815 3.5 1473258378
## 7119 42 44191 4.0 1473258374
## 7120 42 48394 4.0 1473258404
## 7121 42 48516 4.5 1473258313
## 7122 42 58559 4.5 1473258226
## 7123 42 59315 4.0 1473258244
## 7124 42 63082 3.0 1473258337
## 7125 42 68358 3.5 1473258248
## 7126 42 69844 4.5 1473258403
## 7127 42 70286 4.5 1473258440
## 7128 42 73017 4.0 1473258450
## 7129 42 74458 3.5 1473258356
## 7130 42 76093 4.5 1473258438
## 7131 42 79132 4.5 1473258272
## 7132 42 87232 4.0 1473258436
## 7133 42 89745 4.0 1473258396
## 7134 42 91529 3.5 1473258383
## 7135 42 98809 3.0 1473258427
## 7136 42 106489 2.0 1473258421
## 7137 42 106782 4.5 1473258369
## 7138 42 109487 4.0 1473258348
## 7139 42 111759 3.0 1473258291
## 7140 42 112852 3.5 1473258281
## 7141 42 122886 4.5 1473258287
## 7142 42 134853 2.0 1473258334
## 7143 43 1 4.0 974768260
## 7144 43 34 4.0 974768402
## 7145 43 39 4.0 974768903
## 7146 43 70 2.0 974767953
## 7147 43 104 2.0 974769666
## 7148 43 110 5.0 974767808
## 7149 43 216 1.0 974770180
## 7150 43 223 3.0 974768430
## 7151 43 231 3.0 974769902
## 7152 43 339 4.0 974769935
## 7153 43 356 5.0 974768654
## 7154 43 480 4.0 974767808
## 7155 43 500 3.0 974769730
## 7156 43 524 3.0 974767845
## 7157 43 527 5.0 974756704
## 7158 43 585 2.0 974770079
## 7159 43 588 3.0 974768798
## 7160 43 589 3.0 974767746
## 7161 43 608 5.0 974770589
## 7162 43 837 4.0 974769370
## 7163 43 838 4.0 974768872
## 7164 43 1035 4.0 974767808
## 7165 43 1210 3.0 974756766
## 7166 43 1380 3.0 974770180
## 7167 43 1457 3.0 974770325
## 7168 43 1476 4.0 974769818
## 7169 43 1513 4.0 974770137
## 7170 43 1517 1.0 974769125
## 7171 43 1544 2.0 974768022
## 7172 43 1569 5.0 974769863
## 7173 43 1580 4.0 974767917
## 7174 43 1612 4.0 974769312
## 7175 43 1673 3.0 974767879
## 7176 43 1726 1.0 974770474
## 7177 43 1777 3.0 974769125
## 7178 43 1806 1.0 974769482
## 7179 43 1821 3.0 974769561
## 7180 43 1883 3.0 974768903
## 7181 43 1895 2.0 974769902
## 7182 43 1907 3.0 974756766
## 7183 43 1958 4.0 974769253
## 7184 43 1968 3.0 974768604
## 7185 43 1997 5.0 974770536
## 7186 43 2000 2.0 974768471
## 7187 43 2003 2.0 974769658
## 7188 43 2004 1.0 974770180
## 7189 43 2054 2.0 974770079
## 7190 43 2081 4.0 974768965
## 7191 43 2082 2.0 974770281
## 7192 43 2109 3.0 974770104
## 7193 43 2144 3.0 974768999
## 7194 43 2150 3.0 974769207
## 7195 43 2160 1.0 974767879
## 7196 43 2291 3.0 974767845
## 7197 43 2321 4.0 974768632
## 7198 43 2355 4.0 974768632
## 7199 43 2384 4.0 974768872
## 7200 43 2390 3.0 974768285
## 7201 43 2395 3.0 974768834
## 7202 43 2396 4.0 974768225
## 7203 43 2447 3.0 974769843
## 7204 43 2454 3.0 974767917
## 7205 43 2455 3.0 974767845
## 7206 43 2496 2.0 974769730
## 7207 43 2539 2.0 974769659
## 7208 43 2622 2.0 974770360
## 7209 43 2671 4.0 974769586
## 7210 43 2683 2.0 974770325
## 7211 43 2688 3.0 974756704
## 7212 43 2690 4.0 974769370
## 7213 43 2700 2.0 974768402
## 7214 43 2706 4.0 974768903
## 7215 43 2723 3.0 974770104
## 7216 43 2770 3.0 974769963
## 7217 43 2791 2.0 974767746
## 7218 43 2804 4.0 974768367
## 7219 43 2836 3.0 974769659
## 7220 43 2858 5.0 974768349
## 7221 43 2879 4.0 974769561
## 7222 43 2978 2.0 974770180
## 7223 43 2997 4.0 974768604
## 7224 43 3005 2.0 974756766
## 7225 43 3052 3.0 974769253
## 7226 43 3114 4.0 974768260
## 7227 43 3156 2.0 974770248
## 7228 43 3160 4.0 974756976
## 7229 43 3173 3.0 974767983
## 7230 43 3189 4.0 974769843
## 7231 43 3247 3.0 974769963
## 7232 43 3254 2.0 974770007
## 7233 43 3255 3.0 974769034
## 7234 43 3286 2.0 974767808
## 7235 43 3301 2.0 974770281
## 7236 43 3409 4.0 974757072
## 7237 43 3450 2.0 974767953
## 7238 43 3481 2.0 974756976
## 7239 43 3510 4.0 974756976
## 7240 43 3515 4.0 974756976
## 7241 43 3525 3.0 974769561
## 7242 43 3535 1.0 974757072
## 7243 43 3555 2.0 974757005
## 7244 43 3624 3.0 974757005
## 7245 43 3712 2.0 974769818
## 7246 43 3753 4.0 974756976
## 7247 43 3773 2.0 974770227
## 7248 43 3868 1.0 974768834
## 7249 43 3869 1.0 974769902
## 7250 43 3917 2.0 974767809
## 7251 43 3948 2.0 974768798
## 7252 43 3969 4.0 974768104
## 7253 44 1 4.0 858707138
## 7254 44 3 5.0 858707194
## 7255 44 5 3.0 858707194
## 7256 44 6 3.0 858707194
## 7257 44 17 2.0 858707139
## 7258 44 25 3.0 858707139
## 7259 44 32 3.0 858707138
## 7260 44 62 5.0 858707138
## 7261 44 95 3.0 858707138
## 7262 44 104 4.0 858707248
## 7263 44 135 4.0 858707310
## 7264 44 141 2.0 858707138
## 7265 44 260 3.0 858707247
## 7266 44 494 3.0 858707194
## 7267 44 628 3.0 858707310
## 7268 44 637 2.0 858707310
## 7269 44 648 3.0 858707138
## 7270 44 733 4.0 858707194
## 7271 44 736 4.0 858707138
## 7272 44 780 5.0 858707138
## 7273 44 786 3.0 858707194
## 7274 44 788 3.0 858707248
## 7275 44 802 3.0 858707310
## 7276 44 805 4.0 858707310
## 7277 44 1047 3.0 858707464
## 7278 45 520 3.5 1140202251
## 7279 45 899 4.0 1140202396
## 7280 45 903 5.0 1140202299
## 7281 45 1199 4.0 1140202319
## 7282 45 1333 4.5 1140202390
## 7283 45 1639 3.0 1140202266
## 7284 45 1673 4.5 1140202294
## 7285 45 1748 4.5 1140202371
## 7286 45 2572 2.5 1140202408
## 7287 45 2692 4.5 1140202246
## 7288 45 2699 2.5 1140202271
## 7289 45 3052 2.5 1140202307
## 7290 45 3160 4.5 1140202374
## 7291 45 3307 4.5 1140202850
## 7292 45 3753 0.5 1140202339
## 7293 45 4235 4.0 1140202705
## 7294 45 4246 1.0 1140202402
## 7295 45 4995 2.5 1140202334
## 7296 45 5878 4.0 1140202838
## 7297 45 7064 5.0 1140202700
## 7298 45 26151 5.0 1140202636
## 7299 46 73 5.0 1366389910
## 7300 46 355 5.0 1366392410
## 7301 46 724 5.0 1366389683
## 7302 46 1270 5.0 1366392989
## 7303 46 1359 4.5 1366389877
## 7304 46 1515 5.0 1366389853
## 7305 46 1707 5.0 1366392466
## 7306 46 1965 5.0 1366389759
## 7307 46 2153 5.0 1366390158
## 7308 46 2379 5.0 1366389889
## 7309 46 2381 5.0 1366390952
## 7310 46 2383 5.0 1366390956
## 7311 46 2398 5.0 1366389797
## 7312 46 2539 5.0 1366389671
## 7313 46 2541 5.0 1366389694
## 7314 46 2605 5.0 1366389699
## 7315 46 2804 5.0 1366391610
## 7316 46 3157 4.5 1366389806
## 7317 46 3247 4.0 1366389728
## 7318 46 3868 5.0 1366389737
## 7319 46 4993 5.0 1366390915
## 7320 46 5952 5.0 1366391137
## 7321 46 7004 5.0 1366389915
## 7322 46 7153 5.0 1366390910
## 7323 46 8387 5.0 1366390963
## 7324 46 26614 5.0 1366391584
## 7325 46 33615 5.0 1366389926
## 7326 46 33794 5.0 1366392529
## 7327 46 49530 5.0 1366393248
## 7328 46 50872 5.0 1366393308
## 7329 46 58559 5.0 1366390187
## 7330 46 59018 5.0 1366393234
## 7331 46 79132 5.0 1366390899
## 7332 46 80463 5.0 1366393535
## 7333 46 81834 5.0 1366393591
## 7334 46 88125 5.0 1366392165
## 7335 46 89745 5.0 1366391603
## 7336 46 91529 5.0 1366391663
## 7337 46 98124 5.0 1366390127
## 7338 47 1 5.0 832228931
## 7339 47 2 5.0 832229657
## 7340 47 10 4.0 832228931
## 7341 47 32 4.0 832229007
## 7342 47 39 3.0 832229039
## 7343 47 50 4.0 832229039
## 7344 47 95 3.0 832229161
## 7345 47 110 5.0 832228979
## 7346 47 150 4.0 832228796
## 7347 47 153 4.0 832228859
## 7348 47 160 3.0 832229039
## 7349 47 161 5.0 832228931
## 7350 47 165 4.0 832228859
## 7351 47 173 5.0 832229561
## 7352 47 208 3.0 832228958
## 7353 47 231 3.0 832228906
## 7354 47 236 4.0 832229068
## 7355 47 253 3.0 832228958
## 7356 47 266 3.0 832229007
## 7357 47 288 4.0 832228979
## 7358 47 292 5.0 832228958
## 7359 47 296 4.0 832228796
## 7360 47 300 3.0 832228958
## 7361 47 315 4.0 832229068
## 7362 47 316 5.0 832228906
## 7363 47 329 4.0 832228906
## 7364 47 344 3.0 832228859
## 7365 47 349 4.0 832228859
## 7366 47 380 4.0 832228796
## 7367 47 410 3.0 832228979
## 7368 47 420 3.0 832229068
## 7369 47 434 4.0 832228931
## 7370 47 442 3.0 832229985
## 7371 47 457 5.0 832229879
## 7372 47 588 4.0 832228859
## 7373 47 592 3.0 832228796
## 7374 47 593 5.0 832229879
## 7375 47 595 3.0 832228906
## 7376 48 1 4.0 1318796720
## 7377 48 2 3.5 1322169967
## 7378 48 34 3.0 1322169717
## 7379 48 110 4.0 1319746142
## 7380 48 111 3.0 1439687078
## 7381 48 158 3.0 1322170542
## 7382 48 163 3.5 1322170475
## 7383 48 223 2.5 1322169932
## 7384 48 231 3.5 1322169695
## 7385 48 288 3.5 1319744320
## 7386 48 293 5.0 1305605384
## 7387 48 296 4.5 1410971707
## 7388 48 344 3.5 1322169641
## 7389 48 356 4.0 1319744507
## 7390 48 364 4.0 1319745852
## 7391 48 367 3.5 1322169697
## 7392 48 480 3.5 1322167325
## 7393 48 501 3.5 1367466511
## 7394 48 527 4.5 1305604773
## 7395 48 541 4.0 1322719227
## 7396 48 562 3.5 1368072767
## 7397 48 593 3.5 1322169588
## 7398 48 595 3.5 1322169669
## 7399 48 648 3.5 1322169653
## 7400 48 673 3.0 1322170930
## 7401 48 741 4.0 1414562221
## 7402 48 778 4.5 1305605614
## 7403 48 784 2.5 1419495810
## 7404 48 858 4.0 1367729182
## 7405 48 924 4.5 1425959805
## 7406 48 1097 3.5 1322169711
## 7407 48 1127 3.5 1319745467
## 7408 48 1148 3.5 1318721589
## 7409 48 1175 4.0 1305602381
## 7410 48 1185 4.0 1303371127
## 7411 48 1206 3.5 1316496812
## 7412 48 1214 3.5 1322169763
## 7413 48 1222 3.5 1322167612
## 7414 48 1240 3.5 1410971787
## 7415 48 1258 4.0 1322169973
## 7416 48 1270 3.5 1322169645
## 7417 48 1274 3.5 1318721485
## 7418 48 1293 4.0 1412452845
## 7419 48 1407 2.5 1412457717
## 7420 48 1485 3.5 1322170149
## 7421 48 1499 2.5 1412471587
## 7422 48 1527 3.5 1322169801
## 7423 48 1544 3.5 1322167341
## 7424 48 1580 3.5 1322167292
## 7425 48 1591 3.0 1322171839
## 7426 48 1676 3.0 1419495799
## 7427 48 1682 3.5 1322169947
## 7428 48 1721 4.0 1322169693
## 7429 48 1732 3.5 1318725610
## 7430 48 1784 4.5 1305604618
## 7431 48 1882 3.0 1322171335
## 7432 48 1884 4.5 1305605225
## 7433 48 1917 3.5 1322169954
## 7434 48 1921 4.0 1305604875
## 7435 48 1923 3.5 1319744666
## 7436 48 1997 3.5 1322167149
## 7437 48 2006 3.0 1322170564
## 7438 48 2167 3.5 1322170785
## 7439 48 2232 3.5 1415258524
## 7440 48 2288 3.5 1412321963
## 7441 48 2291 4.0 1322170045
## 7442 48 2294 3.0 1322170922
## 7443 48 2318 3.5 1324101279
## 7444 48 2324 4.5 1319746801
## 7445 48 2329 4.5 1305605468
## 7446 48 2355 3.5 1318835468
## 7447 48 2455 2.5 1412471207
## 7448 48 2542 3.5 1322170518
## 7449 48 2571 4.5 1322167116
## 7450 48 2617 3.5 1322167802
## 7451 48 2692 3.0 1322170331
## 7452 48 2700 3.5 1322170196
## 7453 48 2706 3.5 1322169924
## 7454 48 2710 3.0 1322170066
## 7455 48 2722 2.5 1412470814
## 7456 48 2762 3.5 1367729581
## 7457 48 2840 3.0 1412471725
## 7458 48 2959 5.0 1305604734
## 7459 48 2987 3.5 1318835841
## 7460 48 2997 3.0 1319744255
## 7461 48 3000 5.0 1305605572
## 7462 48 3114 3.5 1318797469
## 7463 48 3147 4.0 1319746199
## 7464 48 3527 3.0 1322170644
## 7465 48 3578 5.0 1305605670
## 7466 48 3677 4.5 1367466490
## 7467 48 3717 3.0 1322171045
## 7468 48 3745 3.5 1322173362
## 7469 48 3751 3.0 1316922546
## 7470 48 3793 3.5 1410971832
## 7471 48 3949 4.5 1305604501
## 7472 48 3968 3.0 1319748211
## 7473 48 4011 4.0 1318725545
## 7474 48 4016 3.5 1318835610
## 7475 48 4022 3.5 1322167231
## 7476 48 4226 3.5 1405181557
## 7477 48 4270 3.0 1322167807
## 7478 48 4306 4.0 1305604576
## 7479 48 4369 3.5 1303371101
## 7480 48 4446 3.5 1322171604
## 7481 48 4720 3.0 1319745406
## 7482 48 4878 4.5 1305605359
## 7483 48 4886 3.5 1318796382
## 7484 48 4902 3.5 1425960044
## 7485 48 4973 5.0 1305605431
## 7486 48 4975 3.5 1305602329
## 7487 48 4993 4.5 1319748409
## 7488 48 4995 4.0 1322168606
## 7489 48 5010 4.0 1322170988
## 7490 48 5146 4.0 1318724175
## 7491 48 5218 4.0 1317417327
## 7492 48 5225 3.0 1322169255
## 7493 48 5349 3.5 1322167657
## 7494 48 5459 3.0 1322167294
## 7495 48 5502 3.5 1322167764
## 7496 48 5570 3.5 1322167056
## 7497 48 5618 4.5 1316394238
## 7498 48 5669 4.0 1318694896
## 7499 48 5679 3.5 1322167180
## 7500 48 5690 4.5 1305605593
## 7501 48 5902 4.0 1317612908
## 7502 48 5903 3.5 1320820975
## 7503 48 5952 4.0 1319748416
## 7504 48 5971 4.0 1305606854
## 7505 48 5995 4.0 1316535850
## 7506 48 6016 4.5 1305606326
## 7507 48 6214 3.5 1319744880
## 7508 48 6223 3.5 1320505613
## 7509 48 6242 3.0 1412478838
## 7510 48 6283 3.5 1317277244
## 7511 48 6291 3.0 1367774627
## 7512 48 6350 4.0 1316394075
## 7513 48 6365 3.5 1322167119
## 7514 48 6373 4.0 1319744628
## 7515 48 6377 4.0 1317413795
## 7516 48 6539 4.0 1319745991
## 7517 48 6711 3.0 1317612608
## 7518 48 6857 3.5 1318796409
## 7519 48 6890 3.0 1322871160
## 7520 48 6934 3.0 1322167122
## 7521 48 6953 3.5 1322174318
## 7522 48 7099 4.0 1318721568
## 7523 48 7147 3.5 1322170898
## 7524 48 7153 4.0 1319748414
## 7525 48 7235 3.0 1368072937
## 7526 48 7254 4.0 1319744413
## 7527 48 7256 4.5 1412154802
## 7528 48 7360 2.5 1414562338
## 7529 48 7361 4.5 1305605332
## 7530 48 7373 3.5 1322167707
## 7531 48 7382 3.0 1368060971
## 7532 48 7982 4.0 1320701272
## 7533 48 8132 5.0 1356760541
## 7534 48 8157 2.5 1333323786
## 7535 48 8360 3.0 1317417331
## 7536 48 8376 3.5 1322171670
## 7537 48 8582 4.0 1405650065
## 7538 48 8636 4.0 1322167658
## 7539 48 8645 3.0 1341268936
## 7540 48 8784 4.5 1305604460
## 7541 48 8807 4.0 1319746322
## 7542 48 8874 4.5 1305605527
## 7543 48 8906 2.5 1319744919
## 7544 48 8907 2.5 1339446902
## 7545 48 8950 4.5 1305605199
## 7546 48 8957 3.0 1367968341
## 7547 48 8961 3.5 1317413816
## 7548 48 8965 3.0 1339447083
## 7549 48 26662 4.0 1318721824
## 7550 48 26776 4.0 1316409175
## 7551 48 27156 4.0 1414850854
## 7552 48 27523 3.5 1319743664
## 7553 48 27660 3.5 1425960095
## 7554 48 27713 4.0 1319744848
## 7555 48 27722 2.5 1325534468
## 7556 48 27731 4.0 1318750105
## 7557 48 27773 3.5 1316416730
## 7558 48 27800 3.5 1318796541
## 7559 48 27801 3.0 1341268726
## 7560 48 27838 3.0 1367794617
## 7561 48 27846 4.5 1305603014
## 7562 48 27850 3.5 1320128368
## 7563 48 27878 4.0 1316537666
## 7564 48 30793 3.5 1319744696
## 7565 48 30867 4.0 1369722162
## 7566 48 31410 4.5 1322719969
## 7567 48 31435 5.0 1305603880
## 7568 48 31658 4.5 1316416643
## 7569 48 31878 3.0 1341268857
## 7570 48 32031 3.0 1339446959
## 7571 48 32554 3.0 1319743714
## 7572 48 32562 4.0 1316535636
## 7573 48 32587 4.5 1305605408
## 7574 48 33154 4.0 1316536060
## 7575 48 33166 3.5 1322167635
## 7576 48 33615 3.5 1322167363
## 7577 48 33679 3.5 1319744759
## 7578 48 34323 3.0 1414562300
## 7579 48 34405 3.5 1319745276
## 7580 48 36276 2.5 1414561763
## 7581 48 36535 3.5 1317613176
## 7582 48 37729 3.0 1333324895
## 7583 48 37830 3.5 1317417268
## 7584 48 38038 3.5 1303371215
## 7585 48 40629 4.5 1305604971
## 7586 48 41569 3.5 1322174118
## 7587 48 41769 3.0 1320505644
## 7588 48 42723 3.0 1367968282
## 7589 48 44022 3.0 1322167429
## 7590 48 44191 3.5 1319745902
## 7591 48 44397 2.5 1367968590
## 7592 48 44555 4.5 1305604909
## 7593 48 44633 4.0 1316491569
## 7594 48 44828 3.0 1414561107
## 7595 48 44974 3.5 1319745453
## 7596 48 45431 4.0 1317417313
## 7597 48 45517 4.0 1317417295
## 7598 48 45720 3.0 1322168181
## 7599 48 45950 4.0 1367729197
## 7600 48 46578 3.5 1317612663
## 7601 48 46948 3.5 1317415599
## 7602 48 46976 3.0 1415388297
## 7603 48 47099 3.5 1322168130
## 7604 48 47124 3.0 1339447216
## 7605 48 47404 4.0 1316922590
## 7606 48 47610 4.0 1319745108
## 7607 48 47999 4.0 1322167913
## 7608 48 48043 3.5 1322167725
## 7609 48 48082 4.0 1305605032
## 7610 48 48385 3.5 1319745148
## 7611 48 48394 4.0 1316495346
## 7612 48 48414 3.0 1339447153
## 7613 48 48774 3.0 1322171427
## 7614 48 48780 3.5 1322171197
## 7615 48 48982 3.5 1317415398
## 7616 48 48997 4.0 1322167204
## 7617 48 49278 3.5 1322167397
## 7618 48 50583 3.0 1369722178
## 7619 48 50601 4.0 1305605741
## 7620 48 50872 3.5 1309052092
## 7621 48 51255 3.5 1317612601
## 7622 48 51540 3.0 1319745336
## 7623 48 51662 4.0 1322171094
## 7624 48 52281 3.5 1371359811
## 7625 48 52287 3.0 1339446347
## 7626 48 52319 4.0 1319745882
## 7627 48 52328 2.5 1415388549
## 7628 48 52458 3.0 1322167257
## 7629 48 52722 3.0 1322167662
## 7630 48 53121 2.5 1339447162
## 7631 48 53326 2.0 1414561720
## 7632 48 53460 3.0 1333325498
## 7633 48 53519 3.0 1428727629
## 7634 48 53883 4.0 1322169136
## 7635 48 53894 4.0 1305602945
## 7636 48 53996 3.5 1322167586
## 7637 48 54272 2.5 1317417320
## 7638 48 54503 3.5 1319746126
## 7639 48 54995 4.0 1412478977
## 7640 48 55247 4.5 1305604999
## 7641 48 55280 4.0 1305604648
## 7642 48 55442 4.5 1305605708
## 7643 48 55444 4.5 1305605690
## 7644 48 55768 3.0 1339447164
## 7645 48 55814 4.0 1316494426
## 7646 48 55908 3.5 1319745424
## 7647 48 55995 3.0 1339447168
## 7648 48 56069 2.5 1414561470
## 7649 48 56095 3.0 1322967502
## 7650 48 56145 3.5 1319743116
## 7651 48 56174 3.0 1412471624
## 7652 48 56339 4.0 1319747802
## 7653 48 56367 3.5 1320709035
## 7654 48 56607 4.0 1319748038
## 7655 48 56757 3.0 1412457389
## 7656 48 56782 3.5 1319747076
## 7657 48 56908 4.0 1319746579
## 7658 48 57274 3.5 1405916134
## 7659 48 57368 4.5 1305605784
## 7660 48 57453 3.5 1319743302
## 7661 48 57504 4.0 1317413827
## 7662 48 57640 3.0 1322167708
## 7663 48 57669 4.0 1322719278
## 7664 48 57980 3.0 1322165598
## 7665 48 58299 3.5 1319746873
## 7666 48 58347 3.5 1319744824
## 7667 48 58554 3.5 1317621831
## 7668 48 58559 4.0 1316536208
## 7669 48 59118 4.5 1305605159
## 7670 48 59141 3.5 1369880284
## 7671 48 59315 4.0 1322167983
## 7672 48 59387 4.0 1322276523
## 7673 48 59684 5.0 1305605115
## 7674 48 59784 3.5 1318796568
## 7675 48 60069 4.0 1316496606
## 7676 48 60126 3.0 1305603027
## 7677 48 60161 3.5 1317414089
## 7678 48 60291 4.0 1367774333
## 7679 48 60684 3.5 1322167566
## 7680 48 60763 3.5 1371359903
## 7681 48 61240 4.5 1305605640
## 7682 48 61323 3.5 1319744734
## 7683 48 62203 4.5 1305605093
## 7684 48 62250 3.0 1322966900
## 7685 48 62956 3.5 1305603309
## 7686 48 62999 3.5 1322167367
## 7687 48 63082 3.5 1322167677
## 7688 48 63131 2.5 1368412407
## 7689 48 63808 3.5 1322719467
## 7690 48 63859 3.5 1305603082
## 7691 48 64575 4.0 1319746554
## 7692 48 64716 4.0 1319747765
## 7693 48 64957 3.5 1319746373
## 7694 48 64969 3.0 1322168337
## 7695 48 64983 3.5 1305603272
## 7696 48 64993 4.0 1317405562
## 7697 48 65037 5.0 1305603894
## 7698 48 65261 3.5 1316539661
## 7699 48 65514 4.0 1305603793
## 7700 48 66097 3.5 1317405737
## 7701 48 66371 3.5 1316494407
## 7702 48 67197 3.5 1322167931
## 7703 48 67255 4.0 1305605077
## 7704 48 67408 3.0 1339446804
## 7705 48 67734 3.0 1322167961
## 7706 48 68157 4.0 1305605254
## 7707 48 68237 4.0 1316495274
## 7708 48 68358 3.0 1414850769
## 7709 48 68945 3.5 1405650223
## 7710 48 68954 4.0 1316537546
## 7711 48 69122 4.5 1305605932
## 7712 48 69526 3.0 1305603095
## 7713 48 69644 3.5 1322167425
## 7714 48 69712 3.5 1319748155
## 7715 48 69757 4.5 1305605276
## 7716 48 70159 4.0 1319746947
## 7717 48 70286 4.5 1305605762
## 7718 48 70533 4.0 1318721876
## 7719 48 70567 4.0 1305603934
## 7720 48 71033 4.0 1316493344
## 7721 48 71057 3.5 1317417335
## 7722 48 71264 3.5 1317414139
## 7723 48 71282 3.0 1371530476
## 7724 48 71379 4.0 1305605834
## 7725 48 71462 4.0 1316416612
## 7726 48 71468 3.0 1322167866
## 7727 48 71520 3.5 1305603492
## 7728 48 71535 3.5 1319746905
## 7729 48 71579 3.5 1319745128
## 7730 48 71899 5.0 1305605866
## 7731 48 72104 3.0 1414850946
## 7732 48 72209 3.0 1339446991
## 7733 48 72393 3.5 1319745750
## 7734 48 72731 3.0 1414562131
## 7735 48 72741 3.5 1324101310
## 7736 48 72998 4.5 1305605907
## 7737 48 73017 4.0 1319745634
## 7738 48 73268 3.0 1305603556
## 7739 48 73321 3.0 1319745660
## 7740 48 73392 3.5 1316539530
## 7741 48 73664 3.0 1317415585
## 7742 48 73881 4.0 1317277178
## 7743 48 74228 3.5 1428726464
## 7744 48 74677 4.0 1320128370
## 7745 48 74789 3.5 1319745518
## 7746 48 76093 4.0 1305604944
## 7747 48 76173 5.0 1368249994
## 7748 48 76251 3.5 1319744484
## 7749 48 77307 4.0 1319745178
## 7750 48 77427 1.5 1341268695
## 7751 48 77561 3.5 1322167990
## 7752 48 77837 4.5 1305604806
## 7753 48 78499 4.0 1318721995
## 7754 48 79029 4.0 1318694932
## 7755 48 79091 4.0 1319743447
## 7756 48 79132 4.0 1305604858
## 7757 48 79357 3.5 1320700986
## 7758 48 79702 4.0 1309051349
## 7759 48 79868 3.5 1319745212
## 7760 48 80463 4.5 1305604694
## 7761 48 80586 3.5 1368483486
## 7762 48 80831 2.5 1412309172
## 7763 48 80862 3.5 1321425442
## 7764 48 80906 4.0 1316416681
## 7765 48 81018 3.5 1318796373
## 7766 48 81562 3.5 1322167089
## 7767 48 81564 3.5 1318742711
## 7768 48 81591 4.0 1367475412
## 7769 48 81845 3.5 1415388786
## 7770 48 81847 3.5 1318796556
## 7771 48 82461 3.5 1305603954
## 7772 48 82667 3.5 1341268645
## 7773 48 83132 3.5 1368499219
## 7774 48 83134 3.5 1368250070
## 7775 48 83803 3.0 1414850824
## 7776 48 84152 4.0 1341268624
## 7777 48 84187 4.5 1367774277
## 7778 48 84772 2.5 1414851036
## 7779 48 84944 4.0 1318796696
## 7780 48 84952 4.0 1320907274
## 7781 48 85412 3.5 1319744151
## 7782 48 85414 4.0 1317277376
## 7783 48 85510 3.0 1319743782
## 7784 48 85736 4.5 1305606322
## 7785 48 85774 4.0 1367724708
## 7786 48 85788 3.5 1319743415
## 7787 48 85796 3.0 1369722191
## 7788 48 86298 4.0 1319744439
## 7789 48 86332 3.5 1317277357
## 7790 48 86347 3.5 1322169386
## 7791 48 86721 3.0 1368499410
## 7792 48 87222 4.0 1318721576
## 7793 48 87232 4.0 1319744187
## 7794 48 87306 2.5 1415388667
## 7795 48 87430 3.0 1317277197
## 7796 48 87520 3.0 1317277220
## 7797 48 88140 2.5 1410972161
## 7798 48 88744 3.5 1316907766
## 7799 48 89745 3.0 1414851073
## 7800 48 89837 2.5 1414849679
## 7801 48 90469 3.0 1329101733
## 7802 48 90531 2.5 1368483363
## 7803 48 90647 3.5 1368249365
## 7804 48 90746 3.5 1331430993
## 7805 48 91414 3.0 1368499298
## 7806 48 91529 3.5 1371530093
## 7807 48 91542 3.5 1371360050
## 7808 48 92058 2.0 1341268688
## 7809 48 92420 2.5 1415388593
## 7810 48 93272 2.5 1341268657
## 7811 48 93838 3.0 1414562176
## 7812 48 93840 2.5 1414562366
## 7813 48 95167 5.0 1368499305
## 7814 48 95311 4.0 1367774366
## 7815 48 95375 3.0 1414850934
## 7816 48 95510 3.0 1410972137
## 7817 48 95543 3.0 1368499835
## 7818 48 95858 4.0 1412494161
## 7819 48 95875 3.0 1356760463
## 7820 48 96281 3.0 1368499321
## 7821 48 96606 3.0 1415388917
## 7822 48 96610 3.0 1371530088
## 7823 48 96737 4.0 1356760430
## 7824 48 96821 4.0 1355724506
## 7825 48 97188 2.5 1410972337
## 7826 48 97225 3.5 1367725555
## 7827 48 97752 4.5 1356760414
## 7828 48 97913 3.5 1368483794
## 7829 48 97921 3.5 1367725590
## 7830 48 97938 3.5 1367786421
## 7831 48 97957 4.0 1414839828
## 7832 48 98056 3.0 1371530237
## 7833 48 98243 2.5 1412497730
## 7834 48 98809 4.0 1367728315
## 7835 48 99114 4.0 1405916092
## 7836 48 99145 4.0 1367725833
## 7837 48 100556 4.0 1410972561
## 7838 48 101142 3.5 1368499380
## 7839 48 102125 2.5 1428726967
## 7840 48 102445 4.0 1414562096
## 7841 48 103042 3.5 1410972280
## 7842 48 103228 2.0 1412570841
## 7843 48 103249 2.5 1412570882
## 7844 48 103253 2.0 1412570808
## 7845 48 103299 3.5 1414561040
## 7846 48 103335 3.0 1414850862
## 7847 48 103688 3.0 1410972358
## 7848 48 104841 2.5 1415388310
## 7849 48 106002 2.5 1412554038
## 7850 48 106072 2.5 1412561078
## 7851 48 106204 3.0 1405181551
## 7852 48 106489 4.0 1404110083
## 7853 48 106696 3.5 1410972517
## 7854 48 107406 2.5 1412570817
## 7855 48 107769 2.5 1410972202
## 7856 48 107953 2.5 1412583710
## 7857 48 108190 3.0 1410972239
## 7858 48 108945 2.5 1410972320
## 7859 48 109487 3.5 1425960344
## 7860 48 109578 3.0 1412553084
## 7861 48 109673 2.5 1410972264
## 7862 48 109846 3.0 1412553201
## 7863 48 109848 2.5 1428726440
## 7864 48 109850 2.5 1412553055
## 7865 48 110102 3.5 1410972164
## 7866 48 110127 3.0 1410972074
## 7867 48 110501 3.0 1419495256
## 7868 48 110553 3.0 1410972132
## 7869 48 110591 2.5 1405181398
## 7870 48 110655 2.5 1412553003
## 7871 48 110730 3.5 1410972058
## 7872 48 111362 3.5 1405649924
## 7873 48 111364 2.5 1410972102
## 7874 48 111659 2.5 1412552876
## 7875 48 111759 4.0 1410972752
## 7876 48 112175 3.5 1412552728
## 7877 48 112370 2.5 1412552534
## 7878 48 112515 2.5 1428726233
## 7879 48 112623 3.5 1425960080
## 7880 48 112852 3.5 1412550699
## 7881 48 113741 3.0 1415388454
## 7882 48 114180 2.5 1428726245
## 7883 48 114935 3.0 1428726219
## 7884 48 115149 2.5 1428727019
## 7885 48 115534 2.0 1428726405
## 7886 48 115617 3.0 1428726202
## 7887 48 115624 3.0 1414562891
## 7888 48 118696 2.5 1428726241
## 7889 49 2 5.0 978040739
## 7890 49 60 3.0 978039958
## 7891 49 161 4.0 978041312
## 7892 49 173 2.0 978040891
## 7893 49 258 1.0 978040922
## 7894 49 303 3.0 978040023
## 7895 49 329 3.0 978039850
## 7896 49 356 4.0 978041224
## 7897 49 421 2.0 978039693
## 7898 49 466 4.0 978041370
## 7899 49 524 3.0 978039301
## 7900 49 590 3.0 978039629
## 7901 49 592 2.0 978039693
## 7902 49 653 4.0 978040023
## 7903 49 674 3.0 978039922
## 7904 49 688 3.0 978040871
## 7905 49 733 3.0 978039850
## 7906 49 736 4.0 978040768
## 7907 49 750 4.0 978041037
## 7908 49 780 4.0 978041342
## 7909 49 897 4.0 978041189
## 7910 49 912 5.0 978041037
## 7911 49 919 5.0 978039514
## 7912 49 920 4.0 978039263
## 7913 49 952 3.0 978039654
## 7914 49 969 5.0 978039514
## 7915 49 976 4.0 978041189
## 7916 49 1017 3.0 978039693
## 7917 49 1073 5.0 978039629
## 7918 49 1085 5.0 978039693
## 7919 49 1127 4.0 978039584
## 7920 49 1129 3.0 978039819
## 7921 49 1196 4.0 978039557
## 7922 49 1197 4.0 978039557
## 7923 49 1198 5.0 978039514
## 7924 49 1204 5.0 978039514
## 7925 49 1208 4.0 978041091
## 7926 49 1210 3.0 978039301
## 7927 49 1242 4.0 978041122
## 7928 49 1254 4.0 978039557
## 7929 49 1262 5.0 978039514
## 7930 49 1272 5.0 978041122
## 7931 49 1287 5.0 978039584
## 7932 49 1291 5.0 978039584
## 7933 49 1374 3.0 978039753
## 7934 49 1375 4.0 978039922
## 7935 49 1376 4.0 978039795
## 7936 49 1391 3.0 978041342
## 7937 49 1580 3.0 978039714
## 7938 49 1676 2.0 978041312
## 7939 49 1927 4.0 978041037
## 7940 49 2013 1.0 978039958
## 7941 49 2054 2.0 978039891
## 7942 49 2088 2.0 978040828
## 7943 49 2094 2.0 978040023
## 7944 49 2105 3.0 978039891
## 7945 49 2115 5.0 978039753
## 7946 49 2161 4.0 978039850
## 7947 49 2202 5.0 978041152
## 7948 49 2287 5.0 978041250
## 7949 49 2366 3.0 978039557
## 7950 49 2402 2.0 978041370
## 7951 49 2406 4.0 978039753
## 7952 49 2414 3.0 978039795
## 7953 49 2430 5.0 978039753
## 7954 49 2471 4.0 978040828
## 7955 49 2524 2.0 978039263
## 7956 49 2537 1.0 978040922
## 7957 49 2662 4.0 978041189
## 7958 49 2669 3.0 978041224
## 7959 49 2748 3.0 978040922
## 7960 49 2815 1.0 978041370
## 7961 49 2816 1.0 978041398
## 7962 49 2817 1.0 978041398
## 7963 49 2871 3.0 978039629
## 7964 49 2941 3.0 978041279
## 7965 49 2944 4.0 978041152
## 7966 49 2968 4.0 978039629
## 7967 49 2987 5.0 978039629
## 7968 49 3062 4.0 978041224
## 7969 49 3066 3.0 978041312
## 7970 49 3196 4.0 978041064
## 7971 49 3247 3.0 978039301
## 7972 49 3269 2.0 978039988
## 7973 49 3406 4.0 978041189
## 7974 49 3412 3.0 978039891
## 7975 49 3417 5.0 978039795
## 7976 49 3441 2.0 978041342
## 7977 49 3461 2.0 978039629
## 7978 49 3519 2.0 978041312
## 7979 49 3628 4.0 978041224
## 7980 49 3643 4.0 978041279
## 7981 49 3755 4.0 978039891
## 7982 49 3836 3.0 978041189
## 7983 49 3927 3.0 978039693
## 7984 49 3959 4.0 978039557
## 7985 49 4042 3.0 978041224
## 7986 49 4047 5.0 978041122
## 7987 49 5060 4.0 978041091
## 7988 50 10 4.0 847412607
## 7989 50 21 3.0 847412676
## 7990 50 39 2.0 847412692
## 7991 50 47 3.0 847412643
## 7992 50 95 3.0 847412837
## 7993 50 110 4.0 847412607
## 7994 50 150 3.0 847412515
## 7995 50 160 3.0 847412712
## 7996 50 161 4.0 847412607
## 7997 50 165 4.0 847412543
## 7998 50 185 3.0 847412606
## 7999 50 208 3.0 847412606
## 8000 50 231 1.0 847412567
## 8001 50 253 3.0 847412628
## 8002 50 282 3.0 847412811
## 8003 50 292 4.0 847412586
## 8004 50 296 4.0 847412515
## 8005 50 315 3.0 847412812
## 8006 50 316 3.0 847412567
## 8007 50 337 3.0 847412859
## 8008 50 339 4.0 847412628
## 8009 50 344 2.0 847412544
## 8010 50 349 3.0 847412567
## 8011 50 356 4.0 847412567
## 8012 50 357 4.0 847412692
## 8013 50 367 4.0 847412643
## 8014 50 368 4.0 847413071
## 8015 50 377 3.0 847412643
## 8016 50 380 3.0 847412515
## 8017 50 420 3.0 847412692
## 8018 50 434 3.0 847412586
## 8019 50 440 4.0 847412711
## 8020 50 442 3.0 847412812
## 8021 50 454 3.0 847412628
## 8022 50 457 3.0 847413020
## 8023 50 480 4.0 847412586
## 8024 50 509 3.0 847412812
## 8025 50 527 4.0 847412676
## 8026 50 539 3.0 847412676
## 8027 50 553 3.0 847413043
## 8028 50 587 3.0 847412659
## 8029 50 589 5.0 847412628
## 8030 50 590 3.0 847412515
## 8031 50 597 3.0 847412659
## 8032 50 780 4.0 847412879
## 8033 50 786 3.0 847413043
## 8034 51 913 4.0 974729137
## 8035 51 1636 1.0 974728763
## 8036 51 1888 3.0 974728763
## 8037 51 1948 4.0 974728763
## 8038 51 1959 4.0 974729199
## 8039 51 1968 4.0 974728763
## 8040 51 2369 3.0 974728999
## 8041 51 2396 2.0 974729270
## 8042 51 2605 5.0 974729067
## 8043 51 2670 5.0 974729270
## 8044 51 2683 4.0 974728936
## 8045 51 2688 4.0 974729067
## 8046 51 2699 4.0 974728936
## 8047 51 2701 2.0 974729345
## 8048 51 2713 5.0 974729137
## 8049 51 2722 5.0 974728999
## 8050 51 2724 2.0 974729270
## 8051 51 2734 3.0 974729165
## 8052 51 2761 5.0 974729105
## 8053 51 2763 4.0 974729315
## 8054 51 2826 5.0 974728936
## 8055 51 2827 4.0 974728936
## 8056 51 2840 3.0 974729270
## 8057 51 2841 5.0 974729270
## 8058 51 2881 5.0 974729032
## 8059 51 2987 5.0 974729315
## 8060 51 3157 5.0 974729270
## 8061 51 3175 4.0 974729067
## 8062 51 3219 5.0 974729199
## 8063 51 3510 5.0 974728763
## 8064 51 3543 4.0 974729032
## 8065 52 357 4.5 1231766465
## 8066 52 365 1.0 1231763607
## 8067 52 461 3.5 1231770596
## 8068 52 866 4.0 1231767051
## 8069 52 1088 4.0 1231766626
## 8070 52 1295 4.0 1231766951
## 8071 52 1614 4.0 1231763120
## 8072 52 1639 1.0 1231770503
## 8073 52 1735 5.0 1231766895
## 8074 52 1969 0.5 1231763493
## 8075 52 2338 1.0 1231766853
## 8076 52 2396 4.0 1231766442
## 8077 52 2408 0.5 1231763521
## 8078 52 2806 1.0 1231763632
## 8079 52 2858 4.5 1231767339
## 8080 52 3155 4.5 1231763213
## 8081 52 3255 4.0 1231766571
## 8082 52 3793 3.5 1231766114
## 8083 52 3854 5.0 1231769875
## 8084 52 3967 5.0 1231767802
## 8085 52 3987 1.0 1231763560
## 8086 52 3996 5.0 1231769199
## 8087 52 4014 5.0 1231769672
## 8088 52 4228 2.0 1231763745
## 8089 52 4246 5.0 1231769802
## 8090 52 4896 5.0 1231767951
## 8091 52 4973 5.0 1231767291
## 8092 52 5222 3.5 1231770278
## 8093 52 5296 2.0 1231763949
## 8094 52 5380 4.5 1231763660
## 8095 52 5525 4.0 1231769598
## 8096 52 5791 4.5 1231769623
## 8097 52 5812 4.5 1231769923
## 8098 52 5816 4.5 1231767944
## 8099 52 5878 4.0 1231766768
## 8100 52 5992 5.0 1231769951
## 8101 52 6058 1.0 1231763805
## 8102 52 6218 4.0 1231769685
## 8103 52 6370 4.5 1231769942
## 8104 52 6539 3.5 1231769278
## 8105 52 6776 3.5 1231769628
## 8106 52 6807 5.0 1231766495
## 8107 52 6942 4.0 1231769696
## 8108 52 7160 4.5 1231766735
## 8109 52 7615 4.0 1231767245
## 8110 52 8368 5.0 1231767956
## 8111 52 8781 3.5 1231763467
## 8112 52 8918 3.5 1231770591
## 8113 52 8966 4.0 1231767125
## 8114 52 8983 3.5 1231769937
## 8115 52 27020 5.0 1231770554
## 8116 52 27721 5.0 1231769580
## 8117 52 30825 3.5 1231766722
## 8118 52 31408 4.5 1231769751
## 8119 52 37727 2.0 1231763882
## 8120 52 38886 2.0 1231763840
## 8121 52 39183 4.5 1231769880
## 8122 52 40815 5.0 1231766690
## 8123 52 41571 3.0 1231767136
## 8124 52 43744 4.0 1231770409
## 8125 52 44555 4.5 1231767111
## 8126 52 45447 3.5 1231766676
## 8127 52 50872 3.5 1231769289
## 8128 52 51094 3.5 1231770833
## 8129 52 52545 4.0 1231770796
## 8130 52 54001 5.0 1231763293
## 8131 52 55451 4.0 1231770565
## 8132 52 60950 2.0 1231769833
## 8133 53 111 4.0 955192120
## 8134 53 165 4.0 955193387
## 8135 53 238 1.0 955192933
## 8136 53 392 1.0 955192933
## 8137 53 420 3.0 955193660
## 8138 53 421 1.0 955192933
## 8139 53 484 1.0 955192933
## 8140 53 968 4.0 955192636
## 8141 53 1193 5.0 955192140
## 8142 53 1370 3.0 955193310
## 8143 53 1580 3.0 955193387
## 8144 53 1610 5.0 955193310
## 8145 53 1772 4.0 955193660
## 8146 53 1911 2.0 955192367
## 8147 53 1917 5.0 955193078
## 8148 53 1995 2.0 955191985
## 8149 53 2002 3.0 955193468
## 8150 53 2093 1.0 955192692
## 8151 53 2336 4.0 955192388
## 8152 53 2368 3.0 955193256
## 8153 53 2394 1.0 955192663
## 8154 53 2396 4.0 955192739
## 8155 53 2412 1.0 955193574
## 8156 53 2433 5.0 955192345
## 8157 53 2470 4.0 955193224
## 8158 53 2690 4.0 955192491
## 8159 53 2699 4.0 955192282
## 8160 53 2700 1.0 955192739
## 8161 53 2709 1.0 955192603
## 8162 53 2710 3.0 955192307
## 8163 53 2716 3.0 955192417
## 8164 53 2717 3.0 955192010
## 8165 53 2720 1.0 955192491
## 8166 53 2761 1.0 955192571
## 8167 53 2762 5.0 955192739
## 8168 53 2840 2.0 955192739
## 8169 53 2912 1.0 955193387
## 8170 53 2986 4.0 955193724
## 8171 53 2987 1.0 955192779
## 8172 53 2997 1.0 955192307
## 8173 53 3107 4.0 955193337
## 8174 53 3114 1.0 955192760
## 8175 53 3160 2.0 955192571
## 8176 53 3178 4.0 955192100
## 8177 53 3274 4.0 955193433
## 8178 53 3434 4.0 955193724
## 8179 54 318 4.5 1352835937
## 8180 54 1027 4.0 1352835615
## 8181 54 1088 5.0 1352836913
## 8182 54 1201 4.5 1352835880
## 8183 54 1203 4.5 1352835987
## 8184 54 1333 2.0 1352836775
## 8185 54 1680 4.0 1352836714
## 8186 54 2150 4.0 1352835557
## 8187 54 2471 2.5 1352832722
## 8188 54 2571 3.5 1352836545
## 8189 54 2991 3.5 1352835678
## 8190 54 3258 4.0 1352832850
## 8191 54 3462 3.0 1352837063
## 8192 54 3638 4.0 1352832755
## 8193 54 3906 4.0 1352836272
## 8194 54 4467 0.5 1352832871
## 8195 54 4963 4.5 1352836371
## 8196 54 5418 4.5 1352836374
## 8197 54 6378 4.5 1352837049
## 8198 54 8533 4.5 1352836618
## 8199 54 8665 4.5 1352836376
## 8200 54 26160 3.5 1352834428
## 8201 54 26294 4.0 1352837008
## 8202 54 30749 3.5 1352836442
## 8203 54 33794 1.0 1352836450
## 8204 54 44197 4.5 1352833560
## 8205 54 44199 5.0 1352835951
## 8206 54 48516 4.5 1352836485
## 8207 54 48660 1.0 1352834067
## 8208 54 48780 5.0 1352836366
## 8209 54 48997 2.0 1352833048
## 8210 54 54286 4.5 1352836377
## 8211 54 55820 1.5 1352836517
## 8212 54 56941 5.0 1352836738
## 8213 54 58803 4.5 1352836666
## 8214 54 60069 5.0 1352836154
## 8215 54 68157 4.5 1352836322
## 8216 54 69640 3.5 1352833131
## 8217 54 71899 4.0 1352836290
## 8218 54 77846 5.0 1352835980
## 8219 54 78499 4.5 1352832825
## 8220 54 79132 2.5 1352836507
## 8221 54 91355 3.5 1352834483
## 8222 54 96655 5.0 1352834564
## 8223 55 1 3.0 855926941
## 8224 55 5 3.0 855926988
## 8225 55 6 5.0 855926988
## 8226 55 7 2.0 855926988
## 8227 55 9 3.0 855927315
## 8228 55 32 4.0 855926941
## 8229 55 65 5.0 855927315
## 8230 55 74 3.0 855927438
## 8231 55 79 3.0 855927172
## 8232 55 95 3.0 855926941
## 8233 55 100 3.0 855927437
## 8234 55 104 5.0 855927131
## 8235 55 112 3.0 855927131
## 8236 55 141 4.0 855926941
## 8237 55 260 5.0 855927131
## 8238 55 376 4.0 855927131
## 8239 55 494 3.0 855926988
## 8240 55 608 3.0 855926988
## 8241 55 609 3.0 855927438
## 8242 55 637 4.0 855927172
## 8243 55 648 5.0 855926941
## 8244 55 653 4.0 855927131
## 8245 55 707 2.0 855927438
## 8246 55 708 3.0 855927131
## 8247 55 719 4.0 855927315
## 8248 55 724 4.0 855927438
## 8249 55 733 4.0 855926988
## 8250 55 736 3.0 855926941
## 8251 55 737 3.0 855927315
## 8252 55 761 2.0 855927438
## 8253 55 780 5.0 855926941
## 8254 55 784 3.0 855927131
## 8255 55 786 4.0 855926988
## 8256 55 788 5.0 855927131
## 8257 55 802 3.0 855927315
## 8258 55 805 5.0 855927172
## 8259 55 832 5.0 855927315
## 8260 55 1073 3.0 855926988
## 8261 56 1 4.0 1467004817
## 8262 56 10 4.0 1467008381
## 8263 56 16 4.0 1467004892
## 8264 56 21 2.0 1470350794
## 8265 56 29 4.0 1467004961
## 8266 56 39 5.0 1467003294
## 8267 56 47 4.0 1467004867
## 8268 56 50 4.0 1467004833
## 8269 56 101 4.0 1467007782
## 8270 56 104 4.0 1467005618
## 8271 56 111 4.0 1467005298
## 8272 56 147 2.0 1467003504
## 8273 56 160 2.0 1467004905
## 8274 56 176 4.0 1467005072
## 8275 56 216 4.0 1467004949
## 8276 56 223 4.0 1467004879
## 8277 56 231 2.0 1470350790
## 8278 56 246 5.0 1467004938
## 8279 56 250 5.0 1467005164
## 8280 56 260 2.0 1470350831
## 8281 56 292 2.0 1467006124
## 8282 56 293 4.0 1467002990
## 8283 56 296 4.0 1467003119
## 8284 56 318 4.0 1473803992
## 8285 56 333 2.0 1470350811
## 8286 56 337 4.0 1468471074
## 8287 56 342 2.0 1467004922
## 8288 56 356 4.0 1467002971
## 8289 56 377 4.0 1473801974
## 8290 56 441 4.0 1469033808
## 8291 56 442 2.0 1470350967
## 8292 56 456 4.0 1467005160
## 8293 56 457 4.0 1467004832
## 8294 56 480 4.0 1467004830
## 8295 56 527 4.0 1467002940
## 8296 56 529 4.0 1467007127
## 8297 56 541 4.0 1467006388
## 8298 56 586 4.0 1467008357
## 8299 56 593 5.0 1467002950
## 8300 56 673 2.0 1467005800
## 8301 56 750 2.0 1467003164
## 8302 56 778 4.0 1467005324
## 8303 56 916 4.0 1467006035
## 8304 56 919 5.0 1467005569
## 8305 56 922 4.0 1467005986
## 8306 56 923 4.0 1467005564
## 8307 56 924 2.0 1467005377
## 8308 56 926 4.0 1470350981
## 8309 56 942 2.0 1470351101
## 8310 56 951 4.0 1467008836
## 8311 56 953 4.0 1467005515
## 8312 56 1036 5.0 1467003129
## 8313 56 1060 4.0 1467006650
## 8314 56 1073 4.0 1467005708
## 8315 56 1089 4.0 1467003138
## 8316 56 1094 2.0 1470351007
## 8317 56 1095 4.0 1467004984
## 8318 56 1097 4.0 1467005425
## 8319 56 1120 2.0 1470350746
## 8320 56 1136 4.0 1467005321
## 8321 56 1172 2.0 1470350810
## 8322 56 1193 4.0 1467003136
## 8323 56 1196 2.0 1470350743
## 8324 56 1197 4.0 1467002983
## 8325 56 1198 4.0 1467004101
## 8326 56 1201 4.0 1467006449
## 8327 56 1206 4.0 1467006407
## 8328 56 1207 5.0 1467003288
## 8329 56 1208 4.0 1467005413
## 8330 56 1209 5.0 1467006798
## 8331 56 1210 2.0 1467005230
## 8332 56 1213 4.0 1467003139
## 8333 56 1222 4.0 1467006447
## 8334 56 1225 5.0 1467003994
## 8335 56 1226 4.0 1467006765
## 8336 56 1228 4.0 1467005790
## 8337 56 1230 2.0 1470350796
## 8338 56 1235 5.0 1467003378
## 8339 56 1240 2.0 1467006386
## 8340 56 1244 2.0 1470350740
## 8341 56 1247 2.0 1470351006
## 8342 56 1250 4.0 1467004757
## 8343 56 1252 4.0 1467003285
## 8344 56 1256 4.0 1467009159
## 8345 56 1258 4.0 1467005320
## 8346 56 1259 4.0 1467003265
## 8347 56 1263 2.0 1470351002
## 8348 56 1265 5.0 1467004858
## 8349 56 1266 4.0 1467004906
## 8350 56 1270 4.0 1473792749
## 8351 56 1283 4.0 1467006781
## 8352 56 1285 5.0 1467003397
## 8353 56 1288 4.0 1467873409
## 8354 56 1291 4.0 1467005259
## 8355 56 1302 4.0 1467006163
## 8356 56 1304 2.0 1470350881
## 8357 56 1307 2.0 1470350949
## 8358 56 1358 4.0 1467006852
## 8359 56 1380 5.0 1467004019
## 8360 56 1387 4.0 1467005541
## 8361 56 1393 4.0 1467006556
## 8362 56 1449 5.0 1467006334
## 8363 56 1466 4.0 1467005889
## 8364 56 1608 4.0 1467094780
## 8365 56 1617 4.0 1467005534
## 8366 56 1673 4.0 1467005939
## 8367 56 1676 2.0 1470350880
## 8368 56 1682 5.0 1467003127
## 8369 56 1704 5.0 1467002948
## 8370 56 1721 4.0 1467003158
## 8371 56 1732 4.0 1470350964
## 8372 56 1784 2.0 1470350958
## 8373 56 1907 4.0 1467005607
## 8374 56 1923 4.0 1467006553
## 8375 56 1947 5.0 1467003819
## 8376 56 1952 2.0 1470350857
## 8377 56 1953 4.0 1467008994
## 8378 56 1954 4.0 1467004796
## 8379 56 1957 4.0 1467093986
## 8380 56 1958 2.0 1470350850
## 8381 56 1961 2.0 1470350848
## 8382 56 1968 5.0 1467003201
## 8383 56 2000 1.0 1469031525
## 8384 56 2005 4.0 1467005771
## 8385 56 2006 4.0 1467094778
## 8386 56 2011 2.0 1470352143
## 8387 56 2028 5.0 1467002969
## 8388 56 2042 2.0 1470350841
## 8389 56 2052 4.0 1470350988
## 8390 56 2060 4.0 1467092609
## 8391 56 2072 2.0 1470352155
## 8392 56 2082 2.0 1470350839
## 8393 56 2115 4.0 1467006461
## 8394 56 2144 4.0 1468471176
## 8395 56 2186 4.0 1467866328
## 8396 56 2194 2.0 1470350837
## 8397 56 2248 4.0 1467007881
## 8398 56 2253 1.0 1467005018
## 8399 56 2300 4.0 1467009172
## 8400 56 2321 4.0 1467003359
## 8401 56 2324 2.0 1470351704
## 8402 56 2329 4.0 1467002977
## 8403 56 2395 5.0 1467004735
## 8404 56 2420 4.0 1470350864
## 8405 56 2502 4.0 1467006343
## 8406 56 2542 4.0 1467005428
## 8407 56 2572 2.0 1475110909
## 8408 56 2599 5.0 1467008130
## 8409 56 2617 4.0 1467005498
## 8410 56 2694 4.0 1470351102
## 8411 56 2700 4.0 1469152877
## 8412 56 2716 2.0 1470351096
## 8413 56 2746 5.0 1467003490
## 8414 56 2761 4.0 1469031599
## 8415 56 2791 4.0 1467005598
## 8416 56 2797 4.0 1467005707
## 8417 56 2804 4.0 1467007025
## 8418 56 2858 5.0 1467002981
## 8419 56 2863 4.0 1467009270
## 8420 56 2918 4.0 1467006448
## 8421 56 2925 4.0 1467006816
## 8422 56 2947 2.0 1467005813
## 8423 56 2951 2.0 1470351099
## 8424 56 2953 4.0 1467004973
## 8425 56 2959 4.0 1467002942
## 8426 56 3034 4.0 1467693193
## 8427 56 3039 1.0 1467006042
## 8428 56 3072 4.0 1467009823
## 8429 56 3079 4.0 1474815098
## 8430 56 3086 4.0 1467007108
## 8431 56 3089 4.0 1467006194
## 8432 56 3098 2.0 1470350837
## 8433 56 3104 2.0 1470351801
## 8434 56 3114 4.0 1467005380
## 8435 56 3152 2.0 1470351097
## 8436 56 3160 4.0 1467005729
## 8437 56 3210 2.0 1470350982
## 8438 56 3253 4.0 1467005793
## 8439 56 3255 2.0 1470351095
## 8440 56 3268 2.0 1467005081
## 8441 56 3360 5.0 1467004784
## 8442 56 3361 2.0 1467009601
## 8443 56 3365 4.0 1467006773
## 8444 56 3421 4.0 1467006182
## 8445 56 3424 4.0 1467003514
## 8446 56 3468 2.0 1470350862
## 8447 56 3480 4.0 1467007890
## 8448 56 3489 2.0 1467005858
## 8449 56 3504 4.0 1467008829
## 8450 56 3552 2.0 1467006160
## 8451 56 3606 5.0 1467004029
## 8452 56 3608 2.0 1470351118
## 8453 56 3653 5.0 1467003934
## 8454 56 3671 4.0 1467003357
## 8455 56 3683 4.0 1467007203
## 8456 56 3751 4.0 1472582918
## 8457 56 3783 4.0 1467093364
## 8458 56 3791 4.0 1475567060
## 8459 56 3868 4.0 1470355329
## 8460 56 3897 2.0 1470350976
## 8461 56 3916 2.0 1470350951
## 8462 56 3972 2.0 1470350879
## 8463 56 3988 2.0 1470350876
## 8464 56 4016 4.0 1469152869
## 8465 56 4022 4.0 1467006603
## 8466 56 4027 4.0 1467005394
## 8467 56 4034 4.0 1467006723
## 8468 56 4054 4.0 1474700994
## 8469 56 4085 2.0 1467005824
## 8470 56 4091 4.0 1467008072
## 8471 56 4102 2.0 1470355415
## 8472 56 4226 4.0 1467005242
## 8473 56 4262 2.0 1470350975
## 8474 56 4306 4.0 1467005239
## 8475 56 4370 4.0 1467005492
## 8476 56 4406 2.0 1470351000
## 8477 56 4447 4.0 1470968633
## 8478 56 4571 4.0 1467006150
## 8479 56 4649 4.0 1473802057
## 8480 56 4771 4.0 1467004075
## 8481 56 4776 2.0 1470351001
## 8482 56 4816 2.0 1470350956
## 8483 56 4848 4.0 1467005527
## 8484 56 4878 4.0 1467003134
## 8485 56 4881 2.0 1470350834
## 8486 56 4886 4.0 1467005245
## 8487 56 4896 4.0 1467005287
## 8488 56 4973 5.0 1467002978
## 8489 56 4993 4.0 1467004098
## 8490 56 5103 4.0 1467004067
## 8491 56 5377 5.0 1467003300
## 8492 56 5401 4.0 1467092617
## 8493 56 5418 4.0 1467005258
## 8494 56 5445 4.0 1467005284
## 8495 56 5673 5.0 1467003858
## 8496 56 5785 5.0 1473794542
## 8497 56 5816 4.0 1467005307
## 8498 56 5902 4.0 1467005692
## 8499 56 5952 4.0 1467004100
## 8500 56 5970 2.0 1470350980
## 8501 56 5995 4.0 1471104320
## 8502 56 6003 2.0 1470350814
## 8503 56 6016 5.0 1467002967
## 8504 56 6188 2.0 1470350817
## 8505 56 6373 2.0 1467005360
## 8506 56 6377 4.0 1467005252
## 8507 56 6618 2.0 1470350824
## 8508 56 6732 5.0 1473791601
## 8509 56 6796 4.0 1467008087
## 8510 56 6863 5.0 1467005390
## 8511 56 6867 4.0 1467006262
## 8512 56 6870 2.0 1467003213
## 8513 56 6873 2.0 1470350961
## 8514 56 6874 4.0 1467005226
## 8515 56 6932 4.0 1467094542
## 8516 56 6936 4.0 1467006226
## 8517 56 6942 2.0 1470350791
## 8518 56 6978 2.0 1470351794
## 8519 56 7018 2.0 1470350792
## 8520 56 7022 1.0 1472530513
## 8521 56 7036 2.0 1470352323
## 8522 56 7072 4.0 1470350806
## 8523 56 7132 4.0 1467093079
## 8524 56 7147 4.0 1467003174
## 8525 56 7153 4.0 1467004099
## 8526 56 7263 4.0 1467004794
## 8527 56 7361 5.0 1467002992
## 8528 56 7438 4.0 1467006373
## 8529 56 7451 5.0 1467005463
## 8530 56 8360 4.0 1467005331
## 8531 56 8368 4.0 1467005270
## 8532 56 8376 4.0 1467005493
## 8533 56 8528 2.0 1470350829
## 8534 56 8641 4.0 1467005485
## 8535 56 8665 4.0 1467006393
## 8536 56 8784 2.0 1470350939
## 8537 56 8807 4.0 1467006247
## 8538 56 8874 5.0 1467003155
## 8539 56 8914 2.0 1469228080
## 8540 56 8917 4.0 1468470510
## 8541 56 8961 4.0 1467006577
## 8542 56 8972 2.0 1470351983
## 8543 56 26084 5.0 1467691652
## 8544 56 26471 2.0 1467009198
## 8545 56 27253 4.0 1467095130
## 8546 56 27773 5.0 1467004058
## 8547 56 32587 4.0 1469154890
## 8548 56 32598 2.0 1467009678
## 8549 56 33166 2.0 1470350835
## 8550 56 33495 4.0 1469033593
## 8551 56 33660 4.0 1467003331
## 8552 56 33794 4.0 1470350738
## 8553 56 33880 2.0 1467007232
## 8554 56 34162 4.0 1475557281
## 8555 56 34528 4.0 1467007629
## 8556 56 35836 5.0 1467005373
## 8557 56 37733 2.0 1470350809
## 8558 56 38038 4.0 1467005838
## 8559 56 38061 4.0 1467003299
## 8560 56 38886 4.0 1467006300
## 8561 56 39292 4.0 1467006253
## 8562 56 40629 5.0 1467003268
## 8563 56 40815 4.0 1467005282
## 8564 56 41566 4.0 1470350742
## 8565 56 44191 4.0 1470350803
## 8566 56 44199 2.0 1467005523
## 8567 56 46578 5.0 1467003146
## 8568 56 46948 4.0 1467693406
## 8569 56 46970 4.0 1467006275
## 8570 56 47099 2.0 1470350985
## 8571 56 48322 5.0 1469073222
## 8572 56 48516 4.0 1467005248
## 8573 56 48698 5.0 1467692413
## 8574 56 48982 4.0 1467693415
## 8575 56 49272 5.0 1467005267
## 8576 56 50514 4.0 1467007522
## 8577 56 50872 4.0 1467006583
## 8578 56 51255 5.0 1467003975
## 8579 56 51540 4.0 1467005548
## 8580 56 51662 2.0 1470351003
## 8581 56 52245 4.0 1467005933
## 8582 56 52435 4.0 1469073419
## 8583 56 53123 4.0 1470350872
## 8584 56 53125 2.0 1467005359
## 8585 56 54001 4.0 1467005323
## 8586 56 54256 5.0 1467004082
## 8587 56 54286 4.0 1467006368
## 8588 56 54503 5.0 1467003951
## 8589 56 54881 5.0 1467009669
## 8590 56 55052 2.0 1467006058
## 8591 56 55118 2.0 1470350855
## 8592 56 55247 2.0 1470350851
## 8593 56 55765 2.0 1467005604
## 8594 56 55805 4.0 1467003527
## 8595 56 55820 5.0 1471306371
## 8596 56 56174 2.0 1470350845
## 8597 56 56333 4.0 1467007605
## 8598 56 56367 5.0 1467003152
## 8599 56 56757 4.0 1475479127
## 8600 56 56782 5.0 1467003185
## 8601 56 57532 1.0 1467095936
## 8602 56 57669 5.0 1467003176
## 8603 56 58025 1.0 1467005673
## 8604 56 58559 5.0 1467004094
## 8605 56 59118 4.0 1467007569
## 8606 56 59315 2.0 1467005222
## 8607 56 59369 2.0 1467005342
## 8608 56 60684 2.0 1470350978
## 8609 56 60756 4.0 1467005703
## 8610 56 60950 4.0 1467005747
## 8611 56 61024 4.0 1467006547
## 8612 56 61132 4.0 1467865426
## 8613 56 63082 4.0 1467006376
## 8614 56 63113 2.0 1470350955
## 8615 56 63131 5.0 1467003348
## 8616 56 64969 4.0 1470350987
## 8617 56 64983 2.0 1470350986
## 8618 56 65188 5.0 1467092809
## 8619 56 67087 5.0 1467003336
## 8620 56 67734 4.0 1467004345
## 8621 56 67997 4.0 1469031507
## 8622 56 68157 4.0 1467004172
## 8623 56 68954 4.0 1467004170
## 8624 56 69122 4.0 1467004173
## 8625 56 69306 2.0 1470350866
## 8626 56 69844 4.0 1467004200
## 8627 56 70286 4.0 1467003125
## 8628 56 70293 4.0 1467003364
## 8629 56 70728 4.0 1470968850
## 8630 56 71264 5.0 1467005726
## 8631 56 71466 4.0 1467003698
## 8632 56 71535 4.0 1467005198
## 8633 56 71579 4.0 1467004387
## 8634 56 72011 4.0 1467004221
## 8635 56 72171 5.0 1467004584
## 8636 56 72226 5.0 1467004119
## 8637 56 72720 2.0 1467004435
## 8638 56 73023 4.0 1467009351
## 8639 56 74275 4.0 1467004483
## 8640 56 74416 4.0 1467004574
## 8641 56 74754 5.0 1467864303
## 8642 56 74916 4.0 1467007601
## 8643 56 76111 4.0 1467092846
## 8644 56 76251 4.0 1467004204
## 8645 56 78499 5.0 1467004183
## 8646 56 79091 4.0 1467006409
## 8647 56 79132 5.0 1467002965
## 8648 56 79592 4.0 1467004374
## 8649 56 79677 5.0 1467093107
## 8650 56 79702 5.0 1467005411
## 8651 56 80463 4.0 1467004187
## 8652 56 80549 4.0 1467004158
## 8653 56 81156 5.0 1473794395
## 8654 56 81562 4.0 1467003210
## 8655 56 81591 5.0 1467003145
## 8656 56 81834 4.0 1467004198
## 8657 56 83086 1.0 1467004629
## 8658 56 83976 4.0 1467004653
## 8659 56 84116 4.0 1469153655
## 8660 56 85414 4.0 1467005355
## 8661 56 85438 5.0 1467004005
## 8662 56 86000 5.0 1467003897
## 8663 56 86884 4.0 1469032461
## 8664 56 86911 2.0 1470350858
## 8665 56 87232 2.0 1470350948
## 8666 56 87304 4.0 1467004505
## 8667 56 87522 1.0 1473791535
## 8668 56 87869 2.0 1470350973
## 8669 56 88125 4.0 1467004197
## 8670 56 88744 4.0 1467004315
## 8671 56 88810 2.0 1470350882
## 8672 56 88812 2.0 1467004552
## 8673 56 89492 4.0 1467004122
## 8674 56 89759 4.0 1467003383
## 8675 56 90374 4.0 1467004613
## 8676 56 90376 4.0 1468910117
## 8677 56 90600 4.0 1467003420
## 8678 56 90947 4.0 1469031965
## 8679 56 91199 4.0 1467092472
## 8680 56 91529 2.0 1470350873
## 8681 56 92420 4.0 1467004382
## 8682 56 93270 1.0 1467004544
## 8683 56 93422 4.0 1467007093
## 8684 56 93443 5.0 1467004638
## 8685 56 93510 5.0 1467004161
## 8686 56 93512 4.0 1467004619
## 8687 56 93721 4.0 1467004448
## 8688 56 94896 4.0 1467004582
## 8689 56 94959 4.0 1473802027
## 8690 56 95088 4.0 1467003376
## 8691 56 95441 2.0 1470350788
## 8692 56 95510 4.0 1470350782
## 8693 56 96079 5.0 1467005316
## 8694 56 96110 1.0 1467004530
## 8695 56 96467 5.0 1467003873
## 8696 56 96728 5.0 1467003849
## 8697 56 96829 5.0 1467003292
## 8698 56 96911 4.0 1467864500
## 8699 56 97306 4.0 1467004379
## 8700 56 97836 1.0 1467092453
## 8701 56 97866 4.0 1467092369
## 8702 56 97921 2.0 1467004218
## 8703 56 97923 2.0 1470350802
## 8704 56 97938 4.0 1467004316
## 8705 56 99114 4.0 1467002988
## 8706 56 99117 2.0 1467004578
## 8707 56 99764 5.0 1467863402
## 8708 56 99917 2.0 1470350983
## 8709 56 100272 4.0 1469154665
## 8710 56 100556 5.0 1467003946
## 8711 56 101577 1.0 1467092392
## 8712 56 102123 5.0 1467005764
## 8713 56 102800 4.0 1467007575
## 8714 56 102993 4.0 1467007838
## 8715 56 103141 4.0 1470350830
## 8716 56 103279 4.0 1468546977
## 8717 56 103624 4.0 1467009440
## 8718 56 103688 2.0 1470350793
## 8719 56 104944 4.0 1467006050
## 8720 56 105197 4.0 1467007684
## 8721 56 105429 4.0 1468546294
## 8722 56 105715 2.0 1474953835
## 8723 56 105844 4.0 1467005461
## 8724 56 106062 2.0 1471306876
## 8725 56 106100 4.0 1467003177
## 8726 56 106144 4.0 1467094125
## 8727 56 106332 4.0 1469845528
## 8728 56 106438 4.0 1467003435
## 8729 56 106916 2.0 1470351005
## 8730 56 106920 5.0 1467003149
## 8731 56 107141 2.0 1470351004
## 8732 56 107348 4.0 1467006008
## 8733 56 107978 5.0 1467003921
## 8734 56 108156 2.0 1467092461
## 8735 56 108932 4.0 1467003191
## 8736 56 110461 4.0 1467003769
## 8737 56 111362 2.0 1467005297
## 8738 56 111617 1.0 1467003517
## 8739 56 112138 5.0 1467005656
## 8740 56 112183 4.0 1467006422
## 8741 56 112421 4.0 1467692116
## 8742 56 112515 5.0 1470025110
## 8743 56 112552 5.0 1467006371
## 8744 56 112556 2.0 1470350815
## 8745 56 112852 2.0 1467005244
## 8746 56 113064 4.0 1469228067
## 8747 56 113453 1.0 1470355990
## 8748 56 113705 2.0 1470350818
## 8749 56 113829 4.0 1467007253
## 8750 56 113862 4.0 1473791593
## 8751 56 114074 2.0 1470352041
## 8752 56 114342 4.0 1473804166
## 8753 56 114635 4.0 1467092891
## 8754 56 115569 4.0 1467006430
## 8755 56 116797 4.0 1467002982
## 8756 56 122882 5.0 1467004819
## 8757 56 122886 2.0 1470350977
## 8758 56 127108 5.0 1467006119
## 8759 56 127152 5.0 1467094604
## 8760 56 127198 4.0 1467006189
## 8761 56 127206 2.0 1470350833
## 8762 56 128360 4.0 1467005444
## 8763 56 128620 5.0 1467003913
## 8764 56 131168 4.0 1469228116
## 8765 56 133771 5.0 1467691835
## 8766 56 134170 2.0 1469152845
## 8767 56 134853 5.0 1472582666
## 8768 56 136864 2.0 1467005931
## 8769 56 139116 5.0 1467093091
## 8770 56 139385 4.0 1467005204
## 8771 56 139757 5.0 1467862484
## 8772 56 140715 2.0 1470350745
## 8773 56 141890 4.0 1467095329
## 8774 56 142422 4.0 1468548012
## 8775 56 142488 4.0 1467004133
## 8776 56 146656 5.0 1467005847
## 8777 56 148626 2.0 1470350805
## 8778 56 148881 5.0 1467007293
## 8779 56 152081 4.0 1474951858
## 8780 56 155392 4.0 1467008759
## 8781 56 156609 4.0 1474989255
## 8782 56 160590 5.0 1467095789
## 8783 57 11 5.0 907763065
## 8784 57 17 5.0 907763245
## 8785 57 21 4.0 907763141
## 8786 57 34 5.0 907763018
## 8787 57 110 5.0 907762500
## 8788 57 151 5.0 907763808
## 8789 57 163 4.0 907763847
## 8790 57 164 3.0 907762733
## 8791 57 260 4.0 907765902
## 8792 57 265 5.0 907763245
## 8793 57 293 5.0 907763847
## 8794 57 318 5.0 907762409
## 8795 57 337 5.0 907763101
## 8796 57 350 2.0 907762795
## 8797 57 356 3.0 907763065
## 8798 57 357 5.0 907763324
## 8799 57 380 4.0 907763283
## 8800 57 440 4.0 907763283
## 8801 57 468 4.0 907763141
## 8802 57 497 5.0 907763018
## 8803 57 509 5.0 907763283
## 8804 57 527 5.0 907762409
## 8805 57 534 5.0 907763765
## 8806 57 538 5.0 907762795
## 8807 57 555 4.0 907763283
## 8808 57 590 5.0 907762565
## 8809 57 592 3.0 907764831
## 8810 57 608 5.0 907762501
## 8811 57 635 5.0 907763101
## 8812 57 648 3.0 907762795
## 8813 57 728 5.0 907763141
## 8814 57 800 5.0 907762733
## 8815 57 858 5.0 907765902
## 8816 57 914 5.0 907765600
## 8817 57 921 4.0 907764874
## 8818 57 1007 3.0 907766060
## 8819 57 1009 4.0 907766060
## 8820 57 1028 4.0 907765600
## 8821 57 1035 5.0 907765600
## 8822 57 1036 4.0 907764507
## 8823 57 1073 4.0 907766060
## 8824 57 1079 5.0 907764779
## 8825 57 1080 4.0 907766022
## 8826 57 1081 4.0 907764935
## 8827 57 1088 4.0 907764935
## 8828 57 1091 2.0 907765142
## 8829 57 1092 2.0 907762832
## 8830 57 1094 5.0 907763847
## 8831 57 1097 5.0 907764507
## 8832 57 1101 5.0 907765008
## 8833 57 1124 4.0 907764779
## 8834 57 1125 4.0 907766060
## 8835 57 1127 5.0 907765059
## 8836 57 1128 2.0 907765142
## 8837 57 1129 3.0 907765059
## 8838 57 1130 4.0 907765142
## 8839 57 1135 4.0 907765059
## 8840 57 1136 5.0 907765978
## 8841 57 1148 5.0 907762969
## 8842 57 1185 5.0 907764470
## 8843 57 1186 4.0 907765059
## 8844 57 1193 5.0 907765902
## 8845 57 1194 4.0 907766121
## 8846 57 1196 4.0 907764507
## 8847 57 1197 5.0 907764470
## 8848 57 1198 5.0 907764431
## 8849 57 1200 3.0 907764544
## 8850 57 1208 3.0 907765939
## 8851 57 1214 3.0 907765939
## 8852 57 1220 4.0 907764779
## 8853 57 1221 5.0 907765939
## 8854 57 1222 5.0 907764625
## 8855 57 1224 5.0 907764544
## 8856 57 1225 5.0 907764310
## 8857 57 1227 4.0 907765142
## 8858 57 1234 5.0 907765939
## 8859 57 1240 3.0 907764544
## 8860 57 1242 5.0 907764470
## 8861 57 1243 5.0 907763018
## 8862 57 1246 5.0 907764779
## 8863 57 1252 5.0 907765786
## 8864 57 1258 5.0 907764723
## 8865 57 1259 4.0 907764584
## 8866 57 1263 5.0 907765939
## 8867 57 1265 4.0 907763018
## 8868 57 1270 3.0 907764584
## 8869 57 1272 3.0 907765939
## 8870 57 1275 3.0 907764723
## 8871 57 1278 5.0 907765902
## 8872 57 1286 5.0 907765008
## 8873 57 1288 3.0 907764431
## 8874 57 1291 5.0 907764507
## 8875 57 1296 5.0 907764584
## 8876 57 1299 5.0 907764470
## 8877 57 1302 4.0 907764671
## 8878 57 1307 5.0 907764723
## 8879 57 1321 5.0 907764874
## 8880 57 1323 2.0 907765422
## 8881 57 1326 1.0 907765461
## 8882 57 1327 4.0 907766121
## 8883 57 1345 5.0 907766156
## 8884 57 1346 4.0 907765059
## 8885 57 1347 4.0 907765059
## 8886 57 1350 5.0 907766022
## 8887 57 1357 5.0 907763324
## 8888 57 1358 5.0 907762565
## 8889 57 1378 4.0 907764831
## 8890 57 1380 4.0 907765656
## 8891 57 1387 5.0 907766022
## 8892 57 1393 4.0 907763324
## 8893 57 1394 5.0 907764625
## 8894 57 1408 4.0 907763283
## 8895 57 1422 3.0 907762885
## 8896 57 1459 4.0 907762885
## 8897 57 1476 4.0 907763018
## 8898 57 1587 3.0 907765059
## 8899 57 1589 5.0 907762832
## 8900 57 1597 4.0 907762832
## 8901 57 1617 4.0 907762733
## 8902 57 1625 3.0 907762795
## 8903 57 1641 5.0 907763065
## 8904 57 1645 4.0 907762795
## 8905 57 1663 4.0 907764431
## 8906 57 1674 5.0 907764723
## 8907 57 1704 5.0 907762565
## 8908 57 1719 5.0 907762409
## 8909 57 1721 3.0 907763245
## 8910 57 1732 3.0 907762733
## 8911 57 1754 3.0 907762832
## 8912 57 1784 5.0 907762565
## 8913 57 1892 5.0 907762795
## 8914 57 1909 2.0 907762795
## 8915 57 1914 5.0 907762969
## 8916 57 1917 1.0 907761833
## 8917 57 1918 3.0 907761919
## 8918 57 1923 5.0 907761833
## 8919 57 1947 5.0 907765600
## 8920 57 1951 4.0 907765600
## 8921 57 1953 5.0 907766060
## 8922 57 1954 4.0 907765939
## 8923 57 1955 4.0 907766022
## 8924 57 1956 4.0 907764507
## 8925 57 1957 5.0 907764431
## 8926 57 1958 4.0 907764779
## 8927 57 1961 5.0 907764389
## 8928 57 1962 5.0 907764431
## 8929 57 1964 5.0 907765786
## 8930 57 1967 3.0 907764389
## 8931 57 1968 4.0 907764431
## 8932 57 1974 2.0 907765223
## 8933 57 1975 2.0 907765363
## 8934 57 1977 1.0 907765329
## 8935 57 1978 1.0 907765329
## 8936 57 1979 1.0 907765422
## 8937 57 1981 1.0 907765461
## 8938 57 1982 4.0 907766156
## 8939 57 1983 3.0 907765278
## 8940 57 1984 1.0 907765422
## 8941 57 1987 2.0 907765329
## 8942 57 1994 4.0 907764671
## 8943 57 1995 3.0 907765223
## 8944 57 1996 2.0 907765329
## 8945 57 1997 4.0 907765978
## 8946 57 2000 5.0 907764625
## 8947 57 2001 4.0 907764625
## 8948 57 2003 3.0 907765223
## 8949 57 2005 3.0 907764935
## 8950 57 2006 5.0 907761877
## 8951 57 2009 3.0 907765902
## 8952 57 2013 4.0 907766121
## 8953 57 2020 5.0 907764544
## 8954 57 2027 2.0 907762001
## 8955 57 2028 5.0 907761833
## 8956 57 2037 4.0 907766121
## 8957 57 2044 3.0 907765191
## 8958 57 2054 3.0 907765191
## 8959 57 2070 4.0 907764625
## 8960 57 2088 2.0 907765363
## 8961 57 2097 3.0 907765278
## 8962 57 2100 4.0 907764625
## 8963 57 2109 4.0 907765978
## 8964 57 2110 4.0 907765008
## 8965 57 2111 3.0 907765278
## 8966 57 2114 5.0 907764584
## 8967 57 2115 4.0 907765008
## 8968 57 2118 2.0 907764584
## 8969 57 2121 3.0 907765422
## 8970 57 2122 1.0 907765461
## 8971 57 2125 4.0 907761947
## 8972 57 2130 4.0 907764584
## 8973 57 2143 3.0 907765059
## 8974 57 2144 3.0 907764544
## 8975 57 2153 1.0 907762089
## 8976 57 2161 3.0 907764470
## 8977 57 2163 2.0 907765363
## 8978 57 2174 5.0 907764671
## 8979 57 2178 4.0 907766121
## 8980 57 2193 5.0 907764431
## 8981 57 2194 5.0 907764431
## 8982 57 2240 4.0 907764874
## 8983 57 2245 4.0 907764671
## 8984 57 2268 4.0 907762409
## 8985 57 2288 4.0 907764389
## 8986 57 2291 4.0 907763245
## 8987 57 2300 3.0 907765600
## 8988 57 2301 3.0 907765142
## 8989 57 2302 5.0 907762969
## 8990 57 2313 5.0 907764831
## 8991 57 5060 4.0 907765978
## 8992 58 11 5.0 961127960
## 8993 58 19 1.0 961127638
## 8994 58 150 5.0 961128124
## 8995 58 344 1.0 961127638
## 8996 58 410 3.0 961127638
## 8997 58 415 2.0 961128086
## 8998 58 616 4.0 961128178
## 8999 58 748 4.0 961128239
## 9000 58 909 2.0 961128124
## 9001 58 924 5.0 961127522
## 9002 58 940 2.0 961127724
## 9003 58 952 2.0 961128239
## 9004 58 965 5.0 961127557
## 9005 58 969 5.0 961127724
## 9006 58 999 2.0 961127522
## 9007 58 1007 2.0 961128178
## 9008 58 1019 4.0 961127522
## 9009 58 1021 4.0 961128055
## 9010 58 1127 2.0 961127638
## 9011 58 1200 4.0 961127834
## 9012 58 1203 5.0 961127480
## 9013 58 1214 4.0 961127834
## 9014 58 1225 5.0 961127896
## 9015 58 1230 2.0 961127256
## 9016 58 1269 5.0 961128239
## 9017 58 1320 3.0 961127834
## 9018 58 1321 4.0 961127960
## 9019 58 1367 4.0 961127480
## 9020 58 1459 4.0 961127638
## 9021 58 1499 1.0 961128020
## 9022 58 1517 1.0 961128302
## 9023 58 1608 5.0 961127761
## 9024 58 1690 4.0 961127834
## 9025 58 1784 2.0 961128239
## 9026 58 1917 4.0 961128178
## 9027 58 1927 5.0 961127868
## 9028 58 2015 3.0 961127592
## 9029 58 2016 2.0 961128124
## 9030 58 2072 2.0 961127480
## 9031 58 2085 3.0 961127480
## 9032 58 2124 3.0 961127690
## 9033 58 2133 4.0 961127690
## 9034 58 2153 2.0 961128302
## 9035 58 2163 4.0 961128269
## 9036 58 2180 4.0 961127256
## 9037 58 2202 5.0 961127256
## 9038 58 2311 5.0 961127522
## 9039 58 2475 3.0 961127558
## 9040 58 2505 4.0 961127592
## 9041 58 2520 2.0 961127790
## 9042 58 2522 2.0 961127761
## 9043 58 2551 2.0 961127256
## 9044 58 2683 1.0 961128302
## 9045 58 2788 5.0 961128020
## 9046 58 2791 5.0 961127761
## 9047 58 2792 5.0 961127761
## 9048 58 2817 2.0 961127638
## 9049 58 2827 3.0 961128269
## 9050 58 2846 4.0 961127690
## 9051 58 3070 4.0 961127690
## 9052 58 3153 2.0 961127558
## 9053 58 3251 5.0 961127761
## 9054 58 3420 5.0 961127480
## 9055 58 3421 5.0 961128055
## 9056 58 3510 5.0 961127407
## 9057 58 3524 4.0 961128239
## 9058 58 3535 1.0 961127407
## 9059 58 3555 5.0 961127407
## 9060 58 3649 3.0 961127923
## 9061 58 3672 1.0 961127256
## 9062 58 3701 5.0 961127834
## 9063 58 3706 4.0 961128055
## 9064 58 3710 3.0 961127639
## 9065 59 11 2.5 1144755845
## 9066 59 32 4.5 1144756065
## 9067 59 50 5.0 1144756267
## 9068 59 111 2.5 1144755826
## 9069 59 150 4.0 1144756061
## 9070 59 223 3.5 1144755802
## 9071 59 231 2.0 1144756058
## 9072 59 292 1.0 1144756054
## 9073 59 296 4.0 1144756366
## 9074 59 300 4.5 1144755818
## 9075 59 318 2.5 1144756299
## 9076 59 367 1.5 1144756051
## 9077 59 380 0.5 1144756048
## 9078 59 410 1.5 1144755842
## 9079 59 412 4.0 1144756272
## 9080 59 480 4.5 1144756044
## 9081 59 527 4.5 1144756394
## 9082 59 541 5.0 1144756037
## 9083 59 586 0.5 1144756031
## 9084 59 590 3.5 1144756028
## 9085 59 593 3.5 1144756398
## 9086 59 720 4.5 1144756414
## 9087 59 745 5.0 1144756328
## 9088 59 858 5.0 1144756296
## 9089 59 912 4.0 1144755799
## 9090 59 919 1.5 1144755833
## 9091 59 1136 4.0 1144756017
## 9092 59 1148 5.0 1144756384
## 9093 59 1193 3.5 1144756013
## 9094 59 1213 3.5 1144755855
## 9095 59 1221 5.0 1144755814
## 9096 59 1356 0.5 1144755869
## 9097 59 1673 4.0 1144756209
## 9098 59 1722 1.5 1144756203
## 9099 59 1923 3.0 1144755873
## 9100 59 1961 3.5 1144755823
## 9101 59 1968 2.5 1144756199
## 9102 59 2028 1.5 1144756004
## 9103 59 2105 1.0 1144756192
## 9104 59 2161 0.5 1144756188
## 9105 59 2167 4.0 1144756184
## 9106 59 2193 0.5 1144756181
## 9107 59 2194 3.5 1144756178
## 9108 59 2302 3.5 1144756175
## 9109 59 2329 4.0 1144756386
## 9110 59 2396 3.5 1144755999
## 9111 59 2470 0.5 1144756164
## 9112 59 2542 2.0 1144756161
## 9113 59 2617 4.0 1144756157
## 9114 59 2640 1.0 1144756153
## 9115 59 2671 1.5 1144756141
## 9116 59 2683 1.5 1144755852
## 9117 59 2692 4.0 1144756137
## 9118 59 2716 2.0 1144755809
## 9119 59 2763 1.5 1144756134
## 9120 59 2797 3.0 1144756128
## 9121 59 2858 4.0 1144755992
## 9122 59 2959 4.0 1144755805
## 9123 59 2997 1.5 1144755795
## 9124 59 3253 4.0 1144756119
## 9125 59 3578 4.0 1144756116
## 9126 59 3623 1.0 1144756112
## 9127 59 3751 4.0 1144756109
## 9128 59 3911 3.5 1144756106
## 9129 59 3948 0.5 1144756094
## 9130 59 4306 1.5 1144755866
## 9131 59 4993 4.5 1144755863
## 9132 59 5060 3.5 1144756101
## 9133 59 5349 3.0 1144756087
## 9134 59 5952 5.0 1144756362
## 9135 59 6787 5.0 1144756343
## 9136 59 7040 4.0 1144756281
## 9137 59 7153 5.0 1144756348
## 9138 59 7361 4.0 1144756082
## 9139 59 8961 5.0 1144756336
## 9140 59 26695 3.5 1144756276
## 9141 59 33794 2.0 1144756332
## 9142 59 34153 4.0 1144756402
## 9143 60 16 4.5 1125828814
## 9144 60 21 3.0 1125829035
## 9145 60 111 4.5 1125829229
## 9146 60 163 4.0 1125828888
## 9147 60 173 3.5 1125828860
## 9148 60 235 5.0 1125829070
## 9149 60 466 4.0 1125828890
## 9150 60 541 5.0 1125829154
## 9151 60 608 4.0 1125829157
## 9152 60 653 2.5 1125828818
## 9153 60 720 4.0 1125829203
## 9154 60 745 3.5 1125829207
## 9155 60 858 5.0 1125829174
## 9156 60 1080 4.5 1125828831
## 9157 60 1090 4.0 1125828893
## 9158 60 1208 4.5 1125829194
## 9159 60 1209 4.0 1125829215
## 9160 60 1219 4.5 1125829161
## 9161 60 1221 5.0 1125829152
## 9162 60 1380 1.5 1125828900
## 9163 60 1485 2.5 1125828872
## 9164 60 1653 5.0 1125828865
## 9165 60 1673 4.5 1125829038
## 9166 60 1732 5.0 1125829088
## 9167 60 2012 4.0 1125828843
## 9168 60 2115 3.5 1125828850
## 9169 60 2174 4.0 1125828802
## 9170 60 2324 5.0 1125829168
## 9171 60 2640 4.0 1125828876
## 9172 60 2710 4.5 1125828811
## 9173 60 2797 4.0 1125828806
## 9174 60 3018 3.5 1125829108
## 9175 60 3160 3.5 1125829131
## 9176 60 3608 4.0 1125829115
## 9177 60 3726 3.0 1125829042
## 9178 60 3949 5.0 1125829144
## 9179 60 4973 4.5 1125829233
## 9180 60 5060 5.0 1125828895
## 9181 60 5618 4.0 1125829190
## 9182 60 5690 5.0 1125829218
## 9183 60 5945 4.0 1125829124
## 9184 60 5952 3.0 1125828855
## 9185 60 5959 4.5 1125829077
## 9186 60 5995 5.0 1125829169
## 9187 60 6350 5.0 1125829184
## 9188 60 6502 4.5 1125829017
## 9189 60 6957 3.0 1125829047
## 9190 60 7361 5.0 1125829192
## 9191 60 7387 4.5 1125829007
## 9192 60 8638 5.0 1125829249
## 9193 60 8981 5.0 1125829091
## 9194 60 27773 4.5 1125829180
## 9195 60 27801 3.0 1125828995
## 9196 60 27803 5.0 1125829225
## 9197 60 30749 5.0 1125829142
## 9198 61 2 3.5 1216051639
## 9199 61 34 2.0 1216050806
## 9200 61 48 2.5 1216052245
## 9201 61 50 5.0 1216050620
## 9202 61 104 4.0 1216051937
## 9203 61 158 1.5 1216486613
## 9204 61 231 4.0 1216050783
## 9205 61 317 3.5 1216052001
## 9206 61 364 3.5 1216050872
## 9207 61 500 4.0 1216050755
## 9208 61 551 1.5 1216052048
## 9209 61 585 3.5 1216487185
## 9210 61 586 3.0 1216050910
## 9211 61 587 5.0 1216050728
## 9212 61 588 3.0 1216050688
## 9213 61 592 5.0 1216050426
## 9214 61 593 3.0 1217176111
## 9215 61 594 3.5 1216051901
## 9216 61 595 2.5 1216050607
## 9217 61 596 2.0 1216486577
## 9218 61 616 1.5 1216050050
## 9219 61 661 2.5 1216487081
## 9220 61 673 2.0 1216487462
## 9221 61 801 2.5 1216050212
## 9222 61 919 3.0 1216050981
## 9223 61 953 3.5 1216052355
## 9224 61 1010 3.0 1216050143
## 9225 61 1022 3.0 1216487383
## 9226 61 1028 3.5 1216052159
## 9227 61 1029 2.5 1216487645
## 9228 61 1035 4.0 1216052131
## 9229 61 1059 3.0 1216486917
## 9230 61 1073 2.0 1216050704
## 9231 61 1097 3.5 1216050633
## 9232 61 1136 5.0 1216050881
## 9233 61 1197 5.0 1216050615
## 9234 61 1207 2.5 1217176086
## 9235 61 1220 3.5 1216051628
## 9236 61 1367 2.5 1216487574
## 9237 61 1380 3.5 1216051765
## 9238 61 1500 4.5 1216051684
## 9239 61 1580 3.5 1216050812
## 9240 61 1777 2.0 1216052066
## 9241 61 1907 4.0 1216487286
## 9242 61 1954 2.0 1216051712
## 9243 61 1968 5.0 1216050874
## 9244 61 2018 2.5 1216487345
## 9245 61 2054 2.5 1216051756
## 9246 61 2078 1.5 1216050040
## 9247 61 2080 2.5 1216052376
## 9248 61 2081 3.5 1216051647
## 9249 61 2085 2.5 1216487259
## 9250 61 2087 3.0 1216487390
## 9251 61 2123 2.5 1216050185
## 9252 61 2144 3.0 1216486970
## 9253 61 2161 2.0 1216486558
## 9254 61 2174 2.0 1216050841
## 9255 61 2273 3.0 1216486754
## 9256 61 2300 5.0 1216487561
## 9257 61 2355 3.5 1216050771
## 9258 61 2384 2.0 1216050083
## 9259 61 2502 5.0 1216050948
## 9260 61 2571 4.0 1216050434
## 9261 61 2572 4.0 1216486568
## 9262 61 2716 3.0 1216050558
## 9263 61 2761 3.0 1216487170
## 9264 61 2804 1.0 1216052021
## 9265 61 2857 4.0 1217175852
## 9266 61 2918 4.5 1216050942
## 9267 61 2953 3.0 1216487450
## 9268 61 3114 1.0 1216050711
## 9269 61 3668 2.5 1216050152
## 9270 61 3751 1.5 1216050859
## 9271 61 3988 3.0 1216487130
## 9272 61 4016 1.5 1216487195
## 9273 61 4025 2.5 1217175695
## 9274 61 4232 3.5 1217175825
## 9275 61 4246 3.5 1216051015
## 9276 61 4306 3.5 1216050580
## 9277 61 4333 5.0 1216050173
## 9278 61 4701 2.5 1216486820
## 9279 61 4886 3.0 1216050489
## 9280 61 4890 3.5 1216487437
## 9281 61 4896 3.0 1216050661
## 9282 61 4993 5.0 1217175635
## 9283 61 5299 3.5 1216051026
## 9284 61 5349 4.5 1216050540
## 9285 61 5444 1.0 1216487083
## 9286 61 5449 3.5 1217175814
## 9287 61 5459 3.0 1216051664
## 9288 61 5481 1.5 1216052029
## 9289 61 5618 5.0 1216051166
## 9290 61 5693 3.5 1216050163
## 9291 61 5816 3.0 1216050722
## 9292 61 5952 5.0 1216050467
## 9293 61 5971 5.0 1217175952
## 9294 61 6218 2.5 1217175803
## 9295 61 6350 5.0 1217175973
## 9296 61 6373 3.5 1216051752
## 9297 61 6377 3.0 1216050500
## 9298 61 6539 1.5 1216050627
## 9299 61 6743 2.5 1216050335
## 9300 61 6863 4.5 1216051105
## 9301 61 6936 3.0 1216486831
## 9302 61 7004 4.0 1216487292
## 9303 61 7153 5.0 1216050411
## 9304 61 7161 2.0 1216050274
## 9305 61 7451 4.0 1216487206
## 9306 61 8360 2.0 1216050747
## 9307 61 8368 2.5 1217175562
## 9308 61 8376 0.5 1216052075
## 9309 61 8464 3.0 1217175793
## 9310 61 8544 3.5 1216486608
## 9311 61 8961 4.0 1216050419
## 9312 61 8970 2.5 1217176199
## 9313 61 26662 5.0 1216050266
## 9314 61 27706 3.5 1216487236
## 9315 61 30793 1.5 1216051039
## 9316 61 33004 2.0 1216052080
## 9317 61 33615 2.5 1216487374
## 9318 61 33660 2.0 1217176162
## 9319 61 33679 4.0 1216051779
## 9320 61 33794 5.0 1216050438
## 9321 61 34150 2.5 1216487036
## 9322 61 34162 4.0 1216051096
## 9323 61 40629 3.0 1216487165
## 9324 61 40815 4.0 1216050749
## 9325 61 41566 2.5 1216051161
## 9326 61 44191 5.0 1216050506
## 9327 61 44195 4.5 1216051092
## 9328 61 45431 1.0 1216050246
## 9329 61 45517 2.5 1216052363
## 9330 61 45720 4.0 1216486888
## 9331 61 45722 3.5 1216051047
## 9332 61 46578 5.0 1216050780
## 9333 61 46970 4.0 1216487176
## 9334 61 46972 4.0 1216487276
## 9335 61 46976 3.5 1216051666
## 9336 61 47610 2.5 1216051984
## 9337 61 48394 4.5 1216050612
## 9338 61 48780 5.0 1216050831
## 9339 61 50872 4.0 1216050762
## 9340 61 52973 4.5 1216051143
## 9341 61 53121 3.0 1216487179
## 9342 61 53125 1.0 1216051188
## 9343 61 53322 4.0 1216052121
## 9344 61 53464 2.5 1216050332
## 9345 61 53996 5.0 1216051618
## 9346 61 54001 2.5 1216051008
## 9347 61 54272 2.5 1216050692
## 9348 61 55566 4.0 1216051650
## 9349 61 55830 2.5 1217424458
## 9350 61 56030 3.5 1216050821
## 9351 61 56171 4.0 1216486738
## 9352 61 56174 4.5 1216050758
## 9353 61 56367 4.5 1216050547
## 9354 61 56757 3.0 1216052146
## 9355 61 57640 2.5 1217175527
## 9356 61 57669 4.5 1216487366
## 9357 61 58025 3.0 1216487091
## 9358 61 58559 5.0 1216487357
## 9359 61 58998 5.0 1216487144
## 9360 61 59315 4.0 1216050264
## 9361 61 60069 5.0 1216487413
## 9362 61 60074 3.0 1216486663
## 9363 61 60126 4.0 1216487141
## 9364 62 111 4.0 1451708754
## 9365 62 260 4.0 1451176940
## 9366 62 318 3.5 1451359418
## 9367 62 1196 5.0 1451176947
## 9368 62 1210 4.0 1451359247
## 9369 62 1270 4.5 1451359277
## 9370 62 2028 4.5 1451359280
## 9371 62 2918 4.5 1470457528
## 9372 62 2959 5.0 1451359348
## 9373 62 4226 4.0 1451359336
## 9374 62 5418 4.0 1449594307
## 9375 62 6016 4.0 1451708492
## 9376 62 8665 4.5 1449594323
## 9377 62 48774 4.0 1453318174
## 9378 62 49530 3.5 1452916989
## 9379 62 54286 4.0 1449594346
## 9380 62 58559 5.0 1475948734
## 9381 62 68157 4.5 1451708722
## 9382 62 68237 4.5 1451708228
## 9383 62 69481 3.5 1451707886
## 9384 62 70286 4.0 1451708064
## 9385 62 70862 4.0 1451708831
## 9386 62 79132 5.0 1451708501
## 9387 62 81591 4.0 1451713153
## 9388 62 85414 4.0 1451707852
## 9389 62 91535 3.0 1451708608
## 9390 62 92259 3.0 1451708709
## 9391 62 97304 4.0 1451708035
## 9392 62 101864 3.5 1451708254
## 9393 62 101947 3.5 1451712467
## 9394 62 103228 4.0 1451708272
## 9395 62 104374 5.0 1451178637
## 9396 62 104841 4.0 1451708082
## 9397 62 106782 4.5 1451707972
## 9398 62 106920 4.0 1451708365
## 9399 62 109487 4.5 1451708125
## 9400 62 111759 4.0 1451708157
## 9401 62 112183 3.0 1451706920
## 9402 62 112290 4.0 1451708301
## 9403 62 112552 4.0 1451708010
## 9404 62 114662 3.0 1451178678
## 9405 62 115149 3.0 1451406848
## 9406 62 115569 3.5 1451706930
## 9407 62 115713 4.0 1449594073
## 9408 62 119145 4.5 1465526836
## 9409 62 120637 1.5 1465535480
## 9410 62 122882 5.0 1448760334
## 9411 62 122900 3.5 1453472303
## 9412 62 134130 5.0 1451407005
## 9413 62 134853 5.0 1455413632
## 9414 62 139644 4.5 1451368688
## 9415 62 146656 4.0 1465279438
## 9416 62 160438 4.0 1470457197
## 9417 63 1 5.0 1079098216
## 9418 63 11 3.5 1079098249
## 9419 63 16 5.0 1075307025
## 9420 63 58 0.5 1075307034
## 9421 63 112 3.0 1075307039
## 9422 63 150 4.0 1079098211
## 9423 63 151 0.5 1075307036
## 9424 63 246 0.5 1075307056
## 9425 63 260 5.0 1078570677
## 9426 63 315 1.0 1075307064
## 9427 63 318 5.0 1079098244
## 9428 63 380 3.5 1079098188
## 9429 63 432 4.0 1075307028
## 9430 63 457 3.0 1078570670
## 9431 63 480 4.5 1078570695
## 9432 63 515 1.0 1075307062
## 9433 63 520 3.0 1079098254
## 9434 63 592 5.0 1079098217
## 9435 63 593 4.5 1079098263
## 9436 63 720 4.0 1076323993
## 9437 63 832 2.5 1075307060
## 9438 63 1015 1.5 1076324016
## 9439 63 1059 4.0 1076324042
## 9440 63 1080 4.5 1075307058
## 9441 63 1105 0.5 1076324074
## 9442 63 1193 5.0 1076324053
## 9443 63 1198 5.0 1079098242
## 9444 63 1214 5.0 1076324064
## 9445 63 1221 5.0 1079098258
## 9446 63 1230 1.5 1075307020
## 9447 63 1234 1.0 1075307065
## 9448 63 1259 5.0 1076324068
## 9449 63 1304 4.0 1075307023
## 9450 63 1307 2.0 1079098251
## 9451 63 1356 5.0 1076324056
## 9452 63 1372 3.0 1076324009
## 9453 63 1374 4.0 1075307043
## 9454 63 1376 3.5 1079098265
## 9455 63 1408 4.5 1079098267
## 9456 63 1474 1.0 1076324059
## 9457 63 1513 1.0 1076324000
## 9458 63 1517 4.0 1075307052
## 9459 63 1573 4.0 1078570732
## 9460 63 1610 4.5 1079098253
## 9461 63 1639 5.0 1078570730
## 9462 63 1641 3.0 1078570723
## 9463 63 1917 4.0 1075307050
## 9464 63 1954 4.5 1078570736
## 9465 63 1961 3.5 1078570725
## 9466 63 2004 4.5 1079098304
## 9467 63 2046 4.5 1079098294
## 9468 63 2116 2.5 1079098501
## 9469 63 2174 1.0 1078570715
## 9470 63 2268 4.0 1078570718
## 9471 63 2302 2.0 1078570716
## 9472 63 2393 4.5 1079098301
## 9473 63 2571 4.5 1076324071
## 9474 63 2628 4.5 1079098213
## 9475 63 2640 4.5 1078570740
## 9476 63 2699 4.0 1078570655
## 9477 63 2710 4.0 1079098201
## 9478 63 2762 3.0 1079098192
## 9479 63 2791 4.0 1079098199
## 9480 63 2797 5.0 1078570652
## 9481 63 2858 5.0 1080482377
## 9482 63 2918 5.0 1079098203
## 9483 63 2959 4.5 1075307030
## 9484 63 2987 4.5 1079098190
## 9485 63 2997 4.0 1078570675
## 9486 63 3114 5.0 1078570660
## 9487 63 3176 5.0 1079098196
## 9488 63 3328 4.0 1079098289
## 9489 63 3408 2.0 1078570684
## 9490 63 3471 4.0 1078570650
## 9491 63 3481 5.0 1078570661
## 9492 63 3578 5.0 1079098194
## 9493 63 3751 2.0 1078570672
## 9494 63 3793 4.5 1078570681
## 9495 63 3868 4.5 1076324022
## 9496 63 3869 4.5 1079098275
## 9497 63 3897 4.0 1078570666
## 9498 63 3996 4.0 1075307054
## 9499 63 4022 2.5 1079098205
## 9500 63 4306 5.0 1078570680
## 9501 63 4367 4.0 1079098272
## 9502 63 4369 4.5 1079098286
## 9503 63 4446 4.0 1079098273
## 9504 63 4846 5.0 1076324027
## 9505 63 4993 5.0 1079098495
## 9506 63 5349 5.0 1079098282
## 9507 63 5952 5.0 1076324012
## 9508 63 6333 5.0 1079098246
## 9509 63 6541 2.5 1076324031
## 9510 63 6711 5.0 1079098406
## 9511 63 6863 4.0 1079098400
## 9512 63 7153 5.0 1076324157
## 9513 63 7318 3.5 1079098342
## 9514 64 110 4.0 843159967
## 9515 64 150 3.0 843159644
## 9516 64 153 5.0 843159716
## 9517 64 165 3.0 843159716
## 9518 64 168 3.0 843159967
## 9519 64 231 3.0 843159770
## 9520 64 253 5.0 843159967
## 9521 64 266 5.0 843159967
## 9522 64 296 5.0 843159644
## 9523 64 318 5.0 843159871
## 9524 64 329 4.0 843159770
## 9525 64 344 2.0 843159716
## 9526 64 349 4.0 843159716
## 9527 64 356 4.0 843159871
## 9528 64 380 4.0 843159645
## 9529 64 434 4.0 843159871
## 9530 64 457 4.0 843159770
## 9531 64 590 5.0 843159644
## 9532 64 592 4.0 843159644
## 9533 64 593 5.0 843159770
## 9534 64 595 3.0 843159967
## 9535 65 260 4.0 945118587
## 9536 65 858 5.0 945149894
## 9537 65 909 5.0 945150424
## 9538 65 920 2.0 945118660
## 9539 65 924 4.0 945150571
## 9540 65 1077 5.0 945150514
## 9541 65 1078 5.0 945150514
## 9542 65 1084 5.0 945150037
## 9543 65 1210 2.0 945118792
## 9544 65 1221 4.0 945118614
## 9545 65 1230 5.0 945150175
## 9546 65 1238 2.0 945150351
## 9547 65 1256 4.0 945150351
## 9548 65 1270 3.0 945118543
## 9549 65 1278 5.0 945150424
## 9550 65 1288 3.0 945150278
## 9551 65 1292 5.0 945150473
## 9552 65 1299 5.0 945150037
## 9553 65 1304 4.0 945150395
## 9554 65 1952 4.0 945149894
## 9555 65 1956 3.0 945149834
## 9556 65 2064 5.0 945150395
## 9557 65 2289 4.0 945150395
## 9558 65 2863 5.0 945150351
## 9559 65 2871 4.0 945149894
## 9560 65 2971 5.0 945150011
## 9561 65 5060 5.0 945150351
## 9562 66 21 4.0 974600703
## 9563 66 22 2.0 974599486
## 9564 66 105 2.0 974597659
## 9565 66 110 4.0 974600526
## 9566 66 260 5.0 974600461
## 9567 66 356 4.0 974597735
## 9568 66 377 4.0 974599725
## 9569 66 457 4.0 974599773
## 9570 66 480 5.0 974600656
## 9571 66 589 5.0 974599725
## 9572 66 593 4.0 974599725
## 9573 66 608 4.0 974599074
## 9574 66 832 4.0 974599923
## 9575 66 858 5.0 974600461
## 9576 66 908 4.0 974597684
## 9577 66 1036 5.0 974600526
## 9578 66 1092 4.0 974599834
## 9579 66 1129 4.0 974600198
## 9580 66 1179 4.0 974599434
## 9581 66 1196 4.0 974597627
## 9582 66 1198 5.0 974600461
## 9583 66 1200 3.0 974600108
## 9584 66 1203 5.0 974597659
## 9585 66 1240 5.0 974600108
## 9586 66 1249 4.0 974599773
## 9587 66 1270 4.0 974600108
## 9588 66 1275 3.0 974600728
## 9589 66 1573 3.0 974599861
## 9590 66 1580 3.0 974600572
## 9591 66 1625 4.0 974600012
## 9592 66 1732 2.0 974599543
## 9593 66 1954 5.0 974600600
## 9594 66 2000 5.0 974600491
## 9595 66 2058 4.0 974599923
## 9596 66 2117 5.0 974600198
## 9597 66 2194 5.0 974600526
## 9598 66 2268 4.0 974599074
## 9599 66 2391 3.0 974599434
## 9600 66 2455 3.0 974600144
## 9601 66 2456 2.0 974600286
## 9602 66 2571 3.0 974599773
## 9603 66 2605 4.0 974599597
## 9604 66 2858 4.0 974600366
## 9605 66 2947 5.0 974600526
## 9606 66 2985 4.0 974600198
## 9607 66 3527 3.0 974600703
## 9608 66 3633 5.0 974600656
## 9609 66 3763 5.0 974600626
## 9610 66 3957 3.0 974598446
## 9611 67 1 3.0 854711770
## 9612 67 6 5.0 854711804
## 9613 67 12 3.0 854711916
## 9614 67 16 4.0 854713177
## 9615 67 17 4.0 854711772
## 9616 67 18 4.0 854711941
## 9617 67 28 5.0 854714394
## 9618 67 34 5.0 854714246
## 9619 67 42 3.0 854714498
## 9620 67 43 4.0 854712006
## 9621 67 60 4.0 854714394
## 9622 67 62 3.0 854711772
## 9623 67 86 5.0 854711958
## 9624 67 88 3.0 854711958
## 9625 67 94 3.0 854711941
## 9626 67 95 1.0 854711771
## 9627 67 104 3.0 854711830
## 9628 67 107 3.0 854711884
## 9629 67 110 5.0 854713313
## 9630 67 112 3.0 854711804
## 9631 67 141 1.0 854711771
## 9632 67 151 5.0 854714367
## 9633 67 198 4.0 854714394
## 9634 67 238 3.0 854715870
## 9635 67 260 4.0 854711862
## 9636 67 265 5.0 854713313
## 9637 67 266 3.0 854713176
## 9638 67 272 5.0 854715905
## 9639 67 277 4.0 854714200
## 9640 67 279 5.0 854714227
## 9641 67 280 5.0 854714471
## 9642 67 282 5.0 854714367
## 9643 67 288 4.0 854713176
## 9644 67 293 4.0 854713245
## 9645 67 294 3.0 854714394
## 9646 67 296 5.0 854714282
## 9647 67 314 5.0 854714201
## 9648 67 316 3.0 854713245
## 9649 67 318 5.0 854713313
## 9650 67 337 4.0 854714201
## 9651 67 350 3.0 854714421
## 9652 67 353 5.0 854715906
## 9653 67 356 4.0 854714498
## 9654 67 362 1.0 854713245
## 9655 67 364 5.0 854715906
## 9656 67 368 3.0 854715869
## 9657 67 383 4.0 854714302
## 9658 67 412 5.0 854714283
## 9659 67 431 4.0 854713245
## 9660 67 434 2.0 854715870
## 9661 67 452 5.0 854714498
## 9662 67 454 2.0 854714246
## 9663 67 457 4.0 854713245
## 9664 67 474 3.0 854714439
## 9665 67 475 5.0 854714227
## 9666 67 480 5.0 854713313
## 9667 67 491 4.0 854714315
## 9668 67 493 4.0 854714246
## 9669 67 509 5.0 854713245
## 9670 67 515 5.0 854713177
## 9671 67 524 3.0 854714302
## 9672 67 531 5.0 854713177
## 9673 67 541 4.0 854714282
## 9674 67 553 4.0 854714201
## 9675 67 586 4.0 854713176
## 9676 67 587 3.0 854714282
## 9677 67 589 4.0 854714470
## 9678 67 590 5.0 854713175
## 9679 67 592 3.0 854715905
## 9680 67 593 5.0 854714246
## 9681 67 595 4.0 854714421
## 9682 67 597 5.0 854715870
## 9683 67 609 3.0 854711916
## 9684 67 610 4.0 854714367
## 9685 67 613 4.0 854712026
## 9686 67 616 4.0 854714201
## 9687 67 628 3.0 854711862
## 9688 67 631 3.0 854711941
## 9689 67 637 3.0 854711862
## 9690 67 648 3.0 854711771
## 9691 67 650 5.0 854712060
## 9692 67 653 3.0 854711830
## 9693 67 664 3.0 854712785
## 9694 67 694 3.0 854711978
## 9695 67 707 4.0 854711916
## 9696 67 708 3.0 854711830
## 9697 67 709 4.0 854715869
## 9698 67 711 3.0 854711916
## 9699 67 719 1.0 854711884
## 9700 67 724 3.0 854711916
## 9701 67 733 4.0 854711804
## 9702 67 736 4.0 854711770
## 9703 67 743 2.0 854711884
## 9704 67 780 4.0 854711770
## 9705 67 784 3.0 854711830
## 9706 67 788 3.0 854711830
## 9707 67 849 3.0 854712006
## 9708 67 852 3.0 854711916
## 9709 67 1027 4.0 854714367
## 9710 67 1035 3.0 854714227
## 9711 67 1073 4.0 854711804
## 9712 67 1084 4.0 854713313
## 9713 67 1097 5.0 854714302
## 9714 68 1 4.0 1194741818
## 9715 68 2 3.0 1249809905
## 9716 68 11 3.5 1249808221
## 9717 68 150 4.0 1194743603
## 9718 68 260 3.0 1219476836
## 9719 68 317 3.0 1249808197
## 9720 68 318 4.0 1219476825
## 9721 68 356 4.0 1194741632
## 9722 68 367 3.0 1219477266
## 9723 68 380 4.0 1194741556
## 9724 68 454 4.0 1249807893
## 9725 68 457 4.0 1219476842
## 9726 68 468 3.0 1194740982
## 9727 68 480 4.0 1219476819
## 9728 68 500 4.0 1194741805
## 9729 68 527 3.5 1194741627
## 9730 68 539 3.5 1219477297
## 9731 68 541 3.5 1194741800
## 9732 68 586 3.5 1219477374
## 9733 68 587 4.0 1194743787
## 9734 68 590 3.5 1194741795
## 9735 68 592 3.5 1194741615
## 9736 68 597 3.0 1249809470
## 9737 68 778 2.5 1249807905
## 9738 68 780 3.5 1249809424
## 9739 68 904 4.0 1202605433
## 9740 68 908 4.0 1202605475
## 9741 68 912 4.0 1249807876
## 9742 68 914 4.0 1219474844
## 9743 68 933 3.5 1194741164
## 9744 68 934 3.5 1194741234
## 9745 68 953 4.0 1194742690
## 9746 68 1035 4.0 1219474919
## 9747 68 1073 3.0 1194743811
## 9748 68 1097 4.0 1194742498
## 9749 68 1185 3.5 1194741096
## 9750 68 1196 4.5 1202605483
## 9751 68 1197 3.5 1194742491
## 9752 68 1198 4.0 1202605399
## 9753 68 1200 3.5 1194741774
## 9754 68 1231 4.0 1194740988
## 9755 68 1265 4.5 1194741536
## 9756 68 1270 4.0 1194742462
## 9757 68 1278 4.0 1202605808
## 9758 68 1291 4.5 1249807861
## 9759 68 1292 4.0 1194741068
## 9760 68 1302 4.5 1249808142
## 9761 68 1376 4.0 1249809645
## 9762 68 1393 4.0 1249807853
## 9763 68 1409 3.5 1194741082
## 9764 68 1580 4.0 1194743774
## 9765 68 1608 4.0 1194743647
## 9766 68 1721 3.0 1249809495
## 9767 68 1923 4.0 1194741764
## 9768 68 1951 4.0 1219474926
## 9769 68 1959 4.5 1219474934
## 9770 68 2174 4.0 1249808034
## 9771 68 2384 2.5 1194741124
## 9772 68 2420 3.5 1249808019
## 9773 68 2468 4.0 1249808396
## 9774 68 2469 3.5 1194741217
## 9775 68 2716 4.0 1219477365
## 9776 68 2746 3.5 1194741010
## 9777 68 2762 4.0 1194742454
## 9778 68 2779 3.5 1249808373
## 9779 68 2791 3.5 1194742620
## 9780 68 2797 3.5 1194742605
## 9781 68 2918 4.5 1249807840
## 9782 68 2968 1.0 1249809623
## 9783 68 3072 3.5 1194740954
## 9784 68 3148 1.5 1249808007
## 9785 68 3247 3.0 1249807997
## 9786 68 3510 4.5 1194741025
## 9787 68 3578 2.5 1194743883
## 9788 68 3699 4.0 1194741198
## 9789 68 3755 3.0 1194740965
## 9790 68 4187 4.0 1194741383
## 9791 68 4306 4.5 1194741735
## 9792 68 4886 3.5 1194741657
## 9793 68 4963 3.5 1194744286
## 9794 68 4992 3.5 1249809788
## 9795 68 4993 5.0 1194741498
## 9796 68 4995 4.0 1219474681
## 9797 68 5218 3.5 1249807965
## 9798 68 5299 3.5 1194744599
## 9799 68 5349 4.0 1194742561
## 9800 68 5418 3.5 1194741843
## 9801 68 5816 4.0 1249807951
## 9802 68 5952 5.0 1194741508
## 9803 68 5989 4.0 1194742532
## 9804 68 5995 1.5 1249807943
## 9805 68 6218 3.5 1194744481
## 9806 68 6297 3.5 1194744514
## 9807 68 6373 3.0 1249807928
## 9808 68 6377 3.0 1194741828
## 9809 68 6539 4.0 1202605771
## 9810 68 6863 3.5 1194744593
## 9811 68 6874 1.0 1194741643
## 9812 68 7147 3.5 1194741823
## 9813 68 7153 5.0 1194741503
## 9814 68 7361 3.0 1194741682
## 9815 68 8360 4.5 1194744465
## 9816 68 8529 3.0 1194742776
## 9817 68 8623 4.0 1249808534
## 9818 68 8636 4.0 1346824858
## 9819 68 8865 3.5 1249808268
## 9820 68 8961 4.0 1194742060
## 9821 68 8972 4.0 1194741870
## 9822 68 26025 3.5 1255153332
## 9823 68 26562 4.0 1194741909
## 9824 68 30707 2.5 1219474832
## 9825 68 30749 3.0 1194742092
## 9826 68 30812 3.0 1194742744
## 9827 68 31374 4.0 1292732192
## 9828 68 31658 3.5 1346824829
## 9829 68 31685 4.0 1194744606
## 9830 68 33004 2.5 1194741316
## 9831 68 45431 3.5 1194744575
## 9832 68 45517 3.5 1194744487
## 9833 68 45668 3.5 1249809801
## 9834 68 46976 3.5 1194744213
## 9835 68 54259 3.5 1202605564
## 9836 68 56367 4.5 1219474721
## 9837 69 1 5.0 1366831110
## 9838 69 2 3.5 1366831701
## 9839 69 5 5.0 1366831985
## 9840 69 19 4.0 1366831735
## 9841 69 34 4.0 1366831572
## 9842 69 39 4.5 1366831626
## 9843 69 48 4.5 1366831972
## 9844 69 104 4.0 1366831788
## 9845 69 158 3.0 1366831962
## 9846 69 231 4.0 1366831564
## 9847 69 262 4.0 1348153664
## 9848 69 296 3.5 1366831100
## 9849 69 318 5.0 1366830848
## 9850 69 344 4.0 1366831253
## 9851 69 356 5.0 1366831102
## 9852 69 357 5.0 1366831615
## 9853 69 364 5.0 1366831266
## 9854 69 374 3.5 1348153638
## 9855 69 410 3.5 1366831784
## 9856 69 500 3.5 1366831290
## 9857 69 527 5.0 1366830854
## 9858 69 586 4.5 1366831610
## 9859 69 587 5.0 1366831598
## 9860 69 595 4.0 1366831275
## 9861 69 596 3.0 1366831955
## 9862 69 597 4.5 1366831566
## 9863 69 788 2.0 1366831769
## 9864 69 919 4.5 1366831679
## 9865 69 934 5.0 1348153757
## 9866 69 1020 4.5 1348153603
## 9867 69 1028 3.0 1366831950
## 9868 69 1035 4.5 1366831980
## 9869 69 1073 4.5 1366831595
## 9870 69 1193 5.0 1366830860
## 9871 69 1265 4.5 1366831588
## 9872 69 1270 5.0 1366831245
## 9873 69 1513 3.5 1348153569
## 9874 69 1682 5.0 1366831673
## 9875 69 1704 5.0 1366831619
## 9876 69 1721 4.5 1366831288
## 9877 69 1954 3.5 1366831929
## 9878 69 1968 4.5 1366831711
## 9879 69 2011 4.5 1366831778
## 9880 69 2012 4.5 1366831752
## 9881 69 2028 4.5 1366831268
## 9882 69 2054 2.5 1366831811
## 9883 69 2059 3.5 1348153818
## 9884 69 2136 1.0 1348153829
## 9885 69 2240 4.5 1348153964
## 9886 69 2302 4.5 1366831892
## 9887 69 2321 4.0 1366831968
## 9888 69 2355 4.5 1366831744
## 9889 69 2379 3.5 1348153794
## 9890 69 2706 4.0 1366831662
## 9891 69 2918 5.0 1366831695
## 9892 69 2987 4.5 1366831713
## 9893 69 3114 5.0 1366831681
## 9894 69 3253 4.5 1366832014
## 9895 69 3668 2.5 1348153841
## 9896 69 3791 4.0 1348153799
## 9897 69 3821 0.5 1348153863
## 9898 69 3948 3.5 1366831871
## 9899 69 3977 3.5 1366831839
## 9900 69 4254 3.5 1348153974
## 9901 69 4306 5.0 1366831576
## 9902 69 4878 3.5 1366831823
## 9903 69 4886 5.0 1366831687
## 9904 69 4896 4.5 1366831855
## 9905 69 4993 5.0 1366831289
## 9906 69 5308 4.0 1348153821
## 9907 69 5349 3.5 1366831708
## 9908 69 5816 4.5 1366831993
## 9909 69 5952 5.0 1366831574
## 9910 69 6377 5.0 1366831715
## 9911 69 6539 4.0 1366831670
## 9912 69 7153 5.0 1366831604
## 9913 69 7361 4.5 1366831756
## 9914 69 8961 4.0 1366831801
## 9915 69 58047 3.0 1348154058
## 9916 69 68554 4.5 1348155188
## 9917 69 69757 5.0 1348154113
## 9918 70 1 5.0 853954235
## 9919 70 3 5.0 853954323
## 9920 70 5 5.0 853954323
## 9921 70 7 3.0 853954323
## 9922 70 9 3.0 853954486
## 9923 70 12 3.0 853954577
## 9924 70 14 3.0 853954402
## 9925 70 17 4.0 853954235
## 9926 70 25 5.0 853954235
## 9927 70 26 5.0 853954729
## 9928 70 32 4.0 853954234
## 9929 70 36 4.0 853954322
## 9930 70 52 4.0 853954401
## 9931 70 58 5.0 853954401
## 9932 70 61 4.0 853954813
## 9933 70 62 5.0 853954235
## 9934 70 63 4.0 853954893
## 9935 70 65 3.0 853954577
## 9936 70 76 4.0 853954729
## 9937 70 79 4.0 853954485
## 9938 70 81 4.0 853954893
## 9939 70 82 4.0 853954893
## 9940 70 86 4.0 853954813
## 9941 70 88 3.0 853954814
## 9942 70 92 5.0 853954814
## 9943 70 95 5.0 853954235
## 9944 70 100 4.0 853954577
## 9945 70 104 3.0 853954401
## 9946 70 107 5.0 853954577
## 9947 70 112 5.0 853954323
## 9948 70 135 4.0 853954485
## 9949 70 141 5.0 853954235
## 9950 70 376 4.0 853954323
## 9951 70 494 3.0 853954323
## 9952 70 608 5.0 853954322
## 9953 70 609 5.0 853954656
## 9954 70 613 5.0 853955020
## 9955 70 628 5.0 853954485
## 9956 70 631 5.0 853954656
## 9957 70 637 3.0 853954485
## 9958 70 640 3.0 853954656
## 9959 70 648 3.0 853954235
## 9960 70 653 5.0 853954402
## 9961 70 661 5.0 853954485
## 9962 70 663 3.0 853954814
## 9963 70 667 5.0 853954729
## 9964 70 671 3.0 853954729
## 9965 70 673 3.0 853954814
## 9966 70 694 5.0 853954893
## 9967 70 704 4.0 853954893
## 9968 70 707 5.0 853954656
## 9969 70 708 5.0 853954401
## 9970 70 711 4.0 853954656
## 9971 70 719 4.0 853954577
## 9972 70 724 3.0 853954577
## 9973 70 733 5.0 853954323
## 9974 70 736 4.0 853954235
## 9975 70 737 3.0 853954485
## 9976 70 743 3.0 853954577
## 9977 70 745 4.0 853954813
## 9978 70 748 3.0 853954729
## 9979 70 761 3.0 853954656
## 9980 70 762 4.0 853954485
## 9981 70 780 4.0 853954234
## 9982 70 784 3.0 853954402
## 9983 70 785 5.0 853954893
## 9984 70 786 5.0 853954401
## 9985 70 788 5.0 853954401
## 9986 70 799 4.0 853955020
## 9987 70 802 5.0 853954577
## 9988 70 805 5.0 853954577
## 9989 70 810 3.0 853954814
## 9990 70 832 5.0 853954656
## 9991 70 839 5.0 853954813
## 9992 70 849 5.0 853955020
## 9993 70 852 5.0 853954656
## 9994 70 880 4.0 853955020
## 9995 70 891 4.0 853954893
## 9996 70 1059 5.0 853955020
## 9997 70 1061 5.0 853955020
## 9998 70 1073 5.0 853954401
## 9999 70 1356 5.0 853954485
## 10000 70 1367 5.0 853955020
## 10001 71 581 4.0 974659023
## 10002 71 589 3.0 974659502
## 10003 71 908 5.0 974659502
## 10004 71 1171 5.0 974659646
## 10005 71 1259 4.0 974659502
## 10006 71 1284 5.0 974659502
## 10007 71 1617 5.0 974659023
## 10008 71 1673 4.0 974659502
## 10009 71 1957 4.0 974659023
## 10010 71 2858 5.0 974659408
## 10011 71 3098 4.0 974659023
## 10012 71 3125 4.0 974658951
## 10013 71 3160 5.0 974659408
## 10014 71 3422 3.0 974659023
## 10015 71 3481 4.0 974659502
## 10016 71 3626 4.0 974659408
## 10017 71 3920 5.0 974659502
## 10018 71 3925 5.0 974659646
## 10019 71 3930 4.0 974659408
## 10020 71 3932 4.0 974659593
## 10021 71 3963 3.0 974659408
## 10022 71 3965 4.0 974659696
## 10023 71 3966 5.0 974659408
## 10024 72 1 3.5 1461778737
## 10025 72 2 2.5 1461784724
## 10026 72 47 3.5 1461784392
## 10027 72 50 4.0 1461778528
## 10028 72 110 3.5 1461784365
## 10029 72 150 3.5 1461784569
## 10030 72 260 3.0 1461778719
## 10031 72 296 4.0 1461778730
## 10032 72 318 4.0 1461778524
## 10033 72 356 4.0 1461778698
## 10034 72 480 3.0 1461778746
## 10035 72 527 4.0 1461778534
## 10036 72 541 4.0 1461784459
## 10037 72 593 3.5 1461778557
## 10038 72 608 4.0 1461784432
## 10039 72 778 4.0 1461784481
## 10040 72 858 4.5 1461778530
## 10041 72 912 3.5 1461784591
## 10042 72 924 4.0 1461784596
## 10043 72 1036 3.0 1461784428
## 10044 72 1196 3.0 1461778739
## 10045 72 1200 3.0 1461784475
## 10046 72 1206 4.0 1461784499
## 10047 72 1208 4.0 1461784671
## 10048 72 1213 4.0 1461778560
## 10049 72 1221 4.0 1461778537
## 10050 72 1222 4.0 1461784640
## 10051 72 1246 3.5 1461784644
## 10052 72 1258 4.0 1461784494
## 10053 72 1270 3.0 1461778751
## 10054 72 1682 3.5 1461784424
## 10055 72 1961 3.5 1461784642
## 10056 72 2006 2.5 1461778617
## 10057 72 2028 3.5 1461784345
## 10058 72 2324 4.0 1461784445
## 10059 72 2395 3.5 1461778611
## 10060 72 2571 3.5 1461778692
## 10061 72 2628 3.0 1461784613
## 10062 72 2692 3.5 1461784742
## 10063 72 2762 4.0 1461784405
## 10064 72 2858 4.0 1461784348
## 10065 72 2918 3.0 1461784637
## 10066 72 2959 4.0 1461778563
## 10067 72 3114 3.0 1461784599
## 10068 72 3481 3.0 1461778600
## 10069 72 3578 3.0 1461778760
## 10070 72 3717 1.5 1461784035
## 10071 72 3753 2.5 1461783967
## 10072 72 3793 3.0 1461783836
## 10073 72 3897 3.0 1461783926
## 10074 72 3949 3.5 1461784442
## 10075 72 3996 3.5 1461783857
## 10076 72 4011 3.5 1461783923
## 10077 72 4018 3.0 1461784071
## 10078 72 4022 4.0 1461783913
## 10079 72 4025 1.5 1461784048
## 10080 72 4027 3.5 1461783915
## 10081 72 4226 4.0 1461783834
## 10082 72 4246 2.5 1461783988
## 10083 72 4262 4.0 1461784652
## 10084 72 4306 3.0 1461784367
## 10085 72 4447 3.0 1461784065
## 10086 72 4720 3.5 1461784011
## 10087 72 4878 4.0 1461783905
## 10088 72 4886 3.0 1461783845
## 10089 72 4963 3.0 1461783869
## 10090 72 4973 3.5 1461783841
## 10091 72 4979 3.5 1461783980
## 10092 72 4993 3.0 1461778717
## 10093 72 4995 3.5 1461783881
## 10094 72 5218 2.5 1461783975
## 10095 72 5349 3.0 1461783872
## 10096 72 5378 3.0 1461784578
## 10097 72 5418 3.0 1461783889
## 10098 72 5445 3.5 1461783865
## 10099 72 5679 3.0 1461784050
## 10100 72 5903 2.5 1461784730
## 10101 72 5952 3.0 1461778734
## 10102 72 5989 3.5 1461783920
## 10103 72 5995 3.5 1461783992
## 10104 72 6333 2.5 1461784606
## 10105 72 6377 3.0 1461783846
## 10106 72 6502 3.5 1461783983
## 10107 72 6539 3.0 1461783838
## 10108 72 6711 4.0 1461784616
## 10109 72 6863 3.0 1461784038
## 10110 72 6874 3.5 1461783871
## 10111 72 6934 2.0 1461783970
## 10112 72 7143 3.0 1461784533
## 10113 72 7147 3.5 1461783960
## 10114 72 7153 3.0 1461778706
## 10115 72 7254 3.0 1461784490
## 10116 72 7361 3.5 1461783867
## 10117 72 7438 3.0 1461783898
## 10118 72 7458 2.5 1461784661
## 10119 72 7502 3.5 1461784505
## 10120 72 8644 3.0 1461784473
## 10121 72 8874 3.0 1461783972
## 10122 72 8950 3.5 1461784759
## 10123 72 8961 2.0 1461783887
## 10124 72 31696 3.0 1461784763
## 10125 72 33794 3.0 1461783896
## 10126 72 36529 3.5 1461784702
## 10127 72 41566 3.0 1461784573
## 10128 72 44191 3.5 1461784364
## 10129 72 44195 3.5 1461784711
## 10130 72 45447 2.5 1461784674
## 10131 72 46578 3.0 1461783948
## 10132 72 47610 3.0 1461784566
## 10133 72 48385 3.0 1461784585
## 10134 72 48394 3.5 1461783951
## 10135 72 48516 3.5 1461784370
## 10136 72 49272 3.0 1461783936
## 10137 72 50872 4.0 1464722870
## 10138 72 51255 3.0 1464722875
## 10139 72 51540 3.0 1464723963
## 10140 72 51662 3.0 1461783977
## 10141 72 52281 3.5 1464723975
## 10142 72 52722 1.5 1464722915
## 10143 72 52973 2.5 1464722908
## 10144 72 53000 3.5 1464723971
## 10145 72 53125 3.0 1464722892
## 10146 72 53322 2.5 1464723952
## 10147 72 53519 3.5 1464723990
## 10148 72 53972 3.0 1464723959
## 10149 72 53996 2.0 1461784655
## 10150 72 54001 2.5 1464723939
## 10151 72 54259 3.0 1464723955
## 10152 72 54272 3.5 1464722900
## 10153 72 54286 3.0 1461783945
## 10154 72 54503 3.0 1461784582
## 10155 72 54997 3.5 1464723948
## 10156 72 55247 3.5 1461784515
## 10157 72 55269 3.5 1464723984
## 10158 72 55765 3.0 1464723945
## 10159 72 55820 5.0 1464722872
## 10160 72 56174 3.0 1464722878
## 10161 72 56367 4.0 1464722868
## 10162 72 56757 3.5 1464723967
## 10163 72 56782 4.0 1461784650
## 10164 72 58559 3.5 1461778714
## 10165 72 59315 3.0 1461784352
## 10166 72 60069 4.0 1461778757
## 10167 72 61323 3.5 1461784770
## 10168 72 64957 3.5 1461784524
## 10169 72 68157 3.5 1461783955
## 10170 72 68319 2.0 1461784744
## 10171 72 68358 3.0 1461784013
## 10172 72 68954 4.0 1461778742
## 10173 72 69122 2.0 1461784029
## 10174 72 72998 2.0 1461783938
## 10175 72 74458 3.0 1461784053
## 10176 72 79132 3.5 1461778701
## 10177 72 79702 3.0 1461784665
## 10178 72 81562 3.5 1461784766
## 10179 72 81591 3.5 1461784449
## 10180 72 82459 3.5 1461784739
## 10181 72 86882 3.5 1461784720
## 10182 72 88140 3.0 1461784574
## 10183 72 88744 3.5 1461784563
## 10184 72 89492 3.5 1461784704
## 10185 72 89745 2.5 1461784358
## 10186 72 91529 3.0 1461778763
## 10187 72 92259 4.0 1461784402
## 10188 72 94959 4.0 1461784545
## 10189 72 97752 2.5 1461784734
## 10190 72 97938 3.0 1461784588
## 10191 72 99114 3.5 1461778748
## 10192 72 102445 3.0 1461784567
## 10193 72 103249 2.5 1461784749
## 10194 72 104374 3.5 1461784700
## 10195 72 104841 3.5 1461784437
## 10196 72 105844 3.5 1461784698
## 10197 72 106100 3.5 1461784548
## 10198 72 106920 4.0 1461784455
## 10199 72 109487 3.5 1461778724
## 10200 72 112552 3.5 1461784387
## 10201 72 112852 3.0 1461784379
## 10202 72 114662 1.0 1461784707
## 10203 72 115713 3.5 1461784342
## 10204 72 116797 3.5 1461778744
## 10205 72 117176 3.5 1461784635
## 10206 72 122882 4.0 1461778755
## 10207 72 122886 3.0 1461778642
## 10208 72 122904 3.0 1461778637
## 10209 72 122920 3.0 1461778586
## 10210 72 134130 3.5 1461778626
## 10211 72 136864 1.0 1461784183
## 10212 72 139385 3.5 1461784683
## 10213 72 142488 3.0 1461778632
## 10214 72 156607 2.0 1461784162
## 10215 73 1 5.0 1303464840
## 10216 73 2 2.5 1255595527
## 10217 73 6 4.5 1337593559
## 10218 73 10 3.0 1255591764
## 10219 73 15 2.5 1255593501
## 10220 73 16 4.0 1255508530
## 10221 73 19 1.5 1255501766
## 10222 73 21 3.5 1255597031
## 10223 73 25 4.5 1337593272
## 10224 73 31 3.5 1255591860
## 10225 73 32 5.0 1354676110
## 10226 73 34 2.5 1255606447
## 10227 73 36 4.5 1339744008
## 10228 73 39 4.0 1255505029
## 10229 73 44 3.0 1255596165
## 10230 73 47 5.0 1255503386
## 10231 73 48 2.0 1255608841
## 10232 73 50 5.0 1255502804
## 10233 73 60 2.0 1470720095
## 10234 73 63 3.5 1304411684
## 10235 73 65 2.0 1255587668
## 10236 73 69 4.0 1255851405
## 10237 73 70 3.5 1255596154
## 10238 73 98 3.0 1406172306
## 10239 73 101 3.5 1312496282
## 10240 73 104 2.5 1255843848
## 10241 73 107 3.0 1255742407
## 10242 73 110 4.0 1255508598
## 10243 73 111 3.5 1255502716
## 10244 73 112 3.5 1348568488
## 10245 73 145 3.0 1255596442
## 10246 73 147 4.5 1283940446
## 10247 73 150 3.5 1286701620
## 10248 73 153 1.0 1281668214
## 10249 73 158 2.0 1255608880
## 10250 73 160 3.0 1255506790
## 10251 73 163 3.5 1255505013
## 10252 73 165 3.5 1255608532
## 10253 73 168 2.5 1256018505
## 10254 73 169 0.5 1255587428
## 10255 73 172 3.5 1255503714
## 10256 73 173 3.0 1255587153
## 10257 73 175 4.5 1255850905
## 10258 73 177 3.0 1470720332
## 10259 73 180 3.5 1255593273
## 10260 73 185 2.5 1256030057
## 10261 73 193 3.0 1266049987
## 10262 73 198 4.0 1406171781
## 10263 73 208 3.0 1255503373
## 10264 73 215 5.0 1456039608
## 10265 73 216 4.0 1304411592
## 10266 73 223 4.5 1411810971
## 10267 73 231 3.5 1264835146
## 10268 73 233 4.0 1406171065
## 10269 73 235 4.0 1255508717
## 10270 73 239 3.0 1437711199
## 10271 73 246 4.5 1255585670
## 10272 73 247 4.0 1378180010
## 10273 73 253 3.5 1255506785
## 10274 73 256 2.5 1369513505
## 10275 73 258 2.0 1470720392
## 10276 73 260 4.5 1255508202
## 10277 73 266 4.0 1398568231
## 10278 73 267 3.0 1304411765
## 10279 73 288 3.5 1255844977
## 10280 73 292 3.0 1255597661
## 10281 73 293 5.0 1306826434
## 10282 73 296 5.0 1255502790
## 10283 73 300 4.0 1290089214
## 10284 73 316 3.0 1256029728
## 10285 73 318 5.0 1255502795
## 10286 73 319 4.0 1260597912
## 10287 73 322 4.5 1311319243
## 10288 73 327 2.5 1255849588
## 10289 73 333 2.0 1255609029
## 10290 73 337 3.5 1285414310
## 10291 73 338 3.0 1255593485
## 10292 73 344 2.0 1255501759
## 10293 73 349 3.0 1256029720
## 10294 73 352 3.5 1470720434
## 10295 73 353 4.0 1255509139
## 10296 73 356 5.0 1255844449
## 10297 73 364 5.0 1303464829
## 10298 73 367 2.0 1255947440
## 10299 73 368 3.0 1457597096
## 10300 73 374 2.5 1255597004
## 10301 73 377 3.0 1256030041
## 10302 73 380 3.0 1255594331
## 10303 73 407 3.5 1280749457
## 10304 73 409 2.5 1255501745
## 10305 73 410 2.5 1255597090
## 10306 73 413 2.5 1255596999
## 10307 73 428 4.0 1311318950
## 10308 73 431 3.5 1255502945
## 10309 73 435 2.5 1304412304
## 10310 73 441 3.5 1255508982
## 10311 73 442 3.5 1304412090
## 10312 73 456 4.0 1289377723
## 10313 73 457 4.0 1261572758
## 10314 73 466 2.5 1304411724
## 10315 73 471 4.0 1296460183
## 10316 73 474 3.5 1255608640
## 10317 73 480 4.0 1255503366
## 10318 73 481 3.5 1255507407
## 10319 73 482 4.0 1429168457
## 10320 73 485 3.0 1287294447
## 10321 73 493 4.0 1255503176
## 10322 73 497 3.5 1255845005
## 10323 73 500 3.5 1272354528
## 10324 73 502 3.0 1470720213
## 10325 73 507 3.5 1470896986
## 10326 73 508 4.0 1261572653
## 10327 73 510 0.5 1255593983
## 10328 73 514 3.5 1470720182
## 10329 73 520 4.0 1255595145
## 10330 73 522 3.0 1255850852
## 10331 73 527 5.0 1255844407
## 10332 73 541 4.5 1255508022
## 10333 73 551 3.5 1255844972
## 10334 73 553 4.0 1311651342
## 10335 73 555 4.0 1255502930
## 10336 73 575 3.5 1255596533
## 10337 73 585 2.5 1470719734
## 10338 73 586 3.5 1255608112
## 10339 73 588 5.0 1303464853
## 10340 73 589 3.0 1255595915
## 10341 73 590 4.5 1255594321
## 10342 73 592 4.0 1255504505
## 10343 73 593 4.5 1281307627
## 10344 73 594 3.5 1255844780
## 10345 73 595 4.5 1303464866
## 10346 73 596 3.5 1255844932
## 10347 73 597 3.0 1256030046
## 10348 73 608 4.0 1255502799
## 10349 73 610 1.5 1398568108
## 10350 73 628 4.5 1314943073
## 10351 73 631 3.0 1470720316
## 10352 73 648 3.0 1255845002
## 10353 73 653 2.5 1256030164
## 10354 73 673 3.0 1255506758
## 10355 73 694 3.0 1470720292
## 10356 73 704 3.0 1470720380
## 10357 73 708 2.5 1256018210
## 10358 73 719 2.5 1422335223
## 10359 73 733 3.0 1256029754
## 10360 73 735 4.0 1448953137
## 10361 73 736 1.5 1255608540
## 10362 73 737 2.5 1256030591
## 10363 73 741 4.0 1264405840
## 10364 73 742 2.5 1470720372
## 10365 73 745 4.0 1255588345
## 10366 73 748 3.5 1283940897
## 10367 73 761 2.5 1470720219
## 10368 73 778 5.0 1255862403
## 10369 73 780 3.5 1457596624
## 10370 73 784 1.0 1255591836
## 10371 73 785 3.5 1304411666
## 10372 73 786 2.0 1398568202
## 10373 73 788 2.5 1255606772
## 10374 73 799 3.5 1348567967
## 10375 73 802 3.0 1418785517
## 10376 73 832 2.5 1256030174
## 10377 73 849 3.5 1255500962
## 10378 73 858 5.0 1255584436
## 10379 73 880 2.5 1255849976
## 10380 73 904 4.5 1255584412
## 10381 73 909 4.0 1255608074
## 10382 73 919 4.0 1315979781
## 10383 73 924 1.5 1255501638
## 10384 73 940 4.5 1255501801
## 10385 73 968 4.0 1255607784
## 10386 73 1015 3.5 1470720223
## 10387 73 1020 3.0 1255594607
## 10388 73 1022 3.5 1303464880
## 10389 73 1025 3.5 1279948049
## 10390 73 1027 3.5 1337594349
## 10391 73 1029 3.0 1256030424
## 10392 73 1032 3.0 1255595609
## 10393 73 1033 3.5 1282638702
## 10394 73 1036 4.5 1255508391
## 10395 73 1049 3.5 1255743474
## 10396 73 1059 3.5 1255609078
## 10397 73 1060 4.0 1255506740
## 10398 73 1061 4.0 1255947496
## 10399 73 1080 4.5 1255608654
## 10400 73 1089 3.5 1255844891
## 10401 73 1090 5.0 1255506732
## 10402 73 1093 2.0 1255595979
## 10403 73 1094 3.5 1411355622
## 10404 73 1097 4.0 1255504951
## 10405 73 1101 3.5 1255595920
## 10406 73 1120 3.5 1255609131
## 10407 73 1127 4.0 1262660448
## 10408 73 1129 4.0 1255502910
## 10409 73 1136 3.0 1255508109
## 10410 73 1148 4.0 1255588350
## 10411 73 1185 4.0 1255596971
## 10412 73 1186 3.5 1280749995
## 10413 73 1193 4.5 1266581514
## 10414 73 1194 4.0 1255503156
## 10415 73 1196 5.0 1255502779
## 10416 73 1197 5.0 1255506722
## 10417 73 1198 5.0 1255508049
## 10418 73 1199 4.5 1428469603
## 10419 73 1200 5.0 1311651122
## 10420 73 1201 5.0 1348568040
## 10421 73 1203 4.5 1255501601
## 10422 73 1204 5.0 1255504946
## 10423 73 1206 4.5 1404370293
## 10424 73 1208 5.0 1255844483
## 10425 73 1210 5.0 1255508757
## 10426 73 1213 5.0 1306826464
## 10427 73 1214 5.0 1326419215
## 10428 73 1215 4.5 1255502137
## 10429 73 1218 4.5 1339744073
## 10430 73 1220 3.5 1270610619
## 10431 73 1221 5.0 1255585464
## 10432 73 1222 4.5 1255506723
## 10433 73 1225 3.0 1255608634
## 10434 73 1228 4.5 1255587798
## 10435 73 1240 4.5 1255596621
## 10436 73 1241 4.0 1464751206
## 10437 73 1242 3.5 1432525150
## 10438 73 1245 4.0 1260977284
## 10439 73 1246 3.5 1256030107
## 10440 73 1252 4.0 1255502888
## 10441 73 1255 4.5 1378180019
## 10442 73 1257 4.0 1296952002
## 10443 73 1258 4.0 1255502784
## 10444 73 1259 3.5 1280749968
## 10445 73 1261 4.5 1268808237
## 10446 73 1262 4.0 1409452810
## 10447 73 1263 4.0 1267705648
## 10448 73 1265 4.0 1255591754
## 10449 73 1266 4.5 1337593473
## 10450 73 1270 5.0 1285479373
## 10451 73 1274 4.5 1302152229
## 10452 73 1275 4.0 1255845402
## 10453 73 1282 4.0 1255606220
## 10454 73 1285 3.5 1312496151
## 10455 73 1288 2.5 1255587965
## 10456 73 1291 5.0 1306826403
## 10457 73 1293 4.5 1255506712
## 10458 73 1298 1.5 1255591944
## 10459 73 1299 3.5 1267705570
## 10460 73 1302 2.0 1255593963
## 10461 73 1320 3.5 1255501914
## 10462 73 1321 3.0 1255501035
## 10463 73 1339 3.0 1255500860
## 10464 73 1342 3.0 1348567962
## 10465 73 1343 4.0 1411355614
## 10466 73 1345 4.0 1255593958
## 10467 73 1347 3.5 1255844967
## 10468 73 1350 3.0 1255608055
## 10469 73 1356 3.5 1437103984
## 10470 73 1358 4.0 1275964521
## 10471 73 1359 2.0 1470720209
## 10472 73 1367 2.5 1470719755
## 10473 73 1370 3.0 1255502875
## 10474 73 1372 3.5 1261667770
## 10475 73 1374 4.0 1350192487
## 10476 73 1377 3.5 1281668223
## 10477 73 1380 4.0 1255594430
## 10478 73 1387 4.0 1255502774
## 10479 73 1391 3.0 1255591429
## 10480 73 1393 4.0 1255596358
## 10481 73 1394 4.0 1296730230
## 10482 73 1396 4.0 1319337546
## 10483 73 1405 3.5 1255500918
## 10484 73 1407 4.0 1464751433
## 10485 73 1408 3.0 1398567944
## 10486 73 1438 2.5 1255501084
## 10487 73 1456 1.0 1255586834
## 10488 73 1464 3.5 1409205998
## 10489 73 1466 4.0 1255508548
## 10490 73 1479 2.5 1255609223
## 10491 73 1485 3.5 1304411853
## 10492 73 1499 2.0 1255502015
## 10493 73 1500 4.0 1369206214
## 10494 73 1515 3.0 1255843935
## 10495 73 1517 3.5 1255591360
## 10496 73 1527 3.5 1255509163
## 10497 73 1544 3.0 1256030207
## 10498 73 1552 2.5 1255597293
## 10499 73 1562 0.5 1255597075
## 10500 73 1566 4.0 1303464772
## 10501 73 1573 3.5 1331374345
## 10502 73 1580 3.0 1255607723
## 10503 73 1584 3.0 1460517728
## 10504 73 1587 4.0 1287294418
## 10505 73 1590 4.5 1406172081
## 10506 73 1591 3.0 1256028479
## 10507 73 1595 0.5 1255586362
## 10508 73 1597 3.5 1255596053
## 10509 73 1599 1.0 1255589046
## 10510 73 1603 2.5 1255597219
## 10511 73 1608 3.5 1255501843
## 10512 73 1617 4.5 1255844622
## 10513 73 1625 4.0 1255591424
## 10514 73 1639 3.5 1311319246
## 10515 73 1644 1.5 1255849480
## 10516 73 1645 3.0 1255609000
## 10517 73 1653 3.5 1295875283
## 10518 73 1673 4.0 1255508776
## 10519 73 1674 3.5 1457597070
## 10520 73 1676 3.0 1255596853
## 10521 73 1681 1.5 1255507319
## 10522 73 1682 4.5 1255509032
## 10523 73 1690 2.0 1255596139
## 10524 73 1704 4.0 1255502769
## 10525 73 1707 1.5 1255845284
## 10526 73 1721 0.5 1256552857
## 10527 73 1729 3.5 1255502846
## 10528 73 1732 4.0 1255584591
## 10529 73 1748 4.0 1354676118
## 10530 73 1752 2.0 1255593683
## 10531 73 1753 4.5 1255844646
## 10532 73 1760 0.5 1255503138
## 10533 73 1762 3.5 1406172191
## 10534 73 1777 3.0 1256030295
## 10535 73 1779 3.0 1257239744
## 10536 73 1784 4.5 1296951840
## 10537 73 1785 3.5 1369514567
## 10538 73 1792 2.5 1255596509
## 10539 73 1826 1.0 1255588837
## 10540 73 1840 3.5 1272354630
## 10541 73 1858 3.0 1470720028
## 10542 73 1862 1.0 1255589167
## 10543 73 1876 2.5 1437709517
## 10544 73 1882 1.0 1255849486
## 10545 73 1884 3.5 1255594560
## 10546 73 1909 3.5 1437709512
## 10547 73 1911 3.0 1411355597
## 10548 73 1912 4.5 1369206547
## 10549 73 1916 4.0 1381126672
## 10550 73 1917 2.0 1255591355
## 10551 73 1920 2.5 1255596503
## 10552 73 1923 3.0 1255591350
## 10553 73 1953 3.5 1272355372
## 10554 73 1954 4.5 1255506671
## 10555 73 1961 4.0 1255584855
## 10556 73 1965 3.5 1431232609
## 10557 73 1967 5.0 1306826395
## 10558 73 1968 4.5 1331019382
## 10559 73 1974 3.5 1255845278
## 10560 73 1982 4.0 1255591608
## 10561 73 1991 3.5 1255742786
## 10562 73 1994 4.0 1464751442
## 10563 73 1997 4.0 1255502851
## 10564 73 2000 4.0 1255608727
## 10565 73 2003 4.5 1262056348
## 10566 73 2004 4.0 1262056355
## 10567 73 2005 5.0 1306826463
## 10568 73 2006 3.0 1437103998
## 10569 73 2009 4.0 1406171880
## 10570 73 2011 4.0 1255502841
## 10571 73 2012 2.5 1255595963
## 10572 73 2018 4.5 1255584964
## 10573 73 2021 3.5 1411452543
## 10574 73 2023 2.5 1255595957
## 10575 73 2028 4.5 1255844560
## 10576 73 2033 3.5 1303464933
## 10577 73 2052 3.5 1470720309
## 10578 73 2054 3.5 1255608711
## 10579 73 2058 2.5 1304412471
## 10580 73 2060 2.5 1304411648
## 10581 73 2076 4.0 1255503604
## 10582 73 2078 5.0 1255502836
## 10583 73 2080 3.5 1378180034
## 10584 73 2081 3.5 1303464871
## 10585 73 2082 3.5 1282545301
## 10586 73 2087 3.5 1255844937
## 10587 73 2089 3.5 1279948023
## 10588 73 2090 3.5 1437711085
## 10589 73 2093 4.0 1406171622
## 10590 73 2096 3.0 1256027987
## 10591 73 2105 3.0 1255500870
## 10592 73 2115 5.0 1306826405
## 10593 73 2123 4.0 1406171334
## 10594 73 2124 3.5 1255506668
## 10595 73 2134 4.0 1261656604
## 10596 73 2138 4.5 1324634524
## 10597 73 2139 4.0 1303464923
## 10598 73 2140 4.0 1456038593
## 10599 73 2142 3.5 1261656636
## 10600 73 2143 3.5 1300947005
## 10601 73 2144 4.5 1364100089
## 10602 73 2148 3.5 1255844084
## 10603 73 2150 3.0 1255596126
## 10604 73 2159 3.0 1418786181
## 10605 73 2161 3.5 1261656735
## 10606 73 2164 1.0 1255589018
## 10607 73 2167 3.0 1256030336
## 10608 73 2174 4.0 1255591395
## 10609 73 2193 4.0 1259037014
## 10610 73 2194 4.0 1255584576
## 10611 73 2195 3.0 1304411810
## 10612 73 2231 4.0 1311318965
## 10613 73 2232 4.0 1267705661
## 10614 73 2248 3.5 1411876538
## 10615 73 2252 4.0 1337593722
## 10616 73 2273 3.5 1348568537
## 10617 73 2278 4.0 1259040565
## 10618 73 2288 4.0 1255502833
## 10619 73 2289 4.0 1267705538
## 10620 73 2291 3.5 1255593907
## 10621 73 2294 3.5 1255502070
## 10622 73 2302 3.0 1255844988
## 10623 73 2305 4.5 1288697512
## 10624 73 2315 2.5 1255587644
## 10625 73 2318 4.5 1430027806
## 10626 73 2321 3.0 1256030202
## 10627 73 2324 3.5 1255608781
## 10628 73 2327 3.5 1441522263
## 10629 73 2329 4.5 1255501972
## 10630 73 2335 3.0 1255502470
## 10631 73 2340 0.5 1256028414
## 10632 73 2353 2.5 1255742368
## 10633 73 2355 3.0 1255594309
## 10634 73 2360 4.0 1430034069
## 10635 73 2378 3.5 1369513448
## 10636 73 2387 3.5 1255504073
## 10637 73 2391 3.5 1454042117
## 10638 73 2394 3.5 1431234283
## 10639 73 2395 4.5 1381126595
## 10640 73 2396 4.0 1255584959
## 10641 73 2402 3.0 1255593426
## 10642 73 2403 3.5 1255593420
## 10643 73 2404 3.0 1255586748
## 10644 73 2406 3.0 1275964632
## 10645 73 2409 4.0 1255608040
## 10646 73 2410 3.0 1255507270
## 10647 73 2411 3.5 1255844856
## 10648 73 2412 2.0 1255844835
## 10649 73 2420 4.5 1255591400
## 10650 73 2421 4.0 1427170335
## 10651 73 2422 3.0 1427170376
## 10652 73 2424 1.5 1255597066
## 10653 73 2427 4.0 1315969124
## 10654 73 2428 2.0 1255850016
## 10655 73 2429 2.0 1255593663
## 10656 73 2431 4.0 1255608035
## 10657 73 2451 3.5 1261487007
## 10658 73 2455 4.0 1266665318
## 10659 73 2459 4.5 1381045859
## 10660 73 2460 3.0 1441522359
## 10661 73 2467 4.5 1369205876
## 10662 73 2470 3.0 1474615000
## 10663 73 2490 3.5 1255844950
## 10664 73 2495 3.5 1274265898
## 10665 73 2502 4.5 1255508410
## 10666 73 2528 3.5 1406171915
## 10667 73 2529 4.5 1406171911
## 10668 73 2541 2.0 1256030469
## 10669 73 2542 4.5 1255508246
## 10670 73 2551 3.0 1469772944
## 10671 73 2555 1.0 1255586425
## 10672 73 2560 4.0 1275964192
## 10673 73 2571 4.5 1282543426
## 10674 73 2572 3.5 1437709524
## 10675 73 2580 4.5 1296460015
## 10676 73 2582 3.0 1427170447
## 10677 73 2596 4.0 1255844787
## 10678 73 2599 4.5 1429168678
## 10679 73 2605 2.0 1256030461
## 10680 73 2606 3.5 1369514518
## 10681 73 2617 3.5 1464751460
## 10682 73 2628 2.5 1255591345
## 10683 73 2657 2.0 1256944354
## 10684 73 2671 3.0 1437709506
## 10685 73 2683 3.0 1255596353
## 10686 73 2687 4.0 1279948065
## 10687 73 2692 4.5 1357552985
## 10688 73 2694 3.0 1255597830
## 10689 73 2699 3.0 1255502120
## 10690 73 2700 3.5 1255844776
## 10691 73 2701 2.0 1255586467
## 10692 73 2706 3.5 1255501979
## 10693 73 2707 4.0 1312496216
## 10694 73 2710 3.5 1255591385
## 10695 73 2712 4.5 1404370203
## 10696 73 2713 1.5 1255947627
## 10697 73 2716 4.5 1282545089
## 10698 73 2717 3.0 1282545112
## 10699 73 2720 1.0 1255587084
## 10700 73 2722 2.5 1472698650
## 10701 73 2723 3.0 1256019289
## 10702 73 2724 2.5 1304412607
## 10703 73 2728 4.0 1411876466
## 10704 73 2734 3.0 1369513635
## 10705 73 2746 3.0 1259325836
## 10706 73 2761 2.5 1257229357
## 10707 73 2762 4.0 1255508479
## 10708 73 2770 3.0 1255591390
## 10709 73 2791 3.5 1255501853
## 10710 73 2797 3.5 1273043702
## 10711 73 2798 3.0 1255844915
## 10712 73 2804 4.0 1255588083
## 10713 73 2808 2.0 1255596937
## 10714 73 2841 4.0 1314942833
## 10715 73 2858 4.5 1255844727
## 10716 73 2860 3.0 1348568560
## 10717 73 2862 3.5 1255506106
## 10718 73 2867 4.0 1303465749
## 10719 73 2871 4.5 1390127454
## 10720 73 2872 3.5 1255849777
## 10721 73 2879 3.5 1348568747
## 10722 73 2890 3.5 1255509017
## 10723 73 2900 3.0 1464508137
## 10724 73 2901 3.5 1456038664
## 10725 73 2915 3.5 1411355584
## 10726 73 2916 4.0 1348568388
## 10727 73 2918 4.5 1296952036
## 10728 73 2921 4.0 1470985538
## 10729 73 2924 4.5 1427170200
## 10730 73 2947 4.0 1369205974
## 10731 73 2948 4.5 1357552974
## 10732 73 2951 4.0 1470729030
## 10733 73 2952 4.0 1431584423
## 10734 73 2953 2.5 1255849720
## 10735 73 2959 5.0 1309081686
## 10736 73 2968 3.5 1432523188
## 10737 73 2974 1.0 1255586415
## 10738 73 2985 4.0 1337593255
## 10739 73 2987 3.5 1255607717
## 10740 73 2997 4.5 1262056591
## 10741 73 3006 4.5 1334396063
## 10742 73 3013 3.5 1406172160
## 10743 73 3016 4.0 1437710007
## 10744 73 3018 3.5 1261487189
## 10745 73 3019 4.0 1475124698
## 10746 73 3020 4.0 1312496325
## 10747 73 3033 3.5 1255596722
## 10748 73 3034 4.5 1303464905
## 10749 73 3036 4.0 1296730204
## 10750 73 3052 3.0 1255509153
## 10751 73 3070 3.0 1337594327
## 10752 73 3081 2.5 1255503566
## 10753 73 3082 2.5 1255500985
## 10754 73 3101 3.5 1256018249
## 10755 73 3104 4.0 1339743989
## 10756 73 3108 4.0 1267705250
## 10757 73 3113 2.5 1474615285
## 10758 73 3114 4.0 1274265884
## 10759 73 3146 2.0 1255743364
## 10760 73 3147 3.5 1257228558
## 10761 73 3153 4.0 1255606347
## 10762 73 3160 3.5 1255845019
## 10763 73 3173 2.5 1255845250
## 10764 73 3174 4.0 1303466268
## 10765 73 3175 2.5 1255608868
## 10766 73 3178 4.0 1255850836
## 10767 73 3210 3.5 1255508823
## 10768 73 3213 4.5 1281668156
## 10769 73 3252 4.0 1267705304
## 10770 73 3253 3.5 1304411787
## 10771 73 3254 2.5 1256028073
## 10772 73 3255 2.5 1255500852
## 10773 73 3256 3.0 1256030417
## 10774 73 3263 4.0 1255505507
## 10775 73 3265 4.0 1331375405
## 10776 73 3267 3.5 1475124680
## 10777 73 3273 2.5 1255607878
## 10778 73 3275 3.5 1255507224
## 10779 73 3298 4.0 1255504005
## 10780 73 3300 3.5 1369514944
## 10781 73 3328 4.5 1355922434
## 10782 73 3360 3.5 1279948734
## 10783 73 3361 3.5 1261572674
## 10784 73 3362 4.0 1255596921
## 10785 73 3363 4.0 1369513307
## 10786 73 3424 4.0 1281668274
## 10787 73 3426 3.5 1255742725
## 10788 73 3438 3.5 1255592969
## 10789 73 3439 3.0 1255586543
## 10790 73 3440 1.5 1255586548
## 10791 73 3448 3.5 1255597612
## 10792 73 3471 3.0 1264493967
## 10793 73 3476 4.0 1264751860
## 10794 73 3479 4.0 1422335547
## 10795 73 3481 4.0 1320810501
## 10796 73 3489 3.5 1255597607
## 10797 73 3499 4.0 1320810452
## 10798 73 3527 3.5 1282543451
## 10799 73 3535 4.5 1395987897
## 10800 73 3552 4.0 1303466242
## 10801 73 3554 3.0 1255506079
## 10802 73 3555 2.0 1255594378
## 10803 73 3573 0.5 1255588774
## 10804 73 3574 0.5 1255588780
## 10805 73 3578 4.0 1255584828
## 10806 73 3581 4.0 1289045177
## 10807 73 3593 0.5 1255588769
## 10808 73 3617 2.5 1255591380
## 10809 73 3623 2.0 1255608746
## 10810 73 3671 3.0 1255595938
## 10811 73 3681 4.5 1470896634
## 10812 73 3687 3.5 1469772991
## 10813 73 3688 3.0 1255844919
## 10814 73 3696 4.0 1466320273
## 10815 73 3698 4.0 1287294312
## 10816 73 3702 2.5 1258367323
## 10817 73 3703 3.5 1258367400
## 10818 73 3704 3.5 1259389532
## 10819 73 3706 4.5 1464750953
## 10820 73 3717 3.5 1370057557
## 10821 73 3727 3.5 1464751470
## 10822 73 3728 4.0 1418461988
## 10823 73 3735 4.0 1343119731
## 10824 73 3740 3.5 1255596218
## 10825 73 3745 3.5 1259325859
## 10826 73 3751 2.0 1255608143
## 10827 73 3752 2.5 1255594368
## 10828 73 3753 3.0 1255597273
## 10829 73 3755 3.0 1255844941
## 10830 73 3761 4.0 1296459580
## 10831 73 3785 3.0 1255591794
## 10832 73 3793 2.5 1255608592
## 10833 73 3821 1.5 1255608249
## 10834 73 3826 1.5 1257229260
## 10835 73 3843 4.0 1435472709
## 10836 73 3852 3.5 1261573299
## 10837 73 3861 2.5 1255596214
## 10838 73 3882 1.5 1255742451
## 10839 73 3897 4.0 1255859036
## 10840 73 3916 3.5 1255844895
## 10841 73 3917 3.0 1262826535
## 10842 73 3948 4.0 1304411842
## 10843 73 3949 4.0 1255504813
## 10844 73 3950 3.5 1312496194
## 10845 73 3955 3.0 1304411604
## 10846 73 3961 3.0 1255742998
## 10847 73 3962 2.5 1255586357
## 10848 73 3967 3.5 1255849638
## 10849 73 3970 4.5 1431234143
## 10850 73 3972 4.0 1427170187
## 10851 73 3977 2.0 1255608483
## 10852 73 3979 0.5 1255503033
## 10853 73 3986 3.0 1369513586
## 10854 73 3994 2.5 1255596840
## 10855 73 3996 3.5 1255591337
## 10856 73 4002 3.0 1257229345
## 10857 73 4006 4.0 1274265922
## 10858 73 4007 4.0 1396156423
## 10859 73 4011 4.5 1255508282
## 10860 73 4014 4.0 1255584991
## 10861 73 4015 2.5 1255742448
## 10862 73 4018 3.0 1255597278
## 10863 73 4019 3.0 1255845245
## 10864 73 4022 3.0 1255594363
## 10865 73 4025 2.5 1256030443
## 10866 73 4027 4.5 1309414189
## 10867 73 4034 4.5 1256029491
## 10868 73 4054 2.0 1255608233
## 10869 73 4069 1.5 1456038994
## 10870 73 4085 3.5 1255609092
## 10871 73 4103 4.5 1283169534
## 10872 73 4105 4.0 1268808234
## 10873 73 4128 3.5 1255845024
## 10874 73 4135 3.5 1437710061
## 10875 73 4148 3.0 1418462162
## 10876 73 4214 3.5 1255844881
## 10877 73 4223 3.5 1255849756
## 10878 73 4226 4.5 1255508007
## 10879 73 4232 0.5 1255596198
## 10880 73 4239 4.5 1255503937
## 10881 73 4246 2.5 1255608478
## 10882 73 4255 0.5 1255592082
## 10883 73 4262 4.0 1255506569
## 10884 73 4270 2.5 1255596703
## 10885 73 4275 4.0 1411452469
## 10886 73 4299 2.5 1256019294
## 10887 73 4306 4.0 1303464731
## 10888 73 4308 2.5 1257228611
## 10889 73 4310 1.0 1255849364
## 10890 73 4340 2.0 1255845363
## 10891 73 4343 2.5 1255596208
## 10892 73 4344 3.5 1255507158
## 10893 73 4351 4.0 1429168542
## 10894 73 4361 4.0 1255502625
## 10895 73 4367 1.5 1257229023
## 10896 73 4369 5.0 1369515350
## 10897 73 4370 2.5 1255609063
## 10898 73 4378 3.5 1255844800
## 10899 73 4388 2.0 1255596203
## 10900 73 4415 3.5 1255506563
## 10901 73 4437 3.5 1457597545
## 10902 73 4438 4.0 1337593133
## 10903 73 4441 3.0 1428469574
## 10904 73 4443 4.0 1457596520
## 10905 73 4444 4.0 1427170203
## 10906 73 4447 1.5 1255608385
## 10907 73 4448 3.5 1456038999
## 10908 73 4454 3.5 1256944285
## 10909 73 4467 4.5 1427168121
## 10910 73 4488 3.5 1370057531
## 10911 73 4519 5.0 1306826427
## 10912 73 4533 3.0 1255593845
## 10913 73 4553 4.5 1441514881
## 10914 73 4571 3.5 1255596109
## 10915 73 4577 4.0 1448953321
## 10916 73 4614 3.5 1427170442
## 10917 73 4618 3.5 1406172273
## 10918 73 4619 2.5 1296952145
## 10919 73 4621 2.0 1255505425
## 10920 73 4624 4.0 1418462025
## 10921 73 4638 3.0 1255594496
## 10922 73 4641 4.0 1282545187
## 10923 73 4642 4.0 1456039121
## 10924 73 4643 2.5 1255742990
## 10925 73 4697 3.5 1448953270
## 10926 73 4701 3.0 1255845239
## 10927 73 4713 4.5 1409205919
## 10928 73 4718 3.0 1255596106
## 10929 73 4720 3.5 1304411492
## 10930 73 4728 1.5 1255608222
## 10931 73 4734 3.0 1255591538
## 10932 73 4744 1.5 1255594879
## 10933 73 4775 0.5 1255606781
## 10934 73 4776 3.5 1255509080
## 10935 73 4800 4.0 1255505417
## 10936 73 4816 2.0 1255594188
## 10937 73 4823 3.0 1255844809
## 10938 73 4846 4.0 1427170169
## 10939 73 4848 3.5 1272355409
## 10940 73 4855 4.0 1352959815
## 10941 73 4865 3.5 1306826998
## 10942 73 4873 4.0 1295875347
## 10943 73 4874 4.0 1259411120
## 10944 73 4878 4.0 1448953284
## 10945 73 4886 3.0 1255608487
## 10946 73 4890 2.5 1255607838
## 10947 73 4896 3.0 1312496381
## 10948 73 4899 2.0 1456039352
## 10949 73 4915 3.5 1331374381
## 10950 73 4963 3.5 1255844964
## 10951 73 4974 3.0 1255844032
## 10952 73 4975 3.5 1272354473
## 10953 73 4979 4.0 1398567966
## 10954 73 4980 3.5 1255591532
## 10955 73 4987 3.0 1406172104
## 10956 73 4989 3.0 1255504768
## 10957 73 4993 5.0 1306826438
## 10958 73 4995 4.5 1255595932
## 10959 73 5010 4.0 1304412210
## 10960 73 5014 4.5 1315969212
## 10961 73 5025 3.0 1256030678
## 10962 73 5040 3.5 1255592071
## 10963 73 5055 3.0 1255742674
## 10964 73 5064 4.0 1264835164
## 10965 73 5094 0.5 1255586200
## 10966 73 5103 4.0 1273217119
## 10967 73 5110 3.0 1255606569
## 10968 73 5139 3.5 1369514322
## 10969 73 5146 4.0 1262569280
## 10970 73 5151 3.0 1256030657
## 10971 73 5152 3.0 1456039054
## 10972 73 5159 4.0 1406171597
## 10973 73 5165 4.0 1441514214
## 10974 73 5205 3.5 1448953334
## 10975 73 5210 3.5 1435472845
## 10976 73 5218 3.0 1304411962
## 10977 73 5219 3.0 1255844887
## 10978 73 5244 5.0 1387082402
## 10979 73 5266 3.5 1448953194
## 10980 73 5283 3.0 1255593557
## 10981 73 5294 3.5 1395987921
## 10982 73 5299 3.0 1460517505
## 10983 73 5313 2.0 1456039090
## 10984 73 5329 4.5 1306065234
## 10985 73 5349 4.0 1348568293
## 10986 73 5378 3.0 1255591376
## 10987 73 5388 3.0 1255591889
## 10988 73 5401 3.0 1304411695
## 10989 73 5418 3.0 1256017396
## 10990 73 5445 3.0 1255503508
## 10991 73 5449 3.0 1255503893
## 10992 73 5452 1.0 1256030597
## 10993 73 5459 2.0 1255608382
## 10994 73 5463 3.0 1456039073
## 10995 73 5464 3.5 1304412191
## 10996 73 5481 2.0 1255849610
## 10997 73 5502 2.5 1255609142
## 10998 73 5504 0.5 1255742979
## 10999 73 5507 1.5 1255503888
## 11000 73 5524 2.0 1456039270
## 11001 73 5540 4.0 1255606114
## 11002 73 5541 2.5 1337594371
## 11003 73 5572 1.5 1257164626
## 11004 73 5574 2.5 1256029172
## 11005 73 5585 1.0 1255587508
## 11006 73 5617 3.5 1431406170
## 11007 73 5618 4.0 1348568766
## 11008 73 5621 2.0 1427170483
## 11009 73 5630 3.5 1255850919
## 11010 73 5666 4.0 1255742663
## 11011 73 5669 4.0 1255584902
## 11012 73 5673 4.5 1337591896
## 11013 73 5679 3.0 1255595533
## 11014 73 5690 4.0 1311653407
## 11015 73 5691 2.5 1255587123
## 11016 73 5734 2.5 1256029535
## 11017 73 5735 3.5 1256029550
## 11018 73 5736 2.5 1255588990
## 11019 73 5737 2.0 1255588995
## 11020 73 5746 4.5 1406172244
## 11021 73 5810 3.5 1255501720
## 11022 73 5816 3.0 1312496408
## 11023 73 5882 3.5 1406172340
## 11024 73 5902 4.0 1338530999
## 11025 73 5903 4.0 1255507053
## 11026 73 5942 2.0 1456039316
## 11027 73 5943 2.0 1456039164
## 11028 73 5952 5.0 1306826436
## 11029 73 5954 4.0 1309761451
## 11030 73 5955 3.5 1279948760
## 11031 73 5956 3.5 1255503878
## 11032 73 5959 4.0 1285311199
## 11033 73 5989 4.0 1266581545
## 11034 73 5991 1.5 1255608120
## 11035 73 6016 5.0 1255503493
## 11036 73 6025 4.0 1406172365
## 11037 73 6155 3.0 1411355691
## 11038 73 6156 3.5 1369513550
## 11039 73 6157 0.5 1255503002
## 11040 73 6188 3.5 1255844960
## 11041 73 6212 2.0 1456039319
## 11042 73 6213 2.5 1456039235
## 11043 73 6218 2.5 1255849679
## 11044 73 6223 4.0 1255504698
## 11045 73 6281 3.0 1432523137
## 11046 73 6287 2.5 1304411827
## 11047 73 6298 0.5 1255586932
## 11048 73 6303 3.5 1255503222
## 11049 73 6323 4.5 1315969183
## 11050 73 6333 3.5 1417081916
## 11051 73 6338 3.0 1369514779
## 11052 73 6365 2.0 1255596285
## 11053 73 6373 2.5 1255591371
## 11054 73 6377 4.0 1255584888
## 11055 73 6378 3.0 1417081929
## 11056 73 6379 2.5 1309414298
## 11057 73 6383 3.0 1369515372
## 11058 73 6440 4.0 1411451683
## 11059 73 6502 3.0 1255501671
## 11060 73 6503 1.5 1255843864
## 11061 73 6534 0.5 1257229292
## 11062 73 6537 2.0 1255503487
## 11063 73 6539 4.0 1255509006
## 11064 73 6548 2.0 1255595377
## 11065 73 6559 4.0 1337594385
## 11066 73 6564 3.0 1369513547
## 11067 73 6565 2.5 1257229160
## 11068 73 6566 0.5 1255589036
## 11069 73 6582 3.0 1427170631
## 11070 73 6586 3.0 1464508095
## 11071 73 6593 0.5 1256029804
## 11072 73 6595 1.5 1256028643
## 11073 73 6602 3.5 1460519359
## 11074 73 6615 1.5 1255742653
## 11075 73 6659 4.0 1255502597
## 11076 73 6664 3.0 1337594381
## 11077 73 6695 1.5 1255587133
## 11078 73 6707 2.5 1348567959
## 11079 73 6708 4.0 1378179956
## 11080 73 6711 4.5 1273216574
## 11081 73 6731 4.0 1471332878
## 11082 73 6754 3.5 1457596987
## 11083 73 6755 4.5 1304411442
## 11084 73 6774 3.5 1289045130
## 11085 73 6796 4.5 1255502997
## 11086 73 6803 4.0 1448953300
## 11087 73 6807 3.0 1255591789
## 11088 73 6816 4.0 1295874873
## 11089 73 6820 3.0 1471332819
## 11090 73 6857 3.5 1264405832
## 11091 73 6863 2.5 1257228185
## 11092 73 6870 4.0 1260877884
## 11093 73 6874 4.5 1384069892
## 11094 73 6887 3.5 1369514741
## 11095 73 6888 2.0 1464508090
## 11096 73 6902 3.5 1257222707
## 11097 73 6934 2.0 1255503478
## 11098 73 6936 2.0 1255596893
## 11099 73 6947 3.0 1441513227
## 11100 73 6952 3.0 1255593542
## 11101 73 6953 3.5 1255588164
## 11102 73 6957 2.0 1255607831
## 11103 73 6977 3.0 1279947114
## 11104 73 7001 4.0 1378179792
## 11105 73 7007 4.0 1429168553
## 11106 73 7022 4.5 1337593385
## 11107 73 7036 3.5 1261656678
## 11108 73 7045 3.5 1454042575
## 11109 73 7046 3.0 1256029303
## 11110 73 7063 4.0 1411451412
## 11111 73 7090 4.0 1337594037
## 11112 73 7099 4.5 1348568786
## 11113 73 7117 3.0 1261486850
## 11114 73 7137 4.0 1311654117
## 11115 73 7143 2.5 1256030436
## 11116 73 7147 2.0 1255594326
## 11117 73 7153 5.0 1255503465
## 11118 73 7161 2.0 1456039242
## 11119 73 7235 4.5 1337593642
## 11120 73 7254 3.5 1255849692
## 11121 73 7285 4.0 1289046716
## 11122 73 7293 3.5 1255594489
## 11123 73 7308 3.5 1474614697
## 11124 73 7317 4.0 1255607425
## 11125 73 7318 3.0 1255591876
## 11126 73 7324 2.5 1257164378
## 11127 73 7325 2.5 1255596889
## 11128 73 7346 3.0 1288095855
## 11129 73 7360 3.0 1255591517
## 11130 73 7361 4.5 1255508137
## 11131 73 7367 2.0 1260977308
## 11132 73 7373 3.5 1304412434
## 11133 73 7387 3.5 1255503212
## 11134 73 7411 3.0 1255844992
## 11135 73 7419 4.0 1411810861
## 11136 73 7438 4.0 1255585779
## 11137 73 7445 3.5 1255606539
## 11138 73 7454 1.5 1255743175
## 11139 73 7458 2.0 1255595662
## 11140 73 7481 4.0 1257418583
## 11141 73 7482 4.0 1255850712
## 11142 73 7502 4.0 1352959898
## 11143 73 7701 1.5 1256559095
## 11144 73 7743 3.5 1279948092
## 11145 73 7802 5.0 1308113349
## 11146 73 7842 2.5 1287575320
## 11147 73 7844 4.0 1441513891
## 11148 73 7845 3.0 1255503838
## 11149 73 7846 2.5 1255586520
## 11150 73 7915 3.5 1423801745
## 11151 73 7976 4.0 1273217198
## 11152 73 7984 3.5 1448953187
## 11153 73 7987 3.5 1435474813
## 11154 73 8131 4.0 1456039436
## 11155 73 8340 4.5 1406172202
## 11156 73 8360 3.5 1303464741
## 11157 73 8361 3.0 1255742433
## 11158 73 8363 1.5 1255589173
## 11159 73 8368 3.5 1312496376
## 11160 73 8371 3.0 1456039039
## 11161 73 8372 1.0 1256029799
## 11162 73 8373 2.5 1256030665
## 11163 73 8376 3.5 1255844984
## 11164 73 8507 3.5 1411451654
## 11165 73 8526 2.5 1427170338
## 11166 73 8528 3.0 1255596174
## 11167 73 8529 4.0 1304412427
## 11168 73 8531 2.0 1456039261
## 11169 73 8622 3.5 1255742327
## 11170 73 8636 3.5 1348568288
## 11171 73 8638 4.5 1398568522
## 11172 73 8640 2.5 1456039172
## 11173 73 8641 4.5 1304411558
## 11174 73 8644 3.0 1255502811
## 11175 73 8665 3.0 1256017177
## 11176 73 8783 2.5 1256019169
## 11177 73 8784 4.0 1381126678
## 11178 73 8798 3.0 1255593134
## 11179 73 8807 3.0 1255608196
## 11180 73 8810 2.0 1255843862
## 11181 73 8811 0.5 1255588939
## 11182 73 8854 3.5 1441522129
## 11183 73 8859 0.5 1255588886
## 11184 73 8861 2.5 1255594684
## 11185 73 8874 4.0 1348568180
## 11186 73 8906 4.0 1464751323
## 11187 73 8910 4.0 1448953173
## 11188 73 8914 3.0 1296460230
## 11189 73 8917 3.5 1255591865
## 11190 73 8928 3.5 1475989020
## 11191 73 8947 0.5 1255592030
## 11192 73 8949 3.5 1304412144
## 11193 73 8950 4.5 1404370289
## 11194 73 8957 4.0 1255844819
## 11195 73 8961 3.0 1255597036
## 11196 73 8972 3.0 1256019079
## 11197 73 8984 2.5 1255742417
## 11198 73 25962 4.0 1255851182
## 11199 73 26258 4.5 1398568001
## 11200 73 26403 3.5 1359617333
## 11201 73 26480 3.0 1406172493
## 11202 73 26547 4.5 1347441796
## 11203 73 26585 3.5 1456038539
## 11204 73 26603 3.5 1469772963
## 11205 73 26606 4.0 1432788454
## 11206 73 26684 3.5 1437710037
## 11207 73 26704 4.0 1317177146
## 11208 73 26729 3.0 1255587770
## 11209 73 26736 4.0 1427170642
## 11210 73 26842 4.0 1427170496
## 11211 73 27002 2.5 1255589582
## 11212 73 27022 4.5 1359974275
## 11213 73 27032 4.0 1427170460
## 11214 73 27109 4.5 1423801920
## 11215 73 27317 4.5 1369206010
## 11216 73 27369 3.5 1255590127
## 11217 73 27478 2.5 1255501883
## 11218 73 27555 4.0 1319337509
## 11219 73 27604 4.0 1474263883
## 11220 73 27611 2.0 1256029681
## 11221 73 27646 4.5 1295874824
## 11222 73 27660 4.5 1282543364
## 11223 73 27704 2.5 1337593382
## 11224 73 27706 3.0 1255596884
## 11225 73 27772 1.0 1456039398
## 11226 73 27773 5.0 1350192496
## 11227 73 27778 3.5 1431234249
## 11228 73 27793 2.0 1255589041
## 11229 73 27800 3.5 1255947240
## 11230 73 27801 4.0 1427170205
## 11231 73 27808 3.0 1427168079
## 11232 73 27831 4.0 1319337521
## 11233 73 27904 3.5 1262838012
## 11234 73 30707 4.5 1422335423
## 11235 73 30749 5.0 1255844444
## 11236 73 30810 4.0 1381126659
## 11237 73 30812 3.5 1457597312
## 11238 73 30820 3.5 1469772912
## 11239 73 30825 3.0 1255596762
## 11240 73 31150 4.0 1406171407
## 11241 73 31225 3.5 1255844160
## 11242 73 31290 0.5 1354679048
## 11243 73 31422 1.0 1255587749
## 11244 73 31431 1.0 1255743146
## 11245 73 31435 4.5 1295591221
## 11246 73 31685 3.0 1255596758
## 11247 73 31696 3.0 1255595655
## 11248 73 31878 3.5 1337593113
## 11249 73 32352 3.0 1289046552
## 11250 73 32387 4.0 1469772672
## 11251 73 32587 4.5 1255508160
## 11252 73 32596 2.5 1255845334
## 11253 73 33004 3.0 1255843857
## 11254 73 33162 4.0 1301481269
## 11255 73 33164 1.0 1255587163
## 11256 73 33166 5.0 1259323569
## 11257 73 33171 4.0 1273217166
## 11258 73 33493 3.0 1255595926
## 11259 73 33679 2.0 1256018225
## 11260 73 33794 4.0 1345798859
## 11261 73 33834 3.0 1255507534
## 11262 73 34048 2.5 1255607814
## 11263 73 34150 3.0 1369513542
## 11264 73 34162 3.0 1257228496
## 11265 73 34319 3.0 1255591870
## 11266 73 34405 3.5 1255844803
## 11267 73 34437 3.5 1309414233
## 11268 73 34530 2.0 1255506326
## 11269 73 35836 3.0 1255596097
## 11270 73 36519 2.5 1255845337
## 11271 73 36529 3.5 1255508666
## 11272 73 36708 3.5 1255592012
## 11273 73 37386 3.0 1255845325
## 11274 73 37731 4.5 1289377714
## 11275 73 37733 4.0 1331809803
## 11276 73 38061 1.5 1256029685
## 11277 73 39381 3.5 1457320124
## 11278 73 39446 3.5 1256028349
## 11279 73 40278 3.5 1369513527
## 11280 73 40574 3.0 1255505821
## 11281 73 40629 1.5 1256029392
## 11282 73 40732 4.0 1348567955
## 11283 73 40815 3.5 1312496387
## 11284 73 41285 3.5 1411355658
## 11285 73 41566 3.0 1417081946
## 11286 73 41569 2.5 1257228521
## 11287 73 41997 4.0 1255503794
## 11288 73 42011 3.0 1255844003
## 11289 73 42723 3.0 1256030828
## 11290 73 42725 3.5 1454043394
## 11291 73 43838 3.5 1304412896
## 11292 73 43919 1.0 1255588757
## 11293 73 43921 4.0 1337593212
## 11294 73 43936 3.0 1256030820
## 11295 73 44191 4.0 1284880889
## 11296 73 44195 3.5 1255502976
## 11297 73 44199 4.0 1315969272
## 11298 73 44245 4.0 1304412870
## 11299 73 44397 3.0 1309414323
## 11300 73 44665 4.0 1302152616
## 11301 73 44761 4.5 1288782721
## 11302 73 44972 2.0 1256559191
## 11303 73 44974 4.0 1288096054
## 11304 73 45183 3.0 1427170230
## 11305 73 45186 2.5 1257229414
## 11306 73 45447 2.5 1454042655
## 11307 73 45506 4.0 1261217204
## 11308 73 45666 0.5 1255742925
## 11309 73 45672 1.0 1255591703
## 11310 73 45722 3.5 1255844928
## 11311 73 45726 2.5 1255742920
## 11312 73 45728 3.0 1255508977
## 11313 73 46322 4.0 1355922906
## 11314 73 46335 3.0 1369515354
## 11315 73 46337 0.5 1255587403
## 11316 73 46578 3.5 1255584710
## 11317 73 46865 1.0 1255586255
## 11318 73 46965 2.5 1454042857
## 11319 73 46970 2.5 1362112175
## 11320 73 46972 3.5 1411355653
## 11321 73 46976 4.0 1418784900
## 11322 73 47099 3.5 1255844905
## 11323 73 47200 3.5 1255593521
## 11324 73 47610 4.0 1303465599
## 11325 73 47640 3.0 1255504580
## 11326 73 47815 0.5 1255586400
## 11327 73 47997 4.0 1256027956
## 11328 73 48043 3.5 1296460156
## 11329 73 48304 3.5 1255502085
## 11330 73 48385 3.5 1255506853
## 11331 73 48394 3.5 1466320346
## 11332 73 48516 4.0 1345798905
## 11333 73 48591 0.5 1255587385
## 11334 73 48696 4.0 1369514062
## 11335 73 48744 3.5 1457597587
## 11336 73 48774 4.5 1354676065
## 11337 73 48780 4.5 1268806416
## 11338 73 48877 2.5 1256030711
## 11339 73 49272 4.0 1354676002
## 11340 73 49278 3.0 1422335258
## 11341 73 49526 2.5 1255586478
## 11342 73 49528 2.5 1259837617
## 11343 73 49530 3.5 1255502965
## 11344 73 49649 2.5 1257164355
## 11345 73 49651 3.0 1256030617
## 11346 73 49817 4.0 1306826934
## 11347 73 50641 5.0 1441514296
## 11348 73 50651 3.0 1286699648
## 11349 73 50794 2.5 1256030870
## 11350 73 50798 1.0 1255588747
## 11351 73 50806 1.0 1255586233
## 11352 73 50872 3.0 1255596877
## 11353 73 51255 2.5 1255845225
## 11354 73 51277 4.5 1337593162
## 11355 73 51540 4.0 1441514086
## 11356 73 51662 3.0 1255501684
## 11357 73 51931 4.0 1337593096
## 11358 73 51937 2.5 1309414319
## 11359 73 52245 3.0 1454042794
## 11360 73 52281 3.5 1255592002
## 11361 73 52328 3.5 1441513955
## 11362 73 52458 3.0 1256029140
## 11363 73 52462 3.5 1255502108
## 11364 73 52604 4.5 1315969200
## 11365 73 52722 2.0 1348568291
## 11366 73 52952 4.0 1255502672
## 11367 73 52973 3.0 1257228572
## 11368 73 53000 3.5 1255591698
## 11369 73 53121 2.0 1255742621
## 11370 73 53125 3.0 1255503784
## 11371 73 53318 4.5 1304411411
## 11372 73 53322 2.0 1256018404
## 11373 73 53468 4.0 1274526720
## 11374 73 53519 3.5 1384070152
## 11375 73 53550 4.0 1311653909
## 11376 73 53972 3.0 1257228718
## 11377 73 53996 2.5 1256018025
## 11378 73 54001 3.5 1312496372
## 11379 73 54190 2.0 1256029937
## 11380 73 54272 3.0 1256017323
## 11381 73 54286 3.0 1255947527
## 11382 73 54290 0.5 1255588933
## 11383 73 54331 4.0 1270610590
## 11384 73 54503 4.0 1260273754
## 11385 73 54648 3.0 1255503405
## 11386 73 54745 3.5 1323247224
## 11387 73 54995 3.5 1255844923
## 11388 73 54997 4.0 1285673360
## 11389 73 55052 4.0 1312496234
## 11390 73 55094 4.0 1312496164
## 11391 73 55207 4.0 1457598523
## 11392 73 55232 2.5 1256030803
## 11393 73 55245 3.0 1369514644
## 11394 73 55247 4.0 1264751836
## 11395 73 55269 3.5 1281668271
## 11396 73 55290 4.0 1302604152
## 11397 73 55577 3.0 1255844816
## 11398 73 55721 4.5 1259837542
## 11399 73 55765 3.5 1255501962
## 11400 73 55805 2.5 1256029998
## 11401 73 55820 4.5 1255508012
## 11402 73 55830 3.5 1255504199
## 11403 73 55995 2.0 1423801583
## 11404 73 56003 2.5 1286794236
## 11405 73 56145 4.0 1464751381
## 11406 73 56174 2.5 1255596747
## 11407 73 56251 3.5 1255505761
## 11408 73 56367 3.5 1255502960
## 11409 73 56587 3.0 1457598052
## 11410 73 56757 2.5 1255596552
## 11411 73 56775 2.5 1473060722
## 11412 73 56782 4.0 1255508166
## 11413 73 56801 2.0 1256559213
## 11414 73 57368 1.5 1255594676
## 11415 73 57528 3.5 1255844900
## 11416 73 57532 1.0 1255586222
## 11417 73 57640 3.0 1255592007
## 11418 73 57669 4.0 1255844632
## 11419 73 58025 1.5 1255596555
## 11420 73 58146 0.5 1255586134
## 11421 73 58293 1.0 1255501589
## 11422 73 58295 3.0 1454042795
## 11423 73 58301 4.0 1471759060
## 11424 73 58315 1.0 1255586976
## 11425 73 58351 4.0 1259837601
## 11426 73 58559 5.0 1345798871
## 11427 73 58627 3.5 1427170416
## 11428 73 58803 3.0 1255501647
## 11429 73 58975 2.5 1435472881
## 11430 73 58998 3.5 1454042671
## 11431 73 59014 1.0 1255589062
## 11432 73 59022 2.5 1454043041
## 11433 73 59315 3.0 1255597366
## 11434 73 59369 3.0 1255596548
## 11435 73 59387 3.5 1255606270
## 11436 73 59615 1.5 1255591493
## 11437 73 59784 2.5 1257228964
## 11438 73 59900 2.0 1454042917
## 11439 73 59995 4.5 1255607031
## 11440 73 60037 2.0 1255503396
## 11441 73 60069 3.0 1255508072
## 11442 73 60072 2.5 1255591693
## 11443 73 60074 2.0 1255593506
## 11444 73 60126 2.0 1255844138
## 11445 73 60161 4.0 1255503392
## 11446 73 60293 5.0 1259323222
## 11447 73 60487 3.5 1437711118
## 11448 73 60609 4.0 1259323854
## 11449 73 60684 3.0 1255505738
## 11450 73 60753 3.0 1288697624
## 11451 73 60756 4.0 1304411580
## 11452 73 61024 3.5 1457597334
## 11453 73 61132 3.5 1255843975
## 11454 73 61248 3.0 1369514646
## 11455 73 61323 3.5 1457318292
## 11456 73 61348 0.5 1255588727
## 11457 73 61394 3.5 1255844953
## 11458 73 62394 1.0 1256559067
## 11459 73 62434 3.5 1430034154
## 11460 73 62801 4.0 1384069863
## 11461 73 62912 0.5 1255587337
## 11462 73 62956 3.5 1255504546
## 11463 73 63072 3.5 1266309913
## 11464 73 63082 5.0 1255587902
## 11465 73 63113 2.0 1256018282
## 11466 73 63131 3.0 1255742863
## 11467 73 63540 0.5 1255586420
## 11468 73 63826 3.0 1337593619
## 11469 73 63876 4.0 1259325788
## 11470 73 63992 2.0 1454042733
## 11471 73 64197 4.0 1441513491
## 11472 73 64508 1.0 1255589051
## 11473 73 64614 4.5 1296209705
## 11474 73 64716 4.0 1312495981
## 11475 73 64839 5.0 1267705501
## 11476 73 64900 4.0 1435472671
## 11477 73 64957 4.5 1255606209
## 11478 73 64983 3.5 1418785824
## 11479 73 65126 4.0 1262826563
## 11480 73 65310 3.0 1406172474
## 11481 73 65514 4.5 1329122482
## 11482 73 65982 3.5 1460517652
## 11483 73 66066 0.5 1255506219
## 11484 73 66090 4.0 1432523734
## 11485 73 66297 3.5 1255851305
## 11486 73 66335 3.5 1255501824
## 11487 73 66934 4.0 1441513660
## 11488 73 67252 3.5 1427170617
## 11489 73 67255 4.0 1334134888
## 11490 73 67665 3.0 1255509258
## 11491 73 67695 3.0 1273231862
## 11492 73 67734 3.5 1423801587
## 11493 73 67923 3.5 1369515334
## 11494 73 68073 4.0 1272351330
## 11495 73 68157 4.0 1259037238
## 11496 73 68159 4.0 1315969142
## 11497 73 68237 4.0 1256944127
## 11498 73 68319 3.0 1454042683
## 11499 73 68358 3.5 1255508067
## 11500 73 68444 3.0 1257228665
## 11501 73 68554 2.5 1454042767
## 11502 73 68901 3.5 1289995423
## 11503 73 68952 3.5 1348567926
## 11504 73 68954 4.0 1284880892
## 11505 73 68959 2.5 1255851331
## 11506 73 68965 0.5 1261217423
## 11507 73 69122 3.5 1255584542
## 11508 73 69306 3.0 1260280418
## 11509 73 69481 4.0 1262471588
## 11510 73 69640 3.5 1256639055
## 11511 73 69685 3.0 1476086345
## 11512 73 69746 2.5 1255850946
## 11513 73 69757 4.5 1275964203
## 11514 73 69844 3.5 1312496413
## 11515 73 70286 3.5 1255505699
## 11516 73 70465 4.0 1319336907
## 11517 73 70946 0.5 1257228032
## 11518 73 71057 3.0 1263197192
## 11519 73 71106 4.0 1312496343
## 11520 73 71135 4.5 1406172090
## 11521 73 71248 3.5 1264835071
## 11522 73 71379 3.5 1268808266
## 11523 73 71429 4.5 1457597657
## 11524 73 71466 4.0 1280749920
## 11525 73 71520 4.0 1262487606
## 11526 73 71533 3.0 1262490949
## 11527 73 71535 4.0 1257418656
## 11528 73 71745 3.5 1369514017
## 11529 73 71838 2.0 1260877856
## 11530 73 72011 4.0 1262660477
## 11531 73 72171 3.5 1441513896
## 11532 73 72226 4.0 1311319024
## 11533 73 72603 3.0 1437711220
## 11534 73 72641 4.0 1279948740
## 11535 73 72733 4.5 1279948672
## 11536 73 72998 4.0 1261487370
## 11537 73 73023 4.0 1331019387
## 11538 73 73268 3.0 1270610716
## 11539 73 73321 3.0 1279948662
## 11540 73 73759 4.0 1273212258
## 11541 73 74416 4.5 1270626393
## 11542 73 74458 4.5 1369205637
## 11543 73 74545 4.0 1284788822
## 11544 73 74851 3.5 1432523566
## 11545 73 74944 3.5 1279947051
## 11546 73 74948 4.0 1288782501
## 11547 73 75813 3.5 1471493475
## 11548 73 76060 2.0 1288697300
## 11549 73 76077 3.5 1277244869
## 11550 73 76093 4.0 1287639123
## 11551 73 76251 4.5 1274171831
## 11552 73 76272 3.5 1279948640
## 11553 73 77561 2.5 1286184933
## 11554 73 77800 3.5 1293747419
## 11555 73 77837 3.5 1293747383
## 11556 73 77866 2.5 1454042956
## 11557 73 78209 3.0 1286699464
## 11558 73 78266 2.5 1295874843
## 11559 73 78349 3.5 1289045492
## 11560 73 78469 3.0 1369514012
## 11561 73 78499 4.5 1290170524
## 11562 73 78574 3.5 1288262844
## 11563 73 78772 2.0 1454041525
## 11564 73 79008 4.5 1280207089
## 11565 73 79057 3.5 1337594376
## 11566 73 79091 4.0 1334134881
## 11567 73 79132 4.0 1354676128
## 11568 73 79242 3.5 1296730408
## 11569 73 79251 3.5 1470450406
## 11570 73 79274 4.0 1281668137
## 11571 73 79357 5.0 1286364707
## 11572 73 79553 3.5 1334396237
## 11573 73 79695 3.5 1337593917
## 11574 73 79702 4.0 1290923031
## 11575 73 79720 3.5 1476081506
## 11576 73 79879 2.5 1457597559
## 11577 73 80083 3.5 1304412705
## 11578 73 80219 4.0 1288095832
## 11579 73 80463 4.5 1295875330
## 11580 73 80489 4.0 1293747396
## 11581 73 80693 4.0 1303283044
## 11582 73 80831 3.0 1320810425
## 11583 73 80846 2.5 1457597487
## 11584 73 81083 3.5 1437709564
## 11585 73 81562 3.5 1300946992
## 11586 73 81564 5.0 1303464661
## 11587 73 81591 4.0 1294806059
## 11588 73 81660 2.5 1406172509
## 11589 73 81788 4.0 1331889469
## 11590 73 81834 4.0 1312496405
## 11591 73 81932 4.0 1301291585
## 11592 73 82041 3.5 1471332805
## 11593 73 82459 4.0 1411355319
## 11594 73 82527 4.0 1311318839
## 11595 73 82667 4.5 1374355498
## 11596 73 83134 4.0 1323226011
## 11597 73 83613 3.0 1411452415
## 11598 73 84152 4.0 1311318846
## 11599 73 84772 3.0 1315968775
## 11600 73 84944 4.0 1311651421
## 11601 73 85342 5.0 1308222797
## 11602 73 85401 4.5 1431584367
## 11603 73 85414 4.5 1315968748
## 11604 73 85788 4.0 1348567976
## 11605 73 85881 3.5 1317176746
## 11606 73 86142 4.0 1384069356
## 11607 73 86644 3.5 1369515303
## 11608 73 86882 4.5 1330240107
## 11609 73 87192 4.5 1348567873
## 11610 73 87232 4.0 1316757783
## 11611 73 87234 4.0 1319336798
## 11612 73 87298 3.5 1457597592
## 11613 73 87306 4.0 1320810413
## 11614 73 87869 3.5 1319336835
## 11615 73 88118 4.0 1317176741
## 11616 73 88125 4.5 1312496402
## 11617 73 88129 3.5 1345798952
## 11618 73 88140 3.5 1357553094
## 11619 73 88163 4.0 1320810254
## 11620 73 88744 3.5 1324634215
## 11621 73 89039 3.5 1325543528
## 11622 73 89085 4.5 1323857570
## 11623 73 89343 3.5 1431406208
## 11624 73 89470 3.0 1329461095
## 11625 73 89745 4.5 1337593575
## 11626 73 89774 4.5 1324634205
## 11627 73 89864 3.0 1329122460
## 11628 73 90376 3.5 1345799028
## 11629 73 90430 3.5 1325685214
## 11630 73 90439 3.5 1329461077
## 11631 73 90531 4.0 1430706568
## 11632 73 91485 3.5 1348568449
## 11633 73 91500 4.0 1337593368
## 11634 73 91529 4.0 1345798866
## 11635 73 91630 4.0 1326315218
## 11636 73 91658 4.0 1334396206
## 11637 73 91976 3.0 1457597425
## 11638 73 92309 3.0 1329986644
## 11639 73 93320 5.0 1448953095
## 11640 73 93363 3.0 1411452403
## 11641 73 93443 3.5 1345799036
## 11642 73 93510 4.0 1334396050
## 11643 73 93831 3.5 1348568088
## 11644 73 93838 4.5 1339743740
## 11645 73 93840 4.0 1348568138
## 11646 73 93855 5.0 1347441732
## 11647 73 94018 2.5 1352959770
## 11648 73 94070 4.0 1350192390
## 11649 73 94677 4.0 1352959766
## 11650 73 94833 3.5 1351406444
## 11651 73 94864 4.0 1339743735
## 11652 73 94959 4.0 1351406414
## 11653 73 95088 4.0 1357552636
## 11654 73 95147 3.5 1437711595
## 11655 73 95165 3.0 1398570058
## 11656 73 95182 3.0 1398570053
## 11657 73 95441 4.0 1355736140
## 11658 73 95473 3.5 1437711059
## 11659 73 95475 4.5 1398570027
## 11660 73 95499 4.5 1398570019
## 11661 73 95510 4.0 1345799054
## 11662 73 95558 3.5 1358144551
## 11663 73 95780 3.5 1437711174
## 11664 73 95782 3.5 1398570077
## 11665 73 95875 3.5 1348568386
## 11666 73 95963 3.5 1398570066
## 11667 73 95965 4.5 1398569999
## 11668 73 96004 4.0 1398569927
## 11669 73 96007 3.5 1437711131
## 11670 73 96079 4.5 1354675993
## 11671 73 96110 2.5 1359358796
## 11672 73 96281 3.0 1348568337
## 11673 73 96432 3.5 1441514105
## 11674 73 96588 3.5 1454043300
## 11675 73 96610 4.0 1354675986
## 11676 73 96737 3.5 1369515292
## 11677 73 96811 4.0 1374355461
## 11678 73 96821 4.5 1374355516
## 11679 73 97306 4.0 1374355492
## 11680 73 97752 4.5 1357552147
## 11681 73 97860 3.5 1357552193
## 11682 73 97913 3.5 1369206362
## 11683 73 97921 4.0 1369205846
## 11684 73 97923 3.5 1374355488
## 11685 73 97938 4.5 1357552149
## 11686 73 98607 3.5 1437710825
## 11687 73 98809 4.5 1355735865
## 11688 73 98829 4.0 1427170660
## 11689 73 98961 4.0 1364009534
## 11690 73 99112 3.5 1357552186
## 11691 73 99114 4.5 1369206612
## 11692 73 99145 4.0 1362112152
## 11693 73 99728 3.5 1370057754
## 11694 73 100159 4.0 1437709595
## 11695 73 100383 4.0 1369205631
## 11696 73 100714 4.5 1437104737
## 11697 73 101525 4.0 1409452760
## 11698 73 101864 3.5 1411452577
## 11699 73 102033 3.5 1378179817
## 11700 73 102123 4.0 1454043331
## 11701 73 102194 4.0 1395986174
## 11702 73 102252 4.5 1427170676
## 11703 73 102407 2.5 1454041530
## 11704 73 102445 4.0 1369205577
## 11705 73 102716 3.5 1374355582
## 11706 73 102993 4.0 1437104788
## 11707 73 103042 3.0 1409452741
## 11708 73 103048 4.0 1437104521
## 11709 73 103228 2.5 1457596601
## 11710 73 103249 2.5 1454042845
## 11711 73 103253 3.0 1406171923
## 11712 73 103384 2.0 1457597113
## 11713 73 103624 3.0 1437104561
## 11714 73 103688 3.5 1418462292
## 11715 73 103772 3.0 1427170398
## 11716 73 104841 4.5 1395986150
## 11717 73 104913 4.5 1395986058
## 11718 73 104944 4.5 1398567572
## 11719 73 105213 3.5 1457597402
## 11720 73 105504 4.0 1395986019
## 11721 73 106002 3.5 1411452394
## 11722 73 106022 4.0 1411355255
## 11723 73 106100 4.5 1398567543
## 11724 73 106487 0.5 1390015641
## 11725 73 106489 3.5 1404370211
## 11726 73 106491 3.0 1427170708
## 11727 73 106782 4.5 1395986157
## 11728 73 106916 4.5 1395986160
## 11729 73 106918 3.5 1404370215
## 11730 73 106920 4.0 1418461939
## 11731 73 107069 3.5 1406172291
## 11732 73 107348 3.5 1457597419
## 11733 73 107406 4.0 1454043018
## 11734 73 107953 3.5 1427170706
## 11735 73 107999 3.5 1398570071
## 11736 73 108090 3.5 1437711587
## 11737 73 108190 3.5 1411452354
## 11738 73 108583 5.0 1435472609
## 11739 73 108932 4.0 1410578415
## 11740 73 108981 3.5 1437104540
## 11741 73 109074 4.0 1427170717
## 11742 73 109374 4.5 1417081790
## 11743 73 109487 4.5 1422335272
## 11744 73 109850 3.0 1411452818
## 11745 73 109895 3.5 1409452259
## 11746 73 110127 2.0 1411452812
## 11747 73 110348 4.0 1432523533
## 11748 73 110501 4.5 1404370180
## 11749 73 110882 3.0 1409452254
## 11750 73 111360 3.0 1457597194
## 11751 73 111362 4.0 1411355333
## 11752 73 111364 2.5 1454043389
## 11753 73 111624 3.5 1423801674
## 11754 73 111659 2.5 1454043328
## 11755 73 111759 4.0 1411355268
## 11756 73 111781 3.5 1454043334
## 11757 73 111921 4.0 1454043365
## 11758 73 112183 4.5 1427168087
## 11759 73 112290 2.5 1423801598
## 11760 73 112515 3.5 1422335674
## 11761 73 112552 4.5 1427168057
## 11762 73 112556 4.0 1422335277
## 11763 73 112623 3.0 1454042867
## 11764 73 112818 3.0 1457597515
## 11765 73 112852 5.0 1409205899
## 11766 73 113252 4.0 1418462083
## 11767 73 113348 2.5 1427170549
## 11768 73 113573 3.0 1457597407
## 11769 73 114060 4.0 1437104690
## 11770 73 114180 3.5 1418462052
## 11771 73 114662 4.0 1431406217
## 11772 73 114670 3.0 1457597605
## 11773 73 114935 4.5 1417081980
## 11774 73 115122 5.0 1448953211
## 11775 73 115149 3.5 1423801646
## 11776 73 115216 4.0 1417593332
## 11777 73 115569 4.5 1423801600
## 11778 73 115713 4.0 1432523152
## 11779 73 115877 3.5 1437711208
## 11780 73 115881 3.0 1437711165
## 11781 73 116397 3.5 1418462066
## 11782 73 116797 4.0 1432788703
## 11783 73 116823 0.5 1454042838
## 11784 73 117123 3.0 1457597665
## 11785 73 117176 4.0 1457597352
## 11786 73 117529 3.0 1454042923
## 11787 73 118082 3.5 1431232449
## 11788 73 118696 3.0 1454042873
## 11789 73 119145 3.5 1454042779
## 11790 73 120466 3.5 1431233322
## 11791 73 121231 3.5 1431233272
## 11792 73 122882 5.0 1435472640
## 11793 73 122886 4.5 1454041548
## 11794 73 122890 4.0 1466320057
## 11795 73 122900 3.0 1466320222
## 11796 73 122904 4.5 1456038880
## 11797 73 122924 3.5 1474255427
## 11798 73 126006 3.5 1437711226
## 11799 73 127198 3.5 1457597882
## 11800 73 128360 4.5 1460517538
## 11801 73 130642 3.5 1437709660
## 11802 73 130682 3.5 1432523179
## 11803 73 133771 3.5 1466320172
## 11804 73 134130 4.5 1448953050
## 11805 73 135887 3.0 1466320258
## 11806 73 137857 3.5 1470720695
## 11807 73 139130 4.0 1437711245
## 11808 73 139385 4.0 1460517533
## 11809 73 139644 3.5 1457597863
## 11810 73 140267 3.0 1456038901
## 11811 73 140715 4.0 1456038576
## 11812 73 141718 3.5 1471332767
## 11813 73 141866 4.0 1469772876
## 11814 73 146656 4.0 1456038516
## 11815 73 148626 3.5 1457332236
## 11816 73 152077 3.5 1466320302
## 11817 73 152091 3.0 1466320393
## 11818 73 152844 4.0 1476080611
## 11819 73 156726 3.5 1460517484
## 11820 73 158238 4.0 1470719796
## 11821 73 159462 3.0 1469772608
## 11822 73 159858 3.5 1473060620
## 11823 73 161594 3.0 1474255459
## 11824 73 162376 4.5 1474255532
## 11825 74 10 5.0 942704394
## 11826 74 16 3.0 942705457
## 11827 74 17 4.0 942705568
## 11828 74 104 4.0 942703730
## 11829 74 110 5.0 942705318
## 11830 74 153 4.0 942703172
## 11831 74 260 5.0 942705457
## 11832 74 356 4.0 942705608
## 11833 74 527 5.0 942705304
## 11834 74 592 5.0 942703172
## 11835 74 612 1.0 942703569
## 11836 74 912 5.0 942705568
## 11837 74 1059 4.0 942703337
## 11838 74 1080 3.0 942703678
## 11839 74 1097 3.0 942705648
## 11840 74 1136 5.0 942703678
## 11841 74 1196 5.0 942705496
## 11842 74 1210 5.0 942705496
## 11843 74 1272 5.0 942705381
## 11844 74 1302 4.0 942705413
## 11845 74 1377 4.0 942703172
## 11846 74 1562 4.0 942703172
## 11847 74 1584 5.0 942705533
## 11848 74 1704 4.0 942705382
## 11849 74 1721 2.0 942705232
## 11850 74 1722 5.0 942704332
## 11851 74 1876 3.0 942704723
## 11852 74 1917 4.0 942702876
## 11853 74 1918 5.0 942703038
## 11854 74 1954 3.0 942705496
## 11855 74 1961 4.0 942705608
## 11856 74 2000 4.0 942703038
## 11857 74 2002 4.0 942703038
## 11858 74 2028 5.0 942703474
## 11859 74 2106 5.0 942705708
## 11860 74 2167 4.0 942704005
## 11861 74 2188 3.0 942704863
## 11862 74 2333 4.0 942704616
## 11863 74 2396 5.0 942703337
## 11864 74 2490 5.0 942705899
## 11865 74 2541 4.0 942704668
## 11866 74 2549 3.0 942704192
## 11867 74 2571 5.0 942705678
## 11868 74 2572 4.0 942705303
## 11869 74 2628 4.0 942703093
## 11870 74 2640 3.0 942705648
## 11871 74 2700 4.0 942702937
## 11872 74 2710 4.0 942702971
## 11873 74 2762 4.0 942703538
## 11874 75 1 3.0 1165607201
## 11875 75 3 3.0 1143047700
## 11876 75 32 4.0 1165607192
## 11877 75 161 4.0 1143049641
## 11878 75 253 4.5 1143048074
## 11879 75 260 4.5 1143049571
## 11880 75 316 2.0 1165607377
## 11881 75 318 4.0 1165597501
## 11882 75 350 3.0 1143047643
## 11883 75 353 4.5 1143048140
## 11884 75 356 4.0 1143048117
## 11885 75 368 2.0 1143047471
## 11886 75 377 4.0 1143049541
## 11887 75 379 0.5 1165607346
## 11888 75 442 2.0 1143047458
## 11889 75 480 3.0 1143047880
## 11890 75 509 0.5 1143047478
## 11891 75 520 3.0 1165596956
## 11892 75 527 4.0 1143048687
## 11893 75 541 4.0 1143048797
## 11894 75 589 4.0 1165607264
## 11895 75 592 1.0 1143047916
## 11896 75 708 4.0 1143047668
## 11897 75 786 1.0 1143047463
## 11898 75 800 3.0 1143048961
## 11899 75 858 1.0 1143048947
## 11900 75 880 1.0 1165596837
## 11901 75 899 3.0 1143048856
## 11902 75 904 4.0 1143049098
## 11903 75 908 4.5 1143049193
## 11904 75 923 4.5 1143049074
## 11905 75 933 4.0 1165607749
## 11906 75 953 4.0 1143048735
## 11907 75 955 4.0 1165607773
## 11908 75 1080 0.5 1143047705
## 11909 75 1127 3.0 1143047928
## 11910 75 1196 4.0 1143048680
## 11911 75 1197 3.5 1165607559
## 11912 75 1198 4.0 1165607472
## 11913 75 1201 3.5 1143048840
## 11914 75 1207 3.5 1143048887
## 11915 75 1208 0.5 1143048986
## 11916 75 1214 4.0 1143048691
## 11917 75 1219 4.0 1165596756
## 11918 75 1221 0.5 1143048977
## 11919 75 1225 1.0 1143047503
## 11920 75 1234 3.0 1143048836
## 11921 75 1240 3.0 1165607261
## 11922 75 1253 4.0 1165607757
## 11923 75 1258 4.5 1143047710
## 11924 75 1259 4.0 1165607737
## 11925 75 1265 3.5 1165607211
## 11926 75 1270 4.0 1165607206
## 11927 75 1272 4.0 1143048849
## 11928 75 1278 4.0 1165596933
## 11929 75 1288 4.0 1143048844
## 11930 75 1291 4.5 1165607763
## 11931 75 1297 3.0 1143048004
## 11932 75 1356 2.0 1143048064
## 11933 75 1358 0.5 1165607144
## 11934 75 1376 0.5 1143048164
## 11935 75 1441 3.5 1143048156
## 11936 75 1517 3.0 1143047444
## 11937 75 1580 2.5 1143049592
## 11938 75 1584 4.0 1143047448
## 11939 75 1672 4.0 1143048056
## 11940 75 1721 3.0 1165607364
## 11941 75 1917 0.5 1143047624
## 11942 75 1967 3.0 1143048523
## 11943 75 1994 3.0 1143047921
## 11944 75 2003 3.0 1143048053
## 11945 75 2005 3.5 1143048090
## 11946 75 2011 4.5 1143047874
## 11947 75 2012 3.5 1143047679
## 11948 75 2115 3.0 1143047997
## 11949 75 2134 3.0 1143048070
## 11950 75 2161 4.5 1143048175
## 11951 75 2167 2.5 1165607133
## 11952 75 2174 3.5 1143047685
## 11953 75 2176 4.0 1165607636
## 11954 75 2231 3.5 1143048532
## 11955 75 2300 4.0 1165596884
## 11956 75 2302 4.0 1143047960
## 11957 75 2311 2.5 1143048305
## 11958 75 2355 2.0 1143047636
## 11959 75 2371 3.0 1143048520
## 11960 75 2423 4.5 1143048106
## 11961 75 2424 2.5 1143049630
## 11962 75 2455 4.5 1143048615
## 11963 75 2502 4.0 1143049615
## 11964 75 2571 5.0 1165607547
## 11965 75 2600 3.0 1165607066
## 11966 75 2692 5.0 1143048712
## 11967 75 2707 1.5 1143048602
## 11968 75 2710 0.5 1143047691
## 11969 75 2797 2.0 1143047689
## 11970 75 2841 4.5 1165596737
## 11971 75 2916 3.5 1143048020
## 11972 75 2959 3.5 1143048746
## 11973 75 2991 3.0 1143048172
## 11974 75 3007 4.0 1165607415
## 11975 75 3020 3.0 1143048565
## 11976 75 3033 4.0 1143048267
## 11977 75 3087 3.5 1143047896
## 11978 75 3147 2.0 1143049546
## 11979 75 3252 3.5 1143048546
## 11980 75 3408 4.0 1143049565
## 11981 75 3510 0.5 1165607272
## 11982 75 3671 4.0 1165596914
## 11983 75 3793 3.0 1143047490
## 11984 75 3948 3.5 1143047941
## 11985 75 3959 4.0 1165607230
## 11986 75 4223 3.0 1143048203
## 11987 75 4226 4.5 1143048829
## 11988 75 4306 3.5 1143049532
## 11989 75 4571 2.5 1165607291
## 11990 75 4799 4.0 1143048182
## 11991 75 4878 4.0 1143048879
## 11992 75 4973 4.0 1143048866
## 11993 75 4975 4.5 1143048659
## 11994 75 4980 2.5 1165607318
## 11995 75 4993 4.5 1143048707
## 11996 75 5054 3.5 1143048060
## 11997 75 5171 2.0 1165607360
## 11998 75 5445 4.0 1143049523
## 11999 75 5782 4.0 1143048930
## 12000 75 5952 4.5 1143048725
## 12001 75 6323 3.5 1143048192
## 12002 75 6537 3.0 1165607372
## 12003 75 6820 4.0 1165607099
## 12004 75 7153 5.0 1143048765
## 12005 75 7254 4.0 1143048629
## 12006 75 7361 4.5 1143048967
## 12007 75 7743 3.0 1143047861
## 12008 75 8581 4.0 1143048671
## 12009 75 8638 4.0 1143049061
## 12010 75 8957 4.5 1143048646
## 12011 75 8985 3.0 1165607136
## 12012 75 27788 3.0 1165607299
## 12013 75 33166 4.5 1143048773
## 12014 75 33794 4.5 1143048683
## 12015 75 34319 4.0 1165596823
## 12016 75 39446 4.0 1165607919
## 12017 75 42002 4.0 1165596874
## 12018 75 44397 0.5 1165607897
## 12019 76 45 5.0 1194384499
## 12020 76 303 3.0 1194384318
## 12021 76 531 3.0 1194384313
## 12022 76 915 4.0 1194384411
## 12023 76 954 4.0 1194384386
## 12024 76 1096 4.5 1194384460
## 12025 76 1185 3.5 1194384373
## 12026 76 1269 3.5 1194384328
## 12027 76 1449 4.0 1194384361
## 12028 76 2020 4.5 1194384299
## 12029 76 2087 3.5 1194384353
## 12030 76 2336 4.0 1194384281
## 12031 76 2948 4.0 1194384341
## 12032 76 3671 3.5 1194384277
## 12033 76 3911 4.0 1194384275
## 12034 76 3988 2.0 1194384399
## 12035 76 4321 4.5 1194384338
## 12036 76 44694 4.5 1194384512
## 12037 76 49530 3.5 1194384470
## 12038 76 54259 3.5 1194384451
## 12039 77 1 4.0 1163005363
## 12040 77 6 3.5 1163252774
## 12041 77 10 3.0 1183844529
## 12042 77 32 4.0 1163013349
## 12043 77 34 3.5 1163253023
## 12044 77 39 2.5 1163253088
## 12045 77 47 4.0 1163008777
## 12046 77 62 3.5 1163252918
## 12047 77 70 3.5 1163004464
## 12048 77 76 3.5 1163219726
## 12049 77 95 1.5 1163253105
## 12050 77 110 3.5 1163013335
## 12051 77 111 4.0 1183920234
## 12052 77 141 3.0 1163253085
## 12053 77 161 2.0 1183844506
## 12054 77 163 3.0 1163286142
## 12055 77 165 2.5 1163082488
## 12056 77 173 2.5 1163219428
## 12057 77 185 2.0 1163253082
## 12058 77 208 3.0 1163253079
## 12059 77 223 4.5 1163004353
## 12060 77 231 1.0 1163125859
## 12061 77 253 2.5 1163259531
## 12062 77 260 4.0 1163006051
## 12063 77 288 3.5 1163253117
## 12064 77 292 2.5 1163252922
## 12065 77 293 4.0 1163012798
## 12066 77 296 3.5 1163012801
## 12067 77 316 4.0 1163082508
## 12068 77 318 4.0 1163006037
## 12069 77 329 2.0 1163253047
## 12070 77 339 2.5 1163253104
## 12071 77 344 3.0 1163082485
## 12072 77 349 3.5 1163082500
## 12073 77 353 4.0 1163219321
## 12074 77 356 3.5 1163006023
## 12075 77 364 3.0 1163125780
## 12076 77 367 3.5 1163219373
## 12077 77 377 2.5 1163013353
## 12078 77 380 2.5 1163013344
## 12079 77 413 1.5 1163286164
## 12080 77 442 3.0 1163277657
## 12081 77 457 2.5 1163013330
## 12082 77 480 3.0 1163006020
## 12083 77 500 3.0 1183920204
## 12084 77 541 2.0 1163013198
## 12085 77 551 4.5 1163005103
## 12086 77 586 1.5 1183920099
## 12087 77 587 2.5 1163252886
## 12088 77 588 3.5 1163082479
## 12089 77 589 4.0 1163013341
## 12090 77 590 3.0 1163013339
## 12091 77 592 3.5 1163006012
## 12092 77 593 3.0 1163013328
## 12093 77 595 3.5 1163253015
## 12094 77 597 2.5 1163253037
## 12095 77 608 2.0 1183844492
## 12096 77 648 2.5 1163013368
## 12097 77 720 3.0 1183512581
## 12098 77 733 3.0 1163253027
## 12099 77 736 2.0 1163253163
## 12100 77 741 4.0 1163079173
## 12101 77 745 3.0 1183512477
## 12102 77 750 4.5 1163004390
## 12103 77 780 3.5 1163005369
## 12104 77 839 3.0 1163219390
## 12105 77 849 2.5 1163277702
## 12106 77 919 4.5 1163004359
## 12107 77 924 3.5 1183920326
## 12108 77 1036 3.0 1163253110
## 12109 77 1073 4.0 1163079436
## 12110 77 1079 3.5 1163252515
## 12111 77 1080 4.0 1163004406
## 12112 77 1097 3.0 1163253049
## 12113 77 1129 4.0 1163277603
## 12114 77 1136 4.5 1163012788
## 12115 77 1148 3.0 1183512491
## 12116 77 1196 4.5 1163013360
## 12117 77 1197 4.5 1163125789
## 12118 77 1198 4.0 1163082497
## 12119 77 1199 4.0 1163219937
## 12120 77 1200 4.0 1163252283
## 12121 77 1206 4.0 1163008790
## 12122 77 1208 3.5 1183920321
## 12123 77 1210 4.0 1163006027
## 12124 77 1214 3.5 1163253113
## 12125 77 1215 4.5 1163005217
## 12126 77 1217 3.5 1163013055
## 12127 77 1220 4.5 1163004386
## 12128 77 1222 3.5 1163012783
## 12129 77 1223 3.0 1183512498
## 12130 77 1240 4.5 1163125801
## 12131 77 1258 3.0 1163252277
## 12132 77 1262 4.5 1163915651
## 12133 77 1265 4.0 1163082678
## 12134 77 1270 3.5 1163006001
## 12135 77 1274 3.5 1163219327
## 12136 77 1278 3.5 1163079424
## 12137 77 1282 4.5 1163004479
## 12138 77 1291 4.0 1163079277
## 12139 77 1321 4.0 1163005225
## 12140 77 1380 3.0 1163252892
## 12141 77 1387 3.5 1183920197
## 12142 77 1393 2.0 1183920089
## 12143 77 1517 4.0 1163125883
## 12144 77 1527 4.0 1163125876
## 12145 77 1552 3.5 1163286102
## 12146 77 1580 3.5 1163253071
## 12147 77 1584 1.5 1183920103
## 12148 77 1591 2.5 1163219409
## 12149 77 1610 4.0 1163082518
## 12150 77 1653 3.5 1163277597
## 12151 77 1676 4.0 1183920299
## 12152 77 1682 3.5 1163915779
## 12153 77 1704 3.0 1183844513
## 12154 77 1721 2.0 1163252930
## 12155 77 1732 3.5 1163079388
## 12156 77 1772 2.5 1163269736
## 12157 77 1779 2.5 1163219656
## 12158 77 1784 2.5 1183844547
## 12159 77 1917 2.0 1163286171
## 12160 77 1923 2.0 1163252812
## 12161 77 1961 2.5 1163253127
## 12162 77 1967 4.5 1166027866
## 12163 77 1968 3.0 1183920347
## 12164 77 2000 3.5 1183920251
## 12165 77 2001 3.5 1183920333
## 12166 77 2005 4.0 1163082649
## 12167 77 2011 4.0 1183844575
## 12168 77 2012 3.5 1163286265
## 12169 77 2021 3.5 1163004544
## 12170 77 2054 2.5 1163915788
## 12171 77 2081 3.5 1183920345
## 12172 77 2105 4.0 1163277609
## 12173 77 2115 4.0 1163915709
## 12174 77 2139 4.0 1166027980
## 12175 77 2140 4.5 1166027880
## 12176 77 2167 4.0 1163219362
## 12177 77 2174 4.0 1163005101
## 12178 77 2275 4.5 1163259483
## 12179 77 2291 3.5 1163005107
## 12180 77 2321 4.0 1163738014
## 12181 77 2355 3.5 1183844537
## 12182 77 2395 2.0 1163252612
## 12183 77 2450 3.5 1163219423
## 12184 77 2502 4.5 1163005196
## 12185 77 2528 3.5 1163277646
## 12186 77 2529 3.5 1163277601
## 12187 77 2541 3.5 1163738035
## 12188 77 2542 4.5 1163004608
## 12189 77 2571 4.0 1163079154
## 12190 77 2599 2.5 1163738031
## 12191 77 2600 4.0 1184948966
## 12192 77 2628 1.5 1163006017
## 12193 77 2640 3.5 1163219366
## 12194 77 2641 3.0 1163219414
## 12195 77 2671 2.5 1163252918
## 12196 77 2683 4.0 1183920219
## 12197 77 2700 4.0 1183844561
## 12198 77 2706 3.5 1163125798
## 12199 77 2709 3.0 1166027951
## 12200 77 2710 1.0 1183844524
## 12201 77 2716 4.0 1163253120
## 12202 77 2762 4.0 1163253062
## 12203 77 2788 4.0 1163219953
## 12204 77 2797 3.5 1163125886
## 12205 77 2808 2.0 1163259854
## 12206 77 2858 3.0 1163013177
## 12207 77 2916 3.5 1163125878
## 12208 77 2918 4.5 1183844565
## 12209 77 2959 4.0 1163005335
## 12210 77 2968 4.0 1163004536
## 12211 77 2985 3.5 1163277606
## 12212 77 2986 2.5 1163277704
## 12213 77 2987 3.5 1183920193
## 12214 77 3000 4.0 1163005456
## 12215 77 3033 4.0 1163004499
## 12216 77 3052 4.5 1183920214
## 12217 77 3070 4.5 1163005080
## 12218 77 3081 3.0 1163259912
## 12219 77 3114 3.5 1163082621
## 12220 77 3147 4.0 1163286260
## 12221 77 3148 2.5 1163738069
## 12222 77 3175 3.5 1183920264
## 12223 77 3196 4.0 1163252250
## 12224 77 3204 4.0 1163219938
## 12225 77 3264 3.0 1163259527
## 12226 77 3275 4.5 1163265784
## 12227 77 3396 4.0 1166027886
## 12228 77 3397 3.5 1166027891
## 12229 77 3398 3.0 1166027895
## 12230 77 3408 1.5 1183844498
## 12231 77 3418 0.5 1183920246
## 12232 77 3421 4.5 1163005031
## 12233 77 3429 3.0 1183512502
## 12234 77 3438 2.5 1163219416
## 12235 77 3439 1.5 1163260803
## 12236 77 3471 4.0 1183920231
## 12237 77 3527 4.0 1183920227
## 12238 77 3578 3.0 1163006008
## 12239 77 3623 1.5 1163915774
## 12240 77 3671 4.0 1163079471
## 12241 77 3702 4.0 1163265859
## 12242 77 3703 4.0 1163265861
## 12243 77 3704 3.5 1163265862
## 12244 77 3751 3.5 1163220288
## 12245 77 3753 3.5 1183920122
## 12246 77 3793 4.0 1163004371
## 12247 77 3882 3.0 1163252840
## 12248 77 3897 3.0 1163252803
## 12249 77 3977 3.0 1163125809
## 12250 77 3994 4.5 1183920274
## 12251 77 3996 0.5 1163004354
## 12252 77 4011 4.5 1163004631
## 12253 77 4027 2.5 1183920127
## 12254 77 4040 1.0 1163346129
## 12255 77 4092 2.5 1163277700
## 12256 77 4246 2.0 1183920136
## 12257 77 4270 3.0 1166027898
## 12258 77 4306 3.5 1163125847
## 12259 77 4446 3.5 1163286177
## 12260 77 4447 3.5 1163252909
## 12261 77 4467 4.0 1163219953
## 12262 77 4499 4.5 1163633273
## 12263 77 4533 3.5 1163005241
## 12264 77 4886 4.0 1163082640
## 12265 77 4896 3.0 1163125785
## 12266 77 4963 3.0 1183920097
## 12267 77 4979 2.0 1183844539
## 12268 77 4993 3.0 1183844467
## 12269 77 5171 2.0 1163005117
## 12270 77 5218 4.0 1183920341
## 12271 77 5254 3.5 1163219308
## 12272 77 5349 4.0 1163125813
## 12273 77 5378 1.0 1163386523
## 12274 77 5445 3.0 1163006045
## 12275 77 5502 0.5 1183920259
## 12276 77 5522 4.0 1163277663
## 12277 77 5618 4.0 1163005522
## 12278 77 5650 3.5 1163004657
## 12279 77 5669 0.5 1183511678
## 12280 77 5782 4.0 1183512622
## 12281 77 5816 3.0 1163125818
## 12282 77 5903 4.0 1163277586
## 12283 77 6093 3.5 1166027993
## 12284 77 6157 3.0 1163219386
## 12285 77 6281 3.0 1163219717
## 12286 77 6303 3.5 1163219638
## 12287 77 6305 3.0 1163277592
## 12288 77 6316 3.0 1163005385
## 12289 77 6333 4.0 1163219317
## 12290 77 6350 4.0 1163005491
## 12291 77 6365 3.0 1183844543
## 12292 77 6377 0.5 1163004453
## 12293 77 6537 3.5 1183920262
## 12294 77 6539 4.0 1163082645
## 12295 77 6541 4.0 1163219402
## 12296 77 6645 3.0 1163277654
## 12297 77 6662 3.0 1163346143
## 12298 77 6755 4.5 1163259669
## 12299 77 6807 4.0 1163079326
## 12300 77 6811 4.0 1163286010
## 12301 77 6874 3.5 1163004488
## 12302 77 6934 2.5 1183844503
## 12303 77 7099 4.5 1163005487
## 12304 77 7143 2.0 1163004783
## 12305 77 7147 4.0 1163005091
## 12306 77 7163 3.5 1163219723
## 12307 77 7236 4.0 1163277648
## 12308 77 7360 4.0 1163005229
## 12309 77 7373 4.0 1163219298
## 12310 77 7387 4.5 1163259811
## 12311 77 7438 3.5 1163004517
## 12312 77 7649 4.5 1166028040
## 12313 77 7708 2.5 1183511703
## 12314 77 7810 4.0 1166028045
## 12315 77 7811 4.0 1166028040
## 12316 77 7812 4.0 1166028010
## 12317 77 7841 4.0 1163346052
## 12318 77 7842 4.0 1163346050
## 12319 77 8157 4.0 1163012825
## 12320 77 8368 3.0 1183844570
## 12321 77 8537 4.0 1163260633
## 12322 77 8622 0.5 1183511682
## 12323 77 8636 4.0 1163219319
## 12324 77 8644 2.0 1183920174
## 12325 77 8665 4.0 1183844557
## 12326 77 8874 4.5 1163259824
## 12327 77 8958 3.5 1163252803
## 12328 77 8961 4.0 1163125836
## 12329 77 26492 3.5 1183511991
## 12330 77 26700 2.0 1183511757
## 12331 77 27685 1.0 1163219241
## 12332 77 27831 4.0 1163004633
## 12333 77 31150 3.5 1183511779
## 12334 77 31221 2.5 1163219395
## 12335 77 31658 4.0 1163005497
## 12336 77 31878 3.5 1163013078
## 12337 77 32587 4.5 1163006062
## 12338 77 33493 3.0 1163386501
## 12339 77 33794 4.0 1163013182
## 12340 77 34319 2.0 1163286160
## 12341 77 34405 4.5 1163008703
## 12342 77 36708 3.5 1163079317
## 12343 77 37729 4.0 1163259890
## 12344 77 37857 4.0 1163219907
## 12345 77 38038 3.5 1163220283
## 12346 77 40732 2.5 1163005991
## 12347 77 40819 4.0 1163737974
## 12348 77 44191 4.5 1163006072
## 12349 77 45499 3.5 1163125866
## 12350 77 45722 4.0 1183511846
## 12351 77 47423 0.5 1163005434
## 12352 77 47518 4.0 1163286001
## 12353 77 53894 0.5 1183511648
## 12354 78 2 3.5 1274051069
## 12355 78 10 5.0 1274050854
## 12356 78 16 5.0 1344470037
## 12357 78 32 5.0 1274050782
## 12358 78 34 3.5 1344469842
## 12359 78 39 5.0 1274050940
## 12360 78 47 4.0 1344469790
## 12361 78 50 5.0 1274051508
## 12362 78 110 1.5 1274050758
## 12363 78 111 3.5 1274050991
## 12364 78 141 4.0 1274050945
## 12365 78 150 3.5 1327289203
## 12366 78 172 5.0 1274046007
## 12367 78 185 4.5 1274050942
## 12368 78 193 5.0 1344470407
## 12369 78 223 4.5 1274051011
## 12370 78 253 5.0 1274050895
## 12371 78 260 5.0 1274050755
## 12372 78 296 4.5 1274050741
## 12373 78 316 4.0 1274050827
## 12374 78 318 5.0 1274050752
## 12375 78 329 5.0 1274050869
## 12376 78 345 4.5 1327288678
## 12377 78 349 4.5 1274051738
## 12378 78 356 5.0 1274050745
## 12379 78 364 3.5 1274050816
## 12380 78 377 4.5 1274050797
## 12381 78 480 3.5 1274050750
## 12382 78 500 4.0 1274050831
## 12383 78 508 4.0 1328636541
## 12384 78 540 4.0 1344470455
## 12385 78 588 3.5 1274050785
## 12386 78 589 5.0 1274050763
## 12387 78 593 4.5 1274050748
## 12388 78 648 5.0 1274050801
## 12389 78 736 4.5 1274050821
## 12390 78 778 4.5 1274051080
## 12391 78 780 4.0 1274050766
## 12392 78 788 3.5 1327289197
## 12393 78 858 4.5 1327288505
## 12394 78 919 3.5 1274051063
## 12395 78 924 2.0 1274051008
## 12396 78 1059 4.5 1274046035
## 12397 78 1089 1.0 1274050989
## 12398 78 1094 4.0 1345676388
## 12399 78 1097 3.5 1274050843
## 12400 78 1136 3.0 1274050885
## 12401 78 1196 4.0 1274050792
## 12402 78 1200 4.5 1274050964
## 12403 78 1206 2.5 1327288495
## 12404 78 1208 5.0 1274051079
## 12405 78 1210 4.0 1274050770
## 12406 78 1213 4.5 1274050993
## 12407 78 1214 3.5 1274050904
## 12408 78 1222 5.0 1327062981
## 12409 78 1240 4.0 1274050852
## 12410 78 1265 2.0 1274050876
## 12411 78 1270 4.5 1274050805
## 12412 78 1293 5.0 1344470536
## 12413 78 1320 3.5 1345676342
## 12414 78 1345 4.0 1327288652
## 12415 78 1356 5.0 1274051262
## 12416 78 1371 4.0 1344470332
## 12417 78 1374 4.0 1344470035
## 12418 78 1375 5.0 1327289353
## 12419 78 1376 3.0 1274045997
## 12420 78 1407 4.5 1344469958
## 12421 78 1513 4.0 1274046052
## 12422 78 1517 3.0 1274051802
## 12423 78 1527 4.0 1274050950
## 12424 78 1552 4.0 1344470497
## 12425 78 1580 2.5 1344469730
## 12426 78 1584 5.0 1274051255
## 12427 78 1586 3.5 1274046079
## 12428 78 1610 5.0 1274051089
## 12429 78 1625 5.0 1344469988
## 12430 78 1644 4.5 1327288610
## 12431 78 1676 5.0 1344469919
## 12432 78 1680 5.0 1356219742
## 12433 78 1682 3.5 1274051084
## 12434 78 1690 4.0 1344470446
## 12435 78 1704 5.0 1274050948
## 12436 78 1717 5.0 1327289341
## 12437 78 1721 4.0 1274050845
## 12438 78 1722 4.5 1344470107
## 12439 78 1732 5.0 1344469830
## 12440 78 1747 4.0 1274046023
## 12441 78 1805 5.0 1274046061
## 12442 78 1876 5.0 1327288604
## 12443 78 1917 4.5 1274051067
## 12444 78 1923 1.5 1274050974
## 12445 78 1968 5.0 1274051253
## 12446 78 1997 4.0 1344470116
## 12447 78 2011 4.5 1344469836
## 12448 78 2012 4.0 1274051275
## 12449 78 2028 2.5 1274050826
## 12450 78 2107 3.0 1344470388
## 12451 78 2174 4.0 1344469948
## 12452 78 2231 4.5 1344470322
## 12453 78 2297 4.0 1274046142
## 12454 78 2329 5.0 1274052026
## 12455 78 2334 5.0 1328046149
## 12456 78 2336 5.0 1274046041
## 12457 78 2353 5.0 1328046208
## 12458 78 2393 4.0 1344470328
## 12459 78 2394 4.0 1274046086
## 12460 78 2541 5.0 1327288596
## 12461 78 2542 4.5 1274051581
## 12462 78 2571 5.0 1274050787
## 12463 78 2617 5.0 1327289320
## 12464 78 2628 5.0 1274050865
## 12465 78 2657 2.0 1274046002
## 12466 78 2683 3.5 1274050967
## 12467 78 2700 5.0 1344469934
## 12468 78 2706 5.0 1274051060
## 12469 78 2710 5.0 1274051281
## 12470 78 2858 4.5 1274050793
## 12471 78 2908 5.0 1327288635
## 12472 78 2916 4.0 1274051279
## 12473 78 2947 5.0 1345676411
## 12474 78 2959 5.0 1274050848
## 12475 78 2987 4.0 1344469750
## 12476 78 2995 2.5 1274046172
## 12477 78 3052 4.0 1344469913
## 12478 78 3077 5.0 1344470523
## 12479 78 3082 4.5 1344470341
## 12480 78 3147 4.5 1274051797
## 12481 78 3256 4.0 1344470469
## 12482 78 3273 5.0 1327288628
## 12483 78 3298 4.0 1274051897
## 12484 78 3386 5.0 1327289236
## 12485 78 3418 5.0 1327288622
## 12486 78 3504 3.5 1274046121
## 12487 78 3556 3.0 1344470577
## 12488 78 3578 5.0 1274050886
## 12489 78 3617 4.5 1344470313
## 12490 78 3623 5.0 1327288585
## 12491 78 3753 5.0 1344469943
## 12492 78 3755 3.0 1327289233
## 12493 78 3785 5.0 1327289228
## 12494 78 3793 4.0 1274050970
## 12495 78 3897 4.0 1274051784
## 12496 78 3908 4.5 1344530161
## 12497 78 3949 5.0 1327063029
## 12498 78 3967 3.5 1344472522
## 12499 78 3977 3.5 1344469805
## 12500 78 3979 4.0 1344471126
## 12501 78 3986 4.0 1333307515
## 12502 78 3994 3.5 1327288577
## 12503 78 3996 4.5 1274050983
## 12504 78 4007 5.0 1344470392
## 12505 78 4011 5.0 1274051829
## 12506 78 4015 3.5 1344470351
## 12507 78 4018 3.5 1344470343
## 12508 78 4022 3.5 1327288572
## 12509 78 4025 5.0 1327288563
## 12510 78 4128 5.0 1274051637
## 12511 78 4226 5.0 1274050984
## 12512 78 4239 5.0 1327288556
## 12513 78 4270 5.0 1327288550
## 12514 78 4306 1.5 1274050890
## 12515 78 4308 4.5 1344469968
## 12516 78 4367 5.0 1344470491
## 12517 78 4369 4.5 1344470449
## 12518 78 4370 4.5 1344470026
## 12519 78 4388 5.0 1344470349
## 12520 78 4446 4.5 1274046093
## 12521 78 4641 5.0 1356229145
## 12522 78 4643 5.0 1327288541
## 12523 78 4718 4.5 1344470443
## 12524 78 4744 3.5 1344530365
## 12525 78 4878 4.0 1274051518
## 12526 78 4896 2.5 1274051757
## 12527 78 4973 5.0 1327063019
## 12528 78 4974 5.0 1333307847
## 12529 78 4993 4.5 1274050863
## 12530 78 4995 4.5 1274051748
## 12531 78 5010 4.0 1344470040
## 12532 78 5219 4.5 1344470309
## 12533 78 5378 5.0 1274051759
## 12534 78 5418 5.0 1274051563
## 12535 78 5445 4.5 1274051086
## 12536 78 5463 3.5 1344530435
## 12537 78 5502 4.5 1344470149
## 12538 78 5669 5.0 1344469825
## 12539 78 5693 4.0 1274046191
## 12540 78 5784 2.5 1344530420
## 12541 78 5872 5.0 1344530381
## 12542 78 5952 5.0 1274050908
## 12543 78 5989 4.5 1274051712
## 12544 78 5992 4.0 1328636458
## 12545 78 6016 5.0 1327062972
## 12546 78 6058 4.5 1333307553
## 12547 78 6365 5.0 1274051783
## 12548 78 6377 3.0 1274051715
## 12549 78 6502 5.0 1327288534
## 12550 78 6537 3.5 1327288529
## 12551 78 6539 3.0 1274051268
## 12552 78 6552 4.0 1346672082
## 12553 78 6564 4.5 1344470357
## 12554 78 6793 4.0 1344518331
## 12555 78 6796 4.0 1274052032
## 12556 78 6874 4.0 1274051752
## 12557 78 6888 5.0 1327288739
## 12558 78 6934 5.0 1274051798
## 12559 78 6979 5.0 1274051633
## 12560 78 7153 5.0 1274050980
## 12561 78 7254 4.0 1344470121
## 12562 78 7323 4.0 1344470372
## 12563 78 7438 4.0 1274051794
## 12564 78 7458 5.0 1344470476
## 12565 78 7566 5.0 1344470545
## 12566 78 8361 4.5 1327288726
## 12567 78 8368 3.5 1274051780
## 12568 78 8464 3.5 1327288523
## 12569 78 8533 5.0 1344518494
## 12570 78 8622 5.0 1327289219
## 12571 78 8644 5.0 1344469996
## 12572 78 8665 5.0 1274051848
## 12573 78 8861 5.0 1327288720
## 12574 78 8874 4.0 1344469894
## 12575 78 8947 3.5 1344530363
## 12576 78 8972 3.5 1344530371
## 12577 78 26614 5.0 1327063041
## 12578 78 26712 5.0 1344518298
## 12579 78 27831 4.5 1327288715
## 12580 78 33166 5.0 1328651648
## 12581 78 33493 5.0 1274051716
## 12582 78 33794 4.0 1327063058
## 12583 78 34048 2.0 1345676370
## 12584 78 36529 5.0 1327288988
## 12585 78 38499 5.0 1328636442
## 12586 78 39183 5.0 1328636566
## 12587 78 40815 3.5 1274051816
## 12588 78 43679 4.5 1344470539
## 12589 78 44191 3.5 1274051721
## 12590 78 44555 4.5 1327063006
## 12591 78 46335 4.5 1363462225
## 12592 78 46723 5.0 1344470740
## 12593 78 48774 4.0 1327289209
## 12594 78 49272 3.5 1344469724
## 12595 78 50658 5.0 1344518302
## 12596 78 50740 5.0 1344518809
## 12597 78 50742 5.0 1344518317
## 12598 78 51662 5.0 1274051823
## 12599 78 51935 5.0 1328046198
## 12600 78 52767 5.0 1344518294
## 12601 78 52952 5.0 1344470834
## 12602 78 54001 4.0 1344470126
## 12603 78 54272 4.5 1344470065
## 12604 78 54286 5.0 1274051523
## 12605 78 56174 4.5 1327288700
## 12606 78 58559 5.0 1274051773
## 12607 78 65130 5.0 1327063126
## 12608 78 68358 4.0 1344469772
## 12609 78 69757 4.0 1344529892
## 12610 78 70678 4.5 1358634080
## 12611 78 72998 5.0 1274051746
## 12612 78 79132 4.5 1327062958
## 12613 78 81834 4.5 1344470051
## 12614 78 88125 4.5 1344469820
## 12615 78 88129 4.0 1344470072
## 12616 78 97673 4.5 1352920811
## 12617 79 1 2.0 1182994648
## 12618 79 2 2.5 1182994926
## 12619 79 7 0.5 1182995062
## 12620 79 150 2.5 1182994636
## 12621 79 260 3.0 1182994622
## 12622 79 344 2.0 1182994728
## 12623 79 356 4.0 1182994610
## 12624 79 367 2.5 1182994765
## 12625 79 468 0.5 1182555848
## 12626 79 480 3.0 1182994616
## 12627 79 519 2.0 1182556000
## 12628 79 587 2.5 1182994781
## 12629 79 588 2.5 1182994717
## 12630 79 592 2.5 1182994627
## 12631 79 648 2.5 1182994732
## 12632 79 736 3.0 1182994756
## 12633 79 778 3.0 1182994965
## 12634 79 780 2.5 1182994653
## 12635 79 924 2.0 1182994899
## 12636 79 1097 3.0 1182994775
## 12637 79 1101 2.5 1182994952
## 12638 79 1196 3.0 1182994723
## 12639 79 1210 3.0 1182994711
## 12640 79 1291 2.5 1182994818
## 12641 79 1517 0.5 1182994912
## 12642 79 1580 3.0 1182994786
## 12643 79 1721 2.5 1182994791
## 12644 79 1917 2.5 1182994945
## 12645 79 2013 2.5 1182555959
## 12646 79 2150 0.5 1182555847
## 12647 79 2422 2.0 1182556054
## 12648 79 2571 3.0 1182994750
## 12649 79 2628 3.0 1182994807
## 12650 79 2640 2.5 1182995057
## 12651 79 2641 2.5 1182555876
## 12652 79 2683 0.5 1182994878
## 12653 79 2918 3.5 1182994972
## 12654 79 3478 3.0 1182556148
## 12655 79 3578 3.0 1182994834
## 12656 79 3697 2.0 1182555991
## 12657 79 3702 2.5 1182555869
## 12658 79 3793 3.0 1182994903
## 12659 79 3864 2.5 1182556240
## 12660 79 4306 3.0 1182994861
## 12661 79 4886 3.0 1182995029
## 12662 79 4993 3.0 1182994849
## 12663 79 5349 3.0 1182995072
## 12664 79 5952 3.0 1182994884
## 12665 79 6539 2.5 1182995104
## 12666 79 7153 3.0 1182995012
## 12667 79 32031 3.5 1182556308
## 12668 79 39292 3.0 1182556130
## 12669 79 42738 2.5 1182556378
## 12670 79 45081 2.0 1182556482
## 12671 79 49530 3.5 1182556320
## 12672 80 2 2.0 844860022
## 12673 80 6 4.0 844860041
## 12674 80 7 4.0 844860107
## 12675 80 10 3.0 844860003
## 12676 80 16 5.0 844860062
## 12677 80 20 1.0 844860151
## 12678 80 21 4.0 844860003
## 12679 80 25 4.0 844860041
## 12680 80 32 5.0 844860003
## 12681 80 45 4.0 844860062
## 12682 80 46 3.0 844860173
## 12683 80 50 3.0 844860003
## 12684 80 73 5.0 844860517
## 12685 80 89 3.0 844860250
## 12686 80 93 1.0 844860173
## 12687 80 95 2.0 844860022
## 12688 80 100 2.0 844860266
## 12689 80 105 3.0 844860062
## 12690 80 112 4.0 844860085
## 12691 80 141 3.0 844860022
## 12692 80 156 5.0 844861440
## 12693 80 191 2.0 844860215
## 12694 80 608 5.0 844860062
## 12695 80 610 3.0 844860085
## 12696 80 616 4.0 844860085
## 12697 80 661 4.0 844860198
## 12698 80 671 4.0 844860496
## 12699 80 745 5.0 844861413
## 12700 80 762 2.0 844860250
## 12701 80 778 5.0 844860215
## 12702 80 780 4.0 844860041
## 12703 80 783 5.0 844860173
## 12704 80 800 5.0 844861413
## 12705 80 802 3.0 844860198
## 12706 80 805 4.0 844860266
## 12707 80 1084 4.0 844861019
## 12708 80 1104 4.0 844861019
## 12709 81 111 4.0 1307172367
## 12710 81 154 4.0 1307169402
## 12711 81 190 3.0 1307179969
## 12712 81 306 4.0 1307174799
## 12713 81 308 3.5 1307172938
## 12714 81 318 3.0 1307171149
## 12715 81 495 3.5 1307173087
## 12716 81 509 3.0 1307173089
## 12717 81 549 4.5 1307172985
## 12718 81 668 5.0 1307174641
## 12719 81 750 4.0 1307171452
## 12720 81 872 5.0 1307172386
## 12721 81 899 3.5 1307169236
## 12722 81 903 4.0 1307172383
## 12723 81 904 4.0 1307172343
## 12724 81 910 5.0 1307178610
## 12725 81 922 5.0 1307180667
## 12726 81 924 4.0 1307171594
## 12727 81 1132 3.0 1307178475
## 12728 81 1136 3.5 1307178724
## 12729 81 1173 4.5 1307173047
## 12730 81 1176 4.0 1307174899
## 12731 81 1199 4.5 1307180625
## 12732 81 1201 3.5 1307175182
## 12733 81 1206 4.0 1307172416
## 12734 81 1213 3.0 1307178374
## 12735 81 1219 4.0 1307172330
## 12736 81 1222 4.0 1307178462
## 12737 81 1230 4.0 1307172514
## 12738 81 1232 4.5 1307172080
## 12739 81 1251 4.5 1307169415
## 12740 81 1258 4.0 1307178606
## 12741 81 1295 3.5 1307172085
## 12742 81 1298 4.0 1307180587
## 12743 81 1339 1.5 1307169246
## 12744 81 1719 4.5 1307172493
## 12745 81 1913 3.0 1307178387
## 12746 81 1921 4.0 1307180647
## 12747 81 2010 5.0 1307174910
## 12748 81 2068 5.0 1307171800
## 12749 81 2131 4.0 1307171603
## 12750 81 2424 2.0 1307169218
## 12751 81 2551 4.0 1307180591
## 12752 81 2673 4.5 1307179973
## 12753 81 2712 4.5 1307180643
## 12754 81 2730 4.0 1307179936
## 12755 81 2959 4.0 1307180621
## 12756 81 2997 4.0 1307172282
## 12757 81 3000 4.5 1307172475
## 12758 81 3083 4.0 1307169335
## 12759 81 3160 4.0 1307179945
## 12760 81 3415 5.0 1307172071
## 12761 81 3578 3.5 1307173783
## 12762 81 3637 4.0 1307179942
## 12763 81 3788 4.5 1307171554
## 12764 81 3814 5.0 1307171816
## 12765 81 3910 4.5 1307169357
## 12766 81 3925 4.0 1307180690
## 12767 81 3949 4.0 1307172357
## 12768 81 3967 3.0 1307169275
## 12769 81 3993 4.0 1307169422
## 12770 81 3996 4.0 1307180985
## 12771 81 4144 4.0 1307172241
## 12772 81 4271 5.0 1307174778
## 12773 81 4312 4.0 1307179931
## 12774 81 4334 4.5 1307171682
## 12775 81 4422 4.5 1307171518
## 12776 81 4437 4.0 1307173092
## 12777 81 4470 4.5 1307171511
## 12778 81 4658 5.0 1307172034
## 12779 81 4848 4.0 1307180444
## 12780 81 4878 2.0 1307180653
## 12781 81 4928 3.0 1307171489
## 12782 81 5028 5.0 1307172908
## 12783 81 5105 3.0 1307171929
## 12784 81 5147 4.0 1307171418
## 12785 81 5269 4.5 1307172978
## 12786 81 5530 2.5 1307169545
## 12787 81 5618 4.0 1307172369
## 12788 81 5668 2.5 1307169589
## 12789 81 5686 4.0 1307173060
## 12790 81 5971 4.5 1307172197
## 12791 81 6123 4.5 1307171746
## 12792 81 6214 3.5 1307180611
## 12793 81 6301 2.5 1307169608
## 12794 81 6440 4.5 1307180639
## 12795 81 6509 4.0 1307171598
## 12796 81 6641 4.5 1307173663
## 12797 81 6643 4.0 1307171752
## 12798 81 6666 4.0 1307171631
## 12799 81 6711 4.0 1307172319
## 12800 81 6807 5.0 1307173007
## 12801 81 6993 5.0 1307172238
## 12802 81 7172 4.0 1307179979
## 12803 81 7265 3.5 1307180420
## 12804 81 7323 4.0 1307172433
## 12805 81 7327 4.0 1307171479
## 12806 81 7361 4.0 1307172154
## 12807 81 7460 4.0 1307180598
## 12808 81 7564 5.0 1307174689
## 12809 81 7574 5.0 1307172961
## 12810 81 7786 3.5 1307178465
## 12811 81 7820 4.0 1307171686
## 12812 81 7938 4.0 1307171420
## 12813 81 7979 4.5 1307178330
## 12814 81 8014 3.5 1307175022
## 12815 81 8199 4.5 1307171680
## 12816 81 8239 5.0 1307171842
## 12817 81 8327 4.0 1307179983
## 12818 81 8338 4.5 1307171907
## 12819 81 8367 4.0 1307173075
## 12820 81 8485 4.0 1307178208
## 12821 81 8533 2.5 1307177440
## 12822 81 8638 5.0 1307172225
## 12823 81 8983 4.0 1307180990
## 12824 81 26150 5.0 1307172805
## 12825 81 26228 4.0 1307172101
## 12826 81 26258 5.0 1307171878
## 12827 81 26318 4.5 1307180149
## 12828 81 26326 4.5 1307180746
## 12829 81 26578 5.0 1307172863
## 12830 81 26662 4.0 1307172450
## 12831 81 31437 4.0 1307171367
## 12832 81 31524 4.0 1307180847
## 12833 81 31930 4.0 1307180362
## 12834 81 36276 4.0 1307174858
## 12835 81 37731 3.0 1307177412
## 12836 81 40491 4.5 1307171356
## 12837 81 43899 3.0 1307178303
## 12838 81 44694 3.0 1307172173
## 12839 81 45000 4.0 1307180335
## 12840 81 47274 4.0 1307172325
## 12841 81 47610 2.5 1307177426
## 12842 81 48043 3.5 1307180145
## 12843 81 48165 4.0 1307172130
## 12844 81 52528 4.0 1307172373
## 12845 81 52617 5.0 1307173112
## 12846 81 52885 4.0 1307180141
## 12847 81 53447 3.5 1307173098
## 12848 81 56782 4.0 1307178621
## 12849 81 58425 4.5 1307172311
## 12850 81 60950 3.0 1307169533
## 12851 81 61206 4.5 1307173763
## 12852 81 64701 4.0 1307172454
## 12853 81 65130 4.0 1307180134
## 12854 81 68137 2.0 1307180237
## 12855 81 68967 4.0 1307172169
## 12856 81 69516 4.0 1307180694
## 12857 81 69757 2.0 1307169383
## 12858 81 71108 4.0 1307171589
## 12859 81 71438 3.5 1307175227
## 12860 81 72998 3.0 1307177375
## 12861 81 73344 4.0 1307172203
## 12862 81 78836 4.0 1307171458
## 12863 81 79132 3.0 1307180634
## 12864 81 80463 3.0 1307172215
## 12865 81 81054 4.0 1307180849
## 12866 81 81591 2.5 1307172182
## 12867 81 81786 4.0 1307171915
## 12868 81 82459 3.5 1307172379
## 12869 82 10 3.0 835973445
## 12870 82 21 3.0 835973471
## 12871 82 34 5.0 835973471
## 12872 82 39 5.0 835973488
## 12873 82 47 5.0 835973458
## 12874 82 50 4.0 835973488
## 12875 82 110 5.0 835973458
## 12876 82 150 4.0 835973379
## 12877 82 153 3.0 835973398
## 12878 82 160 2.0 835973504
## 12879 82 165 3.0 835973398
## 12880 82 208 3.0 835973445
## 12881 82 231 4.0 835973419
## 12882 82 253 5.0 835973445
## 12883 82 266 4.0 835973504
## 12884 82 288 3.0 835973458
## 12885 82 292 3.0 835973431
## 12886 82 296 5.0 835973380
## 12887 82 300 4.0 835973458
## 12888 82 316 2.0 835973419
## 12889 82 318 5.0 835973419
## 12890 82 329 2.0 835973418
## 12891 82 339 4.0 835973431
## 12892 82 344 3.0 835973398
## 12893 82 356 5.0 835973504
## 12894 82 364 4.0 835973488
## 12895 82 367 3.0 835973504
## 12896 82 380 3.0 835973380
## 12897 82 410 3.0 835973458
## 12898 82 420 1.0 835973488
## 12899 82 434 3.0 835973431
## 12900 82 435 3.0 835973504
## 12901 82 454 3.0 835973488
## 12902 82 457 3.0 835973445
## 12903 82 588 4.0 835973398
## 12904 82 590 4.0 835973379
## 12905 82 592 3.0 835973379
## 12906 82 593 4.0 835973430
## 12907 82 595 5.0 835973419
## 12908 83 6 5.0 1156206916
## 12909 83 21 1.0 1156206448
## 12910 83 39 4.0 1156207541
## 12911 83 50 5.0 1156205258
## 12912 83 69 3.5 1156207469
## 12913 83 101 3.5 1156206709
## 12914 83 141 4.0 1156207607
## 12915 83 150 5.0 1156206932
## 12916 83 151 0.5 1156205069
## 12917 83 205 4.0 1156207528
## 12918 83 224 4.0 1156205399
## 12919 83 235 4.5 1156207393
## 12920 83 266 5.0 1156205395
## 12921 83 272 4.5 1156206432
## 12922 83 351 3.5 1156205656
## 12923 83 356 4.0 1156207431
## 12924 83 370 4.0 1156205062
## 12925 83 377 2.5 1156205254
## 12926 83 441 4.0 1156207404
## 12927 83 480 3.5 1156205241
## 12928 83 514 4.0 1156205644
## 12929 83 532 3.5 1156205647
## 12930 83 608 4.5 1156206584
## 12931 83 663 5.0 1156207579
## 12932 83 750 5.0 1156205385
## 12933 83 778 4.0 1156206735
## 12934 83 799 3.5 1156207536
## 12935 83 904 4.5 1156205103
## 12936 83 908 4.5 1156205036
## 12937 83 923 4.5 1156205382
## 12938 83 1060 5.0 1156206581
## 12939 83 1077 4.5 1156206305
## 12940 83 1078 4.0 1156205621
## 12941 83 1197 5.0 1156206554
## 12942 83 1208 5.0 1156205372
## 12943 83 1210 5.0 1156205236
## 12944 83 1230 5.0 1156205012
## 12945 83 1233 5.0 1156205366
## 12946 83 1240 3.0 1156205231
## 12947 83 1247 4.5 1156206232
## 12948 83 1257 5.0 1156205603
## 12949 83 1259 4.5 1156206569
## 12950 83 1265 4.5 1156206193
## 12951 83 1270 4.0 1156206651
## 12952 83 1276 5.0 1156205360
## 12953 83 1278 5.0 1156205116
## 12954 83 1288 4.5 1156205079
## 12955 83 1348 4.0 1156205597
## 12956 83 1358 0.5 1156205108
## 12957 83 1394 5.0 1156206678
## 12958 83 1476 5.0 1156207561
## 12959 83 1500 5.0 1156205057
## 12960 83 1590 5.0 1156205586
## 12961 83 1639 4.5 1156207452
## 12962 83 1653 5.0 1156205019
## 12963 83 1732 5.0 1156205355
## 12964 83 1747 4.0 1156207505
## 12965 83 1777 4.5 1156207576
## 12966 83 1799 5.0 1156207007
## 12967 83 1917 2.0 1156205343
## 12968 83 1920 0.5 1156205568
## 12969 83 1923 2.0 1156206976
## 12970 83 1961 5.0 1156205341
## 12971 83 2000 1.5 1156205337
## 12972 83 2109 3.5 1156205560
## 12973 83 2155 4.0 1156207519
## 12974 83 2291 5.0 1156207407
## 12975 83 2300 4.0 1156206206
## 12976 83 2302 4.0 1156207465
## 12977 83 2324 4.0 1156207385
## 12978 83 2359 4.0 1156206335
## 12979 83 2371 3.5 1156205549
## 12980 83 2395 5.0 1156207378
## 12981 83 2406 4.0 1156205072
## 12982 83 2502 5.0 1156205066
## 12983 83 2571 1.0 1156205227
## 12984 83 2599 4.0 1156205050
## 12985 83 2700 4.5 1156205318
## 12986 83 2716 4.0 1156206687
## 12987 83 2791 5.0 1156205315
## 12988 83 2795 5.0 1156206643
## 12989 83 2804 4.5 1156206109
## 12990 83 2858 4.0 1156206557
## 12991 83 2863 4.0 1156206361
## 12992 83 2918 5.0 1156206548
## 12993 83 2997 5.0 1156206640
## 12994 83 3022 4.5 1156206330
## 12995 83 3033 4.0 1156205312
## 12996 83 3037 4.0 1156206276
## 12997 83 3044 4.0 1156206983
## 12998 83 3087 3.5 1156205522
## 12999 83 3114 4.0 1156205304
## 13000 83 3160 0.5 1156205302
## 13001 83 3176 4.5 1156205298
## 13002 83 3198 4.0 1156205508
## 13003 83 3210 3.5 1156206681
## 13004 83 3252 4.0 1156205515
## 13005 83 3253 3.5 1156206992
## 13006 83 3261 4.0 1156207514
## 13007 83 3355 5.0 1156207276
## 13008 83 3359 4.0 1156205502
## 13009 83 3361 4.0 1156205494
## 13010 83 3362 4.5 1156206161
## 13011 83 3396 4.0 1156206211
## 13012 83 3398 4.0 1156205797
## 13013 83 3408 4.0 1156205095
## 13014 83 3421 5.0 1156206559
## 13015 83 3450 4.0 1156207595
## 13016 83 3481 4.0 1156206178
## 13017 83 3552 4.0 1156206668
## 13018 83 3671 4.5 1156206112
## 13019 83 3735 5.0 1156205479
## 13020 83 3751 4.0 1156206371
## 13021 83 3753 1.0 1156205296
## 13022 83 3809 4.0 1156207556
## 13023 83 3814 4.5 1156206196
## 13024 83 3868 5.0 1156206694
## 13025 83 3869 3.0 1156205474
## 13026 83 3897 4.0 1156206169
## 13027 83 3911 2.0 1156205292
## 13028 83 3950 3.5 1156205780
## 13029 83 4025 3.5 1156205468
## 13030 83 4027 5.0 1156206599
## 13031 83 4034 4.5 1156205085
## 13032 83 4066 4.0 1156205765
## 13033 83 4174 4.0 1156206943
## 13034 83 4255 1.5 1156205759
## 13035 83 4321 4.5 1156207591
## 13036 83 4322 4.5 1156205751
## 13037 83 4361 4.5 1156206364
## 13038 83 4388 4.0 1156205739
## 13039 83 4558 3.5 1156205736
## 13040 83 4571 3.5 1156205449
## 13041 83 4688 4.0 1156206995
## 13042 83 4886 4.0 1156206165
## 13043 83 4898 0.5 1156207279
## 13044 83 4963 4.5 1156205274
## 13045 83 4975 0.5 1156205445
## 13046 83 5060 4.5 1156206253
## 13047 83 5103 4.0 1156206947
## 13048 83 5135 4.5 1156206394
## 13049 83 5152 5.0 1156205729
## 13050 83 5377 4.0 1156206692
## 13051 83 5445 0.5 1156205029
## 13052 83 5602 3.5 1156206308
## 13053 83 5650 3.5 1156206705
## 13054 83 5669 4.0 1156205270
## 13055 83 5673 1.0 1156205435
## 13056 83 5902 0.5 1156206646
## 13057 83 6373 3.5 1156205432
## 13058 83 6659 3.5 1156207498
## 13059 83 6863 4.5 1156206301
## 13060 83 6947 5.0 1156205421
## 13061 83 7028 4.5 1156206134
## 13062 83 8376 4.0 1156205417
## 13063 83 8493 5.0 1156206979
## 13064 83 8528 3.5 1156205409
## 13065 83 8784 4.0 1156206637
## 13066 83 8807 5.0 1156205696
## 13067 83 8874 4.5 1156206118
## 13068 83 35836 3.5 1156206624
## 13069 84 1 3.5 1429910800
## 13070 84 110 4.0 1429910930
## 13071 84 260 4.0 1429910910
## 13072 84 296 4.0 1429910837
## 13073 84 356 3.0 1429910797
## 13074 84 589 3.0 1429910957
## 13075 84 1036 4.5 1429910764
## 13076 84 1196 4.0 1429910902
## 13077 84 1198 3.5 1429910909
## 13078 84 1210 4.0 1429910922
## 13079 84 1610 3.5 1429910906
## 13080 84 2028 3.0 1429910948
## 13081 84 2268 3.5 1429911562
## 13082 84 2329 3.0 1429910790
## 13083 84 2571 5.0 1429712680
## 13084 84 2858 3.5 1429910812
## 13085 84 2916 4.0 1429910913
## 13086 84 2959 4.0 1429910771
## 13087 84 3114 3.5 1429910861
## 13088 84 3301 4.0 1429911170
## 13089 84 3578 4.0 1429910935
## 13090 84 3623 3.5 1429911066
## 13091 84 3624 4.0 1429911144
## 13092 84 3717 4.0 1429911104
## 13093 84 3752 3.5 1429911142
## 13094 84 3753 4.0 1429911073
## 13095 84 3980 4.5 1429911363
## 13096 84 3994 3.0 1429911077
## 13097 84 4023 3.0 1429911265
## 13098 84 4148 4.0 1429911164
## 13099 84 4270 3.5 1429911152
## 13100 84 4306 4.0 1429911006
## 13101 84 4310 3.5 1429911137
## 13102 84 4701 3.5 1429911227
## 13103 84 4720 4.0 1429911106
## 13104 84 4776 4.0 1429911149
## 13105 84 4886 4.0 1429911038
## 13106 84 4896 3.5 1429911063
## 13107 84 4963 4.0 1429911041
## 13108 84 4993 4.5 1429910749
## 13109 84 4995 4.5 1429911049
## 13110 84 5010 4.0 1429911572
## 13111 84 5418 3.5 1429910917
## 13112 84 5445 3.5 1429911017
## 13113 84 5459 3.5 1429911098
## 13114 84 5481 3.0 1429911130
## 13115 84 5630 3.5 1429911247
## 13116 84 5952 4.5 1429910753
## 13117 84 5989 3.5 1429911059
## 13118 84 6016 4.0 1429910831
## 13119 84 6287 3.5 1429911297
## 13120 84 6365 3.5 1429910872
## 13121 84 6373 3.5 1429911118
## 13122 84 6377 3.0 1429911039
## 13123 84 6378 3.0 1429911113
## 13124 84 6539 3.5 1429910932
## 13125 84 6874 4.0 1429911044
## 13126 84 7153 5.0 1429712691
## 13127 84 7254 3.5 1429911126
## 13128 84 7293 3.5 1429911204
## 13129 84 7438 4.0 1429911060
## 13130 84 7458 4.0 1429911207
## 13131 84 8361 3.0 1429911214
## 13132 84 8368 4.0 1429910840
## 13133 84 8531 3.5 1429911525
## 13134 84 8644 3.5 1429911101
## 13135 84 8665 3.5 1429910987
## 13136 84 8961 4.0 1429911051
## 13137 84 8972 3.5 1429911276
## 13138 84 30825 3.5 1429911292
## 13139 84 31696 4.0 1429911295
## 13140 84 32587 3.5 1429910892
## 13141 84 33646 4.0 1429911509
## 13142 84 33794 4.0 1429910927
## 13143 84 34162 3.5 1429911174
## 13144 84 35836 4.0 1429911102
## 13145 84 36529 3.5 1429911221
## 13146 84 40815 3.5 1429910876
## 13147 84 44199 3.5 1429911233
## 13148 84 45447 3.0 1429911253
## 13149 84 45499 4.0 1429911198
## 13150 84 45722 3.5 1429911097
## 13151 84 53125 3.5 1429911229
## 13152 84 54001 3.5 1429911203
## 13153 84 54272 3.0 1429911238
## 13154 84 54286 4.0 1429910996
## 13155 84 56174 3.0 1429911193
## 13156 84 58559 4.0 1429910919
## 13157 84 58803 4.0 1429911340
## 13158 84 59315 3.5 1429910974
## 13159 84 64983 4.0 1429911421
## 13160 84 65514 2.5 1429910960
## 13161 84 68157 3.5 1429910829
## 13162 84 68358 3.5 1429910890
## 13163 84 69122 4.0 1429911154
## 13164 84 69844 3.5 1429910852
## 13165 84 72998 4.0 1429911107
## 13166 84 74458 4.0 1429911208
## 13167 84 74795 4.0 1429911567
## 13168 84 76093 4.0 1429910886
## 13169 84 81229 3.5 1429911541
## 13170 84 85342 3.5 1429910984
## 13171 84 89745 4.0 1429910785
## 13172 84 91500 3.5 1429910849
## 13173 84 91529 4.0 1429911262
## 13174 84 91658 3.5 1429911003
## 13175 84 92259 4.5 1429911538
## 13176 84 94777 4.0 1429910965
## 13177 84 96079 3.0 1429911001
## 13178 84 99114 3.0 1429910808
## 13179 84 102125 3.5 1429910884
## 13180 84 106487 3.5 1429910860
## 13181 84 106489 5.0 1429910856
## 13182 84 110102 4.0 1429910866
## 13183 84 116797 4.5 1429712709
## 13184 84 117176 4.0 1429911324
## 13185 85 2 5.0 837511784
## 13186 85 3 2.0 837512420
## 13187 85 5 3.0 837512493
## 13188 85 10 5.0 837507143
## 13189 85 19 3.0 837512280
## 13190 85 21 4.0 837511743
## 13191 85 23 3.0 837512169
## 13192 85 44 2.0 837512134
## 13193 85 58 1.0 837506990
## 13194 85 110 5.0 837506903
## 13195 85 153 4.0 837506803
## 13196 85 158 1.0 837513025
## 13197 85 160 3.0 837512403
## 13198 85 161 4.0 837507117
## 13199 85 165 4.0 837506796
## 13200 85 170 3.0 837512681
## 13201 85 172 3.0 837513025
## 13202 85 173 4.0 837512148
## 13203 85 177 2.0 837512454
## 13204 85 181 1.0 837512701
## 13205 85 185 3.0 837511998
## 13206 85 186 3.0 837512987
## 13207 85 188 1.0 837511493
## 13208 85 196 3.0 837511986
## 13209 85 203 3.0 837512599
## 13210 85 208 3.0 837511797
## 13211 85 216 3.0 837512325
## 13212 85 227 4.0 837512325
## 13213 85 230 2.0 837512519
## 13214 85 231 4.0 837507101
## 13215 85 234 4.0 837512212
## 13216 85 247 1.0 837512599
## 13217 85 253 3.0 837512030
## 13218 85 255 5.0 837512635
## 13219 85 256 4.0 837513025
## 13220 85 261 1.0 837513012
## 13221 85 275 3.0 837512134
## 13222 85 277 2.0 837512482
## 13223 85 282 1.0 837512962
## 13224 85 288 4.0 837512114
## 13225 85 291 1.0 837512611
## 13226 85 292 4.0 837507117
## 13227 85 293 5.0 837511431
## 13228 85 296 5.0 837506719
## 13229 85 315 4.0 837512200
## 13230 85 316 5.0 837512888
## 13231 85 317 4.0 837512236
## 13232 85 318 5.0 837506848
## 13233 85 327 1.0 837512249
## 13234 85 329 5.0 837507101
## 13235 85 333 4.0 837511448
## 13236 85 339 1.0 837512763
## 13237 85 344 4.0 837506801
## 13238 85 349 5.0 837506799
## 13239 85 350 3.0 837511838
## 13240 85 355 3.0 837512312
## 13241 85 356 4.0 837506902
## 13242 85 357 3.0 837512561
## 13243 85 364 3.0 837512169
## 13244 85 366 1.0 837512580
## 13245 85 367 4.0 837511809
## 13246 85 368 4.0 837511822
## 13247 85 370 2.0 837512403
## 13248 85 374 1.0 837512723
## 13249 85 377 5.0 837511771
## 13250 85 380 5.0 837506726
## 13251 85 405 3.0 837512599
## 13252 85 410 4.0 837511784
## 13253 85 415 3.0 837512420
## 13254 85 420 1.0 837512433
## 13255 85 432 4.0 837512344
## 13256 85 434 3.0 837512015
## 13257 85 437 3.0 837512344
## 13258 85 442 4.0 837511349
## 13259 85 454 3.0 837512191
## 13260 85 457 5.0 837506903
## 13261 85 466 3.0 837512312
## 13262 85 471 3.0 837512312
## 13263 85 480 5.0 837511743
## 13264 85 485 3.0 837512225
## 13265 85 500 4.0 837512181
## 13266 85 508 2.0 837512648
## 13267 85 519 3.0 837512249
## 13268 85 520 3.0 837511838
## 13269 85 527 2.0 837506847
## 13270 85 543 4.0 837512561
## 13271 85 546 1.0 837512482
## 13272 85 548 4.0 837512388
## 13273 85 551 1.0 837512648
## 13274 85 553 4.0 837511743
## 13275 85 555 3.0 837512114
## 13276 85 586 3.0 837512268
## 13277 85 587 3.0 837512325
## 13278 85 588 3.0 837506797
## 13279 85 589 5.0 837507044
## 13280 85 590 3.0 837506714
## 13281 85 592 4.0 837506709
## 13282 85 593 4.0 837506876
## 13283 85 594 2.0 837512504
## 13284 85 595 3.0 837507101
## 13285 85 597 4.0 837512519
## 13286 85 610 3.0 837512225
## 13287 85 616 4.0 837512681
## 13288 85 648 5.0 837511448
## 13289 85 688 1.0 837512681
## 13290 85 709 1.0 837512723
## 13291 85 733 5.0 837506902
## 13292 86 1 3.0 848161799
## 13293 86 11 1.0 848159306
## 13294 86 14 4.0 848161252
## 13295 86 17 5.0 848159382
## 13296 86 18 5.0 848160301
## 13297 86 19 1.0 848159249
## 13298 86 21 1.0 848159249
## 13299 86 25 3.0 848161123
## 13300 86 26 4.0 848160245
## 13301 86 28 4.0 848160132
## 13302 86 29 4.0 848160311
## 13303 86 30 5.0 848161285
## 13304 86 32 5.0 848159270
## 13305 86 34 3.0 848159230
## 13306 86 35 4.0 848160169
## 13307 86 36 4.0 848159467
## 13308 86 39 4.0 848161788
## 13309 86 41 4.0 848160022
## 13310 86 46 3.0 848161443
## 13311 86 47 5.0 848159211
## 13312 86 58 4.0 848161091
## 13313 86 62 3.0 848161498
## 13314 86 68 4.0 848160534
## 13315 86 72 4.0 848161284
## 13316 86 73 3.0 848161182
## 13317 86 81 5.0 848161391
## 13318 86 82 3.0 848161091
## 13319 86 85 4.0 848161221
## 13320 86 97 4.0 848161123
## 13321 86 105 3.0 848161330
## 13322 86 110 3.0 848161539
## 13323 86 116 4.0 848160534
## 13324 86 121 3.0 848161182
## 13325 86 124 3.0 848161391
## 13326 86 126 1.0 848160230
## 13327 86 141 4.0 848159382
## 13328 86 144 3.0 848161353
## 13329 86 147 5.0 848161267
## 13330 86 150 4.0 848159074
## 13331 86 151 4.0 848161799
## 13332 86 154 4.0 848161123
## 13333 86 159 3.0 848161454
## 13334 86 160 2.0 848159289
## 13335 86 162 3.0 848161091
## 13336 86 171 4.0 848160273
## 13337 86 172 3.0 848161811
## 13338 86 178 5.0 848160534
## 13339 86 180 3.0 848161507
## 13340 86 186 1.0 848159406
## 13341 86 194 4.0 848161090
## 13342 86 198 3.0 848159752
## 13343 86 203 4.0 848159634
## 13344 86 208 3.0 848159167
## 13345 86 213 4.0 848161123
## 13346 86 218 4.0 848161454
## 13347 86 223 5.0 848159545
## 13348 86 224 3.0 848161373
## 13349 86 229 4.0 848160081
## 13350 86 231 1.0 848159117
## 13351 86 232 4.0 848159826
## 13352 86 235 4.0 848159429
## 13353 86 242 4.0 848160360
## 13354 86 246 3.0 848161252
## 13355 86 247 5.0 848159905
## 13356 86 249 4.0 848161208
## 13357 86 252 1.0 848159406
## 13358 86 253 4.0 848159191
## 13359 86 254 4.0 848161465
## 13360 86 260 5.0 848161982
## 13361 86 261 3.0 848161454
## 13362 86 263 3.0 848161149
## 13363 86 265 4.0 848159467
## 13364 86 266 3.0 848161787
## 13365 86 269 4.0 848161199
## 13366 86 272 4.0 848159608
## 13367 86 273 3.0 848161308
## 13368 86 282 3.0 848161308
## 13369 86 287 3.0 848161343
## 13370 86 288 3.0 848161773
## 13371 86 290 5.0 848160119
## 13372 86 292 3.0 848161773
## 13373 86 296 5.0 848159074
## 13374 86 299 5.0 848160039
## 13375 86 300 4.0 848159230
## 13376 86 302 3.0 848161134
## 13377 86 305 3.0 848159765
## 13378 86 306 5.0 848159807
## 13379 86 307 5.0 848159845
## 13380 86 308 5.0 848159932
## 13381 86 314 3.0 848161182
## 13382 86 316 3.0 848159117
## 13383 86 318 5.0 848159148
## 13384 86 319 5.0 848159779
## 13385 86 321 3.0 848160389
## 13386 86 324 3.0 848160729
## 13387 86 329 5.0 848159148
## 13388 86 331 3.0 848161199
## 13389 86 332 3.0 848160081
## 13390 86 337 4.0 848161104
## 13391 86 342 5.0 848159621
## 13392 86 345 5.0 848159719
## 13393 86 348 3.0 848161134
## 13394 86 357 5.0 848159270
## 13395 86 362 3.0 848159654
## 13396 86 364 4.0 848159211
## 13397 86 365 4.0 848161330
## 13398 86 369 4.0 848161149
## 13399 86 372 3.0 848161404
## 13400 86 405 2.0 848162010
## 13401 86 419 3.0 848159719
## 13402 86 427 3.0 848161443
## 13403 86 435 4.0 848161788
## 13404 86 444 4.0 848161353
## 13405 86 446 3.0 848160066
## 13406 86 454 2.0 848159191
## 13407 86 461 4.0 848160573
## 13408 86 468 3.0 848161491
## 13409 86 469 3.0 848161343
## 13410 86 471 4.0 848161161
## 13411 86 475 4.0 848159706
## 13412 86 477 3.0 848161443
## 13413 86 480 3.0 848159148
## 13414 86 481 3.0 848159932
## 13415 86 482 4.0 848161465
## 13416 86 497 4.0 848161123
## 13417 86 500 3.0 848161773
## 13418 86 501 5.0 848160301
## 13419 86 508 3.0 848159361
## 13420 86 509 5.0 848159326
## 13421 86 515 5.0 848159503
## 13422 86 527 5.0 848159249
## 13423 86 531 3.0 848159779
## 13424 86 534 4.0 848159856
## 13425 86 535 5.0 848159932
## 13426 86 538 5.0 848159989
## 13427 86 539 3.0 848159249
## 13428 86 541 4.0 848162072
## 13429 86 550 4.0 848159949
## 13430 86 551 4.0 848159429
## 13431 86 555 4.0 848159503
## 13432 86 568 3.0 848161252
## 13433 86 585 5.0 848161811
## 13434 86 586 1.0 848161788
## 13435 86 587 3.0 848159230
## 13436 86 588 3.0 848159093
## 13437 86 589 2.0 848159191
## 13438 86 590 3.0 848161161
## 13439 86 592 3.0 848159074
## 13440 86 593 5.0 848161773
## 13441 86 594 4.0 848159503
## 13442 86 595 3.0 848161267
## 13443 86 596 4.0 848159689
## 13444 86 597 3.0 848159230
## 13445 86 608 5.0 848159590
## 13446 86 613 3.0 848161360
## 13447 86 616 3.0 848161308
## 13448 86 633 5.0 848161343
## 13449 86 640 3.0 848160245
## 13450 86 650 3.0 848161481
## 13451 86 661 3.0 848161221
## 13452 86 665 4.0 848161149
## 13453 86 671 4.0 848161330
## 13454 86 708 3.0 848159794
## 13455 86 720 4.0 848162097
## 13456 86 724 3.0 848162119
## 13457 86 728 4.0 848160360
## 13458 86 753 3.0 848161237
## 13459 86 756 3.0 848161539
## 13460 86 766 5.0 848161161
## 13461 86 778 4.0 848159975
## 13462 86 780 2.0 848159406
## 13463 86 783 3.0 848159949
## 13464 86 784 2.0 848162010
## 13465 86 828 3.0 848161481
## 13466 86 830 2.0 848161528
## 13467 86 844 3.0 848161552
## 13468 86 892 3.0 848161552
## 13469 86 1035 4.0 848162129
## 13470 86 1036 1.0 848162026
## 13471 86 1041 5.0 848160714
## 13472 86 1046 4.0 848160865
## 13473 86 1059 3.0 848161267
## 13474 86 1073 4.0 848160039
## 13475 86 1079 4.0 848162144
## 13476 86 1084 3.0 848160211
## 13477 86 1148 5.0 848160625
## 13478 86 1161 4.0 848160729
## 13479 86 1163 3.0 848160993
## 13480 86 1354 5.0 848160983
## 13481 86 1357 5.0 848161044
## 13482 87 1 3.0 858623186
## 13483 87 7 3.0 858623219
## 13484 87 25 4.0 858623186
## 13485 87 32 3.0 858623186
## 13486 87 52 4.0 858623240
## 13487 87 62 1.0 858623186
## 13488 87 88 3.0 858623319
## 13489 87 95 3.0 858623186
## 13490 87 104 4.0 858623240
## 13491 87 112 3.0 858623240
## 13492 87 141 4.0 858623186
## 13493 87 260 4.0 858623240
## 13494 87 293 5.0 858623456
## 13495 87 494 4.0 858623219
## 13496 87 608 5.0 858623219
## 13497 87 648 3.0 858623186
## 13498 87 663 3.0 858623335
## 13499 87 728 5.0 858623364
## 13500 87 733 3.0 858623219
## 13501 87 736 2.0 858623186
## 13502 87 762 3.0 858623257
## 13503 87 778 3.0 858623270
## 13504 87 780 3.0 858623186
## 13505 87 785 4.0 858623319
## 13506 87 786 3.0 858623219
## 13507 87 802 3.0 858623257
## 13508 87 852 1.0 858623283
## 13509 87 1073 3.0 858623219
## 13510 87 1210 3.0 858623299
## 13511 87 1357 5.0 858623403
## 13512 87 1405 2.0 858623335
## 13513 88 2 3.5 1239773232
## 13514 88 7 4.0 1239765126
## 13515 88 11 3.5 1239764623
## 13516 88 21 3.5 1239764334
## 13517 88 31 3.0 1239755559
## 13518 88 36 4.0 1239758454
## 13519 88 39 3.0 1239764316
## 13520 88 47 4.0 1239763433
## 13521 88 62 3.5 1239758460
## 13522 88 95 2.0 1239764336
## 13523 88 104 0.5 1239764721
## 13524 88 141 4.5 1239764330
## 13525 88 150 4.0 1239763733
## 13526 88 153 2.0 1239763939
## 13527 88 160 2.0 1239765071
## 13528 88 163 3.0 1239766992
## 13529 88 165 3.0 1239763933
## 13530 88 185 3.0 1239764312
## 13531 88 223 4.5 1239764512
## 13532 88 231 0.5 1239767689
## 13533 88 253 3.0 1239764173
## 13534 88 256 0.5 1239755560
## 13535 88 260 4.0 1239763727
## 13536 88 261 3.5 1239755456
## 13537 88 288 3.0 1239758451
## 13538 88 296 3.5 1239757625
## 13539 88 316 2.5 1239763984
## 13540 88 318 4.0 1239757629
## 13541 88 337 3.5 1239764763
## 13542 88 339 4.0 1239764337
## 13543 88 344 2.0 1239763845
## 13544 88 345 3.0 1239775160
## 13545 88 350 3.0 1239764885
## 13546 88 353 4.0 1239764964
## 13547 88 356 4.0 1239757626
## 13548 88 357 5.0 1239764169
## 13549 88 364 4.0 1239763943
## 13550 88 377 3.0 1239763839
## 13551 88 380 2.0 1239763826
## 13552 88 435 1.5 1239766980
## 13553 88 440 2.5 1239773306
## 13554 88 454 2.5 1239764176
## 13555 88 457 2.5 1239763731
## 13556 88 480 3.0 1239763722
## 13557 88 497 4.0 1239765126
## 13558 88 500 2.5 1239772521
## 13559 88 508 4.0 1239764638
## 13560 88 509 5.0 1239764747
## 13561 88 520 1.5 1239766985
## 13562 88 527 4.0 1239756770
## 13563 88 539 3.5 1239767724
## 13564 88 541 4.5 1239758268
## 13565 88 551 4.5 1239764701
## 13566 88 552 2.0 1239755377
## 13567 88 553 3.0 1239765069
## 13568 88 586 2.5 1239764309
## 13569 88 588 3.0 1239757679
## 13570 88 592 3.0 1239772558
## 13571 88 593 2.0 1239763711
## 13572 88 594 4.0 1239764749
## 13573 88 595 3.5 1239763938
## 13574 88 596 4.0 1239755381
## 13575 88 608 3.5 1239763830
## 13576 88 648 3.5 1239763854
## 13577 88 708 3.5 1239764853
## 13578 88 733 3.0 1239772575
## 13579 88 736 3.5 1239763983
## 13580 88 745 3.0 1239762941
## 13581 88 778 4.5 1239772824
## 13582 88 780 3.5 1239757090
## 13583 88 802 1.0 1239755385
## 13584 88 913 4.0 1239755437
## 13585 88 914 4.0 1239755560
## 13586 88 919 4.0 1239764515
## 13587 88 924 4.0 1239764492
## 13588 88 1028 3.0 1239775047
## 13589 88 1073 3.0 1239758081
## 13590 88 1079 4.0 1239764641
## 13591 88 1080 3.5 1239764678
## 13592 88 1097 3.5 1239758059
## 13593 88 1101 4.0 1239764609
## 13594 88 1136 3.5 1239758202
## 13595 88 1183 3.0 1239764886
## 13596 88 1193 4.0 1239758210
## 13597 88 1196 3.5 1239757684
## 13598 88 1197 4.0 1239758069
## 13599 88 1207 4.0 1239763265
## 13600 88 1225 4.5 1239764628
## 13601 88 1246 5.0 1239764716
## 13602 88 1258 3.0 1239764604
## 13603 88 1259 4.5 1239764615
## 13604 88 1265 2.5 1239772561
## 13605 88 1270 3.5 1239763858
## 13606 88 1278 4.0 1239766995
## 13607 88 1282 4.0 1239755420
## 13608 88 1291 3.0 1239764173
## 13609 88 1293 4.0 1239755561
## 13610 88 1302 2.5 1239755415
## 13611 88 1307 4.0 1239764516
## 13612 88 1380 2.5 1239765070
## 13613 88 1391 3.0 1239764905
## 13614 88 1393 3.0 1239764514
## 13615 88 1394 3.5 1239765130
## 13616 88 1407 1.5 1239764889
## 13617 88 1485 0.5 1239764845
## 13618 88 1500 4.0 1239765138
## 13619 88 1517 0.5 1239767713
## 13620 88 1527 4.0 1239758428
## 13621 88 1573 3.0 1239764767
## 13622 88 1580 2.5 1239756858
## 13623 88 1639 4.5 1239766989
## 13624 88 1641 4.0 1239764988
## 13625 88 1674 3.0 1239755446
## 13626 88 1704 5.0 1239758442
## 13627 88 1732 4.0 1239764905
## 13628 88 1777 1.5 1239773365
## 13629 88 1784 3.5 1239764518
## 13630 88 1909 0.5 1239755427
## 13631 88 1917 3.0 1239764540
## 13632 88 1961 3.5 1239764341
## 13633 88 1968 3.5 1239772229
## 13634 88 2011 2.0 1239764751
## 13635 88 2054 3.0 1239764896
## 13636 88 2100 3.5 1239774217
## 13637 88 2115 2.0 1239764695
## 13638 88 2174 4.0 1239764636
## 13639 88 2268 3.0 1239765142
## 13640 88 2291 4.5 1239764706
## 13641 88 2302 3.0 1239767000
## 13642 88 2321 3.0 1257010873
## 13643 88 2329 2.5 1239764852
## 13644 88 2353 3.5 1239766983
## 13645 88 2355 3.5 1239764618
## 13646 88 2396 4.5 1239764344
## 13647 88 2502 4.0 1239764770
## 13648 88 2571 4.0 1239763841
## 13649 88 2599 4.0 1239772626
## 13650 88 2617 2.5 1239764978
## 13651 88 2628 0.5 1239758086
## 13652 88 2640 2.0 1239764969
## 13653 88 2671 4.0 1239774709
## 13654 88 2692 4.5 1239763430
## 13655 88 2710 1.0 1239764684
## 13656 88 2712 2.5 1239766975
## 13657 88 2716 3.5 1239767661
## 13658 88 2762 4.0 1239767652
## 13659 88 2763 2.5 1239755416
## 13660 88 2791 3.5 1239764774
## 13661 88 2797 4.0 1239764693
## 13662 88 2858 4.0 1239757873
## 13663 88 2959 4.0 1239758107
## 13664 88 2962 4.5 1239778395
## 13665 88 2997 4.0 1239764339
## 13666 88 3052 2.5 1239765128
## 13667 88 3081 3.0 1239773748
## 13668 88 3147 4.0 1239764794
## 13669 88 3160 4.0 1239774220
## 13670 88 3255 3.0 1239755557
## 13671 88 3408 4.5 1239765070
## 13672 88 3418 3.5 1239775154
## 13673 88 3435 3.5 1239763277
## 13674 88 3448 4.0 1239773739
## 13675 88 3481 4.5 1239765131
## 13676 88 3578 2.0 1239764184
## 13677 88 3751 3.5 1239765070
## 13678 88 3753 3.5 1239773151
## 13679 88 3755 2.5 1239755558
## 13680 88 3793 3.0 1239756814
## 13681 88 3897 4.5 1239764782
## 13682 88 3996 3.5 1239758460
## 13683 88 4017 4.0 1239775449
## 13684 88 4022 4.0 1239764966
## 13685 88 4027 4.0 1239764951
## 13686 88 4034 4.0 1239764957
## 13687 88 4226 3.0 1239762847
## 13688 88 4246 4.0 1239772249
## 13689 88 4308 3.0 1239772623
## 13690 88 4720 2.5 1239773931
## 13691 88 4886 4.0 1239764688
## 13692 88 4896 3.5 1239767658
## 13693 88 4963 4.5 1239764753
## 13694 88 4973 5.0 1239757171
## 13695 88 4979 4.0 1239772946
## 13696 88 4993 4.0 1239756824
## 13697 88 4995 3.0 1239757094
## 13698 88 5218 3.5 1239772461
## 13699 88 5299 3.5 1239772239
## 13700 88 5349 3.0 1239764714
## 13701 88 5377 4.5 1239778184
## 13702 88 5378 1.0 1239767719
## 13703 88 5418 4.0 1239767682
## 13704 88 5445 3.5 1239764608
## 13705 88 5459 2.5 1239773123
## 13706 88 5618 4.0 1239762921
## 13707 88 5679 2.0 1239773937
## 13708 88 5952 3.5 1239756837
## 13709 88 5991 3.0 1239773743
## 13710 88 5995 4.5 1239763309
## 13711 88 6016 4.0 1239762854
## 13712 88 6373 2.5 1239773941
## 13713 88 6377 4.0 1239764786
## 13714 88 6539 4.0 1239764697
## 13715 88 6711 4.5 1239767643
## 13716 88 6807 4.0 1239773949
## 13717 88 6863 3.0 1239772568
## 13718 88 6873 4.0 1239771765
## 13719 88 6874 4.0 1239756823
## 13720 88 6881 4.0 1256960996
## 13721 88 6942 4.5 1239771692
## 13722 88 7147 4.0 1239772247
## 13723 88 7153 3.5 1239757077
## 13724 88 7285 4.0 1239775462
## 13725 88 7361 4.0 1239766978
## 13726 88 7438 4.0 1239767657
## 13727 88 8228 4.5 1239763295
## 13728 88 8368 3.5 1239767702
## 13729 88 8636 3.0 1239772533
## 13730 88 8644 4.0 1239772225
## 13731 88 8665 4.0 1239767646
## 13732 88 8784 4.0 1239772582
## 13733 88 8874 3.5 1239772618
## 13734 88 30707 3.5 1239772528
## 13735 88 30793 2.5 1239772951
## 13736 88 32587 3.5 1239772632
## 13737 88 32598 3.0 1239778397
## 13738 88 33794 2.0 1239755439
## 13739 88 34405 3.0 1239775005
## 13740 88 35836 2.5 1239772928
## 13741 88 36517 4.0 1239778633
## 13742 88 40815 3.5 1239774702
## 13743 88 40819 4.5 1239761146
## 13744 88 41566 4.0 1239772241
## 13745 88 45447 3.0 1239774712
## 13746 88 46976 4.5 1239774126
## 13747 88 50872 4.0 1239772995
## 13748 88 51705 4.5 1251668327
## 13749 88 52668 4.5 1259386770
## 13750 88 52973 3.0 1239773175
## 13751 88 54001 4.0 1239773229
## 13752 88 55269 1.5 1256960930
## 13753 88 56367 5.0 1239757476
## 13754 88 57669 4.0 1256961092
## 13755 88 59615 1.0 1239772235
## 13756 88 60684 2.5 1239758696
## 13757 88 62344 4.5 1239775107
## 13758 88 63515 2.5 1239772923
## 13759 88 63876 4.5 1239775407
## 13760 88 65261 4.0 1251668389
## 13761 88 66097 4.0 1239758693
## 13762 88 66198 3.0 1239759260
## 13763 88 67193 3.0 1239758705
## 13764 88 67799 2.5 1239767650
## 13765 88 68954 4.5 1249886099
## 13766 88 69844 4.0 1249886123
## 13767 88 70293 4.5 1251956371
## 13768 89 1 5.0 1257620018
## 13769 89 107 4.0 1257610324
## 13770 89 110 5.0 1257620127
## 13771 89 165 4.0 1257620488
## 13772 89 231 5.0 1257620511
## 13773 89 260 5.0 1257620279
## 13774 89 296 5.0 1257620073
## 13775 89 303 4.0 1257610311
## 13776 89 316 4.0 1257620499
## 13777 89 318 5.0 1257620251
## 13778 89 327 2.0 1257610314
## 13779 89 344 5.0 1257620122
## 13780 89 364 5.0 1257620508
## 13781 89 428 4.0 1257610525
## 13782 89 480 5.0 1257620110
## 13783 89 500 5.0 1257620515
## 13784 89 588 4.5 1257620522
## 13785 89 589 4.0 1257620040
## 13786 89 590 5.0 1257620132
## 13787 89 648 4.0 1257620113
## 13788 89 780 4.0 1257620045
## 13789 89 1019 3.0 1257610347
## 13790 89 1073 4.5 1257620538
## 13791 89 1214 3.5 1257620544
## 13792 89 1240 4.5 1257620479
## 13793 89 1265 4.5 1257620589
## 13794 89 1385 3.0 1257610479
## 13795 89 1617 4.0 1257620572
## 13796 89 1772 5.0 1257610885
## 13797 89 2028 5.0 1257620592
## 13798 89 2378 4.0 1257610468
## 13799 89 2571 5.0 1257620269
## 13800 89 2628 5.0 1257620129
## 13801 89 2683 5.0 1257620503
## 13802 89 2706 5.0 1257620604
## 13803 89 2762 5.0 1257620518
## 13804 89 2951 5.0 1257610437
## 13805 89 2959 5.0 1257620271
## 13806 89 2987 4.0 1257620535
## 13807 89 2991 5.0 1257610538
## 13808 89 3114 4.5 1257620568
## 13809 89 3254 4.0 1257610494
## 13810 89 3578 5.0 1257620265
## 13811 89 3638 5.0 1257610567
## 13812 89 3793 5.0 1257620282
## 13813 89 4886 4.0 1257620037
## 13814 89 4896 5.0 1257620582
## 13815 89 4963 5.0 1257620117
## 13816 89 5219 4.5 1257610620
## 13817 89 5349 4.5 1257620031
## 13818 89 5418 5.0 1257620554
## 13819 89 5952 5.0 1257620258
## 13820 89 6365 5.0 1257620255
## 13821 89 6539 5.0 1257620050
## 13822 89 6874 5.0 1257620132
## 13823 89 7153 5.0 1257620466
## 13824 89 7438 5.0 1257620454
## 13825 89 7454 4.0 1257610864
## 13826 89 8528 5.0 1257610580
## 13827 89 33794 5.0 1257620448
## 13828 89 45722 5.0 1257620541
## 13829 89 48516 5.0 1257620575
## 13830 89 49272 4.0 1257620285
## 13831 89 51662 5.0 1257620602
## 13832 89 58559 5.0 1257620481
## 13833 89 59315 5.0 1257620457
## 13834 90 1 4.0 875517174
## 13835 90 6 4.0 875517954
## 13836 90 25 2.0 875517624
## 13837 90 29 5.0 875517306
## 13838 90 32 4.0 875517953
## 13839 90 36 4.0 875516371
## 13840 90 79 3.0 875520648
## 13841 90 81 4.0 875520409
## 13842 90 141 3.0 875518226
## 13843 90 260 4.0 875516370
## 13844 90 608 5.0 875516370
## 13845 90 648 4.0 875519306
## 13846 90 661 3.0 875518088
## 13847 90 733 4.0 875516731
## 13848 90 736 3.0 875518345
## 13849 90 766 3.0 875520264
## 13850 90 778 4.0 875517233
## 13851 90 780 2.0 875520463
## 13852 90 783 3.0 875518641
## 13853 90 800 5.0 875517174
## 13854 90 802 4.0 875518088
## 13855 90 830 3.0 875520464
## 13856 90 832 4.0 875517754
## 13857 90 837 4.0 875517233
## 13858 90 866 4.0 875517953
## 13859 90 986 4.0 895843258
## 13860 90 1047 4.0 875518345
## 13861 90 1061 4.0 875517306
## 13862 90 1073 3.0 875518016
## 13863 90 1183 4.0 875514792
## 13864 90 1351 4.0 875517306
## 13865 90 1356 4.0 875517233
## 13866 90 1367 4.0 875519306
## 13867 90 1407 4.0 875514792
## 13868 90 1422 4.0 875515203
## 13869 90 1438 3.0 875515203
## 13870 90 1472 4.0 875519715
## 13871 90 1479 3.0 875515030
## 13872 90 1500 5.0 875517174
## 13873 90 1513 2.0 876370672
## 13874 90 1515 3.0 876288277
## 13875 90 1527 4.0 875518289
## 13876 90 1552 4.0 875517306
## 13877 90 1554 4.0 875516370
## 13878 90 1569 4.0 875518088
## 13879 90 1580 4.0 875517358
## 13880 90 1584 5.0 876288017
## 13881 90 1590 5.0 875515956
## 13882 90 1597 4.0 875515902
## 13883 90 1608 2.0 875515030
## 13884 91 1 5.0 1448798200
## 13885 91 12 3.5 1448813887
## 13886 91 19 4.0 1448813534
## 13887 91 23 3.5 1448798511
## 13888 91 34 3.0 1448798347
## 13889 91 104 4.0 1448814310
## 13890 91 110 5.0 1448798142
## 13891 91 216 4.0 1448813322
## 13892 91 231 4.5 1448813386
## 13893 91 260 5.0 1448798105
## 13894 91 267 3.5 1448814317
## 13895 91 318 5.0 1448798101
## 13896 91 356 5.0 1448798168
## 13897 91 370 4.5 1448814268
## 13898 91 380 4.5 1448798508
## 13899 91 466 5.0 1448814281
## 13900 91 527 5.0 1448798139
## 13901 91 588 4.5 1448798326
## 13902 91 589 5.0 1448798161
## 13903 91 747 3.5 1448814498
## 13904 91 1036 5.0 1448798146
## 13905 91 1047 4.0 1448798490
## 13906 91 1097 5.0 1448798242
## 13907 91 1196 5.0 1448798104
## 13908 91 1198 5.0 1448798107
## 13909 91 1200 4.0 1448798180
## 13910 91 1210 5.0 1448798136
## 13911 91 1214 4.0 1448798206
## 13912 91 1240 5.0 1448798178
## 13913 91 1265 5.0 1448798300
## 13914 91 1270 5.0 1448798307
## 13915 91 1291 5.0 1448798140
## 13916 91 1573 4.0 1448798532
## 13917 91 1682 5.0 1448798342
## 13918 91 2028 5.0 1448798143
## 13919 91 2335 3.0 1448813382
## 13920 91 2379 3.0 1448814231
## 13921 91 2380 3.0 1448814231
## 13922 91 2381 3.0 1448814230
## 13923 91 2382 2.5 1448814268
## 13924 91 2571 5.0 1448798112
## 13925 91 2706 4.0 1448813169
## 13926 91 2791 5.0 1448814124
## 13927 91 2948 4.5 1448798580
## 13928 91 3114 5.0 1448798200
## 13929 91 3146 3.5 1448813361
## 13930 91 3387 3.0 1448814276
## 13931 91 3578 4.0 1448798170
## 13932 91 3623 4.0 1448798564
## 13933 91 3821 3.0 1448814280
## 13934 91 3869 4.5 1448814228
## 13935 91 3979 3.0 1448814200
## 13936 91 3996 4.0 1448798208
## 13937 91 4015 3.0 1448813368
## 13938 91 4084 3.5 1448814226
## 13939 91 4306 4.5 1448798338
## 13940 91 4340 3.0 1448814412
## 13941 91 4718 4.0 1448813183
## 13942 91 4886 5.0 1448798317
## 13943 91 4973 4.5 1448798341
## 13944 91 4993 5.0 1448798115
## 13945 91 5218 4.5 1448813064
## 13946 91 5418 5.0 1448798216
## 13947 91 5952 5.0 1448798134
## 13948 91 6482 2.0 1448813528
## 13949 91 6550 3.0 1448814312
## 13950 91 6763 3.5 1448814436
## 13951 91 7153 5.0 1448798114
## 13952 91 7317 4.0 1448813185
## 13953 91 7346 4.0 1448813189
## 13954 91 8360 4.5 1448813078
## 13955 91 8531 3.0 1448814393
## 13956 91 30825 4.0 1448814287
## 13957 91 33679 4.5 1448798548
## 13958 91 33794 5.0 1448798175
## 13959 91 34162 4.5 1448813022
## 13960 91 35836 4.0 1448813008
## 13961 91 43836 3.5 1448814434
## 13962 91 44022 4.5 1448813043
## 13963 91 44191 4.5 1448798234
## 13964 91 44972 3.0 1448814469
## 13965 91 45186 4.5 1448798488
## 13966 91 46865 2.5 1448814476
## 13967 91 50806 2.0 1448814443
## 13968 91 52694 3.5 1448814407
## 13969 91 54272 4.5 1448813111
## 13970 91 54286 5.0 1448798163
## 13971 91 54503 4.0 1448813293
## 13972 91 54732 3.0 1448813885
## 13973 91 57532 2.0 1448814418
## 13974 91 58559 5.0 1448798116
## 13975 91 59014 3.0 1448814399
## 13976 91 59315 5.0 1448798230
## 13977 91 59369 4.5 1448798219
## 13978 91 59900 3.0 1448813535
## 13979 91 66798 4.0 1448814401
## 13980 91 68358 4.5 1448798186
## 13981 91 68954 4.0 1448798188
## 13982 91 69122 4.5 1448813028
## 13983 91 71535 4.5 1448798331
## 13984 91 73017 4.5 1448813010
## 13985 91 74851 4.5 1448798475
## 13986 91 76093 5.0 1448798187
## 13987 91 78041 3.5 1448798561
## 13988 91 78499 5.0 1448798300
## 13989 91 79132 5.0 1448798165
## 13990 91 79185 4.0 1448798481
## 13991 91 79293 4.0 1448798492
## 13992 91 79428 3.0 1448814299
## 13993 91 80549 3.5 1448813209
## 13994 91 81229 5.0 1448798482
## 13995 91 81564 4.5 1448813080
## 13996 91 82852 3.5 1448814286
## 13997 91 85414 5.0 1448798233
## 13998 91 87232 5.0 1448798202
## 13999 91 89745 5.0 1448798191
## 14000 91 91500 3.5 1448798222
## 14001 91 91542 5.0 1448798645
## 14002 91 91630 4.5 1448798513
## 14003 91 92259 5.0 1448813059
## 14004 91 92507 4.5 1448798507
## 14005 91 93326 4.0 1448798554
## 14006 91 93510 4.0 1448813012
## 14007 91 94466 4.0 1448798161
## 14008 91 96610 5.0 1448798244
## 14009 91 96616 3.0 1448814395
## 14010 91 97913 4.5 1448798340
## 14011 91 98809 4.5 1448798239
## 14012 91 103335 4.5 1448813040
## 14013 91 103341 3.5 1448813127
## 14014 91 103810 5.0 1448798514
## 14015 91 103883 4.0 1448813037
## 14016 91 104218 3.5 1448814472
## 14017 91 104374 4.5 1448813046
## 14018 91 106487 3.0 1448798204
## 14019 91 106489 4.5 1448798214
## 14020 91 106782 4.5 1448813133
## 14021 91 109374 5.0 1448813013
## 14022 91 110102 5.0 1448798210
## 14023 91 111781 4.0 1448798496
## 14024 91 112138 4.0 1448814302
## 14025 91 112175 4.5 1448813019
## 14026 91 112623 4.5 1448798238
## 14027 91 112852 5.0 1448798144
## 14028 91 115617 5.0 1448798217
## 14029 91 116977 3.5 1448813890
## 14030 91 132157 2.5 1448814423
## 14031 91 134368 4.0 1448798654
## 14032 91 134853 4.0 1448813002
## 14033 91 138036 5.0 1448798537
## 14034 92 1 5.0 848526251
## 14035 92 2 3.0 848525932
## 14036 92 6 3.0 848526431
## 14037 92 10 2.0 848525661
## 14038 92 11 4.0 848525903
## 14039 92 19 1.0 848525799
## 14040 92 21 5.0 848525799
## 14041 92 32 5.0 848525833
## 14042 92 34 5.0 848525764
## 14043 92 39 2.0 848525833
## 14044 92 44 3.0 848526389
## 14045 92 45 4.0 848526550
## 14046 92 47 5.0 848525730
## 14047 92 50 5.0 848525799
## 14048 92 62 3.0 848526334
## 14049 92 76 3.0 848526084
## 14050 92 95 3.0 848525971
## 14051 92 110 5.0 848525661
## 14052 92 112 4.0 848526594
## 14053 92 141 4.0 848526274
## 14054 92 145 3.0 848526572
## 14055 92 150 3.0 848525510
## 14056 92 151 3.0 848526334
## 14057 92 153 3.0 848525554
## 14058 92 160 2.0 848525873
## 14059 92 161 5.0 848525661
## 14060 92 163 5.0 848526550
## 14061 92 165 3.0 848525554
## 14062 92 172 1.0 848526406
## 14063 92 173 3.0 848525932
## 14064 92 177 2.0 848526037
## 14065 92 181 3.0 848526572
## 14066 92 186 3.0 848526334
## 14067 92 188 3.0 848526060
## 14068 92 193 1.0 848526484
## 14069 92 196 3.0 848526274
## 14070 92 204 4.0 848526363
## 14071 92 208 3.0 848525661
## 14072 92 223 5.0 848526508
## 14073 92 224 3.0 848526484
## 14074 92 231 3.0 848525589
## 14075 92 235 4.0 848526363
## 14076 92 237 3.0 848526529
## 14077 92 247 5.0 848526037
## 14078 92 252 3.0 848526334
## 14079 92 253 2.0 848525694
## 14080 92 266 2.0 848525873
## 14081 92 273 3.0 848526005
## 14082 92 288 3.0 848525694
## 14083 92 292 3.0 848525624
## 14084 92 293 4.0 848526363
## 14085 92 296 4.0 848525510
## 14086 92 300 4.0 848525764
## 14087 92 315 2.0 848525932
## 14088 92 316 1.0 848525589
## 14089 92 317 2.0 848525873
## 14090 92 318 5.0 848525624
## 14091 92 319 4.0 848526711
## 14092 92 328 3.0 848526037
## 14093 92 329 3.0 848525624
## 14094 92 330 3.0 848526061
## 14095 92 332 3.0 848526061
## 14096 92 333 3.0 848526431
## 14097 92 339 3.0 848525694
## 14098 92 344 2.0 848525554
## 14099 92 349 3.0 848525589
## 14100 92 350 2.0 848525873
## 14101 92 353 3.0 848526389
## 14102 92 355 2.0 848526484
## 14103 92 356 4.0 848525589
## 14104 92 357 3.0 848525833
## 14105 92 362 3.0 848526594
## 14106 92 364 1.0 848525730
## 14107 92 366 2.0 848526037
## 14108 92 367 3.0 848525730
## 14109 92 368 4.0 848526363
## 14110 92 370 3.0 848526431
## 14111 92 377 3.0 848525730
## 14112 92 380 4.0 848525510
## 14113 92 413 1.0 848526671
## 14114 92 420 1.0 848525833
## 14115 92 426 2.0 848526037
## 14116 92 432 2.0 848525903
## 14117 92 434 3.0 848525624
## 14118 92 435 3.0 848525903
## 14119 92 440 3.0 848525873
## 14120 92 442 3.0 848525971
## 14121 92 454 2.0 848525694
## 14122 92 455 3.0 848526615
## 14123 92 457 4.0 848525554
## 14124 92 466 2.0 848526508
## 14125 92 471 4.0 848526594
## 14126 92 474 4.0 848525932
## 14127 92 480 4.0 848525624
## 14128 92 485 3.0 848526431
## 14129 92 497 4.0 848526484
## 14130 92 500 3.0 848525730
## 14131 92 508 3.0 848526251
## 14132 92 509 1.0 848525932
## 14133 92 520 2.0 848526508
## 14134 92 527 4.0 848525799
## 14135 92 529 3.0 848526615
## 14136 92 532 3.0 848526005
## 14137 92 539 3.0 848525799
## 14138 92 543 3.0 848526632
## 14139 92 551 3.0 848526363
## 14140 92 552 1.0 848526529
## 14141 92 553 5.0 848525971
## 14142 92 555 5.0 848526458
## 14143 92 587 3.0 848525764
## 14144 92 588 3.0 848525554
## 14145 92 589 5.0 848525694
## 14146 92 590 4.0 848525510
## 14147 92 592 3.0 848525510
## 14148 92 595 5.0 848525589
## 14149 92 597 2.0 848525764
## 14150 92 606 2.0 848526061
## 14151 92 608 5.0 848526005
## 14152 92 610 3.0 848526615
## 14153 92 648 5.0 848526431
## 14154 92 736 2.0 848526274
## 14155 92 778 5.0 848526711
## 14156 92 780 2.0 848526334
## 14157 93 1 4.0 1304992014
## 14158 93 11 3.5 1304992956
## 14159 93 17 4.0 1304992470
## 14160 93 21 5.0 1304992496
## 14161 93 25 3.5 1304992612
## 14162 93 34 4.0 1304992044
## 14163 93 39 4.0 1304992650
## 14164 93 62 3.5 1304992545
## 14165 93 150 4.0 1304992002
## 14166 93 208 3.0 1304992201
## 14167 93 260 4.0 1304991771
## 14168 93 265 3.5 1304729472
## 14169 93 266 3.5 1304993113
## 14170 93 337 4.0 1304993047
## 14171 93 339 4.5 1304992536
## 14172 93 342 3.5 1304729463
## 14173 93 357 3.5 1304992467
## 14174 93 364 3.5 1304991727
## 14175 93 368 3.5 1304993029
## 14176 93 377 4.5 1304991695
## 14177 93 457 4.0 1304991813
## 14178 93 508 4.0 1304992794
## 14179 93 515 2.5 1304729519
## 14180 93 529 4.0 1304729511
## 14181 93 539 4.0 1304992253
## 14182 93 586 2.5 1304992362
## 14183 93 587 3.5 1304992164
## 14184 93 588 3.0 1304991715
## 14185 93 590 4.5 1304991644
## 14186 93 592 3.5 1304992145
## 14187 93 595 4.0 1304991672
## 14188 93 597 3.5 1304991976
## 14189 93 648 3.5 1304992476
## 14190 93 733 3.0 1304992157
## 14191 93 858 4.5 1304991806
## 14192 93 898 5.0 1304730634
## 14193 93 902 2.5 1304729528
## 14194 93 904 4.5 1304993084
## 14195 93 908 4.0 1304993135
## 14196 93 910 3.5 1304729500
## 14197 93 912 4.5 1304992427
## 14198 93 914 3.5 1304729546
## 14199 93 919 4.0 1304992912
## 14200 93 920 4.0 1304993128
## 14201 93 923 4.0 1304993105
## 14202 93 1073 3.5 1304991872
## 14203 93 1079 4.0 1304993056
## 14204 93 1097 4.0 1304991877
## 14205 93 1193 4.0 1304992150
## 14206 93 1197 4.0 1304992131
## 14207 93 1198 4.0 1304991788
## 14208 93 1225 4.0 1304992590
## 14209 93 1234 4.0 1304993139
## 14210 93 1240 3.0 1304991885
## 14211 93 1242 3.5 1304729440
## 14212 93 1246 3.5 1304992621
## 14213 93 1247 3.5 1304992965
## 14214 93 1259 4.0 1304992601
## 14215 93 1265 4.0 1304991801
## 14216 93 1270 3.5 1304992197
## 14217 93 1278 4.0 1304993180
## 14218 93 1291 3.5 1304992081
## 14219 93 1304 4.5 1304992945
## 14220 93 1307 4.0 1304992566
## 14221 93 1380 3.5 1304992785
## 14222 93 1387 3.0 1304992367
## 14223 93 1393 3.5 1304992382
## 14224 93 1394 4.0 1304992980
## 14225 93 1580 3.5 1304992244
## 14226 93 1610 4.0 1304992258
## 14227 93 1641 4.5 1304992689
## 14228 93 1682 3.5 1304992372
## 14229 93 1704 4.0 1304992435
## 14230 93 1721 4.0 1304992542
## 14231 93 1747 5.0 1304729481
## 14232 93 1784 3.5 1304992334
## 14233 93 1912 4.0 1304729620
## 14234 93 1923 3.5 1304992089
## 14235 93 1961 4.5 1304992108
## 14236 93 1968 3.5 1304992212
## 14237 93 2011 3.0 1304992510
## 14238 93 2081 2.5 1304992707
## 14239 93 2100 2.5 1304729449
## 14240 93 2115 3.5 1304992236
## 14241 93 2194 4.5 1304992654
## 14242 93 2268 4.5 1304992659
## 14243 93 2291 3.5 1304992445
## 14244 93 2302 4.0 1304992644
## 14245 93 2321 4.0 1304992988
## 14246 93 2355 3.0 1304992274
## 14247 93 2396 4.0 1304992573
## 14248 93 2406 3.5 1304992693
## 14249 93 2470 2.5 1304993132
## 14250 93 2599 4.0 1304992774
## 14251 93 2657 3.0 1304992753
## 14252 93 2716 3.5 1304991839
## 14253 93 2797 4.0 1304992605
## 14254 93 2918 4.0 1304992288
## 14255 93 3072 3.5 1304729573
## 14256 93 3101 4.0 1304993022
## 14257 93 3114 4.0 1304992431
## 14258 93 3176 3.0 1304992724
## 14259 93 3255 3.0 1304729539
## 14260 93 3256 3.5 1304729577
## 14261 93 3317 4.0 1304730537
## 14262 93 3408 3.5 1304992717
## 14263 93 3471 3.5 1304992675
## 14264 93 3751 4.0 1304992393
## 14265 93 3897 5.0 1304992126
## 14266 93 4014 3.5 1304993193
## 14267 93 4022 3.5 1304992208
## 14268 93 4027 3.5 1304992116
## 14269 93 4029 5.0 1304730462
## 14270 93 4085 3.5 1304992960
## 14271 93 4246 4.0 1304992617
## 14272 93 4306 3.0 1304991655
## 14273 93 4361 4.5 1304729607
## 14274 93 4886 3.0 1304992417
## 14275 93 4963 4.0 1304992228
## 14276 93 4979 4.5 1304992578
## 14277 93 4993 5.0 1304991776
## 14278 93 4995 4.0 1304992025
## 14279 93 5299 3.5 1304992638
## 14280 93 5377 3.5 1304992993
## 14281 93 5952 5.0 1304991738
## 14282 93 5989 4.0 1304992101
## 14283 93 6377 3.5 1304991702
## 14284 93 6711 4.0 1304992293
## 14285 93 6863 3.0 1304992773
## 14286 93 6942 3.5 1304993061
## 14287 93 7147 3.5 1304730389
## 14288 93 7153 5.0 1304991683
## 14289 93 8360 3.0 1304991855
## 14290 93 8636 3.5 1304992297
## 14291 93 8949 4.0 1304993087
## 14292 93 8961 5.0 1304991698
## 14293 93 27790 5.0 1304730326
## 14294 93 41566 4.0 1304992905
## 14295 93 41569 3.0 1304993097
## 14296 93 44195 4.0 1304730662
## 14297 93 45722 2.5 1304992317
## 14298 93 46578 4.0 1304992240
## 14299 93 49272 3.5 1304992218
## 14300 93 50872 3.5 1304992595
## 14301 93 54328 5.0 1304730410
## 14302 93 56367 5.0 1304992038
## 14303 93 59315 4.0 1304992192
## 14304 93 59615 2.5 1304993120
## 14305 93 60069 3.5 1304992010
## 14306 93 68954 5.0 1304992278
## 14307 93 72011 4.0 1304993011
## 14308 93 72998 4.0 1304991627
## 14309 93 74789 3.5 1304992976
## 14310 93 77561 4.0 1304992900
## 14311 93 78499 5.0 1304992451
## 14312 93 79132 4.0 1304730598
## 14313 93 81845 4.0 1304992984
## 14314 93 82459 4.0 1304993169
## 14315 93 84304 3.5 1304991723
## 14316 94 1 4.0 1291779829
## 14317 94 16 3.5 1291781117
## 14318 94 50 4.0 1291780058
## 14319 94 69 3.0 1291777340
## 14320 94 104 2.5 1291781042
## 14321 94 110 4.5 1291779579
## 14322 94 111 3.5 1291780487
## 14323 94 150 5.0 1291779548
## 14324 94 161 3.5 1291780453
## 14325 94 208 2.0 1291780169
## 14326 94 231 4.0 1291779818
## 14327 94 260 3.0 1291779564
## 14328 94 292 3.5 1291780604
## 14329 94 296 4.0 1291779736
## 14330 94 316 2.5 1291779708
## 14331 94 318 5.0 1291779616
## 14332 94 344 3.0 1291780145
## 14333 94 353 3.0 1291781185
## 14334 94 356 5.0 1291779585
## 14335 94 367 1.5 1291779806
## 14336 94 442 1.5 1291781070
## 14337 94 480 2.5 1291779540
## 14338 94 527 5.0 1291779717
## 14339 94 551 1.0 1291781004
## 14340 94 590 4.0 1292392510
## 14341 94 593 5.0 1291779634
## 14342 94 733 2.5 1291779941
## 14343 94 780 2.0 1291779697
## 14344 94 858 4.5 1291781482
## 14345 94 923 3.0 1291781464
## 14346 94 1049 3.0 1291777310
## 14347 94 1089 2.5 1291780484
## 14348 94 1131 4.5 1291781501
## 14349 94 1172 3.5 1291781459
## 14350 94 1193 3.5 1291779824
## 14351 94 1198 2.5 1291780026
## 14352 94 1213 4.0 1291780363
## 14353 94 1222 4.0 1291780634
## 14354 94 1233 1.5 1291780751
## 14355 94 1246 3.0 1291780969
## 14356 94 1252 3.5 1291781469
## 14357 94 1265 2.0 1291780019
## 14358 94 1270 4.0 1291779596
## 14359 94 1393 3.0 1291780592
## 14360 94 1552 2.5 1291781119
## 14361 94 1580 3.0 1291779528
## 14362 94 1610 4.0 1291780451
## 14363 94 1617 3.5 1291779626
## 14364 94 1653 4.0 1291780889
## 14365 94 1676 4.0 1291781072
## 14366 94 1682 4.0 1291780472
## 14367 94 1704 4.5 1291780191
## 14368 94 1721 4.5 1291779614
## 14369 94 1726 2.0 1291777522
## 14370 94 1777 2.5 1291781044
## 14371 94 1784 3.5 1291780064
## 14372 94 1961 4.0 1291779810
## 14373 94 1962 4.0 1292392507
## 14374 94 2012 2.5 1291780343
## 14375 94 2028 5.0 1291779546
## 14376 94 2115 1.0 1291780076
## 14377 94 2324 5.0 1291780553
## 14378 94 2329 4.5 1291780430
## 14379 94 2423 4.0 1291777298
## 14380 94 2501 4.5 1292392496
## 14381 94 2571 4.5 1291779758
## 14382 94 2628 1.0 1291780335
## 14383 94 2692 2.5 1291780964
## 14384 94 2706 3.5 1291779761
## 14385 94 2710 1.5 1291780347
## 14386 94 2762 3.0 1291779570
## 14387 94 2795 3.5 1291777280
## 14388 94 2804 4.0 1291781145
## 14389 94 2858 4.0 1291779537
## 14390 94 2916 2.0 1291780196
## 14391 94 2959 4.5 1291779525
## 14392 94 3105 4.5 1292392529
## 14393 94 3147 4.5 1291780171
## 14394 94 3175 1.5 1291780877
## 14395 94 3178 4.0 1291777330
## 14396 94 3243 1.5 1291777466
## 14397 94 3409 2.5 1291777325
## 14398 94 3441 0.5 1291777450
## 14399 94 3450 2.5 1291777293
## 14400 94 3471 3.0 1291780906
## 14401 94 3578 5.0 1291779610
## 14402 94 3593 0.5 1291777353
## 14403 94 3753 4.0 1291780599
## 14404 94 3948 3.5 1291780358
## 14405 94 3949 4.5 1291781033
## 14406 94 4011 3.0 1291780351
## 14407 94 4014 3.5 1291781096
## 14408 94 4022 4.0 1291780054
## 14409 94 4226 4.5 1291780090
## 14410 94 4306 5.0 1291779549
## 14411 94 4878 4.0 1291780425
## 14412 94 4973 4.5 1291779803
## 14413 94 4993 4.5 1291779544
## 14414 94 4995 5.0 1291779591
## 14415 94 5010 4.0 1291781082
## 14416 94 5218 3.5 1291780951
## 14417 94 5349 4.0 1291779535
## 14418 94 5418 4.0 1291779744
## 14419 94 5445 2.5 1291779700
## 14420 94 5464 3.5 1291777250
## 14421 94 5502 1.5 1291780622
## 14422 94 5679 2.5 1291780996
## 14423 94 5952 4.0 1291779657
## 14424 94 5989 4.5 1291779740
## 14425 94 5991 4.0 1291777241
## 14426 94 6016 3.0 1291781112
## 14427 94 6365 2.5 1291779623
## 14428 94 6373 2.5 1291781129
## 14429 94 6377 4.0 1291779714
## 14430 94 6378 1.0 1291781066
## 14431 94 6539 3.5 1291779733
## 14432 94 6552 3.5 1291777509
## 14433 94 6711 1.5 1291779692
## 14434 94 6863 4.0 1291781010
## 14435 94 6870 3.5 1292392675
## 14436 94 6874 3.5 1291779659
## 14437 94 6934 1.5 1291780177
## 14438 94 7153 4.5 1291779589
## 14439 94 7254 2.0 1291781215
## 14440 94 7361 3.0 1291779577
## 14441 94 7438 2.0 1291779607
## 14442 94 8132 4.5 1292392486
## 14443 94 8360 3.5 1291779652
## 14444 94 8464 3.0 1291780898
## 14445 94 8636 3.5 1291779827
## 14446 94 8644 3.0 1291780974
## 14447 94 8645 3.5 1292392653
## 14448 94 8781 3.0 1291777481
## 14449 94 8784 2.5 1291780596
## 14450 94 8798 2.5 1291781001
## 14451 94 8873 2.5 1292392659
## 14452 94 8874 2.0 1291780469
## 14453 94 8949 1.5 1291781025
## 14454 94 8961 3.0 1291779663
## 14455 94 30707 4.5 1291780881
## 14456 94 30749 4.5 1292392561
## 14457 94 30793 1.0 1291781212
## 14458 94 32587 4.0 1291779636
## 14459 94 33166 4.5 1292392492
## 14460 94 33660 4.5 1292392483
## 14461 94 33794 3.0 1291780509
## 14462 94 34162 3.5 1291780992
## 14463 94 34405 3.5 1291781105
## 14464 94 35836 4.5 1291780442
## 14465 94 39292 3.5 1292392712
## 14466 94 40414 4.0 1292392598
## 14467 94 40819 4.0 1292392488
## 14468 94 44191 4.0 1291779648
## 14469 94 44195 3.0 1291781085
## 14470 94 44204 3.0 1292392700
## 14471 94 45722 2.5 1291779888
## 14472 94 46578 4.0 1291780166
## 14473 94 46976 4.0 1291781133
## 14474 94 47099 3.5 1292392505
## 14475 94 48394 3.0 1291780552
## 14476 94 48516 4.0 1291779751
## 14477 94 48738 4.0 1292392595
## 14478 94 48780 3.5 1292392628
## 14479 94 50068 3.5 1292392633
## 14480 94 50872 3.0 1291780606
## 14481 94 51662 4.0 1291779813
## 14482 94 53996 2.5 1291781053
## 14483 94 54272 3.0 1291780941
## 14484 94 54503 3.0 1291780984
## 14485 94 55118 4.0 1292392685
## 14486 94 55820 3.0 1291780476
## 14487 94 56174 2.5 1291780610
## 14488 94 56367 3.5 1291781204
## 14489 94 58559 4.0 1291780084
## 14490 94 58706 4.0 1291781289
## 14491 94 59315 3.0 1291779704
## 14492 94 59784 5.0 1292392763
## 14493 94 60069 5.0 1291780489
## 14494 94 63062 4.0 1292392523
## 14495 94 63082 3.5 1291780148
## 14496 94 64614 4.0 1292392650
## 14497 94 64620 3.5 1292392670
## 14498 94 64622 3.5 1292392500
## 14499 94 64957 4.5 1291781225
## 14500 94 68358 3.5 1292392637
## 14501 94 68954 5.0 1291779884
## 14502 94 69122 4.5 1291780012
## 14503 94 69481 3.5 1292392716
## 14504 94 70286 4.0 1291779687
## 14505 94 71535 4.0 1291780570
## 14506 94 72641 4.5 1292392773
## 14507 94 72998 4.0 1291780456
## 14508 94 74458 2.5 1291780910
## 14509 94 76251 3.0 1291780495
## 14510 94 78499 4.0 1291780580
## 14511 94 79132 4.0 1291779510
## 14512 95 6 5.0 1016317227
## 14513 95 9 3.0 1016317600
## 14514 95 11 4.0 1025556196
## 14515 95 16 5.0 1016316940
## 14516 95 19 4.0 1016317584
## 14517 95 24 4.0 1018816035
## 14518 95 63 4.0 1016317617
## 14519 95 70 4.0 1019023190
## 14520 95 86 4.0 1018816147
## 14521 95 88 4.0 1016317721
## 14522 95 174 2.0 1016317489
## 14523 95 196 3.0 1016317721
## 14524 95 198 4.0 1016317489
## 14525 95 222 4.0 1016317856
## 14526 95 223 5.0 1018815674
## 14527 95 236 4.0 1016317519
## 14528 95 253 4.0 1019023054
## 14529 95 260 5.0 1018816569
## 14530 95 261 5.0 1016317793
## 14531 95 266 5.0 1016317396
## 14532 95 296 5.0 1018816557
## 14533 95 328 3.0 1019023101
## 14534 95 329 3.0 1016317617
## 14535 95 332 3.0 1019023293
## 14536 95 339 4.0 1016317208
## 14537 95 357 4.0 1025556197
## 14538 95 360 3.0 1016317696
## 14539 95 364 4.0 1025556197
## 14540 95 366 4.0 1016317140
## 14541 95 382 4.0 1019023230
## 14542 95 457 4.0 1016317171
## 14543 95 480 4.0 1016316990
## 14544 95 519 2.0 1016317171
## 14545 95 553 4.0 1025556197
## 14546 95 593 5.0 1018816582
## 14547 95 610 4.0 1019023054
## 14548 95 724 3.0 1019023206
## 14549 95 733 4.0 1025556197
## 14550 95 778 5.0 1016317192
## 14551 95 780 4.0 1016317773
## 14552 95 785 4.0 1016317193
## 14553 95 879 3.0 1019023343
## 14554 95 968 5.0 1018816003
## 14555 95 999 4.0 1016317074
## 14556 95 1022 4.0 1016317584
## 14557 95 1037 3.0 1016317074
## 14558 95 1059 5.0 1025556197
## 14559 95 1088 5.0 1016317856
## 14560 95 1093 4.0 1018815698
## 14561 95 1127 4.0 1018815528
## 14562 95 1130 5.0 1019023148
## 14563 95 1198 5.0 1018816548
## 14564 95 1210 5.0 1016316940
## 14565 95 1214 5.0 1019022863
## 14566 95 1215 5.0 1019022916
## 14567 95 1219 5.0 1019022863
## 14568 95 1246 4.0 1025556197
## 14569 95 1258 4.0 1019022885
## 14570 95 1261 5.0 1019022916
## 14571 95 1268 5.0 1016317806
## 14572 95 1320 4.0 1019023230
## 14573 95 1321 5.0 1019023029
## 14574 95 1322 2.0 1019023613
## 14575 95 1327 4.0 1019023230
## 14576 95 1330 4.0 1019023569
## 14577 95 1339 5.0 1019023054
## 14578 95 1342 4.0 1019023410
## 14579 95 1345 4.0 1019023029
## 14580 95 1347 5.0 1019023054
## 14581 95 1350 4.0 1019023148
## 14582 95 1370 4.0 1025556197
## 14583 95 1377 4.0 1025556197
## 14584 95 1387 5.0 1019022863
## 14585 95 1388 4.0 1019023343
## 14586 95 1389 4.0 1016317140
## 14587 95 1393 5.0 1016317157
## 14588 95 1407 4.0 1019022937
## 14589 95 1513 4.0 1018816073
## 14590 95 1644 3.0 1019023410
## 14591 95 1645 4.0 1019022937
## 14592 95 1655 2.0 1019023252
## 14593 95 1690 3.0 1019023190
## 14594 95 1717 4.0 1019023169
## 14595 95 1762 3.0 1019023230
## 14596 95 1909 4.0 1016317584
## 14597 95 1917 3.0 1016317074
## 14598 95 1969 4.0 1019023569
## 14599 95 1970 4.0 1019023293
## 14600 95 1971 4.0 1019023650
## 14601 95 1972 3.0 1019023736
## 14602 95 1973 3.0 1016317396
## 14603 95 1974 4.0 1019023410
## 14604 95 1975 3.0 1019023569
## 14605 95 1982 5.0 1019022916
## 14606 95 1983 3.0 1019023517
## 14607 95 1984 3.0 1016317090
## 14608 95 1985 2.0 1019023463
## 14609 95 1988 3.0 1019023369
## 14610 95 1994 4.0 1019022970
## 14611 95 1995 3.0 1019023613
## 14612 95 2003 5.0 1019023101
## 14613 95 2004 4.0 1019023169
## 14614 95 2005 5.0 1025556197
## 14615 95 2013 3.0 1018816035
## 14616 95 2026 3.0 1019023410
## 14617 95 2028 4.0 1016316964
## 14618 95 2069 3.0 1016317111
## 14619 95 2081 4.0 1025556197
## 14620 95 2105 3.0 1025556197
## 14621 95 2107 4.0 1019023517
## 14622 95 2109 5.0 1019022736
## 14623 95 2113 2.0 1019023768
## 14624 95 2118 4.0 1019023078
## 14625 95 2119 5.0 1019023569
## 14626 95 2120 3.0 1019023230
## 14627 95 2121 2.0 1019023343
## 14628 95 2123 4.0 1016317674
## 14629 95 2148 4.0 1019023190
## 14630 95 2149 3.0 1016317773
## 14631 95 2160 3.0 1019022937
## 14632 95 2163 3.0 1016317697
## 14633 95 2167 4.0 1019023078
## 14634 95 2188 3.0 1018815528
## 14635 95 2193 5.0 1025556197
## 14636 95 2279 4.0 1019023540
## 14637 95 2294 4.0 1025556197
## 14638 95 2327 4.0 1019023343
## 14639 95 2336 4.0 1018815770
## 14640 95 2353 4.0 1025556197
## 14641 95 2369 3.0 1018815698
## 14642 95 2389 4.0 1019023275
## 14643 95 2394 4.0 1018816055
## 14644 95 2395 5.0 1018816073
## 14645 95 2396 4.0 1018816106
## 14646 95 2421 3.0 1016317157
## 14647 95 2428 4.0 1018815786
## 14648 95 2443 4.0 1018816035
## 14649 95 2445 3.0 1016317856
## 14650 95 2451 4.0 1019023275
## 14651 95 2455 4.0 1019023054
## 14652 95 2459 5.0 1019023275
## 14653 95 2461 4.0 1019023650
## 14654 95 2462 2.0 1019023753
## 14655 95 2465 3.0 1019023314
## 14656 95 2470 5.0 1025556197
## 14657 95 2485 4.0 1018816106
## 14658 95 2513 4.0 1019023517
## 14659 95 2541 4.0 1018815674
## 14660 95 2572 5.0 1018815528
## 14661 95 2580 4.0 1018815804
## 14662 95 2581 4.0 1018816003
## 14663 95 2599 4.0 1018815770
## 14664 95 2600 5.0 1018816171
## 14665 95 2617 4.0 1019023148
## 14666 95 2628 5.0 1016316859
## 14667 95 2641 3.0 1025556197
## 14668 95 2657 4.0 1019023078
## 14669 95 2672 3.0 1018816130
## 14670 95 2683 4.0 1018815560
## 14671 95 2694 4.0 1018815599
## 14672 95 2699 5.0 1018815560
## 14673 95 2701 3.0 1018816171
## 14674 95 2702 3.0 1018816130
## 14675 95 2706 5.0 1018815560
## 14676 95 2710 4.0 1018815599
## 14677 95 2713 3.0 1018815904
## 14678 95 2716 5.0 1018815804
## 14679 95 2717 4.0 1016317818
## 14680 95 2722 3.0 1018815674
## 14681 95 2746 4.0 1019023078
## 14682 95 2762 4.0 1018816106
## 14683 95 2787 4.0 1019023275
## 14684 95 2789 3.0 1019023252
## 14685 95 2793 5.0 1016317111
## 14686 95 2841 5.0 1018816106
## 14687 95 2858 5.0 1018815528
## 14688 95 2867 4.0 1019023101
## 14689 95 2868 4.0 1019023671
## 14690 95 2881 4.0 1018815698
## 14691 95 2888 3.0 1018815770
## 14692 95 2901 4.0 1018816035
## 14693 95 2907 5.0 1016317306
## 14694 95 2908 4.0 1018815599
## 14695 95 2928 4.0 1016317885
## 14696 95 2959 5.0 1018815786
## 14697 95 2976 3.0 1018815599
## 14698 95 2985 5.0 1025556197
## 14699 95 2987 5.0 1018816171
## 14700 95 3005 4.0 1018815599
## 14701 95 3016 4.0 1018815674
## 14702 95 3017 3.0 1019023314
## 14703 95 3018 3.0 1019023054
## 14704 95 3024 3.0 1019023314
## 14705 95 3033 5.0 1019022702
## 14706 95 3051 3.0 1018815560
## 14707 95 3081 5.0 1018816106
## 14708 95 3107 4.0 1016317872
## 14709 95 3146 4.0 1016317489
## 14710 95 3168 4.0 1016317535
## 14711 95 3185 4.0 1018816106
## 14712 95 3203 4.0 1018815674
## 14713 95 3255 4.0 1025556197
## 14714 95 3257 4.0 1016317396
## 14715 95 3258 4.0 1016317306
## 14716 95 3261 4.0 1016317208
## 14717 95 3264 4.0 1019023169
## 14718 95 3269 3.0 1016317600
## 14719 95 3273 3.0 1018816073
## 14720 95 3285 4.0 1018815574
## 14721 95 3298 4.0 1018815599
## 14722 95 3300 5.0 1018816035
## 14723 95 3391 2.0 1016317833
## 14724 95 3408 5.0 1018815770
## 14725 95 3409 4.0 1018815786
## 14726 95 3441 3.0 1016317074
## 14727 95 3448 3.0 1025556197
## 14728 95 3477 4.0 1016317773
## 14729 95 3481 5.0 1016316859
## 14730 95 3499 5.0 1019022937
## 14731 95 3510 5.0 1018815804
## 14732 95 3535 3.0 1019023102
## 14733 95 3578 5.0 1018815804
## 14734 95 3617 5.0 1018816073
## 14735 95 3623 3.0 1018815953
## 14736 95 3660 4.0 1019023369
## 14737 95 3693 3.0 1019023314
## 14738 95 3702 5.0 1016316990
## 14739 95 3709 3.0 1019023569
## 14740 95 3752 4.0 1018815916
## 14741 95 3764 3.0 1016317140
## 14742 95 3793 5.0 1018816171
## 14743 95 3826 2.0 1018815877
## 14744 95 3840 3.0 1019023613
## 14745 95 3843 3.0 1019023671
## 14746 95 3863 4.0 1018815615
## 14747 95 3877 2.0 1016317856
## 14748 95 3917 5.0 1019023102
## 14749 95 3918 4.0 1019023540
## 14750 95 3948 5.0 1025556197
## 14751 95 3961 2.0 1019023517
## 14752 95 3967 4.0 1025556197
## 14753 95 3994 3.0 1025556197
## 14754 95 4002 4.0 1025556197
## 14755 95 4008 4.0 1016317157
## 14756 95 4018 3.0 1016317519
## 14757 95 4030 4.0 1016317721
## 14758 95 4036 4.0 1019023029
## 14759 95 4081 4.0 1019022819
## 14760 95 4085 4.0 1025556197
## 14761 95 4105 5.0 1019022937
## 14762 95 4124 3.0 1016317253
## 14763 95 4128 5.0 1019022970
## 14764 95 4135 4.0 1019023054
## 14765 95 4140 5.0 1019022672
## 14766 95 4148 4.0 1019023078
## 14767 95 4205 4.0 1016316990
## 14768 95 4213 4.0 1019023569
## 14769 95 4222 3.0 1019023736
## 14770 95 4266 3.0 1016317253
## 14771 95 4321 5.0 1025556197
## 14772 95 4351 5.0 1016317519
## 14773 95 4369 5.0 1019022782
## 14774 95 4480 4.0 1019023569
## 14775 95 4490 4.0 1016316940
## 14776 95 4499 5.0 1025556197
## 14777 95 4501 4.0 1019023517
## 14778 95 4516 3.0 1016317227
## 14779 95 4520 5.0 1019022802
## 14780 95 4560 3.0 1019023736
## 14781 95 4561 4.0 1019022885
## 14782 95 4618 4.0 1019023671
## 14783 95 4636 2.0 1016317111
## 14784 95 4639 3.0 1018815528
## 14785 95 4670 4.0 1019023540
## 14786 95 4681 5.0 1025556197
## 14787 95 4682 4.0 1019023190
## 14788 95 4697 3.0 1016317721
## 14789 95 4700 4.0 1016317564
## 14790 95 4718 4.0 1025556197
## 14791 95 4734 4.0 1025556197
## 14792 95 4865 4.0 1019022970
## 14793 95 4949 2.0 1016316859
## 14794 95 4993 5.0 1018816582
## 14795 95 5025 5.0 1025556328
## 14796 95 5049 3.0 1025556197
## 14797 95 5080 3.0 1025556369
## 14798 95 5103 3.0 1025556197
## 14799 95 5203 4.0 1016317674
## 14800 95 5222 4.0 1025556344
## 14801 95 5292 4.0 1018816337
## 14802 95 5303 3.0 1018816326
## 14803 95 5308 4.0 1018816304
## 14804 95 5309 3.0 1018816304
## 14805 95 5342 2.0 1018816267
## 14806 95 5343 3.0 1018816267
## 14807 95 5346 4.0 1018816267
## 14808 95 5349 4.0 1025556297
## 14809 95 5378 5.0 1025556344
## 14810 95 5449 3.0 1025556285
## 14811 96 31 2.5 1223256331
## 14812 96 50 4.0 1223256642
## 14813 96 318 2.0 1223256805
## 14814 96 527 3.5 1223256797
## 14815 96 608 4.0 1223256741
## 14816 96 628 3.0 1223256282
## 14817 96 724 3.0 1223256349
## 14818 96 750 5.0 1223256660
## 14819 96 903 5.0 1223256822
## 14820 96 904 5.0 1223256630
## 14821 96 905 5.0 1223256671
## 14822 96 908 5.0 1223256689
## 14823 96 910 4.5 1223256312
## 14824 96 912 5.0 1223256587
## 14825 96 913 5.0 1223256273
## 14826 96 922 5.0 1223256562
## 14827 96 923 5.0 1223256720
## 14828 96 926 5.0 1223256572
## 14829 96 930 4.5 1223256771
## 14830 96 951 5.0 1223256610
## 14831 96 969 5.0 1223256296
## 14832 96 1084 3.0 1223256301
## 14833 96 1104 4.0 1223256696
## 14834 96 1212 5.0 1223256813
## 14835 96 1219 5.0 1223256782
## 14836 96 1235 4.0 1223256376
## 14837 96 1242 3.5 1223256264
## 14838 96 1247 4.0 1223256864
## 14839 96 1252 5.0 1223256591
## 14840 96 1267 4.0 1223256617
## 14841 96 1284 5.0 1223256583
## 14842 96 1285 4.0 1223256307
## 14843 96 1617 4.0 1223256759
## 14844 96 1747 2.5 1223256322
## 14845 96 1912 4.0 1223256353
## 14846 96 2186 3.0 1223256635
## 14847 96 2208 5.0 1223256883
## 14848 96 2248 3.0 1223256357
## 14849 96 2336 3.0 1223256336
## 14850 96 2692 3.0 1223256786
## 14851 96 2858 2.5 1223256713
## 14852 96 2908 4.0 1223256372
## 14853 96 3435 5.0 1223256513
## 14854 96 3730 2.5 1223256849
## 14855 96 3736 4.5 1223256540
## 14856 96 3739 5.0 1223256464
## 14857 96 4226 5.0 1223256556
## 14858 96 5008 4.0 1223256707
## 14859 96 5114 5.0 1223256543
## 14860 96 5878 3.0 1223256810
## 14861 96 6027 3.0 1223256730
## 14862 96 6254 5.0 1223256716
## 14863 96 6273 5.0 1223256876
## 14864 96 6650 5.0 1223256756
## 14865 96 7013 5.0 1223256621
## 14866 96 7056 4.0 1223256531
## 14867 96 7116 5.0 1223256727
## 14868 96 7361 4.0 1223256733
## 14869 96 7587 4.0 1223256745
## 14870 96 7831 4.0 1223256468
## 14871 96 8094 4.5 1223256833
## 14872 96 8128 4.5 1223256668
## 14873 96 8629 3.0 1223256472
## 14874 96 8765 4.0 1223256507
## 14875 96 25850 5.0 1223256486
## 14876 96 25868 4.0 1223256835
## 14877 96 25947 5.0 1223256567
## 14878 96 30712 4.0 1223256489
## 14879 96 32525 5.0 1223256595
## 14880 96 44555 3.0 1223256615
## 14881 96 47202 4.0 1223256800
## 14882 96 48394 3.5 1223256776
## 14883 96 48516 4.0 1223256656
## 14884 96 55118 4.0 1223256854
## 14885 96 55276 4.0 1223256680
## 14886 96 56367 3.5 1223256753
## 14887 97 1 1.0 1460342505
## 14888 97 32 4.5 1460343666
## 14889 97 50 5.0 1460342291
## 14890 97 110 1.0 1460342434
## 14891 97 223 3.5 1460343084
## 14892 97 293 2.0 1460343105
## 14893 97 296 4.0 1460343816
## 14894 97 318 4.5 1460342280
## 14895 97 356 2.5 1460342503
## 14896 97 364 1.5 1460342652
## 14897 97 480 2.5 1460342605
## 14898 97 527 1.5 1460342318
## 14899 97 541 4.0 1460342426
## 14900 97 588 0.5 1460342660
## 14901 97 589 2.0 1460342416
## 14902 97 593 3.5 1460342325
## 14903 97 595 1.5 1460342687
## 14904 97 597 2.0 1460342646
## 14905 97 608 4.0 1460343174
## 14906 97 750 4.0 1460342344
## 14907 97 858 3.0 1460342315
## 14908 97 899 4.5 1460342587
## 14909 97 904 3.5 1460342304
## 14910 97 908 2.0 1460342342
## 14911 97 912 1.5 1460342302
## 14912 97 923 4.0 1460342491
## 14913 97 926 4.0 1460342556
## 14914 97 1036 1.5 1460342421
## 14915 97 1084 2.5 1460342673
## 14916 97 1088 2.0 1460342716
## 14917 97 1089 2.0 1460343721
## 14918 97 1136 4.0 1460342440
## 14919 97 1193 2.5 1460342322
## 14920 97 1196 4.5 1460342349
## 14921 97 1197 4.5 1460342403
## 14922 97 1198 3.5 1460342334
## 14923 97 1200 2.0 1460342420
## 14924 97 1201 4.5 1460343815
## 14925 97 1203 4.5 1460342327
## 14926 97 1204 3.0 1460342517
## 14927 97 1207 3.5 1460342468
## 14928 97 1208 3.5 1460343956
## 14929 97 1210 4.0 1460342397
## 14930 97 1212 4.0 1460342494
## 14931 97 1213 3.0 1460342330
## 14932 97 1219 2.5 1460342480
## 14933 97 1221 2.5 1460342320
## 14934 97 1228 2.0 1460342498
## 14935 97 1240 2.0 1460342433
## 14936 97 1262 4.0 1460343849
## 14937 97 1265 1.5 1460342560
## 14938 97 1267 4.0 1460342471
## 14939 97 1270 2.5 1460342413
## 14940 97 1288 4.0 1460343682
## 14941 97 1291 3.0 1460342413
## 14942 97 1387 1.5 1460342563
## 14943 97 1527 3.5 1460342531
## 14944 97 1580 2.5 1460342451
## 14945 97 1721 0.5 1460342715
## 14946 97 1732 4.0 1460342762
## 14947 97 1884 3.5 1460343016
## 14948 97 1997 0.5 1460342648
## 14949 97 2000 3.0 1460342624
## 14950 97 2019 4.0 1460342337
## 14951 97 2028 1.0 1460342488
## 14952 97 2324 4.5 1460343845
## 14953 97 2395 4.0 1460343230
## 14954 97 2502 4.0 1460342786
## 14955 97 2542 3.5 1460343708
## 14956 97 2571 2.5 1460342388
## 14957 97 2716 2.5 1460342443
## 14958 97 2797 1.0 1460342654
## 14959 97 2918 1.5 1460342423
## 14960 97 2959 1.5 1460342389
## 14961 97 2997 3.5 1460343714
## 14962 97 3033 3.5 1460342705
## 14963 97 3253 3.0 1460342676
## 14964 97 3421 1.5 1460342685
## 14965 97 3471 3.0 1460342668
## 14966 97 3527 1.0 1460342613
## 14967 97 3552 1.5 1460342644
## 14968 97 3578 0.5 1460342547
## 14969 97 3868 3.5 1460343718
## 14970 97 3911 5.0 1460343773
## 14971 97 4226 3.0 1460343661
## 14972 97 4816 4.0 1460343802
## 14973 97 4878 5.0 1460342871
## 14974 97 4973 4.5 1460343052
## 14975 97 4979 3.5 1460343011
## 14976 97 5618 4.0 1460343114
## 14977 97 5902 2.5 1460343401
## 14978 97 5903 2.0 1460343083
## 14979 97 5952 2.5 1460342395
## 14980 97 5971 4.0 1460344057
## 14981 97 6711 4.0 1460343048
## 14982 97 6863 4.0 1460343701
## 14983 97 7153 3.0 1460342391
## 14984 97 7361 3.5 1460343777
## 14985 97 8376 3.5 1460342807
## 14986 97 8641 4.0 1460343798
## 14987 97 8784 1.5 1460343379
## 14988 97 8949 3.0 1460343218
## 14989 97 8950 1.5 1460343699
## 14990 97 30810 5.0 1460342855
## 14991 97 31658 3.5 1460343862
## 14992 97 33004 3.5 1460342888
## 14993 97 33679 2.0 1460343786
## 14994 97 34437 3.0 1460343233
## 14995 97 35836 3.5 1460343228
## 14996 97 44199 4.5 1460342819
## 14997 97 44555 4.5 1460343328
## 14998 97 46578 5.0 1460342986
## 14999 97 46970 3.0 1460343800
## 15000 97 46976 4.5 1460343057
## 15001 97 48394 1.5 1460343121
## 15002 97 48516 2.0 1460342400
## 15003 97 54503 4.0 1460342777
## 15004 97 55269 4.5 1460343087
## 15005 97 55820 4.0 1460343726
## 15006 97 56367 4.0 1460342758
## 15007 97 56782 4.5 1460342789
## 15008 97 58559 2.0 1460342393
## 15009 97 58998 1.5 1460343388
## 15010 97 61024 4.0 1460342851
## 15011 97 72226 4.0 1460343331
## 15012 97 91529 1.0 1460342589
## 15013 97 94959 3.5 1460343371
## 15014 97 114662 1.0 1460342797
## 15015 98 5 3.0 1459405466
## 15016 98 39 3.0 1459405274
## 15017 98 296 4.5 1459405871
## 15018 98 339 3.5 1459405698
## 15019 98 356 4.5 1459405061
## 15020 98 357 3.5 1459405701
## 15021 98 597 5.0 1459405239
## 15022 98 724 5.0 1459405507
## 15023 98 902 5.0 1459405325
## 15024 98 920 3.5 1459405340
## 15025 98 1197 4.5 1459405035
## 15026 98 1198 5.0 1459405031
## 15027 98 1215 5.0 1459405397
## 15028 98 1261 4.0 1459405419
## 15029 98 1527 5.0 1459405539
## 15030 98 1569 5.0 1459405413
## 15031 98 1704 5.0 1459405043
## 15032 98 1721 5.0 1459405132
## 15033 98 1732 5.0 1459405119
## 15034 98 1967 4.0 1459405401
## 15035 98 2144 5.0 1459405443
## 15036 98 2193 2.5 1459405478
## 15037 98 2321 5.0 1459405606
## 15038 98 2572 5.0 1459405252
## 15039 98 2599 3.5 1459405423
## 15040 98 2617 5.0 1459405229
## 15041 98 2724 5.0 1459405410
## 15042 98 2762 4.0 1459405074
## 15043 98 2858 2.5 1459405039
## 15044 98 3081 3.0 1459405262
## 15045 98 4014 5.0 1459405197
## 15046 98 4246 5.0 1459405188
## 15047 98 4447 5.0 1459405186
## 15048 98 4878 4.0 1459405067
## 15049 98 5620 5.0 1459405375
## 15050 98 5943 3.0 1459405452
## 15051 98 6155 3.5 1459405271
## 15052 98 6564 3.0 1459405319
## 15053 98 6593 4.0 1459405332
## 15054 98 6874 5.0 1459405100
## 15055 98 7081 5.0 1459405753
## 15056 98 7154 5.0 1459405504
## 15057 98 7438 5.0 1459405098
## 15058 98 7444 5.0 1459405307
## 15059 98 7458 3.0 1459405160
## 15060 98 8360 5.0 1459405138
## 15061 98 8522 5.0 1459405771
## 15062 98 8533 5.0 1459405179
## 15063 98 8874 5.0 1459405104
## 15064 98 8969 5.0 1459405390
## 15065 98 25801 5.0 1459405765
## 15066 98 31685 5.0 1459405174
## 15067 98 45720 4.0 1459405166
## 15068 98 55280 3.5 1459405380
## 15069 98 56949 5.0 1459405344
## 15070 98 64034 5.0 1459405292
## 15071 98 68954 3.5 1459405048
## 15072 98 71535 5.0 1459405121
## 15073 98 71745 1.5 1459405437
## 15074 98 79132 3.5 1459405880
## 15075 98 81834 5.0 1459405111
## 15076 98 84374 5.0 1459405355
## 15077 98 88163 5.0 1459405578
## 15078 98 88810 5.0 1459405175
## 15079 98 106487 2.0 1459405127
## 15080 98 106782 4.5 1459405094
## 15081 98 115617 5.0 1459405107
## 15082 98 122904 5.0 1459404749
## 15083 98 148888 3.0 1459404907
## 15084 98 149830 3.0 1459404951
## 15085 98 156025 5.0 1459404758
## 15086 99 1 4.0 938586006
## 15087 99 2 2.0 950999958
## 15088 99 17 3.0 938586999
## 15089 99 28 3.0 938586999
## 15090 99 39 4.0 938587073
## 15091 99 47 1.0 938585500
## 15092 99 50 4.0 938585285
## 15093 99 105 3.0 938587407
## 15094 99 110 3.0 947519500
## 15095 99 154 3.0 938623596
## 15096 99 160 2.0 938586337
## 15097 99 170 2.0 938585857
## 15098 99 208 2.0 938586560
## 15099 99 296 3.0 938585556
## 15100 99 316 1.0 938586591
## 15101 99 318 5.0 947519825
## 15102 99 356 5.0 938584975
## 15103 99 357 5.0 938587407
## 15104 99 367 3.0 938585656
## 15105 99 377 4.0 938587203
## 15106 99 380 2.0 938587172
## 15107 99 455 1.0 938586663
## 15108 99 457 4.0 938585499
## 15109 99 468 3.0 938587407
## 15110 99 480 4.0 938586403
## 15111 99 497 3.0 938587034
## 15112 99 509 5.0 938587301
## 15113 99 527 4.0 938584894
## 15114 99 546 1.0 938586706
## 15115 99 588 3.0 938586006
## 15116 99 593 4.0 938585500
## 15117 99 595 5.0 938586006
## 15118 99 596 4.0 947519681
## 15119 99 608 5.0 938585500
## 15120 99 647 4.0 947519527
## 15121 99 720 5.0 938586021
## 15122 99 733 2.0 947519711
## 15123 99 736 3.0 938586662
## 15124 99 750 4.0 938623534
## 15125 99 838 4.0 938587172
## 15126 99 898 4.0 938587876
## 15127 99 899 4.0 938588239
## 15128 99 900 3.0 938588178
## 15129 99 902 3.0 938624252
## 15130 99 903 5.0 938588142
## 15131 99 904 4.0 938588142
## 15132 99 908 4.0 938588109
## 15133 99 909 3.0 938623596
## 15134 99 912 5.0 938587795
## 15135 99 913 4.0 938587916
## 15136 99 914 4.0 938623534
## 15137 99 918 5.0 938588010
## 15138 99 923 4.0 938587817
## 15139 99 924 3.0 938623596
## 15140 99 928 4.0 938587795
## 15141 99 951 4.0 938587876
## 15142 99 953 5.0 938587876
## 15143 99 968 4.0 938624591
## 15144 99 969 5.0 938588142
## 15145 99 1012 4.0 938588329
## 15146 99 1014 2.0 938624708
## 15147 99 1016 2.0 938588392
## 15148 99 1017 1.0 938624591
## 15149 99 1019 2.0 938588290
## 15150 99 1022 3.0 938588290
## 15151 99 1025 2.0 938624617
## 15152 99 1028 5.0 938623675
## 15153 99 1029 3.0 938587916
## 15154 99 1032 3.0 938588290
## 15155 99 1035 3.0 938623534
## 15156 99 1083 2.0 938624591
## 15157 99 1084 4.0 938624252
## 15158 99 1103 4.0 938588178
## 15159 99 1183 3.0 938585037
## 15160 99 1204 5.0 938623534
## 15161 99 1207 4.0 938623534
## 15162 99 1210 4.0 938584975
## 15163 99 1219 3.0 938623675
## 15164 99 1233 5.0 938584894
## 15165 99 1247 3.0 947519573
## 15166 99 1250 4.0 947519501
## 15167 99 1276 4.0 938624252
## 15168 99 1282 3.0 938587916
## 15169 99 1284 3.0 938587876
## 15170 99 1304 5.0 938623675
## 15171 99 1333 4.0 938624252
## 15172 99 1334 2.0 938588358
## 15173 99 1358 3.0 938585285
## 15174 99 1393 3.0 938587104
## 15175 99 1580 3.0 947519657
## 15176 99 1586 2.0 938585094
## 15177 99 1589 3.0 938585718
## 15178 99 1591 1.0 938586764
## 15179 99 1617 5.0 938585285
## 15180 99 1619 5.0 938585094
## 15181 99 1670 4.0 938584894
## 15182 99 1676 1.0 938585037
## 15183 99 1721 5.0 938586999
## 15184 99 1732 3.0 938585613
## 15185 99 1735 4.0 938587240
## 15186 99 1748 4.0 938549817
## 15187 99 1777 3.0 938587337
## 15188 99 1909 4.0 938586216
## 15189 99 1920 3.0 938586895
## 15190 99 1937 3.0 947519573
## 15191 99 1945 4.0 947519658
## 15192 99 1947 4.0 938623534
## 15193 99 1948 4.0 938624529
## 15194 99 1949 3.0 938624252
## 15195 99 1950 4.0 938623596
## 15196 99 1951 2.0 947519658
## 15197 99 1952 4.0 938624807
## 15198 99 2006 3.0 947519629
## 15199 99 2015 1.0 938623675
## 15200 99 2018 4.0 938587916
## 15201 99 2028 4.0 938584894
## 15202 99 2067 5.0 938624807
## 15203 99 2080 4.0 938588239
## 15204 99 2085 3.0 938624708
## 15205 99 2094 2.0 947519712
## 15206 99 2096 4.0 938588178
## 15207 99 2099 4.0 938587980
## 15208 99 2106 2.0 938584974
## 15209 99 2126 1.0 938585869
## 15210 99 2132 2.0 938623675
## 15211 99 2135 1.0 938624708
## 15212 99 2136 1.0 938624807
## 15213 99 2160 3.0 947519712
## 15214 99 2324 4.0 943444622
## 15215 99 2355 4.0 938586074
## 15216 99 2391 5.0 938585500
## 15217 99 2393 2.0 942783208
## 15218 99 2396 3.0 938586999
## 15219 99 2424 3.0 942783156
## 15220 99 2427 5.0 938584894
## 15221 99 2436 3.0 938549745
## 15222 99 2442 4.0 938623241
## 15223 99 2529 1.0 951000065
## 15224 99 2539 3.0 938623208
## 15225 99 2565 3.0 947519597
## 15226 99 2599 5.0 943444622
## 15227 99 2677 4.0 938549991
## 15228 99 2687 3.0 938586006
## 15229 99 2692 5.0 938549686
## 15230 99 2761 2.0 950999958
## 15231 99 2801 3.0 938587172
## 15232 99 2836 2.0 938549053
## 15233 99 2858 5.0 939314422
## 15234 99 2908 5.0 947519286
## 15235 99 2912 4.0 942783078
## 15236 99 2959 3.0 940223140
## 15237 99 2966 2.0 942783078
## 15238 99 2997 4.0 949880591
## 15239 99 3125 3.0 950999736
## 15240 99 3129 4.0 951000163
## 15241 99 3147 4.0 953428514
## 15242 99 3160 5.0 947519369
## 15243 99 3174 2.0 947519315
## 15244 99 3186 2.0 948412004
## 15245 99 3298 2.0 953399961
## 15246 99 3408 4.0 1015037861
## 15247 99 3578 1.0 1015038047
## 15248 99 3752 4.0 962144750
## 15249 99 3783 3.0 963871870
## 15250 99 3897 3.0 970943910
## 15251 99 3910 5.0 982280677
## 15252 99 3911 3.0 1015037811
## 15253 99 3948 2.0 1015038093
## 15254 99 3967 4.0 1015037795
## 15255 99 3996 4.0 982280581
## 15256 99 4014 4.0 1015038047
## 15257 99 4019 3.0 1044786615
## 15258 99 4022 3.0 982280624
## 15259 99 4027 3.0 1015037743
## 15260 99 4033 2.0 1015037795
## 15261 99 4034 5.0 982280553
## 15262 99 4226 4.0 1015037725
## 15263 99 4246 4.0 1015037951
## 15264 99 4380 5.0 1044786697
## 15265 99 4641 5.0 1015037824
## 15266 99 4881 4.0 1044786543
## 15267 99 4973 5.0 1015037811
## 15268 99 4993 5.0 1044786919
## 15269 99 4995 5.0 1015037662
## 15270 99 5013 4.0 1015037662
## 15271 99 5349 4.0 1025915895
## 15272 99 5952 4.0 1044786919
## 15273 99 5991 5.0 1044754204
## 15274 100 1 4.0 854193977
## 15275 100 3 4.0 854194024
## 15276 100 6 3.0 854194023
## 15277 100 7 3.0 854194024
## 15278 100 25 4.0 854193977
## 15279 100 32 5.0 854193977
## 15280 100 52 3.0 854194056
## 15281 100 62 3.0 854193977
## 15282 100 86 3.0 854194208
## 15283 100 88 2.0 854194208
## 15284 100 95 3.0 854193977
## 15285 100 135 3.0 854194086
## 15286 100 141 3.0 854193977
## 15287 100 608 4.0 854194024
## 15288 100 648 3.0 854193977
## 15289 100 661 3.0 854194086
## 15290 100 708 3.0 854194056
## 15291 100 733 3.0 854194024
## 15292 100 736 3.0 854193977
## 15293 100 745 4.0 854194208
## 15294 100 780 3.0 854193977
## 15295 100 786 3.0 854194056
## 15296 100 802 4.0 854194111
## 15297 100 1073 5.0 854194056
## 15298 100 1356 4.0 854194086
## 15299 101 145 3.5 1292402318
## 15300 101 163 2.5 1292402288
## 15301 101 172 2.5 1292402307
## 15302 101 196 3.5 1292402305
## 15303 101 260 4.0 1292402500
## 15304 101 315 2.0 1292402324
## 15305 101 318 4.0 1292402404
## 15306 101 370 2.5 1292402282
## 15307 101 457 3.5 1292402634
## 15308 101 520 2.5 1292402274
## 15309 101 527 4.5 1292402397
## 15310 101 541 4.0 1292402458
## 15311 101 589 4.5 1292402496
## 15312 101 762 2.5 1292402330
## 15313 101 1036 3.5 1292402569
## 15314 101 1196 4.5 1292402493
## 15315 101 1198 5.0 1292402603
## 15316 101 1200 4.5 1292402446
## 15317 101 1210 4.5 1292402512
## 15318 101 1214 3.5 1292402444
## 15319 101 1240 3.5 1292402503
## 15320 101 1270 4.5 1292402504
## 15321 101 1291 4.5 1292402584
## 15322 101 1374 4.5 1292402509
## 15323 101 1376 4.5 1292402299
## 15324 101 1610 4.0 1292402616
## 15325 101 1909 3.0 1292402316
## 15326 101 2000 3.5 1292402618
## 15327 101 2001 4.0 1292402302
## 15328 101 2019 4.0 1292402401
## 15329 101 2028 4.5 1292402651
## 15330 101 2268 3.5 1292402682
## 15331 101 2302 2.5 1292402269
## 15332 101 2353 4.0 1292402271
## 15333 101 2571 4.5 1292402491
## 15334 101 2699 3.0 1292402279
## 15335 101 2716 3.5 1292402688
## 15336 101 2770 3.0 1292402332
## 15337 101 3147 4.0 1292402692
## 15338 101 3471 4.0 1292402294
## 15339 101 3527 3.5 1292402724
## 15340 101 4993 5.0 1292402643
## 15341 101 5952 5.0 1292402713
## 15342 101 7153 4.5 1292402711
## 15343 101 26701 4.0 1292402719
## 15344 101 27611 4.5 1292402460
## 15345 101 33794 5.0 1292402625
## 15346 101 44199 4.0 1292402696
## 15347 101 54286 4.0 1292402671
## 15348 101 56921 4.0 1292402507
## 15349 101 58559 5.0 1292402610
## 15350 101 68237 4.0 1292402716
## 15351 101 68358 4.5 1292402497
## 15352 101 70286 4.5 1292402675
## 15353 101 79132 5.0 1292402393
## 15354 102 14 4.0 957895013
## 15355 102 25 4.0 956599039
## 15356 102 28 4.0 956590655
## 15357 102 34 4.0 956591671
## 15358 102 35 4.0 957894204
## 15359 102 36 4.0 956598974
## 15360 102 37 1.0 959976593
## 15361 102 45 4.0 957894251
## 15362 102 47 4.0 958248432
## 15363 102 50 4.0 956598567
## 15364 102 52 4.0 956600232
## 15365 102 58 4.0 956598787
## 15366 102 70 2.0 957980283
## 15367 102 78 4.0 957895295
## 15368 102 94 2.0 957895047
## 15369 102 111 5.0 956590822
## 15370 102 117 4.0 958248486
## 15371 102 125 4.0 957895967
## 15372 102 147 4.0 957894564
## 15373 102 150 4.0 957893991
## 15374 102 159 4.0 957894848
## 15375 102 162 5.0 956598725
## 15376 102 194 4.0 957894450
## 15377 102 202 4.0 957895469
## 15378 102 224 4.0 957894935
## 15379 102 235 4.0 956599987
## 15380 102 246 5.0 956598609
## 15381 102 247 5.0 957893897
## 15382 102 253 3.0 957895080
## 15383 102 260 5.0 956598697
## 15384 102 261 3.0 957894400
## 15385 102 272 4.0 957893763
## 15386 102 280 4.0 957894358
## 15387 102 296 4.0 956591745
## 15388 102 300 4.0 957894232
## 15389 102 303 4.0 957895736
## 15390 102 314 2.0 956598995
## 15391 102 318 3.0 956598677
## 15392 102 334 4.0 956599916
## 15393 102 337 5.0 957893949
## 15394 102 342 4.0 957896110
## 15395 102 345 4.0 956600309
## 15396 102 346 3.0 956599860
## 15397 102 348 4.0 956598960
## 15398 102 352 4.0 957895947
## 15399 102 382 3.0 957895251
## 15400 102 410 3.0 958249214
## 15401 102 417 4.0 958249107
## 15402 102 434 4.0 958248568
## 15403 102 441 4.0 958248859
## 15404 102 457 3.0 956600134
## 15405 102 471 5.0 958248997
## 15406 102 474 3.0 956600183
## 15407 102 492 4.0 958249091
## 15408 102 501 4.0 957894006
## 15409 102 506 3.0 957894532
## 15410 102 507 3.0 957894532
## 15411 102 508 2.0 957894170
## 15412 102 527 4.0 956590890
## 15413 102 529 4.0 956600199
## 15414 102 532 4.0 957980250
## 15415 102 535 4.0 957893915
## 15416 102 538 4.0 957894170
## 15417 102 541 4.0 956590911
## 15418 102 549 4.0 956591782
## 15419 102 551 4.0 957980939
## 15420 102 555 3.0 958248454
## 15421 102 556 4.0 956590911
## 15422 102 562 5.0 957893672
## 15423 102 574 4.0 957894400
## 15424 102 581 4.0 957895604
## 15425 102 590 2.0 957894532
## 15426 102 592 4.0 957894505
## 15427 102 593 4.0 956598567
## 15428 102 594 5.0 957980883
## 15429 102 596 4.0 958250022
## 15430 102 599 5.0 956600050
## 15431 102 608 5.0 956591420
## 15432 102 616 4.0 958250102
## 15433 102 661 5.0 958250119
## 15434 102 745 4.0 956590890
## 15435 102 750 5.0 956590655
## 15436 102 766 4.0 957894204
## 15437 102 778 4.0 956600246
## 15438 102 780 2.0 957980779
## 15439 102 799 3.0 957980120
## 15440 102 800 4.0 956598803
## 15441 102 802 3.0 957895047
## 15442 102 858 5.0 956598493
## 15443 102 898 5.0 957895908
## 15444 102 899 5.0 956598942
## 15445 102 902 4.0 956600034
## 15446 102 903 5.0 956590727
## 15447 102 904 5.0 956590677
## 15448 102 905 4.0 956598677
## 15449 102 908 5.0 956590655
## 15450 102 909 4.0 956600065
## 15451 102 910 4.0 956598634
## 15452 102 912 5.0 956590727
## 15453 102 913 4.0 956590706
## 15454 102 914 5.0 957980851
## 15455 102 918 4.0 957980883
## 15456 102 919 4.0 956590822
## 15457 102 920 5.0 956591803
## 15458 102 921 4.0 956600034
## 15459 102 922 5.0 956590624
## 15460 102 923 5.0 956590609
## 15461 102 924 5.0 956598725
## 15462 102 926 5.0 956591655
## 15463 102 927 4.0 958248832
## 15464 102 928 4.0 956591745
## 15465 102 930 5.0 956590956
## 15466 102 931 4.0 956600103
## 15467 102 945 4.0 956591745
## 15468 102 948 5.0 957894084
## 15469 102 949 4.0 956598942
## 15470 102 950 5.0 957982142
## 15471 102 953 5.0 956600396
## 15472 102 954 4.0 956599860
## 15473 102 955 4.0 956598921
## 15474 102 965 4.0 956591596
## 15475 102 968 5.0 957980120
## 15476 102 969 4.0 956591745
## 15477 102 971 4.0 956598656
## 15478 102 973 5.0 957893763
## 15479 102 982 4.0 956600155
## 15480 102 994 4.0 956591420
## 15481 102 1009 3.0 959976680
## 15482 102 1010 4.0 958249168
## 15483 102 1012 5.0 957894142
## 15484 102 1019 4.0 959976634
## 15485 102 1028 5.0 957980851
## 15486 102 1029 5.0 958250063
## 15487 102 1035 5.0 957980939
## 15488 102 1036 4.0 959976817
## 15489 102 1046 4.0 956600103
## 15490 102 1057 5.0 957980883
## 15491 102 1061 2.0 957894450
## 15492 102 1073 4.0 957896110
## 15493 102 1077 4.0 956598725
## 15494 102 1078 4.0 956600265
## 15495 102 1079 5.0 956599182
## 15496 102 1080 4.0 956598921
## 15497 102 1081 4.0 957980939
## 15498 102 1082 4.0 956599941
## 15499 102 1084 4.0 956591548
## 15500 102 1086 5.0 956599833
## 15501 102 1089 4.0 956598825
## 15502 102 1090 2.0 957893991
## 15503 102 1093 3.0 957894807
## 15504 102 1094 4.0 956598634
## 15505 102 1095 4.0 956599987
## 15506 102 1096 4.0 956591745
## 15507 102 1097 4.0 956600083
## 15508 102 1103 4.0 956591762
## 15509 102 1104 5.0 956590843
## 15510 102 1120 4.0 957894466
## 15511 102 1124 4.0 957894532
## 15512 102 1125 5.0 957895999
## 15513 102 1128 4.0 957980222
## 15514 102 1131 4.0 956591390
## 15515 102 1132 4.0 956598841
## 15516 102 1136 5.0 956591803
## 15517 102 1147 4.0 956590727
## 15518 102 1148 4.0 956590890
## 15519 102 1171 4.0 957896110
## 15520 102 1172 4.0 956598768
## 15521 102 1173 5.0 957894648
## 15522 102 1175 5.0 957895828
## 15523 102 1178 5.0 956590655
## 15524 102 1179 5.0 957893541
## 15525 102 1185 4.0 956598825
## 15526 102 1186 4.0 956599082
## 15527 102 1188 3.0 956590405
## 15528 102 1189 4.0 956590911
## 15529 102 1192 5.0 957895604
## 15530 102 1193 4.0 956598567
## 15531 102 1196 5.0 957893656
## 15532 102 1197 5.0 958248642
## 15533 102 1198 4.0 956590465
## 15534 102 1200 5.0 956600284
## 15535 102 1201 5.0 957980614
## 15536 102 1203 4.0 956598898
## 15537 102 1204 5.0 956590934
## 15538 102 1207 5.0 956598547
## 15539 102 1208 5.0 956591671
## 15540 102 1209 5.0 956598841
## 15541 102 1210 3.0 956590405
## 15542 102 1211 5.0 957893839
## 15543 102 1212 5.0 956590677
## 15544 102 1213 5.0 956590890
## 15545 102 1214 4.0 956598869
## 15546 102 1217 5.0 956598803
## 15547 102 1218 5.0 956590706
## 15548 102 1219 5.0 956590862
## 15549 102 1220 4.0 957895908
## 15550 102 1221 5.0 956598567
## 15551 102 1222 5.0 956600155
## 15552 102 1224 4.0 956591420
## 15553 102 1225 4.0 956598567
## 15554 102 1227 5.0 957893972
## 15555 102 1228 5.0 956598656
## 15556 102 1230 5.0 956598547
## 15557 102 1231 4.0 956598725
## 15558 102 1233 5.0 956598656
## 15559 102 1234 4.0 956598869
## 15560 102 1235 4.0 956598869
## 15561 102 1237 4.0 956590822
## 15562 102 1238 4.0 957895908
## 15563 102 1240 4.0 956598942
## 15564 102 1242 4.0 956599082
## 15565 102 1243 4.0 956600349
## 15566 102 1244 5.0 956598768
## 15567 102 1245 5.0 956600349
## 15568 102 1246 3.0 957893991
## 15569 102 1247 5.0 956590822
## 15570 102 1248 5.0 956590677
## 15571 102 1249 4.0 956600199
## 15572 102 1250 4.0 956598590
## 15573 102 1251 5.0 956590862
## 15574 102 1252 5.0 956598547
## 15575 102 1253 5.0 956600349
## 15576 102 1256 4.0 956598609
## 15577 102 1258 5.0 957979592
## 15578 102 1259 4.0 956598898
## 15579 102 1260 5.0 956590609
## 15580 102 1262 4.0 956591803
## 15581 102 1263 5.0 957893782
## 15582 102 1264 4.0 957894084
## 15583 102 1265 5.0 957895874
## 15584 102 1266 5.0 956591624
## 15585 102 1267 5.0 956598547
## 15586 102 1268 3.0 957894707
## 15587 102 1270 3.0 958248668
## 15588 102 1272 5.0 957980677
## 15589 102 1273 4.0 956599013
## 15590 102 1276 5.0 956591745
## 15591 102 1278 4.0 956591762
## 15592 102 1279 4.0 957894685
## 15593 102 1281 5.0 956598768
## 15594 102 1282 4.0 956591782
## 15595 102 1283 5.0 956591636
## 15596 102 1284 5.0 956599013
## 15597 102 1285 4.0 956599039
## 15598 102 1287 4.0 956600217
## 15599 102 1288 5.0 956599039
## 15600 102 1289 4.0 956599821
## 15601 102 1292 5.0 957895947
## 15602 102 1293 5.0 956598697
## 15603 102 1296 4.0 956598697
## 15604 102 1299 4.0 956598567
## 15605 102 1300 4.0 956598656
## 15606 102 1302 3.0 957894204
## 15607 102 1304 5.0 956598742
## 15608 102 1307 3.0 956599971
## 15609 102 1320 3.0 957980378
## 15610 102 1321 4.0 957980041
## 15611 102 1323 2.0 957980557
## 15612 102 1327 4.0 957980426
## 15613 102 1333 5.0 956598961
## 15614 102 1339 3.0 957980250
## 15615 102 1340 5.0 957980072
## 15616 102 1341 4.0 957980173
## 15617 102 1342 3.0 957980222
## 15618 102 1345 5.0 957980072
## 15619 102 1346 3.0 957980400
## 15620 102 1347 5.0 957980222
## 15621 102 1348 4.0 956598590
## 15622 102 1350 5.0 957980146
## 15623 102 1357 4.0 956600328
## 15624 102 1358 3.0 956599100
## 15625 102 1361 5.0 956599182
## 15626 102 1366 4.0 957894870
## 15627 102 1374 4.0 959976792
## 15628 102 1377 2.0 958248516
## 15629 102 1380 4.0 957980962
## 15630 102 1384 4.0 956599821
## 15631 102 1387 4.0 956591596
## 15632 102 1389 2.0 957980557
## 15633 102 1393 2.0 957894170
## 15634 102 1394 4.0 956591671
## 15635 102 1405 4.0 958250139
## 15636 102 1407 4.0 957980094
## 15637 102 1411 5.0 957893740
## 15638 102 1420 5.0 957895586
## 15639 102 1449 5.0 957896110
## 15640 102 1466 4.0 957893897
## 15641 102 1516 4.0 958249411
## 15642 102 1517 4.0 957896069
## 15643 102 1535 4.0 956600328
## 15644 102 1554 4.0 957894126
## 15645 102 1584 2.0 957894285
## 15646 102 1594 2.0 957982093
## 15647 102 1610 3.0 959976817
## 15648 102 1611 4.0 957894309
## 15649 102 1617 5.0 957893520
## 15650 102 1644 2.0 957980451
## 15651 102 1648 5.0 957894935
## 15652 102 1663 4.0 958248949
## 15653 102 1673 4.0 957893804
## 15654 102 1690 4.0 957980283
## 15655 102 1701 4.0 957895947
## 15656 102 1704 2.0 957893804
## 15657 102 1717 4.0 957980283
## 15658 102 1719 4.0 956591390
## 15659 102 1729 4.0 958248432
## 15660 102 1732 5.0 958248454
## 15661 102 1734 4.0 956600034
## 15662 102 1788 4.0 957894505
## 15663 102 1797 4.0 956591420
## 15664 102 1836 4.0 957894505
## 15665 102 1841 4.0 957894606
## 15666 102 1856 2.0 957895650
## 15667 102 1883 4.0 956600328
## 15668 102 1884 3.0 958249148
## 15669 102 1888 1.0 957895013
## 15670 102 1895 2.0 957894870
## 15671 102 1923 3.0 956600246
## 15672 102 1924 5.0 957980072
## 15673 102 1927 4.0 956590934
## 15674 102 1929 4.0 956598898
## 15675 102 1931 4.0 956591762
## 15676 102 1939 5.0 957980677
## 15677 102 1941 4.0 956598869
## 15678 102 1944 5.0 956598898
## 15679 102 1945 5.0 957893719
## 15680 102 1946 4.0 956599013
## 15681 102 1947 5.0 956598898
## 15682 102 1950 5.0 956591624
## 15683 102 1952 5.0 956591803
## 15684 102 1953 5.0 956598697
## 15685 102 1954 5.0 957894100
## 15686 102 1955 4.0 956599162
## 15687 102 1956 4.0 956598825
## 15688 102 1957 4.0 956599039
## 15689 102 1958 4.0 957894084
## 15690 102 1960 5.0 956600328
## 15691 102 1961 4.0 957893949
## 15692 102 1962 3.0 956599162
## 15693 102 1965 4.0 957895999
## 15694 102 1966 5.0 956600379
## 15695 102 1968 4.0 957894285
## 15696 102 1969 4.0 957980426
## 15697 102 1974 5.0 957980309
## 15698 102 1982 4.0 956590465
## 15699 102 1987 4.0 957980451
## 15700 102 1994 4.0 957980072
## 15701 102 1997 5.0 957979592
## 15702 102 1999 3.0 957980400
## 15703 102 2000 2.0 957894204
## 15704 102 2001 2.0 957894807
## 15705 102 2003 2.0 957980222
## 15706 102 2010 4.0 956590862
## 15707 102 2014 4.0 958249253
## 15708 102 2018 4.0 958250044
## 15709 102 2019 4.0 956598510
## 15710 102 2020 4.0 956591624
## 15711 102 2021 4.0 959976656
## 15712 102 2023 2.0 957894667
## 15713 102 2043 3.0 959976680
## 15714 102 2064 4.0 956600232
## 15715 102 2065 4.0 957896110
## 15716 102 2067 4.0 956599916
## 15717 102 2068 5.0 956599137
## 15718 102 2069 4.0 956600217
## 15719 102 2070 4.0 956600309
## 15720 102 2075 4.0 956598634
## 15721 102 2076 5.0 956600134
## 15722 102 2078 4.0 958250044
## 15723 102 2080 4.0 958250044
## 15724 102 2085 4.0 956599039
## 15725 102 2087 4.0 957980851
## 15726 102 2088 4.0 957980999
## 15727 102 2090 4.0 958250119
## 15728 102 2097 4.0 957980196
## 15729 102 2099 5.0 957980939
## 15730 102 2100 4.0 959976656
## 15731 102 2105 3.0 959976680
## 15732 102 2107 3.0 957980451
## 15733 102 2109 4.0 958248997
## 15734 102 2110 3.0 958248471
## 15735 102 2112 2.0 957894627
## 15736 102 2118 4.0 957980072
## 15737 102 2121 2.0 957980426
## 15738 102 2124 4.0 958249214
## 15739 102 2130 5.0 956591745
## 15740 102 2132 5.0 956591576
## 15741 102 2135 4.0 957980962
## 15742 102 2137 5.0 958250078
## 15743 102 2138 4.0 958250102
## 15744 102 2140 3.0 959976634
## 15745 102 2144 3.0 958248878
## 15746 102 2145 3.0 957894667
## 15747 102 2146 3.0 957895251
## 15748 102 2160 5.0 956599971
## 15749 102 2163 4.0 957980309
## 15750 102 2174 4.0 956600134
## 15751 102 2186 5.0 956590677
## 15752 102 2193 3.0 959976680
## 15753 102 2194 4.0 957894309
## 15754 102 2202 4.0 957893782
## 15755 102 2203 4.0 956598921
## 15756 102 2208 4.0 956599137
## 15757 102 2219 4.0 956591624
## 15758 102 2227 4.0 956600002
## 15759 102 2240 1.0 957894741
## 15760 102 2243 3.0 957894126
## 15761 102 2248 4.0 956599117
## 15762 102 2268 4.0 957894627
## 15763 102 2282 4.0 957894037
## 15764 102 2289 4.0 956591576
## 15765 102 2290 4.0 957896048
## 15766 102 2291 4.0 956599082
## 15767 102 2300 5.0 956598787
## 15768 102 2301 4.0 958248997
## 15769 102 2303 5.0 956591624
## 15770 102 2312 3.0 957894400
## 15771 102 2313 5.0 956599941
## 15772 102 2318 5.0 956600363
## 15773 102 2321 3.0 956600183
## 15774 102 2333 4.0 957893857
## 15775 102 2336 4.0 956591745
## 15776 102 2344 4.0 957894424
## 15777 102 2345 3.0 957894126
## 15778 102 2351 5.0 957893656
## 15779 102 2352 3.0 957893897
## 15780 102 2356 4.0 958249590
## 15781 102 2361 5.0 956600065
## 15782 102 2362 4.0 956600265
## 15783 102 2366 4.0 957980072
## 15784 102 2367 3.0 957980309
## 15785 102 2391 4.0 958248391
## 15786 102 2395 4.0 956600183
## 15787 102 2396 4.0 956598656
## 15788 102 2397 3.0 957894400
## 15789 102 2406 3.0 958248949
## 15790 102 2407 3.0 958249041
## 15791 102 2420 3.0 957894883
## 15792 102 2423 3.0 958249076
## 15793 102 2439 4.0 957981110
## 15794 102 2453 3.0 956599941
## 15795 102 2454 5.0 957980196
## 15796 102 2455 3.0 957980146
## 15797 102 2459 5.0 957980343
## 15798 102 2517 3.0 957980283
## 15799 102 2520 4.0 957894989
## 15800 102 2524 4.0 957895047
## 15801 102 2527 4.0 957895736
## 15802 102 2541 1.0 957894760
## 15803 102 2548 1.0 957980378
## 15804 102 2599 4.0 956591624
## 15805 102 2616 3.0 958248533
## 15806 102 2628 4.0 959976656
## 15807 102 2639 4.0 957894989
## 15808 102 2644 4.0 957980072
## 15809 102 2657 5.0 957980146
## 15810 102 2662 4.0 957980677
## 15811 102 2664 5.0 957980041
## 15812 102 2672 3.0 957893541
## 15813 102 2683 4.0 957981224
## 15814 102 2692 4.0 956598825
## 15815 102 2702 3.0 957895189
## 15816 102 2710 3.0 957980173
## 15817 102 2712 4.0 957894170
## 15818 102 2716 4.0 957895908
## 15819 102 2717 2.0 957980426
## 15820 102 2725 4.0 957894057
## 15821 102 2726 5.0 957893520
## 15822 102 2728 4.0 956590405
## 15823 102 2729 5.0 956600363
## 15824 102 2730 4.0 956599860
## 15825 102 2731 4.0 956590956
## 15826 102 2734 4.0 957894627
## 15827 102 2739 4.0 956599137
## 15828 102 2746 4.0 957980173
## 15829 102 2747 4.0 957980094
## 15830 102 2749 4.0 957894788
## 15831 102 2750 4.0 956600284
## 15832 102 2757 4.0 957894309
## 15833 102 2762 4.0 956591782
## 15834 102 2764 4.0 958248454
## 15835 102 2779 4.0 958249021
## 15836 102 2784 4.0 957980222
## 15837 102 2791 4.0 956599971
## 15838 102 2793 4.0 958249508
## 15839 102 2795 4.0 958248911
## 15840 102 2797 3.0 959976634
## 15841 102 2804 4.0 956590911
## 15842 102 2820 4.0 956600309
## 15843 102 2844 4.0 957895278
## 15844 102 2852 4.0 956600349
## 15845 102 2857 4.0 957980883
## 15846 102 2858 5.0 956590890
## 15847 102 2859 3.0 956598547
## 15848 102 2863 3.0 956591576
## 15849 102 2866 4.0 957894037
## 15850 102 2871 4.0 956600134
## 15851 102 2872 3.0 957894309
## 15852 102 2883 4.0 958248928
## 15853 102 2890 4.0 957893857
## 15854 102 2902 2.0 957980469
## 15855 102 2915 4.0 956599891
## 15856 102 2917 4.0 956600002
## 15857 102 2918 4.0 957895909
## 15858 102 2919 4.0 956598825
## 15859 102 2920 5.0 956590677
## 15860 102 2921 4.0 956599182
## 15861 102 2922 4.0 956600103
## 15862 102 2925 5.0 956591420
## 15863 102 2926 4.0 957894170
## 15864 102 2929 5.0 957894726
## 15865 102 2932 5.0 957894251
## 15866 102 2944 5.0 957980704
## 15867 102 2947 4.0 956600155
## 15868 102 2948 4.0 956599891
## 15869 102 2949 4.0 956599971
## 15870 102 2951 5.0 956599039
## 15871 102 2966 4.0 956590465
## 15872 102 2968 4.0 959976634
## 15873 102 2970 5.0 957893672
## 15874 102 2973 5.0 956599061
## 15875 102 2987 3.0 956600083
## 15876 102 2993 4.0 959976817
## 15877 102 2997 4.0 957895846
## 15878 102 3006 4.0 956591596
## 15879 102 3007 5.0 956590934
## 15880 102 3011 4.0 956600309
## 15881 102 3018 4.0 957979592
## 15882 102 3019 4.0 956590890
## 15883 102 3022 5.0 956590465
## 15884 102 3037 4.0 956599941
## 15885 102 3039 3.0 957896083
## 15886 102 3060 3.0 956599100
## 15887 102 3061 4.0 957980939
## 15888 102 3062 5.0 957980704
## 15889 102 3066 4.0 957980740
## 15890 102 3067 4.0 956591576
## 15891 102 3068 4.0 956598768
## 15892 102 3071 3.0 957894126
## 15893 102 3072 4.0 956598921
## 15894 102 3081 4.0 957980120
## 15895 102 3088 5.0 957895947
## 15896 102 3089 4.0 956598510
## 15897 102 3093 5.0 957895708
## 15898 102 3095 5.0 957893696
## 15899 102 3098 4.0 956600217
## 15900 102 3129 4.0 957894685
## 15901 102 3130 3.0 958249773
## 15902 102 3134 5.0 956598547
## 15903 102 3145 4.0 957894400
## 15904 102 3147 2.0 957893930
## 15905 102 3152 5.0 956598869
## 15906 102 3163 4.0 956590956
## 15907 102 3168 5.0 957893915
## 15908 102 3169 3.0 956599162
## 15909 102 3176 2.0 957894309
## 15910 102 3179 2.0 957893972
## 15911 102 3196 4.0 956590727
## 15912 102 3198 4.0 956600183
## 15913 102 3201 4.0 956591596
## 15914 102 3203 4.0 956600379
## 15915 102 3210 4.0 956600112
## 15916 102 3218 4.0 957894788
## 15917 102 3223 4.0 956598768
## 15918 102 3224 4.0 956590706
## 15919 102 3246 4.0 956600396
## 15920 102 3250 4.0 957894588
## 15921 102 3251 3.0 957894505
## 15922 102 3253 3.0 958248878
## 15923 102 3255 4.0 957894588
## 15924 102 3262 3.0 957895233
## 15925 102 3264 4.0 958249181
## 15926 102 3265 4.0 958248367
## 15927 102 3266 4.0 957893696
## 15928 102 3273 3.0 956598432
## 15929 102 3285 2.0 957893451
## 15930 102 3301 2.0 957893451
## 15931 102 3307 5.0 956590465
## 15932 102 3308 2.0 956599821
## 15933 102 3317 2.0 957893364
## 15934 102 3324 2.0 957893405
## 15935 102 3327 2.0 957893405
## 15936 102 3329 4.0 957894564
## 15937 102 3342 3.0 956599874
## 15938 102 3350 4.0 956598787
## 15939 102 3354 1.0 957893451
## 15940 102 3358 4.0 958248911
## 15941 102 3360 4.0 957893804
## 15942 102 3361 3.0 956591745
## 15943 102 3362 5.0 956591576
## 15944 102 3363 4.0 956598898
## 15945 102 3365 5.0 956591391
## 15946 102 3386 3.0 957894788
## 15947 102 3396 4.0 956600309
## 15948 102 3408 2.0 957893364
## 15949 102 3418 4.0 956598961
## 15950 102 3420 4.0 957894424
## 15951 102 3421 3.0 956599061
## 15952 102 3422 4.0 958248928
## 15953 102 3424 5.0 956591391
## 15954 102 3426 4.0 957894870
## 15955 102 3428 4.0 957895495
## 15956 102 3435 5.0 956590584
## 15957 102 3441 2.0 957980779
## 15958 102 3448 3.0 957894667
## 15959 102 3451 5.0 957894482
## 15960 102 3461 4.0 956598974
## 15961 102 3462 5.0 956590677
## 15962 102 3468 4.0 956591655
## 15963 102 3469 4.0 956598590
## 15964 102 3471 4.0 956598677
## 15965 102 3478 3.0 957894760
## 15966 102 3479 4.0 959976656
## 15967 102 3481 4.0 956598345
## 15968 102 3484 1.0 957893428
## 15969 102 3499 4.0 956600014
## 15970 102 3503 5.0 957893629
## 15971 102 3504 5.0 956591420
## 15972 102 3508 5.0 957895708
## 15973 102 3511 1.0 957893428
## 15974 102 3519 4.0 957980758
## 15975 102 3521 4.0 957893972
## 15976 102 3526 2.0 957894267
## 15977 102 3528 2.0 957981575
## 15978 102 3529 4.0 957981575
## 15979 102 3538 3.0 959975630
## 15980 102 3543 4.0 956590822
## 15981 102 3544 4.0 957981594
## 15982 102 3545 4.0 957980704
## 15983 102 3546 5.0 956600396
## 15984 102 3547 4.0 956599061
## 15985 102 3548 4.0 956591762
## 15986 102 3549 5.0 957980939
## 15987 102 3550 5.0 957980250
## 15988 102 3551 5.0 956599039
## 15989 102 3552 4.0 958248161
## 15990 102 3564 2.0 957893471
## 15991 102 3565 3.0 957981663
## 15992 102 3566 4.0 959021992
## 15993 102 3588 4.0 956598590
## 15994 102 3590 4.0 957981516
## 15995 102 3591 3.0 956590822
## 15996 102 3606 5.0 957980851
## 15997 102 3608 4.0 957895846
## 15998 102 3609 4.0 957981575
## 15999 102 3614 4.0 957981492
## 16000 102 3618 4.0 959975659
## 16001 102 3633 4.0 959976792
## 16002 102 3635 4.0 958248322
## 16003 102 3639 4.0 959976817
## 16004 102 3655 5.0 959975764
## 16005 102 3668 4.0 959975910
## 16006 102 3671 4.0 959975744
## 16007 102 3675 4.0 959975931
## 16008 102 3676 5.0 959975786
## 16009 102 3678 4.0 959975848
## 16010 102 3679 4.0 959975786
## 16011 102 3680 4.0 959975786
## 16012 102 3681 4.0 959976043
## 16013 102 3683 5.0 959021771
## 16014 102 3685 4.0 959975885
## 16015 102 3698 3.0 959976106
## 16016 102 3700 4.0 959975764
## 16017 102 3702 4.0 959975848
## 16018 102 3703 4.0 959975848
## 16019 102 3704 3.0 959975848
## 16020 102 3706 3.0 959021792
## 16021 102 3708 3.0 959976044
## 16022 102 3724 4.0 959975991
## 16023 102 3729 4.0 959975910
## 16024 102 3730 5.0 959975991
## 16025 102 3733 4.0 959975875
## 16026 102 3734 4.0 959975875
## 16027 102 3735 5.0 959975910
## 16028 102 3740 3.0 961791852
## 16029 102 3741 5.0 959975726
## 16030 102 3742 4.0 959975744
## 16031 102 5060 5.0 957895828
## 16032 103 29 5.0 1117481918
## 16033 103 32 5.0 1117402453
## 16034 103 47 4.5 1117403556
## 16035 103 71 1.0 1117751197
## 16036 103 196 1.5 1117482144
## 16037 103 293 4.5 1117402575
## 16038 103 393 1.0 1117750991
## 16039 103 519 1.0 1117751173
## 16040 103 541 4.5 1117482289
## 16041 103 589 3.0 1117403705
## 16042 103 592 3.0 1117403402
## 16043 103 593 5.0 1117482311
## 16044 103 671 4.0 1117315933
## 16045 103 735 4.0 1117403064
## 16046 103 736 2.5 1117751391
## 16047 103 741 4.5 1117402874
## 16048 103 778 4.5 1117482329
## 16049 103 780 2.0 1117482051
## 16050 103 866 4.5 1117403711
## 16051 103 1037 1.0 1117315897
## 16052 103 1101 2.0 1117402549
## 16053 103 1129 2.5 1117315794
## 16054 103 1199 4.0 1117481923
## 16055 103 1200 4.0 1117403684
## 16056 103 1214 5.0 1117481910
## 16057 103 1215 3.5 1117403369
## 16058 103 1240 4.0 1117481941
## 16059 103 1241 3.5 1117403410
## 16060 103 1255 3.0 1117403375
## 16061 103 1261 4.5 1117315956
## 16062 103 1274 3.5 1117481903
## 16063 103 1320 3.0 1117315673
## 16064 103 1339 3.5 1117315810
## 16065 103 1385 1.5 1117751643
## 16066 103 1389 1.0 1117751071
## 16067 103 1527 4.0 1117403286
## 16068 103 1552 2.0 1117402521
## 16069 103 1562 1.5 1117315867
## 16070 103 1580 3.0 1117403717
## 16071 103 1584 3.5 1117402531
## 16072 103 1599 1.0 1117750982
## 16073 103 1645 3.5 1117402540
## 16074 103 1653 3.5 1117315619
## 16075 103 1676 4.0 1117482082
## 16076 103 1690 1.5 1117315761
## 16077 103 1721 3.0 1117751684
## 16078 103 1805 2.0 1117315940
## 16079 103 2021 1.5 1117315845
## 16080 103 2232 4.0 1117403832
## 16081 103 2329 4.5 1117482271
## 16082 103 2405 3.0 1117751407
## 16083 103 2549 1.0 1117403012
## 16084 103 2571 4.0 1117403661
## 16085 103 2605 3.0 1117315874
## 16086 103 2701 2.0 1117402713
## 16087 103 2858 4.0 1117482349
## 16088 103 2916 3.5 1117482016
## 16089 103 2959 5.0 1117403605
## 16090 103 2985 3.0 1117402464
## 16091 103 3033 4.0 1117482022
## 16092 103 3175 4.0 1117481971
## 16093 103 3527 3.5 1117403390
## 16094 103 3578 4.0 1117403674
## 16095 103 3697 2.0 1117482135
## 16096 103 3793 4.0 1117403280
## 16097 103 3863 3.0 1117482102
## 16098 103 4105 3.5 1117402645
## 16099 103 4226 4.5 1117402477
## 16100 103 4370 4.0 1117402625
## 16101 103 4475 4.0 1117404328
## 16102 103 4848 5.0 1117403775
## 16103 103 4896 4.0 1117403646
## 16104 103 4973 5.0 1117482339
## 16105 103 5349 4.0 1117403497
## 16106 103 5445 4.0 1117315690
## 16107 103 5528 3.5 1117402615
## 16108 103 5700 1.0 1117751135
## 16109 103 5816 4.0 1117403745
## 16110 103 6242 4.5 1117403493
## 16111 103 6333 4.0 1117315905
## 16112 103 6502 4.0 1117403477
## 16113 103 6790 4.0 1117481980
## 16114 103 6857 3.0 1117403312
## 16115 103 6874 5.0 1117315927
## 16116 103 6996 1.5 1117751234
## 16117 103 7022 5.0 1117403423
## 16118 103 7090 4.5 1117403588
## 16119 103 7235 4.5 1117751478
## 16120 103 7438 5.0 1117404267
## 16121 103 7481 2.0 1117482004
## 16122 103 8019 4.5 1117751459
## 16123 103 8093 3.5 1117751568
## 16124 103 8157 4.0 1117403597
## 16125 103 8636 3.5 1117402600
## 16126 104 110 4.5 1446673724
## 16127 104 150 4.0 1446674277
## 16128 104 260 4.0 1446673679
## 16129 104 293 4.5 1446673753
## 16130 104 296 4.0 1446674272
## 16131 104 318 5.0 1446673698
## 16132 104 589 5.0 1446673907
## 16133 104 733 4.5 1446673861
## 16134 104 1036 4.0 1446673896
## 16135 104 1196 3.5 1446673678
## 16136 104 1573 3.5 1446674058
## 16137 104 2571 3.5 1446673686
## 16138 104 3578 4.0 1446673781
## 16139 104 4993 4.0 1446673683
## 16140 104 4995 4.0 1446674309
## 16141 104 5628 3.5 1446674117
## 16142 104 5952 5.0 1446673694
## 16143 104 5956 4.0 1446674021
## 16144 104 6365 3.5 1446674123
## 16145 104 6539 4.5 1446673739
## 16146 104 6754 4.0 1446673986
## 16147 104 7153 4.0 1446673682
## 16148 104 7458 3.5 1446674066
## 16149 104 8371 3.5 1446674097
## 16150 104 8636 4.0 1446673947
## 16151 104 8644 4.0 1446673870
## 16152 104 8972 3.5 1446673980
## 16153 104 27611 3.5 1446673794
## 16154 104 33794 4.5 1446673711
## 16155 104 42738 3.5 1446674082
## 16156 104 47099 4.0 1446674352
## 16157 104 48043 4.5 1446673951
## 16158 104 48780 4.0 1446674197
## 16159 104 51662 4.0 1446673807
## 16160 104 53125 3.5 1446673875
## 16161 104 53972 4.0 1446673928
## 16162 104 57640 3.5 1446674148
## 16163 104 58559 4.5 1446673690
## 16164 104 59315 4.5 1446674306
## 16165 104 60069 4.5 1446674190
## 16166 104 64614 4.0 1446674365
## 16167 104 64957 4.0 1446674300
## 16168 104 65682 3.5 1446674037
## 16169 104 68358 4.0 1446674282
## 16170 104 70286 4.0 1446673836
## 16171 104 71135 3.5 1446674062
## 16172 104 71535 4.5 1446674335
## 16173 104 72998 4.5 1446673799
## 16174 104 73017 4.0 1446674429
## 16175 104 74458 4.5 1446674211
## 16176 104 76093 4.5 1446673706
## 16177 104 77561 4.0 1446673820
## 16178 104 79132 4.5 1446673718
## 16179 104 80219 4.0 1446674103
## 16180 104 82461 3.0 1446674088
## 16181 104 84152 4.5 1446674400
## 16182 104 84844 4.0 1446673934
## 16183 104 86644 4.0 1446674030
## 16184 104 88140 3.5 1446673778
## 16185 104 88744 4.0 1446673846
## 16186 104 89745 4.5 1446673714
## 16187 104 91529 4.5 1446673734
## 16188 104 92259 4.5 1446674215
## 16189 104 94777 3.5 1446673992
## 16190 104 103228 4.0 1446673791
## 16191 104 106072 3.5 1446673802
## 16192 104 106489 4.0 1446673764
## 16193 104 109487 4.5 1446673771
## 16194 104 111362 4.0 1446674330
## 16195 104 112171 3.0 1446674139
## 16196 104 112556 4.0 1446674396
## 16197 104 112852 5.0 1446673703
## 16198 104 115617 4.5 1446674193
## 16199 104 122882 4.5 1446673832
## 16200 104 122892 4.5 1446673756
## 16201 104 129354 3.5 1446674078
## 16202 105 6 3.0 1085578997
## 16203 105 10 3.5 1101130624
## 16204 105 11 3.5 1100533597
## 16205 105 16 5.0 1085573826
## 16206 105 19 2.0 1088058230
## 16207 105 21 3.5 1086093635
## 16208 105 22 2.5 1085574077
## 16209 105 25 4.0 1100533528
## 16210 105 32 4.0 1085581768
## 16211 105 36 3.0 1100533551
## 16212 105 47 4.0 1086094595
## 16213 105 50 4.5 1086272608
## 16214 105 52 4.0 1085574005
## 16215 105 95 2.5 1088058158
## 16216 105 104 3.5 1100533831
## 16217 105 105 3.5 1088058675
## 16218 105 110 3.5 1086093600
## 16219 105 111 4.0 1085574450
## 16220 105 150 3.0 1100529775
## 16221 105 151 3.5 1085581733
## 16222 105 153 3.0 1085581726
## 16223 105 164 4.0 1085640748
## 16224 105 165 3.5 1100533423
## 16225 105 168 2.0 1088058683
## 16226 105 173 2.0 1100533903
## 16227 105 196 2.5 1100533996
## 16228 105 198 4.0 1088058689
## 16229 105 208 2.5 1086093646
## 16230 105 253 3.5 1100533509
## 16231 105 260 3.0 1101130498
## 16232 105 272 3.5 1085579933
## 16233 105 288 3.5 1085574471
## 16234 105 290 2.5 1088058647
## 16235 105 292 3.5 1100533466
## 16236 105 293 4.0 1100533653
## 16237 105 296 4.0 1086094607
## 16238 105 300 3.0 1100533564
## 16239 105 305 2.0 1088058656
## 16240 105 316 3.0 1085579676
## 16241 105 318 3.0 1086272698
## 16242 105 339 3.0 1085579171
## 16243 105 344 3.0 1100533414
## 16244 105 348 3.5 1086101939
## 16245 105 349 3.0 1101130575
## 16246 105 356 3.0 1086094614
## 16247 105 357 4.0 1085579921
## 16248 105 364 3.5 1100533451
## 16249 105 367 3.5 1101130637
## 16250 105 368 3.0 1086095273
## 16251 105 370 3.0 1100534070
## 16252 105 377 3.0 1086094602
## 16253 105 380 3.5 1100529797
## 16254 105 381 2.5 1088058623
## 16255 105 382 4.0 1085579068
## 16256 105 383 3.0 1086093920
## 16257 105 410 3.0 1100533629
## 16258 105 420 2.5 1085581664
## 16259 105 427 3.0 1086095239
## 16260 105 431 4.0 1086095202
## 16261 105 432 1.5 1085573835
## 16262 105 434 3.5 1100533484
## 16263 105 435 2.5 1100533815
## 16264 105 440 3.0 1100533587
## 16265 105 442 3.5 1086101945
## 16266 105 454 3.5 1100533501
## 16267 105 457 3.5 1100529745
## 16268 105 458 3.0 1085640697
## 16269 105 459 3.0 1085640689
## 16270 105 468 3.0 1086094013
## 16271 105 471 4.0 1085574088
## 16272 105 474 3.5 1100533610
## 16273 105 480 3.0 1086094619
## 16274 105 481 3.5 1086094026
## 16275 105 497 2.5 1085574422
## 16276 105 500 3.0 1086101954
## 16277 105 508 3.5 1086095236
## 16278 105 509 4.0 1086093610
## 16279 105 522 3.5 1085640658
## 16280 105 535 4.0 1086094007
## 16281 105 539 3.0 1085574395
## 16282 105 541 4.0 1086095152
## 16283 105 555 3.5 1086095164
## 16284 105 586 3.0 1086093615
## 16285 105 587 3.5 1100533482
## 16286 105 589 3.5 1086272680
## 16287 105 590 3.0 1088058164
## 16288 105 592 4.0 1086101860
## 16289 105 593 4.0 1086272669
## 16290 105 597 3.5 1086095185
## 16291 105 608 4.0 1086094625
## 16292 105 648 3.0 1100533435
## 16293 105 653 4.0 1085574389
## 16294 105 688 2.5 1088058610
## 16295 105 733 3.0 1100533457
## 16296 105 736 2.5 1085581674
## 16297 105 762 3.5 1086093893
## 16298 105 778 4.0 1086095169
## 16299 105 780 2.5 1085574335
## 16300 105 784 2.5 1085581638
## 16301 105 785 4.0 1085581634
## 16302 105 788 2.5 1088058188
## 16303 105 832 3.0 1086101906
## 16304 105 852 2.5 1085581624
## 16305 105 858 4.5 1085581604
## 16306 105 866 3.5 1086095142
## 16307 105 912 3.5 1100533616
## 16308 105 923 4.0 1085573960
## 16309 105 996 3.0 1086274277
## 16310 105 1020 3.0 1086095103
## 16311 105 1027 3.0 1085579881
## 16312 105 1036 4.0 1085579867
## 16313 105 1047 4.0 1086095114
## 16314 105 1057 2.5 1088058573
## 16315 105 1061 4.0 1085579876
## 16316 105 1079 3.5 1085574410
## 16317 105 1080 3.5 1085573973
## 16318 105 1088 3.0 1086095128
## 16319 105 1089 4.0 1085581592
## 16320 105 1090 4.0 1085581582
## 16321 105 1094 4.0 1100534077
## 16322 105 1101 3.0 1085581557
## 16323 105 1120 4.0 1085579857
## 16324 105 1127 2.5 1086093583
## 16325 105 1129 3.5 1088058555
## 16326 105 1136 3.0 1085579179
## 16327 105 1147 4.5 1088058547
## 16328 105 1173 3.5 1085579028
## 16329 105 1175 4.0 1086095081
## 16330 105 1179 3.5 1086095072
## 16331 105 1183 4.0 1085574385
## 16332 105 1185 3.0 1086095090
## 16333 105 1186 4.0 1086095086
## 16334 105 1187 3.0 1088059092
## 16335 105 1193 4.0 1085579154
## 16336 105 1196 3.0 1101130590
## 16337 105 1198 4.0 1085579138
## 16338 105 1199 4.0 1086101872
## 16339 105 1200 3.5 1086101917
## 16340 105 1202 4.0 1085640597
## 16341 105 1206 4.0 1100532174
## 16342 105 1208 3.5 1085581565
## 16343 105 1210 3.0 1101130530
## 16344 105 1213 4.5 1086093572
## 16345 105 1214 4.0 1086095067
## 16346 105 1216 3.5 1085580336
## 16347 105 1220 3.5 1100533822
## 16348 105 1221 4.0 1085579162
## 16349 105 1222 4.5 1086272503
## 16350 105 1225 3.5 1086101890
## 16351 105 1227 3.5 1085580285
## 16352 105 1233 5.0 1085574426
## 16353 105 1234 3.5 1101125772
## 16354 105 1238 4.0 1086093860
## 16355 105 1240 4.0 1085581523
## 16356 105 1246 1.5 1085573954
## 16357 105 1247 5.0 1085573851
## 16358 105 1249 4.0 1088058527
## 16359 105 1252 4.5 1100534090
## 16360 105 1258 4.5 1086095076
## 16361 105 1259 3.0 1086272749
## 16362 105 1263 4.0 1100532241
## 16363 105 1265 4.0 1086095095
## 16364 105 1270 3.0 1085581535
## 16365 105 1275 3.0 1086093850
## 16366 105 1277 3.5 1088058500
## 16367 105 1278 4.0 1100534028
## 16368 105 1291 3.0 1085579145
## 16369 105 1298 3.5 1085640555
## 16370 105 1299 4.0 1101115984
## 16371 105 1300 3.0 1086093867
## 16372 105 1305 4.0 1085640535
## 16373 105 1307 4.0 1085579151
## 16374 105 1320 3.5 1086101897
## 16375 105 1321 3.5 1085579314
## 16376 105 1333 3.5 1086960518
## 16377 105 1346 3.0 1086094327
## 16378 105 1367 2.5 1085581530
## 16379 105 1370 3.5 1086960509
## 16380 105 1377 4.0 1085581548
## 16381 105 1378 2.5 1086093877
## 16382 105 1380 3.0 1086101845
## 16383 105 1387 4.5 1085578985
## 16384 105 1391 3.5 1086095038
## 16385 105 1392 3.0 1086960525
## 16386 105 1393 3.5 1086095060
## 16387 105 1394 3.5 1085573855
## 16388 105 1395 3.5 1085640550
## 16389 105 1407 3.0 1100533952
## 16390 105 1438 3.0 1086095042
## 16391 105 1466 4.0 1086094994
## 16392 105 1480 3.5 1086093488
## 16393 105 1499 2.0 1085580294
## 16394 105 1500 4.0 1085573987
## 16395 105 1503 3.0 1085579473
## 16396 105 1527 3.5 1088058180
## 16397 105 1544 3.0 1085574042
## 16398 105 1552 3.0 1085581486
## 16399 105 1573 3.5 1086095010
## 16400 105 1580 4.0 1086094990
## 16401 105 1586 2.0 1086274021
## 16402 105 1589 4.0 1085579848
## 16403 105 1608 3.0 1086095002
## 16404 105 1610 3.5 1100533713
## 16405 105 1617 5.0 1100532149
## 16406 105 1625 4.0 1100532012
## 16407 105 1635 4.0 1085640504
## 16408 105 1641 3.5 1085581466
## 16409 105 1673 4.0 1086094998
## 16410 105 1682 3.5 1086960071
## 16411 105 1721 3.0 1086101836
## 16412 105 1727 3.0 1088059037
## 16413 105 1729 4.5 1086095017
## 16414 105 1732 4.0 1086272767
## 16415 105 1784 4.0 1100606295
## 16416 105 1801 3.0 1101116025
## 16417 105 1810 3.0 1085640483
## 16418 105 1846 4.0 1101115552
## 16419 105 1882 2.0 1085579811
## 16420 105 1884 3.5 1088058417
## 16421 105 1889 4.0 1085580269
## 16422 105 1913 4.0 1086093482
## 16423 105 1917 3.0 1086093845
## 16424 105 1923 4.0 1100533705
## 16425 105 1953 3.5 1086093383
## 16426 105 1961 4.0 1085579817
## 16427 105 1962 3.0 1088058422
## 16428 105 1965 4.0 1085579802
## 16429 105 1968 3.0 1100533686
## 16430 105 1997 4.0 1086094947
## 16431 105 2000 3.5 1100533958
## 16432 105 2001 3.0 1085581438
## 16433 105 2002 3.0 1085581441
## 16434 105 2006 2.5 1088058369
## 16435 105 2011 2.5 1100533989
## 16436 105 2020 4.0 1088058393
## 16437 105 2023 3.0 1086094963
## 16438 105 2028 3.0 1086272795
## 16439 105 2058 3.0 1085581411
## 16440 105 2115 3.5 1100534034
## 16441 105 2116 2.0 1086093376
## 16442 105 2124 3.5 1088058350
## 16443 105 2126 3.0 1086093792
## 16444 105 2159 4.0 1085579444
## 16445 105 2167 3.0 1086094915
## 16446 105 2174 4.5 1085574328
## 16447 105 2194 3.0 1086272559
## 16448 105 2231 4.0 1085579823
## 16449 105 2243 4.0 1085581427
## 16450 105 2247 3.0 1088058975
## 16451 105 2268 3.5 1199439298
## 16452 105 2288 4.0 1086093836
## 16453 105 2291 4.0 1100533947
## 16454 105 2294 3.5 1085579021
## 16455 105 2329 4.0 1085581415
## 16456 105 2352 3.5 1085581448
## 16457 105 2353 2.5 1085581377
## 16458 105 2394 3.0 1088058358
## 16459 105 2395 3.0 1085574059
## 16460 105 2396 3.0 1100533577
## 16461 105 2405 3.0 1086093370
## 16462 105 2406 3.5 1100534113
## 16463 105 2423 3.0 1088058376
## 16464 105 2427 3.0 1088058315
## 16465 105 2455 3.0 1085579828
## 16466 105 2467 3.5 1086272645
## 16467 105 2478 3.5 1086094900
## 16468 105 2502 4.0 1086094924
## 16469 105 2513 2.0 1085640299
## 16470 105 2529 3.0 1085581383
## 16471 105 2539 3.0 1086094906
## 16472 105 2542 4.0 1086272637
## 16473 105 2551 4.0 1085640284
## 16474 105 2571 3.0 1085574342
## 16475 105 2580 4.0 1086272688
## 16476 105 2616 2.5 1086093818
## 16477 105 2617 3.5 1085574093
## 16478 105 2640 1.5 1085574070
## 16479 105 2671 3.0 1086094844
## 16480 105 2683 3.0 1085581341
## 16481 105 2692 3.5 1199439167
## 16482 105 2699 3.0 1086094851
## 16483 105 2701 1.0 1086102111
## 16484 105 2710 2.5 1086094875
## 16485 105 2712 3.0 1085581358
## 16486 105 2716 4.0 1086094848
## 16487 105 2717 3.0 1086274315
## 16488 105 2746 2.0 1086093346
## 16489 105 2762 3.5 1086960054
## 16490 105 2763 3.0 1086094859
## 16491 105 2790 3.0 1085579657
## 16492 105 2793 2.0 1088058933
## 16493 105 2797 3.0 1100533937
## 16494 105 2822 2.5 1086960284
## 16495 105 2858 4.0 1085581346
## 16496 105 2862 2.5 1085581054
## 16497 105 2890 3.0 1086272690
## 16498 105 2916 4.0 1086094829
## 16499 105 2917 4.0 1101125846
## 16500 105 2919 4.0 1085640230
## 16501 105 2942 3.0 1086094218
## 16502 105 2959 3.5 1086093785
## 16503 105 2968 4.0 1086094813
## 16504 105 2985 3.0 1086101839
## 16505 105 2987 3.0 1085574349
## 16506 105 2997 4.0 1085574365
## 16507 105 3006 4.0 1085640181
## 16508 105 3019 3.5 1101125851
## 16509 105 3020 4.0 1085640196
## 16510 105 3037 4.0 1085640140
## 16511 105 3072 3.0 1086093777
## 16512 105 3081 3.0 1086094809
## 16513 105 3082 3.0 1086094805
## 16514 105 3104 4.5 1085640164
## 16515 105 3127 3.0 1086094522
## 16516 105 3130 3.5 1085579412
## 16517 105 3141 2.5 1085641901
## 16518 105 3147 3.0 1085581274
## 16519 105 3157 3.0 1086274284
## 16520 105 3168 3.5 1086093765
## 16521 105 3176 3.5 1086094765
## 16522 105 3185 3.5 1086093452
## 16523 105 3198 3.5 1085580217
## 16524 105 3201 4.0 1100606354
## 16525 105 3210 3.0 1085640104
## 16526 105 3246 3.0 1086272799
## 16527 105 3253 2.5 1086094787
## 16528 105 3255 2.5 1086093357
## 16529 105 3257 3.5 1086102081
## 16530 105 3263 3.0 1088058238
## 16531 105 3271 3.0 1086272525
## 16532 105 3285 2.5 1086093741
## 16533 105 3324 2.5 1100531148
## 16534 105 3328 3.0 1101125778
## 16535 105 3386 3.0 1086272631
## 16536 105 3408 3.5 1085574022
## 16537 105 3418 3.5 1085581284
## 16538 105 3421 4.0 1086094759
## 16539 105 3424 4.0 1088058292
## 16540 105 3426 3.0 1086960240
## 16541 105 3448 3.0 1085581289
## 16542 105 3450 3.0 1085640064
## 16543 105 3471 4.0 1085579214
## 16544 105 3476 4.0 1085640021
## 16545 105 3481 4.0 1085574084
## 16546 105 3489 2.5 1086102087
## 16547 105 3498 4.0 1100532099
## 16548 105 3499 4.0 1086272508
## 16549 105 3503 2.0 1088058852
## 16550 105 3527 3.5 1086094781
## 16551 105 3529 3.0 1085579419
## 16552 105 3552 3.5 1086093773
## 16553 105 3557 3.0 1086094534
## 16554 105 3578 4.5 1100533679
## 16555 105 3584 3.5 1086094545
## 16556 105 3614 4.0 1088058828
## 16557 105 3676 2.0 1086094180
## 16558 105 3682 4.0 1085639996
## 16559 105 3683 4.0 1085639989
## 16560 105 3685 4.0 1085639974
## 16561 105 3686 3.0 1086094194
## 16562 105 3697 3.0 1086093756
## 16563 105 3702 4.0 1085639969
## 16564 105 3703 3.5 1086102036
## 16565 105 3717 2.5 1086274173
## 16566 105 3735 4.0 1086102041
## 16567 105 3740 3.0 1085580186
## 16568 105 3744 3.0 1086274263
## 16569 105 3752 3.0 1088058270
## 16570 105 3753 3.0 1086094721
## 16571 105 3755 3.0 1085581279
## 16572 105 3783 3.0 1101125836
## 16573 105 3793 3.0 1086094736
## 16574 105 3809 4.0 1086275253
## 16575 105 3825 2.0 1086275040
## 16576 105 3826 2.5 1086093749
## 16577 105 3831 3.0 1085639931
## 16578 105 3836 3.0 1086272615
## 16579 105 3917 4.0 1086094149
## 16580 105 3918 3.0 1088058788
## 16581 105 3946 2.0 1086094164
## 16582 105 3967 3.0 1085639873
## 16583 105 3980 2.0 1085639899
## 16584 105 3996 3.5 1085573843
## 16585 105 4002 3.5 1100532157
## 16586 105 4007 3.5 1086272672
## 16587 105 4011 4.0 1086102024
## 16588 105 4027 3.5 1086272776
## 16589 105 4034 4.0 1086272718
## 16590 105 4041 3.5 1085580193
## 16591 105 4056 4.0 1100606338
## 16592 105 4084 3.0 1088058815
## 16593 105 4148 3.5 1085580206
## 16594 105 4161 3.0 1085639858
## 16595 105 4203 2.0 1086094470
## 16596 105 4210 4.0 1086272626
## 16597 105 4218 4.0 1085641797
## 16598 105 4223 3.5 1088058250
## 16599 105 4226 4.0 1085581263
## 16600 105 4234 3.0 1085639848
## 16601 105 4235 4.5 1100532272
## 16602 105 4239 4.0 1086101981
## 16603 105 4246 3.0 1085639812
## 16604 105 4251 4.0 1085641793
## 16605 105 4262 3.5 1085580172
## 16606 105 4280 3.0 1085639807
## 16607 105 4321 3.5 1086094703
## 16608 105 4326 4.0 1086272756
## 16609 105 4361 3.0 1086101988
## 16610 105 4367 2.0 1085579220
## 16611 105 4407 4.5 1085581010
## 16612 105 4448 3.0 1086093719
## 16613 105 4467 3.5 1085639777
## 16614 105 4479 4.0 1085579231
## 16615 105 4482 3.0 1085579637
## 16616 105 4487 3.0 1085580165
## 16617 105 4557 3.0 1085580993
## 16618 105 4558 3.0 1086274032
## 16619 105 4572 3.0 1086094467
## 16620 105 4643 2.5 1088058223
## 16621 105 4654 3.0 1086094100
## 16622 105 4673 2.5 1085639782
## 16623 105 4679 4.0 1086094125
## 16624 105 4681 3.5 1085582146
## 16625 105 4719 3.5 1086274529
## 16626 105 4772 4.0 1086275259
## 16627 105 4776 3.0 1086272790
## 16628 105 4837 3.5 1085581236
## 16629 105 4855 3.5 1086272598
## 16630 105 4878 3.0 1086272410
## 16631 105 4896 3.0 1085581244
## 16632 105 4901 3.0 1101115611
## 16633 105 4958 3.0 1085582137
## 16634 105 4963 3.0 1086093708
## 16635 105 4979 3.5 1085582061
## 16636 105 4993 5.0 1085574372
## 16637 105 4995 2.5 1199438959
## 16638 105 5003 3.0 1086093682
## 16639 105 5013 3.0 1088058214
## 16640 105 5026 4.0 1085582071
## 16641 105 5049 4.0 1085580155
## 16642 105 5060 4.0 1100534081
## 16643 105 5180 3.0 1086094105
## 16644 105 5218 4.0 1085582076
## 16645 105 5299 3.0 1085574460
## 16646 105 5302 3.5 1085582030
## 16647 105 5308 2.0 1086274470
## 16648 105 5309 1.5 1088058733
## 16649 105 5334 3.5 1085641574
## 16650 105 5349 2.5 1101115415
## 16651 105 5377 4.0 1085574465
## 16652 105 5388 4.0 1085580133
## 16653 105 5400 2.5 1085582022
## 16654 105 5418 4.0 1085574443
## 16655 105 5419 1.5 1086094117
## 16656 105 5445 3.0 1085581212
## 16657 105 5447 4.0 1199439617
## 16658 105 5464 4.0 1086272549
## 16659 105 5630 3.0 1086094066
## 16660 105 5669 3.0 1100532042
## 16661 105 5693 4.0 1088058740
## 16662 105 5747 3.5 1100532177
## 16663 105 5816 3.0 1086101995
## 16664 105 5867 3.5 1101125659
## 16665 105 5878 3.5 1085581939
## 16666 105 5900 3.0 1085641448
## 16667 105 5902 3.5 1086093675
## 16668 105 5940 4.0 1085641421
## 16669 105 5945 3.5 1100606244
## 16670 105 5952 5.0 1085579003
## 16671 105 5954 3.5 1086272571
## 16672 105 5959 4.0 1085579117
## 16673 105 5989 3.5 1101125697
## 16674 105 6016 5.0 1100530925
## 16675 105 6104 2.5 1086272492
## 16676 105 6125 4.0 1100532053
## 16677 105 6188 3.5 1100605991
## 16678 105 6218 3.5 1088058706
## 16679 105 6238 3.0 1086094075
## 16680 105 6291 3.0 1085581170
## 16681 105 6344 3.5 1085581157
## 16682 105 6365 3.0 1199438599
## 16683 105 6377 3.0 1086272603
## 16684 105 6378 2.0 1199439214
## 16685 105 6502 3.5 1100532089
## 16686 105 6539 3.0 1086094656
## 16687 105 6595 2.5 1085580015
## 16688 105 6659 4.0 1085581903
## 16689 105 6711 4.0 1100532215
## 16690 105 6774 3.0 1086094360
## 16691 105 6787 3.5 1100532118
## 16692 105 6796 3.0 1085581870
## 16693 105 6807 4.0 1085579346
## 16694 105 6870 3.5 1100532019
## 16695 105 6874 4.0 1100531989
## 16696 105 6898 4.0 1101115431
## 16697 105 6989 4.0 1086094632
## 16698 105 6997 3.0 1100606302
## 16699 105 7005 2.0 1086094349
## 16700 105 7017 2.5 1088059177
## 16701 105 7034 4.0 1085580911
## 16702 105 7060 2.5 1086093699
## 16703 105 7104 3.0 1085579207
## 16704 105 7143 4.0 1100531114
## 16705 105 7149 3.5 1100606316
## 16706 105 7153 5.0 1086272392
## 16707 105 7193 3.5 1086093623
## 16708 105 7272 2.5 1085581780
## 16709 105 7438 4.0 1100531941
## 16710 105 7802 3.5 1086272341
## 16711 105 7836 3.0 1086272346
## 16712 105 8042 3.5 1101125893
## 16713 105 8228 3.5 1086272329
## 16714 105 8798 4.0 1199439320
## 16715 105 8874 3.5 1199439249
## 16716 105 8949 4.0 1199439187
## 16717 105 32587 4.5 1199438786
## 16718 105 33166 4.0 1199439242
## 16719 105 34162 3.5 1199439144
## 16720 105 34542 4.5 1199439476
## 16721 105 41569 2.5 1199439080
## 16722 105 44195 4.0 1199439192
## 16723 105 48304 4.5 1199439376
## 16724 105 48385 3.5 1199438665
## 16725 105 48516 3.0 1199438842
## 16726 105 51255 1.5 1199439007
## 16727 106 1 4.0 1215818369
## 16728 106 551 3.0 1215820041
## 16729 106 837 5.0 1215760082
## 16730 106 1246 5.0 1215923111
## 16731 106 1721 4.5 1215818307
## 16732 106 1968 4.5 1215819684
## 16733 106 1992 4.0 1215760993
## 16734 106 2052 3.0 1215760658
## 16735 106 2145 3.5 1215759985
## 16736 106 2174 4.5 1215819696
## 16737 106 2279 3.5 1215760493
## 16738 106 2395 5.0 1215818606
## 16739 106 2672 3.0 1215760243
## 16740 106 2762 3.5 1215818358
## 16741 106 2804 4.5 1215761648
## 16742 106 3210 4.0 1215759966
## 16743 106 3786 5.0 1215818780
## 16744 106 4040 2.5 1215760669
## 16745 106 4306 4.0 1215818300
## 16746 106 4886 4.0 1215818347
## 16747 106 5296 2.5 1215761066
## 16748 106 5422 4.5 1215761551
## 16749 106 6377 4.5 1215818402
## 16750 106 7161 2.0 1215761101
## 16751 106 7773 5.0 1236572531
## 16752 106 8360 3.5 1215818302
## 16753 106 8366 5.0 1215818597
## 16754 106 8641 4.0 1215760422
## 16755 106 8961 3.0 1215818385
## 16756 106 39408 0.5 1215818472
## 16757 106 39416 5.0 1215818584
## 16758 106 43919 1.0 1215818522
## 16759 106 44731 4.0 1215819614
## 16760 106 45431 3.0 1215760972
## 16761 106 46976 0.5 1215819552
## 16762 106 48394 5.0 1215818377
## 16763 106 51086 4.5 1215761312
## 16764 106 53996 4.0 1231299100
## 16765 106 54281 5.0 1215818691
## 16766 106 56367 3.5 1215818396
## 16767 106 57368 4.0 1215819568
## 16768 106 58559 5.0 1216958340
## 16769 106 59306 4.0 1215818489
## 16770 106 59315 5.0 1215761098
## 16771 106 60069 5.0 1215761519
## 16772 107 293 3.0 1446493028
## 16773 107 296 5.0 1446493021
## 16774 107 527 5.0 1446493024
## 16775 107 2605 3.0 1446493238
## 16776 107 2701 0.5 1446493194
## 16777 107 2805 2.0 1446493350
## 16778 107 2959 4.5 1446493013
## 16779 107 3005 3.5 1446493296
## 16780 107 3082 1.5 1446493230
## 16781 107 3160 3.5 1446493183
## 16782 107 3176 3.5 1446493152
## 16783 107 3300 3.5 1446493281
## 16784 107 3409 0.5 1446493334
## 16785 107 3755 1.5 1446493198
## 16786 107 3785 0.5 1446493222
## 16787 107 4239 2.0 1446493286
## 16788 107 4344 2.0 1446493319
## 16789 107 4370 3.0 1446493190
## 16790 107 4447 0.5 1446493216
## 16791 107 4718 1.5 1446493250
## 16792 107 4816 0.5 1446493273
## 16793 107 4874 4.0 1446493306
## 16794 107 5502 3.5 1446493203
## 16795 107 5669 4.0 1446493178
## 16796 107 5995 4.5 1446493188
## 16797 107 6016 4.5 1446493019
## 16798 107 6377 4.0 1446493039
## 16799 107 6502 1.5 1446493170
## 16800 107 6874 4.0 1446493044
## 16801 107 7361 4.0 1446493042
## 16802 107 109487 4.0 1446493059
## 16803 107 115713 3.0 1446493062
## 16804 108 10 4.0 843302067
## 16805 108 34 3.0 843302154
## 16806 108 47 2.0 843302154
## 16807 108 110 3.0 843302110
## 16808 108 153 3.0 843301948
## 16809 108 161 3.0 843302067
## 16810 108 185 3.0 843302067
## 16811 108 208 4.0 843302111
## 16812 108 225 3.0 843302196
## 16813 108 231 2.0 843301990
## 16814 108 253 3.0 843302067
## 16815 108 288 3.0 843302110
## 16816 108 296 3.0 843301884
## 16817 108 329 5.0 843301990
## 16818 108 339 3.0 843302111
## 16819 108 344 1.0 843301948
## 16820 108 356 4.0 843302026
## 16821 108 364 5.0 843302154
## 16822 108 367 3.0 843302154
## 16823 108 377 4.0 843302196
## 16824 108 380 3.0 843301884
## 16825 108 434 3.0 843302026
## 16826 108 454 3.0 843302111
## 16827 108 457 4.0 843301990
## 16828 108 480 4.0 843302067
## 16829 108 500 5.0 843302196
## 16830 108 588 5.0 843301948
## 16831 108 589 3.0 843302154
## 16832 108 590 3.0 843301884
## 16833 108 593 5.0 843301990
## 16834 108 595 5.0 843301990
## 16835 109 16 3.5 1153229790
## 16836 109 47 5.0 1153862175
## 16837 109 296 4.5 1153862055
## 16838 109 318 5.0 1153862063
## 16839 109 442 2.5 1153229745
## 16840 109 509 4.5 1153229750
## 16841 109 543 4.5 1153229872
## 16842 109 553 4.5 1153229795
## 16843 109 592 4.0 1153862071
## 16844 109 593 5.0 1153862058
## 16845 109 648 4.0 1153862117
## 16846 109 784 4.0 1153229824
## 16847 109 1101 4.5 1153229777
## 16848 109 1213 4.5 1153229724
## 16849 109 1917 4.0 1153229766
## 16850 109 2268 4.0 1153229838
## 16851 109 2640 4.5 1153229817
## 16852 109 2683 2.5 1153229716
## 16853 109 3052 4.0 1153229865
## 16854 109 3793 3.5 1153229759
## 16855 109 4993 4.0 1153229733
## 16856 109 5445 4.0 1153229813
## 16857 109 6953 4.0 1156107879
## 16858 110 3 4.0 840101142
## 16859 110 5 4.0 840100796
## 16860 110 6 4.0 840100719
## 16861 110 7 4.0 840100994
## 16862 110 9 5.0 840101320
## 16863 110 10 4.0 840100456
## 16864 110 11 5.0 840100602
## 16865 110 16 4.0 840100745
## 16866 110 19 4.0 840100515
## 16867 110 23 5.0 840100893
## 16868 110 31 4.0 840100695
## 16869 110 32 3.0 840100546
## 16870 110 34 3.0 840100501
## 16871 110 39 5.0 840100529
## 16872 110 45 5.0 840100781
## 16873 110 47 3.0 840100501
## 16874 110 79 1.0 840101128
## 16875 110 95 5.0 840100644
## 16876 110 122 4.0 840100908
## 16877 110 132 4.0 840101305
## 16878 110 135 4.0 840101394
## 16879 110 150 5.0 840100361
## 16880 110 153 3.0 840100386
## 16881 110 160 3.0 840100546
## 16882 110 161 4.0 840100438
## 16883 110 163 5.0 840100745
## 16884 110 165 5.0 840100386
## 16885 110 168 4.0 840100672
## 16886 110 173 3.0 840100585
## 16887 110 179 5.0 840101468
## 16888 110 185 4.0 840100456
## 16889 110 186 4.0 840100631
## 16890 110 193 5.0 840100695
## 16891 110 204 4.0 840100644
## 16892 110 207 5.0 840100808
## 16893 110 208 4.0 840100456
## 16894 110 225 4.0 840100515
## 16895 110 227 4.0 840100758
## 16896 110 231 5.0 840100416
## 16897 110 236 4.0 840100602
## 16898 110 237 4.0 840100719
## 16899 110 248 4.0 840100881
## 16900 110 249 3.0 840100893
## 16901 110 252 4.0 840100614
## 16902 110 253 3.0 840100456
## 16903 110 256 4.0 840100656
## 16904 110 257 4.0 840100836
## 16905 110 260 4.0 840100976
## 16906 110 266 3.0 840100546
## 16907 110 276 4.0 840100731
## 16908 110 280 4.0 840100808
## 16909 110 282 4.0 840100602
## 16910 110 292 4.0 840100438
## 16911 110 296 5.0 840100361
## 16912 110 303 3.0 840100821
## 16913 110 305 4.0 840100836
## 16914 110 315 5.0 840100585
## 16915 110 318 3.0 840100439
## 16916 110 327 3.0 840100821
## 16917 110 329 4.0 840100416
## 16918 110 339 5.0 840100456
## 16919 110 344 4.0 840100386
## 16920 110 345 2.0 840100921
## 16921 110 349 5.0 840100386
## 16922 110 350 4.0 840100602
## 16923 110 356 4.0 840100475
## 16924 110 357 4.0 840100585
## 16925 110 364 3.0 840100501
## 16926 110 367 4.0 840100515
## 16927 110 368 4.0 840101167
## 16928 110 370 5.0 840100745
## 16929 110 374 4.0 840101494
## 16930 110 377 5.0 840100515
## 16931 110 378 5.0 840101150
## 16932 110 380 5.0 840100361
## 16933 110 381 4.0 840100796
## 16934 110 413 4.0 840100796
## 16935 110 415 3.0 840100946
## 16936 110 420 4.0 840100529
## 16937 110 434 5.0 840100438
## 16938 110 445 5.0 840101191
## 16939 110 454 4.0 840100501
## 16940 110 457 5.0 840100438
## 16941 110 464 4.0 840101508
## 16942 110 466 5.0 840100758
## 16943 110 474 5.0 840100656
## 16944 110 480 5.0 840100475
## 16945 110 485 4.0 840100731
## 16946 110 489 4.0 840101294
## 16947 110 494 5.0 840100958
## 16948 110 500 4.0 840100546
## 16949 110 508 4.0 840100672
## 16950 110 519 3.0 840100994
## 16951 110 520 5.0 840100769
## 16952 110 527 4.0 840100559
## 16953 110 532 3.0 840100921
## 16954 110 539 5.0 840100585
## 16955 110 540 5.0 840100881
## 16956 110 542 4.0 840101142
## 16957 110 548 5.0 840101207
## 16958 110 550 4.0 840101099
## 16959 110 552 4.0 840100758
## 16960 110 586 5.0 840100559
## 16961 110 587 5.0 840100559
## 16962 110 588 4.0 840100386
## 16963 110 589 5.0 840100515
## 16964 110 590 4.0 840100360
## 16965 110 592 4.0 840100360
## 16966 110 593 5.0 840100416
## 16967 110 595 3.0 840100416
## 16968 110 597 5.0 840100559
## 16969 110 648 4.0 840100719
## 16970 110 719 5.0 840101225
## 16971 110 733 5.0 840100851
## 16972 110 736 3.0 840100695
## 16973 110 761 4.0 840101368
## 16974 110 762 5.0 840101207
## 16975 110 780 5.0 840100851
## 16976 110 786 5.0 840101099
## 16977 110 802 4.0 840101284
## 16978 111 5 3.0 1097430540
## 16979 111 7 3.5 1097429457
## 16980 111 10 3.5 1097432318
## 16981 111 11 4.0 1097432404
## 16982 111 18 2.5 1098045013
## 16983 111 25 4.0 1097430903
## 16984 111 31 3.5 1097429230
## 16985 111 32 3.5 1097429750
## 16986 111 39 4.5 1097432363
## 16987 111 45 1.0 1097429193
## 16988 111 47 4.0 1097431427
## 16989 111 50 4.0 1097432297
## 16990 111 81 3.0 1097431144
## 16991 111 95 3.0 1097430874
## 16992 111 105 0.5 1097429180
## 16993 111 110 4.0 1097429291
## 16994 111 122 3.5 1097514612
## 16995 111 141 3.5 1097432358
## 16996 111 150 4.0 1098045292
## 16997 111 161 4.0 1097430893
## 16998 111 185 3.0 1097432346
## 16999 111 216 2.5 1097431678
## 17000 111 223 4.0 1097432413
## 17001 111 224 5.0 1098373536
## 17002 111 231 0.5 1097431412
## 17003 111 253 3.5 1097430507
## 17004 111 260 4.0 1097429700
## 17005 111 292 3.5 1097432320
## 17006 111 296 4.5 1097429606
## 17007 111 300 3.5 1097432375
## 17008 111 318 4.0 1097429677
## 17009 111 327 3.0 1097514606
## 17010 111 339 4.0 1097432349
## 17011 111 344 3.0 1097430518
## 17012 111 345 2.0 1097429176
## 17013 111 353 3.0 1097514380
## 17014 111 356 3.5 1097429651
## 17015 111 364 3.5 1098045314
## 17016 111 367 2.0 1097432326
## 17017 111 368 4.5 1097432453
## 17018 111 372 3.5 1097431682
## 17019 111 377 3.5 1097429767
## 17020 111 380 4.5 1097429708
## 17021 111 440 4.0 1097432399
## 17022 111 454 2.5 1097432334
## 17023 111 457 4.0 1097429686
## 17024 111 480 3.5 1097429669
## 17025 111 497 4.0 1097431077
## 17026 111 508 3.5 1097430883
## 17027 111 527 4.0 1097429740
## 17028 111 539 3.0 1097432336
## 17029 111 541 3.5 1097430881
## 17030 111 542 3.5 1098044819
## 17031 111 551 1.0 1097430889
## 17032 111 552 3.5 1097429406
## 17033 111 586 3.0 1097432380
## 17034 111 587 1.5 1097432330
## 17035 111 588 2.5 1097429297
## 17036 111 589 4.5 1097429719
## 17037 111 592 4.0 1097429732
## 17038 111 593 4.0 1097429638
## 17039 111 595 3.0 1097432294
## 17040 111 597 3.0 1097430856
## 17041 111 608 5.0 1097429759
## 17042 111 647 2.5 1097429228
## 17043 111 648 3.5 1097432291
## 17044 111 708 4.0 1097429411
## 17045 111 733 3.5 1097432312
## 17046 111 778 4.0 1097431399
## 17047 111 783 1.5 1097429183
## 17048 111 800 4.0 1097514629
## 17049 111 802 2.5 1097429387
## 17050 111 839 4.0 1097431115
## 17051 111 851 3.0 1097514893
## 17052 111 852 3.5 1097429385
## 17053 111 920 4.0 1097430847
## 17054 111 932 5.0 1097431310
## 17055 111 1013 4.5 1098044811
## 17056 111 1022 4.0 1098044804
## 17057 111 1036 4.0 1098374024
## 17058 111 1047 3.0 1097429251
## 17059 111 1073 4.5 1097432352
## 17060 111 1080 3.5 1097429373
## 17061 111 1088 3.5 1097431651
## 17062 111 1089 4.0 1097429390
## 17063 111 1101 4.0 1097429367
## 17064 111 1104 3.0 1097431125
## 17065 111 1127 4.0 1097429377
## 17066 111 1136 4.0 1097430860
## 17067 111 1183 2.5 1097432456
## 17068 111 1196 4.5 1097432302
## 17069 111 1197 4.5 1097432365
## 17070 111 1198 4.5 1097432308
## 17071 111 1210 4.0 1097429301
## 17072 111 1220 4.5 1097438364
## 17073 111 1231 4.0 1098373619
## 17074 111 1234 3.5 1097429355
## 17075 111 1240 4.5 1097432389
## 17076 111 1265 3.0 1097431418
## 17077 111 1270 4.5 1097430850
## 17078 111 1291 5.0 1097430510
## 17079 111 1297 4.0 1097431648
## 17080 111 1307 3.5 1097432420
## 17081 111 1333 3.0 1098044795
## 17082 111 1391 3.5 1097431623
## 17083 111 1393 3.5 1097431420
## 17084 111 1408 4.5 1097431081
## 17085 111 1460 4.0 1097431952
## 17086 111 1517 4.0 1097432482
## 17087 111 1527 3.0 1097432450
## 17088 111 1541 3.5 1098373835
## 17089 111 1544 1.5 1097431619
## 17090 111 1580 4.0 1097430678
## 17091 111 1584 3.5 1097429361
## 17092 111 1593 3.5 1097514793
## 17093 111 1608 3.0 1097431614
## 17094 111 1610 4.0 1098373983
## 17095 111 1617 4.0 1097430708
## 17096 111 1639 4.0 1097431610
## 17097 111 1648 3.5 1097514816
## 17098 111 1653 3.5 1097429351
## 17099 111 1658 4.0 1097514776
## 17100 111 1682 3.0 1098044660
## 17101 111 1688 4.0 1097514591
## 17102 111 1704 4.0 1097430685
## 17103 111 1721 1.5 1097429349
## 17104 111 1747 1.5 1097429237
## 17105 111 1760 2.5 1097431968
## 17106 111 1777 4.5 1097429222
## 17107 111 1784 1.0 1097430687
## 17108 111 1797 4.5 1097429836
## 17109 111 1799 3.5 1097431959
## 17110 111 1804 3.0 1098373801
## 17111 111 1863 3.0 1097432240
## 17112 111 1888 3.0 1097431606
## 17113 111 1912 3.5 1098374434
## 17114 111 1917 2.5 1097429293
## 17115 111 1921 2.5 1097431602
## 17116 111 1923 3.5 1097429320
## 17117 111 1943 3.5 1097430719
## 17118 111 1961 3.5 1098373990
## 17119 111 1967 4.0 1097514579
## 17120 111 1968 4.0 1097432441
## 17121 111 2014 3.5 1097514936
## 17122 111 2038 4.5 1097431289
## 17123 111 2046 3.5 1098374461
## 17124 111 2059 3.0 1098373776
## 17125 111 2081 2.5 1097429187
## 17126 111 2100 4.0 1098374452
## 17127 111 2106 3.5 1097514940
## 17128 111 2115 3.5 1098045265
## 17129 111 2125 3.5 1097431564
## 17130 111 2133 4.0 1097431098
## 17131 111 2134 3.5 1097431577
## 17132 111 2153 2.0 1097431941
## 17133 111 2174 4.0 1097431570
## 17134 111 2249 4.0 1097438356
## 17135 111 2252 2.5 1097514906
## 17136 111 2321 1.5 1097429203
## 17137 111 2324 4.0 1097429317
## 17138 111 2330 5.0 1097437092
## 17139 111 2380 3.0 1098373766
## 17140 111 2395 3.5 1098374417
## 17141 111 2396 4.0 1097432382
## 17142 111 2432 3.5 1097514883
## 17143 111 2447 3.0 1097431925
## 17144 111 2470 3.5 1098373592
## 17145 111 2478 4.0 1097431568
## 17146 111 2502 4.5 1097438248
## 17147 111 2541 4.0 1098044728
## 17148 111 2558 2.5 1098373755
## 17149 111 2563 4.5 1098373745
## 17150 111 2571 5.0 1097430682
## 17151 111 2572 4.5 1097430545
## 17152 111 2594 1.5 1097431911
## 17153 111 2598 4.0 1097431549
## 17154 111 2599 4.5 1098374393
## 17155 111 2605 2.5 1098044731
## 17156 111 2616 3.0 1098044735
## 17157 111 2628 2.5 1097432395
## 17158 111 2657 4.5 1097431559
## 17159 111 2671 3.5 1098374402
## 17160 111 2683 1.5 1097432489
## 17161 111 2692 5.0 1097431071
## 17162 111 2706 3.0 1097430705
## 17163 111 2712 1.0 1097429310
## 17164 111 2716 4.5 1097430655
## 17165 111 2723 3.5 1097431536
## 17166 111 2770 1.0 1097429213
## 17167 111 2791 4.0 1097514500
## 17168 111 2797 4.0 1098374372
## 17169 111 2846 4.5 1098735274
## 17170 111 2858 4.0 1097432316
## 17171 111 2877 3.5 1097514822
## 17172 111 2890 3.5 1097431519
## 17173 111 2916 4.0 1097430665
## 17174 111 2918 4.5 1098735255
## 17175 111 2953 3.0 1097431523
## 17176 111 2959 5.0 1097429287
## 17177 111 2997 3.0 1097432427
## 17178 111 3004 3.0 1097431882
## 17179 111 3006 4.5 1098374376
## 17180 111 3033 5.0 1097429547
## 17181 111 3060 4.0 1098044718
## 17182 111 3087 4.5 1098374343
## 17183 111 3098 4.0 1098374355
## 17184 111 3114 3.5 1098374333
## 17185 111 3160 0.5 1097429253
## 17186 111 3173 3.5 1098044715
## 17187 111 3210 3.0 1097429526
## 17188 111 3247 3.5 1097429513
## 17189 111 3252 3.0 1098373553
## 17190 111 3253 4.5 1097429219
## 17191 111 3254 4.0 1098373508
## 17192 111 3255 4.5 1097431096
## 17193 111 3257 1.0 1097429530
## 17194 111 3261 3.5 1097429519
## 17195 111 3270 4.0 1097432224
## 17196 111 3273 2.5 1098374329
## 17197 111 3298 2.5 1098374337
## 17198 111 3317 3.5 1097431498
## 17199 111 3360 4.0 1097438321
## 17200 111 3361 4.0 1097431509
## 17201 111 3418 3.5 1097429206
## 17202 111 3421 4.0 1098374307
## 17203 111 3448 3.5 1097429533
## 17204 111 3476 4.5 1097429539
## 17205 111 3481 3.5 1097431490
## 17206 111 3526 3.5 1097429535
## 17207 111 3534 1.0 1097429517
## 17208 111 3578 3.5 1097432437
## 17209 111 3608 3.5 1098374299
## 17210 111 3698 3.5 1098373571
## 17211 111 3712 3.5 1097514909
## 17212 111 3753 2.0 1098374296
## 17213 111 3783 4.5 1097514745
## 17214 111 3791 4.0 1097514650
## 17215 111 3825 3.5 1097431843
## 17216 111 3835 2.5 1098045068
## 17217 111 3852 3.5 1097514767
## 17218 111 3882 4.5 1097431838
## 17219 111 3893 3.0 1097431503
## 17220 111 3897 3.5 1097431493
## 17221 111 3911 3.5 1098374191
## 17222 111 3915 4.5 1099603600
## 17223 111 3948 4.0 1098044690
## 17224 111 3967 3.5 1098374196
## 17225 111 3968 2.5 1097514553
## 17226 111 3994 0.5 1097431467
## 17227 111 4011 4.5 1098374209
## 17228 111 4014 4.5 1098374184
## 17229 111 4017 3.5 1097514787
## 17230 111 4027 5.0 1097430515
## 17231 111 4034 4.0 1097429322
## 17232 111 4052 2.5 1097514663
## 17233 111 4121 3.5 1098044698
## 17234 111 4130 3.0 1097432186
## 17235 111 4132 2.5 1097514666
## 17236 111 4161 4.0 1098374183
## 17237 111 4219 4.0 1097431364
## 17238 111 4221 4.0 1097438330
## 17239 111 4226 4.5 1097429324
## 17240 111 4228 3.5 1097431823
## 17241 111 4231 4.0 1098373713
## 17242 111 4246 4.5 1097429490
## 17243 111 4299 3.5 1098044693
## 17244 111 4304 3.5 1097436698
## 17245 111 4308 4.0 1098374167
## 17246 111 4310 2.5 1098374158
## 17247 111 4321 3.5 1097431477
## 17248 111 4322 4.5 1097431827
## 17249 111 4344 2.5 1097514531
## 17250 111 4351 3.5 1097431817
## 17251 111 4357 5.0 1097430670
## 17252 111 4367 2.5 1098374154
## 17253 111 4447 5.0 1097429482
## 17254 111 4545 3.5 1097431810
## 17255 111 4600 4.0 1097432158
## 17256 111 4623 4.0 1097432234
## 17257 111 4677 4.5 1097514916
## 17258 111 4700 3.0 1097514898
## 17259 111 4734 2.5 1097431464
## 17260 111 4757 3.5 1097514657
## 17261 111 4776 2.0 1098374142
## 17262 111 4816 4.0 1097514550
## 17263 111 4823 3.0 1097431797
## 17264 111 4844 3.0 1097514862
## 17265 111 4901 5.0 1098374109
## 17266 111 4954 2.5 1098045051
## 17267 111 4963 4.5 1097429464
## 17268 111 4973 5.0 1098374097
## 17269 111 4975 1.5 1097431446
## 17270 111 4979 4.0 1097429466
## 17271 111 4980 1.5 1097430574
## 17272 111 4992 3.0 1097514874
## 17273 111 4993 4.0 1098374083
## 17274 111 5013 4.0 1098374091
## 17275 111 5055 4.0 1097430563
## 17276 111 5255 3.0 1097432135
## 17277 111 5283 3.5 1098045039
## 17278 111 5308 3.5 1097514754
## 17279 111 5349 4.0 1097430966
## 17280 111 5377 4.0 1097430970
## 17281 111 5418 3.5 1098045419
## 17282 111 5438 3.5 1097432127
## 17283 111 5481 3.0 1097432492
## 17284 111 5505 4.0 1097514913
## 17285 111 5524 4.0 1097432212
## 17286 111 5528 4.0 1097437328
## 17287 111 5620 4.0 1097514837
## 17288 111 5673 4.0 1098044666
## 17289 111 5816 3.0 1098373561
## 17290 111 5829 3.0 1097514681
## 17291 111 5902 1.5 1097429446
## 17292 111 5952 4.5 1098374060
## 17293 111 5957 3.0 1098045033
## 17294 111 5961 3.0 1097436615
## 17295 111 5991 3.5 1097429453
## 17296 111 6183 4.0 1097432112
## 17297 111 6299 4.0 1097436714
## 17298 111 6375 4.5 1097436630
## 17299 111 6377 3.5 1098374066
## 17300 111 6378 4.0 1098044670
## 17301 111 6480 4.5 1097438343
## 17302 111 6502 4.0 1097431764
## 17303 111 6537 2.0 1098044676
## 17304 111 6638 3.5 1097432077
## 17305 111 6744 3.0 1097432100
## 17306 111 6811 4.0 1097432268
## 17307 111 6850 3.0 1097432064
## 17308 111 6942 4.0 1097431710
## 17309 111 6974 4.0 1097432048
## 17310 111 7101 3.5 1097432030
## 17311 111 7153 4.5 1098374038
## 17312 111 7255 3.0 1097437389
## 17313 111 7256 4.5 1097436667
## 17314 111 7451 4.5 1099937091
## 17315 111 8366 4.5 1099603580
## 17316 111 8493 4.0 1097432008
## 17317 111 8622 4.0 1099937080
## 17318 111 8709 3.0 1097432018
## 17319 112 1 5.0 852720865
## 17320 112 3 5.0 852720897
## 17321 112 6 3.0 852720897
## 17322 112 18 3.0 852720984
## 17323 112 32 3.0 852720865
## 17324 112 41 5.0 852720950
## 17325 112 85 5.0 852721004
## 17326 112 95 3.0 852720866
## 17327 112 141 4.0 852720866
## 17328 112 296 5.0 852721145
## 17329 112 376 5.0 852720897
## 17330 112 648 2.0 852720866
## 17331 112 708 5.0 852720915
## 17332 112 733 4.0 852720897
## 17333 112 736 1.0 852720866
## 17334 112 780 4.0 852720865
## 17335 112 802 4.0 852720950
## 17336 112 805 5.0 852720950
## 17337 112 1073 5.0 852720915
## 17338 112 1183 4.0 852721058
## 17339 112 1356 5.0 852720950
## 17340 113 2 5.0 844884330
## 17341 113 4 3.0 844884590
## 17342 113 5 5.0 844884467
## 17343 113 6 4.0 844884390
## 17344 113 8 5.0 844885084
## 17345 113 9 4.0 844884734
## 17346 113 10 3.0 844884266
## 17347 113 16 5.0 844884467
## 17348 113 20 5.0 844884632
## 17349 113 21 5.0 844884266
## 17350 113 24 5.0 844884632
## 17351 113 25 4.0 844884390
## 17352 113 36 4.0 844884390
## 17353 113 65 4.0 844884932
## 17354 113 74 5.0 844885045
## 17355 113 79 5.0 844884793
## 17356 113 89 4.0 844884932
## 17357 113 104 5.0 844884632
## 17358 113 105 5.0 844884467
## 17359 113 135 5.0 844884853
## 17360 113 140 5.0 844884853
## 17361 113 494 5.0 844884528
## 17362 113 616 5.0 844884528
## 17363 113 637 5.0 844884932
## 17364 113 647 5.0 844885044
## 17365 113 711 5.0 844885206
## 17366 113 762 5.0 844884932
## 17367 114 10 4.0 838365857
## 17368 114 34 5.0 838365827
## 17369 114 153 3.0 838365897
## 17370 114 158 4.0 838365765
## 17371 114 165 3.0 838365897
## 17372 114 185 4.0 838365857
## 17373 114 208 4.0 838365857
## 17374 114 253 3.0 838365857
## 17375 114 267 1.0 838365737
## 17376 114 288 3.0 838365840
## 17377 114 292 4.0 838365867
## 17378 114 333 5.0 838365737
## 17379 114 339 4.0 838365857
## 17380 114 349 5.0 838365897
## 17381 114 356 5.0 838365840
## 17382 114 364 5.0 838365827
## 17383 114 380 5.0 838365907
## 17384 114 434 5.0 838365867
## 17385 114 457 5.0 838365867
## 17386 114 586 5.0 838365827
## 17387 114 588 5.0 838365897
## 17388 114 590 4.0 838365907
## 17389 114 592 3.0 838365907
## 17390 114 593 3.0 838365867
## 17391 114 595 5.0 838365878
## 17392 115 2 5.0 1107034391
## 17393 115 3 5.0 1107034474
## 17394 115 19 4.0 1107034440
## 17395 115 45 3.5 1107034126
## 17396 115 160 2.0 1107034459
## 17397 115 231 4.5 1107034320
## 17398 115 318 5.0 1107034264
## 17399 115 342 3.0 1107034092
## 17400 115 466 3.0 1107034046
## 17401 115 480 5.0 1107034257
## 17402 115 520 4.0 1107034112
## 17403 115 543 3.5 1107034097
## 17404 115 608 5.0 1107034287
## 17405 115 784 2.5 1107034038
## 17406 115 1073 5.0 1107034335
## 17407 115 1089 3.5 1107034454
## 17408 115 1148 4.5 1107034130
## 17409 115 1197 4.5 1107034342
## 17410 115 1259 4.0 1107034443
## 17411 115 1265 5.0 1107034360
## 17412 115 1270 5.0 1107034308
## 17413 115 1278 4.0 1107034056
## 17414 115 1288 4.0 1107034052
## 17415 115 1500 3.0 1107034043
## 17416 115 1639 3.5 1107034088
## 17417 115 1704 4.0 1107034404
## 17418 115 1732 5.0 1107034158
## 17419 115 1923 3.5 1107034448
## 17420 115 2001 3.5 1107034119
## 17421 115 2502 5.0 1107034121
## 17422 115 2683 4.5 1107034409
## 17423 115 2706 4.0 1107034471
## 17424 115 2762 4.0 1107034350
## 17425 115 2959 4.0 1107034465
## 17426 115 2997 4.5 1107034393
## 17427 115 3176 4.5 1107034109
## 17428 115 3578 4.5 1107034401
## 17429 115 3751 3.0 1107034074
## 17430 115 3897 3.5 1107034071
## 17431 115 4027 5.0 1107034105
## 17432 115 7361 5.0 1107034201
## 17433 116 47 5.0 1163454737
## 17434 116 153 1.5 1163454706
## 17435 116 231 5.0 1163454716
## 17436 116 260 5.0 1163454699
## 17437 116 296 5.0 1163454673
## 17438 116 316 4.0 1163454741
## 17439 116 318 4.5 1163454676
## 17440 116 356 4.5 1163454645
## 17441 116 367 2.5 1163454728
## 17442 116 434 2.5 1163454712
## 17443 116 480 2.0 1163454650
## 17444 116 593 3.0 1163454691
## 17445 116 733 4.0 1163454734
## 17446 116 1573 5.0 1163454719
## 17447 116 2571 4.0 1163454662
## 17448 116 2762 5.0 1163454695
## 17449 116 2858 3.0 1163454632
## 17450 116 2890 1.0 1163454748
## 17451 116 2959 2.0 1163454640
## 17452 116 4306 5.0 1163454681
## 17453 116 4993 5.0 1163454653
## 17454 116 5952 5.0 1163454658
## 17455 116 6539 4.0 1163454669
## 17456 116 7153 5.0 1163454656
## 17457 116 40414 5.0 1163454931
## 17458 117 215 3.5 1320638323
## 17459 117 281 4.0 1320640472
## 17460 117 318 5.0 1320636964
## 17461 117 524 4.0 1320634639
## 17462 117 527 3.5 1320638237
## 17463 117 539 5.0 1320636576
## 17464 117 1124 4.5 1320639869
## 17465 117 1185 3.0 1320634780
## 17466 117 1188 2.5 1320634699
## 17467 117 1235 2.5 1320634623
## 17468 117 1271 4.5 1320637156
## 17469 117 1307 4.5 1320639878
## 17470 117 1347 0.5 1320634657
## 17471 117 1674 5.0 1320637063
## 17472 117 1704 4.5 1320639090
## 17473 117 1831 0.5 1320634669
## 17474 117 1835 4.0 1320634819
## 17475 117 1957 3.0 1320634724
## 17476 117 1958 4.0 1320634810
## 17477 117 1961 3.0 1320638154
## 17478 117 2236 4.0 1320638938
## 17479 117 2324 4.0 1320638280
## 17480 117 2686 3.0 1320640136
## 17481 117 2719 0.5 1320634828
## 17482 117 2739 5.0 1320636860
## 17483 117 2840 0.5 1320634835
## 17484 117 3107 2.0 1320634634
## 17485 117 3147 5.0 1320636937
## 17486 117 3363 3.5 1320634680
## 17487 117 3504 3.0 1320634856
## 17488 117 3512 5.0 1320636888
## 17489 117 3565 4.0 1320638959
## 17490 117 3969 4.5 1320638669
## 17491 117 4361 4.0 1320634616
## 17492 117 4564 4.5 1320637425
## 17493 117 8638 4.0 1320638358
## 17494 117 8949 4.0 1320637606
## 17495 117 30707 5.0 1320636770
## 17496 117 43396 3.5 1320637335
## 17497 117 47099 4.5 1320637244
## 17498 117 47148 4.5 1320636826
## 17499 117 50685 4.0 1320640798
## 17500 117 53123 5.0 1320636446
## 17501 117 56587 5.0 1320636687
## 17502 117 59018 5.0 1320636732
## 17503 117 64614 3.5 1320639535
## 17504 117 64716 3.5 1320637031
## 17505 117 66371 4.5 1320636632
## 17506 117 72011 4.5 1320637937
## 17507 117 73023 4.0 1320640384
## 17508 117 81845 4.0 1320638004
## 17509 117 82527 4.5 1320637762
## 17510 117 85881 4.0 1320637732
## 17511 117 88810 4.5 1320637502
## 17512 117 89804 5.0 1320637871
## 17513 118 16 4.0 951009481
## 17514 118 32 4.0 951008797
## 17515 118 36 4.0 950154206
## 17516 118 47 4.0 951009525
## 17517 118 50 5.0 951009296
## 17518 118 111 4.0 951009296
## 17519 118 247 2.0 951009429
## 17520 118 260 5.0 951008797
## 17521 118 296 5.0 950154177
## 17522 118 329 4.0 951009067
## 17523 118 377 4.0 951009525
## 17524 118 457 5.0 951009370
## 17525 118 474 4.0 951009429
## 17526 118 480 4.0 951008941
## 17527 118 527 5.0 950154206
## 17528 118 541 4.0 951008797
## 17529 118 589 5.0 951008828
## 17530 118 593 5.0 951009296
## 17531 118 597 3.0 951009851
## 17532 118 608 5.0 950154138
## 17533 118 674 2.0 951009005
## 17534 118 750 5.0 951008797
## 17535 118 780 4.0 951009097
## 17536 118 832 4.0 951009585
## 17537 118 866 5.0 951009481
## 17538 118 903 4.0 951009322
## 17539 118 904 5.0 951009296
## 17540 118 905 5.0 951009676
## 17541 118 908 5.0 951009296
## 17542 118 913 4.0 958531282
## 17543 118 922 5.0 950153928
## 17544 118 924 5.0 951008798
## 17545 118 930 4.0 951009322
## 17546 118 954 4.0 958531282
## 17547 118 965 3.0 951009349
## 17548 118 1019 4.0 951008941
## 17549 118 1036 4.0 951009397
## 17550 118 1086 3.0 951009429
## 17551 118 1089 4.0 951009349
## 17552 118 1127 4.0 951009005
## 17553 118 1129 3.0 951009005
## 17554 118 1196 5.0 951008828
## 17555 118 1199 4.0 951008798
## 17556 118 1200 5.0 951008883
## 17557 118 1206 4.0 951008828
## 17558 118 1210 3.0 950153947
## 17559 118 1212 4.0 951009322
## 17560 118 1213 5.0 950154138
## 17561 118 1214 5.0 951008798
## 17562 118 1219 5.0 951009349
## 17563 118 1221 5.0 950153998
## 17564 118 1227 4.0 951009429
## 17565 118 1233 5.0 950154138
## 17566 118 1238 5.0 951009750
## 17567 118 1240 5.0 951008828
## 17568 118 1249 4.0 951009397
## 17569 118 1252 5.0 951009296
## 17570 118 1260 4.0 951009322
## 17571 118 1264 4.0 951009397
## 17572 118 1267 4.0 951009296
## 17573 118 1269 3.0 951009429
## 17574 118 1270 5.0 951008828
## 17575 118 1276 5.0 951009653
## 17576 118 1304 5.0 958531282
## 17577 118 1356 4.0 951009037
## 17578 118 1358 5.0 951009370
## 17579 118 1371 3.0 951009005
## 17580 118 1374 4.0 951008855
## 17581 118 1375 4.0 951008911
## 17582 118 1376 3.0 951008883
## 17583 118 1396 4.0 951009005
## 17584 118 1407 3.0 951009585
## 17585 118 1527 2.0 951008911
## 17586 118 1573 4.0 951008855
## 17587 118 1580 4.0 951008970
## 17588 118 1584 4.0 951008883
## 17589 118 1610 4.0 951009481
## 17590 118 1617 5.0 950153998
## 17591 118 1625 4.0 951009552
## 17592 118 1653 3.0 951008828
## 17593 118 1674 5.0 951009370
## 17594 118 1683 1.0 951009552
## 17595 118 1690 3.0 951009097
## 17596 118 1747 4.0 950153998
## 17597 118 1748 3.0 951009481
## 17598 118 1834 5.0 951009429
## 17599 118 1845 4.0 951009397
## 17600 118 1909 4.0 951009037
## 17601 118 1917 4.0 951009209
## 17602 118 1953 4.0 951009349
## 17603 118 1965 4.0 951008883
## 17604 118 1994 4.0 951009610
## 17605 118 2009 4.0 951009168
## 17606 118 2011 5.0 951009005
## 17607 118 2012 3.0 951009067
## 17608 118 2021 1.0 951009097
## 17609 118 2028 5.0 950154206
## 17610 118 2034 3.0 951009097
## 17611 118 2054 4.0 951009148
## 17612 118 2064 5.0 951009676
## 17613 118 2094 4.0 951009148
## 17614 118 2110 4.0 951009611
## 17615 118 2117 3.0 951009067
## 17616 118 2118 3.0 951009481
## 17617 118 2139 3.0 950153928
## 17618 118 2160 3.0 951009397
## 17619 118 2176 4.0 951009585
## 17620 118 2178 4.0 951009585
## 17621 118 2186 5.0 951009370
## 17622 118 2203 4.0 951009296
## 17623 118 2243 5.0 950153998
## 17624 118 2278 4.0 951009585
## 17625 118 2288 4.0 951008911
## 17626 118 2311 4.0 951009037
## 17627 118 2324 5.0 951009653
## 17628 118 2344 5.0 951009552
## 17629 118 2346 3.0 951008941
## 17630 118 2349 4.0 951009429
## 17631 118 2353 4.0 951009525
## 17632 118 2391 5.0 951009451
## 17633 118 2393 3.0 951009067
## 17634 118 2407 4.0 951008911
## 17635 118 2435 3.0 951009826
## 17636 118 2450 1.0 951009209
## 17637 118 2455 4.0 951008970
## 17638 118 2528 3.0 951009005
## 17639 118 2529 5.0 951008941
## 17640 118 2533 3.0 951009097
## 17641 118 2571 3.0 951008855
## 17642 118 2613 3.0 951009148
## 17643 118 2628 3.0 951009037
## 17644 118 2640 4.0 951008970
## 17645 118 2641 3.0 951009005
## 17646 118 2668 3.0 951009230
## 17647 118 2692 5.0 950154314
## 17648 118 2722 3.0 951009168
## 17649 118 2762 5.0 958531282
## 17650 118 2804 5.0 951009676
## 17651 118 2819 4.0 951009349
## 17652 118 2871 5.0 951009322
## 17653 118 2916 4.0 951009552
## 17654 118 2917 5.0 951009429
## 17655 118 2968 4.0 951008855
## 17656 118 2985 4.0 951008941
## 17657 118 3006 5.0 958531282
## 17658 118 3033 2.0 951009097
## 17659 118 3101 4.0 951009451
## 17660 118 3147 4.0 951008705
## 17661 118 3148 5.0 964408725
## 17662 118 3152 5.0 950154314
## 17663 118 3173 4.0 951008705
## 17664 118 3176 4.0 951008668
## 17665 118 3178 4.0 951008726
## 17666 118 3196 4.0 950154314
## 17667 118 3198 5.0 950154314
## 17668 118 3200 5.0 950154314
## 17669 118 3203 4.0 951009504
## 17670 118 3204 4.0 951009481
## 17671 118 3252 4.0 950154104
## 17672 118 3256 4.0 951009504
## 17673 118 3350 5.0 958531355
## 17674 118 3371 4.0 958531252
## 17675 118 3543 4.0 958531252
## 17676 118 3578 5.0 964408657
## 17677 118 3615 4.0 964408657
## 17678 118 3717 3.0 964408657
## 17679 118 3724 4.0 964408813
## 17680 118 3725 3.0 964408796
## 17681 118 3727 4.0 964408961
## 17682 118 3730 5.0 964408874
## 17683 118 3732 3.0 964408894
## 17684 118 3734 3.0 964408994
## 17685 118 3735 5.0 964408994
## 17686 118 3738 3.0 964409017
## 17687 118 3740 2.0 964408796
## 17688 118 3742 5.0 964408796
## 17689 118 3755 5.0 964408657
## 17690 118 3760 3.0 964408911
## 17691 118 3763 4.0 964408874
## 17692 118 3769 4.0 964409017
## 17693 118 3789 4.0 964408994
## 17694 118 3801 4.0 964408796
## 17695 118 3806 3.0 964408938
## 17696 118 3810 3.0 964409039
## 17697 118 3811 5.0 964408813
## 17698 118 3812 4.0 964408874
## 17699 118 3814 3.0 964408938
## 17700 118 3816 4.0 964408961
## 17701 118 6184 3.0 964408938
## 17702 119 1 2.0 913048158
## 17703 119 2 3.0 913051445
## 17704 119 6 5.0 913057893
## 17705 119 16 3.0 913048006
## 17706 119 21 4.0 913049013
## 17707 119 24 3.0 913050793
## 17708 119 26 5.0 913117867
## 17709 119 29 3.0 915411448
## 17710 119 32 4.0 913047936
## 17711 119 36 3.0 945993306
## 17712 119 41 4.0 913048297
## 17713 119 47 5.0 913233441
## 17714 119 50 4.0 913047839
## 17715 119 60 2.0 913048438
## 17716 119 62 4.0 913049366
## 17717 119 70 4.0 959734582
## 17718 119 78 3.0 945993516
## 17719 119 95 2.0 913232674
## 17720 119 101 2.0 952582537
## 17721 119 110 5.0 913047936
## 17722 119 111 5.0 913047839
## 17723 119 112 3.0 913128316
## 17724 119 141 4.0 913049888
## 17725 119 145 4.0 913050230
## 17726 119 151 3.0 913048077
## 17727 119 153 1.0 913232864
## 17728 119 160 2.0 913051632
## 17729 119 161 4.0 913117754
## 17730 119 163 4.0 960751875
## 17731 119 168 2.0 913232864
## 17732 119 173 1.0 913051632
## 17733 119 180 2.0 960751812
## 17734 119 196 2.0 913051475
## 17735 119 203 3.0 913050333
## 17736 119 208 2.0 913232894
## 17737 119 223 4.0 945994116
## 17738 119 227 2.0 913232929
## 17739 119 235 4.0 952584312
## 17740 119 253 2.0 913050480
## 17741 119 260 5.0 913052591
## 17742 119 265 4.0 913048077
## 17743 119 266 4.0 913048721
## 17744 119 272 5.0 913049150
## 17745 119 288 4.0 913233068
## 17746 119 292 3.0 913050293
## 17747 119 296 5.0 913047597
## 17748 119 316 3.0 913051506
## 17749 119 318 4.0 913047258
## 17750 119 329 3.0 913048548
## 17751 119 345 5.0 913049331
## 17752 119 353 3.0 913049150
## 17753 119 356 3.0 952583089
## 17754 119 364 3.0 913049072
## 17755 119 368 3.0 913048916
## 17756 119 370 2.0 913050396
## 17757 119 373 4.0 913232013
## 17758 119 377 2.0 913049964
## 17759 119 383 4.0 915412154
## 17760 119 428 4.0 952583024
## 17761 119 435 2.0 913051632
## 17762 119 443 2.0 952583169
## 17763 119 454 3.0 952583509
## 17764 119 457 3.0 913048158
## 17765 119 480 4.0 913048721
## 17766 119 481 4.0 972099168
## 17767 119 482 3.0 972097228
## 17768 119 492 4.0 913052193
## 17769 119 527 5.0 927055846
## 17770 119 531 3.0 952582353
## 17771 119 532 4.0 960938884
## 17772 119 535 4.0 952581900
## 17773 119 541 4.0 952580959
## 17774 119 551 5.0 913048721
## 17775 119 553 3.0 913047597
## 17776 119 585 3.0 952582708
## 17777 119 587 4.0 913050857
## 17778 119 588 4.0 913048006
## 17779 119 589 4.0 913048983
## 17780 119 590 5.0 913047973
## 17781 119 592 4.0 913232794
## 17782 119 593 4.0 913048297
## 17783 119 595 4.0 913049486
## 17784 119 596 4.0 945993306
## 17785 119 597 4.0 913048605
## 17786 119 599 4.0 915412223
## 17787 119 608 5.0 913207624
## 17788 119 611 1.0 913232929
## 17789 119 648 3.0 913048883
## 17790 119 653 3.0 913052090
## 17791 119 661 3.0 913049964
## 17792 119 678 4.0 952581199
## 17793 119 688 2.0 913232864
## 17794 119 707 3.0 915411867
## 17795 119 728 5.0 918856559
## 17796 119 733 4.0 913057993
## 17797 119 735 4.0 952583624
## 17798 119 736 2.0 913232716
## 17799 119 745 5.0 945993227
## 17800 119 750 5.0 915411448
## 17801 119 778 4.0 913047687
## 17802 119 780 3.0 913050553
## 17803 119 785 4.0 913050711
## 17804 119 788 4.0 913052089
## 17805 119 800 4.0 952584582
## 17806 119 832 4.0 913048799
## 17807 119 849 1.0 913051506
## 17808 119 858 5.0 913052626
## 17809 119 870 3.0 913211320
## 17810 119 880 3.0 913051666
## 17811 119 881 2.0 952583400
## 17812 119 903 5.0 989623265
## 17813 119 904 5.0 913052756
## 17814 119 908 5.0 913052591
## 17815 119 910 5.0 952581061
## 17816 119 912 5.0 913052699
## 17817 119 913 5.0 952581106
## 17818 119 919 5.0 945993179
## 17819 119 920 5.0 927055517
## 17820 119 922 4.0 913052591
## 17821 119 923 5.0 913052756
## 17822 119 924 4.0 913058394
## 17823 119 926 5.0 945993179
## 17824 119 943 4.0 952582729
## 17825 119 953 4.0 952582145
## 17826 119 954 4.0 952581796
## 17827 119 968 3.0 915411502
## 17828 119 969 5.0 913232642
## 17829 119 971 4.0 952581408
## 17830 119 996 3.0 913232992
## 17831 119 1009 3.0 960671689
## 17832 119 1027 2.0 913050827
## 17833 119 1028 3.0 913681100
## 17834 119 1034 3.0 952584169
## 17835 119 1035 5.0 952582174
## 17836 119 1036 4.0 913232601
## 17837 119 1037 3.0 913051666
## 17838 119 1042 3.0 913050942
## 17839 119 1049 3.0 913048764
## 17840 119 1059 2.0 913049782
## 17841 119 1061 4.0 952583272
## 17842 119 1063 4.0 945995420
## 17843 119 1073 3.0 960671633
## 17844 119 1077 5.0 913681190
## 17845 119 1079 4.0 952581978
## 17846 119 1080 4.0 913681190
## 17847 119 1081 4.0 952583089
## 17848 119 1084 4.0 952581304
## 17849 119 1085 5.0 989623184
## 17850 119 1089 4.0 952581199
## 17851 119 1097 4.0 915411448
## 17852 119 1101 4.0 913232754
## 17853 119 1103 5.0 945993269
## 17854 119 1112 2.0 913050942
## 17855 119 1127 2.0 913232754
## 17856 119 1129 4.0 913232754
## 17857 119 1136 5.0 913681021
## 17858 119 1148 5.0 945993227
## 17859 119 1172 4.0 913051262
## 17860 119 1179 3.0 913680627
## 17861 119 1183 2.0 952583063
## 17862 119 1192 2.0 913118043
## 17863 119 1193 5.0 927055342
## 17864 119 1196 4.0 913232524
## 17865 119 1197 4.0 913681326
## 17866 119 1198 4.0 913052591
## 17867 119 1199 5.0 915411448
## 17868 119 1200 4.0 913058394
## 17869 119 1201 4.0 913232601
## 17870 119 1203 5.0 989622199
## 17871 119 1204 5.0 913052699
## 17872 119 1206 5.0 915411480
## 17873 119 1207 4.0 913211024
## 17874 119 1208 5.0 952581061
## 17875 119 1210 4.0 913048438
## 17876 119 1213 4.0 913128255
## 17877 119 1214 3.0 913058346
## 17878 119 1215 4.0 913211024
## 17879 119 1220 4.0 913232567
## 17880 119 1221 4.0 913232567
## 17881 119 1223 5.0 960751702
## 17882 119 1224 5.0 913052862
## 17883 119 1225 5.0 952580936
## 17884 119 1233 5.0 913048035
## 17885 119 1234 4.0 913052591
## 17886 119 1235 5.0 913207776
## 17887 119 1237 3.0 952581003
## 17888 119 1240 4.0 913058278
## 17889 119 1243 5.0 913048764
## 17890 119 1246 4.0 952582145
## 17891 119 1247 4.0 945993227
## 17892 119 1249 4.0 952581335
## 17893 119 1252 4.0 913058346
## 17894 119 1254 4.0 952581106
## 17895 119 1256 4.0 913681100
## 17896 119 1258 4.0 952581686
## 17897 119 1259 5.0 927055517
## 17898 119 1262 4.0 913052662
## 17899 119 1265 2.0 913049179
## 17900 119 1266 5.0 913047687
## 17901 119 1267 4.0 913058314
## 17902 119 1269 4.0 913058314
## 17903 119 1270 4.0 913681222
## 17904 119 1271 4.0 913048639
## 17905 119 1272 5.0 945993306
## 17906 119 1275 4.0 913232716
## 17907 119 1276 4.0 913681100
## 17908 119 1277 4.0 913048548
## 17909 119 1278 4.0 913058153
## 17910 119 1282 4.0 952581686
## 17911 119 1283 4.0 915412223
## 17912 119 1287 5.0 913232524
## 17913 119 1291 3.0 913232524
## 17914 119 1292 5.0 913207845
## 17915 119 1293 4.0 913052528
## 17916 119 1296 4.0 952581470
## 17917 119 1299 4.0 952581856
## 17918 119 1303 4.0 952581003
## 17919 119 1304 4.0 913232524
## 17920 119 1317 4.0 913050333
## 17921 119 1320 2.0 913051590
## 17922 119 1332 4.0 913232065
## 17923 119 1333 4.0 952582034
## 17924 119 1339 5.0 913049366
## 17925 119 1340 4.0 945993269
## 17926 119 1342 2.0 952584516
## 17927 119 1345 4.0 952581718
## 17928 119 1347 2.0 952582585
## 17929 119 1350 3.0 952582509
## 17930 119 1356 3.0 913049427
## 17931 119 1358 5.0 915411308
## 17932 119 1370 4.0 913049888
## 17933 119 1372 2.0 952583400
## 17934 119 1374 3.0 913232642
## 17935 119 1375 2.0 913232965
## 17936 119 1376 3.0 952582034
## 17937 119 1377 1.0 913232965
## 17938 119 1378 3.0 913232794
## 17939 119 1379 4.0 915412154
## 17940 119 1387 4.0 913232567
## 17941 119 1388 2.0 913233215
## 17942 119 1390 4.0 913050186
## 17943 119 1391 3.0 913051590
## 17944 119 1394 5.0 945995160
## 17945 119 1411 5.0 913049270
## 17946 119 1416 4.0 913050480
## 17947 119 1429 4.0 913057939
## 17948 119 1485 2.0 913050666
## 17949 119 1499 2.0 913232929
## 17950 119 1503 4.0 952581933
## 17951 119 1508 4.0 960673585
## 17952 119 1517 2.0 913050368
## 17953 119 1518 3.0 913232754
## 17954 119 1527 4.0 913049116
## 17955 119 1544 2.0 913051590
## 17956 119 1552 3.0 913048764
## 17957 119 1554 2.0 952581174
## 17958 119 1556 1.0 913233239
## 17959 119 1562 1.0 913233239
## 17960 119 1564 5.0 972096905
## 17961 119 1569 2.0 952583721
## 17962 119 1573 2.0 913048476
## 17963 119 1580 4.0 913049303
## 17964 119 1584 3.0 913051475
## 17965 119 1586 2.0 913050942
## 17966 119 1587 3.0 913232754
## 17967 119 1588 2.0 913050793
## 17968 119 1589 3.0 913050230
## 17969 119 1591 2.0 913233183
## 17970 119 1597 4.0 913048476
## 17971 119 1603 2.0 913051632
## 17972 119 1606 2.0 913233268
## 17973 119 1608 3.0 915579236
## 17974 119 1610 4.0 913047737
## 17975 119 1611 5.0 913048605
## 17976 119 1613 3.0 952582839
## 17977 119 1617 4.0 913047737
## 17978 119 1619 1.0 913049303
## 17979 119 1625 4.0 913048232
## 17980 119 1627 4.0 913208236
## 17981 119 1639 4.0 945994088
## 17982 119 1641 3.0 913048232
## 17983 119 1646 2.0 913048077
## 17984 119 1653 4.0 913048338
## 17985 119 1663 3.0 952583024
## 17986 119 1670 3.0 913211248
## 17987 119 1674 4.0 913058314
## 17988 119 1676 2.0 913050553
## 17989 119 1678 3.0 913117813
## 17990 119 1682 3.0 927055670
## 17991 119 1687 3.0 913232894
## 17992 119 1689 3.0 952583747
## 17993 119 1690 1.0 913051506
## 17994 119 1694 2.0 913050075
## 17995 119 1702 3.0 913052089
## 17996 119 1704 5.0 913047643
## 17997 119 1711 4.0 913049542
## 17998 119 1713 3.0 913057714
## 17999 119 1721 3.0 913047343
## 18000 119 1727 2.0 913049844
## 18001 119 1729 3.0 913047878
## 18002 119 1732 4.0 913047643
## 18003 119 1747 4.0 913048605
## 18004 119 1748 4.0 913047343
## 18005 119 1754 3.0 913050029
## 18006 119 1762 3.0 913049605
## 18007 119 1769 2.0 913050666
## 18008 119 1772 2.0 913233215
## 18009 119 1777 2.0 913048883
## 18010 119 1779 3.0 913051445
## 18011 119 1784 5.0 913047973
## 18012 119 1788 4.0 913047466
## 18013 119 1792 3.0 913232864
## 18014 119 1799 3.0 913048721
## 18015 119 1801 2.0 913048605
## 18016 119 1804 3.0 913128356
## 18017 119 1805 4.0 913128255
## 18018 119 1824 5.0 959733966
## 18019 119 1827 2.0 913057714
## 18020 119 1831 2.0 913051666
## 18021 119 1833 2.0 913233136
## 18022 119 1834 3.0 913047687
## 18023 119 1848 3.0 913049396
## 18024 119 1852 3.0 913680547
## 18025 119 1862 2.0 913051697
## 18026 119 1866 3.0 913233296
## 18027 119 1876 3.0 913050997
## 18028 119 1882 2.0 913051666
## 18029 119 1883 5.0 927055026
## 18030 119 1884 2.0 913058499
## 18031 119 1885 4.0 913057714
## 18032 119 1894 2.0 913680503
## 18033 119 1911 2.0 913050666
## 18034 119 1912 4.0 915579154
## 18035 119 1917 3.0 913051632
## 18036 119 1918 4.0 913049605
## 18037 119 1920 2.0 913052129
## 18038 119 1921 4.0 952582409
## 18039 119 1923 5.0 928442267
## 18040 119 1924 3.0 952583206
## 18041 119 1931 5.0 952582207
## 18042 119 1944 4.0 952581718
## 18043 119 1948 4.0 952581174
## 18044 119 1952 4.0 952581304
## 18045 119 1953 4.0 913058394
## 18046 119 1954 3.0 913052966
## 18047 119 1955 3.0 952582353
## 18048 119 1956 4.0 952581552
## 18049 119 1957 4.0 927055670
## 18050 119 1958 5.0 927055708
## 18051 119 1960 4.0 913052966
## 18052 119 1961 4.0 952582145
## 18053 119 1962 5.0 927055670
## 18054 119 1965 5.0 945995181
## 18055 119 1967 3.0 960671689
## 18056 119 1968 4.0 913052966
## 18057 119 1994 4.0 913058153
## 18058 119 1997 4.0 913058153
## 18059 119 1999 3.0 952583848
## 18060 119 2000 4.0 952582353
## 18061 119 2001 3.0 952583799
## 18062 119 2002 3.0 913050368
## 18063 119 2005 3.0 952581796
## 18064 119 2006 4.0 913048367
## 18065 119 2009 4.0 913058394
## 18066 119 2011 2.0 952583848
## 18067 119 2012 2.0 913050261
## 18068 119 2013 3.0 913233012
## 18069 119 2019 4.0 913232524
## 18070 119 2021 3.0 960671689
## 18071 119 2028 5.0 945993179
## 18072 119 2053 2.0 913051697
## 18073 119 2054 2.0 960671689
## 18074 119 2058 4.0 915579122
## 18075 119 2065 4.0 952581506
## 18076 119 2067 4.0 952581960
## 18077 119 2069 4.0 952582353
## 18078 119 2071 4.0 913049605
## 18079 119 2076 5.0 913207917
## 18080 119 2080 3.0 913211160
## 18081 119 2083 4.0 913050620
## 18082 119 2087 4.0 945993396
## 18083 119 2094 2.0 913051697
## 18084 119 2096 4.0 952581739
## 18085 119 2100 3.0 952583442
## 18086 119 2101 4.0 960671832
## 18087 119 2104 4.0 945993396
## 18088 119 2105 3.0 913233215
## 18089 119 2108 4.0 952581530
## 18090 119 2109 4.0 913052756
## 18091 119 2111 2.0 952582409
## 18092 119 2112 4.0 959733499
## 18093 119 2115 3.0 913232965
## 18094 119 2118 3.0 913058346
## 18095 119 2120 3.0 952584492
## 18096 119 2124 3.0 913050518
## 18097 119 2132 4.0 913052591
## 18098 119 2136 3.0 913211320
## 18099 119 2138 3.0 913211248
## 18100 119 2140 3.0 945993582
## 18101 119 2143 3.0 960671726
## 18102 119 2155 3.0 952582538
## 18103 119 2160 4.0 913208080
## 18104 119 2161 3.0 960671689
## 18105 119 2167 3.0 915411308
## 18106 119 2174 5.0 952582117
## 18107 119 2183 4.0 927055517
## 18108 119 2193 4.0 913232524
## 18109 119 2194 4.0 913052626
## 18110 119 2240 3.0 952582887
## 18111 119 2243 4.0 952581827
## 18112 119 2253 2.0 913052129
## 18113 119 2263 3.0 913058279
## 18114 119 2268 4.0 913047343
## 18115 119 2278 4.0 927055342
## 18116 119 2279 2.0 952584516
## 18117 119 2282 4.0 928442005
## 18118 119 2289 4.0 913207729
## 18119 119 2291 4.0 913048232
## 18120 119 2297 2.0 927055099
## 18121 119 2302 3.0 913051262
## 18122 119 2303 5.0 952581003
## 18123 119 2306 2.0 952583548
## 18124 119 2312 3.0 952582839
## 18125 119 2313 5.0 913052756
## 18126 119 2321 4.0 927055752
## 18127 119 2329 4.0 952581900
## 18128 119 2333 4.0 952121533
## 18129 119 2336 5.0 952121490
## 18130 119 2337 4.0 952122333
## 18131 119 2338 2.0 913046852
## 18132 119 2340 3.0 927055342
## 18133 119 2346 3.0 952583721
## 18134 119 2352 4.0 952582353
## 18135 119 2353 3.0 952582174
## 18136 119 2355 3.0 952121372
## 18137 119 2359 4.0 952582207
## 18138 119 2361 4.0 989784765
## 18139 119 2365 1.0 913233136
## 18140 119 2366 4.0 913052699
## 18141 119 2369 3.0 945995494
## 18142 119 2371 3.0 952582248
## 18143 119 2373 2.0 913233327
## 18144 119 2375 4.0 913681261
## 18145 119 2391 3.0 952581686
## 18146 119 2398 4.0 952582117
## 18147 119 2404 2.0 913233183
## 18148 119 2406 3.0 913232567
## 18149 119 2407 4.0 913052662
## 18150 119 2411 2.0 913233296
## 18151 119 2412 2.0 913232864
## 18152 119 2414 3.0 913233268
## 18153 119 2420 3.0 927055846
## 18154 119 2421 2.0 913232642
## 18155 119 2422 1.0 913233136
## 18156 119 2425 3.0 952583624
## 18157 119 2440 4.0 928442046
## 18158 119 2454 3.0 972097288
## 18159 119 2455 3.0 915411448
## 18160 119 2463 4.0 952582409
## 18161 119 2469 4.0 952583902
## 18162 119 2470 4.0 927055846
## 18163 119 2478 3.0 915412223
## 18164 119 2498 3.0 945993844
## 18165 119 2502 4.0 972097622
## 18166 119 2524 2.0 952583587
## 18167 119 2527 2.0 952582887
## 18168 119 2529 4.0 927055446
## 18169 119 2539 3.0 952583587
## 18170 119 2542 3.0 952582382
## 18171 119 2571 4.0 945993764
## 18172 119 2574 1.0 945993859
## 18173 119 2587 2.0 959733676
## 18174 119 2590 3.0 952583902
## 18175 119 2600 3.0 945993764
## 18176 119 2616 3.0 952583967
## 18177 119 2617 2.0 945993697
## 18178 119 2622 3.0 945993582
## 18179 119 2628 3.0 952583509
## 18180 119 2639 4.0 927055797
## 18181 119 2648 4.0 952581439
## 18182 119 2657 4.0 972097322
## 18183 119 2660 5.0 952580766
## 18184 119 2664 4.0 952582034
## 18185 119 2672 3.0 945993537
## 18186 119 2686 4.0 959734646
## 18187 119 2688 3.0 952121533
## 18188 119 2700 2.0 952582248
## 18189 119 2701 1.0 945993764
## 18190 119 2707 3.0 952582887
## 18191 119 2710 1.0 945993967
## 18192 119 2713 2.0 952121596
## 18193 119 2716 4.0 952582174
## 18194 119 2719 2.0 952121533
## 18195 119 2728 5.0 952581223
## 18196 119 2734 2.0 952583721
## 18197 119 2739 4.0 952582271
## 18198 119 2746 5.0 952583400
## 18199 119 2750 4.0 952582145
## 18200 119 2762 4.0 959733393
## 18201 119 2769 2.0 989622527
## 18202 119 2770 3.0 952121372
## 18203 119 2779 2.0 952583136
## 18204 119 2784 4.0 952583624
## 18205 119 2797 3.0 952582207
## 18206 119 2804 5.0 945993269
## 18207 119 2826 3.0 952121372
## 18208 119 2828 2.0 952121490
## 18209 119 2857 5.0 952583442
## 18210 119 2858 5.0 952580851
## 18211 119 2863 3.0 952581439
## 18212 119 2871 4.0 945993269
## 18213 119 2872 3.0 945993349
## 18214 119 2901 4.0 952580766
## 18215 119 2912 4.0 959733348
## 18216 119 2915 4.0 952581470
## 18217 119 2916 4.0 952581900
## 18218 119 2918 4.0 945993486
## 18219 119 2919 4.0 952581960
## 18220 119 2921 3.0 952582069
## 18221 119 2926 4.0 952581856
## 18222 119 2944 4.0 952581506
## 18223 119 2947 4.0 952581470
## 18224 119 2949 4.0 952582003
## 18225 119 2968 4.0 952581640
## 18226 119 2971 5.0 952582477
## 18227 119 2973 5.0 952581084
## 18228 119 2976 4.0 959734551
## 18229 119 2985 3.0 945993582
## 18230 119 2987 4.0 952121796
## 18231 119 2997 5.0 960938945
## 18232 119 3011 4.0 989622248
## 18233 119 3019 5.0 945993227
## 18234 119 3032 3.0 952583136
## 18235 119 3035 4.0 952581603
## 18236 119 3037 5.0 952581356
## 18237 119 3039 3.0 952582207
## 18238 119 3052 5.0 960751774
## 18239 119 3066 4.0 945993329
## 18240 119 3081 4.0 959733423
## 18241 119 3095 5.0 952581061
## 18242 119 3099 3.0 952582639
## 18243 119 3100 3.0 952582729
## 18244 119 3107 2.0 952583587
## 18245 119 3108 5.0 952581379
## 18246 119 3113 3.0 960751946
## 18247 119 3114 4.0 989622248
## 18248 119 3127 2.0 972097355
## 18249 119 3129 3.0 972097906
## 18250 119 3148 4.0 972097228
## 18251 119 3152 4.0 952581223
## 18252 119 3159 3.0 952583442
## 18253 119 3160 2.0 972097256
## 18254 119 3168 5.0 945993227
## 18255 119 3169 4.0 945993269
## 18256 119 3175 3.0 959734260
## 18257 119 3181 4.0 972097153
## 18258 119 3194 4.0 952582959
## 18259 119 3198 4.0 952582679
## 18260 119 3201 5.0 952580802
## 18261 119 3204 4.0 952580878
## 18262 119 3219 4.0 952121654
## 18263 119 3250 2.0 952583929
## 18264 119 3252 4.0 952582431
## 18265 119 3253 3.0 952581470
## 18266 119 3255 2.0 952583206
## 18267 119 3263 2.0 952583587
## 18268 119 3267 4.0 952581933
## 18269 119 3308 5.0 953675542
## 18270 119 3317 4.0 989623184
## 18271 119 3324 2.0 972097449
## 18272 119 3330 4.0 952581686
## 18273 119 3350 4.0 952580851
## 18274 119 3354 2.0 972097473
## 18275 119 3355 2.0 972097288
## 18276 119 3360 3.0 952581856
## 18277 119 3363 4.0 952580442
## 18278 119 3379 3.0 952580649
## 18279 119 3388 2.0 952580566
## 18280 119 3396 4.0 952580606
## 18281 119 3397 4.0 952580566
## 18282 119 3409 3.0 972097355
## 18283 119 3414 5.0 952580606
## 18284 119 3418 4.0 952580692
## 18285 119 3421 4.0 952580442
## 18286 119 3429 5.0 989784738
## 18287 119 3438 2.0 960671726
## 18288 119 3441 3.0 952580649
## 18289 119 3448 4.0 952580566
## 18290 119 3450 3.0 952580566
## 18291 119 3457 3.0 972097322
## 18292 119 3461 4.0 953675594
## 18293 119 3467 5.0 989622199
## 18294 119 3471 5.0 953675360
## 18295 119 3476 4.0 959734551
## 18296 119 3479 4.0 960671633
## 18297 119 3481 4.0 972097228
## 18298 119 3489 2.0 960671726
## 18299 119 3490 1.0 989784509
## 18300 119 3499 4.0 953675866
## 18301 119 3504 5.0 989622144
## 18302 119 3527 4.0 959734194
## 18303 119 3535 2.0 972097378
## 18304 119 3548 5.0 989784738
## 18305 119 3563 1.0 989622944
## 18306 119 3654 4.0 959734139
## 18307 119 3699 4.0 960671856
## 18308 119 3701 3.0 989623049
## 18309 119 3702 4.0 959734169
## 18310 119 3735 4.0 989622144
## 18311 119 3740 4.0 959734115
## 18312 119 3741 4.0 960751727
## 18313 119 3827 3.0 989622945
## 18314 119 3841 2.0 972097449
## 18315 119 3844 4.0 972097355
## 18316 119 3869 2.0 972097449
## 18317 119 3889 2.0 989622976
## 18318 119 3893 3.0 989623306
## 18319 119 3895 2.0 989623049
## 18320 119 3897 5.0 989622057
## 18321 119 3911 5.0 989622166
## 18322 119 3926 4.0 972097410
## 18323 119 3928 3.0 972097355
## 18324 119 3929 5.0 989622144
## 18325 119 3943 5.0 989622663
## 18326 119 3946 2.0 989622976
## 18327 119 3959 4.0 972097288
## 18328 119 3967 5.0 989622717
## 18329 119 3977 3.0 989622945
## 18330 119 3980 4.0 989622743
## 18331 119 3986 3.0 989622945
## 18332 119 4018 3.0 989622570
## 18333 119 4106 3.0 989622945
## 18334 119 4139 2.0 989784550
## 18335 119 4179 4.0 989623122
## 18336 119 4186 4.0 989623184
## 18337 119 4190 4.0 989623150
## 18338 119 4195 4.0 989622087
## 18339 119 4280 4.0 989623184
## 18340 119 4282 4.0 989623150
## 18341 119 4292 4.0 989623150
## 18342 119 5060 5.0 913680947
## 18343 120 1 2.5 1167422234
## 18344 120 32 3.5 1167420751
## 18345 120 36 3.0 1125350649
## 18346 120 47 3.5 1167421762
## 18347 120 50 4.0 1167421675
## 18348 120 104 5.0 1167420288
## 18349 120 185 3.0 1167422401
## 18350 120 198 2.5 1125350327
## 18351 120 231 2.0 1167422338
## 18352 120 292 3.0 1167422364
## 18353 120 296 3.5 1125522893
## 18354 120 356 4.5 1167422193
## 18355 120 364 3.0 1167422305
## 18356 120 377 3.0 1167422258
## 18357 120 380 3.5 1167422230
## 18358 120 454 3.5 1167422387
## 18359 120 457 3.5 1125523032
## 18360 120 480 3.0 1125523035
## 18361 120 500 3.0 1167422333
## 18362 120 539 3.0 1167422359
## 18363 120 587 3.5 1125523111
## 18364 120 589 4.0 1167421705
## 18365 120 592 3.5 1167420777
## 18366 120 593 4.5 1167422201
## 18367 120 597 3.0 1167422326
## 18368 120 608 1.5 1167420460
## 18369 120 648 3.5 1167422272
## 18370 120 733 3.0 1167422320
## 18371 120 736 3.0 1167422296
## 18372 120 780 3.5 1125523023
## 18373 120 903 1.5 1167420471
## 18374 120 1036 4.0 1167421024
## 18375 120 1092 4.0 1125350310
## 18376 120 1097 3.0 1167421691
## 18377 120 1198 3.5 1125523097
## 18378 120 1214 3.5 1125523103
## 18379 120 1240 4.5 1167421051
## 18380 120 1265 4.5 1167420333
## 18381 120 1270 4.5 1167422024
## 18382 120 1302 3.5 1167422131
## 18383 120 1307 3.0 1125523069
## 18384 120 1343 3.5 1125350472
## 18385 120 1350 4.0 1125350440
## 18386 120 1387 4.5 1167421344
## 18387 120 1388 3.5 1167421349
## 18388 120 1389 1.5 1167421357
## 18389 120 1391 2.5 1125523079
## 18390 120 1393 3.5 1125522964
## 18391 120 1476 2.5 1125350599
## 18392 120 1517 3.0 1125350568
## 18393 120 1552 3.0 1125350259
## 18394 120 1573 3.5 1125523072
## 18395 120 1580 4.0 1167422378
## 18396 120 1597 3.0 1125350313
## 18397 120 1608 3.0 1125523087
## 18398 120 1625 4.0 1125350227
## 18399 120 1663 5.0 1167420323
## 18400 120 1721 3.5 1167422380
## 18401 120 1748 3.0 1125350343
## 18402 120 1777 3.5 1125350275
## 18403 120 1923 4.0 1125350510
## 18404 120 1954 5.0 1167420301
## 18405 120 1961 5.0 1167420306
## 18406 120 1994 2.5 1167420608
## 18407 120 1997 3.0 1167420253
## 18408 120 2000 3.5 1125523075
## 18409 120 2003 3.0 1125350356
## 18410 120 2009 1.5 1167420444
## 18411 120 2013 2.5 1167420413
## 18412 120 2028 4.0 1167420767
## 18413 120 2109 4.0 1125350584
## 18414 120 2118 4.5 1167421606
## 18415 120 2268 5.0 1167422043
## 18416 120 2321 3.0 1167420364
## 18417 120 2371 3.5 1125350564
## 18418 120 2402 4.0 1167421005
## 18419 120 2403 4.5 1167420996
## 18420 120 2407 3.0 1125350335
## 18421 120 2416 5.0 1167420932
## 18422 120 2470 3.5 1125350317
## 18423 120 2474 3.5 1125350538
## 18424 120 2529 4.5 1125350279
## 18425 120 2571 4.5 1167421379
## 18426 120 2640 3.5 1125523055
## 18427 120 2699 3.0 1125523007
## 18428 120 2716 4.0 1167422102
## 18429 120 2762 4.5 1167420730
## 18430 120 2791 5.0 1167422113
## 18431 120 2795 3.5 1125350425
## 18432 120 2797 5.0 1167420347
## 18433 120 2858 3.5 1167421669
## 18434 120 2915 4.0 1125350474
## 18435 120 2916 4.5 1167421081
## 18436 120 2918 4.5 1167421968
## 18437 120 2959 3.0 1125522923
## 18438 120 2987 3.0 1167421776
## 18439 120 2997 2.0 1167420840
## 18440 120 3039 3.5 1167422034
## 18441 120 3098 3.5 1167422048
## 18442 120 3101 4.5 1125350268
## 18443 120 3102 3.5 1125350417
## 18444 120 3210 4.0 1167422097
## 18445 120 3253 3.5 1125523048
## 18446 120 3360 3.5 1167420588
## 18447 120 3363 3.5 1167422090
## 18448 120 3421 5.0 1167420895
## 18449 120 3448 3.5 1125350348
## 18450 120 3481 2.0 1125523044
## 18451 120 3527 4.0 1125523040
## 18452 120 3552 5.0 1167420317
## 18453 120 3635 2.5 1167420410
## 18454 120 3671 2.5 1167422038
## 18455 120 3793 2.5 1125523018
## 18456 120 4002 3.0 1167420604
## 18457 120 4007 3.5 1125350427
## 18458 120 4022 3.5 1125522968
## 18459 120 4085 4.0 1167422061
## 18460 120 4102 3.0 1125350544
## 18461 120 4220 3.0 1167420597
## 18462 120 4226 4.5 1125522907
## 18463 120 4306 2.5 1125523014
## 18464 120 4623 4.5 1167420969
## 18465 120 4963 4.0 1167421701
## 18466 120 4973 0.5 1167420818
## 18467 120 5049 3.5 1125350483
## 18468 120 5250 3.0 1125350587
## 18469 120 5349 4.0 1167420830
## 18470 120 5418 4.0 1167421733
## 18471 120 5445 4.0 1167421737
## 18472 120 5693 2.0 1125350613
## 18473 120 6188 3.0 1125350594
## 18474 120 6373 5.0 1167420875
## 18475 120 6787 3.5 1125350627
## 18476 120 6874 2.0 1167421715
## 18477 120 7616 4.5 1167421410
## 18478 120 8636 4.0 1167421751
## 18479 120 32587 1.5 1167420746
## 18480 120 48385 3.0 1167421787
## 18481 121 1 4.0 833058442
## 18482 121 6 4.0 833058704
## 18483 121 10 3.0 833058428
## 18484 121 11 4.0 833058545
## 18485 121 17 5.0 833058557
## 18486 121 34 5.0 833058465
## 18487 121 39 4.0 836906043
## 18488 121 40 5.0 833059219
## 18489 121 50 5.0 833058475
## 18490 121 95 4.0 833058545
## 18491 121 105 3.0 833058633
## 18492 121 110 5.0 836905999
## 18493 121 112 3.0 833058866
## 18494 121 125 3.0 833059070
## 18495 121 150 4.0 833058355
## 18496 121 153 3.0 833058390
## 18497 121 161 4.0 833058428
## 18498 121 163 5.0 833058714
## 18499 121 165 3.0 833058390
## 18500 121 171 4.0 833058784
## 18501 121 186 3.0 833058557
## 18502 121 198 5.0 833058929
## 18503 121 203 4.0 833058843
## 18504 121 215 4.0 833058980
## 18505 121 222 4.0 833058843
## 18506 121 223 4.0 833058645
## 18507 121 246 5.0 833058685
## 18508 121 249 4.0 833058885
## 18509 121 253 3.0 833058442
## 18510 121 256 3.0 833058621
## 18511 121 265 5.0 833058611
## 18512 121 273 4.0 833058704
## 18513 121 281 5.0 833058875
## 18514 121 282 4.0 833058575
## 18515 121 293 5.0 833058599
## 18516 121 296 5.0 833058355
## 18517 121 300 4.0 833058442
## 18518 121 303 5.0 833058856
## 18519 121 307 5.0 833058929
## 18520 121 315 5.0 833058518
## 18521 121 316 3.0 833058414
## 18522 121 318 5.0 833058414
## 18523 121 329 4.0 833058414
## 18524 121 339 3.0 833058428
## 18525 121 345 5.0 833058775
## 18526 121 348 3.0 833058704
## 18527 121 349 4.0 833058390
## 18528 121 356 4.0 833059029
## 18529 121 357 4.0 836906137
## 18530 121 364 4.0 833058633
## 18531 121 377 4.0 836906063
## 18532 121 380 4.0 833058355
## 18533 121 435 3.0 833058489
## 18534 121 440 5.0 833058714
## 18535 121 442 4.0 833058843
## 18536 121 454 3.0 833058645
## 18537 121 457 4.0 833058489
## 18538 121 468 4.0 833058704
## 18539 121 475 4.0 833059235
## 18540 121 480 4.0 833059045
## 18541 121 497 5.0 833059219
## 18542 121 509 4.0 833058733
## 18543 121 515 5.0 833058894
## 18544 121 527 5.0 833059235
## 18545 121 529 4.0 833059190
## 18546 121 539 3.0 836906092
## 18547 121 551 4.0 833058866
## 18548 121 553 3.0 833058545
## 18549 121 585 3.0 833058905
## 18550 121 587 3.0 836906093
## 18551 121 588 4.0 833058390
## 18552 121 589 5.0 836906063
## 18553 121 590 4.0 833058355
## 18554 121 592 4.0 833058354
## 18555 121 593 4.0 833058489
## 18556 121 595 4.0 833058414
## 18557 121 597 3.0 836906141
## 18558 121 610 3.0 833058905
## 18559 121 736 4.0 833058938
## 18560 121 780 5.0 836905940
## 18561 122 1 3.0 832773057
## 18562 122 10 3.0 832773057
## 18563 122 17 3.0 832773202
## 18564 122 28 3.0 832773358
## 18565 122 73 4.0 832773302
## 18566 122 150 3.0 832772925
## 18567 122 153 3.0 832772980
## 18568 122 161 3.0 832773057
## 18569 122 165 2.0 832772980
## 18570 122 185 2.0 832773092
## 18571 122 208 1.0 832773092
## 18572 122 231 1.0 832773017
## 18573 122 253 3.0 832773092
## 18574 122 261 3.0 832773358
## 18575 122 265 3.0 832773202
## 18576 122 272 4.0 832773202
## 18577 122 292 3.0 832773092
## 18578 122 296 1.0 832772925
## 18579 122 300 3.0 832773092
## 18580 122 316 4.0 832773017
## 18581 122 318 4.0 832773017
## 18582 122 329 3.0 832773017
## 18583 122 339 3.0 832773057
## 18584 122 342 1.0 832773202
## 18585 122 344 1.0 832772980
## 18586 122 349 3.0 832772977
## 18587 122 356 3.0 832773358
## 18588 122 380 1.0 832772925
## 18589 122 434 3.0 832773057
## 18590 122 468 3.0 832773202
## 18591 122 497 4.0 832773302
## 18592 122 527 3.0 832773302
## 18593 122 529 4.0 832773302
## 18594 122 534 5.0 832773302
## 18595 122 588 3.0 832772977
## 18596 122 590 3.0 832772925
## 18597 122 592 3.0 832772925
## 18598 122 595 3.0 832773017
## 18599 122 613 3.0 832773358
## 18600 122 668 3.0 832773358
## 18601 123 233 4.0 994021026
## 18602 123 288 5.0 994015967
## 18603 123 407 5.0 994021077
## 18604 123 785 5.0 994021092
## 18605 123 968 3.0 994021141
## 18606 123 1968 4.0 994015836
## 18607 123 1976 4.0 994015911
## 18608 123 2003 4.0 994015911
## 18609 123 2369 3.0 994021000
## 18610 123 2378 1.0 994015880
## 18611 123 2428 5.0 994021026
## 18612 123 2502 5.0 994021141
## 18613 123 2672 2.0 994015896
## 18614 123 2699 2.0 994020942
## 18615 123 2702 2.0 994021210
## 18616 123 2707 2.0 994020942
## 18617 123 2710 1.0 994020953
## 18618 123 2762 5.0 994021194
## 18619 123 2841 5.0 994021194
## 18620 123 2959 4.0 994021038
## 18621 123 2995 2.0 994021077
## 18622 123 3005 5.0 994020971
## 18623 123 3016 5.0 994021000
## 18624 123 3203 5.0 994021000
## 18625 123 3219 5.0 994021153
## 18626 123 3273 3.0 994021178
## 18627 123 3409 5.0 994021038
## 18628 123 3578 3.0 994021057
## 18629 123 3826 5.0 994021057
## 18630 123 3857 2.0 994020971
## 18631 123 4228 5.0 994015865
## 18632 123 4492 4.0 994020819
## 18633 123 4493 4.0 994020819
## 18634 124 1 4.5 1147862310
## 18635 124 2 3.0 1147861200
## 18636 124 19 4.0 1147861227
## 18637 124 47 3.5 1147861617
## 18638 124 110 5.0 1147862138
## 18639 124 266 3.0 1147861437
## 18640 124 293 4.5 1147861654
## 18641 124 296 3.0 1147861878
## 18642 124 318 3.5 1147861620
## 18643 124 350 4.0 1147861428
## 18644 124 356 4.0 1147861623
## 18645 124 527 5.0 1147861790
## 18646 124 541 2.5 1147862448
## 18647 124 589 5.0 1147862223
## 18648 124 593 3.5 1147862163
## 18649 124 786 3.0 1147861240
## 18650 124 1036 4.5 1147861587
## 18651 124 1090 4.5 1147862264
## 18652 124 1198 4.0 1147862042
## 18653 124 1200 5.0 1147862198
## 18654 124 1214 5.0 1147862306
## 18655 124 1222 3.5 1147862239
## 18656 124 1240 5.0 1147862371
## 18657 124 1270 5.0 1147862279
## 18658 124 1291 4.0 1147861555
## 18659 124 1625 4.0 1147861686
## 18660 124 1917 4.0 1147861415
## 18661 124 1961 3.5 1147861842
## 18662 124 2000 3.0 1147862399
## 18663 124 2028 4.0 1147861660
## 18664 124 2355 4.0 1147862049
## 18665 124 2542 4.0 1147861853
## 18666 124 2571 5.0 1147861561
## 18667 124 2683 3.0 1147861193
## 18668 124 2716 4.0 1147861161
## 18669 124 2762 4.0 1147862130
## 18670 124 2858 4.5 1147862230
## 18671 124 2959 5.0 1147861149
## 18672 124 3066 3.5 1147861893
## 18673 124 3114 4.0 1147861255
## 18674 124 3147 4.0 1147861568
## 18675 124 3578 4.5 1147861566
## 18676 124 3793 3.5 1147861388
## 18677 124 3996 2.0 1147861403
## 18678 124 4011 3.0 1147861760
## 18679 124 4014 4.0 1147862834
## 18680 124 4016 4.0 1147861701
## 18681 124 4223 4.0 1147861711
## 18682 124 4306 5.0 1147861207
## 18683 124 4973 4.0 1147862227
## 18684 124 4993 5.0 1147861204
## 18685 124 4995 3.5 1147861832
## 18686 124 5218 3.5 1147861688
## 18687 124 5418 2.5 1147861744
## 18688 124 5445 3.5 1147862433
## 18689 124 5679 3.0 1147861810
## 18690 124 5782 2.0 1147862179
## 18691 124 5952 5.0 1147861440
## 18692 124 5989 2.5 1147861752
## 18693 124 6323 3.0 1147861764
## 18694 124 6377 4.5 1147861640
## 18695 124 6539 4.5 1147861577
## 18696 124 6874 2.0 1147862295
## 18697 124 6942 3.0 1147861798
## 18698 124 7090 2.5 1147862366
## 18699 124 7153 5.0 1147861559
## 18700 124 7254 4.5 1147861821
## 18701 124 7360 3.0 1147861916
## 18702 124 7438 2.0 1147862207
## 18703 124 7445 4.0 1147861769
## 18704 124 8132 4.5 1147861726
## 18705 124 8360 4.5 1147861582
## 18706 124 8665 2.5 1147862346
## 18707 124 8798 2.5 1147861882
## 18708 124 8874 3.0 1147862438
## 18709 124 8957 3.0 1147861819
## 18710 124 8961 4.0 1147862135
## 18711 124 30707 3.0 1147861932
## 18712 124 32587 4.0 1147861867
## 18713 124 33166 3.5 1147861944
## 18714 124 33493 3.5 1147861644
## 18715 124 34405 2.5 1147862196
## 18716 124 37475 3.5 1147861573
## 18717 124 41569 4.0 1147862461
## 18718 124 41997 4.0 1147862176
## 18719 125 1 4.0 1269736592
## 18720 125 11 4.0 1269735560
## 18721 125 47 4.5 1269733663
## 18722 125 50 5.0 1244537461
## 18723 125 104 4.0 1269735058
## 18724 125 111 4.0 1244538123
## 18725 125 150 4.5 1269734153
## 18726 125 208 0.5 1269733955
## 18727 125 231 5.0 1244537702
## 18728 125 236 4.5 1269736207
## 18729 125 260 5.0 1244537436
## 18730 125 293 4.5 1244538139
## 18731 125 296 5.0 1244537427
## 18732 125 318 5.0 1244537564
## 18733 125 344 4.0 1269734365
## 18734 125 356 5.0 1244537870
## 18735 125 364 4.0 1269733891
## 18736 125 367 2.0 1244537743
## 18737 125 440 4.0 1269736684
## 18738 125 457 3.5 1269733436
## 18739 125 474 5.0 1269735100
## 18740 125 480 5.0 1244537415
## 18741 125 508 4.0 1269736628
## 18742 125 524 4.0 1269734088
## 18743 125 539 4.0 1269733830
## 18744 125 546 4.0 1269832398
## 18745 125 586 4.0 1269734212
## 18746 125 595 4.0 1269733931
## 18747 125 597 3.0 1244537726
## 18748 125 608 5.0 1244537507
## 18749 125 648 4.0 1244537842
## 18750 125 750 5.0 1269735179
## 18751 125 780 3.0 1269734068
## 18752 125 858 4.5 1269734004
## 18753 125 903 4.5 1269736378
## 18754 125 904 5.0 1269735467
## 18755 125 908 5.0 1269735305
## 18756 125 912 5.0 1244538087
## 18757 125 913 4.0 1269736203
## 18758 125 919 4.5 1244538057
## 18759 125 920 2.0 1269735439
## 18760 125 933 4.0 1269736604
## 18761 125 953 5.0 1269735864
## 18762 125 1035 2.5 1269735996
## 18763 125 1036 4.5 1269733784
## 18764 125 1073 4.5 1269733443
## 18765 125 1089 4.5 1244538001
## 18766 125 1097 4.5 1269734007
## 18767 125 1101 4.0 1269736599
## 18768 125 1136 5.0 1244537778
## 18769 125 1193 4.5 1269736437
## 18770 125 1196 4.0 1269736613
## 18771 125 1197 5.0 1244537770
## 18772 125 1198 4.5 1244537561
## 18773 125 1201 4.5 1269735930
## 18774 125 1204 5.0 1269736091
## 18775 125 1210 4.0 1269733639
## 18776 125 1213 4.5 1269734168
## 18777 125 1220 3.5 1269734601
## 18778 125 1221 4.0 1269736718
## 18779 125 1230 5.0 1244538472
## 18780 125 1234 4.0 1269736400
## 18781 125 1240 4.5 1244537845
## 18782 125 1242 3.5 1269736034
## 18783 125 1245 4.0 1269736643
## 18784 125 1265 5.0 1244537789
## 18785 125 1270 5.0 1244538151
## 18786 125 1278 4.5 1269736368
## 18787 125 1288 4.5 1269736393
## 18788 125 1291 4.5 1269736488
## 18789 125 1304 4.5 1269735681
## 18790 125 1387 4.5 1269736483
## 18791 125 1391 4.0 1269735088
## 18792 125 1485 5.0 1269734733
## 18793 125 1580 4.0 1269733878
## 18794 125 1608 4.0 1269735288
## 18795 125 1610 5.0 1244537823
## 18796 125 1653 3.5 1269736671
## 18797 125 1673 4.5 1269736548
## 18798 125 1682 5.0 1244537860
## 18799 125 1704 5.0 1244537923
## 18800 125 1721 4.0 1269733430
## 18801 125 1729 3.0 1269735987
## 18802 125 1732 5.0 1244538114
## 18803 125 1777 3.0 1269735628
## 18804 125 1784 4.5 1269736558
## 18805 125 1884 5.0 1269737513
## 18806 125 1892 4.0 1269736632
## 18807 125 1917 3.0 1269734042
## 18808 125 1961 4.5 1269736429
## 18809 125 2000 4.0 1269736478
## 18810 125 2011 0.5 1269734109
## 18811 125 2012 3.5 1244537996
## 18812 125 2028 4.5 1269736423
## 18813 125 2194 4.5 1269735278
## 18814 125 2355 3.0 1269734161
## 18815 125 2359 5.0 1244536977
## 18816 125 2407 4.0 1269736528
## 18817 125 2502 4.5 1244537980
## 18818 125 2571 4.0 1269733874
## 18819 125 2572 4.5 1269736000
## 18820 125 2628 0.5 1244537537
## 18821 125 2683 4.0 1269733455
## 18822 125 2706 0.5 1269734112
## 18823 125 2716 4.5 1269736504
## 18824 125 2723 4.0 1269734054
## 18825 125 2763 4.0 1269736390
## 18826 125 2791 5.0 1244538022
## 18827 125 2797 5.0 1269734032
## 18828 125 2804 4.0 1269736680
## 18829 125 2858 5.0 1244537657
## 18830 125 2918 4.5 1269736515
## 18831 125 2959 5.0 1244537480
## 18832 125 2987 3.5 1269736579
## 18833 125 3033 2.5 1269735788
## 18834 125 3160 5.0 1269823824
## 18835 125 3175 5.0 1269734513
## 18836 125 3246 3.0 1244537079
## 18837 125 3253 4.5 1269735457
## 18838 125 3360 4.5 1244537063
## 18839 125 3524 4.0 1269736562
## 18840 125 3552 4.5 1244536928
## 18841 125 3671 4.5 1269735510
## 18842 125 3717 3.0 1269735935
## 18843 125 3751 2.5 1269734016
## 18844 125 3755 3.5 1269735525
## 18845 125 3897 5.0 1244537685
## 18846 125 3948 3.0 1269734062
## 18847 125 3994 3.5 1269734659
## 18848 125 4002 3.0 1269737566
## 18849 125 4018 3.5 1269736108
## 18850 125 4022 3.5 1269733447
## 18851 125 4023 4.0 1269733776
## 18852 125 4025 1.0 1269735812
## 18853 125 4085 4.5 1269735202
## 18854 125 4226 4.0 1269733384
## 18855 125 4306 5.0 1244537528
## 18856 125 4361 4.0 1269736601
## 18857 125 4367 2.0 1269736281
## 18858 125 4886 4.0 1244537708
## 18859 125 4979 5.0 1244538176
## 18860 125 4993 4.5 1269733683
## 18861 125 5266 2.5 1269736021
## 18862 125 5349 4.0 1269733651
## 18863 125 5377 4.0 1269735816
## 18864 125 5378 1.0 1269734116
## 18865 125 5459 1.5 1269734961
## 18866 125 5481 3.0 1269736040
## 18867 125 5502 5.0 1244538086
## 18868 125 5952 3.5 1269733990
## 18869 125 5989 5.0 1244537608
## 18870 125 6373 4.0 1269735196
## 18871 125 6377 5.0 1244538015
## 18872 125 6539 3.0 1269734050
## 18873 125 6708 3.5 1269737542
## 18874 125 6711 5.0 1244537800
## 18875 125 6863 3.0 1269735283
## 18876 125 6870 4.5 1269735068
## 18877 125 6942 5.0 1269735210
## 18878 125 6947 3.5 1269735728
## 18879 125 6953 4.0 1269736255
## 18880 125 6979 3.0 1269737520
## 18881 125 7147 5.0 1269733926
## 18882 125 7153 4.0 1244537487
## 18883 125 7361 5.0 1269734149
## 18884 125 8360 3.5 1269733972
## 18885 125 8376 4.0 1269736638
## 18886 125 8784 4.0 1269733912
## 18887 125 8798 3.5 1269734945
## 18888 125 8949 5.0 1269734731
## 18889 125 8961 4.0 1269733906
## 18890 125 8981 4.0 1269737571
## 18891 125 30707 4.0 1244538187
## 18892 125 30793 0.5 1269734106
## 18893 125 32587 4.5 1269736410
## 18894 125 33166 5.0 1269734692
## 18895 125 33493 1.5 1269734083
## 18896 125 33679 3.5 1269735602
## 18897 125 34162 4.0 1269736371
## 18898 125 35836 4.0 1269733947
## 18899 125 40819 4.0 1269735313
## 18900 125 44191 4.5 1244537921
## 18901 125 44195 5.0 1269734797
## 18902 125 44665 4.5 1269736453
## 18903 125 45447 3.5 1269735450
## 18904 125 45722 2.5 1269734352
## 18905 125 46578 5.0 1269733885
## 18906 125 46723 5.0 1269736164
## 18907 125 47610 2.5 1269735873
## 18908 125 48394 4.5 1269736433
## 18909 125 48516 5.0 1244537556
## 18910 125 48774 4.5 1269736542
## 18911 125 48780 4.5 1269734205
## 18912 125 49272 4.0 1269734075
## 18913 125 52973 4.5 1269735187
## 18914 125 54503 4.0 1269733816
## 18915 125 55820 5.0 1244537638
## 18916 125 56367 4.5 1269733995
## 18917 125 57669 3.5 1269736050
## 18918 125 58559 5.0 1244537602
## 18919 125 59315 4.5 1269733998
## 18920 125 59387 5.0 1269733921
## 18921 125 61132 4.0 1269736587
## 18922 125 61323 5.0 1269735674
## 18923 125 64614 4.5 1269735004
## 18924 125 66659 0.5 1269735444
## 18925 125 68157 5.0 1269733529
## 18926 125 68319 0.5 1269736273
## 18927 125 68358 4.5 1244537577
## 18928 125 68954 4.5 1269736384
## 18929 126 1 5.0 833286470
## 18930 126 2 3.0 833286607
## 18931 126 10 3.0 833286456
## 18932 126 34 3.0 833286506
## 18933 126 39 3.0 833286550
## 18934 126 48 3.0 833286654
## 18935 126 58 4.0 833286795
## 18936 126 95 3.0 833286594
## 18937 126 150 5.0 833286399
## 18938 126 153 4.0 833286421
## 18939 126 160 3.0 833286550
## 18940 126 161 4.0 833286456
## 18941 126 185 3.0 833286470
## 18942 126 186 2.0 833286594
## 18943 126 207 3.0 833286795
## 18944 126 208 3.0 833286470
## 18945 126 231 4.0 833286440
## 18946 126 246 4.0 833286688
## 18947 126 252 3.0 833286577
## 18948 126 256 3.0 833286643
## 18949 126 292 4.0 833286456
## 18950 126 316 3.0 833286440
## 18951 126 317 3.0 833286506
## 18952 126 318 4.0 833286440
## 18953 126 329 3.0 833286440
## 18954 126 344 4.0 833286421
## 18955 126 349 4.0 833286421
## 18956 126 350 3.0 833286723
## 18957 126 356 4.0 833286916
## 18958 126 357 3.0 833287094
## 18959 126 362 3.0 833286940
## 18960 126 364 4.0 833286624
## 18961 126 367 4.0 833286643
## 18962 126 368 4.0 833287094
## 18963 126 377 4.0 833286957
## 18964 126 380 4.0 833286399
## 18965 126 410 4.0 833286488
## 18966 126 421 2.0 833286978
## 18967 126 435 3.0 833286550
## 18968 126 440 4.0 833286688
## 18969 126 454 3.0 833286624
## 18970 126 455 2.0 833287220
## 18971 126 457 4.0 833286524
## 18972 126 466 4.0 833287173
## 18973 126 468 3.0 833286712
## 18974 126 471 5.0 833287141
## 18975 126 474 5.0 833286996
## 18976 126 480 5.0 833286940
## 18977 126 497 4.0 833287056
## 18978 126 500 4.0 833287015
## 18979 126 529 4.0 833287141
## 18980 126 531 3.0 833287311
## 18981 126 539 4.0 833287219
## 18982 126 551 4.0 833286776
## 18983 126 588 5.0 833286421
## 18984 126 589 5.0 833286916
## 18985 126 590 3.0 833286399
## 18986 126 592 4.0 833286399
## 18987 126 593 4.0 833286506
## 18988 126 594 3.0 833287296
## 18989 126 595 4.0 833286440
## 18990 126 596 4.0 833287296
## 18991 126 616 3.0 833287296
## 18992 126 736 3.0 833287194
## 18993 127 5 4.0 842323102
## 18994 127 135 5.0 842323288
## 18995 127 193 4.0 842323003
## 18996 127 236 4.0 842322801
## 18997 127 237 5.0 842323052
## 18998 127 339 5.0 842322523
## 18999 127 350 3.0 842322769
## 19000 127 356 4.0 842322467
## 19001 127 367 4.0 842322571
## 19002 127 370 4.0 842322953
## 19003 127 380 4.0 842322388
## 19004 127 381 3.0 842323102
## 19005 127 420 3.0 842322681
## 19006 127 454 4.0 842322523
## 19007 127 480 3.0 842322523
## 19008 127 500 5.0 842322608
## 19009 127 539 4.0 842322709
## 19010 127 586 4.0 842322608
## 19011 127 597 5.0 842322608
## 19012 127 648 4.0 842322979
## 19013 127 736 4.0 842322979
## 19014 128 1 5.0 1049690031
## 19015 128 2 4.0 1049685256
## 19016 128 3 2.0 1049682634
## 19017 128 4 3.0 1049682515
## 19018 128 7 5.0 1049683873
## 19019 128 8 4.0 1049685242
## 19020 128 25 2.0 1049683567
## 19021 128 39 4.0 1049683567
## 19022 128 45 5.0 1049682646
## 19023 128 47 5.0 1049683132
## 19024 128 48 5.0 1049683855
## 19025 128 60 3.0 1049690251
## 19026 128 79 5.0 1049683456
## 19027 128 86 5.0 1049685242
## 19028 128 89 5.0 1049683332
## 19029 128 93 1.0 1049684039
## 19030 128 110 5.0 1049683003
## 19031 128 111 1.0 1049682562
## 19032 128 140 5.0 1049683791
## 19033 128 145 4.0 1049684584
## 19034 128 153 3.0 1049684855
## 19035 128 160 4.0 1049684855
## 19036 128 168 4.0 1049683955
## 19037 128 170 5.0 1049683282
## 19038 128 179 4.0 1049684017
## 19039 128 217 2.0 1049683476
## 19040 128 225 3.0 1049683383
## 19041 128 239 3.0 1049690067
## 19042 128 253 1.0 1049682729
## 19043 128 257 5.0 1049683504
## 19044 128 258 2.0 1049684039
## 19045 128 266 5.0 1049683032
## 19046 128 273 2.0 1049682822
## 19047 128 276 3.0 1049683828
## 19048 128 280 5.0 1049683189
## 19049 128 292 4.0 1049684687
## 19050 128 313 4.0 1049690067
## 19051 128 317 5.0 1049690269
## 19052 128 340 5.0 1049685213
## 19053 128 350 4.0 1049683309
## 19054 128 356 5.0 1049682548
## 19055 128 362 5.0 1049685227
## 19056 128 364 5.0 1049690031
## 19057 128 367 3.0 1049690251
## 19058 128 377 5.0 1049683587
## 19059 128 380 4.0 1049683651
## 19060 128 420 5.0 1049684979
## 19061 128 434 5.0 1049684794
## 19062 128 455 4.0 1049689862
## 19063 128 480 5.0 1049684614
## 19064 128 509 5.0 1049683680
## 19065 128 516 5.0 1049683062
## 19066 128 517 2.0 1049684701
## 19067 128 527 5.0 1049683003
## 19068 128 539 5.0 1049683603
## 19069 128 552 3.0 1049684687
## 19070 128 558 3.0 1049684826
## 19071 128 587 5.0 1049683716
## 19072 128 588 5.0 1049690334
## 19073 128 593 5.0 1049683132
## 19074 128 595 5.0 1049690031
## 19075 128 597 5.0 1049683603
## 19076 128 605 4.0 1049683889
## 19077 128 628 5.0 1049683151
## 19078 128 662 4.0 1049683325
## 19079 128 673 4.0 1049685256
## 19080 128 724 3.0 1049682807
## 19081 128 733 5.0 1049683179
## 19082 128 736 5.0 1049683266
## 19083 128 780 5.0 1049683032
## 19084 128 782 3.0 1049683439
## 19085 128 783 5.0 1049690067
## 19086 128 788 4.0 1049683889
## 19087 128 802 4.0 1049683674
## 19088 128 891 2.0 1049683456
## 19089 128 1015 5.0 1049685213
## 19090 128 1022 4.0 1049690967
## 19091 128 1028 5.0 1049690908
## 19092 128 1029 4.0 1049691020
## 19093 128 1030 5.0 1049690439
## 19094 128 1031 5.0 1049690439
## 19095 128 1032 5.0 1049690967
## 19096 128 1035 5.0 1049690908
## 19097 128 1049 4.0 1049684733
## 19098 128 1059 5.0 1049683620
## 19099 128 1064 3.0 1049690086
## 19100 128 1088 5.0 1049690378
## 19101 128 1092 4.0 1049683249
## 19102 128 1100 3.0 1049683972
## 19103 128 1183 1.0 1049683032
## 19104 128 1197 3.0 1049682539
## 19105 128 1210 5.0 1049682515
## 19106 128 1215 2.0 1049684749
## 19107 128 1265 2.0 1049683548
## 19108 128 1282 2.0 1049691020
## 19109 128 1320 2.0 1049682780
## 19110 128 1377 4.0 1049684769
## 19111 128 1380 5.0 1049690439
## 19112 128 1391 2.0 1049684916
## 19113 128 1393 5.0 1049683587
## 19114 128 1407 4.0 1049682729
## 19115 128 1438 4.0 1049683309
## 19116 128 1457 3.0 1049683751
## 19117 128 1479 4.0 1049683360
## 19118 128 1487 5.0 1049690334
## 19119 128 1488 4.0 1049683062
## 19120 128 1499 2.0 1049683504
## 19121 128 1513 4.0 1049682539
## 19122 128 1518 4.0 1049683351
## 19123 128 1541 3.0 1049683768
## 19124 128 1544 3.0 1049683326
## 19125 128 1552 5.0 1049682623
## 19126 128 1566 5.0 1049690067
## 19127 128 1569 4.0 1049683674
## 19128 128 1573 5.0 1049683179
## 19129 128 1580 4.0 1049685213
## 19130 128 1586 5.0 1049683042
## 19131 128 1608 3.0 1049683220
## 19132 128 1615 4.0 1049683231
## 19133 128 1616 5.0 1049683062
## 19134 128 1617 2.0 1049682679
## 19135 128 1644 3.0 1049682807
## 19136 128 1645 2.0 1049682729
## 19137 128 1667 3.0 1049684733
## 19138 128 1686 5.0 1049683423
## 19139 128 1687 3.0 1049683351
## 19140 128 1688 5.0 1049690067
## 19141 128 1717 2.0 1049682780
## 19142 128 1721 5.0 1049683567
## 19143 128 1760 3.0 1049690354
## 19144 128 1777 4.0 1049683603
## 19145 128 1866 3.0 1049684794
## 19146 128 1876 2.0 1049684762
## 19147 128 1889 2.0 1049683204
## 19148 128 1892 4.0 1049683249
## 19149 128 1895 5.0 1049683587
## 19150 128 1917 5.0 1049683282
## 19151 128 1947 4.0 1049690908
## 19152 128 2006 3.0 1049683738
## 19153 128 2017 5.0 1049690929
## 19154 128 2028 3.0 1049682497
## 19155 128 2078 5.0 1049690908
## 19156 128 2080 5.0 1049690967
## 19157 128 2081 5.0 1049690378
## 19158 128 2087 4.0 1049690967
## 19159 128 2088 4.0 1049690395
## 19160 128 2092 5.0 1049690102
## 19161 128 2096 5.0 1049690967
## 19162 128 2106 4.0 1049683033
## 19163 128 2114 5.0 1049682562
## 19164 128 2126 4.0 1049683439
## 19165 128 2137 5.0 1049682572
## 19166 128 2142 3.0 1049690086
## 19167 128 2162 4.0 1049689902
## 19168 128 2166 4.0 1049683835
## 19169 128 2279 3.0 1049682780
## 19170 128 2291 5.0 1049683620
## 19171 128 2316 4.0 1049683907
## 19172 128 2340 5.0 1049683716
## 19173 128 2353 4.0 1049683166
## 19174 128 2355 5.0 1049690048
## 19175 128 2385 3.0 1049683929
## 19176 128 2389 2.0 1049682835
## 19177 128 2424 5.0 1049683738
## 19178 128 2485 5.0 1049683651
## 19179 128 2490 3.0 1049683204
## 19180 128 2540 4.0 1049683326
## 19181 128 2548 1.0 1049682865
## 19182 128 2558 4.0 1049683873
## 19183 128 2572 5.0 1049683603
## 19184 128 2581 3.0 1049683701
## 19185 128 2605 4.0 1049683309
## 19186 128 2617 4.0 1049683204
## 19187 128 2620 4.0 1049683701
## 19188 128 2628 4.0 1049684749
## 19189 128 2657 5.0 1049690447
## 19190 128 2671 5.0 1049683620
## 19191 128 2687 5.0 1049690048
## 19192 128 2688 3.0 1049683467
## 19193 128 2707 5.0 1049683249
## 19194 128 2710 1.0 1049682795
## 19195 128 2719 3.0 1049682759
## 19196 128 2722 2.0 1049684817
## 19197 128 2762 5.0 1049683132
## 19198 128 2805 5.0 1049683920
## 19199 128 2806 4.0 1049683282
## 19200 128 2840 5.0 1049683282
## 19201 128 2841 5.0 1049683166
## 19202 128 2881 4.0 1049683408
## 19203 128 2888 5.0 1049683873
## 19204 128 2906 3.0 1049683920
## 19205 128 2978 3.0 1049683651
## 19206 128 3005 1.0 1049683266
## 19207 128 3081 4.0 1049683805
## 19208 128 3107 5.0 1049684713
## 19209 128 3114 5.0 1049690031
## 19210 128 3147 5.0 1049682660
## 19211 128 3159 1.0 1049690048
## 19212 128 3176 3.0 1049683249
## 19213 128 3178 4.0 1049684596
## 19214 128 3185 3.0 1049690613
## 19215 128 3285 3.0 1049690808
## 19216 128 3298 3.0 1049690695
## 19217 128 3299 3.0 1049690847
## 19218 128 3400 3.0 1049690102
## 19219 128 3408 5.0 1049690505
## 19220 128 3418 4.0 1049684584
## 19221 128 3489 4.0 1049685256
## 19222 128 3528 4.0 1049683716
## 19223 128 3535 1.0 1049684340
## 19224 128 3553 4.0 1049684436
## 19225 128 3554 4.0 1049684105
## 19226 128 3555 2.0 1049684373
## 19227 128 3556 3.0 1049690644
## 19228 128 3578 5.0 1049685053
## 19229 128 3594 4.0 1049690750
## 19230 128 3615 2.0 1049690152
## 19231 128 3675 3.0 1049690988
## 19232 128 3709 1.0 1049682846
## 19233 128 3717 5.0 1049685113
## 19234 128 3743 5.0 1049684216
## 19235 128 3753 4.0 1049683086
## 19236 128 3755 4.0 1049684436
## 19237 128 3798 5.0 1049684359
## 19238 128 3824 2.0 1049684260
## 19239 128 3825 5.0 1049690710
## 19240 128 3897 3.0 1049690481
## 19241 128 3908 2.0 1049682975
## 19242 128 3953 2.0 1049684289
## 19243 128 3977 3.0 1049685075
## 19244 128 3978 4.0 1049684186
## 19245 128 3980 4.0 1049690622
## 19246 128 3993 4.0 1049690662
## 19247 128 3998 4.0 1049690570
## 19248 128 3999 5.0 1049685145
## 19249 128 4016 2.0 1049690140
## 19250 128 4022 4.0 1049689958
## 19251 128 4023 4.0 1049684131
## 19252 128 4025 4.0 1049685090
## 19253 128 4034 4.0 1049690547
## 19254 128 4039 5.0 1049690378
## 19255 128 4052 4.0 1049682539
## 19256 128 4054 5.0 1049684159
## 19257 128 4056 4.0 1049690750
## 19258 128 4148 3.0 1049684450
## 19259 128 4155 4.0 1049684216
## 19260 128 4161 4.0 1049685113
## 19261 128 4238 4.0 1049684373
## 19262 128 4246 3.0 1049684142
## 19263 128 4299 4.0 1049685113
## 19264 128 4306 5.0 1049690140
## 19265 128 4308 5.0 1049690302
## 19266 128 4310 5.0 1049683099
## 19267 128 4344 4.0 1049685126
## 19268 128 4367 3.0 1049685135
## 19269 128 4369 5.0 1049684373
## 19270 128 4372 3.0 1049684216
## 19271 128 4388 1.0 1049682951
## 19272 128 4448 4.0 1049685075
## 19273 128 4639 3.0 1049684159
## 19274 128 4699 4.0 1049684505
## 19275 128 4720 5.0 1049682921
## 19276 128 4727 1.0 1049683099
## 19277 128 4745 3.0 1049690695
## 19278 128 4756 2.0 1049685166
## 19279 128 4814 5.0 1049684390
## 19280 128 4821 5.0 1049689981
## 19281 128 4823 4.0 1049684120
## 19282 128 4865 2.0 1049682909
## 19283 128 4867 5.0 1049690794
## 19284 128 4878 4.0 1049684082
## 19285 128 4886 5.0 1049690140
## 19286 128 4896 4.0 1049689958
## 19287 128 4901 5.0 1049684340
## 19288 128 4903 3.0 1049690516
## 19289 128 4951 4.0 1049683220
## 19290 128 4963 5.0 1049685053
## 19291 128 4973 5.0 1049684082
## 19292 128 4977 3.0 1049690695
## 19293 128 4979 3.0 1049690580
## 19294 128 4992 4.0 1049684159
## 19295 128 4993 5.0 1049689958
## 19296 128 5010 1.0 1049683086
## 19297 128 5013 1.0 1049690547
## 19298 128 5014 4.0 1049690599
## 19299 128 5066 4.0 1049684216
## 19300 128 5106 4.0 1049684289
## 19301 128 5108 5.0 1049684359
## 19302 128 5151 5.0 1049684159
## 19303 128 5159 5.0 1049690086
## 19304 128 5164 4.0 1049690110
## 19305 128 5266 4.0 1049684359
## 19306 128 5296 3.0 1049684271
## 19307 128 5299 5.0 1049684095
## 19308 128 5312 4.0 1049684359
## 19309 128 5349 3.0 1049685053
## 19310 128 5387 4.0 1049684468
## 19311 128 5388 3.0 1049684359
## 19312 128 5415 4.0 1049690710
## 19313 128 5418 4.0 1049684321
## 19314 128 5444 5.0 1049690140
## 19315 128 5449 4.0 1049684193
## 19316 128 5502 5.0 1049684340
## 19317 128 5524 4.0 1049684171
## 19318 128 5612 4.0 1049684545
## 19319 128 5620 4.0 1049684131
## 19320 128 5630 5.0 1049684321
## 19321 128 5677 3.0 1049684537
## 19322 128 5679 5.0 1049682909
## 19323 128 5693 2.0 1049690439
## 19324 128 5810 4.0 1049690588
## 19325 128 5816 3.0 1049689958
## 19326 128 5829 3.0 1049684216
## 19327 128 5872 1.0 1049685126
## 19328 128 5952 5.0 1049689958
## 19329 128 5954 3.0 1049690674
## 19330 128 5957 5.0 1049684171
## 19331 128 5970 5.0 1049683889
## 19332 128 5989 5.0 1049685053
## 19333 128 5991 5.0 1049690302
## 19334 128 5992 4.0 1049684082
## 19335 128 6155 5.0 1049684186
## 19336 128 6316 1.0 1049690439
## 19337 129 39 3.0 965328135
## 19338 129 527 5.0 965328135
## 19339 129 736 3.0 965328135
## 19340 129 1027 3.0 965328135
## 19341 129 1245 3.0 965328135
## 19342 129 1611 4.0 965328135
## 19343 129 2163 3.0 965328135
## 19344 129 3578 4.0 965328241
## 19345 129 3593 1.0 965328476
## 19346 129 3598 4.0 965328241
## 19347 129 3615 4.0 965328416
## 19348 129 3616 3.0 965328302
## 19349 129 3617 3.0 965328416
## 19350 129 3618 3.0 965328241
## 19351 129 3623 4.0 965328302
## 19352 129 3624 3.0 965328302
## 19353 129 3691 2.0 965328135
## 19354 129 3717 2.0 965328302
## 19355 129 3744 3.0 965328416
## 19356 129 3745 2.0 965328241
## 19357 129 3751 4.0 965328241
## 19358 129 3752 3.0 965328416
## 19359 129 3753 4.0 965328302
## 19360 129 3755 4.0 965328241
## 19361 129 3785 3.0 965328416
## 19362 129 3793 3.0 965328241
## 19363 130 1 3.0 1138997743
## 19364 130 10 3.5 1140723887
## 19365 130 19 1.0 1138998764
## 19366 130 21 3.5 1138999325
## 19367 130 34 3.0 1138999264
## 19368 130 36 4.0 1138999312
## 19369 130 48 3.0 1139003683
## 19370 130 50 3.5 1138997386
## 19371 130 104 1.5 1140723854
## 19372 130 110 3.0 1138999206
## 19373 130 141 2.5 1138999333
## 19374 130 150 4.0 1138999203
## 19375 130 153 0.5 1138998386
## 19376 130 165 2.0 1139003532
## 19377 130 173 1.0 1138999624
## 19378 130 193 0.5 1139000278
## 19379 130 216 3.0 1139000192
## 19380 130 223 3.0 1138999377
## 19381 130 231 3.5 1138999284
## 19382 130 235 0.5 1138998368
## 19383 130 246 4.0 1139002230
## 19384 130 260 4.5 1138997369
## 19385 130 266 2.5 1138999494
## 19386 130 272 3.5 1138999984
## 19387 130 288 1.0 1138999363
## 19388 130 293 4.0 1138997798
## 19389 130 300 3.5 1138999359
## 19390 130 303 3.5 1139000274
## 19391 130 315 3.5 1138998393
## 19392 130 316 2.0 1138999234
## 19393 130 318 3.5 1138985739
## 19394 130 333 1.5 1140723852
## 19395 130 337 4.0 1138999509
## 19396 130 339 3.5 1138999338
## 19397 130 349 3.0 1138999240
## 19398 130 353 3.5 1138998345
## 19399 130 356 3.5 1138998954
## 19400 130 364 3.5 1138998339
## 19401 130 367 2.5 1138999304
## 19402 130 368 3.0 1139003169
## 19403 130 377 3.0 1138999246
## 19404 130 380 3.5 1149644358
## 19405 130 410 2.5 1138999426
## 19406 130 423 2.0 1139003970
## 19407 130 442 1.0 1138998357
## 19408 130 454 2.5 1138998351
## 19409 130 457 4.0 1138998578
## 19410 130 475 3.5 1139000027
## 19411 130 480 3.0 1138999196
## 19412 130 497 4.0 1138998334
## 19413 130 500 3.5 1138999276
## 19414 130 508 1.5 1138999450
## 19415 130 527 4.0 1138997935
## 19416 130 541 4.0 1138997782
## 19417 130 543 2.0 1149644393
## 19418 130 551 3.0 1139004419
## 19419 130 588 4.0 1138998871
## 19420 130 589 3.5 1138998637
## 19421 130 590 4.0 1138998106
## 19422 130 592 3.5 1138998867
## 19423 130 593 3.0 1138997735
## 19424 130 594 4.0 1138999481
## 19425 130 595 3.5 1138999226
## 19426 130 596 4.0 1138985459
## 19427 130 597 3.0 1138999271
## 19428 130 608 2.0 1138999218
## 19429 130 610 2.0 1139000095
## 19430 130 648 2.0 1138999229
## 19431 130 661 3.5 1138999943
## 19432 130 674 1.0 1139003949
## 19433 130 720 4.0 1138997913
## 19434 130 736 3.0 1138999279
## 19435 130 745 4.0 1138985753
## 19436 130 750 3.0 1138998722
## 19437 130 780 1.5 1138998179
## 19438 130 785 2.5 1138999897
## 19439 130 858 4.0 1138997697
## 19440 130 899 4.5 1139000019
## 19441 130 908 3.5 1138998705
## 19442 130 914 3.5 1139003939
## 19443 130 919 3.5 1138999381
## 19444 130 953 5.0 1138999770
## 19445 130 1022 4.0 1139000177
## 19446 130 1023 4.0 1139002594
## 19447 130 1028 4.0 1138999778
## 19448 130 1035 5.0 1138999781
## 19449 130 1036 4.5 1138997776
## 19450 130 1042 3.5 1139000148
## 19451 130 1059 4.0 1138998314
## 19452 130 1079 3.5 1138999458
## 19453 130 1080 0.5 1138998296
## 19454 130 1086 4.0 1139002565
## 19455 130 1090 4.0 1138999632
## 19456 130 1092 3.0 1138999948
## 19457 130 1097 3.0 1138999293
## 19458 130 1101 3.0 1138998307
## 19459 130 1127 3.0 1138999543
## 19460 130 1136 4.5 1138997938
## 19461 130 1148 4.0 1138985476
## 19462 130 1172 4.0 1139003923
## 19463 130 1193 3.0 1138999352
## 19464 130 1196 5.0 1138985701
## 19465 130 1197 4.5 1138985732
## 19466 130 1198 4.0 1138985706
## 19467 130 1199 3.0 1138985488
## 19468 130 1200 4.0 1138997709
## 19469 130 1201 4.0 1138998626
## 19470 130 1204 4.5 1138985495
## 19471 130 1206 3.0 1138999487
## 19472 130 1208 4.5 1138998285
## 19473 130 1210 4.0 1138997428
## 19474 130 1213 3.5 1138998614
## 19475 130 1214 4.5 1138997786
## 19476 130 1215 3.0 1138985543
## 19477 130 1221 4.0 1139003651
## 19478 130 1222 3.5 1138999564
## 19479 130 1223 4.0 1138997410
## 19480 130 1224 5.0 1139002617
## 19481 130 1225 3.5 1138999472
## 19482 130 1240 4.0 1138998260
## 19483 130 1243 3.0 1139003088
## 19484 130 1246 4.0 1138998267
## 19485 130 1247 1.0 1138999570
## 19486 130 1249 4.0 1139000061
## 19487 130 1250 4.0 1140723823
## 19488 130 1259 3.5 1139002409
## 19489 130 1262 4.0 1138997921
## 19490 130 1265 4.5 1138997954
## 19491 130 1266 4.0 1138999766
## 19492 130 1270 4.0 1138998695
## 19493 130 1271 4.0 1139000109
## 19494 130 1275 3.0 1138999930
## 19495 130 1276 2.5 1138999889
## 19496 130 1277 4.0 1139003095
## 19497 130 1282 4.5 1138985550
## 19498 130 1288 4.5 1138998045
## 19499 130 1291 4.0 1138997398
## 19500 130 1293 4.0 1139000042
## 19501 130 1299 4.0 1139000228
## 19502 130 1302 3.5 1138999832
## 19503 130 1304 4.0 1139003629
## 19504 130 1307 3.5 1138999386
## 19505 130 1333 3.0 1138999978
## 19506 130 1339 2.0 1139000051
## 19507 130 1357 3.5 1139000105
## 19508 130 1370 3.5 1138999646
## 19509 130 1371 3.0 1138999999
## 19510 130 1372 1.0 1138985523
## 19511 130 1374 4.0 1138999538
## 19512 130 1375 1.5 1138985568
## 19513 130 1377 1.0 1138999849
## 19514 130 1378 3.0 1139003911
## 19515 130 1380 2.0 1138999651
## 19516 130 1387 3.5 1138999441
## 19517 130 1391 2.5 1138999586
## 19518 130 1393 2.0 1138999392
## 19519 130 1396 3.0 1139003180
## 19520 130 1411 4.0 1139002698
## 19521 130 1449 4.5 1138998001
## 19522 130 1466 3.5 1139000022
## 19523 130 1485 1.0 1140723811
## 19524 130 1500 4.0 1138997985
## 19525 130 1527 4.0 1138998269
## 19526 130 1544 2.5 1138999757
## 19527 130 1562 2.5 1139000200
## 19528 130 1566 2.5 1139003364
## 19529 130 1580 4.0 1138999316
## 19530 130 1610 2.5 1138999414
## 19531 130 1617 3.5 1138998573
## 19532 130 1625 1.5 1138985430
## 19533 130 1641 3.5 1138998229
## 19534 130 1674 3.0 1138985529
## 19535 130 1676 3.5 1138999699
## 19536 130 1682 3.0 1139002586
## 19537 130 1704 3.0 1138999402
## 19538 130 1721 3.0 1138998251
## 19539 130 1722 3.0 1138999878
## 19540 130 1729 3.5 1139003501
## 19541 130 1732 4.0 1138999639
## 19542 130 1747 2.5 1138999939
## 19543 130 1748 4.0 1138998225
## 19544 130 1777 3.5 1138999817
## 19545 130 1884 1.5 1138998812
## 19546 130 1909 1.5 1138985574
## 19547 130 1954 4.0 1139002614
## 19548 130 1957 5.0 1138997823
## 19549 130 1961 3.5 1139003177
## 19550 130 1968 4.5 1138998906
## 19551 130 1997 1.0 1138999860
## 19552 130 2000 3.0 1140723797
## 19553 130 2001 2.0 1138985434
## 19554 130 2003 3.5 1138999966
## 19555 130 2005 4.0 1139000114
## 19556 130 2006 3.5 1138998245
## 19557 130 2011 3.5 1138999592
## 19558 130 2012 2.0 1138998151
## 19559 130 2021 2.0 1139000186
## 19560 130 2023 3.5 1139003198
## 19561 130 2028 4.0 1138998595
## 19562 130 2054 3.0 1138998159
## 19563 130 2078 3.5 1139000209
## 19564 130 2081 3.5 1138985437
## 19565 130 2083 4.0 1139003860
## 19566 130 2087 4.0 1139004425
## 19567 130 2100 3.0 1138998930
## 19568 130 2105 4.0 1139000088
## 19569 130 2108 4.0 1149644350
## 19570 130 2115 2.5 1138998238
## 19571 130 2117 3.5 1139003856
## 19572 130 2124 2.5 1139000322
## 19573 130 2139 4.0 1139002520
## 19574 130 2140 3.5 1139004433
## 19575 130 2150 4.0 1139000159
## 19576 130 2151 3.5 1139003454
## 19577 130 2161 3.5 1139000118
## 19578 130 2174 3.0 1138999518
## 19579 130 2194 4.0 1138998587
## 19580 130 2268 3.5 1138999663
## 19581 130 2291 3.5 1138998919
## 19582 130 2294 3.0 1139000084
## 19583 130 2302 1.0 1138985399
## 19584 130 2324 4.5 1138998220
## 19585 130 2355 2.0 1138999477
## 19586 130 2359 4.0 1139002709
## 19587 130 2396 2.5 1138998912
## 19588 130 2406 4.0 1138998923
## 19589 130 2407 3.0 1138998883
## 19590 130 2409 3.0 1139003270
## 19591 130 2411 2.5 1139003272
## 19592 130 2421 2.5 1139003277
## 19593 130 2455 3.0 1139003192
## 19594 130 2467 4.0 1139002636
## 19595 130 2470 3.5 1138999903
## 19596 130 2502 4.5 1138998134
## 19597 130 2513 1.0 1139003839
## 19598 130 2542 4.5 1138998747
## 19599 130 2571 4.5 1138997421
## 19600 130 2628 3.5 1138999343
## 19601 130 2640 3.0 1138999611
## 19602 130 2642 2.5 1139003845
## 19603 130 2657 1.0 1138998776
## 19604 130 2699 3.0 1138985408
## 19605 130 2716 4.0 1138998888
## 19606 130 2728 4.0 1138998727
## 19607 130 2745 4.5 1139003045
## 19608 130 2761 3.0 1139002432
## 19609 130 2763 3.0 1138999845
## 19610 130 2788 3.5 1138998544
## 19611 130 2791 3.0 1138999531
## 19612 130 2792 2.0 1139003827
## 19613 130 2795 3.5 1139002483
## 19614 130 2797 3.5 1138999514
## 19615 130 2804 3.5 1138999827
## 19616 130 2858 2.0 1138999259
## 19617 130 2890 4.0 1138998896
## 19618 130 2915 2.5 1139000240
## 19619 130 2916 3.5 1138998117
## 19620 130 2918 4.5 1138998120
## 19621 130 2942 2.0 1139003804
## 19622 130 2947 3.5 1139000015
## 19623 130 2948 4.0 1139002557
## 19624 130 2949 3.5 1139002538
## 19625 130 2950 2.0 1139003810
## 19626 130 2951 4.0 1138998769
## 19627 130 2959 4.0 1138998566
## 19628 130 2968 4.0 1139000164
## 19629 130 2985 4.0 1138998205
## 19630 130 2987 3.5 1138999421
## 19631 130 2991 3.5 1139004267
## 19632 130 2993 3.5 1139002739
## 19633 130 2997 3.0 1138998089
## 19634 130 3033 2.5 1138999989
## 19635 130 3034 4.0 1139002528
## 19636 130 3039 3.5 1139002323
## 19637 130 3060 4.0 1139002753
## 19638 130 3087 3.5 1139003233
## 19639 130 3088 3.5 1139002489
## 19640 130 3098 3.5 1139002089
## 19641 130 3100 3.5 1140723698
## 19642 130 3101 3.0 1138999838
## 19643 130 3107 3.0 1139000344
## 19644 130 3108 3.0 1139004475
## 19645 130 3114 4.0 1138997747
## 19646 130 3173 2.5 1139003778
## 19647 130 3175 3.5 1138998124
## 19648 130 3247 3.5 1139003786
## 19649 130 3253 3.0 1138999869
## 19650 130 3256 2.5 1149644342
## 19651 130 3360 3.5 1139002313
## 19652 130 3396 4.0 1139002508
## 19653 130 3441 3.0 1139003239
## 19654 130 3448 3.5 1138998877
## 19655 130 3481 3.5 1138999687
## 19656 130 3527 4.0 1138999865
## 19657 130 3578 3.5 1138999373
## 19658 130 3608 4.0 1139003745
## 19659 130 3623 0.5 1138985391
## 19660 130 3671 2.0 1149644335
## 19661 130 3702 4.0 1139000265
## 19662 130 3703 4.5 1139000232
## 19663 130 3740 3.0 1139003758
## 19664 130 3755 3.5 1139000126
## 19665 130 3793 4.0 1138999444
## 19666 130 3897 2.5 1140723774
## 19667 130 3911 2.0 1138998034
## 19668 130 3967 3.0 1139002677
## 19669 130 3996 4.5 1138998097
## 19670 130 4011 4.0 1138998731
## 19671 130 4022 3.5 1138998191
## 19672 130 4027 4.5 1138998892
## 19673 130 4085 4.0 1139000136
## 19674 130 4226 4.5 1138997445
## 19675 130 4232 4.0 1139003242
## 19676 130 4262 3.0 1139002534
## 19677 130 4306 2.5 1138999409
## 19678 130 4369 2.0 1140723933
## 19679 130 4499 4.0 1138998510
## 19680 130 4545 3.5 1140723925
## 19681 130 4571 4.0 1139003602
## 19682 130 4623 2.5 1139003545
## 19683 130 4643 2.0 1139002134
## 19684 130 4679 4.0 1138997969
## 19685 130 4857 4.5 1139002624
## 19686 130 4886 3.0 1138997700
## 19687 130 4896 4.0 1138999934
## 19688 130 4963 3.5 1138998187
## 19689 130 4971 3.0 1139004237
## 19690 130 4980 3.0 1139003560
## 19691 130 4993 5.0 1138985690
## 19692 130 4995 3.5 1149644325
## 19693 130 5014 3.5 1139003416
## 19694 130 5016 1.0 1149644286
## 19695 130 5049 3.5 1139003209
## 19696 130 5299 3.0 1139000247
## 19697 130 5349 4.0 1138998112
## 19698 130 5378 4.0 1138998084
## 19699 130 5418 3.5 1138998092
## 19700 130 5445 2.5 1138999669
## 19701 130 5650 4.0 1139002715
## 19702 130 5782 3.5 1138997691
## 19703 130 5816 4.0 1139000140
## 19704 130 5952 4.0 1138985686
## 19705 130 6218 4.0 1139002775
## 19706 130 6296 4.0 1138998020
## 19707 130 6333 4.0 1138997801
## 19708 130 6365 3.5 1139000080
## 19709 130 6377 3.0 1138997433
## 19710 130 6378 3.5 1139003694
## 19711 130 6440 3.5 1139004327
## 19712 130 6539 4.5 1138985554
## 19713 130 6664 3.0 1139003401
## 19714 130 6768 4.0 1139003109
## 19715 130 6782 4.0 1139003468
## 19716 130 6791 4.0 1139004312
## 19717 130 6807 3.0 1139003512
## 19718 130 6934 2.0 1139003706
## 19719 130 6947 3.0 1138998783
## 19720 130 6979 4.0 1139002333
## 19721 130 7153 5.0 1138985455
## 19722 130 7247 3.0 1139004044
## 19723 130 7373 1.0 1138998410
## 19724 130 8169 4.0 1139002015
## 19725 130 8368 4.0 1139002299
## 19726 130 8376 4.0 1140723873
## 19727 130 8580 3.5 1139004407
## 19728 130 8636 3.0 1138998609
## 19729 130 8644 3.0 1139003215
## 19730 130 8665 3.0 1138998402
## 19731 130 8879 3.5 1139002515
## 19732 130 8961 4.0 1138997373
## 19733 130 8970 4.0 1139002082
## 19734 130 33493 4.0 1139002726
## 19735 130 33794 3.0 1138997905
## 19736 130 40959 0.5 1139002372
## 19737 130 41566 5.0 1138998599
## 19738 131 306 5.0 992234269
## 19739 131 307 5.0 992234780
## 19740 131 355 3.0 992138514
## 19741 131 356 5.0 992138595
## 19742 131 593 5.0 992234666
## 19743 131 728 5.0 992293816
## 19744 131 1176 4.0 992234666
## 19745 131 1233 3.0 992234666
## 19746 131 1265 4.0 992234930
## 19747 131 1927 5.0 992293241
## 19748 131 1959 4.0 992138514
## 19749 131 2028 5.0 992234780
## 19750 131 2324 5.0 992293816
## 19751 131 2357 4.0 992234780
## 19752 131 2396 5.0 992293816
## 19753 131 2420 3.0 992138595
## 19754 131 2628 4.0 992138465
## 19755 131 2683 3.0 992139118
## 19756 131 2688 2.0 992139284
## 19757 131 2692 3.0 992234780
## 19758 131 2700 2.0 992294336
## 19759 131 2706 3.0 992139118
## 19760 131 2710 4.0 992139152
## 19761 131 2762 5.0 992294297
## 19762 131 2763 3.0 992294336
## 19763 131 2858 4.0 992234780
## 19764 131 2997 5.0 992139152
## 19765 131 3253 2.0 992293841
## 19766 131 3317 4.0 992232012
## 19767 131 3408 5.0 992139237
## 19768 131 3824 3.0 992139118
## 19769 131 3852 3.0 992232012
## 19770 131 3897 4.0 992232012
## 19771 131 3967 5.0 992232012
## 19772 131 3977 3.0 992139205
## 19773 131 3979 1.0 992232108
## 19774 131 3988 2.0 992294182
## 19775 131 3991 3.0 992232081
## 19776 131 4018 4.0 992232081
## 19777 131 4025 3.0 992232081
## 19778 131 4031 2.0 992232012
## 19779 131 4034 4.0 992232012
## 19780 131 4246 5.0 992324879
## 19781 131 4310 3.0 992324879
## 19782 132 126 4.0 1283414558
## 19783 132 153 3.5 1285244965
## 19784 132 296 4.5 1284656495
## 19785 132 356 4.5 1284656497
## 19786 132 364 3.0 1285312208
## 19787 132 377 2.0 1285312185
## 19788 132 590 3.5 1284656529
## 19789 132 593 3.5 1284656508
## 19790 132 595 3.0 1285312214
## 19791 132 1111 5.0 1283508912
## 19792 132 1270 2.5 1285312198
## 19793 132 1900 4.5 1283508886
## 19794 132 2028 2.5 1285244961
## 19795 132 2135 4.0 1283414426
## 19796 132 2174 4.0 1284132807
## 19797 132 2357 4.5 1283435971
## 19798 132 2395 5.0 1283509594
## 19799 132 2571 3.5 1285244968
## 19800 132 2843 5.0 1283509429
## 19801 132 2997 5.0 1284797391
## 19802 132 3000 5.0 1284797346
## 19803 132 3083 5.0 1284658827
## 19804 132 3396 4.0 1283413949
## 19805 132 3456 5.0 1283416290
## 19806 132 3481 5.0 1283423354
## 19807 132 3744 1.5 1283414100
## 19808 132 3996 4.0 1285244977
## 19809 132 4306 2.5 1285245057
## 19810 132 4312 5.0 1296286644
## 19811 132 4873 3.5 1296286126
## 19812 132 4964 4.5 1283419525
## 19813 132 4967 5.0 1296286559
## 19814 132 4973 4.5 1283421870
## 19815 132 4979 5.0 1283509486
## 19816 132 5135 4.5 1283414221
## 19817 132 5577 4.5 1288623777
## 19818 132 5878 4.0 1283421217
## 19819 132 5902 5.0 1283423129
## 19820 132 5971 5.0 1284797310
## 19821 132 6003 5.0 1296286136
## 19822 132 6016 4.0 1283419384
## 19823 132 6211 4.5 1283417628
## 19824 132 6571 4.0 1283421336
## 19825 132 6711 4.5 1283421710
## 19826 132 6867 4.5 1296286578
## 19827 132 7349 4.5 1283508978
## 19828 132 7842 4.5 1283414551
## 19829 132 8012 5.0 1283423388
## 19830 132 8014 4.5 1283421212
## 19831 132 8910 5.0 1284797097
## 19832 132 8949 4.0 1284656613
## 19833 132 27178 5.0 1283423342
## 19834 132 27255 2.5 1283580984
## 19835 132 27727 4.0 1283421625
## 19836 132 27904 3.5 1285241821
## 19837 132 30810 5.0 1283414079
## 19838 132 38886 4.5 1283423121
## 19839 132 39768 4.5 1284658407
## 19840 132 41527 4.5 1283419790
## 19841 132 42935 4.0 1283418860
## 19842 132 44555 4.5 1283419399
## 19843 132 44694 4.0 1283421294
## 19844 132 46578 5.0 1283423097
## 19845 132 48082 5.0 1283419800
## 19846 132 48394 4.0 1283421257
## 19847 132 48744 3.5 1283416148
## 19848 132 50872 4.0 1285241214
## 19849 132 52885 5.0 1284496773
## 19850 132 53189 4.0 1284496709
## 19851 132 55269 5.0 1283423181
## 19852 132 55442 5.0 1283419466
## 19853 132 55555 5.0 1283421604
## 19854 132 56274 4.0 1283417106
## 19855 132 56367 4.0 1283423157
## 19856 132 57243 5.0 1283419368
## 19857 132 57792 3.5 1283580966
## 19858 132 60069 3.5 1285241067
## 19859 132 61323 4.5 1284132727
## 19860 132 65261 5.0 1283416116
## 19861 132 66097 5.0 1284797425
## 19862 132 66371 4.5 1283436034
## 19863 132 66665 5.0 1283509716
## 19864 132 67267 3.5 1283416213
## 19865 132 68954 4.0 1283423105
## 19866 132 69757 4.5 1283419079
## 19867 132 71464 4.5 1283419604
## 19868 132 71899 5.0 1283419541
## 19869 132 72226 5.0 1283419533
## 19870 132 73344 5.0 1283508931
## 19871 132 73587 5.0 1283420183
## 19872 132 74486 4.5 1285335351
## 19873 132 74916 4.5 1283417405
## 19874 132 79132 3.5 1296285967
## 19875 132 79702 4.5 1284658506
## 19876 133 47 2.5 1416147036
## 19877 133 110 2.5 1416147058
## 19878 133 111 0.5 1416151676
## 19879 133 215 1.0 1416148560
## 19880 133 247 1.0 1416148907
## 19881 133 296 4.0 1416147064
## 19882 133 318 2.5 1416146851
## 19883 133 356 3.5 1416147092
## 19884 133 551 2.5 1416149693
## 19885 133 593 0.5 1416147032
## 19886 133 595 2.5 1416166708
## 19887 133 745 0.5 1416152168
## 19888 133 912 2.5 1416151751
## 19889 133 919 2.0 1416152164
## 19890 133 1028 3.0 1416149837
## 19891 133 1080 2.0 1416166759
## 19892 133 1088 1.5 1416166508
## 19893 133 1148 0.5 1416152160
## 19894 133 1172 5.0 1416151906
## 19895 133 1193 3.5 1416147099
## 19896 133 1198 0.5 1416146861
## 19897 133 1207 5.0 1416151382
## 19898 133 1222 0.5 1416167123
## 19899 133 1235 3.0 1416147759
## 19900 133 1247 2.0 1416151683
## 19901 133 1259 5.0 1416147060
## 19902 133 1265 2.0 1416147111
## 19903 133 1270 2.5 1416147040
## 19904 133 1271 2.0 1416149794
## 19905 133 1302 1.0 1416151786
## 19906 133 1354 2.0 1416148867
## 19907 133 1357 1.5 1416148459
## 19908 133 1527 0.5 1416150265
## 19909 133 1653 1.5 1416149433
## 19910 133 1704 4.0 1416147114
## 19911 133 1732 0.5 1416167074
## 19912 133 1784 0.5 1416149415
## 19913 133 1884 2.0 1416149825
## 19914 133 1968 2.5 1416147765
## 19915 133 2005 2.0 1416149643
## 19916 133 2081 4.0 1416152156
## 19917 133 2087 1.0 1416152218
## 19918 133 2090 2.0 1416152182
## 19919 133 2096 1.0 1416152187
## 19920 133 2297 3.5 1416151493
## 19921 133 2324 4.0 1416151832
## 19922 133 2329 3.0 1416147085
## 19923 133 2692 0.5 1416166658
## 19924 133 2739 2.0 1416149829
## 19925 133 2762 0.5 1416147045
## 19926 133 2918 2.0 1416147101
## 19927 133 2920 3.0 1416166743
## 19928 133 2959 3.0 1416149349
## 19929 133 3317 0.5 1416150251
## 19930 133 3897 2.0 1416148801
## 19931 133 3949 0.5 1416147215
## 19932 133 3977 1.0 1416151854
## 19933 133 4896 4.0 1416151762
## 19934 133 4973 3.0 1416147113
## 19935 133 4979 4.0 1416152326
## 19936 133 4993 0.5 1416152056
## 19937 133 5218 0.5 1416151747
## 19938 133 5464 1.0 1416150738
## 19939 133 5608 2.5 1416148463
## 19940 133 5816 4.0 1416151667
## 19941 133 5992 2.0 1416150569
## 19942 133 6218 0.5 1416151745
## 19943 133 6724 3.5 1416148555
## 19944 133 6874 0.5 1416151669
## 19945 133 6953 1.5 1416150273
## 19946 133 7034 2.0 1416149089
## 19947 133 7042 1.5 1416150896
## 19948 133 7147 0.5 1416148619
## 19949 133 7254 2.5 1416150482
## 19950 133 7323 0.5 1416148052
## 19951 133 7371 4.0 1416148500
## 19952 133 8368 4.0 1416149457
## 19953 133 8464 0.5 1416151035
## 19954 133 8533 3.0 1416148805
## 19955 133 8638 0.5 1416147953
## 19956 133 8970 4.0 1416149122
## 19957 133 27178 0.5 1416150855
## 19958 133 27721 2.0 1416148791
## 19959 133 30707 3.5 1416148256
## 19960 133 30810 2.0 1416151800
## 19961 133 33166 4.0 1416152334
## 19962 133 36535 1.0 1416149227
## 19963 133 39183 0.5 1416150529
## 19964 133 40629 3.0 1416148375
## 19965 133 40815 4.0 1416151712
## 19966 133 40819 1.5 1416167044
## 19967 133 40870 3.5 1416148707
## 19968 133 41566 1.0 1416151820
## 19969 133 43376 3.0 1416148514
## 19970 133 45722 2.0 1416151753
## 19971 133 46578 1.5 1416147889
## 19972 133 46723 1.0 1416150791
## 19973 133 47099 2.0 1416148883
## 19974 133 47423 1.0 1416150781
## 19975 133 48082 3.0 1416152236
## 19976 133 48394 0.5 1416147175
## 19977 133 53123 3.5 1416167222
## 19978 133 54001 4.0 1416151665
## 19979 133 55247 3.0 1416166737
## 19980 133 55269 4.0 1416151542
## 19981 133 55442 3.0 1416166854
## 19982 133 55444 1.5 1416148953
## 19983 133 56367 5.0 1416148322
## 19984 133 56587 2.0 1416151937
## 19985 133 57669 4.0 1416148127
## 19986 133 59995 4.0 1416149894
## 19987 133 60069 0.5 1416147095
## 19988 133 60950 0.5 1416151020
## 19989 133 63853 4.5 1416151462
## 19990 133 63876 2.0 1416148342
## 19991 133 64614 2.0 1416147321
## 19992 133 64701 2.0 1416150287
## 19993 133 64716 4.5 1416150651
## 19994 133 64957 2.0 1416151014
## 19995 133 65188 4.0 1416166822
## 19996 133 68157 5.0 1416147245
## 19997 133 69757 4.5 1416151741
## 19998 133 69844 4.0 1416151678
## 19999 133 71899 3.0 1416147749
## 20000 133 72011 0.5 1416149287
## 20001 133 72395 0.5 1416151053
## 20002 133 72641 4.0 1416148353
## 20003 133 73290 5.0 1416149511
## 20004 133 73321 1.5 1416152072
## 20005 133 79132 1.0 1416151620
## 20006 133 80969 4.0 1416150601
## 20007 133 81562 4.0 1416166749
## 20008 133 81591 3.0 1416148004
## 20009 133 81834 4.0 1416148157
## 20010 133 82459 0.5 1416151654
## 20011 133 85438 2.5 1416167104
## 20012 133 85612 3.5 1416151509
## 20013 133 86880 0.5 1416151960
## 20014 133 86882 1.5 1416151825
## 20015 133 88125 4.0 1416151647
## 20016 133 88810 3.0 1416147860
## 20017 133 89492 0.5 1416152127
## 20018 133 89864 2.5 1416148204
## 20019 133 90866 2.5 1416150536
## 20020 133 91500 1.0 1416151755
## 20021 133 91653 1.5 1416149735
## 20022 133 92259 2.5 1416151835
## 20023 133 94959 4.0 1416147324
## 20024 133 95510 0.5 1416151768
## 20025 133 96821 2.5 1416152378
## 20026 133 97304 3.0 1416151661
## 20027 133 97921 2.5 1416151890
## 20028 133 97938 4.5 1416148545
## 20029 133 98056 3.0 1416166671
## 20030 133 98961 4.0 1416151976
## 20031 133 99114 3.5 1416151617
## 20032 133 100383 1.5 1416151903
## 20033 133 100714 4.0 1416148059
## 20034 133 102792 1.0 1416150767
## 20035 133 102993 4.5 1416151920
## 20036 133 103048 4.0 1416166531
## 20037 133 103279 3.0 1416150940
## 20038 133 103372 0.5 1416166636
## 20039 133 104374 2.5 1416148065
## 20040 133 104841 2.0 1416152039
## 20041 133 104879 3.0 1416151814
## 20042 133 106100 4.0 1416146897
## 20043 133 106438 4.5 1416166856
## 20044 133 106441 5.0 1416151147
## 20045 133 106782 2.5 1416146932
## 20046 133 106916 1.0 1416152114
## 20047 133 106920 4.0 1416166520
## 20048 133 107141 2.0 1416146928
## 20049 133 107559 5.0 1416151292
## 20050 133 109374 2.0 1416146891
## 20051 133 110730 0.5 1416146955
## 20052 133 112290 2.5 1416146886
## 20053 133 116939 0.5 1416166965
## 20054 134 1 3.5 1361244876
## 20055 134 2 4.5 1361245855
## 20056 134 5 1.0 1361244162
## 20057 134 10 4.0 1361245744
## 20058 134 16 4.0 1361245969
## 20059 134 19 2.0 1361245876
## 20060 134 29 5.0 1361244735
## 20061 134 32 4.5 1361244318
## 20062 134 36 4.0 1361245841
## 20063 134 39 3.5 1361245791
## 20064 134 47 4.5 1361245167
## 20065 134 110 3.0 1361245653
## 20066 134 141 5.0 1361245810
## 20067 134 145 1.0 1361244182
## 20068 134 153 3.0 1361246182
## 20069 134 165 4.0 1361246178
## 20070 134 196 2.0 1361244165
## 20071 134 223 3.0 1361245161
## 20072 134 231 2.5 1361245725
## 20073 134 253 4.0 1361245770
## 20074 134 260 3.5 1361245346
## 20075 134 292 4.5 1361245780
## 20076 134 293 5.0 1361245227
## 20077 134 296 4.5 1361245254
## 20078 134 300 4.0 1361245883
## 20079 134 316 4.5 1361245717
## 20080 134 317 2.5 1361246029
## 20081 134 318 4.0 1361245496
## 20082 134 319 4.5 1361246780
## 20083 134 329 4.0 1361245761
## 20084 134 342 4.0 1361244190
## 20085 134 344 2.5 1361245689
## 20086 134 349 4.0 1361245733
## 20087 134 356 4.0 1361245469
## 20088 134 364 3.0 1361246175
## 20089 134 367 2.0 1361246185
## 20090 134 377 3.5 1361245691
## 20091 134 440 4.0 1361245940
## 20092 134 457 4.5 1361245658
## 20093 134 480 5.0 1361244829
## 20094 134 485 2.0 1361244151
## 20095 134 494 3.0 1361244172
## 20096 134 500 4.0 1361245714
## 20097 134 539 3.5 1361245759
## 20098 134 541 5.0 1361245289
## 20099 134 551 5.0 1361245119
## 20100 134 552 2.0 1361244168
## 20101 134 586 2.5 1361245768
## 20102 134 587 3.5 1361245754
## 20103 134 588 3.0 1361245676
## 20104 134 589 5.0 1361245153
## 20105 134 592 4.0 1361245665
## 20106 134 593 5.0 1361245451
## 20107 134 595 3.0 1361245704
## 20108 134 597 3.0 1361245727
## 20109 134 608 4.5 1361245683
## 20110 134 648 4.5 1361245694
## 20111 134 708 4.0 1361246034
## 20112 134 736 4.5 1361245707
## 20113 134 778 4.5 1361245287
## 20114 134 780 4.5 1361245661
## 20115 134 910 3.0 1361245112
## 20116 134 924 4.0 1361244392
## 20117 134 950 2.5 1361245321
## 20118 134 1036 3.5 1361245315
## 20119 134 1041 4.5 1361245448
## 20120 134 1073 5.0 1361245751
## 20121 134 1079 5.0 1361244502
## 20122 134 1080 5.0 1361245220
## 20123 134 1094 3.5 1361244188
## 20124 134 1097 4.0 1361245730
## 20125 134 1101 3.0 1361245892
## 20126 134 1127 4.0 1361245079
## 20127 134 1136 5.0 1361244634
## 20128 134 1175 4.5 1361245258
## 20129 134 1193 4.5 1361245538
## 20130 134 1196 4.5 1361245293
## 20131 134 1197 4.0 1361245241
## 20132 134 1198 5.0 1361245317
## 20133 134 1199 4.5 1361245323
## 20134 134 1200 5.0 1361244548
## 20135 134 1206 4.0 1361245326
## 20136 134 1208 3.0 1361245847
## 20137 134 1210 4.5 1361245231
## 20138 134 1214 4.5 1361244541
## 20139 134 1215 4.0 1361245114
## 20140 134 1219 4.5 1361245942
## 20141 134 1220 4.0 1361245638
## 20142 134 1222 2.5 1361245888
## 20143 134 1233 2.5 1361244155
## 20144 134 1240 5.0 1361245348
## 20145 134 1242 2.0 1361244184
## 20146 134 1246 3.5 1361245921
## 20147 134 1247 4.0 1361246026
## 20148 134 1249 5.0 1361245566
## 20149 134 1257 4.0 1361246755
## 20150 134 1258 4.5 1361245265
## 20151 134 1259 4.0 1361245907
## 20152 134 1261 3.5 1361245133
## 20153 134 1265 3.5 1361245107
## 20154 134 1270 4.0 1361245236
## 20155 134 1275 3.0 1361244819
## 20156 134 1278 5.0 1361245157
## 20157 134 1285 5.0 1361244815
## 20158 134 1291 5.0 1361244571
## 20159 134 1307 3.0 1361244856
## 20160 134 1345 4.5 1361246286
## 20161 134 1350 4.0 1361246284
## 20162 134 1356 4.0 1361245916
## 20163 134 1370 4.0 1361246076
## 20164 134 1374 4.0 1361245275
## 20165 134 1376 4.0 1361244145
## 20166 134 1380 2.5 1361246019
## 20167 134 1387 4.5 1361245872
## 20168 134 1391 4.5 1361245977
## 20169 134 1394 4.5 1361245198
## 20170 134 1407 4.5 1361245983
## 20171 134 1517 4.0 1361245835
## 20172 134 1527 4.5 1361245150
## 20173 134 1573 3.5 1361245956
## 20174 134 1580 4.5 1361245709
## 20175 134 1584 3.5 1361245898
## 20176 134 1610 4.0 1361245881
## 20177 134 1625 4.0 1361245171
## 20178 134 1653 4.0 1361245961
## 20179 134 1663 4.5 1361246843
## 20180 134 1676 4.0 1361246089
## 20181 134 1721 3.0 1361245711
## 20182 134 1748 4.5 1361245204
## 20183 134 1917 3.0 1361245851
## 20184 134 1921 4.0 1361246998
## 20185 134 1923 5.0 1361245805
## 20186 134 1961 4.0 1361245795
## 20187 134 1968 4.0 1361244798
## 20188 134 1994 5.0 1361245189
## 20189 134 1997 4.5 1361245251
## 20190 134 2000 4.0 1361245990
## 20191 134 2001 3.0 1361244148
## 20192 134 2005 4.5 1361244814
## 20193 134 2010 4.0 1361245339
## 20194 134 2011 3.5 1361245934
## 20195 134 2012 3.5 1361245906
## 20196 134 2054 3.0 1361245975
## 20197 134 2072 3.0 1361244270
## 20198 134 2100 3.0 1361244186
## 20199 134 2109 4.0 1361246769
## 20200 134 2115 5.0 1361244574
## 20201 134 2132 5.0 1361245435
## 20202 134 2144 4.5 1361246955
## 20203 134 2160 4.0 1361245556
## 20204 134 2174 5.0 1361244489
## 20205 134 2288 3.5 1361245203
## 20206 134 2289 4.0 1361244842
## 20207 134 2291 4.5 1361245104
## 20208 134 2302 4.0 1361246094
## 20209 134 2311 4.0 1361244401
## 20210 134 2355 3.0 1361245894
## 20211 134 2492 3.0 1361244382
## 20212 134 2502 4.0 1361245071
## 20213 134 2504 4.5 1361244387
## 20214 134 2517 4.5 1361244758
## 20215 134 2571 4.0 1361245337
## 20216 134 2572 3.0 1361244291
## 20217 134 2580 4.0 1361246917
## 20218 134 2599 5.0 1361246976
## 20219 134 2617 3.5 1361245986
## 20220 134 2628 4.0 1361245740
## 20221 134 2640 4.0 1361246047
## 20222 134 2664 4.0 1361246291
## 20223 134 2683 5.0 1361245802
## 20224 134 2692 4.5 1361246015
## 20225 134 2710 4.5 1361245914
## 20226 134 2716 4.5 1361244865
## 20227 134 2762 4.5 1361245343
## 20228 134 2791 4.5 1361244871
## 20229 134 2797 3.5 1361245927
## 20230 134 2804 4.5 1361245467
## 20231 134 2858 4.0 1361245681
## 20232 134 2916 4.5 1361245911
## 20233 134 2918 5.0 1361245273
## 20234 134 2947 4.5 1361244879
## 20235 134 2959 4.0 1361245193
## 20236 134 2985 4.0 1361246745
## 20237 134 2987 4.5 1361245860
## 20238 134 2997 4.5 1361245214
## 20239 134 3039 4.5 1361244850
## 20240 134 3052 4.0 1361246037
## 20241 134 3081 4.5 1361246463
## 20242 134 3095 3.0 1361245531
## 20243 134 3101 4.0 1361244178
## 20244 134 3114 3.5 1361245129
## 20245 134 3175 4.5 1361244157
## 20246 134 3253 4.0 1361246747
## 20247 134 3471 4.5 1361245249
## 20248 134 3476 4.5 1361246347
## 20249 134 3499 4.0 1361245185
## 20250 134 3527 4.5 1361245137
## 20251 134 3534 5.0 1361244428
## 20252 134 3546 4.5 1361246695
## 20253 134 3552 4.5 1361246993
## 20254 134 3578 3.0 1361245074
## 20255 134 3623 4.0 1361245997
## 20256 134 3671 4.5 1361244873
## 20257 134 3676 4.5 1361246392
## 20258 134 3702 4.5 1361246719
## 20259 134 3703 5.0 1361245175
## 20260 134 3751 3.5 1361246024
## 20261 134 3793 4.5 1361245788
## 20262 134 3868 4.5 1361246775
## 20263 134 3948 3.5 1361246072
## 20264 134 3977 3.0 1361246008
## 20265 134 4011 4.0 1361245126
## 20266 134 4027 5.0 1361245134
## 20267 134 4034 4.0 1361245994
## 20268 134 4128 4.5 1361246435
## 20269 134 4226 5.0 1361245237
## 20270 134 4262 4.0 1361245147
## 20271 134 4306 4.0 1361244845
## 20272 134 4343 5.0 1361244590
## 20273 134 4427 4.5 1361245417
## 20274 134 4720 4.5 1361246288
## 20275 134 4833 4.5 1361246390
## 20276 134 4878 4.5 1361245165
## 20277 134 4886 3.0 1361244834
## 20278 134 4896 4.0 1361246057
## 20279 134 4963 4.5 1361245862
## 20280 134 4973 5.0 1361245145
## 20281 134 4979 4.5 1361247011
## 20282 134 4993 3.0 1361245076
## 20283 134 5294 4.0 1361246356
## 20284 134 5349 4.5 1361245858
## 20285 134 5378 4.0 1361246062
## 20286 134 5418 5.0 1361244793
## 20287 134 5445 4.5 1361245832
## 20288 134 5528 4.5 1361246669
## 20289 134 5574 4.5 1361244676
## 20290 134 5782 5.0 1361244688
## 20291 134 5952 3.0 1361245069
## 20292 134 6235 4.5 1361245563
## 20293 134 6323 5.0 1361246401
## 20294 134 6333 5.0 1361244857
## 20295 134 6365 4.0 1361246050
## 20296 134 6377 3.0 1361244810
## 20297 134 6379 4.0 1361244604
## 20298 134 6383 3.0 1361244379
## 20299 134 6502 4.5 1361244435
## 20300 134 6539 3.0 1361244837
## 20301 134 6755 4.5 1361246471
## 20302 134 6807 5.0 1361244643
## 20303 134 6874 5.0 1361247167
## 20304 134 7044 4.5 1361247220
## 20305 134 7104 3.5 1361244363
## 20306 134 7153 3.0 1361245067
## 20307 134 7438 5.0 1361245173
## 20308 134 7444 1.5 1361244337
## 20309 134 8169 3.5 1361244279
## 20310 134 8464 4.0 1361246742
## 20311 134 8810 4.0 1361246386
## 20312 134 8874 4.5 1361245123
## 20313 134 8914 4.5 1361246778
## 20314 134 8950 4.5 1361246646
## 20315 134 8961 3.0 1361244869
## 20316 134 27751 3.5 1361244267
## 20317 134 33004 5.0 1361244658
## 20318 134 33794 3.0 1361245093
## 20319 134 34405 5.0 1361244621
## 20320 134 40732 5.0 1361244531
## 20321 134 48394 5.0 1361244748
## 20322 134 48516 4.0 1361244808
## 20323 134 48774 4.5 1361245217
## 20324 134 49272 4.5 1361244801
## 20325 134 51255 4.0 1361245109
## 20326 134 53000 4.5 1361244438
## 20327 134 53468 4.5 1361246394
## 20328 134 53953 5.0 1361244346
## 20329 134 54286 4.5 1361244795
## 20330 134 55820 4.0 1361245196
## 20331 134 56757 2.5 1361246377
## 20332 134 57669 4.5 1361246902
## 20333 134 58559 2.5 1361245099
## 20334 134 59315 4.5 1361244827
## 20335 134 59387 4.5 1361246730
## 20336 134 59615 4.0 1361244568
## 20337 134 60069 3.0 1361244853
## 20338 134 62049 4.5 1361244367
## 20339 134 66934 2.0 1361245355
## 20340 134 68135 1.0 1361244352
## 20341 134 68157 5.0 1361245488
## 20342 134 68237 4.5 1361245186
## 20343 134 68358 4.0 1361244848
## 20344 134 68954 4.5 1361245434
## 20345 134 71057 4.0 1361244468
## 20346 134 71535 5.0 1361246441
## 20347 134 74324 4.0 1361245607
## 20348 134 74458 5.0 1361246568
## 20349 134 76093 4.0 1361245512
## 20350 134 76251 4.0 1361247081
## 20351 134 78499 3.0 1361245454
## 20352 134 79132 4.5 1361245301
## 20353 134 83134 4.5 1361246337
## 20354 134 88125 4.0 1361245571
## 20355 134 89745 5.0 1361244788
## 20356 134 91529 1.0 1361244804
## 20357 134 93510 4.5 1361244409
## 20358 134 93840 5.0 1361244516
## 20359 134 94864 5.0 1361244557
## 20360 134 94959 3.5 1361245472
## 20361 134 96079 5.0 1361244666
## 20362 134 96610 2.0 1361244831
## 20363 134 97757 2.0 1361244263
## 20364 134 99114 4.5 1361245398
## 20365 135 10 3.0 844995924
## 20366 135 18 4.0 844996129
## 20367 135 20 3.0 844995987
## 20368 135 21 3.0 844995924
## 20369 135 27 3.0 844996094
## 20370 135 65 1.0 844996036
## 20371 135 102 3.0 844996094
## 20372 135 104 3.0 844995987
## 20373 135 121 4.0 844996191
## 20374 135 135 1.0 844996017
## 20375 135 209 3.0 844996159
## 20376 135 637 3.0 844996036
## 20377 135 662 3.0 844996171
## 20378 135 736 1.0 844995935
## 20379 135 737 1.0 844996003
## 20380 135 747 2.0 844996017
## 20381 135 754 3.0 844996213
## 20382 135 762 3.0 844996036
## 20383 135 778 5.0 844996017
## 20384 135 818 2.0 844996139
## 20385 135 849 1.0 844996105
## 20386 135 1103 3.0 844996304
## 20387 136 1 4.5 1405977265
## 20388 136 104 4.5 1405977509
## 20389 136 260 4.5 1405975997
## 20390 136 318 4.0 1405975931
## 20391 136 364 4.5 1405977316
## 20392 136 500 3.5 1405977333
## 20393 136 586 3.5 1405977381
## 20394 136 588 4.5 1405977300
## 20395 136 595 4.0 1405977321
## 20396 136 780 4.0 1405977278
## 20397 136 912 3.0 1405975956
## 20398 136 953 4.0 1405977627
## 20399 136 1099 4.5 1405975538
## 20400 136 1196 4.0 1405977294
## 20401 136 1210 3.5 1405977273
## 20402 136 1265 3.0 1405977357
## 20403 136 1682 4.0 1405977426
## 20404 136 1968 1.0 1405977464
## 20405 136 2014 3.5 1405975561
## 20406 136 2135 3.5 1405975526
## 20407 136 2153 4.0 1405975484
## 20408 136 2394 4.0 1405975260
## 20409 136 2422 3.0 1405975376
## 20410 136 2628 4.0 1405977361
## 20411 136 2797 3.5 1405977493
## 20412 136 2926 2.0 1405975398
## 20413 136 3114 4.5 1405977436
## 20414 136 3461 3.0 1405975454
## 20415 136 3552 3.0 1405975219
## 20416 136 3578 5.0 1405977354
## 20417 136 3793 4.0 1405977391
## 20418 136 3991 3.0 1405975645
## 20419 136 4006 4.0 1405975439
## 20420 136 4306 5.0 1405977351
## 20421 136 4886 3.5 1405977432
## 20422 136 4896 4.5 1405977551
## 20423 136 4993 4.0 1405977327
## 20424 136 5349 4.0 1405977459
## 20425 136 5378 4.0 1405977563
## 20426 136 5952 4.5 1405977346
## 20427 136 6377 4.5 1405977449
## 20428 136 6535 3.5 1405975580
## 20429 136 6539 5.0 1405977419
## 20430 136 6663 3.5 1405975698
## 20431 136 6794 3.5 1405975826
## 20432 136 7153 4.0 1405977371
## 20433 136 8636 3.5 1405977595
## 20434 136 8961 4.0 1405977506
## 20435 136 34332 3.5 1405975837
## 20436 136 58559 4.0 1405977519
## 20437 137 10 4.0 946411786
## 20438 137 32 5.0 946412547
## 20439 137 50 5.0 946412158
## 20440 137 60 3.0 946411893
## 20441 137 260 5.0 946412230
## 20442 137 296 5.0 946412180
## 20443 137 349 4.0 946411786
## 20444 137 364 5.0 946412403
## 20445 137 367 5.0 946412262
## 20446 137 380 5.0 946411809
## 20447 137 531 3.0 946411129
## 20448 137 541 4.0 946412480
## 20449 137 588 4.0 946412403
## 20450 137 589 5.0 946412517
## 20451 137 590 4.0 946411646
## 20452 137 594 3.0 946412403
## 20453 137 595 5.0 946412430
## 20454 137 736 4.0 946411786
## 20455 137 898 4.0 946411959
## 20456 137 899 4.0 946412362
## 20457 137 910 5.0 946411987
## 20458 137 919 3.0 946412362
## 20459 137 952 4.0 946411786
## 20460 137 986 2.0 946411524
## 20461 137 1009 4.0 946411809
## 20462 137 1017 4.0 946411646
## 20463 137 1073 3.0 946411524
## 20464 137 1077 3.0 946412547
## 20465 137 1097 5.0 946412262
## 20466 137 1136 4.0 946411987
## 20467 137 1196 5.0 946412480
## 20468 137 1200 3.0 946412517
## 20469 137 1210 5.0 946411653
## 20470 137 1214 3.0 946412480
## 20471 137 1240 5.0 946412480
## 20472 137 1244 1.0 946412054
## 20473 137 1259 5.0 946411610
## 20474 137 1265 5.0 946411375
## 20475 137 1270 5.0 946412054
## 20476 137 1282 2.0 946412430
## 20477 137 1287 5.0 946411567
## 20478 137 1291 5.0 946411646
## 20479 137 1292 2.0 946412015
## 20480 137 1375 4.0 946411833
## 20481 137 1537 3.0 946412054
## 20482 137 1580 5.0 946411685
## 20483 137 1617 4.0 946412180
## 20484 137 1653 4.0 946412570
## 20485 137 1784 3.0 946412072
## 20486 137 1848 2.0 946412302
## 20487 137 1976 1.0 946411077
## 20488 137 2006 4.0 946411720
## 20489 137 2009 5.0 946412603
## 20490 137 2011 5.0 946412603
## 20491 137 2013 4.0 946411720
## 20492 137 2021 3.0 946412302
## 20493 137 2043 2.0 946411646
## 20494 137 2054 2.0 946411893
## 20495 137 2080 4.0 946412403
## 20496 137 2094 2.0 946411077
## 20497 137 2118 5.0 946411354
## 20498 137 2135 3.0 946411893
## 20499 137 2161 2.0 946412262
## 20500 137 2174 3.0 946412230
## 20501 137 2279 1.0 946411077
## 20502 137 2396 4.0 946412015
## 20503 137 2522 2.0 946411129
## 20504 137 2528 4.0 946411786
## 20505 137 2529 5.0 946412517
## 20506 137 2571 4.0 946412517
## 20507 137 2628 4.0 946411858
## 20508 137 2791 3.0 946412031
## 20509 137 2797 4.0 946412262
## 20510 137 2858 3.0 946411180
## 20511 137 2918 4.0 946411987
## 20512 137 2987 3.0 946411610
## 20513 137 3032 4.0 946412547
## 20514 137 3156 2.0 946412517
## 20515 137 3169 4.0 946411129
## 20516 137 5060 4.0 946412015
## 20517 138 1 2.0 1440379001
## 20518 138 50 4.0 1440379088
## 20519 138 260 4.0 1440379476
## 20520 138 296 4.5 1440379472
## 20521 138 318 4.5 1440379086
## 20522 138 356 4.0 1440378996
## 20523 138 480 2.5 1440378998
## 20524 138 527 4.0 1440379092
## 20525 138 780 0.5 1440379483
## 20526 138 858 5.0 1440379089
## 20527 138 924 5.0 1440379938
## 20528 138 1193 4.0 1440379520
## 20529 138 1201 4.0 1440380633
## 20530 138 1203 4.5 1440379345
## 20531 138 1206 4.0 1440380329
## 20532 138 1213 4.0 1440379097
## 20533 138 1221 3.0 1440379096
## 20534 138 1258 4.5 1440380325
## 20535 138 1270 4.0 1440379003
## 20536 138 1584 3.5 1440379423
## 20537 138 2028 3.0 1440379493
## 20538 138 2329 3.0 1440379257
## 20539 138 2571 3.5 1440379002
## 20540 138 2959 4.0 1440379242
## 20541 138 3578 2.0 1440379156
## 20542 138 3793 2.5 1440379164
## 20543 138 4226 5.0 1440379161
## 20544 138 4306 0.5 1440379157
## 20545 138 4886 0.5 1440379171
## 20546 138 4993 3.5 1440379148
## 20547 138 4995 4.5 1440379184
## 20548 138 5349 0.5 1440379177
## 20549 138 5388 3.5 1440380097
## 20550 138 5816 3.0 1440379205
## 20551 138 5952 3.0 1440379149
## 20552 138 5995 4.0 1440379563
## 20553 138 6016 3.0 1440379211
## 20554 138 6333 0.5 1440379198
## 20555 138 6377 1.0 1440379175
## 20556 138 6539 2.5 1440379166
## 20557 138 7153 3.5 1440379152
## 20558 138 7502 4.0 1440379262
## 20559 138 8360 0.5 1440379203
## 20560 138 8368 3.0 1440379816
## 20561 138 8636 0.5 1440379200
## 20562 138 8961 0.5 1440379805
## 20563 138 33794 4.0 1440379809
## 20564 138 44555 3.5 1440379269
## 20565 138 48516 4.5 1440379207
## 20566 138 48780 5.0 1440379248
## 20567 138 55247 3.5 1440379576
## 20568 138 58559 4.0 1440379179
## 20569 138 59315 3.5 1440379218
## 20570 138 68157 4.5 1440379255
## 20571 138 77658 4.5 1440379355
## 20572 138 79132 5.0 1440379245
## 20573 138 80463 3.5 1440379410
## 20574 138 80906 4.0 1440380773
## 20575 138 81845 3.5 1440379572
## 20576 138 86880 2.5 1440380767
## 20577 138 86911 3.0 1440380782
## 20578 138 88810 3.0 1440380741
## 20579 138 89904 1.5 1440380784
## 20580 138 90866 2.0 1440380751
## 20581 138 91529 5.0 1440379247
## 20582 138 95510 0.5 1440380709
## 20583 138 97938 3.0 1440380727
## 20584 138 99114 4.0 1440379643
## 20585 138 103249 2.0 1440380794
## 20586 138 104841 3.5 1440379950
## 20587 138 105844 3.0 1440380763
## 20588 138 106100 3.0 1440380757
## 20589 138 106782 4.0 1440380722
## 20590 138 109374 1.0 1440379581
## 20591 138 109487 5.0 1440379056
## 20592 138 112552 3.0 1440379431
## 20593 138 115713 4.0 1440379062
## 20594 138 116797 4.0 1440379059
## 20595 138 122882 3.5 1440379061
## 20596 138 122900 1.0 1440379297
## 20597 138 134170 3.5 1440379307
## 20598 139 110 3.5 1066860908
## 20599 139 318 3.5 1066860904
## 20600 139 333 4.0 1066860647
## 20601 139 342 4.5 1066860617
## 20602 139 480 4.5 1066861186
## 20603 139 541 4.0 1066861224
## 20604 139 589 3.0 1066861159
## 20605 139 785 2.5 1066860664
## 20606 139 852 2.5 1066860594
## 20607 139 1011 3.5 1066861087
## 20608 139 1097 4.5 1066861156
## 20609 139 1196 5.0 1066861128
## 20610 139 1206 2.5 1066861232
## 20611 139 1210 5.0 1066861138
## 20612 139 1240 4.0 1066861175
## 20613 139 1242 3.0 1066860858
## 20614 139 1258 4.5 1066860569
## 20615 139 1259 4.0 1066860889
## 20616 139 1270 4.0 1066861118
## 20617 139 1461 2.5 1066861049
## 20618 139 1517 4.5 1066860555
## 20619 139 1580 3.5 1066861243
## 20620 139 1584 5.0 1066861183
## 20621 139 1653 3.5 1066860612
## 20622 139 1704 4.5 1066860897
## 20623 139 1917 0.5 1066860579
## 20624 139 1958 3.0 1066860952
## 20625 139 1961 4.5 1066860883
## 20626 139 1968 3.5 1066860861
## 20627 139 2011 4.0 1066860601
## 20628 139 2100 2.0 1066860669
## 20629 139 2174 3.0 1066860559
## 20630 139 2268 5.0 1066860609
## 20631 139 2302 3.5 1066860675
## 20632 139 2324 5.0 1066860586
## 20633 139 2395 3.5 1066860623
## 20634 139 2529 3.0 1066861192
## 20635 139 2571 4.5 1066861121
## 20636 139 2712 2.0 1066860605
## 20637 139 2791 2.0 1066860946
## 20638 139 2804 5.0 1066860658
## 20639 139 2916 4.0 1066861215
## 20640 139 2918 3.0 1066860979
## 20641 139 3098 4.0 1066860886
## 20642 139 3147 4.5 1066860820
## 20643 139 3386 4.5 1066860900
## 20644 139 3408 4.5 1066860638
## 20645 139 3471 4.0 1066861168
## 20646 139 3538 4.5 1066860969
## 20647 139 3702 3.0 1066861237
## 20648 139 3994 3.5 1066861206
## 20649 139 4149 3.5 1066861079
## 20650 139 4226 4.5 1066860833
## 20651 139 4247 0.5 1066861031
## 20652 139 4290 3.0 1066861058
## 20653 139 4394 3.0 1066861052
## 20654 139 4532 0.5 1066861066
## 20655 139 4929 1.0 1066861099
## 20656 139 4995 4.0 1066860912
## 20657 139 5054 3.5 1066861201
## 20658 139 5308 4.5 1066861006
## 20659 139 5349 3.5 1066861152
## 20660 139 5360 3.5 1066861002
## 20661 139 5377 4.0 1066860838
## 20662 139 5445 4.5 1066861132
## 20663 139 5502 4.0 1066861171
## 20664 139 5989 4.0 1066860827
## 20665 139 6796 5.0 1066860848
## 20666 140 5 4.5 1398068239
## 20667 140 60 2.0 1398068334
## 20668 140 216 1.0 1398068296
## 20669 140 256 3.5 1398068279
## 20670 140 267 3.5 1398068429
## 20671 140 318 5.0 1398068779
## 20672 140 342 0.5 1398068255
## 20673 140 356 4.5 1398069548
## 20674 140 364 4.0 1398069877
## 20675 140 552 0.5 1398068232
## 20676 140 593 4.5 1398069545
## 20677 140 765 4.5 1398068376
## 20678 140 1197 3.5 1398068846
## 20679 140 1203 4.5 1398068810
## 20680 140 1513 2.0 1398068298
## 20681 140 2059 4.5 1398068475
## 20682 140 2329 3.5 1398068868
## 20683 140 2470 4.0 1398068249
## 20684 140 2565 1.5 1398068441
## 20685 140 3247 3.5 1398068320
## 20686 140 3564 3.5 1398068624
## 20687 140 4022 4.5 1398070519
## 20688 140 4306 4.5 1398069816
## 20689 140 4896 4.0 1398070559
## 20690 140 4963 4.5 1398069792
## 20691 140 5349 4.0 1398070498
## 20692 140 5445 3.0 1398070522
## 20693 140 5618 1.5 1398068815
## 20694 140 5816 3.0 1398070657
## 20695 140 5989 4.0 1398069787
## 20696 140 6218 1.5 1398068331
## 20697 140 6539 4.0 1398069800
## 20698 140 6942 3.0 1398070514
## 20699 140 8368 4.5 1398070576
## 20700 140 31658 4.0 1398070578
## 20701 140 57504 3.5 1398070653
## 20702 140 72641 3.0 1398070681
## 20703 140 74458 3.5 1398069668
## 20704 140 81845 3.0 1398069605
## 20705 140 81847 3.0 1398069703
## 20706 140 88125 3.5 1398069632
## 20707 140 97895 3.5 1398069387
## 20708 140 103801 2.5 1398069406
## 20709 140 104374 4.0 1398069369
## 20710 140 104841 4.5 1398069325
## 20711 140 106540 4.0 1398069540
## 20712 141 318 5.0 944933710
## 20713 141 349 4.0 956540824
## 20714 141 356 3.0 944933710
## 20715 141 480 4.0 944933847
## 20716 141 648 3.0 979428119
## 20717 141 1061 3.0 959003310
## 20718 141 1210 3.0 949293748
## 20719 141 1544 3.0 998014490
## 20720 141 1693 4.0 958707490
## 20721 141 1876 2.0 945056203
## 20722 141 2028 5.0 944933710
## 20723 141 2427 2.0 947534592
## 20724 141 2571 4.0 949293609
## 20725 141 2628 2.0 979428220
## 20726 141 2724 2.0 979428203
## 20727 141 2881 3.0 952206207
## 20728 141 3147 4.0 949293748
## 20729 141 3185 2.0 979428221
## 20730 141 3256 4.0 979428134
## 20731 141 3354 1.0 979428095
## 20732 141 3513 2.0 959003302
## 20733 141 3623 3.0 979428119
## 20734 141 3753 4.0 979428134
## 20735 141 3755 3.0 979428204
## 20736 141 3793 2.0 979428037
## 20737 141 3916 5.0 979428077
## 20738 141 4022 3.0 998014346
## 20739 141 4033 4.0 998014346
## 20740 141 4034 4.0 998014346
## 20741 141 4310 4.0 991081955
## 20742 141 4638 3.0 998014490
## 20743 142 1 4.0 997731606
## 20744 142 150 3.0 997098002
## 20745 142 260 2.0 997731322
## 20746 142 296 2.0 997731488
## 20747 142 344 1.0 997097547
## 20748 142 356 3.0 997097201
## 20749 142 593 5.0 997731460
## 20750 142 904 3.0 997731488
## 20751 142 909 3.0 997098002
## 20752 142 919 5.0 997731439
## 20753 142 1097 3.0 997731585
## 20754 142 1136 1.0 997731439
## 20755 142 1196 1.0 997731406
## 20756 142 1219 4.0 997731439
## 20757 142 1270 4.0 997098178
## 20758 142 1327 3.0 997097862
## 20759 142 1379 1.0 997097126
## 20760 142 1387 4.0 997731540
## 20761 142 1499 2.0 997097887
## 20762 142 1984 1.0 997097104
## 20763 142 2011 3.0 997098179
## 20764 142 2012 3.0 997098179
## 20765 142 2028 3.0 997731406
## 20766 142 2133 2.0 997097602
## 20767 142 2262 2.0 997097547
## 20768 142 2378 1.0 997097175
## 20769 142 2522 2.0 997097663
## 20770 142 2699 2.0 997098027
## 20771 142 2791 3.0 997097663
## 20772 142 2846 3.0 997097602
## 20773 142 2971 3.0 997097731
## 20774 142 3107 4.0 997098179
## 20775 142 3114 4.0 997731514
## 20776 142 3147 4.0 997731488
## 20777 142 3250 3.0 997097710
## 20778 142 3362 4.0 997097201
## 20779 142 3363 3.0 997097801
## 20780 142 3421 3.0 997097922
## 20781 142 3471 2.0 997731439
## 20782 142 3524 3.0 997098048
## 20783 142 3534 3.0 997097461
## 20784 142 3543 3.0 997731565
## 20785 142 4238 3.0 997097753
## 20786 142 4291 1.0 997097510
## 20787 142 4465 3.0 997097547
## 20788 142 4564 2.0 997097774
## 20789 142 4673 3.0 999350539
## 20790 142 4677 2.0 999350539
## 20791 142 4679 3.0 999350539
## 20792 142 4686 1.0 999350510
## 20793 142 4709 3.0 999350465
## 20794 142 4714 1.0 997097967
## 20795 142 4720 3.0 999350418
## 20796 142 4744 3.0 1001762787
## 20797 142 4784 2.0 1001762723
## 20798 142 4787 4.0 1001762723
## 20799 142 4803 3.0 1001762672
## 20800 142 4814 4.0 1001762651
## 20801 142 4830 3.0 1001762599
## 20802 142 4834 1.0 1001762575
## 20803 142 4835 2.0 1001762575
## 20804 143 47 4.5 1149649707
## 20805 143 101 5.0 1149650173
## 20806 143 160 1.5 1149647922
## 20807 143 173 2.0 1149648223
## 20808 143 225 1.0 1149648213
## 20809 143 296 4.0 1149649318
## 20810 143 318 4.5 1149651150
## 20811 143 353 3.0 1149647927
## 20812 143 356 5.0 1149649352
## 20813 143 370 1.5 1149648270
## 20814 143 432 1.0 1149648209
## 20815 143 480 3.0 1149649360
## 20816 143 522 1.0 1149650329
## 20817 143 527 3.5 1149651175
## 20818 143 593 4.5 1149649343
## 20819 143 778 4.5 1149651154
## 20820 143 832 3.5 1149648233
## 20821 143 920 5.0 1149647934
## 20822 143 1084 4.0 1149649643
## 20823 143 1089 4.5 1149649880
## 20824 143 1188 4.0 1149652279
## 20825 143 1206 5.0 1149649966
## 20826 143 1245 1.5 1149650037
## 20827 143 1247 4.5 1149650168
## 20828 143 1252 3.5 1149650138
## 20829 143 1258 4.5 1149649889
## 20830 143 1288 2.0 1149650080
## 20831 143 1304 4.0 1149647915
## 20832 143 1358 4.0 1149650028
## 20833 143 1380 3.0 1149648260
## 20834 143 1449 1.5 1149650110
## 20835 143 1653 1.0 1149648217
## 20836 143 1673 4.5 1149649730
## 20837 143 1729 4.0 1149650090
## 20838 143 1884 4.0 1149649531
## 20839 143 2011 3.0 1149647890
## 20840 143 2054 1.0 1149648220
## 20841 143 2329 4.5 1149651144
## 20842 143 2333 5.0 1149650313
## 20843 143 2502 4.5 1149649957
## 20844 143 2599 3.0 1149648257
## 20845 143 2858 4.5 1149651146
## 20846 143 2908 3.5 1149650126
## 20847 143 2959 4.5 1149649718
## 20848 143 3019 3.0 1149650334
## 20849 143 3949 3.5 1149649869
## 20850 143 4011 5.0 1149651197
## 20851 143 4034 3.5 1149648743
## 20852 143 4235 4.5 1149649478
## 20853 143 4262 3.5 1149649918
## 20854 143 4308 4.5 1149652281
## 20855 143 4848 0.5 1149650208
## 20856 143 4855 4.5 1149649979
## 20857 143 4886 3.0 1149648266
## 20858 143 4973 4.5 1149649456
## 20859 143 4979 5.0 1149649247
## 20860 143 5225 4.5 1149650154
## 20861 143 5391 4.5 1149649786
## 20862 143 5445 0.5 1149648226
## 20863 143 5669 4.5 1149651166
## 20864 143 6711 4.5 1149649208
## 20865 143 6874 5.0 1149649302
## 20866 143 6953 4.0 1149649945
## 20867 143 7147 5.0 1149649503
## 20868 143 7438 5.0 1149649305
## 20869 143 8645 4.5 1149649993
## 20870 143 8784 4.5 1149649885
## 20871 143 8873 4.0 1149651186
## 20872 143 8970 5.0 1149650013
## 20873 143 30810 5.0 1149650322
## 20874 143 32587 5.0 1149649858
## 20875 143 33166 4.5 1149651189
## 20876 143 33794 2.5 1149651161
## 20877 143 34437 3.0 1149650183
## 20878 143 39414 5.0 1149649189
## 20879 143 44191 5.0 1149649076
## 20880 143 45499 3.5 1149649117
## 20881 144 10 5.0 837455462
## 20882 144 21 2.0 837455574
## 20883 144 32 5.0 837455646
## 20884 144 39 3.0 837455602
## 20885 144 47 4.0 837455508
## 20886 144 150 3.0 837455152
## 20887 144 153 3.0 837455212
## 20888 144 165 4.0 837455201
## 20889 144 185 2.0 837455463
## 20890 144 225 4.0 837455538
## 20891 144 253 3.0 837455463
## 20892 144 266 4.0 837455648
## 20893 144 282 2.0 837455702
## 20894 144 288 3.0 837455510
## 20895 144 292 3.0 837455389
## 20896 144 296 5.0 837455154
## 20897 144 315 3.0 837455702
## 20898 144 316 3.0 837455360
## 20899 144 329 3.0 837455359
## 20900 144 337 4.0 837455765
## 20901 144 344 3.0 837455207
## 20902 144 349 5.0 837455205
## 20903 144 356 3.0 837455538
## 20904 144 364 5.0 837455538
## 20905 144 377 5.0 837455646
## 20906 144 380 3.0 837455155
## 20907 144 410 2.0 837455505
## 20908 144 420 1.0 837455574
## 20909 144 432 2.0 837455642
## 20910 144 434 3.0 837455389
## 20911 144 454 5.0 837455537
## 20912 144 457 5.0 837455389
## 20913 144 480 4.0 837455574
## 20914 144 500 3.0 837455700
## 20915 144 527 4.0 837455762
## 20916 144 553 3.0 837455769
## 20917 144 588 3.0 837455203
## 20918 144 589 5.0 837455602
## 20919 144 590 4.0 837455151
## 20920 144 592 3.0 837455149
## 20921 144 593 5.0 837455389
## 20922 145 10 5.0 845421721
## 20923 145 19 5.0 845421886
## 20924 145 32 5.0 845421966
## 20925 145 47 5.0 845421789
## 20926 145 110 4.0 845421721
## 20927 145 150 3.0 845421514
## 20928 145 153 5.0 845421597
## 20929 145 161 5.0 845421721
## 20930 145 165 5.0 845421597
## 20931 145 185 5.0 845421758
## 20932 145 208 3.0 845421721
## 20933 145 225 5.0 845421966
## 20934 145 231 5.0 845421636
## 20935 145 253 3.0 845421758
## 20936 145 292 4.0 845421721
## 20937 145 296 3.0 845421514
## 20938 145 300 1.0 845421838
## 20939 145 316 5.0 845421676
## 20940 145 317 5.0 845421966
## 20941 145 329 3.0 845421636
## 20942 145 344 5.0 845421597
## 20943 145 356 5.0 845421676
## 20944 145 364 5.0 845421789
## 20945 145 367 5.0 845421838
## 20946 145 377 5.0 845421789
## 20947 145 380 5.0 845421515
## 20948 145 410 4.0 845421838
## 20949 145 434 5.0 845421676
## 20950 145 480 5.0 845421676
## 20951 145 500 5.0 845421838
## 20952 145 587 5.0 845421838
## 20953 145 588 4.0 845421597
## 20954 145 589 5.0 845421789
## 20955 145 592 5.0 845421514
## 20956 145 593 5.0 845421636
## 20957 145 595 4.0 845421636
## 20958 145 597 5.0 845421886
## 20959 145 780 5.0 845421991
## 20960 146 1 5.0 1256071139
## 20961 146 150 4.0 1256071106
## 20962 146 153 2.0 1256071554
## 20963 146 165 3.0 1256071535
## 20964 146 260 5.0 1256071143
## 20965 146 318 4.5 1256071030
## 20966 146 344 2.5 1256071403
## 20967 146 356 4.0 1256071022
## 20968 146 364 5.0 1256071598
## 20969 146 377 2.5 1256071385
## 20970 146 380 2.5 1256071313
## 20971 146 435 3.0 1256070632
## 20972 146 457 4.0 1256071062
## 20973 146 480 4.0 1256071213
## 20974 146 494 3.5 1256070637
## 20975 146 520 4.0 1256070626
## 20976 146 524 3.5 1256070798
## 20977 146 543 3.0 1256070669
## 20978 146 588 5.0 1256071447
## 20979 146 592 4.0 1256071159
## 20980 146 593 4.0 1256071052
## 20981 146 733 4.0 1256071636
## 20982 146 736 3.5 1256071551
## 20983 146 780 3.5 1256071087
## 20984 146 1097 3.5 1256071515
## 20985 146 1196 4.0 1256071274
## 20986 146 1198 4.0 1256071242
## 20987 146 1210 4.0 1256071366
## 20988 146 1270 4.5 1256071235
## 20989 146 1302 4.0 1256070700
## 20990 146 1569 1.5 1256070731
## 20991 146 1580 3.5 1256071497
## 20992 146 1721 3.0 1256071301
## 20993 146 1831 1.0 1256070809
## 20994 146 2006 2.5 1256070651
## 20995 146 2028 4.5 1256071156
## 20996 146 2302 3.5 1256070622
## 20997 146 2478 3.5 1256070833
## 20998 146 2628 3.0 1256071434
## 20999 146 2683 4.0 1256071580
## 21000 146 2716 4.0 1256071454
## 21001 146 2762 3.5 1256071125
## 21002 146 2804 4.0 1256070692
## 21003 146 2881 2.5 1256070791
## 21004 146 2959 3.5 1256071570
## 21005 146 3105 3.5 1256070838
## 21006 146 3247 3.0 1256070819
## 21007 146 3421 4.5 1256070712
## 21008 146 4226 4.5 1256071259
## 21009 146 4306 4.5 1256071075
## 21010 146 4886 3.5 1256071278
## 21011 146 4963 4.0 1256071486
## 21012 146 5378 3.0 1256071619
## 21013 146 6377 4.5 1256071103
## 21014 146 6711 3.0 1256071561
## 21015 146 6874 3.0 1256071208
## 21016 146 7438 2.5 1256071348
## 21017 146 8360 3.0 1256071512
## 21018 146 8961 4.5 1256071187
## 21019 146 33493 3.5 1256071623
## 21020 146 33794 3.5 1256071306
## 21021 146 44191 4.0 1256071471
## 21022 146 48516 4.0 1256071373
## 21023 146 49272 3.5 1256071427
## 21024 146 51662 3.0 1256071632
## 21025 146 56367 3.0 1256071408
## 21026 146 58559 5.0 1256071081
## 21027 146 59315 3.5 1256071479
## 21028 146 59945 3.0 1256071414
## 21029 146 60069 4.0 1256071467
## 21030 146 66915 3.0 1256071118
## 21031 146 71102 4.0 1256071640
## 21032 146 71460 1.0 1256071015
## 21033 147 50 5.0 1405201558
## 21034 147 111 5.0 1405202753
## 21035 147 207 3.5 1405201255
## 21036 147 296 5.0 1405201686
## 21037 147 381 3.5 1405201272
## 21038 147 527 4.5 1405202775
## 21039 147 608 5.0 1405202743
## 21040 147 778 5.0 1405202767
## 21041 147 934 4.0 1405201296
## 21042 147 1199 3.5 1405202676
## 21043 147 1258 5.0 1405202787
## 21044 147 1556 2.0 1405201244
## 21045 147 1588 4.0 1405201311
## 21046 147 1665 3.5 1405201384
## 21047 147 2116 4.0 1405201249
## 21048 147 2123 4.0 1405201435
## 21049 147 2324 4.5 1405202640
## 21050 147 2542 5.0 1405202792
## 21051 147 2565 4.0 1405201348
## 21052 147 2686 3.0 1405201225
## 21053 147 2692 5.0 1405202772
## 21054 147 2858 4.5 1405202798
## 21055 147 3034 4.0 1405201300
## 21056 147 3155 4.0 1405201361
## 21057 147 3159 4.0 1405201319
## 21058 147 3396 3.0 1405201208
## 21059 147 3825 2.0 1405201342
## 21060 147 3949 4.0 1405201615
## 21061 147 4011 5.0 1405201762
## 21062 147 4306 4.5 1405202645
## 21063 147 6016 5.0 1405201578
## 21064 147 7323 5.0 1405202632
## 21065 147 8873 4.0 1405203154
## 21066 147 35836 1.5 1405201645
## 21067 147 40819 5.0 1405202727
## 21068 147 46578 5.0 1405201783
## 21069 147 56367 5.0 1405201523
## 21070 147 58559 4.0 1405201572
## 21071 148 29 3.5 1059603929
## 21072 148 32 4.0 1059603935
## 21073 148 40 4.5 1059507590
## 21074 148 52 4.0 1059504972
## 21075 148 58 4.0 1059504946
## 21076 148 145 2.0 1059530841
## 21077 148 172 2.5 1059504993
## 21078 148 185 3.0 1059604099
## 21079 148 232 4.5 1059603866
## 21080 148 329 4.0 1059604036
## 21081 148 364 4.0 1059604221
## 21082 148 480 4.5 1059604007
## 21083 148 492 3.5 1059604535
## 21084 148 585 2.5 1059530882
## 21085 148 588 4.0 1059604244
## 21086 148 589 3.5 1059507607
## 21087 148 590 3.5 1059507635
## 21088 148 596 4.5 1059604241
## 21089 148 648 4.0 1059604568
## 21090 148 780 3.5 1059603985
## 21091 148 903 5.0 1059604409
## 21092 148 904 5.0 1059604392
## 21093 148 913 4.0 1059604403
## 21094 148 919 4.5 1059604212
## 21095 148 924 5.0 1059604500
## 21096 148 934 3.5 1059603845
## 21097 148 950 3.5 1059604425
## 21098 148 1022 4.5 1059604253
## 21099 148 1028 5.0 1059505000
## 21100 148 1037 3.0 1059604127
## 21101 148 1097 5.0 1059604303
## 21102 148 1136 4.5 1059604684
## 21103 148 1172 5.0 1059680324
## 21104 148 1175 4.0 1059603920
## 21105 148 1208 5.0 1059504953
## 21106 148 1234 4.0 1059604733
## 21107 148 1247 4.0 1059504938
## 21108 148 1249 3.5 1059507495
## 21109 148 1252 5.0 1059604431
## 21110 148 1258 2.0 1059504978
## 21111 148 1261 3.0 1059531137
## 21112 148 1269 5.0 1059604396
## 21113 148 1278 5.0 1059604712
## 21114 148 1284 4.0 1059604455
## 21115 148 1288 4.5 1059505008
## 21116 148 1304 4.0 1059504930
## 21117 148 1391 2.5 1059604044
## 21118 148 1394 4.5 1059504950
## 21119 148 1449 4.5 1059604760
## 21120 148 1517 4.5 1059504984
## 21121 148 1544 3.5 1059604070
## 21122 148 1580 4.0 1059603838
## 21123 148 1584 3.5 1059603976
## 21124 148 1610 5.0 1059507616
## 21125 148 1617 4.5 1059604383
## 21126 148 1625 4.0 1059604479
## 21127 148 1653 4.0 1059603970
## 21128 148 1676 3.5 1059604059
## 21129 148 1690 3.0 1059604077
## 21130 148 1711 4.0 1059604605
## 21131 148 1732 4.0 1059604507
## 21132 148 1779 3.5 1059604123
## 21133 148 1909 3.5 1059604016
## 21134 148 1921 4.5 1059603952
## 21135 148 1923 4.0 1059507622
## 21136 148 2046 4.5 1059603988
## 21137 148 2053 2.5 1059604160
## 21138 148 2080 4.5 1059604227
## 21139 148 2085 4.0 1059604267
## 21140 148 2087 4.0 1059604258
## 21141 148 2116 4.0 1059531240
## 21142 148 2174 4.0 1059504959
## 21143 148 2184 4.5 1059604513
## 21144 148 2324 4.0 1059504997
## 21145 148 2571 4.5 1059603925
## 21146 148 2599 5.0 1059504967
## 21147 148 2628 2.5 1059604051
## 21148 148 2706 1.0 1059504922
## 21149 148 2797 4.5 1059504963
## 21150 148 2858 5.0 1059604705
## 21151 148 2986 3.5 1059530938
## 21152 148 2997 4.5 1059604716
## 21153 148 3175 4.0 1059603944
## 21154 148 3176 3.5 1059604467
## 21155 148 3256 4.0 1059507647
## 21156 148 3262 3.0 1059604600
## 21157 148 3362 4.0 1059604747
## 21158 148 3386 3.5 1059604495
## 21159 148 3462 5.0 1059507502
## 21160 148 3476 4.5 1059604531
## 21161 148 3481 5.0 1059604744
## 21162 148 3504 4.0 1059604730
## 21163 148 3671 4.0 1059604766
## 21164 148 3730 4.5 1059604436
## 21165 148 3897 4.5 1059604694
## 21166 148 3911 4.5 1059604772
## 21167 148 3977 3.0 1059530858
## 21168 148 3996 5.0 1059504987
## 21169 148 4105 3.0 1059531133
## 21170 148 4226 5.0 1059604413
## 21171 148 4306 5.0 1059604208
## 21172 148 4734 2.0 1059680407
## 21173 148 4835 4.0 1059507563
## 21174 148 4848 2.0 1059604523
## 21175 148 4878 4.0 1059604483
## 21176 148 4886 5.0 1059604199
## 21177 148 4896 4.0 1059531179
## 21178 148 4993 5.0 1059531227
## 21179 148 5013 3.0 1059604443
## 21180 148 5060 4.5 1059604726
## 21181 148 5291 5.0 1059604388
## 21182 148 5444 4.0 1059604248
## 21183 148 5670 4.0 1059507612
## 21184 148 5791 4.0 1059507522
## 21185 148 5816 5.0 1059604290
## 21186 148 5878 4.5 1059530804
## 21187 148 5900 4.0 1059530921
## 21188 148 5902 3.0 1059507478
## 21189 148 5944 3.5 1059530891
## 21190 148 5945 4.5 1059507529
## 21191 148 5952 4.5 1059531235
## 21192 148 5956 3.5 1059507573
## 21193 148 5995 5.0 1059507470
## 21194 148 6170 4.0 1059604204
## 21195 148 6195 4.0 1059531188
## 21196 148 6269 5.0 1059531274
## 21197 148 6303 3.0 1059604518
## 21198 148 6333 3.5 1059505089
## 21199 148 6365 4.5 1059505092
## 21200 148 6440 4.0 1059507519
## 21201 148 6502 4.5 1059505081
## 21202 148 6561 4.5 1059507486
## 21203 149 1 3.0 1436919660
## 21204 149 39 3.5 1436923278
## 21205 149 47 3.5 1436922267
## 21206 149 50 3.0 1436922260
## 21207 149 104 1.0 1436923406
## 21208 149 231 4.0 1436923238
## 21209 149 253 3.5 1436920137
## 21210 149 260 3.5 1436919731
## 21211 149 293 4.5 1436922129
## 21212 149 296 4.0 1436923208
## 21213 149 318 4.5 1436919800
## 21214 149 337 3.5 1436923463
## 21215 149 356 3.5 1436919682
## 21216 149 480 2.0 1436919678
## 21217 149 541 3.5 1436922091
## 21218 149 586 3.0 1436923262
## 21219 149 593 3.0 1436919666
## 21220 149 610 1.0 1436923874
## 21221 149 780 3.5 1436923201
## 21222 149 908 3.0 1436922845
## 21223 149 1089 4.0 1436923271
## 21224 149 1090 2.5 1436923492
## 21225 149 1103 3.5 1436924020
## 21226 149 1193 3.0 1436922838
## 21227 149 1197 3.5 1436923241
## 21228 149 1222 3.0 1436923341
## 21229 149 1230 3.0 1436921940
## 21230 149 1259 4.0 1436923357
## 21231 149 1265 4.0 1436921617
## 21232 149 1270 3.0 1436919693
## 21233 149 1274 3.5 1436923824
## 21234 149 1347 3.5 1436923836
## 21235 149 1393 4.0 1436920227
## 21236 149 1517 4.0 1436923318
## 21237 149 1527 4.0 1436923259
## 21238 149 1676 3.5 1436923511
## 21239 149 1682 3.5 1436923301
## 21240 149 1704 4.0 1436922946
## 21241 149 1732 2.5 1436923361
## 21242 149 1968 4.0 1436921723
## 21243 149 1982 3.0 1437092078
## 21244 149 1994 3.5 1436923701
## 21245 149 2011 4.0 1436923386
## 21246 149 2161 4.0 1436923670
## 21247 149 2288 4.0 1436923762
## 21248 149 2291 3.0 1436923336
## 21249 149 2329 4.0 1436921024
## 21250 149 2360 2.0 1436920748
## 21251 149 2485 3.5 1437092289
## 21252 149 2541 3.5 1436923731
## 21253 149 2571 3.5 1436919662
## 21254 149 2572 4.0 1436923608
## 21255 149 2700 4.0 1436923445
## 21256 149 2706 3.0 1436923311
## 21257 149 2761 4.0 1436920245
## 21258 149 2791 2.0 1436924332
## 21259 149 2858 3.5 1436921212
## 21260 149 2918 4.0 1436921919
## 21261 149 2959 4.0 1436920755
## 21262 149 2978 4.0 1436920187
## 21263 149 2997 3.5 1436921174
## 21264 149 3000 3.0 1436921241
## 21265 149 3039 3.5 1436923694
## 21266 149 3147 3.0 1436921204
## 21267 149 3176 4.0 1436924153
## 21268 149 3409 3.5 1436924169
## 21269 149 3535 3.5 1436923770
## 21270 149 3556 4.0 1436924041
## 21271 149 3617 2.5 1436923897
## 21272 149 3882 4.0 1437092262
## 21273 149 3949 2.0 1436921198
## 21274 149 3969 2.5 1436924129
## 21275 149 3979 0.5 1436923433
## 21276 149 4002 3.5 1436923904
## 21277 149 4011 4.0 1436922388
## 21278 149 4014 3.0 1436922147
## 21279 149 4016 3.5 1436924098
## 21280 149 4226 4.5 1436920885
## 21281 149 4246 4.0 1436921922
## 21282 149 4262 3.0 1436920788
## 21283 149 4299 3.5 1436924086
## 21284 149 4308 4.0 1436920104
## 21285 149 4624 1.0 1436924457
## 21286 149 4641 2.5 1436924064
## 21287 149 4755 5.0 1436921673
## 21288 149 4816 4.0 1436923923
## 21289 149 4878 4.0 1436922987
## 21290 149 4886 3.5 1436923292
## 21291 149 4896 3.5 1436923452
## 21292 149 4973 3.5 1436920698
## 21293 149 4974 3.5 1437092382
## 21294 149 5481 1.0 1436923801
## 21295 149 5618 4.0 1436920691
## 21296 149 5679 3.5 1436923718
## 21297 149 5903 1.5 1436923984
## 21298 149 5971 3.5 1436920875
## 21299 149 5989 4.0 1436923456
## 21300 149 6593 3.0 1436924288
## 21301 149 6711 4.0 1436921627
## 21302 149 6942 4.5 1436922164
## 21303 149 7153 3.5 1436921220
## 21304 149 7316 3.0 1437092225
## 21305 149 7361 3.5 1436921237
## 21306 149 7380 4.0 1437092174
## 21307 149 7438 3.5 1437092060
## 21308 149 7451 4.5 1436924226
## 21309 149 8528 3.5 1436924140
## 21310 149 8529 3.5 1436924164
## 21311 149 8644 1.5 1436920426
## 21312 149 8784 3.5 1436922210
## 21313 149 8874 3.5 1436923619
## 21314 149 8917 3.5 1436924295
## 21315 149 26662 4.0 1436920792
## 21316 149 27773 2.0 1436921197
## 21317 149 30707 3.0 1436921489
## 21318 149 31658 4.0 1436921101
## 21319 149 32587 4.0 1436923514
## 21320 149 33679 2.5 1436923970
## 21321 149 34048 3.0 1436924006
## 21322 149 34162 3.5 1436923949
## 21323 149 34332 4.0 1436920082
## 21324 149 35836 1.5 1436920434
## 21325 149 36529 4.0 1436921517
## 21326 149 38061 4.0 1436921503
## 21327 149 40815 4.0 1436920421
## 21328 149 42418 5.0 1436919996
## 21329 149 44199 4.0 1436924115
## 21330 149 45720 4.0 1436922084
## 21331 149 45722 3.0 1436920430
## 21332 149 46578 3.5 1436923611
## 21333 149 46976 3.5 1437092098
## 21334 149 48385 4.0 1436923884
## 21335 149 48394 3.5 1436920411
## 21336 149 48516 2.5 1436920881
## 21337 149 48780 3.5 1436920417
## 21338 149 49286 4.0 1437091824
## 21339 149 50872 3.5 1436919763
## 21340 149 51662 3.5 1436920406
## 21341 149 52281 3.5 1436924283
## 21342 149 53519 4.5 1436920262
## 21343 149 54259 4.0 1436921554
## 21344 149 54503 3.0 1436923971
## 21345 149 54995 3.0 1436924285
## 21346 149 55247 4.0 1436924188
## 21347 149 56152 4.5 1436921929
## 21348 149 56367 4.0 1436921552
## 21349 149 56949 3.0 1436924293
## 21350 149 58559 4.0 1436920675
## 21351 149 59369 1.0 1436922011
## 21352 149 60684 3.5 1436924083
## 21353 149 60950 4.5 1436921950
## 21354 149 61071 3.0 1437092283
## 21355 149 63082 3.0 1437092038
## 21356 149 63992 3.0 1437092357
## 21357 149 64614 3.0 1436922181
## 21358 149 65193 4.0 1437092257
## 21359 149 65261 3.5 1436924372
## 21360 149 66097 4.0 1436920173
## 21361 149 68135 4.0 1437092263
## 21362 149 68157 3.5 1436920649
## 21363 149 68954 3.5 1436921076
## 21364 149 69757 3.0 1436924009
## 21365 149 70286 3.5 1436923816
## 21366 149 71535 2.0 1436920701
## 21367 149 71899 1.0 1436920763
## 21368 149 72998 3.5 1436923666
## 21369 149 74458 3.5 1436921688
## 21370 149 76093 3.0 1436920657
## 21371 149 76251 3.5 1437092374
## 21372 149 78499 4.0 1436921474
## 21373 149 79091 3.0 1436920699
## 21374 149 79132 5.0 1436919794
## 21375 149 79702 4.0 1436920119
## 21376 149 80463 4.0 1436921703
## 21377 149 80549 3.0 1437092345
## 21378 149 80969 3.0 1436921599
## 21379 149 81591 4.0 1436922188
## 21380 149 81834 4.0 1436920710
## 21381 149 81845 3.0 1436920647
## 21382 149 81847 4.5 1436920279
## 21383 149 84152 4.0 1436921427
## 21384 149 86347 4.0 1436920752
## 21385 149 86377 4.5 1437091929
## 21386 149 86882 4.5 1436921192
## 21387 149 88125 4.0 1436920686
## 21388 149 88810 2.0 1436920889
## 21389 149 89745 2.0 1436922387
## 21390 149 89864 2.0 1436921750
## 21391 149 89904 5.0 1436920020
## 21392 149 90061 5.0 1436920568
## 21393 149 90866 2.0 1436921752
## 21394 149 91500 5.0 1436920212
## 21395 149 91529 4.0 1436920695
## 21396 149 91542 2.5 1436920661
## 21397 149 92535 4.5 1437091917
## 21398 149 93510 4.0 1436920162
## 21399 149 94959 3.5 1436921332
## 21400 149 96588 4.0 1436920032
## 21401 149 96821 4.0 1436920294
## 21402 149 97913 4.0 1436920703
## 21403 149 98809 3.0 1436920652
## 21404 149 99114 1.5 1436920644
## 21405 149 100034 4.0 1436921131
## 21406 149 103249 3.5 1436921987
## 21407 149 103539 4.0 1436920364
## 21408 149 104069 4.5 1437092404
## 21409 149 104374 5.0 1436920051
## 21410 149 106100 3.5 1437091813
## 21411 149 106487 4.0 1436921972
## 21412 149 106920 4.0 1436920062
## 21413 149 108190 4.0 1436921652
## 21414 149 109374 4.0 1436923001
## 21415 149 109487 4.0 1436922074
## 21416 149 111921 5.0 1436919931
## 21417 149 112138 4.0 1437091831
## 21418 149 112515 4.0 1436921568
## 21419 149 112552 1.5 1436919773
## 21420 149 112852 2.0 1436920459
## 21421 149 114180 3.5 1436920672
## 21422 149 114935 1.5 1436922811
## 21423 149 115617 4.0 1436919979
## 21424 149 115713 4.0 1436920008
## 21425 149 116797 5.0 1436919856
## 21426 149 116823 4.0 1436920668
## 21427 149 117176 4.0 1437091480
## 21428 149 117444 3.5 1436921034
## 21429 149 117533 3.0 1436920450
## 21430 149 121231 5.0 1436919828
## 21431 149 122882 3.0 1436919888
## 21432 149 127152 3.5 1436920456
## 21433 149 134853 5.0 1436919867
## 21434 150 1 3.0 1114306148
## 21435 150 2 3.0 1114306834
## 21436 150 5 2.5 1114308628
## 21437 150 10 4.0 1114306741
## 21438 150 19 3.0 1114305732
## 21439 150 21 3.5 1338710602
## 21440 150 23 2.0 1114307220
## 21441 150 25 4.0 1114306776
## 21442 150 31 2.5 1130905954
## 21443 150 39 2.5 1114306777
## 21444 150 44 1.0 1114308273
## 21445 150 45 1.5 1113906883
## 21446 150 50 4.5 1114306168
## 21447 150 60 2.5 1114309836
## 21448 150 69 2.5 1114307227
## 21449 150 70 2.5 1113906876
## 21450 150 71 3.0 1114310004
## 21451 150 95 3.0 1116309622
## 21452 150 104 5.0 1114307365
## 21453 150 110 4.5 1113907087
## 21454 150 112 4.0 1140424494
## 21455 150 145 2.5 1116309027
## 21456 150 153 3.0 1114306717
## 21457 150 165 3.5 1113907638
## 21458 150 170 2.5 1140424747
## 21459 150 172 1.0 1113906767
## 21460 150 174 3.0 1114307200
## 21461 150 180 3.0 1114306408
## 21462 150 185 3.5 1114306762
## 21463 150 196 1.5 1113907546
## 21464 150 208 0.5 1114306763
## 21465 150 216 4.5 1114308366
## 21466 150 227 2.5 1114307190
## 21467 150 231 3.0 1114306739
## 21468 150 256 2.0 1113907543
## 21469 150 260 4.5 1113907415
## 21470 150 288 3.0 1114306793
## 21471 150 292 3.0 1116309076
## 21472 150 296 4.5 1113907407
## 21473 150 316 4.0 1114306719
## 21474 150 318 5.0 1113907633
## 21475 150 327 2.0 1114307194
## 21476 150 333 3.0 1114307088
## 21477 150 339 1.5 1130906351
## 21478 150 342 1.0 1113906795
## 21479 150 344 3.5 1113907646
## 21480 150 349 4.0 1114306193
## 21481 150 356 4.5 1113907410
## 21482 150 364 3.0 1114306733
## 21483 150 367 3.0 1114306743
## 21484 150 376 4.0 1130905961
## 21485 150 377 3.5 1114306710
## 21486 150 380 4.0 1114306685
## 21487 150 432 2.0 1114309590
## 21488 150 435 2.5 1114309597
## 21489 150 442 1.5 1140424503
## 21490 150 457 4.0 1113907785
## 21491 150 480 3.5 1114306136
## 21492 150 500 1.5 1113907512
## 21493 150 508 2.5 1113907507
## 21494 150 520 0.5 1114305827
## 21495 150 539 1.5 1130906332
## 21496 150 541 3.5 1114306799
## 21497 150 544 2.5 1114309144
## 21498 150 548 3.0 1114309149
## 21499 150 586 2.5 1116309673
## 21500 150 588 3.5 1113907403
## 21501 150 589 3.5 1113907611
## 21502 150 590 3.0 1114305997
## 21503 150 592 3.0 1114306681
## 21504 150 648 3.5 1116308883
## 21505 150 733 3.5 1113907841
## 21506 150 736 4.0 1113907502
## 21507 150 780 4.0 1114306687
## 21508 150 784 3.0 1113907501
## 21509 150 785 3.5 1113907509
## 21510 150 786 2.5 1113907499
## 21511 150 788 3.0 1114306821
## 21512 150 799 3.0 1116309174
## 21513 150 805 4.0 1114306038
## 21514 150 809 3.0 1114309361
## 21515 150 829 1.0 1114309340
## 21516 150 832 3.5 1113907497
## 21517 150 836 3.0 1140424715
## 21518 150 852 3.5 1113907486
## 21519 150 858 3.5 1113907480
## 21520 150 999 4.0 1114309130
## 21521 150 1005 0.5 1114309343
## 21522 150 1020 3.0 1114308357
## 21523 150 1027 4.0 1114305648
## 21524 150 1036 4.0 1113907074
## 21525 150 1047 2.5 1116309093
## 21526 150 1061 3.0 1114306312
## 21527 150 1064 3.0 1114305646
## 21528 150 1073 2.0 1130906339
## 21529 150 1097 3.0 1114306755
## 21530 150 1126 3.0 1140424695
## 21531 150 1196 4.0 1114306016
## 21532 150 1198 4.0 1114306013
## 21533 150 1210 4.5 1113907413
## 21534 150 1240 3.5 1113907614
## 21535 150 1246 3.0 1114308753
## 21536 150 1259 4.0 1114306194
## 21537 150 1265 3.5 1114306439
## 21538 150 1270 4.0 1114306018
## 21539 150 1291 4.5 1113907080
## 21540 150 1302 4.0 1114306213
## 21541 150 1370 3.5 1116309029
## 21542 150 1371 2.5 1114308250
## 21543 150 1373 2.5 1114309788
## 21544 150 1374 2.5 1114306405
## 21545 150 1375 2.5 1113907467
## 21546 150 1376 3.0 1140424472
## 21547 150 1377 1.0 1113907471
## 21548 150 1391 3.5 1114308253
## 21549 150 1393 3.5 1114306247
## 21550 150 1396 4.0 1130905780
## 21551 150 1405 3.0 1114305651
## 21552 150 1407 3.0 1114307068
## 21553 150 1409 3.5 1114310411
## 21554 150 1429 3.5 1116308716
## 21555 150 1485 3.5 1114309780
## 21556 150 1500 2.0 1130905926
## 21557 150 1515 2.0 1140424671
## 21558 150 1517 3.0 1114306438
## 21559 150 1518 3.5 1114309794
## 21560 150 1527 4.0 1114306426
## 21561 150 1544 3.0 1114305802
## 21562 150 1552 3.5 1113907463
## 21563 150 1573 4.0 1116309089
## 21564 150 1580 2.5 1113907470
## 21565 150 1584 4.0 1113907464
## 21566 150 1588 1.0 1114309118
## 21567 150 1590 4.5 1114308333
## 21568 150 1597 3.5 1113907173
## 21569 150 1608 3.0 1114308258
## 21570 150 1610 4.5 1113907613
## 21571 150 1616 3.0 1130906048
## 21572 150 1617 3.0 1114306474
## 21573 150 1620 4.0 1114310407
## 21574 150 1625 4.5 1113906867
## 21575 150 1641 3.5 1113907621
## 21576 150 1644 2.5 1114305644
## 21577 150 1645 4.0 1113907448
## 21578 150 1653 2.0 1113907429
## 21579 150 1668 2.5 1114309570
## 21580 150 1673 3.0 1113906862
## 21581 150 1676 0.5 1114308962
## 21582 150 1682 3.0 1113907620
## 21583 150 1704 4.0 1114307286
## 21584 150 1721 4.5 1113907435
## 21585 150 1722 4.5 1130905849
## 21586 150 1732 3.0 1140424835
## 21587 150 1746 3.5 1114310162
## 21588 150 1748 4.0 1114306492
## 21589 150 1752 3.0 1114309965
## 21590 150 1777 4.0 1116309070
## 21591 150 1784 2.5 1114308739
## 21592 150 1792 3.5 1114308327
## 21593 150 1831 2.5 1114308323
## 21594 150 1833 3.0 1140424655
## 21595 150 1876 4.0 1140425339
## 21596 150 1892 2.5 1114309121
## 21597 150 1894 2.0 1140424652
## 21598 150 1895 3.0 1114309099
## 21599 150 1909 3.0 1116309060
## 21600 150 1917 4.0 1114306890
## 21601 150 1918 3.5 1114309094
## 21602 150 1923 3.0 1113907434
## 21603 150 1954 4.0 1114306335
## 21604 150 1961 3.0 1114308749
## 21605 150 1967 3.0 1140424926
## 21606 150 2000 3.5 1113907755
## 21607 150 2001 3.0 1113906820
## 21608 150 2002 3.0 1114309102
## 21609 150 2004 2.0 1114305796
## 21610 150 2005 3.0 1114306506
## 21611 150 2011 4.0 1113907624
## 21612 150 2012 4.5 1114309769
## 21613 150 2028 4.5 1113907849
## 21614 150 2042 1.5 1114309314
## 21615 150 2054 1.0 1113906789
## 21616 150 2058 3.5 1114306170
## 21617 150 2082 2.0 1114309106
## 21618 150 2114 1.5 1114306418
## 21619 150 2115 4.0 1114305720
## 21620 150 2194 4.0 1113906808
## 21621 150 2253 2.0 1114309083
## 21622 150 2273 3.5 1114309756
## 21623 150 2294 2.5 1114309081
## 21624 150 2321 2.0 1114308243
## 21625 150 2334 2.5 1140425276
## 21626 150 2335 4.0 1114308325
## 21627 150 2338 3.0 1130906021
## 21628 150 2353 4.0 1113906815
## 21629 150 2355 2.5 1114305999
## 21630 150 2376 3.0 1114309068
## 21631 150 2396 1.5 1130905942
## 21632 150 2420 3.5 1116309062
## 21633 150 2421 3.0 1140424614
## 21634 150 2422 3.5 1130906013
## 21635 150 2424 1.5 1114309074
## 21636 150 2485 2.5 1140424609
## 21637 150 2490 3.5 1116309095
## 21638 150 2496 3.5 1130906025
## 21639 150 2502 3.5 1114306322
## 21640 150 2505 3.0 1114308297
## 21641 150 2541 2.5 1116309105
## 21642 150 2567 1.0 1114305779
## 21643 150 2571 5.0 1113907848
## 21644 150 2572 2.5 1116309128
## 21645 150 2580 3.0 1114306340
## 21646 150 2605 2.5 1140425211
## 21647 150 2617 4.0 1113906772
## 21648 150 2628 3.5 1116308629
## 21649 150 2640 2.5 1116309195
## 21650 150 2683 3.0 1116309037
## 21651 150 2694 3.5 1114307128
## 21652 150 2701 2.0 1140424450
## 21653 150 2706 3.5 1113907439
## 21654 150 2707 3.0 1114310351
## 21655 150 2716 2.0 1114306803
## 21656 150 2722 2.5 1114308289
## 21657 150 2762 4.5 1113907594
## 21658 150 2763 3.5 1114306436
## 21659 150 2770 2.0 1114307063
## 21660 150 2797 3.5 1114306285
## 21661 150 2858 3.5 1113907596
## 21662 150 2881 4.0 1114309051
## 21663 150 2916 3.0 1113907447
## 21664 150 2918 4.5 1114306156
## 21665 150 2947 2.5 1114306272
## 21666 150 2948 2.5 1114306338
## 21667 150 2949 2.5 1114306349
## 21668 150 2953 1.5 1130906007
## 21669 150 2959 3.5 1114306253
## 21670 150 2987 2.5 1116309776
## 21671 150 2989 2.5 1114306511
## 21672 150 2990 3.0 1114309060
## 21673 150 2991 3.0 1114306459
## 21674 150 2993 2.5 1114306295
## 21675 150 2997 3.5 1140424443
## 21676 150 3005 3.0 1130905997
## 21677 150 3039 3.5 1114306175
## 21678 150 3052 2.0 1114306402
## 21679 150 3082 4.0 1114310339
## 21680 150 3146 3.5 1116308763
## 21681 150 3147 4.0 1113906817
## 21682 150 3173 4.0 1140424887
## 21683 150 3208 2.0 1114309274
## 21684 150 3253 3.5 1114308255
## 21685 150 3254 3.5 1114309045
## 21686 150 3256 4.0 1114306032
## 21687 150 3261 3.0 1116309257
## 21688 150 3301 3.5 1114310328
## 21689 150 3316 2.5 1140424586
## 21690 150 3408 2.5 1114306379
## 21691 150 3452 4.0 1140424566
## 21692 150 3466 2.5 1114309258
## 21693 150 3477 3.0 1140424569
## 21694 150 3509 3.0 1114309532
## 21695 150 3510 3.5 1114306035
## 21696 150 3534 3.0 1114307344
## 21697 150 3536 3.0 1116309150
## 21698 150 3578 4.5 1113907076
## 21699 150 3617 4.5 1114307106
## 21700 150 3623 3.0 1113907405
## 21701 150 3635 3.0 1114306306
## 21702 150 3638 2.5 1114307106
## 21703 150 3639 2.5 1114306483
## 21704 150 3698 3.0 1140424875
## 21705 150 3753 3.5 1113907398
## 21706 150 3793 4.0 1114306145
## 21707 150 3798 2.5 1114309035
## 21708 150 3821 2.0 1114305883
## 21709 150 3861 2.5 1114309231
## 21710 150 3863 0.5 1114307111
## 21711 150 3897 5.0 1147599034
## 21712 150 3948 4.0 1114306278
## 21713 150 3955 4.0 1114309240
## 21714 150 3959 2.5 1114309032
## 21715 150 3975 1.5 1114308565
## 21716 150 3977 2.0 1113906866
## 21717 150 3984 3.5 1114306448
## 21718 150 3994 2.5 1140425267
## 21719 150 3998 3.0 1114308424
## 21720 150 4018 2.0 1114309026
## 21721 150 4020 3.5 1114307255
## 21722 150 4023 2.5 1114309029
## 21723 150 4025 2.5 1114308990
## 21724 150 4027 0.5 1130905933
## 21725 150 4040 2.0 1114305880
## 21726 150 4149 3.0 1140425059
## 21727 150 4153 3.5 1114308399
## 21728 150 4214 2.0 1114309224
## 21729 150 4223 3.0 1114306129
## 21730 150 4225 4.0 1114306496
## 21731 150 4226 2.0 1113907418
## 21732 150 4228 2.5 1114308408
## 21733 150 4229 3.5 1114309507
## 21734 150 4238 3.5 1130905973
## 21735 150 4265 0.5 1114307260
## 21736 150 4321 2.5 1114308268
## 21737 150 4343 3.5 1114307108
## 21738 150 4344 4.0 1114309715
## 21739 150 4351 3.0 1116309087
## 21740 150 4369 3.5 1114305764
## 21741 150 4448 3.5 1114306435
## 21742 150 4489 4.0 1116309091
## 21743 150 4545 2.5 1114308411
## 21744 150 4571 3.5 1116309199
## 21745 150 4616 3.5 1114306196
## 21746 150 4638 2.0 1114309000
## 21747 150 4701 3.5 1116309074
## 21748 150 4718 4.0 1114310291
## 21749 150 4727 2.0 1116308745
## 21750 150 4734 3.0 1114305746
## 21751 150 4757 1.0 1114307240
## 21752 150 4814 3.5 1140425035
## 21753 150 4816 4.0 1114307100
## 21754 150 4866 2.0 1116309045
## 21755 150 4878 4.0 1114308881
## 21756 150 4896 1.5 1114306226
## 21757 150 4901 3.5 1114306208
## 21758 150 4951 3.0 1114309217
## 21759 150 4963 4.0 1114306024
## 21760 150 4980 3.0 1116308752
## 21761 150 4993 4.5 1113907089
## 21762 150 5010 3.0 1114308733
## 21763 150 5025 3.0 1114308377
## 21764 150 5081 2.5 1114308518
## 21765 150 5093 2.5 1114309202
## 21766 150 5171 2.0 1114309198
## 21767 150 5219 2.5 1114308375
## 21768 150 5282 3.0 1140425335
## 21769 150 5283 3.5 1130905875
## 21770 150 5312 2.5 1114309192
## 21771 150 5349 2.5 1114306144
## 21772 150 5377 3.0 1114306442
## 21773 150 5378 3.5 1114309684
## 21774 150 5400 4.0 1140424535
## 21775 150 5418 4.5 1113907084
## 21776 150 5445 0.5 1113906878
## 21777 150 5449 3.5 1114307235
## 21778 150 5459 2.5 1113907675
## 21779 150 5502 2.0 1130905878
## 21780 150 5574 3.5 1140425041
## 21781 150 5816 1.5 1114306240
## 21782 150 5872 4.0 1113907672
## 21783 150 5952 4.5 1113906770
## 21784 150 5956 3.0 1114308996
## 21785 150 6059 3.0 1116309023
## 21786 150 6188 4.0 1114306358
## 21787 150 6250 3.0 1140425340
## 21788 150 6264 2.5 1114307223
## 21789 150 6265 3.0 1114308502
## 21790 150 6287 4.0 1140425015
## 21791 150 6294 3.0 1140425023
## 21792 150 6322 3.0 1130905862
## 21793 150 6323 3.0 1114306263
## 21794 150 6333 3.0 1113907846
## 21795 150 6365 4.5 1114308731
## 21796 150 6373 3.5 1116309020
## 21797 150 6378 4.5 1113907652
## 21798 150 6383 2.5 1140425017
## 21799 150 6502 4.0 1114307356
## 21800 150 6537 3.5 1116309048
## 21801 150 6539 4.0 1113907082
## 21802 150 6541 2.5 1140425226
## 21803 150 6708 3.5 1140424531
## 21804 150 6711 4.5 1233053813
## 21805 150 6764 3.5 1114306451
## 21806 150 6893 4.0 1114306002
## 21807 150 6936 3.0 1114308384
## 21808 150 6944 3.0 1130906087
## 21809 150 7101 2.5 1114308481
## 21810 150 7153 4.5 1114306021
## 21811 150 7173 3.0 1140425006
## 21812 150 7254 4.0 1114306244
## 21813 150 7293 4.0 1114308810
## 21814 150 7325 3.5 1114309184
## 21815 150 7346 4.0 1116309043
## 21816 150 7360 3.5 1140425002
## 21817 150 7381 3.0 1114309640
## 21818 150 7439 4.0 1114308483
## 21819 150 7569 3.0 1114306250
## 21820 150 7570 3.5 1114310030
## 21821 150 7573 2.0 1140425213
## 21822 150 8010 4.0 1140425327
## 21823 150 8368 2.0 1114306190
## 21824 150 8376 4.0 1140424519
## 21825 150 8493 3.0 1114306172
## 21826 150 8528 4.0 1116309158
## 21827 150 8614 2.5 1114310016
## 21828 150 8622 4.5 1113907658
## 21829 150 8665 4.5 1114305992
## 21830 150 8874 3.5 1140424514
## 21831 150 8957 4.5 1114308477
## 21832 150 8968 3.0 1140425194
## 21833 150 8972 4.0 1140424981
## 21834 150 27338 3.0 1233053797
## 21835 150 27808 3.0 1114306375
## 21836 150 27821 3.0 1140424985
## 21837 150 33493 4.0 1130905770
## 21838 150 34048 2.5 1140424802
## 21839 150 34319 4.0 1130905845
## 21840 150 44199 4.0 1338710639
## 21841 150 47610 4.0 1338710597
## 21842 150 48516 5.0 1233053823
## 21843 150 49530 4.5 1338710592
## 21844 150 54286 4.0 1338710631
## 21845 150 74458 4.0 1338710628
## 21846 150 79132 5.0 1338710636
## 21847 151 2 4.0 847296918
## 21848 151 10 5.0 847296716
## 21849 151 19 3.0 847296838
## 21850 151 21 5.0 847296838
## 21851 151 32 5.0 847296863
## 21852 151 34 3.0 847296802
## 21853 151 39 3.0 847296863
## 21854 151 47 5.0 847296774
## 21855 151 50 3.0 847296838
## 21856 151 95 3.0 847297041
## 21857 151 110 4.0 847296748
## 21858 151 150 5.0 847296585
## 21859 151 153 1.0 847296625
## 21860 151 160 3.0 847296891
## 21861 151 161 5.0 847296716
## 21862 151 165 4.0 847296624
## 21863 151 173 1.0 847296918
## 21864 151 185 3.0 847296716
## 21865 151 208 4.0 847296716
## 21866 151 225 3.0 847296838
## 21867 151 231 4.0 847296653
## 21868 151 253 3.0 847296748
## 21869 151 266 3.0 847296891
## 21870 151 288 4.0 847296748
## 21871 151 292 4.0 847296686
## 21872 151 296 5.0 847296586
## 21873 151 300 3.0 847296802
## 21874 151 315 2.0 847296945
## 21875 151 316 5.0 847296653
## 21876 151 317 3.0 847296891
## 21877 151 329 5.0 847296686
## 21878 151 339 3.0 847296716
## 21879 151 344 3.0 847296625
## 21880 151 349 4.0 847296653
## 21881 151 350 4.0 847296918
## 21882 151 356 5.0 847296653
## 21883 151 357 5.0 847296863
## 21884 151 364 5.0 847296775
## 21885 151 367 3.0 847296774
## 21886 151 377 5.0 847296775
## 21887 151 380 4.0 847296586
## 21888 151 410 3.0 847296802
## 21889 151 420 3.0 847296863
## 21890 151 432 2.0 847296918
## 21891 151 434 4.0 847296686
## 21892 151 435 5.0 847296891
## 21893 151 440 3.0 847296891
## 21894 151 442 4.0 847296945
## 21895 151 454 4.0 847296748
## 21896 151 457 5.0 847296624
## 21897 151 474 4.0 847296945
## 21898 151 480 5.0 847296686
## 21899 151 500 4.0 847296774
## 21900 151 509 3.0 847296945
## 21901 151 527 5.0 847296863
## 21902 151 539 3.0 847296838
## 21903 151 553 3.0 847297041
## 21904 151 587 5.0 847296802
## 21905 151 588 3.0 847296624
## 21906 151 589 5.0 847296747
## 21907 151 590 3.0 847296584
## 21908 151 592 3.0 847296583
## 21909 151 595 3.0 847296653
## 21910 151 597 3.0 847296802
## 21911 152 1 3.5 1335947960
## 21912 152 6 4.0 1335948353
## 21913 152 10 1.5 1335948177
## 21914 152 21 3.5 1335948369
## 21915 152 25 0.5 1335948417
## 21916 152 32 5.0 1335947997
## 21917 152 47 5.0 1335948042
## 21918 152 50 5.0 1335948008
## 21919 152 95 3.5 1335948357
## 21920 152 110 0.5 1335947944
## 21921 152 111 3.5 1335948381
## 21922 152 135 1.5 1335899920
## 21923 152 150 3.5 1335947956
## 21924 152 161 4.0 1335948346
## 21925 152 185 1.5 1335948277
## 21926 152 208 1.5 1335948220
## 21927 152 231 2.0 1335948114
## 21928 152 253 2.0 1335948227
## 21929 152 260 4.0 1335947940
## 21930 152 288 2.0 1335948404
## 21931 152 293 4.0 1335948387
## 21932 152 296 4.5 1335947920
## 21933 152 316 4.0 1335948100
## 21934 152 318 4.0 1335947939
## 21935 152 349 3.0 1335948140
## 21936 152 356 3.0 1335900437
## 21937 152 357 3.5 1335948229
## 21938 152 367 4.0 1335948107
## 21939 152 377 3.5 1335948034
## 21940 152 380 3.5 1335947993
## 21941 152 434 1.5 1335948250
## 21942 152 454 3.5 1335948259
## 21943 152 457 4.0 1335947953
## 21944 152 480 3.0 1335947928
## 21945 152 500 2.5 1335948104
## 21946 152 541 4.5 1335948214
## 21947 152 586 2.5 1335948233
## 21948 152 587 2.5 1335948190
## 21949 152 590 3.5 1335947977
## 21950 152 593 4.5 1335947925
## 21951 152 597 2.0 1335948123
## 21952 152 608 4.5 1335948018
## 21953 152 733 2.5 1335948136
## 21954 152 736 1.0 1335948087
## 21955 152 750 3.0 1335900366
## 21956 152 778 2.0 1335948451
## 21957 152 780 4.0 1335947970
## 21958 152 924 4.0 1335948399
## 21959 152 1019 3.5 1335899984
## 21960 152 1036 3.5 1335948212
## 21961 152 1089 3.5 1335948295
## 21962 152 1090 3.5 1335900642
## 21963 152 1097 2.5 1335948126
## 21964 152 1136 4.5 1335948172
## 21965 152 1175 5.0 1335948656
## 21966 152 1193 3.0 1335948194
## 21967 152 1196 4.0 1335948015
## 21968 152 1198 3.5 1335948027
## 21969 152 1200 4.0 1335948282
## 21970 152 1206 3.5 1335948427
## 21971 152 1210 4.0 1335947973
## 21972 152 1214 4.5 1335948202
## 21973 152 1222 3.0 1335900442
## 21974 152 1240 3.5 1335948146
## 21975 152 1263 3.5 1335900563
## 21976 152 1265 4.0 1335947847
## 21977 152 1270 3.5 1335948037
## 21978 152 1272 2.5 1335900548
## 21979 152 1296 1.0 1335899988
## 21980 152 1476 2.0 1335900032
## 21981 152 1500 3.5 1335949082
## 21982 152 1517 1.5 1335948429
## 21983 152 1527 3.5 1335948270
## 21984 152 1580 4.0 1335948091
## 21985 152 1590 4.5 1335899996
## 21986 152 1635 0.5 1335900055
## 21987 152 1653 5.0 1335947506
## 21988 152 1680 3.5 1335899930
## 21989 152 1682 3.5 1335948443
## 21990 152 1704 2.0 1335948255
## 21991 152 1721 1.5 1335948097
## 21992 152 1732 4.0 1335949447
## 21993 152 1923 4.0 1335948327
## 21994 152 1961 3.5 1335948291
## 21995 152 2028 5.0 1335948073
## 21996 152 2324 3.0 1335900376
## 21997 152 2396 3.5 1335948379
## 21998 152 2431 2.0 1335900014
## 21999 152 2571 5.0 1335948000
## 22000 152 2628 4.0 1335948160
## 22001 152 2683 2.0 1335948728
## 22002 152 2706 3.5 1335948421
## 22003 152 2762 2.5 1335948068
## 22004 152 2858 4.5 1335948022
## 22005 152 2944 3.0 1335899937
## 22006 152 2959 4.5 1335948082
## 22007 152 2997 4.5 1335948262
## 22008 152 3148 2.5 1335899940
## 22009 152 3257 3.0 1335900020
## 22010 152 3354 4.0 1335899980
## 22011 152 3481 2.5 1335949482
## 22012 152 3578 4.0 1335900859
## 22013 152 3826 2.0 1335899953
## 22014 152 3897 3.0 1335900864
## 22015 152 3910 4.5 1335901493
## 22016 152 3967 3.0 1335901749
## 22017 152 3996 4.0 1335948374
## 22018 152 4002 1.0 1335899914
## 22019 152 4011 3.0 1335901184
## 22020 152 4027 5.0 1335949459
## 22021 152 4223 3.5 1335902247
## 22022 152 4226 4.0 1335901129
## 22023 152 4239 2.0 1335902212
## 22024 152 4306 3.0 1335900931
## 22025 152 4720 3.5 1335902192
## 22026 152 4848 3.5 1335947708
## 22027 152 4878 4.5 1335902334
## 22028 152 4886 3.5 1335901317
## 22029 152 4896 4.0 1335947815
## 22030 152 4963 3.0 1335901901
## 22031 152 4973 4.5 1335901843
## 22032 152 4993 4.0 1335901299
## 22033 152 4995 3.0 1335900924
## 22034 152 5010 3.5 1335947578
## 22035 152 5013 2.5 1335900026
## 22036 152 5060 1.5 1335900702
## 22037 152 5349 2.0 1335948558
## 22038 152 5418 4.0 1335900758
## 22039 152 5445 4.0 1335902338
## 22040 152 5816 4.0 1335947718
## 22041 152 5903 4.0 1335901882
## 22042 152 5952 4.0 1335901226
## 22043 152 5989 3.0 1335900942
## 22044 152 6300 2.0 1335901802
## 22045 152 6333 4.0 1335948546
## 22046 152 6365 4.5 1335948525
## 22047 152 6539 3.0 1335901347
## 22048 152 6711 4.0 1335947808
## 22049 152 6934 4.5 1335949597
## 22050 152 6942 3.5 1335901818
## 22051 152 6953 3.5 1335902114
## 22052 152 7022 2.0 1335901696
## 22053 152 7147 4.0 1335901712
## 22054 152 7153 4.0 1335900949
## 22055 152 7254 3.5 1335902217
## 22056 152 7323 4.0 1335949090
## 22057 152 7361 4.0 1335901633
## 22058 152 7502 5.0 1335900352
## 22059 152 8117 1.5 1335902266
## 22060 152 8368 4.0 1335902075
## 22061 152 8533 2.5 1335901682
## 22062 152 8636 3.5 1335948549
## 22063 152 8665 4.0 1335900762
## 22064 152 8798 4.0 1335902244
## 22065 152 8961 3.5 1335901169
## 22066 152 26614 3.5 1335947549
## 22067 152 27611 4.0 1335900965
## 22068 152 30707 2.5 1335900800
## 22069 152 30749 3.5 1335900784
## 22070 152 31410 5.0 1335900450
## 22071 152 32587 4.0 1335900991
## 22072 152 33166 3.0 1335901270
## 22073 152 33493 4.0 1335948529
## 22074 152 33794 4.0 1335900790
## 22075 152 34405 4.0 1335901026
## 22076 152 34542 3.0 1335901666
## 22077 152 36517 3.5 1335901976
## 22078 152 36529 3.5 1335901772
## 22079 152 38061 2.5 1335901278
## 22080 152 40815 4.0 1335902257
## 22081 152 40819 3.0 1335901584
## 22082 152 41566 3.5 1335947593
## 22083 152 41997 3.5 1335902045
## 22084 152 44191 2.0 1335900892
## 22085 152 44195 3.0 1335900898
## 22086 152 44555 4.5 1335900817
## 22087 152 45950 4.0 1335902087
## 22088 152 46578 4.0 1335901057
## 22089 152 46723 3.0 1335902209
## 22090 152 47491 2.0 1335901071
## 22091 152 48774 3.0 1335948539
## 22092 152 49272 4.0 1335901478
## 22093 152 49530 4.5 1335900652
## 22094 152 50068 4.0 1335901513
## 22095 152 50872 3.5 1335901202
## 22096 152 54001 4.0 1335902260
## 22097 152 54286 4.0 1335900754
## 22098 152 54997 4.0 1335901908
## 22099 152 55820 4.0 1335900919
## 22100 152 56174 4.0 1335948691
## 22101 152 56367 4.0 1335901293
## 22102 152 56782 3.5 1335901035
## 22103 152 57669 3.0 1335901274
## 22104 152 58559 4.5 1335900808
## 22105 152 59315 4.0 1335900880
## 22106 152 59369 3.0 1335901427
## 22107 152 59784 3.5 1335902094
## 22108 152 60069 4.0 1335900839
## 22109 152 63082 4.0 1335900886
## 22110 152 67255 3.5 1335947842
## 22111 152 68157 3.0 1335900445
## 22112 152 68237 4.0 1335900774
## 22113 152 68954 4.5 1335900872
## 22114 152 69481 4.0 1335900821
## 22115 152 69844 4.0 1335902035
## 22116 152 70286 3.5 1335901210
## 22117 152 72998 4.5 1335901466
## 22118 152 73321 4.0 1335948695
## 22119 152 74458 3.5 1335947751
## 22120 152 76093 3.5 1335947573
## 22121 152 78499 3.5 1335947706
## 22122 152 79132 4.5 1335947742
## 22123 152 80463 3.5 1335947732
## 22124 152 81834 4.0 1335947613
## 22125 152 81845 2.5 1335947556
## 22126 152 85414 4.5 1335947588
## 22127 152 85736 4.0 1335901372
## 22128 152 88125 4.0 1335947546
## 22129 153 1 5.0 1046739645
## 22130 153 32 5.0 1046740237
## 22131 153 34 4.0 1046739068
## 22132 153 110 3.0 1046738981
## 22133 153 147 4.0 1046739545
## 22134 153 170 5.0 1046739505
## 22135 153 224 3.0 1046739844
## 22136 153 296 5.0 1046740124
## 22137 153 306 5.0 1046740081
## 22138 153 307 5.0 1046740081
## 22139 153 489 3.0 1046739156
## 22140 153 546 1.0 1046739765
## 22141 153 760 5.0 1046739825
## 22142 153 912 5.0 1046740112
## 22143 153 920 5.0 1046739691
## 22144 153 932 5.0 1046739002
## 22145 153 1097 5.0 1046739044
## 22146 153 1136 5.0 1046740112
## 22147 153 1206 5.0 1046740286
## 22148 153 1210 4.0 1046739068
## 22149 153 1255 5.0 1046739622
## 22150 153 1259 5.0 1046740337
## 22151 153 1277 4.0 1046739622
## 22152 153 1498 5.0 1046739486
## 22153 153 1617 3.0 1046739028
## 22154 153 1682 4.0 1046739044
## 22155 153 1777 5.0 1046739964
## 22156 153 2116 5.0 1046739545
## 22157 153 2336 5.0 1046740238
## 22158 153 2396 4.0 1046740305
## 22159 153 2562 5.0 1046739545
## 22160 153 2571 4.0 1046740276
## 22161 153 2692 5.0 1046740162
## 22162 153 2762 5.0 1046740098
## 22163 153 2858 5.0 1046740238
## 22164 153 2959 4.0 1046740372
## 22165 153 2995 2.0 1046739622
## 22166 153 2997 5.0 1046740315
## 22167 153 3269 3.0 1046739925
## 22168 153 3799 1.0 1046739925
## 22169 153 3825 3.0 1046739825
## 22170 153 3897 5.0 1046740060
## 22171 153 4270 2.0 1046739622
## 22172 153 4367 4.0 1046739002
## 22173 153 4886 5.0 1046739947
## 22174 153 4973 5.0 1046740081
## 22175 153 5099 5.0 1046739645
## 22176 153 5605 4.0 1046738981
## 22177 153 5841 2.0 1046739947
## 22178 153 5952 5.0 1046740481
## 22179 153 6093 5.0 1046740361
## 22180 154 1 4.0 850917310
## 22181 154 3 4.0 850917346
## 22182 154 5 3.0 850917346
## 22183 154 7 3.0 850917346
## 22184 154 18 5.0 850917480
## 22185 154 52 5.0 850917383
## 22186 154 62 3.0 850917310
## 22187 154 85 4.0 850917507
## 22188 154 92 3.0 850917507
## 22189 154 107 4.0 850917436
## 22190 154 608 5.0 850917346
## 22191 154 637 3.0 850917416
## 22192 154 648 5.0 853249060
## 22193 154 661 5.0 850917416
## 22194 154 671 4.0 853249033
## 22195 154 673 4.0 850917554
## 22196 154 708 3.0 850917383
## 22197 154 711 3.0 850917460
## 22198 154 762 4.0 850917416
## 22199 154 780 5.0 853249233
## 22200 154 783 3.0 850917383
## 22201 154 806 4.0 850917687
## 22202 154 1060 5.0 853249301
## 22203 154 1391 4.0 850917706
## 22204 154 1393 4.0 853249189
## 22205 154 1405 4.0 850917917
## 22206 155 32 3.0 943350048
## 22207 155 110 4.0 943350687
## 22208 155 198 4.0 943350250
## 22209 155 260 5.0 943350048
## 22210 155 480 2.0 943350184
## 22211 155 527 5.0 943351044
## 22212 155 541 5.0 943350184
## 22213 155 589 4.0 943350184
## 22214 155 593 5.0 943350686
## 22215 155 750 3.0 943350048
## 22216 155 780 2.0 943350327
## 22217 155 908 4.0 943350749
## 22218 155 912 4.0 943350905
## 22219 155 924 4.0 943350292
## 22220 155 965 4.0 943350953
## 22221 155 1097 4.0 943350184
## 22222 155 1127 3.0 943350327
## 22223 155 1129 4.0 943350400
## 22224 155 1148 5.0 943350687
## 22225 155 1175 3.0 943350140
## 22226 155 1193 5.0 943351044
## 22227 155 1196 5.0 943350101
## 22228 155 1197 4.0 943350749
## 22229 155 1198 4.0 943350868
## 22230 155 1199 3.0 943350140
## 22231 155 1200 5.0 943350140
## 22232 155 1206 4.0 943350327
## 22233 155 1210 5.0 943350140
## 22234 155 1214 4.0 943350048
## 22235 155 1240 3.0 943350572
## 22236 155 1396 3.0 943350366
## 22237 155 1527 3.0 943350292
## 22238 155 1573 2.0 943350366
## 22239 155 1580 5.0 943350292
## 22240 155 1704 3.0 943350687
## 22241 155 1957 3.0 943350789
## 22242 155 1965 1.0 943350292
## 22243 155 2011 2.0 943350250
## 22244 155 2012 2.0 943350184
## 22245 155 2028 5.0 943350749
## 22246 155 2288 4.0 943350292
## 22247 155 2401 3.0 943350687
## 22248 155 2455 4.0 943350366
## 22249 155 2528 3.0 943350101
## 22250 155 2529 3.0 943350101
## 22251 155 2571 5.0 943350048
## 22252 155 2628 4.0 943350101
## 22253 155 2699 3.0 943350250
## 22254 155 2739 3.0 943350749
## 22255 155 2791 5.0 943350804
## 22256 155 2916 3.0 943350250
## 22257 156 36 5.0 1277430241
## 22258 156 372 4.0 1277429637
## 22259 156 485 3.5 1277429506
## 22260 156 508 5.0 1277430118
## 22261 156 585 0.5 1277429585
## 22262 156 785 4.5 1277429569
## 22263 156 802 4.5 1277429489
## 22264 156 1042 4.5 1277429611
## 22265 156 1271 4.5 1277429617
## 22266 156 1285 4.5 1277429566
## 22267 156 1572 4.5 1277429999
## 22268 156 1673 5.0 1277429498
## 22269 156 1722 0.5 1277429539
## 22270 156 1747 4.5 1277429559
## 22271 156 1884 5.0 1277429786
## 22272 156 2395 4.0 1277429514
## 22273 156 2770 1.5 1277429575
## 22274 156 2797 5.0 1277430139
## 22275 156 2858 5.0 1277430057
## 22276 156 3101 4.5 1277429528
## 22277 156 3255 5.0 1277429591
## 22278 156 3556 4.5 1277430041
## 22279 156 3717 0.5 1277429624
## 22280 156 3948 5.0 1277429905
## 22281 156 4239 4.5 1277429941
## 22282 156 4262 4.5 1277430276
## 22283 156 4776 5.0 1277429930
## 22284 156 4816 4.5 1277429977
## 22285 156 4975 5.0 1277430183
## 22286 156 5103 4.5 1277430169
## 22287 156 5577 5.0 1277429860
## 22288 156 8533 5.0 1277429834
## 22289 156 8910 5.0 1277430028
## 22290 156 48516 5.0 1277429950
## 22291 156 55280 5.0 1277429804
## 22292 156 55765 5.0 1277430198
## 22293 156 56367 4.0 1277430018
## 22294 156 60756 5.0 1277430103
## 22295 156 66665 4.0 1277429774
## 22296 156 69122 4.5 1277429880
## 22297 156 69481 4.5 1277429888
## 22298 156 70286 4.0 1277429869
## 22299 156 72226 5.0 1277430304
## 22300 156 74458 4.5 1277429818
## 22301 156 77561 0.5 1277430461
## 22302 157 1 3.5 1291598726
## 22303 157 2 2.5 1291654669
## 22304 157 10 3.5 1291598989
## 22305 157 12 2.0 1291598164
## 22306 157 32 4.0 1308343617
## 22307 157 34 1.0 1323623560
## 22308 157 47 3.5 1292893066
## 22309 157 50 4.0 1323549288
## 22310 157 160 3.0 1293113893
## 22311 157 165 3.0 1291598753
## 22312 157 208 2.0 1365940346
## 22313 157 235 4.5 1291599967
## 22314 157 260 3.5 1291598691
## 22315 157 267 2.5 1291598182
## 22316 157 293 4.5 1291599434
## 22317 157 296 4.0 1293212841
## 22318 157 316 3.0 1365939855
## 22319 157 344 1.0 1365940218
## 22320 157 367 1.0 1365940267
## 22321 157 370 2.5 1292452031
## 22322 157 377 3.0 1292893321
## 22323 157 466 2.5 1292452011
## 22324 157 480 3.0 1365940159
## 22325 157 485 2.5 1293113928
## 22326 157 527 3.0 1291599281
## 22327 157 541 3.5 1362937775
## 22328 157 551 4.0 1293016220
## 22329 157 586 3.0 1292893387
## 22330 157 589 4.0 1291598937
## 22331 157 648 3.5 1291598930
## 22332 157 733 3.0 1291598910
## 22333 157 736 2.5 1291598746
## 22334 157 741 4.0 1291599847
## 22335 157 778 4.0 1291599703
## 22336 157 780 3.0 1291598762
## 22337 157 924 3.5 1291654589
## 22338 157 1036 3.0 1292893393
## 22339 157 1097 3.0 1291598808
## 22340 157 1127 3.5 1293016236
## 22341 157 1196 3.5 1291598784
## 22342 157 1198 3.5 1291598908
## 22343 157 1200 4.0 1291599001
## 22344 157 1206 4.0 1291599826
## 22345 157 1208 4.0 1291599797
## 22346 157 1210 3.5 1291598625
## 22347 157 1214 4.0 1291654582
## 22348 157 1222 4.0 1291599448
## 22349 157 1240 4.0 1291598885
## 22350 157 1258 4.0 1291599736
## 22351 157 1261 3.5 1365893094
## 22352 157 1265 3.0 1292893377
## 22353 157 1270 4.0 1291598828
## 22354 157 1274 4.0 1291599916
## 22355 157 1291 3.5 1320685313
## 22356 157 1320 3.5 1293113883
## 22357 157 1387 3.0 1291654595
## 22358 157 1391 2.5 1291665492
## 22359 157 1517 3.5 1291599035
## 22360 157 1527 3.5 1292893137
## 22361 157 1544 3.0 1293109610
## 22362 157 1573 2.5 1291654674
## 22363 157 1580 3.0 1291598819
## 22364 157 1590 3.5 1323617866
## 22365 157 1653 4.0 1291599973
## 22366 157 1676 2.5 1292893513
## 22367 157 1682 4.0 1365891786
## 22368 157 1690 3.0 1292451944
## 22369 157 1721 3.0 1291599080
## 22370 157 1732 4.0 1344511098
## 22371 157 1923 2.0 1294526056
## 22372 157 1961 3.5 1292893076
## 22373 157 1991 3.0 1291598335
## 22374 157 2003 3.0 1292521972
## 22375 157 2012 3.5 1291654575
## 22376 157 2025 3.0 1365939990
## 22377 157 2028 3.0 1295793889
## 22378 157 2054 3.0 1344510238
## 22379 157 2115 3.5 1292893361
## 22380 157 2162 2.5 1291598407
## 22381 157 2167 2.5 1365941887
## 22382 157 2288 4.5 1355865691
## 22383 157 2291 4.0 1291599122
## 22384 157 2355 3.0 1291599023
## 22385 157 2363 3.0 1291598299
## 22386 157 2382 2.0 1365941508
## 22387 157 2383 2.0 1365941511
## 22388 157 2421 2.5 1291598091
## 22389 157 2455 4.5 1344510553
## 22390 157 2470 2.5 1292451929
## 22391 157 2502 3.0 1365939927
## 22392 157 2571 4.5 1295749331
## 22393 157 2628 2.5 1323618008
## 22394 157 2683 3.0 1365940395
## 22395 157 2692 4.0 1291599810
## 22396 157 2706 3.0 1291598945
## 22397 157 2710 3.5 1344510213
## 22398 157 2716 3.5 1291598880
## 22399 157 2762 4.0 1291598742
## 22400 157 2810 4.0 1344510970
## 22401 157 2858 4.0 1292540589
## 22402 157 2890 3.5 1293109639
## 22403 157 2959 4.5 1295749344
## 22404 157 2985 3.0 1292451917
## 22405 157 3000 4.5 1291599722
## 22406 157 3020 3.5 1323649448
## 22407 157 3113 1.0 1365941844
## 22408 157 3271 3.5 1292893831
## 22409 157 3441 3.0 1291598272
## 22410 157 3527 3.5 1291654702
## 22411 157 3535 4.0 1295663802
## 22412 157 3623 1.5 1291599091
## 22413 157 3793 3.5 1291598864
## 22414 157 3917 3.5 1291598320
## 22415 157 3977 1.0 1344510369
## 22416 157 4011 4.0 1320684776
## 22417 157 4022 3.5 1294526030
## 22418 157 4036 3.0 1291598302
## 22419 157 4084 3.0 1291598172
## 22420 157 4226 4.5 1295749327
## 22421 157 4306 3.0 1291598859
## 22422 157 4310 2.5 1292451959
## 22423 157 4367 2.0 1344510529
## 22424 157 4370 3.5 1291665526
## 22425 157 4454 4.5 1291666053
## 22426 157 4545 3.0 1291598243
## 22427 157 4718 2.5 1292451971
## 22428 157 4878 4.5 1295749346
## 22429 157 4886 3.5 1291598976
## 22430 157 4902 3.5 1295749296
## 22431 157 4963 4.0 1291598901
## 22432 157 4973 4.0 1291598941
## 22433 157 4993 3.5 1292893258
## 22434 157 5010 3.5 1293016263
## 22435 157 5146 4.0 1365939667
## 22436 157 5254 2.5 1365941890
## 22437 157 5349 3.0 1365939875
## 22438 157 5378 2.5 1323618006
## 22439 157 5418 3.5 1362938388
## 22440 157 5445 3.5 1293016283
## 22441 157 5618 4.5 1308343658
## 22442 157 5679 2.5 1344510472
## 22443 157 5690 3.5 1291600250
## 22444 157 5903 3.5 1292893873
## 22445 157 5952 3.5 1291598877
## 22446 157 6016 4.0 1312671459
## 22447 157 6218 1.5 1344510189
## 22448 157 6283 4.0 1291599840
## 22449 157 6333 3.0 1323623646
## 22450 157 6365 3.0 1365939971
## 22451 157 6373 2.5 1291665485
## 22452 157 6377 3.5 1291598862
## 22453 157 6378 4.0 1291665463
## 22454 157 6502 4.5 1291599986
## 22455 157 6537 3.0 1293016287
## 22456 157 6539 3.0 1365939907
## 22457 157 6863 3.5 1291665403
## 22458 157 6874 3.5 1323617840
## 22459 157 6934 2.5 1365939958
## 22460 157 7022 4.0 1344510959
## 22461 157 7090 4.0 1291599851
## 22462 157 7153 3.5 1291598673
## 22463 157 7254 4.0 1291665568
## 22464 157 7360 4.0 1330113012
## 22465 157 7361 4.0 1295583661
## 22466 157 7438 2.5 1291598696
## 22467 157 7454 1.5 1365941863
## 22468 157 7981 3.5 1292499258
## 22469 157 8012 4.0 1291600170
## 22470 157 8117 4.0 1291599997
## 22471 157 8157 4.0 1362938231
## 22472 157 8360 3.0 1291599019
## 22473 157 8361 2.0 1365941322
## 22474 157 8370 4.0 1344509737
## 22475 157 8636 3.0 1291598711
## 22476 157 8644 2.5 1365940004
## 22477 157 8665 3.5 1362938408
## 22478 157 8861 2.0 1291598416
## 22479 157 8874 3.5 1365939715
## 22480 157 8914 4.0 1291599978
## 22481 157 8950 4.5 1291599751
## 22482 157 8961 3.0 1291598639
## 22483 157 8984 2.0 1365941516
## 22484 157 8985 1.0 1365941909
## 22485 157 26547 3.5 1291644796
## 22486 157 27317 4.0 1355865366
## 22487 157 27773 4.5 1291599694
## 22488 157 27801 4.0 1323549425
## 22489 157 27831 3.5 1292893101
## 22490 157 30745 3.5 1291644922
## 22491 157 30793 3.0 1291654728
## 22492 157 31364 4.0 1291644715
## 22493 157 31658 4.0 1291644679
## 22494 157 31878 3.5 1344509648
## 22495 157 32078 3.0 1344510654
## 22496 157 32587 4.0 1291598768
## 22497 157 32840 4.0 1323540498
## 22498 157 33004 3.0 1292452004
## 22499 157 33493 2.5 1323618003
## 22500 157 33794 4.0 1362938402
## 22501 157 34048 2.0 1291665551
## 22502 157 34150 2.0 1365941993
## 22503 157 34405 3.5 1293109672
## 22504 157 35836 3.0 1293016154
## 22505 157 36529 4.0 1291599930
## 22506 157 37731 4.5 1292893813
## 22507 157 42632 4.0 1325041713
## 22508 157 44665 4.5 1295749334
## 22509 157 45499 3.0 1293016163
## 22510 157 45722 3.0 1365939913
## 22511 157 46723 4.5 1344509323
## 22512 157 47491 4.5 1295749355
## 22513 157 47937 3.0 1291599363
## 22514 157 48082 3.5 1295576379
## 22515 157 48385 3.5 1293016134
## 22516 157 48394 4.0 1291599055
## 22517 157 48516 4.0 1344510341
## 22518 157 48780 4.5 1295749321
## 22519 157 49272 3.5 1292893280
## 22520 157 51255 3.0 1295662855
## 22521 157 51662 3.5 1292893170
## 22522 157 52328 3.0 1297193695
## 22523 157 52885 4.5 1295749323
## 22524 157 52952 4.0 1325028444
## 22525 157 53318 4.0 1295663448
## 22526 157 53464 2.0 1365942000
## 22527 157 53468 3.0 1292893998
## 22528 157 53519 3.5 1362938651
## 22529 157 53996 2.5 1365941359
## 22530 157 54286 3.5 1362938391
## 22531 157 54503 3.5 1308343647
## 22532 157 55684 3.0 1362938622
## 22533 157 55721 3.5 1362938345
## 22534 157 55765 3.5 1362937651
## 22535 157 55820 4.0 1291599005
## 22536 157 56174 2.5 1365940028
## 22537 157 56367 4.0 1291599050
## 22538 157 57274 4.0 1291599897
## 22539 157 57504 3.0 1355865379
## 22540 157 57669 4.5 1344510907
## 22541 157 58295 3.5 1365891207
## 22542 157 58376 3.5 1292893005
## 22543 157 58559 4.5 1295749357
## 22544 157 59315 3.0 1291598709
## 22545 157 59369 4.0 1344509870
## 22546 157 59814 4.5 1320685381
## 22547 157 60069 3.5 1323617792
## 22548 157 60074 2.0 1291598421
## 22549 157 60684 4.5 1295749312
## 22550 157 61160 2.5 1323617992
## 22551 157 61240 4.5 1295749337
## 22552 157 62394 0.5 1365941829
## 22553 157 64614 4.5 1295749342
## 22554 157 65514 4.5 1291644683
## 22555 157 65642 4.5 1295749315
## 22556 157 66097 3.5 1344509879
## 22557 157 66130 3.5 1323965285
## 22558 157 67255 4.0 1365940059
## 22559 157 68157 4.0 1291598986
## 22560 157 68237 4.5 1295749325
## 22561 157 68358 4.0 1291599112
## 22562 157 68954 4.0 1291599027
## 22563 157 69122 4.0 1291599135
## 22564 157 69481 3.5 1330113001
## 22565 157 70286 4.5 1295749347
## 22566 157 71106 3.5 1355865641
## 22567 157 71135 4.0 1293109715
## 22568 157 71304 2.5 1293212820
## 22569 157 71535 3.5 1291665385
## 22570 157 72171 4.0 1362938608
## 22571 157 72378 3.0 1292521924
## 22572 157 72998 3.5 1291598631
## 22573 157 73808 4.5 1292890961
## 22574 157 74458 3.5 1365939711
## 22575 157 74789 3.0 1293016250
## 22576 157 76091 4.0 1323622639
## 22577 157 76251 4.0 1291654648
## 22578 157 77561 2.5 1291654739
## 22579 157 79132 4.5 1295749340
## 22580 157 79553 4.0 1369334534
## 22581 157 79702 4.5 1295749318
## 22582 157 80350 0.5 1291599117
## 22583 157 80463 4.5 1323549222
## 22584 157 80489 4.0 1330113072
## 22585 157 81417 3.5 1292893081
## 22586 157 81834 3.5 1369334448
## 22587 157 82242 4.0 1295146250
## 22588 157 82667 4.0 1323623436
## 22589 157 83349 1.5 1365942027
## 22590 157 84952 4.5 1309103313
## 22591 157 85179 4.5 1323559112
## 22592 157 85342 4.0 1365893313
## 22593 157 85414 3.5 1320684703
## 22594 157 85510 0.5 1344510080
## 22595 157 86190 3.0 1365940034
## 22596 157 86320 3.5 1323620427
## 22597 157 86345 4.0 1365939981
## 22598 157 86377 4.0 1365892488
## 22599 157 86892 3.0 1323622974
## 22600 157 87232 4.5 1323623618
## 22601 157 88125 3.5 1369334443
## 22602 157 88129 4.0 1325812510
## 22603 157 88140 2.0 1344510027
## 22604 157 88163 4.0 1344509722
## 22605 157 88744 3.5 1344509886
## 22606 157 89745 3.0 1355865600
## 22607 157 89774 4.0 1344511155
## 22608 157 89864 4.0 1323993937
## 22609 157 89904 4.0 1365892345
## 22610 157 90469 1.5 1365941495
## 22611 157 91529 4.0 1344509506
## 22612 157 92259 4.0 1365939614
## 22613 157 92535 4.0 1365939979
## 22614 157 93838 4.0 1356654885
## 22615 157 93840 4.0 1355865512
## 22616 157 93855 4.0 1365892088
## 22617 157 94780 1.5 1344510618
## 22618 157 94864 3.5 1355865522
## 22619 157 95510 2.5 1365941277
## 22620 157 96079 4.0 1365892481
## 22621 157 96610 4.5 1355865507
## 22622 157 97306 4.0 1367356289
## 22623 157 97752 4.0 1362937379
## 22624 157 97921 4.0 1365887059
## 22625 157 98607 4.0 1366064367
## 22626 157 102125 3.5 1369334582
## 22627 157 102445 4.0 1371067235
## 22628 158 319 4.0 1231502686
## 22629 158 327 2.0 1231502691
## 22630 158 481 3.5 1231502746
## 22631 158 1388 2.5 1231502784
## 22632 158 1957 4.0 1231502707
## 22633 158 1967 4.0 1231502676
## 22634 158 2004 3.5 1231502801
## 22635 158 2376 2.5 1231502861
## 22636 158 2412 4.0 1231502856
## 22637 158 2533 3.0 1231502866
## 22638 158 2643 2.0 1231502844
## 22639 158 3264 1.5 1231502789
## 22640 158 3386 3.5 1231502682
## 22641 158 3984 4.0 1231502808
## 22642 158 30810 4.5 1231502827
## 22643 158 54286 3.5 1231502773
## 22644 158 58559 4.0 1231503014
## 22645 158 60069 1.5 1231502994
## 22646 158 60293 1.5 1231503042
## 22647 158 61323 3.5 1231503157
## 22648 158 62956 4.0 1231503023
## 22649 159 10 2.5 1183519921
## 22650 159 25 4.5 1183519288
## 22651 159 34 2.0 1183519883
## 22652 159 47 3.5 1183519855
## 22653 159 50 4.5 1183519004
## 22654 159 62 3.5 1183519692
## 22655 159 72 0.5 1183519180
## 22656 159 76 3.0 1183518573
## 22657 159 110 4.0 1183519810
## 22658 159 111 4.0 1183518995
## 22659 159 150 3.5 1183519814
## 22660 159 165 3.5 1183519849
## 22661 159 180 3.0 1183519514
## 22662 159 231 1.5 1183519900
## 22663 159 253 1.5 1183519943
## 22664 159 260 5.0 1183518958
## 22665 159 265 4.0 1183519388
## 22666 159 296 4.5 1183518896
## 22667 159 318 5.0 1183518940
## 22668 159 329 2.5 1183519918
## 22669 159 344 2.0 1183519845
## 22670 159 349 2.0 1183519867
## 22671 159 356 4.0 1183519794
## 22672 159 364 3.5 1183519399
## 22673 159 367 1.5 1183519905
## 22674 159 377 3.0 1183519839
## 22675 159 380 3.0 1183519821
## 22676 159 434 0.5 1183519940
## 22677 159 457 3.0 1183519802
## 22678 159 480 4.0 1183519798
## 22679 159 491 1.5 1183518385
## 22680 159 497 3.5 1183519707
## 22681 159 500 2.0 1183519898
## 22682 159 527 4.5 1183518932
## 22683 159 539 2.0 1183519929
## 22684 159 541 5.0 1183518700
## 22685 159 587 2.5 1183519923
## 22686 159 589 3.5 1183519818
## 22687 159 592 3.0 1183519807
## 22688 159 593 5.0 1183518946
## 22689 159 597 3.0 1183519890
## 22690 159 608 4.0 1183518764
## 22691 159 733 2.5 1183519887
## 22692 159 745 3.5 1183519013
## 22693 159 780 3.5 1183519823
## 22694 159 799 3.0 1183518371
## 22695 159 800 4.5 1183519437
## 22696 159 858 4.0 1183518780
## 22697 159 903 4.0 1183519007
## 22698 159 904 5.0 1183518916
## 22699 159 908 4.0 1183518868
## 22700 159 912 5.0 1183518707
## 22701 159 913 4.0 1183518836
## 22702 159 923 5.0 1183518729
## 22703 159 933 4.5 1183518534
## 22704 159 1080 3.5 1183519667
## 22705 159 1097 3.0 1183519916
## 22706 159 1136 4.5 1183518852
## 22707 159 1148 4.0 1183519019
## 22708 159 1196 4.0 1183518962
## 22709 159 1197 4.5 1183518890
## 22710 159 1198 5.0 1183518903
## 22711 159 1204 5.0 1183518813
## 22712 159 1207 4.0 1183518995
## 22713 159 1208 4.5 1183518676
## 22714 159 1210 4.0 1183519833
## 22715 159 1213 4.0 1183518786
## 22716 159 1217 4.0 1183518912
## 22717 159 1221 4.5 1183518783
## 22718 159 1228 4.0 1183518901
## 22719 159 1233 4.0 1183518704
## 22720 159 1240 4.0 1183519937
## 22721 159 1252 5.0 1183518725
## 22722 159 1254 4.0 1183518995
## 22723 159 1262 4.5 1183518791
## 22724 159 1267 4.0 1183518842
## 22725 159 1270 4.0 1183519863
## 22726 159 1580 3.5 1183519595
## 22727 159 1586 3.0 1183518377
## 22728 159 1721 4.0 1183519927
## 22729 159 1907 3.5 1183519710
## 22730 159 1911 1.0 1183518395
## 22731 159 1952 3.5 1183519612
## 22732 159 1955 3.5 1183519234
## 22733 159 1965 4.0 1183518389
## 22734 159 1974 3.5 1183518591
## 22735 159 2000 4.0 1183519353
## 22736 159 2019 4.5 1183518936
## 22737 159 2028 4.5 1183519880
## 22738 159 2302 3.5 1183519734
## 22739 159 2329 4.5 1183518667
## 22740 159 2527 4.0 1183518536
## 22741 159 2571 4.0 1183518845
## 22742 159 2688 3.5 1183518403
## 22743 159 2762 3.0 1183519914
## 22744 159 2858 4.5 1183518664
## 22745 159 2959 3.5 1183518768
## 22746 159 3000 3.5 1183518894
## 22747 159 3019 4.0 1183518568
## 22748 159 3022 3.5 1183518778
## 22749 159 3037 4.0 1183519404
## 22750 159 3070 3.5 1183518550
## 22751 159 3089 3.5 1183518696
## 22752 159 3098 4.0 1183518519
## 22753 159 3104 2.5 1183519617
## 22754 159 3498 3.5 1183519611
## 22755 159 3551 4.0 1183519553
## 22756 159 3698 3.0 1183518491
## 22757 159 3703 4.5 1183519500
## 22758 159 3763 3.0 1183518579
## 22759 159 3836 4.0 1183519171
## 22760 159 4226 3.5 1183518849
## 22761 159 4235 3.5 1183518670
## 22762 159 4308 2.0 1183519684
## 22763 159 4327 4.5 1183519506
## 22764 159 4848 3.0 1183519713
## 22765 159 4878 4.0 1183518745
## 22766 159 4973 4.5 1183518660
## 22767 159 4993 4.5 1183518820
## 22768 159 5015 3.0 1183519658
## 22769 159 5060 4.0 1183519490
## 22770 159 5299 4.0 1183519731
## 22771 159 5952 4.5 1183518833
## 22772 159 5971 3.5 1183518857
## 22773 159 6016 3.5 1183518733
## 22774 159 6350 4.0 1183518710
## 22775 159 6711 2.5 1183519466
## 22776 159 6786 2.5 1183519224
## 22777 159 6807 3.5 1183519665
## 22778 159 6874 4.0 1183519198
## 22779 159 6942 4.0 1183519470
## 22780 159 7143 3.0 1183519269
## 22781 159 7153 4.5 1183518832
## 22782 159 7445 4.5 1183519537
## 22783 159 8645 4.0 1183519558
## 22784 159 8873 3.5 1183519681
## 22785 159 8966 1.5 1183519215
## 22786 159 26294 3.5 1183519761
## 22787 159 26662 4.0 1183519187
## 22788 159 27831 2.5 1183519282
## 22789 159 27838 4.5 1183519581
## 22790 159 30810 1.0 1183519374
## 22791 159 31878 1.5 1183519243
## 22792 159 36529 3.0 1183519455
## 22793 159 46578 4.0 1183519416
## 22794 159 48394 3.5 1183518878
## 22795 159 48516 3.5 1183518740
## 22796 159 51255 3.5 1183518799
## 22797 160 34 2.0 974256306
## 22798 160 36 4.0 974256106
## 22799 160 111 4.0 974255599
## 22800 160 280 5.0 974258204
## 22801 160 318 5.0 974256031
## 22802 160 339 4.0 974256766
## 22803 160 350 4.0 974258113
## 22804 160 356 5.0 974256558
## 22805 160 454 4.0 974258259
## 22806 160 457 5.0 974258079
## 22807 160 490 4.0 974258351
## 22808 160 527 3.0 974255503
## 22809 160 539 5.0 974256628
## 22810 160 586 3.0 974257089
## 22811 160 587 5.0 974256809
## 22812 160 593 3.0 974256051
## 22813 160 597 5.0 974256628
## 22814 160 832 5.0 974258127
## 22815 160 858 3.0 974258948
## 22816 160 1079 3.0 974257297
## 22817 160 1088 4.0 974258881
## 22818 160 1092 4.0 974258307
## 22819 160 1124 5.0 974259358
## 22820 160 1135 4.0 974257516
## 22821 160 1193 5.0 974255556
## 22822 160 1213 3.0 974256205
## 22823 160 1230 5.0 974258923
## 22824 160 1244 4.0 974258923
## 22825 160 1265 4.0 974258618
## 22826 160 1270 3.0 974257259
## 22827 160 1302 4.0 974257680
## 22828 160 1307 5.0 974257378
## 22829 160 1358 5.0 974258079
## 22830 160 1380 4.0 974258923
## 22831 160 1393 5.0 974258587
## 22832 160 1395 3.0 974257516
## 22833 160 1409 3.0 974256830
## 22834 160 1485 3.0 974256784
## 22835 160 1500 4.0 974256766
## 22836 160 1569 3.0 974256864
## 22837 160 1617 3.0 974258079
## 22838 160 1674 5.0 974257782
## 22839 160 1678 4.0 974256180
## 22840 160 1704 5.0 974256122
## 22841 160 1721 4.0 974258635
## 22842 160 1727 3.0 974256416
## 22843 160 1784 4.0 974256588
## 22844 160 1923 4.0 974257038
## 22845 160 1955 5.0 974258996
## 22846 160 1956 4.0 974257697
## 22847 160 1958 5.0 974257391
## 22848 160 1961 5.0 974257680
## 22849 160 1962 4.0 974257730
## 22850 160 1968 4.0 974257362
## 22851 160 2002 4.0 974256809
## 22852 160 2245 4.0 974257871
## 22853 160 2247 3.0 974257475
## 22854 160 2313 4.0 974257808
## 22855 160 2352 4.0 974257712
## 22856 160 2369 4.0 974257516
## 22857 160 2375 3.0 974257547
## 22858 160 2424 4.0 974257038
## 22859 160 2431 4.0 974256864
## 22860 160 2469 2.0 974258881
## 22861 160 2520 4.0 974259049
## 22862 160 2639 4.0 974258004
## 22863 160 2716 2.0 974257362
## 22864 160 2736 4.0 974257437
## 22865 160 2739 5.0 974257730
## 22866 160 2762 5.0 974258079
## 22867 160 2791 3.0 974255599
## 22868 160 2858 3.0 974255556
## 22869 160 2875 3.0 974258728
## 22870 160 2881 5.0 974258307
## 22871 160 2918 4.0 974257297
## 22872 160 2942 4.0 974258004
## 22873 160 2987 2.0 974255556
## 22874 160 3068 5.0 974257855
## 22875 160 3100 4.0 974256221
## 22876 160 3111 5.0 974257888
## 22877 160 3157 2.0 974257056
## 22878 160 3178 4.0 974256628
## 22879 160 3194 4.0 974259013
## 22880 160 3244 4.0 974258923
## 22881 160 3249 5.0 974258142
## 22882 160 3252 5.0 974256394
## 22883 160 3362 5.0 974258996
## 22884 160 3363 4.0 974258974
## 22885 160 3421 3.0 974259106
## 22886 160 3430 4.0 974259049
## 22887 160 3448 3.0 974257297
## 22888 160 3450 3.0 974256661
## 22889 160 3524 3.0 974257516
## 22890 160 3584 4.0 974255599
## 22891 160 3591 4.0 974257475
## 22892 160 3688 3.0 974257600
## 22893 160 3690 2.0 974257630
## 22894 160 3791 4.0 974258004
## 22895 160 3809 5.0 974256977
## 22896 160 3844 5.0 974257950
## 22897 161 2 4.0 837629692
## 22898 161 10 4.0 837629446
## 22899 161 11 4.0 837629659
## 22900 161 17 5.0 837629711
## 22901 161 21 3.0 837629516
## 22902 161 25 3.0 837629819
## 22903 161 31 3.0 837629820
## 22904 161 32 3.0 837629562
## 22905 161 36 4.0 837629925
## 22906 161 39 3.0 837629544
## 22907 161 44 3.0 837629757
## 22908 161 47 4.0 837629464
## 22909 161 48 3.0 837629866
## 22910 161 62 4.0 837629820
## 22911 161 95 4.0 837629733
## 22912 161 141 5.0 837629733
## 22913 161 145 3.0 837630800
## 22914 161 150 4.0 837629353
## 22915 161 153 3.0 837629381
## 22916 161 158 4.0 837629757
## 22917 161 160 3.0 837629544
## 22918 161 161 5.0 837629427
## 22919 161 163 4.0 837630040
## 22920 161 165 3.0 837629381
## 22921 161 172 4.0 837629757
## 22922 161 173 3.0 837629586
## 22923 161 181 3.0 837630800
## 22924 161 185 4.0 837629446
## 22925 161 204 3.0 837629733
## 22926 161 224 3.0 837629820
## 22927 161 225 4.0 837629488
## 22928 161 227 3.0 837629973
## 22929 161 231 3.0 837629407
## 22930 161 236 3.0 837629615
## 22931 161 237 3.0 837629940
## 22932 161 252 4.0 837629692
## 22933 161 256 3.0 837629757
## 22934 161 261 3.0 837629733
## 22935 161 266 4.0 837629562
## 22936 161 277 3.0 837629896
## 22937 161 292 4.0 837629427
## 22938 161 293 3.0 837629711
## 22939 161 296 3.0 837629353
## 22940 161 300 4.0 837629464
## 22941 161 315 3.0 837629586
## 22942 161 316 3.0 837629406
## 22943 161 317 3.0 837629516
## 22944 161 318 5.0 837629406
## 22945 161 329 3.0 837629406
## 22946 161 337 3.0 837629692
## 22947 161 339 3.0 837629446
## 22948 161 344 4.0 837629381
## 22949 161 349 3.0 837629381
## 22950 161 350 5.0 837629659
## 22951 161 356 4.0 837629488
## 22952 161 357 5.0 837629692
## 22953 161 364 3.0 837629516
## 22954 161 367 3.0 837629516
## 22955 161 368 5.0 837630040
## 22956 161 370 3.0 837630800
## 22957 161 377 5.0 837629562
## 22958 161 380 4.0 837629354
## 22959 161 410 5.0 837629464
## 22960 161 420 3.0 837629544
## 22961 161 434 3.0 837629427
## 22962 161 440 4.0 837629586
## 22963 161 442 3.0 837629711
## 22964 161 454 4.0 837629488
## 22965 161 457 5.0 837629427
## 22966 161 474 4.0 837629866
## 22967 161 480 4.0 837629488
## 22968 161 485 3.0 837630094
## 22969 161 500 4.0 837629586
## 22970 161 508 4.0 837629925
## 22971 161 509 4.0 837629733
## 22972 161 515 3.0 837629973
## 22973 161 539 3.0 837629615
## 22974 161 553 4.0 837629615
## 22975 161 585 3.0 837629925
## 22976 161 586 3.0 837629659
## 22977 161 587 4.0 837629615
## 22978 161 588 3.0 837629381
## 22979 161 589 5.0 837629544
## 22980 161 590 3.0 837629353
## 22981 161 592 3.0 837629353
## 22982 161 593 5.0 837629427
## 22983 161 595 3.0 837629407
## 22984 161 597 3.0 837629659
## 22985 161 608 3.0 837630040
## 22986 161 648 3.0 837630094
## 22987 162 3 2.0 852791965
## 22988 162 5 4.0 852791965
## 22989 162 6 3.0 852791965
## 22990 162 7 3.0 852791965
## 22991 162 17 4.0 852792058
## 22992 162 36 3.0 852791965
## 22993 162 52 5.0 852791994
## 22994 162 62 5.0 852792058
## 22995 162 64 3.0 852792308
## 22996 162 100 3.0 852792221
## 22997 162 118 3.0 852792392
## 22998 162 140 4.0 852792019
## 22999 162 141 5.0 852792058
## 23000 162 376 4.0 852791965
## 23001 162 494 3.0 852792107
## 23002 162 605 3.0 852792452
## 23003 162 608 5.0 852791965
## 23004 162 637 3.0 852792019
## 23005 162 648 3.0 852792058
## 23006 162 650 3.0 852792354
## 23007 162 707 3.0 852792246
## 23008 162 708 3.0 852791994
## 23009 162 719 3.0 852792246
## 23010 162 736 2.0 852792058
## 23011 162 780 3.0 852792058
## 23012 162 788 3.0 852791994
## 23013 162 805 3.0 852792221
## 23014 162 852 3.0 852792272
## 23015 162 1353 3.0 852792392
## 23016 162 1393 5.0 852792372
## 23017 163 1 3.0 1390767736
## 23018 163 19 0.5 1390776289
## 23019 163 110 4.0 1390766930
## 23020 163 150 4.5 1390766905
## 23021 163 153 0.5 1390767109
## 23022 163 260 4.0 1390766833
## 23023 163 296 3.0 1390766954
## 23024 163 318 5.0 1294084408
## 23025 163 344 1.5 1390767810
## 23026 163 356 5.0 1294158771
## 23027 163 367 2.0 1390767129
## 23028 163 457 4.0 1390766921
## 23029 163 480 3.5 1390766825
## 23030 163 527 5.0 1294084403
## 23031 163 586 3.5 1390776274
## 23032 163 588 2.5 1390767042
## 23033 163 589 2.0 1390766869
## 23034 163 592 2.5 1390766860
## 23035 163 593 4.5 1390766814
## 23036 163 648 3.0 1390776270
## 23037 163 743 0.5 1294063848
## 23038 163 780 3.0 1390766855
## 23039 163 858 5.0 1294084360
## 23040 163 1092 3.5 1294063744
## 23041 163 1196 4.0 1390767035
## 23042 163 1210 4.0 1390766848
## 23043 163 1221 5.0 1294084374
## 23044 163 1370 1.5 1390776630
## 23045 163 1704 4.5 1294158881
## 23046 163 1721 3.5 1390767124
## 23047 163 1735 4.5 1294064044
## 23048 163 1835 3.5 1294063913
## 23049 163 1882 1.5 1294063829
## 23050 163 1994 3.5 1390767684
## 23051 163 2028 4.0 1390767157
## 23052 163 2278 4.0 1294063761
## 23053 163 2324 3.0 1294158283
## 23054 163 2404 0.5 1294159272
## 23055 163 2412 0.5 1294063996
## 23056 163 2541 4.0 1294063793
## 23057 163 2571 2.0 1390766977
## 23058 163 2858 4.5 1294158301
## 23059 163 2997 4.5 1390767211
## 23060 163 3438 2.0 1294063921
## 23061 163 3578 3.5 1390767582
## 23062 163 3615 2.0 1294064126
## 23063 163 3717 3.5 1390776583
## 23064 163 3793 3.5 1390776260
## 23065 163 4718 2.5 1390776566
## 23066 163 4963 4.0 1390767742
## 23067 163 4993 3.5 1390767117
## 23068 163 5349 2.5 1390776249
## 23069 163 6059 0.5 1294064112
## 23070 163 6565 4.5 1294159057
## 23071 163 7153 3.0 1294158525
## 23072 163 8636 2.5 1390776545
## 23073 163 33493 3.5 1390776540
## 23074 163 55247 3.5 1390767791
## 23075 163 56174 1.5 1294158761
## 23076 163 60069 4.0 1294158603
## 23077 163 64034 4.5 1390768421
## 23078 163 66544 3.0 1294158232
## 23079 163 72378 0.5 1390767164
## 23080 163 73290 4.5 1320604494
## 23081 163 74688 2.5 1320602141
## 23082 163 78499 2.5 1294158583
## 23083 163 79132 2.5 1294064035
## 23084 163 82202 2.5 1294064607
## 23085 163 87485 1.5 1320618115
## 23086 163 88744 4.5 1321732673
## 23087 163 91077 3.5 1390776168
## 23088 163 92751 4.0 1390766615
## 23089 163 93422 4.0 1390767537
## 23090 163 97938 4.0 1390775823
## 23091 163 98809 3.5 1390767498
## 23092 163 103249 3.0 1390775312
## 23093 163 104337 4.0 1390775779
## 23094 163 104925 3.5 1390775955
## 23095 163 105844 4.0 1390766794
## 23096 163 106489 4.0 1390767502
## 23097 163 106782 4.5 1390767414
## 23098 164 1 3.5 1179531301
## 23099 164 10 4.0 1182287578
## 23100 164 104 4.0 1180653733
## 23101 164 110 3.0 1182619735
## 23102 164 111 4.5 1182619786
## 23103 164 223 4.5 1182287392
## 23104 164 231 2.0 1179531233
## 23105 164 260 3.0 1179531305
## 23106 164 293 4.0 1178928230
## 23107 164 296 4.5 1182619724
## 23108 164 317 1.0 1178927026
## 23109 164 318 4.5 1182619722
## 23110 164 364 4.0 1179530417
## 23111 164 441 4.0 1182287459
## 23112 164 480 3.0 1182620144
## 23113 164 608 4.5 1182619843
## 23114 164 609 2.0 1178926978
## 23115 164 788 2.5 1178926928
## 23116 164 904 3.5 1179031670
## 23117 164 908 4.5 1178927749
## 23118 164 913 4.0 1179891195
## 23119 164 922 4.0 1179030022
## 23120 164 954 5.0 1182619887
## 23121 164 1073 4.0 1182387701
## 23122 164 1089 5.0 1178927475
## 23123 164 1136 3.5 1179533887
## 23124 164 1203 5.0 1178927651
## 23125 164 1206 5.0 1178926943
## 23126 164 1207 4.0 1179031702
## 23127 164 1208 4.0 1182287518
## 23128 164 1210 2.5 1182619757
## 23129 164 1240 2.5 1182620184
## 23130 164 1265 4.0 1179531237
## 23131 164 1285 4.0 1178927539
## 23132 164 1517 4.0 1179531366
## 23133 164 1580 3.5 1179530356
## 23134 164 1688 3.0 1178926883
## 23135 164 1704 4.0 1182287580
## 23136 164 1722 3.5 1178926971
## 23137 164 1732 3.5 1182619909
## 23138 164 1907 3.0 1178926953
## 23139 164 1923 3.5 1179530384
## 23140 164 1968 4.0 1179031968
## 23141 164 2109 4.0 1178927123
## 23142 164 2321 4.0 1178927517
## 23143 164 2683 4.0 1179531258
## 23144 164 2791 4.0 1179890279
## 23145 164 2858 4.0 1180653109
## 23146 164 2947 4.0 1178927090
## 23147 164 3114 3.5 1178926925
## 23148 164 3253 3.5 1179890296
## 23149 164 3751 3.5 1179890318
## 23150 164 4022 4.0 1179530376
## 23151 164 4027 4.0 1179031032
## 23152 164 4306 4.0 1178928048
## 23153 164 4447 3.0 1178926889
## 23154 164 4641 4.5 1178927454
## 23155 164 4878 5.0 1179890521
## 23156 164 4973 4.0 1182619921
## 23157 164 4993 3.0 1179531357
## 23158 164 5349 3.5 1182619938
## 23159 164 5418 4.0 1178927008
## 23160 164 5810 3.5 1178926870
## 23161 164 5952 2.5 1179531309
## 23162 164 6218 4.0 1179031139
## 23163 164 6331 4.5 1182619942
## 23164 164 6373 3.5 1179891094
## 23165 164 6377 3.5 1179530369
## 23166 164 6502 3.5 1182619905
## 23167 164 7153 3.0 1178927037
## 23168 164 8360 2.5 1182620196
## 23169 164 8464 4.0 1182287570
## 23170 164 8600 4.0 1182287586
## 23171 164 8636 3.0 1182619936
## 23172 164 8665 3.5 1179531245
## 23173 164 8784 5.0 1178927228
## 23174 164 8961 3.5 1178927070
## 23175 164 26974 4.0 1182619873
## 23176 164 33166 4.0 1182387710
## 23177 164 34048 3.5 1182287590
## 23178 164 43396 3.0 1182619927
## 23179 164 45728 4.0 1182287395
## 23180 165 1 2.5 1111482682
## 23181 165 2 3.0 1111981462
## 23182 165 3 2.5 1111981538
## 23183 165 10 2.5 1111482847
## 23184 165 19 1.0 1111482570
## 23185 165 21 2.5 1111479425
## 23186 165 22 3.5 1111479044
## 23187 165 31 3.5 1111981801
## 23188 165 44 4.0 1111482102
## 23189 165 47 3.5 1111479971
## 23190 165 50 2.0 1111482816
## 23191 165 62 3.5 1111981437
## 23192 165 70 5.0 1111480089
## 23193 165 81 3.0 1111482441
## 23194 165 104 4.0 1111482096
## 23195 165 110 4.5 1111912930
## 23196 165 111 4.0 1111981448
## 23197 165 112 2.0 1111981621
## 23198 165 145 3.5 1111981751
## 23199 165 158 2.0 1111479041
## 23200 165 163 4.0 1111981715
## 23201 165 165 5.0 1111612298
## 23202 165 173 1.5 1111981610
## 23203 165 181 1.0 1111482443
## 23204 165 185 2.5 1111482873
## 23205 165 196 2.0 1111981642
## 23206 165 198 3.0 1111479127
## 23207 165 216 3.5 1111981940
## 23208 165 225 2.0 1111981559
## 23209 165 231 4.0 1111482094
## 23210 165 246 3.0 1111980924
## 23211 165 276 2.0 1111982099
## 23212 165 280 3.5 1111982190
## 23213 165 292 3.0 1111482854
## 23214 165 293 5.0 1111479305
## 23215 165 296 3.5 1111480525
## 23216 165 317 2.5 1111981484
## 23217 165 318 4.0 1111479639
## 23218 165 322 4.5 1111609877
## 23219 165 338 2.0 1111982333
## 23220 165 339 2.5 1111482645
## 23221 165 344 4.0 1111482800
## 23222 165 350 3.0 1111482557
## 23223 165 356 3.5 1111480611
## 23224 165 364 3.5 1111482824
## 23225 165 367 3.5 1111482856
## 23226 165 370 3.0 1111981697
## 23227 165 377 3.0 1111480633
## 23228 165 380 4.0 1111480618
## 23229 165 393 1.0 1111611009
## 23230 165 413 3.0 1111982342
## 23231 165 424 3.5 1111610567
## 23232 165 428 3.0 1111480423
## 23233 165 432 2.0 1111981613
## 23234 165 434 2.0 1111482554
## 23235 165 442 2.5 1111981478
## 23236 165 457 3.0 1111479900
## 23237 165 466 4.0 1111482079
## 23238 165 470 3.0 1111612047
## 23239 165 480 3.0 1111480613
## 23240 165 485 3.5 1111482300
## 23241 165 500 3.0 1111482850
## 23242 165 502 1.5 1111479498
## 23243 165 508 4.5 1111479855
## 23244 165 514 3.0 1111479736
## 23245 165 520 5.0 1111479064
## 23246 165 524 3.0 1111982109
## 23247 165 527 4.0 1120068294
## 23248 165 529 3.5 1111482724
## 23249 165 538 3.5 1111982281
## 23250 165 539 2.0 1111981315
## 23251 165 543 4.5 1111612357
## 23252 165 546 1.0 1111611453
## 23253 165 586 4.5 1111482718
## 23254 165 587 3.0 1111482864
## 23255 165 588 4.0 1111480626
## 23256 165 589 4.5 1113267986
## 23257 165 592 4.0 1111480537
## 23258 165 593 3.0 1111480609
## 23259 165 595 3.0 1111482813
## 23260 165 596 3.0 1111612353
## 23261 165 608 3.0 1111480631
## 23262 165 648 3.5 1111482809
## 23263 165 653 1.0 1111482551
## 23264 165 671 3.5 1111482370
## 23265 165 673 1.5 1111981824
## 23266 165 733 3.0 1111482833
## 23267 165 736 2.5 1111482822
## 23268 165 741 1.0 1112679125
## 23269 165 780 4.0 1111480621
## 23270 165 784 2.0 1111981662
## 23271 165 802 2.5 1111482731
## 23272 165 805 4.5 1111981721
## 23273 165 810 2.5 1111483539
## 23274 165 832 2.5 1111981626
## 23275 165 834 3.0 1111544586
## 23276 165 866 3.0 1111982104
## 23277 165 919 3.5 1111482179
## 23278 165 968 5.0 1111480014
## 23279 165 1022 3.0 1111981968
## 23280 165 1027 3.0 1111482392
## 23281 165 1032 3.0 1111982266
## 23282 165 1036 2.5 1111479916
## 23283 165 1047 3.0 1111981835
## 23284 165 1059 4.0 1111612225
## 23285 165 1061 2.5 1111610189
## 23286 165 1073 5.0 1111482359
## 23287 165 1092 2.5 1111981773
## 23288 165 1097 4.0 1111482860
## 23289 165 1198 4.0 1111482627
## 23290 165 1200 3.5 1111981454
## 23291 165 1208 3.0 1111981544
## 23292 165 1215 3.5 1111482290
## 23293 165 1222 2.0 1111981603
## 23294 165 1240 3.0 1111609894
## 23295 165 1257 1.5 1111479962
## 23296 165 1258 1.0 1111981565
## 23297 165 1259 3.5 1111479987
## 23298 165 1265 4.0 1111482033
## 23299 165 1270 3.5 1111481917
## 23300 165 1291 3.0 1111480417
## 23301 165 1307 2.5 1111482635
## 23302 165 1320 3.5 1111479101
## 23303 165 1333 2.5 1111981816
## 23304 165 1347 4.5 1111982292
## 23305 165 1370 2.5 1111480080
## 23306 165 1377 4.0 1111482012
## 23307 165 1380 2.0 1111479020
## 23308 165 1391 3.0 1111481945
## 23309 165 1393 5.0 1111612302
## 23310 165 1405 4.0 1111981890
## 23311 165 1430 2.5 1111544609
## 23312 165 1447 3.5 1111544605
## 23313 165 1485 4.0 1111981711
## 23314 165 1490 0.5 1111611335
## 23315 165 1500 4.0 1111482493
## 23316 165 1517 2.5 1111481904
## 23317 165 1527 4.0 1112176015
## 23318 165 1532 2.5 1111544615
## 23319 165 1544 3.0 1111482601
## 23320 165 1552 2.5 1111482228
## 23321 165 1562 0.5 1111982007
## 23322 165 1573 3.5 1111482648
## 23323 165 1580 2.5 1111609797
## 23324 165 1597 2.5 1111482168
## 23325 165 1599 3.0 1111481213
## 23326 165 1625 3.0 1111479081
## 23327 165 1632 2.5 1111544629
## 23328 165 1639 4.0 1111482544
## 23329 165 1645 2.5 1111482162
## 23330 165 1661 1.5 1111544643
## 23331 165 1681 0.5 1111611428
## 23332 165 1682 3.0 1111482297
## 23333 165 1704 4.0 1111479936
## 23334 165 1721 3.0 1111482007
## 23335 165 1729 2.0 1111981828
## 23336 165 1739 0.5 1111481183
## 23337 165 1747 1.0 1111482560
## 23338 165 1753 4.0 1111479403
## 23339 165 1777 3.5 1111482502
## 23340 165 1784 3.0 1111481912
## 23341 165 1805 2.0 1111982193
## 23342 165 1840 3.0 1111479764
## 23343 165 1863 3.5 1111610272
## 23344 165 1876 3.0 1111482039
## 23345 165 1882 1.0 1111982294
## 23346 165 1886 1.5 1111611940
## 23347 165 1917 5.0 1111481969
## 23348 165 1921 3.5 1111982185
## 23349 165 1923 3.5 1111482007
## 23350 165 1970 3.0 1112679242
## 23351 165 1972 3.5 1111482343
## 23352 165 1997 2.5 1111481937
## 23353 165 2003 3.5 1111981798
## 23354 165 2005 3.5 1111479677
## 23355 165 2012 2.5 1111481863
## 23356 165 2018 3.0 1111982351
## 23357 165 2025 2.5 1111612199
## 23358 165 2028 4.0 1111481983
## 23359 165 2054 3.0 1111479052
## 23360 165 2078 3.0 1111982010
## 23361 165 2081 2.0 1111479088
## 23362 165 2087 3.0 1111982307
## 23363 165 2115 3.0 1111482251
## 23364 165 2134 3.0 1111612190
## 23365 165 2174 3.5 1111479770
## 23366 165 2231 3.0 1111610238
## 23367 165 2232 5.0 1111609799
## 23368 165 2248 2.0 1111980163
## 23369 165 2253 3.5 1111480641
## 23370 165 2278 1.0 1111981918
## 23371 165 2302 3.0 1111481853
## 23372 165 2321 3.0 1111481929
## 23373 165 2329 4.5 1111480370
## 23374 165 2338 2.0 1111482351
## 23375 165 2353 4.0 1111479079
## 23376 165 2395 3.5 1111482199
## 23377 165 2420 4.5 1111479346
## 23378 165 2421 4.0 1111479353
## 23379 165 2422 3.0 1111479385
## 23380 165 2424 3.0 1111981819
## 23381 165 2449 3.0 1111610900
## 23382 165 2455 3.0 1111981837
## 23383 165 2462 3.0 1111481241
## 23384 165 2490 0.5 1111981929
## 23385 165 2502 3.0 1111479056
## 23386 165 2541 5.0 1111982121
## 23387 165 2571 5.0 1111480428
## 23388 165 2580 4.0 1111479966
## 23389 165 2617 3.5 1111481985
## 23390 165 2628 2.5 1111482668
## 23391 165 2662 2.0 1111482591
## 23392 165 2683 2.5 1111482027
## 23393 165 2686 4.5 1111482431
## 23394 165 2692 3.5 1111481961
## 23395 165 2699 3.0 1111479011
## 23396 165 2700 4.5 1111481861
## 23397 165 2706 3.5 1111481975
## 23398 165 2710 0.5 1111482114
## 23399 165 2716 3.5 1111981451
## 23400 165 2746 3.0 1111482574
## 23401 165 2762 5.0 1111480419
## 23402 165 2791 3.0 1111981616
## 23403 165 2797 4.0 1111482437
## 23404 165 2799 2.5 1111481181
## 23405 165 2804 2.5 1111482692
## 23406 165 2841 3.0 1111610514
## 23407 165 2845 0.5 1111544698
## 23408 165 2858 3.5 1111481873
## 23409 165 2881 1.0 1111982102
## 23410 165 2890 2.5 1111482060
## 23411 165 2916 3.0 1111481989
## 23412 165 2918 5.0 1111479924
## 23413 165 2953 3.5 1111482608
## 23414 165 2959 5.0 1111480653
## 23415 165 2979 2.0 1111544701
## 23416 165 2987 4.0 1111479767
## 23417 165 2997 3.0 1111482042
## 23418 165 3000 3.5 1111609915
## 23419 165 3020 4.5 1111479759
## 23420 165 3033 4.0 1111479682
## 23421 165 3046 2.0 1111544716
## 23422 165 3052 2.0 1111481749
## 23423 165 3081 2.0 1111482099
## 23424 165 3101 2.5 1111479106
## 23425 165 3147 4.0 1111479859
## 23426 165 3148 3.5 1111482598
## 23427 165 3160 3.5 1111981804
## 23428 165 3253 3.5 1111479715
## 23429 165 3255 3.0 1111482585
## 23430 165 3257 2.0 1111479356
## 23431 165 3271 3.0 1111479931
## 23432 165 3300 1.5 1111612105
## 23433 165 3328 3.5 1111482407
## 23434 165 3350 3.0 1120068354
## 23435 165 3354 0.5 1111982354
## 23436 165 3437 5.0 1111611824
## 23437 165 3438 3.0 1111611097
## 23438 165 3439 4.0 1111611099
## 23439 165 3440 2.5 1111611103
## 23440 165 3471 2.5 1111482158
## 23441 165 3481 3.0 1111481949
## 23442 165 3510 3.0 1111480425
## 23443 165 3535 2.0 1111982349
## 23444 165 3554 4.0 1112679158
## 23445 165 3555 3.0 1111982299
## 23446 165 3578 3.5 1111479902
## 23447 165 3593 0.5 1111610943
## 23448 165 3617 2.5 1111982357
## 23449 165 3623 0.5 1111479113
## 23450 165 3696 5.0 1111544780
## 23451 165 3751 2.0 1111482054
## 23452 165 3752 2.0 1111982324
## 23453 165 3761 2.5 1111976030
## 23454 165 3773 3.0 1111612043
## 23455 165 3774 3.5 1111612045
## 23456 165 3785 3.5 1111982301
## 23457 165 3793 4.0 1111481856
## 23458 165 3823 1.5 1111544774
## 23459 165 3863 2.5 1111982128
## 23460 165 3869 3.5 1111482367
## 23461 165 3897 3.5 1111479994
## 23462 165 3914 1.0 1111544796
## 23463 165 3916 3.0 1111610539
## 23464 165 3943 4.0 1111544813
## 23465 165 3948 2.0 1111482140
## 23466 165 3949 2.5 1111980153
## 23467 165 3973 0.5 1111611914
## 23468 165 3977 1.0 1111482127
## 23469 165 3996 5.0 1111481866
## 23470 165 4011 1.0 1111609765
## 23471 165 4019 3.5 1111609772
## 23472 165 4022 2.5 1111482063
## 23473 165 4025 1.5 1111479360
## 23474 165 4034 3.5 1111479094
## 23475 165 4054 3.5 1111974579
## 23476 165 4066 3.5 1111612079
## 23477 165 4105 3.0 1111609926
## 23478 165 4128 4.0 1111610175
## 23479 165 4217 2.5 1120068379
## 23480 165 4226 3.5 1111479248
## 23481 165 4235 4.0 1111980518
## 23482 165 4255 3.0 1111611899
## 23483 165 4262 2.0 1111609900
## 23484 165 4306 4.0 1111479940
## 23485 165 4369 2.0 1111482425
## 23486 165 4370 1.0 1111982123
## 23487 165 4446 3.5 1111482418
## 23488 165 4532 2.5 1120068461
## 23489 165 4533 4.5 1120068453
## 23490 165 4571 4.0 1111479751
## 23491 165 4616 3.0 1111610138
## 23492 165 4623 2.5 1111610270
## 23493 165 4630 5.0 1111611982
## 23494 165 4649 2.5 1111544905
## 23495 165 4720 3.5 1111610250
## 23496 165 4732 2.5 1111544926
## 23497 165 4734 2.5 1111482568
## 23498 165 4749 2.0 1111481171
## 23499 165 4750 1.5 1111481174
## 23500 165 4765 3.0 1111544922
## 23501 165 4775 2.0 1111481159
## 23502 165 4875 1.0 1111610955
## 23503 165 4878 3.5 1111479322
## 23504 165 4886 3.0 1111480753
## 23505 165 4963 3.0 1112862161
## 23506 165 4968 1.5 1111544939
## 23507 165 4995 3.5 1111610361
## 23508 165 5053 3.0 1111611965
## 23509 165 5080 2.5 1111609693
## 23510 165 5094 1.0 1111611733
## 23511 165 5095 3.0 1111612120
## 23512 165 5103 3.5 1111479713
## 23513 165 5106 1.5 1111611419
## 23514 165 5152 1.0 1111610214
## 23515 165 5165 3.5 1111480053
## 23516 165 5170 2.5 1111544956
## 23517 165 5294 1.5 1111610103
## 23518 165 5323 3.5 1111611803
## 23519 165 5329 2.0 1111545166
## 23520 165 5349 4.0 1111481920
## 23521 165 5378 0.5 1111981923
## 23522 165 5387 1.0 1111544973
## 23523 165 5418 2.0 1111479893
## 23524 165 5443 2.0 1111610890
## 23525 165 5445 3.5 1111479887
## 23526 165 5448 2.5 1111611144
## 23527 165 5464 1.0 1111483124
## 23528 165 5501 3.0 1111545003
## 23529 165 5502 4.5 1111982312
## 23530 165 5507 1.0 1111482454
## 23531 165 5531 2.5 1111544994
## 23532 165 5556 1.0 1111611741
## 23533 165 5562 2.0 1111544998
## 23534 165 5569 2.0 1111545007
## 23535 165 5577 3.0 1111612163
## 23536 165 5597 4.0 1111610879
## 23537 165 5609 0.5 1111611730
## 23538 165 5615 1.5 1111545018
## 23539 165 5625 1.0 1111479721
## 23540 165 5628 2.0 1111545012
## 23541 165 5630 3.0 1111480432
## 23542 165 5669 4.5 1111980113
## 23543 165 5679 3.5 1111609738
## 23544 165 5765 5.0 1111479691
## 23545 165 5880 0.5 1111611312
## 23546 165 5883 2.0 1111611979
## 23547 165 5901 2.5 1111545046
## 23548 165 5902 0.5 1111980416
## 23549 165 5903 3.5 1111480402
## 23550 165 5945 2.5 1111482091
## 23551 165 5955 5.0 1111479949
## 23552 165 5959 4.0 1111610222
## 23553 165 5962 0.5 1111611889
## 23554 165 5989 3.5 1111480414
## 23555 165 6016 3.0 1111479653
## 23556 165 6057 2.5 1111545061
## 23557 165 6063 4.5 1111479742
## 23558 165 6157 3.0 1112679205
## 23559 165 6188 4.0 1111610235
## 23560 165 6204 2.5 1111611955
## 23561 165 6218 2.5 1111609912
## 23562 165 6242 2.0 1111979893
## 23563 165 6284 0.5 1111479753
## 23564 165 6323 4.0 1111610524
## 23565 165 6333 3.5 1111479877
## 23566 165 6365 2.0 1111982019
## 23567 165 6378 1.5 1111610528
## 23568 165 6464 2.0 1111483520
## 23569 165 6482 0.5 1111611916
## 23570 165 6502 3.5 1111482107
## 23571 165 6587 0.5 1111481156
## 23572 165 6620 1.5 1111980536
## 23573 165 6731 4.0 1111480034
## 23574 165 6796 4.5 1111610549
## 23575 165 6827 2.0 1111481221
## 23576 165 6867 1.0 1111980432
## 23577 165 6870 3.0 1111980126
## 23578 165 6872 0.5 1111610819
## 23579 165 6874 5.0 1111480750
## 23580 165 6909 3.0 1111912447
## 23581 165 6936 2.5 1111482460
## 23582 165 6942 4.0 1111609760
## 23583 165 6947 1.0 1111482458
## 23584 165 6953 1.0 1111610395
## 23585 165 7022 3.5 1111609775
## 23586 165 7090 3.5 1111610377
## 23587 165 7117 3.0 1111611208
## 23588 165 7137 2.5 1111610228
## 23589 165 7139 3.0 1111980236
## 23590 165 7143 5.0 1111479870
## 23591 165 7160 1.5 1111479295
## 23592 165 7189 1.5 1111483453
## 23593 165 7254 3.5 1111479987
## 23594 165 7263 2.5 1111480374
## 23595 165 7315 2.0 1111611968
## 23596 165 7343 1.5 1112176029
## 23597 165 7360 4.0 1111480043
## 23598 165 7361 4.0 1111479326
## 23599 165 7387 1.5 1111480042
## 23600 165 7438 4.0 1111480654
## 23601 165 7445 4.0 1111480366
## 23602 165 7458 2.5 1111479400
## 23603 165 7802 4.0 1112679238
## 23604 165 7899 3.0 1111610107
## 23605 165 8130 3.0 1111544466
## 23606 165 8225 2.5 1111480022
## 23607 165 8360 4.0 1111480666
## 23608 165 8363 1.0 1111611403
## 23609 165 8366 2.0 1111979070
## 23610 165 8367 2.0 1112095574
## 23611 165 8372 1.0 1111611905
## 23612 165 8528 2.0 1111479699
## 23613 165 8529 3.5 1112078947
## 23614 165 8533 2.0 1111912388
## 23615 165 8534 2.5 1113813088
## 23616 165 8636 4.0 1111480382
## 23617 165 8641 2.5 1111479407
## 23618 165 8645 5.0 1111980134
## 23619 165 8665 3.5 1111479979
## 23620 165 8667 2.0 1111610219
## 23621 165 8720 2.5 1111611992
## 23622 165 8781 3.0 1111479704
## 23623 165 8783 1.5 1111479377
## 23624 165 8784 4.0 1111479298
## 23625 165 8798 4.0 1111610172
## 23626 165 8807 3.5 1111479419
## 23627 165 8810 1.0 1111479349
## 23628 165 8832 1.5 1111610198
## 23629 165 8835 1.5 1111479362
## 23630 165 8836 0.5 1111479487
## 23631 165 8839 2.5 1111481229
## 23632 165 8860 1.0 1111479436
## 23633 165 8861 0.5 1111479388
## 23634 165 8864 3.5 1111479342
## 23635 165 8865 1.5 1111479431
## 23636 165 8870 4.0 1111479473
## 23637 165 8874 4.0 1111480068
## 23638 165 8907 2.0 1111912408
## 23639 165 8908 1.0 1111479466
## 23640 165 8910 1.5 1111479442
## 23641 165 8911 2.5 1113813097
## 23642 165 8918 2.5 1111479446
## 23643 165 8937 4.5 1111479434
## 23644 165 8947 1.0 1111912422
## 23645 165 8957 4.5 1112176043
## 23646 165 8958 3.5 1120068362
## 23647 165 8961 3.0 1111479242
## 23648 165 8974 2.5 1112679141
## 23649 165 8984 1.0 1112862150
## 23650 165 9010 5.0 1111480338
## 23651 165 9018 2.5 1112078957
## 23652 165 27317 3.0 1111610390
## 23653 165 27604 2.0 1113411108
## 23654 165 27773 4.0 1111479561
## 23655 165 27808 3.0 1112679214
## 23656 165 27822 0.5 1111479464
## 23657 165 27838 3.0 1112679117
## 23658 165 27869 3.0 1113167865
## 23659 165 30749 1.0 1120068332
## 23660 165 30820 2.5 1112982315
## 23661 165 31221 3.5 1112679197
## 23662 165 31445 2.0 1111479484
## 23663 165 31696 2.5 1111479578
## 23664 165 31724 1.0 1111479503
## 23665 165 32587 4.0 1112840368
## 23666 165 33794 3.5 1120068275
## 23667 166 34 4.0 1064888506
## 23668 166 147 4.5 1064888637
## 23669 166 163 3.5 1064888606
## 23670 166 293 4.5 1064888812
## 23671 166 342 4.0 1064887336
## 23672 166 356 4.0 1064889082
## 23673 166 376 4.0 1064887032
## 23674 166 435 0.5 1064886959
## 23675 166 480 3.5 1064889111
## 23676 166 524 4.0 1064888483
## 23677 166 590 5.0 1064889120
## 23678 166 608 3.0 1064888510
## 23679 166 653 3.0 1064887021
## 23680 166 785 2.0 1064887460
## 23681 166 912 2.0 1064888582
## 23682 166 1242 5.0 1064887402
## 23683 166 1246 4.5 1064889089
## 23684 166 1393 4.0 1064889126
## 23685 166 1584 4.0 1064889136
## 23686 166 1676 3.0 1064889007
## 23687 166 1682 4.0 1064887297
## 23688 166 1732 1.0 1064887367
## 23689 166 1917 3.0 1064887265
## 23690 166 1968 4.0 1064889114
## 23691 166 2096 4.0 1064888456
## 23692 166 2302 4.0 1064887417
## 23693 166 2355 4.0 1064886953
## 23694 166 2797 4.5 1064887245
## 23695 166 3114 4.0 1064887231
## 23696 166 3404 3.0 1064888661
## 23697 166 3489 4.0 1064888994
## 23698 166 3578 5.0 1064887026
## 23699 166 3624 4.0 1064887949
## 23700 166 3751 3.0 1064887383
## 23701 166 3897 4.5 1064887435
## 23702 166 4223 4.0 1064889094
## 23703 166 4262 4.0 1064888885
## 23704 166 4367 2.5 1064888102
## 23705 166 4886 4.5 1064889159
## 23706 166 4963 3.5 1064887933
## 23707 166 5349 4.0 1064887939
## 23708 166 5445 4.5 1064887945
## 23709 166 5669 5.0 1064888495
## 23710 166 5952 4.5 1064888405
## 23711 166 5989 4.5 1064887927
## 23712 166 6156 4.0 1064888066
## 23713 166 6157 2.5 1064889000
## 23714 166 6287 3.0 1064888682
## 23715 166 6333 4.0 1064887923
## 23716 166 6383 2.0 1064888685
## 23717 166 6535 4.0 1064888374
## 23718 166 6539 4.5 1064887792
## 23719 166 6564 2.5 1064887823
## 23720 166 6595 4.0 1064887801
## 23721 166 6596 2.5 1064887827
## 23722 166 6686 2.0 1064888366
## 23723 167 480 5.0 954114978
## 23724 167 575 5.0 954115144
## 23725 167 1097 5.0 954114904
## 23726 167 1199 4.0 954115020
## 23727 167 1210 3.0 954114958
## 23728 167 1214 4.0 954114958
## 23729 167 1240 4.0 954114958
## 23730 167 1270 5.0 954114930
## 23731 167 2002 4.0 954053457
## 23732 167 2053 4.0 954053457
## 23733 167 2078 5.0 954053212
## 23734 167 2081 4.0 954115144
## 23735 167 2174 2.0 954053165
## 23736 167 2355 4.0 954115544
## 23737 167 2365 2.0 954115062
## 23738 167 2407 4.0 954114998
## 23739 167 2454 5.0 954115020
## 23740 167 2455 5.0 954115040
## 23741 167 2571 2.0 954114904
## 23742 167 2640 3.0 954114998
## 23743 167 2699 3.0 954115524
## 23744 167 2985 3.0 954114978
## 23745 167 3101 5.0 954051710
## 23746 167 3157 4.0 954115163
## 23747 168 1 5.0 848866772
## 23748 168 4 3.0 848879299
## 23749 168 20 2.0 848879311
## 23750 168 21 4.0 848879039
## 23751 168 32 3.0 848866720
## 23752 168 39 4.0 848866720
## 23753 168 50 4.0 848866691
## 23754 168 93 2.0 848879389
## 23755 168 110 3.0 848866642
## 23756 168 111 5.0 848866943
## 23757 168 122 3.0 848879277
## 23758 168 145 3.0 848879177
## 23759 168 150 4.0 848866570
## 23760 168 151 3.0 848879076
## 23761 168 153 3.0 848866602
## 23762 168 163 3.0 848879158
## 23763 168 164 3.0 848879389
## 23764 168 165 3.0 848866602
## 23765 168 173 1.0 848866744
## 23766 168 175 3.0 848879449
## 23767 168 196 2.0 848879076
## 23768 168 198 2.0 848879256
## 23769 168 204 3.0 848879090
## 23770 168 217 3.0 848879608
## 23771 168 225 3.0 848866720
## 23772 168 227 2.0 848879167
## 23773 168 234 2.0 848879242
## 23774 168 235 4.0 848866964
## 23775 168 237 3.0 848879151
## 23776 168 252 3.0 848879090
## 23777 168 255 1.0 848879412
## 23778 168 259 3.0 848879449
## 23779 168 260 5.0 848879311
## 23780 168 269 4.0 848879781
## 23781 168 287 3.0 848879874
## 23782 168 288 3.0 848866666
## 23783 168 292 3.0 848866631
## 23784 168 296 4.0 848866570
## 23785 168 300 4.0 848866683
## 23786 168 318 5.0 848866631
## 23787 168 322 4.0 848879585
## 23788 168 329 3.0 848866631
## 23789 168 333 2.0 848879115
## 23790 168 356 4.0 848866615
## 23791 168 357 3.0 848866720
## 23792 168 358 2.0 848879527
## 23793 168 364 4.0 848866666
## 23794 168 371 3.0 848879231
## 23795 168 377 4.0 848866653
## 23796 168 378 3.0 848879424
## 23797 168 380 3.0 848866570
## 23798 168 384 3.0 848879761
## 23799 168 391 3.0 848879900
## 23800 168 410 3.0 848866683
## 23801 168 417 4.0 848879377
## 23802 168 419 1.0 848879222
## 23803 168 420 1.0 848866720
## 23804 168 426 3.0 848879364
## 23805 168 427 3.0 848879256
## 23806 168 428 3.0 848879489
## 23807 168 432 3.0 848866744
## 23808 168 434 3.0 848866631
## 23809 168 440 4.0 848866730
## 23810 168 442 3.0 848866757
## 23811 168 445 3.0 848879489
## 23812 168 450 2.0 848879449
## 23813 168 454 3.0 848866653
## 23814 168 457 4.0 848866602
## 23815 168 474 4.0 848866744
## 23816 168 485 2.0 848879115
## 23817 168 489 2.0 848879333
## 23818 168 493 4.0 848879513
## 23819 168 500 3.0 848879030
## 23820 168 505 2.0 848879570
## 23821 168 508 3.0 848866772
## 23822 168 509 3.0 848866757
## 23823 168 510 2.0 848879661
## 23824 168 514 3.0 848879318
## 23825 168 515 4.0 848866861
## 23826 168 516 3.0 848879396
## 23827 168 519 1.0 848879299
## 23828 168 524 3.0 848879333
## 23829 168 535 3.0 848879349
## 23830 168 538 3.0 848879389
## 23831 168 540 2.0 848879201
## 23832 168 541 4.0 848879462
## 23833 168 553 3.0 848866772
## 23834 168 555 4.0 848879127
## 23835 168 569 3.0 848879585
## 23836 168 587 3.0 848866683
## 23837 168 589 4.0 848866653
## 23838 168 590 4.0 848866570
## 23839 168 592 3.0 848866570
## 23840 168 593 5.0 848866954
## 23841 168 597 3.0 848866683
## 23842 168 608 5.0 848866823
## 23843 168 639 3.0 848879799
## 23844 168 648 3.0 848866900
## 23845 168 750 5.0 848879829
## 23846 168 780 4.0 848866900
## 23847 168 912 5.0 848879874
## 23848 168 924 5.0 848879838
## 23849 168 1021 3.0 848879822
## 23850 168 1028 5.0 848879600
## 23851 168 1035 3.0 848879553
## 23852 168 1036 5.0 848866980
## 23853 168 1073 5.0 848879424
## 23854 168 1079 4.0 848879585
## 23855 168 1089 4.0 848879874
## 23856 168 1092 3.0 848879886
## 23857 168 1097 4.0 848879667
## 23858 168 1101 2.0 848879730
## 23859 168 1136 4.0 848879812
## 23860 168 1196 4.0 848879846
## 23861 168 1198 5.0 848879900
## 23862 168 1210 4.0 848879900
## 23863 169 1 4.0 1234228717
## 23864 169 60 1.5 1234227391
## 23865 169 262 3.5 1234228429
## 23866 169 274 2.0 1234227686
## 23867 169 502 3.5 1234227478
## 23868 169 527 5.0 1234228124
## 23869 169 780 5.0 1234228422
## 23870 169 838 3.5 1234228513
## 23871 169 914 3.5 1234228764
## 23872 169 1021 3.0 1234227487
## 23873 169 1197 4.0 1234228105
## 23874 169 1270 3.5 1234228754
## 23875 169 2059 4.0 1234227516
## 23876 169 2346 1.0 1234227572
## 23877 169 2422 3.5 1234227474
## 23878 169 2424 4.0 1234228215
## 23879 169 2571 5.0 1234228070
## 23880 169 2572 4.0 1234227791
## 23881 169 2762 4.5 1234228613
## 23882 169 2962 3.0 1234228370
## 23883 169 3114 3.5 1234228773
## 23884 169 3594 3.5 1234227692
## 23885 169 3791 2.5 1234227497
## 23886 169 3793 5.0 1234228796
## 23887 169 4016 4.0 1234228306
## 23888 169 4069 2.0 1234227463
## 23889 169 4306 5.0 1234228634
## 23890 169 4886 5.0 1234228604
## 23891 169 4896 3.5 1234228309
## 23892 169 4963 5.0 1234228703
## 23893 169 4993 5.0 1234228062
## 23894 169 4995 3.5 1234228640
## 23895 169 5103 4.5 1234228737
## 23896 169 5418 5.0 1234228624
## 23897 169 5816 3.5 1234228295
## 23898 169 5903 4.0 1234228827
## 23899 169 5952 5.0 1234228530
## 23900 169 5989 4.5 1234228679
## 23901 169 6333 5.0 1234228677
## 23902 169 6377 4.5 1234228584
## 23903 169 6378 5.0 1234228759
## 23904 169 6539 5.0 1234228608
## 23905 169 6593 4.5 1234228236
## 23906 169 6881 1.0 1234227698
## 23907 169 7139 3.5 1234227565
## 23908 169 7143 4.5 1234228728
## 23909 169 7153 5.0 1234228064
## 23910 169 7163 5.0 1234228200
## 23911 169 7444 3.5 1234227812
## 23912 169 8131 5.0 1234228470
## 23913 169 8360 5.0 1234228302
## 23914 169 8368 3.0 1234228925
## 23915 169 8373 2.5 1234227650
## 23916 169 8636 4.0 1234228789
## 23917 169 8643 3.0 1234228162
## 23918 169 8644 4.5 1234228488
## 23919 169 8665 5.0 1234228667
## 23920 169 8808 3.0 1234228178
## 23921 169 8961 4.5 1234228586
## 23922 169 8970 5.0 1234228592
## 23923 169 8982 3.5 1234228391
## 23924 169 26198 3.5 1234228341
## 23925 169 27808 3.0 1234227608
## 23926 169 31225 5.0 1234228749
## 23927 169 32587 4.0 1234228835
## 23928 169 33166 5.0 1234228978
## 23929 169 33794 5.0 1234228540
## 23930 169 34332 4.0 1234228501
## 23931 169 34405 5.0 1234228611
## 23932 169 36525 3.0 1234228242
## 23933 169 37475 4.5 1234228411
## 23934 169 40815 3.0 1234228944
## 23935 169 40819 5.0 1234228974
## 23936 169 42732 2.0 1234228185
## 23937 169 43936 4.0 1234227822
## 23938 169 44191 5.0 1234228823
## 23939 169 44665 4.5 1234228629
## 23940 169 45499 5.0 1234228476
## 23941 169 46578 2.5 1234229002
## 23942 169 47099 5.0 1234228254
## 23943 169 47610 5.0 1234228652
## 23944 169 48516 4.5 1234228857
## 23945 169 48774 5.0 1234228994
## 23946 169 48780 5.0 1234228867
## 23947 169 48982 4.5 1234228692
## 23948 169 49278 3.5 1234228981
## 23949 169 49530 5.0 1234228905
## 23950 169 50872 5.0 1234228589
## 23951 169 51935 5.0 1234228300
## 23952 169 52458 3.5 1234228417
## 23953 169 52722 4.5 1234228224
## 23954 169 53121 5.0 1234228245
## 23955 169 53123 3.0 1234228913
## 23956 169 53972 5.0 1234228427
## 23957 169 54001 3.5 1234228263
## 23958 169 54259 5.0 1234228383
## 23959 169 54286 4.0 1234228570
## 23960 169 54736 5.0 1234228757
## 23961 169 55290 4.5 1234227677
## 23962 169 56152 5.0 1234228437
## 23963 169 56174 4.5 1234227525
## 23964 169 56949 4.0 1234228168
## 23965 169 58299 5.0 1234228443
## 23966 169 58559 5.0 1234227999
## 23967 169 58803 5.0 1234227839
## 23968 169 59784 5.0 1234228650
## 23969 169 60069 3.5 1234228849
## 23970 169 60126 4.0 1234228440
## 23971 169 61729 4.0 1234228373
## 23972 169 63515 4.5 1234228843
## 23973 169 63859 5.0 1234227768
## 23974 169 64249 3.5 1234228257
## 23975 169 64957 3.5 1234228939
## 23976 170 29 2.5 1220532219
## 23977 170 524 2.5 1220532237
## 23978 170 616 2.0 1220532233
## 23979 170 849 1.0 1220532210
## 23980 170 1093 2.0 1220532230
## 23981 170 1240 3.0 1263219169
## 23982 170 1270 1.0 1263219174
## 23983 170 1272 3.0 1220532208
## 23984 170 1299 3.5 1220532234
## 23985 170 1373 4.0 1220532238
## 23986 170 1527 2.0 1263219159
## 23987 170 1682 3.0 1263219164
## 23988 170 1805 4.5 1220532240
## 23989 170 1962 1.5 1220532200
## 23990 170 2020 3.0 1220532223
## 23991 170 2078 2.0 1220532202
## 23992 170 2144 3.0 1220532233
## 23993 170 2355 2.5 1263219154
## 23994 170 2723 2.5 1220532222
## 23995 170 2881 2.5 1220532231
## 23996 170 3107 1.5 1220532229
## 23997 170 3174 3.0 1220532245
## 23998 170 3510 2.0 1220532233
## 23999 170 3702 3.0 1220532228
## 24000 170 3703 3.0 1220532205
## 24001 170 5952 3.0 1263219135
## 24002 171 16 5.0 950556329
## 24003 171 47 4.0 950996333
## 24004 171 110 5.0 950556269
## 24005 171 111 5.0 950556231
## 24006 171 223 5.0 950556680
## 24007 171 296 5.0 950996299
## 24008 171 555 5.0 950996381
## 24009 171 608 5.0 950996299
## 24010 171 785 5.0 950556788
## 24011 171 1034 5.0 950996358
## 24012 171 1089 5.0 950996299
## 24013 171 1093 3.0 950556231
## 24014 171 1179 3.0 950996333
## 24015 171 1198 5.0 950556329
## 24016 171 1213 5.0 950996299
## 24017 171 1466 4.0 950996299
## 24018 171 1500 4.0 950996381
## 24019 171 1513 4.0 950556889
## 24020 171 1729 5.0 950996333
## 24021 171 1732 4.0 950996358
## 24022 171 1747 3.0 950556329
## 24023 171 1805 3.0 950996381
## 24024 171 2231 4.0 950996408
## 24025 171 2268 4.0 950996408
## 24026 171 2301 4.0 950556329
## 24027 171 2336 5.0 950556723
## 24028 171 2355 4.0 950556652
## 24029 171 2395 5.0 950556889
## 24030 171 2396 5.0 950556911
## 24031 171 2541 4.0 950556680
## 24032 171 2598 3.0 950556889
## 24033 171 2599 5.0 950556705
## 24034 171 2683 3.0 950556611
## 24035 171 2686 4.0 951774844
## 24036 171 2688 2.0 951139528
## 24037 171 2694 4.0 950556652
## 24038 171 2699 4.0 950556611
## 24039 171 2702 4.0 950556911
## 24040 171 2707 4.0 950556611
## 24041 171 2710 2.0 950556652
## 24042 171 2716 3.0 950556751
## 24043 171 2724 4.0 950556889
## 24044 171 2734 4.0 950556821
## 24045 171 2770 4.0 950556652
## 24046 171 2858 5.0 950556611
## 24047 171 2881 3.0 950556705
## 24048 171 2987 3.0 950556960
## 24049 171 3039 3.0 950556231
## 24050 172 17 4.0 843290928
## 24051 172 32 3.0 843290818
## 24052 172 34 3.0 843290717
## 24053 172 50 5.0 843290785
## 24054 172 107 5.0 843291455
## 24055 172 141 3.0 843291407
## 24056 172 150 4.0 843290451
## 24057 172 296 5.0 843290451
## 24058 172 300 4.0 843290752
## 24059 172 318 4.0 843290567
## 24060 172 356 3.0 843290566
## 24061 172 364 3.0 843290717
## 24062 172 377 3.0 843290752
## 24063 172 457 4.0 843290534
## 24064 172 480 3.0 843290645
## 24065 172 509 4.0 843290928
## 24066 172 527 4.0 843290844
## 24067 172 539 3.0 843290844
## 24068 172 586 4.0 843290786
## 24069 172 588 3.0 843290496
## 24070 172 590 3.0 843290451
## 24071 172 592 3.0 843290451
## 24072 172 663 5.0 843291455
## 24073 172 806 5.0 843291455
## 24074 173 1 4.0 875357598
## 24075 173 6 5.0 875357288
## 24076 173 32 4.0 875356677
## 24077 173 40 4.0 875356897
## 24078 173 62 4.0 875460345
## 24079 173 100 4.0 876821498
## 24080 173 107 3.0 875357448
## 24081 173 112 4.0 875460476
## 24082 173 260 5.0 875356589
## 24083 173 494 4.0 876821269
## 24084 173 605 5.0 876821382
## 24085 173 647 4.0 875357143
## 24086 173 653 3.0 876821405
## 24087 173 673 4.0 876821773
## 24088 173 708 3.0 876821338
## 24089 173 733 5.0 875356897
## 24090 173 736 4.0 876821462
## 24091 173 745 5.0 875356590
## 24092 173 762 3.0 876823420
## 24093 173 778 5.0 875356505
## 24094 173 780 4.0 876821249
## 24095 173 799 4.0 875356898
## 24096 173 804 4.0 876821747
## 24097 173 805 4.0 876821177
## 24098 173 832 4.0 875357143
## 24099 173 852 5.0 875357504
## 24100 173 999 3.0 876821773
## 24101 173 1003 3.0 876821498
## 24102 173 1047 4.0 875357598
## 24103 173 1073 4.0 876822636
## 24104 173 1210 4.0 875356506
## 24105 173 1367 4.0 875357504
## 24106 173 1485 3.0 875356096
## 24107 173 1517 4.0 876821366
## 24108 173 1542 5.0 876821338
## 24109 173 1552 4.0 876821250
## 24110 173 1562 3.0 876822114
## 24111 173 1569 5.0 875356677
## 24112 173 1580 4.0 875357289
## 24113 173 1591 3.0 876821028
## 24114 174 48 4.5 1109621256
## 24115 174 163 1.5 1109621187
## 24116 174 168 4.0 1109621240
## 24117 174 172 2.0 1109621197
## 24118 174 186 3.5 1109621215
## 24119 174 246 1.0 1109621190
## 24120 174 342 2.5 1109621247
## 24121 174 370 3.5 1109621206
## 24122 174 543 3.0 1109621260
## 24123 174 552 4.0 1109621268
## 24124 174 1094 2.0 1109621184
## 24125 174 1252 0.5 1109621175
## 24126 174 1376 4.5 1109621264
## 24127 174 1380 4.5 1109621244
## 24128 174 1639 4.0 1109621237
## 24129 174 2302 2.5 1109621251
## 24130 174 2699 3.5 1109621233
## 24131 174 3751 3.0 1109621170
## 24132 174 3897 4.0 1109621166
## 24133 174 5060 3.5 1109621201
## 24134 174 6534 3.0 1109623540
## 24135 175 1 4.0 1052837092
## 24136 175 47 4.0 1052884279
## 24137 175 48 3.0 1052884607
## 24138 175 73 4.0 1052884561
## 24139 175 95 4.0 1052836094
## 24140 175 107 4.0 1052884580
## 24141 175 199 4.0 1052883340
## 24142 175 260 5.0 1052836298
## 24143 175 261 4.0 1052836837
## 24144 175 262 5.0 1052836450
## 24145 175 276 2.0 1052836139
## 24146 175 296 5.0 1052836094
## 24147 175 308 3.0 1052884351
## 24148 175 364 4.0 1052884561
## 24149 175 480 4.0 1052884652
## 24150 175 588 3.0 1052884328
## 24151 175 595 4.0 1052884561
## 24152 175 647 3.0 1052835782
## 24153 175 783 3.0 1052884580
## 24154 175 919 4.0 1052837107
## 24155 175 1022 4.0 1052884387
## 24156 175 1029 4.0 1052835824
## 24157 175 1097 4.0 1052884090
## 24158 175 1196 5.0 1052836299
## 24159 175 1197 4.0 1052884057
## 24160 175 1198 4.0 1052836981
## 24161 175 1207 4.0 1052883110
## 24162 175 1210 5.0 1052836299
## 24163 175 1211 5.0 1052883365
## 24164 175 1242 4.0 1052837129
## 24165 175 1260 4.0 1052883957
## 24166 175 1265 3.0 1052884237
## 24167 175 1270 3.0 1052835731
## 24168 175 1291 4.0 1052884115
## 24169 175 1348 3.0 1052883909
## 24170 175 1416 4.0 1052884607
## 24171 175 1479 3.0 1052835996
## 24172 175 1487 3.0 1052884607
## 24173 175 1527 4.0 1052884668
## 24174 175 1537 4.0 1052837118
## 24175 175 1562 2.0 1052836139
## 24176 175 1580 4.0 1052884652
## 24177 175 1584 4.0 1052884668
## 24178 175 1653 4.0 1052835698
## 24179 175 1688 4.0 1052884561
## 24180 175 1704 5.0 1052884216
## 24181 175 1721 3.0 1052883663
## 24182 175 1784 4.0 1052884252
## 24183 175 1961 4.0 1052884134
## 24184 175 1968 4.0 1052884134
## 24185 175 2010 4.0 1052883909
## 24186 175 2028 1.0 1052835797
## 24187 175 2059 4.0 1052836094
## 24188 175 2077 4.0 1052884101
## 24189 175 2083 4.0 1052884561
## 24190 175 2084 4.0 1052884580
## 24191 175 2089 4.0 1052836112
## 24192 175 2092 2.0 1052884607
## 24193 175 2115 4.0 1052884171
## 24194 175 2125 4.0 1052884387
## 24195 175 2248 4.0 1052884134
## 24196 175 2291 3.0 1052835757
## 24197 175 2324 4.0 1052837138
## 24198 175 2394 4.0 1052884580
## 24199 175 2424 2.0 1052835824
## 24200 175 2542 4.0 1052884306
## 24201 175 2571 5.0 1052837064
## 24202 175 2628 3.0 1052836299
## 24203 175 2791 4.0 1052884134
## 24204 175 2858 4.0 1052837064
## 24205 175 2907 3.0 1052835680
## 24206 175 2918 4.0 1052884090
## 24207 175 2953 2.0 1052836058
## 24208 175 2959 5.0 1052836746
## 24209 175 3114 4.0 1052884243
## 24210 175 3159 4.0 1052884370
## 24211 175 3160 4.0 1052883399
## 24212 175 3350 4.0 1052836024
## 24213 175 3565 3.0 1052883579
## 24214 175 3668 2.0 1052835996
## 24215 175 3844 4.0 1052883399
## 24216 175 3910 5.0 1052835893
## 24217 175 3948 2.0 1052883487
## 24218 175 3977 2.0 1052883562
## 24219 175 3996 3.0 1052836544
## 24220 175 4016 5.0 1052836491
## 24221 175 4018 3.0 1052836125
## 24222 175 4025 3.0 1052883600
## 24223 175 4054 4.0 1052836665
## 24224 175 4161 4.0 1052883579
## 24225 175 4226 4.0 1052836233
## 24226 175 4246 2.0 1052836656
## 24227 175 4306 4.0 1052836491
## 24228 175 4308 5.0 1052836601
## 24229 175 4447 4.0 1052883522
## 24230 175 4459 5.0 1052883264
## 24231 175 4519 4.0 1052835712
## 24232 175 4700 4.0 1052883635
## 24233 175 4823 4.0 1052883635
## 24234 175 4896 4.0 1052836491
## 24235 175 4963 4.0 1052836734
## 24236 175 4993 5.0 1052836265
## 24237 175 5103 4.0 1052836151
## 24238 175 5299 4.0 1052836656
## 24239 175 5349 4.0 1052836544
## 24240 175 5378 2.0 1052836299
## 24241 175 5444 5.0 1052836491
## 24242 175 5460 4.0 1052883600
## 24243 175 5524 4.0 1052836558
## 24244 175 5577 4.0 1052883446
## 24245 175 5679 2.0 1052884713
## 24246 175 5810 4.0 1052884516
## 24247 175 5812 5.0 1052836346
## 24248 175 5816 4.0 1052836491
## 24249 175 5839 4.0 1052884893
## 24250 175 5840 4.0 1052884865
## 24251 175 5882 4.0 1052836544
## 24252 175 5943 4.0 1052883648
## 24253 175 5952 5.0 1052836265
## 24254 175 5957 3.0 1052883635
## 24255 175 5989 4.0 1052883861
## 24256 175 5991 3.0 1052836408
## 24257 175 6006 1.0 1052883562
## 24258 175 6157 3.0 1052836572
## 24259 175 6323 4.0 1052884734
## 24260 176 1 2.0 1340720798
## 24261 176 2 3.0 1341047637
## 24262 176 19 2.0 1340915742
## 24263 176 34 2.0 1341001737
## 24264 176 39 1.0 1341002026
## 24265 176 48 3.0 1341050021
## 24266 176 253 2.0 1340720267
## 24267 176 260 4.0 1340714702
## 24268 176 296 4.0 1368312442
## 24269 176 337 2.5 1341051741
## 24270 176 344 2.0 1340915739
## 24271 176 364 3.0 1341048908
## 24272 176 480 2.5 1340915680
## 24273 176 541 3.0 1364721985
## 24274 176 551 2.5 1340717480
## 24275 176 588 3.5 1341001015
## 24276 176 593 4.0 1340714712
## 24277 176 595 4.0 1341001312
## 24278 176 596 0.5 1341001883
## 24279 176 648 2.5 1340916038
## 24280 176 709 2.5 1340713490
## 24281 176 783 3.5 1341049379
## 24282 176 1022 2.0 1341048898
## 24283 176 1028 4.0 1340913845
## 24284 176 1035 3.0 1340913798
## 24285 176 1196 4.5 1340714717
## 24286 176 1198 3.0 1340720756
## 24287 176 1210 5.0 1340715454
## 24288 176 1232 0.5 1340715213
## 24289 176 1246 3.5 1340715420
## 24290 176 1259 2.0 1340715553
## 24291 176 1291 3.0 1340720595
## 24292 176 1380 3.0 1341050757
## 24293 176 1381 1.5 1340721359
## 24294 176 1391 2.0 1341047743
## 24295 176 1485 3.0 1341047497
## 24296 176 1517 1.5 1341001785
## 24297 176 1527 4.0 1340715371
## 24298 176 1566 3.5 1340713303
## 24299 176 1580 2.5 1340720372
## 24300 176 1682 3.0 1340715465
## 24301 176 1721 2.0 1341000961
## 24302 176 1760 0.5 1340721274
## 24303 176 1907 3.5 1341048915
## 24304 176 1921 3.0 1364722231
## 24305 176 1923 1.0 1341002141
## 24306 176 1947 2.5 1341056101
## 24307 176 2018 2.0 1341050051
## 24308 176 2054 1.5 1341047061
## 24309 176 2078 2.0 1341050029
## 24310 176 2080 3.0 1341049365
## 24311 176 2081 2.0 1341048783
## 24312 176 2087 2.0 1341050036
## 24313 176 2096 2.0 1341048925
## 24314 176 2115 3.0 1340720823
## 24315 176 2571 4.5 1340714691
## 24316 176 2617 1.5 1341002882
## 24317 176 2628 4.0 1340914514
## 24318 176 2671 2.5 1342857564
## 24319 176 2683 1.0 1341001087
## 24320 176 2700 1.0 1341002755
## 24321 176 2701 1.5 1340713142
## 24322 176 2706 1.5 1341001492
## 24323 176 2716 2.5 1340720739
## 24324 176 2987 3.5 1340912716
## 24325 176 2997 2.0 1340902346
## 24326 176 3000 4.5 1340715628
## 24327 176 3034 2.0 1340713347
## 24328 176 3054 1.0 1340721399
## 24329 176 3355 4.0 1340713421
## 24330 176 3408 3.5 1341002809
## 24331 176 3752 0.5 1340713193
## 24332 176 3785 0.5 1340721192
## 24333 176 3825 2.5 1340747831
## 24334 176 3948 0.5 1341002119
## 24335 176 3988 2.0 1343335492
## 24336 176 3996 4.0 1340715471
## 24337 176 3997 1.0 1340713554
## 24338 176 4246 3.5 1340914843
## 24339 176 4306 3.5 1340916569
## 24340 176 4308 4.0 1341050244
## 24341 176 4310 3.0 1340913211
## 24342 176 4367 2.0 1340721222
## 24343 176 4383 2.0 1364722317
## 24344 176 4446 1.0 1340713233
## 24345 176 4447 3.5 1340914405
## 24346 176 4700 1.0 1340914730
## 24347 176 4720 3.5 1340715834
## 24348 176 4816 0.5 1341002155
## 24349 176 4896 3.0 1340715346
## 24350 176 4963 4.0 1340715408
## 24351 176 4973 3.5 1340714662
## 24352 176 4993 4.5 1340714789
## 24353 176 5064 2.5 1340716670
## 24354 176 5072 0.5 1340713734
## 24355 176 5128 2.0 1343335570
## 24356 176 5218 3.0 1340918054
## 24357 176 5349 3.0 1340715341
## 24358 176 5378 4.0 1341001419
## 24359 176 5445 3.5 1378384744
## 24360 176 5502 3.0 1341047860
## 24361 176 5618 4.0 1340716921
## 24362 176 5690 3.0 1340713498
## 24363 176 5816 3.0 1341002040
## 24364 176 5903 3.5 1340917181
## 24365 176 5952 5.0 1340714904
## 24366 176 5971 4.0 1340717474
## 24367 176 5989 3.0 1340715530
## 24368 176 6016 4.0 1377799393
## 24369 176 6283 3.0 1340720444
## 24370 176 6287 1.5 1341003081
## 24371 176 6350 4.0 1340719768
## 24372 176 6365 3.5 1340917301
## 24373 176 6378 3.5 1340716737
## 24374 176 6539 4.0 1340715375
## 24375 176 6541 2.0 1340721386
## 24376 176 6754 2.5 1340720299
## 24377 176 6794 0.5 1340747921
## 24378 176 6874 3.5 1340715623
## 24379 176 6934 2.5 1340917347
## 24380 176 7022 1.5 1340916972
## 24381 176 7090 4.5 1340715365
## 24382 176 7099 4.0 1340719701
## 24383 176 7143 4.5 1340715325
## 24384 176 7147 4.0 1340715415
## 24385 176 7153 5.0 1340714791
## 24386 176 7438 3.5 1340715612
## 24387 176 7458 2.5 1341055462
## 24388 176 7649 3.5 1340713901
## 24389 176 8360 3.5 1341056045
## 24390 176 8368 3.5 1340715337
## 24391 176 8622 3.5 1341001212
## 24392 176 8957 0.5 1340721882
## 24393 176 8969 3.5 1340914846
## 24394 176 8970 3.5 1345915332
## 24395 176 8972 3.0 1341055400
## 24396 176 8981 1.5 1340746374
## 24397 176 8983 4.0 1340716647
## 24398 176 26662 3.5 1340715128
## 24399 176 26776 4.0 1340713725
## 24400 176 27660 3.5 1340720451
## 24401 176 27689 1.0 1364722311
## 24402 176 27815 4.0 1341055663
## 24403 176 27850 3.0 1340748665
## 24404 176 30793 2.5 1340717676
## 24405 176 30816 3.5 1340914509
## 24406 176 31410 4.0 1340911312
## 24407 176 31658 5.0 1340716841
## 24408 176 33004 3.5 1343335486
## 24409 176 33493 3.5 1340916558
## 24410 176 33794 2.5 1340720656
## 24411 176 36401 2.0 1343335392
## 24412 176 36529 3.5 1340913567
## 24413 176 37830 4.0 1341002201
## 24414 176 38061 2.5 1340811802
## 24415 176 40597 2.0 1341047338
## 24416 176 40815 3.0 1340715333
## 24417 176 41566 2.5 1340748142
## 24418 176 41571 3.0 1340720952
## 24419 176 43419 2.0 1342949753
## 24420 176 44191 3.5 1340715546
## 24421 176 44195 4.0 1340748200
## 24422 176 44665 4.0 1340716274
## 24423 176 44849 3.5 1340917675
## 24424 176 45447 3.0 1343335399
## 24425 176 45720 2.0 1340914687
## 24426 176 45722 3.0 1340916181
## 24427 176 45880 2.0 1344347678
## 24428 176 45950 3.5 1340748640
## 24429 176 46976 4.0 1340748088
## 24430 176 47610 4.0 1345577132
## 24431 176 47999 4.0 1340748485
## 24432 176 48043 4.5 1340716497
## 24433 176 48738 4.0 1364721926
## 24434 176 48997 3.5 1340913756
## 24435 176 49649 2.0 1343335247
## 24436 176 50068 5.0 1340715275
## 24437 176 51662 3.0 1340747499
## 24438 176 52579 3.5 1340714267
## 24439 176 53125 3.5 1340916173
## 24440 176 53894 2.5 1340748506
## 24441 176 54259 3.0 1340716832
## 24442 176 54999 3.5 1340747539
## 24443 176 55167 3.5 1341002428
## 24444 176 55721 2.5 1341056232
## 24445 176 55820 3.0 1340913712
## 24446 176 56152 3.0 1340915519
## 24447 176 56171 3.0 1343335280
## 24448 176 56367 3.5 1345237994
## 24449 176 56757 4.0 1340717629
## 24450 176 56949 2.5 1340912864
## 24451 176 58559 3.0 1340714650
## 24452 176 59333 2.0 1340912969
## 24453 176 59615 3.0 1341056136
## 24454 176 60069 4.5 1340715076
## 24455 176 60397 3.5 1340914801
## 24456 176 62849 3.5 1368312386
## 24457 176 63082 4.0 1345667861
## 24458 176 63276 3.5 1340916711
## 24459 176 63853 3.0 1343333689
## 24460 176 63992 1.0 1340720312
## 24461 176 66198 2.5 1340747587
## 24462 176 66203 2.5 1347306212
## 24463 176 66317 3.0 1340720957
## 24464 176 66808 1.0 1368307751
## 24465 176 68073 3.0 1340918200
## 24466 176 68157 4.0 1340715172
## 24467 176 69275 1.5 1344167211
## 24468 176 69640 3.5 1340916241
## 24469 176 69757 3.0 1340914244
## 24470 176 70183 4.0 1340914570
## 24471 176 71282 4.0 1340748467
## 24472 176 72737 3.5 1343333718
## 24473 176 73017 2.5 1341047285
## 24474 176 73319 3.0 1340915442
## 24475 176 74458 4.0 1340913552
## 24476 176 77201 2.0 1366545291
## 24477 176 79132 4.0 1340714683
## 24478 176 79293 2.5 1364722469
## 24479 176 79702 4.0 1341001585
## 24480 176 80463 2.5 1340715537
## 24481 176 80864 3.0 1341001174
## 24482 176 81591 4.0 1340715600
## 24483 176 81845 5.0 1340714943
## 24484 176 81847 3.0 1366545246
## 24485 176 82167 2.5 1340914719
## 24486 176 82202 2.5 1378384504
## 24487 176 82463 3.0 1343334260
## 24488 176 86142 3.0 1340916679
## 24489 176 86190 2.5 1340911697
## 24490 176 86835 2.0 1368307787
## 24491 176 86882 5.0 1340715390
## 24492 176 88129 4.0 1340715435
## 24493 176 89102 2.0 1340916326
## 24494 176 89745 3.0 1340714765
## 24495 176 89761 3.5 1340911985
## 24496 176 89804 3.5 1345237982
## 24497 176 90405 2.5 1340714469
## 24498 176 90866 4.0 1340714108
## 24499 176 91500 2.0 1340917043
## 24500 176 91529 3.5 1343334119
## 24501 176 92259 5.0 1340714592
## 24502 176 93805 3.5 1340912551
## 24503 176 94478 2.5 1340717602
## 24504 176 94480 1.0 1340915855
## 24505 176 94864 3.0 1340720332
## 24506 176 95875 3.5 1366545262
## 24507 176 96079 3.0 1378384538
## 24508 176 96737 3.0 1368307805
## 24509 176 97304 3.5 1378384885
## 24510 176 99114 4.0 1364721906
## 24511 176 99320 2.0 1368307727
## 24512 176 100556 3.5 1384107215
## 24513 176 101864 3.5 1377799692
## 24514 176 103253 3.0 1377799432
## 24515 176 104841 3.0 1384107175
## 24516 177 1 5.0 907515679
## 24517 177 2 5.0 907380055
## 24518 177 6 5.0 907380682
## 24519 177 10 4.0 907380744
## 24520 177 18 4.0 907380994
## 24521 177 22 4.0 907380781
## 24522 177 23 3.0 907380781
## 24523 177 32 4.0 907380000
## 24524 177 47 5.0 907380653
## 24525 177 50 5.0 907380653
## 24526 177 66 1.0 907380378
## 24527 177 70 4.0 907380745
## 24528 177 76 2.0 907380055
## 24529 177 89 4.0 907380994
## 24530 177 95 4.0 907380781
## 24531 177 107 3.0 907380964
## 24532 177 111 4.0 907380710
## 24533 177 150 5.0 907380653
## 24534 177 160 2.0 907380369
## 24535 177 161 4.0 907380781
## 24536 177 163 4.0 907380964
## 24537 177 164 4.0 907380964
## 24538 177 165 5.0 907380918
## 24539 177 170 4.0 907381025
## 24540 177 172 4.0 907380321
## 24541 177 173 3.0 907380056
## 24542 177 185 4.0 907380138
## 24543 177 196 3.0 907380056
## 24544 177 198 5.0 907380055
## 24545 177 200 4.0 907381306
## 24546 177 223 5.0 907516215
## 24547 177 225 3.0 907381025
## 24548 177 230 4.0 907380884
## 24549 177 240 3.0 907381064
## 24550 177 256 3.0 907380138
## 24551 177 258 2.0 907380138
## 24552 177 288 3.0 907381132
## 24553 177 292 4.0 907380820
## 24554 177 293 5.0 907380710
## 24555 177 316 4.0 907380138
## 24556 177 319 4.0 907380682
## 24557 177 327 3.0 907380138
## 24558 177 329 4.0 907380055
## 24559 177 332 4.0 907381178
## 24560 177 338 4.0 907380203
## 24561 177 349 4.0 907380710
## 24562 177 350 4.0 907380820
## 24563 177 353 4.0 907380745
## 24564 177 356 5.0 907515749
## 24565 177 376 4.0 907381132
## 24566 177 377 4.0 907380964
## 24567 177 379 3.0 907380203
## 24568 177 405 2.0 907380203
## 24569 177 407 2.0 907381096
## 24570 177 422 5.0 907381097
## 24571 177 423 5.0 907381178
## 24572 177 426 3.0 907380203
## 24573 177 435 4.0 907380203
## 24574 177 442 3.0 907380203
## 24575 177 454 4.0 907380884
## 24576 177 457 5.0 907380710
## 24577 177 474 5.0 907380781
## 24578 177 480 5.0 907379910
## 24579 177 481 4.0 907380884
## 24580 177 482 4.0 907380884
## 24581 177 494 3.0 907381132
## 24582 177 497 5.0 907515749
## 24583 177 504 3.0 907380321
## 24584 177 512 4.0 907380246
## 24585 177 519 2.0 907380369
## 24586 177 540 3.0 907381218
## 24587 177 541 5.0 907380504
## 24588 177 546 3.0 907380138
## 24589 177 547 1.0 907381218
## 24590 177 587 4.0 907380820
## 24591 177 588 4.0 907516093
## 24592 177 589 4.0 907379910
## 24593 177 593 5.0 907380682
## 24594 177 600 4.0 907381025
## 24595 177 608 5.0 907380653
## 24596 177 610 5.0 907380567
## 24597 177 611 3.0 907380369
## 24598 177 628 5.0 907380849
## 24599 177 662 5.0 907380994
## 24600 177 691 4.0 907515750
## 24601 177 733 4.0 907380745
## 24602 177 736 4.0 907381097
## 24603 177 741 4.0 907380000
## 24604 177 748 3.0 907380246
## 24605 177 780 5.0 907380000
## 24606 177 786 4.0 907380849
## 24607 177 788 4.0 907380246
## 24608 177 798 4.0 907381064
## 24609 177 832 4.0 907380820
## 24610 177 839 3.0 907381218
## 24611 177 849 3.0 907380138
## 24612 177 861 4.0 907380745
## 24613 177 880 2.0 907380369
## 24614 177 882 3.0 907380964
## 24615 177 891 3.0 907381264
## 24616 177 1003 3.0 907380964
## 24617 177 1028 4.0 907515785
## 24618 177 1037 3.0 907380203
## 24619 177 1047 4.0 907380918
## 24620 177 1055 3.0 907381243
## 24621 177 1080 5.0 907516215
## 24622 177 1089 5.0 907380653
## 24623 177 1092 5.0 907380918
## 24624 177 1097 5.0 907380544
## 24625 177 1127 5.0 907380544
## 24626 177 1129 3.0 907380544
## 24627 177 1136 5.0 907515447
## 24628 177 1148 5.0 907515679
## 24629 177 1196 5.0 907380504
## 24630 177 1197 5.0 907515749
## 24631 177 1199 5.0 907380504
## 24632 177 1200 5.0 907380504
## 24633 177 1210 5.0 907379910
## 24634 177 1215 5.0 907380000
## 24635 177 1235 5.0 907515785
## 24636 177 1240 5.0 907380504
## 24637 177 1259 5.0 907516215
## 24638 177 1270 5.0 907380504
## 24639 177 1274 5.0 907380544
## 24640 177 1276 5.0 907516215
## 24641 177 1304 5.0 907516215
## 24642 177 1306 3.0 907380253
## 24643 177 1320 3.0 907380321
## 24644 177 1343 3.0 907380964
## 24645 177 1356 4.0 907380055
## 24646 177 1370 5.0 907380918
## 24647 177 1372 5.0 907380055
## 24648 177 1373 3.0 907380567
## 24649 177 1374 5.0 907380504
## 24650 177 1375 4.0 907380544
## 24651 177 1376 5.0 907380544
## 24652 177 1391 4.0 907380321
## 24653 177 1396 4.0 907379910
## 24654 177 1407 5.0 907380820
## 24655 177 1422 3.0 907381025
## 24656 177 1427 3.0 907381243
## 24657 177 1438 4.0 907381132
## 24658 177 1459 1.0 907380918
## 24659 177 1479 5.0 907380849
## 24660 177 1488 2.0 907381064
## 24661 177 1499 1.0 907381218
## 24662 177 1515 4.0 907381025
## 24663 177 1518 3.0 907380918
## 24664 177 1527 5.0 907380001
## 24665 177 1544 4.0 907380321
## 24666 177 1552 5.0 907380820
## 24667 177 1573 4.0 907379910
## 24668 177 1580 4.0 907379910
## 24669 177 1584 5.0 907379910
## 24670 177 1590 1.0 907380246
## 24671 177 1591 3.0 907380138
## 24672 177 1597 4.0 907380884
## 24673 177 1598 5.0 907381132
## 24674 177 1603 2.0 907380246
## 24675 177 1608 4.0 907380884
## 24676 177 1610 5.0 907380653
## 24677 177 1615 4.0 907380884
## 24678 177 1616 4.0 907380849
## 24679 177 1617 5.0 907380682
## 24680 177 1620 4.0 907380849
## 24681 177 1625 5.0 907380745
## 24682 177 1644 5.0 907381064
## 24683 177 1645 5.0 907380745
## 24684 177 1647 3.0 907381064
## 24685 177 1653 5.0 907379910
## 24686 177 1658 5.0 907380781
## 24687 177 1661 5.0 907381096
## 24688 177 1676 5.0 907380138
## 24689 177 1686 3.0 907380884
## 24690 177 1687 2.0 907381064
## 24691 177 1690 3.0 907380203
## 24692 177 1717 5.0 907380849
## 24693 177 1722 5.0 907380820
## 24694 177 1732 4.0 907380820
## 24695 177 1748 3.0 907380000
## 24696 177 1750 2.0 907380203
## 24697 177 1752 4.0 907380994
## 24698 177 1754 4.0 907380781
## 24699 177 1769 4.0 907380781
## 24700 177 1779 2.0 907380246
## 24701 177 1784 4.0 907515785
## 24702 177 1792 5.0 907380994
## 24703 177 1805 4.0 907380781
## 24704 177 1831 5.0 907380246
## 24705 177 1862 4.0 907380321
## 24706 177 1876 5.0 907380055
## 24707 177 1882 3.0 907380321
## 24708 177 1909 5.0 907380000
## 24709 177 1917 3.0 907379242
## 24710 177 1920 4.0 907379459
## 24711 177 1923 4.0 907379242
## 24712 177 1968 5.0 907516093
## 24713 177 2000 5.0 907515679
## 24714 177 2006 4.0 907379242
## 24715 177 2011 4.0 907380544
## 24716 177 2012 4.0 907380000
## 24717 177 2015 3.0 907516093
## 24718 177 2021 5.0 907380567
## 24719 177 2026 5.0 907379474
## 24720 177 2028 4.0 907379242
## 24721 177 2046 4.0 907380000
## 24722 177 2053 3.0 907380435
## 24723 177 2054 3.0 907380567
## 24724 177 2093 3.0 907380544
## 24725 177 2094 4.0 907380321
## 24726 177 2107 3.0 907379359
## 24727 177 2109 5.0 907516735
## 24728 177 2113 3.0 907381312
## 24729 177 2125 4.0 907379359
## 24730 177 2133 5.0 907516215
## 24731 177 2141 4.0 907516735
## 24732 177 2144 5.0 907516215
## 24733 177 2148 5.0 907516735
## 24734 177 2150 4.0 907515679
## 24735 177 2167 5.0 907379306
## 24736 177 2273 5.0 907379242
## 24737 177 2288 4.0 907380504
## 24738 177 2311 3.0 907380544
## 24739 177 4006 4.0 907380567
## 24740 178 1 4.0 1437425800
## 24741 178 110 3.5 1437422963
## 24742 178 111 4.5 1437424662
## 24743 178 260 5.0 1437422811
## 24744 178 293 3.5 1437422890
## 24745 178 296 5.0 1437422805
## 24746 178 318 5.0 1437422760
## 24747 178 356 3.0 1437422880
## 24748 178 364 4.0 1437428147
## 24749 178 551 3.5 1437428256
## 24750 178 555 3.0 1437428180
## 24751 178 593 4.0 1437422779
## 24752 178 595 3.5 1437428338
## 24753 178 608 4.0 1437422835
## 24754 178 750 3.0 1437422818
## 24755 178 778 4.5 1437424747
## 24756 178 858 4.0 1437422766
## 24757 178 899 3.0 1437424656
## 24758 178 919 3.0 1437424660
## 24759 178 920 4.5 1437428160
## 24760 178 951 2.5 1437422833
## 24761 178 1028 3.0 1437428244
## 24762 178 1036 3.0 1437424756
## 24763 178 1073 4.0 1437428247
## 24764 178 1080 4.0 1437424665
## 24765 178 1097 2.5 1437428108
## 24766 178 1120 4.0 1437428349
## 24767 178 1193 3.0 1437422776
## 24768 178 1196 5.0 1437422810
## 24769 178 1197 3.5 1437422824
## 24770 178 1198 5.0 1437422795
## 24771 178 1208 4.0 1437424637
## 24772 178 1210 5.0 1437424676
## 24773 178 1213 3.0 1437422775
## 24774 178 1220 5.0 1437425933
## 24775 178 1221 4.5 1437422769
## 24776 178 1228 5.0 1437425892
## 24777 178 1246 3.5 1437424537
## 24778 178 1247 3.5 1437424542
## 24779 178 1258 3.0 1437424658
## 24780 178 1259 5.0 1437422879
## 24781 178 1262 5.0 1437422856
## 24782 178 1265 4.0 1437425799
## 24783 178 1266 3.5 1437424710
## 24784 178 1269 2.0 1437424514
## 24785 178 1278 4.0 1437424720
## 24786 178 1282 4.0 1437428214
## 24787 178 1288 4.5 1437425824
## 24788 178 1302 2.5 1437428325
## 24789 178 1348 3.5 1437428224
## 24790 178 1387 3.5 1437428238
## 24791 178 1580 4.0 1437428274
## 24792 178 1682 4.0 1437425818
## 24793 178 1704 3.5 1437422848
## 24794 178 1873 2.5 1437428133
## 24795 178 1954 4.0 1437428303
## 24796 178 1968 5.0 1437425895
## 24797 178 2000 3.5 1437428222
## 24798 178 2028 4.0 1437422865
## 24799 178 2078 4.0 1437428249
## 24800 178 2096 3.5 1437428391
## 24801 178 2268 3.0 1437425881
## 24802 178 2329 4.0 1437422821
## 24803 178 2571 3.0 1437422802
## 24804 178 2716 3.0 1437428178
## 24805 178 2804 1.5 1437424699
## 24806 178 2858 4.0 1437422814
## 24807 178 2959 4.5 1437422799
## 24808 178 2997 5.0 1437425827
## 24809 178 3034 4.0 1437428211
## 24810 178 3052 4.0 1437428241
## 24811 178 3061 3.5 1437425865
## 24812 178 3089 2.5 1437424594
## 24813 178 3168 3.5 1437428230
## 24814 178 3210 3.0 1437428385
## 24815 178 3275 3.0 1437424701
## 24816 178 3408 1.5 1437428200
## 24817 178 3471 3.0 1437428141
## 24818 178 3552 2.5 1437428389
## 24819 178 3578 3.0 1437424533
## 24820 178 3629 3.5 1437424506
## 24821 178 3671 4.0 1437427720
## 24822 178 3949 3.5 1437424649
## 24823 178 4034 2.5 1437425897
## 24824 178 4262 2.5 1437425829
## 24825 178 4878 2.5 1437424604
## 24826 178 4979 5.0 1437428297
## 24827 178 5577 2.5 1437428346
## 24828 178 5669 2.0 1437425794
## 24829 178 6979 3.5 1437428144
## 24830 178 7022 2.5 1437425868
## 24831 178 7158 4.0 1437428088
## 24832 178 7386 3.0 1437428365
## 24833 178 7451 3.0 1437428328
## 24834 178 8874 3.0 1437425811
## 24835 178 8966 3.5 1437428168
## 24836 178 27773 2.5 1437422884
## 24837 178 30707 3.0 1437424588
## 24838 178 30812 4.0 1437428226
## 24839 178 34405 3.5 1437422956
## 24840 178 44195 4.0 1437424646
## 24841 178 45728 3.0 1437428336
## 24842 178 46578 3.0 1437424520
## 24843 178 47999 4.0 1437425934
## 24844 178 48394 5.0 1437422842
## 24845 178 51662 3.0 1437428208
## 24846 178 52435 3.0 1437427724
## 24847 178 54503 4.5 1437428171
## 24848 178 55442 3.0 1437422958
## 24849 178 56367 3.0 1437424530
## 24850 178 60684 3.5 1437428189
## 24851 178 61024 3.5 1437428372
## 24852 178 61323 4.0 1437428340
## 24853 178 63131 2.5 1437428278
## 24854 178 67267 3.5 1437428153
## 24855 178 69481 5.0 1437424744
## 24856 178 74458 2.5 1437424590
## 24857 178 74948 4.0 1437428126
## 24858 178 77455 2.0 1437424624
## 24859 178 77800 2.0 1437425808
## 24860 178 78574 3.0 1437424758
## 24861 178 81591 1.5 1437424684
## 24862 178 91658 3.0 1437424582
## 24863 178 93840 4.0 1437428254
## 24864 178 97921 2.0 1437424600
## 24865 178 99114 3.5 1437422854
## 24866 178 106487 2.5 1437425871
## 24867 178 106782 3.5 1437425856
## 24868 178 112552 4.5 1437422861
## 24869 178 112623 3.5 1437428138
## 24870 179 1 5.0 1436669947
## 24871 179 1197 5.0 1436670015
## 24872 179 1270 3.0 1436669953
## 24873 179 1682 3.0 1436670038
## 24874 179 3882 3.0 1436670351
## 24875 179 4226 4.0 1436670107
## 24876 179 4246 3.0 1436670156
## 24877 179 4306 2.5 1436670105
## 24878 179 4447 3.5 1436670189
## 24879 179 4896 5.0 1436670127
## 24880 179 5816 5.0 1436670137
## 24881 179 6377 4.0 1436670112
## 24882 179 6539 5.0 1436670114
## 24883 179 7361 3.5 1436670118
## 24884 179 7451 4.5 1436670359
## 24885 179 8368 5.0 1436670143
## 24886 179 8641 3.5 1436670323
## 24887 179 8644 0.5 1436670174
## 24888 179 8665 2.5 1436670145
## 24889 179 8972 4.0 1436670344
## 24890 179 34162 4.0 1436670214
## 24891 179 45722 5.0 1436670180
## 24892 179 46578 4.5 1436670048
## 24893 179 46976 3.5 1436670234
## 24894 179 49272 2.0 1436670152
## 24895 179 53125 5.0 1436670469
## 24896 179 55280 5.0 1436670452
## 24897 179 56367 3.5 1436670163
## 24898 179 64957 5.0 1436670353
## 24899 179 67734 3.5 1436670449
## 24900 179 69757 4.0 1436670228
## 24901 179 78499 5.0 1436670034
## 24902 179 80463 4.0 1436670311
## 24903 179 80693 4.0 1436670477
## 24904 179 81591 5.0 1436670309
## 24905 179 86377 4.0 1436670050
## 24906 179 86882 5.0 1436670432
## 24907 179 91529 2.0 1436670023
## 24908 180 24 4.0 945446829
## 24909 180 223 3.0 945446726
## 24910 180 527 4.0 945446508
## 24911 180 589 4.0 945446677
## 24912 180 700 3.0 945446980
## 24913 180 1073 5.0 945446652
## 24914 180 1127 4.0 945446618
## 24915 180 1193 4.0 945446483
## 24916 180 1197 4.0 945446462
## 24917 180 1225 4.0 945446901
## 24918 180 1240 4.0 945446677
## 24919 180 1265 5.0 945446581
## 24920 180 2013 3.0 945446829
## 24921 180 2145 3.0 945446462
## 24922 180 2474 3.0 945446462
## 24923 180 2490 4.0 945446804
## 24924 180 2502 2.0 945446804
## 24925 180 2541 3.0 945446740
## 24926 180 2581 4.0 945446804
## 24927 180 2699 2.0 945446708
## 24928 180 2700 2.0 945446845
## 24929 180 2710 1.0 945446726
## 24930 180 2716 4.0 945446754
## 24931 180 2987 4.0 945446861
## 24932 181 296 5.0 1154542932
## 24933 181 380 5.0 1154543016
## 24934 181 435 3.5 1154542675
## 24935 181 555 5.0 1154543020
## 24936 181 733 4.0 1154542861
## 24937 181 1089 5.0 1154542951
## 24938 181 1213 5.0 1154543059
## 24939 181 1396 4.5 1154542739
## 24940 181 1552 3.0 1154542755
## 24941 181 1597 4.0 1154542821
## 24942 181 1625 3.5 1154542746
## 24943 181 1729 4.0 1154542953
## 24944 181 2003 3.5 1154542815
## 24945 181 2302 5.0 1154542725
## 24946 181 2329 5.0 1154542765
## 24947 181 2353 4.0 1154542729
## 24948 181 2640 4.0 1154542691
## 24949 181 2700 4.0 1154542686
## 24950 181 3052 4.0 1154542736
## 24951 181 3753 4.0 1154542777
## 24952 181 4011 5.0 1154542915
## 24953 181 5418 4.5 1154542805
## 24954 181 5445 4.0 1154542682
## 24955 181 6874 5.0 1154542945
## 24956 181 7153 5.0 1154542709
## 24957 181 7438 5.0 1154542948
## 24958 181 8528 4.0 1154543028
## 24959 182 2 5.0 845744191
## 24960 182 3 4.0 845745032
## 24961 182 4 3.0 845745077
## 24962 182 5 4.0 845744805
## 24963 182 7 5.0 845745009
## 24964 182 8 5.0 845745710
## 24965 182 9 3.0 845746347
## 24966 182 11 5.0 845744166
## 24967 182 13 3.0 845745917
## 24968 182 17 3.0 845744218
## 24969 182 21 3.0 845744047
## 24970 182 25 1.0 845744316
## 24971 182 34 5.0 845743924
## 24972 182 36 3.0 845744347
## 24973 182 48 3.0 845744430
## 24974 182 60 4.0 845745009
## 24975 182 61 3.0 845746546
## 24976 182 62 5.0 845744284
## 24977 182 79 3.0 845745516
## 24978 182 95 3.0 845744218
## 24979 182 105 4.0 845744430
## 24980 182 110 5.0 845743855
## 24981 182 126 3.0 845745742
## 24982 182 141 4.0 845744250
## 24983 182 144 3.0 845745457
## 24984 182 146 5.0 845745929
## 24985 182 150 5.0 845743682
## 24986 182 165 3.0 845743728
## 24987 182 168 5.0 845744316
## 24988 182 169 3.0 845744976
## 24989 182 174 3.0 845745373
## 24990 182 185 4.0 845743855
## 24991 182 186 3.0 845746300
## 24992 182 195 4.0 845745289
## 24993 182 201 4.0 845746347
## 24994 182 207 5.0 845744884
## 24995 182 208 4.0 845743824
## 24996 182 224 3.0 845744545
## 24997 182 225 4.0 845744047
## 24998 182 231 1.0 845743763
## 24999 182 236 3.0 845744218
## [ reached 'max' / getOption("max.print") -- omitted 75005 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”
movieSpread <- Ratings %>%
select(-timestamp) %>%
tidyr::spread(movieId, rating)
row.names(movieSpread) <- movieSpread[,1]
movieMatrix <- as.matrix(movieSpread[-c(1)])
movieRealMatrix <- as(movieMatrix, "realRatingMatrix")In order to test any models, we need to split our data into training and testing sets with 80/20 ratio
# Train/test split
set.seed(88)
eval <- evaluationScheme(movieRealMatrix, method = "split",
train = 0.8, given = 20, goodRating = 3)
train <- getData(eval, "train")
known <- getData(eval, "known")
unknown <- getData(eval, "unknown")#Create the recommender based on SVD and SVDF using the training data
r.svd <- Recommender(getData(eval, "train"), "SVD")
r.svdf <- Recommender(getData(eval, "train"), "SVDF")
r.als <- Recommender(getData(eval, "train"), "ALS")
#Compute predicted ratings for test data that is known using the UBCF algorithm
p.svd <- predict(r.svd, getData(eval, "known"), type = "ratings")
p.svdf <- predict(r.svdf, getData(eval, "known"), type = "ratings")
p.als <- predict(r.als, getData(eval, "known"), type = "ratings")
getRatingMatrix(p.svd)[1:6,1:6]## 6 x 6 sparse Matrix of class "dgCMatrix"
## 1 2 3 4 5 6
## 5 3.957493 3.952293 3.961681 3.949370 3.946234 3.943909
## 10 3.600905 3.598080 3.590866 3.598869 3.602765 3.601640
## 11 3.916425 3.919605 3.928598 3.925922 3.928823 3.921527
## 24 3.605216 3.597037 3.593536 3.601315 3.605168 3.604711
## 30 3.901458 3.901141 3.897176 3.898833 3.901329 3.899901
## 31 4.208420 4.197054 4.209712 4.202313 4.199548 4.212316
getRatingMatrix(p.svdf)[1:6,1:6]## 6 x 6 sparse Matrix of class "dgCMatrix"
## 1 2 3 4 5 6
## 5 3.932754 4.042585 4.104537 4.093735 3.978410 4.014161
## 10 3.753603 3.509220 3.243692 3.190018 3.431593 3.907430
## 11 3.938264 3.867779 3.834071 3.882878 3.878107 3.951348
## 24 3.694757 3.610229 3.492709 3.414917 3.564788 3.840639
## 30 4.066132 3.835069 3.564536 3.502949 3.800761 4.115530
## 31 4.330110 4.276135 4.141603 4.050254 4.219331 4.364886
getRatingMatrix(p.als)[1:6,1:6]## 6 x 6 sparse Matrix of class "dgCMatrix"
## 1 2 3 4 5 6
## 5 4.159414 3.971138 3.691527 2.545262 3.423259 3.362656
## 10 3.702272 3.568758 2.855309 2.458414 3.618772 4.009449
## 11 4.237913 3.729589 3.447959 1.977694 3.351971 3.158720
## 24 3.427856 3.317346 3.070850 1.972728 2.989749 3.721200
## 30 3.794857 3.754641 3.115664 1.843429 3.675005 4.026749
## 31 4.133019 3.309770 3.043005 2.631439 2.608390 3.904248
#Calculate the error between training prediction and unknown test data
error <- rbind(SVD = calcPredictionAccuracy(p.svd, getData(eval, "unknown")),
SVDF = calcPredictionAccuracy(p.svdf, getData(eval, "unknown")),
ALS = calcPredictionAccuracy(p.als, getData(eval, "unknown")))
kable(as.data.frame(error))| RMSE | MSE | MAE | |
|---|---|---|---|
| SVD | 0.9775905 | 0.9556832 | 0.7586558 |
| SVDF | 0.9298049 | 0.8645371 | 0.7088896 |
| ALS | 1.0162118 | 1.0326864 | 0.8006859 |
Show the histogram of Movie data
image(movieMatrix[1:100,1:100])image(movieRealMatrix, main = "Raw Movie Data")image(normalize(movieRealMatrix), main = "Normalized Movie Data")library(ggplot2)#distribution of ratings
rating_frq <- as.data.frame(table(Ratings$rating))
ggplot(rating_frq,aes(Var1,Freq)) +
geom_bar(aes(fill = Var1), position = "dodge", stat="identity",fill="palegreen")+ labs(x = "Score")#distribution of rating mean of users
user_summary <- as.data.frame(cbind( 'mean'=rowMeans(movieRealMatrix),'number'=rowCounts(movieRealMatrix)))
user_summary <-as.data.frame(sapply(user_summary, function(x) as.numeric(as.character(x))))
par(mfrow=c(1,2))
ggplot(user_summary,aes(mean)) +
geom_histogram(binwidth = 0.05,col='white',fill="plum") + labs(x = "User Average Score")+geom_vline(xintercept = mean(user_summary$mean),col='grey',size=2)ggplot(user_summary,aes(number)) +
geom_histogram(binwidth = 0.8,fill="plum") + labs(x = "Number of Rated Items")#distribution of rating mean of items
item_summary <- as.data.frame(cbind('mean'=colMeans(movieRealMatrix), 'number'=colCounts(movieRealMatrix)))
item_summary <-as.data.frame(sapply(item_summary, function(x) as.numeric(as.character(x))))
par(mfrow=c(1,2))
ggplot(item_summary,aes(mean)) +
geom_histogram(binwidth = 0.05,col='white',fill="sandybrown") +
labs(x = "Item Average Score")+
geom_vline(xintercept = mean(item_summary$mean),col='grey',size=2)ggplot(item_summary,aes(number)) +
geom_histogram(binwidth = 0.8,fill="sandybrown") + labs(x = "Number of Scores Item has")m.cross <- evaluationScheme(movieRealMatrix[1:100], method = "cross", k = 4, given = 3, goodRating = 5)
m.cross.results.svd <- evaluate(m.cross, method = "SVD", type = "topNList", n = c(1, 3, 5, 10, 15, 20))## SVD run fold/sample [model time/prediction time]
## 1 [0.09sec/0.36sec]
## 2 [0.11sec/0.26sec]
## 3 [0.09sec/0.24sec]
## 4 [0.1sec/0.21sec]
m.cross.results.als <- evaluate(m.cross, method = "ALS", type = "topNList", n = c(1, 3, 5, 10, 15, 20))## ALS run fold/sample [model time/prediction time]
## 1 [0sec/55.68sec]
## 2 [0sec/55.81sec]
## 3 [0sec/50.69sec]
## 4 [0sec/58.47sec]
par(mfrow=c(1,2))
plot(m.cross.results.svd, annotate = TRUE, main = "ROC Curve for SVD")
plot(m.cross.results.svd, "prec/rec", annotate = TRUE, main = "Precision-Recall for SVD")par(mfrow=c(1,2))
plot(m.cross.results.als, annotate = TRUE, main = "ROC Curve for ALS")
plot(m.cross.results.als, "prec/rec", annotate = TRUE, main = "Precision-Recall for ALS")Building a user-based collaborative filtering model in order to compare SVD model against other models.
# UBCF model
tictoc::tic("UBCF Model - Training")
modelUBCF <- Recommender(train, method = "UBCF")
tictoc::toc(log = TRUE, quiet = TRUE)
tictoc::tic("UBCF Model - Predicting")
predUBCF <- predict(modelUBCF, newdata = known, type = "ratings")
tictoc::toc(log = TRUE, quiet = TRUE)
( accUBCF <- calcPredictionAccuracy(predUBCF, unknown) )## RMSE MSE MAE
## 0.9720656 0.9449115 0.7532431
Singular value decomposition (SVD) matrix factorization method in the context of a recommender system. This is implemented in two ways:
Singular Value Decomposition begins by breaking an \(M\) by \(N\) matrix \(A\) (in this case \(M\) users and \(N\) jokes) into the product of three matrices: \(U\), which is \(M\) by \(M\), \(\Sigma\), which is \(M\) by \(N\), and \(V^T\), which is \(N\) by \(N\):
\[A = U \ \Sigma \ V^T\]
The matrix \(\Sigma\) is a diagonal matrix, with values representing the singular values by which \(A\) can be decomposed. As these values decrease, continued calculation of \(A\) using these values does not provide a useful return on computing power. By determining the number of singular values \(k\) at which this point of diminishing returns occurs, the matrices can be reduced in size; their product can be used to closely approximate \(A\) with less computational expense.
\[A \approx U_k \ \Sigma_k \ V^T_k\]
The image above represents the dimensionality reduction in the matrices \(U\), \(\Sigma\), and \(V^T\) used to represent \(A\). In cases where \(k\) is much less than \(N\), this can result in signifcant computational savings.
# SVD model
tictoc::tic("SVD Model - Training")
modelSVD <- Recommender(train, method = "SVD", parameter = list(k = 100))
tictoc::toc(log = TRUE, quiet = TRUE)
tictoc::tic("SVD Model - Predicting")
predSVD <- predict(modelSVD, newdata = known, type = "ratings")
tictoc::toc(log = TRUE, quiet = TRUE)
( accSVD <- calcPredictionAccuracy(predSVD, unknown) )## RMSE MSE MAE
## 0.9769440 0.9544197 0.7577597
Compare the run time of various Factorization calculations
# Display log
log <- as.data.frame(unlist(tictoc::tic.log(format = TRUE)))
colnames(log) <- c("Run Time")
knitr::kable(log, format = "html") %>%
kableExtra::kable_styling(bootstrap_options = c("striped", "hover"))| Run Time |
|---|
| UBCF Model - Training: 0.02 sec elapsed |
| UBCF Model - Predicting: 4.8 sec elapsed |
| SVD Model - Training: 7.13 sec elapsed |
| SVD Model - Predicting: 0.68 sec elapsed |
As can be seen SVD Training takes 200% more time than UBCF Training however the SVD Predictions takes 100% less time than UBCF Predictions.
movie_rated <- as.data.frame(movieRealMatrix@data[c("44"), ])
colnames(movie_rated) <- c("Rating")
movie_rated$movieId <- as.integer(rownames(movie_rated))
movie_rated <- movie_rated %>% filter(Rating != 0) %>%
inner_join (Movies, by="movieId") %>%
arrange(Rating) %>%
select(Movie = "title", Rating)
knitr::kable(movie_rated, format = "html") %>%
kableExtra::kable_styling(bootstrap_options = c("striped", "hover"))| Movie | Rating |
|---|---|
| Sense and Sensibility (1995) | 2 |
| Birdcage, The (1996) | 2 |
| Sgt. Bilko (1996) | 2 |
| Father of the Bride Part II (1995) | 3 |
| Heat (1995) | 3 |
| Leaving Las Vegas (1995) | 3 |
| Twelve Monkeys (a.k.a. 12 Monkeys) (1995) | 3 |
| Broken Arrow (1996) | 3 |
| Star Wars: Episode IV - A New Hope (1977) | 3 |
| Executive Decision (1996) | 3 |
| Primal Fear (1996) | 3 |
| Mission: Impossible (1996) | 3 |
| Eraser (1996) | 3 |
| Nutty Professor, The (1996) | 3 |
| Phenomenon (1996) | 3 |
| Long Kiss Goodnight, The (1996) | 3 |
| Toy Story (1995) | 4 |
| Happy Gilmore (1996) | 4 |
| Down Periscope (1996) | 4 |
| Rock, The (1996) | 4 |
| Twister (1996) | 4 |
| Time to Kill, A (1996) | 4 |
| Grumpier Old Men (1995) | 5 |
| Mr. Holland’s Opus (1995) | 5 |
| Independence Day (a.k.a. ID4) (1996) | 5 |
movie_recommend <- as.data.frame(predSVD@data[c("44"), ])
colnames(movie_recommend) <- c("Rating")
movie_recommend$movieId <- as.integer(rownames(movie_recommend))
movie_recommend <- movie_recommend %>%
arrange(desc(Rating)) %>% head(6) %>%
inner_join (Movies, by="movieId") %>%
select(Movie = "title")
knitr::kable(movie_recommend, format = "html") %>%
kableExtra::kable_styling(bootstrap_options = c("striped", "hover"))| Movie |
|---|
| Home Alone (1990) |
| Dragonheart (1996) |
| Jurassic Park (1993) |
| Contact (1997) |
| Lion King, The (1994) |
| Spider-Man 2 (2004) |
Trying to build the SVD model without the use of recommender package functionality and instead using the base R provided svd function
First the movie ratings matrix is normalized. NA values are replaced with 0 and there are negative and positive ratings. Now we can decompose original matrix.
# Normalize matrix
movieMatrix <- as.matrix(normalize(movieRealMatrix)@data)
# Perform SVD
movieSVD <- svd(movieMatrix)
rownames(movieSVD$u) <- rownames(movieMatrix)
rownames(movieSVD$v) <- colnames(movieMatrix)
Sigmak <- movieSVD$d
Uk <- movieSVD$u
Vk <- t(as.matrix(movieSVD$v))To estimate the value of \(k\), the cumulative proportion of the length of the vector d represented by the set of items running through an index n is calculated and plotted. The values of n at which 80% and 90% of the vector’s length is included are found and plotted:
The plot shows the descending order of the singular values quite clearly, with the magnitudes declining rapidly through the first 30 or so singular values before leveling out at a magnitude of somewhat less than 200.
# Reduce dimensions
n <- length(movieSVD$d)
total_energy <- sum(movieSVD$d^2)
for (i in (n-1):1) {
energy <- sum(movieSVD$d[1:i]^2)
if (energy/total_energy<0.9) {
n_dims <- i+1
break
}
}
trim_mov_D <- movieSVD$d[1:n_dims]
trim_mov_U <- movieSVD$u[, 1:n_dims]
trim_mov_V <- movieSVD$v[, 1:n_dims]trimMovies <- as.data.frame(trim_mov_V) %>% select(V1, V2)
trimMovies$movieId <- as.integer(rownames(trimMovies))
movieSample <- trimMovies %>% arrange(V1) %>% head(5)
movieSample <- rbind(movieSample, trimMovies %>% arrange(desc(V1)) %>% head(5))
movieSample <- rbind(movieSample, trimMovies %>% arrange(V2) %>% head(5))
movieSample <- rbind(movieSample, trimMovies %>% arrange(desc(V2)) %>% head(5))
movieSample <- movieSample %>% inner_join(Movies, by = "movieId") %>% select(Movie = "title", Concept1 = "V1", Concept2 = "V2")
movieSample$Concept1 <- round(movieSample$Concept1, 4)
movieSample$Concept2 <- round(movieSample$Concept2, 4)
knitr::kable(movieSample, format = "html") %>%
kableExtra::kable_styling(bootstrap_options = c("striped", "hover"))| Movie | Concept1 | Concept2 |
|---|---|---|
| Pulp Fiction (1994) | -0.1455 | 0.0206 |
| Godfather, The (1972) | -0.1222 | 0.0207 |
| Silence of the Lambs, The (1991) | -0.1147 | 0.0153 |
| Shawshank Redemption, The (1994) | -0.1115 | -0.0027 |
| Star Wars: Episode IV - A New Hope (1977) | -0.1073 | 0.0540 |
| Batman Forever (1995) | 0.0850 | -0.0095 |
| Ace Ventura: Pet Detective (1994) | 0.0801 | 0.0432 |
| Batman & Robin (1997) | 0.0757 | -0.0331 |
| Ace Ventura: When Nature Calls (1995) | 0.0712 | -0.0245 |
| Waterworld (1995) | 0.0691 | -0.0290 |
| Sunset Blvd. (a.k.a. Sunset Boulevard) (1950) | -0.0198 | -0.0374 |
| Lives of Others, The (Das leben der Anderen) (2006) | -0.0055 | -0.0363 |
| Some Like It Hot (1959) | -0.0263 | -0.0354 |
| Unbearable Lightness of Being, The (1988) | 0.0017 | -0.0352 |
| Modern Times (1936) | -0.0182 | -0.0346 |
| Star Wars: Episode V - The Empire Strikes Back (1980) | -0.1054 | 0.0770 |
| Clerks (1994) | -0.0373 | 0.0767 |
| Chasing Amy (1997) | -0.0111 | 0.0723 |
| Raiders of the Lost Ark (Indiana Jones and the Raiders of the Lost Ark) (1981) | -0.0922 | 0.0720 |
| Star Wars: Episode VI - Return of the Jedi (1983) | -0.0776 | 0.0708 |
# Plot labels without overlapping
library(ggrepel)ggplot(movieSample, aes(Concept1, Concept2, label=Movie)) +
geom_point() +
geom_text_repel(aes(label=Movie), hjust=-0.1, vjust=-0.1, size = 3) +
scale_x_continuous(limits = c(-0.2, 0.2)) +
scale_y_continuous(limits = c(-0.1, 0.1)) The above plot demonstrates one of the disadvantages of the SVD method - inability to connect characteristics/concepts to real-world categories. As can be seen that all original Star Wars movies are close together or that Pulp Fiction and Ace Ventura are on opposites sides, but there is no clear way to categorize these movies.
Observations are as follows