File size: 121,133 Bytes
847b6c5 |
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 |
[
{
"input": "Starting from Paumanok\n",
"output": "\n"
},
{
"input": "Starting from Paumanok\n\n",
"output": "Starting from fish-shape Paumanok where I was born,\n"
},
{
"input": "Starting from Paumanok\n\nStarting from fish-shape Paumanok where I was born,\n",
"output": "Well-begotten, and rais’d by a perfect mother,\n"
},
{
"input": "Starting from Paumanok\n\nStarting from fish-shape Paumanok where I was born,\nWell-begotten, and rais’d by a perfect mother,\n",
"output": "After roaming many lands, lover of populous pavements,\n"
},
{
"input": "Starting from Paumanok\n\nStarting from fish-shape Paumanok where I was born,\nWell-begotten, and rais’d by a perfect mother,\nAfter roaming many lands, lover of populous pavements,\n",
"output": "Dweller in Mannahatta my city, or on southern savannas,\n"
},
{
"input": "\nStarting from fish-shape Paumanok where I was born,\nWell-begotten, and rais’d by a perfect mother,\nAfter roaming many lands, lover of populous pavements,\nDweller in Mannahatta my city, or on southern savannas,\n",
"output": "Or a soldier camp’d or carrying my knapsack and gun, or a miner\n"
},
{
"input": "Starting from fish-shape Paumanok where I was born,\nWell-begotten, and rais’d by a perfect mother,\nAfter roaming many lands, lover of populous pavements,\nDweller in Mannahatta my city, or on southern savannas,\nOr a soldier camp’d or carrying my knapsack and gun, or a miner\n",
"output": "\tin California,\n"
},
{
"input": "Well-begotten, and rais’d by a perfect mother,\nAfter roaming many lands, lover of populous pavements,\nDweller in Mannahatta my city, or on southern savannas,\nOr a soldier camp’d or carrying my knapsack and gun, or a miner\n\tin California,\n",
"output": "Or rude in my home in Dakota’s woods, my diet meat, my drink from\n"
},
{
"input": "After roaming many lands, lover of populous pavements,\nDweller in Mannahatta my city, or on southern savannas,\nOr a soldier camp’d or carrying my knapsack and gun, or a miner\n\tin California,\nOr rude in my home in Dakota’s woods, my diet meat, my drink from\n",
"output": "\tthe spring,\n"
},
{
"input": "Or rude in my home in Dakota’s woods, my diet meat, my drink from\n",
"output": "\tthe spring,\n"
},
{
"input": "Or rude in my home in Dakota’s woods, my diet meat, my drink from\n\tthe spring,\n",
"output": "Or withdrawn to muse and meditate in some deep recess,\n"
},
{
"input": "Or rude in my home in Dakota’s woods, my diet meat, my drink from\n\tthe spring,\nOr withdrawn to muse and meditate in some deep recess,\n",
"output": "Far from the clank of crowds intervals passing rapt and happy,\n"
},
{
"input": "Or rude in my home in Dakota’s woods, my diet meat, my drink from\n\tthe spring,\nOr withdrawn to muse and meditate in some deep recess,\nFar from the clank of crowds intervals passing rapt and happy,\n",
"output": "Aware of the fresh free giver the flowing Missouri, aware of\n"
},
{
"input": "Or rude in my home in Dakota’s woods, my diet meat, my drink from\n\tthe spring,\nOr withdrawn to muse and meditate in some deep recess,\nFar from the clank of crowds intervals passing rapt and happy,\nAware of the fresh free giver the flowing Missouri, aware of\n",
"output": "\tmighty Niagara,\n"
},
{
"input": "\tthe spring,\nOr withdrawn to muse and meditate in some deep recess,\nFar from the clank of crowds intervals passing rapt and happy,\nAware of the fresh free giver the flowing Missouri, aware of\n\tmighty Niagara,\n",
"output": "Aware of the buffalo herds grazing the plains, the hirsute and\n"
},
{
"input": "Or withdrawn to muse and meditate in some deep recess,\nFar from the clank of crowds intervals passing rapt and happy,\nAware of the fresh free giver the flowing Missouri, aware of\n\tmighty Niagara,\nAware of the buffalo herds grazing the plains, the hirsute and\n",
"output": "\tstrong-breasted bull,\n"
},
{
"input": "Far from the clank of crowds intervals passing rapt and happy,\nAware of the fresh free giver the flowing Missouri, aware of\n\tmighty Niagara,\nAware of the buffalo herds grazing the plains, the hirsute and\n\tstrong-breasted bull,\n",
"output": "Of earth, rocks, Fifth-month flowers experienced, stars, rain, snow,\n"
},
{
"input": "Aware of the fresh free giver the flowing Missouri, aware of\n\tmighty Niagara,\nAware of the buffalo herds grazing the plains, the hirsute and\n\tstrong-breasted bull,\nOf earth, rocks, Fifth-month flowers experienced, stars, rain, snow,\n",
"output": "\tmy amaze,\n"
},
{
"input": "Of earth, rocks, Fifth-month flowers experienced, stars, rain, snow,\n",
"output": "\tmy amaze,\n"
},
{
"input": "Of earth, rocks, Fifth-month flowers experienced, stars, rain, snow,\n\tmy amaze,\n",
"output": "Having studied the mocking-bird’s tones and the flight of the\n"
},
{
"input": "Of earth, rocks, Fifth-month flowers experienced, stars, rain, snow,\n\tmy amaze,\nHaving studied the mocking-bird’s tones and the flight of the\n",
"output": "\tmountain-hawk,\n"
},
{
"input": "Of earth, rocks, Fifth-month flowers experienced, stars, rain, snow,\n\tmy amaze,\nHaving studied the mocking-bird’s tones and the flight of the\n\tmountain-hawk,\n",
"output": "And heard at dawn the unrivall’d one, the hermit thrush from the\n"
},
{
"input": "Of earth, rocks, Fifth-month flowers experienced, stars, rain, snow,\n\tmy amaze,\nHaving studied the mocking-bird’s tones and the flight of the\n\tmountain-hawk,\nAnd heard at dawn the unrivall’d one, the hermit thrush from the\n",
"output": "\tswamp-cedars,\n"
},
{
"input": "\tmy amaze,\nHaving studied the mocking-bird’s tones and the flight of the\n\tmountain-hawk,\nAnd heard at dawn the unrivall’d one, the hermit thrush from the\n\tswamp-cedars,\n",
"output": "Solitary, singing in the West, I strike up for a New World.\n"
},
{
"input": "Having studied the mocking-bird’s tones and the flight of the\n\tmountain-hawk,\nAnd heard at dawn the unrivall’d one, the hermit thrush from the\n\tswamp-cedars,\nSolitary, singing in the West, I strike up for a New World.\n",
"output": "\n"
},
{
"input": "\tmountain-hawk,\nAnd heard at dawn the unrivall’d one, the hermit thrush from the\n\tswamp-cedars,\nSolitary, singing in the West, I strike up for a New World.\n\n",
"output": "Victory, union, faith, identity, time,\n"
},
{
"input": "And heard at dawn the unrivall’d one, the hermit thrush from the\n\tswamp-cedars,\nSolitary, singing in the West, I strike up for a New World.\n\nVictory, union, faith, identity, time,\n",
"output": "The indissoluble compacts, riches, mystery,\n"
},
{
"input": "Victory, union, faith, identity, time,\n",
"output": "The indissoluble compacts, riches, mystery,\n"
},
{
"input": "Victory, union, faith, identity, time,\nThe indissoluble compacts, riches, mystery,\n",
"output": "Eternal progress, the kosmos, and the modern reports.\n"
},
{
"input": "Victory, union, faith, identity, time,\nThe indissoluble compacts, riches, mystery,\nEternal progress, the kosmos, and the modern reports.\n",
"output": "This then is life,\n"
},
{
"input": "Victory, union, faith, identity, time,\nThe indissoluble compacts, riches, mystery,\nEternal progress, the kosmos, and the modern reports.\nThis then is life,\n",
"output": "Here is what has come to the surface after so many throes and convulsions.\n"
},
{
"input": "Victory, union, faith, identity, time,\nThe indissoluble compacts, riches, mystery,\nEternal progress, the kosmos, and the modern reports.\nThis then is life,\nHere is what has come to the surface after so many throes and convulsions.\n",
"output": "\n"
},
{
"input": "The indissoluble compacts, riches, mystery,\nEternal progress, the kosmos, and the modern reports.\nThis then is life,\nHere is what has come to the surface after so many throes and convulsions.\n\n",
"output": "How curious! how real!\n"
},
{
"input": "Eternal progress, the kosmos, and the modern reports.\nThis then is life,\nHere is what has come to the surface after so many throes and convulsions.\n\nHow curious! how real!\n",
"output": "Underfoot the divine soil, overhead the sun.\n"
},
{
"input": "This then is life,\nHere is what has come to the surface after so many throes and convulsions.\n\nHow curious! how real!\nUnderfoot the divine soil, overhead the sun.\n",
"output": "\n"
},
{
"input": "Here is what has come to the surface after so many throes and convulsions.\n\nHow curious! how real!\nUnderfoot the divine soil, overhead the sun.\n\n",
"output": "See revolving the globe,\n"
},
{
"input": "\n",
"output": "See revolving the globe,\n"
},
{
"input": "\nSee revolving the globe,\n",
"output": "The ancestor-continents away group’d together,\n"
},
{
"input": "\nSee revolving the globe,\nThe ancestor-continents away group’d together,\n",
"output": "The present and future continents north and south, with the isthmus\n"
},
{
"input": "\nSee revolving the globe,\nThe ancestor-continents away group’d together,\nThe present and future continents north and south, with the isthmus\n",
"output": "\tbetween.\n"
},
{
"input": "\nSee revolving the globe,\nThe ancestor-continents away group’d together,\nThe present and future continents north and south, with the isthmus\n\tbetween.\n",
"output": "\n"
},
{
"input": "See revolving the globe,\nThe ancestor-continents away group’d together,\nThe present and future continents north and south, with the isthmus\n\tbetween.\n\n",
"output": "See, vast trackless spaces,\n"
},
{
"input": "The ancestor-continents away group’d together,\nThe present and future continents north and south, with the isthmus\n\tbetween.\n\nSee, vast trackless spaces,\n",
"output": "As in a dream they change, they swiftly fill,\n"
},
{
"input": "The present and future continents north and south, with the isthmus\n\tbetween.\n\nSee, vast trackless spaces,\nAs in a dream they change, they swiftly fill,\n",
"output": "Countless masses debouch upon them,\n"
},
{
"input": "\tbetween.\n\nSee, vast trackless spaces,\nAs in a dream they change, they swiftly fill,\nCountless masses debouch upon them,\n",
"output": "They are now cover’d with the foremost people, arts, institutions, known.\n"
},
{
"input": "Countless masses debouch upon them,\n",
"output": "They are now cover’d with the foremost people, arts, institutions, known.\n"
},
{
"input": "Countless masses debouch upon them,\nThey are now cover’d with the foremost people, arts, institutions, known.\n",
"output": "\n"
},
{
"input": "Countless masses debouch upon them,\nThey are now cover’d with the foremost people, arts, institutions, known.\n\n",
"output": "See, projected through time,\n"
},
{
"input": "Countless masses debouch upon them,\nThey are now cover’d with the foremost people, arts, institutions, known.\n\nSee, projected through time,\n",
"output": "For me an audience interminable.\n"
},
{
"input": "Countless masses debouch upon them,\nThey are now cover’d with the foremost people, arts, institutions, known.\n\nSee, projected through time,\nFor me an audience interminable.\n",
"output": "\n"
},
{
"input": "They are now cover’d with the foremost people, arts, institutions, known.\n\nSee, projected through time,\nFor me an audience interminable.\n\n",
"output": "With firm and regular step they wend, they never stop,\n"
},
{
"input": "\nSee, projected through time,\nFor me an audience interminable.\n\nWith firm and regular step they wend, they never stop,\n",
"output": "Successions of men, Americanos, a hundred millions,\n"
},
{
"input": "See, projected through time,\nFor me an audience interminable.\n\nWith firm and regular step they wend, they never stop,\nSuccessions of men, Americanos, a hundred millions,\n",
"output": "One generation playing its part and passing on,\n"
},
{
"input": "For me an audience interminable.\n\nWith firm and regular step they wend, they never stop,\nSuccessions of men, Americanos, a hundred millions,\nOne generation playing its part and passing on,\n",
"output": "Another generation playing its part and passing on in its turn,\n"
},
{
"input": "One generation playing its part and passing on,\n",
"output": "Another generation playing its part and passing on in its turn,\n"
},
{
"input": "One generation playing its part and passing on,\nAnother generation playing its part and passing on in its turn,\n",
"output": "With faces turn’d sideways or backward towards me to listen,\n"
},
{
"input": "One generation playing its part and passing on,\nAnother generation playing its part and passing on in its turn,\nWith faces turn’d sideways or backward towards me to listen,\n",
"output": "With eyes retrospective towards me.\n"
},
{
"input": "One generation playing its part and passing on,\nAnother generation playing its part and passing on in its turn,\nWith faces turn’d sideways or backward towards me to listen,\nWith eyes retrospective towards me.\n",
"output": "\n"
},
{
"input": "One generation playing its part and passing on,\nAnother generation playing its part and passing on in its turn,\nWith faces turn’d sideways or backward towards me to listen,\nWith eyes retrospective towards me.\n\n",
"output": "Americanos! conquerors! marches humanitarian!\n"
},
{
"input": "Another generation playing its part and passing on in its turn,\nWith faces turn’d sideways or backward towards me to listen,\nWith eyes retrospective towards me.\n\nAmericanos! conquerors! marches humanitarian!\n",
"output": "Foremost! century marches! Libertad! masses!\n"
},
{
"input": "With faces turn’d sideways or backward towards me to listen,\nWith eyes retrospective towards me.\n\nAmericanos! conquerors! marches humanitarian!\nForemost! century marches! Libertad! masses!\n",
"output": "For you a programme of chants.\n"
},
{
"input": "With eyes retrospective towards me.\n\nAmericanos! conquerors! marches humanitarian!\nForemost! century marches! Libertad! masses!\nFor you a programme of chants.\n",
"output": "\n"
},
{
"input": "\nAmericanos! conquerors! marches humanitarian!\nForemost! century marches! Libertad! masses!\nFor you a programme of chants.\n\n",
"output": "Chants of the prairies,\n"
},
{
"input": "\n",
"output": "Chants of the prairies,\n"
},
{
"input": "\nChants of the prairies,\n",
"output": "Chants of the long-running Mississippi, and down to the Mexican sea,\n"
},
{
"input": "\nChants of the prairies,\nChants of the long-running Mississippi, and down to the Mexican sea,\n",
"output": "Chants of Ohio, Indiana, Illinois, Iowa, Wisconsin and Minnesota,\n"
},
{
"input": "\nChants of the prairies,\nChants of the long-running Mississippi, and down to the Mexican sea,\nChants of Ohio, Indiana, Illinois, Iowa, Wisconsin and Minnesota,\n",
"output": "Chants going forth from the centre from Kansas, and thence equidistant,\n"
},
{
"input": "\nChants of the prairies,\nChants of the long-running Mississippi, and down to the Mexican sea,\nChants of Ohio, Indiana, Illinois, Iowa, Wisconsin and Minnesota,\nChants going forth from the centre from Kansas, and thence equidistant,\n",
"output": "Shooting in pulses of fire ceaseless to vivify all.\n"
},
{
"input": "Chants of the prairies,\nChants of the long-running Mississippi, and down to the Mexican sea,\nChants of Ohio, Indiana, Illinois, Iowa, Wisconsin and Minnesota,\nChants going forth from the centre from Kansas, and thence equidistant,\nShooting in pulses of fire ceaseless to vivify all.\n",
"output": "\n"
},
{
"input": "Chants of the long-running Mississippi, and down to the Mexican sea,\nChants of Ohio, Indiana, Illinois, Iowa, Wisconsin and Minnesota,\nChants going forth from the centre from Kansas, and thence equidistant,\nShooting in pulses of fire ceaseless to vivify all.\n\n",
"output": "Take my leaves America, take them South and take them North,\n"
},
{
"input": "Chants of Ohio, Indiana, Illinois, Iowa, Wisconsin and Minnesota,\nChants going forth from the centre from Kansas, and thence equidistant,\nShooting in pulses of fire ceaseless to vivify all.\n\nTake my leaves America, take them South and take them North,\n",
"output": "Make welcome for them everywhere, for they are your own off-spring,\n"
},
{
"input": "Chants going forth from the centre from Kansas, and thence equidistant,\nShooting in pulses of fire ceaseless to vivify all.\n\nTake my leaves America, take them South and take them North,\nMake welcome for them everywhere, for they are your own off-spring,\n",
"output": "Surround them East and West, for they would surround you,\n"
},
{
"input": "Make welcome for them everywhere, for they are your own off-spring,\n",
"output": "Surround them East and West, for they would surround you,\n"
},
{
"input": "Make welcome for them everywhere, for they are your own off-spring,\nSurround them East and West, for they would surround you,\n",
"output": "And you precedents, connect lovingly with them, for they connect\n"
},
{
"input": "Make welcome for them everywhere, for they are your own off-spring,\nSurround them East and West, for they would surround you,\nAnd you precedents, connect lovingly with them, for they connect\n",
"output": "\tlovingly with you.\n"
},
{
"input": "Make welcome for them everywhere, for they are your own off-spring,\nSurround them East and West, for they would surround you,\nAnd you precedents, connect lovingly with them, for they connect\n\tlovingly with you.\n",
"output": "\n"
},
{
"input": "Make welcome for them everywhere, for they are your own off-spring,\nSurround them East and West, for they would surround you,\nAnd you precedents, connect lovingly with them, for they connect\n\tlovingly with you.\n\n",
"output": "I conn’d old times,\n"
},
{
"input": "Surround them East and West, for they would surround you,\nAnd you precedents, connect lovingly with them, for they connect\n\tlovingly with you.\n\nI conn’d old times,\n",
"output": "I sat studying at the feet of the great masters,\n"
},
{
"input": "And you precedents, connect lovingly with them, for they connect\n\tlovingly with you.\n\nI conn’d old times,\nI sat studying at the feet of the great masters,\n",
"output": "Now if eligible O that the great masters might return and study me.\n"
},
{
"input": "\tlovingly with you.\n\nI conn’d old times,\nI sat studying at the feet of the great masters,\nNow if eligible O that the great masters might return and study me.\n",
"output": "\n"
},
{
"input": "\nI conn’d old times,\nI sat studying at the feet of the great masters,\nNow if eligible O that the great masters might return and study me.\n\n",
"output": "In the name of these States shall I scorn the antique?\n"
},
{
"input": "\n",
"output": "In the name of these States shall I scorn the antique?\n"
},
{
"input": "\nIn the name of these States shall I scorn the antique?\n",
"output": "Why these are the children of the antique to justify it.\n"
},
{
"input": "\nIn the name of these States shall I scorn the antique?\nWhy these are the children of the antique to justify it.\n",
"output": "\n"
},
{
"input": "\nIn the name of these States shall I scorn the antique?\nWhy these are the children of the antique to justify it.\n\n",
"output": "Dead poets, philosophs, priests,\n"
},
{
"input": "\nIn the name of these States shall I scorn the antique?\nWhy these are the children of the antique to justify it.\n\nDead poets, philosophs, priests,\n",
"output": "Martyrs, artists, inventors, governments long since,\n"
},
{
"input": "In the name of these States shall I scorn the antique?\nWhy these are the children of the antique to justify it.\n\nDead poets, philosophs, priests,\nMartyrs, artists, inventors, governments long since,\n",
"output": "Language-shapers on other shores,\n"
},
{
"input": "Why these are the children of the antique to justify it.\n\nDead poets, philosophs, priests,\nMartyrs, artists, inventors, governments long since,\nLanguage-shapers on other shores,\n",
"output": "Nations once powerful, now reduced, withdrawn, or desolate,\n"
},
{
"input": "\nDead poets, philosophs, priests,\nMartyrs, artists, inventors, governments long since,\nLanguage-shapers on other shores,\nNations once powerful, now reduced, withdrawn, or desolate,\n",
"output": "I dare not proceed till I respectfully credit what you have left\n"
},
{
"input": "Dead poets, philosophs, priests,\nMartyrs, artists, inventors, governments long since,\nLanguage-shapers on other shores,\nNations once powerful, now reduced, withdrawn, or desolate,\nI dare not proceed till I respectfully credit what you have left\n",
"output": "\twafted hither,\n"
},
{
"input": "I dare not proceed till I respectfully credit what you have left\n",
"output": "\twafted hither,\n"
},
{
"input": "I dare not proceed till I respectfully credit what you have left\n\twafted hither,\n",
"output": "I have perused it, own it is admirable, (moving awhile among it,)\n"
},
{
"input": "I dare not proceed till I respectfully credit what you have left\n\twafted hither,\nI have perused it, own it is admirable, (moving awhile among it,)\n",
"output": "Think nothing can ever be greater, nothing can ever deserve more\n"
},
{
"input": "I dare not proceed till I respectfully credit what you have left\n\twafted hither,\nI have perused it, own it is admirable, (moving awhile among it,)\nThink nothing can ever be greater, nothing can ever deserve more\n",
"output": "\tthan it deserves,\n"
},
{
"input": "I dare not proceed till I respectfully credit what you have left\n\twafted hither,\nI have perused it, own it is admirable, (moving awhile among it,)\nThink nothing can ever be greater, nothing can ever deserve more\n\tthan it deserves,\n",
"output": "Regarding it all intently a long while, then dismissing it,\n"
},
{
"input": "\twafted hither,\nI have perused it, own it is admirable, (moving awhile among it,)\nThink nothing can ever be greater, nothing can ever deserve more\n\tthan it deserves,\nRegarding it all intently a long while, then dismissing it,\n",
"output": "I stand in my place with my own day here.\n"
},
{
"input": "I have perused it, own it is admirable, (moving awhile among it,)\nThink nothing can ever be greater, nothing can ever deserve more\n\tthan it deserves,\nRegarding it all intently a long while, then dismissing it,\nI stand in my place with my own day here.\n",
"output": "\n"
},
{
"input": "Think nothing can ever be greater, nothing can ever deserve more\n\tthan it deserves,\nRegarding it all intently a long while, then dismissing it,\nI stand in my place with my own day here.\n\n",
"output": "Here lands female and male,\n"
},
{
"input": "\tthan it deserves,\nRegarding it all intently a long while, then dismissing it,\nI stand in my place with my own day here.\n\nHere lands female and male,\n",
"output": "Here the heir-ship and heiress-ship of the world, here the flame of\n"
},
{
"input": "Here lands female and male,\n",
"output": "Here the heir-ship and heiress-ship of the world, here the flame of\n"
},
{
"input": "Here lands female and male,\nHere the heir-ship and heiress-ship of the world, here the flame of\n",
"output": "\tmaterials,\n"
},
{
"input": "Here lands female and male,\nHere the heir-ship and heiress-ship of the world, here the flame of\n\tmaterials,\n",
"output": "Here spirituality the translatress, the openly-avow’d,\n"
},
{
"input": "Here lands female and male,\nHere the heir-ship and heiress-ship of the world, here the flame of\n\tmaterials,\nHere spirituality the translatress, the openly-avow’d,\n",
"output": "The ever-tending, the finale of visible forms,\n"
},
{
"input": "Here lands female and male,\nHere the heir-ship and heiress-ship of the world, here the flame of\n\tmaterials,\nHere spirituality the translatress, the openly-avow’d,\nThe ever-tending, the finale of visible forms,\n",
"output": "The satisfier, after due long-waiting now advancing,\n"
},
{
"input": "Here the heir-ship and heiress-ship of the world, here the flame of\n\tmaterials,\nHere spirituality the translatress, the openly-avow’d,\nThe ever-tending, the finale of visible forms,\nThe satisfier, after due long-waiting now advancing,\n",
"output": "Yes here comes my mistress the soul.\n"
},
{
"input": "\tmaterials,\nHere spirituality the translatress, the openly-avow’d,\nThe ever-tending, the finale of visible forms,\nThe satisfier, after due long-waiting now advancing,\nYes here comes my mistress the soul.\n",
"output": "\n"
},
{
"input": "Here spirituality the translatress, the openly-avow’d,\nThe ever-tending, the finale of visible forms,\nThe satisfier, after due long-waiting now advancing,\nYes here comes my mistress the soul.\n\n",
"output": "The soul,\n"
},
{
"input": "The ever-tending, the finale of visible forms,\nThe satisfier, after due long-waiting now advancing,\nYes here comes my mistress the soul.\n\nThe soul,\n",
"output": "Forever and forever--longer than soil is brown and solid--longer\n"
},
{
"input": "The soul,\n",
"output": "Forever and forever--longer than soil is brown and solid--longer\n"
},
{
"input": "The soul,\nForever and forever--longer than soil is brown and solid--longer\n",
"output": "\tthan water ebbs and flows.\n"
},
{
"input": "The soul,\nForever and forever--longer than soil is brown and solid--longer\n\tthan water ebbs and flows.\n",
"output": "I will make the poems of materials, for I think they are to be the\n"
},
{
"input": "The soul,\nForever and forever--longer than soil is brown and solid--longer\n\tthan water ebbs and flows.\nI will make the poems of materials, for I think they are to be the\n",
"output": "\tmost spiritual poems,\n"
},
{
"input": "The soul,\nForever and forever--longer than soil is brown and solid--longer\n\tthan water ebbs and flows.\nI will make the poems of materials, for I think they are to be the\n\tmost spiritual poems,\n",
"output": "And I will make the poems of my body and of mortality,\n"
},
{
"input": "Forever and forever--longer than soil is brown and solid--longer\n\tthan water ebbs and flows.\nI will make the poems of materials, for I think they are to be the\n\tmost spiritual poems,\nAnd I will make the poems of my body and of mortality,\n",
"output": "For I think I shall then supply myself with the poems of my soul and\n"
},
{
"input": "\tthan water ebbs and flows.\nI will make the poems of materials, for I think they are to be the\n\tmost spiritual poems,\nAnd I will make the poems of my body and of mortality,\nFor I think I shall then supply myself with the poems of my soul and\n",
"output": "\tof immortality.\n"
},
{
"input": "I will make the poems of materials, for I think they are to be the\n\tmost spiritual poems,\nAnd I will make the poems of my body and of mortality,\nFor I think I shall then supply myself with the poems of my soul and\n\tof immortality.\n",
"output": "\n"
},
{
"input": "\tmost spiritual poems,\nAnd I will make the poems of my body and of mortality,\nFor I think I shall then supply myself with the poems of my soul and\n\tof immortality.\n\n",
"output": "I will make a song for these States that no one State may under any\n"
},
{
"input": "\n",
"output": "I will make a song for these States that no one State may under any\n"
},
{
"input": "\nI will make a song for these States that no one State may under any\n",
"output": "\tcircumstances be subjected to another State,\n"
},
{
"input": "\nI will make a song for these States that no one State may under any\n\tcircumstances be subjected to another State,\n",
"output": "And I will make a song that there shall be comity by day and by\n"
},
{
"input": "\nI will make a song for these States that no one State may under any\n\tcircumstances be subjected to another State,\nAnd I will make a song that there shall be comity by day and by\n",
"output": "\tnight between all the States, and between any two of them,\n"
},
{
"input": "\nI will make a song for these States that no one State may under any\n\tcircumstances be subjected to another State,\nAnd I will make a song that there shall be comity by day and by\n\tnight between all the States, and between any two of them,\n",
"output": "And I will make a song for the ears of the President, full of\n"
},
{
"input": "I will make a song for these States that no one State may under any\n\tcircumstances be subjected to another State,\nAnd I will make a song that there shall be comity by day and by\n\tnight between all the States, and between any two of them,\nAnd I will make a song for the ears of the President, full of\n",
"output": "\tweapons with menacing points,\n"
},
{
"input": "\tcircumstances be subjected to another State,\nAnd I will make a song that there shall be comity by day and by\n\tnight between all the States, and between any two of them,\nAnd I will make a song for the ears of the President, full of\n\tweapons with menacing points,\n",
"output": "And behind the weapons countless dissatisfied faces;\n"
},
{
"input": "And I will make a song that there shall be comity by day and by\n\tnight between all the States, and between any two of them,\nAnd I will make a song for the ears of the President, full of\n\tweapons with menacing points,\nAnd behind the weapons countless dissatisfied faces;\n",
"output": "And a song make I of the One form’d out of all,\n"
},
{
"input": "\tnight between all the States, and between any two of them,\nAnd I will make a song for the ears of the President, full of\n\tweapons with menacing points,\nAnd behind the weapons countless dissatisfied faces;\nAnd a song make I of the One form’d out of all,\n",
"output": "The fang’d and glittering One whose head is over all,\n"
},
{
"input": "And a song make I of the One form’d out of all,\n",
"output": "The fang’d and glittering One whose head is over all,\n"
},
{
"input": "And a song make I of the One form’d out of all,\nThe fang’d and glittering One whose head is over all,\n",
"output": "Resolute warlike One including and over all,\n"
},
{
"input": "And a song make I of the One form’d out of all,\nThe fang’d and glittering One whose head is over all,\nResolute warlike One including and over all,\n",
"output": "(However high the head of any else that head is over all.)\n"
},
{
"input": "And a song make I of the One form’d out of all,\nThe fang’d and glittering One whose head is over all,\nResolute warlike One including and over all,\n(However high the head of any else that head is over all.)\n",
"output": "\n"
},
{
"input": "And a song make I of the One form’d out of all,\nThe fang’d and glittering One whose head is over all,\nResolute warlike One including and over all,\n(However high the head of any else that head is over all.)\n\n",
"output": "I will acknowledge contemporary lands,\n"
},
{
"input": "The fang’d and glittering One whose head is over all,\nResolute warlike One including and over all,\n(However high the head of any else that head is over all.)\n\nI will acknowledge contemporary lands,\n",
"output": "I will trail the whole geography of the globe and salute courteously\n"
},
{
"input": "Resolute warlike One including and over all,\n(However high the head of any else that head is over all.)\n\nI will acknowledge contemporary lands,\nI will trail the whole geography of the globe and salute courteously\n",
"output": "\tevery city large and small,\n"
},
{
"input": "(However high the head of any else that head is over all.)\n\nI will acknowledge contemporary lands,\nI will trail the whole geography of the globe and salute courteously\n\tevery city large and small,\n",
"output": "And employments! I will put in my poems that with you is heroism\n"
},
{
"input": "\nI will acknowledge contemporary lands,\nI will trail the whole geography of the globe and salute courteously\n\tevery city large and small,\nAnd employments! I will put in my poems that with you is heroism\n",
"output": "\tupon land and sea,\n"
},
{
"input": "And employments! I will put in my poems that with you is heroism\n",
"output": "\tupon land and sea,\n"
},
{
"input": "And employments! I will put in my poems that with you is heroism\n\tupon land and sea,\n",
"output": "And I will report all heroism from an American point of view.\n"
},
{
"input": "And employments! I will put in my poems that with you is heroism\n\tupon land and sea,\nAnd I will report all heroism from an American point of view.\n",
"output": "\n"
},
{
"input": "And employments! I will put in my poems that with you is heroism\n\tupon land and sea,\nAnd I will report all heroism from an American point of view.\n\n",
"output": "I will sing the song of companionship,\n"
},
{
"input": "And employments! I will put in my poems that with you is heroism\n\tupon land and sea,\nAnd I will report all heroism from an American point of view.\n\nI will sing the song of companionship,\n",
"output": "I will show what alone must finally compact these,\n"
},
{
"input": "\tupon land and sea,\nAnd I will report all heroism from an American point of view.\n\nI will sing the song of companionship,\nI will show what alone must finally compact these,\n",
"output": "I believe these are to found their own ideal of manly love,\n"
},
{
"input": "And I will report all heroism from an American point of view.\n\nI will sing the song of companionship,\nI will show what alone must finally compact these,\nI believe these are to found their own ideal of manly love,\n",
"output": "\tindicating it in me,\n"
},
{
"input": "\nI will sing the song of companionship,\nI will show what alone must finally compact these,\nI believe these are to found their own ideal of manly love,\n\tindicating it in me,\n",
"output": "I will therefore let flame from me the burning fires that were\n"
},
{
"input": "I will sing the song of companionship,\nI will show what alone must finally compact these,\nI believe these are to found their own ideal of manly love,\n\tindicating it in me,\nI will therefore let flame from me the burning fires that were\n",
"output": "\tthreatening to consume me,\n"
},
{
"input": "I will therefore let flame from me the burning fires that were\n",
"output": "\tthreatening to consume me,\n"
},
{
"input": "I will therefore let flame from me the burning fires that were\n\tthreatening to consume me,\n",
"output": "I will lift what has too long kept down those smouldering fires,\n"
},
{
"input": "I will therefore let flame from me the burning fires that were\n\tthreatening to consume me,\nI will lift what has too long kept down those smouldering fires,\n",
"output": "I will give them complete abandonment,\n"
},
{
"input": "I will therefore let flame from me the burning fires that were\n\tthreatening to consume me,\nI will lift what has too long kept down those smouldering fires,\nI will give them complete abandonment,\n",
"output": "I will write the evangel-poem of comrades and of love,\n"
},
{
"input": "I will therefore let flame from me the burning fires that were\n\tthreatening to consume me,\nI will lift what has too long kept down those smouldering fires,\nI will give them complete abandonment,\nI will write the evangel-poem of comrades and of love,\n",
"output": "For who but I should understand love with all its sorrow and joy?\n"
},
{
"input": "\tthreatening to consume me,\nI will lift what has too long kept down those smouldering fires,\nI will give them complete abandonment,\nI will write the evangel-poem of comrades and of love,\nFor who but I should understand love with all its sorrow and joy?\n",
"output": "And who but I should be the poet of comrades?\n"
},
{
"input": "I will lift what has too long kept down those smouldering fires,\nI will give them complete abandonment,\nI will write the evangel-poem of comrades and of love,\nFor who but I should understand love with all its sorrow and joy?\nAnd who but I should be the poet of comrades?\n",
"output": "\n"
},
{
"input": "I will give them complete abandonment,\nI will write the evangel-poem of comrades and of love,\nFor who but I should understand love with all its sorrow and joy?\nAnd who but I should be the poet of comrades?\n\n",
"output": "I am the credulous man of qualities, ages, races,\n"
},
{
"input": "I will write the evangel-poem of comrades and of love,\nFor who but I should understand love with all its sorrow and joy?\nAnd who but I should be the poet of comrades?\n\nI am the credulous man of qualities, ages, races,\n",
"output": "I advance from the people in their own spirit,\n"
},
{
"input": "I am the credulous man of qualities, ages, races,\n",
"output": "I advance from the people in their own spirit,\n"
},
{
"input": "I am the credulous man of qualities, ages, races,\nI advance from the people in their own spirit,\n",
"output": "Here is what sings unrestricted faith.\n"
},
{
"input": "I am the credulous man of qualities, ages, races,\nI advance from the people in their own spirit,\nHere is what sings unrestricted faith.\n",
"output": "\n"
},
{
"input": "I am the credulous man of qualities, ages, races,\nI advance from the people in their own spirit,\nHere is what sings unrestricted faith.\n\n",
"output": "Omnes! omnes! let others ignore what they may,\n"
},
{
"input": "I am the credulous man of qualities, ages, races,\nI advance from the people in their own spirit,\nHere is what sings unrestricted faith.\n\nOmnes! omnes! let others ignore what they may,\n",
"output": "I make the poem of evil also, I commemorate that part also,\n"
},
{
"input": "I advance from the people in their own spirit,\nHere is what sings unrestricted faith.\n\nOmnes! omnes! let others ignore what they may,\nI make the poem of evil also, I commemorate that part also,\n",
"output": "I am myself just as much evil as good, and my nation is--and I say\n"
},
{
"input": "Here is what sings unrestricted faith.\n\nOmnes! omnes! let others ignore what they may,\nI make the poem of evil also, I commemorate that part also,\nI am myself just as much evil as good, and my nation is--and I say\n",
"output": "\tthere is in fact no evil,\n"
},
{
"input": "\nOmnes! omnes! let others ignore what they may,\nI make the poem of evil also, I commemorate that part also,\nI am myself just as much evil as good, and my nation is--and I say\n\tthere is in fact no evil,\n",
"output": "(Or if there is I say it is just as important to you, to the land or\n"
},
{
"input": "Omnes! omnes! let others ignore what they may,\nI make the poem of evil also, I commemorate that part also,\nI am myself just as much evil as good, and my nation is--and I say\n\tthere is in fact no evil,\n(Or if there is I say it is just as important to you, to the land or\n",
"output": "\tto me, as any thing else.)\n"
},
{
"input": "(Or if there is I say it is just as important to you, to the land or\n",
"output": "\tto me, as any thing else.)\n"
},
{
"input": "(Or if there is I say it is just as important to you, to the land or\n\tto me, as any thing else.)\n",
"output": "\n"
},
{
"input": "(Or if there is I say it is just as important to you, to the land or\n\tto me, as any thing else.)\n\n",
"output": "I too, following many and follow’d by many, inaugurate a religion, I\n"
},
{
"input": "(Or if there is I say it is just as important to you, to the land or\n\tto me, as any thing else.)\n\nI too, following many and follow’d by many, inaugurate a religion, I\n",
"output": "\tdescend into the arena,\n"
},
{
"input": "(Or if there is I say it is just as important to you, to the land or\n\tto me, as any thing else.)\n\nI too, following many and follow’d by many, inaugurate a religion, I\n\tdescend into the arena,\n",
"output": "(It may be I am destin’d to utter the loudest cries there, the\n"
},
{
"input": "\tto me, as any thing else.)\n\nI too, following many and follow’d by many, inaugurate a religion, I\n\tdescend into the arena,\n(It may be I am destin’d to utter the loudest cries there, the\n",
"output": "\twinner’s pealing shouts,\n"
},
{
"input": "\nI too, following many and follow’d by many, inaugurate a religion, I\n\tdescend into the arena,\n(It may be I am destin’d to utter the loudest cries there, the\n\twinner’s pealing shouts,\n",
"output": "Who knows? they may rise from me yet, and soar above every thing.)\n"
},
{
"input": "I too, following many and follow’d by many, inaugurate a religion, I\n\tdescend into the arena,\n(It may be I am destin’d to utter the loudest cries there, the\n\twinner’s pealing shouts,\nWho knows? they may rise from me yet, and soar above every thing.)\n",
"output": "\n"
},
{
"input": "\tdescend into the arena,\n(It may be I am destin’d to utter the loudest cries there, the\n\twinner’s pealing shouts,\nWho knows? they may rise from me yet, and soar above every thing.)\n\n",
"output": "Each is not for its own sake,\n"
},
{
"input": "\n",
"output": "Each is not for its own sake,\n"
},
{
"input": "\nEach is not for its own sake,\n",
"output": "I say the whole earth and all the stars in the sky are for religion’s sake.\n"
},
{
"input": "\nEach is not for its own sake,\nI say the whole earth and all the stars in the sky are for religion’s sake.\n",
"output": "\n"
},
{
"input": "\nEach is not for its own sake,\nI say the whole earth and all the stars in the sky are for religion’s sake.\n\n",
"output": "I say no man has ever yet been half devout enough,\n"
},
{
"input": "\nEach is not for its own sake,\nI say the whole earth and all the stars in the sky are for religion’s sake.\n\nI say no man has ever yet been half devout enough,\n",
"output": "None has ever yet adored or worship’d half enough,\n"
},
{
"input": "Each is not for its own sake,\nI say the whole earth and all the stars in the sky are for religion’s sake.\n\nI say no man has ever yet been half devout enough,\nNone has ever yet adored or worship’d half enough,\n",
"output": "None has begun to think how divine he himself is, and how certain\n"
},
{
"input": "I say the whole earth and all the stars in the sky are for religion’s sake.\n\nI say no man has ever yet been half devout enough,\nNone has ever yet adored or worship’d half enough,\nNone has begun to think how divine he himself is, and how certain\n",
"output": "\tthe future is.\n"
},
{
"input": "\nI say no man has ever yet been half devout enough,\nNone has ever yet adored or worship’d half enough,\nNone has begun to think how divine he himself is, and how certain\n\tthe future is.\n",
"output": "\n"
},
{
"input": "I say no man has ever yet been half devout enough,\nNone has ever yet adored or worship’d half enough,\nNone has begun to think how divine he himself is, and how certain\n\tthe future is.\n\n",
"output": "I say that the real and permanent grandeur of these States must be\n"
},
{
"input": "\n",
"output": "I say that the real and permanent grandeur of these States must be\n"
},
{
"input": "\nI say that the real and permanent grandeur of these States must be\n",
"output": "\ttheir religion,\n"
},
{
"input": "\nI say that the real and permanent grandeur of these States must be\n\ttheir religion,\n",
"output": "Otherwise there is just no real and permanent grandeur;\n"
},
{
"input": "\nI say that the real and permanent grandeur of these States must be\n\ttheir religion,\nOtherwise there is just no real and permanent grandeur;\n",
"output": "(Nor character nor life worthy the name without religion,\n"
},
{
"input": "\nI say that the real and permanent grandeur of these States must be\n\ttheir religion,\nOtherwise there is just no real and permanent grandeur;\n(Nor character nor life worthy the name without religion,\n",
"output": "Nor land nor man or woman without religion.)\n"
},
{
"input": "I say that the real and permanent grandeur of these States must be\n\ttheir religion,\nOtherwise there is just no real and permanent grandeur;\n(Nor character nor life worthy the name without religion,\nNor land nor man or woman without religion.)\n",
"output": "\n"
},
{
"input": "\ttheir religion,\nOtherwise there is just no real and permanent grandeur;\n(Nor character nor life worthy the name without religion,\nNor land nor man or woman without religion.)\n\n",
"output": "What are you doing young man?\n"
},
{
"input": "Otherwise there is just no real and permanent grandeur;\n(Nor character nor life worthy the name without religion,\nNor land nor man or woman without religion.)\n\nWhat are you doing young man?\n",
"output": "Are you so earnest, so given up to literature, science, art, amours?\n"
},
{
"input": "(Nor character nor life worthy the name without religion,\nNor land nor man or woman without religion.)\n\nWhat are you doing young man?\nAre you so earnest, so given up to literature, science, art, amours?\n",
"output": "These ostensible realities, politics, points?\n"
},
{
"input": "Are you so earnest, so given up to literature, science, art, amours?\n",
"output": "These ostensible realities, politics, points?\n"
},
{
"input": "Are you so earnest, so given up to literature, science, art, amours?\nThese ostensible realities, politics, points?\n",
"output": "Your ambition or business whatever it may be?\n"
},
{
"input": "Are you so earnest, so given up to literature, science, art, amours?\nThese ostensible realities, politics, points?\nYour ambition or business whatever it may be?\n",
"output": "\n"
},
{
"input": "Are you so earnest, so given up to literature, science, art, amours?\nThese ostensible realities, politics, points?\nYour ambition or business whatever it may be?\n\n",
"output": "It is well--against such I say not a word, I am their poet also,\n"
},
{
"input": "Are you so earnest, so given up to literature, science, art, amours?\nThese ostensible realities, politics, points?\nYour ambition or business whatever it may be?\n\nIt is well--against such I say not a word, I am their poet also,\n",
"output": "But behold! such swiftly subside, burnt up for religion’s sake,\n"
},
{
"input": "These ostensible realities, politics, points?\nYour ambition or business whatever it may be?\n\nIt is well--against such I say not a word, I am their poet also,\nBut behold! such swiftly subside, burnt up for religion’s sake,\n",
"output": "For not all matter is fuel to heat, impalpable flame, the essential\n"
},
{
"input": "Your ambition or business whatever it may be?\n\nIt is well--against such I say not a word, I am their poet also,\nBut behold! such swiftly subside, burnt up for religion’s sake,\nFor not all matter is fuel to heat, impalpable flame, the essential\n",
"output": "\tlife of the earth,\n"
},
{
"input": "\nIt is well--against such I say not a word, I am their poet also,\nBut behold! such swiftly subside, burnt up for religion’s sake,\nFor not all matter is fuel to heat, impalpable flame, the essential\n\tlife of the earth,\n",
"output": "Any more than such are to religion.\n"
},
{
"input": "It is well--against such I say not a word, I am their poet also,\nBut behold! such swiftly subside, burnt up for religion’s sake,\nFor not all matter is fuel to heat, impalpable flame, the essential\n\tlife of the earth,\nAny more than such are to religion.\n",
"output": "\n"
},
{
"input": "Any more than such are to religion.\n",
"output": "\n"
},
{
"input": "Any more than such are to religion.\n\n",
"output": "What do you seek so pensive and silent?\n"
},
{
"input": "Any more than such are to religion.\n\nWhat do you seek so pensive and silent?\n",
"output": "What do you need camerado?\n"
},
{
"input": "Any more than such are to religion.\n\nWhat do you seek so pensive and silent?\nWhat do you need camerado?\n",
"output": "Dear son do you think it is love?\n"
},
{
"input": "Any more than such are to religion.\n\nWhat do you seek so pensive and silent?\nWhat do you need camerado?\nDear son do you think it is love?\n",
"output": "\n"
},
{
"input": "\nWhat do you seek so pensive and silent?\nWhat do you need camerado?\nDear son do you think it is love?\n\n",
"output": "Listen dear son--listen America, daughter or son,\n"
},
{
"input": "What do you seek so pensive and silent?\nWhat do you need camerado?\nDear son do you think it is love?\n\nListen dear son--listen America, daughter or son,\n",
"output": "It is a painful thing to love a man or woman to excess, and yet it\n"
},
{
"input": "What do you need camerado?\nDear son do you think it is love?\n\nListen dear son--listen America, daughter or son,\nIt is a painful thing to love a man or woman to excess, and yet it\n",
"output": "\tsatisfies, it is great,\n"
},
{
"input": "Dear son do you think it is love?\n\nListen dear son--listen America, daughter or son,\nIt is a painful thing to love a man or woman to excess, and yet it\n\tsatisfies, it is great,\n",
"output": "But there is something else very great, it makes the whole coincide,\n"
},
{
"input": "\tsatisfies, it is great,\n",
"output": "But there is something else very great, it makes the whole coincide,\n"
},
{
"input": "\tsatisfies, it is great,\nBut there is something else very great, it makes the whole coincide,\n",
"output": "It, magnificent, beyond materials, with continuous hands sweeps and\n"
},
{
"input": "\tsatisfies, it is great,\nBut there is something else very great, it makes the whole coincide,\nIt, magnificent, beyond materials, with continuous hands sweeps and\n",
"output": "\tprovides for all.\n"
},
{
"input": "\tsatisfies, it is great,\nBut there is something else very great, it makes the whole coincide,\nIt, magnificent, beyond materials, with continuous hands sweeps and\n\tprovides for all.\n",
"output": "\n"
},
{
"input": "\tsatisfies, it is great,\nBut there is something else very great, it makes the whole coincide,\nIt, magnificent, beyond materials, with continuous hands sweeps and\n\tprovides for all.\n\n",
"output": "Know you, solely to drop in the earth the germs of a greater religion,\n"
},
{
"input": "But there is something else very great, it makes the whole coincide,\nIt, magnificent, beyond materials, with continuous hands sweeps and\n\tprovides for all.\n\nKnow you, solely to drop in the earth the germs of a greater religion,\n",
"output": "The following chants each for its kind I sing.\n"
},
{
"input": "It, magnificent, beyond materials, with continuous hands sweeps and\n\tprovides for all.\n\nKnow you, solely to drop in the earth the germs of a greater religion,\nThe following chants each for its kind I sing.\n",
"output": "\n"
},
{
"input": "\tprovides for all.\n\nKnow you, solely to drop in the earth the germs of a greater religion,\nThe following chants each for its kind I sing.\n\n",
"output": "My comrade!\n"
},
{
"input": "\nKnow you, solely to drop in the earth the germs of a greater religion,\nThe following chants each for its kind I sing.\n\nMy comrade!\n",
"output": "For you to share with me two greatnesses, and a third one rising\n"
},
{
"input": "My comrade!\n",
"output": "For you to share with me two greatnesses, and a third one rising\n"
},
{
"input": "My comrade!\nFor you to share with me two greatnesses, and a third one rising\n",
"output": "\tinclusive and more resplendent,\n"
},
{
"input": "My comrade!\nFor you to share with me two greatnesses, and a third one rising\n\tinclusive and more resplendent,\n",
"output": "The greatness of Love and Democracy, and the greatness of Religion.\n"
},
{
"input": "My comrade!\nFor you to share with me two greatnesses, and a third one rising\n\tinclusive and more resplendent,\nThe greatness of Love and Democracy, and the greatness of Religion.\n",
"output": "\n"
},
{
"input": "My comrade!\nFor you to share with me two greatnesses, and a third one rising\n\tinclusive and more resplendent,\nThe greatness of Love and Democracy, and the greatness of Religion.\n\n",
"output": "Melange mine own, the unseen and the seen,\n"
},
{
"input": "For you to share with me two greatnesses, and a third one rising\n\tinclusive and more resplendent,\nThe greatness of Love and Democracy, and the greatness of Religion.\n\nMelange mine own, the unseen and the seen,\n",
"output": "Mysterious ocean where the streams empty,\n"
},
{
"input": "\tinclusive and more resplendent,\nThe greatness of Love and Democracy, and the greatness of Religion.\n\nMelange mine own, the unseen and the seen,\nMysterious ocean where the streams empty,\n",
"output": "Prophetic spirit of materials shifting and flickering around me,\n"
},
{
"input": "The greatness of Love and Democracy, and the greatness of Religion.\n\nMelange mine own, the unseen and the seen,\nMysterious ocean where the streams empty,\nProphetic spirit of materials shifting and flickering around me,\n",
"output": "Living beings, identities now doubtless near us in the air that we\n"
},
{
"input": "\nMelange mine own, the unseen and the seen,\nMysterious ocean where the streams empty,\nProphetic spirit of materials shifting and flickering around me,\nLiving beings, identities now doubtless near us in the air that we\n",
"output": "\tknow not of,\n"
},
{
"input": "Living beings, identities now doubtless near us in the air that we\n",
"output": "\tknow not of,\n"
},
{
"input": "Living beings, identities now doubtless near us in the air that we\n\tknow not of,\n",
"output": "Contact daily and hourly that will not release me,\n"
},
{
"input": "Living beings, identities now doubtless near us in the air that we\n\tknow not of,\nContact daily and hourly that will not release me,\n",
"output": "These selecting, these in hints demanded of me.\n"
},
{
"input": "Living beings, identities now doubtless near us in the air that we\n\tknow not of,\nContact daily and hourly that will not release me,\nThese selecting, these in hints demanded of me.\n",
"output": "\n"
},
{
"input": "Living beings, identities now doubtless near us in the air that we\n\tknow not of,\nContact daily and hourly that will not release me,\nThese selecting, these in hints demanded of me.\n\n",
"output": "Not he with a daily kiss onward from childhood kissing me,\n"
},
{
"input": "\tknow not of,\nContact daily and hourly that will not release me,\nThese selecting, these in hints demanded of me.\n\nNot he with a daily kiss onward from childhood kissing me,\n",
"output": "Has winded and twisted around me that which holds me to him,\n"
},
{
"input": "Contact daily and hourly that will not release me,\nThese selecting, these in hints demanded of me.\n\nNot he with a daily kiss onward from childhood kissing me,\nHas winded and twisted around me that which holds me to him,\n",
"output": "Any more than I am held to the heavens and all the spiritual world,\n"
},
{
"input": "These selecting, these in hints demanded of me.\n\nNot he with a daily kiss onward from childhood kissing me,\nHas winded and twisted around me that which holds me to him,\nAny more than I am held to the heavens and all the spiritual world,\n",
"output": "After what they have done to me, suggesting themes.\n"
},
{
"input": "\nNot he with a daily kiss onward from childhood kissing me,\nHas winded and twisted around me that which holds me to him,\nAny more than I am held to the heavens and all the spiritual world,\nAfter what they have done to me, suggesting themes.\n",
"output": "\n"
},
{
"input": "After what they have done to me, suggesting themes.\n",
"output": "\n"
},
{
"input": "After what they have done to me, suggesting themes.\n\n",
"output": "O such themes--equalities! O divine average!\n"
},
{
"input": "After what they have done to me, suggesting themes.\n\nO such themes--equalities! O divine average!\n",
"output": "Warblings under the sun, usher’d as now, or at noon, or setting,\n"
},
{
"input": "After what they have done to me, suggesting themes.\n\nO such themes--equalities! O divine average!\nWarblings under the sun, usher’d as now, or at noon, or setting,\n",
"output": "Strains musical flowing through ages, now reaching hither,\n"
},
{
"input": "After what they have done to me, suggesting themes.\n\nO such themes--equalities! O divine average!\nWarblings under the sun, usher’d as now, or at noon, or setting,\nStrains musical flowing through ages, now reaching hither,\n",
"output": "I take to your reckless and composite chords, add to them, and\n"
},
{
"input": "\nO such themes--equalities! O divine average!\nWarblings under the sun, usher’d as now, or at noon, or setting,\nStrains musical flowing through ages, now reaching hither,\nI take to your reckless and composite chords, add to them, and\n",
"output": "\tcheerfully pass them forward.\n"
},
{
"input": "O such themes--equalities! O divine average!\nWarblings under the sun, usher’d as now, or at noon, or setting,\nStrains musical flowing through ages, now reaching hither,\nI take to your reckless and composite chords, add to them, and\n\tcheerfully pass them forward.\n",
"output": "\n"
},
{
"input": "Warblings under the sun, usher’d as now, or at noon, or setting,\nStrains musical flowing through ages, now reaching hither,\nI take to your reckless and composite chords, add to them, and\n\tcheerfully pass them forward.\n\n",
"output": "As I have walk’d in Alabama my morning walk,\n"
},
{
"input": "Strains musical flowing through ages, now reaching hither,\nI take to your reckless and composite chords, add to them, and\n\tcheerfully pass them forward.\n\nAs I have walk’d in Alabama my morning walk,\n",
"output": "I have seen where the she-bird the mocking-bird sat on her nest in\n"
},
{
"input": "As I have walk’d in Alabama my morning walk,\n",
"output": "I have seen where the she-bird the mocking-bird sat on her nest in\n"
},
{
"input": "As I have walk’d in Alabama my morning walk,\nI have seen where the she-bird the mocking-bird sat on her nest in\n",
"output": "\tthe briers hatching her brood.\n"
},
{
"input": "As I have walk’d in Alabama my morning walk,\nI have seen where the she-bird the mocking-bird sat on her nest in\n\tthe briers hatching her brood.\n",
"output": "\n"
},
{
"input": "As I have walk’d in Alabama my morning walk,\nI have seen where the she-bird the mocking-bird sat on her nest in\n\tthe briers hatching her brood.\n\n",
"output": "I have seen the he-bird also,\n"
},
{
"input": "As I have walk’d in Alabama my morning walk,\nI have seen where the she-bird the mocking-bird sat on her nest in\n\tthe briers hatching her brood.\n\nI have seen the he-bird also,\n",
"output": "I have paus’d to hear him near at hand inflating his throat and\n"
},
{
"input": "I have seen where the she-bird the mocking-bird sat on her nest in\n\tthe briers hatching her brood.\n\nI have seen the he-bird also,\nI have paus’d to hear him near at hand inflating his throat and\n",
"output": "\tjoyfully singing.\n"
},
{
"input": "\tthe briers hatching her brood.\n\nI have seen the he-bird also,\nI have paus’d to hear him near at hand inflating his throat and\n\tjoyfully singing.\n",
"output": "\n"
},
{
"input": "\nI have seen the he-bird also,\nI have paus’d to hear him near at hand inflating his throat and\n\tjoyfully singing.\n\n",
"output": "And while I paus’d it came to me that what he really sang for was\n"
},
{
"input": "I have seen the he-bird also,\nI have paus’d to hear him near at hand inflating his throat and\n\tjoyfully singing.\n\nAnd while I paus’d it came to me that what he really sang for was\n",
"output": "\tnot there only,\n"
},
{
"input": "And while I paus’d it came to me that what he really sang for was\n",
"output": "\tnot there only,\n"
},
{
"input": "And while I paus’d it came to me that what he really sang for was\n\tnot there only,\n",
"output": "Nor for his mate nor himself only, nor all sent back by the echoes,\n"
},
{
"input": "And while I paus’d it came to me that what he really sang for was\n\tnot there only,\nNor for his mate nor himself only, nor all sent back by the echoes,\n",
"output": "But subtle, clandestine, away beyond,\n"
},
{
"input": "And while I paus’d it came to me that what he really sang for was\n\tnot there only,\nNor for his mate nor himself only, nor all sent back by the echoes,\nBut subtle, clandestine, away beyond,\n",
"output": "A charge transmitted and gift occult for those being born.\n"
},
{
"input": "And while I paus’d it came to me that what he really sang for was\n\tnot there only,\nNor for his mate nor himself only, nor all sent back by the echoes,\nBut subtle, clandestine, away beyond,\nA charge transmitted and gift occult for those being born.\n",
"output": "\n"
},
{
"input": "\tnot there only,\nNor for his mate nor himself only, nor all sent back by the echoes,\nBut subtle, clandestine, away beyond,\nA charge transmitted and gift occult for those being born.\n\n",
"output": "Democracy! near at hand to you a throat is now inflating itself and\n"
},
{
"input": "Nor for his mate nor himself only, nor all sent back by the echoes,\nBut subtle, clandestine, away beyond,\nA charge transmitted and gift occult for those being born.\n\nDemocracy! near at hand to you a throat is now inflating itself and\n",
"output": "\tjoyfully singing.\n"
},
{
"input": "But subtle, clandestine, away beyond,\nA charge transmitted and gift occult for those being born.\n\nDemocracy! near at hand to you a throat is now inflating itself and\n\tjoyfully singing.\n",
"output": "\n"
},
{
"input": "A charge transmitted and gift occult for those being born.\n\nDemocracy! near at hand to you a throat is now inflating itself and\n\tjoyfully singing.\n\n",
"output": "Ma femme! for the brood beyond us and of us,\n"
},
{
"input": "\n",
"output": "Ma femme! for the brood beyond us and of us,\n"
},
{
"input": "\nMa femme! for the brood beyond us and of us,\n",
"output": "For those who belong here and those to come,\n"
},
{
"input": "\nMa femme! for the brood beyond us and of us,\nFor those who belong here and those to come,\n",
"output": "I exultant to be ready for them will now shake out carols stronger\n"
},
{
"input": "\nMa femme! for the brood beyond us and of us,\nFor those who belong here and those to come,\nI exultant to be ready for them will now shake out carols stronger\n",
"output": "\tand haughtier than have ever yet been heard upon earth.\n"
},
{
"input": "\nMa femme! for the brood beyond us and of us,\nFor those who belong here and those to come,\nI exultant to be ready for them will now shake out carols stronger\n\tand haughtier than have ever yet been heard upon earth.\n",
"output": "\n"
},
{
"input": "Ma femme! for the brood beyond us and of us,\nFor those who belong here and those to come,\nI exultant to be ready for them will now shake out carols stronger\n\tand haughtier than have ever yet been heard upon earth.\n\n",
"output": "I will make the songs of passion to give them their way,\n"
},
{
"input": "For those who belong here and those to come,\nI exultant to be ready for them will now shake out carols stronger\n\tand haughtier than have ever yet been heard upon earth.\n\nI will make the songs of passion to give them their way,\n",
"output": "And your songs outlaw’d offenders, for I scan you with kindred eyes,\n"
},
{
"input": "I exultant to be ready for them will now shake out carols stronger\n\tand haughtier than have ever yet been heard upon earth.\n\nI will make the songs of passion to give them their way,\nAnd your songs outlaw’d offenders, for I scan you with kindred eyes,\n",
"output": "\tand carry you with me the same as any.\n"
},
{
"input": "\tand haughtier than have ever yet been heard upon earth.\n\nI will make the songs of passion to give them their way,\nAnd your songs outlaw’d offenders, for I scan you with kindred eyes,\n\tand carry you with me the same as any.\n",
"output": "\n"
},
{
"input": "\tand carry you with me the same as any.\n",
"output": "\n"
},
{
"input": "\tand carry you with me the same as any.\n\n",
"output": "I will make the true poem of riches,\n"
},
{
"input": "\tand carry you with me the same as any.\n\nI will make the true poem of riches,\n",
"output": "To earn for the body and the mind whatever adheres and goes forward\n"
},
{
"input": "\tand carry you with me the same as any.\n\nI will make the true poem of riches,\nTo earn for the body and the mind whatever adheres and goes forward\n",
"output": "\tand is not dropt by death;\n"
},
{
"input": "\tand carry you with me the same as any.\n\nI will make the true poem of riches,\nTo earn for the body and the mind whatever adheres and goes forward\n\tand is not dropt by death;\n",
"output": "I will effuse egotism and show it underlying all, and I will be the\n"
},
{
"input": "\nI will make the true poem of riches,\nTo earn for the body and the mind whatever adheres and goes forward\n\tand is not dropt by death;\nI will effuse egotism and show it underlying all, and I will be the\n",
"output": "\tbard of personality,\n"
},
{
"input": "I will make the true poem of riches,\nTo earn for the body and the mind whatever adheres and goes forward\n\tand is not dropt by death;\nI will effuse egotism and show it underlying all, and I will be the\n\tbard of personality,\n",
"output": "And I will show of male and female that either is but the equal of\n"
},
{
"input": "To earn for the body and the mind whatever adheres and goes forward\n\tand is not dropt by death;\nI will effuse egotism and show it underlying all, and I will be the\n\tbard of personality,\nAnd I will show of male and female that either is but the equal of\n",
"output": "\tthe other,\n"
},
{
"input": "\tand is not dropt by death;\nI will effuse egotism and show it underlying all, and I will be the\n\tbard of personality,\nAnd I will show of male and female that either is but the equal of\n\tthe other,\n",
"output": "And sexual organs and acts! do you concentrate in me, for I am determin’d\n"
},
{
"input": "\tthe other,\n",
"output": "And sexual organs and acts! do you concentrate in me, for I am determin’d\n"
},
{
"input": "\tthe other,\nAnd sexual organs and acts! do you concentrate in me, for I am determin’d\n",
"output": "\tto tell you with courageous clear voice to prove you illustrious,\n"
},
{
"input": "\tthe other,\nAnd sexual organs and acts! do you concentrate in me, for I am determin’d\n\tto tell you with courageous clear voice to prove you illustrious,\n",
"output": "And I will show that there is no imperfection in the present, and\n"
},
{
"input": "\tthe other,\nAnd sexual organs and acts! do you concentrate in me, for I am determin’d\n\tto tell you with courageous clear voice to prove you illustrious,\nAnd I will show that there is no imperfection in the present, and\n",
"output": "\tcan be none in the future,\n"
},
{
"input": "\tthe other,\nAnd sexual organs and acts! do you concentrate in me, for I am determin’d\n\tto tell you with courageous clear voice to prove you illustrious,\nAnd I will show that there is no imperfection in the present, and\n\tcan be none in the future,\n",
"output": "And I will show that whatever happens to anybody it may be turn’d to\n"
},
{
"input": "And sexual organs and acts! do you concentrate in me, for I am determin’d\n\tto tell you with courageous clear voice to prove you illustrious,\nAnd I will show that there is no imperfection in the present, and\n\tcan be none in the future,\nAnd I will show that whatever happens to anybody it may be turn’d to\n",
"output": "\tbeautiful results,\n"
},
{
"input": "\tto tell you with courageous clear voice to prove you illustrious,\nAnd I will show that there is no imperfection in the present, and\n\tcan be none in the future,\nAnd I will show that whatever happens to anybody it may be turn’d to\n\tbeautiful results,\n",
"output": "And I will show that nothing can happen more beautiful than death,\n"
},
{
"input": "And I will show that there is no imperfection in the present, and\n\tcan be none in the future,\nAnd I will show that whatever happens to anybody it may be turn’d to\n\tbeautiful results,\nAnd I will show that nothing can happen more beautiful than death,\n",
"output": "And I will thread a thread through my poems that time and events are\n"
},
{
"input": "\tcan be none in the future,\nAnd I will show that whatever happens to anybody it may be turn’d to\n\tbeautiful results,\nAnd I will show that nothing can happen more beautiful than death,\nAnd I will thread a thread through my poems that time and events are\n",
"output": "\tcompact,\n"
},
{
"input": "And I will thread a thread through my poems that time and events are\n",
"output": "\tcompact,\n"
},
{
"input": "And I will thread a thread through my poems that time and events are\n\tcompact,\n",
"output": "And that all the things of the universe are perfect miracles, each\n"
},
{
"input": "And I will thread a thread through my poems that time and events are\n\tcompact,\nAnd that all the things of the universe are perfect miracles, each\n",
"output": "\tas profound as any.\n"
},
{
"input": "And I will thread a thread through my poems that time and events are\n\tcompact,\nAnd that all the things of the universe are perfect miracles, each\n\tas profound as any.\n",
"output": "\n"
},
{
"input": "And I will thread a thread through my poems that time and events are\n\tcompact,\nAnd that all the things of the universe are perfect miracles, each\n\tas profound as any.\n\n",
"output": "I will not make poems with reference to parts,\n"
},
{
"input": "\tcompact,\nAnd that all the things of the universe are perfect miracles, each\n\tas profound as any.\n\nI will not make poems with reference to parts,\n",
"output": "But I will make poems, songs, thoughts, with reference to ensemble,\n"
},
{
"input": "And that all the things of the universe are perfect miracles, each\n\tas profound as any.\n\nI will not make poems with reference to parts,\nBut I will make poems, songs, thoughts, with reference to ensemble,\n",
"output": "And I will not sing with reference to a day, but with reference to\n"
},
{
"input": "\tas profound as any.\n\nI will not make poems with reference to parts,\nBut I will make poems, songs, thoughts, with reference to ensemble,\nAnd I will not sing with reference to a day, but with reference to\n",
"output": "\tall days,\n"
},
{
"input": "\nI will not make poems with reference to parts,\nBut I will make poems, songs, thoughts, with reference to ensemble,\nAnd I will not sing with reference to a day, but with reference to\n\tall days,\n",
"output": "And I will not make a poem nor the least part of a poem but has\n"
},
{
"input": "\tall days,\n",
"output": "And I will not make a poem nor the least part of a poem but has\n"
},
{
"input": "\tall days,\nAnd I will not make a poem nor the least part of a poem but has\n",
"output": "\treference to the soul,\n"
},
{
"input": "\tall days,\nAnd I will not make a poem nor the least part of a poem but has\n\treference to the soul,\n",
"output": "Because having look’d at the objects of the universe, I find there\n"
},
{
"input": "\tall days,\nAnd I will not make a poem nor the least part of a poem but has\n\treference to the soul,\nBecause having look’d at the objects of the universe, I find there\n",
"output": "\tis no one nor any particle of one but has reference to the soul.\n"
},
{
"input": "\tall days,\nAnd I will not make a poem nor the least part of a poem but has\n\treference to the soul,\nBecause having look’d at the objects of the universe, I find there\n\tis no one nor any particle of one but has reference to the soul.\n",
"output": "\n"
},
{
"input": "And I will not make a poem nor the least part of a poem but has\n\treference to the soul,\nBecause having look’d at the objects of the universe, I find there\n\tis no one nor any particle of one but has reference to the soul.\n\n",
"output": "Was somebody asking to see the soul?\n"
},
{
"input": "\treference to the soul,\nBecause having look’d at the objects of the universe, I find there\n\tis no one nor any particle of one but has reference to the soul.\n\nWas somebody asking to see the soul?\n",
"output": "See, your own shape and countenance, persons, substances, beasts,\n"
},
{
"input": "Because having look’d at the objects of the universe, I find there\n\tis no one nor any particle of one but has reference to the soul.\n\nWas somebody asking to see the soul?\nSee, your own shape and countenance, persons, substances, beasts,\n",
"output": "\tthe trees, the running rivers, the rocks and sands.\n"
},
{
"input": "\tis no one nor any particle of one but has reference to the soul.\n\nWas somebody asking to see the soul?\nSee, your own shape and countenance, persons, substances, beasts,\n\tthe trees, the running rivers, the rocks and sands.\n",
"output": "\n"
},
{
"input": "\tthe trees, the running rivers, the rocks and sands.\n",
"output": "\n"
},
{
"input": "\tthe trees, the running rivers, the rocks and sands.\n\n",
"output": "All hold spiritual joys and afterwards loosen them;\n"
},
{
"input": "\tthe trees, the running rivers, the rocks and sands.\n\nAll hold spiritual joys and afterwards loosen them;\n",
"output": "How can the real body ever die and be buried?\n"
},
{
"input": "\tthe trees, the running rivers, the rocks and sands.\n\nAll hold spiritual joys and afterwards loosen them;\nHow can the real body ever die and be buried?\n",
"output": "\n"
},
{
"input": "\tthe trees, the running rivers, the rocks and sands.\n\nAll hold spiritual joys and afterwards loosen them;\nHow can the real body ever die and be buried?\n\n",
"output": "Of your real body and any man’s or woman’s real body,\n"
},
{
"input": "\nAll hold spiritual joys and afterwards loosen them;\nHow can the real body ever die and be buried?\n\nOf your real body and any man’s or woman’s real body,\n",
"output": "Item for item it will elude the hands of the corpse-cleaners and\n"
},
{
"input": "All hold spiritual joys and afterwards loosen them;\nHow can the real body ever die and be buried?\n\nOf your real body and any man’s or woman’s real body,\nItem for item it will elude the hands of the corpse-cleaners and\n",
"output": "\tpass to fitting spheres,\n"
},
{
"input": "How can the real body ever die and be buried?\n\nOf your real body and any man’s or woman’s real body,\nItem for item it will elude the hands of the corpse-cleaners and\n\tpass to fitting spheres,\n",
"output": "Carrying what has accrued to it from the moment of birth to the\n"
},
{
"input": "\nOf your real body and any man’s or woman’s real body,\nItem for item it will elude the hands of the corpse-cleaners and\n\tpass to fitting spheres,\nCarrying what has accrued to it from the moment of birth to the\n",
"output": "\tmoment of death.\n"
},
{
"input": "Carrying what has accrued to it from the moment of birth to the\n",
"output": "\tmoment of death.\n"
},
{
"input": "Carrying what has accrued to it from the moment of birth to the\n\tmoment of death.\n",
"output": "\n"
},
{
"input": "Carrying what has accrued to it from the moment of birth to the\n\tmoment of death.\n\n",
"output": "Not the types set up by the printer return their impression, the\n"
},
{
"input": "Carrying what has accrued to it from the moment of birth to the\n\tmoment of death.\n\nNot the types set up by the printer return their impression, the\n",
"output": "\tmeaning, the main concern,\n"
},
{
"input": "Carrying what has accrued to it from the moment of birth to the\n\tmoment of death.\n\nNot the types set up by the printer return their impression, the\n\tmeaning, the main concern,\n",
"output": "Any more than a man’s substance and life or a woman’s substance and\n"
},
{
"input": "\tmoment of death.\n\nNot the types set up by the printer return their impression, the\n\tmeaning, the main concern,\nAny more than a man’s substance and life or a woman’s substance and\n",
"output": "\tlife return in the body and the soul,\n"
},
{
"input": "\nNot the types set up by the printer return their impression, the\n\tmeaning, the main concern,\nAny more than a man’s substance and life or a woman’s substance and\n\tlife return in the body and the soul,\n",
"output": "Indifferently before death and after death.\n"
},
{
"input": "Not the types set up by the printer return their impression, the\n\tmeaning, the main concern,\nAny more than a man’s substance and life or a woman’s substance and\n\tlife return in the body and the soul,\nIndifferently before death and after death.\n",
"output": "\n"
},
{
"input": "\tmeaning, the main concern,\nAny more than a man’s substance and life or a woman’s substance and\n\tlife return in the body and the soul,\nIndifferently before death and after death.\n\n",
"output": "Behold, the body includes and is the meaning, the main concern and\n"
},
{
"input": "\n",
"output": "Behold, the body includes and is the meaning, the main concern and\n"
},
{
"input": "\nBehold, the body includes and is the meaning, the main concern and\n",
"output": "\tincludes and is the soul;\n"
},
{
"input": "\nBehold, the body includes and is the meaning, the main concern and\n\tincludes and is the soul;\n",
"output": "Whoever you are, how superb and how divine is your body, or any part\n"
},
{
"input": "\nBehold, the body includes and is the meaning, the main concern and\n\tincludes and is the soul;\nWhoever you are, how superb and how divine is your body, or any part\n",
"output": "\tof it!\n"
},
{
"input": "\nBehold, the body includes and is the meaning, the main concern and\n\tincludes and is the soul;\nWhoever you are, how superb and how divine is your body, or any part\n\tof it!\n",
"output": "\n"
},
{
"input": "Behold, the body includes and is the meaning, the main concern and\n\tincludes and is the soul;\nWhoever you are, how superb and how divine is your body, or any part\n\tof it!\n\n",
"output": "Whoever you are, to you endless announcements!\n"
},
{
"input": "\tincludes and is the soul;\nWhoever you are, how superb and how divine is your body, or any part\n\tof it!\n\nWhoever you are, to you endless announcements!\n",
"output": "\n"
},
{
"input": "Whoever you are, how superb and how divine is your body, or any part\n\tof it!\n\nWhoever you are, to you endless announcements!\n\n",
"output": "Daughter of the lands did you wait for your poet?\n"
},
{
"input": "\tof it!\n\nWhoever you are, to you endless announcements!\n\nDaughter of the lands did you wait for your poet?\n",
"output": "Did you wait for one with a flowing mouth and indicative hand?\n"
},
{
"input": "Daughter of the lands did you wait for your poet?\n",
"output": "Did you wait for one with a flowing mouth and indicative hand?\n"
},
{
"input": "Daughter of the lands did you wait for your poet?\nDid you wait for one with a flowing mouth and indicative hand?\n",
"output": "Toward the male of the States, and toward the female of the States,\n"
},
{
"input": "Daughter of the lands did you wait for your poet?\nDid you wait for one with a flowing mouth and indicative hand?\nToward the male of the States, and toward the female of the States,\n",
"output": "Exulting words, words to Democracy’s lands.\n"
},
{
"input": "Daughter of the lands did you wait for your poet?\nDid you wait for one with a flowing mouth and indicative hand?\nToward the male of the States, and toward the female of the States,\nExulting words, words to Democracy’s lands.\n",
"output": "\n"
},
{
"input": "Daughter of the lands did you wait for your poet?\nDid you wait for one with a flowing mouth and indicative hand?\nToward the male of the States, and toward the female of the States,\nExulting words, words to Democracy’s lands.\n\n",
"output": "Interlink’d, food-yielding lands!\n"
},
{
"input": "Did you wait for one with a flowing mouth and indicative hand?\nToward the male of the States, and toward the female of the States,\nExulting words, words to Democracy’s lands.\n\nInterlink’d, food-yielding lands!\n",
"output": "Land of coal and iron! land of gold! land of cotton, sugar, rice!\n"
},
{
"input": "Toward the male of the States, and toward the female of the States,\nExulting words, words to Democracy’s lands.\n\nInterlink’d, food-yielding lands!\nLand of coal and iron! land of gold! land of cotton, sugar, rice!\n",
"output": "Land of wheat, beef, pork! land of wool and hemp! land of the apple\n"
},
{
"input": "Exulting words, words to Democracy’s lands.\n\nInterlink’d, food-yielding lands!\nLand of coal and iron! land of gold! land of cotton, sugar, rice!\nLand of wheat, beef, pork! land of wool and hemp! land of the apple\n",
"output": "\tand the grape!\n"
},
{
"input": "\nInterlink’d, food-yielding lands!\nLand of coal and iron! land of gold! land of cotton, sugar, rice!\nLand of wheat, beef, pork! land of wool and hemp! land of the apple\n\tand the grape!\n",
"output": "Land of the pastoral plains, the grass-fields of the world! land of\n"
},
{
"input": "\tand the grape!\n",
"output": "Land of the pastoral plains, the grass-fields of the world! land of\n"
},
{
"input": "\tand the grape!\nLand of the pastoral plains, the grass-fields of the world! land of\n",
"output": "\tthose sweet-air’d interminable plateaus!\n"
},
{
"input": "\tand the grape!\nLand of the pastoral plains, the grass-fields of the world! land of\n\tthose sweet-air’d interminable plateaus!\n",
"output": "Land of the herd, the garden, the healthy house of adobie!\n"
},
{
"input": "\tand the grape!\nLand of the pastoral plains, the grass-fields of the world! land of\n\tthose sweet-air’d interminable plateaus!\nLand of the herd, the garden, the healthy house of adobie!\n",
"output": "Lands where the north-west Columbia winds, and where the south-west\n"
},
{
"input": "\tand the grape!\nLand of the pastoral plains, the grass-fields of the world! land of\n\tthose sweet-air’d interminable plateaus!\nLand of the herd, the garden, the healthy house of adobie!\nLands where the north-west Columbia winds, and where the south-west\n",
"output": "\tColorado winds!\n"
},
{
"input": "Land of the pastoral plains, the grass-fields of the world! land of\n\tthose sweet-air’d interminable plateaus!\nLand of the herd, the garden, the healthy house of adobie!\nLands where the north-west Columbia winds, and where the south-west\n\tColorado winds!\n",
"output": "Land of the eastern Chesapeake! land of the Delaware!\n"
},
{
"input": "\tthose sweet-air’d interminable plateaus!\nLand of the herd, the garden, the healthy house of adobie!\nLands where the north-west Columbia winds, and where the south-west\n\tColorado winds!\nLand of the eastern Chesapeake! land of the Delaware!\n",
"output": "Land of Ontario, Erie, Huron, Michigan!\n"
},
{
"input": "Land of the herd, the garden, the healthy house of adobie!\nLands where the north-west Columbia winds, and where the south-west\n\tColorado winds!\nLand of the eastern Chesapeake! land of the Delaware!\nLand of Ontario, Erie, Huron, Michigan!\n",
"output": "Land of the Old Thirteen! Massachusetts land! land of Vermont and\n"
},
{
"input": "Lands where the north-west Columbia winds, and where the south-west\n\tColorado winds!\nLand of the eastern Chesapeake! land of the Delaware!\nLand of Ontario, Erie, Huron, Michigan!\nLand of the Old Thirteen! Massachusetts land! land of Vermont and\n",
"output": "\tConnecticut!\n"
},
{
"input": "Land of the Old Thirteen! Massachusetts land! land of Vermont and\n",
"output": "\tConnecticut!\n"
},
{
"input": "Land of the Old Thirteen! Massachusetts land! land of Vermont and\n\tConnecticut!\n",
"output": "Land of the ocean shores! land of sierras and peaks!\n"
},
{
"input": "Land of the Old Thirteen! Massachusetts land! land of Vermont and\n\tConnecticut!\nLand of the ocean shores! land of sierras and peaks!\n",
"output": "Land of boatmen and sailors! fishermen’s land!\n"
},
{
"input": "Land of the Old Thirteen! Massachusetts land! land of Vermont and\n\tConnecticut!\nLand of the ocean shores! land of sierras and peaks!\nLand of boatmen and sailors! fishermen’s land!\n",
"output": "Inextricable lands! the clutch’d together! the passionate ones!\n"
},
{
"input": "Land of the Old Thirteen! Massachusetts land! land of Vermont and\n\tConnecticut!\nLand of the ocean shores! land of sierras and peaks!\nLand of boatmen and sailors! fishermen’s land!\nInextricable lands! the clutch’d together! the passionate ones!\n",
"output": "The side by side! the elder and younger brothers! the bony-limb’d!\n"
},
{
"input": "\tConnecticut!\nLand of the ocean shores! land of sierras and peaks!\nLand of boatmen and sailors! fishermen’s land!\nInextricable lands! the clutch’d together! the passionate ones!\nThe side by side! the elder and younger brothers! the bony-limb’d!\n",
"output": "The great women’s land! the feminine! the experienced sisters and\n"
},
{
"input": "Land of the ocean shores! land of sierras and peaks!\nLand of boatmen and sailors! fishermen’s land!\nInextricable lands! the clutch’d together! the passionate ones!\nThe side by side! the elder and younger brothers! the bony-limb’d!\nThe great women’s land! the feminine! the experienced sisters and\n",
"output": "\tthe inexperienced sisters!\n"
},
{
"input": "Land of boatmen and sailors! fishermen’s land!\nInextricable lands! the clutch’d together! the passionate ones!\nThe side by side! the elder and younger brothers! the bony-limb’d!\nThe great women’s land! the feminine! the experienced sisters and\n\tthe inexperienced sisters!\n",
"output": "Far breath’d land! Arctic braced! Mexican breez’d! the diverse! the\n"
},
{
"input": "Inextricable lands! the clutch’d together! the passionate ones!\nThe side by side! the elder and younger brothers! the bony-limb’d!\nThe great women’s land! the feminine! the experienced sisters and\n\tthe inexperienced sisters!\nFar breath’d land! Arctic braced! Mexican breez’d! the diverse! the\n",
"output": "\tcompact!\n"
},
{
"input": "Far breath’d land! Arctic braced! Mexican breez’d! the diverse! the\n",
"output": "\tcompact!\n"
},
{
"input": "Far breath’d land! Arctic braced! Mexican breez’d! the diverse! the\n\tcompact!\n",
"output": "The Pennsylvanian! the Virginian! the double Carolinian!\n"
},
{
"input": "Far breath’d land! Arctic braced! Mexican breez’d! the diverse! the\n\tcompact!\nThe Pennsylvanian! the Virginian! the double Carolinian!\n",
"output": "O all and each well-loved by me! my intrepid nations! O I at any\n"
},
{
"input": "Far breath’d land! Arctic braced! Mexican breez’d! the diverse! the\n\tcompact!\nThe Pennsylvanian! the Virginian! the double Carolinian!\nO all and each well-loved by me! my intrepid nations! O I at any\n",
"output": "\trate include you all with perfect love!\n"
},
{
"input": "Far breath’d land! Arctic braced! Mexican breez’d! the diverse! the\n\tcompact!\nThe Pennsylvanian! the Virginian! the double Carolinian!\nO all and each well-loved by me! my intrepid nations! O I at any\n\trate include you all with perfect love!\n",
"output": "I cannot be discharged from you! not from one any sooner than another!\n"
},
{
"input": "\tcompact!\nThe Pennsylvanian! the Virginian! the double Carolinian!\nO all and each well-loved by me! my intrepid nations! O I at any\n\trate include you all with perfect love!\nI cannot be discharged from you! not from one any sooner than another!\n",
"output": "O death! O for all that, I am yet of you unseen this hour with\n"
},
{
"input": "The Pennsylvanian! the Virginian! the double Carolinian!\nO all and each well-loved by me! my intrepid nations! O I at any\n\trate include you all with perfect love!\nI cannot be discharged from you! not from one any sooner than another!\nO death! O for all that, I am yet of you unseen this hour with\n",
"output": "\tirrepressible love,\n"
},
{
"input": "O all and each well-loved by me! my intrepid nations! O I at any\n\trate include you all with perfect love!\nI cannot be discharged from you! not from one any sooner than another!\nO death! O for all that, I am yet of you unseen this hour with\n\tirrepressible love,\n",
"output": "Walking New England, a friend, a traveler,\n"
},
{
"input": "\trate include you all with perfect love!\nI cannot be discharged from you! not from one any sooner than another!\nO death! O for all that, I am yet of you unseen this hour with\n\tirrepressible love,\nWalking New England, a friend, a traveler,\n",
"output": "Splashing my bare feet in the edge of the summer ripples on\n"
},
{
"input": "Walking New England, a friend, a traveler,\n",
"output": "Splashing my bare feet in the edge of the summer ripples on\n"
},
{
"input": "Walking New England, a friend, a traveler,\nSplashing my bare feet in the edge of the summer ripples on\n",
"output": "\tPaumanok’s sands,\n"
},
{
"input": "Walking New England, a friend, a traveler,\nSplashing my bare feet in the edge of the summer ripples on\n\tPaumanok’s sands,\n",
"output": "Crossing the prairies, dwelling again in Chicago, dwelling in every town,\n"
},
{
"input": "Walking New England, a friend, a traveler,\nSplashing my bare feet in the edge of the summer ripples on\n\tPaumanok’s sands,\nCrossing the prairies, dwelling again in Chicago, dwelling in every town,\n",
"output": "Observing shows, births, improvements, structures, arts,\n"
},
{
"input": "Walking New England, a friend, a traveler,\nSplashing my bare feet in the edge of the summer ripples on\n\tPaumanok’s sands,\nCrossing the prairies, dwelling again in Chicago, dwelling in every town,\nObserving shows, births, improvements, structures, arts,\n",
"output": "Listening to orators and oratresses in public halls,\n"
},
{
"input": "Splashing my bare feet in the edge of the summer ripples on\n\tPaumanok’s sands,\nCrossing the prairies, dwelling again in Chicago, dwelling in every town,\nObserving shows, births, improvements, structures, arts,\nListening to orators and oratresses in public halls,\n",
"output": "Of and through the States as during life, each man and woman my neighbor,\n"
},
{
"input": "\tPaumanok’s sands,\nCrossing the prairies, dwelling again in Chicago, dwelling in every town,\nObserving shows, births, improvements, structures, arts,\nListening to orators and oratresses in public halls,\nOf and through the States as during life, each man and woman my neighbor,\n",
"output": "The Louisianian, the Georgian, as near to me, and I as near to him and her,\n"
},
{
"input": "Crossing the prairies, dwelling again in Chicago, dwelling in every town,\nObserving shows, births, improvements, structures, arts,\nListening to orators and oratresses in public halls,\nOf and through the States as during life, each man and woman my neighbor,\nThe Louisianian, the Georgian, as near to me, and I as near to him and her,\n",
"output": "The Mississippian and Arkansian yet with me, and I yet with any of them,\n"
},
{
"input": "Observing shows, births, improvements, structures, arts,\nListening to orators and oratresses in public halls,\nOf and through the States as during life, each man and woman my neighbor,\nThe Louisianian, the Georgian, as near to me, and I as near to him and her,\nThe Mississippian and Arkansian yet with me, and I yet with any of them,\n",
"output": "Yet upon the plains west of the spinal river, yet in my house of adobie,\n"
},
{
"input": "The Mississippian and Arkansian yet with me, and I yet with any of them,\n",
"output": "Yet upon the plains west of the spinal river, yet in my house of adobie,\n"
},
{
"input": "The Mississippian and Arkansian yet with me, and I yet with any of them,\nYet upon the plains west of the spinal river, yet in my house of adobie,\n",
"output": "Yet returning eastward, yet in the Seaside State or in Maryland,\n"
},
{
"input": "The Mississippian and Arkansian yet with me, and I yet with any of them,\nYet upon the plains west of the spinal river, yet in my house of adobie,\nYet returning eastward, yet in the Seaside State or in Maryland,\n",
"output": "Yet Kanadian cheerily braving the winter, the snow and ice welcome to me,\n"
},
{
"input": "The Mississippian and Arkansian yet with me, and I yet with any of them,\nYet upon the plains west of the spinal river, yet in my house of adobie,\nYet returning eastward, yet in the Seaside State or in Maryland,\nYet Kanadian cheerily braving the winter, the snow and ice welcome to me,\n",
"output": "Yet a true son either of Maine or of the Granite State, or the\n"
},
{
"input": "The Mississippian and Arkansian yet with me, and I yet with any of them,\nYet upon the plains west of the spinal river, yet in my house of adobie,\nYet returning eastward, yet in the Seaside State or in Maryland,\nYet Kanadian cheerily braving the winter, the snow and ice welcome to me,\nYet a true son either of Maine or of the Granite State, or the\n",
"output": "\tNarragansett Bay State, or the Empire State,\n"
},
{
"input": "Yet upon the plains west of the spinal river, yet in my house of adobie,\nYet returning eastward, yet in the Seaside State or in Maryland,\nYet Kanadian cheerily braving the winter, the snow and ice welcome to me,\nYet a true son either of Maine or of the Granite State, or the\n\tNarragansett Bay State, or the Empire State,\n",
"output": "Yet sailing to other shores to annex the same, yet welcoming every\n"
},
{
"input": "Yet returning eastward, yet in the Seaside State or in Maryland,\nYet Kanadian cheerily braving the winter, the snow and ice welcome to me,\nYet a true son either of Maine or of the Granite State, or the\n\tNarragansett Bay State, or the Empire State,\nYet sailing to other shores to annex the same, yet welcoming every\n",
"output": "\tnew brother,\n"
},
{
"input": "Yet Kanadian cheerily braving the winter, the snow and ice welcome to me,\nYet a true son either of Maine or of the Granite State, or the\n\tNarragansett Bay State, or the Empire State,\nYet sailing to other shores to annex the same, yet welcoming every\n\tnew brother,\n",
"output": "Hereby applying these leaves to the new ones from the hour they\n"
},
{
"input": "Yet a true son either of Maine or of the Granite State, or the\n\tNarragansett Bay State, or the Empire State,\nYet sailing to other shores to annex the same, yet welcoming every\n\tnew brother,\nHereby applying these leaves to the new ones from the hour they\n",
"output": "\tunite with the old ones,\n"
},
{
"input": "Hereby applying these leaves to the new ones from the hour they\n",
"output": "\tunite with the old ones,\n"
},
{
"input": "Hereby applying these leaves to the new ones from the hour they\n\tunite with the old ones,\n",
"output": "Coming among the new ones myself to be their companion and equal,\n"
},
{
"input": "Hereby applying these leaves to the new ones from the hour they\n\tunite with the old ones,\nComing among the new ones myself to be their companion and equal,\n",
"output": "\tcoming personally to you now,\n"
},
{
"input": "Hereby applying these leaves to the new ones from the hour they\n\tunite with the old ones,\nComing among the new ones myself to be their companion and equal,\n\tcoming personally to you now,\n",
"output": "Enjoining you to acts, characters, spectacles, with me.\n"
},
{
"input": "Hereby applying these leaves to the new ones from the hour they\n\tunite with the old ones,\nComing among the new ones myself to be their companion and equal,\n\tcoming personally to you now,\nEnjoining you to acts, characters, spectacles, with me.\n",
"output": "\n"
},
{
"input": "\tunite with the old ones,\nComing among the new ones myself to be their companion and equal,\n\tcoming personally to you now,\nEnjoining you to acts, characters, spectacles, with me.\n\n",
"output": "With me with firm holding, yet haste, haste on.\n"
},
{
"input": "Coming among the new ones myself to be their companion and equal,\n\tcoming personally to you now,\nEnjoining you to acts, characters, spectacles, with me.\n\nWith me with firm holding, yet haste, haste on.\n",
"output": "For your life adhere to me,\n"
},
{
"input": "\tcoming personally to you now,\nEnjoining you to acts, characters, spectacles, with me.\n\nWith me with firm holding, yet haste, haste on.\nFor your life adhere to me,\n",
"output": "(I may have to be persuaded many times before I consent to give\n"
},
{
"input": "Enjoining you to acts, characters, spectacles, with me.\n\nWith me with firm holding, yet haste, haste on.\nFor your life adhere to me,\n(I may have to be persuaded many times before I consent to give\n",
"output": "\tmyself really to you, but what of that?\n"
},
{
"input": "(I may have to be persuaded many times before I consent to give\n",
"output": "\tmyself really to you, but what of that?\n"
},
{
"input": "(I may have to be persuaded many times before I consent to give\n\tmyself really to you, but what of that?\n",
"output": "Must not Nature be persuaded many times?)\n"
},
{
"input": "(I may have to be persuaded many times before I consent to give\n\tmyself really to you, but what of that?\nMust not Nature be persuaded many times?)\n",
"output": "\n"
},
{
"input": "(I may have to be persuaded many times before I consent to give\n\tmyself really to you, but what of that?\nMust not Nature be persuaded many times?)\n\n",
"output": "No dainty dolce affettuoso I,\n"
},
{
"input": "(I may have to be persuaded many times before I consent to give\n\tmyself really to you, but what of that?\nMust not Nature be persuaded many times?)\n\nNo dainty dolce affettuoso I,\n",
"output": "Bearded, sun-burnt, gray-neck’d, forbidding, I have arrived,\n"
},
{
"input": "\tmyself really to you, but what of that?\nMust not Nature be persuaded many times?)\n\nNo dainty dolce affettuoso I,\nBearded, sun-burnt, gray-neck’d, forbidding, I have arrived,\n",
"output": "To be wrestled with as I pass for the solid prizes of the universe,\n"
},
{
"input": "Must not Nature be persuaded many times?)\n\nNo dainty dolce affettuoso I,\nBearded, sun-burnt, gray-neck’d, forbidding, I have arrived,\nTo be wrestled with as I pass for the solid prizes of the universe,\n",
"output": "For such I afford whoever can persevere to win them.\n"
},
{
"input": "\nNo dainty dolce affettuoso I,\nBearded, sun-burnt, gray-neck’d, forbidding, I have arrived,\nTo be wrestled with as I pass for the solid prizes of the universe,\nFor such I afford whoever can persevere to win them.\n",
"output": "\n"
},
{
"input": "No dainty dolce affettuoso I,\nBearded, sun-burnt, gray-neck’d, forbidding, I have arrived,\nTo be wrestled with as I pass for the solid prizes of the universe,\nFor such I afford whoever can persevere to win them.\n\n",
"output": "On my way a moment I pause,\n"
},
{
"input": "\n",
"output": "On my way a moment I pause,\n"
},
{
"input": "\nOn my way a moment I pause,\n",
"output": "Here for you! and here for America!\n"
},
{
"input": "\nOn my way a moment I pause,\nHere for you! and here for America!\n",
"output": "Still the present I raise aloft, still the future of the States I\n"
},
{
"input": "\nOn my way a moment I pause,\nHere for you! and here for America!\nStill the present I raise aloft, still the future of the States I\n",
"output": "\tharbinge glad and sublime,\n"
},
{
"input": "\nOn my way a moment I pause,\nHere for you! and here for America!\nStill the present I raise aloft, still the future of the States I\n\tharbinge glad and sublime,\n",
"output": "And for the past I pronounce what the air holds of the red aborigines.\n"
},
{
"input": "On my way a moment I pause,\nHere for you! and here for America!\nStill the present I raise aloft, still the future of the States I\n\tharbinge glad and sublime,\nAnd for the past I pronounce what the air holds of the red aborigines.\n",
"output": "\n"
},
{
"input": "Here for you! and here for America!\nStill the present I raise aloft, still the future of the States I\n\tharbinge glad and sublime,\nAnd for the past I pronounce what the air holds of the red aborigines.\n\n",
"output": "The red aborigines,\n"
},
{
"input": "Still the present I raise aloft, still the future of the States I\n\tharbinge glad and sublime,\nAnd for the past I pronounce what the air holds of the red aborigines.\n\nThe red aborigines,\n",
"output": "Leaving natural breaths, sounds of rain and winds, calls as of birds\n"
},
{
"input": "\tharbinge glad and sublime,\nAnd for the past I pronounce what the air holds of the red aborigines.\n\nThe red aborigines,\nLeaving natural breaths, sounds of rain and winds, calls as of birds\n",
"output": "\tand animals in the woods, syllabled to us for names,\n"
},
{
"input": "Leaving natural breaths, sounds of rain and winds, calls as of birds\n",
"output": "\tand animals in the woods, syllabled to us for names,\n"
},
{
"input": "Leaving natural breaths, sounds of rain and winds, calls as of birds\n\tand animals in the woods, syllabled to us for names,\n",
"output": "Okonee, Koosa, Ottawa, Monongahela, Sauk, Natchez, Chattahoochee,\n"
},
{
"input": "Leaving natural breaths, sounds of rain and winds, calls as of birds\n\tand animals in the woods, syllabled to us for names,\nOkonee, Koosa, Ottawa, Monongahela, Sauk, Natchez, Chattahoochee,\n",
"output": "\tKaqueta, Oronoco,\n"
},
{
"input": "Leaving natural breaths, sounds of rain and winds, calls as of birds\n\tand animals in the woods, syllabled to us for names,\nOkonee, Koosa, Ottawa, Monongahela, Sauk, Natchez, Chattahoochee,\n\tKaqueta, Oronoco,\n",
"output": "Wabash, Miami, Saginaw, Chippewa, Oshkosh, Walla-Walla,\n"
},
{
"input": "Leaving natural breaths, sounds of rain and winds, calls as of birds\n\tand animals in the woods, syllabled to us for names,\nOkonee, Koosa, Ottawa, Monongahela, Sauk, Natchez, Chattahoochee,\n\tKaqueta, Oronoco,\nWabash, Miami, Saginaw, Chippewa, Oshkosh, Walla-Walla,\n",
"output": "Leaving such to the States they melt, they depart, charging the\n"
},
{
"input": "\tand animals in the woods, syllabled to us for names,\nOkonee, Koosa, Ottawa, Monongahela, Sauk, Natchez, Chattahoochee,\n\tKaqueta, Oronoco,\nWabash, Miami, Saginaw, Chippewa, Oshkosh, Walla-Walla,\nLeaving such to the States they melt, they depart, charging the\n",
"output": "\twater and the land with names.\n"
},
{
"input": "Okonee, Koosa, Ottawa, Monongahela, Sauk, Natchez, Chattahoochee,\n\tKaqueta, Oronoco,\nWabash, Miami, Saginaw, Chippewa, Oshkosh, Walla-Walla,\nLeaving such to the States they melt, they depart, charging the\n\twater and the land with names.\n",
"output": "\n"
},
{
"input": "\tKaqueta, Oronoco,\nWabash, Miami, Saginaw, Chippewa, Oshkosh, Walla-Walla,\nLeaving such to the States they melt, they depart, charging the\n\twater and the land with names.\n\n",
"output": "Expanding and swift, henceforth,\n"
},
{
"input": "Wabash, Miami, Saginaw, Chippewa, Oshkosh, Walla-Walla,\nLeaving such to the States they melt, they depart, charging the\n\twater and the land with names.\n\nExpanding and swift, henceforth,\n",
"output": "Elements, breeds, adjustments, turbulent, quick and audacious,\n"
},
{
"input": "Expanding and swift, henceforth,\n",
"output": "Elements, breeds, adjustments, turbulent, quick and audacious,\n"
},
{
"input": "Expanding and swift, henceforth,\nElements, breeds, adjustments, turbulent, quick and audacious,\n",
"output": "A world primal again, vistas of glory incessant and branching,\n"
},
{
"input": "Expanding and swift, henceforth,\nElements, breeds, adjustments, turbulent, quick and audacious,\nA world primal again, vistas of glory incessant and branching,\n",
"output": "A new race dominating previous ones and grander far, with new contests,\n"
},
{
"input": "Expanding and swift, henceforth,\nElements, breeds, adjustments, turbulent, quick and audacious,\nA world primal again, vistas of glory incessant and branching,\nA new race dominating previous ones and grander far, with new contests,\n",
"output": "New politics, new literatures and religions, new inventions and arts.\n"
},
{
"input": "Expanding and swift, henceforth,\nElements, breeds, adjustments, turbulent, quick and audacious,\nA world primal again, vistas of glory incessant and branching,\nA new race dominating previous ones and grander far, with new contests,\nNew politics, new literatures and religions, new inventions and arts.\n",
"output": "\n"
},
{
"input": "Elements, breeds, adjustments, turbulent, quick and audacious,\nA world primal again, vistas of glory incessant and branching,\nA new race dominating previous ones and grander far, with new contests,\nNew politics, new literatures and religions, new inventions and arts.\n\n",
"output": "These, my voice announcing--I will sleep no more but arise,\n"
},
{
"input": "A world primal again, vistas of glory incessant and branching,\nA new race dominating previous ones and grander far, with new contests,\nNew politics, new literatures and religions, new inventions and arts.\n\nThese, my voice announcing--I will sleep no more but arise,\n",
"output": "You oceans that have been calm within me! how I feel you,\n"
},
{
"input": "A new race dominating previous ones and grander far, with new contests,\nNew politics, new literatures and religions, new inventions and arts.\n\nThese, my voice announcing--I will sleep no more but arise,\nYou oceans that have been calm within me! how I feel you,\n",
"output": "\tfathomless, stirring, preparing unprecedented waves and storms.\n"
},
{
"input": "New politics, new literatures and religions, new inventions and arts.\n\nThese, my voice announcing--I will sleep no more but arise,\nYou oceans that have been calm within me! how I feel you,\n\tfathomless, stirring, preparing unprecedented waves and storms.\n",
"output": "\n"
},
{
"input": "\tfathomless, stirring, preparing unprecedented waves and storms.\n",
"output": "\n"
},
{
"input": "\tfathomless, stirring, preparing unprecedented waves and storms.\n\n",
"output": "See, steamers steaming through my poems,\n"
},
{
"input": "\tfathomless, stirring, preparing unprecedented waves and storms.\n\nSee, steamers steaming through my poems,\n",
"output": "See, in my poems immigrants continually coming and landing,\n"
},
{
"input": "\tfathomless, stirring, preparing unprecedented waves and storms.\n\nSee, steamers steaming through my poems,\nSee, in my poems immigrants continually coming and landing,\n",
"output": "See, in arriere, the wigwam, the trail, the hunter’s hut, the flat-boat,\n"
},
{
"input": "\tfathomless, stirring, preparing unprecedented waves and storms.\n\nSee, steamers steaming through my poems,\nSee, in my poems immigrants continually coming and landing,\nSee, in arriere, the wigwam, the trail, the hunter’s hut, the flat-boat,\n",
"output": "\tthe maize-leaf, the claim, the rude fence, and the backwoods village,\n"
},
{
"input": "\nSee, steamers steaming through my poems,\nSee, in my poems immigrants continually coming and landing,\nSee, in arriere, the wigwam, the trail, the hunter’s hut, the flat-boat,\n\tthe maize-leaf, the claim, the rude fence, and the backwoods village,\n",
"output": "See, on the one side the Western Sea and on the other the Eastern Sea,\n"
},
{
"input": "See, steamers steaming through my poems,\nSee, in my poems immigrants continually coming and landing,\nSee, in arriere, the wigwam, the trail, the hunter’s hut, the flat-boat,\n\tthe maize-leaf, the claim, the rude fence, and the backwoods village,\nSee, on the one side the Western Sea and on the other the Eastern Sea,\n",
"output": "\thow they advance and retreat upon my poems as upon their own shores,\n"
},
{
"input": "See, in my poems immigrants continually coming and landing,\nSee, in arriere, the wigwam, the trail, the hunter’s hut, the flat-boat,\n\tthe maize-leaf, the claim, the rude fence, and the backwoods village,\nSee, on the one side the Western Sea and on the other the Eastern Sea,\n\thow they advance and retreat upon my poems as upon their own shores,\n",
"output": "See, pastures and forests in my poems--see, animals wild and tame--see,\n"
},
{
"input": "See, in arriere, the wigwam, the trail, the hunter’s hut, the flat-boat,\n\tthe maize-leaf, the claim, the rude fence, and the backwoods village,\nSee, on the one side the Western Sea and on the other the Eastern Sea,\n\thow they advance and retreat upon my poems as upon their own shores,\nSee, pastures and forests in my poems--see, animals wild and tame--see,\n",
"output": "\tbeyond the Kaw, countless herds of buffalo feeding on short curly grass,\n"
},
{
"input": "See, pastures and forests in my poems--see, animals wild and tame--see,\n",
"output": "\tbeyond the Kaw, countless herds of buffalo feeding on short curly grass,\n"
},
{
"input": "See, pastures and forests in my poems--see, animals wild and tame--see,\n\tbeyond the Kaw, countless herds of buffalo feeding on short curly grass,\n",
"output": "See, in my poems, cities, solid, vast, inland, with paved streets,\n"
},
{
"input": "See, pastures and forests in my poems--see, animals wild and tame--see,\n\tbeyond the Kaw, countless herds of buffalo feeding on short curly grass,\nSee, in my poems, cities, solid, vast, inland, with paved streets,\n",
"output": "\twith iron and stone edifices, ceaseless vehicles, and commerce,\n"
},
{
"input": "See, pastures and forests in my poems--see, animals wild and tame--see,\n\tbeyond the Kaw, countless herds of buffalo feeding on short curly grass,\nSee, in my poems, cities, solid, vast, inland, with paved streets,\n\twith iron and stone edifices, ceaseless vehicles, and commerce,\n",
"output": "See, the many-cylinder’d steam printing-press--see, the electric\n"
},
{
"input": "See, pastures and forests in my poems--see, animals wild and tame--see,\n\tbeyond the Kaw, countless herds of buffalo feeding on short curly grass,\nSee, in my poems, cities, solid, vast, inland, with paved streets,\n\twith iron and stone edifices, ceaseless vehicles, and commerce,\nSee, the many-cylinder’d steam printing-press--see, the electric\n",
"output": "\ttelegraph stretching across the continent,\n"
},
{
"input": "\tbeyond the Kaw, countless herds of buffalo feeding on short curly grass,\nSee, in my poems, cities, solid, vast, inland, with paved streets,\n\twith iron and stone edifices, ceaseless vehicles, and commerce,\nSee, the many-cylinder’d steam printing-press--see, the electric\n\ttelegraph stretching across the continent,\n",
"output": "See, through Atlantica’s depths pulses American Europe reaching,\n"
},
{
"input": "See, in my poems, cities, solid, vast, inland, with paved streets,\n\twith iron and stone edifices, ceaseless vehicles, and commerce,\nSee, the many-cylinder’d steam printing-press--see, the electric\n\ttelegraph stretching across the continent,\nSee, through Atlantica’s depths pulses American Europe reaching,\n",
"output": "\tpulses of Europe duly return’d,\n"
},
{
"input": "\twith iron and stone edifices, ceaseless vehicles, and commerce,\nSee, the many-cylinder’d steam printing-press--see, the electric\n\ttelegraph stretching across the continent,\nSee, through Atlantica’s depths pulses American Europe reaching,\n\tpulses of Europe duly return’d,\n",
"output": "See, the strong and quick locomotive as it departs, panting, blowing\n"
},
{
"input": "See, the many-cylinder’d steam printing-press--see, the electric\n\ttelegraph stretching across the continent,\nSee, through Atlantica’s depths pulses American Europe reaching,\n\tpulses of Europe duly return’d,\nSee, the strong and quick locomotive as it departs, panting, blowing\n",
"output": "\tthe steam-whistle,\n"
},
{
"input": "See, the strong and quick locomotive as it departs, panting, blowing\n",
"output": "\tthe steam-whistle,\n"
},
{
"input": "See, the strong and quick locomotive as it departs, panting, blowing\n\tthe steam-whistle,\n",
"output": "See, ploughmen ploughing farms--see, miners digging mines--see,\n"
},
{
"input": "See, the strong and quick locomotive as it departs, panting, blowing\n\tthe steam-whistle,\nSee, ploughmen ploughing farms--see, miners digging mines--see,\n",
"output": "\tthe numberless factories,\n"
},
{
"input": "See, the strong and quick locomotive as it departs, panting, blowing\n\tthe steam-whistle,\nSee, ploughmen ploughing farms--see, miners digging mines--see,\n\tthe numberless factories,\n",
"output": "See, mechanics busy at their benches with tools--see from among them\n"
},
{
"input": "See, the strong and quick locomotive as it departs, panting, blowing\n\tthe steam-whistle,\nSee, ploughmen ploughing farms--see, miners digging mines--see,\n\tthe numberless factories,\nSee, mechanics busy at their benches with tools--see from among them\n",
"output": "\tsuperior judges, philosophs, Presidents, emerge, drest in\n"
},
{
"input": "\tthe steam-whistle,\nSee, ploughmen ploughing farms--see, miners digging mines--see,\n\tthe numberless factories,\nSee, mechanics busy at their benches with tools--see from among them\n\tsuperior judges, philosophs, Presidents, emerge, drest in\n",
"output": "\tworking dresses,\n"
},
{
"input": "See, ploughmen ploughing farms--see, miners digging mines--see,\n\tthe numberless factories,\nSee, mechanics busy at their benches with tools--see from among them\n\tsuperior judges, philosophs, Presidents, emerge, drest in\n\tworking dresses,\n",
"output": "See, lounging through the shops and fields of the States, me\n"
},
{
"input": "\tthe numberless factories,\nSee, mechanics busy at their benches with tools--see from among them\n\tsuperior judges, philosophs, Presidents, emerge, drest in\n\tworking dresses,\nSee, lounging through the shops and fields of the States, me\n",
"output": "\twell-belov’d, close-held by day and night,\n"
},
{
"input": "See, mechanics busy at their benches with tools--see from among them\n\tsuperior judges, philosophs, Presidents, emerge, drest in\n\tworking dresses,\nSee, lounging through the shops and fields of the States, me\n\twell-belov’d, close-held by day and night,\n",
"output": "Hear the loud echoes of my songs there--read the hints come at last.\n"
},
{
"input": "\twell-belov’d, close-held by day and night,\n",
"output": "Hear the loud echoes of my songs there--read the hints come at last.\n"
},
{
"input": "\twell-belov’d, close-held by day and night,\nHear the loud echoes of my songs there--read the hints come at last.\n",
"output": "\n"
},
{
"input": "\twell-belov’d, close-held by day and night,\nHear the loud echoes of my songs there--read the hints come at last.\n\n",
"output": "O camerado close! O you and me at last, and us two only.\n"
},
{
"input": "\twell-belov’d, close-held by day and night,\nHear the loud echoes of my songs there--read the hints come at last.\n\nO camerado close! O you and me at last, and us two only.\n",
"output": "O a word to clear one’s path ahead endlessly!\n"
},
{
"input": "\twell-belov’d, close-held by day and night,\nHear the loud echoes of my songs there--read the hints come at last.\n\nO camerado close! O you and me at last, and us two only.\nO a word to clear one’s path ahead endlessly!\n",
"output": "O something ecstatic and undemonstrable! O music wild!\n"
},
{
"input": "Hear the loud echoes of my songs there--read the hints come at last.\n\nO camerado close! O you and me at last, and us two only.\nO a word to clear one’s path ahead endlessly!\nO something ecstatic and undemonstrable! O music wild!\n",
"output": "O now I triumph--and you shall also;\n"
},
{
"input": "\nO camerado close! O you and me at last, and us two only.\nO a word to clear one’s path ahead endlessly!\nO something ecstatic and undemonstrable! O music wild!\nO now I triumph--and you shall also;\n",
"output": "O hand in hand--O wholesome pleasure--O one more desirer and lover!\n"
},
{
"input": "O camerado close! O you and me at last, and us two only.\nO a word to clear one’s path ahead endlessly!\nO something ecstatic and undemonstrable! O music wild!\nO now I triumph--and you shall also;\nO hand in hand--O wholesome pleasure--O one more desirer and lover!\n",
"output": "O to haste firm holding--to haste, haste on with me."
}
] |