-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathraw_data.js
3507 lines (3507 loc) · 113 KB
/
raw_data.js
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
var __centimeters_per_second = [
"5 Centimeters per Second",
"Go scroll down to learn more about 5 Centimeters per Second",
]
var a_place_further_than_the_universe = [
"A Place Further than the Universe",
"Go scroll down to learn more about A Place Further than the Universe",
]
var a_silent_voice = [
"A Silent Voice",
"Go scroll down to learn more about A Silent Voice",
]
var a_whisker_away = [
"A Whisker Away",
"Go scroll down to learn more about A Whisker Away",
]
var akira = [
"Akira",
"Go scroll down to learn more about Akira",
]
var amagi_brilliant_park = [
"Amagi Brilliant Park",
"Go scroll down to learn more about Amagi Brilliant Park",
]
var angel_beats = [
"Angel Beats",
"Go scroll down to learn more about Angel Beats",
]
var anohana = [
"AnoHana",
"Go scroll down to learn more about AnoHana",
]
var another = [
"Another",
"Go scroll down to learn more about Another",
]
var aria = [
"Aria",
"Go scroll down to learn more about Aria",
]
var ascendance_of_a_bookworm = [
"Ascendance of a Bookworm",
"Go scroll down to learn more about Ascendance of a Bookworm",
]
var asobi_asobase = [
"Asobi Asobase",
"Go scroll down to learn more about Asobi Asobase",
]
var assassination_classroom = [
"Assassination Classroom",
"Go scroll down to learn more about Assassination Classroom",
]
var attack_on_titan = [
"Attack on Titan",
"Go scroll down to learn more about Attack on Titan",
]
var baby_steps = [
"Baby Steps",
"Go scroll down to learn more about Baby Steps",
]
var baccano_ = [
"Baccano!",
"Go scroll down to learn more about Baccano!",
]
var bakemonogatari = [
"Bakemonogatari",
"Go scroll down to learn more about Bakemonogatari",
]
var bakuman = [
"Bakuman",
"Go scroll down to learn more about Bakuman",
]
var banana_fish = [
"Banana Fish",
"Go scroll down to learn more about Banana Fish",
]
var beastars = [
"Beastars",
"Go scroll down to learn more about Beastars",
]
var berserk_______ = [
"Berserk (1997)",
"Go scroll down to learn more about Berserk (1997)",
]
var black_clover = [
"Black Clover",
"Go scroll down to learn more about Black Clover",
]
var black_lagoon = [
"Black Lagoon",
"Go scroll down to learn more about Black Lagoon",
]
var bleach = [
"Bleach",
"Go scroll down to learn more about Bleach",
]
var bloom_into_you = [
"Bloom Into You",
"Go scroll down to learn more about Bloom Into You",
]
var bunny_girl_senpai = [
"Bunny Girl Senpai",
"Go scroll down to learn more about Bunny Girl Senpai",
]
var castle_in_the_sky = [
"Castle in the Sky",
"Go scroll down to learn more about Castle in the Sky",
]
var cells_at_work_ = [
"Cells at Work!",
"Go scroll down to learn more about Cells at Work!",
]
var chihayafuru = [
"Chihayafuru",
"Go scroll down to learn more about Chihayafuru",
]
var children_who_chase_lost_voices = [
"Children who Chase Lost Voices",
"Go scroll down to learn more about Children who Chase Lost Voices",
]
var clannad = [
"Clannad",
"Go scroll down to learn more about Clannad",
]
var code_geass = [
"Code Geass",
"Go scroll down to learn more about Code Geass",
]
var colorful___the_motion_picture = [
"Colorful - The Motion Picture",
"Go scroll down to learn more about Colorful - The Motion Picture",
]
var comic_girls = [
"Comic Girls",
"Go scroll down to learn more about Comic Girls",
]
var cowboy_bebop = [
"Cowboy Bebop",
"Go scroll down to learn more about Cowboy Bebop",
]
var cross_game = [
"Cross Game",
"Go scroll down to learn more about Cross Game",
]
var dagashi_kashi = [
"Dagashi Kashi",
"Go scroll down to learn more about Dagashi Kashi",
]
var daily_lives_of_high_school_boys = [
"Daily Lives of High School Boys",
"Go scroll down to learn more about Daily Lives of High School Boys",
]
var danganronpa = [
"Danganronpa",
"Go scroll down to learn more about Danganronpa",
]
var darling_in_the_franxx = [
"Darling in the Franxx",
"Go scroll down to learn more about Darling in the Franxx",
]
var deadman_wonderland = [
"Deadman Wonderland",
"Go scroll down to learn more about Deadman Wonderland",
]
var death_note = [
"Death Note",
"Go scroll down to learn more about Death Note",
]
var death_parade = [
"Death Parade",
"Go scroll down to learn more about Death Parade",
]
var demon_slayer = [
"Demon Slayer",
"Go scroll down to learn more about Demon Slayer",
]
var devilman__crybaby = [
"Devilman: Crybaby",
"Go scroll down to learn more about Devilman: Crybaby",
]
var dr__stone = [
"Dr. Stone",
"Go scroll down to learn more about Dr. Stone",
]
var dragon_ball = [
"Dragon Ball",
"Go scroll down to learn more about Dragon Ball",
]
var erased = [
"Erased",
"Go scroll down to learn more about Erased",
]
var expelled_from_paradise = [
"Expelled from Paradise",
"Go scroll down to learn more about Expelled from Paradise",
]
var eyeshield___ = [
"Eyeshield 21",
"Go scroll down to learn more about Eyeshield 21",
]
var fairy_tail = [
"Fairy Tail",
"Go scroll down to learn more about Fairy Tail",
]
var fate_zero = [
"Fate/Zero",
"Go scroll down to learn more about Fate/Zero",
]
var flying_witch = [
"Flying Witch",
"Go scroll down to learn more about Flying Witch",
]
var food_wars_ = [
"Food Wars!",
"Go scroll down to learn more about Food Wars!",
]
var free_ = [
"Free!",
"Go scroll down to learn more about Free!",
]
var fullmetal_alchemist__brotherhood = [
"Fullmetal Alchemist: Brotherhood",
"Go scroll down to learn more about Fullmetal Alchemist: Brotherhood",
]
var future_diary = [
"Future Diary",
"Go scroll down to learn more about Future Diary",
]
var gabriel_dropout = [
"Gabriel Dropout",
"Go scroll down to learn more about Gabriel Dropout",
]
var ghost_in_the_shell_movie = [
"Ghost in the Shell Movie",
"Go scroll down to learn more about Ghost in the Shell Movie",
]
var ghost_in_the_shell__sac = [
"Ghost in the Shell: SAC",
"Go scroll down to learn more about Ghost in the Shell: SAC",
]
var gintama = [
"Gintama",
"Go scroll down to learn more about Gintama",
]
var girls_und_panzer = [
"Girls und Panzer",
"Go scroll down to learn more about Girls und Panzer",
]
var girls__last_tour = [
"Girls' Last Tour",
"Go scroll down to learn more about Girls' Last Tour",
]
var god_of_high_school = [
"God of High School",
"Go scroll down to learn more about God of High School",
]
var grand_blue = [
"Grand Blue",
"Go scroll down to learn more about Grand Blue",
]
var grave_of_the_fireflies = [
"Grave of the Fireflies",
"Go scroll down to learn more about Grave of the Fireflies",
]
var great_pretender = [
"Great Pretender",
"Go scroll down to learn more about Great Pretender",
]
var great_teacher_onizuka = [
"Great Teacher Onizuka",
"Go scroll down to learn more about Great Teacher Onizuka",
]
var gundam = [
"Gundam",
"Go scroll down to learn more about Gundam",
]
var haikyuu__ = [
"Haikyuu!!",
"Go scroll down to learn more about Haikyuu!!",
]
var hajime_no_ippo = [
"Hajime no Ippo",
"Go scroll down to learn more about Hajime no Ippo",
]
var hanayamata = [
"Hanayamata",
"Go scroll down to learn more about Hanayamata",
]
var haven_t_you_heard__i_m_sakamoto = [
"Haven't you heard? I'm Sakamoto",
"Go scroll down to learn more about Haven't you heard? I'm Sakamoto",
]
var hello_world = [
"HELLO WORLD",
"Go scroll down to learn more about HELLO WORLD",
]
var hellsing_ultimate = [
"Hellsing Ultimate",
"Go scroll down to learn more about Hellsing Ultimate",
]
var hinamatsuri = [
"Hinamatsuri",
"Go scroll down to learn more about Hinamatsuri",
]
var how_heavy_are_the_dumbbells_you_lift_ = [
"How heavy are the dumbbells you lift?",
"Go scroll down to learn more about How heavy are the dumbbells you lift?",
]
var howl_s_moving_castle = [
"Howl's Moving Castle",
"Go scroll down to learn more about Howl's Moving Castle",
]
var humanity_has_declined = [
"Humanity has Declined",
"Go scroll down to learn more about Humanity has Declined",
]
var hunter_x_hunter_______ = [
"Hunter x Hunter (2011)",
"Go scroll down to learn more about Hunter x Hunter (2011)",
]
var hyouka = [
"Hyouka",
"Go scroll down to learn more about Hyouka",
]
var i_want_to_eat_your_pancreas = [
"I Want To Eat Your Pancreas",
"Go scroll down to learn more about I Want To Eat Your Pancreas",
]
var in_this_corner_of_the_world = [
"In This Corner of the World",
"Go scroll down to learn more about In This Corner of the World",
]
var initial_d = [
"Initial-D",
"Go scroll down to learn more about Initial-D",
]
var into_the_forest_of_fireflies__light = [
"Into the Forest of Fireflies' Light",
"Go scroll down to learn more about Into the Forest of Fireflies' Light",
]
var is_the_order_a_rabbit_ = [
"Is the Order a Rabbit?",
"Go scroll down to learn more about Is the Order a Rabbit?",
]
var jin_roh__the_wolf_brigade = [
"Jin-Roh: The Wolf Brigade",
"Go scroll down to learn more about Jin-Roh: The Wolf Brigade",
]
var jojo_s_bizarre_adventure = [
"JoJo's Bizarre Adventure",
"Go scroll down to learn more about JoJo's Bizarre Adventure",
]
var jujutsu_kaisen = [
"Jujutsu Kaisen",
"Go scroll down to learn more about Jujutsu Kaisen",
]
var junjou_romantica = [
"Junjou Romantica",
"Go scroll down to learn more about Junjou Romantica",
]
var k_on_ = [
"K-On!",
"Go scroll down to learn more about K-On!",
]
var kaiji__ultimate_survivor = [
"Kaiji: Ultimate Survivor",
"Go scroll down to learn more about Kaiji: Ultimate Survivor",
]
var kakegurui = [
"Kakegurui",
"Go scroll down to learn more about Kakegurui",
]
var katanagatari = [
"Katanagatari",
"Go scroll down to learn more about Katanagatari",
]
var kaugya_sama_love_is_war = [
"Kaugya-sama Love is War",
"Go scroll down to learn more about Kaugya-sama Love is War",
]
var keep_your_hands_off_eizouken_ = [
"Keep Your Hands off Eizouken!",
"Go scroll down to learn more about Keep Your Hands off Eizouken!",
]
var keijo = [
"Keijo",
"Go scroll down to learn more about Keijo",
]
var kids_on_the_slope = [
"Kids on the Slope",
"Go scroll down to learn more about Kids on the Slope",
]
var kiki_s_delivery_service = [
"Kiki's Delivery Service",
"Go scroll down to learn more about Kiki's Delivery Service",
]
var kill_la_kill = [
"Kill la Kill",
"Go scroll down to learn more about Kill la Kill",
]
var kiniro_mosaic = [
"Kiniro Mosaic",
"Go scroll down to learn more about Kiniro Mosaic",
]
var kokoro_connect = [
"Kokoro Connect",
"Go scroll down to learn more about Kokoro Connect",
]
var konosuba = [
"Konosuba",
"Go scroll down to learn more about Konosuba",
]
var kuroko_s_basketball = [
"Kuroko's Basketball",
"Go scroll down to learn more about Kuroko's Basketball",
]
var liz_and_the_blue_bird = [
"Liz and the Blue Bird",
"Go scroll down to learn more about Liz and the Blue Bird",
]
var love_is_hard_for_otaku = [
"Love is Hard for Otaku",
"Go scroll down to learn more about Love is Hard for Otaku",
]
var lupin_iii = [
"Lupin III",
"Go scroll down to learn more about Lupin III",
]
var made_in_abyss = [
"Made in Abyss",
"Go scroll down to learn more about Made in Abyss",
]
var major = [
"Major",
"Go scroll down to learn more about Major",
]
var maquia = [
"Maquia",
"Go scroll down to learn more about Maquia",
]
var march_comes_in_like_a_lion = [
"March Comes in Like a Lion",
"Go scroll down to learn more about March Comes in Like a Lion",
]
var megalobox = [
"Megalobox",
"Go scroll down to learn more about Megalobox",
]
var millennium_actress = [
"Millennium Actress",
"Go scroll down to learn more about Millennium Actress",
]
var mind_game = [
"Mind Game",
"Go scroll down to learn more about Mind Game",
]
var mirai = [
"Mirai",
"Go scroll down to learn more about Mirai",
]
var miss_kobayashi_s_dragon_maid = [
"Miss Kobayashi's Dragon Maid",
"Go scroll down to learn more about Miss Kobayashi's Dragon Maid",
]
var mob_psycho____ = [
"Mob Psycho 100",
"Go scroll down to learn more about Mob Psycho 100",
]
var mononoke = [
"Mononoke",
"Go scroll down to learn more about Mononoke",
]
var monster = [
"Monster",
"Go scroll down to learn more about Monster",
]
var monster_musume = [
"Monster Musume",
"Go scroll down to learn more about Monster Musume",
]
var monthly_girls__nozaki_kun = [
"Monthly Girls' Nozaki-Kun",
"Go scroll down to learn more about Monthly Girls' Nozaki-Kun",
]
var mushi_shi = [
"Mushi-shi",
"Go scroll down to learn more about Mushi-shi",
]
var my_hero_academia = [
"My Hero Academia",
"Go scroll down to learn more about My Hero Academia",
]
var my_neighbor_totoro = [
"My Neighbor Totoro",
"Go scroll down to learn more about My Neighbor Totoro",
]
var my_next_life_as_a_villainess__all_routes_lead_to_doom_ = [
"My Next Life as a Villainess: All Routes lead to Doom!",
"Go scroll down to learn more about My Next Life as a Villainess: All Routes lead to Doom!",
]
var naruto = [
"Naruto",
"Go scroll down to learn more about Naruto",
]
var neon_genesis_evangelion = [
"Neon Genesis Evangelion",
"Go scroll down to learn more about Neon Genesis Evangelion",
]
var new_game_ = [
"New Game!",
"Go scroll down to learn more about New Game!",
]
var nichijou = [
"Nichijou",
"Go scroll down to learn more about Nichijou",
]
var no_game_no_life = [
"No Game No Life",
"Go scroll down to learn more about No Game No Life",
]
var non_non_biyori = [
"Non Non Biyori",
"Go scroll down to learn more about Non Non Biyori",
]
var noragami = [
"Noragami",
"Go scroll down to learn more about Noragami",
]
var o_maidens_in_your_savage_season = [
"O Maidens in Your Savage Season",
"Go scroll down to learn more about O Maidens in Your Savage Season",
]
var one_piece = [
"One Piece",
"Go scroll down to learn more about One Piece",
]
var one_punch_man = [
"One Punch Man",
"Go scroll down to learn more about One Punch Man",
]
var oregairu = [
"Oregairu",
"Go scroll down to learn more about Oregairu",
]
var ouran_high_school_host_club = [
"Ouran High School Host Club",
"Go scroll down to learn more about Ouran High School Host Club",
]
var overlord = [
"Overlord",
"Go scroll down to learn more about Overlord",
]
var paprika = [
"Paprika",
"Go scroll down to learn more about Paprika",
]
var parasyte = [
"Parasyte",
"Go scroll down to learn more about Parasyte",
]
var patema_inverted = [
"Patema Inverted",
"Go scroll down to learn more about Patema Inverted",
]
var perfect_blue = [
"Perfect Blue",
"Go scroll down to learn more about Perfect Blue",
]
var ping_pong_the_animation = [
"Ping Pong the Animation",
"Go scroll down to learn more about Ping Pong the Animation",
]
var prince_of_tennis = [
"Prince of Tennis",
"Go scroll down to learn more about Prince of Tennis",
]
var princess_monoke = [
"Princess Monoke",
"Go scroll down to learn more about Princess Monoke",
]
var prison_school = [
"Prison School",
"Go scroll down to learn more about Prison School",
]
var psycho_pass = [
"Psycho-Pass",
"Go scroll down to learn more about Psycho-Pass",
]
var puella_magi_madoka_magica = [
"Puella Magi Madoka Magica",
"Go scroll down to learn more about Puella Magi Madoka Magica",
]
var rainbow = [
"Rainbow",
"Go scroll down to learn more about Rainbow",
]
var re_zero = [
"Re:Zero",
"Go scroll down to learn more about Re:Zero",
]
var redine = [
"Redine",
"Go scroll down to learn more about Redine",
]
var ride_your_wave = [
"Ride Your Wave",
"Go scroll down to learn more about Ride Your Wave",
]
var rising_of_the_shield_hero = [
"Rising of the Shield Hero",
"Go scroll down to learn more about Rising of the Shield Hero",
]
var run_with_the_wind = [
"Run with the Wind",
"Go scroll down to learn more about Run with the Wind",
]
var saga_of_tanya_the_evil = [
"Saga of Tanya the Evil",
"Go scroll down to learn more about Saga of Tanya the Evil",
]
var samurai_champloo = [
"Samurai Champloo",
"Go scroll down to learn more about Samurai Champloo",
]
var school_live = [
"School Live",
"Go scroll down to learn more about School Live",
]
var serial_experiments_lain = [
"Serial Experiments Lain",
"Go scroll down to learn more about Serial Experiments Lain",
]
var shiki = [
"Shiki",
"Go scroll down to learn more about Shiki",
]
var shinsekai_yori = [
"Shinsekai yori",
"Go scroll down to learn more about Shinsekai yori",
]
var shirobako = [
"Shirobako",
"Go scroll down to learn more about Shirobako",
]
var showa_genroku_rakugo_shinjuu = [
"Showa Genroku Rakugo Shinjuu",
"Go scroll down to learn more about Showa Genroku Rakugo Shinjuu",
]
var sk__the_infinity = [
"Sk8 the Infinity",
"Go scroll down to learn more about Sk8 the Infinity",
]
var skull_face_bookseller_honda_san = [
"Skull-face Bookseller Honda-san",
"Go scroll down to learn more about Skull-face Bookseller Honda-san",
]
var slam_dunk = [
"Slam Dunk",
"Go scroll down to learn more about Slam Dunk",
]
var sound__euphonium = [
"Sound! Euphonium",
"Go scroll down to learn more about Sound! Euphonium",
]
var space_brothers = [
"Space Brothers",
"Go scroll down to learn more about Space Brothers",
]
var spice___wolf_ = [
"Spice & Wolf ",
"Go scroll down to learn more about Spice & Wolf ",
]
var spirited_away = [
"Spirited Away",
"Go scroll down to learn more about Spirited Away",
]
var steins_gate = [
"Steins;Gate",
"Go scroll down to learn more about Steins;Gate",
]
var summer_wars = [
"Summer Wars",
"Go scroll down to learn more about Summer Wars",
]
var sweetness___lightning = [
"Sweetness & Lightning",
"Go scroll down to learn more about Sweetness & Lightning",
]
var sword_art_online = [
"Sword Art Online",
"Go scroll down to learn more about Sword Art Online",
]
var sword_of_the_stranger = [
"Sword of the Stranger",
"Go scroll down to learn more about Sword of the Stranger",
]
var tamako_market = [
"Tamako Market",
"Go scroll down to learn more about Tamako Market",
]
var tanaka_kun_is_always_listless = [
"Tanaka-kun is Always Listless",
"Go scroll down to learn more about Tanaka-kun is Always Listless",
]
var teasing_master_takagi_san = [
"Teasing Master Takagi-san",
"Go scroll down to learn more about Teasing Master Takagi-san",
]
var tengen_toppa_gurren_lagann = [
"Tengen Toppa Gurren Lagann",
"Go scroll down to learn more about Tengen Toppa Gurren Lagann",
]
var terror_in_resonance = [
"Terror In Resonance",
"Go scroll down to learn more about Terror In Resonance",
]
var that_time_i_got_reincarnated_as_a_slime = [
"That TIme I Got Reincarnated as a Slime",
"Go scroll down to learn more about That TIme I Got Reincarnated as a Slime",
]
var the_boy_and_the_beast = [
"The Boy and the Beast",
"Go scroll down to learn more about The Boy and the Beast",
]
var the_cat_returns = [
"The Cat Returns",
"Go scroll down to learn more about The Cat Returns",
]
var the_disastrous_life_of_saiki_k_ = [
"The Disastrous Life of Saiki K.",
"Go scroll down to learn more about The Disastrous Life of Saiki K.",
]
var the_garden_of_words = [
"The Garden of Words",
"Go scroll down to learn more about The Garden of Words",
]
var the_girl_who_leapt_through_time = [
"The Girl Who Leapt Through Time",
"Go scroll down to learn more about The Girl Who Leapt Through Time",
]
var the_night_is_short__walk_on_girl = [
"The Night Is Short, Walk on Girl",
"Go scroll down to learn more about The Night Is Short, Walk on Girl",
]
var the_pet_girl_of_sakurasou = [
"The Pet Girl of Sakurasou",
"Go scroll down to learn more about The Pet Girl of Sakurasou",
]
var the_place_promised_in_our_early_days = [
"The Place Promised in Our Early Days",
"Go scroll down to learn more about The Place Promised in Our Early Days",
]
var the_promised_neverland = [
"The Promised Neverland",
"Go scroll down to learn more about The Promised Neverland",
]
var the_quintessential_quintuplets = [
"The Quintessential Quintuplets",
"Go scroll down to learn more about The Quintessential Quintuplets",
]
var the_tale_of_the_princess_kaguya = [
"The Tale of the Princess Kaguya",
"Go scroll down to learn more about The Tale of the Princess Kaguya",
]
var the_tatami_galaxy = [
"The Tatami Galaxy",
"Go scroll down to learn more about The Tatami Galaxy",
]
var the_wind_rises = [
"The Wind Rises",
"Go scroll down to learn more about The Wind Rises",
]
var tokyo_ghoul = [
"Tokyo Ghoul",
"Go scroll down to learn more about Tokyo Ghoul",
]
var tokyo_godfathers = [
"Tokyo Godfathers",
"Go scroll down to learn more about Tokyo Godfathers",
]
var toradora_ = [
"Toradora!",
"Go scroll down to learn more about Toradora!",
]
var tower_of_god = [
"Tower of God",
"Go scroll down to learn more about Tower of God",
]
var tsuredure_children = [
"Tsuredure Children",
"Go scroll down to learn more about Tsuredure Children",
]
var usagi_drop = [
"Usagi Drop",
"Go scroll down to learn more about Usagi Drop",
]
var vinland_saga = [
"Vinland Saga",
"Go scroll down to learn more about Vinland Saga",
]
var violet_evergarden = [
"Violet Evergarden",
"Go scroll down to learn more about Violet Evergarden",
]
var weathering_with_you = [
"Weathering With You",
"Go scroll down to learn more about Weathering With You",
]
var when_marnie_was_there = [
"When Marnie Was There",
"Go scroll down to learn more about When Marnie Was There",
]
var when_they_cry = [
"When They Cry",
"Go scroll down to learn more about When They Cry",
]
var whisper_of_the_heart = [
"Whisper of the Heart",
"Go scroll down to learn more about Whisper of the Heart",
]
var wolf_children = [
"Wolf Children",
"Go scroll down to learn more about Wolf Children",
]
var your_lie_in_april = [
"Your Lie in April",
"Go scroll down to learn more about Your Lie in April",
]
var your_name_ = [
"Your Name.",
"Go scroll down to learn more about Your Name.",
]
var yowamushi_pedal = [
"Yowamushi Pedal",
"Go scroll down to learn more about Yowamushi Pedal",
]
var yuri____on_ice = [
"Yuri!!! On Ice",
"Go scroll down to learn more about Yuri!!! On Ice",
]
var yuru_camp = [
"Yuru Camp",
"Go scroll down to learn more about Yuru Camp",
]
var yuyushiki = [
"Yuyushiki",
"Go scroll down to learn more about Yuyushiki",
]
var bizarre_roast_of_society = [
"Bizarre Roast of Society",
"We chose Humanity has Declined for you!",
humanity_has_declined,
]
var dragon_girls = [
"Dragon Girls",
"We chose Miss Kobayashi's Dragon Maid for you!",
miss_kobayashi_s_dragon_maid,
]
var guys_being_dudes = [
"Guys Being Dudes",
"We chose Daily Lives of High School Boys for you!",
daily_lives_of_high_school_boys,
]
var large_cast = [
"Large Cast",
"We chose Nichijou for you!",
nichijou,
]
var not_so_innocent_girls = [
"Not So Innocent Girls",
"We chose Asobi Asobase for you!",
asobi_asobase,
]
var odd_jobs = [
"Odd Jobs",
"We chose Gintama for you!",
gintama,
]
var boisterous_fun = [
"Boisterous Fun",
"Boisterous Fun about what?",
large_cast,
not_so_innocent_girls,
]
var bouncing = [
"Bouncing",
"We chose Keijo for you!",
keijo,
]
var cycling = [
"Cycling",
"We chose Yowamushi Pedal for you!",
yowamushi_pedal,
]
var ecchi = [
"Ecchi",
"We chose Kill la Kill for you!",
kill_la_kill,
]
var evil_spirits = [
"Evil Spirits",
"We chose Jujutsu Kaisen for you!",
jujutsu_kaisen,
]
var evil_vampires = [
"Evil Vampires",
"We chose Demon Slayer for you!",
demon_slayer,
]
var fight_for_humanity = [
"Fight For Humanity",
"We chose Attack on Titan for you!",
attack_on_titan,
]
var fitness = [
"Fitness",
"We chose How heavy are the dumbbells you lift? for you!",
how_heavy_are_the_dumbbells_you_lift_,
]
var heroes = [
"Heroes",
"We chose My Hero Academia for you!",
my_hero_academia,
]
var japanese_snacks = [
"Japanese Snacks",
"We chose Dagashi Kashi for you!",
dagashi_kashi,
]
var knights = [
"Knights",
"We chose Hellsing Ultimate for you!",
hellsing_ultimate,
]
var manly = [
"Manly",
"We chose JoJo's Bizarre Adventure for you!",
jojo_s_bizarre_adventure,
]
var mercenaries = [
"Mercenaries",
"We chose Black Lagoon for you!",
black_lagoon,
]
var miscellaneous_daily_life = [
"Miscellaneous Daily Life",
"What types of miscellaneous daily life anime?",
odd_jobs,
dragon_girls,
bizarre_roast_of_society,
]
var modern_american_football = [
"Modern American Football",
"We chose Eyeshield 21 for you!",
eyeshield___,
]
var modern_basketball = [
"Modern Basketball",
"We chose Kuroko's Basketball for you!",
kuroko_s_basketball,
]
var modern_ping_pong = [
"Modern Ping-Pong",
"We chose Ping Pong the Animation for you!",
ping_pong_the_animation,
]
var modern_tennis = [
"Modern Tennis",
"We chose Baby Steps for you!",
baby_steps,
]
var modern_volleyball = [
"Modern Volleyball",
"We chose Haikyuu!! for you!",
haikyuu__,
]
var mythology = [
"Mythology",
"We chose Noragami for you!",
noragami,
]
var running = [
"Running",
"We chose Run with the Wind for you!",
run_with_the_wind,
]
var sorcerers = [
"Sorcerers",
"We chose Saga of Tanya the Evil for you!",
saga_of_tanya_the_evil,
]
var super_power = [
"Super Power",
"We chose Mob Psycho 100 for you!",
mob_psycho____,
]
var super_robot = [
"Super Robot",
"We chose Tengen Toppa Gurren Lagann for you!",
tengen_toppa_gurren_lagann,