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
|
/* generated by bin2c from ./doc/hthelp.info */
char htinfo[14764] = {
'T', 'h', 'i', 's', ' ', 'i', 's', ' ',
'h', 't', 'h', 'e', 'l', 'p', '.', 'i',
'n', 'f', 'o', ',', ' ', 'p', 'r', 'o',
'd', 'u', 'c', 'e', 'd', ' ', 'b', 'y',
' ', 'm', 'a', 'k', 'e', 'i', 'n', 'f',
'o', ' ', 'v', 'e', 'r', 's', 'i', 'o',
'n', ' ', '4', '.', '1', '1', ' ', 'f',
'r', 'o', 'm', ' ', 'h', 't', '.', 't',
'e', 'x', 'i', '.', 0x0a,0x0a,'S', 'T',
'A', 'R', 'T', '-', 'I', 'N', 'F', 'O',
'-', 'D', 'I', 'R', '-', 'E', 'N', 'T',
'R', 'Y', 0x0a,'*', ' ', 'h', 't', ':',
' ', '(', 'h', 't', '.', 'i', 'n', 'f',
'o', ')', '.', ' ', ' ', ' ', ' ', ' ',
' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ',
'H', 'T', ' ', 'E', 'd', 'i', 't', 'o',
'r', '.', 0x0a,'E', 'N', 'D', '-', 'I',
'N', 'F', 'O', '-', 'D', 'I', 'R', '-',
'E', 'N', 'T', 'R', 'Y', 0x0a,0x0a,' ',
' ', ' ', 'T', 'h', 'i', 's', ' ', 'f',
'i', 'l', 'e', ' ', 'd', 'o', 'c', 'u',
'm', 'e', 'n', 't', 's', ' ', 't', 'h',
'e', ' ', 'H', 'T', ' ', 'E', 'd', 'i',
't', 'o', 'r', '.', 0x0a,0x0a,' ', ' ',
' ', 'C', 'o', 'p', 'y', 'r', 'i', 'g',
'h', 't', ' ', '(', 'C', ')', ' ', '1',
'9', '9', '9', '-', '2', '0', '0', '8',
' ', 'T', 'h', 'e', ' ', 'H', 'T', ' ',
'a', 'u', 't', 'h', 'o', 'r', 's', '.',
0x0a,'*', 'N', 'o', 't', 'e', ' ', 'T',
'h', 'e', ' ', 'H', 'T', ' ', 'A', 'u',
't', 'h', 'o', 'r', 's', ':', ' ', 'A',
'u', 't', 'h', 'o', 'r', 's', ',', ' ',
'f', 'o', 'r', ' ', 'a', ' ', 'l', 'i',
's', 't', ' ', 'o', 'f', ' ', 't', 'h',
'e', ' ', 'c', 'o', 'p', 'y', 'r', 'i',
'g', 'h', 't', 0x0a,'h', 'o', 'l', 'd',
'e', 'r', 's', '.', 0x0a,0x0a,' ', ' ',
' ', 'P', 'e', 'r', 'm', 'i', 's', 's',
'i', 'o', 'n', ' ', 'i', 's', ' ', 'g',
'r', 'a', 'n', 't', 'e', 'd', ' ', 't',
'o', ' ', 'm', 'a', 'k', 'e', ' ', 'a',
'n', 'd', ' ', 'd', 'i', 's', 't', 'r',
'i', 'b', 'u', 't', 'e', ' ', 'v', 'e',
'r', 'b', 'a', 't', 'i', 'm', ' ', 'c',
'o', 'p', 'i', 'e', 's', 0x0a,'o', 'f',
' ', 't', 'h', 'i', 's', ' ', 'm', 'a',
'n', 'u', 'a', 'l', ' ', 'p', 'r', 'o',
'v', 'i', 'd', 'e', 'd', ' ', 't', 'h',
'e', ' ', 'c', 'o', 'p', 'y', 'r', 'i',
'g', 'h', 't', ' ', 'n', 'o', 't', 'i',
'c', 'e', ' ', 'a', 'n', 'd', ' ', 't',
'h', 'i', 's', 0x0a,'p', 'e', 'r', 'm',
'i', 's', 's', 'i', 'o', 'n', ' ', 'n',
'o', 't', 'i', 'c', 'e', ' ', 'a', 'r',
'e', ' ', 'p', 'r', 'e', 's', 'e', 'r',
'v', 'e', 'd', ' ', 'o', 'n', ' ', 'a',
'l', 'l', ' ', 'c', 'o', 'p', 'i', 'e',
's', '.', 0x0a,0x0a,0x0a,0x0a,0x0a,0x0a,
' ', ' ', ' ', 'T', 'r', 'a', 'd', 'e',
'm', 'a', 'r', 'k', 's', ' ', 'a', 'r',
'e', ' ', 't', 'h', 'e', ' ', 'p', 'r',
'o', 'p', 'e', 'r', 't', 'y', ' ', 'o',
'f', ' ', 't', 'h', 'e', 'i', 'r', ' ',
'r', 'e', 's', 'p', 'e', 'c', 't', 'i',
'v', 'e', ' ', 'o', 'w', 'n', 'e', 'r',
's', ',', 0x0a,'w', 'h', 'i', 'c', 'h',
' ', 'm', 'a', 'y', ' ', 'b', 'e', ' ',
'r', 'e', 'g', 'i', 's', 't', 'e', 'r',
'e', 'd', ' ', 'i', 'n', ' ', 'c', 'e',
'r', 't', 'a', 'i', 'n', ' ', 'j', 'u',
'r', 'i', 's', 'd', 'i', 'c', 't', 'i',
'o', 'n', 's', '.', 0x0a,0x0a,0x1f,0x0a,
'F', 'i', 'l', 'e', ':', ' ', 'h', 't',
'h', 'e', 'l', 'p', '.', 'i', 'n', 'f',
'o', ',', ' ', ' ', 'N', 'o', 'd', 'e',
':', ' ', 'T', 'o', 'p', ',', ' ', ' ',
'P', 'r', 'e', 'v', ':', ' ', '(', 'd',
'i', 'r', ')', ',', ' ', ' ', 'U', 'p',
':', ' ', '(', 'd', 'i', 'r', ')', 0x0a,
0x0a,'H', 'T', ' ', 'E', 'd', 'i', 't',
'o', 'r', 0x0a,'=', '=', '=', '=', '=',
'=', '=', '=', '=', 0x0a,0x0a,'T', 'h',
'i', 's', ' ', 'i', 's', ' ', 'H', 'T',
' ', '2', '.', '0', '.', '1', '4', ';',
' ', 'H', 'a', 'v', 'e', ' ', 'f', 'u',
'n', '.', '.', '.', 0x0a,0x0a,'*', ' ',
'M', 'e', 'n', 'u', ':', 0x0a,0x0a,'*',
' ', 'A', 'b', 'o', 'u', 't', ':', ':',
0x0a,'*', ' ', 'K', 'e', 'y', ' ', 'b',
'i', 'n', 'd', 'i', 'n', 'g', 's', ':',
':', 0x0a,'*', ' ', 'F', 'e', 'a', 't',
'u', 'r', 'e', 's', ':', ':', 0x0a,'*',
' ', 'A', 'u', 't', 'h', 'o', 'r', 's',
':', ':', 0x0a,'*', ' ', 'W', 'h', 'e',
'r', 'e', ' ', 't', 'o', ' ', 'd', 'o',
'w', 'n', 'l', 'o', 'a', 'd', '?', ':',
':', 0x0a,0x0a,0x1f,0x0a,'F', 'i', 'l',
'e', ':', ' ', 'h', 't', 'h', 'e', 'l',
'p', '.', 'i', 'n', 'f', 'o', ',', ' ',
' ', 'N', 'o', 'd', 'e', ':', ' ', 'A',
'b', 'o', 'u', 't', ',', ' ', ' ', 'P',
'r', 'e', 'v', ':', ' ', 'T', 'o', 'p',
',', ' ', ' ', 'U', 'p', ':', ' ', 'T',
'o', 'p', 0x0a,0x0a,'A', 'b', 'o', 'u',
't', 0x0a,'=', '=', '=', '=', '=', 0x0a,
0x0a,'T', 'h', 'i', 's', ' ', 'p', 'r',
'o', 'g', 'r', 'a', 'm', ' ', 'i', 's',
' ', 'a', ' ', 'f', 'i', 'l', 'e', ' ',
'v', 'i', 'e', 'w', 'e', 'r', ',', ' ',
'e', 'd', 'i', 't', 'o', 'r', ' ', 'a',
'n', 'd', ' ', 'a', 'n', 'a', 'l', 'y',
'z', 'e', 'r', ' ', 'f', 'o', 'r', ' ',
't', 'e', 'x', 't', ',', 0x0a,'b', 'i',
'n', 'a', 'r', 'y', ',', ' ', 'a', 'n',
'd', ' ', '(', 'e', 's', 'p', 'e', 'c',
'i', 'a', 'l', 'l', 'y', ')', ' ', 'e',
'x', 'e', 'c', 'u', 't', 'a', 'b', 'l',
'e', ' ', 'f', 'i', 'l', 'e', 's', '.',
0x0a,0x0a,' ', ' ', ' ', ' ', ' ', 'T',
'h', 'i', 's', ' ', 'p', 'r', 'o', 'g',
'r', 'a', 'm', ' ', 'i', 's', ' ', 'f',
'r', 'e', 'e', ' ', 's', 'o', 'f', 't',
'w', 'a', 'r', 'e', ';', ' ', 'y', 'o',
'u', ' ', 'c', 'a', 'n', ' ', 'r', 'e',
'd', 'i', 's', 't', 'r', 'i', 'b', 'u',
't', 'e', ' ', 'i', 't', 0x0a,' ', ' ',
' ', ' ', ' ', 'a', 'n', 'd', '/', 'o',
'r', ' ', 'm', 'o', 'd', 'i', 'f', 'y',
' ', 'i', 't', ' ', 'u', 'n', 'd', 'e',
'r', ' ', 't', 'h', 'e', ' ', 't', 'e',
'r', 'm', 's', ' ', 'o', 'f', ' ', 't',
'h', 'e', ' ', 'G', 'N', 'U', ' ', 'G',
'e', 'n', 'e', 'r', 'a', 'l', ' ', 'P',
'u', 'b', 'l', 'i', 'c', 0x0a,' ', ' ',
' ', ' ', ' ', 'L', 'i', 'c', 'e', 'n',
's', 'e', ' ', 'v', 'e', 'r', 's', 'i',
'o', 'n', ' ', '2', ' ', 'a', 's', ' ',
'p', 'u', 'b', 'l', 'i', 's', 'h', 'e',
'd', ' ', 'b', 'y', ' ', 't', 'h', 'e',
' ', 'F', 'r', 'e', 'e', ' ', 'S', 'o',
'f', 't', 'w', 'a', 'r', 'e', 0x0a,' ',
' ', ' ', ' ', ' ', 'F', 'o', 'u', 'n',
'd', 'a', 't', 'i', 'o', 'n', '.', 0x0a,
0x0a,' ', ' ', ' ', ' ', ' ', 'T', 'h',
'i', 's', ' ', 'p', 'r', 'o', 'g', 'r',
'a', 'm', ' ', 'i', 's', ' ', 'd', 'i',
's', 't', 'r', 'i', 'b', 'u', 't', 'e',
'd', ' ', 'i', 'n', ' ', 't', 'h', 'e',
' ', 'h', 'o', 'p', 'e', ' ', 't', 'h',
'a', 't', ' ', 'i', 't', ' ', 'w', 'i',
'l', 'l', ' ', 'b', 'e', 0x0a,' ', ' ',
' ', ' ', ' ', 'u', 's', 'e', 'f', 'u',
'l', ',', ' ', 'b', 'u', 't', ' ', 'W',
'I', 'T', 'H', 'O', 'U', 'T', ' ', 'A',
'N', 'Y', ' ', 'W', 'A', 'R', 'R', 'A',
'N', 'T', 'Y', ';', ' ', 'w', 'i', 't',
'h', 'o', 'u', 't', ' ', 'e', 'v', 'e',
'n', ' ', 't', 'h', 'e', ' ', 'i', 'm',
'p', 'l', 'i', 'e', 'd', 0x0a,' ', ' ',
' ', ' ', ' ', 'w', 'a', 'r', 'r', 'a',
'n', 't', 'y', ' ', 'o', 'f', ' ', 'M',
'E', 'R', 'C', 'H', 'A', 'N', 'T', 'A',
'B', 'I', 'L', 'I', 'T', 'Y', ' ', 'o',
'r', ' ', 'F', 'I', 'T', 'N', 'E', 'S',
'S', ' ', 'F', 'O', 'R', ' ', 'A', ' ',
'P', 'A', 'R', 'T', 'I', 'C', 'U', 'L',
'A', 'R', 0x0a,' ', ' ', ' ', ' ', ' ',
'P', 'U', 'R', 'P', 'O', 'S', 'E', '.',
' ', ' ', 'S', 'e', 'e', ' ', 't', 'h',
'e', ' ', 'G', 'N', 'U', ' ', 'G', 'e',
'n', 'e', 'r', 'a', 'l', ' ', 'P', 'u',
'b', 'l', 'i', 'c', ' ', 'L', 'i', 'c',
'e', 'n', 's', 'e', ' ', 'f', 'o', 'r',
' ', 'm', 'o', 'r', 'e', 0x0a,' ', ' ',
' ', ' ', ' ', 'd', 'e', 't', 'a', 'i',
'l', 's', '.', 0x0a,0x0a,' ', ' ', ' ',
' ', ' ', 'Y', 'o', 'u', ' ', 's', 'h',
'o', 'u', 'l', 'd', ' ', 'h', 'a', 'v',
'e', ' ', 'r', 'e', 'c', 'e', 'i', 'v',
'e', 'd', ' ', 'a', ' ', 'c', 'o', 'p',
'y', ' ', 'o', 'f', ' ', 't', 'h', 'e',
' ', 'G', 'N', 'U', ' ', 'G', 'e', 'n',
'e', 'r', 'a', 'l', ' ', 'P', 'u', 'b',
'l', 'i', 'c', 0x0a,' ', ' ', ' ', ' ',
' ', 'L', 'i', 'c', 'e', 'n', 's', 'e',
' ', 'a', 'l', 'o', 'n', 'g', ' ', 'w',
'i', 't', 'h', ' ', 't', 'h', 'i', 's',
' ', 'p', 'r', 'o', 'g', 'r', 'a', 'm',
';', ' ', 'i', 'f', ' ', 'n', 'o', 't',
',', ' ', 'w', 'r', 'i', 't', 'e', ' ',
't', 'o', ' ', 't', 'h', 'e', ' ', 'F',
'r', 'e', 'e', 0x0a,' ', ' ', ' ', ' ',
' ', 'S', 'o', 'f', 't', 'w', 'a', 'r',
'e', ' ', 'F', 'o', 'u', 'n', 'd', 'a',
't', 'i', 'o', 'n', ',', ' ', 'I', 'n',
'c', '.', ',', ' ', '5', '9', ' ', 'T',
'e', 'm', 'p', 'l', 'e', ' ', 'P', 'l',
'a', 'c', 'e', ',', ' ', 'S', 'u', 'i',
't', 'e', ' ', '3', '3', '0', ',', 0x0a,
' ', ' ', ' ', ' ', ' ', 'B', 'o', 's',
't', 'o', 'n', ',', ' ', 'M', 'A', ' ',
'0', '2', '1', '1', '1', ' ', 'U', 'S',
'A', 0x0a,0x0a,0x1f,0x0a,'F', 'i', 'l',
'e', ':', ' ', 'h', 't', 'h', 'e', 'l',
'p', '.', 'i', 'n', 'f', 'o', ',', ' ',
' ', 'N', 'o', 'd', 'e', ':', ' ', 'K',
'e', 'y', ' ', 'b', 'i', 'n', 'd', 'i',
'n', 'g', 's', ',', ' ', ' ', 'P', 'r',
'e', 'v', ':', ' ', 'T', 'o', 'p', ',',
' ', ' ', 'U', 'p', ':', ' ', 'T', 'o',
'p', 0x0a,0x0a,'K', 'e', 'y', ' ', 'b',
'i', 'n', 'd', 'i', 'n', 'g', 's', 0x0a,
'=', '=', '=', '=', '=', '=', '=', '=',
'=', '=', '=', '=', 0x0a,0x0a,' ', ' ',
' ', '*', ' ', 'G', 'e', 'n', 'e', 'r',
'a', 'l', ' ', 'k', 'e', 'y', ' ', 'b',
'i', 'n', 'd', 'i', 'n', 'g', 's', 0x0a,
0x0a,' ', ' ', ' ', ' ', ' ', 'R', 'e',
't', 'u', 'r', 'n', ' ', ' ', ' ', ' ',
' ', ' ', ' ', ' ', ' ', ' ', 'f', 'o',
'l', 'l', 'o', 'w', ' ', 'l', 'i', 'n',
'k', ' ', '(', 'i', 'f', ' ', 'a', 'p',
'p', 'l', 'i', 'c', 'a', 'b', 'l', 'e',
')', 0x0a,' ', ' ', ' ', ' ', ' ', 'B',
'a', 'c', 'k', 's', 'p', 'a', 'c', 'e',
' ', ' ', ' ', ' ', ' ', ' ', ' ', 'u',
'n', 'd', 'o', ' ', '"', 'f', 'o', 'l',
'l', 'o', 'w', ' ', 'l', 'i', 'n', 'k',
'"', 0x0a,' ', ' ', ' ', ' ', ' ', 'S',
'p', 'a', 'c', 'e', '/', 'F', '6', ' ',
' ', ' ', ' ', ' ', ' ', ' ', ' ', 'c',
'h', 'o', 'o', 's', 'e', ' ', 'v', 'i',
'e', 'w', ' ', 'm', 'o', 'd', 'e', 0x0a,
' ', ' ', ' ', ' ', ' ', 'A', 'l', 't',
'+', '[', '1', '-', '9', ']', ' ', ' ',
' ', ' ', ' ', ' ', ' ', 's', 'e', 'l',
'e', 'c', 't', ' ', 'w', 'i', 'n', 'd',
'o', 'w', 0x0a,' ', ' ', ' ', ' ', ' ',
'A', 'l', 't', '+', '0', ' ', ' ', ' ',
' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ',
's', 'e', 'l', 'e', 'c', 't', ' ', 'w',
'i', 'n', 'd', 'o', 'w', ' ', 'l', 'i',
's', 't', 0x0a,' ', ' ', ' ', ' ', ' ',
'C', 't', 'r', 'l', '+', 'L', 'e', 'f',
't', '/', 'R', 'i', 'g', 'h', 't', ' ',
's', 'c', 'r', 'o', 'l', 'l', ' ', 'l',
'e', 'f', 't', '/', 'r', 'i', 'g', 'h',
't', 0x0a,' ', ' ', ' ', ' ', ' ', 'C',
'u', 'r', 's', 'o', 'r', ' ', 'k', 'e',
'y', 's', ' ', ' ', ' ', ' ', ' ', 'm',
'o', 'v', 'e', ' ', 'a', 'r', 'o', 'u',
'n', 'd', 0x0a,' ', ' ', ' ', ' ', ' ',
'P', 'a', 'g', 'e', ' ', 'U', 'p', '/',
'D', 'o', 'w', 'n', ' ', ' ', ' ', ' ',
'n', 'e', 'x', 't', '/', 'p', 'r', 'e',
'v', ' ', 'p', 'a', 'g', 'e', 0x0a,' ',
' ', ' ', ' ', ' ', 'A', 'l', 't', '+',
'S', ' ', ' ', ' ', ' ', ' ', ' ', ' ',
' ', ' ', ' ', ' ', 't', 'o', 'g', 'g',
'l', 'e', ' ', 's', 'e', 'l', 'e', 'c',
't', 0x0a,' ', ' ', ' ', ' ', ' ', 'C',
't', 'r', 'l', '+', 'I', 'n', 's', '/',
'A', 'l', 't', '+', 'C', ' ', ' ', 'c',
'o', 'p', 'y', 0x0a,' ', ' ', ' ', ' ',
' ', 'S', 'h', 'i', 'f', 't', '+', 'I',
'n', 's', '/', 'A', 'l', 't', '+', 'V',
' ', 'i', 'n', 's', 'e', 'r', 't', 0x0a,
' ', ' ', ' ', ' ', ' ', 'C', 't', 'r',
'l', '+', 'D', 'e', 'l', '/', 'A', 'l',
't', '+', 'D', ' ', ' ', 'd', 'e', 'l',
'e', 't', 'e', 0x0a,' ', ' ', ' ', ' ',
' ', 'S', 'h', 'i', 'f', 't', '+', 'D',
'e', 'l', '/', 'A', 'l', 't', '+', 'X',
' ', 'c', 'u', 't', 0x0a,0x0a,' ', ' ',
' ', '*', ' ', 'W', 'i', 'n', 'd', 'o',
'w', ' ', 'k', 'e', 'y', ' ', 'b', 'i',
'n', 'd', 'i', 'n', 'g', 's', 0x0a,0x0a,
' ', ' ', ' ', ' ', ' ', 'A', 'l', 't',
'+', 'F', '3', '/', 'C', 't', 'r', 'l',
'+', 'W', ' ', ' ', ' ', 'c', 'l', 'o',
's', 'e', ' ', 'w', 'i', 'n', 'd', 'o',
'w', 0x0a,' ', ' ', ' ', ' ', ' ', 'C',
't', 'r', 'l', '+', 'F', '5', ' ', ' ',
' ', ' ', ' ', ' ', ' ', ' ', ' ', 'r',
'e', 's', 'i', 'z', 'e', '/', 'm', 'o',
'v', 'e', ' ', 'm', 'o', 'd', 'e', 0x0a,
' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ',
' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ',
' ', ' ', ' ', ' ', ' ', '(', 'i', 'n',
' ', 'r', 'e', 's', 'i', 'z', 'e', '/',
'm', 'o', 'v', 'e', ' ', 'm', 'o', 'd',
'e', ' ', 'o', 'n', 'l', 'y', ':', ')',
0x0a,' ', ' ', ' ', ' ', ' ', 'S', 'p',
'a', 'c', 'e', ' ', ' ', ' ', ' ', ' ',
' ', ' ', ' ', ' ', ' ', ' ', 't', 'o',
'g', 'g', 'l', 'e', ' ', 'r', 'e', 's',
'i', 'z', 'e', '/', 'm', 'o', 'v', 'e',
' ', 'm', 'o', 'd', 'e', 0x0a,' ', ' ',
' ', ' ', ' ', 'C', 'u', 'r', 's', 'o',
'r', ' ', 'k', 'e', 'y', 's', ' ', ' ',
' ', ' ', ' ', 'r', 'e', 's', 'i', 'z',
'e', '/', 'm', 'o', 'v', 'e', ' ', 'w',
'i', 'n', 'd', 'o', 'w', 0x0a,' ', ' ',
' ', ' ', ' ', 'E', 's', 'c', 'a', 'p',
'e', '/', 'R', 'e', 't', 'u', 'r', 'n',
'/', 'C', 't', 'r', 'l', '+', 'F', '5',
'l', 'e', 'a', 'v', 'e', ' ', 'r', 'e',
's', 'i', 'z', 'e', '/', 'm', 'o', 'v',
'e', ' ', 'm', 'o', 'd', 'e', 0x0a,0x0a,
' ', ' ', ' ', '*', ' ', 'A', 'n', 'a',
'l', 'y', 's', 'e', 'r', ' ', 'k', 'e',
'y', ' ', 'b', 'i', 'n', 'd', 'i', 'n',
'g', 's', 0x0a,0x0a,' ', ' ', ' ', ' ',
' ', 'c', ' ', ' ', ' ', ' ', ' ', ' ',
' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ',
' ', 'c', 'o', 'n', 't', 'i', 'n', 'u',
'e', ' ', 'c', 'o', 'd', 'e', ' ', 'a',
'n', 'a', 'l', 'y', 's', 'i', 's', ' ',
'a', 't', ' ', 'c', 'u', 'r', 's', 'o',
'r', 0x0a,' ', ' ', ' ', ' ', ' ', 'f',
' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ',
' ', ' ', ' ', ' ', ' ', ' ', ' ', 'f',
'o', 'l', 'l', 'o', 'w', ' ', 'd', 'w',
'o', 'r', 'd', ' ', 'p', 't', 'r', ' ',
'a', 't', ' ', 'a', 'd', 'd', 'r', 'e',
's', 's', 0x0a,' ', ' ', ' ', ' ', ' ',
'n', ' ', ' ', ' ', ' ', ' ', ' ', ' ',
' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ',
'n', 'a', 'm', 'e', ' ', 'c', 'u', 'r',
'r', 'e', 'n', 't', ' ', 'a', 'd', 'd',
'r', 'e', 's', 's', ' ', '(', 'e', 'm',
'p', 't', 'y', ' ', 's', 't', 'r', 'i',
'n', 'g', ' ', 't', 'o', 0x0a,' ', ' ',
' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ',
' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ',
' ', ' ', ' ', 'd', 'e', 'l', 'e', 't',
'e', ')', 0x0a,' ', ' ', ' ', ' ', ' ',
'x', ' ', ' ', ' ', ' ', ' ', ' ', ' ',
' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ',
's', 'h', 'o', 'w', ' ', 'x', 'r', 'e',
'f', 's', ' ', '(', 's', 'e', 'a', 'r',
'c', 'h', ' ', 'f', 'o', 'r', ' ', 'x',
'r', 'e', 'f', 's', ')', 0x0a,' ', ' ',
' ', ' ', ' ', '#', ' ', ' ', ' ', ' ',
' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ',
' ', ' ', ' ', 'e', 'd', 'i', 't', ' ',
'c', 'o', 'm', 'm', 'e', 'n', 't', 's',
0x0a,' ', ' ', ' ', ' ', ' ', 's', ' ',
' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ',
' ', ' ', ' ', ' ', ' ', ' ', 'd', 'e',
'f', 'i', 'n', 'e', ' ', 'a', ' ', 's',
't', 'r', 'i', 'n', 'g', 0x0a,' ', ' ',
' ', ' ', ' ', 'i', ' ', ' ', ' ', ' ',
' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ',
' ', ' ', ' ', 'd', 'e', 'f', 'i', 'n',
'e', ' ', 'a', 'n', ' ', 'i', 'n', 't',
'e', 'g', 'e', 'r', ' ', '(', '3', '2',
'b', 'i', 't', ')', 0x0a,' ', ' ', ' ',
' ', ' ', 'h', ' ', ' ', ' ', ' ', ' ',
' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ',
' ', ' ', 'd', 'e', 'f', 'i', 'n', 'e',
' ', 'a', ' ', 'h', 'a', 'l', 'f', 'w',
'o', 'r', 'd', ' ', '(', '1', '6', 'b',
'i', 't', ')', 0x0a,' ', ' ', ' ', ' ',
' ', 'b', ' ', ' ', ' ', ' ', ' ', ' ',
' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ',
' ', 'd', 'e', 'f', 'i', 'n', 'e', ' ',
'a', ' ', 'b', 'y', 't', 'e', ' ', '(',
'8', 'b', 'i', 't', ')', 0x0a,' ', ' ',
' ', ' ', ' ', 'C', 't', 'r', 'l', '+',
'A', ' ', ' ', ' ', ' ', ' ', ' ', ' ',
' ', ' ', ' ', 'c', 'a', 'l', 'l', ' ',
'a', 's', 's', 'e', 'm', 'b', 'l', 'e',
'r', 0x0a,' ', ' ', ' ', ' ', ' ', 'C',
't', 'r', 'l', '+', 'F', ' ', ' ', ' ',
' ', ' ', ' ', ' ', ' ', ' ', ' ', 'g',
'o', 't', 'o', ' ', 's', 't', 'a', 'r',
't', ' ', 'o', 'f', ' ', 'c', 'u', 'r',
'r', 'e', 'n', 't', ' ', 'f', 'u', 'n',
'c', 't', 'i', 'o', 'n', 0x0a,' ', ' ',
' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ',
' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ',
' ', ' ', ' ', '(', 'i', 'n', 'd', 'i',
'c', 'a', 't', 'e', 'd', ' ', 'i', 'n',
' ', 't', 'h', 'e', ' ', '2', 'n', 'd',
' ', 'l', 'i', 'n', 'e', ')', 0x0a,' ',
' ', ' ', ' ', ' ', 'C', 't', 'r', 'l',
'+', 'L', ' ', ' ', ' ', ' ', ' ', ' ',
' ', ' ', ' ', ' ', 'g', 'o', 't', 'o',
' ', 'p', 'r', 'e', 'v', 'i', 'o', 'u',
's', ' ', 'l', 'a', 'b', 'e', 'l', 0x0a,
' ', ' ', ' ', ' ', ' ', 'C', 't', 'r',
'l', '+', 'T', ' ', ' ', ' ', ' ', ' ',
' ', ' ', ' ', ' ', ' ', 's', 'h', 'o',
'w', ' ', 'r', 'e', 'c', 'u', 'r', 's',
'i', 'v', 'e', ' ', 'f', 'u', 'n', 'c',
't', 'i', 'o', 'n', ' ', 'r', 'e', 'f',
'e', 'r', 'e', 'n', 'c', 'e', 's', 0x0a,
0x0a,0x0a,0x0a,'N', 'o', 't', 'e', ':',
' ', 'S', 'o', 'm', 'e', ' ', 'k', 'e',
'y', 's', ' ', 'd', 'o', 'n', '\'','t',
' ', 'w', 'o', 'r', 'k', ' ', 'i', 'n',
' ', 'H', 'T', '-', 'p', 'o', 's', 'i',
'x', '.', ' ', 'T', 'r', 'y', ' ', 'u',
's', 'i', 'n', 'g', ' ', 'E', 's', 'c',
'a', 'p', 'e', 0x0a,'i', 'n', 's', 't',
'e', 'a', 'd', ' ', 'o', 'f', ' ', 'C',
'o', 'n', 't', 'r', 'o', 'l', ' ', 'o',
'r', ' ', 's', 'o', 'm', 'e', 't', 'h',
'i', 'n', 'g', '.', '.', '.', 0x0a,0x0a,
0x1f,0x0a,'F', 'i', 'l', 'e', ':', ' ',
'h', 't', 'h', 'e', 'l', 'p', '.', 'i',
'n', 'f', 'o', ',', ' ', ' ', 'N', 'o',
'd', 'e', ':', ' ', 'A', 'u', 't', 'h',
'o', 'r', 's', ',', ' ', ' ', 'P', 'r',
'e', 'v', ':', ' ', 'T', 'o', 'p', ',',
' ', ' ', 'U', 'p', ':', ' ', 'T', 'o',
'p', 0x0a,0x0a,'A', 'u', 't', 'h', 'o',
'r', 's', 0x0a,'=', '=', '=', '=', '=',
'=', '=', 0x0a,0x0a,' ', ' ', ' ', '*',
' ', 'S', 't', 'e', 'f', 'a', 'n', ' ',
'W', 'e', 'y', 'e', 'r', 'g', 'r', 'a',
'f', 0x0a,0x0a,' ', ' ', ' ', '*', ' ',
'S', 'e', 'b', 'a', 's', 't', 'i', 'a',
'n', ' ', 'B', 'i', 'a', 'l', 'l', 'a',
's', ' ', '<', 's', 'b', '@', 'b', 'i',
'a', 'l', 'l', 'a', 's', '.', 'n', 'e',
't', '>', 0x0a,0x0a,0x1f,0x0a,'F', 'i',
'l', 'e', ':', ' ', 'h', 't', 'h', 'e',
'l', 'p', '.', 'i', 'n', 'f', 'o', ',',
' ', ' ', 'N', 'o', 'd', 'e', ':', ' ',
'F', 'e', 'a', 't', 'u', 'r', 'e', 's',
',', ' ', ' ', 'P', 'r', 'e', 'v', ':',
' ', 'T', 'o', 'p', ',', ' ', ' ', 'U',
'p', ':', ' ', 'T', 'o', 'p', 0x0a,0x0a,
'F', 'e', 'a', 't', 'u', 'r', 'e', 's',
0x0a,'=', '=', '=', '=', '=', '=', '=',
'=', 0x0a,0x0a,'H', 'T', ' ', 'c', 'o',
'n', 't', 'a', 'i', 'n', 's', ' ', 's',
'o', 'm', 'e', ' ', 'v', 'e', 'r', 'y',
' ', 'a', 'd', 'v', 'a', 'n', 'c', 'e',
'd', ' ', 'a', 'n', 'd', ' ', 'u', 's',
'e', 'f', 'u', 'l', ' ', 'f', 'e', 'a',
't', 'u', 'r', 'e', 's', ',', ' ', 'w',
'h', 'i', 'c', 'h', ' ', 'y', 'o', 'u',
0x0a,'s', 'h', 'o', 'u', 'l', 'd', ' ',
'c', 'a', 'r', 'e', 'f', 'u', 'l', 'l',
'y', ' ', 'i', 'n', 's', 'p', 'e', 'c',
't', ':', 0x0a,0x0a,'*', ' ', 'M', 'e',
'n', 'u', ':', 0x0a,0x0a,'*', ' ', 'G',
'e', 'n', 'e', 'r', 'a', 'l', ' ', 'f',
'e', 'a', 't', 'u', 'r', 'e', 's', ':',
':', 0x0a,'*', ' ', 'C', 'o', 'n', 'f',
'i', 'g', 'u', 'r', 'a', 't', 'i', 'o',
'n', ' ', 'f', 'i', 'l', 'e', 's', ':',
':', 0x0a,'*', ' ', 'C', 'l', 'i', 'p',
'b', 'o', 'a', 'r', 'd', ':', ':', 0x0a,
'*', ' ', 'G', 'l', 'o', 'b', 'a', 'l',
' ', 'h', 'i', 's', 't', 'o', 'r', 'y',
':', ':', 0x0a,'*', ' ', 'E', 'x', 'p',
'r', 'e', 's', 's', 'i', 'o', 'n', ' ',
'e', 'v', 'a', 'l', 'u', 'a', 't', 'i',
'o', 'n', ':', ':', 0x0a,'*', ' ', 'B',
'l', 'o', 'c', 'k', ' ', 'o', 'p', 'e',
'r', 'a', 't', 'i', 'o', 'n', 's', ':',
':', 0x0a,'*', ' ', 'S', 'e', 'a', 'r',
'c', 'h', ' ', 'a', 'n', 'd', ' ', 'i',
't', 's', ' ', 'd', 'i', 'f', 'f', 'e',
'r', 'e', 'n', 't', ' ', 'm', 'o', 'd',
'e', 's', ':', ':', 0x0a,'*', ' ', 'C',
'o', 'm', 'm', 'a', 'n', 'd', ' ', 'l',
'i', 'n', 'e', ' ', 'o', 'p', 't', 'i',
'o', 'n', 's', ':', ':', 0x0a,0x0a,0x1f,
0x0a,'F', 'i', 'l', 'e', ':', ' ', 'h',
't', 'h', 'e', 'l', 'p', '.', 'i', 'n',
'f', 'o', ',', ' ', ' ', 'N', 'o', 'd',
'e', ':', ' ', 'G', 'e', 'n', 'e', 'r',
'a', 'l', ' ', 'f', 'e', 'a', 't', 'u',
'r', 'e', 's', ',', ' ', ' ', 'P', 'r',
'e', 'v', ':', ' ', 'F', 'e', 'a', 't',
'u', 'r', 'e', 's', ',', ' ', ' ', 'U',
'p', ':', ' ', 'F', 'e', 'a', 't', 'u',
'r', 'e', 's', 0x0a,0x0a,'G', 'e', 'n',
'e', 'r', 'a', 'l', ' ', 'f', 'e', 'a',
't', 'u', 'r', 'e', 's', 0x0a,'=', '=',
'=', '=', '=', '=', '=', '=', '=', '=',
'=', '=', '=', '=', '=', '=', 0x0a,0x0a,
' ', ' ', '1', '.', ' ', 'S', 'u', 'p',
'p', 'o', 'r', 't', 'e', 'd', ' ', 'f',
'i', 'l', 'e', ' ', 'f', 'o', 'r', 'm',
'a', 't', 's', 0x0a,' ', ' ', ' ', ' ',
' ', ' ', ' ', ' ', '*', ' ', 'c', 'o',
'm', 'm', 'o', 'n', ' ', 'o', 'b', 'j',
'e', 'c', 't', ' ', 'f', 'i', 'l', 'e',
' ', 'f', 'o', 'r', 'm', 'a', 't', ' ',
'(', 'C', 'O', 'F', 'F', '/', 'X', 'C',
'O', 'F', 'F', '3', '2', ')', 0x0a,' ',
' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ',
' ', ' ', ' ', ' ', ' ', ' ', '-', ' ',
'h', 'e', 'a', 'd', 'e', 'r', 0x0a,' ',
' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ',
' ', ' ', ' ', ' ', ' ', ' ', '-', ' ',
'i', 'm', 'a', 'g', 'e', ' ', 'w', 'i',
't', 'h', ' ', 'c', 'o', 'd', 'e', '/',
'd', 'a', 't', 'a', ' ', 'a', 'n', 'a',
'l', 'y', 's', 'e', 'r', ' ', '(', 'x',
'8', '6', ')', 0x0a,0x0a,' ', ' ', ' ',
' ', ' ', ' ', ' ', ' ', '*', ' ', 'e',
'x', 'e', 'c', 'u', 't', 'a', 'b', 'l',
'e', ' ', 'a', 'n', 'd', ' ', 'l', 'i',
'n', 'k', 'a', 'b', 'l', 'e', ' ', 'f',
'o', 'r', 'm', 'a', 't', ' ', '(', 'E',
'L', 'F', ')', 0x0a,' ', ' ', ' ', ' ',
' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ',
' ', ' ', ' ', '-', ' ', 'h', 'e', 'a',
'd', 'e', 'r', 0x0a,' ', ' ', ' ', ' ',
' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ',
' ', ' ', ' ', '-', ' ', 's', 'e', 'c',
't', 'i', 'o', 'n', ' ', 'h', 'e', 'a',
'd', 'e', 'r', 's', 0x0a,' ', ' ', ' ',
' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ',
' ', ' ', ' ', ' ', '-', ' ', 'p', 'r',
'o', 'g', 'r', 'a', 'm', ' ', 'h', 'e',
'a', 'd', 'e', 'r', 's', 0x0a,' ', ' ',
' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ',
' ', ' ', ' ', ' ', ' ', '-', ' ', 's',
'y', 'm', 'b', 'o', 'l', ' ', 't', 'a',
'b', 'l', 'e', 's', 0x0a,' ', ' ', ' ',
' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ',
' ', ' ', ' ', ' ', '-', ' ', 'i', 'm',
'a', 'g', 'e', ' ', 'w', 'i', 't', 'h',
' ', 'c', 'o', 'd', 'e', '/', 'd', 'a',
't', 'a', ' ', 'a', 'n', 'a', 'l', 'y',
's', 'e', 'r', ' ', '(', 'x', '8', '6',
',', ' ', 'A', 'M', 'D', '6', '4', ',',
0x0a,' ', ' ', ' ', ' ', ' ', ' ', ' ',
' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ',
'I', 'A', '-', '6', '4', ',', ' ', 'A',
'l', 'p', 'h', 'a', ',', ' ', 'P', 'o',
'w', 'e', 'r', 'P', 'C', ',', ' ', 'A',
'R', 'M', ')', ' ', 'a', 'n', 'd', ' ',
'r', 'e', 'l', 'o', 'c', 'a', 't', 'i',
'o', 'n', 's', 0x0a,0x0a,' ', ' ', ' ',
' ', ' ', ' ', ' ', ' ', '*', ' ', 'l',
'i', 'n', 'e', 'a', 'r', ' ', 'e', 'x',
'e', 'c', 'u', 't', 'a', 'b', 'l', 'e',
's', ' ', '(', 'L', 'E', ')', 0x0a,' ',
' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ',
' ', ' ', ' ', ' ', ' ', ' ', '-', ' ',
'h', 'e', 'a', 'd', 'e', 'r', 0x0a,' ',
' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ',
' ', ' ', ' ', ' ', ' ', ' ', '-', ' ',
'V', 'x', 'D', ' ', 'd', 'e', 's', 'c',
'r', 'i', 'p', 't', 'o', 'r', 0x0a,' ',
' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ',
' ', ' ', ' ', ' ', ' ', ' ', '-', ' ',
'o', 'b', 'j', 'e', 'c', 't', ' ', 't',
'a', 'b', 'l', 'e', 0x0a,' ', ' ', ' ',
' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ',
' ', ' ', ' ', ' ', '-', ' ', 'p', 'a',
'g', 'e', ' ', 't', 'a', 'b', 'l', 'e',
0x0a,' ', ' ', ' ', ' ', ' ', ' ', ' ',
' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ',
'-', ' ', 'i', 'm', 'a', 'g', 'e', ' ',
'w', 'i', 't', 'h', ' ', 'c', 'o', 'd',
'e', '/', 'd', 'a', 't', 'a', ' ', 'a',
'n', 'a', 'l', 'y', 's', 'e', 'r', ' ',
'(', 'x', '8', '6', ')', 0x0a,' ', ' ',
' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ',
' ', ' ', ' ', ' ', ' ', '-', ' ', 'a',
'u', 't', 'o', '-', 'r', 'e', 'l', 'o',
'c', 'a', 't', 'i', 'o', 'n', ' ', 'l',
'a', 'y', 'e', 'r', ' ', '(', 'o', 'n',
'l', 'y', ' ', 'i', 'n', 't', 'e', 'r',
'n', 'a', 'l', ' ', 'r', 'e', 'f', 's',
' ', 'f', 'o', 'r', 0x0a,' ', ' ', ' ',
' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ',
' ', ' ', ' ', ' ', 'n', 'o', 'w', ')',
0x0a,0x0a,' ', ' ', ' ', ' ', ' ', ' ',
' ', ' ', '*', ' ', 's', 't', 'a', 'n',
'd', 'a', 'r', 'd', ' ', 'd', 'o', 's',
' ', 'e', 'x', 'e', 'c', 'u', 't', 'a',
'b', 'l', 'e', 's', ' ', '(', 'M', 'Z',
')', 0x0a,' ', ' ', ' ', ' ', ' ', ' ',
' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ',
' ', '-', ' ', 'h', 'e', 'a', 'd', 'e',
'r', 0x0a,' ', ' ', ' ', ' ', ' ', ' ',
' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ',
' ', '-', ' ', 'r', 'e', 'l', 'o', 'c',
'a', 't', 'i', 'o', 'n', 's', 0x0a,' ',
' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ',
' ', ' ', ' ', ' ', ' ', ' ', '-', ' ',
'i', 'm', 'a', 'g', 'e', ' ', '(', 'd',
'i', 's', 'a', 's', 's', 'e', 'm', 'b',
'l', 'y', ' ', 'o', 'n', 'l', 'y', ')',
0x0a,0x0a,' ', ' ', ' ', ' ', ' ', ' ',
' ', ' ', '*', ' ', 'n', 'e', 'w', ' ',
'e', 'x', 'e', 'c', 'u', 't', 'a', 'b',
'l', 'e', 's', ' ', '(', 'N', 'E', ')',
0x0a,' ', ' ', ' ', ' ', ' ', ' ', ' ',
' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ',
'-', ' ', 'h', 'e', 'a', 'd', 'e', 'r',
0x0a,' ', ' ', ' ', ' ', ' ', ' ', ' ',
' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ',
'-', ' ', 's', 'e', 'g', 'm', 'e', 'n',
't', 's', 0x0a,' ', ' ', ' ', ' ', ' ',
' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ',
' ', ' ', '-', ' ', 'n', 'a', 'm', 'e',
's', 0x0a,' ', ' ', ' ', ' ', ' ', ' ',
' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ',
' ', '-', ' ', 'e', 'n', 't', 'r', 'y',
'p', 'o', 'i', 'n', 't', 's', 0x0a,' ',
' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ',
' ', ' ', ' ', ' ', ' ', ' ', '-', ' ',
'i', 'm', 'a', 'g', 'e', ' ', 'w', 'i',
't', 'h', ' ', 'c', 'o', 'd', 'e', '/',
'd', 'a', 't', 'a', ' ', 'a', 'n', 'a',
'l', 'y', 's', 'e', 'r', ' ', '(', 'x',
'8', '6', ')', 0x0a,' ', ' ', ' ', ' ',
' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ',
' ', ' ', ' ', '-', ' ', 'a', 'u', 't',
'o', '-', 'r', 'e', 'l', 'o', 'c', 'a',
't', 'i', 'o', 'n', ' ', 'l', 'a', 'y',
'e', 'r', ' ', '(', 'p', 'r', 'e', 't',
't', 'y', ' ', 'c', 'o', 'm', 'p', 'l',
'e', 't', 'e', ')', 0x0a,0x0a,' ', ' ',
' ', ' ', ' ', ' ', ' ', ' ', '*', ' ',
'p', 'o', 'r', 't', 'a', 'b', 'l', 'e',
' ', 'e', 'x', 'e', 'c', 'u', 't', 'a',
'b', 'l', 'e', 's', ' ', '(', 'P', 'E',
'3', '2', ',', ' ', 'P', 'E', '6', '4',
')', 0x0a,' ', ' ', ' ', ' ', ' ', ' ',
' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ',
' ', '-', ' ', 'h', 'e', 'a', 'd', 'e',
'r', 0x0a,' ', ' ', ' ', ' ', ' ', ' ',
' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ',
' ', '-', ' ', 'i', 'm', 'p', 'o', 'r',
't', ' ', 's', 'e', 'c', 't', 'i', 'o',
'n', 0x0a,' ', ' ', ' ', ' ', ' ', ' ',
' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ',
' ', '-', ' ', 'd', 'e', 'l', 'a', 'y',
'-', 'i', 'm', 'p', 'o', 'r', 't', ' ',
's', 'e', 'c', 't', 'i', 'o', 'n', 0x0a,
' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ',
' ', ' ', ' ', ' ', ' ', ' ', ' ', '-',
' ', 'e', 'x', 'p', 'o', 'r', 't', ' ',
's', 'e', 'c', 't', 'i', 'o', 'n', 0x0a,
' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ',
' ', ' ', ' ', ' ', ' ', ' ', ' ', '-',
' ', 'r', 'e', 's', 'o', 'u', 'r', 'c',
'e', 's', 0x0a,' ', ' ', ' ', ' ', ' ',
' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ',
' ', ' ', '-', ' ', 'i', 'm', 'a', 'g',
'e', ' ', 'w', 'i', 't', 'h', ' ', 'c',
'o', 'd', 'e', '/', 'd', 'a', 't', 'a',
' ', 'a', 'n', 'a', 'l', 'y', 's', 'e',
'r', ' ', '(', 'x', '8', '6', ',', ' ',
'A', 'M', 'D', '6', '4', ',', 0x0a,' ',
' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ',
' ', ' ', ' ', ' ', ' ', ' ', 'P', 'o',
'w', 'e', 'r', 'P', 'C', ',', ' ', 'I',
'A', '-', '6', '4', ',', ' ', 'A', 'l',
'p', 'h', 'a', ',', ' ', 'A', 'R', 'M',
')', 0x0a,' ', ' ', ' ', ' ', ' ', ' ',
' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ',
' ', '-', ' ', 'p', 'r', 'e', 'l', 'i',
'm', 'i', 'n', 'a', 'r', 'y', ' ', 's',
'u', 'p', 'p', 'o', 'r', 't', ' ', 'f',
'o', 'r', ' ', '.', 'n', 'e', 't', ' ',
'e', 'x', 'e', 'c', 'u', 't', 'a', 'b',
'l', 'e', 's', 0x0a,0x0a,' ', ' ', ' ',
' ', ' ', ' ', ' ', ' ', '*', ' ', 'j',
'a', 'v', 'a', ' ', 'c', 'l', 'a', 's',
's', ' ', 'f', 'i', 'l', 'e', 's', ' ',
'(', 'C', 'L', 'A', 'S', 'S', ')', 0x0a,
' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ',
' ', ' ', ' ', ' ', ' ', ' ', ' ', '-',
' ', 'h', 'e', 'a', 'd', 'e', 'r', 0x0a,
' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ',
' ', ' ', ' ', ' ', ' ', ' ', ' ', '-',
' ', 'i', 'm', 'a', 'g', 'e', ' ', 'w',
'i', 't', 'h', ' ', 'c', 'o', 'd', 'e',
'/', 'd', 'a', 't', 'a', ' ', 'a', 'n',
'a', 'l', 'y', 's', 'e', 'r', ' ', '(',
'j', 'a', 'v', 'a', ' ', 'b', 'y', 't',
'e', 'c', 'o', 'd', 'e', 0x0a,' ', ' ',
' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ',
' ', ' ', ' ', ' ', ' ', 'd', 'i', 's',
'a', 's', 's', 'e', 'm', 'b', 'l', 'e',
'r', ')', 0x0a,0x0a,' ', ' ', ' ', ' ',
' ', ' ', ' ', ' ', '*', ' ', 'M', 'a',
'c', 'h', ' ', 'e', 'x', 'e', '/', 'l',
'i', 'n', 'k', ' ', 'f', 'o', 'r', 'm',
'a', 't', ' ', '(', 'M', 'a', 'c', 'h',
'O', ')', 0x0a,' ', ' ', ' ', ' ', ' ',
' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ',
' ', ' ', '-', ' ', 'h', 'e', 'a', 'd',
'e', 'r', 0x0a,' ', ' ', ' ', ' ', ' ',
' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ',
' ', ' ', '-', ' ', 'i', 'm', 'a', 'g',
'e', ' ', 'w', 'i', 't', 'h', ' ', 'c',
'o', 'd', 'e', '/', 'd', 'a', 't', 'a',
' ', 'a', 'n', 'a', 'l', 'y', 's', 'e',
'r', ' ', '(', 'x', '8', '6', ',', ' ',
'A', 'M', 'D', '6', '4', ',', 0x0a,' ',
' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ',
' ', ' ', ' ', ' ', ' ', ' ', 'P', 'o',
'w', 'e', 'r', 'P', 'C', ',', ' ', 'A',
'R', 'M', ')', 0x0a,0x0a,' ', ' ', ' ',
' ', ' ', ' ', ' ', ' ', '*', ' ', 'X',
'-', 'B', 'o', 'x', ' ', 'e', 'x', 'e',
'c', 'u', 't', 'a', 'b', 'l', 'e', ' ',
'(', 'X', 'B', 'E', ')', 0x0a,' ', ' ',
' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ',
' ', ' ', ' ', ' ', ' ', '-', ' ', 'h',
'e', 'a', 'd', 'e', 'r', 0x0a,' ', ' ',
' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ',
' ', ' ', ' ', ' ', ' ', '-', ' ', 'i',
'm', 'p', 'o', 'r', 't', 's', 0x0a,' ',
' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ',
' ', ' ', ' ', ' ', ' ', ' ', '-', ' ',
'i', 'm', 'a', 'g', 'e', ' ', 'w', 'i',
't', 'h', ' ', 'c', 'o', 'd', 'e', '/',
'd', 'a', 't', 'a', ' ', 'a', 'n', 'a',
'l', 'y', 's', 'e', 'r', ' ', '(', 'x',
'8', '6', ')', 0x0a,0x0a,' ', ' ', ' ',
' ', ' ', ' ', ' ', ' ', '*', ' ', 'F',
'l', 'a', 't', ' ', '(', 'F', 'L', 'T',
')', 0x0a,' ', ' ', ' ', ' ', ' ', ' ',
' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ',
' ', '-', ' ', 'h', 'e', 'a', 'd', 'e',
'r', 0x0a,' ', ' ', ' ', ' ', ' ', ' ',
' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ',
' ', '-', ' ', 'i', 'm', 'a', 'g', 'e',
' ', 'w', 'i', 't', 'h', ' ', 'd', 'a',
't', 'a', ' ', 'a', 'n', 'a', 'l', 'y',
's', 'e', 'r', ' ', '(', 'n', 'o', ' ',
'd', 'i', 's', 'a', 's', 's', 'e', 'm',
'b', 'l', 'e', 'r', ' ', 'y', 'e', 't',
')', 0x0a,0x0a,' ', ' ', ' ', ' ', ' ',
' ', ' ', ' ', '*', ' ', 'P', 'o', 'w',
'e', 'r', 'P', 'C', ' ', 'e', 'x', 'e',
'c', 'u', 't', 'a', 'b', 'l', 'e', ' ',
'f', 'o', 'r', 'm', 'a', 't', ' ', '(',
'P', 'E', 'F', ')', 0x0a,' ', ' ', ' ',
' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ',
' ', ' ', ' ', ' ', '-', ' ', 'h', 'e',
'a', 'd', 'e', 'r', 0x0a,' ', ' ', ' ',
' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ',
' ', ' ', ' ', ' ', '-', ' ', 'i', 'm',
'p', 'o', 'r', 't', 's', ' ', '-', ' ',
'i', 'm', 'a', 'g', 'e', ' ', 'w', 'i',
't', 'h', ' ', 'c', 'o', 'd', 'e', '/',
'd', 'a', 't', 'a', ' ', 'a', 'n', 'a',
'l', 'y', 's', 'e', 'r', 0x0a,' ', ' ',
' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ',
' ', ' ', ' ', ' ', ' ', '(', 'P', 'o',
'w', 'e', 'r', 'P', 'C', ')', 0x0a,0x0a,
' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ',
'*', ' ', 'S', 't', 'i', 'l', 'l', ' ',
's', 'o', 'm', 'e', ' ', 't', 'o', ' ',
'b', 'e', ' ', 'i', 'm', 'p', 'l', 'e',
'm', 'e', 'n', 't', 'e', 'd', ' ', '(',
'M', '$', '-', 'O', 'B', 'J', ',', ' ',
'A', 'R', 'C', 'H', ',', ' ', 'L', 'X',
')', 0x0a,0x0a,' ', ' ', '2', '.', ' ',
'C', 'o', 'd', 'e', ' ', '&', ' ', 'D',
'a', 't', 'a', ' ', 'A', 'n', 'a', 'l',
'y', 's', 'e', 'r', 0x0a,' ', ' ', ' ',
' ', ' ', ' ', ' ', ' ', ' ', ' ', '-',
' ', 'f', 'i', 'n', 'd', 's', ' ', 'b',
'r', 'a', 'n', 'c', 'h', ' ', 's', 'o',
'u', 'r', 'c', 'e', 's', ' ', 'a', 'n',
'd', ' ', 'd', 'e', 's', 't', 'i', 'n',
'a', 't', 'i', 'o', 'n', 's', ' ', 'r',
'e', 'c', 'u', 'r', 's', 'i', 'v', 'e',
'l', 'y', 0x0a,' ', ' ', ' ', ' ', ' ',
' ', ' ', ' ', ' ', ' ', '-', ' ', 'f',
'i', 'n', 'd', 's', ' ', 'p', 'r', 'o',
'c', 'e', 'd', 'u', 'r', 'e', ' ', 'e',
'n', 't', 'r', 'i', 'e', 's', 0x0a,' ',
' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ',
' ', '-', ' ', 'c', 'r', 'e', 'a', 't',
'e', 's', ' ', 'l', 'a', 'b', 'e', 'l',
's', ' ', 'b', 'a', 's', 'e', 'd', ' ',
'o', 'n', ' ', 't', 'h', 'i', 's', ' ',
'i', 'n', 'f', 'o', 'r', 'm', 'a', 't',
'i', 'o', 'n', 0x0a,' ', ' ', ' ', ' ',
' ', ' ', ' ', ' ', ' ', ' ', '-', ' ',
'c', 'r', 'e', 'a', 't', 'e', 's', ' ',
'x', 'r', 'e', 'f', ' ', 'i', 'n', 'f',
'o', 'r', 'm', 'a', 't', 'i', 'o', 'n',
0x0a,' ', ' ', ' ', ' ', ' ', ' ', ' ',
' ', ' ', ' ', '-', ' ', 'a', 'l', 'l',
'o', 'w', 's', ' ', 't', 'o', ' ', 'i',
'n', 't', 'e', 'r', 'a', 'c', 't', 'i',
'v', 'e', 'l', 'y', ' ', 'a', 'n', 'a',
'l', 'y', 's', 'e', ' ', 'u', 'n', 'e',
'x', 'p', 'l', 'o', 'r', 'e', 'd', ' ',
'c', 'o', 'd', 'e', 0x0a,' ', ' ', ' ',
' ', ' ', ' ', ' ', ' ', ' ', ' ', '(',
'p', 'r', 'e', 's', 's', ' ', '\'','c',
'\'',')', 0x0a,' ', ' ', ' ', ' ', ' ',
' ', ' ', ' ', ' ', ' ', '-', ' ', 'a',
'l', 'l', 'o', 'w', 's', ' ', 't', 'o',
' ', 'c', 'r', 'e', 'a', 't', 'e', '/',
'r', 'e', 'n', 'a', 'm', 'e', '/', 'd',
'e', 'l', 'e', 't', 'e', ' ', 'l', 'a',
'b', 'e', 'l', 's', ' ', '(', 'p', 'r',
'e', 's', 's', ' ', '\'','n', '\'',')',
0x0a,' ', ' ', ' ', ' ', ' ', ' ', ' ',
' ', ' ', ' ', '-', ' ', 'a', 'l', 'l',
'o', 'w', 's', ' ', 't', 'o', ' ', 'c',
'r', 'e', 'a', 't', 'e', '/', 'e', 'd',
'i', 't', ' ', 'c', 'o', 'm', 'm', 'e',
'n', 't', 's', ' ', '(', 'p', 'r', 'e',
's', 's', ' ', '\'','#', '\'',')', 0x0a,
0x0a,' ', ' ', '3', '.', ' ', 'T', 'a',
'r', 'g', 'e', 't', ' ', 's', 'y', 's',
't', 'e', 'm', 's', 0x0a,' ', ' ', ' ',
' ', ' ', ' ', ' ', ' ', ' ', ' ', '-',
' ', 'D', 'J', 'G', 'P', 'P', 0x0a,' ',
' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ',
' ', '-', ' ', 'G', 'N', 'U', '/', 'L',
'i', 'n', 'u', 'x', 0x0a,' ', ' ', ' ',
' ', ' ', ' ', ' ', ' ', ' ', ' ', '-',
' ', 'F', 'r', 'e', 'e', 'B', 'S', 'D',
0x0a,' ', ' ', ' ', ' ', ' ', ' ', ' ',
' ', ' ', ' ', '-', ' ', 'W', 'i', 'n',
'3', '2', 0x0a,0x0a,0x1f,0x0a,'F', 'i',
'l', 'e', ':', ' ', 'h', 't', 'h', 'e',
'l', 'p', '.', 'i', 'n', 'f', 'o', ',',
' ', ' ', 'N', 'o', 'd', 'e', ':', ' ',
'C', 'o', 'n', 'f', 'i', 'g', 'u', 'r',
'a', 't', 'i', 'o', 'n', ' ', 'f', 'i',
'l', 'e', 's', ',', ' ', ' ', 'P', 'r',
'e', 'v', ':', ' ', 'F', 'e', 'a', 't',
'u', 'r', 'e', 's', ',', ' ', ' ', 'U',
'p', ':', ' ', 'F', 'e', 'a', 't', 'u',
'r', 'e', 's', 0x0a,0x0a,'C', 'o', 'n',
'f', 'i', 'g', 'u', 'r', 'a', 't', 'i',
'o', 'n', ' ', 'f', 'i', 'l', 'e', 's',
0x0a,'=', '=', '=', '=', '=', '=', '=',
'=', '=', '=', '=', '=', '=', '=', '=',
'=', '=', '=', '=', 0x0a,0x0a,'G', 'l',
'o', 'b', 'a', 'l', ' ', 'c', 'o', 'n',
'f', 'i', 'g', 'u', 'r', 'a', 't', 'i',
'o', 'n', 0x0a,'-', '-', '-', '-', '-',
'-', '-', '-', '-', '-', '-', '-', '-',
'-', '-', '-', '-', '-', '-', '-', 0x0a,
0x0a,'H', 'T', ' ', 'a', 'u', 't', 'o',
'm', 'a', 't', 'i', 'c', 'a', 'l', 'l',
'y', ' ', 'c', 'r', 'e', 'a', 't', 'e',
's', ' ', 'a', ' ', 'f', 'i', 'l', 'e',
' ', 't', 'o', ' ', 's', 't', 'o', 'r',
'e', ' ', 'i', 't', 's', ' ', 'c', 'o',
'n', 'f', 'i', 'g', 'u', 'r', 'a', 't',
'i', 'o', 'n', '.', ' ', ' ', 'I', 't',
0x0a,'i', 's', ' ', 'c', 'a', 'l', 'l',
'e', 'd', ' ', '`', '~', '/', '.', 'h',
't', 'c', 'f', 'g', '2', '\'',' ', 'o',
'n', ' ', 'U', 'n', 'i', 'c', 'e', 's',
' ', 'a', 'n', 'd', ' ', '`', 'h', 't',
'.', 'c', 'f', 'g', '2', '\'',' ', '(',
'w', 'h', 'e', 'r', 'e', ' ', 'h', 't',
'.', 'e', 'x', 'e', 0x0a,'r', 'e', 's',
'i', 'd', 'e', 's', ')', ' ', 'o', 'n',
' ', 'W', 'i', 'n', 'd', 'o', 'w', 's',
'.', ' ', 'M', 'o', 'r', 'e', ' ', 's',
'p', 'e', 'c', 'i', 'f', 'i', 'c', 'a',
'l', 'l', 'y', ' ', 'i', 't', ' ', 'c',
'o', 'n', 't', 'a', 'i', 'n', 's', ' ',
'H', 'T', '\'','s', ' ', 'r', 'e', 'g',
'i', 's', 't', 'r', 'y', 0x0a,'a', 'n',
'd', ' ', 't', 'h', 'e', ' ', '*', 'N',
'o', 't', 'e', ' ', 'G', 'l', 'o', 'b',
'a', 'l', ' ', 'h', 'i', 's', 't', 'o',
'r', 'y', ':', ':', '.', 0x0a,0x0a,'P',
'e', 'r', ' ', 'f', 'i', 'l', 'e', ' ',
'c', 'o', 'n', 'f', 'i', 'g', 'u', 'r',
'a', 't', 'i', 'o', 'n', 0x0a,'-', '-',
'-', '-', '-', '-', '-', '-', '-', '-',
'-', '-', '-', '-', '-', '-', '-', '-',
'-', '-', '-', '-', 0x0a,0x0a,'T', 'h',
'e', ' ', 'a', 'n', 'a', 'l', 'y', 's',
'e', 'r', ' ', '(', 'f', 'o', 'r', ' ',
'a', 'n', 'a', 'l', 'y', 's', 'a', 'b',
'l', 'e', ' ', 'f', 'i', 'l', 'e', 's',
')', ' ', 'w', 'i', 'l', 'l', ' ', 'b',
'e', ' ', 's', 't', 'o', 'r', 'e', 'd',
' ', 'i', 'n', ' ', 'a', 'n', ' ', 'e',
'x', 't', 'r', 'a', 0x0a,'f', 'i', 'l',
'e', ' ', 'c', 'a', 'l', 'l', 'e', 'd',
' ', '`', 'F', 'I', 'L', 'E', 'N', 'A',
'M', 'E', '.', 'h', 't', 'c', 'f', 'g',
'\'',',', ' ', 'w', 'h', 'e', 'r', 'e',
' ', 'F', 'I', 'L', 'E', 'N', 'A', 'M',
'E', ' ', 'i', 's', ' ', 't', 'h', 'e',
' ', 'a', 'n', 'a', 'l', 'y', 's', 'e',
'd', 0x0a,'f', 'i', 'l', 'e', '.', ' ',
'T', 'h', 'i', 's', ' ', 'f', 'i', 'l',
'e', ' ', 'c', 'o', 'n', 't', 'a', 'i',
'n', 's', ' ', 'a', 'l', 'l', ' ', 'i',
'n', 'f', 'o', 'r', 'm', 'a', 't', 'i',
'o', 'n', ' ', 't', 'o', ' ', 'r', 'e',
's', 't', 'o', 'r', 'e', ' ', 't', 'h',
'e', 0x0a,'c', 'o', 'm', 'p', 'l', 'e',
't', 'e', ' ', 's', 't', 'a', 't', 'e',
' ', 'o', 'f', ' ', 't', 'h', 'e', ' ',
'a', 'n', 'a', 'l', 'y', 's', 'e', 'r',
'.', 0x0a,0x0a,0x1f,0x0a,'F', 'i', 'l',
'e', ':', ' ', 'h', 't', 'h', 'e', 'l',
'p', '.', 'i', 'n', 'f', 'o', ',', ' ',
' ', 'N', 'o', 'd', 'e', ':', ' ', 'C',
'l', 'i', 'p', 'b', 'o', 'a', 'r', 'd',
',', ' ', ' ', 'P', 'r', 'e', 'v', ':',
' ', 'F', 'e', 'a', 't', 'u', 'r', 'e',
's', ',', ' ', ' ', 'U', 'p', ':', ' ',
'F', 'e', 'a', 't', 'u', 'r', 'e', 's',
0x0a,0x0a,'C', 'l', 'i', 'p', 'b', 'o',
'a', 'r', 'd', 0x0a,'=', '=', '=', '=',
'=', '=', '=', '=', '=', 0x0a,0x0a,'A',
'l', 'l', ' ', 'o', 'p', 'e', 'n', ' ',
'f', 'i', 'l', 'e', 's', ' ', 'a', 'n',
'd', ' ', 'd', 'i', 'a', 'l', 'o', 'g',
's', ' ', 'u', 's', 'e', ' ', 't', 'h',
'e', ' ', 'c', 'o', 'm', 'm', 'o', 'n',
' ', 'c', 'l', 'i', 'p', 'b', 'o', 'a',
'r', 'd', ',', ' ', 'w', 'h', 'e', 'r',
'e', ' ', 'a', 'l', 'l', 0x0a,'c', 'o',
'p', 'i', 'e', 'd', ' ', 'a', 'n', 'd',
' ', 'c', 'u', 't', ' ', 't', 'e', 'x',
't', ' ', 'o', 'r', ' ', 'b', 'i', 'n',
'a', 'r', 'y', ' ', 'd', 'a', 't', 'a',
' ', 'i', 's', ' ', 's', 't', 'o', 'r',
'e', 'd', '.', ' ', 'C', 'l', 'i', 'p',
'b', 'o', 'a', 'r', 'd', 0x0a,'o', 'p',
'e', 'r', 'a', 't', 'i', 'o', 'n', 's',
' ', 'a', 'r', 'e', ' ', 'n', 'o', 'r',
'm', 'a', 'l', 'l', 'y', ' ', 'b', 'i',
'n', 'a', 'r', 'y', ' ', 's', 'a', 'f',
'e', ',', ' ', 't', 'h', 'a', 't', ' ',
'm', 'e', 'a', 'n', 's', ' ', 'y', 'o',
'u', ' ', 'c', 'a', 'n', ' ', 'c', 'o',
'p', 'y', 0x0a,'s', 'o', 'm', 'e', ' ',
'b', 'i', 'n', 'a', 'r', 'y', ' ', 'd',
'a', 't', 'a', ' ', 'o', 'u', 't', ' ',
'o', 'f', ' ', 'a', ' ', 'f', 'i', 'l',
'e', ' ', 'a', 'n', 'd', ' ', 'p', 'a',
's', 't', 'e', ' ', 'i', 't', ' ', 'i',
'n', 't', 'o', ' ', 'a', 'n', ' ', 'i',
'n', 'p', 'u', 't', ' ', 'l', 'i', 'n',
'e', '.', 0x0a,'E', 'x', 'c', 'e', 'p',
't', 'i', 'o', 'n', 's', ' ', 'a', 'r',
'e', ' ', 'o', 'n', 'l', 'y', ' ', 't',
'h', 'e', ' ', '\\','0', ' ', 'c', 'h',
'a', 'r', 'a', 'c', 't', 'e', 'r', ' ',
'(', 'b', 'i', 'n', 'a', 'r', 'y', ' ',
'n', 'u', 'l', 'l', ')', ',', ' ', 'i',
't', ' ', 'w', 'i', 'l', 'l', ' ', 'b',
'e', 0x0a,'c', 'o', 'n', 'v', 'e', 'r',
't', 'e', 'd', ' ', 't', 'o', ' ', 'a',
' ', 's', 'p', 'a', 'c', 'e', ' ', 'i',
'n', ' ', 'p', 'l', 'a', 'c', 'e', 's',
' ', 'w', 'h', 'e', 'r', 'e', ' ', 'i',
't', ' ', 'w', 'o', 'u', 'l', 'd', ' ',
'n', 'o', 't', ' ', 'm', 'a', 'k', 'e',
' ', 's', 'e', 'n', 's', 'e', 0x0a,'(',
'e', '.', 'g', '.', ' ', 'f', 'i', 'l',
'e', ' ', 'o', 'p', 'e', 'n', ')', '.',
0x0a,0x0a,' ', ' ', ' ', 'A', 'l', 't',
'h', 'o', 'u', 'g', 'h', ' ', 't', 'h',
'e', ' ', 'c', 'l', 'i', 'p', 'b', 'o',
'a', 'r', 'd', ' ', 'w', 'o', 'n', '\'',
't', ' ', 'b', 'e', ' ', 's', 'a', 'v',
'e', 'd', ' ', 'b', 'e', 't', 'w', 'e',
'e', 'n', ' ', 'd', 'i', 'f', 'f', 'e',
'r', 'e', 'n', 't', ' ', 'H', 'T', 0x0a,
's', 'e', 's', 's', 'i', 'o', 'n', 's',
' ', '(', 'i', 'e', '.', ' ', 'y', 'o',
'u', ' ', 'w', 'i', 'l', 'l', ' ', 'l',
'o', 'o', 's', 'e', ' ', 'i', 't', ' ',
'w', 'h', 'e', 'n', ' ', 'e', 'x', 'i',
't', 'i', 'n', 'g', ' ', 'H', 'T', ')',
',', ' ', 'y', 'o', 'u', ' ', 'c', 'a',
'n', 0x0a,'e', 'i', 't', 'h', 'e', 'r',
' ', 's', 'a', 'v', 'e', ' ', 'a', 'n',
'd', ' ', 'l', 'o', 'a', 'd', ' ', 'i',
't', ' ', 'o', 'r', ' ', 'p', 'a', 'r',
't', ' ', 'o', 'f', ' ', 'i', 't', ' ',
'm', 'a', 'n', 'u', 'a', 'l', 'l', 'y',
' ', '(', 'v', 'i', 'a', ' ', 'E', 'd',
'i', 't', '-', '>', 'p', 'a', 's', 't',
'e', 0x0a,'i', 'n', 't', 'o', '/', 'c',
'o', 'p', 'y', ' ', 'f', 'r', 'o', 'm',
' ', 'f', 'i', 'l', 'e', ')', ' ', 'o',
'r', ' ', 'r', 'e', 'l', 'y', ' ', 'o',
'n', ' ', 't', 'h', 'e', ' ', 'i', 'n',
'p', 'u', 't', ' ', 'l', 'i', 'n', 'e',
's', '\'',' ', '*', 'N', 'o', 't', 'e',
' ', 'h', 'i', 's', 't', 'o', 'r', 'y',
':', 0x0a,'G', 'l', 'o', 'b', 'a', 'l',
' ', 'h', 'i', 's', 't', 'o', 'r', 'y',
',', ' ', 'w', 'h', 'i', 'c', 'h', ' ',
'i', 's', ' ', 's', 't', 'o', 'r', 'e',
'd', ' ', 'a', 'n', 'd', ' ', 'r', 'e',
't', 'r', 'i', 'e', 'v', 'e', 'd', ' ',
'f', 'r', 'o', 'm', ' ', 't', 'h', 'e',
' ', 'c', 'o', 'n', 'f', 'i', 'g', 0x0a,
'f', 'i', 'l', 'e', ' ', 'a', 'u', 't',
'o', 'm', 'a', 't', 'i', 'c', 'a', 'l',
'l', 'y', '.', 0x0a,0x0a,0x1f,0x0a,'F',
'i', 'l', 'e', ':', ' ', 'h', 't', 'h',
'e', 'l', 'p', '.', 'i', 'n', 'f', 'o',
',', ' ', ' ', 'N', 'o', 'd', 'e', ':',
' ', 'G', 'l', 'o', 'b', 'a', 'l', ' ',
'h', 'i', 's', 't', 'o', 'r', 'y', ',',
' ', ' ', 'P', 'r', 'e', 'v', ':', ' ',
'F', 'e', 'a', 't', 'u', 'r', 'e', 's',
',', ' ', ' ', 'U', 'p', ':', ' ', 'F',
'e', 'a', 't', 'u', 'r', 'e', 's', 0x0a,
0x0a,'G', 'l', 'o', 'b', 'a', 'l', ' ',
'h', 'i', 's', 't', 'o', 'r', 'y', 0x0a,
'=', '=', '=', '=', '=', '=', '=', '=',
'=', '=', '=', '=', '=', '=', 0x0a,0x0a,
'H', 'T', 's', ' ', 'h', 'i', 's', 't',
'o', 'r', 'y', ' ', 's', 'y', 's', 't',
'e', 'm', ' ', 'i', 's', ' ', 'g', 'l',
'o', 'b', 'a', 'l', ',', ' ', 'w', 'h',
'i', 'c', 'h', ' ', 'm', 'e', 'a', 'n',
's', ' ', 't', 'h', 'a', 't', ' ', 'y',
'o', 'u', ' ', 'c', 'a', 'n', ' ', 'u',
's', 'e', ' ', 'i', 't', 0x0a,'f', 'o',
'r', ' ', 'a', 'l', 'l', ' ', 'o', 'p',
'e', 'n', ' ', 'f', 'i', 'l', 'e', 's',
'.', ' ', 'H', 'i', 's', 't', 'o', 'r',
'i', 'e', 's', ' ', 'a', 'r', 'e', ' ',
'a', 'l', 's', 'o', ' ', 'g', 'r', 'o',
'u', 'p', 'e', 'd', ' ', 'b', 'y', ' ',
't', 'h', 'e', 'i', 'r', 0x0a,'c', 'o',
'n', 't', 'e', 'x', 't', '.', ' ', 'I',
'.', 'e', '.', ' ', 'f', 'i', 'l', 'e',
'-', 'r', 'e', 'l', 'a', 't', 'e', 'd',
' ', 'a', 'n', 'd', ' ', 'r', 'e', 'g',
'e', 'x', '-', 's', 'e', 'a', 'r', 'c',
'h', '-', 'r', 'e', 'l', 'a', 't', 'e',
'd', ' ', 'd', 'i', 'a', 'l', 'o', 'g',
's', 0x0a,'h', 'a', 'v', 'e', ' ', 't',
'h', 'e', 'i', 'r', ' ', 'o', 'w', 'n',
' ', 'h', 'i', 's', 't', 'o', 'r', 'y',
' ', '(', 'w', 'h', 'o', ' ', 'w', 'o',
'u', 'l', 'd', ' ', 'w', 'a', 'n', 't',
' ', 't', 'o', ' ', 'o', 'p', 'e', 'n',
' ', '"', '[', '0', '-', '9', ']', '[',
'0', '-', '9', 'a', '-', 'z', ']', '+',
'"', 0x0a,'a', 'n', 'y', 'w', 'a', 'y',
'?', ')', '.', 0x0a,0x0a,' ', ' ', ' ',
'H', 'i', 's', 't', 'o', 'r', 'y', ' ',
'e', 'n', 't', 'r', 'i', 'e', 's', ' ',
'a', 'r', 'e', ' ', 's', 't', 'o', 'r',
'e', 'd', ' ', 'w', 'i', 't', 'h', 'i',
'n', ' ', 't', 'h', 'e', ' ', '*', 'N',
'o', 't', 'e', ' ', 'C', 'o', 'n', 'f',
'i', 'g', 'u', 'r', 'a', 't', 'i', 'o',
'n', 0x0a,'f', 'i', 'l', 'e', 's', ':',
':', ',', ' ', 's', 'o', ' ', 't', 'h',
'e', 'y', ' ', 'c', 'a', 'n', ' ', 'b',
'e', ' ', 'r', 'e', 'u', 's', 'e', 'd',
' ', 'w', 'h', 'e', 'n', ' ', 'y', 'o',
'u', ' ', 'r', 'e', 'l', 'a', 'u', 'n',
'c', 'h', '.', 0x0a,0x0a,' ', ' ', ' ',
'Y', 'o', 'u', ' ', 'c', 'a', 'n', ' ',
'd', 'e', 'l', 'e', 't', 'e', ' ', 'a',
' ', 'h', 'i', 's', 't', 'o', 'r', 'y',
' ', 'e', 'n', 't', 'r', 'y', ' ', 'b',
'y', ' ', 'p', 'r', 'e', 's', 's', 'i',
'n', 'g', ' ', 'D', 'E', 'L', ' ', 'i',
'n', 's', 'i', 'd', 'e', ' ', 't', 'h',
'e', 0x0a,'h', 'i', 's', 't', 'o', 'r',
'y', ' ', 'p', 'o', 'p', 'u', 'p', '.',
0x0a,0x0a,0x1f,0x0a,'F', 'i', 'l', 'e',
':', ' ', 'h', 't', 'h', 'e', 'l', 'p',
'.', 'i', 'n', 'f', 'o', ',', ' ', ' ',
'N', 'o', 'd', 'e', ':', ' ', 'E', 'x',
'p', 'r', 'e', 's', 's', 'i', 'o', 'n',
' ', 'e', 'v', 'a', 'l', 'u', 'a', 't',
'i', 'o', 'n', ',', ' ', ' ', 'P', 'r',
'e', 'v', ':', ' ', 'F', 'e', 'a', 't',
'u', 'r', 'e', 's', ',', ' ', ' ', 'U',
'p', ':', ' ', 'F', 'e', 'a', 't', 'u',
'r', 'e', 's', 0x0a,0x0a,'E', 'x', 'p',
'r', 'e', 's', 's', 'i', 'o', 'n', ' ',
'e', 'v', 'a', 'l', 'u', 'a', 't', 'i',
'o', 'n', 0x0a,'=', '=', '=', '=', '=',
'=', '=', '=', '=', '=', '=', '=', '=',
'=', '=', '=', '=', '=', '=', '=', '=',
0x0a,0x0a,'H', 'T', ' ', 'c', 'o', 'n',
't', 'a', 'i', 'n', 's', ' ', 'a', ' ',
'v', 'e', 'r', 'y', ' ', 'p', 'o', 'w',
'e', 'r', 'f', 'u', 'l', ' ', 'e', 'x',
'p', 'r', 'e', 's', 's', 'i', 'o', 'n',
' ', 'e', 'v', 'a', 'l', 'u', 'a', 't',
'o', 'r', ' ', 'w', 'h', 'i', 'c', 'h',
' ', 'i', 's', ' ', 'u', 's', 'e', 'd',
0x0a,'i', 'n', ' ', 'a', 'l', 'l', ' ',
'd', 'i', 'a', 'l', 'o', 'g', 's', ' ',
'w', 'h', 'e', 'r', 'e', ' ', 'e', 'x',
'p', 'r', 'e', 's', 's', 'i', 'o', 'n',
's', ' ', 'a', 'r', 'e', ' ', 'e', 'x',
'p', 'e', 'c', 't', 'e', 'd', '.', ' ',
'T', 'h', 'e', 's', 'e', ' ', 'a', 'r',
'e', ' ', 'm', 'a', 'i', 'n', 'l', 'y',
0x0a,'b', 'l', 'o', 'c', 'k', 'o', 'p',
'e', 'r', 'a', 't', 'i', 'o', 'n', ',',
' ', 'g', 'o', 't', 'o', ',', ' ', 's',
'e', 'a', 'r', 'c', 'h', ' ', 'a', 'n',
'd', ' ', 'o', 'f', ' ', 'c', 'o', 'u',
'r', 's', 'e', ' ', 'e', 'v', 'a', 'l',
'u', 'a', 't', 'e', ' ', 'i', 't', 's',
'e', 'l', 'f', 0x0a,'(', 'E', 'd', 'i',
't', '-', '>', 'E', 'v', 'a', 'l', 'u',
'a', 't', 'e', ')', '.', 0x0a,0x0a,' ',
' ', ' ', 'Y', 'o', 'u', ' ', 'c', 'a',
'n', ' ', 'u', 's', 'e', ' ', 'a', 'l',
'l', ' ', 's', 't', 'a', 'n', 'd', 'a',
'r', 'd', ' ', 'm', 'a', 't', 'h', ' ',
'o', 'p', 'e', 'r', 'a', 't', 'o', 'r',
's', ' ', '(', '+', ' ', '-', ' ', '/',
' ', '*', ' ', '%', ' ', '*', '*', ')',
',', 0x0a,'l', 'o', 'g', 'i', 'c', 'a',
'l', ' ', 'o', 'p', 'e', 'r', 'a', 't',
'o', 'r', 's', ' ', '(', '!', ' ', '&',
'&', ' ', '|', '|', ' ', '^', '^', ')',
',', ' ', 'r', 'e', 'l', 'a', 't', 'i',
'o', 'n', 'a', 'l', ' ', 'o', 'p', 'e',
'r', 'a', 't', 'o', 'r', 's', ' ', '(',
'=', '=', ' ', '!', '=', ' ', '<', ' ',
'>', 0x0a,'<', '=', ' ', '>', '=', ')',
',', ' ', 'b', 'i', 't', ' ', 'o', 'p',
'e', 'r', 'a', 't', 'o', 'r', 's', ' ',
'(', '~', ' ', '&', ' ', '|', ' ', '^',
')', ',', ' ', 's', 't', 'r', 'i', 'n',
'g', ' ', 'o', 'p', 'e', 'r', 'a', 't',
'o', 'r', 's', ' ', '(', '.', ' ', 'f',
'o', 'r', 0x0a,'c', 'o', 'n', 'c', 'a',
't', 'e', 'n', 'a', 't', 'i', 'o', 'n',
')', ',', ' ', 'p', 'a', 'r', 'e', 'n',
't', 'h', 'e', 's', 'i', 's', ',', ' ',
't', 'h', 'e', ' ', 't', 'e', 'r', 'n',
'a', 'r', 'y', ' ', 'o', 'p', 'e', 'r',
'a', 't', 'o', 'r', ' ', '(', 'a', '?',
'b', ':', 'c', ')', ',', 0x0a,'f', 'u',
'n', 'c', 't', 'i', 'o', 'n', 's', ' ',
'a', 'n', 'd', ' ', 's', 'y', 'm', 'b',
'o', 'l', 's', ' ', '(', 'b', 'o', 't',
'h', ' ', 'd', 'e', 'p', 'e', 'n', 'd',
'i', 'n', 'g', ' ', 'o', 'n', ' ', 'c',
'o', 'n', 't', 'e', 'x', 't', ')', '.',
0x0a,0x0a,' ', ' ', ' ', 'T', 'h', 'e',
' ', 'e', 'v', 'a', 'l', 'u', 'a', 't',
'o', 'r', ' ', 'u', 's', 'e', 's', ' ',
'i', 'n', 't', 'e', 'g', 'e', 'r', ',',
' ', 's', 't', 'r', 'i', 'n', 'g', ' ',
'a', 'n', 'd', ' ', 'f', 'l', 'o', 'a',
't', ' ', 't', 'y', 'p', 'e', 's', ' ',
'd', 'e', 'p', 'e', 'n', 'd', 'i', 'n',
'g', 0x0a,'o', 'n', ' ', 'c', 'o', 'n',
't', 'e', 'x', 't', '.', ' ', 'Y', 'o',
'u', ' ', 'c', 'a', 'n', ' ', 'a', 'l',
'w', 'a', 'y', 's', ' ', 'c', 'o', 'n',
'v', 'e', 'r', 't', ' ', 'a', ' ', 'r',
'e', 's', 'u', 'l', 't', ' ', 'v', 'i',
'a', ' ', 't', 'h', 'e', ' ', '`', 'i',
'n', 't', '(', ')', '\'',',', 0x0a,'`',
's', 't', 'r', 'i', 'n', 'g', '(', ')',
'\'',' ', 'a', 'n', 'd', ' ', '`', 'f',
'l', 'o', 'a', 't', '(', ')', '\'',' ',
'f', 'u', 'n', 'c', 't', 'i', 'o', 'n',
's', ' ', 't', 'o', ' ', 'a', 'p', 'p',
'r', 'o', 'p', 'r', 'i', 'a', 't', 'e',
' ', 't', 'y', 'p', 'e', '.', ' ', 'T',
'r', 'y', 0x0a,'E', 'd', 'i', 't', '-',
'>', 'E', 'v', 'a', 'l', 'u', 'a', 't',
'e', ' ', 't', 'o', ' ', 's', 'e', 'e',
' ', 'h', 'o', 'w', ' ', 'i', 't', ' ',
'w', 'o', 'r', 'k', 's', '.', '.', '.',
0x0a,0x0a,'F', 'u', 'n', 'c', 't', 'i',
'o', 'n', 's', ' ', 'a', 'n', 'd', ' ',
's', 'y', 'm', 'b', 'o', 'l', 's', 0x0a,
'-', '-', '-', '-', '-', '-', '-', '-',
'-', '-', '-', '-', '-', '-', '-', '-',
'-', '-', '-', '-', '-', 0x0a,0x0a,'Y',
'o', 'u', ' ', 'c', 'a', 'n', ' ', 'a',
'l', 'w', 'a', 'y', 's', ' ', 'u', 's',
'e', ' ', 't', 'h', 'e', ' ', 's', 't',
'a', 'n', 'd', 'a', 'r', 'd', ' ', 'b',
'u', 'i', 'l', 't', '-', 'i', 'n', ' ',
'm', 'a', 't', 'h', ' ', '(', '`', 'r',
'o', 'u', 'n', 'd', '\'',',', ' ', '`',
's', 'i', 'n', '\'',',', 0x0a,'`', 'r',
'a', 'n', 'd', 'o', 'm', '\'',',', ' ',
'e', 't', 'c', '.', ')', ' ', 'a', 'n',
'd', ' ', 's', 't', 'r', 'i', 'n', 'g',
' ', '(', '`', 's', 't', 'r', 'c', 'm',
'p', '\'',',', ' ', '`', 's', 't', 'r',
'c', 'h', 'r', '\'',',', ' ', '`', 's',
'p', 'r', 'i', 'n', 't', 'f', '\'',',',
0x0a,'e', 't', 'c', '.', ')', ' ', 'f',
'u', 'n', 'c', 't', 'i', 'o', 'n', 's',
',', ' ', 't', 'h', 'e', 'y', ' ', 'w',
'o', 'r', 'k', ' ', 'm', 'o', 'r', 'e',
' ', 'o', 'r', ' ', 'l', 'e', 's', 's',
' ', 'l', 'i', 'k', 'e', ' ', 't', 'h',
'e', ' ', 'c', 'o', 'r', 'r', 'e', 's',
'p', 'o', 'n', 'd', 'i', 'n', 'g', 0x0a,
'C', ' ', 'f', 'u', 'n', 'c', 't', 'i',
'o', 'n', 's', ' ', '(', 'a', 'c', 't',
'u', 'a', 'l', 'l', 'y', ' ', 't', 'h',
'e', 'y', ' ', 'A', 'R', 'E', ' ', 'm',
'o', 'r', 'e', ' ', 'o', 'r', ' ', 'l',
'e', 's', 's', ' ', 'w', 'r', 'a', 'p',
'p', 'e', 'r', 's', ' ', 'f', 'o', 'r',
' ', 't', 'h', 'e', 'm', ')', ';', 0x0a,
's', 'e', 'e', ' ', '`', 'e', 'v', 'a',
'l', '/', 'e', 'v', 'a', 'l', '.', 'y',
'\'',' ', 'f', 'o', 'r', ' ', 'd', 'e',
't', 'a', 'i', 'l', 's', ' ', '(', 's',
'o', 'r', 'r', 'y', ' ', 'b', 'u', 't',
' ', 'a', ' ', 'd', 'e', 't', 'a', 'i',
'l', 'e', 'd', ' ', 'h', 'e', 'l', 'p',
' ', 'w', 'o', 'u', 'l', 'd', 0x0a,'g',
'e', 't', ' ', 'o', 'u', 't', 'd', 'a',
't', 'e', 'd', ' ', 'r', 'a', 't', 'h',
'e', 'r', ' ', 's', 'o', 'o', 'n', ')',
'.', 0x0a,0x0a,' ', ' ', ' ', 'T', 'h',
'e', ' ', 's', 'y', 'm', 'b', 'o', 'l',
' ', '_', ' ', 'a', 'l', 'w', 'a', 'y',
's', ' ', 'r', 'e', 'f', 'e', 'r', 's',
' ', 't', 'o', ' ', 't', 'h', 'e', ' ',
'l', 'a', 's', 't', ' ', 'r', 'e', 's',
'u', 'l', 't', '.', 0x0a,0x0a,' ', ' ',
' ', 'W', 'h', 'e', 'n', ' ', 'u', 's',
'i', 'n', 'g', ' ', '*', 'N', 'o', 't',
'e', ' ', 'B', 'l', 'o', 'c', 'k', ' ',
'o', 'p', 'e', 'r', 'a', 't', 'i', 'o',
'n', 's', ':', ':', ',', ' ', 'o', 'r',
' ', 's', 'e', 'a', 'r', 'c', 'h', 'i',
'n', 'g', ' ', 'y', 'o', 'u', ' ', 'h',
'a', 'v', 'e', 0x0a,'s', 'o', 'm', 'e',
' ', 'c', 'o', 'n', 't', 'e', 'x', 't',
' ', 'd', 'e', 'p', 'e', 'n', 'd', 'i',
'n', 'g', ' ', 'f', 'u', 'n', 'c', 't',
'i', 'o', 'n', 's', ' ', 'a', 'n', 'd',
' ', 's', 'y', 'm', 'b', 'o', 'l', 's',
';', ' ', 's', 'e', 'e', ' ', 't', 'h',
'e', 's', 'e', 0x0a,'s', 'e', 'c', 't',
'i', 'o', 'n', 's', ' ', 'f', 'o', 'r',
' ', 'e', 'x', 'p', 'l', 'a', 'n', 'a',
't', 'i', 'o', 'n', '.', 0x0a,0x0a,0x1f,
0x0a,'F', 'i', 'l', 'e', ':', ' ', 'h',
't', 'h', 'e', 'l', 'p', '.', 'i', 'n',
'f', 'o', ',', ' ', ' ', 'N', 'o', 'd',
'e', ':', ' ', 'B', 'l', 'o', 'c', 'k',
' ', 'o', 'p', 'e', 'r', 'a', 't', 'i',
'o', 'n', 's', ',', ' ', ' ', 'P', 'r',
'e', 'v', ':', ' ', 'F', 'e', 'a', 't',
'u', 'r', 'e', 's', ',', ' ', ' ', 'U',
'p', ':', ' ', 'F', 'e', 'a', 't', 'u',
'r', 'e', 's', 0x0a,0x0a,'B', 'l', 'o',
'c', 'k', ' ', 'o', 'p', 'e', 'r', 'a',
't', 'i', 'o', 'n', 's', 0x0a,'=', '=',
'=', '=', '=', '=', '=', '=', '=', '=',
'=', '=', '=', '=', '=', '=', 0x0a,0x0a,
'B', 'l', 'o', 'c', 'k', ' ', 'o', 'p',
'e', 'r', 'a', 't', 'i', 'o', 'n', ' ',
'(', 'B', 'l', 'o', 'c', 'k', 'o', 'p',
')', ' ', 'i', 's', ' ', 'a', ' ', 'v',
'e', 'r', 'y', ' ', 'p', 'o', 'w', 'e',
'r', 'f', 'u', 'l', ' ', 't', 'o', 'o',
'l', ' ', 't', 'o', ' ', 'p', 'e', 'r',
'f', 'o', 'r', 'm', 0x0a,'m', 'o', 'd',
'i', 'f', 'i', 'c', 'a', 't', 'i', 'o',
'n', 's', ' ', 'o', 'n', ' ', 'b', 'i',
'n', 'a', 'r', 'y', ' ', 'f', 'i', 'l',
'e', 's', '.', ' ', 'I', 't', ' ', 'i',
's', ' ', 'a', 'v', 'a', 'i', 'l', 'a',
'b', 'l', 'e', ' ', 'i', 'n', ' ', 'h',
'e', 'x', ' ', 'v', 'i', 'e', 'w', 'e',
'r', 0x0a,'o', 'n', 'l', 'y', '.', 0x0a,
0x0a,' ', ' ', ' ', 'B', 'l', 'o', 'c',
'k', 'o', 'p', ' ', 't', 'a', 'k', 'e',
's', ' ', 'f', 'o', 'u', 'r', ' ', 'p',
'a', 'r', 'a', 'm', 'e', 't', 'e', 'r',
's', ':', ' ', 'S', 'T', 'A', 'R', 'T',
',', ' ', 'E', 'N', 'D', ',', ' ', 'M',
'O', 'D', 'E', ' ', 'a', 'n', 'd', 0x0a,
'E', 'X', 'P', 'R', 'E', 'S', 'S', 'I',
'O', 'N', '.', ' ', 'B', 'l', 'o', 'c',
'k', 'o', 'p', ' ', 'w', 'o', 'r', 'k',
's', ' ', 'a', 's', ' ', 'f', 'o', 'l',
'l', 'o', 'w', 's', ':', 0x0a,0x0a,' ',
' ', ' ', '*', ' ', 'S', 'T', 'A', 'R',
'T', ':', ' ', 'S', 't', 'a', 'r', 't',
' ', 'a', 't', ' ', 't', 'h', 'e', ' ',
'o', 'f', 'f', 's', 'e', 't', ' ', 's',
'p', 'e', 'c', 'i', 'f', 'i', 'e', 'd',
' ', 'b', 'y', ' ', 'S', 'T', 'A', 'R',
'T', 0x0a,0x0a,' ', ' ', ' ', '*', ' ',
'R', 'E', 'P', 'E', 'A', 'T', ':', ' ',
'E', 'v', 'a', 'l', 'u', 'a', 't', 'e',
' ', 'E', 'X', 'P', 'R', 'E', 'S', 'S',
'I', 'O', 'N', ' ', 'a', 'n', 'd', ' ',
's', 't', 'o', 'r', 'e', ' ', 'n', ' ',
'b', 'y', 't', 'e', 's', ' ', '(', '1',
' ', '-', ' ', 'b', 'y', 't', 'e', ',',
' ', '2', 0x0a,' ', ' ', ' ', ' ', ' ',
'-', ' ', 'w', 'o', 'r', 'd', ',', ' ',
'4', ' ', '-', ' ', 'd', 'w', 'o', 'r',
'd', ',', ' ', 'v', 'a', 'r', 'i', 'a',
'b', 'l', 'e', ' ', '-', ' ', 's', 't',
'r', 'i', 'n', 'g', ')', ' ', 'a', 't',
' ', 't', 'h', 'e', ' ', 'c', 'u', 'r',
'r', 'e', 'n', 't', 0x0a,' ', ' ', ' ',
' ', ' ', 'o', 'f', 'f', 's', 'e', 't',
'.', ' ', 'I', 'n', 'c', 'r', 'e', 'm',
'e', 'n', 't', ' ', 'c', 'u', 'r', 'r',
'e', 'n', 't', ' ', 'o', 'f', 'f', 's',
'e', 't', ' ', 'b', 'y', ' ', 'n', '.',
' ', 'S', 't', 'o', 'p', ' ', 'i', 'f',
' ', 'E', 'N', 'D', ' ', 'h', 'a', 's',
0x0a,' ', ' ', ' ', ' ', ' ', 'b', 'e',
'e', 'n', ' ', 'r', 'e', 'a', 'c', 'h',
'e', 'd', '.', 0x0a,0x0a,'S', 'p', 'e',
'c', 'i', 'a', 'l', ' ', 'v', 'a', 'r',
'i', 'a', 'b', 'l', 'e', 's', '/', 'f',
'u', 'n', 'c', 't', 'i', 'o', 'n', 's',
' ', 't', 'h', 'a', 't', ' ', 'c', 'a',
'n', ' ', 'b', 'e', ' ', 'u', 's', 'e',
'd', ' ', 'i', 'n', ' ', 'E', 'X', 'P',
'R', 'E', 'S', 'S', 'I', 'O', 'N', ':',
0x0a,0x0a,'`', 'r', 'e', 'a', 'd', 'b',
'y', 't', 'e', '(', 'o', 'f', 's', ')',
'\'',0x0a,' ', ' ', ' ', ' ', ' ', 'r',
'e', 'a', 'd', ' ', 'a', ' ', 'b', 'y',
't', 'e', ' ', 'f', 'r', 'o', 'm', ' ',
'o', 'f', 'f', 's', 'e', 't', ' ', 'O',
'F', 'S', ',', ' ', 'r', 'e', 't', 'u',
'r', 'n', 's', ' ', 'a', ' ', 'n', 'u',
'm', 'b', 'e', 'r', 0x0a,0x0a,'`', 'r',
'e', 'a', 'd', 's', 't', 'r', 'i', 'n',
'g', '(', 'o', 'f', 's', ',', ' ', 's',
'i', 'z', 'e', ')', '\'',0x0a,' ', ' ',
' ', ' ', ' ', 'r', 'e', 'a', 'd', ' ',
'S', 'I', 'Z', 'E', ' ', 'b', 'y', 't',
'e', 's', ' ', 'f', 'r', 'o', 'm', ' ',
'o', 'f', 'f', 's', 'e', 't', ' ', 'O',
'F', 'S', ',', ' ', 'r', 'e', 't', 'u',
'r', 'n', 's', ' ', 'a', ' ', 's', 't',
'r', 'i', 'n', 'g', 0x0a,0x0a,'`', 'i',
'\'',0x0a,' ', ' ', ' ', ' ', ' ', 'c',
'o', 'n', 't', 'a', 'i', 'n', 's', ' ',
't', 'h', 'e', ' ', 'i', 't', 'e', 'r',
'a', 't', 'i', 'o', 'n', ' ', 'c', 'o',
'u', 'n', 't', '/', 'i', 'n', 'd', 'e',
'x', ' ', 's', 't', 'a', 'r', 't', 'i',
'n', 'g', ' ', 'w', 'i', 't', 'h', ' ',
'0', 0x0a,0x0a,'`', 'o', '\'',0x0a,' ',
' ', ' ', ' ', ' ', 'c', 'o', 'n', 't',
'a', 'i', 'n', 's', ' ', 't', 'h', 'e',
' ', 'c', 'u', 'r', 'r', 'e', 'n', 't',
' ', 'o', 'f', 'f', 's', 'e', 't', 0x0a,
0x0a,0x1f,0x0a,'F', 'i', 'l', 'e', ':',
' ', 'h', 't', 'h', 'e', 'l', 'p', '.',
'i', 'n', 'f', 'o', ',', ' ', ' ', 'N',
'o', 'd', 'e', ':', ' ', 'S', 'e', 'a',
'r', 'c', 'h', ' ', 'a', 'n', 'd', ' ',
'i', 't', 's', ' ', 'd', 'i', 'f', 'f',
'e', 'r', 'e', 'n', 't', ' ', 'm', 'o',
'd', 'e', 's', ',', ' ', ' ', 'P', 'r',
'e', 'v', ':', ' ', 'F', 'e', 'a', 't',
'u', 'r', 'e', 's', ',', ' ', ' ', 'U',
'p', ':', ' ', 'F', 'e', 'a', 't', 'u',
'r', 'e', 's', 0x0a,0x0a,'S', 'e', 'a',
'r', 'c', 'h', ' ', 'a', 'n', 'd', ' ',
'i', 't', 's', ' ', 'd', 'i', 'f', 'f',
'e', 'r', 'e', 'n', 't', ' ', 'm', 'o',
'd', 'e', 's', 0x0a,'=', '=', '=', '=',
'=', '=', '=', '=', '=', '=', '=', '=',
'=', '=', '=', '=', '=', '=', '=', '=',
'=', '=', '=', '=', '=', '=', '=', '=',
'=', '=', 0x0a,0x0a,'T', 'h', 'e', ' ',
's', 'e', 'a', 'r', 'c', 'h', ' ', 'f',
'u', 'n', 'c', 't', 'i', 'o', 'n', ' ',
'i', 's', ' ', 'o', 'n', 'e', ' ', 'o',
'f', ' ', 't', 'h', 'e', ' ', 'm', 'o',
's', 't', ' ', 'a', 'd', 'v', 'a', 'n',
'c', 'e', 'd', ' ', 'f', 'u', 'n', 'c',
't', 'i', 'o', 'n', 's', ' ', 'o', 'f',
' ', 'H', 'T', '.', 0x0a,'I', 't', ' ',
'i', 's', ' ', 'i', 'n', 'v', 'o', 'k',
'e', 'd', ' ', 't', 'h', 'r', 'o', 'u',
'g', 'h', ' ', 'F', '7', ',', ' ', 'S',
'h', 'i', 'f', 't', '-', 'F', '7', ' ',
'c', 'o', 'n', 't', 'i', 'n', 'u', 'e',
's', ' ', 'a', ' ', 's', 'e', 'a', 'r',
'c', 'h', ' ', 'f', 'r', 'o', 'm', 0x0a,
'c', 'u', 'r', 's', 'o', 'r', '.', ' ',
' ', 'D', 'e', 'p', 'e', 'n', 'd', 'i',
'n', 'g', ' ', 'o', 'n', ' ', 'c', 'o',
'n', 't', 'e', 'x', 't', ' ', '(', 'i',
'e', '.', ' ', 'f', 'i', 'l', 'e', ' ',
't', 'y', 'p', 'e', ' ', 'a', 'n', 'd',
' ', 'm', 'o', 'd', 'e', ')', ' ', 't',
'h', 'e', 0x0a,'f', 'o', 'l', 'l', 'o',
'w', 'i', 'n', 'g', ' ', 'm', 'o', 'd',
'e', 's', ' ', 'a', 'r', 'e', ' ', 'e',
'n', 'a', 'b', 'l', 'e', 'd', ':', 0x0a,
0x0a,'b', 'i', 'n', ':', ' ', 'A', 'S',
'C', 'I', 'I', ' ', '/', ' ', 'H', 'e',
'x', 0x0a,'-', '-', '-', '-', '-', '-',
'-', '-', '-', '-', '-', '-', '-', '-',
'-', '-', 0x0a,0x0a,'E', 'n', 't', 'e',
'r', ' ', 'a', 'n', ' ', 'e', 'x', 'a',
'c', 't', ' ', 's', 'e', 'a', 'r', 'c',
'h', ' ', 's', 't', 'r', 'i', 'n', 'g',
' ', 'e', 'i', 't', 'h', 'e', 'r', ' ',
'v', 'i', 'a', ' ', 'a', 's', 'c', 'i',
'i', ' ', 'c', 'h', 'a', 'r', 'a', 'c',
't', 'e', 'r', 's', ' ', 'o', 'r', ' ',
'v', 'i', 'a', 0x0a,'h', 'e', 'x', 'a',
'd', 'e', 'c', 'i', 'm', 'a', 'l', ' ',
'i', 'n', 't', 'e', 'r', 'p', 'r', 'e',
't', 'a', 't', 'i', 'o', 'n', '.', ' ',
'T', 'h', 'i', 's', ' ', 'i', 's', ' ',
't', 'h', 'e', ' ', 'f', 'a', 's', 't',
'e', 's', 't', ' ', 's', 'e', 'a', 'r',
'c', 'h', ' ', 'm', 'o', 'd', 'e', '.',
0x0a,'Y', 'o', 'u', ' ', 'm', 'a', 'y',
' ', 's', 'p', 'e', 'c', 'i', 'f', 'y',
' ', 'a', ' ', 'c', 'a', 's', 'e', '-',
'i', 'n', 's', 'e', 'n', 's', 'i', 't',
'i', 'v', 'e', ' ', 's', 'e', 'a', 'r',
'c', 'h', '.', 0x0a,0x0a,'b', 'i', 'n',
':', ' ', 'e', 'v', 'a', 'l', ' ', 's',
't', 'r', 0x0a,'-', '-', '-', '-', '-',
'-', '-', '-', '-', '-', '-', '-', '-',
0x0a,0x0a,'E', 'n', 't', 'e', 'r', ' ',
'a', 'n', ' ', 'e', 'x', 'p', 'r', 'e',
's', 's', 'i', 'o', 'n', ',', ' ', 'i',
't', ' ', 'w', 'i', 'l', 'l', ' ', 'b',
'e', ' ', 'e', 'v', 'a', 'l', 'u', 'a',
't', 'e', 'd', ' ', 'O', 'N', 'C', 'E',
' ', '(', 'd', 'i', 'f', 'f', 'e', 'r',
'e', 'n', 'c', 'e', ' ', 't', 'o', 0x0a,
't', 'h', 'e', ' ', '4', 't', 'h', ' ',
'm', 'o', 'd', 'e', ')', ',', ' ', 'a',
'n', 'd', ' ', 'H', 'T', ' ', 'w', 'i',
'l', 'l', ' ', 't', 'h', 'e', 'n', ' ',
's', 'e', 'a', 'r', 'c', 'h', ' ', 'f',
'o', 'r', ' ', 't', 'h', 'e', ' ', 'r',
'e', 's', 'u', 'l', 't', '-', 's', 't',
'r', 'i', 'n', 'g', '.', 0x0a,'T', 'h',
'i', 's', ' ', 'i', 's', ' ', 'p', 'r',
'e', 't', 't', 'y', ' ', 'u', 's', 'e',
'f', 'u', 'l', ' ', 'w', 'h', 'e', 'n',
' ', 's', 'e', 'a', 'r', 'c', 'h', 'i',
'n', 'g', ' ', 'f', 'o', 'r', ' ', 'i',
'n', 't', 'e', 'r', 'm', 'i', 'x', 'e',
'd', ' ', 't', 'e', 'x', 't', ' ', 'a',
'n', 'd', 0x0a,'c', 'o', 'n', 't', 'r',
'o', 'l', '-', 'c', 'h', 'a', 'r', 's',
'/', 'b', 'i', 'n', 'a', 'r', 'y', ',',
' ', 'e', '.', 'g', '.', ' ', '`', '"',
'h', 'e', 'l', 'l', 'o', ' ', 'w', 'o',
'r', 'l', 'd', '\\','n', '\\','0', '"',
'\'',0x0a,0x0a,'d', 'i', 's', 'p', 'l',
'a', 'y', ':', ' ', 'r', 'e', 'g', 'e',
'x', 0x0a,'-', '-', '-', '-', '-', '-',
'-', '-', '-', '-', '-', '-', '-', '-',
0x0a,0x0a,'A', 's', ' ', 't', 'h', 'e',
' ', 'p', 'r', 'e', 'f', 'i', 'x', ' ',
'i', 'n', 'd', 'i', 'c', 'a', 't', 'e',
's', ',', ' ', 't', 'h', 'i', 's', ' ',
's', 'e', 'a', 'r', 'c', 'h', ' ', 'd',
'o', 'e', 's', 'n', '\'','t', ' ', 's',
'e', 'a', 'r', 'c', 'h', ' ', 'i', 'n',
' ', 't', 'h', 'e', 0x0a,'b', 'i', 'n',
'a', 'r', 'y', ' ', 'f', 'i', 'l', 'e',
' ', 'b', 'u', 't', ' ', 'i', 'n', ' ',
't', 'h', 'e', ' ', 'd', 'i', 's', 'p',
'l', 'a', 'y', ' ', 'o', 'n', ' ', 's',
'c', 'r', 'e', 'e', 'n', '.', ' ', 'H',
'T', ' ', 's', 'e', 'a', 'r', 'c', 'h',
'e', 's', ' ', 'f', 'o', 'r', ' ', 'a',
0x0a,'r', 'e', 'g', 'u', 'l', 'a', 'r',
' ', 'e', 'x', 'p', 'r', 'e', 's', 's',
'i', 'o', 'n', ' ', 's', 'o', ' ', 't',
'h', 'i', 's', ' ', 'c', 'a', 'n', ' ',
'b', 'e', ' ', 'v', 'e', 'r', 'y', ' ',
'p', 'o', 'w', 'e', 'r', 'f', 'u', 'l',
',', ' ', 'e', '.', 'g', '.', ' ', 'i',
'n', 0x0a,'P', 'E', '/', 'I', 'm', 'a',
'g', 'e', ' ', 'y', 'o', 'u', ' ', 'c',
'a', 'n', ' ', 's', 'e', 'a', 'r', 'c',
'h', ' ', 'f', 'o', 'r', ' ', '`', '(',
'a', 'd', 'd', '|', 's', 'u', 'b', ')',
'.', '+', '?', ',', '\\',' ', '[', '7',
'8', ']', '$', '\'','.', ' ', ' ', 'T',
'h', 'i', 's', ' ', 'w', 'i', 'l', 'l',
0x0a,'f', 'i', 'n', 'd', ' ', 'a', 'l',
'l', ' ', 'a', 'd', 'd', ' ', 'o', 'r',
' ', 's', 'u', 'b', ' ', 'i', 'n', 's',
't', 'r', 'u', 'c', 't', 'i', 'o', 'n',
's', ' ', 'w', 'i', 't', 'h', ' ', 's',
'e', 'c', 'o', 'n', 'd', ' ', 'p', 'a',
'r', 'a', 'm', 'e', 't', 'e', 'r', ' ',
'7', ' ', 'o', 'r', ' ', '8', '.', 0x0a,
0x0a,'e', 'x', 'p', 'r', ' ', 'n', 'o',
'n', 'z', 'e', 'r', 'o', 0x0a,'-', '-',
'-', '-', '-', '-', '-', '-', '-', '-',
'-', '-', 0x0a,0x0a,'T', 'h', 'i', 's',
' ', 'i', 's', ' ', 't', 'h', 'e', ' ',
's', 'l', 'o', 'w', 'e', 's', 't', ' ',
'b', 'u', 't', ' ', 'a', 'l', 's', 'o',
' ', 'm', 'o', 's', 't', ' ', 'a', 'd',
'v', 'a', 'n', 'c', 'e', 'd', ' ', 's',
'e', 'a', 'r', 'c', 'h', ' ', 'm', 'o',
'd', 'e', '.', ' ', 'E', 'n', 't', 'e',
'r', 0x0a,'a', 'n', ' ', 'e', 'x', 'p',
'r', 'e', 's', 's', 'i', 'o', 'n', ' ',
'a', 'n', 'd', ' ', 't', 'h', 'e', ' ',
's', 'e', 'a', 'r', 'c', 'h', ' ', 's',
't', 'o', 'p', 's', ' ', 'i', 'f', ' ',
't', 'h', 'i', 's', ' ', 'e', 'x', 'p',
'r', 'e', 's', 's', 'i', 'o', 'n', ' ',
'e', 'v', 'a', 'l', 'u', 'a', 't', 'e',
's', 0x0a,'t', 'o', ' ', 'n', 'o', 'n',
'-', 'z', 'e', 'r', 'o', ' ', '(', 'i',
't', ' ', 'w', 'i', 'l', 'l', ' ', 'b',
'e', ' ', 'e', 'v', 'a', 'l', 'u', 'a',
't', 'e', 'd', ' ', 'o', 'n', ' ', 'e',
'v', 'e', 'r', 'y', ' ', 'b', 'y', 't',
'e', ')', '.', ' ', 'I', 'n', ' ', 't',
'h', 'i', 's', ' ', 'm', 'o', 'd', 'e',
0x0a,'t', 'h', 'e', 'r', 'e', ' ', 'a',
'r', 'e', ' ', 't', 'w', 'o', ' ', 'p',
'r', 'e', 'd', 'e', 'f', 'i', 'n', 'e',
'd', ' ', 's', 'y', 'm', 'b', 'o', 'l',
's', ' ', 'a', 'n', 'd', ' ', 's', 'o',
'm', 'e', ' ', 'f', 'u', 'n', 'c', 't',
'i', 'o', 'n', 's', ':', ' ', 'I', ' ',
'i', 's', 0x0a,'a', 'l', 'w', 'a', 'y',
's', ' ', 't', 'h', 'e', ' ', 'n', 'u',
'm', 'b', 'e', 'r', ' ', 'o', 'f', ' ',
'c', 'u', 'r', 'r', 'e', 'n', 't', ' ',
'i', 't', 'e', 'r', 'a', 't', 'i', 'o',
'n', ' ', 'a', 'n', 'd', ' ', 'O', ' ',
's', 't', 'a', 'n', 'd', 's', ' ', 'f',
'o', 'r', ' ', 't', 'h', 'e', 0x0a,'c',
'u', 'r', 'r', 'e', 'n', 't', ' ', 'o',
'f', 'f', 's', 'e', 't', ' ', 'i', 'n',
' ', 'f', 'i', 'l', 'e', '.', ' ', 'W',
'i', 't', 'h', ' ', 't', 'h', 'e', ' ',
'f', 'u', 'n', 'c', 't', 'i', 'o', 'n',
's', ' ', '`', 'r', 'e', 'a', 'd', 'b',
'y', 't', 'e', '(', 'o', 'f', 's', ')',
'\'',' ', 'a', 'n', 'd', 0x0a,'`', 'r',
'e', 'a', 'd', 's', 't', 'r', 'i', 'n',
'g', '(', 'o', 'f', 's', ',', ' ', 's',
'i', 'z', 'e', ')', '\'',' ', 'y', 'o',
'u', ' ', 'a', 'c', 'c', 'e', 's', 's',
' ', 't', 'h', 'e', ' ', 'f', 'i', 'l',
'e', '\'','s', ' ', 'c', 'o', 'n', 't',
'e', 'n', 't', '.', 0x0a,0x0a,' ', ' ',
' ', 'I', 't', '\'','s', ' ', 'e', 'a',
's', 'i', 'e', 'r', ' ', 't', 'o', ' ',
'u', 'n', 'd', 'e', 'r', 's', 't', 'a',
'n', 'd', ' ', 't', 'h', 'i', 's', ' ',
'w', 'i', 't', 'h', ' ', 'e', 'x', 'a',
'm', 'p', 'l', 'e', 's', ':', 0x0a,0x0a,
' ', ' ', '1', '.', ' ', 'S', 'e', 'a',
'r', 'c', 'h', 'i', 'n', 'g', ' ', 'f',
'o', 'r', ' ', 'p', 'a', 't', 't', 'e',
'r', 'n', 's', ':', 0x0a,0x0a,' ', ' ',
' ', ' ', ' ', ' ', ' ', 'a', '.', ' ',
'E', 'n', 't', 'e', 'r', ' ', '`', 'r',
'e', 'a', 'd', 'b', 'y', 't', 'e', '(',
'o', ')', ' ', '=', '=', ' ', 'r', 'e',
'a', 'd', 'b', 'y', 't', 'e', '(', 'o',
'+', '1', ')', '\'',0x0a,' ', ' ', ' ',
' ', ' ', ' ', ' ', ' ', ' ', ' ', 'T',
'h', 'i', 's', ' ', 'w', 'i', 'l', 'l',
' ', 's', 'e', 'a', 'r', 'c', 'h', ' ',
'f', 'o', 'r', ' ', 't', 'w', 'o', ' ',
'e', 'q', 'u', 'a', 'l', ' ', 'b', 'y',
't', 'e', 's', ' ', '(', '"', 'A', 'A',
'"', ',', ' ', '"', '5', '5', '"', ',',
0x0a,' ', ' ', ' ', ' ', ' ', ' ', ' ',
' ', ' ', ' ', '"', '!', '!', '"', ',',
' ', 'e', 't', 'c', '.', ')', '.', 0x0a,
0x0a,' ', ' ', ' ', ' ', ' ', ' ', ' ',
'b', '.', ' ', 'E', 'n', 't', 'e', 'r',
' ', '`', '(', 'r', 'e', 'a', 'd', 'b',
'y', 't', 'e', '(', 'o', ')', ' ', '=',
'=', ' ', 'r', 'e', 'a', 'd', 'b', 'y',
't', 'e', '(', 'o', '+', '1', ')', '+',
'1', ')', ' ', '&', '&', 0x0a,' ', ' ',
' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ',
'(', '(', 'r', 'e', 'a', 'd', 'b', 'y',
't', 'e', '(', 'o', ')', '=', '=', 'r',
'e', 'a', 'd', 'b', 'y', 't', 'e', '(',
'o', '+', '2', ')', '+', '2', ')', '\'',
0x0a,' ', ' ', ' ', ' ', ' ', ' ', ' ',
' ', ' ', ' ', 'T', 'h', 'i', 's', ' ',
'w', 'i', 'l', 'l', ' ', 's', 'e', 'a',
'r', 'c', 'h', ' ', 'f', 'o', 'r', ' ',
't', 'h', 'r', 'e', 'e', ' ', 'a', 's',
'c', 'e', 'n', 'd', 'i', 'n', 'g', ' ',
'b', 'y', 't', 'e', 's', ' ', '(', '"',
'A', 'B', 'C', '"', ',', 0x0a,' ', ' ',
' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ',
'"', '1', '2', '3', '"', ',', ' ', 'e',
't', 'c', ')', '.', 0x0a,0x0a,' ', ' ',
'2', '.', ' ', 'S', 'e', 'a', 'r', 'c',
'h', ' ', 'w', 'i', 't', 'h', ' ', 's',
'p', 'e', 'c', 'i', 'a', 'l', ' ', 'f',
'u', 'n', 'c', 't', 'i', 'o', 'n', 's',
':', 0x0a,0x0a,' ', ' ', ' ', ' ', ' ',
'W', 'i', 't', 'h', ' ', 'H', 'T', ' ',
'y', 'o', 'u', ' ', 'c', 'a', 'n', ' ',
'e', 'a', 's', 'i', 'l', 'y', ' ', 'd',
'e', 't', 'e', 'c', 't', ' ', 't', 'h',
'e', ' ', 'R', 'S', 'A', ' ', 'k', 'e',
'y', ' ', 'i', 'n', ' ', 't', 'h', 'e',
0x0a,' ', ' ', ' ', ' ', ' ', '`', 'A',
'D', 'V', 'A', 'P', 'I', '3', '2', '.',
'D', 'L', 'L', '\'',':', ' ', 'S', 'e',
'a', 'r', 'c', 'h', ' ', 'f', 'o', 'r',
' ', '`', 'e', 'n', 't', 'r', 'o', 'p',
'y', '(', 'r', 'e', 'a', 'd', 's', 't',
'r', 'i', 'n', 'g', '(', 'o', ',', ' ',
'6', '4', ')', ')', ' ', '>', 0x0a,' ',
' ', ' ', ' ', ' ', '8', '2', '\'',' ',
'i', 'n', ' ', 'e', 'x', 'p', 'r', '!',
'=', '0', ' ', 'm', 'o', 'd', 'e', ',',
' ', 'a', 'n', 'd', ' ', 'y', 'o', 'u',
' ', 'w', 'i', 'l', 'l', ' ', 'f', 'i',
'n', 'd', ' ', 'i', 't', ' ', 'v', 'e',
'r', 'y', ' ', 'q', 'u', 'i', 'c', 'k',
'l', 'y', '.', 0x0a,' ', ' ', ' ', ' ',
' ', 'H', 'o', 'w', ' ', 'd', 'o', 'e',
's', ' ', 'i', 't', ' ', 'w', 'o', 'r',
'k', '?', ' ', '`', 'r', 'e', 'a', 'd',
's', 't', 'r', 'i', 'n', 'g', '(', 'o',
',', ' ', '6', '4', ')', '\'',' ', 'r',
'e', 'a', 'd', 's', ' ', 'a', ' ', '6',
'4', ' ', 'b', 'y', 't', 'e', 0x0a,' ',
' ', ' ', ' ', ' ', 's', 't', 'r', 'i',
'n', 'g', ' ', 'f', 'r', 'o', 'm', ' ',
'c', 'u', 'r', 'r', 'e', 'n', 't', ' ',
'o', 'f', 'f', 's', 'e', 't', ' ', 'a',
'n', 'd', ' ', 'e', 'n', 't', 'r', 'o',
'p', 'y', ' ', 'c', 'a', 'l', 'c', 'u',
'l', 'a', 't', 'e', 's', ' ', 't', 'h',
'e', 0x0a,' ', ' ', ' ', ' ', ' ', 'e',
'n', 't', 'r', 'o', 'p', 'y', ' ', '(',
'"', 'r', 'a', 'n', 'd', 'o', 'm', 'n',
'e', 's', 's', '"', ')', ' ', 'o', 'f',
' ', 'a', ' ', 's', 't', 'r', 'i', 'n',
'g', ' ', '(', 'r', 'e', 's', 'u', 'l',
't', ' ', 'i', 's', ' ', '0', '.', '.',
'1', '0', '0', ')', '.', ' ', ' ', 'S',
'o', 0x0a,' ', ' ', ' ', ' ', ' ', 't',
'h', 'e', ' ', 's', 'e', 'a', 'r', 'c',
'h', ' ', 's', 't', 'o', 'p', 's', ' ',
'i', 'f', ' ', 'a', ' ', 'e', 'n', 't',
'r', 'o', 'p', 'y', ' ', 'g', 'r', 'e',
'a', 't', 'e', 'r', ' ', 't', 'h', 'a',
'n', ' ', '8', '2', '%', ' ', '(', 'g',
'u', 'e', 's', 's', 'e', 'd', 0x0a,' ',
' ', ' ', ' ', ' ', 'v', 'a', 'l', 'u',
'e', ')', ' ', 'i', 's', ' ', 'e', 'n',
'c', 'o', 'u', 'n', 't', 'e', 'r', 'e',
'd', ',', ' ', 'w', 'h', 'i', 'c', 'h',
' ', 'n', 'o', 'r', 'm', 'a', 'l', 'l',
'y', ' ', 'i', 'n', 'd', 'i', 'c', 'a',
't', 'e', 's', ' ', 'p', 'a', 'c', 'k',
'e', 'd', ' ', 'o', 'r', 0x0a,' ', ' ',
' ', ' ', ' ', 'e', 'n', 'c', 'r', 'y',
't', 'e', 'd', ' ', 'd', 'a', 't', 'a',
'.', 0x0a,0x0a,' ', ' ', ' ', ' ', ' ',
'N', 'o', 't', 'e', ':', ' ', 't', 'h',
'e', ' ', '`', 'e', 'n', 't', 'r', 'o',
'p', 'y', '(', ')', '\'',' ', 'f', 'u',
'n', 'c', 't', 'i', 'o', 'n', ' ', 'i',
's', ' ', 'n', 'o', 't', ' ', 't', 'h',
'e', ' ', 'b', 'e', 's', 't', ' ', 'o',
'f', ' ', 'i', 't', 's', 0x0a,' ', ' ',
' ', ' ', ' ', 'k', 'i', 'n', 'd', ',',
' ', 'i', 'f', ' ', 'y', 'o', 'u', ' ',
'k', 'n', 'o', 'w', ' ', 'o', 'f', ' ',
'a', ' ', 'b', 'e', 't', 't', 'e', 'r',
' ', 'o', 'n', 'e', ' ', 'p', 'l', 'e',
'a', 's', 'e', ' ', 'l', 'e', 't', ' ',
'u', 's', ' ', 'k', 'n', 'o', 'w', '!',
0x0a,0x0a,0x0a,0x1f,0x0a,'F', 'i', 'l',
'e', ':', ' ', 'h', 't', 'h', 'e', 'l',
'p', '.', 'i', 'n', 'f', 'o', ',', ' ',
' ', 'N', 'o', 'd', 'e', ':', ' ', 'C',
'o', 'm', 'm', 'a', 'n', 'd', ' ', 'l',
'i', 'n', 'e', ' ', 'o', 'p', 't', 'i',
'o', 'n', 's', ',', ' ', ' ', 'P', 'r',
'e', 'v', ':', ' ', 'F', 'e', 'a', 't',
'u', 'r', 'e', 's', ',', ' ', ' ', 'U',
'p', ':', ' ', 'F', 'e', 'a', 't', 'u',
'r', 'e', 's', 0x0a,0x0a,'C', 'o', 'm',
'm', 'a', 'n', 'd', ' ', 'l', 'i', 'n',
'e', ' ', 'o', 'p', 't', 'i', 'o', 'n',
's', 0x0a,'=', '=', '=', '=', '=', '=',
'=', '=', '=', '=', '=', '=', '=', '=',
'=', '=', '=', '=', '=', '=', 0x0a,0x0a,
'`', '-', '-', '\'',' ', ' ', ' ', ' ',
' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ',
' ', ' ', ' ', ' ', ' ', 't', 'r', 'e',
'a', 't', ' ', 'a', 'l', 'l', ' ', 'a',
'd', 'd', 'i', 't', 'i', 'o', 'n', 'a',
'l', ' ', 'p', 'a', 'r', 'a', 'm', 'e',
't', 'e', 'r', 's', ' ', 'a', 's', ' ',
'f', 'i', 'l', 'e', ' ', 'n', 'a', 'm',
'e', 's', 0x0a,'`', '-', 'v', '\'',' ',
' ', ' ', '`', '-', '-', 'v', 'e', 'r',
's', 'i', 'o', 'n', '\'',' ', ' ', ' ',
's', 'h', 'o', 'w', ' ', 'v', 'e', 'r',
's', 'i', 'o', 'n', ' ', 'a', 'n', 'd',
' ', 'c', 'o', 'p', 'y', 'r', 'i', 'g',
'h', 't', ' ', 'o', 'n', ' ', 'c', 'o',
'n', 's', 'o', 'l', 'e', 0x0a,'`', '-',
'h', '\'',' ', ' ', ' ', '`', '-', '-',
'h', 'e', 'l', 'p', '\'',' ', ' ', ' ',
' ', ' ', ' ', 's', 'h', 'o', 'w', ' ',
'h', 'e', 'l', 'p', 0x0a,'`', '-', 't',
'\'',' ', ' ', ' ', '`', '-', '-', 't',
'e', 'x', 't', '\'',' ', ' ', ' ', ' ',
' ', ' ', 'l', 'o', 'a', 'd', ' ', 'f',
'i', 'l', 'e', '(', 's', ')', ' ', 'i',
'n', ' ', 't', 'e', 'x', 't', ' ', 'e',
'd', 'i', 't', 'o', 'r', ' ', 'm', 'o',
'd', 'e', 0x0a,'`', '-', 'b', '\'',' ',
' ', ' ', '`', '-', '-', 'b', 'i', 'n',
'\'',' ', ' ', ' ', ' ', ' ', ' ', ' ',
'l', 'o', 'a', 'd', ' ', 'f', 'i', 'l',
'e', '(', 's', ')', ' ', 'i', 'n', ' ',
'h', 'e', 'x', ' ', 'e', 'd', 'i', 't',
'o', 'r', ' ', 'm', 'o', 'd', 'e', 0x0a,
'`', '-', 'a', '\'',' ', ' ', ' ', '`',
'-', '-', 'a', 'u', 't', 'o', '\'',' ',
' ', ' ', ' ', ' ', ' ', 't', 'r', 'y',
' ', 't', 'o', ' ', 'g', 'u', 'e', 's',
's', ' ', 'f', 'i', 'l', 'e', ' ', 't',
'y', 'p', 'e', 0x0a,0x0a,0x1f,0x0a,'F',
'i', 'l', 'e', ':', ' ', 'h', 't', 'h',
'e', 'l', 'p', '.', 'i', 'n', 'f', 'o',
',', ' ', ' ', 'N', 'o', 'd', 'e', ':',
' ', 'W', 'h', 'e', 'r', 'e', ' ', 't',
'o', ' ', 'd', 'o', 'w', 'n', 'l', 'o',
'a', 'd', '?', ',', ' ', ' ', 'P', 'r',
'e', 'v', ':', ' ', 'T', 'o', 'p', ',',
' ', ' ', 'U', 'p', ':', ' ', 'T', 'o',
'p', 0x0a,0x0a,'W', 'h', 'e', 'r', 'e',
' ', 't', 'o', ' ', 'd', 'o', 'w', 'n',
'l', 'o', 'a', 'd', '?', 0x0a,'=', '=',
'=', '=', '=', '=', '=', '=', '=', '=',
'=', '=', '=', '=', '=', '=', '=', '=',
0x0a,0x0a,'T', 'h', 'e', ' ', 'H', 'T',
' ', 'h', 'o', 'm', 'e', 'p', 'a', 'g',
'e', ' ', 'i', 's', ' ', 'a', 't', ' ',
'`', 'h', 't', 't', 'p', ':', '/', '/',
'h', 't', 'e', '.', 's', 'o', 'u', 'r',
'c', 'e', 'f', 'o', 'r', 'g', 'e', '.',
'n', 'e', 't', '\'',0x0a,0x0a,'D', 'o',
'w', 'n', 'l', 'o', 'a', 'd', 's', ' ',
'a', 'r', 'e', ' ', 'a', 'v', 'a', 'i',
'l', 'a', 'b', 'l', 'e', ' ', 'f', 'r',
'o', 'm', ' ', 't', 'h', 'e', ' ', '\'',
'd', 'o', 'w', 'n', 'l', 'o', 'a', 'd',
'\'',' ', 's', 'e', 'c', 't', 'i', 'o',
'n', '.', ' ', ' ', 'P', 'l', 'e', 'a',
's', 'e', 0x0a,'a', 'l', 's', 'o', ' ',
't', 'a', 'k', 'e', ' ', 'a', ' ', 'l',
'o', 'o', 'k', ' ', 'a', 't', ' ', '`',
'h', 't', 't', 'p', ':', '/', '/', 's',
'o', 'u', 'r', 'c', 'e', 'f', 'o', 'r',
'g', 'e', '.', 'n', 'e', 't', '/', 'p',
'r', 'o', 'j', 'e', 'c', 't', 's', '/',
'h', 't', 'e', '\'',0x0a,0x0a,0x0a,0x1f,
0x0a,'T', 'a', 'g', ' ', 'T', 'a', 'b',
'l', 'e', ':', 0x0a,'N', 'o', 'd', 'e',
':', ' ', 'T', 'o', 'p', 0x7f,'5', '8',
'2', 0x0a,'N', 'o', 'd', 'e', ':', ' ',
'A', 'b', 'o', 'u', 't', 0x7f,'7', '7',
'9', 0x0a,'N', 'o', 'd', 'e', ':', ' ',
'K', 'e', 'y', ' ', 'b', 'i', 'n', 'd',
'i', 'n', 'g', 's', 0x7f,'1', '6', '2',
'7', 0x0a,'N', 'o', 'd', 'e', ':', ' ',
'A', 'u', 't', 'h', 'o', 'r', 's', 0x7f,
'3', '2', '8', '8', 0x0a,'N', 'o', 'd',
'e', ':', ' ', 'F', 'e', 'a', 't', 'u',
'r', 'e', 's', 0x7f,'3', '4', '2', '8',
0x0a,'N', 'o', 'd', 'e', ':', ' ', 'G',
'e', 'n', 'e', 'r', 'a', 'l', ' ', 'f',
'e', 'a', 't', 'u', 'r', 'e', 's', 0x7f,
'3', '7', '9', '1', 0x0a,'N', 'o', 'd',
'e', ':', ' ', 'C', 'o', 'n', 'f', 'i',
'g', 'u', 'r', 'a', 't', 'i', 'o', 'n',
' ', 'f', 'i', 'l', 'e', 's', 0x7f,'6',
'6', '4', '4', 0x0a,'N', 'o', 'd', 'e',
':', ' ', 'C', 'l', 'i', 'p', 'b', 'o',
'a', 'r', 'd', 0x7f,'7', '2', '9', '1',
0x0a,'N', 'o', 'd', 'e', ':', ' ', 'G',
'l', 'o', 'b', 'a', 'l', ' ', 'h', 'i',
's', 't', 'o', 'r', 'y', 0x7f,'8', '1',
'0', '1', 0x0a,'N', 'o', 'd', 'e', ':',
' ', 'E', 'x', 'p', 'r', 'e', 's', 's',
'i', 'o', 'n', ' ', 'e', 'v', 'a', 'l',
'u', 'a', 't', 'i', 'o', 'n', 0x7f,'8',
'6', '5', '0', 0x0a,'N', 'o', 'd', 'e',
':', ' ', 'B', 'l', 'o', 'c', 'k', ' ',
'o', 'p', 'e', 'r', 'a', 't', 'i', 'o',
'n', 's', 0x7f,'1', '0', '0', '7', '9',
0x0a,'N', 'o', 'd', 'e', ':', ' ', 'S',
'e', 'a', 'r', 'c', 'h', ' ', 'a', 'n',
'd', ' ', 'i', 't', 's', ' ', 'd', 'i',
'f', 'f', 'e', 'r', 'e', 'n', 't', ' ',
'm', 'o', 'd', 'e', 's', 0x7f,'1', '0',
'9', '7', '7', 0x0a,'N', 'o', 'd', 'e',
':', ' ', 'C', 'o', 'm', 'm', 'a', 'n',
'd', ' ', 'l', 'i', 'n', 'e', ' ', 'o',
'p', 't', 'i', 'o', 'n', 's', 0x7f,'1',
'3', '6', '5', '1', 0x0a,'N', 'o', 'd',
'e', ':', ' ', 'W', 'h', 'e', 'r', 'e',
' ', 't', 'o', ' ', 'd', 'o', 'w', 'n',
'l', 'o', 'a', 'd', '?', 0x7f,'1', '4',
'0', '8', '5', 0x0a,0x1f,0x0a,'E', 'n',
'd', ' ', 'T', 'a', 'g', ' ', 'T', 'a',
'b', 'l', 'e', 0x0a
};
|