File size: 73,983 Bytes
d342b19 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 |
:- dynamic term_expansion/2.
:- multifile term_expansion/2.
brother_in_law(X, Y) :-
married(X, A),
brother(A, Y).
husband(X, Y) :-
married(X, Y),
male(Y).
:- dynamic nonbinary/1.
nonbinary(X) :-
gender(X, nonbinary).
niece(X, Y) :-
sibling(X, A),
daughter(A, Y).
sister_in_law(X, Y) :-
married(X, A),
sister(A, Y).
daughter_in_law(X, Y) :-
child(X, A),
wife(A, Y).
daughter(X, Y) :-
child(X, Y),
female(Y).
:- dynamic library_directory/1.
:- multifile library_directory/1.
wife(X, Y) :-
married(X, Y),
female(Y).
son_in_law(X, Y) :-
child(X, A),
husband(A, Y).
male(X) :-
gender(X, male).
:- dynamic goal_expansion/4.
:- multifile goal_expansion/4.
father_in_law(X, Y) :-
married(X, A),
father(A, Y).
child(X, Y) :-
parent(Y, X).
son(X, Y) :-
child(X, Y),
male(Y).
mother_in_law(X, Y) :-
married(X, A),
mother(A, Y).
male_first_cousin_once_removed(X, Y) :-
cousin(X, A),
son(A, Y),
X\=Y.
mother(X, Y) :-
parent(X, Y),
female(Y).
:- dynamic term_expansion/4.
:- multifile term_expansion/4.
father(X, Y) :-
parent(X, Y),
male(Y).
female_first_cousin_once_removed(X, Y) :-
cousin(X, A),
daughter(A, Y),
X\=Y.
:- dynamic file_search_path/2.
:- multifile file_search_path/2.
file_search_path(library, Dir) :-
library_directory(Dir).
file_search_path(swi, A) :-
system:current_prolog_flag(home, A).
file_search_path(swi, A) :-
system:current_prolog_flag(shared_home, A).
file_search_path(library, app_config(lib)).
file_search_path(library, swi(library)).
file_search_path(library, swi(library/clp)).
file_search_path(library, A) :-
system:'$ext_library_directory'(A).
file_search_path(foreign, swi(A)) :-
system:
( current_prolog_flag(apple_universal_binary, true),
A='lib/fat-darwin'
).
file_search_path(path, A) :-
system:
( getenv('PATH', B),
current_prolog_flag(path_sep, C),
atomic_list_concat(D, C, B),
'$member'(A, D)
).
file_search_path(user_app_data, A) :-
system:'$xdg_prolog_directory'(data, A).
file_search_path(common_app_data, A) :-
system:'$xdg_prolog_directory'(common_data, A).
file_search_path(user_app_config, A) :-
system:'$xdg_prolog_directory'(config, A).
file_search_path(common_app_config, A) :-
system:'$xdg_prolog_directory'(common_config, A).
file_search_path(app_data, user_app_data('.')).
file_search_path(app_data, common_app_data('.')).
file_search_path(app_config, user_app_config('.')).
file_search_path(app_config, common_app_config('.')).
file_search_path(app_preferences, user_app_config('.')).
file_search_path(user_profile, app_preferences('.')).
file_search_path(app, swi(app)).
file_search_path(app, app_data(app)).
file_search_path(autoload, swi(library)).
file_search_path(autoload, pce(prolog/lib)).
file_search_path(autoload, app_config(lib)).
file_search_path(autoload, Dir) :-
'$autoload':'$ext_library_directory'(Dir).
file_search_path(pack, app_data(pack)).
file_search_path(library, PackLib) :-
'$pack':pack_dir(_Name, prolog, PackLib).
file_search_path(foreign, PackLib) :-
'$pack':pack_dir(_Name, foreign, PackLib).
file_search_path(app, AppDir) :-
'$pack':pack_dir(_Name, app, AppDir).
file_search_path(pce, PceHome) :-
link_xpce:
( current_prolog_flag(xpce, true),
pcehome_(PceHome)
).
file_search_path(library, pce('prolog/lib')).
file_search_path(foreign, pce(ArchLib)) :-
link_xpce:
( current_prolog_flag(arch, Arch),
atom_concat('lib/', Arch, ArchLib)
).
:- multifile prolog_list_goal/1.
male_second_cousin(X, Y) :-
parent(X, A),
parent(Y, B),
cousin(A, B),
male(Y),
X\=Y.
sister(Y, X) :-
sibling(X, Y),
female(X).
brother(X, Y) :-
sibling(X, Y),
male(Y).
female_second_cousin(X, Y) :-
parent(X, A),
parent(Y, B),
cousin(A, B),
female(Y),
X\=Y.
male_cousin(X, Y) :-
cousin(X, Y),
male(Y).
:- dynamic parent/2.
parent('Adell Song', 'Carmon Song').
parent('Adell Song', 'Son Song').
parent('Adolfo Karp', 'Dannielle Karp').
parent('Adolfo Karp', 'Lesley Karp').
parent('Alexa Song', 'Katy Polley').
parent('Alexa Song', 'Lenny Polley').
parent('Aurelia Ennis', 'Evelia Lashley').
parent('Aurelia Ennis', 'Wallace Lashley').
parent('Barb Hulett', 'Candy Holm').
parent('Barb Hulett', 'Eric Holm').
parent('Barton Song', 'Eddy Song').
parent('Barton Song', 'Noelia Song').
parent('Bev Averill', 'Micheal Kidd').
parent('Bev Averill', 'Nora Kidd').
parent('Carmon Song', 'Ligia Simonson').
parent('Carmon Song', 'Noel Simonson').
parent('Carolyn Proctor', 'Micheal Kidd').
parent('Carolyn Proctor', 'Nora Kidd').
parent('Cary Kiel', 'Jesse Kiel').
parent('Cary Kiel', 'Landon Kiel').
parent('Cecil Lawyer', 'Abraham Lawyer').
parent('Cecil Lawyer', 'Ester Lawyer').
parent('Clayton Polley', 'Katy Polley').
parent('Clayton Polley', 'Lenny Polley').
parent('Dallas Pridgen', 'Garry Saari').
parent('Dallas Pridgen', 'Meagan Saari').
parent('Darren Karp', 'Adolfo Karp').
parent('Darren Karp', 'Erin Karp').
parent('Debi Holm', 'Candy Holm').
parent('Debi Holm', 'Eric Holm').
parent('Dudley Colin', 'Genesis Colin').
parent('Dudley Colin', 'Mckinley Colin').
parent('Edmund Kidd', 'Micheal Kidd').
parent('Edmund Kidd', 'Nora Kidd').
parent('Effie Kidd', 'Aimee Kidd').
parent('Effie Kidd', 'Edmund Kidd').
parent('Elizebeth Song', 'Alexa Song').
parent('Elizebeth Song', 'Sonny Song').
parent('Elvin Streeter', 'Archie Streeter').
parent('Elvin Streeter', 'Tashina Streeter').
parent('Emanuel Hulett', 'Barb Hulett').
parent('Emanuel Hulett', 'Dillon Hulett').
parent('Erin Karp', 'Jame Song').
parent('Erin Karp', 'Susanna Song').
parent('Ester Lawyer', 'Megan Kidd').
parent('Ester Lawyer', 'Mickey Kidd').
parent('Evelia Lashley', 'Danilo Colin').
parent('Evelia Lashley', 'Ramona Colin').
parent('Felipe Kiel', 'Cary Kiel').
parent('Felipe Kiel', 'Heather Kiel').
parent('Gemma Song', 'Barton Song').
parent('Gemma Song', 'Princess Song').
parent('Genesis Colin', 'Micheal Kidd').
parent('Genesis Colin', 'Nora Kidd').
parent('Ginger Averill', 'Bev Averill').
parent('Ginger Averill', 'Luis Averill').
parent('Henry Colin', 'Genesis Colin').
parent('Henry Colin', 'Mckinley Colin').
parent('Jame Song', 'Eddy Song').
parent('Jame Song', 'Noelia Song').
parent('Katelyn Lashley', 'Joel Lashley').
parent('Katelyn Lashley', 'Therese Lashley').
parent('Kevin Polley', 'Katy Polley').
parent('Kevin Polley', 'Lenny Polley').
parent('Kraig Colin', 'Danilo Colin').
parent('Kraig Colin', 'Ramona Colin').
parent('Kyong Lashley', 'Evelia Lashley').
parent('Kyong Lashley', 'Wallace Lashley').
parent('Lenny Polley', 'Loren Polley').
parent('Lenny Polley', 'Rosanna Polley').
parent('Logan Kiel', 'Jesse Kiel').
parent('Logan Kiel', 'Landon Kiel').
parent('Manda Roney', 'Jame Song').
parent('Manda Roney', 'Susanna Song').
parent('Marc Karp', 'Adolfo Karp').
parent('Marc Karp', 'Erin Karp').
parent('Marguerita Streeter', 'Archie Streeter').
parent('Marguerita Streeter', 'Tashina Streeter').
parent('Mckinley Colin', 'Danilo Colin').
parent('Mckinley Colin', 'Ramona Colin').
parent('Meagan Saari', 'Danilo Colin').
parent('Meagan Saari', 'Ramona Colin').
parent('Micheal Kidd', 'Megan Kidd').
parent('Micheal Kidd', 'Mickey Kidd').
parent('Mike Song', 'Barton Song').
parent('Mike Song', 'Princess Song').
parent('Milford Kidd', 'Megan Kidd').
parent('Milford Kidd', 'Mickey Kidd').
parent('Morris Karp', 'Dannielle Karp').
parent('Morris Karp', 'Lesley Karp').
parent('Noelia Song', 'Eunice Poston').
parent('Noelia Song', 'Zachery Poston').
parent('Nora Kidd', 'Carl Potter').
parent('Nora Kidd', 'Paula Potter').
parent('Ramona Colin', 'Jesse Kiel').
parent('Ramona Colin', 'Landon Kiel').
parent('Randal Kidd', 'Micheal Kidd').
parent('Randal Kidd', 'Nora Kidd').
parent('Randi Roney', 'Franklin Roney').
parent('Randi Roney', 'Manda Roney').
parent('Rayna Lashley', 'Evelia Lashley').
parent('Rayna Lashley', 'Wallace Lashley').
parent('Reita Ennis', 'Aurelia Ennis').
parent('Reita Ennis', 'Dewitt Ennis').
parent('Sharika Song', 'Eddy Song').
parent('Sharika Song', 'Noelia Song').
parent('Simon Karp', 'Adolfo Karp').
parent('Simon Karp', 'Erin Karp').
parent('Son Song', 'Jame Song').
parent('Son Song', 'Susanna Song').
parent('Sonny Song', 'Jame Song').
parent('Sonny Song', 'Susanna Song').
parent('Susanna Song', 'Genesis Colin').
parent('Susanna Song', 'Mckinley Colin').
parent('Sylvester Song', 'Alexa Song').
parent('Sylvester Song', 'Sonny Song').
parent('Tashina Streeter', 'Henry Colin').
parent('Tashina Streeter', 'Margret Colin').
parent('Teodoro Lashley', 'Evelia Lashley').
parent('Teodoro Lashley', 'Wallace Lashley').
parent('Therese Lashley', 'Candy Holm').
parent('Therese Lashley', 'Eric Holm').
parent('Tiesha Proctor', 'Carolyn Proctor').
parent('Tiesha Proctor', 'Florentino Proctor').
parent('Torrie Karp', 'Dannielle Karp').
parent('Torrie Karp', 'Lesley Karp').
parent('Truman Lawyer', 'Abraham Lawyer').
parent('Truman Lawyer', 'Ester Lawyer').
parent('Walker Colin', 'Danilo Colin').
parent('Walker Colin', 'Ramona Colin').
parent('Wallace Lashley', 'Joel Lashley').
parent('Wallace Lashley', 'Therese Lashley').
parent('Zona Pridgen', 'Dallas Pridgen').
parent('Zona Pridgen', 'Ruben Pridgen').
married(X, Y) :-
parent(Child, X),
parent(Child, Y),
X\=Y.
female_cousin(X, Y) :-
cousin(X, Y),
female(Y).
cousin(X, Y) :-
parent(X, A),
parent(Y, B),
sibling(A, B),
X\=Y.
sibling(X, Y) :-
parent(X, A),
parent(Y, A),
X\=Y.
uncle(X, Y) :-
parent(X, A),
brother(A, Y).
:- multifile message_property/2.
aunt(X, Y) :-
parent(X, A),
sister(A, Y).
:- dynamic gender/2.
gender('Abraham Lawyer', male).
gender('Adell Song', female).
gender('Adolfo Karp', male).
gender('Aimee Kidd', female).
gender('Alexa Song', female).
gender('Archie Streeter', male).
gender('Aurelia Ennis', female).
gender('Barb Hulett', female).
gender('Barton Song', male).
gender('Bev Averill', female).
gender('Candy Holm', female).
gender('Carl Potter', male).
gender('Carmon Song', female).
gender('Carolyn Proctor', female).
gender('Cary Kiel', male).
gender('Cecil Lawyer', male).
gender('Clayton Polley', male).
gender('Dallas Pridgen', female).
gender('Danilo Colin', male).
gender('Dannielle Karp', female).
gender('Darren Karp', male).
gender('Debi Holm', female).
gender('Dewitt Ennis', male).
gender('Dillon Hulett', male).
gender('Dudley Colin', male).
gender('Eddy Song', male).
gender('Edmund Kidd', male).
gender('Effie Kidd', female).
gender('Elizebeth Song', female).
gender('Elvin Streeter', male).
gender('Emanuel Hulett', male).
gender('Eric Holm', male).
gender('Erin Karp', female).
gender('Ester Lawyer', female).
gender('Eunice Poston', female).
gender('Evelia Lashley', female).
gender('Felipe Kiel', male).
gender('Florentino Proctor', male).
gender('Franklin Roney', male).
gender('Garry Saari', male).
gender('Gemma Song', female).
gender('Genesis Colin', female).
gender('Ginger Averill', female).
gender('Heather Kiel', female).
gender('Henry Colin', male).
gender('Jame Song', male).
gender('Jesse Kiel', female).
gender('Joel Lashley', male).
gender('Katelyn Lashley', female).
gender('Katy Polley', female).
gender('Kevin Polley', male).
gender('Kraig Colin', male).
gender('Kyong Lashley', female).
gender('Landon Kiel', male).
gender('Lenny Polley', male).
gender('Lesley Karp', male).
gender('Ligia Simonson', female).
gender('Logan Kiel', male).
gender('Loren Polley', male).
gender('Luis Averill', male).
gender('Manda Roney', female).
gender('Marc Karp', male).
gender('Margret Colin', female).
gender('Marguerita Streeter', female).
gender('Mckinley Colin', male).
gender('Meagan Saari', female).
gender('Megan Kidd', female).
gender('Micheal Kidd', male).
gender('Mickey Kidd', male).
gender('Mike Song', male).
gender('Milford Kidd', male).
gender('Morris Karp', male).
gender('Noel Simonson', male).
gender('Noelia Song', female).
gender('Nora Kidd', female).
gender('Paula Potter', female).
gender('Princess Song', female).
gender('Ramona Colin', female).
gender('Randal Kidd', male).
gender('Randi Roney', female).
gender('Rayna Lashley', female).
gender('Reita Ennis', female).
gender('Rosanna Polley', female).
gender('Ruben Pridgen', male).
gender('Sharika Song', female).
gender('Simon Karp', male).
gender('Son Song', male).
gender('Sonny Song', male).
gender('Susanna Song', female).
gender('Sylvester Song', male).
gender('Tashina Streeter', female).
gender('Teodoro Lashley', male).
gender('Therese Lashley', female).
gender('Tiesha Proctor', female).
gender('Torrie Karp', female).
gender('Truman Lawyer', male).
gender('Walker Colin', male).
gender('Wallace Lashley', male).
gender('Zachery Poston', male).
gender('Zona Pridgen', female).
:- dynamic expand_query/4.
:- multifile expand_query/4.
:- multifile prolog_clause_name/2.
second_uncle(X, Y) :-
great_grandparent(X, A),
brother(A, Y).
second_aunt(X, Y) :-
great_grandparent(X, A),
sister(A, Y).
:- dynamic pyrun/2.
pyrun(A, B) :-
read_term_from_atom(A, C, [variable_names(B)]),
call(C).
friend(X, Y) :-
friend_(X, Y).
friend(X, Y) :-
friend_(Y, X).
great_grandson(X, Y) :-
great_grandchild(X, Y),
male(Y).
:- dynamic friend_/2.
friend_('Abraham Lawyer', 'Cary Kiel').
friend_('Abraham Lawyer', 'Dallas Pridgen').
friend_('Abraham Lawyer', 'Darren Karp').
friend_('Abraham Lawyer', 'Elvin Streeter').
friend_('Abraham Lawyer', 'Eunice Poston').
friend_('Abraham Lawyer', 'Katelyn Lashley').
friend_('Abraham Lawyer', 'Margret Colin').
friend_('Abraham Lawyer', 'Noelia Song').
friend_('Abraham Lawyer', 'Ramona Colin').
friend_('Abraham Lawyer', 'Simon Karp').
friend_('Abraham Lawyer', 'Therese Lashley').
friend_('Adell Song', 'Bev Averill').
friend_('Adell Song', 'Eric Holm').
friend_('Adell Song', 'Garry Saari').
friend_('Adell Song', 'Ginger Averill').
friend_('Adell Song', 'Henry Colin').
friend_('Adell Song', 'Jesse Kiel').
friend_('Adell Song', 'Kyong Lashley').
friend_('Adell Song', 'Marc Karp').
friend_('Adell Song', 'Megan Kidd').
friend_('Adell Song', 'Mickey Kidd').
friend_('Adell Song', 'Noel Simonson').
friend_('Adell Song', 'Rosanna Polley').
friend_('Adell Song', 'Sharika Song').
friend_('Adell Song', 'Truman Lawyer').
friend_('Adolfo Karp', 'Aimee Kidd').
friend_('Adolfo Karp', 'Carolyn Proctor').
friend_('Adolfo Karp', 'Clayton Polley').
friend_('Adolfo Karp', 'Dillon Hulett').
friend_('Adolfo Karp', 'Emanuel Hulett').
friend_('Adolfo Karp', 'Ester Lawyer').
friend_('Adolfo Karp', 'Evelia Lashley').
friend_('Adolfo Karp', 'Jame Song').
friend_('Adolfo Karp', 'Kraig Colin').
friend_('Adolfo Karp', 'Luis Averill').
friend_('Adolfo Karp', 'Mike Song').
friend_('Adolfo Karp', 'Rayna Lashley').
friend_('Adolfo Karp', 'Ruben Pridgen').
friend_('Aimee Kidd', 'Alexa Song').
friend_('Aimee Kidd', 'Carl Potter').
friend_('Aimee Kidd', 'Carmon Song').
friend_('Aimee Kidd', 'Carolyn Proctor').
friend_('Aimee Kidd', 'Clayton Polley').
friend_('Aimee Kidd', 'Debi Holm').
friend_('Aimee Kidd', 'Dillon Hulett').
friend_('Aimee Kidd', 'Edmund Kidd').
friend_('Aimee Kidd', 'Emanuel Hulett').
friend_('Aimee Kidd', 'Erin Karp').
friend_('Aimee Kidd', 'Ester Lawyer').
friend_('Aimee Kidd', 'Evelia Lashley').
friend_('Aimee Kidd', 'Florentino Proctor').
friend_('Aimee Kidd', 'Jame Song').
friend_('Aimee Kidd', 'Kraig Colin').
friend_('Aimee Kidd', 'Landon Kiel').
friend_('Aimee Kidd', 'Luis Averill').
friend_('Aimee Kidd', 'Marguerita Streeter').
friend_('Aimee Kidd', 'Micheal Kidd').
friend_('Aimee Kidd', 'Milford Kidd').
friend_('Aimee Kidd', 'Morris Karp').
friend_('Aimee Kidd', 'Randal Kidd').
friend_('Aimee Kidd', 'Reita Ennis').
friend_('Aimee Kidd', 'Susanna Song').
friend_('Aimee Kidd', 'Tashina Streeter').
friend_('Aimee Kidd', 'Teodoro Lashley').
friend_('Aimee Kidd', 'Tiesha Proctor').
friend_('Aimee Kidd', 'Wallace Lashley').
friend_('Aimee Kidd', 'Zona Pridgen').
friend_('Alexa Song', 'Carl Potter').
friend_('Alexa Song', 'Carmon Song').
friend_('Alexa Song', 'Debi Holm').
friend_('Alexa Song', 'Edmund Kidd').
friend_('Alexa Song', 'Erin Karp').
friend_('Alexa Song', 'Ester Lawyer').
friend_('Alexa Song', 'Evelia Lashley').
friend_('Alexa Song', 'Florentino Proctor').
friend_('Alexa Song', 'Landon Kiel').
friend_('Alexa Song', 'Marguerita Streeter').
friend_('Alexa Song', 'Micheal Kidd').
friend_('Alexa Song', 'Milford Kidd').
friend_('Alexa Song', 'Morris Karp').
friend_('Alexa Song', 'Randal Kidd').
friend_('Alexa Song', 'Reita Ennis').
friend_('Alexa Song', 'Susanna Song').
friend_('Alexa Song', 'Tashina Streeter').
friend_('Alexa Song', 'Teodoro Lashley').
friend_('Alexa Song', 'Tiesha Proctor').
friend_('Archie Streeter', 'Carolyn Proctor').
friend_('Archie Streeter', 'Clayton Polley').
friend_('Archie Streeter', 'Emanuel Hulett').
friend_('Archie Streeter', 'Kraig Colin').
friend_('Archie Streeter', 'Logan Kiel').
friend_('Archie Streeter', 'Luis Averill').
friend_('Archie Streeter', 'Mike Song').
friend_('Archie Streeter', 'Rayna Lashley').
friend_('Aurelia Ennis', 'Cary Kiel').
friend_('Aurelia Ennis', 'Cecil Lawyer').
friend_('Aurelia Ennis', 'Dannielle Karp').
friend_('Aurelia Ennis', 'Dudley Colin').
friend_('Aurelia Ennis', 'Elizebeth Song').
friend_('Aurelia Ennis', 'Elvin Streeter').
friend_('Aurelia Ennis', 'Eunice Poston').
friend_('Aurelia Ennis', 'Franklin Roney').
friend_('Aurelia Ennis', 'Gemma Song').
friend_('Aurelia Ennis', 'Genesis Colin').
friend_('Aurelia Ennis', 'Heather Kiel').
friend_('Aurelia Ennis', 'Katy Polley').
friend_('Aurelia Ennis', 'Margret Colin').
friend_('Aurelia Ennis', 'Meagan Saari').
friend_('Aurelia Ennis', 'Paula Potter').
friend_('Aurelia Ennis', 'Ramona Colin').
friend_('Aurelia Ennis', 'Sylvester Song').
friend_('Aurelia Ennis', 'Zachery Poston').
friend_('Barb Hulett', 'Barton Song').
friend_('Barb Hulett', 'Cary Kiel').
friend_('Barb Hulett', 'Dallas Pridgen').
friend_('Barb Hulett', 'Danilo Colin').
friend_('Barb Hulett', 'Darren Karp').
friend_('Barb Hulett', 'Jesse Kiel').
friend_('Barb Hulett', 'Joel Lashley').
friend_('Barb Hulett', 'Katelyn Lashley').
friend_('Barb Hulett', 'Kevin Polley').
friend_('Barb Hulett', 'Kyong Lashley').
friend_('Barb Hulett', 'Lenny Polley').
friend_('Barb Hulett', 'Manda Roney').
friend_('Barb Hulett', 'Marc Karp').
friend_('Barb Hulett', 'Mckinley Colin').
friend_('Barb Hulett', 'Megan Kidd').
friend_('Barb Hulett', 'Noelia Song').
friend_('Barb Hulett', 'Princess Song').
friend_('Barb Hulett', 'Rosanna Polley').
friend_('Barb Hulett', 'Simon Karp').
friend_('Barb Hulett', 'Son Song').
friend_('Barb Hulett', 'Therese Lashley').
friend_('Barb Hulett', 'Truman Lawyer').
friend_('Barton Song', 'Dallas Pridgen').
friend_('Barton Song', 'Darren Karp').
friend_('Barton Song', 'Jesse Kiel').
friend_('Barton Song', 'Joel Lashley').
friend_('Barton Song', 'Katelyn Lashley').
friend_('Barton Song', 'Kevin Polley').
friend_('Barton Song', 'Kyong Lashley').
friend_('Barton Song', 'Lenny Polley').
friend_('Barton Song', 'Manda Roney').
friend_('Barton Song', 'Marc Karp').
friend_('Barton Song', 'Mckinley Colin').
friend_('Barton Song', 'Megan Kidd').
friend_('Barton Song', 'Noelia Song').
friend_('Barton Song', 'Rosanna Polley').
friend_('Barton Song', 'Simon Karp').
friend_('Barton Song', 'Son Song').
friend_('Barton Song', 'Therese Lashley').
friend_('Barton Song', 'Truman Lawyer').
friend_('Bev Averill', 'Eric Holm').
friend_('Bev Averill', 'Garry Saari').
friend_('Bev Averill', 'Ginger Averill').
friend_('Bev Averill', 'Henry Colin').
friend_('Bev Averill', 'Jesse Kiel').
friend_('Bev Averill', 'Kyong Lashley').
friend_('Bev Averill', 'Lesley Karp').
friend_('Bev Averill', 'Marc Karp').
friend_('Bev Averill', 'Megan Kidd').
friend_('Bev Averill', 'Mickey Kidd').
friend_('Bev Averill', 'Noel Simonson').
friend_('Bev Averill', 'Rosanna Polley').
friend_('Bev Averill', 'Sharika Song').
friend_('Bev Averill', 'Truman Lawyer').
friend_('Candy Holm', 'Cary Kiel').
friend_('Candy Holm', 'Dudley Colin').
friend_('Candy Holm', 'Eunice Poston').
friend_('Candy Holm', 'Franklin Roney').
friend_('Candy Holm', 'Margret Colin').
friend_('Candy Holm', 'Ramona Colin').
friend_('Carl Potter', 'Carmon Song').
friend_('Carl Potter', 'Debi Holm').
friend_('Carl Potter', 'Dillon Hulett').
friend_('Carl Potter', 'Edmund Kidd').
friend_('Carl Potter', 'Emanuel Hulett').
friend_('Carl Potter', 'Erin Karp').
friend_('Carl Potter', 'Ester Lawyer').
friend_('Carl Potter', 'Evelia Lashley').
friend_('Carl Potter', 'Florentino Proctor').
friend_('Carl Potter', 'Landon Kiel').
friend_('Carl Potter', 'Marguerita Streeter').
friend_('Carl Potter', 'Micheal Kidd').
friend_('Carl Potter', 'Milford Kidd').
friend_('Carl Potter', 'Morris Karp').
friend_('Carl Potter', 'Randal Kidd').
friend_('Carl Potter', 'Reita Ennis').
friend_('Carl Potter', 'Susanna Song').
friend_('Carl Potter', 'Tashina Streeter').
friend_('Carl Potter', 'Teodoro Lashley').
friend_('Carl Potter', 'Tiesha Proctor').
friend_('Carl Potter', 'Wallace Lashley').
friend_('Carmon Song', 'Debi Holm').
friend_('Carmon Song', 'Dudley Colin').
friend_('Carmon Song', 'Edmund Kidd').
friend_('Carmon Song', 'Erin Karp').
friend_('Carmon Song', 'Ester Lawyer').
friend_('Carmon Song', 'Evelia Lashley').
friend_('Carmon Song', 'Florentino Proctor').
friend_('Carmon Song', 'Franklin Roney').
friend_('Carmon Song', 'Landon Kiel').
friend_('Carmon Song', 'Marguerita Streeter').
friend_('Carmon Song', 'Micheal Kidd').
friend_('Carmon Song', 'Milford Kidd').
friend_('Carmon Song', 'Morris Karp').
friend_('Carmon Song', 'Randal Kidd').
friend_('Carmon Song', 'Reita Ennis').
friend_('Carmon Song', 'Susanna Song').
friend_('Carmon Song', 'Sylvester Song').
friend_('Carmon Song', 'Tashina Streeter').
friend_('Carmon Song', 'Teodoro Lashley').
friend_('Carmon Song', 'Tiesha Proctor').
friend_('Carolyn Proctor', 'Clayton Polley').
friend_('Carolyn Proctor', 'Dillon Hulett').
friend_('Carolyn Proctor', 'Effie Kidd').
friend_('Carolyn Proctor', 'Emanuel Hulett').
friend_('Carolyn Proctor', 'Henry Colin').
friend_('Carolyn Proctor', 'Jame Song').
friend_('Carolyn Proctor', 'Kraig Colin').
friend_('Carolyn Proctor', 'Logan Kiel').
friend_('Carolyn Proctor', 'Luis Averill').
friend_('Carolyn Proctor', 'Mike Song').
friend_('Carolyn Proctor', 'Noel Simonson').
friend_('Carolyn Proctor', 'Nora Kidd').
friend_('Carolyn Proctor', 'Rayna Lashley').
friend_('Carolyn Proctor', 'Ruben Pridgen').
friend_('Carolyn Proctor', 'Sonny Song').
friend_('Carolyn Proctor', 'Walker Colin').
friend_('Cary Kiel', 'Cecil Lawyer').
friend_('Cary Kiel', 'Dallas Pridgen').
friend_('Cary Kiel', 'Dannielle Karp').
friend_('Cary Kiel', 'Darren Karp').
friend_('Cary Kiel', 'Dudley Colin').
friend_('Cary Kiel', 'Elizebeth Song').
friend_('Cary Kiel', 'Elvin Streeter').
friend_('Cary Kiel', 'Eunice Poston').
friend_('Cary Kiel', 'Franklin Roney').
friend_('Cary Kiel', 'Gemma Song').
friend_('Cary Kiel', 'Genesis Colin').
friend_('Cary Kiel', 'Heather Kiel').
friend_('Cary Kiel', 'Katelyn Lashley').
friend_('Cary Kiel', 'Katy Polley').
friend_('Cary Kiel', 'Lenny Polley').
friend_('Cary Kiel', 'Manda Roney').
friend_('Cary Kiel', 'Margret Colin').
friend_('Cary Kiel', 'Mckinley Colin').
friend_('Cary Kiel', 'Meagan Saari').
friend_('Cary Kiel', 'Noelia Song').
friend_('Cary Kiel', 'Paula Potter').
friend_('Cary Kiel', 'Ramona Colin').
friend_('Cary Kiel', 'Randi Roney').
friend_('Cary Kiel', 'Simon Karp').
friend_('Cary Kiel', 'Son Song').
friend_('Cary Kiel', 'Sylvester Song').
friend_('Cary Kiel', 'Therese Lashley').
friend_('Cary Kiel', 'Zachery Poston').
friend_('Cecil Lawyer', 'Dannielle Karp').
friend_('Cecil Lawyer', 'Dudley Colin').
friend_('Cecil Lawyer', 'Elizebeth Song').
friend_('Cecil Lawyer', 'Elvin Streeter').
friend_('Cecil Lawyer', 'Eunice Poston').
friend_('Cecil Lawyer', 'Franklin Roney').
friend_('Cecil Lawyer', 'Gemma Song').
friend_('Cecil Lawyer', 'Genesis Colin').
friend_('Cecil Lawyer', 'Heather Kiel').
friend_('Cecil Lawyer', 'Katy Polley').
friend_('Cecil Lawyer', 'Margret Colin').
friend_('Cecil Lawyer', 'Meagan Saari').
friend_('Cecil Lawyer', 'Paula Potter').
friend_('Cecil Lawyer', 'Ramona Colin').
friend_('Cecil Lawyer', 'Sylvester Song').
friend_('Cecil Lawyer', 'Therese Lashley').
friend_('Cecil Lawyer', 'Zachery Poston').
friend_('Clayton Polley', 'Dillon Hulett').
friend_('Clayton Polley', 'Emanuel Hulett').
friend_('Clayton Polley', 'Henry Colin').
friend_('Clayton Polley', 'Jame Song').
friend_('Clayton Polley', 'Kraig Colin').
friend_('Clayton Polley', 'Logan Kiel').
friend_('Clayton Polley', 'Luis Averill').
friend_('Clayton Polley', 'Mike Song').
friend_('Clayton Polley', 'Noel Simonson').
friend_('Clayton Polley', 'Nora Kidd').
friend_('Clayton Polley', 'Rayna Lashley').
friend_('Clayton Polley', 'Ruben Pridgen').
friend_('Clayton Polley', 'Sonny Song').
friend_('Clayton Polley', 'Walker Colin').
friend_('Dallas Pridgen', 'Danilo Colin').
friend_('Dallas Pridgen', 'Darren Karp').
friend_('Dallas Pridgen', 'Elvin Streeter').
friend_('Dallas Pridgen', 'Joel Lashley').
friend_('Dallas Pridgen', 'Katelyn Lashley').
friend_('Dallas Pridgen', 'Kevin Polley').
friend_('Dallas Pridgen', 'Lenny Polley').
friend_('Dallas Pridgen', 'Manda Roney').
friend_('Dallas Pridgen', 'Mckinley Colin').
friend_('Dallas Pridgen', 'Noelia Song').
friend_('Dallas Pridgen', 'Princess Song').
friend_('Dallas Pridgen', 'Simon Karp').
friend_('Dallas Pridgen', 'Son Song').
friend_('Dallas Pridgen', 'Therese Lashley').
friend_('Danilo Colin', 'Darren Karp').
friend_('Danilo Colin', 'Lenny Polley').
friend_('Danilo Colin', 'Mckinley Colin').
friend_('Danilo Colin', 'Simon Karp').
friend_('Danilo Colin', 'Therese Lashley').
friend_('Dannielle Karp', 'Dudley Colin').
friend_('Dannielle Karp', 'Elizebeth Song').
friend_('Dannielle Karp', 'Eunice Poston').
friend_('Dannielle Karp', 'Franklin Roney').
friend_('Dannielle Karp', 'Gemma Song').
friend_('Dannielle Karp', 'Margret Colin').
friend_('Dannielle Karp', 'Paula Potter').
friend_('Dannielle Karp', 'Ramona Colin').
friend_('Dannielle Karp', 'Sylvester Song').
friend_('Dannielle Karp', 'Zachery Poston').
friend_('Darren Karp', 'Elvin Streeter').
friend_('Darren Karp', 'Jesse Kiel').
friend_('Darren Karp', 'Joel Lashley').
friend_('Darren Karp', 'Katelyn Lashley').
friend_('Darren Karp', 'Kevin Polley').
friend_('Darren Karp', 'Lenny Polley').
friend_('Darren Karp', 'Manda Roney').
friend_('Darren Karp', 'Mckinley Colin').
friend_('Darren Karp', 'Megan Kidd').
friend_('Darren Karp', 'Noelia Song').
friend_('Darren Karp', 'Princess Song').
friend_('Darren Karp', 'Simon Karp').
friend_('Darren Karp', 'Son Song').
friend_('Darren Karp', 'Therese Lashley').
friend_('Debi Holm', 'Dillon Hulett').
friend_('Debi Holm', 'Edmund Kidd').
friend_('Debi Holm', 'Erin Karp').
friend_('Debi Holm', 'Ester Lawyer').
friend_('Debi Holm', 'Evelia Lashley').
friend_('Debi Holm', 'Florentino Proctor').
friend_('Debi Holm', 'Landon Kiel').
friend_('Debi Holm', 'Marguerita Streeter').
friend_('Debi Holm', 'Milford Kidd').
friend_('Debi Holm', 'Randal Kidd').
friend_('Debi Holm', 'Reita Ennis').
friend_('Debi Holm', 'Susanna Song').
friend_('Debi Holm', 'Tashina Streeter').
friend_('Debi Holm', 'Teodoro Lashley').
friend_('Debi Holm', 'Tiesha Proctor').
friend_('Dewitt Ennis', 'Eric Holm').
friend_('Dewitt Ennis', 'Garry Saari').
friend_('Dewitt Ennis', 'Ginger Averill').
friend_('Dewitt Ennis', 'Henry Colin').
friend_('Dewitt Ennis', 'Jesse Kiel').
friend_('Dewitt Ennis', 'Kyong Lashley').
friend_('Dewitt Ennis', 'Marc Karp').
friend_('Dewitt Ennis', 'Megan Kidd').
friend_('Dewitt Ennis', 'Mickey Kidd').
friend_('Dewitt Ennis', 'Noel Simonson').
friend_('Dewitt Ennis', 'Rosanna Polley').
friend_('Dewitt Ennis', 'Sharika Song').
friend_('Dewitt Ennis', 'Truman Lawyer').
friend_('Dillon Hulett', 'Edmund Kidd').
friend_('Dillon Hulett', 'Emanuel Hulett').
friend_('Dillon Hulett', 'Erin Karp').
friend_('Dillon Hulett', 'Ester Lawyer').
friend_('Dillon Hulett', 'Evelia Lashley').
friend_('Dillon Hulett', 'Florentino Proctor').
friend_('Dillon Hulett', 'Jame Song').
friend_('Dillon Hulett', 'Kraig Colin').
friend_('Dillon Hulett', 'Logan Kiel').
friend_('Dillon Hulett', 'Luis Averill').
friend_('Dillon Hulett', 'Mike Song').
friend_('Dillon Hulett', 'Nora Kidd').
friend_('Dillon Hulett', 'Randal Kidd').
friend_('Dillon Hulett', 'Rayna Lashley').
friend_('Dillon Hulett', 'Ruben Pridgen').
friend_('Dillon Hulett', 'Sonny Song').
friend_('Dillon Hulett', 'Susanna Song').
friend_('Dillon Hulett', 'Tashina Streeter').
friend_('Dillon Hulett', 'Walker Colin').
friend_('Dudley Colin', 'Elizebeth Song').
friend_('Dudley Colin', 'Elvin Streeter').
friend_('Dudley Colin', 'Eunice Poston').
friend_('Dudley Colin', 'Franklin Roney').
friend_('Dudley Colin', 'Gemma Song').
friend_('Dudley Colin', 'Genesis Colin').
friend_('Dudley Colin', 'Heather Kiel').
friend_('Dudley Colin', 'Katy Polley').
friend_('Dudley Colin', 'Margret Colin').
friend_('Dudley Colin', 'Meagan Saari').
friend_('Dudley Colin', 'Paula Potter').
friend_('Dudley Colin', 'Ramona Colin').
friend_('Dudley Colin', 'Randal Kidd').
friend_('Dudley Colin', 'Randi Roney').
friend_('Dudley Colin', 'Susanna Song').
friend_('Dudley Colin', 'Sylvester Song').
friend_('Dudley Colin', 'Tashina Streeter').
friend_('Dudley Colin', 'Zachery Poston').
friend_('Eddy Song', 'Garry Saari').
friend_('Eddy Song', 'Ginger Averill').
friend_('Eddy Song', 'Henry Colin').
friend_('Eddy Song', 'Jesse Kiel').
friend_('Eddy Song', 'Kyong Lashley').
friend_('Eddy Song', 'Megan Kidd').
friend_('Eddy Song', 'Mickey Kidd').
friend_('Eddy Song', 'Noel Simonson').
friend_('Eddy Song', 'Rosanna Polley').
friend_('Eddy Song', 'Truman Lawyer').
friend_('Edmund Kidd', 'Emanuel Hulett').
friend_('Edmund Kidd', 'Erin Karp').
friend_('Edmund Kidd', 'Ester Lawyer').
friend_('Edmund Kidd', 'Evelia Lashley').
friend_('Edmund Kidd', 'Florentino Proctor').
friend_('Edmund Kidd', 'Landon Kiel').
friend_('Edmund Kidd', 'Marguerita Streeter').
friend_('Edmund Kidd', 'Micheal Kidd').
friend_('Edmund Kidd', 'Milford Kidd').
friend_('Edmund Kidd', 'Morris Karp').
friend_('Edmund Kidd', 'Randal Kidd').
friend_('Edmund Kidd', 'Reita Ennis').
friend_('Edmund Kidd', 'Susanna Song').
friend_('Edmund Kidd', 'Tashina Streeter').
friend_('Edmund Kidd', 'Teodoro Lashley').
friend_('Edmund Kidd', 'Tiesha Proctor').
friend_('Edmund Kidd', 'Wallace Lashley').
friend_('Effie Kidd', 'Henry Colin').
friend_('Effie Kidd', 'Kraig Colin').
friend_('Effie Kidd', 'Logan Kiel').
friend_('Effie Kidd', 'Luis Averill').
friend_('Effie Kidd', 'Noel Simonson').
friend_('Effie Kidd', 'Rayna Lashley').
friend_('Elizebeth Song', 'Elvin Streeter').
friend_('Elizebeth Song', 'Eunice Poston').
friend_('Elizebeth Song', 'Franklin Roney').
friend_('Elizebeth Song', 'Gemma Song').
friend_('Elizebeth Song', 'Genesis Colin').
friend_('Elizebeth Song', 'Heather Kiel').
friend_('Elizebeth Song', 'Katy Polley').
friend_('Elizebeth Song', 'Margret Colin').
friend_('Elizebeth Song', 'Meagan Saari').
friend_('Elizebeth Song', 'Paula Potter').
friend_('Elizebeth Song', 'Ramona Colin').
friend_('Elizebeth Song', 'Randi Roney').
friend_('Elizebeth Song', 'Sylvester Song').
friend_('Elizebeth Song', 'Zachery Poston').
friend_('Elvin Streeter', 'Eunice Poston').
friend_('Elvin Streeter', 'Franklin Roney').
friend_('Elvin Streeter', 'Gemma Song').
friend_('Elvin Streeter', 'Katelyn Lashley').
friend_('Elvin Streeter', 'Margret Colin').
friend_('Elvin Streeter', 'Paula Potter').
friend_('Elvin Streeter', 'Ramona Colin').
friend_('Elvin Streeter', 'Sylvester Song').
friend_('Elvin Streeter', 'Therese Lashley').
friend_('Elvin Streeter', 'Zachery Poston').
friend_('Emanuel Hulett', 'Erin Karp').
friend_('Emanuel Hulett', 'Ester Lawyer').
friend_('Emanuel Hulett', 'Evelia Lashley').
friend_('Emanuel Hulett', 'Jame Song').
friend_('Emanuel Hulett', 'Kraig Colin').
friend_('Emanuel Hulett', 'Logan Kiel').
friend_('Emanuel Hulett', 'Luis Averill').
friend_('Emanuel Hulett', 'Mike Song').
friend_('Emanuel Hulett', 'Nora Kidd').
friend_('Emanuel Hulett', 'Rayna Lashley').
friend_('Emanuel Hulett', 'Ruben Pridgen').
friend_('Emanuel Hulett', 'Sonny Song').
friend_('Emanuel Hulett', 'Walker Colin').
friend_('Eric Holm', 'Felipe Kiel').
friend_('Eric Holm', 'Garry Saari').
friend_('Eric Holm', 'Ginger Averill').
friend_('Eric Holm', 'Henry Colin').
friend_('Eric Holm', 'Jesse Kiel').
friend_('Eric Holm', 'Kyong Lashley').
friend_('Eric Holm', 'Lesley Karp').
friend_('Eric Holm', 'Ligia Simonson').
friend_('Eric Holm', 'Marc Karp').
friend_('Eric Holm', 'Megan Kidd').
friend_('Eric Holm', 'Mickey Kidd').
friend_('Eric Holm', 'Noel Simonson').
friend_('Eric Holm', 'Rosanna Polley').
friend_('Eric Holm', 'Sharika Song').
friend_('Eric Holm', 'Truman Lawyer').
friend_('Erin Karp', 'Ester Lawyer').
friend_('Erin Karp', 'Evelia Lashley').
friend_('Erin Karp', 'Florentino Proctor').
friend_('Erin Karp', 'Kraig Colin').
friend_('Erin Karp', 'Milford Kidd').
friend_('Erin Karp', 'Randal Kidd').
friend_('Erin Karp', 'Susanna Song').
friend_('Erin Karp', 'Tashina Streeter').
friend_('Erin Karp', 'Tiesha Proctor').
friend_('Ester Lawyer', 'Evelia Lashley').
friend_('Ester Lawyer', 'Florentino Proctor').
friend_('Ester Lawyer', 'Kraig Colin').
friend_('Ester Lawyer', 'Landon Kiel').
friend_('Ester Lawyer', 'Marguerita Streeter').
friend_('Ester Lawyer', 'Micheal Kidd').
friend_('Ester Lawyer', 'Milford Kidd').
friend_('Ester Lawyer', 'Morris Karp').
friend_('Ester Lawyer', 'Randal Kidd').
friend_('Ester Lawyer', 'Reita Ennis').
friend_('Ester Lawyer', 'Susanna Song').
friend_('Ester Lawyer', 'Tashina Streeter').
friend_('Ester Lawyer', 'Teodoro Lashley').
friend_('Ester Lawyer', 'Tiesha Proctor').
friend_('Ester Lawyer', 'Wallace Lashley').
friend_('Eunice Poston', 'Franklin Roney').
friend_('Eunice Poston', 'Gemma Song').
friend_('Eunice Poston', 'Genesis Colin').
friend_('Eunice Poston', 'Heather Kiel').
friend_('Eunice Poston', 'Katy Polley').
friend_('Eunice Poston', 'Margret Colin').
friend_('Eunice Poston', 'Meagan Saari').
friend_('Eunice Poston', 'Paula Potter').
friend_('Eunice Poston', 'Ramona Colin').
friend_('Eunice Poston', 'Randi Roney').
friend_('Eunice Poston', 'Sylvester Song').
friend_('Eunice Poston', 'Zachery Poston').
friend_('Evelia Lashley', 'Florentino Proctor').
friend_('Evelia Lashley', 'Jame Song').
friend_('Evelia Lashley', 'Landon Kiel').
friend_('Evelia Lashley', 'Marguerita Streeter').
friend_('Evelia Lashley', 'Micheal Kidd').
friend_('Evelia Lashley', 'Milford Kidd').
friend_('Evelia Lashley', 'Morris Karp').
friend_('Evelia Lashley', 'Randal Kidd').
friend_('Evelia Lashley', 'Reita Ennis').
friend_('Evelia Lashley', 'Susanna Song').
friend_('Evelia Lashley', 'Tashina Streeter').
friend_('Evelia Lashley', 'Teodoro Lashley').
friend_('Evelia Lashley', 'Tiesha Proctor').
friend_('Evelia Lashley', 'Wallace Lashley').
friend_('Evelia Lashley', 'Zona Pridgen').
friend_('Felipe Kiel', 'Garry Saari').
friend_('Felipe Kiel', 'Ginger Averill').
friend_('Felipe Kiel', 'Henry Colin').
friend_('Felipe Kiel', 'Jesse Kiel').
friend_('Felipe Kiel', 'Kyong Lashley').
friend_('Felipe Kiel', 'Marc Karp').
friend_('Felipe Kiel', 'Megan Kidd').
friend_('Felipe Kiel', 'Mickey Kidd').
friend_('Felipe Kiel', 'Noel Simonson').
friend_('Felipe Kiel', 'Rosanna Polley').
friend_('Felipe Kiel', 'Sharika Song').
friend_('Felipe Kiel', 'Truman Lawyer').
friend_('Florentino Proctor', 'Landon Kiel').
friend_('Florentino Proctor', 'Marguerita Streeter').
friend_('Florentino Proctor', 'Micheal Kidd').
friend_('Florentino Proctor', 'Milford Kidd').
friend_('Florentino Proctor', 'Morris Karp').
friend_('Florentino Proctor', 'Randal Kidd').
friend_('Florentino Proctor', 'Reita Ennis').
friend_('Florentino Proctor', 'Susanna Song').
friend_('Florentino Proctor', 'Tashina Streeter').
friend_('Florentino Proctor', 'Teodoro Lashley').
friend_('Florentino Proctor', 'Tiesha Proctor').
friend_('Franklin Roney', 'Gemma Song').
friend_('Franklin Roney', 'Genesis Colin').
friend_('Franklin Roney', 'Heather Kiel').
friend_('Franklin Roney', 'Katy Polley').
friend_('Franklin Roney', 'Margret Colin').
friend_('Franklin Roney', 'Meagan Saari').
friend_('Franklin Roney', 'Paula Potter').
friend_('Franklin Roney', 'Ramona Colin').
friend_('Franklin Roney', 'Randal Kidd').
friend_('Franklin Roney', 'Randi Roney').
friend_('Franklin Roney', 'Susanna Song').
friend_('Franklin Roney', 'Sylvester Song').
friend_('Franklin Roney', 'Tashina Streeter').
friend_('Franklin Roney', 'Zachery Poston').
friend_('Garry Saari', 'Ginger Averill').
friend_('Garry Saari', 'Henry Colin').
friend_('Garry Saari', 'Jesse Kiel').
friend_('Garry Saari', 'Kyong Lashley').
friend_('Garry Saari', 'Lesley Karp').
friend_('Garry Saari', 'Ligia Simonson').
friend_('Garry Saari', 'Logan Kiel').
friend_('Garry Saari', 'Loren Polley').
friend_('Garry Saari', 'Marc Karp').
friend_('Garry Saari', 'Megan Kidd').
friend_('Garry Saari', 'Mickey Kidd').
friend_('Garry Saari', 'Noel Simonson').
friend_('Garry Saari', 'Rayna Lashley').
friend_('Garry Saari', 'Rosanna Polley').
friend_('Garry Saari', 'Sharika Song').
friend_('Garry Saari', 'Torrie Karp').
friend_('Garry Saari', 'Truman Lawyer').
friend_('Gemma Song', 'Genesis Colin').
friend_('Gemma Song', 'Heather Kiel').
friend_('Gemma Song', 'Katy Polley').
friend_('Gemma Song', 'Margret Colin').
friend_('Gemma Song', 'Meagan Saari').
friend_('Gemma Song', 'Paula Potter').
friend_('Gemma Song', 'Ramona Colin').
friend_('Gemma Song', 'Randi Roney').
friend_('Gemma Song', 'Sylvester Song').
friend_('Gemma Song', 'Zachery Poston').
friend_('Genesis Colin', 'Heather Kiel').
friend_('Genesis Colin', 'Katy Polley').
friend_('Genesis Colin', 'Margret Colin').
friend_('Genesis Colin', 'Meagan Saari').
friend_('Genesis Colin', 'Paula Potter').
friend_('Genesis Colin', 'Ramona Colin').
friend_('Genesis Colin', 'Susanna Song').
friend_('Genesis Colin', 'Sylvester Song').
friend_('Genesis Colin', 'Zachery Poston').
friend_('Ginger Averill', 'Henry Colin').
friend_('Ginger Averill', 'Jesse Kiel').
friend_('Ginger Averill', 'Kyong Lashley').
friend_('Ginger Averill', 'Lesley Karp').
friend_('Ginger Averill', 'Ligia Simonson').
friend_('Ginger Averill', 'Logan Kiel').
friend_('Ginger Averill', 'Marc Karp').
friend_('Ginger Averill', 'Megan Kidd').
friend_('Ginger Averill', 'Mickey Kidd').
friend_('Ginger Averill', 'Noel Simonson').
friend_('Ginger Averill', 'Rosanna Polley').
friend_('Ginger Averill', 'Sharika Song').
friend_('Ginger Averill', 'Truman Lawyer').
friend_('Heather Kiel', 'Katy Polley').
friend_('Heather Kiel', 'Margret Colin').
friend_('Heather Kiel', 'Meagan Saari').
friend_('Heather Kiel', 'Paula Potter').
friend_('Heather Kiel', 'Ramona Colin').
friend_('Heather Kiel', 'Sylvester Song').
friend_('Heather Kiel', 'Zachery Poston').
friend_('Henry Colin', 'Jesse Kiel').
friend_('Henry Colin', 'Kraig Colin').
friend_('Henry Colin', 'Kyong Lashley').
friend_('Henry Colin', 'Lesley Karp').
friend_('Henry Colin', 'Ligia Simonson').
friend_('Henry Colin', 'Logan Kiel').
friend_('Henry Colin', 'Loren Polley').
friend_('Henry Colin', 'Luis Averill').
friend_('Henry Colin', 'Marc Karp').
friend_('Henry Colin', 'Megan Kidd').
friend_('Henry Colin', 'Mickey Kidd').
friend_('Henry Colin', 'Mike Song').
friend_('Henry Colin', 'Noel Simonson').
friend_('Henry Colin', 'Nora Kidd').
friend_('Henry Colin', 'Rayna Lashley').
friend_('Henry Colin', 'Rosanna Polley').
friend_('Henry Colin', 'Ruben Pridgen').
friend_('Henry Colin', 'Sharika Song').
friend_('Henry Colin', 'Torrie Karp').
friend_('Henry Colin', 'Truman Lawyer').
friend_('Jame Song', 'Kraig Colin').
friend_('Jame Song', 'Luis Averill').
friend_('Jame Song', 'Mike Song').
friend_('Jame Song', 'Rayna Lashley').
friend_('Jesse Kiel', 'Joel Lashley').
friend_('Jesse Kiel', 'Kyong Lashley').
friend_('Jesse Kiel', 'Lenny Polley').
friend_('Jesse Kiel', 'Lesley Karp').
friend_('Jesse Kiel', 'Ligia Simonson').
friend_('Jesse Kiel', 'Loren Polley').
friend_('Jesse Kiel', 'Manda Roney').
friend_('Jesse Kiel', 'Marc Karp').
friend_('Jesse Kiel', 'Mckinley Colin').
friend_('Jesse Kiel', 'Megan Kidd').
friend_('Jesse Kiel', 'Mickey Kidd').
friend_('Jesse Kiel', 'Noel Simonson').
friend_('Jesse Kiel', 'Noelia Song').
friend_('Jesse Kiel', 'Rosanna Polley').
friend_('Jesse Kiel', 'Sharika Song').
friend_('Jesse Kiel', 'Simon Karp').
friend_('Jesse Kiel', 'Therese Lashley').
friend_('Jesse Kiel', 'Truman Lawyer').
friend_('Joel Lashley', 'Katelyn Lashley').
friend_('Joel Lashley', 'Kyong Lashley').
friend_('Joel Lashley', 'Lenny Polley').
friend_('Joel Lashley', 'Manda Roney').
friend_('Joel Lashley', 'Mckinley Colin').
friend_('Joel Lashley', 'Megan Kidd').
friend_('Joel Lashley', 'Noelia Song').
friend_('Joel Lashley', 'Rosanna Polley').
friend_('Joel Lashley', 'Simon Karp').
friend_('Joel Lashley', 'Son Song').
friend_('Joel Lashley', 'Therese Lashley').
friend_('Katelyn Lashley', 'Kevin Polley').
friend_('Katelyn Lashley', 'Lenny Polley').
friend_('Katelyn Lashley', 'Manda Roney').
friend_('Katelyn Lashley', 'Mckinley Colin').
friend_('Katelyn Lashley', 'Noelia Song').
friend_('Katelyn Lashley', 'Princess Song').
friend_('Katelyn Lashley', 'Simon Karp').
friend_('Katelyn Lashley', 'Son Song').
friend_('Katelyn Lashley', 'Therese Lashley').
friend_('Katy Polley', 'Margret Colin').
friend_('Katy Polley', 'Meagan Saari').
friend_('Katy Polley', 'Paula Potter').
friend_('Katy Polley', 'Ramona Colin').
friend_('Katy Polley', 'Sylvester Song').
friend_('Katy Polley', 'Zachery Poston').
friend_('Kevin Polley', 'Lenny Polley').
friend_('Kevin Polley', 'Manda Roney').
friend_('Kevin Polley', 'Mckinley Colin').
friend_('Kevin Polley', 'Noelia Song').
friend_('Kevin Polley', 'Simon Karp').
friend_('Kevin Polley', 'Son Song').
friend_('Kevin Polley', 'Therese Lashley').
friend_('Kraig Colin', 'Logan Kiel').
friend_('Kraig Colin', 'Luis Averill').
friend_('Kraig Colin', 'Mike Song').
friend_('Kraig Colin', 'Noel Simonson').
friend_('Kraig Colin', 'Nora Kidd').
friend_('Kraig Colin', 'Rayna Lashley').
friend_('Kraig Colin', 'Ruben Pridgen').
friend_('Kraig Colin', 'Sonny Song').
friend_('Kraig Colin', 'Walker Colin').
friend_('Kyong Lashley', 'Lesley Karp').
friend_('Kyong Lashley', 'Ligia Simonson').
friend_('Kyong Lashley', 'Logan Kiel').
friend_('Kyong Lashley', 'Loren Polley').
friend_('Kyong Lashley', 'Marc Karp').
friend_('Kyong Lashley', 'Mckinley Colin').
friend_('Kyong Lashley', 'Megan Kidd').
friend_('Kyong Lashley', 'Mickey Kidd').
friend_('Kyong Lashley', 'Noel Simonson').
friend_('Kyong Lashley', 'Rosanna Polley').
friend_('Kyong Lashley', 'Sharika Song').
friend_('Kyong Lashley', 'Torrie Karp').
friend_('Kyong Lashley', 'Truman Lawyer').
friend_('Landon Kiel', 'Marguerita Streeter').
friend_('Landon Kiel', 'Milford Kidd').
friend_('Landon Kiel', 'Randal Kidd').
friend_('Landon Kiel', 'Reita Ennis').
friend_('Landon Kiel', 'Susanna Song').
friend_('Landon Kiel', 'Tashina Streeter').
friend_('Landon Kiel', 'Teodoro Lashley').
friend_('Landon Kiel', 'Tiesha Proctor').
friend_('Lenny Polley', 'Manda Roney').
friend_('Lenny Polley', 'Mckinley Colin').
friend_('Lenny Polley', 'Megan Kidd').
friend_('Lenny Polley', 'Noelia Song').
friend_('Lenny Polley', 'Princess Song').
friend_('Lenny Polley', 'Rosanna Polley').
friend_('Lenny Polley', 'Simon Karp').
friend_('Lenny Polley', 'Son Song').
friend_('Lenny Polley', 'Therese Lashley').
friend_('Lesley Karp', 'Logan Kiel').
friend_('Lesley Karp', 'Marc Karp').
friend_('Lesley Karp', 'Megan Kidd').
friend_('Lesley Karp', 'Mickey Kidd').
friend_('Lesley Karp', 'Noel Simonson').
friend_('Lesley Karp', 'Rosanna Polley').
friend_('Lesley Karp', 'Sharika Song').
friend_('Lesley Karp', 'Truman Lawyer').
friend_('Ligia Simonson', 'Marc Karp').
friend_('Ligia Simonson', 'Megan Kidd').
friend_('Ligia Simonson', 'Mickey Kidd').
friend_('Ligia Simonson', 'Noel Simonson').
friend_('Ligia Simonson', 'Rosanna Polley').
friend_('Ligia Simonson', 'Truman Lawyer').
friend_('Logan Kiel', 'Luis Averill').
friend_('Logan Kiel', 'Mickey Kidd').
friend_('Logan Kiel', 'Mike Song').
friend_('Logan Kiel', 'Noel Simonson').
friend_('Logan Kiel', 'Nora Kidd').
friend_('Logan Kiel', 'Rayna Lashley').
friend_('Logan Kiel', 'Ruben Pridgen').
friend_('Logan Kiel', 'Sonny Song').
friend_('Logan Kiel', 'Walker Colin').
friend_('Loren Polley', 'Marc Karp').
friend_('Loren Polley', 'Megan Kidd').
friend_('Loren Polley', 'Mickey Kidd').
friend_('Loren Polley', 'Noel Simonson').
friend_('Loren Polley', 'Rosanna Polley').
friend_('Loren Polley', 'Truman Lawyer').
friend_('Luis Averill', 'Mike Song').
friend_('Luis Averill', 'Noel Simonson').
friend_('Luis Averill', 'Nora Kidd').
friend_('Luis Averill', 'Rayna Lashley').
friend_('Luis Averill', 'Ruben Pridgen').
friend_('Luis Averill', 'Sonny Song').
friend_('Luis Averill', 'Walker Colin').
friend_('Manda Roney', 'Mckinley Colin').
friend_('Manda Roney', 'Megan Kidd').
friend_('Manda Roney', 'Noelia Song').
friend_('Manda Roney', 'Simon Karp').
friend_('Manda Roney', 'Son Song').
friend_('Manda Roney', 'Therese Lashley').
friend_('Marc Karp', 'Mckinley Colin').
friend_('Marc Karp', 'Megan Kidd').
friend_('Marc Karp', 'Mickey Kidd').
friend_('Marc Karp', 'Noel Simonson').
friend_('Marc Karp', 'Rosanna Polley').
friend_('Marc Karp', 'Sharika Song').
friend_('Marc Karp', 'Truman Lawyer').
friend_('Margret Colin', 'Meagan Saari').
friend_('Margret Colin', 'Paula Potter').
friend_('Margret Colin', 'Ramona Colin').
friend_('Margret Colin', 'Randi Roney').
friend_('Margret Colin', 'Sylvester Song').
friend_('Margret Colin', 'Therese Lashley').
friend_('Margret Colin', 'Zachery Poston').
friend_('Marguerita Streeter', 'Milford Kidd').
friend_('Marguerita Streeter', 'Randal Kidd').
friend_('Marguerita Streeter', 'Reita Ennis').
friend_('Marguerita Streeter', 'Susanna Song').
friend_('Marguerita Streeter', 'Tashina Streeter').
friend_('Marguerita Streeter', 'Teodoro Lashley').
friend_('Marguerita Streeter', 'Tiesha Proctor').
friend_('Mckinley Colin', 'Megan Kidd').
friend_('Mckinley Colin', 'Noelia Song').
friend_('Mckinley Colin', 'Princess Song').
friend_('Mckinley Colin', 'Rosanna Polley').
friend_('Mckinley Colin', 'Simon Karp').
friend_('Mckinley Colin', 'Son Song').
friend_('Mckinley Colin', 'Therese Lashley').
friend_('Meagan Saari', 'Paula Potter').
friend_('Meagan Saari', 'Ramona Colin').
friend_('Meagan Saari', 'Susanna Song').
friend_('Meagan Saari', 'Sylvester Song').
friend_('Meagan Saari', 'Zachery Poston').
friend_('Megan Kidd', 'Mickey Kidd').
friend_('Megan Kidd', 'Noel Simonson').
friend_('Megan Kidd', 'Noelia Song').
friend_('Megan Kidd', 'Rosanna Polley').
friend_('Megan Kidd', 'Sharika Song').
friend_('Megan Kidd', 'Simon Karp').
friend_('Megan Kidd', 'Son Song').
friend_('Megan Kidd', 'Therese Lashley').
friend_('Megan Kidd', 'Torrie Karp').
friend_('Megan Kidd', 'Truman Lawyer').
friend_('Micheal Kidd', 'Milford Kidd').
friend_('Micheal Kidd', 'Randal Kidd').
friend_('Micheal Kidd', 'Susanna Song').
friend_('Micheal Kidd', 'Tashina Streeter').
friend_('Micheal Kidd', 'Tiesha Proctor').
friend_('Mickey Kidd', 'Mike Song').
friend_('Mickey Kidd', 'Noel Simonson').
friend_('Mickey Kidd', 'Rayna Lashley').
friend_('Mickey Kidd', 'Rosanna Polley').
friend_('Mickey Kidd', 'Sharika Song').
friend_('Mickey Kidd', 'Torrie Karp').
friend_('Mickey Kidd', 'Truman Lawyer').
friend_('Mike Song', 'Noel Simonson').
friend_('Mike Song', 'Nora Kidd').
friend_('Mike Song', 'Rayna Lashley').
friend_('Mike Song', 'Ruben Pridgen').
friend_('Mike Song', 'Sonny Song').
friend_('Mike Song', 'Walker Colin').
friend_('Milford Kidd', 'Morris Karp').
friend_('Milford Kidd', 'Randal Kidd').
friend_('Milford Kidd', 'Reita Ennis').
friend_('Milford Kidd', 'Susanna Song').
friend_('Milford Kidd', 'Tashina Streeter').
friend_('Milford Kidd', 'Teodoro Lashley').
friend_('Milford Kidd', 'Tiesha Proctor').
friend_('Morris Karp', 'Randal Kidd').
friend_('Morris Karp', 'Susanna Song').
friend_('Morris Karp', 'Tashina Streeter').
friend_('Morris Karp', 'Tiesha Proctor').
friend_('Noel Simonson', 'Nora Kidd').
friend_('Noel Simonson', 'Rayna Lashley').
friend_('Noel Simonson', 'Rosanna Polley').
friend_('Noel Simonson', 'Ruben Pridgen').
friend_('Noel Simonson', 'Sharika Song').
friend_('Noel Simonson', 'Torrie Karp').
friend_('Noel Simonson', 'Truman Lawyer').
friend_('Noelia Song', 'Princess Song').
friend_('Noelia Song', 'Simon Karp').
friend_('Noelia Song', 'Son Song').
friend_('Noelia Song', 'Therese Lashley').
friend_('Nora Kidd', 'Rayna Lashley').
friend_('Nora Kidd', 'Ruben Pridgen').
friend_('Nora Kidd', 'Walker Colin').
friend_('Paula Potter', 'Ramona Colin').
friend_('Paula Potter', 'Sylvester Song').
friend_('Paula Potter', 'Zachery Poston').
friend_('Princess Song', 'Simon Karp').
friend_('Princess Song', 'Therese Lashley').
friend_('Ramona Colin', 'Randi Roney').
friend_('Ramona Colin', 'Sylvester Song').
friend_('Ramona Colin', 'Therese Lashley').
friend_('Ramona Colin', 'Zachery Poston').
friend_('Randal Kidd', 'Reita Ennis').
friend_('Randal Kidd', 'Susanna Song').
friend_('Randal Kidd', 'Sylvester Song').
friend_('Randal Kidd', 'Tashina Streeter').
friend_('Randal Kidd', 'Teodoro Lashley').
friend_('Randal Kidd', 'Tiesha Proctor').
friend_('Randal Kidd', 'Wallace Lashley').
friend_('Randi Roney', 'Sylvester Song').
friend_('Randi Roney', 'Zachery Poston').
friend_('Rayna Lashley', 'Ruben Pridgen').
friend_('Rayna Lashley', 'Sonny Song').
friend_('Rayna Lashley', 'Walker Colin').
friend_('Reita Ennis', 'Susanna Song').
friend_('Reita Ennis', 'Tashina Streeter').
friend_('Reita Ennis', 'Teodoro Lashley').
friend_('Reita Ennis', 'Tiesha Proctor').
friend_('Rosanna Polley', 'Sharika Song').
friend_('Rosanna Polley', 'Simon Karp').
friend_('Rosanna Polley', 'Torrie Karp').
friend_('Rosanna Polley', 'Truman Lawyer').
friend_('Ruben Pridgen', 'Sonny Song').
friend_('Ruben Pridgen', 'Walker Colin').
friend_('Sharika Song', 'Truman Lawyer').
friend_('Simon Karp', 'Son Song').
friend_('Simon Karp', 'Therese Lashley').
friend_('Son Song', 'Therese Lashley').
friend_('Susanna Song', 'Sylvester Song').
friend_('Susanna Song', 'Tashina Streeter').
friend_('Susanna Song', 'Teodoro Lashley').
friend_('Susanna Song', 'Tiesha Proctor').
friend_('Susanna Song', 'Wallace Lashley').
friend_('Susanna Song', 'Zachery Poston').
friend_('Sylvester Song', 'Tashina Streeter').
friend_('Sylvester Song', 'Zachery Poston').
friend_('Tashina Streeter', 'Teodoro Lashley').
friend_('Tashina Streeter', 'Tiesha Proctor').
friend_('Tashina Streeter', 'Wallace Lashley').
friend_('Teodoro Lashley', 'Tiesha Proctor').
friend_('Torrie Karp', 'Truman Lawyer').
:- dynamic expand_answer/2.
:- multifile expand_answer/2.
great_granddaughter(X, Y) :-
great_grandchild(X, Y),
female(Y).
great_grandchild(X, Y) :-
great_grandparent(Y, X).
:- dynamic exception/3.
:- multifile exception/3.
great_grandfather(X, Y) :-
great_grandparent(X, Y),
male(Y).
:- dynamic type/2.
type('Abraham Lawyer', person).
type('Adell Song', person).
type('Adolfo Karp', person).
type('Aimee Kidd', person).
type('Alexa Song', person).
type('Archie Streeter', person).
type('Aurelia Ennis', person).
type('Barb Hulett', person).
type('Barton Song', person).
type('Bev Averill', person).
type('Candy Holm', person).
type('Carl Potter', person).
type('Carmon Song', person).
type('Carolyn Proctor', person).
type('Cary Kiel', person).
type('Cecil Lawyer', person).
type('Clayton Polley', person).
type('Dallas Pridgen', person).
type('Danilo Colin', person).
type('Dannielle Karp', person).
type('Darren Karp', person).
type('Debi Holm', person).
type('Dewitt Ennis', person).
type('Dillon Hulett', person).
type('Dudley Colin', person).
type('Eddy Song', person).
type('Edmund Kidd', person).
type('Effie Kidd', person).
type('Elizebeth Song', person).
type('Elvin Streeter', person).
type('Emanuel Hulett', person).
type('Eric Holm', person).
type('Erin Karp', person).
type('Ester Lawyer', person).
type('Eunice Poston', person).
type('Evelia Lashley', person).
type('Felipe Kiel', person).
type('Florentino Proctor', person).
type('Franklin Roney', person).
type('Garry Saari', person).
type('Gemma Song', person).
type('Genesis Colin', person).
type('Ginger Averill', person).
type('Heather Kiel', person).
type('Henry Colin', person).
type('Jame Song', person).
type('Jesse Kiel', person).
type('Joel Lashley', person).
type('Katelyn Lashley', person).
type('Katy Polley', person).
type('Kevin Polley', person).
type('Kraig Colin', person).
type('Kyong Lashley', person).
type('Landon Kiel', person).
type('Lenny Polley', person).
type('Lesley Karp', person).
type('Ligia Simonson', person).
type('Logan Kiel', person).
type('Loren Polley', person).
type('Luis Averill', person).
type('Manda Roney', person).
type('Marc Karp', person).
type('Margret Colin', person).
type('Marguerita Streeter', person).
type('Mckinley Colin', person).
type('Meagan Saari', person).
type('Megan Kidd', person).
type('Micheal Kidd', person).
type('Mickey Kidd', person).
type('Mike Song', person).
type('Milford Kidd', person).
type('Morris Karp', person).
type('Noel Simonson', person).
type('Noelia Song', person).
type('Nora Kidd', person).
type('Paula Potter', person).
type('Princess Song', person).
type('Ramona Colin', person).
type('Randal Kidd', person).
type('Randi Roney', person).
type('Rayna Lashley', person).
type('Reita Ennis', person).
type('Rosanna Polley', person).
type('Ruben Pridgen', person).
type('Sharika Song', person).
type('Simon Karp', person).
type('Son Song', person).
type('Sonny Song', person).
type('Susanna Song', person).
type('Sylvester Song', person).
type('Tashina Streeter', person).
type('Teodoro Lashley', person).
type('Therese Lashley', person).
type('Tiesha Proctor', person).
type('Torrie Karp', person).
type('Truman Lawyer', person).
type('Walker Colin', person).
type('Wallace Lashley', person).
type('Zachery Poston', person).
type('Zona Pridgen', person).
great_grandmother(X, Y) :-
great_grandparent(X, Y),
female(Y).
:- dynamic message_hook/3.
:- multifile message_hook/3.
:- dynamic dob/2.
dob('Abraham Lawyer', '0221-07-05').
dob('Adell Song', '0325-01-23').
dob('Adolfo Karp', '0296-04-02').
dob('Aimee Kidd', '0240-10-02').
dob('Alexa Song', '0302-01-22').
dob('Archie Streeter', '0296-04-25').
dob('Aurelia Ennis', '0270-11-16').
dob('Barb Hulett', '0203-09-09').
dob('Barton Song', '0270-12-17').
dob('Bev Averill', '0237-12-04').
dob('Candy Holm', '0181-02-28').
dob('Carl Potter', '0184-01-11').
dob('Carmon Song', '0299-05-26').
dob('Carolyn Proctor', '0245-02-23').
dob('Cary Kiel', '0216-03-18').
dob('Cecil Lawyer', '0250-10-22').
dob('Clayton Polley', '0300-09-14').
dob('Dallas Pridgen', '0281-10-07').
dob('Danilo Colin', '0219-08-09').
dob('Dannielle Karp', '0271-02-02').
dob('Darren Karp', '0328-12-27').
dob('Debi Holm', '0214-09-15').
dob('Dewitt Ennis', '0267-08-01').
dob('Dillon Hulett', '0202-10-19').
dob('Dudley Colin', '0276-12-28').
dob('Eddy Song', '0245-01-05').
dob('Edmund Kidd', '0240-12-18').
dob('Effie Kidd', '0266-06-14').
dob('Elizebeth Song', '0330-03-14').
dob('Elvin Streeter', '0317-12-19').
dob('Emanuel Hulett', '0227-09-18').
dob('Eric Holm', '0182-06-08').
dob('Erin Karp', '0298-05-26').
dob('Ester Lawyer', '0222-07-08').
dob('Eunice Poston', '0220-06-18').
dob('Evelia Lashley', '0243-06-09').
dob('Felipe Kiel', '0245-11-15').
dob('Florentino Proctor', '0244-03-12').
dob('Franklin Roney', '0301-03-23').
dob('Garry Saari', '0251-09-02').
dob('Gemma Song', '0296-04-15').
dob('Genesis Colin', '0245-10-02').
dob('Ginger Averill', '0268-03-12').
dob('Heather Kiel', '0215-06-06').
dob('Henry Colin', '0274-08-19').
dob('Jame Song', '0271-07-23').
dob('Jesse Kiel', '0188-11-05').
dob('Joel Lashley', '0211-12-08').
dob('Katelyn Lashley', '0234-12-01').
dob('Katy Polley', '0274-05-20').
dob('Kevin Polley', '0303-07-16').
dob('Kraig Colin', '0252-06-30').
dob('Kyong Lashley', '0272-03-17').
dob('Landon Kiel', '0189-03-08').
dob('Lenny Polley', '0275-05-08').
dob('Lesley Karp', '0269-05-08').
dob('Ligia Simonson', '0270-07-02').
dob('Logan Kiel', '0222-02-22').
dob('Loren Polley', '0251-02-02').
dob('Luis Averill', '0238-04-28').
dob('Manda Roney', '0301-10-05').
dob('Marc Karp', '0321-09-14').
dob('Margret Colin', '0274-12-11').
dob('Marguerita Streeter', '0321-04-29').
dob('Mckinley Colin', '0246-10-18').
dob('Meagan Saari', '0249-02-11').
dob('Megan Kidd', '0191-02-02').
dob('Micheal Kidd', '0215-06-22').
dob('Mickey Kidd', '0191-07-28').
dob('Mike Song', '0299-11-20').
dob('Milford Kidd', '0217-01-22').
dob('Morris Karp', '0298-04-09').
dob('Noel Simonson', '0272-01-20').
dob('Noelia Song', '0246-08-07').
dob('Nora Kidd', '0213-01-28').
dob('Paula Potter', '0182-02-01').
dob('Princess Song', '0270-07-21').
dob('Ramona Colin', '0219-09-08').
dob('Randal Kidd', '0244-05-11').
dob('Randi Roney', '0335-02-06').
dob('Rayna Lashley', '0268-09-12').
dob('Reita Ennis', '0300-02-01').
dob('Rosanna Polley', '0250-10-17').
dob('Ruben Pridgen', '0278-09-01').
dob('Sharika Song', '0274-07-27').
dob('Simon Karp', '0318-07-11').
dob('Son Song', '0299-09-28').
dob('Sonny Song', '0303-11-01').
dob('Susanna Song', '0272-11-01').
dob('Sylvester Song', '0334-06-06').
dob('Tashina Streeter', '0297-08-25').
dob('Teodoro Lashley', '0273-04-18').
dob('Therese Lashley', '0212-01-24').
dob('Tiesha Proctor', '0276-01-09').
dob('Torrie Karp', '0295-06-09').
dob('Truman Lawyer', '0249-03-07').
dob('Walker Colin', '0245-03-03').
dob('Wallace Lashley', '0245-04-15').
dob('Zachery Poston', '0219-01-11').
dob('Zona Pridgen', '0315-04-22').
great_grandparent(X, Y) :-
grandparent(X, Z),
parent(Z, Y).
:- dynamic job/2.
job('Abraham Lawyer', 'field seismologist').
job('Adell Song', 'therapist, drama').
job('Adolfo Karp', 'sport and exercise psychologist').
job('Aimee Kidd', 'conservator, furniture').
job('Alexa Song', 'merchant navy officer').
job('Archie Streeter', 'trade mark attorney').
job('Aurelia Ennis', 'public relations account executive').
job('Barb Hulett', 'telecommunications researcher').
job('Barton Song', 'brewing technologist').
job('Bev Averill', 'trading standards officer').
job('Candy Holm', 'administrator, civil service').
job('Carl Potter', 'psychotherapist, child').
job('Carmon Song', 'futures trader').
job('Carolyn Proctor', 'structural engineer').
job('Cary Kiel', 'facilities manager').
job('Cecil Lawyer', 'engineer, agricultural').
job('Clayton Polley', 'psychotherapist, dance movement').
job('Dallas Pridgen', 'sound technician, broadcasting/film/video').
job('Danilo Colin', 'stage manager').
job('Dannielle Karp', 'publishing copy').
job('Darren Karp', 'occupational psychologist').
job('Debi Holm', dentist).
job('Dewitt Ennis', 'exhibition designer').
job('Dillon Hulett', 'designer, blown glass/stained glass').
job('Dudley Colin', 'scientist, research (medical)').
job('Eddy Song', 'newspaper journalist').
job('Edmund Kidd', 'administrator, local government').
job('Effie Kidd', 'bonds trader').
job('Elizebeth Song', 'designer, jewellery').
job('Elvin Streeter', 'therapist, art').
job('Emanuel Hulett', archivist).
job('Eric Holm', illustrator).
job('Erin Karp', 'airline pilot').
job('Ester Lawyer', 'geophysical data processor').
job('Eunice Poston', 'public librarian').
job('Evelia Lashley', 'therapist, nutritional').
job('Felipe Kiel', 'naval architect').
job('Florentino Proctor', physiotherapist).
job('Franklin Roney', 'nutritional therapist').
job('Garry Saari', 'technical author').
job('Gemma Song', 'producer, television/film/video').
job('Genesis Colin', contractor).
job('Ginger Averill', 'medical secretary').
job('Heather Kiel', 'chief strategy officer').
job('Henry Colin', 'animal technologist').
job('Jame Song', copy).
job('Jesse Kiel', 'research officer, trade union').
job('Joel Lashley', 'engineer, water').
job('Katelyn Lashley', 'further education lecturer').
job('Katy Polley', 'press photographer').
job('Kevin Polley', illustrator).
job('Kraig Colin', 'pharmacist, community').
job('Kyong Lashley', 'runner, broadcasting/film/video').
job('Landon Kiel', 'nature conservation officer').
job('Lenny Polley', 'teacher, secondary school').
job('Lesley Karp', make).
job('Ligia Simonson', 'social research officer, government').
job('Logan Kiel', 'textile designer').
job('Loren Polley', orthoptist).
job('Luis Averill', 'television/film/video producer').
job('Manda Roney', 'exhibition designer').
job('Marc Karp', 'legal secretary').
job('Margret Colin', 'air cabin crew').
job('Marguerita Streeter', 'health service manager').
job('Mckinley Colin', 'trading standards officer').
job('Meagan Saari', 'development worker, community').
job('Megan Kidd', 'journalist, newspaper').
job('Micheal Kidd', 'special educational needs teacher').
job('Mickey Kidd', 'teacher, music').
job('Mike Song', 'teacher, adult education').
job('Milford Kidd', 'civil service administrator').
job('Morris Karp', 'engineer, mining').
job('Noel Simonson', 'teacher, secondary school').
job('Noelia Song', 'geologist, engineering').
job('Nora Kidd', 'higher education careers adviser').
job('Paula Potter', 'company secretary').
job('Princess Song', 'biomedical scientist').
job('Ramona Colin', 'race relations officer').
job('Randal Kidd', 'radio broadcast assistant').
job('Randi Roney', 'chartered management accountant').
job('Rayna Lashley', 'local government officer').
job('Reita Ennis', 'broadcast engineer').
job('Rosanna Polley', 'paediatric nurse').
job('Ruben Pridgen', dentist).
job('Sharika Song', 'advertising account planner').
job('Simon Karp', 'hospital doctor').
job('Son Song', physiotherapist).
job('Sonny Song', pathologist).
job('Susanna Song', 'commissioning editor').
job('Sylvester Song', 'armed forces operational officer').
job('Tashina Streeter', 'trade union research officer').
job('Teodoro Lashley', 'volunteer coordinator').
job('Therese Lashley', 'armed forces technical officer').
job('Tiesha Proctor', 'multimedia programmer').
job('Torrie Karp', 'theatre director').
job('Truman Lawyer', lawyer).
job('Walker Colin', 'structural engineer').
job('Wallace Lashley', 'health promotion specialist').
job('Zachery Poston', 'risk analyst').
job('Zona Pridgen', 'fashion designer').
:- dynamic prolog_file_type/2.
:- multifile prolog_file_type/2.
prolog_file_type(pl, prolog).
prolog_file_type(prolog, prolog).
prolog_file_type(qlf, prolog).
prolog_file_type(qlf, qlf).
prolog_file_type(A, executable) :-
system:current_prolog_flag(shared_object_extension, A).
prolog_file_type(dylib, executable) :-
system:current_prolog_flag(apple, true).
grandson(X, Y) :-
grandchild(X, Y),
male(Y).
:- dynamic hobby/2.
hobby('Abraham Lawyer', 'amateur astronomy').
hobby('Adell Song', crystals).
hobby('Adolfo Karp', 'stamp collecting').
hobby('Aimee Kidd', trainspotting).
hobby('Alexa Song', animation).
hobby('Archie Streeter', esports).
hobby('Aurelia Ennis', 'magnet fishing').
hobby('Barb Hulett', billiards).
hobby('Barton Song', 'iceboat racing').
hobby('Bev Averill', aerospace).
hobby('Candy Holm', learning).
hobby('Carl Potter', meteorology).
hobby('Carmon Song', learning).
hobby('Carolyn Proctor', trapshooting).
hobby('Cary Kiel', shoes).
hobby('Cecil Lawyer', meteorology).
hobby('Clayton Polley', birdwatching).
hobby('Dallas Pridgen', mahjong).
hobby('Danilo Colin', 'horseback riding').
hobby('Dannielle Karp', birdwatching).
hobby('Darren Karp', 'air sports').
hobby('Debi Holm', publishing).
hobby('Dewitt Ennis', fossicking).
hobby('Dillon Hulett', dolls).
hobby('Dudley Colin', 'web design').
hobby('Eddy Song', tourism).
hobby('Edmund Kidd', 'lapel pins').
hobby('Effie Kidd', 'slot car').
hobby('Elizebeth Song', audiophile).
hobby('Elvin Streeter', 'model united nations').
hobby('Emanuel Hulett', 'insect collecting').
hobby('Eric Holm', baking).
hobby('Erin Karp', 'mineral collecting').
hobby('Ester Lawyer', 'stone collecting').
hobby('Eunice Poston', dandyism).
hobby('Evelia Lashley', 'mineral collecting').
hobby('Felipe Kiel', 'digital hoarding').
hobby('Florentino Proctor', reading).
hobby('Franklin Roney', pinball).
hobby('Garry Saari', 'dog sport').
hobby('Gemma Song', research).
hobby('Genesis Colin', 'butterfly watching').
hobby('Ginger Averill', research).
hobby('Heather Kiel', 'stamp collecting').
hobby('Henry Colin', jogging).
hobby('Jame Song', rowing).
hobby('Jesse Kiel', 'sport stacking').
hobby('Joel Lashley', audiophile).
hobby('Katelyn Lashley', 'seashell collecting').
hobby('Katy Polley', skateboarding).
hobby('Kevin Polley', lomography).
hobby('Kraig Colin', 'ant farming').
hobby('Kyong Lashley', 'rock tumbling').
hobby('Landon Kiel', birdwatching).
hobby('Lenny Polley', 'model aircraft').
hobby('Lesley Karp', 'die-cast toy').
hobby('Ligia Simonson', 'metal detecting').
hobby('Logan Kiel', learning).
hobby('Loren Polley', phillumeny).
hobby('Luis Averill', cycling).
hobby('Manda Roney', benchmarking).
hobby('Marc Karp', sociology).
hobby('Margret Colin', shoes).
hobby('Marguerita Streeter', jujitsu).
hobby('Mckinley Colin', tourism).
hobby('Meagan Saari', 'ant farming').
hobby('Megan Kidd', 'slot car racing').
hobby('Micheal Kidd', 'flower collecting and pressing').
hobby('Mickey Kidd', videography).
hobby('Mike Song', powerlifting).
hobby('Milford Kidd', picnicking).
hobby('Morris Karp', 'stone collecting').
hobby('Noel Simonson', 'sea glass collecting').
hobby('Noelia Song', 'radio-controlled model playing').
hobby('Nora Kidd', badminton).
hobby('Paula Potter', 'insect collecting').
hobby('Princess Song', animation).
hobby('Ramona Colin', bowling).
hobby('Randal Kidd', 'disc golf').
hobby('Randi Roney', 'model aircraft').
hobby('Rayna Lashley', 'ant farming').
hobby('Reita Ennis', geography).
hobby('Rosanna Polley', meditation).
hobby('Ruben Pridgen', 'slot car racing').
hobby('Sharika Song', 'stone collecting').
hobby('Simon Karp', roundnet).
hobby('Son Song', chemistry).
hobby('Sonny Song', 'tether car').
hobby('Susanna Song', 'roller skating').
hobby('Sylvester Song', 'aircraft spotting').
hobby('Tashina Streeter', 'martial arts').
hobby('Teodoro Lashley', rowing).
hobby('Therese Lashley', philately).
hobby('Tiesha Proctor', research).
hobby('Torrie Karp', 'butterfly watching').
hobby('Truman Lawyer', neuroscience).
hobby('Walker Colin', judo).
hobby('Wallace Lashley', cycling).
hobby('Zachery Poston', myrmecology).
hobby('Zona Pridgen', 'auto audiophilia').
granddaughter(X, Y) :-
grandchild(X, Y),
female(Y).
:- dynamic portray/1.
:- multifile portray/1.
:- dynamic prolog_load_file/2.
:- multifile prolog_load_file/2.
:- dynamic goal_expansion/2.
:- multifile goal_expansion/2.
grandchild(X, Y) :-
grandparent(Y, X).
great_uncle(X, Y) :-
grandparent(X, A),
brother(A, Y).
:- dynamic resource/2.
:- multifile resource/2.
:- thread_local thread_message_hook/3.
:- dynamic thread_message_hook/3.
:- volatile thread_message_hook/3.
great_aunt(X, Y) :-
grandparent(X, A),
sister(A, Y).
:- dynamic attribute/1.
attribute('field seismologist').
attribute('amateur astronomy').
attribute('therapist, drama').
attribute(crystals).
attribute('sport and exercise psychologist').
attribute('stamp collecting').
attribute('conservator, furniture').
attribute(trainspotting).
attribute('merchant navy officer').
attribute(animation).
attribute('trade mark attorney').
attribute(esports).
attribute('public relations account executive').
attribute('magnet fishing').
attribute('telecommunications researcher').
attribute(billiards).
attribute('brewing technologist').
attribute('iceboat racing').
attribute('trading standards officer').
attribute(aerospace).
attribute('administrator, civil service').
attribute(learning).
attribute('psychotherapist, child').
attribute(meteorology).
attribute('futures trader').
attribute(learning).
attribute('structural engineer').
attribute(trapshooting).
attribute('facilities manager').
attribute(shoes).
attribute('engineer, agricultural').
attribute(meteorology).
attribute('psychotherapist, dance movement').
attribute(birdwatching).
attribute('sound technician, broadcasting/film/video').
attribute(mahjong).
attribute('stage manager').
attribute('horseback riding').
attribute('publishing copy').
attribute(birdwatching).
attribute('occupational psychologist').
attribute('air sports').
attribute(dentist).
attribute(publishing).
attribute('exhibition designer').
attribute(fossicking).
attribute('designer, blown glass/stained glass').
attribute(dolls).
attribute('scientist, research (medical)').
attribute('web design').
attribute('newspaper journalist').
attribute(tourism).
attribute('administrator, local government').
attribute('lapel pins').
attribute('bonds trader').
attribute('slot car').
attribute('designer, jewellery').
attribute(audiophile).
attribute('therapist, art').
attribute('model united nations').
attribute(archivist).
attribute('insect collecting').
attribute(illustrator).
attribute(baking).
attribute('airline pilot').
attribute('mineral collecting').
attribute('geophysical data processor').
attribute('stone collecting').
attribute('public librarian').
attribute(dandyism).
attribute('therapist, nutritional').
attribute('mineral collecting').
attribute('naval architect').
attribute('digital hoarding').
attribute(physiotherapist).
attribute(reading).
attribute('nutritional therapist').
attribute(pinball).
attribute('technical author').
attribute('dog sport').
attribute('producer, television/film/video').
attribute(research).
attribute(contractor).
attribute('butterfly watching').
attribute('medical secretary').
attribute(research).
attribute('chief strategy officer').
attribute('stamp collecting').
attribute('animal technologist').
attribute(jogging).
attribute(copy).
attribute(rowing).
attribute('research officer, trade union').
attribute('sport stacking').
attribute('engineer, water').
attribute(audiophile).
attribute('further education lecturer').
attribute('seashell collecting').
attribute('press photographer').
attribute(skateboarding).
attribute(illustrator).
attribute(lomography).
attribute('pharmacist, community').
attribute('ant farming').
attribute('runner, broadcasting/film/video').
attribute('rock tumbling').
attribute('nature conservation officer').
attribute(birdwatching).
attribute('teacher, secondary school').
attribute('model aircraft').
attribute(make).
attribute('die-cast toy').
attribute('social research officer, government').
attribute('metal detecting').
attribute('textile designer').
attribute(learning).
attribute(orthoptist).
attribute(phillumeny).
attribute('television/film/video producer').
attribute(cycling).
attribute('exhibition designer').
attribute(benchmarking).
attribute('legal secretary').
attribute(sociology).
attribute('air cabin crew').
attribute(shoes).
attribute('health service manager').
attribute(jujitsu).
attribute('trading standards officer').
attribute(tourism).
attribute('development worker, community').
attribute('ant farming').
attribute('journalist, newspaper').
attribute('slot car racing').
attribute('special educational needs teacher').
attribute('flower collecting and pressing').
attribute('teacher, music').
attribute(videography).
attribute('teacher, adult education').
attribute(powerlifting).
attribute('civil service administrator').
attribute(picnicking).
attribute('engineer, mining').
attribute('stone collecting').
attribute('teacher, secondary school').
attribute('sea glass collecting').
attribute('geologist, engineering').
attribute('radio-controlled model playing').
attribute('higher education careers adviser').
attribute(badminton).
attribute('company secretary').
attribute('insect collecting').
attribute('biomedical scientist').
attribute(animation).
attribute('race relations officer').
attribute(bowling).
attribute('radio broadcast assistant').
attribute('disc golf').
attribute('chartered management accountant').
attribute('model aircraft').
attribute('local government officer').
attribute('ant farming').
attribute('broadcast engineer').
attribute(geography).
attribute('paediatric nurse').
attribute(meditation).
attribute(dentist).
attribute('slot car racing').
attribute('advertising account planner').
attribute('stone collecting').
attribute('hospital doctor').
attribute(roundnet).
attribute(physiotherapist).
attribute(chemistry).
attribute(pathologist).
attribute('tether car').
attribute('commissioning editor').
attribute('roller skating').
attribute('armed forces operational officer').
attribute('aircraft spotting').
attribute('trade union research officer').
attribute('martial arts').
attribute('volunteer coordinator').
attribute(rowing).
attribute('armed forces technical officer').
attribute(philately).
attribute('multimedia programmer').
attribute(research).
attribute('theatre director').
attribute('butterfly watching').
attribute(lawyer).
attribute(neuroscience).
attribute('structural engineer').
attribute(judo).
attribute('health promotion specialist').
attribute(cycling).
attribute('risk analyst').
attribute(myrmecology).
attribute('fashion designer').
attribute('auto audiophilia').
grandfather(X, Y) :-
grandparent(X, Y),
male(Y).
female(X) :-
gender(X, female).
:- multifile prolog_predicate_name/2.
grandmother(X, Y) :-
grandparent(X, Y),
female(Y).
:- dynamic resource/3.
:- multifile resource/3.
grandparent(X, Y) :-
parent(X, Z),
parent(Z, Y).
:- dynamic save_all_clauses_to_file/1.
save_all_clauses_to_file(A) :-
open(A, write, B),
set_output(B),
listing,
close(B).
nephew(X, Y) :-
sibling(X, A),
son(A, Y).
|