santoka 1.0.2

Translations of 668 of Taneda Santoka's free-verse haiku
Documentation
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
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
3886
3887
3888
3889
3890
3891
3892
3893
3894
3895
3896
3897
3898
3899
3900
3901
3902
3903
3904
3905
3906
3907
3908
3909
3910
3911
3912
3913
3914
3915
3916
3917
3918
3919
3920
3921
3922
3923
3924
3925
3926
3927
3928
3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
[
  {
    "id": 0,
    "publicationId": 0,
    "englishText": "My back view as I go, / Wetted with the winter rain?",
    "japaneseText": "Ushiro-sugata no shigurete yuku ka"
  },
  {
    "id": 1,
    "publicationId": 0,
    "englishText": "Up to the very end, it is journeying, / And cutting our (toe-) nails.",
    "japaneseText": "Itsumademo tabi wo suru koto no tsume wo kiru"
  },
  {
    "id": 2,
    "publicationId": 0,
    "englishText": "My native place / Far away: / The buds on the trees.",
    "japaneseText": "Furusato wa tokushite ki no me"
  },
  {
    "id": 3,
    "publicationId": 0,
    "englishText": "Into the iron bowl also, / Hailstones.",
    "japaneseText": "Tetsubachi no naka e mo arare"
  },
  {
    "id": 4,
    "publicationId": 0,
    "englishText": "Plop on my kasa / The flower of the camellia!",
    "japaneseText": "Kasa e pottori tsubaki datta"
  },
  {
    "id": 5,
    "publicationId": 0,
    "englishText": "I have gratefully received it; / It was enough; / I lay down my chopsticks.",
    "japaneseText": "Itadaite tarife hitori no hashi wo oku"
  },
  {
    "id": 6,
    "publicationId": 0,
    "englishText": "The road became quiet and solitary; / Dokudami is budding.",
    "japaneseText": "Shizukana michi to nari dokudami no me",
    "notes": "*The dokudami, also called shibuki, is a small, ill-smelling weed with a four-petalled white flower that blooms in summer."
  },
  {
    "id": 7,
    "publicationId": 0,
    "englishText": "A crow is cawing; / I also am by myself.",
    "japaneseText": "Karasu naite watashi mo hitori"
  },
  {
    "id": 8,
    "publicationId": 0,
    "englishText": "Going further into them, / And further into them, / Still more green mountains.",
    "japaneseText": "Wake-itte mo wake-itte mo aoi yama"
  },
  {
    "id": 9,
    "publicationId": 0,
    "englishText": "This is the stone, / Drenched with rain, / That marks the way.",
    "japaneseText": "Shitodo ni nurete kore wa michishirube no ishi"
  },
  {
    "id": 10,
    "publicationId": 0,
    "englishText": "Rained upon / For all our sakes, / Hotoke Sama.",
    "japaneseText": "Hito no tame ni shigurete hotoke sama"
  },
  {
    "id": 11,
    "publicationId": 0,
    "englishText": "Leaves of the trees fall; / Walking on and on.",
    "japaneseText": "Ko-no-ha chiru aruki-tsumeru"
  },
  {
    "id": 12,
    "publicationId": 0,
    "englishText": "The snow of life and death / Falls incessantly.",
    "japaneseText": "Sei-shi no naka no yuki furi-shikiru"
  },
  {
    "id": 13,
    "publicationId": 0,
    "englishText": "Walking through / The bush clover, the pampas grass, / Walking on through them.",
    "japaneseText": "Fumi-wakeru hagi yo susuki yo"
  },
  {
    "id": 14,
    "publicationId": 0,
    "englishText": "Buoyantly we go / Like the wind, / Tasting water.",
    "japaneseText": "Hyo-hyo to shite mizu wo ajiwau"
  },
  {
    "id": 15,
    "publicationId": 0,
    "englishText": "I am bitten by mosquitoes, / Quite alone.",
    "japaneseText": "Hitori de ka ni kuwarete iru"
  },
  {
    "id": 16,
    "publicationId": 0,
    "englishText": "I walk along, / Letting the dragon-fly / Perch on my kasa.",
    "japaneseText": "Kasa ni tombo wo tomarasete aruku"
  },
  {
    "id": 17,
    "publicationId": 0,
    "englishText": "Cold winter rain; / I am still alive.",
    "japaneseText": "Shigururu ya shinanaide iru"
  },
  {
    "id": 18,
    "publicationId": 0,
    "englishText": "I am walking; / It cannot be otherwise.",
    "japaneseText": "Do shiyo mo nai watashi ga aruite oru"
  },
  {
    "id": 19,
    "publicationId": 0,
    "englishText": "Crossing over / A dried up river.",
    "japaneseText": "Kare-kitta kawa wo wataru"
  },
  {
    "id": 20,
    "publicationId": 0,
    "englishText": "Quite withered up, / It is just beans.",
    "japaneseText": "Sukkari karete mame to natte iru"
  },
  {
    "id": 21,
    "publicationId": 0,
    "englishText": "I can't throw it away, / But how heavy my pack, / Before and behind!",
    "japaneseText": "Sutekirenai nimotsu no omosa mae ushiro"
  },
  {
    "id": 22,
    "publicationId": 0,
    "englishText": "I am wet / By the rain / From that cloud.",
    "japaneseText": "Ano kumo ga otoshita ame ni nurete iru"
  },
  {
    "id": 23,
    "publicationId": 0,
    "englishText": "The grasses / That have become autumn,— / Sitting down in them.",
    "japaneseText": "Aki to natta zasso ni suwaru"
  },
  {
    "id": 24,
    "publicationId": 0,
    "englishText": "Seeds of grasses; / My monkish robe / Is so worn!",
    "japaneseText": "Hoi konna ni yaburete kusa no mi"
  },
  {
    "id": 25,
    "publicationId": 0,
    "englishText": "As I grow old, / I yearn for my native place: / Tsukutsukuboshi!",
    "japaneseText": "Toshi toreba kokyo koishii tsukutsuku-boshi"
  },
  {
    "id": 26,
    "publicationId": 0,
    "englishText": "Together with the sound of the water, / I came down to my native village.",
    "japaneseText": "Mizuoto to issho ni sato e orite kita"
  },
  {
    "id": 27,
    "publicationId": 0,
    "englishText": "Intently / I eat my meal / Of boiled rice only.",
    "japaneseText": "Shimi-jimi taberu meshi bakari no meshi de aru"
  },
  {
    "id": 28,
    "publicationId": 0,
    "englishText": "Not a single cloud in the sky; / I take off my kasa.",
    "japaneseText": "Mattaku kumo ga nai kasa wo nugi"
  },
  {
    "id": 29,
    "publicationId": 0,
    "englishText": "The sound of the rain-drops also / Has grown older.",
    "japaneseText": "Amadare no oto mo toshi-totta"
  },
  {
    "id": 30,
    "publicationId": 0,
    "englishText": "No house more to beg from; / Clouds over the mountains.",
    "japaneseText": "Mono kou ie mo naku nari yama ni wa kumo"
  },
  {
    "id": 31,
    "publicationId": 0,
    "englishText": "Has my kasa too / Begun to leak?",
    "japaneseText": "Kasa mo moridashita ka"
  },
  {
    "id": 32,
    "publicationId": 0,
    "englishText": "The grasses I tread, / Uncertain and fickle, / Are all withered away.",
    "japaneseText": "Ate mo naku fumiaruku kusa mina karetari"
  },
  {
    "id": 33,
    "publicationId": 0,
    "englishText": "In the warm sunlight / At the foot of the hill, standing side by side, / A few graves.",
    "japaneseText": "Yama-suso atataka na hi ni narabu haka sukoshi kana"
  },
  {
    "id": 34,
    "publicationId": 0,
    "englishText": "I was silent all day: / Facing the sea, / The tide came up.",
    "japaneseText": "Ichi-nichi mono iwazu umi ni mukaeba shio michite kinu"
  },
  {
    "id": 35,
    "publicationId": 1,
    "englishText": "A soft whirling drunk\na scattering of leaves.",
    "japaneseText": "Horohoro yoppaute\nki no ha chiru."
  },
  {
    "id": 36,
    "publicationId": 2,
    "englishText": "further in yet / further in yet / green hills"
  },
  {
    "id": 37,
    "publicationId": 2,
    "englishText": "taking a leisurely pee / in lush sprouting grass"
  },
  {
    "id": 38,
    "publicationId": 2,
    "englishText": "tree leaves fall / walking on and on"
  },
  {
    "id": 39,
    "publicationId": 2,
    "englishText": "on a rock the dragonfly / looks at midday dreams"
  },
  {
    "id": 40,
    "publicationId": 3,
    "englishText": "In pine winds at dawn and dusk striking the bell",
    "japaneseText": "Matsukaze ni akekure no kane tsuite"
  },
  {
    "id": 41,
    "publicationId": 3,
    "englishText": "I go in I go in still the blue mountains",
    "japaneseText": "Wakeitte mo wakeitte mo aoi yama"
  },
  {
    "id": 42,
    "publicationId": 3,
    "englishText": "In the midst of life and death the snow falls ceaselessly",
    "japaneseText": "Seishi no naka no yuki furishikiru"
  },
  {
    "id": 43,
    "publicationId": 3,
    "englishText": "Burning heaven on my head I beg I walk",
    "japaneseText": "Enten o itadaite koi aruku"
  },
  {
    "id": 44,
    "publicationId": 3,
    "englishText": "Alone being eaten up by mosquitoes",
    "japaneseText": "Hitori de ka ni kuwareteiru"
  },
  {
    "id": 45,
    "publicationId": 3,
    "englishText": "Letting the dragonfly stay on my hat I walk on",
    "japaneseText": "Kasa ni tombo o tomarasete aruku"
  },
  {
    "id": 46,
    "publicationId": 3,
    "englishText": "The road being straight lonesome",
    "japaneseText": "Massuguna michi de samishii"
  },
  {
    "id": 47,
    "publicationId": 3,
    "englishText": "Wordlessly I put on today's straw sandals",
    "japaneseText": "Damatte kyo no zori haku"
  },
  {
    "id": 48,
    "publicationId": 3,
    "englishText": "Fluttering drunk leaves scatter",
    "japaneseText": "Horohoro youte ki no ha chiru"
  },
  {
    "id": 49,
    "publicationId": 3,
    "englishText": "Winter shower I'm still not dead",
    "japaneseText": "Shigururu ya shinanaideiru"
  },
  {
    "id": 50,
    "publicationId": 3,
    "englishText": "The shadow in the water I am a traveler",
    "japaneseText": "Mizu ni kage aru tabibito de aru"
  },
  {
    "id": 51,
    "publicationId": 3,
    "englishText": "The snow falls falls as I watch the snow",
    "japaneseText": "Yuki ga furu furu yuki miteoreba"
  },
  {
    "id": 52,
    "publicationId": 3,
    "englishText": "I've received enough to eat the rain starts",
    "japaneseText": "Taberu dake wa itadaita ame to nari"
  },
  {
    "id": 53,
    "publicationId": 3,
    "englishText": "It having survived I'm scratching my body",
    "japaneseText": "Ikinokotta karada o kaiteiru"
  },
  {
    "id": 54,
    "publicationId": 3,
    "englishText": "The mountain I'll never see again grows distant",
    "japaneseText": "Mata miru koto mo nai yama ga touzakaru"
  },
  {
    "id": 55,
    "publicationId": 3,
    "englishText": "A shrike calls there's no place to dump my body",
    "japaneseText": "Mozu naite mi no sute dokoro nashi"
  },
  {
    "id": 56,
    "publicationId": 3,
    "englishText": "Hopeless I keep walking",
    "japaneseText": "Dou shiyou mo nai watashi ga aruiteiru"
  },
  {
    "id": 57,
    "publicationId": 3,
    "englishText": "The Daikan Peak\nI go in and the sound of water",
    "japaneseText": "Wakeireba mizu no oto"
  },
  {
    "id": 58,
    "publicationId": 3,
    "englishText": "I slip and fall the mountain hushed",
    "japaneseText": "Subette koronde yama ga hissori"
  },
  {
    "id": 59,
    "publicationId": 3,
    "englishText": "Maimai's Residence\nCeaselessly dropping these large leaves",
    "japaneseText": "Shikirini ochiru ookii ha kana"
  },
  {
    "id": 60,
    "publicationId": 3,
    "englishText": "Completely withered they are now beans",
    "japaneseText": "Sukkari karete mame to natteiru"
  },
  {
    "id": 61,
    "publicationId": 3,
    "englishText": "On my tired leg a dragonfly has lighted",
    "japaneseText": "Tsukareta ashi e tombo tomatta"
  },
  {
    "id": 62,
    "publicationId": 3,
    "englishText": "A withered mountain with enough water to drink",
    "japaneseText": "Kareyama nomu hodo no mizu wa arite"
  },
  {
    "id": 63,
    "publicationId": 3,
    "englishText": "My monk's robe so torn grass seeds",
    "japaneseText": "Houi konnani yaburete kusa no mi"
  },
  {
    "id": 64,
    "publicationId": 3,
    "englishText": "That cloud dropped the rain I'm getting wet in",
    "japaneseText": "Ano kumo ga otoshita ame ni nureteiru"
  },
  {
    "id": 65,
    "publicationId": 3,
    "englishText": "Autumn's come I sit in the weeds",
    "japaneseText": "Aki to natta zassou ni suwaru"
  },
  {
    "id": 66,
    "publicationId": 3,
    "englishText": "Such delicious water overflowing",
    "japaneseText": "Konnani umai mizu ga afureteiru"
  },
  {
    "id": 67,
    "publicationId": 3,
    "englishText": "With the sound of water I've come down to a village",
    "japaneseText": "Mizuoto to issho ni sato e oritekita"
  },
  {
    "id": 68,
    "publicationId": 3,
    "englishText": "Absolutely no cloud I take off my hat",
    "japaneseText": "Mattaku kumo ga nai kasa o nugi"
  },
  {
    "id": 69,
    "publicationId": 3,
    "englishText": "Up to the graves in rows the waves rolling in",
    "japaneseText": "Haka ga narande soko made nami ga oshiyosete"
  },
  {
    "id": 70,
    "publicationId": 3,
    "englishText": "Drunk I'd been asleep with the crickets",
    "japaneseText": "Youte kourogi to neteita"
  },
  {
    "id": 71,
    "publicationId": 3,
    "englishText": "The sound of the rain dripping has also grown old",
    "japaneseText": "Amadare no oto mo toshitotta"
  },
  {
    "id": 72,
    "publicationId": 3,
    "englishText": "Holding out its branches a winter tree",
    "japaneseText": "Eda o sashinobeteiru fuyuki"
  },
  {
    "id": 73,
    "publicationId": 3,
    "englishText": "No more houses to beg at above the mountain clouds",
    "japaneseText": "Mono kou ie mo nakunari yama ni wa kumo"
  },
  {
    "id": 74,
    "publicationId": 3,
    "englishText": "Or I stop begging and am looking at the mountain6",
    "japaneseText": "Aruiwa kou koto o yamete yama o miteiru"
  },
  {
    "id": 75,
    "publicationId": 3,
    "englishText": "Even my hat has started to leak I see",
    "japaneseText": "Kasa mo moridashita ka"
  },
  {
    "id": 76,
    "publicationId": 3,
    "englishText": "This frosty night's bed must be somewhere",
    "japaneseText": "Shimoyo no nedoko ga dokoka ni aro"
  },
  {
    "id": 77,
    "publicationId": 3,
    "englishText": "Your back in the winter shower you go away I see",
    "japaneseText": "Ushiro sugata no shigurete yukuka"
  },
  {
    "id": 78,
    "publicationId": 3,
    "englishText": "Into my iron alms bowl too hail",
    "japaneseText": "Teppatsu no naka e mo arare"
  },
  {
    "id": 79,
    "publicationId": 3,
    "englishText": "This the tooth that came out just like that",
    "japaneseText": "Horori to nuketa ha de wa aru"
  },
  {
    "id": 80,
    "publicationId": 3,
    "englishText": "Cold clouds hurry",
    "japaneseText": "Samui kumo ga isogu"
  },
  {
    "id": 81,
    "publicationId": 3,
    "englishText": "My hometown's distant tree buds",
    "japaneseText": "Furusato wa toukushite ki no me"
  },
  {
    "id": 82,
    "publicationId": 3,
    "englishText": "Thump on my hat was a camellia",
    "japaneseText": "Kasa e pottori tsubaki datta"
  },
  {
    "id": 83,
    "publicationId": 3,
    "englishText": "In autumn wind I pick up a stone",
    "japaneseText": "Akikaze no ishi o hirou"
  },
  {
    "id": 84,
    "publicationId": 3,
    "englishText": "Along today's road dandelions have bloomed",
    "japaneseText": "Kyou no michi no tampopo saita"
  },
  {
    "id": 85,
    "publicationId": 3,
    "englishText": "Rain falls in my hometown walk barefoot",
    "japaneseText": "Ame furu furusato wa hadashi de aruku"
  },
  {
    "id": 86,
    "publicationId": 3,
    "englishText": "To the kitchen moonlight alone",
    "japaneseText": "Kuriya made tsukikage no hitori de"
  },
  {
    "id": 87,
    "publicationId": 3,
    "japaneseText": "Asayake ame furu daikon makou",
    "englishText": "Morning glow rain falls I'll sow daikon"
  },
  {
    "id": 88,
    "publicationId": 3,
    "englishText": "Dew in grass seeds, trying to calm down",
    "japaneseText": "Kusa no mi no tsuyu no, ochitsukou to suru"
  },
  {
    "id": 89,
    "publicationId": 3,
    "englishText": "From the evening sky I accept one citron",
    "japaneseText": "Yuuzora kara yuzu no hitotsu o morau"
  },
  {
    "id": 90,
    "publicationId": 3,
    "englishText": "The moon risen I'm waiting for nothing in particular",
    "japaneseText": "Tsuki ga nobotte nani o matsu de mo naku"
  },
  {
    "id": 91,
    "publicationId": 3,
    "englishText": "With this and that to eat one windy day",
    "japaneseText": "Arekore taberu mono wa atte kaze no ichinichi"
  },
  {
    "id": 92,
    "publicationId": 3,
    "englishText": "The sound of water truly I've calmed down",
    "japaneseText": "Mizuoto shinjitsu ochitsukimashita"
  },
  {
    "id": 93,
    "publicationId": 3,
    "englishText": "The sense that someone's coming the sky cloudy loquat blossoms",
    "japaneseText": "Dare ka kisou na sora ga kumotteiru biwa no hana"
  },
  {
    "id": 94,
    "publicationId": 3,
    "englishText": "In the snowy sky I pick the last one",
    "japaneseText": "Yukizora no saigo no hitotsu o mogu"
  },
  {
    "id": 95,
    "publicationId": 3,
    "englishText": "Gochu snow falls as a solitary man I make a fire",
    "japaneseText": "Gochu yuki furu hitori to shite hi o taku"
  },
  {
    "id": 96,
    "publicationId": 3,
    "englishText": "A warm day, still have things to eat",
    "japaneseText": "Nukui hi no, mada taberu mono wa aru"
  },
  {
    "id": 97,
    "publicationId": 3,
    "englishText": "Through the moonlight's center I come back",
    "japaneseText": "Tsukikage no mannaka o modoru"
  },
  {
    "id": 98,
    "publicationId": 3,
    "englishText": "I'm in the quietness of snow falling on snow",
    "japaneseText": "Yuki e yuki furu shizukesa ni oru"
  },
  {
    "id": 99,
    "publicationId": 3,
    "englishText": "Snow falls one by one they go",
    "japaneseText": "Yuki furu hitori hitori yuku"
  },
  {
    "id": 100,
    "publicationId": 3,
    "englishText": "Moonlit night, so your gift was rice",
    "japaneseText": "Tsukiyo, temiyage wa kome dattaka"
  },
  {
    "id": 101,
    "publicationId": 3,
    "englishText": "Camellias open there's a grave",
    "japaneseText": "Tsubaki hiraite haka ga aru"
  },
  {
    "id": 102,
    "publicationId": 3,
    "englishText": "The noise a bird that's come to eat nuts in the morning perhaps",
    "japaneseText": "Oto wa asa kara ki no mi o tabeni kita tori ka"
  },
  {
    "id": 103,
    "publicationId": 3,
    "englishText": "I pull and pull yet I pull the grass's attachment",
    "japaneseText": "Nuite mo nuite mo kusa no shuuchaku o nuku"
  },
  {
    "id": 104,
    "publicationId": 3,
    "englishText": "Today I pick bog rhubarb I eat bog rhubarb",
    "japaneseText": "Kyou wa fuki o tsumi fuki o tabe"
  },
  {
    "id": 105,
    "publicationId": 3,
    "englishText": "Sparrows dance yeah dandelions scatter yeah",
    "japaneseText": "Suzume odoru ya tampopo chiru ya"
  },
  {
    "id": 106,
    "publicationId": 3,
    "englishText": "A butterfly from back to front fluttering",
    "japaneseText": "Tefu tefu ura kara omote e hira hira"
  },
  {
    "id": 107,
    "publicationId": 3,
    "englishText": "Today also all day no one came fireflies",
    "japaneseText": "Kyou mo ichinichi dare mo konakatta hotaru"
  },
  {
    "id": 108,
    "publicationId": 3,
    "englishText": "Dragonfly trying to light on my stark naked body are you",
    "japaneseText": "Suppadaka e tombo tomarou to suruka"
  },
  {
    "id": 109,
    "publicationId": 3,
    "englishText": "Rustling stirring a non-chirping insect has come",
    "japaneseText": "Kasari kosori oto sasete nakanu mushi ga kita"
  },
  {
    "id": 110,
    "publicationId": 3,
    "englishText": "Pine winds cool a man eats a horse eats",
    "japaneseText": "Matsukaze suzushiku hito mo tabe uma mo tabe"
  },
  {
    "id": 111,
    "publicationId": 3,
    "englishText": "Which is what everything's abloom",
    "japaneseText": "Nani ga nani yara minna saiteiru"
  },
  {
    "id": 112,
    "publicationId": 3,
    "englishText": "I walk and buttercups I sit and buttercups",
    "japaneseText": "Arukeba kimpouge suwareba kimpouge"
  },
  {
    "id": 113,
    "publicationId": 3,
    "englishText": "With the drips from the young leaves the drips from my hat",
    "japaneseText": "Wakaba no shizuku de kasa no shizuku de"
  },
  {
    "id": 114,
    "publicationId": 3,
    "englishText": "The temple's bamboo shoots have become bamboo",
    "japaneseText": "O-tera no takenoko take ni natta"
  },
  {
    "id": 115,
    "publicationId": 3,
    "englishText": "Alone I listen a woodpecker",
    "japaneseText": "Hitori kiiteiru kitsutsuki"
  },
  {
    "id": 116,
    "publicationId": 3,
    "englishText": "I'm waiting the cherries are ripening",
    "japaneseText": "Matteiru sakurambo ureteiru"
  },
  {
    "id": 117,
    "publicationId": 3,
    "englishText": "In the mountain's embrace I become naked",
    "japaneseText": "Yama futokoro no hadaka to nari"
  },
  {
    "id": 118,
    "publicationId": 3,
    "englishText": "On the mountain all day ants too are walking",
    "japaneseText": "Yama no ichinichi ari mo aruiteiru"
  },
  {
    "id": 119,
    "publicationId": 3,
    "englishText": "Clouds hurry and turn it into a good moon",
    "japaneseText": "Kumo ga isoide yoi tsuki ni suru"
  },
  {
    "id": 120,
    "publicationId": 3,
    "englishText": "Always alone and red dragonflies",
    "japaneseText": "Itsumo hitori de akatombo"
  },
  {
    "id": 121,
    "publicationId": 3,
    "englishText": "It moved was a bagworm",
    "japaneseText": "Ugoite minomushi datta yo"
  },
  {
    "id": 122,
    "publicationId": 3,
    "englishText": "Grass grows thick that's a place for burning the dead",
    "japaneseText": "Kusa shigeru soko wa shinin o yaku tokoro"
  },
  {
    "id": 123,
    "publicationId": 3,
    "englishText": "Morning dew sopping I go where I want",
    "japaneseText": "Asatsuyu shittori ikitai hou e iku"
  },
  {
    "id": 124,
    "publicationId": 3,
    "englishText": "Burning heaven with no place to hide the water flows toward me",
    "japaneseText": "Enten kakusu tokoro naku mizu no nagarete kuru"
  },
  {
    "id": 125,
    "publicationId": 3,
    "englishText": "The evening shower has washed the eggplants I pick 'em",
    "japaneseText": "Yuudachi ga aratte itta nasu o mogu"
  },
  {
    "id": 126,
    "publicationId": 3,
    "englishText": "Crickets there's just enough rice for tomorrow",
    "japaneseText": "Kourogi yo asu no kome dake wa aru"
  },
  {
    "id": 127,
    "publicationId": 3,
    "englishText": "I reach figs their ripeness",
    "japaneseText": "Te ga todoku ichijiku no urezama"
  },
  {
    "id": 128,
    "publicationId": 3,
    "englishText": "Memories the tides rise at the hometown ferry",
    "japaneseText": "Omoide wa shio michitekuru furusato no watashiba"
  },
  {
    "id": 129,
    "publicationId": 3,
    "englishText": "I see the sun off beyond the mountains and eat my meal",
    "japaneseText": "Yama no anata e o-hi-sama o miokuri gohan ni suru"
  },
  {
    "id": 130,
    "publicationId": 3,
    "englishText": "Noon too quiet flies know the fly-swatter",
    "japaneseText": "Hiru mo shizukana hae ga haetataki o shitteiru"
  },
  {
    "id": 131,
    "publicationId": 3,
    "englishText": "The misery of no longer being able to get drunk the crickets chirp",
    "japaneseText": "Yoenakunatta mijimesa wa korogi ga naku"
  },
  {
    "id": 132,
    "publicationId": 3,
    "englishText": "Was so good the evening shower the sounds of water here and there",
    "japaneseText": "Honni yokatta yuudachi no mizuoto ga soko koko"
  },
  {
    "id": 133,
    "publicationId": 3,
    "englishText": "Finally the mail came and now only ripe persimmons drop",
    "japaneseText": "Yatto yuubin ga kite sorekara jukushi no ochiru dake"
  },
  {
    "id": 134,
    "publicationId": 3,
    "englishText": "Each time a fruit ripens and drops I pick it up",
    "japaneseText": "Urete wa ochiru mi o hirou"
  },
  {
    "id": 135,
    "publicationId": 3,
    "englishText": "After seeing someone off I return alone through the quagmire",
    "japaneseText": "Hito o miokuri hitori de kaeru nukarumi"
  },
  {
    "id": 136,
    "publicationId": 3,
    "englishText": "Moonlit night, I wash all the rice I have",
    "japaneseText": "Tsukiyo, aru dake no kome o togu"
  },
  {
    "id": 137,
    "publicationId": 3,
    "englishText": "The sky's depth dead leaves sunk in the water",
    "japaneseText": "Sora no fukasa wa ochiba shizundeiru mizu"
  },
  {
    "id": 138,
    "publicationId": 3,
    "englishText": "With the moonlight from behind me I cross the water",
    "japaneseText": "Ushiro kara tsuki no kage suru mizu o wataru"
  },
  {
    "id": 139,
    "publicationId": 3,
    "englishText": "Broken with a snap bamboo among bamboo",
    "japaneseText": "Pokiri to orete take ga take no naka"
  },
  {
    "id": 140,
    "publicationId": 3,
    "englishText": "The moon goes behind it and there's the thicket's shadow",
    "japaneseText": "Tsuki ga ura e mawareba yabukage"
  },
  {
    "id": 141,
    "publicationId": 3,
    "englishText": "This year too this its last night sleet starts",
    "japaneseText": "Kotoshi mo kon'ya giri no mizore to natta"
  },
  {
    "id": 142,
    "publicationId": 3,
    "englishText": "Here like this I place myself winter night",
    "japaneseText": "Koko ni koushite watashi oiteiru fuyuyo"
  },
  {
    "id": 143,
    "publicationId": 3,
    "englishText": "I get sick and a blue heron comes near",
    "japaneseText": "Yameba aosagi ga sokora made"
  },
  {
    "id": 144,
    "publicationId": 3,
    "englishText": "I'm eating sake the mountain's withered",
    "japaneseText": "Sake o tabeteiru yama wa kareteiru"
  },
  {
    "id": 145,
    "publicationId": 3,
    "englishText": "The brightness of snow everywhere the quietness",
    "japaneseText": "Yuki no akarusa ga ie ippai no shizukesa"
  },
  {
    "id": 146,
    "publicationId": 3,
    "englishText": "Camellias fall the water flows",
    "japaneseText": "Tsubaki no ochiru mizu no nagareru"
  },
  {
    "id": 147,
    "publicationId": 3,
    "englishText": "I wake snow falls, not that I'm lonely",
    "japaneseText": "Nezame yuki furu, sabishigaru dewa nai ga"
  },
  {
    "id": 148,
    "publicationId": 3,
    "englishText": "The owl in the owl's way I in my way can't sleep",
    "japaneseText": "Fukurou wa fukurou de watashi wa watashi de nemurenai"
  },
  {
    "id": 149,
    "publicationId": 3,
    "englishText": "The moon goes behind it still the tree shadow",
    "japaneseText": "Tsuki ga ura e mawattemo kokage"
  },
  {
    "id": 150,
    "publicationId": 3,
    "englishText": "The bagworm too dripping spring has come yes",
    "japaneseText": "Minomushi mo shizuku suru haru ga kita zo na"
  },
  {
    "id": 151,
    "publicationId": 3,
    "englishText": "Grasses and trees alive I'm back they luxuriate",
    "japaneseText": "Kusa ya ki ya ikite modotte shigetteiru"
  },
  {
    "id": 152,
    "publicationId": 3,
    "englishText": "Ill alone a morning turns into evening green leaves",
    "japaneseText": "Yamite hitori no asa ga yuube to nariyuku aoba"
  },
  {
    "id": 153,
    "publicationId": 3,
    "englishText": "The persimmon's young leaves glitter in the sky I'm yet not dead",
    "japaneseText": "Kaki no wakaba no kagayaku sora o shinazuni iru"
  },
  {
    "id": 154,
    "publicationId": 3,
    "englishText": "Bees butterflies grasses so many blooming",
    "japaneseText": "Hachi ga tefucho ga kusa ga nambo demo saite"
  },
  {
    "id": 155,
    "publicationId": 3,
    "englishText": "Always chained the dog has no choice but to bark",
    "japaneseText": "Itsumo tsunagarete hoeru hoka nai inu desu"
  },
  {
    "id": 156,
    "publicationId": 3,
    "englishText": "Sprouting growing blooming happiness",
    "japaneseText": "Haete nobite saiteiru koufuku"
  },
  {
    "id": 157,
    "publicationId": 3,
    "englishText": "Their shadows distinct the young leaves",
    "japaneseText": "Kage mo hakkiri to wakaba"
  },
  {
    "id": 158,
    "publicationId": 3,
    "englishText": "Suddenly out of a hole a lizard is it",
    "japaneseText": "Hyoito ana kara tokage ka yo"
  },
  {
    "id": 159,
    "publicationId": 3,
    "englishText": "Peckers and pussies overflowing hot water",
    "japaneseText": "Chimpoko mo ososo mo waite afureru yu"
  },
  {
    "id": 160,
    "publicationId": 3,
    "englishText": "Alone hushed a bamboo shoot grows to become bamboo",
    "japaneseText": "Hitori hissori takenoko take ni naru"
  },
  {
    "id": 161,
    "publicationId": 3,
    "englishText": "A mountain peers from behind a mountain the rainy season's over",
    "japaneseText": "Yama kara yama ga nozoite tsuyubare"
  },
  {
    "id": 162,
    "publicationId": 3,
    "englishText": "With something to eat something to drink in the weeds rain",
    "japaneseText": "Taberu mono wa atte you mono mo atte zassou no ame"
  },
  {
    "id": 163,
    "publicationId": 3,
    "englishText": "Under burning heaven an endless line of ants",
    "japaneseText": "Enten no hate mo naku ari no gyouretsu"
  },
  {
    "id": 164,
    "publicationId": 3,
    "englishText": "The spider spreads his net I affirm myself",
    "japaneseText": "Kumo wa ami haru watashi wa watashi o kouteisuru"
  },
  {
    "id": 165,
    "publicationId": 3,
    "englishText": "Ready to die any moment grass blooms bears seeds",
    "japaneseText": "Itsu de mo shineru kusa ga saitari minottari"
  },
  {
    "id": 166,
    "publicationId": 3,
    "englishText": "The sun at its most intense one leaf falls",
    "japaneseText": "Hizakari ochiru ha no ichimai"
  },
  {
    "id": 167,
    "publicationId": 3,
    "englishText": "A cool wind passes so do bees so do dragonflies",
    "japaneseText": "Kaze ga suzushiku fukinukeru node hachi mo tombo mo"
  },
  {
    "id": 168,
    "publicationId": 3,
    "englishText": "Drink hometown's water bathe in the water",
    "japaneseText": "Furusato no mizu o nomi mizu o abi"
  },
  {
    "id": 169,
    "publicationId": 3,
    "englishText": "Make this the place to die grasses luxuriate luxuriate",
    "japaneseText": "Koko o shini basho to shite kusa no shigeri ni shigeri"
  },
  {
    "id": 170,
    "publicationId": 3,
    "englishText": "In an autumn wind, an angry praying mantis this",
    "japaneseText": "Akikaze no, haratateteiru kamakiri de"
  },
  {
    "id": 171,
    "publicationId": 3,
    "englishText": "Burdened with a heavy load he's blind",
    "japaneseText": "Omoni o oute mekura de aru"
  },
  {
    "id": 172,
    "publicationId": 3,
    "englishText": "The road where we parted straight",
    "japaneseText": "Wakaretekita michi ga massugu"
  },
  {
    "id": 173,
    "publicationId": 3,
    "englishText": "Wake from a nap whichever way I look mountains",
    "japaneseText": "Hirune samete dochira o mite mo yama"
  },
  {
    "id": 174,
    "publicationId": 3,
    "englishText": "A good inn mountains everywhere and a sake store in front",
    "japaneseText": "Yoi yado de dochira mo yama de mae wa sakaya de"
  },
  {
    "id": 175,
    "publicationId": 3,
    "englishText": "I sit and there's a wind autumn weeds",
    "japaneseText": "Suwareba kaze ga aru aki no zassou"
  },
  {
    "id": 176,
    "publicationId": 3,
    "englishText": "I decide to sleep here grass seeds spill",
    "japaneseText": "Koko de neru to suru kusa no mi no koboreru"
  },
  {
    "id": 177,
    "publicationId": 3,
    "englishText": "Bush clover and pampas grass are today's road",
    "japaneseText": "Hagi ga susuki ga kyou no michi"
  },
  {
    "id": 178,
    "publicationId": 3,
    "englishText": "Leaves fall fall into my alms bowl too",
    "japaneseText": "Ki no ha furu furu hachinoko e mo"
  },
  {
    "id": 179,
    "publicationId": 3,
    "englishText": "I walk and grass seeds I sit and grass seeds",
    "japaneseText": "Arukeba kusa no mi suwareba kusa no mi"
  },
  {
    "id": 180,
    "publicationId": 3,
    "englishText": "Now, which way shall I go the wind blows",
    "japaneseText": "Sate, dochira e iko kaze ga fuku"
  },
  {
    "id": 181,
    "publicationId": 3,
    "englishText": "There's only this road spring snow falls",
    "japaneseText": "Kono michi shika nai haru no yuki furu"
  },
  {
    "id": 182,
    "publicationId": 3,
    "englishText": "Because the mountain's quiet I take off my hat",
    "japaneseText": "Yama shizuka nareba kasa o nugu"
  },
  {
    "id": 183,
    "publicationId": 3,
    "englishText": "The two or three left become ripe persimmons clouds come and go",
    "japaneseText": "Nokosareta futatsu mittsu ga jukushi to naru kumo no yukiki"
  },
  {
    "id": 184,
    "publicationId": 3,
    "englishText": "No one comes cayenne peppers turn red",
    "japaneseText": "Dare mo konai tougarashi akou naru"
  },
  {
    "id": 185,
    "publicationId": 3,
    "englishText": "I take ill and the pickled plums' red",
    "japaneseText": "Yameba umeboshi no akasa"
  },
  {
    "id": 186,
    "publicationId": 3,
    "englishText": "No matter how I think it's all the same I step on dead leaves and walk on",
    "japaneseText": "Nambo kangaete mo onnaji koto no ochiba fumi aruku"
  },
  {
    "id": 187,
    "publicationId": 3,
    "englishText": "I lie down I get up leaves fall",
    "japaneseText": "Netari okitari ochiba suru"
  },
  {
    "id": 188,
    "publicationId": 3,
    "englishText": "Wide awake and feeling the moon right above",
    "japaneseText": "Hokkari samete maue no tsuki o kanjiteiru"
  },
  {
    "id": 189,
    "publicationId": 3,
    "englishText": "Withering grass I sit on its beauty",
    "japaneseText": "Kareyuku kusa no utsukushisa ni suwaru"
  },
  {
    "id": 190,
    "publicationId": 3,
    "englishText": "I live withdrawn and a wren",
    "japaneseText": "Hissori kuraseba misosazai"
  },
  {
    "id": 191,
    "publicationId": 3,
    "englishText": "Dangling the snow falling on a bagworm",
    "japaneseText": "Burari to sagatte yuki furu minomushi"
  },
  {
    "id": 192,
    "publicationId": 3,
    "englishText": "Just as they are weeds sprout",
    "japaneseText": "Aru ga mama zassou to shite me o fuku"
  },
  {
    "id": 193,
    "publicationId": 3,
    "englishText": "From the mountain white flowers to my desk",
    "japaneseText": "Yama kara shiroi hana o tsukue ni"
  },
  {
    "id": 194,
    "publicationId": 3,
    "englishText": "Into the sky young bamboo with no troubling thoughts",
    "japaneseText": "Sora e wakatake no nayami mo nashi"
  },
  {
    "id": 195,
    "publicationId": 3,
    "englishText": "Around me all grasses every one blooming",
    "japaneseText": "Mi no mawari kusa darake minna saiteru"
  },
  {
    "id": 196,
    "publicationId": 3,
    "englishText": "I roll on my back and there's the blue sky",
    "japaneseText": "Korori nekorobeba aozora"
  },
  {
    "id": 197,
    "publicationId": 3,
    "englishText": "Seeking what I go through the wind",
    "japaneseText": "Nani o motomeru kaze no naka yuku"
  },
  {
    "id": 198,
    "publicationId": 3,
    "englishText": "In the depths of the green leaves the path still then a grave",
    "japaneseText": "Aoba no oku e nao michi ga atte haka"
  },
  {
    "id": 199,
    "publicationId": 3,
    "englishText": "The moon before you know it brightens and katydids",
    "japaneseText": "Tsuki ga itsushika akarukunareba kirigirisu"
  },
  {
    "id": 200,
    "publicationId": 3,
    "englishText": "Butterflies entangling in the shadow in the sun",
    "japaneseText": "Tefutefu motsuretsutsu kagehinata"
  },
  {
    "id": 201,
    "publicationId": 3,
    "englishText": "Once you die, weeds rain falls",
    "japaneseText": "Shindeshimaeba, zassou ame furu"
  },
  {
    "id": 202,
    "publicationId": 3,
    "englishText": "Before death a cool breeze",
    "japaneseText": "Shi o mae ni suzushii kaze"
  },
  {
    "id": 203,
    "publicationId": 3,
    "englishText": "Even while wind chimes tinkle death sneaks up",
    "japaneseText": "Fuurin no naru sae shi no shinobiyoru"
  },
  {
    "id": 204,
    "publicationId": 3,
    "englishText": "Have no thoughts to leave the evening's sweet potato leaves aflutter",
    "japaneseText": "Omoi oku koto wa nai yuube no imo no ha hirahira"
  },
  {
    "id": 205,
    "publicationId": 3,
    "englishText": "The wound healing turning autumnal the wind blows",
    "japaneseText": "Kizu ga ieyuku aki meita kaze to natte kaze fuku"
  },
  {
    "id": 206,
    "publicationId": 3,
    "englishText": "I walk and cuckoos I hurry and cuckoos",
    "japaneseText": "Arukeba kakkou isogeba kakkuu"
  },
  {
    "id": 207,
    "publicationId": 3,
    "englishText": "Heart empty the rough waves rolling in rolling out",
    "japaneseText": "Kokoro munashiku aranami no yosete wa kaeshi"
  },
  {
    "id": 208,
    "publicationId": 3,
    "englishText": "Crouched on a dune today I still can't see Sado",
    "japaneseText": "Sakyuu ni uzukumari kyou mo Sado wa mienai"
  },
  {
    "id": 209,
    "publicationId": 3,
    "englishText": "Legs stretched toward the rough sea before and after the journey",
    "japaneseText": "Araumi e ashi nagedashite tabi no atosaki"
  },
  {
    "id": 210,
    "publicationId": 3,
    "englishText": "Having come this far I drink water and leave",
    "japaneseText": "Koko made o koshi mizu nonde saru"
  },
  {
    "id": 211,
    "publicationId": 3,
    "englishText": "A butterfly aflutter has gone over the roof tiles",
    "japaneseText": "Tefutefu hirahira iraka o koeta"
  },
  {
    "id": 212,
    "publicationId": 3,
    "englishText": "Sobering a wind sadly blows through me",
    "japaneseText": "Yoizame no kaze no kanashiku fukinukeru"
  },
  {
    "id": 213,
    "publicationId": 3,
    "englishText": "My heart calms down and the sound of the water",
    "japaneseText": "Kokoro ochitsukeba mizu no oto"
  },
  {
    "id": 214,
    "publicationId": 3,
    "englishText": "I follow the bright and dark sides of a wind",
    "japaneseText": "Kaze no meian o tadoru"
  },
  {
    "id": 215,
    "publicationId": 3,
    "englishText": "From the moon flutters down a persimmon leaf",
    "japaneseText": "Tsuki kara hirari to kaki no ha"
  },
  {
    "id": 216,
    "publicationId": 3,
    "englishText": "Waiting for what day by day dead leaves grow deep",
    "japaneseText": "Nani o matsu hi ni hi ni ochiba fukounaru"
  },
  {
    "id": 217,
    "publicationId": 3,
    "englishText": "Drying up the water's clarity",
    "japaneseText": "Karetekuru mizu no sumi yo"
  },
  {
    "id": 218,
    "publicationId": 3,
    "englishText": "Wash 'em and daikon grow even more white",
    "japaneseText": "Araeba daikon iyoiyo shiroshi"
  },
  {
    "id": 219,
    "publicationId": 3,
    "englishText": "With a shadow too desultorily late night I'm eating",
    "japaneseText": "Kage mo bosoboso yofuke no watashi ga tabeteiru"
  },
  {
    "id": 220,
    "publicationId": 3,
    "englishText": "I know the footfalls stepping on the fallen leaves coming closer",
    "japaneseText": "Ochiba fumikuru sono ashioto wa shitteiru"
  },
  {
    "id": 221,
    "publicationId": 3,
    "englishText": "After all being alone's lonesome the withered grass",
    "japaneseText": "Yappari hitori wa samishii karekusa"
  },
  {
    "id": 222,
    "publicationId": 3,
    "englishText": "Leaves fallen all the more intimate my neighbor's light",
    "japaneseText": "Ochiba shite sarani shitashiku otonari no hi no"
  },
  {
    "id": 223,
    "publicationId": 3,
    "englishText": "Out of the wind caw caw crows",
    "japaneseText": "Kaze no naka kara kaakaa karasu"
  },
  {
    "id": 224,
    "publicationId": 3,
    "englishText": "The leaves fallen no more leaves to fall the sun",
    "japaneseText": "Ha no ochite ochiru ha wa nai taiyou"
  },
  {
    "id": 225,
    "publicationId": 3,
    "englishText": "Snow falls I have things to eat snow falls",
    "japaneseText": "Yuki furu taberu mono wa atte yuki furu"
  },
  {
    "id": 226,
    "publicationId": 3,
    "englishText": "Moon's brightness I wonder where they're bombing",
    "japaneseText": "Tsuki no akarusa wa doko o bakugeki shiteiru koto ka"
  },
  {
    "id": 227,
    "publicationId": 3,
    "englishText": "Snow falling on snow battle is about to begin they say",
    "japaneseText": "Yuki e yuki furu tatakai wa kore kara da to iu"
  },
  {
    "id": 228,
    "publicationId": 3,
    "englishText": "The town's festive you've returned as bones have you",
    "japaneseText": "Machi wa omatsuri o-hone to natte kaeraretaka"
  },
  {
    "id": 229,
    "publicationId": 3,
    "englishText": "Horse too requisitioned grandpa grandma",
    "japaneseText": "Uma mo mesarete ojiisan obasan"
  },
  {
    "id": 230,
    "publicationId": 3,
    "englishText": "Legs and arms left in China you are back to Japan",
    "japaneseText": "Ashi wa te wa Shina ni nokoshite futatabi Nihon ni"
  },
  {
    "id": 231,
    "publicationId": 3,
    "englishText": "Wordlessly playing a single bird in the blossoms",
    "japaneseText": "Damatte asubu tori no ichiwa ga hana no naka"
  },
  {
    "id": 232,
    "publicationId": 3,
    "englishText": "The spring wind's bagworm has taken a sudden peek",
    "japaneseText": "Harukaze no minomushi hyoito nozoita"
  },
  {
    "id": 233,
    "publicationId": 3,
    "englishText": "Taking a sudden peek the bagworm doesn't cry",
    "japaneseText": "Hyoito nozoite minomushi wa nakanai"
  },
  {
    "id": 234,
    "publicationId": 3,
    "englishText": "The green of the grass I return barefoot",
    "japaneseText": "Kusa no aosa yo hadashi de modoru"
  },
  {
    "id": 235,
    "publicationId": 3,
    "englishText": "In rows bamboo shoots turning into bamboo",
    "japaneseText": "Narande takenoko take ni naritsutsu"
  },
  {
    "id": 236,
    "publicationId": 3,
    "englishText": "In the wind I walk blaming myself",
    "japaneseText": "Kaze no naka onore o semetsutsu aruku"
  },
  {
    "id": 237,
    "publicationId": 3,
    "englishText": "Winter shower all the rice I got cooked good",
    "japaneseText": "Shigururu ya aru dake no gohan yo taketa"
  },
  {
    "id": 238,
    "publicationId": 3,
    "englishText": "Death held tight the cayenne pepper scarlet",
    "japaneseText": "Shi o hishi to tougarashi makka na"
  },
  {
    "id": 239,
    "publicationId": 3,
    "englishText": "Death's stillness is the clear sky a leafless tree",
    "japaneseText": "Shi no shizukesa wa harete ha no nai ki"
  },
  {
    "id": 240,
    "publicationId": 3,
    "englishText": "There in front of death I put the moon",
    "japaneseText": "Soko ni tsuki o shi no mae ni oku"
  },
  {
    "id": 241,
    "publicationId": 3,
    "englishText": "I open the window the spring filling the window",
    "japaneseText": "Mado akete mado ippai no haru"
  },
  {
    "id": 242,
    "publicationId": 3,
    "englishText": "Stillness, bamboo shoots have all turned into bamboo",
    "japaneseText": "Shizukesa, takenoko minna take ni natta"
  },
  {
    "id": 243,
    "publicationId": 3,
    "englishText": "Living alone and green green is the grass",
    "japaneseText": "Hitori sumeba aoao to shite kusa"
  },
  {
    "id": 244,
    "publicationId": 3,
    "englishText": "A hop a single red frog",
    "japaneseText": "Tonde ippiki akagaeru"
  },
  {
    "id": 245,
    "publicationId": 3,
    "englishText": "Near my body water comes flowing",
    "japaneseText": "Mi no chikaku mizu no nagarete kuru"
  },
  {
    "id": 246,
    "publicationId": 3,
    "englishText": "From somewhere clouds appear autumn clouds",
    "japaneseText": "Doko kara tomo naku kumo ga detekite aki no kumo"
  },
  {
    "id": 247,
    "publicationId": 3,
    "englishText": "Autumn wind, whichever way I want to go as far as I can go",
    "japaneseText": "Akikaze, ikitai hou e ikeru tokoro made"
  },
  {
    "id": 248,
    "publicationId": 3,
    "englishText": "Since I stopped coming across people the mountain butterflies",
    "japaneseText": "Hito ni awanakunarite yori yama no tefutefu"
  },
  {
    "id": 249,
    "publicationId": 3,
    "englishText": "With this body that can die any place spring wind",
    "japaneseText": "Doko demo shineru karada de shumpuu"
  },
  {
    "id": 250,
    "publicationId": 3,
    "englishText": "Balmy the butterfly is dead",
    "japaneseText": "Uraura chou wa shindeiru"
  },
  {
    "id": 251,
    "publicationId": 3,
    "englishText": "Cherry blossoms at their peak a prison",
    "japaneseText": "Sakura mankai ni shite keimusho"
  },
  {
    "id": 252,
    "publicationId": 3,
    "englishText": "Of the house where I was born no trace left fireflies",
    "japaneseText": "Umareta ie wa atokata mo nai hotaru"
  },
  {
    "id": 253,
    "publicationId": 3,
    "englishText": "Water's delicious frog croak",
    "japaneseText": "Mizu no umasa o kawazu naku"
  },
  {
    "id": 254,
    "publicationId": 3,
    "englishText": "Letting the moon as far as my bed I decide to sleep",
    "japaneseText": "Nedoko made tsuki o ire neru koto ni suru"
  },
  {
    "id": 255,
    "publicationId": 3,
    "englishText": "The darkness of the rice trusty I wash it",
    "japaneseText": "Kome no kurosa mo tanomoshiku arau"
  },
  {
    "id": 256,
    "publicationId": 3,
    "englishText": "My bellybutton a pool of sweat",
    "japaneseText": "Heso ga ase tameteiru"
  },
  {
    "id": 257,
    "publicationId": 3,
    "englishText": "Walls crumbling from there vine grass",
    "japaneseText": "Kabe ga kuzurete soko kara tsurugusa"
  },
  {
    "id": 258,
    "publicationId": 3,
    "englishText": "That's a pre-death butterfly dance",
    "japaneseText": "Sore wa shi no mae no tefutefu no mai"
  },
  {
    "id": 259,
    "publicationId": 3,
    "englishText": "Autumn's end-turned-fly crawls about",
    "japaneseText": "Aki mo owari no hae to nari haiaruku"
  },
  {
    "id": 260,
    "publicationId": 3,
    "englishText": "Moon invisible moonlit water brimming",
    "japaneseText": "Tsuki wa mienai tsukiakari no mizu manman"
  },
  {
    "id": 261,
    "publicationId": 3,
    "englishText": "Cawing a crow, flapping a crow, with no place to settle down",
    "japaneseText": "Naite karasu no, tonde karasu no, ochitsuku tokoro ga nai"
  },
  {
    "id": 262,
    "publicationId": 3,
    "englishText": "The sound of water today too alone I travel",
    "japaneseText": "Mizuoto kyou mo hitori tabi yuku"
  },
  {
    "id": 263,
    "publicationId": 3,
    "englishText": "Mountain's quietness the white flower",
    "japaneseText": "Yama no shizukesa wa shiroi hana"
  },
  {
    "id": 264,
    "publicationId": 3,
    "englishText": "Can't calm down the futon heavy I sleep",
    "japaneseText": "Ochitsukenai futon omotaku neru"
  },
  {
    "id": 265,
    "publicationId": 3,
    "englishText": "Under burning heaven the railway track straight",
    "japaneseText": "Enten no reeru massugu"
  },
  {
    "id": 266,
    "publicationId": 3,
    "englishText": "A crow flies away I'll cross the water",
    "japaneseText": "Karasu tondeyuku mizu o wataro"
  },
  {
    "id": 267,
    "publicationId": 4,
    "englishText": "where the walls are\nfalling apart the\nvines the grass"
  },
  {
    "id": 268,
    "publicationId": 4,
    "englishText": "men women\nand the shadows too\ndancing"
  },
  {
    "id": 269,
    "publicationId": 4,
    "englishText": "the waves sound sometimes\nclose and sometimes far away\nhow much more of life"
  },
  {
    "id": 270,
    "publicationId": 5,
    "englishText": "Pine trees\nWith branches all drooping—\nNamu-kanzeon sutra.",
    "japaneseText": "Matsu wa mina / eda tarete / namu-kanzeon"
  },
  {
    "id": 271,
    "publicationId": 5,
    "englishText": "Ringing the temple-bell\nTo the sound of pine trees;\nMornings and evenings.",
    "japaneseText": "Matsukaze ni / ake kure no / kane tsuite"
  },
  {
    "id": 272,
    "publicationId": 5,
    "englishText": "Sweeping the yard for a change,\nFlowers in the hedge are in bloom.",
    "japaneseText": "Hisashiburini haku / kakine no hana ga saita"
  },
  {
    "id": 273,
    "publicationId": 5,
    "englishText": "Getting further and further\nInto the mountains,\nBut still deep blue mountains.",
    "japaneseText": "Wakeittemo / wakeittemo / aoi yama"
  },
  {
    "id": 274,
    "publicationId": 5,
    "englishText": "Soaked and Soggy to the core,\nIt's a milestone.",
    "japaneseText": "Shitodo ni nurete / korewa michishirube no ishi"
  },
  {
    "id": 275,
    "publicationId": 5,
    "englishText": "Under the canopy of scorching heaven\nI walk and beg.",
    "japaneseText": "Enten wo itadaite / koi aruku"
  },
  {
    "id": 276,
    "publicationId": 5,
    "englishText": "Lone crow is cawing;\nI'm alone too.",
    "japaneseText": "Karasu naite / watashi mo hitori"
  },
  {
    "id": 277,
    "publicationId": 5,
    "englishText": "In the midst of life and death\nSnow's falling thick and fast.",
    "japaneseText": "Shoji no naka no / yuki furishikiru"
  },
  {
    "id": 278,
    "publicationId": 5,
    "englishText": "Leaves are falling;\nI walk and walk.",
    "japaneseText": "Konoha chiru / aruki tsumeru"
  },
  {
    "id": 279,
    "publicationId": 5,
    "englishText": "All alone,\nLetting mosquitoes bite my flesh.",
    "japaneseText": "Hitoride / ka ni kuwareteiru"
  },
  {
    "id": 280,
    "publicationId": 5,
    "englishText": "Stretching my legs\nTo the light of a westering sun.",
    "japaneseText": "Nagedashite / mada hi no aru ashi"
  },
  {
    "id": 281,
    "publicationId": 5,
    "englishText": "Walking with a dragonfly\nResting on my sedge-hat.",
    "japaneseText": "Kasa ni tombo wo / tomarasete / aruku"
  },
  {
    "id": 282,
    "publicationId": 5,
    "englishText": "It's a straight road\nThat makes me feel lonely.\nIt's a lonely road that has no turning."
  },
  {
    "id": 283,
    "publicationId": 5,
    "englishText": "In silence\nI put on straw sandals for today.",
    "japaneseText": "Damatte / kyo no waraji haku"
  },
  {
    "id": 284,
    "publicationId": 5,
    "englishText": "Late autumn rain's falling;\nI have yet to die.",
    "japaneseText": "Shigururu ya / shinanai de iru"
  },
  {
    "id": 285,
    "publicationId": 5,
    "englishText": "My shadow on the water,\nTraveler I am.",
    "japaneseText": "Mizu ni kage aru / tabibito de aru"
  },
  {
    "id": 286,
    "publicationId": 5,
    "englishText": "Late autumn rain's falling\nInto the mountain,\nTowards which I go on walking.",
    "japaneseText": "Shigururu ya / shigururu yama e / ayumi iru"
  },
  {
    "id": 287,
    "publicationId": 5,
    "englishText": "Buds of trees,\nBuds of grasses,\nI keep on walking.",
    "japaneseText": "Kinome  / kusanome / aruki tsuzukeru"
  },
  {
    "id": 288,
    "publicationId": 5,
    "englishText": "I've survived—\nScratching my body.",
    "japaneseText": "Iki nokotta karada / kaite iru"
  },
  {
    "id": 289,
    "publicationId": 5,
    "englishText": "Mountains I've left for good\nAre going out of sight.",
    "japaneseText": "Mata miru koto mo nai yama ga / toozakaru"
  },
  {
    "id": 290,
    "publicationId": 5,
    "englishText": "Crickets are chirping,\nChirping to me all the time.",
    "japaneseText": "Koorogi ni / nakarete bakari"
  },
  {
    "id": 291,
    "publicationId": 5,
    "englishText": "Shrike is chirping;\nNo place to throw away myself.",
    "japaneseText": "Mozu maite / mi no sutedokoro nashi"
  },
  {
    "id": 292,
    "publicationId": 5,
    "englishText": "Slipped, tumbled,\nMountain is quiet and alone.",
    "japaneseText": "Subette koronde / yama ga hissori"
  },
  {
    "id": 293,
    "publicationId": 5,
    "englishText": "My tired legs—\nDragonfly landed on one.",
    "japaneseText": "Tsukareta ashi e / tombo tomatta"
  },
  {
    "id": 294,
    "publicationId": 5,
    "englishText": "Monk-robe\nThreadbare so—\nGrass seeds.",
    "japaneseText": "Houe / konnani yaburete / kusa no mi"
  },
  {
    "id": 295,
    "publicationId": 5,
    "englishText": "Behind the rocks,\nSure enough, a fountain;\nEureka!",
    "japaneseText": "Yuwa kage / masashiku / mizu ga waite iru"
  },
  {
    "id": 296,
    "publicationId": 5,
    "englishText": "Those clouds threw a rain shower;\nI'm wet through.",
    "japaneseText": "Ano kumo ga / otoshita ane ni / nurete iru"
  },
  {
    "id": 297,
    "publicationId": 5,
    "englishText": "Autumn is come;\nSitting on the weeds.",
    "japaneseText": "Aki to natta / zasso ni suwaru"
  },
  {
    "id": 298,
    "publicationId": 5,
    "englishText": "Water so tasty,\nFlowing all over.",
    "japaneseText": "Konnani umai mizu ga / afurete iru"
  },
  {
    "id": 299,
    "publicationId": 5,
    "englishText": "Have come down to the village\nWith the sound of water.",
    "japaneseText": "Mizuoto to isshoni / sato e orite kita"
  },
  {
    "id": 300,
    "publicationId": 5,
    "englishText": "No clouds whatsoe'er,\nI took off my sedge-hat.",
    "japaneseText": "Mattaku kumo ga nai / kasa wo nugi"
  },
  {
    "id": 301,
    "publicationId": 5,
    "englishText": "Drunk,\nFound myself sleeping with crickets.",
    "japaneseText": "Youte / koorogi to / nete itayo"
  },
  {
    "id": 302,
    "publicationId": 5,
    "englishText": "Sound of raindrops,\nYou're getting old, too.",
    "japaneseText": "Amadare no oto mo / toshi totta"
  },
  {
    "id": 303,
    "publicationId": 5,
    "englishText": "No more doors to beg,\nClouds o'er the mountains.",
    "japaneseText": "Mono gou ie mo nakunari / yama niwa kumo"
  },
  {
    "id": 304,
    "publicationId": 5,
    "englishText": "—Reminiscence—\nMy sedge-hat\nGetting leaky at last.",
    "japaneseText": "Kasa mo / moridashita ka"
  },
  {
    "id": 305,
    "publicationId": 5,
    "englishText": "—Self-ridicule—\nI'm leaving\nWith my backside wet\nIn late autumn rain.",
    "notes": "Note: Another self of Santoka's is watching himself from behind with\nself-scorn. He is dual-eyed, before and hind, like a frog\nor a dragonfly.",
    "japaneseText": "Ushiro sugata no / shigurete yuku ka"
  },
  {
    "id": 306,
    "publicationId": 5,
    "englishText": "Into begging bowl of iron\nDown came the hailstones.",
    "japaneseText": "Teppachu no naka e mo arare"
  },
  {
    "id": 307,
    "publicationId": 5,
    "englishText": "My native town\nFar, far away—\nBurgeoning trees.",
    "japaneseText": "Furusato wa / tooku shite / ki no me"
  },
  {
    "id": 308,
    "publicationId": 5,
    "englishText": "Getting out of a nice bath\nInto lovely moonlight.",
    "japaneseText": "Yoi yu kara / yoi tsuki e deta"
  },
  {
    "id": 309,
    "publicationId": 5,
    "englishText": "Among budding trees\nBirds are now singing.",
    "japaneseText": "Haya mebuku ki de / naite iru"
  },
  {
    "id": 310,
    "publicationId": 5,
    "englishText": "Something fell on my sedge-hat—\nCamellia.",
    "japaneseText": "Kasa e pottori / tsubaki datta"
  },
  {
    "id": 311,
    "publicationId": 5,
    "englishText": "Eating fully enough with thanks,\nI put down chopsticks;\nAll alone.",
    "japaneseText": "Itadaite / tarite hitori no / hashi wo oku"
  },
  {
    "id": 312,
    "publicationId": 5,
    "englishText": "In autumn wind\nI pick up a pebble.",
    "japaneseText": "Akikaze no / ishi wo hirou"
  },
  {
    "id": 313,
    "publicationId": 5,
    "englishText": "Alongside today's road\nDandelions in bloom.",
    "japaneseText": "Kyo nomichi no / tampopo saita"
  },
  {
    "id": 314,
    "publicationId": 5,
    "englishText": "It's raining in my hometown;\nI'm walking barefoot.",
    "japaneseText": "Ame furu furusato wa / hadashi de aruku"
  },
  {
    "id": 315,
    "publicationId": 5,
    "englishText": "Having moved in and settled down,\nI'm surrounded by flowers of the opposite shore/\nflowers of the autumnal equinox.*",
    "japaneseText": "Utsuri kite / o-higanbana no / hana zakari",
    "notes": "*opposite shore (Higan)—Buddhistic term.\nautumnal equinox (Higan/Shuubun-no-hi)—day on the calendar."
  },
  {
    "id": 316,
    "publicationId": 5,
    "englishText": "Glory of the morning sky\nHeralds the coming of rain;\nMust sow the seeds of radish.",
    "japaneseText": "Asayake / ame furu / daikon makou"
  },
  {
    "id": 317,
    "publicationId": 5,
    "englishText": "Out of the evening sky\nI pick and pluck a yuzu-citrus.*",
    "notes": "*Yuzu—yellow, sour and fragrant citrus resembling a lemon, not oval\nbut round and softer. It is symbolic of Japan's winter.\nYuzu-trees, together with persimmon-trees, are seen in the yards of\nrural houses—typical scenery of Japan's countryside just as the\napple tree is to the West. On the day of winter solstice, it is the\ncustom with the Japanese to enjoy yuzu-bath (Yuzu-yu) either in the\nhousehold or in public bathhouses (Sentoh). Urban dwellers can get\nyuzu at stores. Yuzu is also used as healthy natural vinegar. A\ngood subject (season-word) for Haiku. Lots of Haikuists like to\ncompose yuzu-ku around this season. (T. Nonin)",
    "japaneseText": "Yuuzora kara / yuzu no hitotsu wo morau"
  },
  {
    "id": 318,
    "publicationId": 5,
    "englishText": "Tea-blossoms keep falling—\nLet them fall as they do.",
    "japaneseText": "Cha-no-hana no / chiru bakari / chirashite oku"
  },
  {
    "id": 319,
    "publicationId": 5,
    "englishText": "Winter is come;\nSticks of wood,\nSticks of bamboo.",
    "japaneseText": "Fuyu ga kiteiru / kigire / takegire"
  },
  {
    "id": 320,
    "publicationId": 5,
    "englishText": "The moon has risen;\nI'm awaiting nobody and nothing.",
    "japaneseText": "Tsuki ga nobotte / nani wo matsu deno naku"
  },
  {
    "id": 321,
    "publicationId": 5,
    "englishText": "There's something to eat,\nThis and that—\nWindy all day.",
    "japaneseText": "Are kore / taberumo wa atte / kaze no ichinichi"
  },
  {
    "id": 322,
    "publicationId": 5,
    "englishText": "Sound of water—\nI'm truly settled down and relaxed.",
    "japaneseText": "Mizuoto / shinjitsu / ochitsuki mashita"
  },
  {
    "id": 323,
    "publicationId": 5,
    "englishText": "Falling leaves—\nFar beyond,\nI see Buddha.",
    "japaneseText": "Ochiba furu oku fukaku / mi-hotoke wo miru"
  },
  {
    "id": 324,
    "publicationId": 5,
    "englishText": "Snow is falling\nAll around Gochu hermitage;\nI build a fire as a lonely self.",
    "japaneseText": "Gochu yuki furu / hitori to shite / hi wo taku"
  },
  {
    "id": 325,
    "publicationId": 5,
    "englishText": "Warm day,\nI have something more to eat.",
    "japaneseText": "Nukui hi no / mada taberumono wa aru"
  },
  {
    "id": 326,
    "publicationId": 5,
    "englishText": "Snow's falling on snow,\nI'm in quietude.",
    "japaneseText": "Yuki e yuki furu / shizukesa ni oru"
  },
  {
    "id": 327,
    "publicationId": 5,
    "englishText": "Moonlit night,\nHe came with a handout gift;\nI found 'twas rice.",
    "japaneseText": "tsukiyo / temiyage wa / kome datta-ka"
  },
  {
    "id": 328,
    "publicationId": 5,
    "englishText": "Camellias are in bloom;\nThere are tombstones.",
    "japaneseText": "Tsubaki hiraite / haka ga aru"
  },
  {
    "id": 329,
    "publicationId": 5,
    "englishText": "A tiny vase,\nA twig of camellia in it.",
    "japaneseText": "Ichirin-zashi no / tsubaki ichirin"
  },
  {
    "id": 330,
    "publicationId": 5,
    "englishText": "What's that sound—\nMust be a bird\nEating berries since morning.",
    "japaneseText": "Oto wa / asa kara kinomi wo tabe ni kita tori ka"
  },
  {
    "id": 331,
    "publicationId": 5,
    "englishText": "Uprooted many a time,\nDiehard is the weed;\nI pull out its tenacity.",
    "japaneseText": "Nuitemo / nuitemo / kusa no shuuchaku wo nuku"
  },
  {
    "id": 332,
    "publicationId": 5,
    "englishText": "Today I picked butterburrs,\nAte butterburrs.",
    "japaneseText": "Kyo wa / fuki wo tsumi / fuki wo tabe"
  },
  {
    "id": 333,
    "publicationId": 5,
    "englishText": "Sparrows dance,\nDandelions fall.",
    "japaneseText": "Suzume odoru ya / tanpopo chiru ya"
  },
  {
    "id": 334,
    "publicationId": 5,
    "englishText": "Morn is about to dawn,\nWindows just opened—\nFresh young leaves.",
    "japaneseText": "Mou ake souna / mado akete / aoba"
  },
  {
    "id": 335,
    "publicationId": 5,
    "englishText": "Long hair...\nGray.",
    "japaneseText": "Nagai ke ga / shiraga"
  },
  {
    "id": 336,
    "publicationId": 5,
    "englishText": "I'm true and obedient to my mind;\nRice has just been cooked well.",
    "japaneseText": "kokoro sunaoni / gohan ga fuita"
  },
  {
    "id": 337,
    "publicationId": 5,
    "englishText": "It's good after all\nTo be all by myself—\nWeeds.",
    "japaneseText": "Yappari / hitori ga yoroshii / zasso"
  },
  {
    "id": 338,
    "publicationId": 5,
    "englishText": "Whole day long\nNo one has come today—\nFirelies.",
    "japaneseText": "Kyo mo ichinichi / dare mo konakatta / houtaru"
  },
  {
    "id": 339,
    "publicationId": 5,
    "englishText": "Stark naked I am,\nDragonfly trying to land on me.",
    "japaneseText": "Suppadaka e / tombo tomarou to suru ka"
  },
  {
    "id": 340,
    "publicationId": 5,
    "englishText": "Making a rustling sound,\nMute insect has come.",
    "japaneseText": "Kasari kosori / oto sasete / nakanu mushi ga kita"
  },
  {
    "id": 341,
    "publicationId": 5,
    "englishText": "Wind through the pines;\nCool—\nPeople eat, horses eat.",
    "japaneseText": "matsukaze suzushiku / hito mo tabe / uma mo tabe"
  },
  {
    "id": 342,
    "publicationId": 5,
    "englishText": "All day long, today\nI have walked in the wind.",
    "japaneseText": "Kyo mo ichinichi / Kaze wo aruite kita"
  },
  {
    "id": 343,
    "publicationId": 5,
    "englishText": "What's this? What's that?\nEverything is blooming.",
    "japaneseText": "Nani ga nani yara / minna saite iru"
  },
  {
    "id": 344,
    "publicationId": 5,
    "englishText": "When I walk, I see buttercups;\nWhen I sit, I see buttercups.",
    "japaneseText": "Arukeba kinpohge / suwareba kinpohge"
  },
  {
    "id": 345,
    "publicationId": 5,
    "englishText": "Thistles—\nBright in the morning\nAfter the rain.",
    "japaneseText": "Azami azayakana / asa no ame agari"
  },
  {
    "id": 346,
    "publicationId": 5,
    "englishText": "Hanging down my head,\nI see nothing but pebbles.",
    "japaneseText": "Utsumuite / ishikoro bakari"
  },
  {
    "id": 347,
    "publicationId": 5,
    "englishText": "Drippings from young leaves,\nDrippings from my bamboo-hat.",
    "japaneseText": "Wakaba no shizuku de / kasa no shizuku de"
  },
  {
    "id": 348,
    "publicationId": 5,
    "englishText": "Come on, fireflies, come on;\nI've come to my native town.",
    "japaneseText": "Houtaru koi koi / furusato ni kita"
  },
  {
    "id": 349,
    "publicationId": 5,
    "englishText": "Bamboo sprouts of the temple\nHave grown into bamboos.",
    "japaneseText": "Otera no takenoko / take ni natta"
  },
  {
    "id": 350,
    "publicationId": 5,
    "englishText": "Wind through the pines,\nShadows of the pines;\nI'm lying down in the shade.",
    "japaneseText": "Matsukaze matsukage / nekoronde"
  },
  {
    "id": 351,
    "publicationId": 5,
    "englishText": "Day is breaking;\nI whet a sickle.",
    "japaneseText": "Akete kuru / kama wo togu"
  },
  {
    "id": 352,
    "publicationId": 5,
    "englishText": "I'm listening alone—\nWoodpecker.",
    "japaneseText": "Hitori kiite ite / kitsutsuki"
  },
  {
    "id": 353,
    "publicationId": 5,
    "englishText": "The spa—\nGushing out and overflowing:\nI immerse my body in it.",
    "japaneseText": "Waite afureru nakani / neteiru"
  },
  {
    "id": 354,
    "publicationId": 5,
    "englishText": "I'm waiting;\nCherries are ripe.",
    "japaneseText": "Matte iru / sakuranbo urete iru"
  },
  {
    "id": 355,
    "publicationId": 5,
    "englishText": "Nestling down in the mountain (spa),\nI doff my clothes.",
    "japaneseText": "Yama futokoro no / hadaka to nari"
  },
  {
    "id": 356,
    "publicationId": 5,
    "englishText": "A whole day in the mountains;\nAnts are walking, too.",
    "japaneseText": "Yama no ichinichi / ari mo aruite iru"
  },
  {
    "id": 357,
    "publicationId": 5,
    "englishText": "Clouds are sailing fast\nTo make the moon look better.",
    "japaneseText": "Kumo ga isoide / yoi tsuki ni suru"
  },
  {
    "id": 358,
    "publicationId": 5,
    "englishText": "I'm always alone,\nRed dragonfly.",
    "japaneseText": "Itsumo hitori de / akatombo"
  },
  {
    "id": 359,
    "publicationId": 5,
    "englishText": "I'm on travel;\nUntil my monk's robe dries up,\nWind comes from the weeds.",
    "japaneseText": "Tabi no houe ga / kawaku made / zasso no kaze"
  },
  {
    "id": 360,
    "publicationId": 5,
    "englishText": "It wiggles;\nA bagworm.",
    "japaneseText": "Ugoite / minomushi datta yo"
  },
  {
    "id": 361,
    "publicationId": 5,
    "englishText": "Across the water\nLights of the brothels\nBegan to twinkle.",
    "japaneseText": "Mizu wo hedatete / onagoya no hi ga / matataki dashita"
  },
  {
    "id": 362,
    "publicationId": 5,
    "englishText": "The mountains\nHazed and overlapped—\nMy home town.",
    "japaneseText": "Kasunde Kasanatte / yama ga furusato"
  },
  {
    "id": 363,
    "publicationId": 5,
    "englishText": "In the spring breeze\nOne begging-bowl is there.",
    "japaneseText": "Harukaze no / hachinoko hitotsu"
  },
  {
    "id": 364,
    "publicationId": 5,
    "englishText": "—Returning to my hermitage—\nI'm home after a long absence;\nBamboo sprouts are shooting forth\nEverywhere.",
    "japaneseText": "Hisabisa modoreba / takenoko nyoki nyoki"
  },
  {
    "id": 365,
    "publicationId": 5,
    "englishText": "Soaked with rain and sweat,\nPlough-horse gets many a scolding.",
    "japaneseText": "Bisshori nurete / shiro kaku uma wa / shikararete bakari"
  },
  {
    "id": 366,
    "publicationId": 5,
    "englishText": "Rain and shine—\nThe fields have turned\nInto green paddies.",
    "japaneseText": "Haretari futtari / aota ni natta"
  },
  {
    "id": 367,
    "publicationId": 5,
    "englishText": "A thicket—\nThat's the place\nCorpses are cremated.",
    "japaneseText": "kusa shigeru / soko wa shinin wo / yaku tokoro"
  },
  {
    "id": 368,
    "publicationId": 5,
    "englishText": "Wet with morning dew,\nI take a wayward course.",
    "japaneseText": "Asatsuyu shittori / Ikitai hou e iku"
  },
  {
    "id": 369,
    "publicationId": 5,
    "englishText": "Little cuckoos—\nI will go beyond\nThat mountain morrow.",
    "japaneseText": "Hototogisu / asu wa ano yama / koete ikou"
  },
  {
    "id": 370,
    "publicationId": 5,
    "englishText": "Doffing my bamboo-hat,\nI'm thoroughly wet.",
    "japaneseText": "Kasa wo nugi / shimizimi to nure"
  },
  {
    "id": 371,
    "publicationId": 5,
    "englishText": "cockroach!\nyour whiskers are long\nand so are mine",
    "japaneseText": "Aburamushi / omae no hige mo / nobite iru"
  },
  {
    "id": 372,
    "publicationId": 6,
    "englishText": "This\njourney\nwithout\ngoal\nweeping\nlocust."
  },
  {
    "id": 373,
    "publicationId": 6,
    "englishText": "Between life\ndeath / snow\nstill falling."
  },
  {
    "id": 374,
    "publicationId": 6,
    "englishText": "Road\nno end\nloneliness."
  },
  {
    "id": 375,
    "publicationId": 6,
    "englishText": "On my straw\nhat\ndragonfly clings\nkeep walking."
  },
  {
    "id": 376,
    "publicationId": 6,
    "englishText": "In this\nblizzard\ntry to\nsleep,\nnot die."
  },
  {
    "id": 377,
    "publicationId": 6,
    "englishText": "Rain\nfalling on\nhome\ncountry\nwalk barefoot / here."
  },
  {
    "id": 378,
    "publicationId": 6,
    "englishText": "Push\napart\nstep\nthru\npush\napart\nstep\nthru\nblue-green\nmountain.",
    "notes": "The difficulty in finding an English equivalent to Santoka"
  },
  {
    "id": 379,
    "publicationId": 6,
    "englishText": "These\nmy hands\nthese\nmy feet\nwarm inside"
  },
  {
    "id": 380,
    "publicationId": 6,
    "englishText": "All night\nlong\ndogs bark,\nI walk."
  },
  {
    "id": 381,
    "publicationId": 7,
    "englishText": "Unpleasant days:\ndays I don't walk, days without booze,\nhaikuless days."
  },
  {
    "id": 382,
    "publicationId": 7,
    "englishText": "Sake for flesh, haiku for soul:\nsake is the haiku of the flesh\nhaiku is the sake of the soul."
  },
  {
    "id": 383,
    "publicationId": 7,
    "englishText": "Walking on and on -\nmy only course."
  },
  {
    "id": 384,
    "publicationId": 7,
    "englishText": "So this is what\nhe calls his \"tea grove\" -\none miserable bush!"
  },
  {
    "id": 385,
    "publicationId": 7,
    "englishText": "No water but that\ntrickling from\nthe farmer in the dry ricefield."
  },
  {
    "id": 387,
    "publicationId": 7,
    "englishText": "The thistles -\nfresh and sparkling\nafter morning rain."
  },
  {
    "id": 388,
    "publicationId": 7,
    "englishText": "At the mountain-foot\nmany graves resting\nin the warm sunlight."
  },
  {
    "id": 389,
    "publicationId": 7,
    "englishText": "This road straight -\nand empty of company."
  },
  {
    "id": 390,
    "publicationId": 7,
    "englishText": "Going deeper\nand still deeper\ninto green mountains."
  },
  {
    "id": 391,
    "publicationId": 7,
    "englishText": "The sunshine freshly\nreflecting from\nmy freshly-shaven head."
  },
  {
    "id": 392,
    "publicationId": 7,
    "englishText": "Begging: I accept\nthe burning sun."
  },
  {
    "id": 393,
    "publicationId": 7,
    "englishText": "One pot is enough;\nI wash the rice."
  },
  {
    "id": 394,
    "publicationId": 7,
    "englishText": "Shining brightly in the sunshine:\nmy little bowl of rice."
  },
  {
    "id": 395,
    "publicationId": 7,
    "englishText": "Within life and death\nsnow ceaselessly falls."
  },
  {
    "id": 396,
    "publicationId": 7,
    "englishText": "I have no home;\nautumn gets bleaker."
  },
  {
    "id": 397,
    "publicationId": 7,
    "englishText": "Worn and torn daily\nand falling in shreds:\nmy cloak for travelling."
  },
  {
    "id": 398,
    "publicationId": 7,
    "englishText": "The giant camphor-tree:\nthe dog and I\ncompletely soaked."
  },
  {
    "id": 399,
    "publicationId": 7,
    "englishText": "Nice road\nleading to a nice building:\na crematorium."
  },
  {
    "id": 400,
    "publicationId": 7,
    "englishText": "Rain in my eyes:\nI can't read the signpost."
  },
  {
    "id": 401,
    "publicationId": 7,
    "englishText": "The sky at sunset -\na little alcohol would taste so good."
  },
  {
    "id": 402,
    "publicationId": 7,
    "englishText": "The long night:\nmade even longer\nby a barking dog."
  },
  {
    "id": 403,
    "publicationId": 7,
    "englishText": "The louse I've caught\nis warmer than I am!"
  },
  {
    "id": 404,
    "publicationId": 7,
    "englishText": "Nonchalantly pissing\noff the road\nsoaking the young weeds."
  },
  {
    "id": 405,
    "publicationId": 7,
    "englishText": "Winter rain clouds -\nsoldiers off to China\nto be blown to bits."
  },
  {
    "id": 406,
    "publicationId": 7,
    "englishText": "Marching together\non the ground their feet\nwill never pound again."
  },
  {
    "id": 407,
    "publicationId": 7,
    "englishText": "Leaving hands and feet\nbehind in China:\nJapanese soldiers come home."
  },
  {
    "id": 408,
    "publicationId": 7,
    "englishText": "Will the municipality\nstage a banner day\nfor those brought back as bones?"
  },
  {
    "id": 409,
    "publicationId": 7,
    "englishText": "Baggage I can't throw off\nso heavy front and back."
  },
  {
    "id": 410,
    "publicationId": 7,
    "englishText": "In the calm stillness\nafter the rainstorm:\nflies."
  },
  {
    "id": 411,
    "publicationId": 7,
    "englishText": "Slowly but surely\nI adopt the vices\nof my dead father."
  },
  {
    "id": 412,
    "publicationId": 7,
    "englishText": "Sweat:\ncollecting\nin my navel."
  },
  {
    "id": 413,
    "publicationId": 7,
    "englishText": "Today's lunch:\njust water."
  },
  {
    "id": 414,
    "publicationId": 7,
    "englishText": "Breaking the dead branches\nthinking of nothing."
  },
  {
    "id": 415,
    "publicationId": 7,
    "englishText": "Today again\nno letters.\nOnly butterflies."
  },
  {
    "id": 416,
    "publicationId": 7,
    "englishText": "At last!\nThe mail's arrived.\nSoon ripe fruit will fall."
  },
  {
    "id": 417,
    "publicationId": 7,
    "englishText": "The leaves fall.\nFrom now on\nwater will taste better and better."
  },
  {
    "id": 418,
    "publicationId": 7,
    "englishText": "A little woozy,\nleaves fall one by one."
  },
  {
    "id": 419,
    "publicationId": 7,
    "englishText": "My begging-bowl\naccepts the falling leaves."
  },
  {
    "id": 420,
    "publicationId": 7,
    "englishText": "Hailstones also\ndrop into my begging-bowl."
  },
  {
    "id": 421,
    "publicationId": 7,
    "englishText": "If I sell my rags\nand buy some alcohol—\nwill there still be loneliness?"
  },
  {
    "id": 422,
    "publicationId": 7,
    "englishText": "Twilight - the sound\nof a sad letter\ndropping into a postbox."
  },
  {
    "id": 423,
    "publicationId": 7,
    "englishText": "Goallessly\nI walk amongst tombstones."
  },
  {
    "id": 424,
    "publicationId": 7,
    "englishText": "Slowly, slowly\nfalling apart:\nmy final autumn."
  },
  {
    "id": 425,
    "publicationId": 7,
    "englishText": "I've become a real beggar now:\none towel."
  },
  {
    "id": 426,
    "publicationId": 7,
    "englishText": "The few flies that remain\nfind me familiar."
  },
  {
    "id": 427,
    "publicationId": 7,
    "englishText": "Pissing blood -\nhow long will I be able\nto carry on?"
  },
  {
    "id": 428,
    "publicationId": 7,
    "englishText": "Coughing, coughing -\nand nobody to slap my back."
  },
  {
    "id": 429,
    "publicationId": 7,
    "englishText": "No money, no possessions,\nno teeth -\nall alone."
  },
  {
    "id": 430,
    "publicationId": 7,
    "englishText": "My heart's exhausted -\nthe mountains, the sea\nare too beautiful."
  },
  {
    "id": 431,
    "publicationId": 7,
    "englishText": "Mountains I'll never see again\nfade in the distance."
  },
  {
    "id": 432,
    "publicationId": 7,
    "englishText": "When I die:\nweeds,\nfalling rain."
  },
  {
    "id": 433,
    "publicationId": 7,
    "englishText": "Some life remains:\nI scratch my belly..."
  },
  {
    "id": 434,
    "publicationId": 8,
    "japaneseText": "Hitotsu areba\nkoto taru nabeno\nkome o togu.",
    "englishText": "One washes rice\nin a metal pot;\nonly one pot, that's enough\nfor me.",
    "notes": "Colloquialisms mark his haiku. He used easy, plain language at its best, never the literary, poetic diction of more ordinary writers."
  },
  {
    "id": 687,
    "publicationId": 8,
    "japaneseText": "Hitotsu areba\nkoto taru nabeno\nkome o togu.",
    "englishText": "I wash rice\nin a metal pot;\none pot's enough."
  },
  {
    "id": 688,
    "publicationId": 8,
    "japaneseText": "Hitotsu areba\nkoto taru nabeno\nkome o togu.",
    "englishText": "Washing rice\nin a metal pot;\none pot's enough."
  },
  {
    "id": 435,
    "publicationId": 8,
    "japaneseText": "Korogi yo,\nasu no kome dake wa\naru.",
    "englishText": "Oh cricket!\nthere is enough rice, at least\nfor tomorrow."
  },
  {
    "id": 436,
    "publicationId": 8,
    "notes": "The following haiku in not grammatically correct Japanese. Santoka often was careless about grammar. He seemed to want us to read between the lines, and more often than not his grammatical mistakes, a sign of his nonchalance, add charm to his work.",
    "japaneseText": "Anta to ko-shite kisha ga\nitta ri kitari suru\nkemuri.",
    "englishText": "In your company\ngoing this way and that...\nthe smoke of train."
  },
  {
    "id": 437,
    "publicationId": 8,
    "japaneseText": "Ame furu\nfuru-sato wa\nhadashi de aruku.",
    "englishText": "The old home\nin the rain...\nI walk barefooted."
  },
  {
    "id": 438,
    "publicationId": 8,
    "japaneseText": "Teppatsu no\nnaka e mo\narare.",
    "englishText": "Into my begging bowl,\ni too,\nhailstones.",
    "notes": "(July 1980)"
  },
  {
    "id": 439,
    "publicationId": 9,
    "englishText": "forsaken\nstill something\nin these legs"
  },
  {
    "id": 440,
    "publicationId": 9,
    "englishText": "it's\ncome\nto these\ntired legs\nto stop this dragonsly"
  },
  {
    "id": 441,
    "publicationId": 9,
    "englishText": "slipping and falling\nmountain silence"
  },
  {
    "id": 442,
    "publicationId": 9,
    "englishText": "getting just enough\nto eat: rain\n(*by begging that is)"
  },
  {
    "id": 443,
    "publicationId": 9,
    "englishText": "no matter news is\ngood or bad—spring snow"
  },
  {
    "id": 444,
    "publicationId": 9,
    "englishText": "taking it easy,\ntaking a piss-weeds\nbud all over"
  },
  {
    "id": 445,
    "publicationId": 9,
    "englishText": "no sake.\ndrink in the moon"
  },
  {
    "id": 446,
    "publicationId": 9,
    "englishText": "certain days\nstop begging to take in\nthe mountains",
    "notes": "Moreover, as Scott himself says of an old Frank Zappa lyric “you gotta get into it before you get out of it; you gotta get out of it before you get into it.” I can tell you, not only does he apply this to his translations, but Scott commands readers to thoroughly get in and out of Santoka's haiku—his English versions rendered as if they themselves, were... Japanese."
  },
  {
    "id": 447,
    "publicationId": 9,
    "englishText": "rock\nshadow\nwater\ngushing\nsure\nas\nI live"
  },
  {
    "id": 448,
    "publicationId": 9,
    "englishText": "Milky Way middle night drunkard dancing"
  },
  {
    "id": 449,
    "publicationId": 9,
    "englishText": "this\nrobe\nthis\nworn\nthis\nweedy\nfruition",
    "notes": "(*the robe meaning a monk's garment)"
  },
  {
    "id": 450,
    "publicationId": 9,
    "englishText": "autumn-sitting in weeds"
  },
  {
    "id": 451,
    "publicationId": 9,
    "englishText": "peckers\nand\npussies\na hot\nbath\nover-flowing"
  },
  {
    "id": 452,
    "publicationId": 9,
    "englishText": "still alive a body for a body to scratch"
  },
  {
    "id": 453,
    "publicationId": 9,
    "englishText": "naked\nconversation\nabounds"
  },
  {
    "id": 454,
    "publicationId": 9,
    "englishText": "jazz noise won't\nget you there\na sutra will"
  },
  {
    "id": 455,
    "publicationId": 9,
    "englishText": "straight ahead\nout-reaching loneliness\nroad."
  },
  {
    "id": 456,
    "publicationId": 9,
    "englishText": "if we walk: the cuckoo.\nif we hurry: the cuckoo."
  },
  {
    "id": 457,
    "publicationId": 9,
    "englishText": "walking:\nbuttercups\nsitting:\nbuttercups"
  },
  {
    "id": 458,
    "publicationId": 9,
    "englishText": "traveling\nendlessly\nclipping my nails"
  },
  {
    "id": 459,
    "publicationId": 9,
    "englishText": "grilling a fish\neven singeing a hand —\nsingle life"
  },
  {
    "id": 460,
    "publicationId": 9,
    "englishText": "a weed. a-\nlone.\nall right."
  },
  {
    "id": 461,
    "publicationId": 9,
    "englishText": "wind blows its way to\nsea. deep in night.\nalone"
  },
  {
    "id": 462,
    "publicationId": 9,
    "englishText": "jazz noise won't\nget you where\na sutra will"
  },
  {
    "id": 463,
    "publicationId": 11,
    "englishText": "over morning noises a long bridge spans"
  },
  {
    "id": 464,
    "publicationId": 11,
    "englishText": "all day today too no one came fireflies"
  },
  {
    "id": 465,
    "publicationId": 11,
    "englishText": "until my clothes dry / this grassy breeze"
  },
  {
    "id": 466,
    "publicationId": 11,
    "englishText": "spider spins its web I affirm my self"
  },
  {
    "id": 467,
    "publicationId": 11,
    "englishText": "drizzling. / undying."
  },
  {
    "id": 468,
    "publicationId": 11,
    "englishText": "no matter news is / good or bad / spring snow"
  },
  {
    "id": 469,
    "publicationId": 11,
    "englishText": "with the crowd around / a dead body / a sky without clouds"
  },
  {
    "id": 470,
    "publicationId": 11,
    "englishText": "air raid sirens / one after another / persimmons are red"
  },
  {
    "id": 471,
    "publicationId": 11,
    "englishText": "falling leaves / deep deep seeing / Buddha"
  },
  {
    "id": 472,
    "publicationId": 11,
    "englishText": "as if someone is coming loquat leaf falling"
  },
  {
    "id": 473,
    "publicationId": 11,
    "englishText": "wanting something to do grass blades stirring"
  },
  {
    "id": 474,
    "publicationId": 11,
    "englishText": "in a cool / pine wind / people / eating / horses / eating"
  },
  {
    "id": 475,
    "publicationId": 11,
    "englishText": "intimate / mountain / meadow / bush warbler / cries"
  },
  {
    "id": 476,
    "publicationId": 11,
    "englishText": "tip tap comes a bug with no buzz"
  },
  {
    "id": 477,
    "publicationId": 11,
    "englishText": "long away / come back: bamboo / shoots shooting"
  },
  {
    "id": 478,
    "publicationId": 11,
    "englishText": "waiting / cherries / ripening"
  },
  {
    "id": 479,
    "publicationId": 11,
    "englishText": "whatever it all is it all is blossoming"
  },
  {
    "id": 480,
    "publicationId": 11,
    "englishText": "walking: grasses in seed. / sitting: grasses in seed."
  },
  {
    "id": 481,
    "publicationId": 11,
    "englishText": "there is only thisroad spring snow falling"
  },
  {
    "id": 482,
    "publicationId": 11,
    "englishText": "after a rain a thistle clear morning"
  },
  {
    "id": 483,
    "publicationId": 11,
    "englishText": "spring has come water sounds go where they do"
  },
  {
    "id": 484,
    "publicationId": 11,
    "englishText": "neither waiting / nor not waiting / moonlight weeds"
  },
  {
    "id": 485,
    "publicationId": 11,
    "englishText": "settled / down / persimmons / ripen / already"
  },
  {
    "id": 486,
    "publicationId": 11,
    "englishText": "looking down all the small stones"
  },
  {
    "id": 487,
    "publicationId": 11,
    "englishText": "spider makes its web I affirm my self"
  },
  {
    "id": 488,
    "publicationId": 11,
    "englishText": "this day this far sandals come off"
  },
  {
    "id": 489,
    "publicationId": 11,
    "englishText": "well now. / which way to go. / wind blowing."
  },
  {
    "id": 490,
    "publicationId": 11,
    "englishText": "nothing to wait on: / the risen moon"
  },
  {
    "id": 491,
    "publicationId": 12,
    "englishText": "washed / the daikon absolutely white",
    "japaneseText": "araeba daikon iyoiyo shiroshi"
  },
  {
    "id": 492,
    "publicationId": 12,
    "englishText": "cherry tree / cherry blossoms / cherry blossoms scatter / cherry tree",
    "japaneseText": "sakura sakura saku sakura chiru sakura"
  },
  {
    "id": 493,
    "publicationId": 12,
    "englishText": "as my mind calms down / the sound of water",
    "japaneseText": "kokoro ochitsukeba mizu no oto"
  },
  {
    "id": 494,
    "publicationId": 12,
    "englishText": "the owl is the owl / whereas I am I and can't sleep",
    "japaneseText": "fukurô wa fukurô de watashi wa watashi denemurenai"
  },
  {
    "id": 495,
    "publicationId": 12,
    "englishText": "passing through passing through yet still green mountains",
    "japaneseText": "wakeittemo wakeittemo aoi yama"
  },
  {
    "id": 496,
    "publicationId": 12,
    "englishText": "into the begging bowl, too / a hailstone",
    "japaneseText": "teppatsu no naka e mo arare"
  },
  {
    "id": 497,
    "publicationId": 12,
    "englishText": "my hangover clears / the blinking stars",
    "japaneseText": "yoizame no hoshi ga matataite iru"
  },
  {
    "id": 498,
    "publicationId": 12,
    "englishText": "I emerge from a good hot spring / to the good moon",
    "japaneseText": "yoi yu kara yoi tsuki e deta"
  },
  {
    "id": 499,
    "publicationId": 12,
    "englishText": "death's hush is the serene leafless tree",
    "japaneseText": "shi no shizukesa wa harete ha no nai ki"
  },
  {
    "id": 500,
    "publicationId": 12,
    "englishText": "which is which / everything's blooming",
    "japaneseText": "nani ga nani yara minna saite iru"
  },
  {
    "id": 501,
    "publicationId": 12,
    "englishText": "the last dahlia / about to wither / and beautiful as it is",
    "japaneseText": "nagori dariya karentoshite utsukushii"
  },
  {
    "id": 502,
    "publicationId": 12,
    "englishText": "today again all day long nobody has come / fireflies",
    "japaneseText": "kyô mo ichinichi dare mo konakatta hôtaru"
  },
  {
    "id": 503,
    "publicationId": 12,
    "englishText": "the grass so green / I return barefoot",
    "japaneseText": "kusa no aosa yo hadashi de modoru"
  },
  {
    "id": 504,
    "publicationId": 12,
    "englishText": "this is the only path / spring snow falling",
    "japaneseText": "kono michi shika nai haru no yuki furu"
  },
  {
    "id": 505,
    "publicationId": 12,
    "englishText": "a crow caws / I also am alone",
    "japaneseText": "karasu naite watashi mo hitori"
  },
  {
    "id": 506,
    "publicationId": 12,
    "englishText": "unworthy I am walking",
    "japaneseText": "dô shiyô mo nai watashi ga aruite iru"
  },
  {
    "id": 507,
    "publicationId": 12,
    "englishText": "The road's so straight it's lonely",
    "japaneseText": "massugu na michi de samishii"
  },
  {
    "id": 508,
    "publicationId": 12,
    "englishText": "fluttery but a butterfly can't sing",
    "japaneseText": "hirahira chô wa utaenai"
  },
  {
    "id": 509,
    "publicationId": 12,
    "englishText": "I'm composed / the persimmons are mellowing, too",
    "japaneseText": "ochitsuite kaki mo urete kuru"
  },
  {
    "id": 510,
    "publicationId": 12,
    "englishText": "awaiting you / the fire burns well",
    "japaneseText": "anata o matte iru hi no yô moeru"
  },
  {
    "id": 511,
    "publicationId": 12,
    "englishText": "so badly weakened / even when I step on fallen leaves",
    "japaneseText": "konnanimo yowatte shimatta ochiba fumu sae"
  },
  {
    "id": 512,
    "publicationId": 12,
    "englishText": "rustling rustling / a mute cricket has come",
    "japaneseText": "kasari kosori otosasete nakanu mushi ga kita"
  },
  {
    "id": 513,
    "publicationId": 12,
    "englishText": "a good inn / mountains on both sides / and facing a sake shop",
    "japaneseText": "yoi yado de dochira mo yama de mae wa sakaya de"
  },
  {
    "id": 514,
    "publicationId": 12,
    "englishText": "I'm used to being alone / the red dragonflies",
    "japaneseText": "itsumo hitori de akatonbo"
  },
  {
    "id": 515,
    "publicationId": 13,
    "englishText": "The path\nstraight ahead\nsolitude"
  },
  {
    "id": 516,
    "publicationId": 13,
    "englishText": "Silently\nI put on today's\nstraw sandals"
  },
  {
    "id": 517,
    "publicationId": 13,
    "englishText": "Today again\nsoaken wet\nwalking on a strange path"
  },
  {
    "id": 518,
    "publicationId": 13,
    "englishText": "Today\nI pick buttercups\nI eat buttercups"
  },
  {
    "id": 519,
    "publicationId": 13,
    "englishText": "No inn for the night\nthe moon\nshows the way"
  },
  {
    "id": 520,
    "publicationId": 13,
    "englishText": "Spring\nI walk holding my begging bowl\nup to where?"
  },
  {
    "id": 521,
    "publicationId": 13,
    "englishText": "Light-hearted\nI taste\nwater"
  },
  {
    "id": 522,
    "publicationId": 13,
    "englishText": "My meal\ntoday\nwater"
  },
  {
    "id": 523,
    "publicationId": 13,
    "englishText": "In the water\nmy reflection\nas a pilgrim"
  },
  {
    "id": 524,
    "publicationId": 13,
    "englishText": "In my begging bowl\nthe glaring whiteness\nof rice"
  },
  {
    "id": 525,
    "publicationId": 13,
    "englishText": "On my own\nattacked\nby mosquitos"
  },
  {
    "id": 526,
    "publicationId": 13,
    "englishText": "I slap flies\nI slap mosquitos\nI slap myself"
  },
  {
    "id": 527,
    "publicationId": 13,
    "englishText": "With a dragonfly\non my bamboo hat\nwalking"
  },
  {
    "id": 528,
    "publicationId": 13,
    "englishText": "On my tired feet\na dragonfly\nhas settled"
  },
  {
    "id": 529,
    "publicationId": 13,
    "englishText": "From now on\nI won't wear any watch\nevening rain"
  },
  {
    "id": 530,
    "publicationId": 13,
    "englishText": "Autumn rain\nmountains more mountains\nmountains I don't know"
  },
  {
    "id": 531,
    "publicationId": 13,
    "englishText": "Just like this it rains\nI am soaken wet\nI walk"
  },
  {
    "id": 532,
    "publicationId": 13,
    "englishText": "Soaken wet\nthe milestone\nshowing the way"
  },
  {
    "id": 533,
    "publicationId": 13,
    "englishText": "I've just been given\nsomething to eat\nfalling rain"
  },
  {
    "id": 534,
    "publicationId": 13,
    "englishText": "This body\nthat has survived\nI am scratching it"
  },
  {
    "id": 535,
    "publicationId": 13,
    "englishText": "Far faraway\nbirds fly over\nsnowy mountains"
  },
  {
    "id": 536,
    "publicationId": 13,
    "englishText": "My skull freshly shaved\nreally reflects\nthe sunlight"
  },
  {
    "id": 537,
    "publicationId": 13,
    "englishText": "Now that I don't meet\nanyone\nmountain butterflies"
  },
  {
    "id": 538,
    "publicationId": 13,
    "englishText": "In the mountain all day long\nthese ants too\nwalk"
  },
  {
    "id": 539,
    "publicationId": 13,
    "englishText": "Some days sometimes\nI don't beg\nand gaze at the mountains"
  },
  {
    "id": 540,
    "publicationId": 13,
    "englishText": "Getting further\nfrom these mountains\nI'll never see again"
  },
  {
    "id": 541,
    "publicationId": 13,
    "englishText": "Not one cloud\nI take off\nmy bamboo hat"
  },
  {
    "id": 542,
    "publicationId": 13,
    "englishText": "This cloud there\nlet the rain down\nthat soaked me"
  },
  {
    "id": 543,
    "publicationId": 13,
    "englishText": "Far\nfrom my home village\nbudding trees"
  },
  {
    "id": 544,
    "publicationId": 13,
    "englishText": "Someone speaks with a voice\nlike my father's\nsad while travelling"
  },
  {
    "id": 545,
    "publicationId": 13,
    "englishText": "At last some mail\nfrom now on\nripe persimmons will fall"
  },
  {
    "id": 546,
    "publicationId": 13,
    "englishText": "Postman\nHe brings me my mail\neats a persimmon\nand then leaves"
  },
  {
    "id": 547,
    "publicationId": 13,
    "englishText": "Everything may be happy\nor sad\ngrass grows"
  },
  {
    "id": 548,
    "publicationId": 13,
    "englishText": "Falling leaves\nthey also fall\nin my begging bowl"
  },
  {
    "id": 549,
    "publicationId": 13,
    "englishText": "Under the quilt\nI sleep\ndreaming of my home village"
  },
  {
    "id": 550,
    "publicationId": 13,
    "englishText": "Now that no one comes anymore\nchillis\nhave gone red"
  },
  {
    "id": 551,
    "publicationId": 13,
    "englishText": "Picking up a flower\nI don't know\nI offer it to Buddha"
  },
  {
    "id": 552,
    "publicationId": 13,
    "englishText": "Up to\nthe rows of graves\nthe waves break"
  },
  {
    "id": 553,
    "publicationId": 13,
    "englishText": "Today\nI am still alive\nI stretch my legs"
  },
  {
    "id": 554,
    "publicationId": 13,
    "englishText": "In public baths\nNaked\nthe discussion gets\nheated"
  },
  {
    "id": 555,
    "publicationId": 13,
    "englishText": "Something's missing\na tooth fell out\nI hurl it into the night"
  },
  {
    "id": 556,
    "publicationId": 13,
    "englishText": "At the foot of the mountain\nin the sun's heat\nin line five or six graves"
  },
  {
    "id": 557,
    "publicationId": 13,
    "englishText": "Heavy rain\nthe postman\ncomes from so far"
  },
  {
    "id": 558,
    "publicationId": 13,
    "englishText": "This\nmy face\nin the cold mirror?"
  },
  {
    "id": 559,
    "publicationId": 13,
    "englishText": "Making fun of me\nmy figure seen from behind\ngoing away\nin the autumn rain?"
  },
  {
    "id": 560,
    "publicationId": 14,
    "japaneseText": "sukkari hagete hotei wa waraitsuzuketeiru",
    "englishText": "the Hotei statue: / rubbed rather bald, but laughing still."
  },
  {
    "id": 561,
    "publicationId": 14,
    "japaneseText": "yoi o-minori no sayasaya o-tsuki-sama",
    "englishText": "A great harvest, / sighs, the moon content."
  },
  {
    "id": 562,
    "publicationId": 14,
    "japaneseText": "nonbiri shito suru kusa no me darake",
    "englishText": "Roadside, taking a piss, / soaking the scrub-grass."
  },
  {
    "id": 563,
    "publicationId": 14,
    "japaneseText": "fuyu ame no ishidan o noboru santa maria",
    "englishText": "Winter's rain, I scale the / slick stone steps... / Santa Maria."
  },
  {
    "id": 564,
    "publicationId": 14,
    "japaneseText": "tsuki no akarusa wa doko o bakugeki shite iru koto ka",
    "englishText": "The moon so luminous — / and showing where / the bombs will fall?"
  },
  {
    "id": 565,
    "publicationId": 14,
    "englishText": "From behind, going: shape soaked in winter-rain.",
    "japaneseText": "ushiro-sugata no shigurete yuku ka"
  },
  {
    "id": 566,
    "publicationId": 15,
    "englishText": "Rain in late autumn / managing not yet / to die",
    "japaneseText": "shigururu ya / shinanaide iru"
  },
  {
    "id": 567,
    "publicationId": 15,
    "englishText": "Rain in late autumn / walking in the hills / with the autumn rain",
    "japaneseText": "shigururu ya shigururu yama e ayumi iru"
  },
  {
    "id": 568,
    "publicationId": 15,
    "englishText": "Whose back going / into the autumn rain / fading",
    "japaneseText": "ushiro sugata no shigurete yuku ka"
  },
  {
    "id": 569,
    "publicationId": 15,
    "englishText": "Rain in late autumn / all the rice I have / nicely cooked",
    "japaneseText": "shigururu ya aru dake no gohan yô yaketa"
  },
  {
    "id": 570,
    "publicationId": 15,
    "japaneseText": "asayu konkon afururu mannaka no watakushi",
    "englishText": "Dôgo Spa\nThe morning bath / water swiftly overflows / me in it"
  },
  {
    "id": 571,
    "publicationId": 15,
    "englishText": "On the dead / straight road / alone",
    "japaneseText": "massugu na michi de samishii"
  },
  {
    "id": 572,
    "publicationId": 15,
    "englishText": "Going barefoot / about my home village / as the rain falls",
    "japaneseText": "ame furu furusato wa hadashi de aruku"
  },
  {
    "id": 573,
    "publicationId": 15,
    "englishText": "The sound of autumn rain?",
    "japaneseText": "oto wa shigure ka"
  },
  {
    "id": 574,
    "publicationId": 15,
    "englishText": "Light rain since morning / the beauty of / the persimmon leaves",
    "japaneseText": "asa kara shigurete kaki no ha no utsukushisa wa"
  },
  {
    "id": 575,
    "publicationId": 15,
    "englishText": "Wet in the rain / and the awaited / person comes",
    "japaneseText": "shigurete nurete matsu hito ga kita"
  },
  {
    "id": 576,
    "publicationId": 15,
    "englishText": "Today spent alone / and at its close / the rain comes on",
    "japaneseText": "watashi hitori no kyô no owari no shigurete kita"
  },
  {
    "id": 577,
    "publicationId": 15,
    "englishText": "Walking through the rain of / the village where I have / no place to stay",
    "japaneseText": "tomete kurenai mura no shigure o aruku"
  },
  {
    "id": 578,
    "publicationId": 15,
    "englishText": "The rain comes down / the road / makes one straight line",
    "japaneseText": "shigururu ya michi wa hitosuji"
  },
  {
    "id": 579,
    "publicationId": 15,
    "englishText": "Before the shrine the / mandarin tree its fruit / wet in the autumn rain",
    "japaneseText": "ukon no tachibana no mi no shigururu ya"
  },
  {
    "id": 580,
    "publicationId": 15,
    "englishText": "The great camphor tree / and me and the dog / soaked in the rain",
    "japaneseText": "ôkusu mo watashi mo inu mo shiguretsutsu"
  },
  {
    "id": 581,
    "publicationId": 15,
    "englishText": "Temple among pines as / rain comes on here I shall / spend the night",
    "japaneseText": "matsu no otera shigure to natte tomarimasu"
  },
  {
    "id": 582,
    "publicationId": 15,
    "englishText": "Floating drifting / the wandering water / I taste",
    "japaneseText": "hyôhyô to shite mizu o ajiwau"
  },
  {
    "id": 583,
    "publicationId": 15,
    "englishText": "With the sound of falling / water to the / village I came down",
    "japaneseText": "mizu oto to issho ni sato e kudarite kita"
  },
  {
    "id": 584,
    "publicationId": 15,
    "englishText": "Soaked in the / rain that cloud there / has let fall",
    "japaneseText": "ano kumo ga otoshita ame ni nurete iru"
  },
  {
    "id": 585,
    "publicationId": 15,
    "englishText": "Across the water the / lights in the house of women / lit once more",
    "japaneseText": "mizu wo hedatete / onagoya no hi ga / matataki dashita"
  },
  {
    "id": 586,
    "publicationId": 15,
    "japaneseText": "chimpoko mo ososo mo waite afureru yu",
    "englishText": "The Public Bath\nCocks cunts all / boiling and the bath / water flows over"
  },
  {
    "id": 587,
    "publicationId": 15,
    "englishText": "Having got this far / I drink some water / then leave",
    "japaneseText": "koko made o kishi mizu nonde saru"
  },
  {
    "id": 588,
    "publicationId": 15,
    "englishText": "I shall cross this / water the crow / flies over",
    "japaneseText": "karasu tonde yuku mizu o watarô"
  },
  {
    "id": 589,
    "publicationId": 15,
    "englishText": "In the early morning / a cold rain falls / I light the fire",
    "japaneseText": "asa hayaku shigururu hi o taite iru"
  },
  {
    "id": 590,
    "publicationId": 15,
    "englishText": "Rain falling and / the postman has / travelled far for me",
    "japaneseText": "shigururu ya Y?binya-san tôku kite kureta"
  },
  {
    "id": 591,
    "publicationId": 15,
    "englishText": "A moonlit night / falling rain the sound / of spring approaching",
    "japaneseText": "tsukiyo shigurete haru chikaku naru oto"
  },
  {
    "id": 592,
    "publicationId": 15,
    "englishText": "Rain falling on my bamboo / hat I go next door / to get some water",
    "japaneseText": "shigure kasa de otonari e mizu o morai ni"
  },
  {
    "id": 593,
    "publicationId": 15,
    "englishText": "Rain falling on the / persimmon its autumn leaves / finally beautiful",
    "japaneseText": "shigurete kaki no ha no iyo-iyo utsukushiku"
  },
  {
    "id": 594,
    "publicationId": 15,
    "englishText": "Caught by the rain / the woman with her load / hurries onwards",
    "japaneseText": "otata shigurete suta suta isogu"
  },
  {
    "id": 595,
    "publicationId": 15,
    "englishText": "It rains and I / follow after / the footprints",
    "japaneseText": "shigururu ashiato o tadoriyuku"
  },
  {
    "id": 596,
    "publicationId": 15,
    "englishText": "The sound of waves / in the rain / in the sunlight",
    "japaneseText": "nami oto shigurete harete"
  },
  {
    "id": 597,
    "publicationId": 15,
    "englishText": "Rain falling on / the pine tree and / the pine tree",
    "japaneseText": "matsu no ki matsu no ki to shigurete iru"
  },
  {
    "id": 598,
    "publicationId": 15,
    "englishText": "In the falling rain / my way barred by / a dog",
    "japaneseText": "shigururu ya inu to mukiatte iru"
  },
  {
    "id": 599,
    "publicationId": 15,
    "englishText": "Bright light of the moon / does it know where they / are bombing tonight",
    "japaneseText": "tsuki no akarusa wa doko o bakugeki shite iru koto ka"
  },
  {
    "id": 600,
    "publicationId": 15,
    "englishText": "Beaten by the wind even / a house like this has given / both sons as the signs show",
    "japaneseText": "kogarashi no hi no maru futatsu futari mo dashite iru"
  },
  {
    "id": 601,
    "publicationId": 15,
    "englishText": "We must win all / burgeoning together / through the great earth",
    "japaneseText": "kataneba naranai daichi issei ni mebukô to suru"
  },
  {
    "id": 602,
    "publicationId": 15,
    "englishText": "Marching firmly on the / earth their feet will / never tread again",
    "japaneseText": "futatabi wa fumamai tsuchi o fumishimete iku"
  },
  {
    "id": 603,
    "publicationId": 15,
    "englishText": "All I can do is / walk the autumn rain / falls furiously",
    "japaneseText": "aruku hoka nai aki no ame furitsunoru"
  },
  {
    "id": 604,
    "publicationId": 15,
    "englishText": "Soaked through in the autumn / rain I wring out my / travel garment and go on",
    "japaneseText": "shigurete nurete tabigoromo shibotte wa yuku"
  },
  {
    "id": 605,
    "publicationId": 15,
    "englishText": "Unable yet to die / flowers of the other shore / in bloom",
    "japaneseText": "nakanaka shinenai higanbana saku"
  },
  {
    "id": 606,
    "publicationId": 15,
    "englishText": "Hurrying on to / death the water / tastes so good",
    "japaneseText": "shi o hishi hishi to mizu no umasa kana"
  },
  {
    "id": 607,
    "publicationId": 15,
    "englishText": "Rain falls on one then / another mountain / unknown mountains",
    "japaneseText": "shigurete yama o mata yama o shiranai yama"
  },
  {
    "id": 608,
    "publicationId": 15,
    "englishText": "Striding out urging / my body onwards cold / rain falls on the mountain",
    "japaneseText": "karada nagedashite shigururu yama"
  },
  {
    "id": 609,
    "publicationId": 15,
    "englishText": "In the cold rain / the signpost and I / cannot read it",
    "japaneseText": "shigurete michi shirube sono ji ga yomenai"
  },
  {
    "id": 610,
    "publicationId": 16,
    "japaneseText": "enten hateshinaki kaze fuku",
    "englishText": "Endless scorching sun- / the wind blows",
    "notes": "Comment by Addiss:\nHere the calligraphy seems more restrained and graceful than the previous tanzaku, but the freedom of the brushwork is at least as strong as before, if more subtle. The single column of words is maintained within the center of the format as though the red paper were itself the blazing sunlight, withering the calligraphy as though it were Santoka's body in the heat.\nFor example, the kana syllable shi is created with a single thin verticle line in the center of the tanzaku, but when the character kaze is written three graphs later, it opens the space as it might cool the pores of a sweaty body.\nFor some viewers, it may seem odd to see a Santoka poem, with its simplicity of diction and plainness of speech, on a surface so highly decorated with fluid patterns of cut squares of gold leaf. However, the contrast may add to the effect of the calligraphy, just as it gives extra impact to the words of the haiku."
  },
  {
    "id": 611,
    "publicationId": 16,
    "englishText": "Snow / falls on snow- / and remains silent",
    "japaneseText": "yuki e yuki furu shizukesa ni oru"
  },
  {
    "id": 612,
    "publicationId": 16,
    "japaneseText": "ishi ni tombo wa mahiru no yume miru",
    "englishText": "Dragonfly on a rock- / absorbed in / a daydream"
  },
  {
    "id": 613,
    "publicationId": 16,
    "japaneseText": "hitori hissori takenoko take ni naru",
    "englishText": "Alone, silently- / the bamboo shoot"
  },
  {
    "id": 614,
    "publicationId": 16,
    "englishText": "To the mountain quietude / the quiet / rain",
    "japaneseText": "yama no shizukasa e shizuka naru ame"
  },
  {
    "id": 615,
    "publicationId": 16,
    "englishText": "The sound / of the raindrops / also grown older",
    "japaneseText": "amadare no oto mo toshi totta"
  },
  {
    "id": 616,
    "publicationId": 16,
    "japaneseText": "shigururu ya shinanaide iru",
    "englishText": "Winter rain- / I am not dead yet"
  },
  {
    "id": 617,
    "publicationId": 16,
    "japaneseText": "kokoro tsukarete yama ga umi ga utsukushisugiru",
    "englishText": "Tired heart- / mountains and ocean / too much beauty"
  },
  {
    "id": 618,
    "publicationId": 16,
    "japaneseText": "shinde shimaeba zassô ame furu",
    "englishText": "When I finally die- / weeds / falling rain"
  },
  {
    "id": 619,
    "publicationId": 17,
    "japaneseText": "ふるさとの土の底から鉦たたき",
    "englishText": "From deep beneath\nmy hometown soil\na gong is struck"
  },
  {
    "id": 620,
    "publicationId": 17,
    "japaneseText": "へそが汗ためてゐる",
    "englishText": "Sweat collects\nin my belly button"
  },
  {
    "id": 621,
    "publicationId": 17,
    "japaneseText": "咳がやまない背中をたたく手がない",
    "englishText": "Can’t stop coughing\nNo hand to tap me on the back"
  },
  {
    "id": 622,
    "publicationId": 17,
    "japaneseText": "夕立が洗つていつた茄子をもぐ",
    "englishText": "Chewing on eggplant\nwashed clean by rain"
  },
  {
    "id": 623,
    "publicationId": 17,
    "japaneseText": "春の雪ふる女はまことうつくしい",
    "englishText": "Spring snowfall\nShe is truly\na beautiful woman"
  },
  {
    "id": 624,
    "publicationId": 17,
    "japaneseText": "けふもいちにち誰も来なかつたほうたる",
    "englishText": "No one came by today, either,\nlittle firefly"
  },
  {
    "id": 625,
    "publicationId": 17,
    "japaneseText": "月かげのまんなかをもどる",
    "englishText": "returning\nto the center\nof the moonlight"
  },
  {
    "id": 626,
    "publicationId": 17,
    "japaneseText": "よい道がよい建物へ、焼場です",
    "englishText": "A pleasant road\nleads to a pleasant building,\na crematorium"
  },
  {
    "id": 627,
    "publicationId": 17,
    "japaneseText": "しぐるるや死なないでゐる",
    "englishText": "drizzling rain –\nI’m not dead yet"
  },
  {
    "id": 628,
    "publicationId": 17,
    "japaneseText": "木の葉散る歩きつめる",
    "englishText": "Tree leaves fall\nWalking just to walk"
  },
  {
    "id": 629,
    "publicationId": 17,
    "japaneseText": "まつすぐな道でさみしい",
    "englishText": "The road ahead\nis lonesome"
  },
  {
    "id": 630,
    "publicationId": 17,
    "japaneseText": "あるけばかつこういそげばかつこう",
    "englishText": "walking,\ndownhill\nrunning,\ndownhill"
  },
  {
    "id": 631,
    "publicationId": 17,
    "japaneseText": "この道しかない春の雪ふる",
    "englishText": "This is the only road\nSnowfall in spring"
  },
  {
    "id": 632,
    "publicationId": 17,
    "japaneseText": "笠にとんぼをとまらせてあるく",
    "englishText": "A dragonfly\non my straw hat,\nI walk on"
  },
  {
    "id": 633,
    "publicationId": 17,
    "japaneseText": "ほうたるこいこいふるさとにきた",
    "englishText": "Firefly, come, come\nWe’ve made it to my hometown"
  },
  {
    "id": 634,
    "publicationId": 17,
    "japaneseText": "雨ふるふるふるさとははだしであるく",
    "englishText": "rain falls and falls\nwalking barefoot\nthrough my hometown"
  },
  {
    "id": 635,
    "publicationId": 17,
    "japaneseText": "ビルとビルとのすきまから見えて山の青さよ",
    "englishText": "In the cracks between the buildings\nI can see the blue of the mountains"
  },
  {
    "id": 636,
    "publicationId": 17,
    "japaneseText": "ほととぎすあすはあの山こえて行かう",
    "englishText": "Cuckoo,\ntomorrow let’s climb\nover that mountain"
  },
  {
    "id": 637,
    "publicationId": 17,
    "japaneseText": "ふくろふはふくろふでわたしはわたしでねむれない",
    "englishText": "The owl, being an owl,\nand I, being me,\ncan’t sleep"
  },
  {
    "id": 638,
    "publicationId": 17,
    "japaneseText": "どうしようもないわたしが歩いてゐる",
    "englishText": "Nothing else I can do\nI’ll just keep on walking"
  },
  {
    "id": 639,
    "publicationId": 17,
    "japaneseText": "月が昇れりわがまへの花ひらくべし",
    "englishText": "The moon rises\nA flower blooming\nBefore my eyes"
  },
  {
    "id": 640,
    "publicationId": 17,
    "japaneseText": "もりもりもりあがる雲へ歩む",
    "englishText": "rising high high higher\nwalking toward the clouds"
  },
  {
    "id": 641,
    "publicationId": 17,
    "japaneseText": "つかれた脚へとんぼとまった",
    "englishText": "A dragonfly landed\nat my weary feet"
  },
  {
    "id": 642,
    "publicationId": 17,
    "japaneseText": "雨だれの音も年とった",
    "englishText": "Even the sound\nof the rain\nhas grown old"
  },
  {
    "id": 643,
    "publicationId": 17,
    "japaneseText": "何を求める風の中ゆく",
    "englishText": "Whatever you wish for\nblows away in the wind"
  },
  {
    "id": 644,
    "publicationId": 17,
    "japaneseText": "窓あけて窓いっぱいの春",
    "englishText": "Open the window\nand the window\nis filled with Spring"
  },
  {
    "id": 645,
    "publicationId": 17,
    "japaneseText": "生死の中の雪ふりしきる",
    "englishText": "Snow falls endlessly\nbetween life and death"
  },
  {
    "id": 646,
    "publicationId": 17,
    "japaneseText": "歩きつづける彼岸花咲きつづける",
    "englishText": "I keep on walking\nand the red spider lily\nkeeps on blooming"
  },
  {
    "id": 647,
    "publicationId": 18,
    "englishText": "No path but this one—\nI walk alone."
  },
  {
    "id": 648,
    "publicationId": 18,
    "englishText": "Walking into the wind,\nheaping abuse upon myself."
  },
  {
    "id": 649,
    "publicationId": 18,
    "englishText": "Stretching out my feet;\nSome daylight still remains."
  },
  {
    "id": 650,
    "publicationId": 18,
    "englishText": "A steady autumn drizzle,\none road, straight ahead."
  },
  {
    "id": 651,
    "publicationId": 18,
    "englishText": "At the tobacco shop\nno cigarettes,\na cold rain falls."
  },
  {
    "id": 652,
    "publicationId": 18,
    "englishText": "The deep, cool moon\nAppears between the buildings."
  },
  {
    "id": 653,
    "publicationId": 18,
    "englishText": "Going deeper,\nAnd still deeper—\nThe green mountains."
  },
  {
    "id": 654,
    "publicationId": 18,
    "englishText": "I push my way through,\npush my way through,\ngreen mountains"
  },
  {
    "id": 655,
    "publicationId": 18,
    "englishText": "Thinking of nothing,\nI walk among\nA forest of withered trees."
  },
  {
    "id": 656,
    "publicationId": 18,
    "englishText": "soppy with morning dew / I go off / in any direction I please"
  },
  {
    "id": 657,
    "publicationId": 18,
    "englishText": "drizzly rain / only one road / to go by"
  },
  {
    "id": 658,
    "publicationId": 18,
    "englishText": "husband and wife quarreling / night / spiders dangle down"
  },
  {
    "id": 659,
    "publicationId": 18,
    "englishText": "as muddy water flows / it becomes clear"
  },
  {
    "id": 660,
    "publicationId": 18,
    "englishText": "hurry down the road / never look back"
  },
  {
    "id": 661,
    "publicationId": 18,
    "englishText": "no help / for the likes of me / I go on walking"
  },
  {
    "id": 662,
    "publicationId": 18,
    "englishText": "get drunk / you hear all sorts of voices / winter rain"
  },
  {
    "id": 663,
    "publicationId": 18,
    "englishText": "Heaven / doesn't kill me / it makes me write poems"
  },
  {
    "id": 664,
    "publicationId": 18,
    "englishText": "even in / my iron begging bowl / hailstones"
  },
  {
    "id": 665,
    "publicationId": 18,
    "englishText": "autumn wind / for all my walking / for all my walking"
  },
  {
    "id": 666,
    "publicationId": 18,
    "englishText": "stretching out my feet / they touch the man from Shikoku"
  },
  {
    "id": 667,
    "publicationId": 18,
    "englishText": "tree fallen over / sitting on it"
  },
  {
    "id": 668,
    "publicationId": 18,
    "englishText": "on the road / a tooth / about to come loose"
  },
  {
    "id": 669,
    "publicationId": 18,
    "englishText": "cold clouds / hurrying"
  },
  {
    "id": 670,
    "publicationId": 18,
    "englishText": "not a cloud in sight / off comes my hat"
  },
  {
    "id": 671,
    "publicationId": 18,
    "englishText": "camellia / I turned to look back at / red"
  },
  {
    "id": 672,
    "publicationId": 18,
    "englishText": "nearly run over / by a car / cold cold road"
  },
  {
    "id": 673,
    "publicationId": 18,
    "englishText": "the deeper I go / the deeper I go / green mountains"
  },
  {
    "id": 674,
    "publicationId": 18,
    "englishText": "even in\nmy iron begging bowl\nhailstones"
  },
  {
    "id": 675,
    "publicationId": 18,
    "englishText": "a drink would be nice now\nsunset sky"
  },
  {
    "id": 676,
    "publicationId": 18,
    "englishText": "all day\nin the mountains\nants too are walking"
  },
  {
    "id": 677,
    "publicationId": 18,
    "englishText": "autumn wind\nfor all my walking—-\nfor all my walking—-"
  },
  {
    "id": 678,
    "publicationId": 19,
    "japaneseText": "hana ga ha ni naru tôkyô yo sayônara",
    "englishText": "the blossoms / have become leaves so / tokyo, i leave"
  },
  {
    "id": 679,
    "publicationId": 19,
    "japaneseText": "hana ga ha ni naru tôkyô yo sayônara",
    "englishText": "hey, tokyo / your blossoms are leaves: / good-bye!"
  },
  {
    "id": 680,
    "publicationId": 19,
    "japaneseText": "itsu to naku sakura ga saite atte wa wakareru",
    "englishText": "well, the cherries / they blossomed in a wink / we meet, we part"
  },
  {
    "id": 681,
    "publicationId": 19,
    "japaneseText": "itsu to naku sakura ga saite atte wa wakareru",
    "englishText": "i almost missed / the cherry's bloom: soon as / we meet we part"
  },
  {
    "id": 682,
    "publicationId": 20,
    "japaneseText": "damatte kyô no waraji haku",
    "englishText": "wordless / i put on my waraji / for today"
  },
  {
    "id": 683,
    "publicationId": 20,
    "japaneseText": "damatte kyô no waraji haku",
    "englishText": "lips clenched / i put on today's footwear"
  },
  {
    "id": 684,
    "publicationId": 20,
    "englishText": "New Year's Eve / is dumb and New Year's / even dumber",
    "japaneseText": "ômisoka oroka nari ganjitsu nao oraoka nari"
  },
  {
    "id": 685,
    "publicationId": 20,
    "japaneseText": "asu wa ganjitsu no tsume demo kirô",
    "englishText": "this morning / i guess i'll clip the nails / of the new year"
  },
  {
    "id": 686,
    "publicationId": 20,
    "japaneseText": "asu wa ganjitsu no tsume demo kirô",
    "englishText": "i guess i'll clip / my new year nails / this morning"
  }
]