aboutsummaryrefslogtreecommitdiff
path: root/pages/components/test/dataAni.js
blob: 528be47a13ac1f7d324e111d54c0f121fc98d04c (plain) (blame)
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
export const AniData = {
  id: "125367",
  title: {
    romaji: "Kaguya-sama wa Kokurasetai: Ultra Romantic",
    english: "Kaguya-sama: Love is War -Ultra Romantic-",
    native: "かぐや様は告らせたい-ウルトラロマンティック-",
  },
  malId: 43608,
  synonyms: [
    "Kaguya-sama: Love is War Season 3",
    "辉夜大小姐想让我告白~天才们的恋爱头脑战~ 3",
    "辉夜大小姐想让我告白~天才们的恋爱头脑战~ 第三季",
    "Kaguya-sama wa Kokurasetai: Tensai-tachi no Renai Zunousen 3",
    "สารภาพรักกับคุณคางุยะซะดี ๆ ~สงครามประสาทความรักของเหล่าอัจฉริยะ~ ภาค 3",
    "สารภาพรักกับคุณคางุยะ ซะดี ๆ -อุลตร้า โรแมนติก-",
    "Kaguya-sama wa Kokurasetai 3rd Season",
    "Kaguya-sama: Cuộc Chiến Tỏ Tình - Ultra Romantic",
    "Госпожа Кагуя: в любви как на войне. Ультраромантика",
    "Nona Kaguya Ingin Ditembak: Ultra Romantic",
    "Кагуя хочет, чтобы ей признались: война любви и разума гениев 3",
  ],
  isLicensed: true,
  isAdult: false,
  countryOfOrigin: "JP",
  trailer: {
    id: "RN4FFgHpAZo",
    site: "youtube",
    thumbnail: "https://i.ytimg.com/vi/RN4FFgHpAZo/hqdefault.jpg",
  },
  image:
    "https://s4.anilist.co/file/anilistcdn/media/anime/cover/large/bx125367-bl5vGalMH2cC.png",
  popularity: 159108,
  color: "#d6f1a1",
  cover:
    "https://s4.anilist.co/file/anilistcdn/media/anime/banner/125367-hGPJLSNfprO3.jpg",
  description:
    "The elite members of Shuchiin Academy's student council continue their competitive day-to-day antics. Council president Miyuki Shirogane clashes daily against vice-president Kaguya Shinomiya, each fighting tooth and nail to trick the other into confessing their romantic love. Kaguya struggles within the strict confines of her wealthy, uptight family, rebelling against her cold default demeanor as she warms to Shirogane and the rest of her friends.<br>\n<br>\nMeanwhile, council treasurer Yuu Ishigami suffers under the weight of his hopeless crush on Tsubame Koyasu, a popular upperclassman who helps to instill a new confidence in him. Miko Iino, the newest student council member, grows closer to the rule-breaking Ishigami while striving to overcome her own authoritarian moral code.<br>\n<br>\nAs love further blooms at Shuchiin Academy, the student council officers drag their outsider friends into increasingly comedic conflicts.<br>\n<br>\n(Source: MAL Rewrite)<br>\n<br>\n<i>Notes:<br>\n- The 10-minute-long trailer is not added to the site, but the staff for it have been credited in this entry.<br>\n- The first episode had an advanced screening on April 2, in both New York & Los Angeles.<br>",
  status: "Completed",
  releaseDate: 2022,
  startDate: {
    year: 2022,
    month: 4,
    day: 9,
  },
  endDate: {
    year: 2022,
    month: 6,
    day: 25,
  },
  totalEpisodes: 13,
  currentEpisode: 13,
  rating: 90,
  duration: 24,
  genres: ["Comedy", "Psychological", "Romance", "Slice of Life"],
  season: "SPRING",
  studios: ["A-1 Pictures"],
  subOrDub: "sub",
  type: "TV",
  recommendations: [
    {
      id: 14813,
      malId: 14813,
      title: {
        romaji: "Yahari Ore no Seishun Love Come wa Machigatteiru.",
        english: "My Teen Romantic Comedy SNAFU",
        native: "やはり俺の青春ラブコメはまちがっている。",
        userPreferred: "Yahari Ore no Seishun Love Come wa Machigatteiru.",
      },
      status: "Completed",
      episodes: 13,
      image:
        "https://s4.anilist.co/file/anilistcdn/media/anime/cover/large/nx14813-BC8aanHK9fju.jpg",
      cover:
        "https://s4.anilist.co/file/anilistcdn/media/anime/banner/14813-urImBxyWJUEw.jpg",
      rating: 78,
      type: "TV",
    },
    {
      id: 100922,
      malId: 37105,
      title: {
        romaji: "Grand Blue",
        english: "Grand Blue Dreaming",
        native: "ぐらんぶる",
        userPreferred: "Grand Blue",
      },
      status: "Completed",
      episodes: 12,
      image:
        "https://s4.anilist.co/file/anilistcdn/media/anime/cover/large/bx100922-ltoQa6rosUyP.png",
      cover:
        "https://s4.anilist.co/file/anilistcdn/media/anime/banner/100922-ef1bBJCUCfxk.jpg",
      rating: 82,
      type: "TV",
    },
    {
      id: 103572,
      malId: 38101,
      title: {
        romaji: "Go-toubun no Hanayome",
        english: "The Quintessential Quintuplets",
        native: "五等分の花嫁",
        userPreferred: "Go-toubun no Hanayome",
      },
      status: "Completed",
      episodes: 12,
      image:
        "https://s4.anilist.co/file/anilistcdn/media/anime/cover/large/bx103572-2MXV30htoCSh.png",
      cover:
        "https://s4.anilist.co/file/anilistcdn/media/anime/banner/103572-qRtBguYOOR2j.jpg",
      rating: 76,
      type: "TV",
    },
    {
      id: 124080,
      malId: 42897,
      title: {
        romaji: "Horimiya",
        english: "Horimiya",
        native: "ホリミヤ",
        userPreferred: "Horimiya",
      },
      status: "Completed",
      episodes: 13,
      image:
        "https://s4.anilist.co/file/anilistcdn/media/anime/cover/large/bx124080-h8EPH92nyRfS.jpg",
      cover:
        "https://s4.anilist.co/file/anilistcdn/media/anime/banner/124080-ARyLAHHgikRq.jpg",
      rating: 81,
      type: "TV",
    },
    {
      id: 107067,
      malId: 38992,
      title: {
        romaji: "Rikei ga Koi ni Ochita no de Shoumei shitemita.",
        english: "Science Fell in Love, So I Tried to Prove It",
        native: "理系が恋に落ちたので証明してみた。",
        userPreferred: "Rikei ga Koi ni Ochita no de Shoumei shitemita.",
      },
      status: "Completed",
      episodes: 12,
      image:
        "https://s4.anilist.co/file/anilistcdn/media/anime/cover/large/bx107067-UOEanLoeuvYh.png",
      cover:
        "https://s4.anilist.co/file/anilistcdn/media/anime/banner/107067-QWr4Ity7NZbx.jpg",
      rating: 72,
      type: "ONA",
    },
    {
      id: 125124,
      malId: 43470,
      title: {
        romaji:
          "Rikei ga Koi ni Ochita no de Shoumei shitemita. r=1-sinθ (Heart)",
        english: "Science Fell in Love, So I Tried to Prove It r=1-sinθ",
        native: "理系が恋に落ちたので証明してみた。r=1-sinθ(ハート)",
        userPreferred:
          "Rikei ga Koi ni Ochita no de Shoumei shitemita. r=1-sinθ (Heart)",
      },
      status: "Completed",
      episodes: 12,
      image:
        "https://s4.anilist.co/file/anilistcdn/media/anime/cover/large/bx125124-FHz4ND4kJzqu.jpg",
      cover:
        "https://s4.anilist.co/file/anilistcdn/media/anime/cover/large/bx125124-FHz4ND4kJzqu.jpg",
      rating: 71,
      type: "TV",
    },
    {
      id: 133965,
      malId: 48926,
      title: {
        romaji: "Komi-san wa, Komyushou desu.",
        english: "Komi Can’t Communicate",
        native: "古見さんは、コミュ症です。",
        userPreferred: "Komi-san wa, Komyushou desu.",
      },
      status: "Completed",
      episodes: 12,
      image:
        "https://s4.anilist.co/file/anilistcdn/media/anime/cover/large/bx133965-9TZBS4m4yvED.png",
      cover:
        "https://s4.anilist.co/file/anilistcdn/media/anime/banner/133965-spTi0WE7jR0r.jpg",
      rating: 79,
      type: "TV",
    },
    {
      id: 5081,
      malId: 5081,
      title: {
        romaji: "Bakemonogatari",
        english: "Bakemonogatari",
        native: "化物語",
        userPreferred: "Bakemonogatari",
      },
      status: "Completed",
      episodes: 15,
      image:
        "https://s4.anilist.co/file/anilistcdn/media/anime/cover/large/bx5081-mzWo8ZayqhES.jpg",
      cover:
        "https://s4.anilist.co/file/anilistcdn/media/anime/banner/n5081-0Zcn5GOFYHMc.jpg",
      rating: 82,
      type: "TV",
    },
    {
      id: 101921,
      malId: 37999,
      title: {
        romaji: "Kaguya-sama wa Kokurasetai: Tensaitachi no Renai Zunousen",
        english: "Kaguya-sama: Love is War",
        native: "かぐや様は告らせたい~天才たちの恋愛頭脳戦~",
        userPreferred:
          "Kaguya-sama wa Kokurasetai: Tensaitachi no Renai Zunousen",
      },
      status: "Completed",
      episodes: 12,
      image:
        "https://s4.anilist.co/file/anilistcdn/media/anime/cover/large/bx101921-VvdGQy1ZySYf.jpg",
      cover:
        "https://s4.anilist.co/file/anilistcdn/media/anime/banner/101921-GgvvFhlNhzlF.jpg",
      rating: 83,
      type: "TV",
    },
    {
      id: 140960,
      malId: 50265,
      title: {
        romaji: "SPY×FAMILY",
        english: "SPY x FAMILY",
        native: "SPY×FAMILY",
        userPreferred: "SPY×FAMILY",
      },
      status: "Completed",
      episodes: 12,
      image:
        "https://s4.anilist.co/file/anilistcdn/media/anime/cover/large/bx140960-vN39AmOWrVB5.jpg",
      cover:
        "https://s4.anilist.co/file/anilistcdn/media/anime/banner/140960-Z7xSvkRxHKfj.jpg",
      rating: 86,
      type: "TV",
    },
    {
      id: 127911,
      malId: 45613,
      title: {
        romaji: "Kawaii dake ja Nai Shikimori-san",
        english: "Shikimori's Not Just a Cutie",
        native: "可愛いだけじゃない式守さん",
        userPreferred: "Kawaii dake ja Nai Shikimori-san",
      },
      status: "Completed",
      episodes: 12,
      image:
        "https://s4.anilist.co/file/anilistcdn/media/anime/cover/large/bx127911-cQVL0dhldFwn.jpg",
      cover:
        "https://s4.anilist.co/file/anilistcdn/media/anime/banner/127911-YRSP7vuUy801.jpg",
      rating: 68,
      type: "TV",
    },
    {
      id: 21804,
      malId: 33255,
      title: {
        romaji: "Saiki Kusuo no Ψ-nan",
        english: "The Disastrous Life of Saiki K.",
        native: "斉木楠雄のΨ難",
        userPreferred: "Saiki Kusuo no Ψ-nan",
      },
      status: "Completed",
      episodes: 120,
      image:
        "https://s4.anilist.co/file/anilistcdn/media/anime/cover/large/bx21804-AAjWfz9JY1EO.jpg",
      cover:
        "https://s4.anilist.co/file/anilistcdn/media/anime/banner/21804-QaKs5bDSGX6W.jpg",
      rating: 83,
      type: "TV_SHORT",
    },
    {
      id: 20574,
      malId: 21877,
      title: {
        romaji: "Hi Score Girl",
        english: "Hi Score Girl",
        native: "ハイスコアガール",
        userPreferred: "Hi Score Girl",
      },
      status: "Completed",
      episodes: 12,
      image:
        "https://s4.anilist.co/file/anilistcdn/media/anime/cover/large/bx20574-cUPxastH5vAm.jpg",
      cover:
        "https://s4.anilist.co/file/anilistcdn/media/anime/banner/20574-wSZyxGOlW4Io.jpg",
      rating: 75,
      type: "TV",
    },
    {
      id: 142984,
      malId: 50631,
      title: {
        romaji: "Komi-san wa, Komyushou desu. 2",
        english: "Komi Can't Communicate Part 2",
        native: "古見さんは、コミュ症です。2",
        userPreferred: "Komi-san wa, Komyushou desu. 2",
      },
      status: "Completed",
      episodes: 12,
      image:
        "https://s4.anilist.co/file/anilistcdn/media/anime/cover/large/bx142984-nv2MWVWZ1yYH.jpg",
      cover:
        "https://s4.anilist.co/file/anilistcdn/media/anime/cover/large/bx142984-nv2MWVWZ1yYH.jpg",
      rating: 80,
      type: "TV",
    },
    {
      id: 101291,
      malId: 37450,
      title: {
        romaji: "Seishun Buta Yarou wa Bunny Girl Senpai no Yume wo Minai",
        english: "Rascal Does Not Dream of Bunny Girl Senpai",
        native: "青春ブタ野郎はバニーガール先輩の夢を見ない",
        userPreferred:
          "Seishun Buta Yarou wa Bunny Girl Senpai no Yume wo Minai",
      },
      status: "Completed",
      episodes: 13,
      image:
        "https://s4.anilist.co/file/anilistcdn/media/anime/cover/large/bx101291-L71WpAkZPtgm.jpg",
      cover:
        "https://s4.anilist.co/file/anilistcdn/media/anime/banner/n101291-fqIUvQ6apEtD.jpg",
      rating: 81,
      type: "TV",
    },
    {
      id: 116267,
      malId: 41389,
      title: {
        romaji: "Tonikaku Kawaii",
        english: "TONIKAWA: Over The Moon For You",
        native: "トニカクカワイイ",
        userPreferred: "Tonikaku Kawaii",
      },
      status: "Completed",
      episodes: 12,
      image:
        "https://s4.anilist.co/file/anilistcdn/media/anime/cover/large/bx116267-CSAkFXN2Zsai.jpg",
      cover:
        "https://s4.anilist.co/file/anilistcdn/media/anime/banner/116267-xQRslGT0tMTS.jpg",
      rating: 77,
      type: "TV",
    },
    {
      id: 8726,
      malId: 8726,
      title: {
        romaji: "Soredemo Machi wa Mawatteiru",
        english: "And Yet The Town Moves",
        native: "それでも町は廻っている",
        userPreferred: "Soredemo Machi wa Mawatteiru",
      },
      status: "Completed",
      episodes: 12,
      image:
        "https://s4.anilist.co/file/anilistcdn/media/anime/cover/large/bx8726-PX1AiBJxOzyo.png",
      cover:
        "https://s4.anilist.co/file/anilistcdn/media/anime/banner/8726-JZ9aVlxAQERm.jpg",
      rating: 73,
      type: "TV",
    },
    {
      id: 132010,
      malId: 48643,
      title: {
        romaji: "Koi wa Sekai Seifuku no Ato de",
        english: "Love After World Domination",
        native: "恋は世界征服のあとで",
        userPreferred: "Koi wa Sekai Seifuku no Ato de",
      },
      status: "Completed",
      episodes: 12,
      image:
        "https://s4.anilist.co/file/anilistcdn/media/anime/cover/large/bx132010-s0o3Rg0XvDXl.jpg",
      cover:
        "https://s4.anilist.co/file/anilistcdn/media/anime/banner/132010-6KV20Q2umOrA.jpg",
      rating: 74,
      type: "TV",
    },
    {
      id: 6045,
      malId: 6045,
      title: {
        romaji: "Kimi ni Todoke",
        english: "Kimi ni Todoke: From Me to You",
        native: "君に届け",
        userPreferred: "Kimi ni Todoke",
      },
      status: "Completed",
      episodes: 25,
      image:
        "https://s4.anilist.co/file/anilistcdn/media/anime/cover/large/bx6045-txJOukR5Qve4.jpg",
      cover:
        "https://s4.anilist.co/file/anilistcdn/media/anime/banner/n6045-HmG3MtJalXIH.jpg",
      rating: 78,
      type: "TV",
    },
    {
      id: 138424,
      malId: 49721,
      title: {
        romaji: "Karakai Jouzu no Takagi-san 3",
        english: "Teasing Master Takagi-san Season 3",
        native: "からかい上手の高木さん3",
        userPreferred: "Karakai Jouzu no Takagi-san 3",
      },
      status: "Completed",
      episodes: 12,
      image:
        "https://s4.anilist.co/file/anilistcdn/media/anime/cover/large/bx138424-97Nz1P7M3O2d.png",
      cover:
        "https://s4.anilist.co/file/anilistcdn/media/anime/banner/138424-DGPPFxUinNmt.jpg",
      rating: 83,
      type: "TV",
    },
    {
      id: 24,
      malId: 24,
      title: {
        romaji: "School Rumble",
        english: "School Rumble",
        native: "スクールランブル",
        userPreferred: "School Rumble",
      },
      status: "Completed",
      episodes: 26,
      image:
        "https://s4.anilist.co/file/anilistcdn/media/anime/cover/large/bx24-InbFkgWGvqIK.png",
      cover:
        "https://s4.anilist.co/file/anilistcdn/media/anime/banner/24-THD6AYmlVPIb.jpg",
      rating: 76,
      type: "TV",
    },
    {
      id: 20755,
      malId: 24833,
      title: {
        romaji: "Ansatsu Kyoushitsu",
        english: "Assassination Classroom",
        native: "暗殺教室",
        userPreferred: "Ansatsu Kyoushitsu",
      },
      status: "Completed",
      episodes: 22,
      image:
        "https://s4.anilist.co/file/anilistcdn/media/anime/cover/large/bx20755-q0b3Ok1cAbPd.jpg",
      cover:
        "https://s4.anilist.co/file/anilistcdn/media/anime/banner/20755-D4ipww9U8YkC.jpg",
      rating: 79,
      type: "TV",
    },
  ],
  characters: [
    {
      id: 121101,
      role: "MAIN",
      name: {
        first: "Miyuki",
        last: "Shirogane",
        full: "Miyuki Shirogane",
        native: "白銀御行",
        userPreferred: "Miyuki Shirogane",
      },
      image:
        "https://s4.anilist.co/file/anilistcdn/character/large/b121101-Q8HzKP15At2d.png",
      voiceActors: [
        {
          id: 112635,
          language: "Japanese",
          name: {
            first: "Makoto",
            last: "Furukawa",
            full: "Makoto Furukawa",
            native: "古川慎",
            userPreferred: "Makoto Furukawa",
          },
          image:
            "https://s4.anilist.co/file/anilistcdn/staff/large/n112635-ORlGvRvgf5Nq.png",
        },
        {
          id: 119609,
          language: "English",
          name: {
            first: "Clifford",
            last: "Chapin",
            full: "Clifford Chapin",
            native: null,
            userPreferred: "Clifford Chapin",
          },
          image:
            "https://s4.anilist.co/file/anilistcdn/staff/large/n119609-0LGmxEBb7PS9.jpg",
        },
        {
          id: 100486,
          language: "Spanish",
          name: {
            first: "Enzo",
            last: "Fortuny",
            full: "Enzo Fortuny",
            native: "Enzo Favio Fortuny Romero",
            userPreferred: "Enzo Fortuny",
          },
          image:
            "https://s4.anilist.co/file/anilistcdn/staff/large/n100486-0Sv0euaLpbyh.jpg",
        },
        {
          id: 179920,
          language: "Portuguese",
          name: {
            first: "Rodolfo",
            last: "Novaes",
            full: "Rodolfo Novaes",
            native: "Rodolfo Novaes da Silva",
            userPreferred: "Rodolfo Novaes",
          },
          image:
            "https://s4.anilist.co/file/anilistcdn/staff/large/n179920-jyB8tIATM41H.jpg",
        },
        {
          id: 275100,
          language: "French",
          name: {
            first: "Martin",
            last: "Faliu",
            full: "Martin Faliu",
            native: null,
            userPreferred: "Martin Faliu",
          },
          image:
            "https://s4.anilist.co/file/anilistcdn/staff/large/n275100-1MsTZ135RcJG.jpg",
        },
        {
          id: 105706,
          language: "German",
          name: {
            first: "Dirk",
            last: "Petrick",
            full: "Dirk Petrick",
            native: null,
            userPreferred: "Dirk Petrick",
          },
          image: "https://s4.anilist.co/file/anilistcdn/staff/large/10706.jpg",
        },
      ],
    },
    {
      id: 120649,
      role: "MAIN",
      name: {
        first: "Kaguya",
        last: "Shinomiya",
        full: "Kaguya Shinomiya",
        native: "四宮かぐや",
        userPreferred: "Kaguya Shinomiya",
      },
      image:
        "https://s4.anilist.co/file/anilistcdn/character/large/b120649-JMKQgPmVq6d3.png",
      voiceActors: [
        {
          id: 123268,
          language: "Japanese",
          name: {
            first: "Aoi",
            last: "Koga",
            full: "Aoi Koga",
            native: "古賀葵",
            userPreferred: "Aoi Koga",
          },
          image:
            "https://s4.anilist.co/file/anilistcdn/staff/large/n123268-zIZLjZ5Xfbk4.png",
        },
        {
          id: 104091,
          language: "English",
          name: {
            first: "Alexis",
            last: "Tipton",
            full: "Alexis Tipton",
            native: null,
            userPreferred: "Alexis Tipton",
          },
          image:
            "https://s4.anilist.co/file/anilistcdn/staff/large/n104091-OZpJbFWFwnvV.jpg",
        },
        {
          id: 181976,
          language: "Spanish",
          name: {
            first: "Jessica",
            last: "Ángeles",
            full: "Jessica Ángeles",
            native: "Jessica Iveth Ángeles Ramírez",
            userPreferred: "Jessica Ángeles",
          },
          image:
            "https://s4.anilist.co/file/anilistcdn/staff/large/n181976-1USsTdPqcj9G.png",
        },
        {
          id: 213538,
          language: "Portuguese",
          name: {
            first: "Marcella",
            last: "Almeida",
            full: "Marcella Almeida",
            native: null,
            userPreferred: "Marcella Almeida",
          },
          image:
            "https://s4.anilist.co/file/anilistcdn/staff/large/n213538-ywfbYAlZ12o4.png",
        },
        {
          id: 216176,
          language: "French",
          name: {
            first: "Emmylou",
            last: "Homs",
            full: "Emmylou Homs",
            native: null,
            userPreferred: "Emmylou Homs",
          },
          image:
            "https://s4.anilist.co/file/anilistcdn/staff/large/n216176-wk4Ts4Kv2fY5.jpg",
        },
        {
          id: 140948,
          language: "German",
          name: {
            first: "Amelie",
            last: "Plaas-Link",
            full: "Amelie Plaas-Link",
            native: null,
            userPreferred: "Amelie Plaas-Link",
          },
          image:
            "https://s4.anilist.co/file/anilistcdn/staff/large/n140948-GiZ70lD0b6hY.png",
        },
      ],
    },
    {
      id: 121103,
      role: "MAIN",
      name: {
        first: "Chika",
        last: "Fujiwara",
        full: "Chika Fujiwara",
        native: "藤原千花",
        userPreferred: "Chika Fujiwara",
      },
      image:
        "https://s4.anilist.co/file/anilistcdn/character/large/b121103-UGLxT8utLPnq.png",
      voiceActors: [
        {
          id: 121961,
          language: "Japanese",
          name: {
            first: "Konomi",
            last: "Kohara",
            full: "Konomi Kohara",
            native: "小原好美",
            userPreferred: "Konomi Kohara",
          },
          image:
            "https://s4.anilist.co/file/anilistcdn/staff/large/n121961-TaMewK1taQm6.png",
        },
        {
          id: 101729,
          language: "English",
          name: {
            first: "Jad",
            last: "Saxton",
            full: "Jad Saxton",
            native: null,
            userPreferred: "Jad Saxton",
          },
          image:
            "https://s4.anilist.co/file/anilistcdn/staff/large/n101729-tga5Umgm17Mj.jpg",
        },
        {
          id: 189432,
          language: "Spanish",
          name: {
            first: "Elizabeth",
            last: "Infante",
            full: "Elizabeth Infante",
            native: "Elizabeth Paola Infante",
            userPreferred: "Elizabeth Infante",
          },
          image:
            "https://s4.anilist.co/file/anilistcdn/staff/large/n189432-Ll0v4D0jfSFA.png",
        },
        {
          id: 176945,
          language: "Portuguese",
          name: {
            first: "Amanda",
            last: "Tavares",
            full: "Amanda Tavares",
            native: null,
            userPreferred: "Amanda Tavares",
          },
          image:
            "https://s4.anilist.co/file/anilistcdn/staff/large/n176945-j0SIOVCvG28s.jpg",
        },
        {
          id: 165978,
          language: "French",
          name: {
            first: "Clara",
            last: "Soares",
            full: "Clara Soares",
            native: null,
            userPreferred: "Clara Soares",
          },
          image:
            "https://s4.anilist.co/file/anilistcdn/staff/large/n165978-BhMLANgEZpeB.jpg",
        },
        {
          id: 101117,
          language: "German",
          name: {
            first: "Rieke",
            last: "Werner",
            full: "Rieke Werner",
            native: null,
            userPreferred: "Rieke Werner",
          },
          image:
            "https://s4.anilist.co/file/anilistcdn/staff/large/n101117-Owts3TGv6QZn.png",
        },
      ],
    },
    {
      id: 121102,
      role: "MAIN",
      name: {
        first: "Yuu",
        last: "Ishigami",
        full: "Yuu Ishigami",
        native: "石上優",
        userPreferred: "Yuu Ishigami",
      },
      image:
        "https://s4.anilist.co/file/anilistcdn/character/large/b121102-tiQFxnSEIAwm.png",
      voiceActors: [
        {
          id: 123450,
          language: "Japanese",
          name: {
            first: "Ryouta",
            last: "Suzuki",
            full: "Ryouta Suzuki",
            native: "鈴木崚汰",
            userPreferred: "Ryouta Suzuki",
          },
          image:
            "https://s4.anilist.co/file/anilistcdn/staff/large/n123450-Hmi5iu3KDHwc.png",
        },
        {
          id: 111641,
          language: "English",
          name: {
            first: "Austin",
            last: "Tindle",
            full: "Austin Tindle",
            native: null,
            userPreferred: "Austin Tindle",
          },
          image:
            "https://s4.anilist.co/file/anilistcdn/staff/large/n111641-DbiOaZhYsNsi.jpg",
        },
        {
          id: 182229,
          language: "Spanish",
          name: {
            first: "Alejandro",
            last: "Orozco",
            full: "Alejandro Orozco",
            native: "Alejandro Orozco Antúnez",
            userPreferred: "Alejandro Orozco",
          },
          image:
            "https://s4.anilist.co/file/anilistcdn/staff/large/n182229-45duKmz9Eupa.png",
        },
        {
          id: 240596,
          language: "Portuguese",
          name: {
            first: "Fernando",
            last: "Peiter",
            full: "Fernando Peiter",
            native: null,
            userPreferred: "Fernando Peiter",
          },
          image:
            "https://s4.anilist.co/file/anilistcdn/staff/large/n240596-CNEuKRCS5pa2.png",
        },
        {
          id: 163980,
          language: "French",
          name: {
            first: "Hervé",
            last: "Grull",
            full: "Hervé Grull",
            native: null,
            userPreferred: "Hervé Grull",
          },
          image:
            "https://s4.anilist.co/file/anilistcdn/staff/large/n163980-ekmHy5Zxtjhu.jpg",
        },
        {
          id: 140228,
          language: "German",
          name: {
            first: "Amadeus",
            last: "Strobl",
            full: "Amadeus Strobl",
            native: null,
            userPreferred: "Amadeus Strobl",
          },
          image:
            "https://s4.anilist.co/file/anilistcdn/staff/large/n140228-QkcDFuPKFd9t.jpg",
        },
      ],
    },
    {
      id: 125886,
      role: "MAIN",
      name: {
        first: "Miko",
        last: "Iino",
        full: "Miko Iino",
        native: "伊井野ミコ",
        userPreferred: "Miko Iino",
      },
      image:
        "https://s4.anilist.co/file/anilistcdn/character/large/b125886-TQbmqAaSgBLS.png",
      voiceActors: [
        {
          id: 119518,
          language: "Japanese",
          name: {
            first: "Miyu",
            last: "Tomita",
            full: "Miyu Tomita",
            native: "富田美憂",
            userPreferred: "Miyu Tomita",
          },
          image:
            "https://s4.anilist.co/file/anilistcdn/staff/large/n119518-vZN7TPy12iuu.png",
        },
        {
          id: 127741,
          language: "English",
          name: {
            first: "Madeleine",
            last: "Morris",
            full: "Madeleine Morris",
            native: null,
            userPreferred: "Madeleine Morris",
          },
          image:
            "https://s4.anilist.co/file/anilistcdn/staff/large/n127741-YLXfUKNBsclt.jpg",
        },
        {
          id: 202438,
          language: "Spanish",
          name: {
            first: "Desireé",
            last: "González",
            full: "Desireé González",
            native: null,
            userPreferred: "Desireé González",
          },
          image:
            "https://s4.anilist.co/file/anilistcdn/staff/large/n202438-Ov4z4EIy8W0T.png",
        },
        {
          id: 198676,
          language: "Portuguese",
          name: {
            first: "Letícia",
            last: "Ida",
            full: "Letícia Ida",
            native: null,
            userPreferred: "Letícia Ida",
          },
          image:
            "https://s4.anilist.co/file/anilistcdn/staff/large/n198676-lKn9p7esuO0e.png",
        },
        {
          id: 100681,
          language: "French",
          name: {
            first: "Isabelle",
            last: "Volpe",
            full: "Isabelle Volpe",
            native: null,
            userPreferred: "Isabelle Volpe",
          },
          image: "https://s4.anilist.co/file/anilistcdn/staff/large/5681.jpg",
        },
        {
          id: 263264,
          language: "German",
          name: {
            first: "Paulina",
            last: "Bachmann",
            full: "Paulina Bachmann",
            native: null,
            userPreferred: "Paulina Bachmann",
          },
          image:
            "https://s4.anilist.co/file/anilistcdn/staff/large/n263264-8ulFSH0bZ1zE.jpg",
        },
      ],
    },
    {
      id: 121104,
      role: "SUPPORTING",
      name: {
        first: "Ai",
        last: "Hayasaka",
        full: "Ai Hayasaka",
        native: "早坂愛",
        userPreferred: "Ai Hayasaka",
      },
      image:
        "https://s4.anilist.co/file/anilistcdn/character/large/b121104-7TYRl3EEsDYU.png",
      voiceActors: [
        {
          id: 116543,
          language: "Japanese",
          name: {
            first: "Yumiri",
            last: "Hanamori",
            full: "Yumiri Hanamori",
            native: "花守ゆみり",
            userPreferred: "Yumiri Hanamori",
          },
          image:
            "https://s4.anilist.co/file/anilistcdn/staff/large/n116543-nDWFpolRN9dM.png",
        },
        {
          id: 112793,
          language: "English",
          name: {
            first: "Amanda",
            last: "Lee",
            full: "Amanda Lee",
            native: null,
            userPreferred: "Amanda Lee",
          },
          image:
            "https://s4.anilist.co/file/anilistcdn/staff/large/n112793-WnHttTnbLSed.png",
        },
        {
          id: 182192,
          language: "Spanish",
          name: {
            first: "Leyla",
            last: "Rangel",
            full: "Leyla Rangel",
            native: "Leyla Sofía Rangel García",
            userPreferred: "Leyla Rangel",
          },
          image:
            "https://s4.anilist.co/file/anilistcdn/staff/large/n182192-JCVBbGHC63TL.png",
        },
        {
          id: 141355,
          language: "Portuguese",
          name: {
            first: "Jéssica",
            last: "Cardia",
            full: "Jéssica Cardia",
            native: null,
            userPreferred: "Jéssica Cardia",
          },
          image:
            "https://s4.anilist.co/file/anilistcdn/staff/large/n141355-hPmrP1OIf3yq.png",
        },
        {
          id: 275102,
          language: "French",
          name: {
            first: "Lilly",
            last: "Caruso",
            full: "Lilly Caruso",
            native: null,
            userPreferred: "Lilly Caruso",
          },
          image:
            "https://s4.anilist.co/file/anilistcdn/staff/large/n275102-qnlETNPatNb6.jpg",
        },
        {
          id: 140015,
          language: "German",
          name: {
            first: "Magdalena",
            last: "Höfner",
            full: "Magdalena Höfner",
            native: null,
            userPreferred: "Magdalena Höfner",
          },
          image:
            "https://s4.anilist.co/file/anilistcdn/staff/large/n140015-1f0nUXbpUdyl.png",
        },
      ],
    },
    {
      id: 134329,
      role: "SUPPORTING",
      name: {
        first: "Moeha",
        last: "Fujiwara",
        full: "Moeha Fujiwara",
        native: "藤原萌葉",
        userPreferred: "Moeha Fujiwara",
      },
      image:
        "https://s4.anilist.co/file/anilistcdn/character/large/b134329-cRdrf5BqmIVk.png",
      voiceActors: [
        {
          id: 118663,
          language: "Japanese",
          name: {
            first: "Ari",
            last: "Ozawa",
            full: "Ari Ozawa",
            native: "小澤亜李",
            userPreferred: "Ari Ozawa",
          },
          image:
            "https://s4.anilist.co/file/anilistcdn/staff/large/n118663-fFzQqJDtYNdA.png",
        },
        {
          id: 253702,
          language: "Spanish",
          name: {
            first: "Marisol",
            last: "Hamed",
            full: "Marisol Hamed",
            native: "Marisol Valdez Hamed",
            userPreferred: "Marisol Hamed",
          },
          image:
            "https://s4.anilist.co/file/anilistcdn/staff/large/n253702-Imyptqbsby2h.png",
        },
        {
          id: 175610,
          language: "Portuguese",
          name: {
            first: "Nica",
            last: "Nogueira",
            full: "Nica Nogueira",
            native: null,
            userPreferred: "Nica Nogueira",
          },
          image:
            "https://s4.anilist.co/file/anilistcdn/staff/large/default.jpg",
        },
        {
          id: 273360,
          language: "French",
          name: {
            first: "Anna",
            last: "Lauzeray-Gishi",
            full: "Anna Lauzeray-Gishi",
            native: null,
            userPreferred: "Anna Lauzeray-Gishi",
          },
          image:
            "https://s4.anilist.co/file/anilistcdn/staff/large/n273360-hD3tunfOx1Yc.jpg",
        },
        {
          id: 140013,
          language: "German",
          name: {
            first: "Betty",
            last: "Förster",
            full: "Betty Förster",
            native: null,
            userPreferred: "Betty Förster",
          },
          image:
            "https://s4.anilist.co/file/anilistcdn/staff/large/n140013-tNbAHQyEVeWr.png",
        },
      ],
    },
    {
      id: 126986,
      role: "SUPPORTING",
      name: {
        first: "Erika",
        last: "Kose",
        full: "Erika Kose",
        native: "巨瀬工リカ",
        userPreferred: "Erika Kose",
      },
      image:
        "https://s4.anilist.co/file/anilistcdn/character/large/b126986-Pcspig2orfPq.png",
      voiceActors: [
        {
          id: 118939,
          language: "Japanese",
          name: {
            first: "Ayaka",
            last: "Asai",
            full: "Ayaka Asai",
            native: "朝井彩加",
            userPreferred: "Ayaka Asai",
          },
          image:
            "https://s4.anilist.co/file/anilistcdn/staff/large/n118939-6W4V2P4JL6QH.png",
        },
        {
          id: 285541,
          language: "Spanish",
          name: {
            first: "Stephanie",
            last: "Filigrana",
            full: "Stephanie Filigrana",
            native: null,
            userPreferred: "Stephanie Filigrana",
          },
          image:
            "https://s4.anilist.co/file/anilistcdn/staff/large/n285541-4reGe3QxUidB.png",
        },
        {
          id: 248720,
          language: "Portuguese",
          name: {
            first: "Mariana",
            last: "Neves",
            full: "Mariana Neves",
            native: null,
            userPreferred: "Mariana Neves",
          },
          image:
            "https://s4.anilist.co/file/anilistcdn/staff/large/n248720-BIspGY5vppaP.png",
        },
        {
          id: 143592,
          language: "German",
          name: {
            first: "Lana Finn",
            last: "Marti",
            full: "Lana Finn Marti",
            native: null,
            userPreferred: "Lana Finn Marti",
          },
          image:
            "https://s4.anilist.co/file/anilistcdn/staff/large/default.jpg",
        },
      ],
    },
    {
      id: 212389,
      role: "SUPPORTING",
      name: {
        first: "Zen Seito Kaichou",
        last: null,
        full: "Zen Seito Kaichou",
        native: "生前徒会長",
        userPreferred: "Zen Seito Kaichou",
      },
      image:
        "https://s4.anilist.co/file/anilistcdn/character/large/b212389-M0QAzDPJvn7Z.jpg",
      voiceActors: [
        {
          id: 105989,
          language: "Japanese",
          name: {
            first: "Nobunaga",
            last: "Shimazaki",
            full: "Nobunaga Shimazaki",
            native: "島崎信長",
            userPreferred: "Nobunaga Shimazaki",
          },
          image:
            "https://s4.anilist.co/file/anilistcdn/staff/large/n105989-96etzH1dLNug.jpg",
        },
        {
          id: 182219,
          language: "Spanish",
          name: {
            first: "Alan",
            last: "Bravo",
            full: "Alan Bravo",
            native: null,
            userPreferred: "Alan Bravo",
          },
          image:
            "https://s4.anilist.co/file/anilistcdn/staff/large/n182219-dgUxanIweWBY.png",
        },
        {
          id: 198591,
          language: "Portuguese",
          name: {
            first: "Guilherme",
            last: "de Barros",
            full: "Guilherme de Barros",
            native: null,
            userPreferred: "Guilherme de Barros",
          },
          image:
            "https://s4.anilist.co/file/anilistcdn/staff/large/n198591-SUn0HtX1Nxoa.jpg",
        },
      ],
    },
    {
      id: 134326,
      role: "SUPPORTING",
      name: {
        first: "Tsubame",
        last: "Koyasu",
        full: "Tsubame Koyasu",
        native: "子安つばめ",
        userPreferred: "Tsubame Koyasu",
      },
      image:
        "https://s4.anilist.co/file/anilistcdn/character/large/b134326-GOZE06QSlJSb.png",
      voiceActors: [
        {
          id: 102322,
          language: "Japanese",
          name: {
            first: "Haruka",
            last: "Fukuhara",
            full: "Haruka Fukuhara",
            native: "福原遥",
            userPreferred: "Haruka Fukuhara",
          },
          image:
            "https://s4.anilist.co/file/anilistcdn/staff/large/n102322-GkjxD99Pt3rT.png",
        },
        {
          id: 182631,
          language: "Spanish",
          name: {
            first: "Erika",
            last: "Langarica",
            full: "Erika Langarica",
            native: null,
            userPreferred: "Erika Langarica",
          },
          image:
            "https://s4.anilist.co/file/anilistcdn/staff/large/n182631-ybXCM5pXa7Mu.png",
        },
        {
          id: 197182,
          language: "Portuguese",
          name: {
            first: "Mari",
            last: "Haruno",
            full: "Mari Haruno",
            native: null,
            userPreferred: "Mari Haruno",
          },
          image:
            "https://s4.anilist.co/file/anilistcdn/staff/large/n197182-mDKkEWvcDi9j.jpg",
        },
        {
          id: 140888,
          language: "German",
          name: {
            first: "Jamie Lee",
            last: "Blank",
            full: "Jamie Lee Blank",
            native: null,
            userPreferred: "Jamie Lee Blank",
          },
          image:
            "https://s4.anilist.co/file/anilistcdn/staff/large/n140888-wXPdKjB8tGV4.png",
        },
      ],
    },
    {
      id: 134892,
      role: "SUPPORTING",
      name: {
        first: "Adolphe",
        last: "Pescarolo",
        full: "Adolphe Pescarolo",
        native: "アドルフ・ペスカローロ",
        userPreferred: "Adolphe Pescarolo",
      },
      image:
        "https://s4.anilist.co/file/anilistcdn/character/large/b134892-HSzCDOQagDJv.jpg",
      voiceActors: [
        {
          id: 111959,
          language: "Japanese",
          name: {
            first: "Itaru",
            last: "Yamamoto",
            full: "Itaru Yamamoto",
            native: "山本格",
            userPreferred: "Itaru Yamamoto",
          },
          image: "https://s4.anilist.co/file/anilistcdn/staff/large/16959.jpg",
        },
        {
          id: 96339,
          language: "English",
          name: {
            first: "Jeremy",
            last: "Inman",
            full: "Jeremy Inman",
            native: null,
            userPreferred: "Jeremy Inman",
          },
          image: "https://s4.anilist.co/file/anilistcdn/staff/large/1339.jpg",
        },
        {
          id: 189453,
          language: "Spanish",
          name: {
            first: "Raúl",
            last: "Anaya",
            full: "Raúl Anaya",
            native: "Raúl Alberto Anaya Lunas",
            userPreferred: "Raúl Anaya",
          },
          image:
            "https://s4.anilist.co/file/anilistcdn/staff/large/n189453-frceR3XuFqLw.png",
        },
        {
          id: 182488,
          language: "Portuguese",
          name: {
            first: "Hélio",
            last: "Ribeiro",
            full: "Hélio Ribeiro",
            native: null,
            userPreferred: "Hélio Ribeiro",
          },
          image:
            "https://s4.anilist.co/file/anilistcdn/staff/large/n182488-iJuYz3JIxLQZ.jpg",
        },
        {
          id: 152984,
          language: "French",
          name: {
            first: "Stéphane",
            last: "Marais",
            full: "Stéphane Marais",
            native: null,
            userPreferred: "Stéphane Marais",
          },
          image:
            "https://s4.anilist.co/file/anilistcdn/staff/large/n152984-kHa9e7APEpMC.jpg",
        },
        {
          id: 265392,
          language: "German",
          name: {
            first: "Harald",
            last: "Effenberg",
            full: "Harald Effenberg",
            native: null,
            userPreferred: "Harald Effenberg",
          },
          image:
            "https://s4.anilist.co/file/anilistcdn/staff/large/n265392-UnHzM3HLl5nE.jpg",
        },
      ],
    },
    {
      id: 212390,
      role: "SUPPORTING",
      name: {
        first: "Momo",
        last: "Ryuuju",
        full: "Momo Ryuuju",
        native: "龍珠桃",
        userPreferred: "Momo Ryuuju",
      },
      image:
        "https://s4.anilist.co/file/anilistcdn/character/large/b212390-cCppoJIBYxyA.jpg",
      voiceActors: [
        {
          id: 95869,
          language: "Japanese",
          name: {
            first: "Saori",
            last: "Hayami",
            full: "Saori Hayami",
            native: "早見沙織",
            userPreferred: "Saori Hayami",
          },
          image:
            "https://s4.anilist.co/file/anilistcdn/staff/large/n95869-qCQ0EaWpq1QT.png",
        },
        {
          id: 297131,
          language: "Japanese",
          name: {
            first: "Sisi",
            last: "Forster",
            full: "Sisi Forster",
            native: null,
            userPreferred: "Sisi Forster",
          },
          image:
            "https://s4.anilist.co/file/anilistcdn/staff/large/default.jpg",
        },
        {
          id: 182233,
          language: "Spanish",
          name: {
            first: "Carla",
            last: "Castañeda",
            full: "Carla Castañeda",
            native: "Carla Castañeda Mendoza",
            userPreferred: "Carla Castañeda",
          },
          image:
            "https://s4.anilist.co/file/anilistcdn/staff/large/n182233-mB72AFLGmKTK.jpg",
        },
        {
          id: 301905,
          language: "Portuguese",
          name: {
            first: "Flávia",
            last: "Damiani",
            full: "Flávia Damiani",
            native: null,
            userPreferred: "Flávia Damiani",
          },
          image:
            "https://s4.anilist.co/file/anilistcdn/staff/large/n301905-1hedyhqBrEso.jpg",
        },
      ],
    },
    {
      id: 275597,
      role: "SUPPORTING",
      name: {
        first: "J",
        last: "Suzuki",
        full: "J Suzuki",
        native: "鈴木J",
        userPreferred: "J Suzuki",
      },
      image:
        "https://s4.anilist.co/file/anilistcdn/character/large/b275597-64W2GeSpgN5P.jpg",
      voiceActors: [
        {
          id: 101623,
          language: "Japanese",
          name: {
            first: "Takeshi",
            last: "Maruyama",
            full: "Takeshi Maruyama",
            native: "丸山壮史",
            userPreferred: "Takeshi Maruyama",
          },
          image: "https://s4.anilist.co/file/anilistcdn/staff/large/6623.jpg",
        },
        {
          id: 199860,
          language: "Portuguese",
          name: {
            first: "Alex",
            last: "Morales",
            full: "Alex Morales",
            native: null,
            userPreferred: "Alex Morales",
          },
          image:
            "https://s4.anilist.co/file/anilistcdn/staff/large/n199860-TLVz6bpXfnVF.jpg",
        },
        {
          id: 218042,
          language: "German",
          name: {
            first: "Axel",
            last: "Strothmann",
            full: "Axel Strothmann",
            native: null,
            userPreferred: "Axel Strothmann",
          },
          image:
            "https://s4.anilist.co/file/anilistcdn/staff/large/default.jpg",
        },
      ],
    },
    {
      id: 134327,
      role: "SUPPORTING",
      name: {
        first: "Tsubasa",
        last: "Tanuma ",
        full: "Tsubasa Tanuma ",
        native: "田沼翼",
        userPreferred: "Tsubasa Tanuma ",
      },
      image:
        "https://s4.anilist.co/file/anilistcdn/character/large/b134327-5tqYKvBaqRe2.png",
      voiceActors: [
        {
          id: 119833,
          language: "Japanese",
          name: {
            first: "Taku",
            last: "Yashiro",
            full: "Taku Yashiro",
            native: "八代拓",
            userPreferred: "Taku Yashiro",
          },
          image:
            "https://s4.anilist.co/file/anilistcdn/staff/large/n119833-0SP13A92YLm4.jpg",
        },
        {
          id: 127809,
          language: "English",
          name: {
            first: "Brandon",
            last: "McInnis",
            full: "Brandon McInnis",
            native: "Brandon McInnis",
            userPreferred: "Brandon McInnis",
          },
          image:
            "https://s4.anilist.co/file/anilistcdn/staff/large/n127809-uLM2ITKWUSCl.png",
        },
        {
          id: 184120,
          language: "Spanish",
          name: {
            first: "Diego",
            last: "Becerril",
            full: "Diego Becerril",
            native: null,
            userPreferred: "Diego Becerril",
          },
          image:
            "https://s4.anilist.co/file/anilistcdn/staff/large/n184120-eNsy8lrRiqge.png",
        },
        {
          id: 254219,
          language: "Portuguese",
          name: {
            first: "Rafael",
            last: "Rheda",
            full: "Rafael Rheda",
            native: null,
            userPreferred: "Rafael Rheda",
          },
          image:
            "https://s4.anilist.co/file/anilistcdn/staff/large/default.jpg",
        },
        {
          id: 187297,
          language: "German",
          name: {
            first: "Ben",
            last: "Hadad",
            full: "Ben Hadad",
            native: null,
            userPreferred: "Ben Hadad",
          },
          image:
            "https://s4.anilist.co/file/anilistcdn/staff/large/default.jpg",
        },
      ],
    },
    {
      id: 275116,
      role: "SUPPORTING",
      name: {
        first: "Nao",
        last: "Hayasaka",
        full: "Nao Hayasaka",
        native: "早坂奈央",
        userPreferred: "Nao Hayasaka",
      },
      image:
        "https://s4.anilist.co/file/anilistcdn/character/large/b275116-SOfw5qLMI0FM.png",
      voiceActors: [
        {
          id: 108551,
          language: "Japanese",
          name: {
            first: "Toa",
            last: "Yukinari",
            full: "Toa Yukinari",
            native: "行成とあ",
            userPreferred: "Toa Yukinari",
          },
          image:
            "https://s4.anilist.co/file/anilistcdn/staff/large/n108551-R4Ro9eFab55G.png",
        },
        {
          id: 207635,
          language: "Spanish",
          name: {
            first: "América",
            last: "Torres",
            full: "América Torres",
            native: null,
            userPreferred: "América Torres",
          },
          image:
            "https://s4.anilist.co/file/anilistcdn/staff/large/n207635-YSaMMoab1MGq.png",
        },
        {
          id: 250114,
          language: "Portuguese",
          name: {
            first: "Lia",
            last: "Antunes",
            full: "Lia Antunes",
            native: null,
            userPreferred: "Lia Antunes",
          },
          image:
            "https://s4.anilist.co/file/anilistcdn/staff/large/default.jpg",
        },
        {
          id: 195911,
          language: "German",
          name: {
            first: "Franziska",
            last: "Endres",
            full: "Franziska Endres",
            native: null,
            userPreferred: "Franziska Endres",
          },
          image:
            "https://s4.anilist.co/file/anilistcdn/staff/large/default.jpg",
        },
      ],
    },
    {
      id: 176219,
      role: "SUPPORTING",
      name: {
        first: "Kozue",
        last: "Makihara ",
        full: "Kozue Makihara ",
        native: "槇原こずえ",
        userPreferred: "Kozue Makihara ",
      },
      image:
        "https://s4.anilist.co/file/anilistcdn/character/large/b176219-5XhyzA12lms2.jpg",
      voiceActors: [
        {
          id: 119383,
          language: "Japanese",
          name: {
            first: "Marika",
            last: "Kouno",
            full: "Marika Kouno",
            native: "高野麻里佳",
            userPreferred: "Marika Kouno",
          },
          image:
            "https://s4.anilist.co/file/anilistcdn/staff/large/n119383-En92dXrTlJTY.png",
        },
        {
          id: 189430,
          language: "Spanish",
          name: {
            first: "Azul",
            last: "Valadez",
            full: "Azul Valadez",
            native: "Azucena Valadez Romero",
            userPreferred: "Azul Valadez",
          },
          image:
            "https://s4.anilist.co/file/anilistcdn/staff/large/n189430-Mkuq464GJSnL.jpg",
        },
        {
          id: 285678,
          language: "Portuguese",
          name: {
            first: "Juju",
            last: "Bac",
            full: "Juju Bac",
            native: null,
            userPreferred: "Juju Bac",
          },
          image:
            "https://s4.anilist.co/file/anilistcdn/staff/large/default.jpg",
        },
        {
          id: 261231,
          language: "German",
          name: {
            first: "Liza",
            last: "Simmerlein",
            full: "Liza Simmerlein",
            native: null,
            userPreferred: "Liza Simmerlein",
          },
          image:
            "https://s4.anilist.co/file/anilistcdn/staff/large/default.jpg",
        },
      ],
    },
    {
      id: 176218,
      role: "SUPPORTING",
      name: {
        first: "Kazeno",
        last: null,
        full: "Kazeno",
        native: "風野",
        userPreferred: "Kazeno",
      },
      image:
        "https://s4.anilist.co/file/anilistcdn/character/large/b176218-x0TQnRrxS2Zs.jpg",
      voiceActors: [
        {
          id: 107705,
          language: "Japanese",
          name: {
            first: "Taishi",
            last: "Murata",
            full: "Taishi Murata",
            native: "村田太志",
            userPreferred: "Taishi Murata",
          },
          image:
            "https://s4.anilist.co/file/anilistcdn/staff/large/n107705-lVfYRzWY5AFW.jpg",
        },
        {
          id: 184139,
          language: "Spanish",
          name: {
            first: "Roberto",
            last: "Salguero",
            full: "Roberto Salguero",
            native: null,
            userPreferred: "Roberto Salguero",
          },
          image:
            "https://s4.anilist.co/file/anilistcdn/staff/large/n184139-i79eTGoEkKqd.jpg",
        },
        {
          id: 210886,
          language: "Portuguese",
          name: {
            first: "Rex",
            last: "Nunes",
            full: "Rex Nunes",
            native: "Reginaldo Nunes da Silva",
            userPreferred: "Rex Nunes",
          },
          image:
            "https://s4.anilist.co/file/anilistcdn/staff/large/n210886-jUX57eQqlZpx.jpg",
        },
        {
          id: 142856,
          language: "German",
          name: {
            first: "Daniel",
            last: "Gärtner",
            full: "Daniel Gärtner",
            native: null,
            userPreferred: "Daniel Gärtner",
          },
          image:
            "https://s4.anilist.co/file/anilistcdn/staff/large/default.jpg",
        },
      ],
    },
    {
      id: 157369,
      role: "SUPPORTING",
      name: {
        first: "Rei",
        last: "Onodera",
        full: "Rei Onodera",
        native: "小野寺麗",
        userPreferred: "Rei Onodera",
      },
      image:
        "https://s4.anilist.co/file/anilistcdn/character/large/b157369-9o1jZCEZMyYb.png",
      voiceActors: [
        {
          id: 119154,
          language: "Japanese",
          name: {
            first: "Yuuki",
            last: "Takada",
            full: "Yuuki Takada",
            native: "高田憂希",
            userPreferred: "Yuuki Takada",
          },
          image:
            "https://s4.anilist.co/file/anilistcdn/staff/large/n119154-x2un4m4ECxn4.png",
        },
        {
          id: 254396,
          language: "Portuguese",
          name: {
            first: "Melina",
            last: "Valente",
            full: "Melina Valente",
            native: null,
            userPreferred: "Melina Valente",
          },
          image:
            "https://s4.anilist.co/file/anilistcdn/staff/large/default.jpg",
        },
        {
          id: 275099,
          language: "French",
          name: {
            first: "Kahina",
            last: "Tagherset",
            full: "Kahina Tagherset",
            native: null,
            userPreferred: "Kahina Tagherset",
          },
          image:
            "https://s4.anilist.co/file/anilistcdn/staff/large/n275099-CV0vPZH23Law.jpg",
        },
      ],
    },
    {
      id: 134893,
      role: "SUPPORTING",
      name: {
        first: "Shirogane no Chichi",
        last: null,
        full: "Shirogane no Chichi",
        native: "白銀の父",
        userPreferred: "Shirogane no Chichi",
      },
      image:
        "https://s4.anilist.co/file/anilistcdn/character/large/b134893-1dpk1sQ1pGRR.jpg",
      voiceActors: [
        {
          id: 95160,
          language: "Japanese",
          name: {
            first: "Takehito",
            last: "Koyasu",
            full: "Takehito Koyasu",
            native: "子安武人",
            userPreferred: "Takehito Koyasu",
          },
          image:
            "https://s4.anilist.co/file/anilistcdn/staff/large/n95160-jWevcH7BmfE1.jpg",
        },
        {
          id: 182222,
          language: "Spanish",
          name: {
            first: "Rafael",
            last: "Pacheco",
            full: "Rafael Pacheco",
            native: null,
            userPreferred: "Rafael Pacheco",
          },
          image:
            "https://s4.anilist.co/file/anilistcdn/staff/large/n182222-0Fz9qcwIYdVr.jpg",
        },
        {
          id: 241781,
          language: "Portuguese",
          name: {
            first: "Adriano",
            last: "Paixão",
            full: "Adriano Paixão",
            native: null,
            userPreferred: "Adriano Paixão",
          },
          image:
            "https://s4.anilist.co/file/anilistcdn/staff/large/default.jpg",
        },
        {
          id: 165698,
          language: "German",
          name: {
            first: "Nico",
            last: "Nothnagel",
            full: "Nico Nothnagel",
            native: null,
            userPreferred: "Nico Nothnagel",
          },
          image:
            "https://s4.anilist.co/file/anilistcdn/staff/large/default.jpg",
        },
      ],
    },
    {
      id: 176220,
      role: "SUPPORTING",
      name: {
        first: "",
        last: "Terashima",
        full: "Terashima",
        native: "寺島",
        userPreferred: "Terashima",
      },
      image:
        "https://s4.anilist.co/file/anilistcdn/character/large/b176220-ybbcG8hZSgUO.png",
      voiceActors: [
        {
          id: 125577,
          language: "Japanese",
          name: {
            first: "Rina",
            last: "Honizumi",
            full: "Rina Honizumi",
            native: "本泉莉奈",
            userPreferred: "Rina Honizumi",
          },
          image:
            "https://s4.anilist.co/file/anilistcdn/staff/large/n125577-f48HE13krNVR.jpg",
        },
        {
          id: 257285,
          language: "Portuguese",
          name: {
            first: "Gabriela",
            last: "Stampacchio",
            full: "Gabriela Stampacchio",
            native: null,
            userPreferred: "Gabriela Stampacchio",
          },
          image:
            "https://s4.anilist.co/file/anilistcdn/staff/large/default.jpg",
        },
      ],
    },
    {
      id: 134331,
      role: "SUPPORTING",
      name: {
        first: "Kobachi",
        last: "Osaragi",
        full: "Kobachi Osaragi",
        native: "大仏こばち",
        userPreferred: "Kobachi Osaragi",
      },
      image:
        "https://s4.anilist.co/file/anilistcdn/character/large/b134331-pGWnRI42SZAl.png",
      voiceActors: [
        {
          id: 100250,
          language: "Japanese",
          name: {
            first: "Rina",
            last: "Hidaka",
            full: "Rina Hidaka",
            native: "日高里菜",
            userPreferred: "Rina Hidaka",
          },
          image:
            "https://s4.anilist.co/file/anilistcdn/staff/large/n100250-JhNN2vxQ311M.png",
        },
        {
          id: 184295,
          language: "Spanish",
          name: {
            first: "Jocelyn",
            last: "Robles",
            full: "Jocelyn Robles",
            native: "Jocelyn Robles Guillén",
            userPreferred: "Jocelyn Robles",
          },
          image:
            "https://s4.anilist.co/file/anilistcdn/staff/large/n184295-SGIBinFSleRp.png",
        },
        {
          id: 262684,
          language: "Portuguese",
          name: {
            first: "Vanessa",
            last: "Scorsoni",
            full: "Vanessa Scorsoni",
            native: null,
            userPreferred: "Vanessa Scorsoni",
          },
          image:
            "https://s4.anilist.co/file/anilistcdn/staff/large/default.jpg",
        },
        {
          id: 275101,
          language: "French",
          name: {
            first: "Isabelle",
            last: "Desplantes",
            full: "Isabelle Desplantes",
            native: null,
            userPreferred: "Isabelle Desplantes",
          },
          image:
            "https://s4.anilist.co/file/anilistcdn/staff/large/n275101-ggiPg7JGL3A0.jpg",
        },
        {
          id: 290589,
          language: "German",
          name: {
            first: "Peggy-Sue",
            last: "Emmler",
            full: "Peggy-Sue Emmler",
            native: null,
            userPreferred: "Peggy-Sue Emmler",
          },
          image:
            "https://s4.anilist.co/file/anilistcdn/staff/large/default.jpg",
        },
      ],
    },
    {
      id: 134328,
      role: "SUPPORTING",
      name: {
        first: "Maki",
        last: "Shijo",
        full: "Maki Shijo",
        native: "四条眞妃",
        userPreferred: "Maki Shijo",
      },
      image:
        "https://s4.anilist.co/file/anilistcdn/character/large/b134328-s3cEgqb5MEbh.png",
      voiceActors: [
        {
          id: 124390,
          language: "Japanese",
          name: {
            first: "Kana",
            last: "Ichinose",
            full: "Kana Ichinose",
            native: "市ノ瀬加那",
            userPreferred: "Kana Ichinose",
          },
          image:
            "https://s4.anilist.co/file/anilistcdn/staff/large/n124390-eFIxDGxC7Vy8.png",
        },
        {
          id: 217017,
          language: "English",
          name: {
            first: "Hope",
            last: "Endrenyi",
            full: "Hope Endrenyi",
            native: null,
            userPreferred: "Hope Endrenyi",
          },
          image:
            "https://s4.anilist.co/file/anilistcdn/staff/large/n217017-uyEcKBtmPYAc.jpg",
        },
        {
          id: 226232,
          language: "Spanish",
          name: {
            first: "Susana",
            last: "Cohe",
            full: "Susana Cohe",
            native: "Susana Cortés Hernández",
            userPreferred: "Susana Cohe",
          },
          image:
            "https://s4.anilist.co/file/anilistcdn/staff/large/n226232-FYSd01DLJ5Qy.png",
        },
        {
          id: 254216,
          language: "Portuguese",
          name: {
            first: "Colombina",
            last: "Rivas",
            full: "Colombina Rivas",
            native: null,
            userPreferred: "Colombina Rivas",
          },
          image:
            "https://s4.anilist.co/file/anilistcdn/staff/large/default.jpg",
        },
        {
          id: 277477,
          language: "German",
          name: {
            first: "Ness",
            last: "Gerung",
            full: "Ness Gerung",
            native: null,
            userPreferred: "Ness Gerung",
          },
          image:
            "https://s4.anilist.co/file/anilistcdn/staff/large/default.jpg",
        },
      ],
    },
    {
      id: 177065,
      role: "SUPPORTING",
      name: {
        first: "Daichi",
        last: "Fujiwara",
        full: "Daichi Fujiwara",
        native: "藤原大地",
        userPreferred: "Daichi Fujiwara",
      },
      image:
        "https://s4.anilist.co/file/anilistcdn/character/large/b177065-CV1Ok4h74srn.jpg",
      voiceActors: [
        {
          id: 102664,
          language: "Japanese",
          name: {
            first: "Hirohiko",
            last: "Kakegawa",
            full: "Hirohiko Kakegawa",
            native: "掛川裕彦",
            userPreferred: "Hirohiko Kakegawa",
          },
          image:
            "https://s4.anilist.co/file/anilistcdn/staff/large/n102664-hDenVljsoR8F.png",
        },
        {
          id: 111673,
          language: "Spanish",
          name: {
            first: "Manuel",
            last: "Campuzano",
            full: "Manuel Campuzano",
            native: "Manuel Campuzano Márquez",
            userPreferred: "Manuel Campuzano",
          },
          image:
            "https://s4.anilist.co/file/anilistcdn/staff/large/n111673-WnvtApo3SNny.png",
        },
        {
          id: 254976,
          language: "Portuguese",
          name: {
            first: "Reinaldo",
            last: "Rodriguez",
            full: "Reinaldo Rodriguez",
            native: null,
            userPreferred: "Reinaldo Rodriguez",
          },
          image:
            "https://s4.anilist.co/file/anilistcdn/staff/large/n254976-XSajLo3G3TXu.jpg",
        },
      ],
    },
    {
      id: 276519,
      role: "SUPPORTING",
      name: {
        first: "Masaru",
        last: "Kobayashi",
        full: "Masaru Kobayashi",
        native: "小林マサル",
        userPreferred: "Masaru Kobayashi",
      },
      image:
        "https://s4.anilist.co/file/anilistcdn/character/large/b276519-dha4odF2TNMN.jpg",
      voiceActors: [
        {
          id: 119871,
          language: "Japanese",
          name: {
            first: "Kouhei",
            last: "Amasaki",
            full: "Kouhei Amasaki",
            native: "天崎滉平",
            userPreferred: "Kouhei Amasaki",
          },
          image:
            "https://s4.anilist.co/file/anilistcdn/staff/large/n119871-jbrrS09NU0CO.png",
        },
        {
          id: 116839,
          language: "Spanish",
          name: {
            first: "Miguel Ángel",
            last: "Ruiz",
            full: "Miguel Ángel Ruiz",
            native: null,
            userPreferred: "Miguel Ángel Ruiz",
          },
          image:
            "https://s4.anilist.co/file/anilistcdn/staff/large/n116839-9EnQTp30Vy4R.png",
        },
        {
          id: 193392,
          language: "Portuguese",
          name: {
            first: "Dudu",
            last: "Fevereiro",
            full: "Dudu Fevereiro",
            native: null,
            userPreferred: "Dudu Fevereiro",
          },
          image:
            "https://s4.anilist.co/file/anilistcdn/staff/large/default.jpg",
        },
      ],
    },
    {
      id: 126144,
      role: "SUPPORTING",
      name: {
        first: "Kei",
        last: "Shirogane",
        full: "Kei Shirogane",
        native: "白銀圭",
        userPreferred: "Kei Shirogane",
      },
      image:
        "https://s4.anilist.co/file/anilistcdn/character/large/b126144-4fc2sYUVFKOJ.png",
      voiceActors: [
        {
          id: 126963,
          language: "Japanese",
          name: {
            first: "Sayumi",
            last: "Suzushiro",
            full: "Sayumi Suzushiro",
            native: "鈴代紗弓",
            userPreferred: "Sayumi Suzushiro",
          },
          image:
            "https://s4.anilist.co/file/anilistcdn/staff/large/n126963-0LMbvLzSSADw.jpg",
        },
        {
          id: 129302,
          language: "English",
          name: {
            first: "Heather",
            last: "Walker",
            full: "Heather Walker",
            native: null,
            userPreferred: "Heather Walker",
          },
          image:
            "https://s4.anilist.co/file/anilistcdn/staff/large/n129302-wNSfYBozMHlY.jpg",
        },
        {
          id: 201444,
          language: "Spanish",
          name: {
            first: "Amanda",
            last: "Hinojosa",
            full: "Amanda Hinojosa",
            native: null,
            userPreferred: "Amanda Hinojosa",
          },
          image:
            "https://s4.anilist.co/file/anilistcdn/staff/large/n201444-UuM4e0e04Wk0.png",
        },
        {
          id: 199070,
          language: "Portuguese",
          name: {
            first: "Nathalia",
            last: "Guillen",
            full: "Nathalia Guillen",
            native: null,
            userPreferred: "Nathalia Guillen",
          },
          image:
            "https://s4.anilist.co/file/anilistcdn/staff/large/n199070-yBeJgzjLB8Q1.png",
        },
        {
          id: 274233,
          language: "French",
          name: {
            first: "Clotilde",
            last: "Verry",
            full: "Clotilde Verry",
            native: null,
            userPreferred: "Clotilde Verry",
          },
          image:
            "https://s4.anilist.co/file/anilistcdn/staff/large/n274233-WXiPUGxyei2M.jpg",
        },
        {
          id: 110555,
          language: "German",
          name: {
            first: "Josephine",
            last: "Schmidt",
            full: "Josephine Schmidt",
            native: null,
            userPreferred: "Josephine Schmidt",
          },
          image: "https://s4.anilist.co/file/anilistcdn/staff/large/15555.jpg",
        },
      ],
    },
  ],
  relations: [
    {
      id: 86635,
      relationType: "ADAPTATION",
      malId: 90125,
      title: {
        romaji: "Kaguya-sama wa Kokurasetai: Tensaitachi no Renai Zunousen",
        english: "Kaguya-sama: Love is War",
        native: "かぐや様は告らせたい~天才たちの恋愛頭脳戦~",
        userPreferred:
          "Kaguya-sama wa Kokurasetai: Tensaitachi no Renai Zunousen",
      },
      status: "Completed",
      episodes: null,
      image:
        "https://s4.anilist.co/file/anilistcdn/media/manga/cover/large/bx86635-EdaLQmsn86Fy.png",
      color: "#d61a35",
      type: "MANGA",
      cover:
        "https://s4.anilist.co/file/anilistcdn/media/manga/banner/86635-5lYiOxKzZYZh.jpg",
      rating: 88,
    },
    {
      id: 112641,
      relationType: "PREQUEL",
      malId: 40591,
      title: {
        romaji: "Kaguya-sama wa Kokurasetai?: Tensaitachi no Renai Zunousen",
        english: "Kaguya-sama: Love is War?",
        native: "かぐや様は告らせたい?~天才たちの恋愛頭脳戦~",
        userPreferred:
          "Kaguya-sama wa Kokurasetai?: Tensaitachi no Renai Zunousen",
      },
      status: "Completed",
      episodes: 12,
      image:
        "https://s4.anilist.co/file/anilistcdn/media/anime/cover/large/bx112641-zoGC8d6FaPXU.jpg",
      color: "#DAD797",
      type: "TV",
      cover:
        "https://s4.anilist.co/file/anilistcdn/media/anime/banner/112641-mKZe0zng0ndV.jpg",
      rating: 86,
    },
    {
      id: 151384,
      relationType: "SEQUEL",
      malId: 52198,
      title: {
        romaji: "Kaguya-sama wa Kokurasetai: First Kiss wa Owaranai",
        english: "Kaguya-sama: Love is War -The First Kiss That Never Ends-",
        native: "かぐや様は告らせたい -ファーストキッスは終わらない-",
        userPreferred: "Kaguya-sama wa Kokurasetai: First Kiss wa Owaranai",
      },
      status: "Completed",
      episodes: 4,
      image:
        "https://s4.anilist.co/file/anilistcdn/media/anime/cover/large/bx151384-gv0q8wOE6D58.jpg",
      color: "#e45d78",
      type: "TV",
      cover:
        "https://s4.anilist.co/file/anilistcdn/media/anime/banner/151384-JybfIpHr2gx6.jpg",
      rating: 90,
    },
  ],
  mappings: {
    mal: 43608,
    anidb: 15806,
    kitsu: 43691,
    anilist: 125367,
    thetvdb: 354198,
    anisearch: 15681,
    livechart: 10191,
    "notify.moe": "tgrxrLtMR",
    "anime-planet": "kaguya-sama-love-is-war-ultra-romantic",
  },
  episodes: [
    {
      id: "kaguya-sama-wa-kokurasetai-ultra-romantic-episode-1",
      title:
        "Miko Iino Wants to Be Soothed / Kaguya Doesn’t Realize / Chika Fujiwara Wants to Battle",
      description:
        "After finally making her long awaited smartphone debut, Kaguya restlessly contemplates over how to respond to Shirogane's LINE message. As Hayasaka watches over, she realizes that Kaguya is not aware of the \"read receipt\" function. If Kaguya lies by responding that she just read the message, she runs the risk of exposing the truth that she had been obsessively staring at Shirogane's message with glee. Weighing out her options to best serve her mistress, Hayasaka decides to explain LINE's functions when suddenly a new problem emerges.",
      number: 1,
      image:
        "https://artworks.thetvdb.com/banners/v4/episode/7689771/screencap/624b2c2cd5d87.jpg",
      airDate: "2022-04-09T00:00:00.000Z",
    },
    {
      id: "kaguya-sama-wa-kokurasetai-ultra-romantic-episode-2",
      title:
        "Miyuki Shirogane Wants to Mediate / Kaguya Wants to Distract Him / Kaguya Preemptively Strikes",
      description:
        "Kaguya makes a big fuss when she learns that Shirogane was invited to a karaoke group date and orders Hayasaka to remove him from the venue. Dissatisfied with such treatment yet unable to refuse her mistress' instructions, Hayasaka joins the party as Shirogane's acquaintance Smithee A. Herthaka and plans to ruin the atmosphere by airing out that Shirogane once dumped her. And although she manages to get Shirogane out, a rebellious spirit against Kaguya has begun to grow...",
      number: 2,
      image:
        "https://artworks.thetvdb.com/banners/v4/episode/9090730/screencap/6253f296e7a1f.jpg",
      airDate: "2022-04-16T00:00:00.000Z",
    },
    {
      id: "kaguya-sama-wa-kokurasetai-ultra-romantic-episode-3",
      title:
        "Nagisa Kashiwagi Wants to Kill / Maki Shijo Wants to Take Action / Miyuki Shirogane Wants to Be Believed",
      description:
        "Shirogane accidentally steps on Maki Shijo, a female student who had collapsed on campus, and takes care of her in the student council room. Apparently, she has suffered from the sorrows of love. When Maki discusses her situation with him, her expression changes from high-spirited, to anxious, to explosively angry, to tearful. After witnessing such an intense range of human emotion, for some reason Shirogane was struck by a strong sense of déjà vu. What on earth was this feeling?",
      number: 3,
      image:
        "https://artworks.thetvdb.com/banners/v4/episode/9090731/screencap/625d2c24dd9ab.jpg",
      airDate: "2022-04-23T00:00:00.000Z",
    },
    {
      id: "kaguya-sama-wa-kokurasetai-ultra-romantic-episode-4",
      title:
        'Kaguya Shinomiya\'s Impossible Demand: "A Cowrie a Swallow Gave Birth To" Part 1 / Yu Ishigami Wants to Prove Himself Worthy / Chika Fujiwara Wants to Stay Over',
      description:
        "After their second semester final exams end, there are plans for a sleepover at Kaguya's house. But Shirogane and the others are unable to come, leaving Fujiwara as the only one who can join. While barley glancing at an upset Kaguya, Fujiwara gets excited about the totally hot butler Mr. Herthaka without realizing it's Hayasaka dressed as a man. That night as the girl talk unfolds at the pajama party, a sleep-deprived Kaguya takes on a strange mood before anyone can notice. With that energy, she calls Shirogane and ends up asking outrageous questions.",
      number: 4,
      image:
        "https://artworks.thetvdb.com/banners/v4/episode/9090732/screencap/62668cf1b31e7.jpg",
      airDate: "2022-04-30T00:00:00.000Z",
    },
    {
      id: "kaguya-sama-wa-kokurasetai-ultra-romantic-episode-5",
      title:
        "Chika Fujiwara Wants to Beat a Rhythm / Ai Hayasaka Wants to Talk / Maki Shijo Wants Some Help",
      description:
        "Shirogane couldn't tell Ms. Herthaka that sometimes humans need to expose their weaknesses and endeavors to practice rapping which should be able to convey that. But his rapping skills are catastrophic. Fujiwara, who previously taught him singing and dancing, tags along for practice. But she's a total amateur when it comes to rap that she's on the level where she's convinced it's all simple-minded puns. So Fujiwara begins special training. With the advice from Shirogane who has overflowing knowledge on rap music, she rapidly improves... But something is still missing!",
      number: 5,
      image:
        "https://artworks.thetvdb.com/banners/v4/episode/9090733/screencap/626fb02caaf90.jpg",
      airDate: "2022-05-07T00:00:00.000Z",
    },
    {
      id: "kaguya-sama-wa-kokurasetai-ultra-romantic-episode-6",
      title:
        "The Student Council Wants to Move Forward / Miyuki Shirogane Wants to Make Her Confess, Part 2 / Miyuki Shirogane Wants to Make Her Confess, Part 3",
      description:
        "Parent-Teacher Conferences to determine each student's future begin at Shuchiin Academy. One wishes to continue in the academy's university, one is considering taking exams for a different university – both will declare their future plans. Fujiwara, who is joined by her father, jokes around and expresses her desire to go to a university outside of the academy. Meanwhile, Kaguya's father didn't show up, but she informs them just as her parents instructed – that she will continue to Shuchiin's university. While Maki, Hayasaka, and the others each discuss their dreams, last but not least is Shirogane who is taking the exam. In a clear and confident tone, he declares the road he must proceed. And that answer is...!",
      number: 6,
      image:
        "https://artworks.thetvdb.com/banners/v4/episode/9090734/screencap/627ccc3d55ab1.jpg",
      airDate: "2022-05-14T00:00:00.000Z",
    },
    {
      id: "kaguya-sama-wa-kokurasetai-ultra-romantic-episode-7",
      title:
        "Miko Iino Can't Love, Part 1 / Students Wish to Discuss the Culture Festival / Miyuki Shirogane Wants to Blow It Up",
      description:
        "While all the classes were consumed in preparation for Shuchiin Academy's Hoshin Culture Festival, Shirogane and those from Class 2-B were working hard at making balloon art. As Fujiwara delicately puts finishing touches on a cute balloon bear, the clumsy Shirogane keeps popping them no matter how many times he tries. The sound of balloons popping echoes sadly in the classroom. But Fujiwara, who has joined Shirogane's special training many times up until now, hardens her heart and decides not to help this time. To overcome this without the help of others, Shirogane heads to the student council room for practice. However, Kaguya is in the room...",
      number: 7,
      image:
        "https://artworks.thetvdb.com/banners/v4/episode/9090735/screencap/6282238070200.jpg",
      airDate: "2022-05-21T00:00:00.000Z",
    },
    {
      id: "kaguya-sama-wa-kokurasetai-ultra-romantic-episode-8",
      title:
        "Kei Shirogane Wants to Show Off / About Kaguya Shinomiya, Part 2 / Kaguya Wants to Confess",
      description:
        "Kaguya learns about the romantic legend that giving a heart-shaped gift at the Culture Festival brings eternal love. She wonders if there is a way she can give Shirogane a heart-shaped gift without getting caught. But her plans are full of errors, and she panics. She becomes sick of herself as a cowardly person who can only come up with negative ideas. There, Shirogane, exhausted from preparing for the Culture Festival, shows up. As Kaguya sees Shirogane doing his best for everyone as the student council president, she...",
      number: 8,
      image:
        "https://artworks.thetvdb.com/banners/v4/episode/9090736/screencap/628b6093331e6.jpg",
      airDate: "2022-05-28T00:00:00.000Z",
    },
    {
      id: "kaguya-sama-wa-kokurasetai-ultra-romantic-episode-9",
      title:
        "Spring of First Year / Kaguya's Culture Festival / Yu Ishigami's Culture Festival",
      description:
        "One week after enrolling in Shuchiin Academy as a special scholarship student, Shirogane had already regretted that he had come to a school he should not have. The students around him were elites born into famous families. Shirogane, who is from a modest household and enrolled from a school outside of Shuchiin's track, couldn't even find a friend to eat with, so he quietly kills time away from the cafeteria. Just as Shirogane's miserable emotions explode, an upperclassman with a student cap appears in front of him. A shining golden fourragere lays across his chest as proof of student council president. And he says that he's come to recruit Shirogane into the student council.",
      number: 9,
      image:
        "https://artworks.thetvdb.com/banners/v4/episode/9090737/screencap/6294a898e73cb.jpg",
      airDate: "2022-06-04T00:00:00.000Z",
    },
    {
      id: "kaguya-sama-wa-kokurasetai-ultra-romantic-episode-10",
      title:
        "Kozue Makihara Wants to Have Fun / Chika Fujiwara Wants to Unmask / Miyuki Shirogane's Culture Festival",
      description:
        'Ishigami, who succeeded in inviting Tsubame on a Culture Festival date, browses around campus exhibits in an attempt to shorten the distance between the two. In the end, it didn\'t go as well as hoped. But when he tried to express his everyday feelings of gratitude for the upperclassman he feels indebted to, it caused an unexpected uproar. Shirogane was astonished after witnessing the unexpected event. Gripped by the fear that his secretly planned "Make Shinomiya Confess Plan" will be ruined, he sinks into despair after thinking too hard about every detail.',
      number: 10,
      image:
        "https://artworks.thetvdb.com/banners/v4/episode/9090738/screencap/629dd17cc3013.jpg",
      airDate: "2022-06-11T00:00:00.000Z",
    },
    {
      id: "kaguya-sama-wa-kokurasetai-ultra-romantic-episode-11",
      title:
        "Miyuki Shirogane Wants to Make Her Confess, Part 4 / Tsubame Koyasu Wants to Say No / Miyuki Shirogane Wants to Make Her Confess, Part 5",
      description:
        "Invited to walk around the culture festival together by Shirogane, Kaguya is unable to hide her surprise at this sudden plot twist. She lightly joked that maybe he was affected by the festival's atmosphere, but Shirogane never dropped his serious expression. Compelled by such intensity, Kaguya decided to walk around the school together. Everyone around them gossips that they are on a date as Kaguya blushes. But while they enjoy visiting a love fortune-teller, food shops and live music, Kaguya feels true happiness. From the depths of her heart, she wishes that each day could continue just like this.",
      number: 11,
      image:
        "https://artworks.thetvdb.com/banners/v4/episode/9090739/screencap/62a75222075ba.jpg",
      airDate: "2022-06-18T00:00:00.000Z",
    },
    {
      id: "kaguya-sama-wa-kokurasetai-ultra-romantic-episode-12",
      title:
        "Kaguya Wants to Confess, Part 2 / Kaguya Wants to Confess, Part 3 / Dual Confessions, Part 1",
      description:
        "The moment the culture festival reached its finale, the jewel object made by Shirogane was stolen by a phantom thief who calls himself Arsène. Kaguya and the others headed to the roof where the phantom thief keeps appearing, but there was no one there. Fujiwara, who transformed into a genius detective, struggles to solve the mystery behind the calling card and uncover the thief's true identity. But Kaguya, left behind at the scene of the crime, had begun to figure out the criminal. The problem is the location. Kaguya traced the phantom thief's line of thinking and headed to where he is now...",
      number: 12,
      image:
        "https://artworks.thetvdb.com/banners/v4/episode/9090740/screencap/62b5f3872085a.jpg",
      airDate: "2022-06-25T00:00:00.000Z",
    },
    {
      id: "kaguya-sama-wa-kokurasetai-ultra-romantic-episode-13",
      title: "Dual Confessions, Part 2 / The Shuchiin Afterparty",
      description:
        "Shroud in a cape and dressed in the guise of the phantom thief Arsène, Shirogane waited for Kaguya's arrival atop the clock tower roof overlooking Shuchiin. When asked why he would do such a thing, Shirogane answered that there was something he wanted to show Kaguya. The festival's afterparty has already begun as the sun set over this school and the students could be seen encircling and enjoying the bonfire. While the emotions that could not be expressed with words mingled between Shirogane and Kaguya's hearts... Shirogane carried out his ultra-romantic operation!!",
      number: 13,
      image:
        "https://artworks.thetvdb.com/banners/v4/episode/9231033/screencap/62b5f41750c72.jpg",
      airDate: "2022-06-25T00:00:00.000Z",
    },
  ],
};