-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtop-shows-2.json
5924 lines (5924 loc) · 193 KB
/
top-shows-2.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"average_score": {
"Nirvana in Fire": 9.4060402685,
"Signal": 9.3373676248,
"Battle of Changsha": 9.3103448276,
"Six Flying Dragons": 9.2991266376,
"Miracle in Cell No. 7": 9.2923362176,
"Hope": 9.2599206349,
"Dear My Friends": 9.1907216495,
"Harakiri": 9.1612903226,
"Healer": 9.1526563551,
"Kill Me, Heal Me": 9.0756602427,
"Age of Youth": 9.0443645084,
"The Bridal Mask": 9.0401129944,
"Incomplete Life": 9.0244755245,
"The Crucible": 9.0127245509,
"Nankyoku Tairiku - Kami no Ryouiki ni Idomunda Otoko to Inu no Monogatari": 9.0,
"I Hear Your Voice": 9.0,
"It's Okay, That's Love": 8.9950869237,
"Hanzawa Naoki": 8.9824120603,
"The Man From Nowhere": 8.9799019608,
"Reply 1988": 8.9709576138,
"Our Times": 8.9400452489,
"Cruel City": 8.94,
"Amachan": 8.9375,
"Soredemo, Ikite Yuku": 8.9349315068,
"Reply 1997": 8.9260422616,
"Ode To My Father": 8.9136363636,
"Memory": 8.8955223881,
"Bad Guys": 8.8932773109,
"A Werewolf Boy": 8.8928143713,
"The Master's Sun": 8.8853785901,
"1 Litre of Tears": 8.8793103448,
"You Who Came from the Stars": 8.8758389262,
"Hachiko Monogatari": 8.8727272727,
"Empress Ki": 8.8725296443,
"Harmony": 8.8720930233,
"Nine: Nine Times Time Travel": 8.87,
"Train to Busan": 8.8692870201,
"Queen Seon Duk": 8.8601532567,
"Descendants of the Sun": 8.8590208522,
"Kazoku Game": 8.8569587629,
"Queen In Hyun's Man": 8.8547865459,
"Sunny": 8.8537675607,
"Rurouni Kenshin: The Legend Ends": 8.8501362398,
"Seven Samurai": 8.8347826087,
"City Of Life And Death": 8.8333333333,
"Rurouni Kenshin: Kyoto Inferno": 8.8306074766,
"Kamen Rider OOO": 8.8243243243,
"The Princess' Man": 8.8211829436,
"Drama Special Series Season 1: White Christmas": 8.8158967391,
"Tonbi": 8.8137931034,
"Scarlet Heart": 8.8081180812,
"Love O2O": 8.8017241379,
"Liar Game": 8.7924961715,
"JIN 2": 8.7892156863,
"Rurouni Kenshin": 8.7791234141,
"Splash Splash LOVE": 8.7695570217,
"Tenno no Ryoriban": 8.7603305785,
"Legal High 2": 8.7398373984,
"Autumn's Concerto": 8.7397590361,
"Memories of Matsuko": 8.7389380531,
"Pinocchio": 8.7387318564,
"LIAR GAME 2": 8.7350230415,
"As One": 8.7348993289,
"Tae Guk Gi: The Brotherhood of War": 8.7286432161,
"Way Back Home": 8.724137931,
"71: Into the Fire": 8.7220812183,
"Two Weeks": 8.7206744868,
"The Eternal Zero": 8.7162162162,
"History of the Salaryman": 8.7106299213,
"Confessions": 8.7080223881,
"Juhan Shuttai!": 8.7071428571,
"City Hunter": 8.7069133398,
"N no Tame ni": 8.7006802721,
"Liar Game: The Final Stage": 8.7,
"Vampire Prosecutor 2": 8.6995249406,
"Missing Noir M": 8.6908396947,
"Secret Garden": 8.6858369099,
"Northern Limit Line": 8.6776315789,
"My Way": 8.6715328467,
"Jewel in the Palace": 8.6712328767,
"King's Daughter, Soo Baek Hyang": 8.6683168317,
"God's Quiz Season 3": 8.6677852349,
"Moon Lovers: Scarlet Heart Ryeo": 8.6621621622,
"Miss Granny": 8.6594827586,
"Dong Yi": 8.6553571429,
"Oh My Ghost": 8.6406672678,
"Rashomon": 8.6403508772,
"Ip Man": 8.6396011396,
"W": 8.6390765766,
"Flying Colors": 8.637254902,
"Ouroboros": 8.6361111111,
"King2Hearts": 8.6295681063,
"Maou": 8.6290849673,
"Always": 8.6276488396,
"I Remember You": 8.6270408163,
"Angry Mom": 8.6259370315,
"Our Heaven": 8.6245210728,
"Boku no Ita Jikan": 8.622923588,
"Shinya Shokudo 2": 8.6222222222,
"Ran": 8.6212121212,
"Yojimbo": 8.6176470588,
"The Moon that Embraces the Sun": 8.6162092624,
"Kounodori": 8.6140350877,
"LIAR GAME": 8.6105150215,
"Special Affairs Team TEN": 8.6104100946,
"The Disguiser": 8.6071428571,
"Salute D'Amour": 8.6071428571,
"Mama": 8.606557377,
"Legend of Concubine Zhen Huan": 8.6046511628,
"Shoot My Heart": 8.6014150943,
"A Moment to Remember": 8.5998659517,
"Runaway - Aisuru Kimi no Tame ni": 8.5975609756,
"Departures": 8.5966981132,
"Ugly Alert": 8.5962962963,
"Gou - Himetachi no Sengoku": 8.5909090909,
"Time Renegades": 8.5894308943,
"Iryu Team Medical Dragon": 8.5892857143,
"Kamen Rider W": 8.5888888889,
"Deep Rooted Tree": 8.5877192982,
"Love Me if You Dare": 8.5837004405,
"God's Gift - 14 Days": 8.582867784,
"Another Miss Oh": 8.580952381,
"Long Goodbye": 8.5806451613,
"Keizoku 2: SPEC": 8.5806451613,
"The Queen's Classroom SP": 8.58,
"Road Number One": 8.5795454545,
"Bloody Monday": 8.5794602699,
"Prince of Lan Ling": 8.5791366906,
"Door to Door": 8.5725806452,
"A Gentleman's Dignity": 8.5703799655,
"Red Cliff 2": 8.5695652174,
"Kaizoku Sentai Goukaiger": 8.5689655172,
"Mondai no Aru Restaurant": 8.5659340659,
"Jealousy Incarnate": 8.5656108597,
"The Admiral: Roaring Currents": 8.5637254902,
"Five Children": 8.5495495495,
"49 Days": 8.5485047411,
"God's Quiz Season 2": 8.5484693878,
"The Long Way Home": 8.5483870968,
"The Good Wife": 8.5478723404,
"Bitter Blood": 8.5466666667,
"How to Steal a Dog": 8.5454545455,
"JIN": 8.544198895,
"Iljimae": 8.543219076,
"Shut Up: Flower Boy Band": 8.5383469844,
"Shinya Shokudo": 8.5378787879,
"First Time": 8.5372881356,
"Vampire Prosecutor": 8.5370051635,
"Hello, Brother": 8.5348837209,
"GROW: Infinite's Real Youth Life": 8.5344827586,
"The Attorney": 8.5343137255,
"Full House": 8.5326732673,
"Secret": 8.5324714372,
"Wakamono Tachi": 8.5291262136,
"God's Quiz": 8.5286738351,
"What Happens to My Family?": 8.5283505155,
"I Will Fly to the Sky on a Wheelchair!": 8.5263157895,
"My Paparotti": 8.524,
"Special Affairs Team TEN Season 2": 8.5223463687,
"Hwayi: A Monster Boy": 8.5207792208,
"Shopping King Louis": 8.5202702703,
"Aishiteru": 8.5192307692,
"Ashita, Mama ga Inai": 8.5104166667,
"The Tower": 8.5095785441,
"Our Happy Time": 8.5093984962,
"School 2013": 8.5016863406,
"Beautiful Mind": 8.5012722646,
"The Great Passage": 8.5,
"Wood Job! The Easy Life in Kamusari": 8.5,
"Blackboard - Jidai to Tatakatta Kyoshi tachi": 8.5,
"Ip Man 2: Legend of Grandmaster": 8.4978354978,
"Page Turner": 8.493902439,
"Nobunaga Concerto": 8.4879032258,
"Innocent Man": 8.484,
"Orange": 8.4787234043,
"Old Boy": 8.476744186,
"Rooftop Prince": 8.4752446747,
"Go Away Mr.Tumor!": 8.4736842105,
"The Flowers of War": 8.4722222222,
"The Foreign Duck, the Native Duck and God in a Coin Locker": 8.4705882353,
"Doctor X 2": 8.4693877551,
"My Palpitating Life": 8.4693251534,
"Infernal Affairs": 8.46875,
"Mother": 8.4677419355,
"Take Off": 8.4673913043,
"Nodame Cantabile": 8.4656810982,
"Roosevelt Game": 8.462962963,
"Good Doctor": 8.4628571429,
"The Beauty Inside": 8.4622641509,
"Ikiru ": 8.4615384615,
"Karei naru Ichizoku": 8.4615384615,
"The Throne": 8.4602272727,
"Gu Family Book": 8.4599078341,
"Present Perfect": 8.4588235294,
"Marriage, Not Dating": 8.4578675838,
"Giant": 8.4574468085,
"Okitegami Kyoko no Biboroku": 8.4560810811,
"Shut Up Family": 8.4545454545,
"Teacher's Diary": 8.4513888889,
"D-Day": 8.4513888889,
"Coffee Prince": 8.4510973282,
"Bloody Monday 2": 8.4504504505,
"Pride": 8.4493670886,
"Dr. DMAT": 8.4482758621,
"Friends Never Die": 8.4459459459,
"Time Between Dog and Wolf": 8.4436416185,
"Joint Security Area": 8.4431818182,
"Brain Man": 8.4430147059,
"Oshin": 8.4423076923,
"MOZU Season 1 - Mozu no Sakebu Yoru": 8.4375,
"Marumo no Okite": 8.4351851852,
"Enter the Dragon": 8.4298245614,
"Veteran": 8.4292035398,
"Sungkyunkwan Scandal": 8.4284687275,
"Legal High": 8.4275700935,
"Blind": 8.4255319149,
"Hearty Paws": 8.4239130435,
"Marriage Contract": 8.4239130435,
"Bokura no Yuuki": 8.4204545455,
"LIFE": 8.42,
"Masquerade": 8.4197761194,
"Tazza: The Hidden Card": 8.4194444444,
"Mahoro Ekimae Bangaichi": 8.4176470588,
"Nodame Cantabile Special": 8.4170673077,
"Jumong": 8.4166666667,
"Under the Hawthorn Tree": 8.4134615385,
"Tunnel": 8.4134615385,
"Go Ho's Starry Night": 8.4117647059,
"GTO": 8.4074626866,
"Good Life ~Arigatou, Papa. Sayonara~": 8.4024390244,
"Can You Hear My Heart": 8.4020866774,
"My Girlfriend is a Gumiho": 8.3998815166,
"Secret Reunion": 8.3995098039,
"Bleak Night": 8.3978494624,
"Princess Pearl": 8.3977272727,
"Boss & Me": 8.3955399061,
"The Journey of Flower": 8.3941176471,
"Falling for Innocence": 8.3930517711,
"Doctor X 3": 8.3916666667,
"99.9: Criminal Lawyer": 8.3902439024,
"Ghost": 8.3888888889,
"Pied Piper": 8.3883495146,
"Wonderful Nightmare": 8.3854748603,
"In the Mood for Love": 8.3853211009,
"The Front Line": 8.3852459016,
"ST Aka to Shiro no Sousa File": 8.3846153846,
"Leh Nangfah": 8.3815789474,
"Seondal: The Man Who Sells the River": 8.381443299,
"Yakou Kanransha": 8.380952381,
"The Flu": 8.3807692308,
"Awl": 8.3769230769,
"The Way We Were": 8.375,
"You're All Surrounded": 8.3744419643,
"Crazy Little Thing Called Love": 8.3732876712,
"Ode to Joy": 8.3723404255,
"The Handmaiden": 8.3722222222,
"Secretly, Greatly": 8.369884575,
"Ojakgyo Brothers": 8.368902439,
"Orange Days": 8.3682432432,
"The Terror Live": 8.367816092,
"Kaitou Tantei Yamaneko": 8.3675496689,
"Journey to the West": 8.3671875,
"Muhan Company": 8.3666666667,
"Legal High SP": 8.3663366337,
"Nodame Cantabile: The Final Score - Part II": 8.3641304348,
"Suzuki Sensei": 8.3636363636,
"Hormones 2": 8.3636363636,
"Solomon's Perjury 1: Suspicion": 8.3620689655,
"Karamazov no Kyodai": 8.3601694915,
"The Way Home": 8.3588235294,
"Dear Sister": 8.358490566,
"Hanazakari no Kimitachi e": 8.3583429896,
"Rich Man, Poor Woman": 8.3579447323,
"Iryu Team Medical Dragon 3": 8.3552631579,
"You're Beautiful": 8.3541423571,
"MR. BRAIN": 8.3525641026,
"Kaseifu no Mita": 8.3523489933,
"Never Forever": 8.35,
"Chihayafuru: Kami no Ku": 8.35,
"Love Sick: The Series Season 2": 8.3470588235,
"They Kiss Again": 8.3469387755,
"Tamiou": 8.3469387755,
"Warrior Baek Dong Soo": 8.3466666667,
"Love Shuffle": 8.3456790123,
"Confession of Murder": 8.3455284553,
"You Who Came from the Stars: Epilogue": 8.3444444444,
"Twenty Again": 8.3425572519,
"Sound of the Desert": 8.3421052632,
"The Twilight Samurai": 8.3409090909,
"Marathon": 8.3402777778,
"Oh My Venus": 8.3383383383,
"Han Gong Ju": 8.3382352941,
"Descendants of the Sun: Recap Special": 8.3358208955,
"Family's Form": 8.3356164384,
"Last": 8.3351648352,
"Like Father, Like Son": 8.3333333333,
"Prophecy": 8.3333333333,
"Boku no Yabai Tsuma": 8.3333333333,
"Sassy Go Go": 8.3322295806,
"Last Friends": 8.3308823529,
"Moonlight Resonance": 8.3295454545,
"Hana Yori Dango 2": 8.3287002254,
"Black & White": 8.328125,
"Red Cliff": 8.3267045455,
"Gomenne Seishun!": 8.3266129032,
"Hitsudan Hostess": 8.3252427184,
"MARS": 8.3235294118,
"My P.S. Partner": 8.3215667311,
"Spellbound": 8.3210678211,
"Addicted Heroin": 8.3206896552,
"Code Blue 2": 8.3201970443,
"Guilty Akuma to Keiyakushita Onna": 8.3168316832,
"The Incarnation of Money": 8.3162393162,
"Ataru": 8.3149606299,
"Kiss Me": 8.3142857143,
"King of Baking, Kim Tak Goo": 8.3130311615,
"Chihayafuru: Shimo no Ku": 8.3092105263,
"Castaway on the Moon": 8.3087121212,
"Itazura na Kiss - Love In Tokyo 2": 8.3083511777,
"The Kingdom Of The Winds": 8.3080808081,
"Way of the Dragon": 8.3064516129,
"Shikaku Tantei Higurashi Tabito": 8.3064516129,
"Faith": 8.3050778051,
"Woman": 8.303030303,
"Mulan": 8.3021653543,
"Drama Special 2013: My Friend is Still Alive": 8.301843318,
"Ho Goo's Love": 8.3006993007,
"Let's Eat": 8.3,
"Unstoppable High Kick": 8.3,
"W Special": 8.3,
"A Day With My Son": 8.296875,
"Doctor-X: Gekai Daimon Michiko": 8.2962962963,
"Love Sick: The Series": 8.2955974843,
"Ie Uru Onna": 8.2926829268,
"Punch": 8.2909698997,
"Love 911": 8.2909647779,
"Line Walker": 8.2894736842,
"Iryu Team Medical Dragon 2": 8.2890625,
"Elegant Lies": 8.2886178862,
"Gantz: Perfect Answer": 8.2865168539,
"Hello Ghost": 8.2847222222,
"My Daughter Seo Young": 8.2841726619,
"New Police Story": 8.281512605,
"The Lover": 8.2800453515,
"Raise the Red Lantern": 8.2788461538,
"Saikou no Rikon": 8.2786259542,
"Hana Yori Dango": 8.2781163435,
"Ryusei no Kizuna": 8.2777777778,
"Wedding Dress": 8.277027027,
"The Greatest Love": 8.2766143106,
"Kazokugari": 8.2735849057,
"Yuusha Yoshihiko to Maou no Shiro": 8.2727272727,
"Letters from Iwo Jima": 8.2727272727,
"God's Quiz Season 4": 8.2706422018,
"Love in the Moonlight": 8.2692307692,
"Nobunaga Concerto: The Movie": 8.2676056338,
"That Winter, The Wind Blows": 8.267311609,
"Rinsho Hanzai Gakusha Himura Hideo no Suiri": 8.2671232877,
"The Con Artists": 8.2671081678,
"Pee Mak": 8.2669491525,
"Byakuyako": 8.2666666667,
"Doctor X": 8.2635135135,
"The Hippocratic Crush": 8.2631578947,
"Mask": 8.2629246677,
"Kindaichi Shonen no Jikenbo N": 8.2628205128,
"Kamen Rider Decade": 8.2625,
"I Saw The Devil": 8.2624584718,
"Saikou no Rikon Special 2014 ": 8.2619047619,
"Ice World": 8.2615384615,
"She Was Pretty": 8.2611607143,
"After Life": 8.2586206897,
"38 Task Force": 8.2568627451,
"Don Quixote": 8.2554945055,
"Bunny Drop": 8.2550432277,
"35 sai no Koukousei": 8.2540983607,
"Life is Beautiful": 8.2535211268,
"Ugly Duckling Series: Perfect Match": 8.2528409091,
"Unforgettable": 8.2527777778,
"Himizu": 8.2520661157,
"Hear Me": 8.2520107239,
"Remember – War of the Son": 8.2514450867,
"Library Wars: Book Of Memories": 8.25,
"Aoi Honoo": 8.25,
"Bomi's Room": 8.25,
"Assassination": 8.25,
"Romance in the Rain": 8.25,
"The Murder of Snow White": 8.2445255474,
"Kyo no Hi wa Sayonara": 8.2428571429,
"The Queen's Classroom": 8.2427385892,
"37.5°C no Namida": 8.2410714286,
"Smile, You": 8.2394179894,
"Classic": 8.2352941176,
"Jejoongwon": 8.234375,
"Koshonin": 8.2333333333,
"Witch's Romance": 8.2325249643,
"Memories of Murder": 8.2284946237,
"The Gifted Hands": 8.2273838631,
"Who Are You: School 2015": 8.2266591676,
"Montage": 8.2264150943,
"The Vigilantes in Masks": 8.2258064516,
"The Longest Night in Shanghai": 8.2258064516,
"Drama Special 2014: Monster": 8.2258064516,
"Kagi no Kakatta Heya": 8.2252475248,
"Osozaki no Himawari": 8.225,
"Nobody Knows": 8.2245989305,
"Kisarazu Cat's Eye": 8.2244897959,
"The Three Musketeers": 8.223880597,
"Missing You": 8.2214514408,
"Tumbling": 8.2213333333,
"My Love Eun Dong: The Beginning": 8.2211538462,
"Hormones": 8.2204724409,
"Unexpected You": 8.2201834862,
"IRIS": 8.2197898424,
"Trick 3": 8.2179487179,
"I'm Sorry, I Love You": 8.2164179104,
"Yuuki": 8.2153846154,
"Gokusen": 8.2144259078,
"Dream High": 8.2142857143,
"3-Iron": 8.2142857143,
"Mood of the Day": 8.2136752137,
"Princess Pearl II": 8.212962963,
"Reply 1994": 8.2114825581,
"I Love You As A Man: Part 2": 8.2105263158,
"Top Secret Wairoon Pun Lan": 8.2096774194,
"Schemes of a Beauty": 8.2096774194,
"A Barefoot Dream": 8.2083333333,
"Sutekina Sen Taxi": 8.2065217391,
"In Time With You": 8.2053742802,
"Wannueng Jaa Pben Superstar": 8.2047619048,
"It Started with a Kiss": 8.2040586246,
"Little Forest: Summer & Autumn": 8.2027027027,
"Descendants of the Sun: BTS": 8.2026143791,
"My Rainy Days": 8.2024221453,
"The King of Dramas": 8.2023381295,
"Tiger & Dragon": 8.2014925373,
"Secret Garden Special": 8.2,
"Fated to Love You": 8.1987750557,
"The Library": 8.1984126984,
"The Quiz Show 2": 8.198156682,
"May 18": 8.1956521739,
"Going by the Book": 8.1950549451,
"The Witness": 8.1948051948,
"Crouching Tiger, Hidden Dragon": 8.1942857143,
"Twenty": 8.194239291,
"Strawberry Night": 8.1935483871,
"I Will Teach You Love": 8.1927710843,
"Return of the Condor Heroes": 8.1918604651,
"HiGH&LOW SEASON 2": 8.1911764706,
"Jin Jin": 8.1911764706,
"The Liar and His Lover": 8.1908315565,
"Aftershock": 8.1904761905,
"The New World": 8.1897810219,
"The Chaser": 8.1875,
"Jang Yeong Shil": 8.1875,
"Kurokouchi": 8.186440678,
"Date - 2015 Natsu Hito": 8.1833333333,
"Chuno": 8.1820276498,
"House of Flying Daggers": 8.1819148936,
"Monster Hunt": 8.1818181818,
"Scent of a Woman": 8.1818181818,
"Legal High SP 2": 8.1808510638,
"Soratobu Kouhoushitsu": 8.1808510638,
"Cheo Yong 2": 8.18,
"Fireworks from the Heart": 8.18,
"Broken": 8.1794871795,
"Glorious Day": 8.1782608696,
"A Man's Story": 8.1772727273,
"Scandal Makers": 8.1768421053,
"Ikigami: The Ultimate Limit": 8.175,
"Heart to Heart": 8.1741176471,
"Umareru.": 8.1734693878,
"Night Flight": 8.1729323308,
"The Legend": 8.1714285714,
"Meitantei Conan": 8.1711409396,
"Orthros no Inu": 8.171009772,
"Please Come Back, Mister": 8.1707317073,
"The Love of Siam": 8.1666666667,
"More Than Blue": 8.1666666667,
"SPEC: Sho": 8.1651376147,
"Fearless": 8.1644295302,
"Kamen Rider Den-O": 8.1630434783,
"Bakuman.": 8.1628787879,
"Heavenly Forest": 8.1606170599,
"On The Way To The Airport": 8.1604938272,
"Manhattan Love Story": 8.16,
"Tokyo Girl": 8.1596638655,
"Nodame Cantabile: The Final Score - Part I": 8.1588594705,
"Shiroi Haru": 8.1545454545,
"Beach Boys": 8.1538461538,
"SPEC: Rei": 8.1538461538,
"Anohana: The Flower We Saw That Day": 8.1534090909,
"Our Little Sister": 8.1532258065,
"Chocolate": 8.152173913,
"Go Princess Go": 8.1518987342,
"Kung Fu Hustle": 8.1516245487,
"I Give My First Love to You": 8.1507936508,
"Yoo Na's Street": 8.15,
"Library Wars": 8.15,
"Be with You": 8.1489361702,
"Okaasan, Ore wa Daijoubu": 8.1481481481,
"Rich Man, Poor Woman in New York": 8.147597254,
"Flower Grandpa Investigation Unit": 8.1470588235,
"The Client ": 8.1464646465,
"The Suspect": 8.1453900709,
"Farewell My Concubine": 8.1440677966,
"Ikebukuro West Gate Park": 8.14375,
"My Little Hero": 8.1428571429,
"River’s Edge Okawabata Tanteisha": 8.1428571429,
"Arang and the Magistrate": 8.1395222584,
"Grave Of The Fireflies": 8.137254902,
"Ooku: Arikoto Iemitsu Hen": 8.1363636364,
"My Beautiful Bride": 8.1358381503,
"Tantei Gakuen Q": 8.1355932203,
"Sunflower": 8.1355932203,
"Postman To Heaven": 8.1349009901,
"The Palace": 8.1344086022,
"Horse Doctor": 8.1341463415,
"ROOKIES": 8.1318681319,
"BORDER": 8.1311111111,
"BOSS 2": 8.1294642857,
"BOSS": 8.1284153005,
"Once Upon a Time in China 2": 8.1282051282,
"Heard it Through the Grapevine": 8.1274509804,
"Bara no nai Hanaya": 8.127388535,
"The Village: Achiara's Secret": 8.1253731343,
"Yokoso Wagaya e": 8.125,
"The Peach Tree": 8.125,
"You Who Came from the Stars: The Beginning": 8.125,
"New Tales of Gisaeng": 8.1235294118,
"Kagi no Kakatta Heya SP ": 8.1229508197,
"Buzzer Beat": 8.1220865705,
"Babo: Miracle of a Giving Fool": 8.1216216216,
"Kingyo Club": 8.1215139442,
"Welcome to Dongmakgol": 8.1214953271,
"Galileo": 8.1206896552,
"City Hall": 8.1206896552,
"Assembly": 8.119047619,
"You and Me": 8.1182795699,
"ON Ijou Hanzai Sousakan Todo Hinako": 8.1166666667,
"Kikujiro": 8.1153846154,
"Kindaichi Shonen no Jikenbo: Gokumon Juku Satsujin Jiken": 8.1140350877,
"Deranged": 8.1139240506,
"Grey Rainbow": 8.1136363636,
"All About My Mom": 8.1111111111,
"Midnight FM": 8.1103896104,
"Candy House": 8.1097560976,
"D.I.E.": 8.109375,
"Genome Hazard": 8.1086956522,
"Yi San": 8.1084337349,
"Yasha": 8.1071428571,
"Bring It On, Ghost": 8.106029106,
"Kimi ni shika kikoenai": 8.1055045872,
"Koizora": 8.1051779935,
"HiGH&LOW": 8.1037735849,
"Back to 1989": 8.1034482759,
"Take Five ~ Oretachi wa Ai wo Nusumeru ka": 8.1020408163,
"Trick 2": 8.1020408163,
"The Whirlwind Girl": 8.1014492754,
"Cold Eyes": 8.1007067138,
"Padam Padam": 8.1,
"Ninkyo Helper": 8.1,
"Running Man": 8.0990990991,
"The Painter of the Wind": 8.0987261146,
"Once Upon a Time in China": 8.0982142857,
"The Wailing": 8.0967741935,
"GTO: Final Chapter - Farewell Onizuka! Graduation Special": 8.0957446809,
"Drunken Master": 8.0942622951,
"The Chronicles of Evil": 8.09375,
"Glove": 8.0930232558,
"Shaolin": 8.0897435897,
"I'll Die Soon": 8.0897435897,
"Lucky Romance": 8.0875232775,
"Date - Koi to wa Donna Mono Kashira": 8.0866666667,
"Tiger Cubs": 8.0862068966,
"Rob B Hood": 8.0847457627,
"Cain and Abel": 8.0814606742,
"Thank You": 8.0813953488,
"Code Blue": 8.0803278689,
"Drama Special 2015: What is the Ghost Doing?": 8.079787234,
"The Devil": 8.0790960452,
"Mother Game": 8.0789473684,
"Good Friends": 8.0787401575,
"Omotesando Koukou Gasshoubu": 8.0769230769,
"Ugly Duckling Series: Perfect Match Special": 8.0769230769,
"Legend of Lu Zhen": 8.0759493671,
"Legend of the Condor Heroes": 8.0743243243,
"Friend, Our Legend ": 8.0740740741,
"The Three Female Runaways": 8.0735294118,
"GTO: Remake Season 2": 8.0735294118,
"Emergency Couple": 8.0724197745,
"Itazura na Kiss - Love in Tokyo": 8.0715025907,
"Evasive Inquiry Agency": 8.0714285714,
"Sympathy For Lady Vengeance": 8.0714285714,
"Someone Like You": 8.0708661417,
"Somewhere Only We Know": 8.0708333333,
"Plus Nine Boys": 8.0701754386,
"Mrs. Cop": 8.0685483871,
"Tokyo DOGS": 8.0676328502,
"The Accidental Detective": 8.0666666667,
"Infernal Affairs II": 8.0666666667,
"ROOKIES: Graduation": 8.065,
"Whistle Blower": 8.064516129,
"K.O.3an Guo": 8.064516129,
"Seven Days: Monday - Thursday": 8.0628930818,
"Forensic Heroes II": 8.0606060606,
"Make It Right: The Series": 8.0592105263,
"Snowpiercer": 8.0588235294,
"Yowakutemo Katemasu": 8.0588235294,
"Drama Special Series Season 2: The True Colors": 8.0555555556,
"Lives of Omission": 8.0535714286,
"Wild Heroes": 8.0535714286,
"HERO 2": 8.0535714286,
"Slow Video": 8.0531914894,
"Space Brothers": 8.0531914894,
"ST Keishichou Kagaku Tokusou-han": 8.0508474576,
"GTO: Remake Season 1": 8.0494071146,
"I Want To Become A Hard Persimmon": 8.0487804878,
"Zettai Reido 2": 8.0487804878,
"Drama Special Series Season 3: Adolescence Medley": 8.0478036176,
"Pitch-black Darkness": 8.0476190476,
"Chungking Express": 8.0476190476,
"Chronicle of a Blood Merchant": 8.0476190476,
"My Amazing Boyfriend": 8.0466101695,
"13 Assassins": 8.0454545455,
"Sad Love Story": 8.0454545455,
"Atami no Sousakan": 8.0444444444,
"Kageri Yuku Natsu": 8.0428571429,
"Just You": 8.0421393841,
"Saki": 8.0408163265,
"Let's Eat 2": 8.0397727273,
"Never Let Me Go": 8.0396825397,
"Daisuki!!": 8.0392156863,
"Galileo Suspect X": 8.038961039,
"D.I.E. Again": 8.0384615385,
"Forensic Heroes III": 8.0384615385,
"E.U. (Emergency Unit)": 8.0384615385,
"Kamen Rider Kiva": 8.0375,
"A Man who was Superman": 8.0372340426,
"Journey to the West 2": 8.037037037,
"War of the Arrows": 8.0360824742,
"The Plan Man": 8.0355029586,
"Cheese in the Trap": 8.03515625,
"Seven Days: Friday - Sunday": 8.0333333333,
"Tada's Do-It-All House": 8.0333333333,
"1 Litre of Tears Special": 8.0322580645,
"Brilliant Legacy": 8.0319715808,
"Biblia Koshodou no Jiken Techou": 8.03125,
"Man on High Heels": 8.030075188,
"Water Boys 2": 8.0285714286,
"Aishiteiru to Ittekure": 8.0272727273,
"Long Vacation": 8.0265957447,
"Beautiful Life": 8.0257352941,
"Welcome to Fortune-Telling Onmyo Shop": 8.0256410256,
"Kekkon Dekinai Otoko": 8.025,
"Iron Monkey": 8.025,
"Il Mare": 8.0243902439,
"Spring, Summer, Autumn, Winter... and Spring": 8.0238095238,
"Risou no Musuko": 8.0231213873,
"Like For Likes": 8.0210084034,
"Mr. Nietzsche in the Convenience Store": 8.0208333333,
"Hwang Jin Yi": 8.0196850394,
"Puck!": 8.019047619,
"Bromance": 8.018957346,
"Gap Dong": 8.0189274448,
"I Love You As A Man": 8.0161290323,
"Wanted": 8.0157480315,
"Bride of the Century": 8.0142011834,
"Come! Jang Bo Ri": 8.0133928571,
"Gantz": 8.0129310345,
"Beautiful Rain ": 8.0113636364,
"Stairway to Heaven": 8.0112676056,
"Lucky Seven SP": 8.0105263158,
"A Girl & Three Sweethearts": 8.0101214575,
"Daisy": 8.0094339623,
"The Road Home": 8.0089285714,
"Windstruck": 8.0052742616,
"Smile": 8.0033333333,
"The Royal Tailor": 8.0,
"Padiwaradda": 8.0,
"Fist of Legend": 8.0,
"Kamen Rider Fourze": 8.0,
"Code Blue Special": 8.0,
"A Violent Prosecutor": 8.0,
"Awaiting": 8.0,
"Yellow Boots": 8.0,
"Long Love Letter": 8.0,
"Rinne no Ame": 8.0,
"Little Forest: Winter & Spring": 8.0,
"Reply 1994 Epilogue": 8.0,
"Modern Farmer": 7.9984177215,
"Gokusen: The Movie": 7.9964370546,
"Assassination Classroom": 7.9964028777,
"A Hard Day": 7.9943820225,
"I Fine..Thank You..Love You": 7.9935064935,
"11nin mo iru!": 7.9932432432,
"High School King of Savvy": 7.9929947461,
"Platina Data": 7.9910714286,
"Unfair": 7.9903846154,
"Sea Fog": 7.9897959184,
"The Wings of the Kirin": 7.9880952381,
"Heart Of Greed": 7.9861111111,
"Kogure Shashinkan": 7.9857142857,
"What's Up": 7.9850948509,
"Flowers for My Life": 7.9848484848,
"My Name is Kim Sam Soon": 7.9834862385,
"Fuben na Benriya": 7.9833333333,
"My Boss, My Hero": 7.9825367647,
"The Advocate: A Missing Body": 7.9821428571,
"The Warlords": 7.9817073171,
"From Five to Nine": 7.9816810345,
"Kindaichi Shonen no Jikenbo": 7.9814814815,
"Priceless": 7.9794117647,
"The Grand Heist": 7.979338843,
"Love, Lies": 7.9756097561,
"Ai wa Mieru": 7.9756097561,
"Algernon ni Hanataba o": 7.9726027397,
"Kisarazu Cats Eye: Nihon Series": 7.9722222222,
"The King and the Clown": 7.9719512195,
"Midnight Sun": 7.9715719064,
"Yes or No": 7.9714285714,
"The Girl Who Sees Scents": 7.9713631157,
"Coffee Prince Special": 7.9711538462,
"Golden Empire": 7.9705882353,
"Subete ga F ni Naru": 7.967032967,
"Heroine Disqualified": 7.9665127021,
"Zeni Geba": 7.9659090909,
"Kamen Rider Kabuto": 7.9659090909,
"Ex-Girlfriend Club": 7.9658848614,
"High-end Crush": 7.9655172414,
"SP: The Motion Picture": 7.962962963,
"Foolish Mom": 7.962962963,
"May Who?": 7.9625,
"Gokusen 2": 7.9622507123,
"The Big Boss": 7.9615384615,
"10 Promises To My Dog": 7.9607843137,
"Black Butler": 7.9602122016,
"SPEC: Heaven": 7.9595959596,
"We All Cry Differently": 7.9591836735,
"700 Days of Battle: Us vs. the Police": 7.9591836735,
"Surely Someday": 7.9574468085,
"Wu Xin: The Monster Killer": 7.9558823529,
"Twenty Years Old": 7.9557251908,
"Battle Royale": 7.9556390977,
"Coin Locker Girl": 7.9555555556,
"Detective K: Secret of the Lost Island": 7.9545454545,
"Kamisama Mou Sukoshi Dake": 7.9516129032,
"A Man and A Woman": 7.9509803922,
"Lady Girls": 7.95,
"Crows Zero": 7.9498956159,
"Protect the Boss": 7.9492063492,
"Like Love: Uncut Version": 7.9489795918,
"At Home Dad": 7.9487179487,
"Finding Mr. Right": 7.9479166667,
"11th Mom": 7.946969697,
"Hello Stranger": 7.9466019417,
"Go": 7.9466019417,
"The Target": 7.9459459459,
"Too Late to Say I Love You": 7.9459459459,
"Yuusha Yoshihiko to Akuryo no Kagi": 7.9456521739,
"Queen of Ambition": 7.9448529412,
"Hot Road": 7.94375,
"Tatta Hitotsu no Koi": 7.943289225,
"Villain": 7.9431818182,
"The Producers": 7.9420677362,
"Freeter, Ie o Kau.": 7.9417475728,
"All-Round Appraiser Q: Mona Lisa’s Eye": 7.9411764706,
"Boys Over Flowers": 7.9411510169,
"My Sunshine": 7.9407407407,
"Leh Ratree": 7.9407407407,
"Bump Off Lover": 7.94,
"Sungkyunkwan Scandal: Special": 7.9391891892,
"Friend": 7.9384615385,
"Summer Snow": 7.9382716049,
"We Were There: Part 1": 7.938034188,
"Noble, My Love": 7.9373695198,
"Entertainer": 7.9367647059,
"Rough Cut": 7.9366197183,
"Itazura na Kiss 2 - Love in Okinawa": 7.9350104822,
"Parasyte: Part 2": 7.9344262295,
"Drinking Solo": 7.9340659341,
"I Need Romance 3": 7.9328478964,
"Starry Starry Night": 7.9325396825,
"Memories of the Sword": 7.9324324324,
"Liar Game X": 7.9324324324,
"Crows Zero 2": 7.9313099042,
"Hard Boiled": 7.9310344828,
"The K2": 7.9307359307,
"Girl In The Sunny Place": 7.9296875,
"Koshonin 2": 7.9285714286,
"EXO Next Door": 7.928115016,
"Piece": 7.9278169014,
"Swing Girls": 7.9277777778,
"Nobuta Wo Produce": 7.92772612,
"Tai-Chi Master": 7.9268292683,
"The Little Fairy": 7.9264705882,
"Sign": 7.9259259259,
"Omukae Desu": 7.9259259259,
"Hotel King": 7.9248554913,
"Maids": 7.9248120301,
"Shaolin Soccer": 7.9223880597,
"Love You You": 7.9196428571,
"My Lucky Star": 7.9188034188,
"One More Happy Ending": 7.9175704989,
"Back to 20": 7.9166666667,
"The King's Man": 7.9166666667,
"Ishi no Mayu": 7.9153846154,
"Nagareboshi": 7.9150485437,
"Hong Gil Dong": 7.913961039,
"Tiny Times 4": 7.9137931034,
"Little Girl K": 7.9136807818,
"A Wedding Invitation": 7.9127906977,
"After School: Lucky or Not": 7.9120521173,
"Please Love the Useless Me": 7.9117647059,
"Oriento Kyuko Satsujin Jiken": 7.9107142857,
"Death Note: The Last Name": 7.9104372355,
"We Were There: Part 2": 7.9103194103,
"Ghost Mama Sousasen": 7.9102564103,
"Love Song": 7.91,
"Paradise Kiss": 7.9098088113,
"Parasyte: Part 1": 7.9095238095,
"Kisarazu Cat's Eye: World Series": 7.9090909091,
"My Sassy Girl": 7.9071856287,
"GTO: New Year Special! Winter break with a hot-blooded class": 7.9071428571,
"Princess Jellyfish": 7.906626506,
"Fish Story": 7.90625,
"Never Said Goodbye": 7.9054054054,
"HERO": 7.9045801527,
"My Love Eun Dong": 7.9040178571,
"The Duke of Mount Deer": 7.9038461538,
"Papa": 7.9032258065,
"CHANGE": 7.9016393443,
"Chinese Paladin 3": 7.9,
"Jeon Woo Chi: The Taoist Wizard": 7.9,
"Skip Beat!": 7.8995407577,
"Once Upon a Time in Saengchori": 7.898989899,
"Goong": 7.8974603175,
"No Mercy": 7.8974358974,
"Twilight Gangsters": 7.8974358974,
"Never Give Up, Dodo": 7.8961038961,
"Damo": 7.8954545455,
"You Are the Apple of My Eye": 7.8944954128,
"Love Through a Millennium": 7.89375,
"Hard Nut!": 7.8931034483,
"Rainbow Eyes": 7.8928571429,
"Glass Mask": 7.8928571429,
"Cunning Single Lady": 7.8928571429,
"Samurai Sensei": 7.8924050633,
"Bad Family": 7.8920863309,
"Cruel Romance": 7.8918918919,
"Land Of Rain": 7.8915662651,
"A Midsummer's Equation": 7.890625,
"My Love Story!!": 7.8901515152,
"Fermentation Family": 7.89,
"The Empress of China": 7.8888888889,
"Kamen Rider Decade: All Riders vs. Dai-Shocker": 7.8888888889,
"Forensic Heroes": 7.8888888889,
"High Kick! The Revenge of the Short Legged": 7.887755102,
"Haken no Hinkaku": 7.8875,
"Niini no Koto wo Wasurenaide": 7.8860759494,
"Kisaragi": 7.8852459016,
"Suckseed": 7.884057971,
"My Bratty Princess": 7.8820224719,
"Joker Yurusarezaru Sousakan": 7.881147541,
"Devil Beside You": 7.8811059908,
"Antique Bakery": 7.8807486631,
"Ong Bak": 7.88,
"I AM.": 7.8795811518,
"Godzilla": 7.8793103448,
"I Wish": 7.8787878788,
"Family's Honor": 7.8783783784,
"IS - Otoko Demo Onna Demo Nai Sei": 7.878238342,
"Gift": 7.8777777778,
"Love That Makes You Cry": 7.8776595745,
"Meitantei Conan Drama Special: Kudo Shinichi Kyoto Shinsengumi Satsujin Jiken": 7.8765432099,
"Sealed With A Kiss": 7.875,
"The Bride Who Wore Sneakers": 7.875,
"Assassination Classroom: Graduation": 7.875,
"Surgeon Bong Dal Hee": 7.875,
"Legendary Witch": 7.8736263736,
"The Pirates": 7.8736263736,
"Hana Yori Dango : Final": 7.8699307616,
"Gakkou no Kaidan": 7.8698224852,
"Gokusen Special": 7.8694968553,
"HAMMER SESSION!": 7.8684210526,
"Sympathy For Mr. Vengeance": 7.8681818182,
"Crossing": 7.8676470588,
"Irresistible Love - Secret of the valet": 7.8660714286,
"No Mercy For The Rude": 7.8658536585,
"Black Mask": 7.8658536585,
"Dangerous Love": 7.8657024793,
"Hormones 3": 7.8653846154,
"The Thieves": 7.8647619048,
"Akumu-Chan": 7.8645320197,
"Last Cinderella": 7.8641114983,
"Mr. Perfect": 7.8636363636,
"Two Weddings and a Funeral": 7.8634146341,
"Uncontrollably Fond": 7.8630490956,
"Parallel Life": 7.862745098,
"Pin Anong": 7.8625,
"Majo Saiban": 7.8620689655,
"My Girl": 7.8619217082,
"The Good, The Bad, The Weird": 7.8613636364,
"Sekai Ichi Muzukashii Koi": 7.8611111111,
"Mysterious Incredible Terminator": 7.8605769231,
"Key of Life": 7.8604651163,
"Thumping Spike": 7.8601190476,
"Mr. X and I Season 2": 7.8571428571,
"Tawipob": 7.8571428571,
"Ashita No Joe": 7.8565891473,
"Tough As Iron": 7.85625,
"Seigi no Mikata": 7.8561320755,
"Gokusen 3": 7.8557692308,
"Pasta": 7.8536585366,
"Song Huajai Nee Puea Tur": 7.8522727273,
"Cuo Dian Yuan Yang": 7.8513513514,
"Dream High Special Concert": 7.8513513514,
"High Kick Through the Roof!": 7.8512396694,
"Lady & Liar": 7.85,
"Drama Special Series Season 3: Sirius": 7.8489208633,
"Nazotoki wa dinner no ato de: Movie": 7.8482142857,
"Painted Skin: The Resurrection": 7.8470588235,
"Love Exposure": 7.8469945355,
"Ms. Temper & Nam Jung Gi": 7.8465346535,
"Gonzo": 7.8461538462,
"Tiny Times 2": 7.8454545455,
"Virgin Road": 7.8452380952,
"So Close": 7.845,
"Flower Boy Next Door": 7.8447447447,
"Q10": 7.8447293447,
"Jang Ok Jung": 7.8441295547,
"Nakuna, Hara-chan": 7.8414634146,
"Quick": 7.8413461538,
"Atashinchi no Danshi": 7.8412616339,
"School 2013 Special": 7.8392156863,
"Commitment": 7.8388746803,
"Akumu-Chan Special": 7.8378378378,
"Kurosagi": 7.8377386197,
"Scholar Who Walks the Night": 7.8374340949,
"Deka Wanko": 7.8373493976,
"Transit Girls": 7.8372093023,
"Shinzanmono": 7.8360655738,
"Tantei no Tantei": 7.8358208955,
"God's Gift - 14 Days: Special": 7.8352272727,
"Dal Ja's Spring": 7.8347457627,
"Inborn Pair": 7.8333333333,
"Summer Time Machine Blues": 7.8333333333,
"Ima Ai ni Yukimasu": 7.8333333333,
"Love Letter": 7.8333333333,
"When A Man Loves": 7.8333333333,
"A Boy and His Samurai": 7.8321917808,
"Stars Falling From the Sky": 7.832103321,
"The Imperial Doctress": 7.8301886792,
"Lucky Seven": 7.8300492611,
"Seonam Girls High School Investigators": 7.829787234,
"Big Match": 7.8289473684,
"Good Luck!!": 7.8275862069,
"The Five": 7.8272058824,
"The Magician": 7.8262032086,
"Yokai Ningen Bem": 7.8258706468,
"Dae Mul": 7.8257575758,
"Brain": 7.8255813953,
"beautiology101": 7.825,
"Killer Toon": 7.8247126437,
"The Yellow Sea": 7.8235294118,
"Beck": 7.822997416,
"One Smile is Very Alluring": 7.8226744186,
"Minami-kun no Koibito: My Little Lover": 7.8214285714,
"Personal Taste": 7.8213393303,
"Alone": 7.8205128205,
"Hide And Seek": 7.82,
"Ugly Duckling Series: Don't": 7.8197674419,
"Death Note": 7.8187772926,
"Shutter": 7.8181818182,
"Doctors": 7.8175965665,
"Heaven's Door": 7.8148148148,
"Saigo no Yakusoku": 7.8141025641,
"Kaiji": 7.8134920635,
"Hana Yori Dango Special": 7.8131578947,
"Karn La Krang Neung…Nai Hua Jai": 7.8125,
"The Suspicious Housekeeper": 7.8120300752,
"Capital Scandal": 7.811965812,
"Cyborg Girl": 7.8110539846,
"Dear Friends": 7.8108974359,
"DOCTORS Saikyou no Meii": 7.8103448276,
"Aozora no Tamago": 7.8103448276,
"Alice no Toge": 7.8101851852,
"Kimi ni Todoke": 7.8096446701,
"Pained": 7.8091286307,
"New Heart": 7.8090909091,
"Little Big Soldier": 7.8083333333,
"Siren": 7.8080808081,
"Myu no Anyo Papa ni Ageru": 7.8080357143,
"Secret Door": 7.8076923077,
"Underwear": 7.8064516129,
"Hara-Kiri: Death of a Samurai": 7.8055555556,
"Dr. Frost": 7.8053435115,
"Hidden Identity": 7.8046357616,
"20th Century Boys 1: Beginning of the End": 7.8043478261,