Spaces:
Sleeping
Sleeping
File size: 441,466 Bytes
bb04c5f | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 2899 2900 2901 2902 2903 2904 2905 2906 2907 2908 2909 2910 2911 2912 2913 2914 2915 2916 2917 2918 2919 2920 2921 2922 2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2937 2938 2939 2940 2941 2942 2943 2944 2945 2946 2947 2948 2949 2950 2951 2952 2953 2954 2955 2956 2957 2958 2959 2960 2961 2962 2963 2964 2965 2966 2967 2968 2969 2970 2971 2972 2973 2974 2975 2976 2977 2978 2979 2980 2981 2982 2983 2984 2985 2986 2987 2988 2989 2990 2991 2992 2993 2994 2995 2996 2997 2998 2999 3000 3001 3002 3003 3004 3005 3006 3007 3008 3009 3010 3011 3012 3013 3014 3015 3016 3017 3018 3019 3020 3021 3022 3023 3024 3025 3026 3027 3028 3029 3030 3031 3032 3033 3034 3035 3036 3037 3038 3039 3040 3041 3042 3043 3044 3045 3046 3047 3048 3049 3050 3051 3052 3053 3054 3055 3056 3057 3058 3059 3060 3061 3062 3063 3064 3065 3066 3067 3068 3069 3070 3071 3072 3073 3074 3075 3076 3077 3078 3079 3080 3081 3082 3083 3084 3085 3086 3087 3088 3089 3090 3091 3092 3093 3094 3095 3096 3097 3098 3099 3100 3101 3102 3103 3104 3105 3106 3107 3108 3109 3110 3111 3112 3113 3114 3115 3116 3117 3118 3119 3120 3121 3122 3123 3124 3125 3126 3127 3128 3129 3130 3131 3132 3133 3134 3135 3136 3137 3138 3139 3140 3141 3142 3143 3144 3145 3146 3147 3148 3149 3150 3151 3152 3153 3154 3155 3156 3157 3158 3159 3160 3161 3162 3163 3164 3165 3166 3167 3168 3169 3170 3171 3172 3173 3174 3175 3176 3177 3178 3179 3180 3181 3182 3183 3184 3185 3186 3187 3188 3189 3190 3191 3192 3193 3194 3195 3196 3197 3198 3199 3200 3201 3202 3203 3204 3205 3206 3207 3208 3209 3210 3211 3212 3213 3214 3215 3216 3217 3218 3219 3220 3221 3222 3223 3224 3225 3226 3227 3228 3229 3230 3231 3232 3233 3234 3235 3236 3237 3238 | {"_id": "PLAIN-3", "text": "Breast Cancer Cells Feed on Cholesterol", "metadata": {"url": "http://nutritionfacts.org/2015/07/14/breast-cancer-cells-feed-on-cholesterol/"}}
{"_id": "PLAIN-4", "text": "Using Diet to Treat Asthma and Eczema", "metadata": {"url": "http://nutritionfacts.org/2015/07/09/using-diet-to-treat-asthma-and-eczema/"}}
{"_id": "PLAIN-5", "text": "Treating Asthma With Plants vs. Pills", "metadata": {"url": "http://nutritionfacts.org/2015/07/07/treating-asthma-with-plants-vs-pills/"}}
{"_id": "PLAIN-6", "text": "How Fruits and Vegetables Can Treat Asthma", "metadata": {"url": "http://nutritionfacts.org/2015/07/02/how-fruits-and-vegetables-can-treat-asthma/"}}
{"_id": "PLAIN-7", "text": "How Fruits and Vegetables Can Prevent Asthma", "metadata": {"url": "http://nutritionfacts.org/2015/06/30/how-fruits-and-vegetables-can-prevent-asthma/"}}
{"_id": "PLAIN-8", "text": "Our Tax Dollars Subsidize Unhealthy Foods", "metadata": {"url": "http://nutritionfacts.org/2015/06/25/our-tax-dollars-subsidize-unhealthy-foods/"}}
{"_id": "PLAIN-9", "text": "Reducing Arsenic in Chicken and Rice", "metadata": {"url": "http://nutritionfacts.org/2015/06/23/reducing-arsenic-in-chicken-and-rice/"}}
{"_id": "PLAIN-10", "text": "How Contaminated Are Our Children?", "metadata": {"url": "http://nutritionfacts.org/2015/06/18/how-contaminated-are-our-children/"}}
{"_id": "PLAIN-14", "text": "Blood Type Diet Perceived as \"Crass Fraud\"", "metadata": {"url": "http://nutritionfacts.org/2015/06/04/blood-type-diet-debunked/"}}
{"_id": "PLAIN-15", "text": "Why Do Heart Doctors Favor Surgery and Drugs Over Diet?", "metadata": {"url": "http://nutritionfacts.org/2015/06/02/why-do-heart-doctors-favor-surgery-and-drugs-over-diet/"}}
{"_id": "PLAIN-16", "text": "Phytates in Beans: Anti-Nutrient or Anti-Cancer?", "metadata": {"url": "http://nutritionfacts.org/2015/05/28/phytates-in-beans-anti-nutrient-or-anti-cancer/"}}
{"_id": "PLAIN-17", "text": "How Phytates Fight Cancer Cells", "metadata": {"url": "http://nutritionfacts.org/2015/05/26/how-phytates-fight-cancer-cells/"}}
{"_id": "PLAIN-18", "text": "Colon Cancer Prevention: Is it the Fiber or the Phytates?", "metadata": {"url": "http://nutritionfacts.org/2015/05/21/colon-cancer-prevention-is-it-the-fiber-or-the-phytates/"}}
{"_id": "PLAIN-19", "text": "Low Carb Diets Found to Feed Heart Disease", "metadata": {"url": "http://nutritionfacts.org/2015/05/19/low-carb-diets-and-coronary-blood-flow/"}}
{"_id": "PLAIN-20", "text": "How Curry Can Kill Cancer Cells", "metadata": {"url": "http://nutritionfacts.org/2015/05/12/how-curry-can-kill-cancer-cells/"}}
{"_id": "PLAIN-21", "text": "Testing Turmeric on Smokers", "metadata": {"url": "http://nutritionfacts.org/2015/05/07/testing-turmeric-on-smokers/"}}
{"_id": "PLAIN-24", "text": "Alkylphenol Endocrine Disruptors and Allergies", "metadata": {"url": "http://nutritionfacts.org/2015/04/23/alkylphenol-endocrine-disruptors-and-allergies/"}}
{"_id": "PLAIN-25", "text": "Slowing Cognitive Decline with Berries", "metadata": {"url": "http://nutritionfacts.org/2015/04/21/how-to-slow-brain-aging-by-two-years/"}}
{"_id": "PLAIN-26", "text": "What is \u2018Meat Glue\u2019?", "metadata": {"url": "http://nutritionfacts.org/2015/04/16/what-is-meat-glue/"}}
{"_id": "PLAIN-27", "text": "Is Liquid Smoke Safe?", "metadata": {"url": "http://nutritionfacts.org/2015/04/14/does-liquid-smoke-cause-cancer/"}}
{"_id": "PLAIN-28", "text": "Does Antioxidant Intake Matter for Stroke and Heart Disease?", "metadata": {"url": "http://nutritionfacts.org/2015/04/09/food-antioxidants-stroke-and-heart-disease/"}}
{"_id": "PLAIN-29", "text": "Does Antioxidant Intake Matter for Cancer?", "metadata": {"url": "http://nutritionfacts.org/2015/04/07/food-antioxidants-and-cancer/"}}
{"_id": "PLAIN-30", "text": "Is buying organic worth it? A review of the science in new DVD", "metadata": {"url": "http://nutritionfacts.org/2015/04/02/is-buying-organic-worth-it-a-review-of-the-science-in-new-dvd/"}}
{"_id": "PLAIN-31", "text": "Orange Aromatherapy for Anxiety", "metadata": {"url": "http://nutritionfacts.org/2015/03/31/does-orange-aromatherapy-reduce-anxiety/"}}
{"_id": "PLAIN-34", "text": "Food Manufacturers Get to Decide if Their Own Additives Are Safe", "metadata": {"url": "http://nutritionfacts.org/2015/03/19/food-manufacturers-get-to-decide-if-their-own-additives-are-safe/"}}
{"_id": "PLAIN-35", "text": "Meat Industry Wins Right to Sell Tainted Meat", "metadata": {"url": "http://nutritionfacts.org/2015/03/17/meat-industry-wins-right-to-sell-tainted-meat/"}}
{"_id": "PLAIN-36", "text": "Chicken Salmonella Outbreaks Show Food Safety Systems Failure", "metadata": {"url": "http://nutritionfacts.org/2015/03/12/chicken-salmonella-outbreaks-show-food-safety-systems-failure/"}}
{"_id": "PLAIN-37", "text": "Viral Food Poisoning from Pesticides?", "metadata": {"url": "http://nutritionfacts.org/2015/03/10/viral-food-poisoning-from-pesticides/"}}
{"_id": "PLAIN-38", "text": "The Reversal on Fish Oil", "metadata": {"url": "http://nutritionfacts.org/2015/03/05/the-reversal-on-fish-oil/"}}
{"_id": "PLAIN-40", "text": "Are Multivitamins Just a Waste of Money?", "metadata": {"url": "http://nutritionfacts.org/2015/02/26/are-multivitamins-just-a-waste-of-money/"}}
{"_id": "PLAIN-41", "text": "Understanding Lifestyle Medicine From the Heart", "metadata": {"url": "http://nutritionfacts.org/2015/02/24/understanding-lifestyle-medicine-from-the-heart/"}}
{"_id": "PLAIN-42", "text": "Don't Forget Fiber", "metadata": {"url": "http://nutritionfacts.org/2015/02/19/dont-forget-fiber/"}}
{"_id": "PLAIN-46", "text": "Why Pepper Boosts Turmeric Blood Levels", "metadata": {"url": "http://nutritionfacts.org/2015/02/05/why-pepper-boosts-turmeric-blood-levels/"}}
{"_id": "PLAIN-47", "text": "Foods That Fight Osteoarthritis & Inflammation", "metadata": {"url": "http://nutritionfacts.org/2015/02/03/foods-that-fight-osteoarthritis-inflammation/"}}
{"_id": "PLAIN-49", "text": "The Spice That Helps Ease Rheumatoid Arthritis Pain", "metadata": {"url": "http://nutritionfacts.org/2015/01/27/the-spice-that-helps-ease-rheumatoid-arthritis-pain/"}}
{"_id": "PLAIN-50", "text": "The Top Three DNA Protecting Spices", "metadata": {"url": "http://nutritionfacts.org/2015/01/22/the-top-three-dna-protecting-spices/"}}
{"_id": "PLAIN-51", "text": "The Top Four Anti-Inflammatory Spices", "metadata": {"url": "http://nutritionfacts.org/2015/01/20/the-top-four-anti-inflammatory-spices/"}}
{"_id": "PLAIN-52", "text": "Superbugs on Retail Chicken", "metadata": {"url": "http://nutritionfacts.org/2015/01/15/superbugs-on-retail-chicken/"}}
{"_id": "PLAIN-53", "text": "Foods for Computer Eye Strain", "metadata": {"url": "http://nutritionfacts.org/2015/01/13/foods-for-computer-eye-strain/"}}
{"_id": "PLAIN-54", "text": "Currant Treatment for Glaucoma", "metadata": {"url": "http://nutritionfacts.org/2015/01/08/currant-treatment-for-glaucoma/"}}
{"_id": "PLAIN-57", "text": "How Long to Avoid Fish Before Conception?", "metadata": {"url": "http://nutritionfacts.org/2014/12/25/how-long-to-avoid-fish-before-conception/"}}
{"_id": "PLAIN-58", "text": "Boosting Anti-Cancer Immunity with Berries", "metadata": {"url": "http://nutritionfacts.org/2014/12/23/boosting-anti-cancer-immunity-with-berries/"}}
{"_id": "PLAIN-59", "text": "The Vitamin Everyone on a Plant-Based Diet Needs", "metadata": {"url": "http://nutritionfacts.org/2014/12/18/the-vitamin-everyone-on-a-plant-based-diet-needs/"}}
{"_id": "PLAIN-60", "text": "Comparing Vegans' Arteries to Runners'", "metadata": {"url": "http://nutritionfacts.org/2014/12/16/comparing-vegans-arteries-to-runners/"}}
{"_id": "PLAIN-61", "text": "Add Beans, Berries, and Greens to More Meals", "metadata": {"url": "http://nutritionfacts.org/2014/12/11/add-beans-berries-and-greens-to-more-meals/"}}
{"_id": "PLAIN-63", "text": "How to Get Enough Antioxidants Each Day", "metadata": {"url": "http://nutritionfacts.org/2014/12/04/how-to-get-enough-antioxidants-each-day/"}}
{"_id": "PLAIN-64", "text": "The Reason We Need More Antioxidants", "metadata": {"url": "http://nutritionfacts.org/2014/12/02/the-reason-we-need-more-antioxidants-and-why-were-not-getting-them/"}}
{"_id": "PLAIN-65", "text": "How Avoiding Eggs Could Help You Avoid Diabetes", "metadata": {"url": "http://nutritionfacts.org/2014/11/27/how-avoiding-eggs-could-help-you-avoid-diabetes/"}}
{"_id": "PLAIN-69", "text": "Does Caramel Color Cause Cancer?", "metadata": {"url": "http://nutritionfacts.org/2014/11/13/does-caramel-color-cause-cancer/"}}
{"_id": "PLAIN-70", "text": "We Can End the Heart Disease Epidemic", "metadata": {"url": "http://nutritionfacts.org/2014/11/11/we-can-end-the-heart-disease-epidemic/"}}
{"_id": "PLAIN-71", "text": "How to Prevent Heart Disease", "metadata": {"url": "http://nutritionfacts.org/2014/11/06/how-to-prevent-heart-disease/"}}
{"_id": "PLAIN-72", "text": "How Seafood Can Impact Brain Development", "metadata": {"url": "http://nutritionfacts.org/2014/11/04/how-seafood-can-impact-brain-development/"}}
{"_id": "PLAIN-73", "text": "Why Pregnant Women Should Avoid Tuna", "metadata": {"url": "http://nutritionfacts.org/2014/10/30/why-pregnant-women-should-avoid-tuna/"}}
{"_id": "PLAIN-74", "text": "How Fatty Foods May Affect Our Love Life", "metadata": {"url": "http://nutritionfacts.org/2014/10/28/how-fatty-foods-may-affect-our-love-life/"}}
{"_id": "PLAIN-75", "text": "Can One Become a Sugar Addict?", "metadata": {"url": "http://nutritionfacts.org/2014/10/23/can-one-become-a-sugar-addict/"}}
{"_id": "PLAIN-76", "text": "Where are Phosphate Additives Found?", "metadata": {"url": "http://nutritionfacts.org/2014/10/21/where-are-phosphate-additives-found/"}}
{"_id": "PLAIN-79", "text": "What to Eat to Reduce Our Toxic Exposure", "metadata": {"url": "http://nutritionfacts.org/2014/10/09/what-to-eat-to-reduce-our-toxic-exposure/"}}
{"_id": "PLAIN-80", "text": "Our Immune System Uses Plants To Activate Gut Protection", "metadata": {"url": "http://nutritionfacts.org/2014/10/07/our-immune-system-uses-plants-to-activate-gut-protection/"}}
{"_id": "PLAIN-82", "text": "Are Canned Beans as Healthy as Home Cooked?", "metadata": {"url": "http://nutritionfacts.org/2014/09/25/are-canned-beans-as-healthy-as-home-cooked/"}}
{"_id": "PLAIN-84", "text": "Can Eating Soy Prevent Breast Cancer?", "metadata": {"url": "http://nutritionfacts.org/2014/09/18/can-eating-soy-prevent-breast-cancer/"}}
{"_id": "PLAIN-85", "text": "Eat Beans to Live Longer", "metadata": {"url": "http://nutritionfacts.org/2014/09/16/eat-beans-to-live-longer/"}}
{"_id": "PLAIN-86", "text": "Overdosing on Poppy Seeds", "metadata": {"url": "http://nutritionfacts.org/2014/09/11/overdosing-on-poppy-seeds/"}}
{"_id": "PLAIN-87", "text": "The Healthiest Diet for Weight Control", "metadata": {"url": "http://nutritionfacts.org/2014/09/09/the-healthiest-diet-for-weight-control/"}}
{"_id": "PLAIN-88", "text": "Why Athletes Should Eat Nutritional Yeast", "metadata": {"url": "http://nutritionfacts.org/2014/09/04/why-athletes-should-eat-nutritional-yeast/"}}
{"_id": "PLAIN-92", "text": "Why the Egg-Cancer Link?", "metadata": {"url": "http://nutritionfacts.org/2014/08/21/why-the-egg-cancer-link/"}}
{"_id": "PLAIN-93", "text": "How Eggs Can Impact Body Odor", "metadata": {"url": "http://nutritionfacts.org/2014/08/19/how-eggs-can-impact-body-odor/"}}
{"_id": "PLAIN-94", "text": "How to Design a Misleading Study", "metadata": {"url": "http://nutritionfacts.org/2014/08/14/how-the-meat-industry-designed-a-highly-misleading-study/"}}
{"_id": "PLAIN-95", "text": "How Grapefruit Affects Prescription Drugs", "metadata": {"url": "http://nutritionfacts.org/2014/08/12/how-grapefruit-affects-prescription-drugs/"}}
{"_id": "PLAIN-97", "text": "Test to See If Your Diet is Alkaline or Acid Forming", "metadata": {"url": "http://nutritionfacts.org/2014/08/05/test-to-see-if-your-diet-is-alkaline-or-acid-forming/"}}
{"_id": "PLAIN-98", "text": "Does Animal Protein Cause Osteoporosis?", "metadata": {"url": "http://nutritionfacts.org/2014/07/31/does-animal-protein-cause-osteoporosis/"}}
{"_id": "PLAIN-99", "text": "Quadrupling Breast Cancer Survival", "metadata": {"url": "http://nutritionfacts.org/2014/07/29/quadrupling-breast-cancer-survival/"}}
{"_id": "PLAIN-100", "text": "Cancer and the Animal-to-Plant Protein Ratio", "metadata": {"url": "http://nutritionfacts.org/2014/07/24/cancer-and-the-animal-to-plant-protein-ratio/"}}
{"_id": "PLAIN-103", "text": "How Plant-Based Diets May Extend Our Lives", "metadata": {"url": "http://nutritionfacts.org/2014/07/10/how-plant-based-diets-may-extend-our-lives/"}}
{"_id": "PLAIN-104", "text": "A Low Methionine Diet May Help Starve Cancer Cells", "metadata": {"url": "http://nutritionfacts.org/2014/07/08/a-low-methionine-diet-may-help-starve-cancer-cells/"}}
{"_id": "PLAIN-105", "text": "How Animal Proteins May Trigger Autoimmune Disease", "metadata": {"url": "http://nutritionfacts.org/2014/07/03/how-animal-proteins-may-trigger-autoimmune-disease/"}}
{"_id": "PLAIN-106", "text": "Handling Poultry Tied to Liver/Pancreatic Cancers", "metadata": {"url": "http://nutritionfacts.org/2014/07/01/handling-poultry-tied-to-liverpancreatic-cancers/"}}
{"_id": "PLAIN-107", "text": "Improving Attractiveness in Six Weeks", "metadata": {"url": "http://nutritionfacts.org/2014/06/26/improving-attractiveness-in-six-weeks/"}}
{"_id": "PLAIN-108", "text": "Want to be Healthier? Change Your Taste Buds", "metadata": {"url": "http://nutritionfacts.org/2014/06/24/want-to-be-healthier-change-your-taste-buds/"}}
{"_id": "PLAIN-109", "text": "How to Get Parents to Eat Their Vegetables", "metadata": {"url": "http://nutritionfacts.org/2014/06/19/how-to-get-parents-to-eat-their-vegetables/"}}
{"_id": "PLAIN-110", "text": "How To Get Our Kids to Eat Their Vegetables", "metadata": {"url": "http://nutritionfacts.org/2014/06/17/how-to-get-our-kids-to-eat-their-vegetables/"}}
{"_id": "PLAIN-114", "text": "How to Treat ADHD Without Drugs", "metadata": {"url": "http://nutritionfacts.org/2014/06/03/how-to-treat-adhd-without-drugs/"}}
{"_id": "PLAIN-115", "text": "Avoid Butter-Flavored Microwave Popcorn", "metadata": {"url": "http://nutritionfacts.org/2014/05/29/avoid-butter-flavored-microwave-popcorn/"}}
{"_id": "PLAIN-116", "text": "Pistachios May Help Erectile Dysfunction", "metadata": {"url": "http://nutritionfacts.org/2014/05/27/pistachios-may-help-erectile-dysfunction/"}}
{"_id": "PLAIN-117", "text": "Foods for a Long Life and Love Life", "metadata": {"url": "http://nutritionfacts.org/2014/05/22/foods-for-a-long-life-and-love-life/"}}
{"_id": "PLAIN-118", "text": "Pills vs. Diet For Erectile Dysfunction", "metadata": {"url": "http://nutritionfacts.org/2014/05/20/pills-vs-diet-for-erectile-dysfunction/"}}
{"_id": "PLAIN-119", "text": "Which Seaweed to Help Prevent Breast Cancer?", "metadata": {"url": "http://nutritionfacts.org/2014/05/15/which-seaweed-to-help-prevent-breast-cancer/"}}
{"_id": "PLAIN-120", "text": "Preloading With Watercress Before Exercise", "metadata": {"url": "http://nutritionfacts.org/2014/05/13/preloading-with-watercress-before-exercise/"}}
{"_id": "PLAIN-121", "text": "Berries to Prevent Muscle Soreness", "metadata": {"url": "http://nutritionfacts.org/2014/05/08/berries-to-prevent-muscle-soreness/"}}
{"_id": "PLAIN-124", "text": "Toxin Contamination of Spirulina Supplements", "metadata": {"url": "http://nutritionfacts.org/2014/04/29/toxin-contamination-of-spirulina-supplements/"}}
{"_id": "PLAIN-125", "text": "Is Noni or Mangosteen Juice Safe?", "metadata": {"url": "http://nutritionfacts.org/2014/04/24/is-noni-or-mangosteen-juice-safe/"}}
{"_id": "PLAIN-126", "text": "Should Carrageenan Be Avoided?", "metadata": {"url": "http://nutritionfacts.org/2014/04/22/should-carrageenan-be-avoided/"}}
{"_id": "PLAIN-127", "text": "Treating Menstrual Pain With Diet", "metadata": {"url": "http://nutritionfacts.org/2014/04/17/treating-menstrual-pain-with-diet/"}}
{"_id": "PLAIN-128", "text": "Cayenne for Irritable Bowel", "metadata": {"url": "http://nutritionfacts.org/2014/04/15/cayenne-for-irritable-bowel/"}}
{"_id": "PLAIN-129", "text": "Natural Treatment for Cluster Headaches", "metadata": {"url": "http://nutritionfacts.org/2014/04/10/natural-treatment-for-cluster-headaches/"}}
{"_id": "PLAIN-130", "text": "Foods With Natural Melatonin", "metadata": {"url": "http://nutritionfacts.org/2014/04/03/foods-with-natural-melatonin/"}}
{"_id": "PLAIN-131", "text": "Two Kiwifruit an Hour Before Bedtime", "metadata": {"url": "http://nutritionfacts.org/2014/04/01/two-kiwi-fruits-an-hour-before-bedtime/"}}
{"_id": "PLAIN-134", "text": "Breast Cancer and Wine", "metadata": {"url": "http://nutritionfacts.org/2014/03/20/breast-cancer-and-wine/"}}
{"_id": "PLAIN-135", "text": "Why Do Vegan Women Have Fewer Female Cancers?", "metadata": {"url": "http://nutritionfacts.org/2014/03/18/why-do-vegan-women-have-fewer-female-cancers/"}}
{"_id": "PLAIN-136", "text": "When a Scraped Knee May Once Again Kill", "metadata": {"url": "http://nutritionfacts.org/2014/03/13/when-a-scraped-knee-may-kill-again/"}}
{"_id": "PLAIN-137", "text": "Why We Should Eat More Beans", "metadata": {"url": "http://nutritionfacts.org/2014/03/11/why-you-should-eat-more-beans/"}}
{"_id": "PLAIN-138", "text": "Egg Industry Caught Making False Claims", "metadata": {"url": "http://nutritionfacts.org/2014/03/06/egg-industry-caught-making-false-claims/"}}
{"_id": "PLAIN-139", "text": "Male Fertility and Dietary Pollutants", "metadata": {"url": "http://nutritionfacts.org/2014/03/04/male-fertility-and-dietary-pollutants/"}}
{"_id": "PLAIN-140", "text": "Trans Fat in Animal Fat", "metadata": {"url": "http://nutritionfacts.org/2014/02/27/trans-fat-in-animal-fat/"}}
{"_id": "PLAIN-141", "text": "Ginger & Lemon Balm for Radiation Exposure", "metadata": {"url": "http://nutritionfacts.org/2014/02/25/ginger-lemon-balm-for-radiation-exposure/"}}
{"_id": "PLAIN-144", "text": "How Risky are CT Scans?", "metadata": {"url": "http://nutritionfacts.org/2014/02/13/how-risky-are-ct-scans/"}}
{"_id": "PLAIN-145", "text": "Fukushima Radiation and Seafood", "metadata": {"url": "http://nutritionfacts.org/2014/02/11/fukushima-and-radioactivity-in-seafood/"}}
{"_id": "PLAIN-146", "text": "Tea and Fluoride Risk", "metadata": {"url": "http://nutritionfacts.org/2014/02/06/childhood-tea-drinking-may-increase-fluorosis-risk/"}}
{"_id": "PLAIN-147", "text": "Does Cranberry Juice Work Against Bladder Infections?", "metadata": {"url": "http://nutritionfacts.org/2014/02/04/can-cranberry-juice-treat-bladder-infections/"}}
{"_id": "PLAIN-148", "text": "How Avoiding Chicken Could Prevent Bladder Infections", "metadata": {"url": "http://nutritionfacts.org/2014/01/28/how-avoiding-chicken-could-prevent-bladder-infections/"}}
{"_id": "PLAIN-149", "text": "Preventing Bacterial Vaginosis With Diet", "metadata": {"url": "http://nutritionfacts.org/2014/01/23/preventing-bacterial-vaginosis-with-diet/"}}
{"_id": "PLAIN-150", "text": "Treating Migraines With Lavender", "metadata": {"url": "http://nutritionfacts.org/2014/01/21/treating-migraines-with-lavender/"}}
{"_id": "PLAIN-151", "text": "Using Lavender to Treat Anxiety", "metadata": {"url": "http://nutritionfacts.org/2014/01/14/using-lavender-to-treat-anxiety/"}}
{"_id": "PLAIN-154", "text": "Probiotics During Cold Season?", "metadata": {"url": "http://nutritionfacts.org/2013/12/31/probiotics-during-cold-season/"}}
{"_id": "PLAIN-155", "text": "Probiotics and Diarrhea", "metadata": {"url": "http://nutritionfacts.org/2013/12/26/probiotics-and-diarrhea/"}}
{"_id": "PLAIN-156", "text": "Mushrooms and Immunity", "metadata": {"url": "http://nutritionfacts.org/2013/12/24/mushrooms-and-immunity/"}}
{"_id": "PLAIN-158", "text": "Raspberries Reverse Precancerous Lesions", "metadata": {"url": "http://nutritionfacts.org/2013/12/19/black-raspberries-may-help-prevent-cancer/"}}
{"_id": "PLAIN-159", "text": "Strawberries Can Reverse Precancerous Progression", "metadata": {"url": "http://nutritionfacts.org/2013/12/17/strawberries-can-reverse-precancerous-progression/"}}
{"_id": "PLAIN-160", "text": "Anti-Cancer Nutrient Synergy in Cranberries", "metadata": {"url": "http://nutritionfacts.org/2013/12/12/anti-cancer-nutrient-synergy-in-cranberries/"}}
{"_id": "PLAIN-161", "text": "Which Common Fruit Fights Cancer Better?", "metadata": {"url": "http://nutritionfacts.org/2013/12/10/which-common-fruit-fights-cancer-better/"}}
{"_id": "PLAIN-163", "text": "Half of Doctors Give Placebos", "metadata": {"url": "http://nutritionfacts.org/2013/12/03/half-of-doctors-give-placebos/"}}
{"_id": "PLAIN-166", "text": "Best Nutrition Bang for Your Buck", "metadata": {"url": "http://nutritionfacts.org/2013/11/26/best-nutrition-bang-for-your-buck/"}}
{"_id": "PLAIN-167", "text": "Schoolchildren Should Drink More Water", "metadata": {"url": "http://nutritionfacts.org/2013/11/21/schoolchildren-should-drink-more-water/"}}
{"_id": "PLAIN-168", "text": "Why Are Eggs Linked to Cancer Progression?", "metadata": {"url": "http://nutritionfacts.org/2013/11/19/why-are-eggs-linked-to-cancer-progression/"}}
{"_id": "PLAIN-169", "text": "Avoid Carnitine and Lethicin Supplements", "metadata": {"url": "http://nutritionfacts.org/2013/11/14/avoid-carnitine-and-lethicin-supplements/"}}
{"_id": "PLAIN-170", "text": "Treating Breast Pain with Flax Seeds", "metadata": {"url": "http://nutritionfacts.org/2013/11/12/treating-breast-pain-with-flax-seeds/"}}
{"_id": "PLAIN-171", "text": "Treating Breast Pain With Diet", "metadata": {"url": "http://nutritionfacts.org/2013/11/07/treating-breast-pain-with-diet/"}}
{"_id": "PLAIN-172", "text": "Tarragon Toxicity?", "metadata": {"url": "http://nutritionfacts.org/2013/11/05/tarragon-toxicity/"}}
{"_id": "PLAIN-173", "text": "Nutmeg Toxicity", "metadata": {"url": "http://nutritionfacts.org/2013/10/31/nutmeg-toxicity/"}}
{"_id": "PLAIN-176", "text": "Industry Influence on Our Dietary Guidelines", "metadata": {"url": "http://nutritionfacts.org/2013/10/22/big-food-wants-final-say-over-health-reports/"}}
{"_id": "PLAIN-177", "text": "Flax and Breast Cancer Survival", "metadata": {"url": "http://nutritionfacts.org/2013/10/17/flaxseeds-breast-cancer-survival/"}}
{"_id": "PLAIN-178", "text": "Flax and Breast Cancer Prevention", "metadata": {"url": "http://nutritionfacts.org/2013/10/15/flaxseeds-for-breast-cancer-prevention/"}}
{"_id": "PLAIN-179", "text": "Treating Sensitive Skin From the Inside Out", "metadata": {"url": "http://nutritionfacts.org/2013/10/10/flaxseeds-for-sensitive-skin/"}}
{"_id": "PLAIN-180", "text": "Flaxseeds for Diabetes", "metadata": {"url": "http://nutritionfacts.org/2013/10/08/flaxseeds-for-diabetes/"}}
{"_id": "PLAIN-181", "text": "Flaxseeds for Prostate Cancer", "metadata": {"url": "http://nutritionfacts.org/2013/10/03/flaxseeds-for-prostate-cancer/"}}
{"_id": "PLAIN-182", "text": "Why Is Selling Salmonella-Tainted Chicken Legal?", "metadata": {"url": "http://nutritionfacts.org/2013/10/01/why-is-selling-salmonella-tainted-chicken-still-legal/"}}
{"_id": "PLAIN-184", "text": "Raisins vs. Energy Gels for Athletic Performance", "metadata": {"url": "http://nutritionfacts.org/2013/09/24/raisins-vs-energy-gels-for-athletic-performance/"}}
{"_id": "PLAIN-187", "text": "Best Dried Fruit For Cholesterol", "metadata": {"url": "http://nutritionfacts.org/2013/09/12/best-dried-fruit-for-cholesterol/"}}
{"_id": "PLAIN-188", "text": "Eggs, Cigarettes, and Atherosclerosis", "metadata": {"url": "http://nutritionfacts.org/2013/09/10/eggs-vs-cigarettes-in-atherosclerosis/"}}
{"_id": "PLAIN-189", "text": "Rooibos & Nettle Tea", "metadata": {"url": "http://nutritionfacts.org/2013/09/05/latest-science-on-rooibos-nettle-tea/"}}
{"_id": "PLAIN-190", "text": "Hibiscus Tea: The Best Beverage?", "metadata": {"url": "http://nutritionfacts.org/2013/09/03/hibiscus-tea-the-best-beverage/"}}
{"_id": "PLAIN-191", "text": "Treating Parkinson\u2019s Disease With Diet", "metadata": {"url": "http://nutritionfacts.org/2013/08/29/treating-parkinsons-disease-with-diet/"}}
{"_id": "PLAIN-192", "text": "Avoiding Dairy to Prevent Parkinson's", "metadata": {"url": "http://nutritionfacts.org/2013/08/27/want-to-help-prevent-parkinsons-disease-avoid-this/"}}
{"_id": "PLAIN-193", "text": "The Science on Acai Berries", "metadata": {"url": "http://nutritionfacts.org/2013/08/22/the-science-on-acai-berries/"}}
{"_id": "PLAIN-194", "text": "NutritionFacts.org Video Hits a Million Views", "metadata": {"url": "http://nutritionfacts.org/2013/08/20/the-first-nutritionfacts-org-video-to-hit-a-million-views/"}}
{"_id": "PLAIN-197", "text": "The Best Way to Prevent the Common Cold?", "metadata": {"url": "http://nutritionfacts.org/2013/08/08/the-best-way-to-prevent-the-common-cold/"}}
{"_id": "PLAIN-198", "text": "Which Pets Improve Children\u2019s Health?", "metadata": {"url": "http://nutritionfacts.org/2013/08/06/which-pets-improve-childrens-health/"}}
{"_id": "PLAIN-199", "text": "Vitamin D from Mushrooms, Sun, or Supplements?", "metadata": {"url": "http://nutritionfacts.org/2013/08/01/vitamin-d-from-mushrooms-sun-or-supplements/"}}
{"_id": "PLAIN-200", "text": "Is Coconut Oil Bad For You?", "metadata": {"url": "http://nutritionfacts.org/2013/07/30/is-coconut-oil-good-for-you/"}}
{"_id": "PLAIN-201", "text": "Do Vegans Get More Cavities?", "metadata": {"url": "http://nutritionfacts.org/2013/07/25/do-vegans-get-more-cavities/"}}
{"_id": "PLAIN-202", "text": "Head Shrinking from Grilling Meat", "metadata": {"url": "http://nutritionfacts.org/2013/07/23/meat-fumes-dietary-secondhand-smoke/"}}
{"_id": "PLAIN-203", "text": "Broccoli Boosts Liver Detox Enzymes", "metadata": {"url": "http://nutritionfacts.org/2013/07/18/broccoli-boosts-liver-detox-enzymes/"}}
{"_id": "PLAIN-204", "text": "Dr. Greger's New Year-in-Review Presentation", "metadata": {"url": "http://nutritionfacts.org/2013/07/16/dr-gregers-new-annual-year-in-review-presentation/"}}
{"_id": "PLAIN-208", "text": "Estrogenic Chemicals in Meat", "metadata": {"url": "http://nutritionfacts.org/2013/07/02/estrogens-in-cooked-meat/"}}
{"_id": "PLAIN-209", "text": "Plant-Based Diets for Fibromyalgia", "metadata": {"url": "http://nutritionfacts.org/2013/06/27/plant-based-diets-for-fibromyalgia/"}}
{"_id": "PLAIN-210", "text": "Apple Peels Turn On Anticancer Genes", "metadata": {"url": "http://nutritionfacts.org/2013/06/25/apple-peels-turn-on-anticancer-genes/"}}
{"_id": "PLAIN-211", "text": "Uric Acid From Meat and Sugar", "metadata": {"url": "http://nutritionfacts.org/2013/06/20/uric-acid-caused-by-meat-and-sugar/"}}
{"_id": "PLAIN-212", "text": "Go Nuts for Breast Cancer Prevention", "metadata": {"url": "http://nutritionfacts.org/2013/06/18/go-nuts-for-breast-cancer-prevention/"}}
{"_id": "PLAIN-213", "text": "Prevent Breast Cancer by Any Greens Necessary", "metadata": {"url": "http://nutritionfacts.org/2013/06/13/prevent-breast-cancer-by-any-greens-necessary/"}}
{"_id": "PLAIN-214", "text": "Why Less Breast Cancer in Asia?", "metadata": {"url": "http://nutritionfacts.org/2013/06/11/why-less-breast-cancer-in-asia/"}}
{"_id": "PLAIN-215", "text": "Mushrooms For Breast Cancer Prevention", "metadata": {"url": "http://nutritionfacts.org/2013/06/06/mushrooms-for-breast-cancer-prevention/"}}
{"_id": "PLAIN-218", "text": "Dr. Greger's Natural Nausea Remedy Recipe", "metadata": {"url": "http://nutritionfacts.org/2013/05/28/dr-gregers-natural-nausea-remedy-recipe/"}}
{"_id": "PLAIN-219", "text": "Plant-Based Diets for Multiple Sclerosis", "metadata": {"url": "http://nutritionfacts.org/2013/05/21/plant-based-diets-for-multiple-sclerosis/"}}
{"_id": "PLAIN-220", "text": "Plant-Based Diets for Rheumatoid Arthritis", "metadata": {"url": "http://nutritionfacts.org/2013/05/16/plant-based-diets-for-rheumatoid-arthritis/"}}
{"_id": "PLAIN-221", "text": "How Tumors Use Meat to Grow", "metadata": {"url": "http://nutritionfacts.org/2013/05/14/how-tumors-use-meat-to-grow/"}}
{"_id": "PLAIN-222", "text": "How to Gain Weight on Diet Soda", "metadata": {"url": "http://nutritionfacts.org/2013/05/09/how-to-gain-weight-on-diet-soda/"}}
{"_id": "PLAIN-223", "text": "Is There a Safe, Low-Calorie Sweetener?", "metadata": {"url": "http://nutritionfacts.org/2013/05/07/is-there-a-safe-low-calorie-sweetener/"}}
{"_id": "PLAIN-224", "text": "Are Microgreens Healthier?", "metadata": {"url": "http://nutritionfacts.org/2013/05/02/are-microgreens-healthier/"}}
{"_id": "PLAIN-225", "text": "Aspartame: Fibromyalgia & Preterm Birth", "metadata": {"url": "http://nutritionfacts.org/2013/04/30/aspartame-fibromyalgia-preterm-birth/"}}
{"_id": "PLAIN-228", "text": "The Anti-Wrinkle Diet", "metadata": {"url": "http://nutritionfacts.org/2013/04/18/the-anti-wrinkle-diet/"}}
{"_id": "PLAIN-229", "text": "Treadmill Desks: Stand Up For Health", "metadata": {"url": "http://nutritionfacts.org/2013/04/16/treadmill-desks-stand-up-for-health/"}}
{"_id": "PLAIN-231", "text": "Gerson Therapy for Cancer?", "metadata": {"url": "http://nutritionfacts.org/2013/04/09/gerson-therapy-for-cancer/"}}
{"_id": "PLAIN-232", "text": "Are Bioidentical Hormones Safe?", "metadata": {"url": "http://nutritionfacts.org/2013/04/04/are-bioidentical-hormones-safe/"}}
{"_id": "PLAIN-233", "text": "Ergothioneine: A New Vitamin?", "metadata": {"url": "http://nutritionfacts.org/2013/04/02/ergothioneine-a-new-vitamin/"}}
{"_id": "PLAIN-234", "text": "How To Reduce Dietary Antibiotic Intake", "metadata": {"url": "http://nutritionfacts.org/2013/03/28/how-to-reduce-dietary-antibiotic-intake/"}}
{"_id": "PLAIN-235", "text": "Countering Dietary Pollutants & Pesticides", "metadata": {"url": "http://nutritionfacts.org/2013/03/26/how-to-counter-dietary-pollutants-pesticides/"}}
{"_id": "PLAIN-236", "text": "Protecting Our Babies From Pollutants", "metadata": {"url": "http://nutritionfacts.org/2013/03/21/protecting-our-babies-from-pollutants/"}}
{"_id": "PLAIN-239", "text": "Saffron vs. Prozac for Depression", "metadata": {"url": "http://nutritionfacts.org/2013/03/12/saffron-vs-prozac-for-depression/"}}
{"_id": "PLAIN-240", "text": "Treating PMS with Saffron", "metadata": {"url": "http://nutritionfacts.org/2013/03/07/treating-pms-with-saffron/"}}
{"_id": "PLAIN-241", "text": "Eating Green to Prevent Cancer", "metadata": {"url": "http://nutritionfacts.org/2013/03/05/eating-green-to-prevent-cancer/"}}
{"_id": "PLAIN-242", "text": "What Is the Healthiest Meat?", "metadata": {"url": "http://nutritionfacts.org/2013/02/28/what-is-the-healthiest-meat/"}}
{"_id": "PLAIN-243", "text": "Lead Poisoning Risk From Venison", "metadata": {"url": "http://nutritionfacts.org/2013/02/26/lead-poisoning-risk-from-venison/"}}
{"_id": "PLAIN-244", "text": "The Real Paleo Diet", "metadata": {"url": "http://nutritionfacts.org/2013/02/21/the-real-paleo-diet/"}}
{"_id": "PLAIN-245", "text": "How Much Soy Is Too Much?", "metadata": {"url": "http://nutritionfacts.org/2013/02/19/how-much-soy-is-too-much/"}}
{"_id": "PLAIN-246", "text": "Vegan Men: More Testosterone But Less Cancer", "metadata": {"url": "http://nutritionfacts.org/2013/02/12/less-cancer-in-vegan-men-despite-more-testosterone/"}}
{"_id": "PLAIN-249", "text": "Cancer-Proofing Your Body", "metadata": {"url": "http://nutritionfacts.org/2013/01/31/cancer-proofing-your-body/"}}
{"_id": "PLAIN-250", "text": "Plant-Based Workplace Intervention", "metadata": {"url": "http://nutritionfacts.org/2013/01/29/vegan-workplace-intervention/"}}
{"_id": "PLAIN-251", "text": "Biblical Daniel Fast Tested", "metadata": {"url": "http://nutritionfacts.org/2013/01/24/biblical-daniel-fast-tested/"}}
{"_id": "PLAIN-252", "text": "Poultry Paunch: Meat & Weight Gain", "metadata": {"url": "http://nutritionfacts.org/2013/01/22/poultry-paunch-meat-weight-gain/"}}
{"_id": "PLAIN-253", "text": "Diet vs. Exercise: What\u2019s More Important?", "metadata": {"url": "http://nutritionfacts.org/2013/01/17/diet-vs-exercise-whats-more-important/"}}
{"_id": "PLAIN-254", "text": "The Ice Diet", "metadata": {"url": "http://nutritionfacts.org/2013/01/15/the-ice-diet/"}}
{"_id": "PLAIN-255", "text": "Boosting Gut Flora Without Probiotics", "metadata": {"url": "http://nutritionfacts.org/2013/01/10/boosting-gut-flora-without-probiotics/"}}
{"_id": "PLAIN-257", "text": "Burning Fat With Flavonoids", "metadata": {"url": "http://nutritionfacts.org/2013/01/03/burning-fat-with-flavonoids/"}}
{"_id": "PLAIN-260", "text": "Cholesterol Lowering in a Nut Shell", "metadata": {"url": "http://nutritionfacts.org/2012/12/13/cholesterol-lowering-in-a-nut-shell/"}}
{"_id": "PLAIN-261", "text": "The True Shelf Life of Cooking Oils", "metadata": {"url": "http://nutritionfacts.org/2012/12/06/the-true-shelf-life-of-cooking-oils/"}}
{"_id": "PLAIN-262", "text": "Ractopamine and Yersinia in U.S. Pork", "metadata": {"url": "http://nutritionfacts.org/2012/11/29/ractopamine-and-yersinia-drugs-and-bugs-in-pork/"}}
{"_id": "PLAIN-264", "text": "How To Boost Serotonin Naturally", "metadata": {"url": "http://nutritionfacts.org/2012/11/15/boost-serotonin-naturally/"}}
{"_id": "PLAIN-265", "text": "Magnesium-Rich Foods to Prevent Sudden Death", "metadata": {"url": "http://nutritionfacts.org/2012/11/08/magnesium-to-prevent-sudden-cardiac-death/"}}
{"_id": "PLAIN-266", "text": "How to Enhance Mineral Absorption", "metadata": {"url": "http://nutritionfacts.org/2012/11/01/how-to-enhance-mineral-absorption/"}}
{"_id": "PLAIN-267", "text": "Eating To Extend Our Lifespan", "metadata": {"url": "http://nutritionfacts.org/2012/10/25/what-should-women-eat-to-live-longest/"}}
{"_id": "PLAIN-268", "text": "Kiwi Fruit for Irritable Bowel Syndrome", "metadata": {"url": "http://nutritionfacts.org/2012/10/18/kiwi-fruit-for-irritable-bowel-syndrome/"}}
{"_id": "PLAIN-271", "text": "How Much Arsenic In Rice Came From Chickens?", "metadata": {"url": "http://nutritionfacts.org/2012/09/20/how-much-arsenic-in-rice-came-from-chickens/"}}
{"_id": "PLAIN-272", "text": "How Does Meat Cause Inflammation?", "metadata": {"url": "http://nutritionfacts.org/2012/09/20/why-meat-causes-inflammation/"}}
{"_id": "PLAIN-273", "text": "Treating Crohn\u2019s Disease With Diet", "metadata": {"url": "http://nutritionfacts.org/2012/09/13/dietary-treatment-for-crohns-disease/"}}
{"_id": "PLAIN-274", "text": "Antioxidants in a Pinch: Dried Herbs and Spices", "metadata": {"url": "http://nutritionfacts.org/2012/09/06/spices-antioxidants-in-a-pinch/"}}
{"_id": "PLAIN-275", "text": "The Most Anti-Inflammatory Mushroom", "metadata": {"url": "http://nutritionfacts.org/2012/08/30/the-most-anti-inflammatory-mushroom/"}}
{"_id": "PLAIN-276", "text": "Why is it Legal to Sell Unsafe Meat?", "metadata": {"url": "http://nutritionfacts.org/2012/08/23/why-is-unsafe-meat-legal/"}}
{"_id": "PLAIN-277", "text": "Health Food Store Advice: Often Worthless or Worst", "metadata": {"url": "http://nutritionfacts.org/2012/08/09/health-food-store-advice-often-worthless-or-worst/"}}
{"_id": "PLAIN-278", "text": "Adding FDA-Approved Viruses to Meat", "metadata": {"url": "http://nutritionfacts.org/2012/08/02/adding-fda-approved-viruses-to-meat/"}}
{"_id": "PLAIN-281", "text": "Preserving Vision Through Diet", "metadata": {"url": "http://nutritionfacts.org/2012/07/19/preserving-vision-through-diet/"}}
{"_id": "PLAIN-282", "text": "Skim Milk and Acne", "metadata": {"url": "http://nutritionfacts.org/2012/07/12/skim-milk-and-acne/"}}
{"_id": "PLAIN-284", "text": "Do Eden Beans Have Too Much Iodine?", "metadata": {"url": "http://nutritionfacts.org/2012/07/05/do-eden-beans-have-too-much-iodine/"}}
{"_id": "PLAIN-285", "text": "Fighting Inflammation With Food Synergy", "metadata": {"url": "http://nutritionfacts.org/2012/06/28/fighting-inflammation-with-food-synergy/"}}
{"_id": "PLAIN-286", "text": "Cow\u2019s Milk Casomorphin, Crib Death, and Autism", "metadata": {"url": "http://nutritionfacts.org/2012/06/21/cows-milk-casomorphin-crib-death-and-autism/"}}
{"_id": "PLAIN-287", "text": "Treating COPD With Diet", "metadata": {"url": "http://nutritionfacts.org/2012/06/07/treating-copd-with-diet/"}}
{"_id": "PLAIN-288", "text": "Watermelon For Erectile Dysfunction", "metadata": {"url": "http://nutritionfacts.org/2012/05/31/watermelon-for-erectile-dysfunction/"}}
{"_id": "PLAIN-289", "text": "Poultry and Penis Cancer", "metadata": {"url": "http://nutritionfacts.org/2012/05/17/poultry-and-penis-cancer/"}}
{"_id": "PLAIN-292", "text": "Breast Cancer Survival and Soy", "metadata": {"url": "http://nutritionfacts.org/2012/04/26/breast-cancer-survival-and-soy/"}}
{"_id": "PLAIN-293", "text": "Mad Cow California: Is the Milk Supply Safe?", "metadata": {"url": "http://nutritionfacts.org/2012/04/25/mad-cow-california-is-the-milk-supply-safe/"}}
{"_id": "PLAIN-294", "text": "Breast Cancer Stem Cells vs. Broccoli", "metadata": {"url": "http://nutritionfacts.org/2012/04/19/breast-cancer-stem-cells-vs-broccoli/"}}
{"_id": "PLAIN-295", "text": "The Best Detox", "metadata": {"url": "http://nutritionfacts.org/2012/04/12/the-best-detox/"}}
{"_id": "PLAIN-296", "text": "Using Greens to Improve Athletic Performance", "metadata": {"url": "http://nutritionfacts.org/2012/03/22/using-greens-to-improve-athletic-performance/"}}
{"_id": "PLAIN-300", "text": "Paula Deen: diabetes drug spokesperson", "metadata": {"url": "http://nutritionfacts.org/2012/01/18/paula-deen-diabetes-drug-spokesperson/"}}
{"_id": "PLAIN-301", "text": "Amla: Indian gooseberries vs. cancer, diabetes, and cholesterol", "metadata": {"url": "http://nutritionfacts.org/2012/01/17/amla-indian-gooseberries-versus-cancer-diabetes-and-cholesterol/"}}
{"_id": "PLAIN-303", "text": "Hibiscus tea: flower power", "metadata": {"url": "http://nutritionfacts.org/2012/01/08/hibiscus-tea-flower-power/"}}
{"_id": "PLAIN-308", "text": "Beans and Gas: Clearing the air", "metadata": {"url": "http://nutritionfacts.org/2011/12/05/beans-and-gas-clearing-the-air/"}}
{"_id": "PLAIN-309", "text": "Alzheimer\u2019s Disease: Up to half of cases potentially preventable", "metadata": {"url": "http://nutritionfacts.org/2011/11/29/alzheimers-disease-up-to-half-of-cases-potentially-preventable-with-lifestyle-changes/"}}
{"_id": "PLAIN-310", "text": "Nutrition Education in Medicine: a Doctor a Day Keeps the Apples Away", "metadata": {"url": "http://nutritionfacts.org/2011/11/14/nutrition-education-in-medicine-a-doctor-a-day-keeps-the-apples-away/"}}
{"_id": "PLAIN-312", "text": "The Best Foods: test your nutrition knowledge", "metadata": {"url": "http://nutritionfacts.org/2011/11/06/the-best-foods-test-your-nutrition-knowledge/"}}
{"_id": "PLAIN-313", "text": "Supreme Court case: meat industry sues to keep downed animals in food supply", "metadata": {"url": "http://nutritionfacts.org/2011/11/03/supreme-court-case-meat-industry-sues-to-keep-downed-animals-in-food-supply/"}}
{"_id": "PLAIN-314", "text": "Foie gras ban in California: human health implications", "metadata": {"url": "http://nutritionfacts.org/2011/11/01/foie-gras-ban-in-california-human-health-implications/"}}
{"_id": "PLAIN-316", "text": "Heart disease: there is a cure", "metadata": {"url": "http://nutritionfacts.org/2011/10/14/heart-disease-there-is-a-cure/"}}
{"_id": "PLAIN-317", "text": "Inflammation, Diet, and \"Vitamin S\"", "metadata": {"url": "http://nutritionfacts.org/2011/10/04/inflammation-diet-and-vitamin-s/"}}
{"_id": "PLAIN-321", "text": "NutritionFacts.org: the first month", "metadata": {"url": "http://nutritionfacts.org/2011/09/25/nutritionfacts-org-the-first-month/"}}
{"_id": "PLAIN-323", "text": "Eating chicken may lead to a smaller penis", "metadata": {"url": "http://nutritionfacts.org/2011/09/15/eating-chicken-may-lead-to-a-smaller-penis/"}}
{"_id": "PLAIN-324", "text": "How much pus is there in milk?", "metadata": {"url": "http://nutritionfacts.org/2011/09/08/how-much-pus-is-there-in-milk/"}}
{"_id": "PLAIN-325", "text": "Natural Alzheimer's Treatment", "metadata": {"url": "http://nutritionfacts.org/2011/09/06/natural-alzheimers-treatment/"}}
{"_id": "PLAIN-327", "text": "Physician-assisted suicide? When doctors give nutrition advice", "metadata": {"url": "http://nutritionfacts.org/2011/09/03/physician-assisted-suicide-when-doctors-give-nutrition-advice/"}}
{"_id": "PLAIN-328", "text": "Bad Egg", "metadata": {"url": "http://nutritionfacts.org/2011/08/31/bad-egg/"}}
{"_id": "PLAIN-329", "text": "Soy and breast cancer: an update", "metadata": {"url": "http://nutritionfacts.org/2011/08/29/soy-and-breast-cancer-an-update/"}}
{"_id": "PLAIN-330", "text": "Soymilk: shake it up!", "metadata": {"url": "http://nutritionfacts.org/2011/08/28/soymilk-shake-it-up/"}}
{"_id": "PLAIN-333", "text": "The Last Heart Attack: Perfect timing for the launch of NutritionFacts.org", "metadata": {"url": "http://nutritionfacts.org/2011/08/22/the-last-heart-attack-perfect-timing-for-the-launch/"}}
{"_id": "PLAIN-335", "text": "Welcome to NutritionFacts.org!", "metadata": {"url": "http://nutritionfacts.org/2011/04/15/welcome-to-nutritionfacts-org/"}}
{"_id": "PLAIN-336", "text": "Hives from Tick Bite-Induced Meat Allergies", "metadata": {"url": "http://nutritionfacts.org/2015/08/27/hives-from-tick-bite-induced-meat-allergies/"}}
{"_id": "PLAIN-337", "text": "How a Tick Bite Can Lead to Food Allergies", "metadata": {"url": "http://nutritionfacts.org/2015/08/25/how-a-tick-bite-can-lead-to-food-allergies/"}}
{"_id": "PLAIN-338", "text": "What Do Eggs Do To Our Arteries?", "metadata": {"url": "http://nutritionfacts.org/2015/08/20/what-do-eggs-do-to-our-arteries/"}}
{"_id": "PLAIN-339", "text": "Dietary Cholesterol Affects Blood Cholesterol Levels", "metadata": {"url": "http://nutritionfacts.org/2015/08/18/dietary-cholesterol-affects-blood-cholesterol-levels/"}}
{"_id": "PLAIN-340", "text": "Do Walnuts Really Improve Artery Function?", "metadata": {"url": "http://nutritionfacts.org/2015/08/13/how-walnuts-can-improve-artery-function/"}}
{"_id": "PLAIN-341", "text": "Salmon May Be the Greatest Source of Dietary Pollutants", "metadata": {"url": "http://nutritionfacts.org/2015/08/11/salmon-may-be-the-greatest-source-of-dietary-pollutants/"}}
{"_id": "PLAIN-345", "text": "Why Would Eating Fish Increase Diabetes Risk?", "metadata": {"url": "http://nutritionfacts.org/2015/07/23/why-would-eating-fish-increase-diabetes-risk/"}}
{"_id": "PLAIN-346", "text": "What does the research say about dietary interventions on women with PCOS?", "metadata": {"url": "http://nutritionfacts.org/rdquestions/what-does-the-research-say-about-dietary-interventions-on-women-with-pcos/"}}
{"_id": "PLAIN-347", "text": "Do algae-based omega-3 supplements contain beta-N-methylamino-L-alanine (BMAA) that has been found in blue-green algae?", "metadata": {"url": "http://nutritionfacts.org/rdquestions/do-algae-based-omega-3-supplements-contain-beta-n-methylamino-l-alanine-bmaa-that-has-been-found-in-blue-green-algae/"}}
{"_id": "PLAIN-348", "text": "What are some ways to help reduce the risk of food poisoning from pesticides?", "metadata": {"url": "http://nutritionfacts.org/rdquestions/what-are-some-ways-to-help-reduce-the-risk-of-food-poisoning-from-pesticides/"}}
{"_id": "PLAIN-349", "text": "Should I stay away from soy if I have breast cancer?", "metadata": {"url": "http://nutritionfacts.org/rdquestions/should-i-stay-away-from-soy-if-i-have-breast-cancer/"}}
{"_id": "PLAIN-350", "text": "Should we take iodine supplements?", "metadata": {"url": "http://nutritionfacts.org/rdquestions/should-we-take-iodine-supplements/"}}
{"_id": "PLAIN-351", "text": "Have you seen the very recent web blitz on heavy metals (particularly thallium) in cruciferous vegetables (particularly kale)...?", "metadata": {"url": "http://nutritionfacts.org/rdquestions/have-you-seen-the-very-recent-web-blitz-on-heavy-metals-particularly-thallium-in-cruciferous-vegetables-particularly-kale/"}}
{"_id": "PLAIN-356", "text": "Boric acid for vaginal yeast infections?", "metadata": {"url": "http://nutritionfacts.org/questions/how-do-i-treat-a-recurrent-yeast-infection/"}}
{"_id": "PLAIN-360", "text": "Might too many antioxidants cause cancer?", "metadata": {"url": "http://nutritionfacts.org/questions/might-too-many-antioxidants-cause-cancer/"}}
{"_id": "PLAIN-361", "text": "Which foods have the most potassium?", "metadata": {"url": "http://nutritionfacts.org/questions/which-foods-have-the-most-potassium/"}}
{"_id": "PLAIN-364", "text": "Nutrition recommendations for acid reflux (GERD), heartburn, and Barrett's Esophagus?", "metadata": {"url": "http://nutritionfacts.org/questions/nutrition-recommendations-for-acid-reflux-and-barretts-esophagus/"}}
{"_id": "PLAIN-365", "text": "What do you drink, Dr. Greger?", "metadata": {"url": "http://nutritionfacts.org/questions/what-do-you-drink-dr-greger/"}}
{"_id": "PLAIN-366", "text": "Can you take hydrogen peroxide internally?", "metadata": {"url": "http://nutritionfacts.org/questions/can-you-take-hydrogen-peroxide-internally/"}}
{"_id": "PLAIN-367", "text": "What is the best way to get vitamin B12?", "metadata": {"url": "http://nutritionfacts.org/questions/what-is-the-best-way-to-get-b12/"}}
{"_id": "PLAIN-368", "text": "Are green smoothies better for you?", "metadata": {"url": "http://nutritionfacts.org/questions/are-green-smoothies-better-for-you/"}}
{"_id": "PLAIN-369", "text": "Might flax seeds (ALA) increase prostate cancer risk?", "metadata": {"url": "http://nutritionfacts.org/questions/flax-seeds-and-prostate-cancer-risk/"}}
{"_id": "PLAIN-372", "text": "What are \"normal\" human vitamin D levels?", "metadata": {"url": "http://nutritionfacts.org/questions/average-normal-vitamin-d-levels/"}}
{"_id": "PLAIN-373", "text": "What do you think of durian fruit?", "metadata": {"url": "http://nutritionfacts.org/questions/dr-greger-have-you-ever-eaten-a-durian-fruit/"}}
{"_id": "PLAIN-374", "text": "Are neurotoxins only present in blue-green algae?", "metadata": {"url": "http://nutritionfacts.org/questions/are-neurotoxins-only-present-in-blue-green-algae/"}}
{"_id": "PLAIN-375", "text": "Nutrition advice to counter the side-effects of glaucoma medications?", "metadata": {"url": "http://nutritionfacts.org/questions/nutrition-advice-to-counter-the-side-effects-of-glaucoma-medications/"}}
{"_id": "PLAIN-376", "text": "What are the benefits of reishi mushrooms (Ganoderma lucidum)?", "metadata": {"url": "http://nutritionfacts.org/questions/what-are-the-benefits-of-reishi-mushrooms-ganoderma-lucidum/"}}
{"_id": "PLAIN-377", "text": "What about gurmar, jamun, bitter melon, and fenugreek?", "metadata": {"url": "http://nutritionfacts.org/questions/gurmar-jamun-bitter-melon-and-fenugreek/"}}
{"_id": "PLAIN-378", "text": "Is yerba mat\u00e9 tea really bad for you?", "metadata": {"url": "http://nutritionfacts.org/questions/is-yerba-mate-tea-bad-for-you/"}}
{"_id": "PLAIN-379", "text": "How did you do the mercury fillings and canned tuna calculation?", "metadata": {"url": "http://nutritionfacts.org/questions/mercury-fillings-and-canned-tuna/"}}
{"_id": "PLAIN-385", "text": "What's the best diet for atrial fibrillation?", "metadata": {"url": "http://nutritionfacts.org/questions/diet-and-atrial-fibrillation/"}}
{"_id": "PLAIN-386", "text": "My skin is turning orange (carotenoderma)--too many carrots?", "metadata": {"url": "http://nutritionfacts.org/questions/causes-of-skin-discoloration/"}}
{"_id": "PLAIN-388", "text": "Does caffeine impair endothelial function in our arteries?", "metadata": {"url": "http://nutritionfacts.org/questions/positive-health-benefits-of-caffeine/"}}
{"_id": "PLAIN-389", "text": "What about the oxalic acid in beets?", "metadata": {"url": "http://nutritionfacts.org/questions/oxalic-acid-in-beets/"}}
{"_id": "PLAIN-390", "text": "Is hempseed oil beneficial to adults with eczema?", "metadata": {"url": "http://nutritionfacts.org/questions/is-hempseed-oil-beneficial-to-adults-with-eczema/"}}
{"_id": "PLAIN-391", "text": "What is the healthiest potato?", "metadata": {"url": "http://nutritionfacts.org/questions/what-is-the-healthiest-potato/"}}
{"_id": "PLAIN-392", "text": "Should we avoid celery to prevent colon cancer?", "metadata": {"url": "http://nutritionfacts.org/questions/celery-for-colon-cancer-prevention/"}}
{"_id": "PLAIN-393", "text": "Should we avoid canned tomatoes and non-organic root vegetables?", "metadata": {"url": "http://nutritionfacts.org/questions/avoiding-canned-tomato-and-non-organic-root-vegetables/"}}
{"_id": "PLAIN-396", "text": "How much cinnamon is too much?", "metadata": {"url": "http://nutritionfacts.org/questions/how-much-cinnamon-is-toxic/"}}
{"_id": "PLAIN-397", "text": "Sulfite sensitivity from sulphur dioxide in dried fruits?", "metadata": {"url": "http://nutritionfacts.org/questions/sulfite-sensitivity-from-dried-fruits/"}}
{"_id": "PLAIN-400", "text": "Can tea with meals hinder iron absorption?", "metadata": {"url": "http://nutritionfacts.org/questions/can-tea-hinder-the-absorption-of-iron/"}}
{"_id": "PLAIN-401", "text": "What are the best sources of vitamin K?", "metadata": {"url": "http://nutritionfacts.org/questions/best-sources-of-vitamin-k/"}}
{"_id": "PLAIN-402", "text": "Any resources for vegan pregnancy, infancy, and childhood?", "metadata": {"url": "http://nutritionfacts.org/questions/vegan-pregnancy-infancy-and-childhood/"}}
{"_id": "PLAIN-403", "text": "Dairy and ear infections: is there an association?", "metadata": {"url": "http://nutritionfacts.org/questions/dairy-and-ear-infections/"}}
{"_id": "PLAIN-404", "text": "Is moringa (Moringa oleifera) good for you?", "metadata": {"url": "http://nutritionfacts.org/questions/the-health-benefits-of-moringa/"}}
{"_id": "PLAIN-405", "text": "Is raw milk healthy?", "metadata": {"url": "http://nutritionfacts.org/questions/raw-milk-versus-pasteurized-milk/"}}
{"_id": "PLAIN-408", "text": "What about the INTERHEART study on heart attack risk factors?", "metadata": {"url": "http://nutritionfacts.org/questions/modifiable-risk-factors-for-heart-attacks/"}}
{"_id": "PLAIN-409", "text": "Is the new vitamin D3 spray a waste of money?", "metadata": {"url": "http://nutritionfacts.org/questions/is-the-new-vitamin-d3-spray-a-waste-of-money/"}}
{"_id": "PLAIN-410", "text": "Can Indian gooseberries (amla) be cooked without losing the health benefits?", "metadata": {"url": "http://nutritionfacts.org/questions/can-indian-gooseberries-be-used-in-baked-goods-without-sacrificing-the-health-benefits/"}}
{"_id": "PLAIN-411", "text": "How can I preserve the anti-cancer effects of cooked garlic?", "metadata": {"url": "http://nutritionfacts.org/questions/what-are-the-anti-cancer-effects-of-garlic/"}}
{"_id": "PLAIN-412", "text": "Given the \u201cbrain-eating amoeba\u201d (Naegleria fowleri) in tap water should I sterilize my neti pot water?", "metadata": {"url": "http://nutritionfacts.org/questions/should-i-sterilize-my-neti-pot/"}}
{"_id": "PLAIN-413", "text": "Does adding baking soda to soaking beans reduce gas?", "metadata": {"url": "http://nutritionfacts.org/questions/does-adding-baking-soda-to-soaking-beans-reduce-raffinose/"}}
{"_id": "PLAIN-414", "text": "How much fruit is safe to consume?", "metadata": {"url": "http://nutritionfacts.org/questions/how-much-fruit-is-safe-to-consume/"}}
{"_id": "PLAIN-416", "text": "Are GMOs safe and are the nutrients in our crops declining?", "metadata": {"url": "http://nutritionfacts.org/questions/gmos-and-decreased-nutrition-in-our-foods/"}}
{"_id": "PLAIN-419", "text": "What's the best low calorie sweetener?", "metadata": {"url": "http://nutritionfacts.org/questions/the-best-sweetner/"}}
{"_id": "PLAIN-420", "text": "Can Vitamin D supplements help prevent respiratory infections?", "metadata": {"url": "http://nutritionfacts.org/questions/can-vitamin-d-supplements-be-helpful-in-preventing-respiratory-disease/"}}
{"_id": "PLAIN-421", "text": "Second opinion for 8-year-old with anemia?", "metadata": {"url": "http://nutritionfacts.org/questions/second-opinion-for-8-year-old-with-anemia/"}}
{"_id": "PLAIN-422", "text": "What about getting gas from beans?", "metadata": {"url": "http://nutritionfacts.org/questions/is-the-gassiness-of-beans-exaggerated/"}}
{"_id": "PLAIN-423", "text": "What is a good source of probiotics?", "metadata": {"url": "http://nutritionfacts.org/questions/what-is-a-good-source-of-probiotics/"}}
{"_id": "PLAIN-425", "text": "Soy-based (Gardein) vs. mycoprotein-based (Quorn) veggie chicken: which is better?", "metadata": {"url": "http://nutritionfacts.org/questions/soy-based-versus-mycoprotein-based-fake-chicken-which-is-better/"}}
{"_id": "PLAIN-426", "text": "How can I avoid the top 10 leading causes of death?", "metadata": {"url": "http://nutritionfacts.org/questions/how-can-i-avoid-the-top-10-leading-causes-of-death/"}}
{"_id": "PLAIN-427", "text": "Where does the fat come from in a skinless chicken breast?", "metadata": {"url": "http://nutritionfacts.org/questions/where-does-the-fat-come-from-in-a-skinless-chicken-breast/"}}
{"_id": "PLAIN-431", "text": "What is the recommended child requirement for vitamin D?", "metadata": {"url": "http://nutritionfacts.org/questions/what-is-the-recommended-child-requirement-for-vitamin-d/"}}
{"_id": "PLAIN-432", "text": "What is the definition of a \"handful\" serving of nuts?", "metadata": {"url": "http://nutritionfacts.org/questions/what-is-the-definition-of-a-handful-of-nuts/"}}
{"_id": "PLAIN-433", "text": "Could a low-salt diet be bad for your heart?", "metadata": {"url": "http://nutritionfacts.org/questions/is-a-low-salt-diet-bad-for-your-heart/"}}
{"_id": "PLAIN-434", "text": "How do you explain never getting Salmonella from eating raw cake batter?", "metadata": {"url": "http://nutritionfacts.org/questions/how-do-you-explain-never-getting-samonella-from-eating-raw-cake-batter/"}}
{"_id": "PLAIN-435", "text": "What about Semmelweis and medicine's shameful handwashing history?", "metadata": {"url": "http://nutritionfacts.org/questions/the-history-of-handwashing-and-the-spread-of-disease/"}}
{"_id": "PLAIN-436", "text": "How can we reach out to doctors with this life-saving information?", "metadata": {"url": "http://nutritionfacts.org/questions/bringing-the-fun-back-into-my-medical-practice/"}}
{"_id": "PLAIN-437", "text": "What are the benefits of diet in juvenile rheumatoid arthritis?", "metadata": {"url": "http://nutritionfacts.org/questions/what-are-the-benefits-of-diet-in-juvenile-arthritis/"}}
{"_id": "PLAIN-438", "text": "What is the best diet for kidney stone prevention?", "metadata": {"url": "http://nutritionfacts.org/questions/what-is-the-best-diet-for-kidney-stone-prevention/"}}
{"_id": "PLAIN-443", "text": "Is the plastic chemical BPA really harmful to your health?", "metadata": {"url": "http://nutritionfacts.org/questions/is-bpa-really-harmful-to-your-health/"}}
{"_id": "PLAIN-444", "text": "Do pine needles from a Douglas Fir or redwood provide a good source of antioxidants?", "metadata": {"url": "http://nutritionfacts.org/questions/do-pine-needles-from-a-douglas-fir-or-redwood-provide-a-good-source-of-antioxidants/"}}
{"_id": "PLAIN-446", "text": "Is titanium dioxide in Daiya cheese harmful as a food additive?", "metadata": {"url": "http://nutritionfacts.org/questions/is-titanium-dioxide-harmful-as-a-food-additive/"}}
{"_id": "PLAIN-448", "text": "What's the best source of those dates you like? (halawi, bahri, khadrawi)", "metadata": {"url": "http://nutritionfacts.org/questions/where-can-i-find-a-good-variety-of-dates/"}}
{"_id": "PLAIN-450", "text": "Are there benefits to drinking aloe vera juice?", "metadata": {"url": "http://nutritionfacts.org/questions/are-there-any-benefits-of-aloe-vera-concerning-digestion/"}}
{"_id": "PLAIN-453", "text": "Are homegrown alfalfa sprouts safe?", "metadata": {"url": "http://nutritionfacts.org/questions/are-homegrown-alfalfa-sprouts-safe/"}}
{"_id": "PLAIN-454", "text": "Is licorice tea also harmful?", "metadata": {"url": "http://nutritionfacts.org/questions/is-licorice-tea-harmful/"}}
{"_id": "PLAIN-455", "text": "Can soy suppress thyroid function?", "metadata": {"url": "http://nutritionfacts.org/questions/can-soy-suppress-the-thyroid/"}}
{"_id": "PLAIN-459", "text": "Are the nutrients from blended vegetables absorbed better than raw vegetables?", "metadata": {"url": "http://nutritionfacts.org/questions/are-the-nutrients-from-blended-vegetables-absorbed-better-than-raw-vegetables/"}}
{"_id": "PLAIN-460", "text": "What about the pollutants like phthalates in plant foods?", "metadata": {"url": "http://nutritionfacts.org/questions/how-much-impact-does-the-presence-of-phthalate-metabolites-have-in-our-food/"}}
{"_id": "PLAIN-461", "text": "Can hot peppers (capsaicin) cause cancer?", "metadata": {"url": "http://nutritionfacts.org/questions/can-capsaicin-and-hot-peppers-cause-cancer/"}}
{"_id": "PLAIN-462", "text": "Is cabbage effective against breast cancer?", "metadata": {"url": "http://nutritionfacts.org/questions/is-cabbage-effective-against-breast-cancer/"}}
{"_id": "PLAIN-463", "text": "Is thermography better than mammograms for early breast cancer detection?", "metadata": {"url": "http://nutritionfacts.org/questions/is-thermography-the-new-early-cancer-detection-method/"}}
{"_id": "PLAIN-464", "text": "Does \u201corganic\u201d chicken contain less arsenic?", "metadata": {"url": "http://nutritionfacts.org/questions/does-organic-chicken-contain-less-arsenic/"}}
{"_id": "PLAIN-465", "text": "Are there any risks of excess vitamin B12 consumption?", "metadata": {"url": "http://nutritionfacts.org/questions/are-there-known-risks-of-excess-b12-consumption/"}}
{"_id": "PLAIN-466", "text": "How do you achieve a good omega 3 to omega 6 fatty acid ratio?", "metadata": {"url": "http://nutritionfacts.org/questions/what-would-you-suggest-as-an-ideal-omega-369/"}}
{"_id": "PLAIN-469", "text": "Are free-range eggs healthier than conventional eggs?", "metadata": {"url": "http://nutritionfacts.org/questions/are-free-range-eggs-healthier-than-conventional-eggs/"}}
{"_id": "PLAIN-470", "text": "5-alpha pregnanedione", "metadata": {"url": "http://nutritionfacts.org/topics/5-alpha-pregnanedione/"}}
{"_id": "PLAIN-471", "text": "A/V ratio", "metadata": {"url": "http://nutritionfacts.org/topics/av-ratio/"}}
{"_id": "PLAIN-472", "text": "abdominal aortic aneurysm", "metadata": {"url": "http://nutritionfacts.org/topics/abdominal-aortic-aneurysm/"}}
{"_id": "PLAIN-473", "text": "abdominal fat", "metadata": {"url": "http://nutritionfacts.org/topics/abdominal-fat/"}}
{"_id": "PLAIN-474", "text": "abdominal pain", "metadata": {"url": "http://nutritionfacts.org/topics/abdominal-pain/"}}
{"_id": "PLAIN-475", "text": "Academy of Nutrition and Dietetics", "metadata": {"url": "http://nutritionfacts.org/topics/academy-of-nutrition-and-dietetics/"}}
{"_id": "PLAIN-476", "text": "aca\u00ed berries", "metadata": {"url": "http://nutritionfacts.org/topics/acai-berries/"}}
{"_id": "PLAIN-479", "text": "acesulfame K", "metadata": {"url": "http://nutritionfacts.org/topics/acesulfame-k/"}}
{"_id": "PLAIN-480", "text": "acetaldehyde", "metadata": {"url": "http://nutritionfacts.org/topics/acetaldehyde/"}}
{"_id": "PLAIN-481", "text": "acetaminophen", "metadata": {"url": "http://nutritionfacts.org/topics/acetaminophen/"}}
{"_id": "PLAIN-482", "text": "acid/base balance", "metadata": {"url": "http://nutritionfacts.org/topics/acidbase-balance/"}}
{"_id": "PLAIN-483", "text": "acne", "metadata": {"url": "http://nutritionfacts.org/topics/acne/"}}
{"_id": "PLAIN-484", "text": "acromegaly", "metadata": {"url": "http://nutritionfacts.org/topics/acromegaly/"}}
{"_id": "PLAIN-485", "text": "acrylamide", "metadata": {"url": "http://nutritionfacts.org/topics/acrylamide/"}}
{"_id": "PLAIN-486", "text": "acute myeloid leukemia", "metadata": {"url": "http://nutritionfacts.org/topics/acute-myeloid-leukemia/"}}
{"_id": "PLAIN-489", "text": "ADHD", "metadata": {"url": "http://nutritionfacts.org/topics/adhd/"}}
{"_id": "PLAIN-490", "text": "adipocytes", "metadata": {"url": "http://nutritionfacts.org/topics/adipocytes/"}}
{"_id": "PLAIN-491", "text": "adiponectin", "metadata": {"url": "http://nutritionfacts.org/topics/adiponectin/"}}
{"_id": "PLAIN-492", "text": "adolescence", "metadata": {"url": "http://nutritionfacts.org/topics/adolescence/"}}
{"_id": "PLAIN-493", "text": "Advanced Glycation End-products", "metadata": {"url": "http://nutritionfacts.org/topics/advanced-glycation-end-products/"}}
{"_id": "PLAIN-495", "text": "Adventist Health Studies", "metadata": {"url": "http://nutritionfacts.org/topics/adventist-health-studies/"}}
{"_id": "PLAIN-496", "text": "affordability", "metadata": {"url": "http://nutritionfacts.org/topics/affordability/"}}
{"_id": "PLAIN-497", "text": "Africa", "metadata": {"url": "http://nutritionfacts.org/topics/africa/"}}
{"_id": "PLAIN-500", "text": "agaritine", "metadata": {"url": "http://nutritionfacts.org/topics/agaritine/"}}
{"_id": "PLAIN-501", "text": "agave nectar", "metadata": {"url": "http://nutritionfacts.org/topics/agave-nectar/"}}
{"_id": "PLAIN-502", "text": "Agent Orange", "metadata": {"url": "http://nutritionfacts.org/topics/agent-orange/"}}
{"_id": "PLAIN-503", "text": "aggression", "metadata": {"url": "http://nutritionfacts.org/topics/aggression/"}}
{"_id": "PLAIN-504", "text": "aging", "metadata": {"url": "http://nutritionfacts.org/topics/aging/"}}
{"_id": "PLAIN-505", "text": "Ah receptor", "metadata": {"url": "http://nutritionfacts.org/topics/ah-receptor/"}}
{"_id": "PLAIN-506", "text": "AIDS", "metadata": {"url": "http://nutritionfacts.org/topics/aids/"}}
{"_id": "PLAIN-507", "text": "air pollution", "metadata": {"url": "http://nutritionfacts.org/topics/air-pollution/"}}
{"_id": "PLAIN-511", "text": "Albert Einstein", "metadata": {"url": "http://nutritionfacts.org/topics/albert-einstein/"}}
{"_id": "PLAIN-512", "text": "albumin", "metadata": {"url": "http://nutritionfacts.org/topics/albumin/"}}
{"_id": "PLAIN-513", "text": "alcohol", "metadata": {"url": "http://nutritionfacts.org/topics/alcohol/"}}
{"_id": "PLAIN-514", "text": "alfalfa sprouts", "metadata": {"url": "http://nutritionfacts.org/topics/alfalfa-sprouts/"}}
{"_id": "PLAIN-515", "text": "algae", "metadata": {"url": "http://nutritionfacts.org/topics/algae/"}}
{"_id": "PLAIN-516", "text": "alkaline diet", "metadata": {"url": "http://nutritionfacts.org/topics/alkaline-diet/"}}
{"_id": "PLAIN-517", "text": "alkaline water", "metadata": {"url": "http://nutritionfacts.org/topics/alkaline-water/"}}
{"_id": "PLAIN-518", "text": "alkylphenols", "metadata": {"url": "http://nutritionfacts.org/topics/alkylphenols/"}}
{"_id": "PLAIN-521", "text": "allopurinol", "metadata": {"url": "http://nutritionfacts.org/topics/allopurinol/"}}
{"_id": "PLAIN-523", "text": "almond milk", "metadata": {"url": "http://nutritionfacts.org/topics/almond-milk/"}}
{"_id": "PLAIN-524", "text": "almond oil", "metadata": {"url": "http://nutritionfacts.org/topics/almond-oil/"}}
{"_id": "PLAIN-525", "text": "almonds", "metadata": {"url": "http://nutritionfacts.org/topics/almonds/"}}
{"_id": "PLAIN-526", "text": "aloe vera", "metadata": {"url": "http://nutritionfacts.org/topics/aloe-vera/"}}
{"_id": "PLAIN-527", "text": "alpha waves", "metadata": {"url": "http://nutritionfacts.org/topics/alpha-waves/"}}
{"_id": "PLAIN-528", "text": "alpha-carotene", "metadata": {"url": "http://nutritionfacts.org/topics/alpha-carotene/"}}
{"_id": "PLAIN-529", "text": "alpha-gal", "metadata": {"url": "http://nutritionfacts.org/topics/alpha-gal/"}}
{"_id": "PLAIN-532", "text": "aluminum", "metadata": {"url": "http://nutritionfacts.org/topics/aluminum/"}}
{"_id": "PLAIN-533", "text": "Alzheimer\u2019s disease", "metadata": {"url": "http://nutritionfacts.org/topics/alzheimers-disease/"}}
{"_id": "PLAIN-534", "text": "AMA", "metadata": {"url": "http://nutritionfacts.org/topics/ama/"}}
{"_id": "PLAIN-535", "text": "amalgam fillings", "metadata": {"url": "http://nutritionfacts.org/topics/amalgam-fillings/"}}
{"_id": "PLAIN-536", "text": "amaranth", "metadata": {"url": "http://nutritionfacts.org/topics/amaranth/"}}
{"_id": "PLAIN-537", "text": "American Academy of Pediatrics", "metadata": {"url": "http://nutritionfacts.org/topics/american-academy-of-pediatrics/"}}
{"_id": "PLAIN-538", "text": "American Cancer Society", "metadata": {"url": "http://nutritionfacts.org/topics/american-cancer-society/"}}
{"_id": "PLAIN-539", "text": "American College of Cardiology", "metadata": {"url": "http://nutritionfacts.org/topics/american-college-of-cardiology/"}}
{"_id": "PLAIN-542", "text": "American Diabetes Association", "metadata": {"url": "http://nutritionfacts.org/topics/american-diabetes-association/"}}
{"_id": "PLAIN-543", "text": "American Dietetic Association", "metadata": {"url": "http://nutritionfacts.org/topics/american-dietetic-association/"}}
{"_id": "PLAIN-544", "text": "American Egg Board", "metadata": {"url": "http://nutritionfacts.org/topics/american-egg-board/"}}
{"_id": "PLAIN-545", "text": "American Heart Association", "metadata": {"url": "http://nutritionfacts.org/topics/american-heart-association/"}}
{"_id": "PLAIN-546", "text": "American Institute for Cancer Research", "metadata": {"url": "http://nutritionfacts.org/topics/american-institute-for-cancer-research/"}}
{"_id": "PLAIN-547", "text": "American Meat Institute", "metadata": {"url": "http://nutritionfacts.org/topics/american-meat-institute/"}}
{"_id": "PLAIN-548", "text": "American Public Health Association", "metadata": {"url": "http://nutritionfacts.org/topics/american-public-health-association/"}}
{"_id": "PLAIN-549", "text": "amla", "metadata": {"url": "http://nutritionfacts.org/topics/amla/"}}
{"_id": "PLAIN-552", "text": "amphetamines", "metadata": {"url": "http://nutritionfacts.org/topics/amphetamines/"}}
{"_id": "PLAIN-553", "text": "amputations", "metadata": {"url": "http://nutritionfacts.org/topics/amputations/"}}
{"_id": "PLAIN-554", "text": "amylase", "metadata": {"url": "http://nutritionfacts.org/topics/amylase/"}}
{"_id": "PLAIN-555", "text": "anal fissure", "metadata": {"url": "http://nutritionfacts.org/topics/anal-fissure/"}}
{"_id": "PLAIN-556", "text": "anal health", "metadata": {"url": "http://nutritionfacts.org/topics/anal-health/"}}
{"_id": "PLAIN-557", "text": "Ancel Keys", "metadata": {"url": "http://nutritionfacts.org/topics/ancel-keys/"}}
{"_id": "PLAIN-558", "text": "anchovies", "metadata": {"url": "http://nutritionfacts.org/topics/anchovies/"}}
{"_id": "PLAIN-559", "text": "anemia", "metadata": {"url": "http://nutritionfacts.org/topics/anemia/"}}
{"_id": "PLAIN-562", "text": "Angelina Jolie", "metadata": {"url": "http://nutritionfacts.org/topics/angelina-jolie/"}}
{"_id": "PLAIN-563", "text": "angina", "metadata": {"url": "http://nutritionfacts.org/topics/angina/"}}
{"_id": "PLAIN-564", "text": "angiogenesis", "metadata": {"url": "http://nutritionfacts.org/topics/angiogenesis/"}}
{"_id": "PLAIN-565", "text": "angiogram", "metadata": {"url": "http://nutritionfacts.org/topics/angiogram/"}}
{"_id": "PLAIN-566", "text": "angiography", "metadata": {"url": "http://nutritionfacts.org/topics/angiography/"}}
{"_id": "PLAIN-567", "text": "animal fat", "metadata": {"url": "http://nutritionfacts.org/topics/animal-fat/"}}
{"_id": "PLAIN-568", "text": "animal products", "metadata": {"url": "http://nutritionfacts.org/topics/animal-products/"}}
{"_id": "PLAIN-569", "text": "animal protein", "metadata": {"url": "http://nutritionfacts.org/topics/animal-protein/"}}
{"_id": "PLAIN-572", "text": "anise", "metadata": {"url": "http://nutritionfacts.org/topics/anise/"}}
{"_id": "PLAIN-573", "text": "ankylosing spondylitis", "metadata": {"url": "http://nutritionfacts.org/topics/ankylosing-spondylitis/"}}
{"_id": "PLAIN-576", "text": "antacids", "metadata": {"url": "http://nutritionfacts.org/topics/antacids/"}}
{"_id": "PLAIN-577", "text": "Antarctica", "metadata": {"url": "http://nutritionfacts.org/topics/antarctica/"}}
{"_id": "PLAIN-578", "text": "anthocyanins", "metadata": {"url": "http://nutritionfacts.org/topics/anthocyanins/"}}
{"_id": "PLAIN-579", "text": "antiangiogenesis", "metadata": {"url": "http://nutritionfacts.org/topics/antiangiogenesis/"}}
{"_id": "PLAIN-580", "text": "antibiotics", "metadata": {"url": "http://nutritionfacts.org/topics/antibiotics/"}}
{"_id": "PLAIN-581", "text": "antidepressants", "metadata": {"url": "http://nutritionfacts.org/topics/antidepressants/"}}
{"_id": "PLAIN-584", "text": "antioxidants", "metadata": {"url": "http://nutritionfacts.org/topics/antioxidants/"}}
{"_id": "PLAIN-585", "text": "antiperspirant", "metadata": {"url": "http://nutritionfacts.org/topics/antiperspirant/"}}
{"_id": "PLAIN-586", "text": "antiseptic", "metadata": {"url": "http://nutritionfacts.org/topics/antiseptic/"}}
{"_id": "PLAIN-587", "text": "anxiety", "metadata": {"url": "http://nutritionfacts.org/topics/anxiety/"}}
{"_id": "PLAIN-588", "text": "aorta", "metadata": {"url": "http://nutritionfacts.org/topics/aorta/"}}
{"_id": "PLAIN-589", "text": "aortic aneurysm", "metadata": {"url": "http://nutritionfacts.org/topics/aortic-aneurysm/"}}
{"_id": "PLAIN-590", "text": "apes", "metadata": {"url": "http://nutritionfacts.org/topics/apes/"}}
{"_id": "PLAIN-591", "text": "aphthous ulcers", "metadata": {"url": "http://nutritionfacts.org/topics/aphthous-ulcers/"}}
{"_id": "PLAIN-594", "text": "appendicitis", "metadata": {"url": "http://nutritionfacts.org/topics/appendicitis/"}}
{"_id": "PLAIN-595", "text": "apple juice", "metadata": {"url": "http://nutritionfacts.org/topics/apple-juice/"}}
{"_id": "PLAIN-596", "text": "Applebee's", "metadata": {"url": "http://nutritionfacts.org/topics/applebees/"}}
{"_id": "PLAIN-597", "text": "apples", "metadata": {"url": "http://nutritionfacts.org/topics/apples/"}}
{"_id": "PLAIN-598", "text": "apricots", "metadata": {"url": "http://nutritionfacts.org/topics/apricots/"}}
{"_id": "PLAIN-599", "text": "arachidonic acid", "metadata": {"url": "http://nutritionfacts.org/topics/arachidonic-acid/"}}
{"_id": "PLAIN-600", "text": "areca nuts", "metadata": {"url": "http://nutritionfacts.org/topics/areca-nuts/"}}
{"_id": "PLAIN-601", "text": "arginine", "metadata": {"url": "http://nutritionfacts.org/topics/arginine/"}}
{"_id": "PLAIN-604", "text": "aromatase", "metadata": {"url": "http://nutritionfacts.org/topics/aromatase/"}}
{"_id": "PLAIN-605", "text": "aromatherapy", "metadata": {"url": "http://nutritionfacts.org/topics/aromatherapy/"}}
{"_id": "PLAIN-606", "text": "arsenic", "metadata": {"url": "http://nutritionfacts.org/topics/arsenic/"}}
{"_id": "PLAIN-607", "text": "arthritis", "metadata": {"url": "http://nutritionfacts.org/topics/arthritis/"}}
{"_id": "PLAIN-608", "text": "artichokes", "metadata": {"url": "http://nutritionfacts.org/topics/artichokes/"}}
{"_id": "PLAIN-609", "text": "artificial colors", "metadata": {"url": "http://nutritionfacts.org/topics/artificial-colors/"}}
{"_id": "PLAIN-610", "text": "artificial flavors", "metadata": {"url": "http://nutritionfacts.org/topics/artificial-flavors/"}}
{"_id": "PLAIN-611", "text": "artificial sweeteners", "metadata": {"url": "http://nutritionfacts.org/topics/artificial-sweeteners/"}}
{"_id": "PLAIN-614", "text": "Asia", "metadata": {"url": "http://nutritionfacts.org/topics/asia/"}}
{"_id": "PLAIN-615", "text": "Asian markets", "metadata": {"url": "http://nutritionfacts.org/topics/asian-markets/"}}
{"_id": "PLAIN-616", "text": "asparagus", "metadata": {"url": "http://nutritionfacts.org/topics/asparagus/"}}
{"_id": "PLAIN-617", "text": "aspartame", "metadata": {"url": "http://nutritionfacts.org/topics/aspartame/"}}
{"_id": "PLAIN-618", "text": "aspirin", "metadata": {"url": "http://nutritionfacts.org/topics/aspirin/"}}
{"_id": "PLAIN-619", "text": "asthma", "metadata": {"url": "http://nutritionfacts.org/topics/asthma/"}}
{"_id": "PLAIN-620", "text": "astrocytes", "metadata": {"url": "http://nutritionfacts.org/topics/astrocytes/"}}
{"_id": "PLAIN-621", "text": "athletes", "metadata": {"url": "http://nutritionfacts.org/topics/athletes/"}}
{"_id": "PLAIN-624", "text": "ATP", "metadata": {"url": "http://nutritionfacts.org/topics/atp/"}}
{"_id": "PLAIN-625", "text": "atrial fibrillation", "metadata": {"url": "http://nutritionfacts.org/topics/atrial-fibrillation/"}}
{"_id": "PLAIN-626", "text": "attention deficit", "metadata": {"url": "http://nutritionfacts.org/topics/attention-deficit/"}}
{"_id": "PLAIN-628", "text": "Australia", "metadata": {"url": "http://nutritionfacts.org/topics/australia/"}}
{"_id": "PLAIN-629", "text": "autism", "metadata": {"url": "http://nutritionfacts.org/topics/autism/"}}
{"_id": "PLAIN-630", "text": "autoimmune diseases", "metadata": {"url": "http://nutritionfacts.org/topics/autoimmune-diseases/"}}
{"_id": "PLAIN-631", "text": "autophagy", "metadata": {"url": "http://nutritionfacts.org/topics/autophagy/"}}
{"_id": "PLAIN-632", "text": "avian leukosis/sarcoma virus", "metadata": {"url": "http://nutritionfacts.org/topics/avian-leukosissarcoma-virus/"}}
{"_id": "PLAIN-635", "text": "Ayurvedic medicine", "metadata": {"url": "http://nutritionfacts.org/topics/ayurvedic-medicine/"}}
{"_id": "PLAIN-636", "text": "azarcon", "metadata": {"url": "http://nutritionfacts.org/topics/azarcon/"}}
{"_id": "PLAIN-637", "text": "b12", "metadata": {"url": "http://nutritionfacts.org/topics/b12/"}}
{"_id": "PLAIN-639", "text": "back pain", "metadata": {"url": "http://nutritionfacts.org/topics/back-pain/"}}
{"_id": "PLAIN-640", "text": "bacon", "metadata": {"url": "http://nutritionfacts.org/topics/bacon/"}}
{"_id": "PLAIN-641", "text": "bacterial vaginosis", "metadata": {"url": "http://nutritionfacts.org/topics/bacterial-vaginosis/"}}
{"_id": "PLAIN-642", "text": "bacteriophages", "metadata": {"url": "http://nutritionfacts.org/topics/bacteriophages/"}}
{"_id": "PLAIN-643", "text": "Bacteroidetes", "metadata": {"url": "http://nutritionfacts.org/topics/bacteroidetes/"}}
{"_id": "PLAIN-646", "text": "baked beans", "metadata": {"url": "http://nutritionfacts.org/topics/baked-beans/"}}
{"_id": "PLAIN-647", "text": "baking", "metadata": {"url": "http://nutritionfacts.org/topics/baking/"}}
{"_id": "PLAIN-648", "text": "baking soda", "metadata": {"url": "http://nutritionfacts.org/topics/baking-soda/"}}
{"_id": "PLAIN-649", "text": "bamboo shoots", "metadata": {"url": "http://nutritionfacts.org/topics/bamboo-shoots/"}}
{"_id": "PLAIN-650", "text": "bananas", "metadata": {"url": "http://nutritionfacts.org/topics/bananas/"}}
{"_id": "PLAIN-651", "text": "barbecuing", "metadata": {"url": "http://nutritionfacts.org/topics/barbecuing/"}}
{"_id": "PLAIN-653", "text": "bargains", "metadata": {"url": "http://nutritionfacts.org/topics/bargains/"}}
{"_id": "PLAIN-655", "text": "barley", "metadata": {"url": "http://nutritionfacts.org/topics/barley/"}}
{"_id": "PLAIN-661", "text": "beef", "metadata": {"url": "http://nutritionfacts.org/topics/beef/"}}
{"_id": "PLAIN-662", "text": "beef brains", "metadata": {"url": "http://nutritionfacts.org/topics/beef-brains/"}}
{"_id": "PLAIN-663", "text": "beer", "metadata": {"url": "http://nutritionfacts.org/topics/beer/"}}
{"_id": "PLAIN-664", "text": "beet greens", "metadata": {"url": "http://nutritionfacts.org/topics/beet-greens/"}}
{"_id": "PLAIN-665", "text": "beet juice", "metadata": {"url": "http://nutritionfacts.org/topics/beet-juice/"}}
{"_id": "PLAIN-667", "text": "beets", "metadata": {"url": "http://nutritionfacts.org/topics/beets/"}}
{"_id": "PLAIN-668", "text": "beeturia", "metadata": {"url": "http://nutritionfacts.org/topics/beeturia/"}}
{"_id": "PLAIN-669", "text": "Belgium", "metadata": {"url": "http://nutritionfacts.org/topics/belgium/"}}
{"_id": "PLAIN-672", "text": "benzodiazepines", "metadata": {"url": "http://nutritionfacts.org/topics/benzodiazepines/"}}
{"_id": "PLAIN-673", "text": "bergamots", "metadata": {"url": "http://nutritionfacts.org/topics/bergamots/"}}
{"_id": "PLAIN-674", "text": "bergamottin", "metadata": {"url": "http://nutritionfacts.org/topics/bergamottin/"}}
{"_id": "PLAIN-675", "text": "beriberi", "metadata": {"url": "http://nutritionfacts.org/topics/beriberi/"}}
{"_id": "PLAIN-676", "text": "berries", "metadata": {"url": "http://nutritionfacts.org/topics/berries/"}}
{"_id": "PLAIN-677", "text": "beta carotene", "metadata": {"url": "http://nutritionfacts.org/topics/beta-carotene/"}}
{"_id": "PLAIN-678", "text": "beta glucan", "metadata": {"url": "http://nutritionfacts.org/topics/beta-glucan/"}}
{"_id": "PLAIN-679", "text": "beta waves", "metadata": {"url": "http://nutritionfacts.org/topics/beta-waves/"}}
{"_id": "PLAIN-682", "text": "beverages", "metadata": {"url": "http://nutritionfacts.org/topics/beverages/"}}
{"_id": "PLAIN-683", "text": "BHA", "metadata": {"url": "http://nutritionfacts.org/topics/bha/"}}
{"_id": "PLAIN-684", "text": "bibhitaki fruit", "metadata": {"url": "http://nutritionfacts.org/topics/bibhitaki-fruit/"}}
{"_id": "PLAIN-685", "text": "biblical teachings", "metadata": {"url": "http://nutritionfacts.org/topics/biblical-teachings/"}}
{"_id": "PLAIN-686", "text": "Big Mac", "metadata": {"url": "http://nutritionfacts.org/topics/big-mac/"}}
{"_id": "PLAIN-687", "text": "bile acids", "metadata": {"url": "http://nutritionfacts.org/topics/bile-acids/"}}
{"_id": "PLAIN-688", "text": "Bill Gates", "metadata": {"url": "http://nutritionfacts.org/topics/bill-gates/"}}
{"_id": "PLAIN-689", "text": "billberries", "metadata": {"url": "http://nutritionfacts.org/topics/billberries/"}}
{"_id": "PLAIN-692", "text": "biogenic amines", "metadata": {"url": "http://nutritionfacts.org/topics/biogenic-amines/"}}
{"_id": "PLAIN-693", "text": "biomagnification", "metadata": {"url": "http://nutritionfacts.org/topics/biomagnification/"}}
{"_id": "PLAIN-694", "text": "biomarkers", "metadata": {"url": "http://nutritionfacts.org/topics/biomarkers/"}}
{"_id": "PLAIN-695", "text": "bipolar disorder", "metadata": {"url": "http://nutritionfacts.org/topics/bipolar-disorder/"}}
{"_id": "PLAIN-696", "text": "birth control pills", "metadata": {"url": "http://nutritionfacts.org/topics/birth-control-pills/"}}
{"_id": "PLAIN-697", "text": "birth defects", "metadata": {"url": "http://nutritionfacts.org/topics/birth-defects/"}}
{"_id": "PLAIN-698", "text": "Biscuit Cake Chocolate and Confectionery Association", "metadata": {"url": "http://nutritionfacts.org/topics/biscuit-cake-chocolate-and-confectionery-association/"}}
{"_id": "PLAIN-699", "text": "bison", "metadata": {"url": "http://nutritionfacts.org/topics/bison/"}}
{"_id": "PLAIN-702", "text": "black tea", "metadata": {"url": "http://nutritionfacts.org/topics/black-tea/"}}
{"_id": "PLAIN-703", "text": "blackberries", "metadata": {"url": "http://nutritionfacts.org/topics/blackberries/"}}
{"_id": "PLAIN-704", "text": "bladder cancer", "metadata": {"url": "http://nutritionfacts.org/topics/bladder-cancer/"}}
{"_id": "PLAIN-705", "text": "bladder disease", "metadata": {"url": "http://nutritionfacts.org/topics/bladder-disease/"}}
{"_id": "PLAIN-706", "text": "bladder health", "metadata": {"url": "http://nutritionfacts.org/topics/bladder-health/"}}
{"_id": "PLAIN-707", "text": "bladder infections", "metadata": {"url": "http://nutritionfacts.org/topics/bladder-infections/"}}
{"_id": "PLAIN-708", "text": "blindness", "metadata": {"url": "http://nutritionfacts.org/topics/blindness/"}}
{"_id": "PLAIN-709", "text": "bloating", "metadata": {"url": "http://nutritionfacts.org/topics/bloating/"}}
{"_id": "PLAIN-712", "text": "blood donation", "metadata": {"url": "http://nutritionfacts.org/topics/blood-donation/"}}
{"_id": "PLAIN-713", "text": "blood pressure", "metadata": {"url": "http://nutritionfacts.org/topics/blood-pressure/"}}
{"_id": "PLAIN-714", "text": "blood sugar", "metadata": {"url": "http://nutritionfacts.org/topics/blood-sugar/"}}
{"_id": "PLAIN-715", "text": "blood thinning", "metadata": {"url": "http://nutritionfacts.org/topics/blood-thinning/"}}
{"_id": "PLAIN-716", "text": "blood type diet", "metadata": {"url": "http://nutritionfacts.org/topics/blood-type-diet/"}}
{"_id": "PLAIN-717", "text": "blood-letting", "metadata": {"url": "http://nutritionfacts.org/topics/blood-letting/"}}
{"_id": "PLAIN-718", "text": "blue-green algae", "metadata": {"url": "http://nutritionfacts.org/topics/blue-green-algae/"}}
{"_id": "PLAIN-719", "text": "blueberries", "metadata": {"url": "http://nutritionfacts.org/topics/blueberries/"}}
{"_id": "PLAIN-722", "text": "body building", "metadata": {"url": "http://nutritionfacts.org/topics/body-building/"}}
{"_id": "PLAIN-723", "text": "body fat", "metadata": {"url": "http://nutritionfacts.org/topics/body-fat/"}}
{"_id": "PLAIN-724", "text": "body odor", "metadata": {"url": "http://nutritionfacts.org/topics/body-odor/"}}
{"_id": "PLAIN-725", "text": "boiling", "metadata": {"url": "http://nutritionfacts.org/topics/boiling/"}}
{"_id": "PLAIN-726", "text": "bok choy", "metadata": {"url": "http://nutritionfacts.org/topics/bok-choy/"}}
{"_id": "PLAIN-727", "text": "bokhoor", "metadata": {"url": "http://nutritionfacts.org/topics/bokhoor/"}}
{"_id": "PLAIN-728", "text": "bolete mushroom", "metadata": {"url": "http://nutritionfacts.org/topics/bolete-mushroom/"}}
{"_id": "PLAIN-729", "text": "bologna", "metadata": {"url": "http://nutritionfacts.org/topics/bologna/"}}
{"_id": "PLAIN-732", "text": "bone health", "metadata": {"url": "http://nutritionfacts.org/topics/bone-health/"}}
{"_id": "PLAIN-733", "text": "bone marrow health", "metadata": {"url": "http://nutritionfacts.org/topics/bone-marrow-health/"}}
{"_id": "PLAIN-734", "text": "bone mineral density", "metadata": {"url": "http://nutritionfacts.org/topics/bone-mineral-density/"}}
{"_id": "PLAIN-735", "text": "boron", "metadata": {"url": "http://nutritionfacts.org/topics/boron/"}}
{"_id": "PLAIN-736", "text": "Boston", "metadata": {"url": "http://nutritionfacts.org/topics/boston/"}}
{"_id": "PLAIN-737", "text": "botulism", "metadata": {"url": "http://nutritionfacts.org/topics/botulism/"}}
{"_id": "PLAIN-738", "text": "bovine leukemia virus", "metadata": {"url": "http://nutritionfacts.org/topics/bovine-leukemia-virus/"}}
{"_id": "PLAIN-739", "text": "bowel movements", "metadata": {"url": "http://nutritionfacts.org/topics/bowel-movements/"}}
{"_id": "PLAIN-742", "text": "Bragg Liquid Aminos", "metadata": {"url": "http://nutritionfacts.org/topics/bragg-liquid-aminos/"}}
{"_id": "PLAIN-743", "text": "brain disease", "metadata": {"url": "http://nutritionfacts.org/topics/brain-disease/"}}
{"_id": "PLAIN-744", "text": "brain health", "metadata": {"url": "http://nutritionfacts.org/topics/brain-health/"}}
{"_id": "PLAIN-745", "text": "brain parasites", "metadata": {"url": "http://nutritionfacts.org/topics/brain-parasites/"}}
{"_id": "PLAIN-746", "text": "brain surgery", "metadata": {"url": "http://nutritionfacts.org/topics/brain-surgery/"}}
{"_id": "PLAIN-747", "text": "brain tumors", "metadata": {"url": "http://nutritionfacts.org/topics/brain-tumors/"}}
{"_id": "PLAIN-748", "text": "brain waves", "metadata": {"url": "http://nutritionfacts.org/topics/brain-waves/"}}
{"_id": "PLAIN-749", "text": "brains", "metadata": {"url": "http://nutritionfacts.org/topics/brains/"}}
{"_id": "PLAIN-752", "text": "bread", "metadata": {"url": "http://nutritionfacts.org/topics/bread/"}}
{"_id": "PLAIN-753", "text": "breakfast", "metadata": {"url": "http://nutritionfacts.org/topics/breakfast/"}}
{"_id": "PLAIN-754", "text": "breakfast cereal", "metadata": {"url": "http://nutritionfacts.org/topics/breakfast-cereal/"}}
{"_id": "PLAIN-755", "text": "breast cancer", "metadata": {"url": "http://nutritionfacts.org/topics/breast-cancer/"}}
{"_id": "PLAIN-756", "text": "breast cancer survival", "metadata": {"url": "http://nutritionfacts.org/topics/breast-cancer-survival/"}}
{"_id": "PLAIN-757", "text": "breast development", "metadata": {"url": "http://nutritionfacts.org/topics/breast-development/"}}
{"_id": "PLAIN-758", "text": "breast disease", "metadata": {"url": "http://nutritionfacts.org/topics/breast-disease/"}}
{"_id": "PLAIN-759", "text": "breast health", "metadata": {"url": "http://nutritionfacts.org/topics/breast-health/"}}
{"_id": "PLAIN-762", "text": "breastfeeding", "metadata": {"url": "http://nutritionfacts.org/topics/breastfeeding/"}}
{"_id": "PLAIN-763", "text": "Brenda Davis", "metadata": {"url": "http://nutritionfacts.org/topics/brenda-davis/"}}
{"_id": "PLAIN-764", "text": "brewer's yeast", "metadata": {"url": "http://nutritionfacts.org/topics/brewers-yeast/"}}
{"_id": "PLAIN-765", "text": "bristle cone pine", "metadata": {"url": "http://nutritionfacts.org/topics/bristle-cone-pine/"}}
{"_id": "PLAIN-766", "text": "broad beans", "metadata": {"url": "http://nutritionfacts.org/topics/broad-beans/"}}
{"_id": "PLAIN-767", "text": "broccoli", "metadata": {"url": "http://nutritionfacts.org/topics/broccoli/"}}
{"_id": "PLAIN-768", "text": "broccoli raab", "metadata": {"url": "http://nutritionfacts.org/topics/broccoli-raab/"}}
{"_id": "PLAIN-769", "text": "broccoli sprouts", "metadata": {"url": "http://nutritionfacts.org/topics/broccoli-sprouts/"}}
{"_id": "PLAIN-773", "text": "brown rice syrup", "metadata": {"url": "http://nutritionfacts.org/topics/brown-rice-syrup/"}}
{"_id": "PLAIN-774", "text": "brown sugar", "metadata": {"url": "http://nutritionfacts.org/topics/brown-sugar/"}}
{"_id": "PLAIN-775", "text": "Brussels sprouts", "metadata": {"url": "http://nutritionfacts.org/topics/brussels-sprouts/"}}
{"_id": "PLAIN-776", "text": "BT corn", "metadata": {"url": "http://nutritionfacts.org/topics/bt-corn/"}}
{"_id": "PLAIN-777", "text": "buckwheat", "metadata": {"url": "http://nutritionfacts.org/topics/buckwheat/"}}
{"_id": "PLAIN-778", "text": "Buddhists", "metadata": {"url": "http://nutritionfacts.org/topics/buddhists/"}}
{"_id": "PLAIN-779", "text": "Burger King", "metadata": {"url": "http://nutritionfacts.org/topics/burger-king/"}}
{"_id": "PLAIN-780", "text": "burgers", "metadata": {"url": "http://nutritionfacts.org/topics/burgers/"}}
{"_id": "PLAIN-783", "text": "butcher's warts", "metadata": {"url": "http://nutritionfacts.org/topics/butchers-warts/"}}
{"_id": "PLAIN-784", "text": "butter", "metadata": {"url": "http://nutritionfacts.org/topics/butter/"}}
{"_id": "PLAIN-785", "text": "butter flavor", "metadata": {"url": "http://nutritionfacts.org/topics/butter-flavor/"}}
{"_id": "PLAIN-786", "text": "buttermilk", "metadata": {"url": "http://nutritionfacts.org/topics/buttermilk/"}}
{"_id": "PLAIN-787", "text": "butternut squash", "metadata": {"url": "http://nutritionfacts.org/topics/butternut-squash/"}}
{"_id": "PLAIN-788", "text": "butyrate", "metadata": {"url": "http://nutritionfacts.org/topics/butyrate/"}}
{"_id": "PLAIN-789", "text": "C-reactive protein", "metadata": {"url": "http://nutritionfacts.org/topics/c-reactive-protein/"}}
{"_id": "PLAIN-790", "text": "C. diff", "metadata": {"url": "http://nutritionfacts.org/topics/c-diff/"}}
{"_id": "PLAIN-793", "text": "cadavers", "metadata": {"url": "http://nutritionfacts.org/topics/cadavers/"}}
{"_id": "PLAIN-795", "text": "cadmium", "metadata": {"url": "http://nutritionfacts.org/topics/cadmium/"}}
{"_id": "PLAIN-796", "text": "caesarean section", "metadata": {"url": "http://nutritionfacts.org/topics/caesarean-section/"}}
{"_id": "PLAIN-797", "text": "caffeine", "metadata": {"url": "http://nutritionfacts.org/topics/caffeine/"}}
{"_id": "PLAIN-798", "text": "cake", "metadata": {"url": "http://nutritionfacts.org/topics/cake/"}}
{"_id": "PLAIN-799", "text": "calcium", "metadata": {"url": "http://nutritionfacts.org/topics/calcium/"}}
{"_id": "PLAIN-801", "text": "California", "metadata": {"url": "http://nutritionfacts.org/topics/california/"}}
{"_id": "PLAIN-802", "text": "California Dried Plum Board", "metadata": {"url": "http://nutritionfacts.org/topics/california-dried-plum-board/"}}
{"_id": "PLAIN-807", "text": "calories", "metadata": {"url": "http://nutritionfacts.org/topics/calories/"}}
{"_id": "PLAIN-809", "text": "Camplyobacter", "metadata": {"url": "http://nutritionfacts.org/topics/camplyobacter/"}}
{"_id": "PLAIN-810", "text": "Campylobacter", "metadata": {"url": "http://nutritionfacts.org/topics/campylobacter/"}}
{"_id": "PLAIN-811", "text": "Canada", "metadata": {"url": "http://nutritionfacts.org/topics/canada/"}}
{"_id": "PLAIN-812", "text": "cancer", "metadata": {"url": "http://nutritionfacts.org/topics/cancer/"}}
{"_id": "PLAIN-813", "text": "cancer stem cells", "metadata": {"url": "http://nutritionfacts.org/topics/cancer-stem-cells/"}}
{"_id": "PLAIN-814", "text": "cancer survival", "metadata": {"url": "http://nutritionfacts.org/topics/cancer-survival/"}}
{"_id": "PLAIN-815", "text": "cancer viruses", "metadata": {"url": "http://nutritionfacts.org/topics/cancer-viruses/"}}
{"_id": "PLAIN-818", "text": "Cannabis", "metadata": {"url": "http://nutritionfacts.org/topics/cannabis/"}}
{"_id": "PLAIN-819", "text": "cannibalism", "metadata": {"url": "http://nutritionfacts.org/topics/cannibalism/"}}
{"_id": "PLAIN-820", "text": "canola", "metadata": {"url": "http://nutritionfacts.org/topics/canola/"}}
{"_id": "PLAIN-821", "text": "cans", "metadata": {"url": "http://nutritionfacts.org/topics/cans/"}}
{"_id": "PLAIN-822", "text": "cantaloupe", "metadata": {"url": "http://nutritionfacts.org/topics/cantaloupe/"}}
{"_id": "PLAIN-823", "text": "canthaxanthines", "metadata": {"url": "http://nutritionfacts.org/topics/canthaxanthines/"}}
{"_id": "PLAIN-824", "text": "capsaicin", "metadata": {"url": "http://nutritionfacts.org/topics/capsaicin/"}}
{"_id": "PLAIN-825", "text": "caramel color", "metadata": {"url": "http://nutritionfacts.org/topics/caramel-color/"}}
{"_id": "PLAIN-828", "text": "cardamom", "metadata": {"url": "http://nutritionfacts.org/topics/cardamom/"}}
{"_id": "PLAIN-829", "text": "cardiac disease", "metadata": {"url": "http://nutritionfacts.org/topics/cardiac-disease/"}}
{"_id": "PLAIN-830", "text": "cardiac health", "metadata": {"url": "http://nutritionfacts.org/topics/cardiac-health/"}}
{"_id": "PLAIN-831", "text": "cardiovascular disease", "metadata": {"url": "http://nutritionfacts.org/topics/cardiovascular-disease/"}}
{"_id": "PLAIN-832", "text": "cardiovascular health", "metadata": {"url": "http://nutritionfacts.org/topics/cardiovascular-health/"}}
{"_id": "PLAIN-833", "text": "carnitine", "metadata": {"url": "http://nutritionfacts.org/topics/carnitine/"}}
{"_id": "PLAIN-834", "text": "carnitine palmitoyl transferase", "metadata": {"url": "http://nutritionfacts.org/topics/carnitinepalmitoyltransferase/"}}
{"_id": "PLAIN-836", "text": "carob", "metadata": {"url": "http://nutritionfacts.org/topics/carob/"}}
{"_id": "PLAIN-839", "text": "carrots", "metadata": {"url": "http://nutritionfacts.org/topics/carrots/"}}
{"_id": "PLAIN-840", "text": "cartilage health", "metadata": {"url": "http://nutritionfacts.org/topics/cartilage-health/"}}
{"_id": "PLAIN-841", "text": "casein", "metadata": {"url": "http://nutritionfacts.org/topics/casein/"}}
{"_id": "PLAIN-842", "text": "cashews", "metadata": {"url": "http://nutritionfacts.org/topics/cashews/"}}
{"_id": "PLAIN-843", "text": "casomorphin", "metadata": {"url": "http://nutritionfacts.org/topics/casomorphin/"}}
{"_id": "PLAIN-844", "text": "CAT scan", "metadata": {"url": "http://nutritionfacts.org/topics/cat-scan/"}}
{"_id": "PLAIN-845", "text": "cataracts", "metadata": {"url": "http://nutritionfacts.org/topics/cataracts/"}}
{"_id": "PLAIN-847", "text": "catfish", "metadata": {"url": "http://nutritionfacts.org/topics/catfish/"}}
{"_id": "PLAIN-851", "text": "cavities", "metadata": {"url": "http://nutritionfacts.org/topics/cavities/"}}
{"_id": "PLAIN-852", "text": "Cayenne pepper", "metadata": {"url": "http://nutritionfacts.org/topics/cayenne-pepper/"}}
{"_id": "PLAIN-853", "text": "CDC", "metadata": {"url": "http://nutritionfacts.org/topics/cdc/"}}
{"_id": "PLAIN-854", "text": "celery", "metadata": {"url": "http://nutritionfacts.org/topics/celery/"}}
{"_id": "PLAIN-855", "text": "celery root", "metadata": {"url": "http://nutritionfacts.org/topics/celery-root/"}}
{"_id": "PLAIN-856", "text": "celiac disease", "metadata": {"url": "http://nutritionfacts.org/topics/celiac-disease/"}}
{"_id": "PLAIN-857", "text": "cell death", "metadata": {"url": "http://nutritionfacts.org/topics/cell-death/"}}
{"_id": "PLAIN-858", "text": "cell phones", "metadata": {"url": "http://nutritionfacts.org/topics/cell-phones/"}}
{"_id": "PLAIN-861", "text": "Center for Science in the Public Interest", "metadata": {"url": "http://nutritionfacts.org/topics/center-for-science-in-the-public-interest/"}}
{"_id": "PLAIN-863", "text": "ceramide", "metadata": {"url": "http://nutritionfacts.org/topics/ceramide/"}}
{"_id": "PLAIN-864", "text": "cervical cancer", "metadata": {"url": "http://nutritionfacts.org/topics/cervical-cancer/"}}
{"_id": "PLAIN-865", "text": "cervix health", "metadata": {"url": "http://nutritionfacts.org/topics/cervix-health/"}}
{"_id": "PLAIN-866", "text": "cesium", "metadata": {"url": "http://nutritionfacts.org/topics/cesium/"}}
{"_id": "PLAIN-867", "text": "cetuximab", "metadata": {"url": "http://nutritionfacts.org/topics/cetuximab/"}}
{"_id": "PLAIN-868", "text": "chai tea", "metadata": {"url": "http://nutritionfacts.org/topics/chai-tea/"}}
{"_id": "PLAIN-870", "text": "chamomile tea", "metadata": {"url": "http://nutritionfacts.org/topics/chamomile-tea/"}}
{"_id": "PLAIN-873", "text": "Cheerios", "metadata": {"url": "http://nutritionfacts.org/topics/cheerios/"}}
{"_id": "PLAIN-874", "text": "cheese", "metadata": {"url": "http://nutritionfacts.org/topics/cheese/"}}
{"_id": "PLAIN-875", "text": "cheese effect", "metadata": {"url": "http://nutritionfacts.org/topics/cheese-effect/"}}
{"_id": "PLAIN-876", "text": "cheese fly", "metadata": {"url": "http://nutritionfacts.org/topics/cheese-fly/"}}
{"_id": "PLAIN-877", "text": "cheese itch", "metadata": {"url": "http://nutritionfacts.org/topics/cheese-itch/"}}
{"_id": "PLAIN-878", "text": "cheese mites", "metadata": {"url": "http://nutritionfacts.org/topics/cheese-mites/"}}
{"_id": "PLAIN-879", "text": "cheese puffs", "metadata": {"url": "http://nutritionfacts.org/topics/cheese-puffs/"}}
{"_id": "PLAIN-880", "text": "chemical sensitivities", "metadata": {"url": "http://nutritionfacts.org/topics/chemical-sensitivities/"}}
{"_id": "PLAIN-883", "text": "cherries", "metadata": {"url": "http://nutritionfacts.org/topics/cherries/"}}
{"_id": "PLAIN-884", "text": "chervil", "metadata": {"url": "http://nutritionfacts.org/topics/chervil/"}}
{"_id": "PLAIN-885", "text": "chestnuts", "metadata": {"url": "http://nutritionfacts.org/topics/chestnuts/"}}
{"_id": "PLAIN-886", "text": "chewing", "metadata": {"url": "http://nutritionfacts.org/topics/chewing/"}}
{"_id": "PLAIN-887", "text": "chewing gum", "metadata": {"url": "http://nutritionfacts.org/topics/chewing-gum/"}}
{"_id": "PLAIN-888", "text": "chia seeds", "metadata": {"url": "http://nutritionfacts.org/topics/chia-seeds/"}}
{"_id": "PLAIN-889", "text": "Chick-fil-A", "metadata": {"url": "http://nutritionfacts.org/topics/chick-fil-a/"}}
{"_id": "PLAIN-890", "text": "chicken", "metadata": {"url": "http://nutritionfacts.org/topics/chicken/"}}
{"_id": "PLAIN-893", "text": "children", "metadata": {"url": "http://nutritionfacts.org/topics/children/"}}
{"_id": "PLAIN-894", "text": "chili peppers", "metadata": {"url": "http://nutritionfacts.org/topics/chili-peppers/"}}
{"_id": "PLAIN-895", "text": "Chili's", "metadata": {"url": "http://nutritionfacts.org/topics/chilis/"}}
{"_id": "PLAIN-896", "text": "China", "metadata": {"url": "http://nutritionfacts.org/topics/china/"}}
{"_id": "PLAIN-897", "text": "China Study", "metadata": {"url": "http://nutritionfacts.org/topics/china-study/"}}
{"_id": "PLAIN-898", "text": "Chinese food", "metadata": {"url": "http://nutritionfacts.org/topics/chinese-food/"}}
{"_id": "PLAIN-899", "text": "chlorella", "metadata": {"url": "http://nutritionfacts.org/topics/chlorella/"}}
{"_id": "PLAIN-900", "text": "chlorhexidine", "metadata": {"url": "http://nutritionfacts.org/topics/chlorhexidine/"}}
{"_id": "PLAIN-903", "text": "chocolate", "metadata": {"url": "http://nutritionfacts.org/topics/chocolate/"}}
{"_id": "PLAIN-905", "text": "cholera", "metadata": {"url": "http://nutritionfacts.org/topics/cholera/"}}
{"_id": "PLAIN-906", "text": "cholesterol", "metadata": {"url": "http://nutritionfacts.org/topics/cholesterol/"}}
{"_id": "PLAIN-907", "text": "choline", "metadata": {"url": "http://nutritionfacts.org/topics/choline/"}}
{"_id": "PLAIN-908", "text": "Chomorro", "metadata": {"url": "http://nutritionfacts.org/topics/chomorro/"}}
{"_id": "PLAIN-909", "text": "chronic diseases", "metadata": {"url": "http://nutritionfacts.org/topics/chronic-diseases/"}}
{"_id": "PLAIN-910", "text": "chronic fatigue syndrome", "metadata": {"url": "http://nutritionfacts.org/topics/chronic-fatigue-syndrome/"}}
{"_id": "PLAIN-911", "text": "ciguatera", "metadata": {"url": "http://nutritionfacts.org/topics/ciguatera/"}}
{"_id": "PLAIN-914", "text": "cirrhosis", "metadata": {"url": "http://nutritionfacts.org/topics/cirrhosis/"}}
{"_id": "PLAIN-915", "text": "citric acid", "metadata": {"url": "http://nutritionfacts.org/topics/citric-acid/"}}
{"_id": "PLAIN-916", "text": "citrulline", "metadata": {"url": "http://nutritionfacts.org/topics/citrulline/"}}
{"_id": "PLAIN-917", "text": "citrus", "metadata": {"url": "http://nutritionfacts.org/topics/citrus/"}}
{"_id": "PLAIN-918", "text": "clams", "metadata": {"url": "http://nutritionfacts.org/topics/clams/"}}
{"_id": "PLAIN-920", "text": "Cleveland Clinic", "metadata": {"url": "http://nutritionfacts.org/topics/cleveland-clinic/"}}
{"_id": "PLAIN-921", "text": "cloves", "metadata": {"url": "http://nutritionfacts.org/topics/cloves/"}}
{"_id": "PLAIN-922", "text": "cluster headaches", "metadata": {"url": "http://nutritionfacts.org/topics/cluster-headaches/"}}
{"_id": "PLAIN-925", "text": "Cochrane Collaboration", "metadata": {"url": "http://nutritionfacts.org/topics/cochrane-collaboration/"}}
{"_id": "PLAIN-926", "text": "cocoa", "metadata": {"url": "http://nutritionfacts.org/topics/cocoa/"}}
{"_id": "PLAIN-927", "text": "cocoa butter", "metadata": {"url": "http://nutritionfacts.org/topics/cocoa-butter/"}}
{"_id": "PLAIN-928", "text": "coconut milk", "metadata": {"url": "http://nutritionfacts.org/topics/coconut-milk/"}}
{"_id": "PLAIN-929", "text": "coconut oil", "metadata": {"url": "http://nutritionfacts.org/topics/coconut-oil/"}}
{"_id": "PLAIN-930", "text": "coconut water", "metadata": {"url": "http://nutritionfacts.org/topics/coconut-water/"}}
{"_id": "PLAIN-931", "text": "coconuts", "metadata": {"url": "http://nutritionfacts.org/topics/coconuts/"}}
{"_id": "PLAIN-932", "text": "cod", "metadata": {"url": "http://nutritionfacts.org/topics/cod/"}}
{"_id": "PLAIN-935", "text": "cognition", "metadata": {"url": "http://nutritionfacts.org/topics/cognition/"}}
{"_id": "PLAIN-936", "text": "cola", "metadata": {"url": "http://nutritionfacts.org/topics/cola/"}}
{"_id": "PLAIN-937", "text": "colchicine", "metadata": {"url": "http://nutritionfacts.org/topics/colchicine/"}}
{"_id": "PLAIN-938", "text": "cold hands", "metadata": {"url": "http://nutritionfacts.org/topics/cold-hands/"}}
{"_id": "PLAIN-940", "text": "colibacillosis", "metadata": {"url": "http://nutritionfacts.org/topics/colibacillosis/"}}
{"_id": "PLAIN-941", "text": "collard greens", "metadata": {"url": "http://nutritionfacts.org/topics/collard-greens/"}}
{"_id": "PLAIN-942", "text": "colon cancer", "metadata": {"url": "http://nutritionfacts.org/topics/colon-cancer/"}}
{"_id": "PLAIN-943", "text": "colon disease", "metadata": {"url": "http://nutritionfacts.org/topics/colon-disease/"}}
{"_id": "PLAIN-947", "text": "common cold", "metadata": {"url": "http://nutritionfacts.org/topics/common-cold/"}}
{"_id": "PLAIN-948", "text": "complementary medicine", "metadata": {"url": "http://nutritionfacts.org/topics/complementary-medicine/"}}
{"_id": "PLAIN-949", "text": "computer eye strain", "metadata": {"url": "http://nutritionfacts.org/topics/computer-eye-strain/"}}
{"_id": "PLAIN-950", "text": "Concord grapes", "metadata": {"url": "http://nutritionfacts.org/topics/concord-grapes/"}}
{"_id": "PLAIN-951", "text": "constipation", "metadata": {"url": "http://nutritionfacts.org/topics/constipation/"}}
{"_id": "PLAIN-952", "text": "Consumers Union", "metadata": {"url": "http://nutritionfacts.org/topics/consumers-union/"}}
{"_id": "PLAIN-953", "text": "contagious pustular dermatitis", "metadata": {"url": "http://nutritionfacts.org/topics/contagious-pustular-dermatitis/"}}
{"_id": "PLAIN-954", "text": "convenience", "metadata": {"url": "http://nutritionfacts.org/topics/convenience/"}}
{"_id": "PLAIN-957", "text": "cooking temperature", "metadata": {"url": "http://nutritionfacts.org/topics/cooking-temperature/"}}
{"_id": "PLAIN-958", "text": "COPD", "metadata": {"url": "http://nutritionfacts.org/topics/copd/"}}
{"_id": "PLAIN-959", "text": "copper", "metadata": {"url": "http://nutritionfacts.org/topics/copper/"}}
{"_id": "PLAIN-960", "text": "coriander", "metadata": {"url": "http://nutritionfacts.org/topics/coriander/"}}
{"_id": "PLAIN-961", "text": "corn", "metadata": {"url": "http://nutritionfacts.org/topics/corn/"}}
{"_id": "PLAIN-962", "text": "corn oil", "metadata": {"url": "http://nutritionfacts.org/topics/corn-oil/"}}
{"_id": "PLAIN-963", "text": "Corn Refiners Association", "metadata": {"url": "http://nutritionfacts.org/topics/corn-refiners-association/"}}
{"_id": "PLAIN-964", "text": "corn syrup", "metadata": {"url": "http://nutritionfacts.org/topics/corn-syrup/"}}
{"_id": "PLAIN-967", "text": "cosmic rays", "metadata": {"url": "http://nutritionfacts.org/topics/cosmic-rays/"}}
{"_id": "PLAIN-968", "text": "cost savings", "metadata": {"url": "http://nutritionfacts.org/topics/cost-savings/"}}
{"_id": "PLAIN-969", "text": "cough", "metadata": {"url": "http://nutritionfacts.org/topics/cough/"}}
{"_id": "PLAIN-970", "text": "coumarin", "metadata": {"url": "http://nutritionfacts.org/topics/coumarin/"}}
{"_id": "PLAIN-971", "text": "cranberries", "metadata": {"url": "http://nutritionfacts.org/topics/cranberries/"}}
{"_id": "PLAIN-972", "text": "cranberry juice", "metadata": {"url": "http://nutritionfacts.org/topics/cranberry-juice/"}}
{"_id": "PLAIN-973", "text": "cream", "metadata": {"url": "http://nutritionfacts.org/topics/cream/"}}
{"_id": "PLAIN-975", "text": "creatine", "metadata": {"url": "http://nutritionfacts.org/topics/creatine/"}}
{"_id": "PLAIN-978", "text": "crimini mushrooms", "metadata": {"url": "http://nutritionfacts.org/topics/crimini-mushrooms/"}}
{"_id": "PLAIN-979", "text": "Crisco", "metadata": {"url": "http://nutritionfacts.org/topics/crisco/"}}
{"_id": "PLAIN-980", "text": "Crohn's disease", "metadata": {"url": "http://nutritionfacts.org/topics/crohns-disease/"}}
{"_id": "PLAIN-981", "text": "crowberries", "metadata": {"url": "http://nutritionfacts.org/topics/crowberries/"}}
{"_id": "PLAIN-982", "text": "cruciferous vegetables", "metadata": {"url": "http://nutritionfacts.org/topics/cruciferous-vegetables/"}}
{"_id": "PLAIN-983", "text": "cryptoxanthin", "metadata": {"url": "http://nutritionfacts.org/topics/cryptoxanthin/"}}
{"_id": "PLAIN-984", "text": "CSPI", "metadata": {"url": "http://nutritionfacts.org/topics/cspi/"}}
{"_id": "PLAIN-985", "text": "CT scan", "metadata": {"url": "http://nutritionfacts.org/topics/ct-scan/"}}
{"_id": "PLAIN-988", "text": "cupcakes", "metadata": {"url": "http://nutritionfacts.org/topics/cupcakes/"}}
{"_id": "PLAIN-989", "text": "curcumin", "metadata": {"url": "http://nutritionfacts.org/topics/curcumin/"}}
{"_id": "PLAIN-990", "text": "currants", "metadata": {"url": "http://nutritionfacts.org/topics/currants/"}}
{"_id": "PLAIN-991", "text": "curry powder", "metadata": {"url": "http://nutritionfacts.org/topics/curry-powder/"}}
{"_id": "PLAIN-992", "text": "cyanopsia", "metadata": {"url": "http://nutritionfacts.org/topics/cyanopsia/"}}
{"_id": "PLAIN-993", "text": "cyclamate", "metadata": {"url": "http://nutritionfacts.org/topics/cyclamate/"}}
{"_id": "PLAIN-994", "text": "cycling", "metadata": {"url": "http://nutritionfacts.org/topics/cycling/"}}
{"_id": "PLAIN-995", "text": "cysticercosis", "metadata": {"url": "http://nutritionfacts.org/topics/cysticercosis/"}}
{"_id": "PLAIN-998", "text": "dairy", "metadata": {"url": "http://nutritionfacts.org/topics/dairy/"}}
{"_id": "PLAIN-999", "text": "dandelion", "metadata": {"url": "http://nutritionfacts.org/topics/dandelion/"}}
{"_id": "PLAIN-1000", "text": "Daniel Fast", "metadata": {"url": "http://nutritionfacts.org/topics/daniel-fast/"}}
{"_id": "PLAIN-1002", "text": "dark chocolate", "metadata": {"url": "http://nutritionfacts.org/topics/dark-chocolate/"}}
{"_id": "PLAIN-1003", "text": "dark meat", "metadata": {"url": "http://nutritionfacts.org/topics/dark-meat/"}}
{"_id": "PLAIN-1004", "text": "DASH diet", "metadata": {"url": "http://nutritionfacts.org/topics/dash-diet/"}}
{"_id": "PLAIN-1005", "text": "date sugar", "metadata": {"url": "http://nutritionfacts.org/topics/date-sugar/"}}
{"_id": "PLAIN-1006", "text": "dates", "metadata": {"url": "http://nutritionfacts.org/topics/dates/"}}
{"_id": "PLAIN-1009", "text": "dehydration", "metadata": {"url": "http://nutritionfacts.org/topics/dehydration/"}}
{"_id": "PLAIN-1010", "text": "deli meat", "metadata": {"url": "http://nutritionfacts.org/topics/deli-meat/"}}
{"_id": "PLAIN-1011", "text": "deli meats", "metadata": {"url": "http://nutritionfacts.org/topics/deli-meats/"}}
{"_id": "PLAIN-1012", "text": "delta waves", "metadata": {"url": "http://nutritionfacts.org/topics/delta-waves/"}}
{"_id": "PLAIN-1013", "text": "dementia", "metadata": {"url": "http://nutritionfacts.org/topics/dementia/"}}
{"_id": "PLAIN-1014", "text": "Denmark", "metadata": {"url": "http://nutritionfacts.org/topics/denmark/"}}
{"_id": "PLAIN-1015", "text": "dental health", "metadata": {"url": "http://nutritionfacts.org/topics/dental-health/"}}
{"_id": "PLAIN-1016", "text": "depression", "metadata": {"url": "http://nutritionfacts.org/topics/depression/"}}
{"_id": "PLAIN-1019", "text": "DHEA", "metadata": {"url": "http://nutritionfacts.org/topics/dhea/"}}
{"_id": "PLAIN-1020", "text": "Diabeta", "metadata": {"url": "http://nutritionfacts.org/topics/diabeta/"}}
{"_id": "PLAIN-1021", "text": "diabetes", "metadata": {"url": "http://nutritionfacts.org/topics/diabetes/"}}
{"_id": "PLAIN-1022", "text": "diacetyl", "metadata": {"url": "http://nutritionfacts.org/topics/diacetyl/"}}
{"_id": "PLAIN-1023", "text": "diacylglycerol", "metadata": {"url": "http://nutritionfacts.org/topics/diacylglycerol/"}}
{"_id": "PLAIN-1024", "text": "dialysis", "metadata": {"url": "http://nutritionfacts.org/topics/dialysis/"}}
{"_id": "PLAIN-1025", "text": "diarrhea", "metadata": {"url": "http://nutritionfacts.org/topics/diarrhea/"}}
{"_id": "PLAIN-1026", "text": "dieldrin", "metadata": {"url": "http://nutritionfacts.org/topics/dieldrin/"}}
{"_id": "PLAIN-1029", "text": "digoxin", "metadata": {"url": "http://nutritionfacts.org/topics/digoxin/"}}
{"_id": "PLAIN-1030", "text": "dioxin", "metadata": {"url": "http://nutritionfacts.org/topics/dioxin/"}}
{"_id": "PLAIN-1031", "text": "dioxins", "metadata": {"url": "http://nutritionfacts.org/topics/dioxins/"}}
{"_id": "PLAIN-1032", "text": "dishwashing detergent", "metadata": {"url": "http://nutritionfacts.org/topics/dishwashing-detergent/"}}
{"_id": "PLAIN-1033", "text": "diverticulitis", "metadata": {"url": "http://nutritionfacts.org/topics/diverticulitis/"}}
{"_id": "PLAIN-1034", "text": "diverticulosis", "metadata": {"url": "http://nutritionfacts.org/topics/diverticulosis/"}}
{"_id": "PLAIN-1035", "text": "dizziness", "metadata": {"url": "http://nutritionfacts.org/topics/dizziness/"}}
{"_id": "PLAIN-1036", "text": "DNA damage", "metadata": {"url": "http://nutritionfacts.org/topics/dna-damage/"}}
{"_id": "PLAIN-1040", "text": "dopamine", "metadata": {"url": "http://nutritionfacts.org/topics/dopamine/"}}
{"_id": "PLAIN-1041", "text": "douching", "metadata": {"url": "http://nutritionfacts.org/topics/douching/"}}
{"_id": "PLAIN-1042", "text": "doughnuts", "metadata": {"url": "http://nutritionfacts.org/topics/doughnuts/"}}
{"_id": "PLAIN-1043", "text": "Dow Chemical", "metadata": {"url": "http://nutritionfacts.org/topics/dow-chemical/"}}
{"_id": "PLAIN-1045", "text": "Dr. Benjamin Feingold", "metadata": {"url": "http://nutritionfacts.org/topics/dr-benjamin-feingold/"}}
{"_id": "PLAIN-1046", "text": "Dr. Benjamin Spock", "metadata": {"url": "http://nutritionfacts.org/topics/dr-benjamin-spock/"}}
{"_id": "PLAIN-1047", "text": "Dr. Caldwell Esselstyn", "metadata": {"url": "http://nutritionfacts.org/topics/dr-caldwell-esselstyn/"}}
{"_id": "PLAIN-1048", "text": "Dr. David Jenkins", "metadata": {"url": "http://nutritionfacts.org/topics/dr-david-jenkins/"}}
{"_id": "PLAIN-1051", "text": "Dr. Denis Burkitt", "metadata": {"url": "http://nutritionfacts.org/topics/dr-denis-burkitt/"}}
{"_id": "PLAIN-1055", "text": "Dr. Joel Fuhrman", "metadata": {"url": "http://nutritionfacts.org/topics/dr-joel-fuhrman/"}}
{"_id": "PLAIN-1057", "text": "Dr. John Harvey Kellogg", "metadata": {"url": "http://nutritionfacts.org/topics/dr-john-harvey-kellogg/"}}
{"_id": "PLAIN-1058", "text": "Dr. John McDougall", "metadata": {"url": "http://nutritionfacts.org/topics/dr-john-mcdougall/"}}
{"_id": "PLAIN-1059", "text": "Dr. Neal Barnard", "metadata": {"url": "http://nutritionfacts.org/topics/dr-neal-barnard/"}}
{"_id": "PLAIN-1061", "text": "Dr. Richard Fleming", "metadata": {"url": "http://nutritionfacts.org/topics/dr-richard-fleming/"}}
{"_id": "PLAIN-1062", "text": "Dr. Roy Swank", "metadata": {"url": "http://nutritionfacts.org/topics/dr-roy-swank/"}}
{"_id": "PLAIN-1064", "text": "Dr. T. Colin Campbell", "metadata": {"url": "http://nutritionfacts.org/topics/dr-t-colin-campbell/"}}
{"_id": "PLAIN-1067", "text": "Dr. William Clifford Roberts", "metadata": {"url": "http://nutritionfacts.org/topics/dr-william-clifford-roberts/"}}
{"_id": "PLAIN-1068", "text": "Dr. William Roberts", "metadata": {"url": "http://nutritionfacts.org/topics/dr-william-roberts/"}}
{"_id": "PLAIN-1070", "text": "dragon's blood", "metadata": {"url": "http://nutritionfacts.org/topics/dragons-blood/"}}
{"_id": "PLAIN-1071", "text": "dressings", "metadata": {"url": "http://nutritionfacts.org/topics/dressings/"}}
{"_id": "PLAIN-1072", "text": "dried fruit", "metadata": {"url": "http://nutritionfacts.org/topics/dried-fruit/"}}
{"_id": "PLAIN-1073", "text": "drug residues", "metadata": {"url": "http://nutritionfacts.org/topics/drug-residues/"}}
{"_id": "PLAIN-1074", "text": "drug stores", "metadata": {"url": "http://nutritionfacts.org/topics/drug-stores/"}}
{"_id": "PLAIN-1075", "text": "drug testing", "metadata": {"url": "http://nutritionfacts.org/topics/drug-testing/"}}
{"_id": "PLAIN-1079", "text": "Dutched cocoa", "metadata": {"url": "http://nutritionfacts.org/topics/dutched-cocoa/"}}
{"_id": "PLAIN-1080", "text": "dwarfism", "metadata": {"url": "http://nutritionfacts.org/topics/dwarfism/"}}
{"_id": "PLAIN-1081", "text": "dyspepsia", "metadata": {"url": "http://nutritionfacts.org/topics/dyspepsia/"}}
{"_id": "PLAIN-1082", "text": "E. coli", "metadata": {"url": "http://nutritionfacts.org/topics/e-coli/"}}
{"_id": "PLAIN-1083", "text": "E. coli o157:H7", "metadata": {"url": "http://nutritionfacts.org/topics/e-coli-o157h7/"}}
{"_id": "PLAIN-1084", "text": "ear health", "metadata": {"url": "http://nutritionfacts.org/topics/ear-health/"}}
{"_id": "PLAIN-1085", "text": "ear infections", "metadata": {"url": "http://nutritionfacts.org/topics/ear-infections/"}}
{"_id": "PLAIN-1086", "text": "Earl Grey tea", "metadata": {"url": "http://nutritionfacts.org/topics/earl-grey-tea/"}}
{"_id": "PLAIN-1089", "text": "Eco-Atkins diet", "metadata": {"url": "http://nutritionfacts.org/topics/eco-atkins-diet/"}}
{"_id": "PLAIN-1090", "text": "ecstasy", "metadata": {"url": "http://nutritionfacts.org/topics/ecstasy/"}}
{"_id": "PLAIN-1091", "text": "eczema", "metadata": {"url": "http://nutritionfacts.org/topics/eczema/"}}
{"_id": "PLAIN-1092", "text": "edamame", "metadata": {"url": "http://nutritionfacts.org/topics/edamame/"}}
{"_id": "PLAIN-1093", "text": "Eden Foods", "metadata": {"url": "http://nutritionfacts.org/topics/eden-foods/"}}
{"_id": "PLAIN-1094", "text": "EEG", "metadata": {"url": "http://nutritionfacts.org/topics/eeg/"}}
{"_id": "PLAIN-1095", "text": "Egg Farmers of Canada", "metadata": {"url": "http://nutritionfacts.org/topics/egg-farmers-of-canada/"}}
{"_id": "PLAIN-1096", "text": "Egg McMuffin", "metadata": {"url": "http://nutritionfacts.org/topics/egg-mcmuffin/"}}
{"_id": "PLAIN-1099", "text": "eggplant", "metadata": {"url": "http://nutritionfacts.org/topics/eggplant/"}}
{"_id": "PLAIN-1100", "text": "eggs", "metadata": {"url": "http://nutritionfacts.org/topics/eggs/"}}
{"_id": "PLAIN-1101", "text": "elderly", "metadata": {"url": "http://nutritionfacts.org/topics/elderly/"}}
{"_id": "PLAIN-1102", "text": "electroconvulsive therapy", "metadata": {"url": "http://nutritionfacts.org/topics/electroconvulsive-therapy/"}}
{"_id": "PLAIN-1103", "text": "elephant garlic", "metadata": {"url": "http://nutritionfacts.org/topics/elephant-garlic/"}}
{"_id": "PLAIN-1104", "text": "ellagic acid", "metadata": {"url": "http://nutritionfacts.org/topics/ellagic-acid/"}}
{"_id": "PLAIN-1105", "text": "emphysema", "metadata": {"url": "http://nutritionfacts.org/topics/emphysema/"}}
{"_id": "PLAIN-1106", "text": "empty calories", "metadata": {"url": "http://nutritionfacts.org/topics/empty-calories/"}}
{"_id": "PLAIN-1110", "text": "endometrial cancer", "metadata": {"url": "http://nutritionfacts.org/topics/endometrial-cancer/"}}
{"_id": "PLAIN-1111", "text": "endometrial health", "metadata": {"url": "http://nutritionfacts.org/topics/endometrial-health/"}}
{"_id": "PLAIN-1112", "text": "endometriosis", "metadata": {"url": "http://nutritionfacts.org/topics/endometriosis/"}}
{"_id": "PLAIN-1113", "text": "endorphins", "metadata": {"url": "http://nutritionfacts.org/topics/endorphins/"}}
{"_id": "PLAIN-1114", "text": "endothelium", "metadata": {"url": "http://nutritionfacts.org/topics/endothelium/"}}
{"_id": "PLAIN-1115", "text": "endotoxemia", "metadata": {"url": "http://nutritionfacts.org/topics/endotoxemia/"}}
{"_id": "PLAIN-1116", "text": "endurance", "metadata": {"url": "http://nutritionfacts.org/topics/endurance/"}}
{"_id": "PLAIN-1117", "text": "enemas", "metadata": {"url": "http://nutritionfacts.org/topics/enemas/"}}
{"_id": "PLAIN-1120", "text": "energy gels", "metadata": {"url": "http://nutritionfacts.org/topics/energy-gels/"}}
{"_id": "PLAIN-1121", "text": "enoki mushrooms", "metadata": {"url": "http://nutritionfacts.org/topics/enoki-mushrooms/"}}
{"_id": "PLAIN-1123", "text": "enzymes", "metadata": {"url": "http://nutritionfacts.org/topics/enzymes/"}}
{"_id": "PLAIN-1124", "text": "eosinophilia\u2013myalgia syndrome", "metadata": {"url": "http://nutritionfacts.org/topics/eosinophilia-myalgia-syndrome/"}}
{"_id": "PLAIN-1125", "text": "EPA", "metadata": {"url": "http://nutritionfacts.org/topics/epa/"}}
{"_id": "PLAIN-1126", "text": "EPIC Study", "metadata": {"url": "http://nutritionfacts.org/topics/epic-study/"}}
{"_id": "PLAIN-1127", "text": "epigenetic changes", "metadata": {"url": "http://nutritionfacts.org/topics/epigenetic-changes/"}}
{"_id": "PLAIN-1128", "text": "epilepsy", "metadata": {"url": "http://nutritionfacts.org/topics/epilepsy/"}}
{"_id": "PLAIN-1131", "text": "erythritol", "metadata": {"url": "http://nutritionfacts.org/topics/erythritol/"}}
{"_id": "PLAIN-1132", "text": "esophageal cancer", "metadata": {"url": "http://nutritionfacts.org/topics/esophageal-cancer/"}}
{"_id": "PLAIN-1133", "text": "esophagus", "metadata": {"url": "http://nutritionfacts.org/topics/esophagus/"}}
{"_id": "PLAIN-1134", "text": "esophagus health", "metadata": {"url": "http://nutritionfacts.org/topics/esophagus-health/"}}
{"_id": "PLAIN-1136", "text": "essential tremor", "metadata": {"url": "http://nutritionfacts.org/topics/essential-tremor/"}}
{"_id": "PLAIN-1137", "text": "estrogen", "metadata": {"url": "http://nutritionfacts.org/topics/estrogen/"}}
{"_id": "PLAIN-1138", "text": "ethnicity", "metadata": {"url": "http://nutritionfacts.org/topics/ethnicity/"}}
{"_id": "PLAIN-1139", "text": "Europe", "metadata": {"url": "http://nutritionfacts.org/topics/europe/"}}
{"_id": "PLAIN-1142", "text": "evolution", "metadata": {"url": "http://nutritionfacts.org/topics/evolution/"}}
{"_id": "PLAIN-1143", "text": "exercise", "metadata": {"url": "http://nutritionfacts.org/topics/exercise/"}}
{"_id": "PLAIN-1144", "text": "exotic fruit", "metadata": {"url": "http://nutritionfacts.org/topics/exotic-fruit/"}}
{"_id": "PLAIN-1145", "text": "ExPEC", "metadata": {"url": "http://nutritionfacts.org/topics/expec/"}}
{"_id": "PLAIN-1146", "text": "Exponent Inc.", "metadata": {"url": "http://nutritionfacts.org/topics/exponent-inc/"}}
{"_id": "PLAIN-1147", "text": "extracorporeal membranous oxygenation", "metadata": {"url": "http://nutritionfacts.org/topics/extracorporeal-membranous-oxygenation/"}}
{"_id": "PLAIN-1148", "text": "eye disease", "metadata": {"url": "http://nutritionfacts.org/topics/eye-disease/"}}
{"_id": "PLAIN-1149", "text": "eye health", "metadata": {"url": "http://nutritionfacts.org/topics/eye-health/"}}
{"_id": "PLAIN-1152", "text": "fake meat", "metadata": {"url": "http://nutritionfacts.org/topics/fake-meat/"}}
{"_id": "PLAIN-1153", "text": "fall risk", "metadata": {"url": "http://nutritionfacts.org/topics/fall-risk/"}}
{"_id": "PLAIN-1154", "text": "farm animals", "metadata": {"url": "http://nutritionfacts.org/topics/farm-animals/"}}
{"_id": "PLAIN-1156", "text": "farmers", "metadata": {"url": "http://nutritionfacts.org/topics/farmers/"}}
{"_id": "PLAIN-1157", "text": "fast food", "metadata": {"url": "http://nutritionfacts.org/topics/fast-food/"}}
{"_id": "PLAIN-1158", "text": "fat", "metadata": {"url": "http://nutritionfacts.org/topics/fat/"}}
{"_id": "PLAIN-1159", "text": "fatigue", "metadata": {"url": "http://nutritionfacts.org/topics/fatigue/"}}
{"_id": "PLAIN-1162", "text": "FDA", "metadata": {"url": "http://nutritionfacts.org/topics/fda/"}}
{"_id": "PLAIN-1163", "text": "feather meal", "metadata": {"url": "http://nutritionfacts.org/topics/feather-meal/"}}
{"_id": "PLAIN-1164", "text": "fecal bacteria", "metadata": {"url": "http://nutritionfacts.org/topics/fecal-bacteria/"}}
{"_id": "PLAIN-1165", "text": "fecal contamination", "metadata": {"url": "http://nutritionfacts.org/topics/fecal-contamination/"}}
{"_id": "PLAIN-1166", "text": "fecal continence", "metadata": {"url": "http://nutritionfacts.org/topics/fecal-continence/"}}
{"_id": "PLAIN-1167", "text": "fecal transplant", "metadata": {"url": "http://nutritionfacts.org/topics/fecal-transplant/"}}
{"_id": "PLAIN-1169", "text": "feed additives", "metadata": {"url": "http://nutritionfacts.org/topics/feed-additives/"}}
{"_id": "PLAIN-1170", "text": "feline leukemia virus", "metadata": {"url": "http://nutritionfacts.org/topics/feline-leukemia-virus/"}}
{"_id": "PLAIN-1173", "text": "fermented foods", "metadata": {"url": "http://nutritionfacts.org/topics/fermented-foods/"}}
{"_id": "PLAIN-1174", "text": "fertility", "metadata": {"url": "http://nutritionfacts.org/topics/fertility/"}}
{"_id": "PLAIN-1175", "text": "fever", "metadata": {"url": "http://nutritionfacts.org/topics/fever/"}}
{"_id": "PLAIN-1176", "text": "fiber", "metadata": {"url": "http://nutritionfacts.org/topics/fiber/"}}
{"_id": "PLAIN-1177", "text": "fibrocystic breast disease", "metadata": {"url": "http://nutritionfacts.org/topics/fibrocystic-breast-disease/"}}
{"_id": "PLAIN-1178", "text": "fibroids", "metadata": {"url": "http://nutritionfacts.org/topics/fibroids/"}}
{"_id": "PLAIN-1179", "text": "fibromyalgia", "metadata": {"url": "http://nutritionfacts.org/topics/fibromyalgia/"}}
{"_id": "PLAIN-1180", "text": "fiddlehead ferns", "metadata": {"url": "http://nutritionfacts.org/topics/fiddlehead-ferns/"}}
{"_id": "PLAIN-1184", "text": "Firmicutes", "metadata": {"url": "http://nutritionfacts.org/topics/firmicutes/"}}
{"_id": "PLAIN-1185", "text": "fish", "metadata": {"url": "http://nutritionfacts.org/topics/fish/"}}
{"_id": "PLAIN-1186", "text": "fish oil", "metadata": {"url": "http://nutritionfacts.org/topics/fish-oil/"}}
{"_id": "PLAIN-1187", "text": "fish sauce", "metadata": {"url": "http://nutritionfacts.org/topics/fish-sauce/"}}
{"_id": "PLAIN-1188", "text": "fisitin", "metadata": {"url": "http://nutritionfacts.org/topics/fisitin/"}}
{"_id": "PLAIN-1189", "text": "flame-retardant chemicals", "metadata": {"url": "http://nutritionfacts.org/topics/flame-retardant-chemicals/"}}
{"_id": "PLAIN-1190", "text": "flatulence", "metadata": {"url": "http://nutritionfacts.org/topics/flatulence/"}}
{"_id": "PLAIN-1191", "text": "flavonoids", "metadata": {"url": "http://nutritionfacts.org/topics/flavonoids/"}}
{"_id": "PLAIN-1194", "text": "flax seeds", "metadata": {"url": "http://nutritionfacts.org/topics/flax-seeds/"}}
{"_id": "PLAIN-1195", "text": "flesh-eating bacteria", "metadata": {"url": "http://nutritionfacts.org/topics/flesh-eating-bacteria/"}}
{"_id": "PLAIN-1196", "text": "flexitarians", "metadata": {"url": "http://nutritionfacts.org/topics/flexitarians/"}}
{"_id": "PLAIN-1197", "text": "Flomax", "metadata": {"url": "http://nutritionfacts.org/topics/flomax/"}}
{"_id": "PLAIN-1198", "text": "flowers", "metadata": {"url": "http://nutritionfacts.org/topics/flowers/"}}
{"_id": "PLAIN-1199", "text": "fluoride", "metadata": {"url": "http://nutritionfacts.org/topics/fluoride/"}}
{"_id": "PLAIN-1200", "text": "flying foxes", "metadata": {"url": "http://nutritionfacts.org/topics/flying-foxes/"}}
{"_id": "PLAIN-1201", "text": "FODMAPs", "metadata": {"url": "http://nutritionfacts.org/topics/fodmaps/"}}
{"_id": "PLAIN-1204", "text": "food additives", "metadata": {"url": "http://nutritionfacts.org/topics/food-additives/"}}
{"_id": "PLAIN-1205", "text": "food dyes", "metadata": {"url": "http://nutritionfacts.org/topics/food-dyes/"}}
{"_id": "PLAIN-1206", "text": "food poisoning", "metadata": {"url": "http://nutritionfacts.org/topics/food-poisoning/"}}
{"_id": "PLAIN-1207", "text": "food recalls", "metadata": {"url": "http://nutritionfacts.org/topics/food-recalls/"}}
{"_id": "PLAIN-1208", "text": "food sensitivities", "metadata": {"url": "http://nutritionfacts.org/topics/food-sensitivities/"}}
{"_id": "PLAIN-1210", "text": "foodborne illness", "metadata": {"url": "http://nutritionfacts.org/topics/foodborne-illness/"}}
{"_id": "PLAIN-1211", "text": "foreign body", "metadata": {"url": "http://nutritionfacts.org/topics/foreign-body/"}}
{"_id": "PLAIN-1212", "text": "Forks Over Knives", "metadata": {"url": "http://nutritionfacts.org/topics/forks-over-knives/"}}
{"_id": "PLAIN-1216", "text": "foxglove", "metadata": {"url": "http://nutritionfacts.org/topics/foxglove/"}}
{"_id": "PLAIN-1217", "text": "fragrance", "metadata": {"url": "http://nutritionfacts.org/topics/fragrance/"}}
{"_id": "PLAIN-1218", "text": "Framingham Heart Study", "metadata": {"url": "http://nutritionfacts.org/topics/framingham-heart-study/"}}
{"_id": "PLAIN-1219", "text": "France", "metadata": {"url": "http://nutritionfacts.org/topics/france/"}}
{"_id": "PLAIN-1220", "text": "Freedom of Information Act", "metadata": {"url": "http://nutritionfacts.org/topics/freedom-of-information-act/"}}
{"_id": "PLAIN-1221", "text": "french fries", "metadata": {"url": "http://nutritionfacts.org/topics/french-fries/"}}
{"_id": "PLAIN-1222", "text": "Froot Loops", "metadata": {"url": "http://nutritionfacts.org/topics/froot-loops/"}}
{"_id": "PLAIN-1223", "text": "frozen fruit", "metadata": {"url": "http://nutritionfacts.org/topics/frozen-fruit/"}}
{"_id": "PLAIN-1226", "text": "fruit", "metadata": {"url": "http://nutritionfacts.org/topics/fruit/"}}
{"_id": "PLAIN-1227", "text": "fruit and vegetable wash", "metadata": {"url": "http://nutritionfacts.org/topics/fruit-and-vegetable-wash/"}}
{"_id": "PLAIN-1228", "text": "fruit juice", "metadata": {"url": "http://nutritionfacts.org/topics/fruit-juice/"}}
{"_id": "PLAIN-1229", "text": "frying", "metadata": {"url": "http://nutritionfacts.org/topics/frying/"}}
{"_id": "PLAIN-1230", "text": "FTC", "metadata": {"url": "http://nutritionfacts.org/topics/ftc/"}}
{"_id": "PLAIN-1232", "text": "Fukushima", "metadata": {"url": "http://nutritionfacts.org/topics/fukushima/"}}
{"_id": "PLAIN-1233", "text": "fungicides", "metadata": {"url": "http://nutritionfacts.org/topics/fungicides/"}}
{"_id": "PLAIN-1234", "text": "gala apples", "metadata": {"url": "http://nutritionfacts.org/topics/gala-apples/"}}
{"_id": "PLAIN-1237", "text": "gallbladder disease", "metadata": {"url": "http://nutritionfacts.org/topics/gallbladder-disease/"}}
{"_id": "PLAIN-1238", "text": "gallbladder health", "metadata": {"url": "http://nutritionfacts.org/topics/gallbladder-health/"}}
{"_id": "PLAIN-1239", "text": "gallstones", "metadata": {"url": "http://nutritionfacts.org/topics/gallstones/"}}
{"_id": "PLAIN-1240", "text": "gangrene", "metadata": {"url": "http://nutritionfacts.org/topics/gangrene/"}}
{"_id": "PLAIN-1241", "text": "garbanzo beans", "metadata": {"url": "http://nutritionfacts.org/topics/garbanzo-beans/"}}
{"_id": "PLAIN-1242", "text": "gargling", "metadata": {"url": "http://nutritionfacts.org/topics/gargling/"}}
{"_id": "PLAIN-1243", "text": "garlic", "metadata": {"url": "http://nutritionfacts.org/topics/garlic/"}}
{"_id": "PLAIN-1244", "text": "gastric bypass", "metadata": {"url": "http://nutritionfacts.org/topics/gastric-bypass/"}}
{"_id": "PLAIN-1250", "text": "genital health", "metadata": {"url": "http://nutritionfacts.org/topics/genital-health/"}}
{"_id": "PLAIN-1251", "text": "genital warts", "metadata": {"url": "http://nutritionfacts.org/topics/genital-warts/"}}
{"_id": "PLAIN-1254", "text": "Germany", "metadata": {"url": "http://nutritionfacts.org/topics/germany/"}}
{"_id": "PLAIN-1255", "text": "Gerson Therapy", "metadata": {"url": "http://nutritionfacts.org/topics/gerson-therapy/"}}
{"_id": "PLAIN-1256", "text": "gestational diabetes", "metadata": {"url": "http://nutritionfacts.org/topics/gestational-diabetes/"}}
{"_id": "PLAIN-1257", "text": "giantism", "metadata": {"url": "http://nutritionfacts.org/topics/giantism/"}}
{"_id": "PLAIN-1258", "text": "ginger", "metadata": {"url": "http://nutritionfacts.org/topics/ginger/"}}
{"_id": "PLAIN-1260", "text": "gingerols", "metadata": {"url": "http://nutritionfacts.org/topics/gingerols/"}}
{"_id": "PLAIN-1264", "text": "gluten", "metadata": {"url": "http://nutritionfacts.org/topics/gluten/"}}
{"_id": "PLAIN-1265", "text": "glyburide", "metadata": {"url": "http://nutritionfacts.org/topics/glyburide/"}}
{"_id": "PLAIN-1266", "text": "glycemic index", "metadata": {"url": "http://nutritionfacts.org/topics/glycemic-index/"}}
{"_id": "PLAIN-1267", "text": "glycoalkaloids", "metadata": {"url": "http://nutritionfacts.org/topics/glycoalkaloids/"}}
{"_id": "PLAIN-1268", "text": "glyconutrients", "metadata": {"url": "http://nutritionfacts.org/topics/glyconutrients/"}}
{"_id": "PLAIN-1269", "text": "glycotoxins", "metadata": {"url": "http://nutritionfacts.org/topics/glycotoxins/"}}
{"_id": "PLAIN-1270", "text": "glyphosate", "metadata": {"url": "http://nutritionfacts.org/topics/glyphosate/"}}
{"_id": "PLAIN-1271", "text": "GMO", "metadata": {"url": "http://nutritionfacts.org/topics/gmo/"}}
{"_id": "PLAIN-1276", "text": "gold dust retinopathy", "metadata": {"url": "http://nutritionfacts.org/topics/gold-dust-retinopathy/"}}
{"_id": "PLAIN-1278", "text": "golden raisins", "metadata": {"url": "http://nutritionfacts.org/topics/golden-raisins/"}}
{"_id": "PLAIN-1279", "text": "gooseberries", "metadata": {"url": "http://nutritionfacts.org/topics/gooseberries/"}}
{"_id": "PLAIN-1281", "text": "gout", "metadata": {"url": "http://nutritionfacts.org/topics/gout/"}}
{"_id": "PLAIN-1282", "text": "grains", "metadata": {"url": "http://nutritionfacts.org/topics/grains/"}}
{"_id": "PLAIN-1284", "text": "grape juice", "metadata": {"url": "http://nutritionfacts.org/topics/grape-juice/"}}
{"_id": "PLAIN-1285", "text": "grape seed oil", "metadata": {"url": "http://nutritionfacts.org/topics/grape-seed-oil/"}}
{"_id": "PLAIN-1286", "text": "grapefruit", "metadata": {"url": "http://nutritionfacts.org/topics/grapefruit/"}}
{"_id": "PLAIN-1289", "text": "Grave\u2019s disease", "metadata": {"url": "http://nutritionfacts.org/topics/graves-disease/"}}
{"_id": "PLAIN-1290", "text": "gravy", "metadata": {"url": "http://nutritionfacts.org/topics/gravy/"}}
{"_id": "PLAIN-1291", "text": "Great Lakes", "metadata": {"url": "http://nutritionfacts.org/topics/great-lakes/"}}
{"_id": "PLAIN-1292", "text": "Greece", "metadata": {"url": "http://nutritionfacts.org/topics/greece/"}}
{"_id": "PLAIN-1293", "text": "green beans", "metadata": {"url": "http://nutritionfacts.org/topics/green-beans/"}}
{"_id": "PLAIN-1295", "text": "green tea", "metadata": {"url": "http://nutritionfacts.org/topics/green-tea/"}}
{"_id": "PLAIN-1296", "text": "greens", "metadata": {"url": "http://nutritionfacts.org/topics/greens/"}}
{"_id": "PLAIN-1297", "text": "greta", "metadata": {"url": "http://nutritionfacts.org/topics/greta/"}}
{"_id": "PLAIN-1300", "text": "guacamole", "metadata": {"url": "http://nutritionfacts.org/topics/guacamole/"}}
{"_id": "PLAIN-1301", "text": "guava", "metadata": {"url": "http://nutritionfacts.org/topics/guava/"}}
{"_id": "PLAIN-1302", "text": "Guillain-Barr\u00e9 syndrome", "metadata": {"url": "http://nutritionfacts.org/topics/guillain-barre-syndrome/"}}
{"_id": "PLAIN-1303", "text": "gum arabic", "metadata": {"url": "http://nutritionfacts.org/topics/gum-arabic/"}}
{"_id": "PLAIN-1304", "text": "gut flora", "metadata": {"url": "http://nutritionfacts.org/topics/gut-flora/"}}
{"_id": "PLAIN-1305", "text": "gynecomastia", "metadata": {"url": "http://nutritionfacts.org/topics/gynecomastia/"}}
{"_id": "PLAIN-1306", "text": "H\u00e4agen-Dazs", "metadata": {"url": "http://nutritionfacts.org/topics/haagen-dazs/"}}
{"_id": "PLAIN-1307", "text": "hair health", "metadata": {"url": "http://nutritionfacts.org/topics/hair-health/"}}
{"_id": "PLAIN-1310", "text": "halitosis", "metadata": {"url": "http://nutritionfacts.org/topics/halitosis/"}}
{"_id": "PLAIN-1312", "text": "ham", "metadata": {"url": "http://nutritionfacts.org/topics/ham/"}}
{"_id": "PLAIN-1313", "text": "hamburgers", "metadata": {"url": "http://nutritionfacts.org/topics/hamburgers/"}}
{"_id": "PLAIN-1314", "text": "hand washing", "metadata": {"url": "http://nutritionfacts.org/topics/hand-washing/"}}
{"_id": "PLAIN-1315", "text": "happiness", "metadata": {"url": "http://nutritionfacts.org/topics/happiness/"}}
{"_id": "PLAIN-1316", "text": "haritaki fruit", "metadata": {"url": "http://nutritionfacts.org/topics/haritaki-fruit/"}}
{"_id": "PLAIN-1317", "text": "Harmane", "metadata": {"url": "http://nutritionfacts.org/topics/harmane/"}}
{"_id": "PLAIN-1318", "text": "Harvard", "metadata": {"url": "http://nutritionfacts.org/topics/harvard/"}}
{"_id": "PLAIN-1322", "text": "hawthorn", "metadata": {"url": "http://nutritionfacts.org/topics/hawthorn/"}}
{"_id": "PLAIN-1323", "text": "hay fever", "metadata": {"url": "http://nutritionfacts.org/topics/hay-fever/"}}
{"_id": "PLAIN-1324", "text": "hazelnut oil", "metadata": {"url": "http://nutritionfacts.org/topics/hazelnut-oil/"}}
{"_id": "PLAIN-1325", "text": "hazelnuts", "metadata": {"url": "http://nutritionfacts.org/topics/hazelnuts/"}}
{"_id": "PLAIN-1326", "text": "HDL cholesterol", "metadata": {"url": "http://nutritionfacts.org/topics/hdl-cholesterol/"}}
{"_id": "PLAIN-1327", "text": "head lice", "metadata": {"url": "http://nutritionfacts.org/topics/head-lice/"}}
{"_id": "PLAIN-1328", "text": "head trauma", "metadata": {"url": "http://nutritionfacts.org/topics/head-trauma/"}}
{"_id": "PLAIN-1329", "text": "headaches", "metadata": {"url": "http://nutritionfacts.org/topics/headaches/"}}
{"_id": "PLAIN-1332", "text": "heart disease", "metadata": {"url": "http://nutritionfacts.org/topics/heart-disease/"}}
{"_id": "PLAIN-1333", "text": "heart diseases", "metadata": {"url": "http://nutritionfacts.org/topics/heart-diseases/"}}
{"_id": "PLAIN-1334", "text": "heart failure", "metadata": {"url": "http://nutritionfacts.org/topics/heart-failure/"}}
{"_id": "PLAIN-1335", "text": "heart health", "metadata": {"url": "http://nutritionfacts.org/topics/heart-health/"}}
{"_id": "PLAIN-1336", "text": "heart rate variability", "metadata": {"url": "http://nutritionfacts.org/topics/heart-rate-variability/"}}
{"_id": "PLAIN-1337", "text": "heartbeat", "metadata": {"url": "http://nutritionfacts.org/topics/heartbeat/"}}
{"_id": "PLAIN-1339", "text": "heavy metals", "metadata": {"url": "http://nutritionfacts.org/topics/heavy-metals/"}}
{"_id": "PLAIN-1340", "text": "Hegsted Equation", "metadata": {"url": "http://nutritionfacts.org/topics/hegsted-equation/"}}
{"_id": "PLAIN-1343", "text": "hemlock", "metadata": {"url": "http://nutritionfacts.org/topics/hemlock/"}}
{"_id": "PLAIN-1345", "text": "hemorrhoids", "metadata": {"url": "http://nutritionfacts.org/topics/hemorrhoids/"}}
{"_id": "PLAIN-1346", "text": "hepatitis", "metadata": {"url": "http://nutritionfacts.org/topics/hepatitis/"}}
{"_id": "PLAIN-1347", "text": "hepatitis E", "metadata": {"url": "http://nutritionfacts.org/topics/hepatitis-e/"}}
{"_id": "PLAIN-1348", "text": "hepatotoxins", "metadata": {"url": "http://nutritionfacts.org/topics/hepatotoxins/"}}
{"_id": "PLAIN-1349", "text": "herbal remedies", "metadata": {"url": "http://nutritionfacts.org/topics/herbal-remedies/"}}
{"_id": "PLAIN-1350", "text": "herbal tea", "metadata": {"url": "http://nutritionfacts.org/topics/herbal-tea/"}}
{"_id": "PLAIN-1351", "text": "Herbalife", "metadata": {"url": "http://nutritionfacts.org/topics/herbalife/"}}
{"_id": "PLAIN-1354", "text": "herring", "metadata": {"url": "http://nutritionfacts.org/topics/herring/"}}
{"_id": "PLAIN-1355", "text": "Hershey's", "metadata": {"url": "http://nutritionfacts.org/topics/hersheys/"}}
{"_id": "PLAIN-1356", "text": "hesperidin", "metadata": {"url": "http://nutritionfacts.org/topics/hesperidin/"}}
{"_id": "PLAIN-1357", "text": "heterocyclic amines", "metadata": {"url": "http://nutritionfacts.org/topics/heterocyclic-amines/"}}
{"_id": "PLAIN-1358", "text": "hexachlorobenzene", "metadata": {"url": "http://nutritionfacts.org/topics/hexachlorobenzene/"}}
{"_id": "PLAIN-1359", "text": "hiatal hernia", "metadata": {"url": "http://nutritionfacts.org/topics/hiatal-hernia/"}}
{"_id": "PLAIN-1360", "text": "hibiscus tea", "metadata": {"url": "http://nutritionfacts.org/topics/hibiscus-tea/"}}
{"_id": "PLAIN-1361", "text": "high fructose corn syrup", "metadata": {"url": "http://nutritionfacts.org/topics/high-fructose-corn-syrup/"}}
{"_id": "PLAIN-1364", "text": "histones", "metadata": {"url": "http://nutritionfacts.org/topics/histones/"}}
{"_id": "PLAIN-1365", "text": "hives", "metadata": {"url": "http://nutritionfacts.org/topics/hives/"}}
{"_id": "PLAIN-1366", "text": "holotranscobalamin", "metadata": {"url": "http://nutritionfacts.org/topics/holotranscobalamin/"}}
{"_id": "PLAIN-1367", "text": "holy basil tea", "metadata": {"url": "http://nutritionfacts.org/topics/holy-basil-tea/"}}
{"_id": "PLAIN-1368", "text": "homeopathy", "metadata": {"url": "http://nutritionfacts.org/topics/homeopathy/"}}
{"_id": "PLAIN-1369", "text": "homocysteine", "metadata": {"url": "http://nutritionfacts.org/topics/homocysteine/"}}
{"_id": "PLAIN-1370", "text": "honey", "metadata": {"url": "http://nutritionfacts.org/topics/honey/"}}
{"_id": "PLAIN-1371", "text": "honeybush tea", "metadata": {"url": "http://nutritionfacts.org/topics/honeybush-tea/"}}
{"_id": "PLAIN-1375", "text": "hormones", "metadata": {"url": "http://nutritionfacts.org/topics/hormones/"}}
{"_id": "PLAIN-1376", "text": "horsemeat", "metadata": {"url": "http://nutritionfacts.org/topics/horsemeat/"}}
{"_id": "PLAIN-1377", "text": "hot dogs", "metadata": {"url": "http://nutritionfacts.org/topics/hot-dogs/"}}
{"_id": "PLAIN-1378", "text": "hot flashes", "metadata": {"url": "http://nutritionfacts.org/topics/hot-flashes/"}}
{"_id": "PLAIN-1381", "text": "human papilloma virus", "metadata": {"url": "http://nutritionfacts.org/topics/human-papilloma-virus/"}}
{"_id": "PLAIN-1382", "text": "Huntington\u2019s disease", "metadata": {"url": "http://nutritionfacts.org/topics/huntingtons-disease/"}}
{"_id": "PLAIN-1383", "text": "hydrogen sulfide", "metadata": {"url": "http://nutritionfacts.org/topics/hydrogen-sulfide/"}}
{"_id": "PLAIN-1384", "text": "hydrogenated fats", "metadata": {"url": "http://nutritionfacts.org/topics/hydrogenated-fats/"}}
{"_id": "PLAIN-1388", "text": "hyperpigmentation", "metadata": {"url": "http://nutritionfacts.org/topics/hyperpigmentation/"}}
{"_id": "PLAIN-1389", "text": "hypertension", "metadata": {"url": "http://nutritionfacts.org/topics/hypertension/"}}
{"_id": "PLAIN-1390", "text": "hypospadias", "metadata": {"url": "http://nutritionfacts.org/topics/hypospadias/"}}
{"_id": "PLAIN-1392", "text": "iatrogenic", "metadata": {"url": "http://nutritionfacts.org/topics/iatrogenic/"}}
{"_id": "PLAIN-1393", "text": "Ibuprofen", "metadata": {"url": "http://nutritionfacts.org/topics/ibuprofen/"}}
{"_id": "PLAIN-1394", "text": "ice cream", "metadata": {"url": "http://nutritionfacts.org/topics/ice-cream/"}}
{"_id": "PLAIN-1395", "text": "ice diet", "metadata": {"url": "http://nutritionfacts.org/topics/ice-diet/"}}
{"_id": "PLAIN-1399", "text": "immune function", "metadata": {"url": "http://nutritionfacts.org/topics/immune-function/"}}
{"_id": "PLAIN-1400", "text": "immunosuppressive drugs", "metadata": {"url": "http://nutritionfacts.org/topics/immunosuppressive-drugs/"}}
{"_id": "PLAIN-1401", "text": "impotence", "metadata": {"url": "http://nutritionfacts.org/topics/impotence/"}}
{"_id": "PLAIN-1402", "text": "in vitro studies", "metadata": {"url": "http://nutritionfacts.org/topics/in-vitro-studies/"}}
{"_id": "PLAIN-1403", "text": "incontinence", "metadata": {"url": "http://nutritionfacts.org/topics/incontinence/"}}
{"_id": "PLAIN-1404", "text": "India", "metadata": {"url": "http://nutritionfacts.org/topics/india/"}}
{"_id": "PLAIN-1405", "text": "indigestion", "metadata": {"url": "http://nutritionfacts.org/topics/indigestion/"}}
{"_id": "PLAIN-1407", "text": "Indonesia", "metadata": {"url": "http://nutritionfacts.org/topics/indonesia/"}}
{"_id": "PLAIN-1410", "text": "industry influence", "metadata": {"url": "http://nutritionfacts.org/topics/industry-influence/"}}
{"_id": "PLAIN-1411", "text": "infant formula", "metadata": {"url": "http://nutritionfacts.org/topics/infant-formula/"}}
{"_id": "PLAIN-1412", "text": "infants", "metadata": {"url": "http://nutritionfacts.org/topics/infants/"}}
{"_id": "PLAIN-1413", "text": "infertility", "metadata": {"url": "http://nutritionfacts.org/topics/infertility/"}}
{"_id": "PLAIN-1414", "text": "inflammation", "metadata": {"url": "http://nutritionfacts.org/topics/inflammation/"}}
{"_id": "PLAIN-1415", "text": "inflammatory bowel disease", "metadata": {"url": "http://nutritionfacts.org/topics/inflammatory-bowel-disease/"}}
{"_id": "PLAIN-1416", "text": "informed consent", "metadata": {"url": "http://nutritionfacts.org/topics/informed-consent/"}}
{"_id": "PLAIN-1417", "text": "inner ear cancer", "metadata": {"url": "http://nutritionfacts.org/topics/inner-ear-cancer/"}}
{"_id": "PLAIN-1420", "text": "insomnia", "metadata": {"url": "http://nutritionfacts.org/topics/insomnia/"}}
{"_id": "PLAIN-1421", "text": "Institute of Medicine", "metadata": {"url": "http://nutritionfacts.org/topics/institute-of-medicine/"}}
{"_id": "PLAIN-1422", "text": "insulin", "metadata": {"url": "http://nutritionfacts.org/topics/insulin/"}}
{"_id": "PLAIN-1423", "text": "intelligence", "metadata": {"url": "http://nutritionfacts.org/topics/intelligence/"}}
{"_id": "PLAIN-1424", "text": "INTERHEART study", "metadata": {"url": "http://nutritionfacts.org/topics/interheart-study/"}}
{"_id": "PLAIN-1425", "text": "interleukin-1", "metadata": {"url": "http://nutritionfacts.org/topics/interleukin-1/"}}
{"_id": "PLAIN-1426", "text": "internal bleeding", "metadata": {"url": "http://nutritionfacts.org/topics/internal-bleeding/"}}
{"_id": "PLAIN-1427", "text": "intestinal health", "metadata": {"url": "http://nutritionfacts.org/topics/intestinal-health/"}}
{"_id": "PLAIN-1430", "text": "ipecac", "metadata": {"url": "http://nutritionfacts.org/topics/ipecac/"}}
{"_id": "PLAIN-1431", "text": "IQ4 5b", "metadata": {"url": "http://nutritionfacts.org/topics/iq4-5b/"}}
{"_id": "PLAIN-1432", "text": "Ireland", "metadata": {"url": "http://nutritionfacts.org/topics/ireland/"}}
{"_id": "PLAIN-1434", "text": "iron", "metadata": {"url": "http://nutritionfacts.org/topics/iron/"}}
{"_id": "PLAIN-1435", "text": "irritable bowel syndrome", "metadata": {"url": "http://nutritionfacts.org/topics/irritable-bowel-syndrome/"}}
{"_id": "PLAIN-1436", "text": "isoflavones", "metadata": {"url": "http://nutritionfacts.org/topics/isoflavones/"}}
{"_id": "PLAIN-1437", "text": "Israel", "metadata": {"url": "http://nutritionfacts.org/topics/israel/"}}
{"_id": "PLAIN-1438", "text": "Jack Norris", "metadata": {"url": "http://nutritionfacts.org/topics/jack-norris/"}}
{"_id": "PLAIN-1442", "text": "jasmine tea", "metadata": {"url": "http://nutritionfacts.org/topics/jasmine-tea/"}}
{"_id": "PLAIN-1443", "text": "jaundice", "metadata": {"url": "http://nutritionfacts.org/topics/jaundice/"}}
{"_id": "PLAIN-1445", "text": "jelly beans", "metadata": {"url": "http://nutritionfacts.org/topics/jelly-beans/"}}
{"_id": "PLAIN-1446", "text": "Jerusalem artichokes", "metadata": {"url": "http://nutritionfacts.org/topics/jerusalem-artichokes/"}}
{"_id": "PLAIN-1447", "text": "Johns Hopkins University", "metadata": {"url": "http://nutritionfacts.org/topics/johns-hopkins-university/"}}
{"_id": "PLAIN-1448", "text": "joint disease", "metadata": {"url": "http://nutritionfacts.org/topics/joint-disease/"}}
{"_id": "PLAIN-1449", "text": "joint health", "metadata": {"url": "http://nutritionfacts.org/topics/joint-health/"}}
{"_id": "PLAIN-1450", "text": "Judaism", "metadata": {"url": "http://nutritionfacts.org/topics/judaism/"}}
{"_id": "PLAIN-1454", "text": "Kaiser Permanente", "metadata": {"url": "http://nutritionfacts.org/topics/kaiser-permanente/"}}
{"_id": "PLAIN-1455", "text": "kale", "metadata": {"url": "http://nutritionfacts.org/topics/kale/"}}
{"_id": "PLAIN-1456", "text": "kangaroo meat", "metadata": {"url": "http://nutritionfacts.org/topics/kangaroo-meat/"}}
{"_id": "PLAIN-1457", "text": "Kaposi\u2019s sarcoma", "metadata": {"url": "http://nutritionfacts.org/topics/kaposis-sarcoma/"}}
{"_id": "PLAIN-1458", "text": "kelp", "metadata": {"url": "http://nutritionfacts.org/topics/kelp/"}}
{"_id": "PLAIN-1459", "text": "keriorrhea", "metadata": {"url": "http://nutritionfacts.org/topics/keriorrhea/"}}
{"_id": "PLAIN-1460", "text": "ketogenic agent AC-1202", "metadata": {"url": "http://nutritionfacts.org/topics/ketogenic-agent-ac-1202/"}}
{"_id": "PLAIN-1461", "text": "KFC", "metadata": {"url": "http://nutritionfacts.org/topics/kfc/"}}
{"_id": "PLAIN-1464", "text": "kidney cancer", "metadata": {"url": "http://nutritionfacts.org/topics/kidney-cancer/"}}
{"_id": "PLAIN-1465", "text": "kidney disease", "metadata": {"url": "http://nutritionfacts.org/topics/kidney-disease/"}}
{"_id": "PLAIN-1466", "text": "kidney failure", "metadata": {"url": "http://nutritionfacts.org/topics/kidney-failure/"}}
{"_id": "PLAIN-1467", "text": "kidney function", "metadata": {"url": "http://nutritionfacts.org/topics/kidney-function/"}}
{"_id": "PLAIN-1468", "text": "kidney health", "metadata": {"url": "http://nutritionfacts.org/topics/kidney-health/"}}
{"_id": "PLAIN-1469", "text": "kidney stones", "metadata": {"url": "http://nutritionfacts.org/topics/kidney-stones/"}}
{"_id": "PLAIN-1470", "text": "kimchi", "metadata": {"url": "http://nutritionfacts.org/topics/kimchi/"}}
{"_id": "PLAIN-1471", "text": "kingdom", "metadata": {"url": "http://nutritionfacts.org/topics/kingdom/"}}
{"_id": "PLAIN-1474", "text": "kombu", "metadata": {"url": "http://nutritionfacts.org/topics/kombu/"}}
{"_id": "PLAIN-1475", "text": "kombucha tea", "metadata": {"url": "http://nutritionfacts.org/topics/kombucha-tea/"}}
{"_id": "PLAIN-1476", "text": "Korea", "metadata": {"url": "http://nutritionfacts.org/topics/korea/"}}
{"_id": "PLAIN-1477", "text": "Kraft", "metadata": {"url": "http://nutritionfacts.org/topics/kraft/"}}
{"_id": "PLAIN-1478", "text": "Kuna Indians", "metadata": {"url": "http://nutritionfacts.org/topics/kuna-indians/"}}
{"_id": "PLAIN-1479", "text": "lactation", "metadata": {"url": "http://nutritionfacts.org/topics/lactation/"}}
{"_id": "PLAIN-1481", "text": "lactic acid", "metadata": {"url": "http://nutritionfacts.org/topics/lactic-acid/"}}
{"_id": "PLAIN-1482", "text": "lactose", "metadata": {"url": "http://nutritionfacts.org/topics/lactose/"}}
{"_id": "PLAIN-1486", "text": "Laron syndrome", "metadata": {"url": "http://nutritionfacts.org/topics/laron-syndrome/"}}
{"_id": "PLAIN-1487", "text": "lasers", "metadata": {"url": "http://nutritionfacts.org/topics/lasers/"}}
{"_id": "PLAIN-1489", "text": "lauric acid", "metadata": {"url": "http://nutritionfacts.org/topics/lauric-acid/"}}
{"_id": "PLAIN-1490", "text": "lavender", "metadata": {"url": "http://nutritionfacts.org/topics/lavender/"}}
{"_id": "PLAIN-1491", "text": "laxatives", "metadata": {"url": "http://nutritionfacts.org/topics/laxatives/"}}
{"_id": "PLAIN-1492", "text": "LDL cholesterol", "metadata": {"url": "http://nutritionfacts.org/topics/ldl-cholesterol/"}}
{"_id": "PLAIN-1493", "text": "lead", "metadata": {"url": "http://nutritionfacts.org/topics/lead/"}}
{"_id": "PLAIN-1494", "text": "leaky gut theory", "metadata": {"url": "http://nutritionfacts.org/topics/leaky-gut-theory/"}}
{"_id": "PLAIN-1497", "text": "legumes", "metadata": {"url": "http://nutritionfacts.org/topics/legumes/"}}
{"_id": "PLAIN-1498", "text": "lemon verbena", "metadata": {"url": "http://nutritionfacts.org/topics/lemon-verbena/"}}
{"_id": "PLAIN-1499", "text": "lemonbalm", "metadata": {"url": "http://nutritionfacts.org/topics/lemonbalm/"}}
{"_id": "PLAIN-1500", "text": "lemongrass", "metadata": {"url": "http://nutritionfacts.org/topics/lemongrass/"}}
{"_id": "PLAIN-1501", "text": "lemons", "metadata": {"url": "http://nutritionfacts.org/topics/lemons/"}}
{"_id": "PLAIN-1502", "text": "lentil effect", "metadata": {"url": "http://nutritionfacts.org/topics/lentil-effect/"}}
{"_id": "PLAIN-1503", "text": "lentils", "metadata": {"url": "http://nutritionfacts.org/topics/lentils/"}}
{"_id": "PLAIN-1504", "text": "leptin", "metadata": {"url": "http://nutritionfacts.org/topics/leptin/"}}
{"_id": "PLAIN-1507", "text": "leukemia", "metadata": {"url": "http://nutritionfacts.org/topics/leukemia/"}}
{"_id": "PLAIN-1508", "text": "lichen planus", "metadata": {"url": "http://nutritionfacts.org/topics/lichen-planus/"}}
{"_id": "PLAIN-1509", "text": "licorice", "metadata": {"url": "http://nutritionfacts.org/topics/licorice/"}}
{"_id": "PLAIN-1510", "text": "lifespan", "metadata": {"url": "http://nutritionfacts.org/topics/lifespan/"}}
{"_id": "PLAIN-1511", "text": "Lifestyle medicine", "metadata": {"url": "http://nutritionfacts.org/topics/lifestyle-medicine/"}}
{"_id": "PLAIN-1512", "text": "lignans", "metadata": {"url": "http://nutritionfacts.org/topics/lignans/"}}
{"_id": "PLAIN-1513", "text": "lima beans", "metadata": {"url": "http://nutritionfacts.org/topics/lima-beans/"}}
{"_id": "PLAIN-1514", "text": "limes", "metadata": {"url": "http://nutritionfacts.org/topics/limes/"}}
{"_id": "PLAIN-1517", "text": "Linguatula serrate", "metadata": {"url": "http://nutritionfacts.org/topics/linguatula-serrate/"}}
{"_id": "PLAIN-1518", "text": "Lipitor", "metadata": {"url": "http://nutritionfacts.org/topics/lipitor/"}}
{"_id": "PLAIN-1519", "text": "liposuction", "metadata": {"url": "http://nutritionfacts.org/topics/liposuction/"}}
{"_id": "PLAIN-1520", "text": "lipotoxicity", "metadata": {"url": "http://nutritionfacts.org/topics/lipotoxicity/"}}
{"_id": "PLAIN-1521", "text": "lipotoxicty", "metadata": {"url": "http://nutritionfacts.org/topics/lipotoxicty/"}}
{"_id": "PLAIN-1523", "text": "liquid smoke", "metadata": {"url": "http://nutritionfacts.org/topics/liquid-smoke/"}}
{"_id": "PLAIN-1524", "text": "Listeria", "metadata": {"url": "http://nutritionfacts.org/topics/listeria/"}}
{"_id": "PLAIN-1525", "text": "liver", "metadata": {"url": "http://nutritionfacts.org/topics/liver/"}}
{"_id": "PLAIN-1528", "text": "liver failure", "metadata": {"url": "http://nutritionfacts.org/topics/liver-failure/"}}
{"_id": "PLAIN-1529", "text": "liver health", "metadata": {"url": "http://nutritionfacts.org/topics/liver-health/"}}
{"_id": "PLAIN-1530", "text": "liver inflammation", "metadata": {"url": "http://nutritionfacts.org/topics/liver-inflammation/"}}
{"_id": "PLAIN-1531", "text": "Loma Linda University", "metadata": {"url": "http://nutritionfacts.org/topics/loma-linda-university/"}}
{"_id": "PLAIN-1532", "text": "Long Island", "metadata": {"url": "http://nutritionfacts.org/topics/long-island/"}}
{"_id": "PLAIN-1533", "text": "longevity", "metadata": {"url": "http://nutritionfacts.org/topics/longevity/"}}
{"_id": "PLAIN-1534", "text": "Lou Gehrig's disease", "metadata": {"url": "http://nutritionfacts.org/topics/lou-gehrigs-disease/"}}
{"_id": "PLAIN-1535", "text": "Louis Pasteur", "metadata": {"url": "http://nutritionfacts.org/topics/louis-pasteur/"}}
{"_id": "PLAIN-1538", "text": "low-fat diets", "metadata": {"url": "http://nutritionfacts.org/topics/low-fat-diets/"}}
{"_id": "PLAIN-1539", "text": "lower back pain", "metadata": {"url": "http://nutritionfacts.org/topics/lower-back-pain/"}}
{"_id": "PLAIN-1540", "text": "lox", "metadata": {"url": "http://nutritionfacts.org/topics/lox/"}}
{"_id": "PLAIN-1541", "text": "lung cancer", "metadata": {"url": "http://nutritionfacts.org/topics/lung-cancer/"}}
{"_id": "PLAIN-1542", "text": "lung disease", "metadata": {"url": "http://nutritionfacts.org/topics/lung-disease/"}}
{"_id": "PLAIN-1543", "text": "lung health", "metadata": {"url": "http://nutritionfacts.org/topics/lung-health/"}}
{"_id": "PLAIN-1544", "text": "lutein", "metadata": {"url": "http://nutritionfacts.org/topics/lutein/"}}
{"_id": "PLAIN-1545", "text": "luteolin", "metadata": {"url": "http://nutritionfacts.org/topics/luteolin/"}}
{"_id": "PLAIN-1548", "text": "lymphoma", "metadata": {"url": "http://nutritionfacts.org/topics/lymphoma/"}}
{"_id": "PLAIN-1549", "text": "Lyon Diet Heart Study", "metadata": {"url": "http://nutritionfacts.org/topics/lyon-diet-heart-study/"}}
{"_id": "PLAIN-1550", "text": "M&M's", "metadata": {"url": "http://nutritionfacts.org/topics/mms/"}}
{"_id": "PLAIN-1551", "text": "macadamia nuts", "metadata": {"url": "http://nutritionfacts.org/topics/macadamia-nuts/"}}
{"_id": "PLAIN-1552", "text": "macadamia oil", "metadata": {"url": "http://nutritionfacts.org/topics/macadamia-oil/"}}
{"_id": "PLAIN-1553", "text": "mackerel", "metadata": {"url": "http://nutritionfacts.org/topics/mackerel/"}}
{"_id": "PLAIN-1554", "text": "macular degeneration", "metadata": {"url": "http://nutritionfacts.org/topics/macular-degeneration/"}}
{"_id": "PLAIN-1555", "text": "mad cow disease", "metadata": {"url": "http://nutritionfacts.org/topics/mad-cow-disease/"}}
{"_id": "PLAIN-1558", "text": "Maimonides", "metadata": {"url": "http://nutritionfacts.org/topics/maimonides/"}}
{"_id": "PLAIN-1560", "text": "malaria", "metadata": {"url": "http://nutritionfacts.org/topics/malaria/"}}
{"_id": "PLAIN-1561", "text": "Malaysia", "metadata": {"url": "http://nutritionfacts.org/topics/malaysia/"}}
{"_id": "PLAIN-1562", "text": "maltodextrin", "metadata": {"url": "http://nutritionfacts.org/topics/maltodextrin/"}}
{"_id": "PLAIN-1563", "text": "manganese", "metadata": {"url": "http://nutritionfacts.org/topics/manganese/"}}
{"_id": "PLAIN-1564", "text": "mango", "metadata": {"url": "http://nutritionfacts.org/topics/mango/"}}
{"_id": "PLAIN-1565", "text": "mangosteen", "metadata": {"url": "http://nutritionfacts.org/topics/mangosteen/"}}
{"_id": "PLAIN-1566", "text": "manure", "metadata": {"url": "http://nutritionfacts.org/topics/manure/"}}
{"_id": "PLAIN-1569", "text": "maraschino cherry", "metadata": {"url": "http://nutritionfacts.org/topics/maraschino-cherry/"}}
{"_id": "PLAIN-1570", "text": "Marek's disease virus", "metadata": {"url": "http://nutritionfacts.org/topics/mareks-disease-virus/"}}
{"_id": "PLAIN-1571", "text": "margarine", "metadata": {"url": "http://nutritionfacts.org/topics/margarine/"}}
{"_id": "PLAIN-1572", "text": "Marion Nestle", "metadata": {"url": "http://nutritionfacts.org/topics/marion-nestle/"}}
{"_id": "PLAIN-1574", "text": "marketing", "metadata": {"url": "http://nutritionfacts.org/topics/marketing/"}}
{"_id": "PLAIN-1575", "text": "marshmallows", "metadata": {"url": "http://nutritionfacts.org/topics/marshmallows/"}}
{"_id": "PLAIN-1576", "text": "massage", "metadata": {"url": "http://nutritionfacts.org/topics/massage/"}}
{"_id": "PLAIN-1577", "text": "mastalgia", "metadata": {"url": "http://nutritionfacts.org/topics/mastalgia/"}}
{"_id": "PLAIN-1580", "text": "matcha", "metadata": {"url": "http://nutritionfacts.org/topics/matcha/"}}
{"_id": "PLAIN-1581", "text": "mat\u00e9", "metadata": {"url": "http://nutritionfacts.org/topics/mate/"}}
{"_id": "PLAIN-1582", "text": "Mayo Clinic", "metadata": {"url": "http://nutritionfacts.org/topics/mayo-clinic/"}}
{"_id": "PLAIN-1583", "text": "McDonald\u2019s", "metadata": {"url": "http://nutritionfacts.org/topics/mcdonalds-2/"}}
{"_id": "PLAIN-1585", "text": "meat", "metadata": {"url": "http://nutritionfacts.org/topics/meat/"}}
{"_id": "PLAIN-1586", "text": "meat analogs", "metadata": {"url": "http://nutritionfacts.org/topics/meat-analogs/"}}
{"_id": "PLAIN-1587", "text": "meat glue", "metadata": {"url": "http://nutritionfacts.org/topics/meat-glue/"}}
{"_id": "PLAIN-1588", "text": "Meatless Mondays", "metadata": {"url": "http://nutritionfacts.org/topics/meatless-mondays/"}}
{"_id": "PLAIN-1591", "text": "medical profession", "metadata": {"url": "http://nutritionfacts.org/topics/medical-profession/"}}
{"_id": "PLAIN-1592", "text": "Medicare", "metadata": {"url": "http://nutritionfacts.org/topics/medicare/"}}
{"_id": "PLAIN-1594", "text": "medications", "metadata": {"url": "http://nutritionfacts.org/topics/medications/"}}
{"_id": "PLAIN-1595", "text": "meditation", "metadata": {"url": "http://nutritionfacts.org/topics/meditation/"}}
{"_id": "PLAIN-1596", "text": "Mediterranean diet", "metadata": {"url": "http://nutritionfacts.org/topics/mediterranean-diet/"}}
{"_id": "PLAIN-1597", "text": "medium-chain fatty acids", "metadata": {"url": "http://nutritionfacts.org/topics/medium-chain-fatty-acids/"}}
{"_id": "PLAIN-1598", "text": "melanoma", "metadata": {"url": "http://nutritionfacts.org/topics/melanoma/"}}
{"_id": "PLAIN-1599", "text": "melatonin", "metadata": {"url": "http://nutritionfacts.org/topics/melatonin/"}}
{"_id": "PLAIN-1602", "text": "men's health", "metadata": {"url": "http://nutritionfacts.org/topics/mens-health/"}}
{"_id": "PLAIN-1603", "text": "menarche", "metadata": {"url": "http://nutritionfacts.org/topics/menarche/"}}
{"_id": "PLAIN-1604", "text": "Meningioma", "metadata": {"url": "http://nutritionfacts.org/topics/meningioma/"}}
{"_id": "PLAIN-1605", "text": "menopause", "metadata": {"url": "http://nutritionfacts.org/topics/menopause/"}}
{"_id": "PLAIN-1606", "text": "menstruation", "metadata": {"url": "http://nutritionfacts.org/topics/menstruation/"}}
{"_id": "PLAIN-1607", "text": "mental health", "metadata": {"url": "http://nutritionfacts.org/topics/mental-health/"}}
{"_id": "PLAIN-1608", "text": "mercury", "metadata": {"url": "http://nutritionfacts.org/topics/mercury/"}}
{"_id": "PLAIN-1609", "text": "mesclun mix", "metadata": {"url": "http://nutritionfacts.org/topics/mesclun-mix/"}}
{"_id": "PLAIN-1612", "text": "meta-analysis", "metadata": {"url": "http://nutritionfacts.org/topics/meta-analysis/"}}
{"_id": "PLAIN-1613", "text": "metabolic syndrome", "metadata": {"url": "http://nutritionfacts.org/topics/metabolic-syndrome/"}}
{"_id": "PLAIN-1614", "text": "Metabolife", "metadata": {"url": "http://nutritionfacts.org/topics/metabolife/"}}
{"_id": "PLAIN-1615", "text": "metabolism", "metadata": {"url": "http://nutritionfacts.org/topics/metabolism/"}}
{"_id": "PLAIN-1616", "text": "Metamucil", "metadata": {"url": "http://nutritionfacts.org/topics/metamucil/"}}
{"_id": "PLAIN-1617", "text": "metastases", "metadata": {"url": "http://nutritionfacts.org/topics/metastases/"}}
{"_id": "PLAIN-1618", "text": "metastatic calcification", "metadata": {"url": "http://nutritionfacts.org/topics/metastatic-calcification/"}}
{"_id": "PLAIN-1619", "text": "methionine", "metadata": {"url": "http://nutritionfacts.org/topics/methionine/"}}
{"_id": "PLAIN-1623", "text": "Mexico", "metadata": {"url": "http://nutritionfacts.org/topics/mexico/"}}
{"_id": "PLAIN-1624", "text": "MGUS", "metadata": {"url": "http://nutritionfacts.org/topics/mgus/"}}
{"_id": "PLAIN-1628", "text": "microbiome", "metadata": {"url": "http://nutritionfacts.org/topics/microbiome/"}}
{"_id": "PLAIN-1630", "text": "microcystins", "metadata": {"url": "http://nutritionfacts.org/topics/microcystins/"}}
{"_id": "PLAIN-1631", "text": "Micronase", "metadata": {"url": "http://nutritionfacts.org/topics/micronase/"}}
{"_id": "PLAIN-1632", "text": "microwaving", "metadata": {"url": "http://nutritionfacts.org/topics/microwaving/"}}
{"_id": "PLAIN-1633", "text": "migraine headaches", "metadata": {"url": "http://nutritionfacts.org/topics/migraine-headaches/"}}
{"_id": "PLAIN-1636", "text": "milk chocolate", "metadata": {"url": "http://nutritionfacts.org/topics/milk-chocolate/"}}
{"_id": "PLAIN-1637", "text": "millet", "metadata": {"url": "http://nutritionfacts.org/topics/millet/"}}
{"_id": "PLAIN-1638", "text": "mineral clay", "metadata": {"url": "http://nutritionfacts.org/topics/mineral-clay/"}}
{"_id": "PLAIN-1639", "text": "mint", "metadata": {"url": "http://nutritionfacts.org/topics/mint/"}}
{"_id": "PLAIN-1640", "text": "Mioscene", "metadata": {"url": "http://nutritionfacts.org/topics/mioscene/"}}
{"_id": "PLAIN-1641", "text": "miscarriage", "metadata": {"url": "http://nutritionfacts.org/topics/miscarriage/"}}
{"_id": "PLAIN-1642", "text": "miso", "metadata": {"url": "http://nutritionfacts.org/topics/miso/"}}
{"_id": "PLAIN-1643", "text": "MIT", "metadata": {"url": "http://nutritionfacts.org/topics/mit/"}}
{"_id": "PLAIN-1646", "text": "mold", "metadata": {"url": "http://nutritionfacts.org/topics/mold/"}}
{"_id": "PLAIN-1647", "text": "monkfish", "metadata": {"url": "http://nutritionfacts.org/topics/monkfish/"}}
{"_id": "PLAIN-1648", "text": "monounsaturated fats", "metadata": {"url": "http://nutritionfacts.org/topics/monounsaturated-fats/"}}
{"_id": "PLAIN-1649", "text": "Monsanto", "metadata": {"url": "http://nutritionfacts.org/topics/monsanto/"}}
{"_id": "PLAIN-1650", "text": "mood", "metadata": {"url": "http://nutritionfacts.org/topics/mood/"}}
{"_id": "PLAIN-1651", "text": "moose meat", "metadata": {"url": "http://nutritionfacts.org/topics/moose-meat/"}}
{"_id": "PLAIN-1652", "text": "morbidity", "metadata": {"url": "http://nutritionfacts.org/topics/morbidity/"}}
{"_id": "PLAIN-1654", "text": "morphine", "metadata": {"url": "http://nutritionfacts.org/topics/morphine/"}}
{"_id": "PLAIN-1657", "text": "mouthwash", "metadata": {"url": "http://nutritionfacts.org/topics/mouthwash/"}}
{"_id": "PLAIN-1659", "text": "MPTP", "metadata": {"url": "http://nutritionfacts.org/topics/mptp/"}}
{"_id": "PLAIN-1660", "text": "MRSA", "metadata": {"url": "http://nutritionfacts.org/topics/mrsa/"}}
{"_id": "PLAIN-1661", "text": "MSG", "metadata": {"url": "http://nutritionfacts.org/topics/msg/"}}
{"_id": "PLAIN-1662", "text": "mucus", "metadata": {"url": "http://nutritionfacts.org/topics/mucus/"}}
{"_id": "PLAIN-1663", "text": "multiple myeloma", "metadata": {"url": "http://nutritionfacts.org/topics/multiple-myeloma/"}}
{"_id": "PLAIN-1664", "text": "multiple sclerosis", "metadata": {"url": "http://nutritionfacts.org/topics/multiple-sclerosis/"}}
{"_id": "PLAIN-1665", "text": "multivitamins", "metadata": {"url": "http://nutritionfacts.org/topics/multivitamins/"}}
{"_id": "PLAIN-1668", "text": "muscle inflammation", "metadata": {"url": "http://nutritionfacts.org/topics/muscle-inflammation/"}}
{"_id": "PLAIN-1669", "text": "muscle soreness", "metadata": {"url": "http://nutritionfacts.org/topics/muscle-soreness/"}}
{"_id": "PLAIN-1670", "text": "muscle strength", "metadata": {"url": "http://nutritionfacts.org/topics/muscle-strength/"}}
{"_id": "PLAIN-1671", "text": "mushrooms", "metadata": {"url": "http://nutritionfacts.org/topics/mushrooms/"}}
{"_id": "PLAIN-1673", "text": "mustard greens", "metadata": {"url": "http://nutritionfacts.org/topics/mustard-greens/"}}
{"_id": "PLAIN-1675", "text": "mustard powder", "metadata": {"url": "http://nutritionfacts.org/topics/mustard-powder/"}}
{"_id": "PLAIN-1676", "text": "mustard seeds", "metadata": {"url": "http://nutritionfacts.org/topics/mustard-seeds/"}}
{"_id": "PLAIN-1677", "text": "mutation", "metadata": {"url": "http://nutritionfacts.org/topics/mutation/"}}
{"_id": "PLAIN-1681", "text": "myristic acid", "metadata": {"url": "http://nutritionfacts.org/topics/myristic-acid/"}}
{"_id": "PLAIN-1682", "text": "Nagasaki", "metadata": {"url": "http://nutritionfacts.org/topics/nagasaki/"}}
{"_id": "PLAIN-1683", "text": "nail health", "metadata": {"url": "http://nutritionfacts.org/topics/nail-health/"}}
{"_id": "PLAIN-1684", "text": "nanoparticles", "metadata": {"url": "http://nutritionfacts.org/topics/nanoparticles/"}}
{"_id": "PLAIN-1685", "text": "naphthalene", "metadata": {"url": "http://nutritionfacts.org/topics/naphthalene/"}}
{"_id": "PLAIN-1686", "text": "naproxen", "metadata": {"url": "http://nutritionfacts.org/topics/naproxen/"}}
{"_id": "PLAIN-1687", "text": "NASA", "metadata": {"url": "http://nutritionfacts.org/topics/nasa/"}}
{"_id": "PLAIN-1688", "text": "nasal cavity cancer", "metadata": {"url": "http://nutritionfacts.org/topics/nasal-cavity-cancer/"}}
{"_id": "PLAIN-1691", "text": "National Beef Cattleman\u2019s Association", "metadata": {"url": "http://nutritionfacts.org/topics/national-beef-cattlemans-association/"}}
{"_id": "PLAIN-1692", "text": "National Cancer Institute", "metadata": {"url": "http://nutritionfacts.org/topics/national-cancer-institute/"}}
{"_id": "PLAIN-1693", "text": "National Cattlemen's Beef Association", "metadata": {"url": "http://nutritionfacts.org/topics/national-cattlemens-beef-association/"}}
{"_id": "PLAIN-1694", "text": "National Confectioners Association", "metadata": {"url": "http://nutritionfacts.org/topics/national-confectioners-association-2/"}}
{"_id": "PLAIN-1695", "text": "National Dairy Board", "metadata": {"url": "http://nutritionfacts.org/topics/national-dairy-board/"}}
{"_id": "PLAIN-1696", "text": "National Dairy Council", "metadata": {"url": "http://nutritionfacts.org/topics/national-dairy-council/"}}
{"_id": "PLAIN-1697", "text": "National Dairy Promotion Board", "metadata": {"url": "http://nutritionfacts.org/topics/national-dairy-promotion-board/"}}
{"_id": "PLAIN-1698", "text": "National Pork Board", "metadata": {"url": "http://nutritionfacts.org/topics/national-pork-board/"}}
{"_id": "PLAIN-1701", "text": "natural toxins", "metadata": {"url": "http://nutritionfacts.org/topics/natural-toxins/"}}
{"_id": "PLAIN-1702", "text": "nausea", "metadata": {"url": "http://nutritionfacts.org/topics/nausea/"}}
{"_id": "PLAIN-1703", "text": "navy beans", "metadata": {"url": "http://nutritionfacts.org/topics/navy-beans/"}}
{"_id": "PLAIN-1704", "text": "necrotizing fasciitis", "metadata": {"url": "http://nutritionfacts.org/topics/necrotizing-fasciitis/"}}
{"_id": "PLAIN-1705", "text": "Nepal", "metadata": {"url": "http://nutritionfacts.org/topics/nepal/"}}
{"_id": "PLAIN-1706", "text": "nerve health", "metadata": {"url": "http://nutritionfacts.org/topics/nerve-health/"}}
{"_id": "PLAIN-1707", "text": "Netherlands", "metadata": {"url": "http://nutritionfacts.org/topics/netherlands/"}}
{"_id": "PLAIN-1708", "text": "neti pot", "metadata": {"url": "http://nutritionfacts.org/topics/neti-pot/"}}
{"_id": "PLAIN-1711", "text": "neuropathy", "metadata": {"url": "http://nutritionfacts.org/topics/neuropathy/"}}
{"_id": "PLAIN-1712", "text": "neurotoxins", "metadata": {"url": "http://nutritionfacts.org/topics/neurotoxins/"}}
{"_id": "PLAIN-1715", "text": "New York City", "metadata": {"url": "http://nutritionfacts.org/topics/new-york-city/"}}
{"_id": "PLAIN-1716", "text": "New York Coalition for Healthy School Food", "metadata": {"url": "http://nutritionfacts.org/topics/new-york-coalition-for-healthy-school-food/"}}
{"_id": "PLAIN-1717", "text": "New Zealand", "metadata": {"url": "http://nutritionfacts.org/topics/new-zealand/"}}
{"_id": "PLAIN-1718", "text": "nicotine", "metadata": {"url": "http://nutritionfacts.org/topics/nicotine/"}}
{"_id": "PLAIN-1719", "text": "Nigeria", "metadata": {"url": "http://nutritionfacts.org/topics/nigeria/"}}
{"_id": "PLAIN-1722", "text": "nitrate", "metadata": {"url": "http://nutritionfacts.org/topics/nitrate/"}}
{"_id": "PLAIN-1723", "text": "nitric oxide", "metadata": {"url": "http://nutritionfacts.org/topics/nitric-oxide/"}}
{"_id": "PLAIN-1724", "text": "nitrite", "metadata": {"url": "http://nutritionfacts.org/topics/nitrite/"}}
{"_id": "PLAIN-1725", "text": "nitroglycerin", "metadata": {"url": "http://nutritionfacts.org/topics/nitroglycerin/"}}
{"_id": "PLAIN-1726", "text": "nitrosamines", "metadata": {"url": "http://nutritionfacts.org/topics/nitrosamines/"}}
{"_id": "PLAIN-1727", "text": "non-Hodgkin lymphoma", "metadata": {"url": "http://nutritionfacts.org/topics/non-hodgkin-lymphoma/"}}
{"_id": "PLAIN-1728", "text": "nonalcoholic fatty liver disease", "metadata": {"url": "http://nutritionfacts.org/topics/nonalcoholic-fatty-liver-disease/"}}
{"_id": "PLAIN-1729", "text": "noni fruit", "metadata": {"url": "http://nutritionfacts.org/topics/noni-fruit/"}}
{"_id": "PLAIN-1732", "text": "Norway", "metadata": {"url": "http://nutritionfacts.org/topics/norway/"}}
{"_id": "PLAIN-1733", "text": "Nuremburg Code", "metadata": {"url": "http://nutritionfacts.org/topics/nuremburg-code/"}}
{"_id": "PLAIN-1734", "text": "nutmeg", "metadata": {"url": "http://nutritionfacts.org/topics/nutmeg/"}}
{"_id": "PLAIN-1735", "text": "Nutrasweet", "metadata": {"url": "http://nutritionfacts.org/topics/nutrasweet/"}}
{"_id": "PLAIN-1736", "text": "nutrient absorption", "metadata": {"url": "http://nutritionfacts.org/topics/nutrient-absorption/"}}
{"_id": "PLAIN-1737", "text": "nutrient density", "metadata": {"url": "http://nutritionfacts.org/topics/nutrient-density/"}}
{"_id": "PLAIN-1738", "text": "nutrient synergy", "metadata": {"url": "http://nutritionfacts.org/topics/nutrient-synergy/"}}
{"_id": "PLAIN-1739", "text": "nutrition myths", "metadata": {"url": "http://nutritionfacts.org/topics/nutrition-myths/"}}
{"_id": "PLAIN-1742", "text": "oatmeal", "metadata": {"url": "http://nutritionfacts.org/topics/oatmeal/"}}
{"_id": "PLAIN-1743", "text": "oats", "metadata": {"url": "http://nutritionfacts.org/topics/oats/"}}
{"_id": "PLAIN-1744", "text": "Obama", "metadata": {"url": "http://nutritionfacts.org/topics/obama/"}}
{"_id": "PLAIN-1745", "text": "obesity", "metadata": {"url": "http://nutritionfacts.org/topics/obesity/"}}
{"_id": "PLAIN-1746", "text": "obesogens", "metadata": {"url": "http://nutritionfacts.org/topics/obesogens/"}}
{"_id": "PLAIN-1747", "text": "occupational health", "metadata": {"url": "http://nutritionfacts.org/topics/occupational-health/"}}
{"_id": "PLAIN-1748", "text": "octopus", "metadata": {"url": "http://nutritionfacts.org/topics/octopus/"}}
{"_id": "PLAIN-1749", "text": "offal", "metadata": {"url": "http://nutritionfacts.org/topics/offal/"}}
{"_id": "PLAIN-1753", "text": "olive oil", "metadata": {"url": "http://nutritionfacts.org/topics/olive-oil/"}}
{"_id": "PLAIN-1754", "text": "olives", "metadata": {"url": "http://nutritionfacts.org/topics/olives/"}}
{"_id": "PLAIN-1755", "text": "omega-3 fatty acids", "metadata": {"url": "http://nutritionfacts.org/topics/omega-3-fatty-acids/"}}
{"_id": "PLAIN-1756", "text": "omnivores", "metadata": {"url": "http://nutritionfacts.org/topics/omnivores/"}}
{"_id": "PLAIN-1757", "text": "onions", "metadata": {"url": "http://nutritionfacts.org/topics/onions/"}}
{"_id": "PLAIN-1758", "text": "oolong tea", "metadata": {"url": "http://nutritionfacts.org/topics/oolong-tea/"}}
{"_id": "PLAIN-1759", "text": "optimal diet", "metadata": {"url": "http://nutritionfacts.org/topics/optimal-diet/"}}
{"_id": "PLAIN-1760", "text": "oral cancer", "metadata": {"url": "http://nutritionfacts.org/topics/oral-cancer/"}}
{"_id": "PLAIN-1763", "text": "orange juice", "metadata": {"url": "http://nutritionfacts.org/topics/orange-juice/"}}
{"_id": "PLAIN-1764", "text": "oranges", "metadata": {"url": "http://nutritionfacts.org/topics/oranges/"}}
{"_id": "PLAIN-1765", "text": "oregano", "metadata": {"url": "http://nutritionfacts.org/topics/oregano/"}}
{"_id": "PLAIN-1766", "text": "Oregon", "metadata": {"url": "http://nutritionfacts.org/topics/oregon/"}}
{"_id": "PLAIN-1767", "text": "organ meats", "metadata": {"url": "http://nutritionfacts.org/topics/organ-meats/"}}
{"_id": "PLAIN-1768", "text": "organic", "metadata": {"url": "http://nutritionfacts.org/topics/organic/"}}
{"_id": "PLAIN-1769", "text": "organic foods", "metadata": {"url": "http://nutritionfacts.org/topics/organic-foods/"}}
{"_id": "PLAIN-1770", "text": "organic milk", "metadata": {"url": "http://nutritionfacts.org/topics/organic-milk/"}}
{"_id": "PLAIN-1773", "text": "orgasm", "metadata": {"url": "http://nutritionfacts.org/topics/orgasm/"}}
{"_id": "PLAIN-1774", "text": "Orville Redenbacher", "metadata": {"url": "http://nutritionfacts.org/topics/orville-redenbacher/"}}
{"_id": "PLAIN-1776", "text": "osteoarthritis", "metadata": {"url": "http://nutritionfacts.org/topics/osteoarthritis/"}}
{"_id": "PLAIN-1777", "text": "osteoporosis", "metadata": {"url": "http://nutritionfacts.org/topics/osteoporosis/"}}
{"_id": "PLAIN-1778", "text": "Outback Steakhouse", "metadata": {"url": "http://nutritionfacts.org/topics/outback-steakhouse/"}}
{"_id": "PLAIN-1779", "text": "ovarian cancer", "metadata": {"url": "http://nutritionfacts.org/topics/ovarian-cancer/"}}
{"_id": "PLAIN-1780", "text": "ovary health", "metadata": {"url": "http://nutritionfacts.org/topics/ovary-health/"}}
{"_id": "PLAIN-1781", "text": "overeating", "metadata": {"url": "http://nutritionfacts.org/topics/overeating/"}}
{"_id": "PLAIN-1785", "text": "Oxford", "metadata": {"url": "http://nutritionfacts.org/topics/oxford/"}}
{"_id": "PLAIN-1786", "text": "oxidative stress", "metadata": {"url": "http://nutritionfacts.org/topics/oxidative-stress/"}}
{"_id": "PLAIN-1787", "text": "oyster mushrooms", "metadata": {"url": "http://nutritionfacts.org/topics/oyster-mushrooms/"}}
{"_id": "PLAIN-1788", "text": "oysters", "metadata": {"url": "http://nutritionfacts.org/topics/oysters/"}}
{"_id": "PLAIN-1789", "text": "paclitaxel", "metadata": {"url": "http://nutritionfacts.org/topics/paclitaxel/"}}
{"_id": "PLAIN-1790", "text": "paella", "metadata": {"url": "http://nutritionfacts.org/topics/paella/"}}
{"_id": "PLAIN-1791", "text": "pain", "metadata": {"url": "http://nutritionfacts.org/topics/pain/"}}
{"_id": "PLAIN-1792", "text": "paleolithic diets", "metadata": {"url": "http://nutritionfacts.org/topics/paleolithic-diets/"}}
{"_id": "PLAIN-1795", "text": "pancakes", "metadata": {"url": "http://nutritionfacts.org/topics/pancakes/"}}
{"_id": "PLAIN-1796", "text": "pancreas health", "metadata": {"url": "http://nutritionfacts.org/topics/pancreas-health/"}}
{"_id": "PLAIN-1797", "text": "pancreatic cancer", "metadata": {"url": "http://nutritionfacts.org/topics/pancreatic-cancer/"}}
{"_id": "PLAIN-1798", "text": "pancreatic enzymes", "metadata": {"url": "http://nutritionfacts.org/topics/pancreatic-enzymes/"}}
{"_id": "PLAIN-1799", "text": "pancreatitis", "metadata": {"url": "http://nutritionfacts.org/topics/pancreatitis/"}}
{"_id": "PLAIN-1801", "text": "papaya", "metadata": {"url": "http://nutritionfacts.org/topics/papaya/"}}
{"_id": "PLAIN-1802", "text": "paralysis", "metadata": {"url": "http://nutritionfacts.org/topics/paralysis/"}}
{"_id": "PLAIN-1803", "text": "Paramide Plus", "metadata": {"url": "http://nutritionfacts.org/topics/paramide-plus/"}}
{"_id": "PLAIN-1806", "text": "parkinsonism-dementia complex", "metadata": {"url": "http://nutritionfacts.org/topics/parkinsonism-dementia-complex/"}}
{"_id": "PLAIN-1808", "text": "pasta", "metadata": {"url": "http://nutritionfacts.org/topics/pasta/"}}
{"_id": "PLAIN-1809", "text": "pasteurization", "metadata": {"url": "http://nutritionfacts.org/topics/pasteurization/"}}
{"_id": "PLAIN-1810", "text": "patent", "metadata": {"url": "http://nutritionfacts.org/topics/patent/"}}
{"_id": "PLAIN-1812", "text": "PBCs", "metadata": {"url": "http://nutritionfacts.org/topics/pbcs/"}}
{"_id": "PLAIN-1813", "text": "PBDEs", "metadata": {"url": "http://nutritionfacts.org/topics/pbdes/"}}
{"_id": "PLAIN-1814", "text": "PCBs", "metadata": {"url": "http://nutritionfacts.org/topics/pcbs/"}}
{"_id": "PLAIN-1815", "text": "PCOS", "metadata": {"url": "http://nutritionfacts.org/topics/pcos/"}}
{"_id": "PLAIN-1818", "text": "peanuts", "metadata": {"url": "http://nutritionfacts.org/topics/peanuts/"}}
{"_id": "PLAIN-1819", "text": "pears", "metadata": {"url": "http://nutritionfacts.org/topics/pears/"}}
{"_id": "PLAIN-1820", "text": "peas", "metadata": {"url": "http://nutritionfacts.org/topics/peas/"}}
{"_id": "PLAIN-1821", "text": "pecans", "metadata": {"url": "http://nutritionfacts.org/topics/pecans/"}}
{"_id": "PLAIN-1822", "text": "penicillin", "metadata": {"url": "http://nutritionfacts.org/topics/penicillin/"}}
{"_id": "PLAIN-1823", "text": "penile bone", "metadata": {"url": "http://nutritionfacts.org/topics/penile-bone/"}}
{"_id": "PLAIN-1824", "text": "penis cancer", "metadata": {"url": "http://nutritionfacts.org/topics/penis-cancer/"}}
{"_id": "PLAIN-1825", "text": "penis health", "metadata": {"url": "http://nutritionfacts.org/topics/penis-health/"}}
{"_id": "PLAIN-1828", "text": "pepper", "metadata": {"url": "http://nutritionfacts.org/topics/pepper/"}}
{"_id": "PLAIN-1829", "text": "peppermint", "metadata": {"url": "http://nutritionfacts.org/topics/peppermint/"}}
{"_id": "PLAIN-1830", "text": "peppermint oil", "metadata": {"url": "http://nutritionfacts.org/topics/peppermint-oil/"}}
{"_id": "PLAIN-1831", "text": "peppers", "metadata": {"url": "http://nutritionfacts.org/topics/peppers/"}}
{"_id": "PLAIN-1832", "text": "Pepsi", "metadata": {"url": "http://nutritionfacts.org/topics/pepsi/"}}
{"_id": "PLAIN-1833", "text": "perfluorochemicals", "metadata": {"url": "http://nutritionfacts.org/topics/perfluorochemicals/"}}
{"_id": "PLAIN-1834", "text": "periodontal disease", "metadata": {"url": "http://nutritionfacts.org/topics/periodontal-disease/"}}
{"_id": "PLAIN-1835", "text": "persin", "metadata": {"url": "http://nutritionfacts.org/topics/persin/"}}
{"_id": "PLAIN-1838", "text": "petroleum jelly", "metadata": {"url": "http://nutritionfacts.org/topics/petroleum-jelly/"}}
{"_id": "PLAIN-1839", "text": "pets", "metadata": {"url": "http://nutritionfacts.org/topics/pets/"}}
{"_id": "PLAIN-1840", "text": "petunidin", "metadata": {"url": "http://nutritionfacts.org/topics/petunidin/"}}
{"_id": "PLAIN-1841", "text": "Pew Commission", "metadata": {"url": "http://nutritionfacts.org/topics/pew-commission/"}}
{"_id": "PLAIN-1842", "text": "Pfizer", "metadata": {"url": "http://nutritionfacts.org/topics/pfizer/"}}
{"_id": "PLAIN-1843", "text": "pH", "metadata": {"url": "http://nutritionfacts.org/topics/ph/"}}
{"_id": "PLAIN-1844", "text": "pharmacists", "metadata": {"url": "http://nutritionfacts.org/topics/pharmacists/"}}
{"_id": "PLAIN-1845", "text": "pheasants", "metadata": {"url": "http://nutritionfacts.org/topics/pheasants/"}}
{"_id": "PLAIN-1848", "text": "Phillip Morris", "metadata": {"url": "http://nutritionfacts.org/topics/phillip-morris/"}}
{"_id": "PLAIN-1849", "text": "PhIP", "metadata": {"url": "http://nutritionfacts.org/topics/phip/"}}
{"_id": "PLAIN-1850", "text": "phosgene", "metadata": {"url": "http://nutritionfacts.org/topics/phosgene/"}}
{"_id": "PLAIN-1851", "text": "phosphate additives", "metadata": {"url": "http://nutritionfacts.org/topics/phosphate-additives/"}}
{"_id": "PLAIN-1852", "text": "phosphorus", "metadata": {"url": "http://nutritionfacts.org/topics/phosphorus/"}}
{"_id": "PLAIN-1853", "text": "phthalates", "metadata": {"url": "http://nutritionfacts.org/topics/phthalates/"}}
{"_id": "PLAIN-1854", "text": "physical attraction", "metadata": {"url": "http://nutritionfacts.org/topics/physical-attraction/"}}
{"_id": "PLAIN-1855", "text": "Physicians Committee for Responsible Medicine", "metadata": {"url": "http://nutritionfacts.org/topics/physicians-committee-for-responsible-medicine/"}}
{"_id": "PLAIN-1858", "text": "phytoestrogens", "metadata": {"url": "http://nutritionfacts.org/topics/phytoestrogens/"}}
{"_id": "PLAIN-1859", "text": "phytonutrients", "metadata": {"url": "http://nutritionfacts.org/topics/phytonutrients/"}}
{"_id": "PLAIN-1860", "text": "phytosterols", "metadata": {"url": "http://nutritionfacts.org/topics/phytosterols/"}}
{"_id": "PLAIN-1861", "text": "pickled vegetables", "metadata": {"url": "http://nutritionfacts.org/topics/pickled-vegetables/"}}
{"_id": "PLAIN-1862", "text": "pie", "metadata": {"url": "http://nutritionfacts.org/topics/pie/"}}
{"_id": "PLAIN-1863", "text": "pine needles", "metadata": {"url": "http://nutritionfacts.org/topics/pine-needles/"}}
{"_id": "PLAIN-1864", "text": "pine nuts", "metadata": {"url": "http://nutritionfacts.org/topics/pine-nuts/"}}
{"_id": "PLAIN-1865", "text": "pineal gland", "metadata": {"url": "http://nutritionfacts.org/topics/pineal-gland/"}}
{"_id": "PLAIN-1868", "text": "pinto beans", "metadata": {"url": "http://nutritionfacts.org/topics/pinto-beans/"}}
{"_id": "PLAIN-1869", "text": "piperine", "metadata": {"url": "http://nutritionfacts.org/topics/piperine/"}}
{"_id": "PLAIN-1870", "text": "pistachio principle", "metadata": {"url": "http://nutritionfacts.org/topics/pistachio-principle/"}}
{"_id": "PLAIN-1871", "text": "pistachios", "metadata": {"url": "http://nutritionfacts.org/topics/pistachios/"}}
{"_id": "PLAIN-1872", "text": "pizza", "metadata": {"url": "http://nutritionfacts.org/topics/pizza/"}}
{"_id": "PLAIN-1873", "text": "Pizza Hut", "metadata": {"url": "http://nutritionfacts.org/topics/pizza-hut/"}}
{"_id": "PLAIN-1874", "text": "placebo", "metadata": {"url": "http://nutritionfacts.org/topics/placebo/"}}
{"_id": "PLAIN-1875", "text": "placebo effect", "metadata": {"url": "http://nutritionfacts.org/topics/placebo-effect/"}}
{"_id": "PLAIN-1878", "text": "plant-based diets", "metadata": {"url": "http://nutritionfacts.org/topics/plant-based-diets/"}}
{"_id": "PLAIN-1879", "text": "plantains", "metadata": {"url": "http://nutritionfacts.org/topics/plantains/"}}
{"_id": "PLAIN-1880", "text": "plasma membrane", "metadata": {"url": "http://nutritionfacts.org/topics/plasma-membrane/"}}
{"_id": "PLAIN-1881", "text": "plastic", "metadata": {"url": "http://nutritionfacts.org/topics/plastic/"}}
{"_id": "PLAIN-1882", "text": "platelets", "metadata": {"url": "http://nutritionfacts.org/topics/platelets/"}}
{"_id": "PLAIN-1883", "text": "plums", "metadata": {"url": "http://nutritionfacts.org/topics/plums/"}}
{"_id": "PLAIN-1884", "text": "plutonium", "metadata": {"url": "http://nutritionfacts.org/topics/plutonium/"}}
{"_id": "PLAIN-1885", "text": "pneumonia", "metadata": {"url": "http://nutritionfacts.org/topics/pneumonia/"}}
{"_id": "PLAIN-1888", "text": "Poland", "metadata": {"url": "http://nutritionfacts.org/topics/poland/"}}
{"_id": "PLAIN-1889", "text": "polonium", "metadata": {"url": "http://nutritionfacts.org/topics/polonium/"}}
{"_id": "PLAIN-1890", "text": "polycarbonate plastic", "metadata": {"url": "http://nutritionfacts.org/topics/polycarbonate-plastic/"}}
{"_id": "PLAIN-1891", "text": "polychlorinated naphthalenes", "metadata": {"url": "http://nutritionfacts.org/topics/polychlorinated-naphthalenes/"}}
{"_id": "PLAIN-1892", "text": "polycyclic aromatic hydrocarbons", "metadata": {"url": "http://nutritionfacts.org/topics/polycyclic-aromatic-hydrocarbons/"}}
{"_id": "PLAIN-1893", "text": "polycyclic hydrocarbons", "metadata": {"url": "http://nutritionfacts.org/topics/polycyclic-hydrocarbons/"}}
{"_id": "PLAIN-1894", "text": "polyethylene plastic", "metadata": {"url": "http://nutritionfacts.org/topics/polyethylene-plastic/"}}
{"_id": "PLAIN-1895", "text": "polymyositis", "metadata": {"url": "http://nutritionfacts.org/topics/polymyositis/"}}
{"_id": "PLAIN-1898", "text": "polyps", "metadata": {"url": "http://nutritionfacts.org/topics/polyps/"}}
{"_id": "PLAIN-1899", "text": "polyradiculoneuropathy", "metadata": {"url": "http://nutritionfacts.org/topics/polyradiculoneuropathy/"}}
{"_id": "PLAIN-1900", "text": "Polysorbate 80", "metadata": {"url": "http://nutritionfacts.org/topics/polysorbate-80/"}}
{"_id": "PLAIN-1901", "text": "pomegranate juice", "metadata": {"url": "http://nutritionfacts.org/topics/pomegranate-juice/"}}
{"_id": "PLAIN-1902", "text": "pomegranates", "metadata": {"url": "http://nutritionfacts.org/topics/pomegranates/"}}
{"_id": "PLAIN-1904", "text": "popcorn", "metadata": {"url": "http://nutritionfacts.org/topics/popcorn/"}}
{"_id": "PLAIN-1905", "text": "popcorn lung", "metadata": {"url": "http://nutritionfacts.org/topics/popcorn-lung/"}}
{"_id": "PLAIN-1906", "text": "poppy seeds", "metadata": {"url": "http://nutritionfacts.org/topics/poppy-seeds/"}}
{"_id": "PLAIN-1910", "text": "pork brains", "metadata": {"url": "http://nutritionfacts.org/topics/pork-brains/"}}
{"_id": "PLAIN-1911", "text": "pork rinds", "metadata": {"url": "http://nutritionfacts.org/topics/pork-rinds/"}}
{"_id": "PLAIN-1912", "text": "portobello mushrooms", "metadata": {"url": "http://nutritionfacts.org/topics/portobello-mushrooms/"}}
{"_id": "PLAIN-1913", "text": "potassium", "metadata": {"url": "http://nutritionfacts.org/topics/potassium/"}}
{"_id": "PLAIN-1914", "text": "potassium sorbate", "metadata": {"url": "http://nutritionfacts.org/topics/potassium-sorbate/"}}
{"_id": "PLAIN-1915", "text": "potato chips", "metadata": {"url": "http://nutritionfacts.org/topics/potato-chips/"}}
{"_id": "PLAIN-1916", "text": "potatoes", "metadata": {"url": "http://nutritionfacts.org/topics/potatoes/"}}
{"_id": "PLAIN-1917", "text": "poultry", "metadata": {"url": "http://nutritionfacts.org/topics/poultry/"}}
{"_id": "PLAIN-1920", "text": "prebiotics", "metadata": {"url": "http://nutritionfacts.org/topics/prebiotics/"}}
{"_id": "PLAIN-1921", "text": "Precose", "metadata": {"url": "http://nutritionfacts.org/topics/precose/"}}
{"_id": "PLAIN-1922", "text": "prediabetes", "metadata": {"url": "http://nutritionfacts.org/topics/prediabetes/"}}
{"_id": "PLAIN-1923", "text": "PREDIMED", "metadata": {"url": "http://nutritionfacts.org/topics/predimed/"}}
{"_id": "PLAIN-1924", "text": "pregnancy", "metadata": {"url": "http://nutritionfacts.org/topics/pregnancy/"}}
{"_id": "PLAIN-1925", "text": "prehistoric diets", "metadata": {"url": "http://nutritionfacts.org/topics/prehistoric-diets/"}}
{"_id": "PLAIN-1926", "text": "Premarin", "metadata": {"url": "http://nutritionfacts.org/topics/premarin/"}}
{"_id": "PLAIN-1927", "text": "premature puberty", "metadata": {"url": "http://nutritionfacts.org/topics/premature-puberty/"}}
{"_id": "PLAIN-1930", "text": "preservatives", "metadata": {"url": "http://nutritionfacts.org/topics/preservatives/"}}
{"_id": "PLAIN-1931", "text": "pressure cooking", "metadata": {"url": "http://nutritionfacts.org/topics/pressure-cooking/"}}
{"_id": "PLAIN-1932", "text": "pretzels", "metadata": {"url": "http://nutritionfacts.org/topics/pretzels/"}}
{"_id": "PLAIN-1933", "text": "prion disease", "metadata": {"url": "http://nutritionfacts.org/topics/prion-disease/"}}
{"_id": "PLAIN-1934", "text": "Pritikin", "metadata": {"url": "http://nutritionfacts.org/topics/pritikin/"}}
{"_id": "PLAIN-1935", "text": "probiotics", "metadata": {"url": "http://nutritionfacts.org/topics/probiotics/"}}
{"_id": "PLAIN-1937", "text": "processed foods", "metadata": {"url": "http://nutritionfacts.org/topics/processed-foods/"}}
{"_id": "PLAIN-1938", "text": "processed meat", "metadata": {"url": "http://nutritionfacts.org/topics/processed-meat/"}}
{"_id": "PLAIN-1941", "text": "propionate", "metadata": {"url": "http://nutritionfacts.org/topics/propionate/"}}
{"_id": "PLAIN-1942", "text": "Propulcid", "metadata": {"url": "http://nutritionfacts.org/topics/propulcid/"}}
{"_id": "PLAIN-1943", "text": "prostate cancer", "metadata": {"url": "http://nutritionfacts.org/topics/prostate-cancer/"}}
{"_id": "PLAIN-1944", "text": "prostate health", "metadata": {"url": "http://nutritionfacts.org/topics/prostate-health/"}}
{"_id": "PLAIN-1945", "text": "prostatectomy", "metadata": {"url": "http://nutritionfacts.org/topics/prostatectomy/"}}
{"_id": "PLAIN-1946", "text": "protein", "metadata": {"url": "http://nutritionfacts.org/topics/protein/"}}
{"_id": "PLAIN-1947", "text": "protein powder", "metadata": {"url": "http://nutritionfacts.org/topics/protein-powder/"}}
{"_id": "PLAIN-1948", "text": "Proteus mirabilis", "metadata": {"url": "http://nutritionfacts.org/topics/proteus-mirabilis/"}}
{"_id": "PLAIN-1951", "text": "PSA", "metadata": {"url": "http://nutritionfacts.org/topics/psa/"}}
{"_id": "PLAIN-1952", "text": "pseudomembranous colitis", "metadata": {"url": "http://nutritionfacts.org/topics/pseudomembranous-colitis/"}}
{"_id": "PLAIN-1954", "text": "psoriasis", "metadata": {"url": "http://nutritionfacts.org/topics/psoriasis/"}}
{"_id": "PLAIN-1955", "text": "psychosis", "metadata": {"url": "http://nutritionfacts.org/topics/psychosis/"}}
{"_id": "PLAIN-1956", "text": "psyllium", "metadata": {"url": "http://nutritionfacts.org/topics/psyllium/"}}
{"_id": "PLAIN-1957", "text": "PTH", "metadata": {"url": "http://nutritionfacts.org/topics/pth/"}}
{"_id": "PLAIN-1958", "text": "puberty", "metadata": {"url": "http://nutritionfacts.org/topics/puberty/"}}
{"_id": "PLAIN-1960", "text": "puffer fish", "metadata": {"url": "http://nutritionfacts.org/topics/puffer-fish/"}}
{"_id": "PLAIN-1963", "text": "pumpkin seeds", "metadata": {"url": "http://nutritionfacts.org/topics/pumpkin-seeds/"}}
{"_id": "PLAIN-1964", "text": "Purevia", "metadata": {"url": "http://nutritionfacts.org/topics/purevia/"}}
{"_id": "PLAIN-1965", "text": "purines", "metadata": {"url": "http://nutritionfacts.org/topics/purines/"}}
{"_id": "PLAIN-1966", "text": "purple potatoes", "metadata": {"url": "http://nutritionfacts.org/topics/purple-potatoes/"}}
{"_id": "PLAIN-1967", "text": "purslane", "metadata": {"url": "http://nutritionfacts.org/topics/purslane/"}}
{"_id": "PLAIN-1968", "text": "pus", "metadata": {"url": "http://nutritionfacts.org/topics/pus/"}}
{"_id": "PLAIN-1969", "text": "putrescine", "metadata": {"url": "http://nutritionfacts.org/topics/putrescine/"}}
{"_id": "PLAIN-1970", "text": "QALY", "metadata": {"url": "http://nutritionfacts.org/topics/qaly/"}}
{"_id": "PLAIN-1973", "text": "quinoa", "metadata": {"url": "http://nutritionfacts.org/topics/quinoa/"}}
{"_id": "PLAIN-1974", "text": "Quorn", "metadata": {"url": "http://nutritionfacts.org/topics/quorn/"}}
{"_id": "PLAIN-1975", "text": "rabbit meat", "metadata": {"url": "http://nutritionfacts.org/topics/rabbit-meat/"}}
{"_id": "PLAIN-1976", "text": "rabies", "metadata": {"url": "http://nutritionfacts.org/topics/rabies/"}}
{"_id": "PLAIN-1977", "text": "ractopamine", "metadata": {"url": "http://nutritionfacts.org/topics/ractopamine/"}}
{"_id": "PLAIN-1978", "text": "radiation", "metadata": {"url": "http://nutritionfacts.org/topics/radiation/"}}
{"_id": "PLAIN-1980", "text": "radishes", "metadata": {"url": "http://nutritionfacts.org/topics/radishes/"}}
{"_id": "PLAIN-1981", "text": "raisins", "metadata": {"url": "http://nutritionfacts.org/topics/raisins/"}}
{"_id": "PLAIN-1984", "text": "rash", "metadata": {"url": "http://nutritionfacts.org/topics/rash/"}}
{"_id": "PLAIN-1985", "text": "raspberries", "metadata": {"url": "http://nutritionfacts.org/topics/raspberries/"}}
{"_id": "PLAIN-1986", "text": "raw food", "metadata": {"url": "http://nutritionfacts.org/topics/raw-food/"}}
{"_id": "PLAIN-1987", "text": "Ray Cronice", "metadata": {"url": "http://nutritionfacts.org/topics/ray-cronice/"}}
{"_id": "PLAIN-1988", "text": "recipes", "metadata": {"url": "http://nutritionfacts.org/topics/recipes/"}}
{"_id": "PLAIN-1989", "text": "rectal cancer", "metadata": {"url": "http://nutritionfacts.org/topics/rectal-cancer/"}}
{"_id": "PLAIN-1992", "text": "red dye #3", "metadata": {"url": "http://nutritionfacts.org/topics/red-dye-3/"}}
{"_id": "PLAIN-1993", "text": "red meat", "metadata": {"url": "http://nutritionfacts.org/topics/red-meat/"}}
{"_id": "PLAIN-1996", "text": "red wine", "metadata": {"url": "http://nutritionfacts.org/topics/red-wine/"}}
{"_id": "PLAIN-1997", "text": "red yeast rice", "metadata": {"url": "http://nutritionfacts.org/topics/red-yeast-rice/"}}
{"_id": "PLAIN-2000", "text": "reindeer meat", "metadata": {"url": "http://nutritionfacts.org/topics/reindeer-meat/"}}
{"_id": "PLAIN-2002", "text": "reproductive health", "metadata": {"url": "http://nutritionfacts.org/topics/reproductive-health/"}}
{"_id": "PLAIN-2003", "text": "respiratory infections", "metadata": {"url": "http://nutritionfacts.org/topics/respiratory-infections/"}}
{"_id": "PLAIN-2004", "text": "restaurants", "metadata": {"url": "http://nutritionfacts.org/topics/restaurants/"}}
{"_id": "PLAIN-2005", "text": "resveratrol", "metadata": {"url": "http://nutritionfacts.org/topics/resveratrol/"}}
{"_id": "PLAIN-2006", "text": "reticuloendotheliosis virus", "metadata": {"url": "http://nutritionfacts.org/topics/reticuloendotheliosis-virus/"}}
{"_id": "PLAIN-2010", "text": "rheumatoid arthritis", "metadata": {"url": "http://nutritionfacts.org/topics/rheumatoid-arthritis/"}}
{"_id": "PLAIN-2011", "text": "rhubarb", "metadata": {"url": "http://nutritionfacts.org/topics/rhubarb/"}}
{"_id": "PLAIN-2012", "text": "riboflavin", "metadata": {"url": "http://nutritionfacts.org/topics/riboflavin/"}}
{"_id": "PLAIN-2013", "text": "rice", "metadata": {"url": "http://nutritionfacts.org/topics/rice/"}}
{"_id": "PLAIN-2014", "text": "rice bran", "metadata": {"url": "http://nutritionfacts.org/topics/rice-bran/"}}
{"_id": "PLAIN-2015", "text": "rice bran oil", "metadata": {"url": "http://nutritionfacts.org/topics/rice-bran-oil/"}}
{"_id": "PLAIN-2016", "text": "Rice Diet", "metadata": {"url": "http://nutritionfacts.org/topics/rice-diet/"}}
{"_id": "PLAIN-2017", "text": "rice milk", "metadata": {"url": "http://nutritionfacts.org/topics/rice-milk/"}}
{"_id": "PLAIN-2020", "text": "Ritalin", "metadata": {"url": "http://nutritionfacts.org/topics/ritalin/"}}
{"_id": "PLAIN-2021", "text": "roasting", "metadata": {"url": "http://nutritionfacts.org/topics/roasting/"}}
{"_id": "PLAIN-2022", "text": "rooibos", "metadata": {"url": "http://nutritionfacts.org/topics/rooibos/"}}
{"_id": "PLAIN-2023", "text": "rooibos tea", "metadata": {"url": "http://nutritionfacts.org/topics/rooibos-tea/"}}
{"_id": "PLAIN-2024", "text": "rose hips", "metadata": {"url": "http://nutritionfacts.org/topics/rose-hips/"}}
{"_id": "PLAIN-2025", "text": "rosemary", "metadata": {"url": "http://nutritionfacts.org/topics/rosemary/"}}
{"_id": "PLAIN-2026", "text": "rosmarinic acid", "metadata": {"url": "http://nutritionfacts.org/topics/rosmarinic-acid/"}}
{"_id": "PLAIN-2027", "text": "Roundup", "metadata": {"url": "http://nutritionfacts.org/topics/roundup/"}}
{"_id": "PLAIN-2031", "text": "rye", "metadata": {"url": "http://nutritionfacts.org/topics/rye/"}}
{"_id": "PLAIN-2032", "text": "saccharin", "metadata": {"url": "http://nutritionfacts.org/topics/saccharin/"}}
{"_id": "PLAIN-2033", "text": "safety limits", "metadata": {"url": "http://nutritionfacts.org/topics/safety-limits/"}}
{"_id": "PLAIN-2034", "text": "safflower oil", "metadata": {"url": "http://nutritionfacts.org/topics/safflower-oil/"}}
{"_id": "PLAIN-2035", "text": "saffron", "metadata": {"url": "http://nutritionfacts.org/topics/saffron/"}}
{"_id": "PLAIN-2036", "text": "salads", "metadata": {"url": "http://nutritionfacts.org/topics/salads/"}}
{"_id": "PLAIN-2037", "text": "salami", "metadata": {"url": "http://nutritionfacts.org/topics/salami/"}}
{"_id": "PLAIN-2038", "text": "salami brusher's disease", "metadata": {"url": "http://nutritionfacts.org/topics/salami-brushers-disease/"}}
{"_id": "PLAIN-2041", "text": "Salmonella", "metadata": {"url": "http://nutritionfacts.org/topics/salmonella/"}}
{"_id": "PLAIN-2042", "text": "salsa", "metadata": {"url": "http://nutritionfacts.org/topics/salsa/"}}
{"_id": "PLAIN-2043", "text": "salt", "metadata": {"url": "http://nutritionfacts.org/topics/salt/"}}
{"_id": "PLAIN-2044", "text": "Salt Institute", "metadata": {"url": "http://nutritionfacts.org/topics/salt-institute/"}}
{"_id": "PLAIN-2045", "text": "sandwiches", "metadata": {"url": "http://nutritionfacts.org/topics/sandwiches/"}}
{"_id": "PLAIN-2046", "text": "saoot", "metadata": {"url": "http://nutritionfacts.org/topics/saoot/"}}
{"_id": "PLAIN-2048", "text": "sarcocystis", "metadata": {"url": "http://nutritionfacts.org/topics/sarcocystis/"}}
{"_id": "PLAIN-2049", "text": "sardines", "metadata": {"url": "http://nutritionfacts.org/topics/sardines/"}}
{"_id": "PLAIN-2052", "text": "sauerkraut", "metadata": {"url": "http://nutritionfacts.org/topics/sauerkraut/"}}
{"_id": "PLAIN-2053", "text": "sausage", "metadata": {"url": "http://nutritionfacts.org/topics/sausage/"}}
{"_id": "PLAIN-2054", "text": "scallions", "metadata": {"url": "http://nutritionfacts.org/topics/scallions/"}}
{"_id": "PLAIN-2055", "text": "schizophrenia", "metadata": {"url": "http://nutritionfacts.org/topics/schizophrenia/"}}
{"_id": "PLAIN-2056", "text": "School Lunch Program", "metadata": {"url": "http://nutritionfacts.org/topics/school-lunch-program/"}}
{"_id": "PLAIN-2057", "text": "sciatica", "metadata": {"url": "http://nutritionfacts.org/topics/sciatica/"}}
{"_id": "PLAIN-2058", "text": "scombroid poisoning", "metadata": {"url": "http://nutritionfacts.org/topics/scombroid-poisoning/"}}
{"_id": "PLAIN-2059", "text": "scurvy", "metadata": {"url": "http://nutritionfacts.org/topics/scurvy/"}}
{"_id": "PLAIN-2062", "text": "seafood workers", "metadata": {"url": "http://nutritionfacts.org/topics/seafood-workers/"}}
{"_id": "PLAIN-2063", "text": "seal oil", "metadata": {"url": "http://nutritionfacts.org/topics/seal-oil/"}}
{"_id": "PLAIN-2064", "text": "second meal effect", "metadata": {"url": "http://nutritionfacts.org/topics/second-meal-effect/"}}
{"_id": "PLAIN-2065", "text": "seeds", "metadata": {"url": "http://nutritionfacts.org/topics/seeds/"}}
{"_id": "PLAIN-2066", "text": "seitan", "metadata": {"url": "http://nutritionfacts.org/topics/seitan/"}}
{"_id": "PLAIN-2067", "text": "seizures", "metadata": {"url": "http://nutritionfacts.org/topics/seizures/"}}
{"_id": "PLAIN-2068", "text": "selenium", "metadata": {"url": "http://nutritionfacts.org/topics/selenium/"}}
{"_id": "PLAIN-2069", "text": "semen", "metadata": {"url": "http://nutritionfacts.org/topics/semen/"}}
{"_id": "PLAIN-2072", "text": "sesame oil", "metadata": {"url": "http://nutritionfacts.org/topics/sesame-oil/"}}
{"_id": "PLAIN-2073", "text": "sesame seeds", "metadata": {"url": "http://nutritionfacts.org/topics/sesame-seeds/"}}
{"_id": "PLAIN-2074", "text": "sexual dysfunction", "metadata": {"url": "http://nutritionfacts.org/topics/sexual-dysfunction/"}}
{"_id": "PLAIN-2075", "text": "sexual health", "metadata": {"url": "http://nutritionfacts.org/topics/sexual-health/"}}
{"_id": "PLAIN-2076", "text": "sexual selection", "metadata": {"url": "http://nutritionfacts.org/topics/sexual-selection/"}}
{"_id": "PLAIN-2077", "text": "sexual transmission", "metadata": {"url": "http://nutritionfacts.org/topics/sexual-transmission/"}}
{"_id": "PLAIN-2078", "text": "shark cartilage", "metadata": {"url": "http://nutritionfacts.org/topics/shark-cartilage/"}}
{"_id": "PLAIN-2079", "text": "shark oil", "metadata": {"url": "http://nutritionfacts.org/topics/shark-oil/"}}
{"_id": "PLAIN-2082", "text": "shiitake mushrooms", "metadata": {"url": "http://nutritionfacts.org/topics/shiitake-mushrooms/"}}
{"_id": "PLAIN-2084", "text": "shopping carts", "metadata": {"url": "http://nutritionfacts.org/topics/shopping-carts/"}}
{"_id": "PLAIN-2085", "text": "shortening", "metadata": {"url": "http://nutritionfacts.org/topics/shortening/"}}
{"_id": "PLAIN-2086", "text": "shrimp", "metadata": {"url": "http://nutritionfacts.org/topics/shrimp/"}}
{"_id": "PLAIN-2087", "text": "side effects", "metadata": {"url": "http://nutritionfacts.org/topics/side-effects/"}}
{"_id": "PLAIN-2088", "text": "SIDS", "metadata": {"url": "http://nutritionfacts.org/topics/sids/"}}
{"_id": "PLAIN-2089", "text": "Singapore", "metadata": {"url": "http://nutritionfacts.org/topics/singapore/"}}
{"_id": "PLAIN-2090", "text": "sinus health", "metadata": {"url": "http://nutritionfacts.org/topics/sinus-health/"}}
{"_id": "PLAIN-2093", "text": "skim milk", "metadata": {"url": "http://nutritionfacts.org/topics/skim-milk/"}}
{"_id": "PLAIN-2094", "text": "skin cancer", "metadata": {"url": "http://nutritionfacts.org/topics/skin-cancer/"}}
{"_id": "PLAIN-2095", "text": "skin health", "metadata": {"url": "http://nutritionfacts.org/topics/skin-health/"}}
{"_id": "PLAIN-2096", "text": "sleep", "metadata": {"url": "http://nutritionfacts.org/topics/sleep/"}}
{"_id": "PLAIN-2097", "text": "sleeping pills", "metadata": {"url": "http://nutritionfacts.org/topics/sleeping-pills/"}}
{"_id": "PLAIN-2098", "text": "Slovakia", "metadata": {"url": "http://nutritionfacts.org/topics/slovakia/"}}
{"_id": "PLAIN-2099", "text": "Slovenia", "metadata": {"url": "http://nutritionfacts.org/topics/slovenia/"}}
{"_id": "PLAIN-2100", "text": "Smithfield", "metadata": {"url": "http://nutritionfacts.org/topics/smithfield/"}}
{"_id": "PLAIN-2103", "text": "smoothies", "metadata": {"url": "http://nutritionfacts.org/topics/smoothies/"}}
{"_id": "PLAIN-2105", "text": "snail meat", "metadata": {"url": "http://nutritionfacts.org/topics/snail-meat/"}}
{"_id": "PLAIN-2106", "text": "snake oil", "metadata": {"url": "http://nutritionfacts.org/topics/snake-oil/"}}
{"_id": "PLAIN-2107", "text": "snake venom", "metadata": {"url": "http://nutritionfacts.org/topics/snake-venom/"}}
{"_id": "PLAIN-2108", "text": "social anxiety disorder", "metadata": {"url": "http://nutritionfacts.org/topics/social-anxiety-disorder/"}}
{"_id": "PLAIN-2109", "text": "soda", "metadata": {"url": "http://nutritionfacts.org/topics/soda/"}}
{"_id": "PLAIN-2110", "text": "sodium", "metadata": {"url": "http://nutritionfacts.org/topics/sodium/"}}
{"_id": "PLAIN-2111", "text": "sodium benzoate", "metadata": {"url": "http://nutritionfacts.org/topics/sodium-benzoate/"}}
{"_id": "PLAIN-2114", "text": "sorbitol", "metadata": {"url": "http://nutritionfacts.org/topics/sorbitol/"}}
{"_id": "PLAIN-2115", "text": "sore throat", "metadata": {"url": "http://nutritionfacts.org/topics/sore-throat/"}}
{"_id": "PLAIN-2116", "text": "soup", "metadata": {"url": "http://nutritionfacts.org/topics/soup/"}}
{"_id": "PLAIN-2117", "text": "South Africa", "metadata": {"url": "http://nutritionfacts.org/topics/south-africa/"}}
{"_id": "PLAIN-2119", "text": "soy", "metadata": {"url": "http://nutritionfacts.org/topics/soy/"}}
{"_id": "PLAIN-2120", "text": "soy milk", "metadata": {"url": "http://nutritionfacts.org/topics/soymilk/"}}
{"_id": "PLAIN-2121", "text": "soy sauce", "metadata": {"url": "http://nutritionfacts.org/topics/soy-sauce/"}}
{"_id": "PLAIN-2122", "text": "soybeans", "metadata": {"url": "http://nutritionfacts.org/topics/soybeans/"}}
{"_id": "PLAIN-2125", "text": "speech impairment", "metadata": {"url": "http://nutritionfacts.org/topics/speech-impairment/"}}
{"_id": "PLAIN-2126", "text": "sperm counts", "metadata": {"url": "http://nutritionfacts.org/topics/sperm-counts/"}}
{"_id": "PLAIN-2127", "text": "spermine", "metadata": {"url": "http://nutritionfacts.org/topics/spermine/"}}
{"_id": "PLAIN-2128", "text": "spices", "metadata": {"url": "http://nutritionfacts.org/topics/spices/"}}
{"_id": "PLAIN-2129", "text": "spicy food", "metadata": {"url": "http://nutritionfacts.org/topics/spicy-food/"}}
{"_id": "PLAIN-2130", "text": "spillover effect", "metadata": {"url": "http://nutritionfacts.org/topics/spillover-effect/"}}
{"_id": "PLAIN-2131", "text": "spinach", "metadata": {"url": "http://nutritionfacts.org/topics/spinach/"}}
{"_id": "PLAIN-2132", "text": "spinal cord health", "metadata": {"url": "http://nutritionfacts.org/topics/spinal-cord-health/"}}
{"_id": "PLAIN-2135", "text": "split peas", "metadata": {"url": "http://nutritionfacts.org/topics/split-peas/"}}
{"_id": "PLAIN-2136", "text": "spoilage", "metadata": {"url": "http://nutritionfacts.org/topics/spoilage/"}}
{"_id": "PLAIN-2137", "text": "sports drinks", "metadata": {"url": "http://nutritionfacts.org/topics/sports-drinks/"}}
{"_id": "PLAIN-2138", "text": "sports medicine", "metadata": {"url": "http://nutritionfacts.org/topics/sports-medicine/"}}
{"_id": "PLAIN-2139", "text": "sprouting", "metadata": {"url": "http://nutritionfacts.org/topics/sprouting/"}}
{"_id": "PLAIN-2140", "text": "sprouts", "metadata": {"url": "http://nutritionfacts.org/topics/sprouts/"}}
{"_id": "PLAIN-2141", "text": "squash", "metadata": {"url": "http://nutritionfacts.org/topics/squash/"}}
{"_id": "PLAIN-2142", "text": "squash seeds", "metadata": {"url": "http://nutritionfacts.org/topics/squash-seeds/"}}
{"_id": "PLAIN-2146", "text": "standard American diet", "metadata": {"url": "http://nutritionfacts.org/topics/standard-american-diet/"}}
{"_id": "PLAIN-2147", "text": "staph infection", "metadata": {"url": "http://nutritionfacts.org/topics/staph-infection/"}}
{"_id": "PLAIN-2148", "text": "STARI", "metadata": {"url": "http://nutritionfacts.org/topics/stari/"}}
{"_id": "PLAIN-2149", "text": "statins", "metadata": {"url": "http://nutritionfacts.org/topics/statins/"}}
{"_id": "PLAIN-2151", "text": "steak", "metadata": {"url": "http://nutritionfacts.org/topics/steak/"}}
{"_id": "PLAIN-2152", "text": "steaming", "metadata": {"url": "http://nutritionfacts.org/topics/steaming/"}}
{"_id": "PLAIN-2153", "text": "stearic acid", "metadata": {"url": "http://nutritionfacts.org/topics/stearic-acid/"}}
{"_id": "PLAIN-2154", "text": "stem cells", "metadata": {"url": "http://nutritionfacts.org/topics/stem-cells/"}}
{"_id": "PLAIN-2158", "text": "stomach cancer", "metadata": {"url": "http://nutritionfacts.org/topics/stomach-cancer/"}}
{"_id": "PLAIN-2159", "text": "stomach health", "metadata": {"url": "http://nutritionfacts.org/topics/stomach-health/"}}
{"_id": "PLAIN-2160", "text": "stomach inflammation", "metadata": {"url": "http://nutritionfacts.org/topics/stomach-inflammation/"}}
{"_id": "PLAIN-2161", "text": "stomach ulcers", "metadata": {"url": "http://nutritionfacts.org/topics/stomach-ulcers/"}}
{"_id": "PLAIN-2162", "text": "stool size", "metadata": {"url": "http://nutritionfacts.org/topics/stool-size/"}}
{"_id": "PLAIN-2163", "text": "strawberries", "metadata": {"url": "http://nutritionfacts.org/topics/strawberries/"}}
{"_id": "PLAIN-2164", "text": "stress", "metadata": {"url": "http://nutritionfacts.org/topics/stress/"}}
{"_id": "PLAIN-2165", "text": "stress test", "metadata": {"url": "http://nutritionfacts.org/topics/stress-test/"}}
{"_id": "PLAIN-2168", "text": "substance P", "metadata": {"url": "http://nutritionfacts.org/topics/substance-p/"}}
{"_id": "PLAIN-2169", "text": "sucralose", "metadata": {"url": "http://nutritionfacts.org/topics/sucralose/"}}
{"_id": "PLAIN-2170", "text": "sudden cardiac death", "metadata": {"url": "http://nutritionfacts.org/topics/sudden-cardiac-death/"}}
{"_id": "PLAIN-2171", "text": "sugar", "metadata": {"url": "http://nutritionfacts.org/topics/sugar/"}}
{"_id": "PLAIN-2172", "text": "Sugar Association", "metadata": {"url": "http://nutritionfacts.org/topics/sugar-association/"}}
{"_id": "PLAIN-2173", "text": "Sugar Twin", "metadata": {"url": "http://nutritionfacts.org/topics/sugar-twin/"}}
{"_id": "PLAIN-2174", "text": "suicide", "metadata": {"url": "http://nutritionfacts.org/topics/suicide/"}}
{"_id": "PLAIN-2175", "text": "sulfites", "metadata": {"url": "http://nutritionfacts.org/topics/sulfites/"}}
{"_id": "PLAIN-2178", "text": "sulfur dioxide", "metadata": {"url": "http://nutritionfacts.org/topics/sulfur-dioxide/"}}
{"_id": "PLAIN-2179", "text": "sunburn", "metadata": {"url": "http://nutritionfacts.org/topics/sunburn/"}}
{"_id": "PLAIN-2180", "text": "sunchokes", "metadata": {"url": "http://nutritionfacts.org/topics/sunchokes/"}}
{"_id": "PLAIN-2181", "text": "sunflower seeds", "metadata": {"url": "http://nutritionfacts.org/topics/sunflower-seeds/"}}
{"_id": "PLAIN-2182", "text": "sunlight", "metadata": {"url": "http://nutritionfacts.org/topics/sunlight/"}}
{"_id": "PLAIN-2183", "text": "superbugs", "metadata": {"url": "http://nutritionfacts.org/topics/superbugs/"}}
{"_id": "PLAIN-2184", "text": "supermarkets", "metadata": {"url": "http://nutritionfacts.org/topics/supermarkets/"}}
{"_id": "PLAIN-2185", "text": "superoxide dismutase", "metadata": {"url": "http://nutritionfacts.org/topics/superoxide-dismutase/"}}
{"_id": "PLAIN-2188", "text": "Supreme Court", "metadata": {"url": "http://nutritionfacts.org/topics/supreme-court/"}}
{"_id": "PLAIN-2189", "text": "Surgeon General", "metadata": {"url": "http://nutritionfacts.org/topics/surgeon-general/"}}
{"_id": "PLAIN-2190", "text": "surgery", "metadata": {"url": "http://nutritionfacts.org/topics/surgery/"}}
{"_id": "PLAIN-2191", "text": "sushi", "metadata": {"url": "http://nutritionfacts.org/topics/sushi/"}}
{"_id": "PLAIN-2192", "text": "sustainability", "metadata": {"url": "http://nutritionfacts.org/topics/sustainability/"}}
{"_id": "PLAIN-2193", "text": "Sweden", "metadata": {"url": "http://nutritionfacts.org/topics/sweden/"}}
{"_id": "PLAIN-2194", "text": "Sweet and Low", "metadata": {"url": "http://nutritionfacts.org/topics/sweet-and-low/"}}
{"_id": "PLAIN-2195", "text": "Sweet One", "metadata": {"url": "http://nutritionfacts.org/topics/sweet-one/"}}
{"_id": "PLAIN-2198", "text": "Swiss chard", "metadata": {"url": "http://nutritionfacts.org/topics/swiss-chard/"}}
{"_id": "PLAIN-2199", "text": "swordfish", "metadata": {"url": "http://nutritionfacts.org/topics/swordfish/"}}
{"_id": "PLAIN-2202", "text": "tahini", "metadata": {"url": "http://nutritionfacts.org/topics/tahini/"}}
{"_id": "PLAIN-2203", "text": "Taiwan", "metadata": {"url": "http://nutritionfacts.org/topics/taiwan/"}}
{"_id": "PLAIN-2204", "text": "tamoxifen", "metadata": {"url": "http://nutritionfacts.org/topics/tamoxifen/"}}
{"_id": "PLAIN-2205", "text": "tamsulosin", "metadata": {"url": "http://nutritionfacts.org/topics/tamsulosin/"}}
{"_id": "PLAIN-2206", "text": "tangeretin", "metadata": {"url": "http://nutritionfacts.org/topics/tangeretin/"}}
{"_id": "PLAIN-2207", "text": "tanning beds", "metadata": {"url": "http://nutritionfacts.org/topics/tanning-beds/"}}
{"_id": "PLAIN-2210", "text": "tarragon", "metadata": {"url": "http://nutritionfacts.org/topics/tarragon/"}}
{"_id": "PLAIN-2211", "text": "tart cherries", "metadata": {"url": "http://nutritionfacts.org/topics/tart-cherries/"}}
{"_id": "PLAIN-2212", "text": "taste buds", "metadata": {"url": "http://nutritionfacts.org/topics/taste-buds/"}}
{"_id": "PLAIN-2214", "text": "Taxol", "metadata": {"url": "http://nutritionfacts.org/topics/taxol/"}}
{"_id": "PLAIN-2215", "text": "tea", "metadata": {"url": "http://nutritionfacts.org/topics/tea/"}}
{"_id": "PLAIN-2216", "text": "teff", "metadata": {"url": "http://nutritionfacts.org/topics/teff/"}}
{"_id": "PLAIN-2217", "text": "television", "metadata": {"url": "http://nutritionfacts.org/topics/television/"}}
{"_id": "PLAIN-2218", "text": "telomerase", "metadata": {"url": "http://nutritionfacts.org/topics/telomerase/"}}
{"_id": "PLAIN-2221", "text": "testicular cancer", "metadata": {"url": "http://nutritionfacts.org/topics/testicular-cancer/"}}
{"_id": "PLAIN-2222", "text": "testicular health", "metadata": {"url": "http://nutritionfacts.org/topics/testicular-health/"}}
{"_id": "PLAIN-2223", "text": "testosterone", "metadata": {"url": "http://nutritionfacts.org/topics/testosterone/"}}
{"_id": "PLAIN-2224", "text": "tetrodotoxin", "metadata": {"url": "http://nutritionfacts.org/topics/tetrodotoxin/"}}
{"_id": "PLAIN-2225", "text": "Texas", "metadata": {"url": "http://nutritionfacts.org/topics/texas/"}}
{"_id": "PLAIN-2226", "text": "TGI Friday's", "metadata": {"url": "http://nutritionfacts.org/topics/tgi-fridays/"}}
{"_id": "PLAIN-2227", "text": "thalidomide", "metadata": {"url": "http://nutritionfacts.org/topics/thalidomide/"}}
{"_id": "PLAIN-2228", "text": "theanine", "metadata": {"url": "http://nutritionfacts.org/topics/theanine/"}}
{"_id": "PLAIN-2231", "text": "thimerosal", "metadata": {"url": "http://nutritionfacts.org/topics/thimerosal/"}}
{"_id": "PLAIN-2232", "text": "throat cancer", "metadata": {"url": "http://nutritionfacts.org/topics/throat-cancer/"}}
{"_id": "PLAIN-2233", "text": "throat health", "metadata": {"url": "http://nutritionfacts.org/topics/throat-health/"}}
{"_id": "PLAIN-2234", "text": "thyme", "metadata": {"url": "http://nutritionfacts.org/topics/thyme/"}}
{"_id": "PLAIN-2235", "text": "thymus", "metadata": {"url": "http://nutritionfacts.org/topics/thymus/"}}
{"_id": "PLAIN-2236", "text": "thyroid cancer", "metadata": {"url": "http://nutritionfacts.org/topics/thyroid-cancer/"}}
{"_id": "PLAIN-2237", "text": "thyroid disease", "metadata": {"url": "http://nutritionfacts.org/topics/thyroid-disease/"}}
{"_id": "PLAIN-2238", "text": "thyroid health", "metadata": {"url": "http://nutritionfacts.org/topics/thyroid-health/"}}
{"_id": "PLAIN-2241", "text": "TMAO", "metadata": {"url": "http://nutritionfacts.org/topics/tmao/"}}
{"_id": "PLAIN-2242", "text": "tobacco", "metadata": {"url": "http://nutritionfacts.org/topics/tobacco/"}}
{"_id": "PLAIN-2243", "text": "tofu", "metadata": {"url": "http://nutritionfacts.org/topics/tofu/"}}
{"_id": "PLAIN-2244", "text": "Tomato Effect", "metadata": {"url": "http://nutritionfacts.org/topics/tomato-effect/"}}
{"_id": "PLAIN-2245", "text": "tomato juice", "metadata": {"url": "http://nutritionfacts.org/topics/tomato-juice/"}}
{"_id": "PLAIN-2246", "text": "tomato sauce", "metadata": {"url": "http://nutritionfacts.org/topics/tomato-sauce/"}}
{"_id": "PLAIN-2247", "text": "tomatoes", "metadata": {"url": "http://nutritionfacts.org/topics/tomatoes/"}}
{"_id": "PLAIN-2248", "text": "Tonga", "metadata": {"url": "http://nutritionfacts.org/topics/tonga/"}}
{"_id": "PLAIN-2251", "text": "tonsil cancer", "metadata": {"url": "http://nutritionfacts.org/topics/tonsil-cancer/"}}
{"_id": "PLAIN-2252", "text": "TOR", "metadata": {"url": "http://nutritionfacts.org/topics/tor/"}}
{"_id": "PLAIN-2253", "text": "torcetrapib", "metadata": {"url": "http://nutritionfacts.org/topics/torcetrapib/"}}
{"_id": "PLAIN-2254", "text": "Toxaphene", "metadata": {"url": "http://nutritionfacts.org/topics/toxaphene/"}}
{"_id": "PLAIN-2255", "text": "toxic megacolon", "metadata": {"url": "http://nutritionfacts.org/topics/toxic-megacolon/"}}
{"_id": "PLAIN-2256", "text": "toxoplasma", "metadata": {"url": "http://nutritionfacts.org/topics/toxoplasma/"}}
{"_id": "PLAIN-2258", "text": "traffic", "metadata": {"url": "http://nutritionfacts.org/topics/traffic/"}}
{"_id": "PLAIN-2259", "text": "trail mix", "metadata": {"url": "http://nutritionfacts.org/topics/trail-mix/"}}
{"_id": "PLAIN-2262", "text": "transglutaminase", "metadata": {"url": "http://nutritionfacts.org/topics/transglutaminase/"}}
{"_id": "PLAIN-2263", "text": "treadmill", "metadata": {"url": "http://nutritionfacts.org/topics/treadmill/"}}
{"_id": "PLAIN-2264", "text": "tremors", "metadata": {"url": "http://nutritionfacts.org/topics/tremors/"}}
{"_id": "PLAIN-2265", "text": "triglycerides", "metadata": {"url": "http://nutritionfacts.org/topics/triglycerides/"}}
{"_id": "PLAIN-2266", "text": "trigylcerides", "metadata": {"url": "http://nutritionfacts.org/topics/trigylcerides/"}}
{"_id": "PLAIN-2267", "text": "trimethylamine", "metadata": {"url": "http://nutritionfacts.org/topics/trimethylamine/"}}
{"_id": "PLAIN-2268", "text": "triphala", "metadata": {"url": "http://nutritionfacts.org/topics/triphala/"}}
{"_id": "PLAIN-2269", "text": "Truvia", "metadata": {"url": "http://nutritionfacts.org/topics/truvia/"}}
{"_id": "PLAIN-2272", "text": "tulsi tea", "metadata": {"url": "http://nutritionfacts.org/topics/tulsi-tea/"}}
{"_id": "PLAIN-2273", "text": "Tumor necrosis factor", "metadata": {"url": "http://nutritionfacts.org/topics/tumor-necrosis-factor/"}}
{"_id": "PLAIN-2274", "text": "tumor suppressor genes", "metadata": {"url": "http://nutritionfacts.org/topics/tumor-suppressor-genes/"}}
{"_id": "PLAIN-2275", "text": "Tums", "metadata": {"url": "http://nutritionfacts.org/topics/tums/"}}
{"_id": "PLAIN-2276", "text": "tuna", "metadata": {"url": "http://nutritionfacts.org/topics/tuna/"}}
{"_id": "PLAIN-2277", "text": "Tuna Council", "metadata": {"url": "http://nutritionfacts.org/topics/tuna-council/"}}
{"_id": "PLAIN-2278", "text": "turbinado sugar", "metadata": {"url": "http://nutritionfacts.org/topics/turbinado-sugar/"}}
{"_id": "PLAIN-2279", "text": "turkey", "metadata": {"url": "http://nutritionfacts.org/topics/turkey/"}}
{"_id": "PLAIN-2282", "text": "TVP", "metadata": {"url": "http://nutritionfacts.org/topics/tvp/"}}
{"_id": "PLAIN-2283", "text": "twin studies", "metadata": {"url": "http://nutritionfacts.org/topics/twin-studies/"}}
{"_id": "PLAIN-2284", "text": "Twinkies", "metadata": {"url": "http://nutritionfacts.org/topics/twinkies/"}}
{"_id": "PLAIN-2285", "text": "twins", "metadata": {"url": "http://nutritionfacts.org/topics/twins/"}}
{"_id": "PLAIN-2286", "text": "Tylenol", "metadata": {"url": "http://nutritionfacts.org/topics/tylenol/"}}
{"_id": "PLAIN-2287", "text": "U.S. Department of Defense", "metadata": {"url": "http://nutritionfacts.org/topics/u-s-department-of-defense/"}}
{"_id": "PLAIN-2288", "text": "U.S. Dry Bean Council", "metadata": {"url": "http://nutritionfacts.org/topics/u-s-dry-bean-council/"}}
{"_id": "PLAIN-2289", "text": "Uganda", "metadata": {"url": "http://nutritionfacts.org/topics/uganda/"}}
{"_id": "PLAIN-2292", "text": "underweight", "metadata": {"url": "http://nutritionfacts.org/topics/underweight/"}}
{"_id": "PLAIN-2293", "text": "Union of Concerned Scientists", "metadata": {"url": "http://nutritionfacts.org/topics/union-of-concerned-scientists/"}}
{"_id": "PLAIN-2294", "text": "United Kingdom", "metadata": {"url": "http://nutritionfacts.org/topics/united-kingdom/"}}
{"_id": "PLAIN-2295", "text": "uric acid", "metadata": {"url": "http://nutritionfacts.org/topics/uric-acid/"}}
{"_id": "PLAIN-2296", "text": "urinary tract infections", "metadata": {"url": "http://nutritionfacts.org/topics/urinary-tract-infections/"}}
{"_id": "PLAIN-2297", "text": "urticaria", "metadata": {"url": "http://nutritionfacts.org/topics/urticaria/"}}
{"_id": "PLAIN-2298", "text": "Uruguay", "metadata": {"url": "http://nutritionfacts.org/topics/uruguay/"}}
{"_id": "PLAIN-2299", "text": "USDA", "metadata": {"url": "http://nutritionfacts.org/topics/usda/"}}
{"_id": "PLAIN-2302", "text": "vaccinations", "metadata": {"url": "http://nutritionfacts.org/topics/vaccinations/"}}
{"_id": "PLAIN-2303", "text": "vaccines", "metadata": {"url": "http://nutritionfacts.org/topics/vaccines/"}}
{"_id": "PLAIN-2304", "text": "vaginal cancer", "metadata": {"url": "http://nutritionfacts.org/topics/vaginal-cancer/"}}
{"_id": "PLAIN-2305", "text": "vaginal discharge", "metadata": {"url": "http://nutritionfacts.org/topics/vaginal-discharge/"}}
{"_id": "PLAIN-2306", "text": "vaginal health", "metadata": {"url": "http://nutritionfacts.org/topics/vaginal-health/"}}
{"_id": "PLAIN-2307", "text": "vaginosis", "metadata": {"url": "http://nutritionfacts.org/topics/vaginosis/"}}
{"_id": "PLAIN-2308", "text": "Valium", "metadata": {"url": "http://nutritionfacts.org/topics/valium/"}}
{"_id": "PLAIN-2309", "text": "varicose veins", "metadata": {"url": "http://nutritionfacts.org/topics/varicose-veins/"}}
{"_id": "PLAIN-2312", "text": "veal brains", "metadata": {"url": "http://nutritionfacts.org/topics/veal-brains/"}}
{"_id": "PLAIN-2313", "text": "vegans", "metadata": {"url": "http://nutritionfacts.org/topics/vegans/"}}
{"_id": "PLAIN-2314", "text": "vegetable oil", "metadata": {"url": "http://nutritionfacts.org/topics/vegetable-oil/"}}
{"_id": "PLAIN-2315", "text": "vegetable protein", "metadata": {"url": "http://nutritionfacts.org/topics/vegetable-protein/"}}
{"_id": "PLAIN-2316", "text": "vegetables", "metadata": {"url": "http://nutritionfacts.org/topics/vegetables/"}}
{"_id": "PLAIN-2317", "text": "vegetarians", "metadata": {"url": "http://nutritionfacts.org/topics/vegetarians/"}}
{"_id": "PLAIN-2318", "text": "VEGF", "metadata": {"url": "http://nutritionfacts.org/topics/vegf/"}}
{"_id": "PLAIN-2319", "text": "veggie bacon", "metadata": {"url": "http://nutritionfacts.org/topics/veggie-bacon/"}}
{"_id": "PLAIN-2322", "text": "veggie dogs", "metadata": {"url": "http://nutritionfacts.org/topics/veggie-dogs/"}}
{"_id": "PLAIN-2323", "text": "Veggiecation", "metadata": {"url": "http://nutritionfacts.org/topics/veggiecation/"}}
{"_id": "PLAIN-2324", "text": "venison", "metadata": {"url": "http://nutritionfacts.org/topics/venison/"}}
{"_id": "PLAIN-2326", "text": "Vesanto Melina", "metadata": {"url": "http://nutritionfacts.org/topics/vesanto-melina/"}}
{"_id": "PLAIN-2327", "text": "Viagra", "metadata": {"url": "http://nutritionfacts.org/topics/viagra-2/"}}
{"_id": "PLAIN-2328", "text": "Vietnam", "metadata": {"url": "http://nutritionfacts.org/topics/vietnam/"}}
{"_id": "PLAIN-2329", "text": "vincristine", "metadata": {"url": "http://nutritionfacts.org/topics/vincristine/"}}
{"_id": "PLAIN-2330", "text": "vinegar", "metadata": {"url": "http://nutritionfacts.org/topics/vinegar/"}}
{"_id": "PLAIN-2333", "text": "Virginia Messina", "metadata": {"url": "http://nutritionfacts.org/topics/virginia-messina/"}}
{"_id": "PLAIN-2334", "text": "vision", "metadata": {"url": "http://nutritionfacts.org/topics/vision/"}}
{"_id": "PLAIN-2335", "text": "visual disturbance", "metadata": {"url": "http://nutritionfacts.org/topics/visual-disturbance/"}}
{"_id": "PLAIN-2336", "text": "vitamin A", "metadata": {"url": "http://nutritionfacts.org/topics/vitamin-a/"}}
{"_id": "PLAIN-2337", "text": "vitamin B1", "metadata": {"url": "http://nutritionfacts.org/topics/vitamin-b1/"}}
{"_id": "PLAIN-2338", "text": "vitamin B12", "metadata": {"url": "http://nutritionfacts.org/topics/vitamin-b12/"}}
{"_id": "PLAIN-2340", "text": "vitamin C", "metadata": {"url": "http://nutritionfacts.org/topics/vitamin-c/"}}
{"_id": "PLAIN-2341", "text": "vitamin D", "metadata": {"url": "http://nutritionfacts.org/topics/vitamin-d/"}}
{"_id": "PLAIN-2344", "text": "vitamins", "metadata": {"url": "http://nutritionfacts.org/topics/vitamins/"}}
{"_id": "PLAIN-2345", "text": "VLDL", "metadata": {"url": "http://nutritionfacts.org/topics/vldl/"}}
{"_id": "PLAIN-2346", "text": "voice box cancer", "metadata": {"url": "http://nutritionfacts.org/topics/voice-box-cancer/"}}
{"_id": "PLAIN-2347", "text": "voice box health", "metadata": {"url": "http://nutritionfacts.org/topics/voice-box-health/"}}
{"_id": "PLAIN-2349", "text": "vomiting", "metadata": {"url": "http://nutritionfacts.org/topics/vomiting/"}}
{"_id": "PLAIN-2350", "text": "vulva cancer", "metadata": {"url": "http://nutritionfacts.org/topics/vulva-cancer/"}}
{"_id": "PLAIN-2351", "text": "waist-to-height ratio", "metadata": {"url": "http://nutritionfacts.org/topics/waist-to-height-ratio/"}}
{"_id": "PLAIN-2352", "text": "wakame", "metadata": {"url": "http://nutritionfacts.org/topics/wakame/"}}
{"_id": "PLAIN-2355", "text": "walnuts", "metadata": {"url": "http://nutritionfacts.org/topics/walnuts/"}}
{"_id": "PLAIN-2356", "text": "wart viruses", "metadata": {"url": "http://nutritionfacts.org/topics/wart-viruses/"}}
{"_id": "PLAIN-2357", "text": "warts", "metadata": {"url": "http://nutritionfacts.org/topics/warts/"}}
{"_id": "PLAIN-2358", "text": "water", "metadata": {"url": "http://nutritionfacts.org/topics/water/"}}
{"_id": "PLAIN-2359", "text": "watercress", "metadata": {"url": "http://nutritionfacts.org/topics/watercress/"}}
{"_id": "PLAIN-2360", "text": "watermelon", "metadata": {"url": "http://nutritionfacts.org/topics/watermelon/"}}
{"_id": "PLAIN-2361", "text": "watermelon seeds", "metadata": {"url": "http://nutritionfacts.org/topics/watermelon-seeds/"}}
{"_id": "PLAIN-2362", "text": "weakness", "metadata": {"url": "http://nutritionfacts.org/topics/weakness/"}}
{"_id": "PLAIN-2365", "text": "weight loss", "metadata": {"url": "http://nutritionfacts.org/topics/weight-loss/"}}
{"_id": "PLAIN-2366", "text": "whale meat", "metadata": {"url": "http://nutritionfacts.org/topics/whale-meat/"}}
{"_id": "PLAIN-2367", "text": "wheat", "metadata": {"url": "http://nutritionfacts.org/topics/wheat/"}}
{"_id": "PLAIN-2368", "text": "whiff test", "metadata": {"url": "http://nutritionfacts.org/topics/whiff-test/"}}
{"_id": "PLAIN-2369", "text": "whipped cream", "metadata": {"url": "http://nutritionfacts.org/topics/whipped-cream/"}}
{"_id": "PLAIN-2370", "text": "white meat", "metadata": {"url": "http://nutritionfacts.org/topics/white-meat/"}}
{"_id": "PLAIN-2372", "text": "white tea", "metadata": {"url": "http://nutritionfacts.org/topics/white-tea/"}}
{"_id": "PLAIN-2373", "text": "white wine", "metadata": {"url": "http://nutritionfacts.org/topics/white-wine/"}}
{"_id": "PLAIN-2377", "text": "wild game", "metadata": {"url": "http://nutritionfacts.org/topics/wild-game/"}}
{"_id": "PLAIN-2378", "text": "wine", "metadata": {"url": "http://nutritionfacts.org/topics/wine/"}}
{"_id": "PLAIN-2379", "text": "wine supplements", "metadata": {"url": "http://nutritionfacts.org/topics/wine-supplements/"}}
{"_id": "PLAIN-2380", "text": "women's health", "metadata": {"url": "http://nutritionfacts.org/topics/womens-health/"}}
{"_id": "PLAIN-2381", "text": "Women\u2019s Healthy Eating and Living Study", "metadata": {"url": "http://nutritionfacts.org/topics/womens-healthy-eating-and-living-study/"}}
{"_id": "PLAIN-2382", "text": "woodear mushrooms", "metadata": {"url": "http://nutritionfacts.org/topics/woodear-mushrooms/"}}
{"_id": "PLAIN-2383", "text": "Workplace intervention", "metadata": {"url": "http://nutritionfacts.org/topics/workplace-intervention/"}}
{"_id": "PLAIN-2384", "text": "World Cancer Research Fund", "metadata": {"url": "http://nutritionfacts.org/topics/world-cancer-research-fund/"}}
{"_id": "PLAIN-2387", "text": "wound healing", "metadata": {"url": "http://nutritionfacts.org/topics/wound-healing/"}}
{"_id": "PLAIN-2388", "text": "wrinkles", "metadata": {"url": "http://nutritionfacts.org/topics/wrinkles/"}}
{"_id": "PLAIN-2389", "text": "X-rays", "metadata": {"url": "http://nutritionfacts.org/topics/x-rays/"}}
{"_id": "PLAIN-2390", "text": "xanthan gum", "metadata": {"url": "http://nutritionfacts.org/topics/xanthan-gum/"}}
{"_id": "PLAIN-2391", "text": "xanthones", "metadata": {"url": "http://nutritionfacts.org/topics/xanthones/"}}
{"_id": "PLAIN-2392", "text": "xeno-autoantibodies", "metadata": {"url": "http://nutritionfacts.org/topics/xeno-autoantibodies/"}}
{"_id": "PLAIN-2393", "text": "xenoestrogens", "metadata": {"url": "http://nutritionfacts.org/topics/xenoestrogens/"}}
{"_id": "PLAIN-2394", "text": "xenohormesis", "metadata": {"url": "http://nutritionfacts.org/topics/xenohormesis/"}}
{"_id": "PLAIN-2397", "text": "yams", "metadata": {"url": "http://nutritionfacts.org/topics/yams/"}}
{"_id": "PLAIN-2398", "text": "yeast", "metadata": {"url": "http://nutritionfacts.org/topics/yeast/"}}
{"_id": "PLAIN-2400", "text": "yerba mate", "metadata": {"url": "http://nutritionfacts.org/topics/yerba-mate/"}}
{"_id": "PLAIN-2401", "text": "Yersinia", "metadata": {"url": "http://nutritionfacts.org/topics/yersinia/"}}
{"_id": "PLAIN-2402", "text": "yogurt", "metadata": {"url": "http://nutritionfacts.org/topics/yogurt/"}}
{"_id": "PLAIN-2403", "text": "Z-Sweet", "metadata": {"url": "http://nutritionfacts.org/topics/z-sweet/"}}
{"_id": "PLAIN-2404", "text": "zeaxanthin", "metadata": {"url": "http://nutritionfacts.org/topics/zeaxanthin/"}}
{"_id": "PLAIN-2406", "text": "zinc", "metadata": {"url": "http://nutritionfacts.org/topics/zinc/"}}
{"_id": "PLAIN-2409", "text": "zoonotic disease", "metadata": {"url": "http://nutritionfacts.org/topics/zoonotic-disease/"}}
{"_id": "PLAIN-2410", "text": "zucchini", "metadata": {"url": "http://nutritionfacts.org/topics/zucchini/"}}
{"_id": "PLAIN-2411", "text": "GMO", "metadata": {"url": "http://nutritionfacts.org/topics/GMO/"}}
{"_id": "PLAIN-2423", "text": "McDonalds", "metadata": {"url": "http://nutritionfacts.org/topics/mcdonalds/"}}
{"_id": "PLAIN-2425", "text": "preservation", "metadata": {"url": "http://nutritionfacts.org/topics/preservation/"}}
{"_id": "PLAIN-2426", "text": "Yanomamo", "metadata": {"url": "http://nutritionfacts.org/topics/yanomamo/"}}
{"_id": "PLAIN-2427", "text": "Heart of Gold: Turmeric vs. Exercise", "metadata": {"url": "http://nutritionfacts.org/video/heart-of-gold-turmeric-vs-exercise/"}}
{"_id": "PLAIN-2428", "text": "Does Fiber Really Prevent Diverticulosis?", "metadata": {"url": "http://nutritionfacts.org/video/does-fiber-really-prevent-diverticulosis/"}}
{"_id": "PLAIN-2431", "text": "Flame Retardant Pollutants and Child Development", "metadata": {"url": "http://nutritionfacts.org/video/flame-retardant-pollutants-and-child-development/"}}
{"_id": "PLAIN-2432", "text": "Peppermint Oil for Irritable Bowel Syndrome", "metadata": {"url": "http://nutritionfacts.org/video/peppermint-oil-for-irritable-bowel-syndrome/"}}
{"_id": "PLAIN-2433", "text": "Can Diabetic Retinopathy Be Reversed?", "metadata": {"url": "http://nutritionfacts.org/video/can-diabetic-retinopathy-be-reversed/"}}
{"_id": "PLAIN-2434", "text": "Should You Sit, Squat, or Lean During a Bowel Movement?", "metadata": {"url": "http://nutritionfacts.org/video/should-you-sit-squat-or-lean-during-a-bowel-movement/"}}
{"_id": "PLAIN-2435", "text": "How Many Bowel Movements Should You Have Every Day?", "metadata": {"url": "http://nutritionfacts.org/video/how-many-bowel-movements-should-you-have-every-day/"}}
{"_id": "PLAIN-2436", "text": "The Best Kept Secret in Medicine", "metadata": {"url": "http://nutritionfacts.org/video/the-best-kept-secret-in-medicine/"}}
{"_id": "PLAIN-2437", "text": "Big Sugar Takes on the World Health Organization", "metadata": {"url": "http://nutritionfacts.org/video/big-sugar-takes-on-the-world-health-organization/"}}
{"_id": "PLAIN-2438", "text": "What Causes Diabetes?", "metadata": {"url": "http://nutritionfacts.org/video/what-causes-diabetes/"}}
{"_id": "PLAIN-2441", "text": "Uprooting the Leading Causes of Death", "metadata": {"url": "http://nutritionfacts.org/video/uprooting-the-leading-causes-of-death/"}}
{"_id": "PLAIN-2442", "text": "Drugs and the Demise of the Rice Diet", "metadata": {"url": "http://nutritionfacts.org/video/drugs-and-the-demise-of-the-rice-diet/"}}
{"_id": "PLAIN-2443", "text": "Dietary Pollutants May Affect Testosterone Levels", "metadata": {"url": "http://nutritionfacts.org/video/dietary-pollutants-may-affect-testosterone-levels/"}}
{"_id": "PLAIN-2444", "text": "Turmeric Curcumin, MGUS, and Multiple Myeloma", "metadata": {"url": "http://nutritionfacts.org/video/turmeric-curcumin-mgus-and-multiple-myeloma/"}}
{"_id": "PLAIN-2445", "text": "Why Do Plant-Based Diets Help Rheumatoid Arthritis?", "metadata": {"url": "http://nutritionfacts.org/video/why-do-plant-based-diets-help-rheumatoid-arthritis/"}}
{"_id": "PLAIN-2446", "text": "How to Prevent Kidney Stones With Diet", "metadata": {"url": "http://nutritionfacts.org/video/how-to-prevent-kidney-stones-with-diet/"}}
{"_id": "PLAIN-2447", "text": "Are the Benefits of Organic Food Underrated or Overrated?", "metadata": {"url": "http://nutritionfacts.org/video/are-the-benefits-of-organic-food-underrated-or-overrated/"}}
{"_id": "PLAIN-2448", "text": "Are Organic Foods Healthier?", "metadata": {"url": "http://nutritionfacts.org/video/are-organic-foods-healthier/"}}
{"_id": "PLAIN-2451", "text": "Are Organic Foods More Nutritious?", "metadata": {"url": "http://nutritionfacts.org/video/are-organic-foods-more-nutritious/"}}
{"_id": "PLAIN-2452", "text": "Bowel Wars: Hydrogen Sulfide vs. Butyrate", "metadata": {"url": "http://nutritionfacts.org/video/bowel-wars-hydrogen-sulfide-vs-butyrate/"}}
{"_id": "PLAIN-2453", "text": "How to Prevent High Blood Pressure with Diet", "metadata": {"url": "http://nutritionfacts.org/video/how-to-prevent-high-blood-pressure-with-diet/"}}
{"_id": "PLAIN-2454", "text": "Antioxidants and Depression", "metadata": {"url": "http://nutritionfacts.org/video/antioxidants-and-depression/"}}
{"_id": "PLAIN-2455", "text": "Cholesterol Crystals May Tear Through Our Artery Lining", "metadata": {"url": "http://nutritionfacts.org/video/cholesterol-crystals-may-tear-though-our-artery-lining/"}}
{"_id": "PLAIN-2456", "text": "What Percent of Americans Lead Healthy Lifestyles?", "metadata": {"url": "http://nutritionfacts.org/video/what-percent-of-americans-lead-healthy-lifestyles/"}}
{"_id": "PLAIN-2457", "text": "C. difficile Superbugs in Meat", "metadata": {"url": "http://nutritionfacts.org/video/c-difficile-superbugs-in-meat/"}}
{"_id": "PLAIN-2458", "text": "Formula for Childhood Obesity", "metadata": {"url": "http://nutritionfacts.org/video/formula-for-childhood-obesity/"}}
{"_id": "PLAIN-2461", "text": "Peppermint Aromatherapy for Nausea", "metadata": {"url": "http://nutritionfacts.org/video/peppermint-aromatherapy-for-nausea/"}}
{"_id": "PLAIN-2462", "text": "Switching from Beef to Chicken & Fish May Not Lower Cholesterol", "metadata": {"url": "http://nutritionfacts.org/video/switching-from-beef-to-chicken-fish-may-not-lower-cholesterol/"}}
{"_id": "PLAIN-2463", "text": "How Much Fruit is Too Much?", "metadata": {"url": "http://nutritionfacts.org/video/how-much-fruit-is-too-much/"}}
{"_id": "PLAIN-2464", "text": "Diet and Amyotrophic Lateral Sclerosis (ALS)", "metadata": {"url": "http://nutritionfacts.org/video/diet-and-amyotrophic-lateral-sclerosis-als/"}}
{"_id": "PLAIN-2465", "text": "ALS (Lou Gehrig's Disease): Fishing for Answers", "metadata": {"url": "http://nutritionfacts.org/video/als-lou-gehrigs-disease-fishing-for-answers/"}}
{"_id": "PLAIN-2466", "text": "Nutritional Yeast to Prevent the Common Cold", "metadata": {"url": "http://nutritionfacts.org/video/nutritional-yeast-to-prevent-the-common-cold/"}}
{"_id": "PLAIN-2467", "text": "Can Oatmeal Help Fatty Liver Disease?", "metadata": {"url": "http://nutritionfacts.org/video/can-oatmeal-help-fatty-liver-disease/"}}
{"_id": "PLAIN-2468", "text": "Oatmeal Lotion for Chemotherapy-Induced Rash", "metadata": {"url": "http://nutritionfacts.org/video/oatmeal-lotion-for-chemotherapy-induced-rash/"}}
{"_id": "PLAIN-2471", "text": "Do Antidepressant Drugs Really Work?", "metadata": {"url": "http://nutritionfacts.org/video/do-antidepressant-drugs-really-work/"}}
{"_id": "PLAIN-2472", "text": "Exercise vs. Drugs for Depression", "metadata": {"url": "http://nutritionfacts.org/video/exercise-vs-drugs-for-depression/"}}
{"_id": "PLAIN-2473", "text": "Improving on the Mediterranean Diet", "metadata": {"url": "http://nutritionfacts.org/video/improving-on-the-mediterranean-diet/"}}
{"_id": "PLAIN-2474", "text": "Do Flexitarians Live Longer?", "metadata": {"url": "http://nutritionfacts.org/video/do-flexitarians-live-longer/"}}
{"_id": "PLAIN-2475", "text": "Which Parts of the Mediterranean Diet Extended Life?", "metadata": {"url": "http://nutritionfacts.org/video/which-parts-of-the-mediterranean-diet-extended-life/"}}
{"_id": "PLAIN-2476", "text": "PREDIMED: Does Eating Nuts Prevent Strokes?", "metadata": {"url": "http://nutritionfacts.org/video/predimed-does-eating-nuts-prevent-strokes/"}}
{"_id": "PLAIN-2477", "text": "The Mediterranean Diet or a Whole Food Plant-Based Diet?", "metadata": {"url": "http://nutritionfacts.org/video/the-mediterranean-diet-or-a-whole-food-plant-based-diet/"}}
{"_id": "PLAIN-2478", "text": "Why Was Heart Disease Rare in the Mediterranean?", "metadata": {"url": "http://nutritionfacts.org/video/why-was-heart-disease-rare-in-the-mediterranean/"}}
{"_id": "PLAIN-2481", "text": "Optimal Cholesterol Level", "metadata": {"url": "http://nutritionfacts.org/video/optimal-cholesterol-level/"}}
{"_id": "PLAIN-2482", "text": "Reducing Glycotoxin Intake to Prevent Alzheimer's", "metadata": {"url": "http://nutritionfacts.org/video/reducing-glycotoxin-intake-to-prevent-alzheimers/"}}
{"_id": "PLAIN-2483", "text": "The Cilantro Gene", "metadata": {"url": "http://nutritionfacts.org/video/the-cilantro-gene/"}}
{"_id": "PLAIN-2484", "text": "Plant-Based Workplace Intervention", "metadata": {"url": "http://nutritionfacts.org/video/plant-based-workplace-intervention/"}}
{"_id": "PLAIN-2485", "text": "Lipotoxicity: How Saturated Fat Raises Blood Sugar", "metadata": {"url": "http://nutritionfacts.org/video/lipotoxicity-how-saturated-fat-raises-blood-sugar/"}}
{"_id": "PLAIN-2486", "text": "The Spillover Effect Links Obesity to Diabetes", "metadata": {"url": "http://nutritionfacts.org/video/the-spillover-effect-links-obesity-to-diabetes/"}}
{"_id": "PLAIN-2487", "text": "What Causes Insulin Resistance?", "metadata": {"url": "http://nutritionfacts.org/video/what-causes-insulin-resistance/"}}
{"_id": "PLAIN-2488", "text": "The Problem With the Paleo Diet Argument", "metadata": {"url": "http://nutritionfacts.org/video/the-problem-with-the-paleo-diet-argument/"}}
{"_id": "PLAIN-2491", "text": "Flax Seeds for Hypertension", "metadata": {"url": "http://nutritionfacts.org/video/flax-seeds-for-hypertension/"}}
{"_id": "PLAIN-2492", "text": "Preventing Alzheimer\u2019s Disease With Plants", "metadata": {"url": "http://nutritionfacts.org/video/preventing-alzheimers-disease-with-plants/"}}
{"_id": "PLAIN-2493", "text": "Turmeric Curcumin vs. Exercise for Artery Function", "metadata": {"url": "http://nutritionfacts.org/video/turmeric-curcumin-vs-exercise-for-artery-function/"}}
{"_id": "PLAIN-2494", "text": "Enhancing Athletic Performance With Peppermint", "metadata": {"url": "http://nutritionfacts.org/video/enhancing-athletic-performance-with-peppermint/"}}
{"_id": "PLAIN-2495", "text": "Never Too Late to Start Eating Healthier", "metadata": {"url": "http://nutritionfacts.org/video/never-too-late-to-start-eating-healthier/"}}
{"_id": "PLAIN-2496", "text": "Are Raisins Good Snacks for Kids?", "metadata": {"url": "http://nutritionfacts.org/video/are-raisins-good-snacks-for-kids/"}}
{"_id": "PLAIN-2497", "text": "Plant-Based Diets and Diabetes", "metadata": {"url": "http://nutritionfacts.org/video/plant-based-diets-and-diabetes/"}}
{"_id": "PLAIN-2498", "text": "How Many Meet the Simple Seven?", "metadata": {"url": "http://nutritionfacts.org/video/how-many-meet-the-simple-seven/"}}
{"_id": "PLAIN-2501", "text": "Which Dietary Factors Affect Breast Cancer Most?", "metadata": {"url": "http://nutritionfacts.org/video/which-dietary-factors-affect-breast-cancer-most/"}}
{"_id": "PLAIN-2502", "text": "Ciguatera Poisoning & Chronic Fatigue Syndrome", "metadata": {"url": "http://nutritionfacts.org/video/ciguatera-poisoning-chronic-fatigue-syndrome/"}}
{"_id": "PLAIN-2503", "text": "Preventing Crohn\u2019s Disease With Diet", "metadata": {"url": "http://nutritionfacts.org/video/preventing-crohns-disease-with-diet/"}}
{"_id": "PLAIN-2504", "text": "Why Do Vegan Women Have 5x Fewer Twins?", "metadata": {"url": "http://nutritionfacts.org/video/why-do-vegan-women-have-5x-fewer-twins/"}}
{"_id": "PLAIN-2505", "text": "Estrogen in Meat, Dairy, and Eggs", "metadata": {"url": "http://nutritionfacts.org/video/estrogen-in-meat-dairy-and-eggs/"}}
{"_id": "PLAIN-2506", "text": "Can Diet Protect Against Kidney Cancer?", "metadata": {"url": "http://nutritionfacts.org/video/can-diet-protect-against-kidney-cancer/"}}
{"_id": "PLAIN-2507", "text": "Paleo Diets May Negate Benefits of Exercise", "metadata": {"url": "http://nutritionfacts.org/video/paleo-diets-may-negate-benefits-of-exercise/"}}
{"_id": "PLAIN-2508", "text": "Aspartame and the Brain", "metadata": {"url": "http://nutritionfacts.org/video/aspartame-and-the-brain/"}}
{"_id": "PLAIN-2511", "text": "Food Industry Funded Research Bias", "metadata": {"url": "http://nutritionfacts.org/video/food-industry-funded-research-bias/"}}
{"_id": "PLAIN-2512", "text": "Kempner Rice Diet: Whipping Us Into Shape", "metadata": {"url": "http://nutritionfacts.org/video/kempner-rice-diet-whipping-us-into-shape/"}}
{"_id": "PLAIN-2513", "text": "Back in Circulation: Sciatica and Cholesterol", "metadata": {"url": "http://nutritionfacts.org/video/back-in-circulation-sciatica-and-cholesterol/"}}
{"_id": "PLAIN-2514", "text": "If Fructose is Bad, What About Fruit?", "metadata": {"url": "http://nutritionfacts.org/video/if-fructose-is-bad-what-about-fruit/"}}
{"_id": "PLAIN-2515", "text": "Eliminating 90% of Heart Disease Risk", "metadata": {"url": "http://nutritionfacts.org/video/eliminating-90-of-heart-disease-risk/"}}
{"_id": "PLAIN-2516", "text": "Inhibiting Platelet Activation with Tomato Seeds", "metadata": {"url": "http://nutritionfacts.org/video/inhibiting-platelet-activation-with-tomato-seeds/"}}
{"_id": "PLAIN-2517", "text": "Preventing Alzheimer\u2019s Disease with Diet", "metadata": {"url": "http://nutritionfacts.org/video/preventing-alzheimers-disease-with-diet/"}}
{"_id": "PLAIN-2518", "text": "Preventing Alzheimer\u2019s with Lifestyle Changes", "metadata": {"url": "http://nutritionfacts.org/video/preventing-alzheimers-with-lifestyle-changes/"}}
{"_id": "PLAIN-2521", "text": "GMO Soy and Breast Cancer", "metadata": {"url": "http://nutritionfacts.org/video/gmo-soy-and-breast-cancer/"}}
{"_id": "PLAIN-2522", "text": "Is Monsanto\u2019s Roundup Pesticide Glyphosate Safe?", "metadata": {"url": "http://nutritionfacts.org/video/is-monsantos-roundup-pesticide-glyphosate-safe/"}}
{"_id": "PLAIN-2523", "text": "Are GMOs Safe? The Case of Roundup Ready Soy", "metadata": {"url": "http://nutritionfacts.org/video/are-gmos-safe-the-case-of-roundup-ready-soy/"}}
{"_id": "PLAIN-2524", "text": "Are GMOs Safe? The Case of Bt Corn", "metadata": {"url": "http://nutritionfacts.org/video/are-gmos-safe-the-case-of-bt-corn/"}}
{"_id": "PLAIN-2525", "text": "Antibiotics: Agribusinesses\u2019 Pound of Flesh", "metadata": {"url": "http://nutritionfacts.org/video/antibiotics-agribusinesses-pound-of-flesh/"}}
{"_id": "PLAIN-2526", "text": "Hospitals Selling Sickness", "metadata": {"url": "http://nutritionfacts.org/video/hospitals-selling-sickness/"}}
{"_id": "PLAIN-2527", "text": "Dairy Estrogen and Male Fertility", "metadata": {"url": "http://nutritionfacts.org/video/dairy-estrogen-and-male-fertility/"}}
{"_id": "PLAIN-2528", "text": "The Role of Diet in Declining Sperm Counts", "metadata": {"url": "http://nutritionfacts.org/video/the-role-of-diet-in-declining-sperm-counts/"}}
{"_id": "PLAIN-2531", "text": "Turmeric Curcumin and Pancreatic Cancer", "metadata": {"url": "http://nutritionfacts.org/video/turmeric-curcumin-and-pancreatic-cancer/"}}
{"_id": "PLAIN-2532", "text": "Can Flax Seeds Help Prevent Breast Cancer?", "metadata": {"url": "http://nutritionfacts.org/video/can-flax-seeds-help-prevent-breast-cancer/"}}
{"_id": "PLAIN-2533", "text": "PCBs in Children\u2019s Fish Oil Supplements", "metadata": {"url": "http://nutritionfacts.org/video/pcbs-in-childrens-fish-oil-supplements/"}}
{"_id": "PLAIN-2534", "text": "How Much Hibiscus Tea is Too Much?", "metadata": {"url": "http://nutritionfacts.org/video/how-much-hibiscus-tea-is-too-much/"}}
{"_id": "PLAIN-2535", "text": "Is There Too Much Aluminum in Tea?", "metadata": {"url": "http://nutritionfacts.org/video/is-there-too-much-aluminum-in-tea/"}}
{"_id": "PLAIN-2536", "text": "Protecting Teeth From Hibiscus Tea", "metadata": {"url": "http://nutritionfacts.org/video/protecting-teeth-from-hibiscus-tea/"}}
{"_id": "PLAIN-2537", "text": "Hibiscus Tea vs. Plant-Based Diets for Hypertension", "metadata": {"url": "http://nutritionfacts.org/video/hibiscus-tea-vs-plant-based-diets-for-hypertension/"}}
{"_id": "PLAIN-2538", "text": "Lifestyle Medicine Is the Standard of Care for Prediabetes", "metadata": {"url": "http://nutritionfacts.org/video/lifestyle-medicine-is-the-standard-of-care-for-prediabetes/"}}
{"_id": "PLAIN-2541", "text": "Telomeres: Cap It All Off with Diet", "metadata": {"url": "http://nutritionfacts.org/video/telomeres-cap-it-all-off-with-diet/"}}
{"_id": "PLAIN-2542", "text": "Does Meditation Affect Cellular Aging?", "metadata": {"url": "http://nutritionfacts.org/video/does-meditation-affect-cellular-aging/"}}
{"_id": "PLAIN-2543", "text": "Treating Alzheimer's with Turmeric", "metadata": {"url": "http://nutritionfacts.org/video/treating-alzheimers-with-turmeric/"}}
{"_id": "PLAIN-2544", "text": "Preventing Alzheimer's with Turmeric", "metadata": {"url": "http://nutritionfacts.org/video/preventing-alzheimers-with-turmeric/"}}
{"_id": "PLAIN-2545", "text": "Garlic and Raisins to Prevent Premature Birth", "metadata": {"url": "http://nutritionfacts.org/video/garlic-and-raisins-to-prevent-premature-birth/"}}
{"_id": "PLAIN-2546", "text": "Dioxins in U.S. Farm-Raised Catfish", "metadata": {"url": "http://nutritionfacts.org/video/dioxins-in-u-s-farm-raised-catfish/"}}
{"_id": "PLAIN-2547", "text": "Collaboration with the New Vectors of Disease", "metadata": {"url": "http://nutritionfacts.org/video/collaboration-with-the-new-vectors-of-disease/"}}
{"_id": "PLAIN-2548", "text": "Four Nuts Once a Month", "metadata": {"url": "http://nutritionfacts.org/video/four-nuts-once-a-month/"}}
{"_id": "PLAIN-2551", "text": "Treating Gout with Cherry Juice", "metadata": {"url": "http://nutritionfacts.org/video/treating-gout-with-cherry-juice/"}}
{"_id": "PLAIN-2552", "text": "MRSA Superbugs in Meat", "metadata": {"url": "http://nutritionfacts.org/video/mrsa-superbugs-in-meat/"}}
{"_id": "PLAIN-2553", "text": "How to Prevent Prediabetes in Children", "metadata": {"url": "http://nutritionfacts.org/video/how-to-prevent-prediabetes-in-children/"}}
{"_id": "PLAIN-2554", "text": "How to Prevent Prediabetes from Turning into Diabetes", "metadata": {"url": "http://nutritionfacts.org/video/how-to-prevent-prediabetes-from-turning-into-diabetes/"}}
{"_id": "PLAIN-2555", "text": "Beans, Beans, They're Good For Your Heart", "metadata": {"url": "http://nutritionfacts.org/video/beans-beans-theyre-good-for-your-heart/"}}
{"_id": "PLAIN-2556", "text": "How to Diagnose Gluten Intolerance", "metadata": {"url": "http://nutritionfacts.org/video/how-to-diagnose-gluten-intolerance/"}}
{"_id": "PLAIN-2557", "text": "Gluten-Free Diets: Separating the Wheat from the Chat", "metadata": {"url": "http://nutritionfacts.org/video/gluten-free-diets-separating-the-wheat-from-the-chat/"}}
{"_id": "PLAIN-2558", "text": "Is Gluten Sensitivity Real?", "metadata": {"url": "http://nutritionfacts.org/video/is-gluten-sensitivity-real/"}}
{"_id": "PLAIN-2561", "text": "Second Strategy to Cooking Broccoli", "metadata": {"url": "http://nutritionfacts.org/video/second-strategy-to-cooking-broccoli/"}}
{"_id": "PLAIN-2562", "text": "Inhibiting Platelet Aggregation with Berries", "metadata": {"url": "http://nutritionfacts.org/video/inhibiting-platelet-aggregation-with-berries/"}}
{"_id": "PLAIN-2563", "text": "Illegal Drugs in Chicken Feathers", "metadata": {"url": "http://nutritionfacts.org/video/illegal-drugs-in-chicken-feathers/"}}
{"_id": "PLAIN-2564", "text": "What\u2019s the Best Mouthwash?", "metadata": {"url": "http://nutritionfacts.org/video/whats-the-best-mouthwash/"}}
{"_id": "PLAIN-2565", "text": "Which Vegetable Binds Bile Best?", "metadata": {"url": "http://nutritionfacts.org/video/which-vegetable-binds-bile-best/"}}
{"_id": "PLAIN-2566", "text": "Breast Cancer and Constipation", "metadata": {"url": "http://nutritionfacts.org/video/breast-cancer-and-constipation/"}}
{"_id": "PLAIN-2567", "text": "Evidence-Based Medicine or Evidence-Biased?", "metadata": {"url": "http://nutritionfacts.org/video/evidence-based-medicine-or-evidence-biased/"}}
{"_id": "PLAIN-2568", "text": "Saving Lives By Treating Acne With Diet", "metadata": {"url": "http://nutritionfacts.org/video/saving-lives-by-treating-acne-with-diet/"}}
{"_id": "PLAIN-2571", "text": "Preventing Prediabetes By Eating More", "metadata": {"url": "http://nutritionfacts.org/video/preventing-prediabetes-by-eating-more/"}}
{"_id": "PLAIN-2572", "text": "Which Nut Fights Cancer Better?", "metadata": {"url": "http://nutritionfacts.org/video/which-nut-fights-cancer-better/"}}
{"_id": "PLAIN-2573", "text": "What Diet Should Physicians Recommend?", "metadata": {"url": "http://nutritionfacts.org/video/what-diet-should-physicians-recommend/"}}
{"_id": "PLAIN-2574", "text": "Preventing Liver Cancer with Coffee", "metadata": {"url": "http://nutritionfacts.org/video/preventing-liver-cancer-with-coffee/"}}
{"_id": "PLAIN-2575", "text": "Essential Tremor and Diet", "metadata": {"url": "http://nutritionfacts.org/video/essential-tremor-and-diet/"}}
{"_id": "PLAIN-2576", "text": "Cooking to Live Longer", "metadata": {"url": "http://nutritionfacts.org/video/cooking-to-live-longer/"}}
{"_id": "PLAIN-2577", "text": "The Best Way to Cook Sweet Potatoes", "metadata": {"url": "http://nutritionfacts.org/video/the-best-way-to-cook-sweet-potatoes/"}}
{"_id": "PLAIN-2578", "text": "Anti-Cancer Potential of Sweet Potato Proteins", "metadata": {"url": "http://nutritionfacts.org/video/anti-cancer-potential-of-sweet-potato-proteins/"}}
{"_id": "PLAIN-2581", "text": "Dark Chocolate and Artery Function", "metadata": {"url": "http://nutritionfacts.org/video/dark-chocolate-and-artery-function/"}}
{"_id": "PLAIN-2582", "text": "Broccoli: Sprouts vs. Supplements", "metadata": {"url": "http://nutritionfacts.org/video/broccoli-sprouts-vs-supplements/"}}
{"_id": "PLAIN-2583", "text": "When Low Risk Means High Risk", "metadata": {"url": "http://nutritionfacts.org/video/when-low-risk-means-high-risk/"}}
{"_id": "PLAIN-2584", "text": "Topical Application of Turmeric Curcumin for Cancer", "metadata": {"url": "http://nutritionfacts.org/video/topical-application-of-turmeric-curcumin-for-cancer/"}}
{"_id": "PLAIN-2585", "text": "Turmeric Curcumin and Colon Cancer", "metadata": {"url": "http://nutritionfacts.org/video/turmeric-curcumin-and-colon-cancer/"}}
{"_id": "PLAIN-2586", "text": "Cadmium and Cancer: Plant vs. Animal Foods", "metadata": {"url": "http://nutritionfacts.org/video/cadmium-and-cancer-plant-vs-animal-foods/"}}
{"_id": "PLAIN-2587", "text": "Watermelon for Sore Muscle Relief", "metadata": {"url": "http://nutritionfacts.org/video/watermelon-for-sore-muscle-relief/"}}
{"_id": "PLAIN-2588", "text": "Gout Treatment with a Cherry on Top", "metadata": {"url": "http://nutritionfacts.org/video/gout-treatment-with-a-cherry-on-top/"}}
{"_id": "PLAIN-2591", "text": "Longer Life Within Walking Distance", "metadata": {"url": "http://nutritionfacts.org/video/longer-life-within-walking-distance/"}}
{"_id": "PLAIN-2592", "text": "Turning the Clock Back 14 Years", "metadata": {"url": "http://nutritionfacts.org/video/turning-the-clock-back-14-years/"}}
{"_id": "PLAIN-2593", "text": "Fruits, Veggies, and Longevity: How Many Minutes Per Mouthful?", "metadata": {"url": "http://nutritionfacts.org/video/fruits-veggies-and-longevity-how-many-minutes-per-mouthful/"}}
{"_id": "PLAIN-2594", "text": "Magic Bullets vs. Promiscuous Plants", "metadata": {"url": "http://nutritionfacts.org/video/magic-bullets-vs-promiscuous-plants/"}}
{"_id": "PLAIN-2595", "text": "Plants as Intellectual Property \u2013 Patently Wrong?", "metadata": {"url": "http://nutritionfacts.org/video/plants-as-intellectual-property-patently-wrong/"}}
{"_id": "PLAIN-2596", "text": "Xenohormesis: What Doesn't Kill Plants May Make Us Stronger", "metadata": {"url": "http://nutritionfacts.org/video/xenohormesis-what-doesnt-kill-plants-may-make-us-stronger/"}}
{"_id": "PLAIN-2597", "text": "Appropriating Plant Defenses", "metadata": {"url": "http://nutritionfacts.org/video/appropriating-plant-defenses/"}}
{"_id": "PLAIN-2598", "text": "Tick Bites, Meat Allergies, and Chronic Urticaria", "metadata": {"url": "http://nutritionfacts.org/video/tick-bites-meat-allergies-and-chronic-urticaria/"}}
{"_id": "PLAIN-2601", "text": "Debunking Egg Industry Myths", "metadata": {"url": "http://nutritionfacts.org/video/debunking-egg-industry-myths/"}}
{"_id": "PLAIN-2602", "text": "Walnuts and Artery Function", "metadata": {"url": "http://nutritionfacts.org/video/walnuts-and-artery-function/"}}
{"_id": "PLAIN-2603", "text": "Pollutants in Salmon and Our Own Fat", "metadata": {"url": "http://nutritionfacts.org/video/pollutants-in-salmon-and-our-own-fat/"}}
{"_id": "PLAIN-2604", "text": "Diabetes and Dioxins", "metadata": {"url": "http://nutritionfacts.org/video/diabetes-and-dioxins/"}}
{"_id": "PLAIN-2605", "text": "Fish and Diabetes", "metadata": {"url": "http://nutritionfacts.org/video/fish-and-diabetes/"}}
{"_id": "PLAIN-2606", "text": "Cancer Risk From French Fries", "metadata": {"url": "http://nutritionfacts.org/video/cancer-risk-from-french-fries/"}}
{"_id": "PLAIN-2607", "text": "Statin Cholesterol Drugs and Invasive Breast Cancer", "metadata": {"url": "http://nutritionfacts.org/video/statin-cholesterol-drugs-and-invasive-breast-cancer/"}}
{"_id": "PLAIN-2608", "text": "Cholesterol Feeds Breast Cancer Cells", "metadata": {"url": "http://nutritionfacts.org/video/cholesterol-feeds-breast-cancer-cells/"}}
{"_id": "PLAIN-2611", "text": "Treating Asthma With Fruits and Vegetables", "metadata": {"url": "http://nutritionfacts.org/video/treating-asthma-with-fruits-and-vegetables/"}}
{"_id": "PLAIN-2612", "text": "Preventing Asthma With Fruits and Vegetables", "metadata": {"url": "http://nutritionfacts.org/video/preventing-asthma-with-fruits-and-vegetables/"}}
{"_id": "PLAIN-2613", "text": "Taxpayer Subsidies for Unhealthy Foods", "metadata": {"url": "http://nutritionfacts.org/video/taxpayer-subsidies-for-unhealthy-foods/"}}
{"_id": "PLAIN-2614", "text": "How Many Cancers Have Been Caused by Arsenic-Laced Chicken?", "metadata": {"url": "http://nutritionfacts.org/video/how-many-cancers-have-been-caused-by-arsenic-laced-chicken/"}}
{"_id": "PLAIN-2615", "text": "California Children Are Contaminated", "metadata": {"url": "http://nutritionfacts.org/video/california-children-are-contaminated/"}}
{"_id": "PLAIN-2616", "text": "Caloric Restriction vs. Animal Protein Restriction", "metadata": {"url": "http://nutritionfacts.org/video/caloric-restriction-vs-animal-protein-restriction/"}}
{"_id": "PLAIN-2617", "text": "Why Do We Age?", "metadata": {"url": "http://nutritionfacts.org/video/why-do-we-age/"}}
{"_id": "PLAIN-2618", "text": "Blood Type Diet Debunked", "metadata": {"url": "http://nutritionfacts.org/video/blood-type-diet-debunked/"}}
{"_id": "PLAIN-2621", "text": "Phytates for Rehabilitating Cancer Cells", "metadata": {"url": "http://nutritionfacts.org/video/phytates-for-rehabilitating-cancer-cells/"}}
{"_id": "PLAIN-2622", "text": "Phytates for the Prevention of Cancer", "metadata": {"url": "http://nutritionfacts.org/video/phytates-for-the-prevention-of-cancer/"}}
{"_id": "PLAIN-2623", "text": "Low Carb Diets and Coronary Blood Flow", "metadata": {"url": "http://nutritionfacts.org/video/low-carb-diets-and-coronary-blood-flow/"}}
{"_id": "PLAIN-2624", "text": "Nuts May Help Prevent Death", "metadata": {"url": "http://nutritionfacts.org/video/nuts-may-help-prevent-death/"}}
{"_id": "PLAIN-2625", "text": "Turmeric Curcumin Reprogramming Cancer Cell Death", "metadata": {"url": "http://nutritionfacts.org/video/turmeric-curcumin-reprogramming-cancer-cell-death/"}}
{"_id": "PLAIN-2626", "text": "Carcinogen Blocking Effects of Turmeric", "metadata": {"url": "http://nutritionfacts.org/video/carcinogen-blocking-effects-of-turmeric/"}}
{"_id": "PLAIN-2627", "text": "Back to Our Roots: Curry and Cancer", "metadata": {"url": "http://nutritionfacts.org/video/back-to-our-roots-curry-and-cancer/"}}
{"_id": "PLAIN-2628", "text": "Seeing Red No. 3: Coloring to Dye For", "metadata": {"url": "http://nutritionfacts.org/video/seeing-red-no-3-coloring-to-dye-for/"}}
{"_id": "PLAIN-2631", "text": "How to Slow Brain Aging by Two Years", "metadata": {"url": "http://nutritionfacts.org/video/how-to-slow-brain-aging-by-two-years/"}}
{"_id": "PLAIN-2632", "text": "Is Meat Glue Safe?", "metadata": {"url": "http://nutritionfacts.org/video/is-meat-glue-safe/"}}
{"_id": "PLAIN-2633", "text": "Is Liquid Smoke Flavoring Carcinogenic?", "metadata": {"url": "http://nutritionfacts.org/video/is-liquid-smoke-flavoring-carcinogenic/"}}
{"_id": "PLAIN-2634", "text": "Food Antioxidants, Stroke, and Heart Disease", "metadata": {"url": "http://nutritionfacts.org/video/food-antioxidants-stroke-and-heart-disease/"}}
{"_id": "PLAIN-2635", "text": "Food Antioxidants and Cancer", "metadata": {"url": "http://nutritionfacts.org/video/food-antioxidants-and-cancer/"}}
{"_id": "PLAIN-2636", "text": "Orange Aromatherapy for Anxiety", "metadata": {"url": "http://nutritionfacts.org/video/orange-aromatherapy-for-anxiety/"}}
{"_id": "PLAIN-2637", "text": "Who Says Eggs Aren't Healthy or Safe?", "metadata": {"url": "http://nutritionfacts.org/video/who-says-eggs-arent-healthy-or-safe/"}}
{"_id": "PLAIN-2638", "text": "How Much Exercise to Sustain Weight Loss?", "metadata": {"url": "http://nutritionfacts.org/video/how-much-exercise-to-sustain-weight-loss/"}}
{"_id": "PLAIN-2641", "text": "Foster Farms Responds to Chicken Salmonella Outbreaks", "metadata": {"url": "http://nutritionfacts.org/video/foster-farms-responds-to-chicken-salmonella-outbreaks/"}}
{"_id": "PLAIN-2642", "text": "Norovirus Food Poisoning from Pesticides", "metadata": {"url": "http://nutritionfacts.org/video/norovirus-food-poisoning-from-pesticides/"}}
{"_id": "PLAIN-2643", "text": "Is Fish Oil Just Snake Oil?", "metadata": {"url": "http://nutritionfacts.org/video/is-fish-oil-just-snake-oil/"}}
{"_id": "PLAIN-2644", "text": "Should We Take a Multivitamin?", "metadata": {"url": "http://nutritionfacts.org/video/should-we-take-a-multivitamin/"}}
{"_id": "PLAIN-2645", "text": "Convincing Doctors to Embrace Lifestyle Medicine", "metadata": {"url": "http://nutritionfacts.org/video/convincing-doctors-to-embrace-lifestyle-medicine/"}}
{"_id": "PLAIN-2646", "text": "Dr. Burkitt\u2019s F-Word Diet", "metadata": {"url": "http://nutritionfacts.org/video/dr-burkitts-f-word-diet/"}}
{"_id": "PLAIN-2647", "text": "Prostate Cancer and Organic Milk vs. Almond Milk", "metadata": {"url": "http://nutritionfacts.org/video/prostate-cancer-and-organic-milk-vs-almond-milk/"}}
{"_id": "PLAIN-2648", "text": "Who Shouldn\u2019t Consume Curcumin or Turmeric?", "metadata": {"url": "http://nutritionfacts.org/video/who-shouldnt-consume-curcumin-or-turmeric/"}}
{"_id": "PLAIN-2651", "text": "Turmeric Curcumin and Rheumatoid Arthritis", "metadata": {"url": "http://nutritionfacts.org/video/turmeric-curcumin-and-rheumatoid-arthritis/"}}
{"_id": "PLAIN-2652", "text": "Spicing Up DNA Protection", "metadata": {"url": "http://nutritionfacts.org/video/spicing-up-dna-protection/"}}
{"_id": "PLAIN-2653", "text": "Which Spices Fight Inflammation?", "metadata": {"url": "http://nutritionfacts.org/video/which-spices-fight-inflammation/"}}
{"_id": "PLAIN-2654", "text": "Superbugs in Conventional vs. Organic Chicken", "metadata": {"url": "http://nutritionfacts.org/video/superbugs-in-conventional-vs-organic-chicken/"}}
{"_id": "PLAIN-2655", "text": "Bacon, Eggs, and Gestational Diabetes During Pregnancy", "metadata": {"url": "http://nutritionfacts.org/video/bacon-eggs-and-gestational-diabetes-during-pregnancy-2/"}}
{"_id": "PLAIN-2656", "text": "Dietary Treatments for Computer Eye Strain", "metadata": {"url": "http://nutritionfacts.org/video/dietary-treatments-for-computer-eye-strain/"}}
{"_id": "PLAIN-2657", "text": "Dietary Treatment of Glaucoma", "metadata": {"url": "http://nutritionfacts.org/video/dietary-treatment-of-glaucoma/"}}
{"_id": "PLAIN-2658", "text": "Dietary Prevention of Age-Related Macular Degeneration", "metadata": {"url": "http://nutritionfacts.org/video/dietary-prevention-of-age-related-macular-degeneration/"}}
{"_id": "PLAIN-2661", "text": "Boosting Natural Killer Cell Activity", "metadata": {"url": "http://nutritionfacts.org/video/boosting-natural-killer-cell-activity/"}}
{"_id": "PLAIN-2662", "text": "Vitamin B12 Necessary for Arterial Health", "metadata": {"url": "http://nutritionfacts.org/video/vitamin-b12-necessary-for-arterial-health/"}}
{"_id": "PLAIN-2663", "text": "Arteries of Vegans vs. Runners", "metadata": {"url": "http://nutritionfacts.org/video/arteries-of-vegans-vs-runners/"}}
{"_id": "PLAIN-2664", "text": "Antioxidant Rich Foods With Every Meal", "metadata": {"url": "http://nutritionfacts.org/video/antioxidant-rich-foods-with-every-meal/"}}
{"_id": "PLAIN-2665", "text": "How to Reach the Antioxidant \"RDA\"", "metadata": {"url": "http://nutritionfacts.org/video/how-to-reach-the-antioxidant-rda/"}}
{"_id": "PLAIN-2666", "text": "Minimum \"Recommended Daily Allowance\" of Antioxidants", "metadata": {"url": "http://nutritionfacts.org/video/minimum-recommended-daily-allowance-of-antioxidants/"}}
{"_id": "PLAIN-2667", "text": "Eggs and Diabetes", "metadata": {"url": "http://nutritionfacts.org/video/eggs-and-diabetes/"}}
{"_id": "PLAIN-2668", "text": "Phytates for the Prevention of Osteoporosis", "metadata": {"url": "http://nutritionfacts.org/video/phytates-for-the-prevention-of-osteoporosis/"}}
{"_id": "PLAIN-2671", "text": "One in a Thousand: Ending the Heart Disease Epidemic", "metadata": {"url": "http://nutritionfacts.org/video/one-in-a-thousand-ending-the-heart-disease-epidemic/"}}
{"_id": "PLAIN-2672", "text": "Cavities and Coronaries: Our Choice", "metadata": {"url": "http://nutritionfacts.org/video/cavities-and-coronaries-our-choice/"}}
{"_id": "PLAIN-2673", "text": "Mercury vs. Omega-3s for Brain Development", "metadata": {"url": "http://nutritionfacts.org/video/mercury-vs-omega-3s-for-brain-development/"}}
{"_id": "PLAIN-2674", "text": "Fish Intake Associated With Brain Shrinkage", "metadata": {"url": "http://nutritionfacts.org/video/fish-consumption-associated-with-brain-shrinkage/"}}
{"_id": "PLAIN-2675", "text": "Are Fatty Foods Addictive?", "metadata": {"url": "http://nutritionfacts.org/video/are-fatty-foods-addictive/"}}
{"_id": "PLAIN-2676", "text": "Are Sugary Foods Addictive?", "metadata": {"url": "http://nutritionfacts.org/video/are-sugary-foods-addictive/"}}
{"_id": "PLAIN-2677", "text": "How to Avoid Phosphate Additives", "metadata": {"url": "http://nutritionfacts.org/video/how-to-avoid-phosphate-additives/"}}
{"_id": "PLAIN-2678", "text": "Phosphate Additives in Chicken", "metadata": {"url": "http://nutritionfacts.org/video/phosphate-additives-in-chicken/"}}
{"_id": "PLAIN-2681", "text": "The Broccoli Receptor: Our First Line of Defense", "metadata": {"url": "http://nutritionfacts.org/video/the-broccoli-receptor-our-first-line-of-defense-2/"}}
{"_id": "PLAIN-2682", "text": "Lifestyle Medicine: Treating the Causes of Disease", "metadata": {"url": "http://nutritionfacts.org/video/lifestyle-medicine-treating-the-causes-of-disease/"}}
{"_id": "PLAIN-2683", "text": "Canned Beans or Cooked Beans?", "metadata": {"url": "http://nutritionfacts.org/video/canned-beans-or-cooked-beans/"}}
{"_id": "PLAIN-2684", "text": "BRCA Breast Cancer Genes and Soy", "metadata": {"url": "http://nutritionfacts.org/video/brca-breast-cancer-genes-and-soy/"}}
{"_id": "PLAIN-2685", "text": "Increased Lifespan From Beans", "metadata": {"url": "http://nutritionfacts.org/video/increased-lifespan-from-beans/"}}
{"_id": "PLAIN-2686", "text": "How Many Poppy Seeds Are Too Many?", "metadata": {"url": "http://nutritionfacts.org/video/how-many-poppy-seeds-are-too-many/"}}
{"_id": "PLAIN-2687", "text": "Nutrient-Dense Approach to Weight Management", "metadata": {"url": "http://nutritionfacts.org/video/nutrient-dense-approach-to-weight-management/"}}
{"_id": "PLAIN-2688", "text": "Preserving Immune Function in Athletes With Nutritional Yeast", "metadata": {"url": "http://nutritionfacts.org/video/preserving-immune-function-in-athletes-with-nutritional-yeast/"}}
{"_id": "PLAIN-2691", "text": "Eggs, Choline, and Cancer", "metadata": {"url": "http://nutritionfacts.org/video/eggs-choline-and-cancer/"}}
{"_id": "PLAIN-2692", "text": "Eggs and Choline: Something Fishy", "metadata": {"url": "http://nutritionfacts.org/video/eggs-and-choline-something-fishy/"}}
{"_id": "PLAIN-2693", "text": "BOLD Indeed: Beef Lowers Cholesterol?", "metadata": {"url": "http://nutritionfacts.org/video/bold-indeed-beef-lowers-cholesterol/"}}
{"_id": "PLAIN-2694", "text": "Tell Your Doctor If You Eat Grapefruit", "metadata": {"url": "http://nutritionfacts.org/video/tell-your-doctor-if-you-eat-grapefruit/"}}
{"_id": "PLAIN-2695", "text": "Testing Your Diet with Pee & Purple Cabbage", "metadata": {"url": "http://nutritionfacts.org/video/testing-your-diet-with-pee-purple-cabbage/"}}
{"_id": "PLAIN-2696", "text": "Alkaline Diets, Animal Protein, & Calcium Loss", "metadata": {"url": "http://nutritionfacts.org/video/alkaline-diets-animal-protein-and-calcium-loss/"}}
{"_id": "PLAIN-2697", "text": "Breast Cancer Survival Vegetable", "metadata": {"url": "http://nutritionfacts.org/video/breast-cancer-survival-vegetable/"}}
{"_id": "PLAIN-2698", "text": "Prostate Cancer Survival: The A/V Ratio", "metadata": {"url": "http://nutritionfacts.org/video/prostate-cancer-survival-the-av-ratio/"}}
{"_id": "PLAIN-2701", "text": "Methionine Restriction as a Life Extension Strategy", "metadata": {"url": "http://nutritionfacts.org/video/methionine-restriction-as-a-life-extension-strategy/"}}
{"_id": "PLAIN-2702", "text": "Starving Cancer with Methionine Restriction", "metadata": {"url": "http://nutritionfacts.org/video/starving-cancer-with-methionine-restriction/"}}
{"_id": "PLAIN-2703", "text": "Eating Outside Our Kingdom", "metadata": {"url": "http://nutritionfacts.org/video/eating-outside-our-kingdom/"}}
{"_id": "PLAIN-2704", "text": "Poultry Exposure Tied to Liver and Pancreatic Cancer", "metadata": {"url": "http://nutritionfacts.org/video/poultry-exposure-tied-to-liver-and-pancreatic-cancer/"}}
{"_id": "PLAIN-2705", "text": "Eating Better to Look Better", "metadata": {"url": "http://nutritionfacts.org/video/eating-better-to-look-better/"}}
{"_id": "PLAIN-2706", "text": "Changing Our Taste Buds", "metadata": {"url": "http://nutritionfacts.org/video/changing-our-taste-buds/"}}
{"_id": "PLAIN-2707", "text": "Tricks to Get Adults to Eat Healthier", "metadata": {"url": "http://nutritionfacts.org/video/tricks-to-get-adults-to-eat-healthier/"}}
{"_id": "PLAIN-2708", "text": "Tricks to Get Kids to Eat Healthier at Home", "metadata": {"url": "http://nutritionfacts.org/video/tricks-to-get-kids-to-eat-healthier-at-home/"}}
{"_id": "PLAIN-2711", "text": "Treating ADHD Without Stimulants", "metadata": {"url": "http://nutritionfacts.org/video/treating-adhd-without-stimulants/"}}
{"_id": "PLAIN-2712", "text": "Butter-Flavored Microwave Popcorn or Breathing", "metadata": {"url": "http://nutritionfacts.org/video/butter-flavored-microwave-popcorn-or-breathing/"}}
{"_id": "PLAIN-2713", "text": "Pistachio Nuts for Erectile Dysfunction", "metadata": {"url": "http://nutritionfacts.org/video/pistachio-nuts-for-erectile-dysfunction/"}}
{"_id": "PLAIN-2714", "text": "50 Shades of Greens", "metadata": {"url": "http://nutritionfacts.org/video/50-shades-of-greens/"}}
{"_id": "PLAIN-2715", "text": "Survival of the Firmest: Erectile Dysfunction and Death", "metadata": {"url": "http://nutritionfacts.org/video/survival-of-the-firmest-erectile-dysfunction-and-death/"}}
{"_id": "PLAIN-2716", "text": "Which Seaweed is Most Protective Against Breast Cancer?", "metadata": {"url": "http://nutritionfacts.org/video/which-seaweed-is-most-protective-against-breast-cancer/"}}
{"_id": "PLAIN-2717", "text": "Preventing Exercise-Induced Oxidative Stress With Watercress", "metadata": {"url": "http://nutritionfacts.org/video/preventing-exercise-induced-oxidative-stress-with-watercress/"}}
{"_id": "PLAIN-2718", "text": "Reducing Muscle Soreness With Berries", "metadata": {"url": "http://nutritionfacts.org/video/reducing-muscle-soreness-with-berries/"}}
{"_id": "PLAIN-2721", "text": "Infant Seizures Linked to Mother's Spirulina Use", "metadata": {"url": "http://nutritionfacts.org/video/infant-seizures-linked-to-mothers-spirulina-use/"}}
{"_id": "PLAIN-2722", "text": "Safety of Noni and Mangosteen Juice", "metadata": {"url": "http://nutritionfacts.org/video/safety-of-noni-and-mangosteen-juice/"}}
{"_id": "PLAIN-2723", "text": "Is Carrageenan Safe?", "metadata": {"url": "http://nutritionfacts.org/video/is-carrageenan-safe/"}}
{"_id": "PLAIN-2724", "text": "Dietary Treatment for Painful Menstrual Periods", "metadata": {"url": "http://nutritionfacts.org/video/dietary-treatment-for-painful-menstrual-periods/"}}
{"_id": "PLAIN-2725", "text": "Cayenne Pepper for Irritable Bowel Syndrome and Chronic Indigestion", "metadata": {"url": "http://nutritionfacts.org/video/cayenne-pepper-for-irritable-bowel-syndrome-and-chronic-indigestion/"}}
{"_id": "PLAIN-2726", "text": "Hot Sauce in the Nose for Cluster Headaches?", "metadata": {"url": "http://nutritionfacts.org/video/hot-sauce-in-the-nose-for-cluster-headaches/"}}
{"_id": "PLAIN-2727", "text": "Tart Cherries for Insomnia", "metadata": {"url": "http://nutritionfacts.org/video/tart-cherries-for-insomnia/"}}
{"_id": "PLAIN-2728", "text": "Kiwifruit for Insomnia", "metadata": {"url": "http://nutritionfacts.org/video/kiwifruit-for-insomnia/"}}
{"_id": "PLAIN-2731", "text": "Why Might Vegetarians Have Less HPV?", "metadata": {"url": "http://nutritionfacts.org/video/why-might-vegetarians-have-less-hpv/"}}
{"_id": "PLAIN-2732", "text": "Past the Age of Miracles: Facing a Post-Antibiotic Age", "metadata": {"url": "http://nutritionfacts.org/video/past-the-age-of-miracles-facing-a-post-antibiotic-age/"}}
{"_id": "PLAIN-2733", "text": "Beans and the Second Meal Effect", "metadata": {"url": "http://nutritionfacts.org/video/beans-and-the-second-meal-effect/"}}
{"_id": "PLAIN-2734", "text": "Eggs and Cholesterol: Patently False and Misleading Claims", "metadata": {"url": "http://nutritionfacts.org/video/eggs-and-cholesterol-patently-false-and-misleading-claims/"}}
{"_id": "PLAIN-2735", "text": "Male Fertility and Diet", "metadata": {"url": "http://nutritionfacts.org/video/male-fertility-and-diet/"}}
{"_id": "PLAIN-2736", "text": "Trans Fat In Meat And Dairy", "metadata": {"url": "http://nutritionfacts.org/video/trans-fat-in-meat-and-dairy/"}}
{"_id": "PLAIN-2737", "text": "Reducing Radiation Damage With Ginger & Lemon Balm", "metadata": {"url": "http://nutritionfacts.org/video/reducing-radiation-damage-with-ginger-and-lemon-balm/"}}
{"_id": "PLAIN-2738", "text": "Mediating Radiation Exposure From Airline Travel", "metadata": {"url": "http://nutritionfacts.org/video/mediating-radiation-exposure-from-airline-travel/"}}
{"_id": "PLAIN-2741", "text": "Fukushima and Radioactivity in Seafood", "metadata": {"url": "http://nutritionfacts.org/video/fukushima-and-radioactivity-in-seafood/"}}
{"_id": "PLAIN-2742", "text": "Childhood Tea Drinking May Increase Fluorosis Risk", "metadata": {"url": "http://nutritionfacts.org/video/childhood-tea-drinking-may-increase-fluorosis-risk/"}}
{"_id": "PLAIN-2743", "text": "Can Cranberry Juice Treat Bladder Infections?", "metadata": {"url": "http://nutritionfacts.org/video/can-cranberry-juice-treat-bladder-infections/"}}
{"_id": "PLAIN-2744", "text": "Avoiding Chicken To Avoid Bladder Infections", "metadata": {"url": "http://nutritionfacts.org/video/avoiding-chicken-to-avoid-bladder-infections/"}}
{"_id": "PLAIN-2745", "text": "Bacterial Vaginosis and Diet", "metadata": {"url": "http://nutritionfacts.org/video/bacterial-vaginosis-and-diet/"}}
{"_id": "PLAIN-2746", "text": "Lavender for Migraine Headaches", "metadata": {"url": "http://nutritionfacts.org/video/lavender-for-migraine-headaches/"}}
{"_id": "PLAIN-2747", "text": "Lavender for Generalized Anxiety Disorder", "metadata": {"url": "http://nutritionfacts.org/video/lavender-for-generalized-anxiety-disorder/"}}
{"_id": "PLAIN-2748", "text": "Gut Feelings: Probiotics and Mental Health", "metadata": {"url": "http://nutritionfacts.org/video/gut-feelings-probiotics-and-mental-health/"}}
{"_id": "PLAIN-2751", "text": "Preventing and Treating Diarrhea with Probiotics", "metadata": {"url": "http://nutritionfacts.org/video/preventing-and-treating-diarrhea-with-probiotics/"}}
{"_id": "PLAIN-2752", "text": "Breast Cancer Risk: Red Wine vs. White Wine", "metadata": {"url": "http://nutritionfacts.org/video/breast-cancer-risk-red-wine-vs-white-wine/"}}
{"_id": "PLAIN-2753", "text": "Boosting Immunity While Reducing Inflammation", "metadata": {"url": "http://nutritionfacts.org/video/boosting-immunity-while-reducing-inflammation/"}}
{"_id": "PLAIN-2754", "text": "Black Raspberries versus Oral Cancer", "metadata": {"url": "http://nutritionfacts.org/video/black-raspberries-versus-oral-cancer/"}}
{"_id": "PLAIN-2755", "text": "Strawberries versus Esophageal Cancer", "metadata": {"url": "http://nutritionfacts.org/video/strawberries-versus-esophageal-cancer/"}}
{"_id": "PLAIN-2756", "text": "Cranberries versus Cancer", "metadata": {"url": "http://nutritionfacts.org/video/cranberries-versus-cancer/"}}
{"_id": "PLAIN-2757", "text": "Which Fruit Fights Cancer Better?", "metadata": {"url": "http://nutritionfacts.org/video/which-fruit-fights-cancer-better/"}}
{"_id": "PLAIN-2758", "text": "The Lie That Heals: Should Doctors Give Placebos?", "metadata": {"url": "http://nutritionfacts.org/video/the-lie-that-heals-should-doctors-give-placebos/"}}
{"_id": "PLAIN-2761", "text": "Does a Drink Of Water Make Children Smarter?", "metadata": {"url": "http://nutritionfacts.org/video/does-a-drink-of-water-make-children-smarter/"}}
{"_id": "PLAIN-2762", "text": "Flax Seeds For Breast Pain", "metadata": {"url": "http://nutritionfacts.org/video/flax-seeds-for-breast-pain/"}}
{"_id": "PLAIN-2763", "text": "Carnitine, Choline, Cancer and Cholesterol: The TMAO Connection", "metadata": {"url": "http://nutritionfacts.org/video/carnitine-choline-cancer-and-cholesterol-the-tmao-connection/"}}
{"_id": "PLAIN-2764", "text": "Plant-Based Diets For Breast Pain", "metadata": {"url": "http://nutritionfacts.org/video/plant-based-diets-for-breast-pain/"}}
{"_id": "PLAIN-2765", "text": "The Safety of Tarragon", "metadata": {"url": "http://nutritionfacts.org/video/the-safety-of-tarragon/"}}
{"_id": "PLAIN-2766", "text": "Don't Eat Too Much Nutmeg", "metadata": {"url": "http://nutritionfacts.org/video/dont-eat-too-much-nutmeg/"}}
{"_id": "PLAIN-2767", "text": "Update on Cinnamon for Blood Sugar Control", "metadata": {"url": "http://nutritionfacts.org/video/update-on-cinnamon-for-blood-sugar-control/"}}
{"_id": "PLAIN-2768", "text": "Can Cellulite Be Treated With Diet?", "metadata": {"url": "http://nutritionfacts.org/video/can-cellulite-be-treated-with-diet/"}}
{"_id": "PLAIN-2771", "text": "Flaxseeds & Breast Cancer Survival: Epidemiological Evidence", "metadata": {"url": "http://nutritionfacts.org/video/flaxseeds-breast-cancer-survival-epidemiological-evidence/"}}
{"_id": "PLAIN-2772", "text": "Flaxseeds & Breast Cancer Prevention", "metadata": {"url": "http://nutritionfacts.org/video/flaxseeds-breast-cancer-prevention/"}}
{"_id": "PLAIN-2773", "text": "Fiber vs. Breast Cancer", "metadata": {"url": "http://nutritionfacts.org/video/fiber-vs-breast-cancer/"}}
{"_id": "PLAIN-2774", "text": "Flaxseeds For Sensitive Skin", "metadata": {"url": "http://nutritionfacts.org/video/flaxseeds-for-sensitive-skin/"}}
{"_id": "PLAIN-2775", "text": "Flaxseed vs. Diabetes", "metadata": {"url": "http://nutritionfacts.org/video/flaxseed-vs-diabetes/"}}
{"_id": "PLAIN-2776", "text": "Was It the Flaxseed, Fat Restriction, or Both?", "metadata": {"url": "http://nutritionfacts.org/video/was-it-the-flaxseed-fat-restriction-or-both/"}}
{"_id": "PLAIN-2777", "text": "Flaxseed vs. Prostate Cancer", "metadata": {"url": "http://nutritionfacts.org/video/flaxseed-vs-prostate-cancer/"}}
{"_id": "PLAIN-2778", "text": "Salmonella in Chicken & Turkey: Deadly But Not Illegal", "metadata": {"url": "http://nutritionfacts.org/video/salmonella-in-chicken-turkey-deadly-but-not-illegal/"}}
{"_id": "PLAIN-2781", "text": "Prunes vs. Metamucil vs. Vegan Diet", "metadata": {"url": "http://nutritionfacts.org/video/prunes-vs-metamucil-vs-vegan-diet/"}}
{"_id": "PLAIN-2782", "text": "Dried Apples, Dates, Figs or Prunes for Cholesterol?", "metadata": {"url": "http://nutritionfacts.org/video/dried-apples-dates-figs-or-prunes-for-cholesterol/"}}
{"_id": "PLAIN-2783", "text": "Eggs vs. Cigarettes in Atherosclerosis", "metadata": {"url": "http://nutritionfacts.org/video/eggs-vs-cigarettes-in-atherosclerosis/"}}
{"_id": "PLAIN-2784", "text": "Herbal Tea Update: Rooibos & Nettle", "metadata": {"url": "http://nutritionfacts.org/video/herbal-tea-update-rooibos-nettle/"}}
{"_id": "PLAIN-2785", "text": "Herbal Tea Update: Hibiscus", "metadata": {"url": "http://nutritionfacts.org/video/herbal-tea-update-hibiscus/"}}
{"_id": "PLAIN-2786", "text": "Treating Parkinson's Disease With Diet", "metadata": {"url": "http://nutritionfacts.org/video/treating-parkinsons-disease-with-diet/"}}
{"_id": "PLAIN-2787", "text": "Preventing Parkinson's Disease With Diet", "metadata": {"url": "http://nutritionfacts.org/video/preventing-parkinsons-disease-with-diet/"}}
{"_id": "PLAIN-2788", "text": "Clinical Studies on Acai Berries", "metadata": {"url": "http://nutritionfacts.org/video/clinical-studies-on-acai-berries/"}}
{"_id": "PLAIN-2791", "text": "Can Gargling Prevent The Common Cold?", "metadata": {"url": "http://nutritionfacts.org/video/can-gargling-prevent-the-common-cold/"}}
{"_id": "PLAIN-2792", "text": "Are Cats or Dogs More Protective For Children's Health?", "metadata": {"url": "http://nutritionfacts.org/video/are-cats-or-dogs-more-protective-for-childrens-health/"}}
{"_id": "PLAIN-2793", "text": "Foodborne Rabies", "metadata": {"url": "http://nutritionfacts.org/video/foodborne-rabies/"}}
{"_id": "PLAIN-2794", "text": "Is Vitamin D3 Better Than D2?", "metadata": {"url": "http://nutritionfacts.org/video/is-vitamin-d3-better-than-d2/"}}
{"_id": "PLAIN-2795", "text": "Does Coconut Oil Clog Arteries?", "metadata": {"url": "http://nutritionfacts.org/video/does-coconut-oil-clog-arteries/"}}
{"_id": "PLAIN-2796", "text": "Does Coconut Oil Cure Alzheimer's?", "metadata": {"url": "http://nutritionfacts.org/video/does-coconut-oil-cure-alzheimers/"}}
{"_id": "PLAIN-2797", "text": "Plant-Based Diets: Dental Health", "metadata": {"url": "http://nutritionfacts.org/video/plant-based-diets-dental-health/"}}
{"_id": "PLAIN-2798", "text": "Plant-Based Diets: Oral Health", "metadata": {"url": "http://nutritionfacts.org/video/plant-based-diets-oral-health/"}}
{"_id": "PLAIN-2801", "text": "Cancer, Interrupted: Garlic & Flavonoids", "metadata": {"url": "http://nutritionfacts.org/video/cancer-interrupted-garlic-flavonoids/"}}
{"_id": "PLAIN-2802", "text": "Cancer, Interrupted: Green Tea", "metadata": {"url": "http://nutritionfacts.org/video/cancer-interrupted-green-tea/"}}
{"_id": "PLAIN-2803", "text": "Heterocyclic Amines in Eggs, Cheese, and Creatine?", "metadata": {"url": "http://nutritionfacts.org/video/heterocyclic-amines-in-eggs-cheese-and-creatine/"}}
{"_id": "PLAIN-2804", "text": "Reducing Cancer Risk In Meateaters", "metadata": {"url": "http://nutritionfacts.org/video/reducing-cancer-risk-in-meateaters/"}}
{"_id": "PLAIN-2805", "text": "PhIP: The Three Strikes Breast Carcinogen", "metadata": {"url": "http://nutritionfacts.org/video/phip-the-three-strikes-breast-carcinogen/"}}
{"_id": "PLAIN-2806", "text": "Estrogenic Cooked Meat Carcinogens", "metadata": {"url": "http://nutritionfacts.org/video/estrogenic-cooked-meat-carcinogens/"}}
{"_id": "PLAIN-2807", "text": "Fibromyalgia vs. Mostly Raw & Mostly Vegetarian Diets", "metadata": {"url": "http://nutritionfacts.org/video/fibromyalgia-vs-mostly-raw-mostly-vegetarian-diets/"}}
{"_id": "PLAIN-2808", "text": "Fibromyalgia vs. Vegetarian & Raw Vegan Diets", "metadata": {"url": "http://nutritionfacts.org/video/fibromyalgia-vs-vegetarian-raw-vegan-diets/"}}
{"_id": "PLAIN-2811", "text": "Flesh and Fructose", "metadata": {"url": "http://nutritionfacts.org/video/flesh-and-fructose/"}}
{"_id": "PLAIN-2812", "text": "Miocene Meteorites and Uric Acid", "metadata": {"url": "http://nutritionfacts.org/video/miocene-meteorites-and-uric-acid/"}}
{"_id": "PLAIN-2813", "text": "Tree Nuts or Peanuts for Breast Cancer Prevention?", "metadata": {"url": "http://nutritionfacts.org/video/tree-nuts-or-peanuts-for-breast-cancer-prevention/"}}
{"_id": "PLAIN-2814", "text": "Preventing Breast Cancer By Any Greens Necessary", "metadata": {"url": "http://nutritionfacts.org/video/preventing-breast-cancer-by-any-greens-necessary/"}}
{"_id": "PLAIN-2815", "text": "Why Do Asian Women Have Less Breast Cancer?", "metadata": {"url": "http://nutritionfacts.org/video/why-do-asian-women-have-less-breast-cancer/"}}
{"_id": "PLAIN-2816", "text": "Breast Cancer vs. Mushrooms", "metadata": {"url": "http://nutritionfacts.org/video/breast-cancer-vs-mushrooms/"}}
{"_id": "PLAIN-2817", "text": "Whole Grains May Work As Well As Drugs", "metadata": {"url": "http://nutritionfacts.org/video/whole-grains-may-work-as-well-as-drugs/"}}
{"_id": "PLAIN-2818", "text": "Metabolic Syndrome and Plant-Based Diets", "metadata": {"url": "http://nutritionfacts.org/video/metabolic-syndrome-and-plant-based-diets/"}}
{"_id": "PLAIN-2821", "text": "98% of American Diets Potassium Deficient", "metadata": {"url": "http://nutritionfacts.org/video/98-of-american-diets-potassium-deficient/"}}
{"_id": "PLAIN-2822", "text": "Meat May Exceed Daily Allowance of Irony", "metadata": {"url": "http://nutritionfacts.org/video/meat-may-exceed-daily-allowance-of-irony/"}}
{"_id": "PLAIN-2823", "text": "Nonhuman Molecules Lining Our Arteries", "metadata": {"url": "http://nutritionfacts.org/video/nonhuman-molecules-lining-our-arteries/"}}
{"_id": "PLAIN-2824", "text": "How Tumors Use Meat to Grow: Xeno-Autoantibodies", "metadata": {"url": "http://nutritionfacts.org/video/how-tumors-use-meat-to-grow-xeno-autoantibodies/"}}
{"_id": "PLAIN-2825", "text": "The Inflammatory Meat Molecule Neu5Gc", "metadata": {"url": "http://nutritionfacts.org/video/the-inflammatory-meat-molecule-neu5gc/"}}
{"_id": "PLAIN-2826", "text": "Clonal Deletion Theory of Immunity", "metadata": {"url": "http://nutritionfacts.org/video/clonal-deletion-theory-of-immunity/"}}
{"_id": "PLAIN-2827", "text": "Clonal Selection Theory of Immunity", "metadata": {"url": "http://nutritionfacts.org/video/clonal-selection-theory-of-immunity/"}}
{"_id": "PLAIN-2828", "text": "Cancer as an Autoimmune Disease", "metadata": {"url": "http://nutritionfacts.org/video/cancer-as-an-autoimmune-disease/"}}
{"_id": "PLAIN-2831", "text": "How Diet Soda Could Make Us Gain Weight", "metadata": {"url": "http://nutritionfacts.org/video/how-diet-soda-could-make-us-gain-weight/"}}
{"_id": "PLAIN-2832", "text": "Erythritol May Be a Sweet Antioxidant", "metadata": {"url": "http://nutritionfacts.org/video/erythritol-may-be-a-sweet-antioxidant/"}}
{"_id": "PLAIN-2833", "text": "Diet Soda and Preterm Birth", "metadata": {"url": "http://nutritionfacts.org/video/diet-soda-and-preterm-birth/"}}
{"_id": "PLAIN-2834", "text": "Aspartame-Induced Fibromyalgia", "metadata": {"url": "http://nutritionfacts.org/video/aspartame-induced-fibromyalgia/"}}
{"_id": "PLAIN-2835", "text": "Yersinia in Pork", "metadata": {"url": "http://nutritionfacts.org/video/yersinia-in-pork/"}}
{"_id": "PLAIN-2836", "text": "Ractopamine in Pork", "metadata": {"url": "http://nutritionfacts.org/video/ractopamine-in-pork/"}}
{"_id": "PLAIN-2837", "text": "Meat Mythcrushers", "metadata": {"url": "http://nutritionfacts.org/video/meat-mythcrushers/"}}
{"_id": "PLAIN-2838", "text": "Antioxidants Sprouting Up", "metadata": {"url": "http://nutritionfacts.org/video/antioxidants-sprouting-up/"}}
{"_id": "PLAIN-2841", "text": "Standing Up for Your Health", "metadata": {"url": "http://nutritionfacts.org/video/standing-up-for-your-health/"}}
{"_id": "PLAIN-2842", "text": "Preventing Wrinkles with Diet", "metadata": {"url": "http://nutritionfacts.org/video/preventing-wrinkles-with-diet/"}}
{"_id": "PLAIN-2843", "text": "Beauty Is More Than Skin Deep", "metadata": {"url": "http://nutritionfacts.org/video/beauty-is-more-than-skin-deep/"}}
{"_id": "PLAIN-2844", "text": "Gerson-style Therapy vs. Chemotherapy", "metadata": {"url": "http://nutritionfacts.org/video/gerson-therapy-vs-chemotherapy/"}}
{"_id": "PLAIN-2845", "text": "Gerson Therapy for Cancer", "metadata": {"url": "http://nutritionfacts.org/video/gerson-therapy-for-cancer/"}}
{"_id": "PLAIN-2846", "text": "Plant-Based Bioidentical Hormones", "metadata": {"url": "http://nutritionfacts.org/video/plant-based-bioidentical-hormones/"}}
{"_id": "PLAIN-2847", "text": "Changing Protein Recommendations?", "metadata": {"url": "http://nutritionfacts.org/video/changing-protein-recommendations/"}}
{"_id": "PLAIN-2848", "text": "Ergothioneine: A New Vitamin?", "metadata": {"url": "http://nutritionfacts.org/video/ergothioneine-a-new-vitamin/"}}
{"_id": "PLAIN-2851", "text": "Lowering Dietary Antibiotic Intake", "metadata": {"url": "http://nutritionfacts.org/video/lowering-dietary-antibiotic-intake/"}}
{"_id": "PLAIN-2852", "text": "The Wrong Way to Detox", "metadata": {"url": "http://nutritionfacts.org/video/the-wrong-way-to-detox/"}}
{"_id": "PLAIN-2853", "text": "The Best Baby Formula", "metadata": {"url": "http://nutritionfacts.org/video/the-best-baby-formula/"}}
{"_id": "PLAIN-2854", "text": "Plants vs. Pesticides", "metadata": {"url": "http://nutritionfacts.org/video/plants-vs-pesticides/"}}
{"_id": "PLAIN-2855", "text": "Food Sources of Perfluorochemicals", "metadata": {"url": "http://nutritionfacts.org/video/food-sources-of-perfluorochemicals/"}}
{"_id": "PLAIN-2856", "text": "How Fast Can Children Detoxify from PCBs?", "metadata": {"url": "http://nutritionfacts.org/video/how-fast-can-children-detoxify-from-pcbs/"}}
{"_id": "PLAIN-2857", "text": "DDT in Umbilical Cord Blood", "metadata": {"url": "http://nutritionfacts.org/video/ddt-in-umbilical-cord-blood/"}}
{"_id": "PLAIN-2858", "text": "Food Sources of Flame Retardant Chemicals", "metadata": {"url": "http://nutritionfacts.org/video/food-sources-of-flame-retardant-chemicals/"}}
{"_id": "PLAIN-2861", "text": "Pesticides in Chinese Bamboo Shoots", "metadata": {"url": "http://nutritionfacts.org/video/pesticides-in-chinese-bamboo-shoots/"}}
{"_id": "PLAIN-2862", "text": "President's Cancer Panel Report on Environmental Risk", "metadata": {"url": "http://nutritionfacts.org/video/presidents-cancer-panel-report-on-environmental-risk/"}}
{"_id": "PLAIN-2863", "text": "\ufeffCDC Report on Environmental Chemical Exposure", "metadata": {"url": "http://nutritionfacts.org/video/%ef%bb%bfcdc-report-on-environmental-chemical-exposure/"}}
{"_id": "PLAIN-2864", "text": "Saffron vs. Prozac", "metadata": {"url": "http://nutritionfacts.org/video/saffron-vs-prozac/"}}
{"_id": "PLAIN-2865", "text": "Wake Up and Smell the Saffron", "metadata": {"url": "http://nutritionfacts.org/video/wake-up-and-smell-the-saffron/"}}
{"_id": "PLAIN-2866", "text": "Saffron for the Treatment of PMS", "metadata": {"url": "http://nutritionfacts.org/video/saffron-for-the-treatment-of-pms/"}}
{"_id": "PLAIN-2867", "text": "Eating Green to Prevent Cancer", "metadata": {"url": "http://nutritionfacts.org/video/eating-green-to-prevent-cancer/"}}
{"_id": "PLAIN-2868", "text": "Bug App\u00e9tit: Barriers to Entomophagy", "metadata": {"url": "http://nutritionfacts.org/video/bug-appetit-barriers-to-entomophagy/"}}
{"_id": "PLAIN-2871", "text": "Modern Meat Not Ahead of the Game", "metadata": {"url": "http://nutritionfacts.org/video/modern-meat-not-ahead-of-the-game/"}}
{"_id": "PLAIN-2872", "text": "Paleolithic Lessons", "metadata": {"url": "http://nutritionfacts.org/video/paleolithic-lessons/"}}
{"_id": "PLAIN-2873", "text": "Plant-Based Bodybuilding", "metadata": {"url": "http://nutritionfacts.org/video/plant-based-bodybuilding/"}}
{"_id": "PLAIN-2874", "text": "How Much Soy Is Too Much?", "metadata": {"url": "http://nutritionfacts.org/video/how-much-soy-is-too-much/"}}
{"_id": "PLAIN-2875", "text": "Too Much Soy May Neutralize Benefits", "metadata": {"url": "http://nutritionfacts.org/video/too-much-soy-may-neutralize-plant-based-benefits/"}}
{"_id": "PLAIN-2876", "text": "Animalistic Plant Proteins", "metadata": {"url": "http://nutritionfacts.org/video/animalistic-plant-proteins/"}}
{"_id": "PLAIN-2877", "text": "Higher Quality May Mean Higher Risk", "metadata": {"url": "http://nutritionfacts.org/video/higher-quality-may-mean-higher-risk/"}}
{"_id": "PLAIN-2878", "text": "Protein Intake & IGF-1 Production", "metadata": {"url": "http://nutritionfacts.org/video/protein-intake-and-igf-1-production/"}}
{"_id": "PLAIN-2881", "text": "Cancer-Proofing Mutation", "metadata": {"url": "http://nutritionfacts.org/video/cancer-proofing-mutation/"}}
{"_id": "PLAIN-2882", "text": "IGF-1 as One-Stop Cancer Shop", "metadata": {"url": "http://nutritionfacts.org/video/igf-1-as-one-stop-cancer-shop/"}}
{"_id": "PLAIN-2883", "text": "Prostate vs. Plants", "metadata": {"url": "http://nutritionfacts.org/video/prostate-versus-plants/"}}
{"_id": "PLAIN-2884", "text": "Some Prostates Are Larger than Others", "metadata": {"url": "http://nutritionfacts.org/video/some-prostates-are-larger-than-others/"}}
{"_id": "PLAIN-2885", "text": "Is It the Diet, the Exercise, or Both?", "metadata": {"url": "http://nutritionfacts.org/video/is-it-the-diet-the-exercise-or-both/"}}
{"_id": "PLAIN-2886", "text": "Ex Vivo Cancer Proliferation Bioassay", "metadata": {"url": "http://nutritionfacts.org/video/developing-an-ex-vivo-cancer-proliferation-bioassay/"}}
{"_id": "PLAIN-2887", "text": "Engineering a Cure", "metadata": {"url": "http://nutritionfacts.org/video/engineering-a-cure/"}}
{"_id": "PLAIN-2888", "text": "Slimming the Gecko", "metadata": {"url": "http://nutritionfacts.org/video/slimming-the-gecko-2/"}}
{"_id": "PLAIN-2891", "text": "Diet Pills Do Fat a Lot of Good", "metadata": {"url": "http://nutritionfacts.org/video/diet-pills-do-a-fat-lot-of-good/"}}
{"_id": "PLAIN-2892", "text": "Biblical Daniel Fast Put to the Test", "metadata": {"url": "http://nutritionfacts.org/video/biblical-daniel-fast-put-to-the-test/"}}
{"_id": "PLAIN-2893", "text": "Tightening the Bible Belt", "metadata": {"url": "http://nutritionfacts.org/video/tightening-the-bible-belt/"}}
{"_id": "PLAIN-2894", "text": "Waist Circumference Less Than Half Your Height", "metadata": {"url": "http://nutritionfacts.org/video/keep-your-waist-circumference-to-less-than-half-your-height/"}}
{"_id": "PLAIN-2895", "text": "Cattlemen\u2019s Association Has Beef With Study", "metadata": {"url": "http://nutritionfacts.org/video/cattlemens-association-has-beef-with-epic-study/"}}
{"_id": "PLAIN-2896", "text": "Meat and Weight Gain in the PANACEA Study", "metadata": {"url": "http://nutritionfacts.org/video/meat-and-weight-gain-in-the-panacea-study/"}}
{"_id": "PLAIN-2897", "text": "Diet vs. Exercise for Weight Loss", "metadata": {"url": "http://nutritionfacts.org/video/diet-or-exercise-whats-more-important-for-weight-loss/"}}
{"_id": "PLAIN-2898", "text": "The Ice Diet", "metadata": {"url": "http://nutritionfacts.org/video/the-ice-diet/"}}
{"_id": "PLAIN-2901", "text": "Fawning Over Flora", "metadata": {"url": "http://nutritionfacts.org/video/fawning-over-flora/"}}
{"_id": "PLAIN-2902", "text": "Fat Burning Via Flavonoids", "metadata": {"url": "http://nutritionfacts.org/video/fat-burning-via-flavonoids/"}}
{"_id": "PLAIN-2903", "text": "Fat Burning Via Arginine", "metadata": {"url": "http://nutritionfacts.org/video/fat-burning-via-arginine/"}}
{"_id": "PLAIN-2904", "text": "Testing the Fat Burning Theory", "metadata": {"url": "http://nutritionfacts.org/video/testing-the-fat-burning-theory/"}}
{"_id": "PLAIN-2905", "text": "Testing the Dietary Compensation Theory", "metadata": {"url": "http://nutritionfacts.org/video/testing-the-dietary-compensation-theory/"}}
{"_id": "PLAIN-2906", "text": "Testing the Pistachio Principle", "metadata": {"url": "http://nutritionfacts.org/video/testing-the-pistachio-principle/"}}
{"_id": "PLAIN-2907", "text": "Solving the Mystery of the Missing Calories", "metadata": {"url": "http://nutritionfacts.org/video/solving-the-mystery-of-the-missing-calories/"}}
{"_id": "PLAIN-2908", "text": "Nuts and Obesity: The Weight of Evidence", "metadata": {"url": "http://nutritionfacts.org/video/nuts-and-obesity-the-weight-of-evidence/"}}
{"_id": "PLAIN-2911", "text": "How Phytosterols Lower Cholesterol", "metadata": {"url": "http://nutritionfacts.org/video/how-phytosterols-lower-cholesterol/"}}
{"_id": "PLAIN-2912", "text": "How Fiber Lowers Cholesterol", "metadata": {"url": "http://nutritionfacts.org/video/how-fiber-lowers-cholesterol/"}}
{"_id": "PLAIN-2913", "text": "Nuts and Bolts of Cholesterol Lowering", "metadata": {"url": "http://nutritionfacts.org/video/nuts-and-bolts-of-cholesterol-lowering/"}}
{"_id": "PLAIN-2914", "text": "Diet Versus Drugs for High Cholesterol", "metadata": {"url": "http://nutritionfacts.org/video/diet-versus-drugs-for-high-cholesterol/"}}
{"_id": "PLAIN-2915", "text": "Black Versus English Walnuts", "metadata": {"url": "http://nutritionfacts.org/video/black-versus-english-walnuts/"}}
{"_id": "PLAIN-2916", "text": "The True Shelf-Life of Cooking Oils", "metadata": {"url": "http://nutritionfacts.org/video/the-true-shelf-life-of-cooking-oils/"}}
{"_id": "PLAIN-2917", "text": "The Best Way to Boost Serotonin", "metadata": {"url": "http://nutritionfacts.org/video/the-best-way-to-boost-serotonin/"}}
{"_id": "PLAIN-2918", "text": "A Better Way to Boost Serotonin", "metadata": {"url": "http://nutritionfacts.org/video/a-better-way-to-boost-serotonin/"}}
{"_id": "PLAIN-2921", "text": "Mineral of the Year\u2014Magnesium", "metadata": {"url": "http://nutritionfacts.org/video/mineral-of-the-year-magnesium/"}}
{"_id": "PLAIN-2922", "text": "How Do Nuts Prevent Sudden Cardiac Death?", "metadata": {"url": "http://nutritionfacts.org/video/how-do-nuts-prevent-sudden-cardiac-death/"}}
{"_id": "PLAIN-2923", "text": "Risk Associated With Iron Supplements", "metadata": {"url": "http://nutritionfacts.org/video/risk-associated-with-iron-supplements/"}}
{"_id": "PLAIN-2924", "text": "New Mineral Absorption Enhancers Found", "metadata": {"url": "http://nutritionfacts.org/video/new-mineral-absorption-enhancers-found/"}}
{"_id": "PLAIN-2925", "text": "The Benefits of Caloric Restriction Without the Actual Restricting", "metadata": {"url": "http://nutritionfacts.org/video/the-benefits-of-caloric-restriction-without-the-actual-restricting/"}}
{"_id": "PLAIN-2926", "text": "Americans Are Living Longer but Sicker Lives", "metadata": {"url": "http://nutritionfacts.org/video/americans-are-living-longer-but-sicker-lives/"}}
{"_id": "PLAIN-2927", "text": "What Women Should Eat to Live Longer", "metadata": {"url": "http://nutritionfacts.org/video/what-women-should-eat-to-live-longer/"}}
{"_id": "PLAIN-2928", "text": "Plant-Based Diets and Cellular Stress Defenses", "metadata": {"url": "http://nutritionfacts.org/video/plant-based-diets-and-cellular-stress-defenses/"}}
{"_id": "PLAIN-2931", "text": "Treating Kidney Failure Through Diet", "metadata": {"url": "http://nutritionfacts.org/video/treating-kidney-failure-through-diet/"}}
{"_id": "PLAIN-2932", "text": "Preventing Kidney Failure Through Diet", "metadata": {"url": "http://nutritionfacts.org/video/preventing-kidney-failure-through-diet/"}}
{"_id": "PLAIN-2933", "text": "Treating Genital Warts With Green Tea", "metadata": {"url": "http://nutritionfacts.org/video/treating-genital-warts-with-green-tea/"}}
{"_id": "PLAIN-2934", "text": "Treating Gorlin Syndrome With Green Tea", "metadata": {"url": "http://nutritionfacts.org/video/treating-gorlin-syndrome-with-green-tea/"}}
{"_id": "PLAIN-2935", "text": "Is Caffeinated Tea Dehydrating?", "metadata": {"url": "http://nutritionfacts.org/video/is-caffeinated-tea-dehydrating/"}}
{"_id": "PLAIN-2936", "text": "Antimutagenic Activity of Green Versus White Tea", "metadata": {"url": "http://nutritionfacts.org/video/antimutagenic-activity-of-green-versus-white-tea/"}}
{"_id": "PLAIN-2937", "text": "Dead Meat Bacteria Endotoxemia", "metadata": {"url": "http://nutritionfacts.org/video/dead-meat-bacteria-endotoxemia/"}}
{"_id": "PLAIN-2938", "text": "The Exogenous Endotoxin Theory", "metadata": {"url": "http://nutritionfacts.org/video/the-exogenous-endotoxin-theory/"}}
{"_id": "PLAIN-2941", "text": "Fighting Inflammation in a Nut Shell", "metadata": {"url": "http://nutritionfacts.org/video/fighting-inflammation-in-a-nut-shell/"}}
{"_id": "PLAIN-2942", "text": "Anti-Inflammatory Effects of Purple Potatoes", "metadata": {"url": "http://nutritionfacts.org/video/anti-inflammatory-effects-of-purple-potatoes/"}}
{"_id": "PLAIN-2943", "text": "Boosting Immunity Through Diet", "metadata": {"url": "http://nutritionfacts.org/video/boosting-immunity-through-diet/"}}
{"_id": "PLAIN-2944", "text": "Is Hydroponic Basil as Healthy?", "metadata": {"url": "http://nutritionfacts.org/video/is-hydroponic-basil-as-healthy/"}}
{"_id": "PLAIN-2945", "text": "Chamomile Tea May Not Be Safe During Pregnancy", "metadata": {"url": "http://nutritionfacts.org/video/chamomile-tea-may-not-be-safe-during-pregnancy/"}}
{"_id": "PLAIN-2946", "text": "Making Our Arteries Less Sticky", "metadata": {"url": "http://nutritionfacts.org/video/making-our-arteries-less-sticky/"}}
{"_id": "PLAIN-2947", "text": "Blocking the First Step of Heart Disease", "metadata": {"url": "http://nutritionfacts.org/video/blocking-the-first-step-of-heart-disease/"}}
{"_id": "PLAIN-2948", "text": "Arterial Acne", "metadata": {"url": "http://nutritionfacts.org/video/arterial-acne/"}}
{"_id": "PLAIN-2951", "text": "Not So Delusional Parasitosis", "metadata": {"url": "http://nutritionfacts.org/video/not-so-delusional-parasitosis/"}}
{"_id": "PLAIN-2952", "text": "Maggot Meat Spray", "metadata": {"url": "http://nutritionfacts.org/video/maggot-meat-spray/"}}
{"_id": "PLAIN-2953", "text": "Viral Meat Spray", "metadata": {"url": "http://nutritionfacts.org/video/viral-meat-spray/"}}
{"_id": "PLAIN-2954", "text": "Tongue Worm in Human Eye", "metadata": {"url": "http://nutritionfacts.org/video/tongue-worm-in-human-eye/"}}
{"_id": "PLAIN-2955", "text": "Don\u2019t Put Your Money Where Your Mouth Is", "metadata": {"url": "http://nutritionfacts.org/video/dont-put-your-money-where-your-mouth-is/"}}
{"_id": "PLAIN-2956", "text": "Handwashing Compliance of Retail Deli Workers", "metadata": {"url": "http://nutritionfacts.org/video/handwashing-compliance-of-retail-deli-workers/"}}
{"_id": "PLAIN-2957", "text": "Some Dietary Supplements May Be More Than a Waste of Money", "metadata": {"url": "http://nutritionfacts.org/video/some-dietary-supplements-may-be-more-than-a-waste-of-money/"}}
{"_id": "PLAIN-2958", "text": "Heavy Metals in Protein Powder Supplements", "metadata": {"url": "http://nutritionfacts.org/video/heavy-metals-in-protein-powder-supplements/"}}
{"_id": "PLAIN-2961", "text": "Dangerous Advice From Health Food Store Employees", "metadata": {"url": "http://nutritionfacts.org/video/dangerous-advice-from-health-food-store-employees/"}}
{"_id": "PLAIN-2962", "text": "Bad Advice From Health Food Store Employees", "metadata": {"url": "http://nutritionfacts.org/video/bad-advice-from-health-food-store-employees/"}}
{"_id": "PLAIN-2963", "text": "Health Food Store Supplement Advice", "metadata": {"url": "http://nutritionfacts.org/video/health-food-store-supplement-advice/"}}
{"_id": "PLAIN-2964", "text": "Which Brand of Tuna Has the Most Mercury?", "metadata": {"url": "http://nutritionfacts.org/video/which-brand-of-tuna-has-the-most-mercury/"}}
{"_id": "PLAIN-2965", "text": "Hair Testing for Mercury Before Considering Pregnancy", "metadata": {"url": "http://nutritionfacts.org/video/hair-testing-for-mercury-before-considering-pregnancy/"}}
{"_id": "PLAIN-2966", "text": "Red Fish, White Fish; Dark Fish, Atrial Fibrillation", "metadata": {"url": "http://nutritionfacts.org/video/red-fish-white-fish-dark-fish-atrial-fibrillation/"}}
{"_id": "PLAIN-2967", "text": "A Fine Kettle of Fluoxetine", "metadata": {"url": "http://nutritionfacts.org/video/a-fine-kettle-of-fluoxetine/"}}
{"_id": "PLAIN-2968", "text": "Amnesic Seafood Poisoning", "metadata": {"url": "http://nutritionfacts.org/video/amnesic-seafood-poisoning/"}}
{"_id": "PLAIN-2971", "text": "Prevent Glaucoma and See 27 Miles Farther", "metadata": {"url": "http://nutritionfacts.org/video/prevent-glaucoma-and-see-27-miles-farther/"}}
{"_id": "PLAIN-2972", "text": "Preventing Macular Degeneration with Diet", "metadata": {"url": "http://nutritionfacts.org/video/preventing-macular-degeneration-with-diet/"}}
{"_id": "PLAIN-2973", "text": "Garden Variety Anti-Inflammation", "metadata": {"url": "http://nutritionfacts.org/video/garden-variety-anti-inflammation/"}}
{"_id": "PLAIN-2974", "text": "Apples and Oranges: Dietary Diversity", "metadata": {"url": "http://nutritionfacts.org/video/apples-and-oranges-dietary-diversity/"}}
{"_id": "PLAIN-2975", "text": "The Acne-Promoting Effects of Milk", "metadata": {"url": "http://nutritionfacts.org/video/the-acne-promoting-effects-of-milk/"}}
{"_id": "PLAIN-2976", "text": "Skim Milk and Acne", "metadata": {"url": "http://nutritionfacts.org/video/skim-milk-and-acne/"}}
{"_id": "PLAIN-2977", "text": "National Dairy Council on Acne and Milk", "metadata": {"url": "http://nutritionfacts.org/video/national-dairy-council-on-acne-and-milk/"}}
{"_id": "PLAIN-2978", "text": "Cow\u2019s Milk Casomorphin and Autism", "metadata": {"url": "http://nutritionfacts.org/video/cows-milk-casomorphin-and-autism/"}}
{"_id": "PLAIN-2982", "text": "Creatine Brain Fuel Supplementation", "metadata": {"url": "http://nutritionfacts.org/video/creatine-brain-fuel-supplementation/"}}
{"_id": "PLAIN-2983", "text": "When Meat Can Be a Lifesaver", "metadata": {"url": "http://nutritionfacts.org/video/when-meat-can-be-a-lifesaver/"}}
{"_id": "PLAIN-2984", "text": "Eating Healthy on the Cheap", "metadata": {"url": "http://nutritionfacts.org/video/eating-healthy-on-the-cheap/"}}
{"_id": "PLAIN-2985", "text": "Treating COPD With Diet", "metadata": {"url": "http://nutritionfacts.org/video/treating-copd-with-diet/"}}
{"_id": "PLAIN-2986", "text": "Preventing COPD With Diet", "metadata": {"url": "http://nutritionfacts.org/video/preventing-copd-with-diet/"}}
{"_id": "PLAIN-2987", "text": "The Fruit Whose Juice Is Healthier", "metadata": {"url": "http://nutritionfacts.org/video/the-fruit-whose-juice-is-healthier/"}}
{"_id": "PLAIN-2988", "text": "Raw Veggies Versus Cooked for Heart Disease", "metadata": {"url": "http://nutritionfacts.org/video/raw-veggies-versus-cooked-for-heart-disease/"}}
{"_id": "PLAIN-2989", "text": "The Safer Cinnamon", "metadata": {"url": "http://nutritionfacts.org/video/the-safer-cinnamon/"}}
{"_id": "PLAIN-2992", "text": "Cholesterol and Female Sexual Dysfunction", "metadata": {"url": "http://nutritionfacts.org/video/cholesterol-and-female-sexual-dysfunction/"}}
{"_id": "PLAIN-2993", "text": "A Treatment for Chronic Fatigue Syndrome", "metadata": {"url": "http://nutritionfacts.org/video/a-treatment-for-chronic-fatigue-syndrome/"}}
{"_id": "PLAIN-2994", "text": "Meat-Borne Infection Risk from Shopping Carts", "metadata": {"url": "http://nutritionfacts.org/video/meat-borne-infection-risk-from-shopping-carts/"}}
{"_id": "PLAIN-2995", "text": "Food Poisoning Bacteria Cross-Contamination", "metadata": {"url": "http://nutritionfacts.org/video/food-poisoning-bacteria-cross-contamination/"}}
{"_id": "PLAIN-2996", "text": "Poultry and Paralysis", "metadata": {"url": "http://nutritionfacts.org/video/poultry-and-paralysis/"}}
{"_id": "PLAIN-2997", "text": "Poultry Exposure and Neurological Disease", "metadata": {"url": "http://nutritionfacts.org/video/poultry-exposure-and-neurological-disease/"}}
{"_id": "PLAIN-2998", "text": "Carcinogenic Retrovirus Found in Eggs", "metadata": {"url": "http://nutritionfacts.org/video/carcinogenic-retrovirus-found-in-eggs/"}}
{"_id": "PLAIN-2999", "text": "Poultry and Penis Cancer", "metadata": {"url": "http://nutritionfacts.org/video/poultry-and-penis-cancer/"}}
{"_id": "PLAIN-3003", "text": "What About the Caffeine?", "metadata": {"url": "http://nutritionfacts.org/video/what-about-the-caffeine/"}}
{"_id": "PLAIN-3005", "text": "Breast Cancer Survival and Soy", "metadata": {"url": "http://nutritionfacts.org/video/breast-cancer-survival-and-soy/"}}
{"_id": "PLAIN-3006", "text": "Flax and Fecal Flora", "metadata": {"url": "http://nutritionfacts.org/video/flax-and-fecal-flora/"}}
{"_id": "PLAIN-3007", "text": "Breast Cancer Survival and Lignan Intake", "metadata": {"url": "http://nutritionfacts.org/video/breast-cancer-survival-and-lignan-intake/"}}
{"_id": "PLAIN-3008", "text": "Breast Cancer Survival and Trans Fat", "metadata": {"url": "http://nutritionfacts.org/video/breast-cancer-survival-and-trans-fat/"}}
{"_id": "PLAIN-3009", "text": "Breast Cancer Survival, Butterfat, and Chicken", "metadata": {"url": "http://nutritionfacts.org/video/breast-cancer-survival-butterfat-and-chicken/"}}
{"_id": "PLAIN-3010", "text": "Raw Broccoli and Bladder Cancer Survival", "metadata": {"url": "http://nutritionfacts.org/video/raw-broccoli-and-bladder-cancer-survival/"}}
{"_id": "PLAIN-3012", "text": "Biggest Nutrition Bang for Your Buck", "metadata": {"url": "http://nutritionfacts.org/video/biggest-nutrition-bang-for-your-buck/"}}
{"_id": "PLAIN-3015", "text": "The Best Detox", "metadata": {"url": "http://nutritionfacts.org/video/the-best-detox/"}}
{"_id": "PLAIN-3016", "text": "How Much Broccoli Is Too Much?", "metadata": {"url": "http://nutritionfacts.org/video/how-much-broccoli-is-too-much/"}}
{"_id": "PLAIN-3017", "text": "Liver Toxicity Due to Broccoli Juice?", "metadata": {"url": "http://nutritionfacts.org/video/liver-toxicity-due-to-broccoli-juice/"}}
{"_id": "PLAIN-3019", "text": "Sulforaphane: From Broccoli to Breast", "metadata": {"url": "http://nutritionfacts.org/video/sulforaphane-from-broccoli-to-breast/"}}
{"_id": "PLAIN-3020", "text": "Broccoli Versus Breast Cancer Stem Cells", "metadata": {"url": "http://nutritionfacts.org/video/broccoli-versus-breast-cancer-stem-cells/"}}
{"_id": "PLAIN-3022", "text": "Smoking Versus Kale Juice", "metadata": {"url": "http://nutritionfacts.org/video/smoking-versus-kale-juice/"}}
{"_id": "PLAIN-3023", "text": "Kale and the Immune System", "metadata": {"url": "http://nutritionfacts.org/video/kale-and-the-immune-system/"}}
{"_id": "PLAIN-3024", "text": "Meat Additives to Diminish Toxicity", "metadata": {"url": "http://nutritionfacts.org/video/meat-additives-to-diminish-toxicity/"}}
{"_id": "PLAIN-3027", "text": "Carcinogens in the Smell of Frying Bacon", "metadata": {"url": "http://nutritionfacts.org/video/carcinogens-in-the-smell-of-frying-bacon/"}}
{"_id": "PLAIN-3028", "text": "Prevention Is Better Than Cured Meat", "metadata": {"url": "http://nutritionfacts.org/video/prevention-is-better-than-cured-meat/"}}
{"_id": "PLAIN-3029", "text": "Are Nitrates Pollutants or Nutrients?", "metadata": {"url": "http://nutritionfacts.org/video/are-nitrates-pollutants-or-nutrients/"}}
{"_id": "PLAIN-3030", "text": "Bacon and Botulism", "metadata": {"url": "http://nutritionfacts.org/video/bacon-and-botulism/"}}
{"_id": "PLAIN-3031", "text": "When Nitrites Go Bad", "metadata": {"url": "http://nutritionfacts.org/video/when-nitrites-go-bad/"}}
{"_id": "PLAIN-3032", "text": "Is Bacon Good or Is Spinach Bad?", "metadata": {"url": "http://nutritionfacts.org/video/is-bacon-good-or-is-spinach-bad/"}}
{"_id": "PLAIN-3034", "text": "Hearts Shouldn't Skip a Beet", "metadata": {"url": "http://nutritionfacts.org/video/hearts-shouldnt-skip-a-beet/"}}
{"_id": "PLAIN-3035", "text": "Pretty in Pee-nk", "metadata": {"url": "http://nutritionfacts.org/video/pretty-in-pee-nk/"}}
{"_id": "PLAIN-3038", "text": "Don't Use Antiseptic Mouthwash", "metadata": {"url": "http://nutritionfacts.org/video/dont-use-antiseptic-mouthwash/"}}
{"_id": "PLAIN-3039", "text": "Priming the Proton Pump", "metadata": {"url": "http://nutritionfacts.org/video/priming-the-proton-pump/"}}
{"_id": "PLAIN-3041", "text": "Soy Worth a Hill of Beans?", "metadata": {"url": "http://nutritionfacts.org/video/soy-worth-a-hill-of-beans/"}}
{"_id": "PLAIN-3042", "text": "New Vitamin B12 Test", "metadata": {"url": "http://nutritionfacts.org/video/new-vitamin-b12-test/"}}
{"_id": "PLAIN-3047", "text": "Plant-Based Atkins Diet", "metadata": {"url": "http://nutritionfacts.org/video/plant-based-atkins-diet/"}}
{"_id": "PLAIN-3049", "text": "Bulking Up on Antioxidants", "metadata": {"url": "http://nutritionfacts.org/video/bulking-up-on-antioxidants/"}}
{"_id": "PLAIN-3050", "text": "The Power of NO", "metadata": {"url": "http://nutritionfacts.org/video/the-power-of-no/"}}
{"_id": "PLAIN-3051", "text": "Anti-Inflammatory Antioxidants", "metadata": {"url": "http://nutritionfacts.org/video/anti-inflammatory-antioxidants/"}}
{"_id": "PLAIN-3054", "text": "Amla and Triphala Tested for Metals", "metadata": {"url": "http://nutritionfacts.org/video/amla-and-triphala-tested-for-metals/"}}
{"_id": "PLAIN-3055", "text": "Get the Lead Out", "metadata": {"url": "http://nutritionfacts.org/video/get-the-lead-out/"}}
{"_id": "PLAIN-3056", "text": "Some Ayurvedic Medicine Worse Than Lead Paint Exposure", "metadata": {"url": "http://nutritionfacts.org/video/some-ayurvedic-medicine-worse-than-lead-paint-exposure/"}}
{"_id": "PLAIN-3057", "text": "A Better Breakfast", "metadata": {"url": "http://nutritionfacts.org/video/a-better-breakfast/"}}
{"_id": "PLAIN-3058", "text": "Antioxidants in a Pinch", "metadata": {"url": "http://nutritionfacts.org/video/antioxidants-in-a-pinch/"}}
{"_id": "PLAIN-3059", "text": "Amla Versus Diabetes", "metadata": {"url": "http://nutritionfacts.org/video/amla-versus-diabetes/"}}
{"_id": "PLAIN-3060", "text": "Power Plants", "metadata": {"url": "http://nutritionfacts.org/video/power-plants/"}}
{"_id": "PLAIN-3061", "text": "Amla Versus Cancer Cell Invasion", "metadata": {"url": "http://nutritionfacts.org/video/amla-versus-cancer-cell-invasion/"}}
{"_id": "PLAIN-3064", "text": "Dried Apples Versus Cholesterol", "metadata": {"url": "http://nutritionfacts.org/video/dried-apples-versus-cholesterol/"}}
{"_id": "PLAIN-3065", "text": "Best Berries", "metadata": {"url": "http://nutritionfacts.org/video/best-berries/"}}
{"_id": "PLAIN-3066", "text": "Better Than Green Tea?", "metadata": {"url": "http://nutritionfacts.org/video/better-than-green-tea/"}}
{"_id": "PLAIN-3067", "text": "Carcinogenic Putrescine", "metadata": {"url": "http://nutritionfacts.org/video/carcinogenic-putrescine/"}}
{"_id": "PLAIN-3068", "text": "Throw Household Products Off the Scent", "metadata": {"url": "http://nutritionfacts.org/video/throw-household-products-off-the-scent/"}}
{"_id": "PLAIN-3070", "text": "Preventing Allergies in Adulthood", "metadata": {"url": "http://nutritionfacts.org/video/preventing-allergies-in-adulthood/"}}
{"_id": "PLAIN-3071", "text": "Preventing Childhood Allergies", "metadata": {"url": "http://nutritionfacts.org/video/preventing-childhood-allergies/"}}
{"_id": "PLAIN-3072", "text": "Avoiding a Sugary Grave", "metadata": {"url": "http://nutritionfacts.org/video/avoiding-a-sugary-grave/"}}
{"_id": "PLAIN-3076", "text": "Trans Fat, Saturated Fat, and Cholesterol: Tolerable Upper Intake of Zero", "metadata": {"url": "http://nutritionfacts.org/video/trans-fat-saturated-fat-and-cholesterol-tolerable-upper-intake-of-zero/"}}
{"_id": "PLAIN-3077", "text": "Fast Food: Do You Want Fries With That Lipitor?", "metadata": {"url": "http://nutritionfacts.org/video/fast-food-do-you-want-fries-with-that-lipitor/"}}
{"_id": "PLAIN-3078", "text": "Heart Attacks and Cholesterol: Purely a Question of Diet", "metadata": {"url": "http://nutritionfacts.org/video/heart-attacks-and-cholesterol-purely-a-question-of-diet/"}}
{"_id": "PLAIN-3079", "text": "Heart Attacks and Cholesterol: Agribusiness Sees It Differently", "metadata": {"url": "http://nutritionfacts.org/video/heart-attacks-and-cholesterol-agribusiness-sees-it-differently/"}}
{"_id": "PLAIN-3080", "text": "Heart Attacks and Cholesterol: Dying Under Normal Circumstances", "metadata": {"url": "http://nutritionfacts.org/video/heart-attacks-and-cholesterol-dying-under-normal-circumstances/"}}
{"_id": "PLAIN-3081", "text": "The Risks and Benefits of Neti Pot Nasal Irrigation", "metadata": {"url": "http://nutritionfacts.org/video/the-risks-and-benefits-of-neti-pot-nasal-irrigation/"}}
{"_id": "PLAIN-3082", "text": "Take Vitamin D Supplements With Meals", "metadata": {"url": "http://nutritionfacts.org/video/take-vitamin-d-supplements-with-meals/"}}
{"_id": "PLAIN-3083", "text": "Resolving the Vitamin D-Bate", "metadata": {"url": "http://nutritionfacts.org/video/resolving-the-vitamin-d-bate/"}}
{"_id": "PLAIN-3087", "text": "Vitamin D and Mortality May Be a U-shaped Curve", "metadata": {"url": "http://nutritionfacts.org/video/vitamin-d-and-mortality-may-be-a-u-shaped-curve/"}}
{"_id": "PLAIN-3088", "text": "Is Vitamin D the New Vitamin E?", "metadata": {"url": "http://nutritionfacts.org/video/is-vitamin-d-the-new-vitamin-e/"}}
{"_id": "PLAIN-3090", "text": "Vitamin D Recommendations Changed", "metadata": {"url": "http://nutritionfacts.org/video/vitamin-d-recommendations-changed/"}}
{"_id": "PLAIN-3091", "text": "Pink Juice with Green Foam", "metadata": {"url": "http://nutritionfacts.org/video/pink-juice-with-green-foam/"}}
{"_id": "PLAIN-3092", "text": "Is Pomegranate Juice That Wonderful?", "metadata": {"url": "http://nutritionfacts.org/video/is-pomegranate-juice-that-wonderful/"}}
{"_id": "PLAIN-3093", "text": "Alzheimer's and Apple Juice", "metadata": {"url": "http://nutritionfacts.org/video/alzheimers-and-apple-juice/"}}
{"_id": "PLAIN-3094", "text": "Constructing a Cognitive Portfolio", "metadata": {"url": "http://nutritionfacts.org/video/constructing-a-cognitive-portfolio/"}}
{"_id": "PLAIN-3095", "text": "Best Fruit Juice", "metadata": {"url": "http://nutritionfacts.org/video/best-fruit-juice/"}}
{"_id": "PLAIN-3098", "text": "MRSA in U.S. Retail Meat", "metadata": {"url": "http://nutritionfacts.org/video/mrsa-in-u-s-retail-meat/"}}
{"_id": "PLAIN-3099", "text": "Airborne MRSA", "metadata": {"url": "http://nutritionfacts.org/video/airborne-mrsa/"}}
{"_id": "PLAIN-3101", "text": "Infant Nearly Killed by Homeopathy", "metadata": {"url": "http://nutritionfacts.org/video/infant-nearly-killed-by-homeopathy/"}}
{"_id": "PLAIN-3102", "text": "Total Recall", "metadata": {"url": "http://nutritionfacts.org/video/total-recall/"}}
{"_id": "PLAIN-3105", "text": "Medical Associations Oppose Bill to Mandate Nutrition Training", "metadata": {"url": "http://nutritionfacts.org/video/medical-associations-oppose-bill-to-mandate-nutrition-training/"}}
{"_id": "PLAIN-3106", "text": "Nutrition Education Mandate Introduced for Doctors", "metadata": {"url": "http://nutritionfacts.org/video/nutrition-education-mandate-introduced-for-doctors/"}}
{"_id": "PLAIN-3107", "text": "Doctors Know Less Than They Think About Nutrition", "metadata": {"url": "http://nutritionfacts.org/video/doctors-know-less-than-they-think-about-nutrition/"}}
{"_id": "PLAIN-3108", "text": "Medical School Nutrition Education", "metadata": {"url": "http://nutritionfacts.org/video/medical-school-nutrition-education/"}}
{"_id": "PLAIN-3120", "text": "Food Industry \"Funding Effect\"", "metadata": {"url": "http://nutritionfacts.org/video/food-industry-funding-effect/"}}
{"_id": "PLAIN-3121", "text": "Dietary Guidelines: With a Grain of Big Salt", "metadata": {"url": "http://nutritionfacts.org/video/dietary-guidelines-with-a-grain-of-big-salt/"}}
{"_id": "PLAIN-3124", "text": "Is Potassium Sorbate Bad for You?", "metadata": {"url": "http://nutritionfacts.org/video/is-potassium-sorbate-bad-for-you/"}}
{"_id": "PLAIN-3125", "text": "Alkaline Water: a Scam?", "metadata": {"url": "http://nutritionfacts.org/video/alkaline-water-a-scam/"}}
{"_id": "PLAIN-3126", "text": "The Tomato Effect", "metadata": {"url": "http://nutritionfacts.org/video/the-tomato-effect/"}}
{"_id": "PLAIN-3127", "text": "China Study on Sudden Cardiac Death", "metadata": {"url": "http://nutritionfacts.org/video/china-study-on-sudden-cardiac-death/"}}
{"_id": "PLAIN-3128", "text": "Our Number One Killer Can Be Stopped", "metadata": {"url": "http://nutritionfacts.org/video/our-number-one-killer-can-be-stopped/"}}
{"_id": "PLAIN-3129", "text": "Resuscitating Medicare", "metadata": {"url": "http://nutritionfacts.org/video/resuscitating-medicare/"}}
{"_id": "PLAIN-3132", "text": "The Effect of Canned Tuna on Future Wages", "metadata": {"url": "http://nutritionfacts.org/video/the-effect-of-canned-tuna-on-future-wages/"}}
{"_id": "PLAIN-3133", "text": "Fish Oil in Troubled Waters", "metadata": {"url": "http://nutritionfacts.org/video/fish-oil-in-troubled-waters/"}}
{"_id": "PLAIN-3134", "text": "Chicken's Fate Is Sealed", "metadata": {"url": "http://nutritionfacts.org/video/chickens-fate-is-sealed/"}}
{"_id": "PLAIN-3135", "text": "Chicken, Eggs, and Inflammation", "metadata": {"url": "http://nutritionfacts.org/video/chicken-eggs-and-inflammation/"}}
{"_id": "PLAIN-3136", "text": "Inflammatory Remarks About Arachidonic Acid", "metadata": {"url": "http://nutritionfacts.org/video/inflammatory-remarks-about-arachidonic-acid/"}}
{"_id": "PLAIN-3137", "text": "Improving Mood Through Diet", "metadata": {"url": "http://nutritionfacts.org/video/improving-mood-through-diet/"}}
{"_id": "PLAIN-3138", "text": "Bowels of the Earth", "metadata": {"url": "http://nutritionfacts.org/video/bowels-of-the-earth/"}}
{"_id": "PLAIN-3139", "text": "Food Mass Transit", "metadata": {"url": "http://nutritionfacts.org/video/food-mass-transit/"}}
{"_id": "PLAIN-3142", "text": "Multivitamin Supplements and Breast Cancer", "metadata": {"url": "http://nutritionfacts.org/video/multivitamin-supplements-and-breast-cancer/"}}
{"_id": "PLAIN-3143", "text": "Breast Cancer Prevention: Which Mushroom Is Best?", "metadata": {"url": "http://nutritionfacts.org/video/breast-cancer-prevention-which-mushroom-is-best/"}}
{"_id": "PLAIN-3144", "text": "Vegetables Versus Breast Cancer", "metadata": {"url": "http://nutritionfacts.org/video/vegetables-versus-breast-cancer/"}}
{"_id": "PLAIN-3145", "text": "Cancer Prevention and Treatment May Be the Same Thing", "metadata": {"url": "http://nutritionfacts.org/video/cancer-prevention-and-treatment-may-be-the-same-thing/"}}
{"_id": "PLAIN-3146", "text": "Food Sources of PCB Chemical Pollutants", "metadata": {"url": "http://nutritionfacts.org/video/food-sources-of-pcb-chemical-pollutants/"}}
{"_id": "PLAIN-3147", "text": "Chicken Consumption and the Feminization of Male Genitalia", "metadata": {"url": "http://nutritionfacts.org/video/chicken-consumption-and-the-feminization-of-male-genitalia/"}}
{"_id": "PLAIN-3148", "text": "Rosy Glow", "metadata": {"url": "http://nutritionfacts.org/video/rosy-glow/"}}
{"_id": "PLAIN-3149", "text": "Produce, Not Pills to Increase Physical Attractiveness", "metadata": {"url": "http://nutritionfacts.org/video/produce-not-pills-to-increase-physical-attractiveness/"}}
{"_id": "PLAIN-3152", "text": "Pregnant Vegans at Risk for Iodine Deficiency", "metadata": {"url": "http://nutritionfacts.org/video/pregnant-vegans-at-risk-for-iodine-deficiency-2/"}}
{"_id": "PLAIN-3153", "text": "Saffron Versus Aricept", "metadata": {"url": "http://nutritionfacts.org/video/saffron-versus-aricept/"}}
{"_id": "PLAIN-3154", "text": "Saffron for the Treatment of Alzheimer's", "metadata": {"url": "http://nutritionfacts.org/video/saffron-for-the-treatment-of-alzheimers/"}}
{"_id": "PLAIN-3155", "text": "Avoiding Epilepsy Through Diet", "metadata": {"url": "http://nutritionfacts.org/video/avoiding-epilepsy-through-diet/"}}
{"_id": "PLAIN-3156", "text": "Pork Tapeworms on the Brain", "metadata": {"url": "http://nutritionfacts.org/video/pork-tapeworms-on-the-brain/"}}
{"_id": "PLAIN-3157", "text": "Do Doctors Make the Grade?", "metadata": {"url": "http://nutritionfacts.org/video/do-doctors-make-the-grade/"}}
{"_id": "PLAIN-3158", "text": "Egg Industry Blind Spot", "metadata": {"url": "http://nutritionfacts.org/video/egg-industry-blind-spot/"}}
{"_id": "PLAIN-3159", "text": "Avoiding Cholesterol Is a No Brainer", "metadata": {"url": "http://nutritionfacts.org/video/avoiding-cholesterol-is-a-no-brainer/"}}
{"_id": "PLAIN-3162", "text": "The Effect of Soy on Precocious Puberty", "metadata": {"url": "http://nutritionfacts.org/video/the-effect-of-soy-on-precocious-puberty/"}}
{"_id": "PLAIN-3163", "text": "Calcium Absorption: Soy Milk Versus Cow Milk", "metadata": {"url": "http://nutritionfacts.org/video/calcium-absorption-soy-milk-versus-cow-milk/"}}
{"_id": "PLAIN-3164", "text": "Vegan Epidemic", "metadata": {"url": "http://nutritionfacts.org/video/vegan-epidemic/"}}
{"_id": "PLAIN-3165", "text": "American Vegans Placing Babies At Risk", "metadata": {"url": "http://nutritionfacts.org/video/american-vegans-placing-babies-at-risk/"}}
{"_id": "PLAIN-3166", "text": "Did a Vegan Diet Kill This Baby?", "metadata": {"url": "http://nutritionfacts.org/video/did-a-vegan-diet-kill-this-baby/"}}
{"_id": "PLAIN-3167", "text": "Calculate Your Healthy Eating Score", "metadata": {"url": "http://nutritionfacts.org/video/calculate-your-healthy-eating-score/"}}
{"_id": "PLAIN-3168", "text": "Antioxidant Power of Plant Foods Versus Animal Foods", "metadata": {"url": "http://nutritionfacts.org/video/antioxidant-power-of-plant-foods-versus-animal-foods/"}}
{"_id": "PLAIN-3169", "text": "Antioxidant Content of 3,139 Foods", "metadata": {"url": "http://nutritionfacts.org/video/antioxidant-content-of-3139-foods/"}}
{"_id": "PLAIN-3172", "text": "Mitochondrial Theory of Aging", "metadata": {"url": "http://nutritionfacts.org/video/mitochondrial-theory-of-aging/"}}
{"_id": "PLAIN-3173", "text": "Vitamin D Pills vs. Tanning Beds", "metadata": {"url": "http://nutritionfacts.org/video/vitamin-d-pills-vs-tanning-beds/"}}
{"_id": "PLAIN-3174", "text": "Is Vinegar Good For You?", "metadata": {"url": "http://nutritionfacts.org/video/is-vinegar-good-for-you/"}}
{"_id": "PLAIN-3175", "text": "Is Petroleum Jelly Good For You?", "metadata": {"url": "http://nutritionfacts.org/video/is-petroleum-jelly-good-for-you/"}}
{"_id": "PLAIN-3176", "text": "Is Peanut Butter Good for You?", "metadata": {"url": "http://nutritionfacts.org/video/is-peanut-butter-good-for-you/"}}
{"_id": "PLAIN-3177", "text": "Is Licorice Good For You?", "metadata": {"url": "http://nutritionfacts.org/video/is-licorice-good-for-you/"}}
{"_id": "PLAIN-3178", "text": "Are Goji Berries Good for You?", "metadata": {"url": "http://nutritionfacts.org/video/are-goji-berries-good-for-you/"}}
{"_id": "PLAIN-3179", "text": "Is Kombucha Tea Good For You?", "metadata": {"url": "http://nutritionfacts.org/video/is-kombucha-tea-goodfor-you/"}}
{"_id": "PLAIN-3182", "text": "Are Dates Good For You?", "metadata": {"url": "http://nutritionfacts.org/video/are-dates-good-for-you/"}}
{"_id": "PLAIN-3183", "text": "Are Chili Peppers Good For You?", "metadata": {"url": "http://nutritionfacts.org/video/are-chili-peppers-good-for-you/"}}
{"_id": "PLAIN-3184", "text": "Plant-Based Diet & Mood", "metadata": {"url": "http://nutritionfacts.org/video/plant-based-diet-mood/"}}
{"_id": "PLAIN-3185", "text": "Cannabis Receptors & Food", "metadata": {"url": "http://nutritionfacts.org/video/cannabis-receptors-food/"}}
{"_id": "PLAIN-3186", "text": "Is Protein Bad to the Bone?", "metadata": {"url": "http://nutritionfacts.org/video/is-protein-bad-to-the-bone/"}}
{"_id": "PLAIN-3187", "text": "Vegan Protein Status", "metadata": {"url": "http://nutritionfacts.org/video/vegan-protein-status/"}}
{"_id": "PLAIN-3188", "text": "Inverted Rabbit Sign", "metadata": {"url": "http://nutritionfacts.org/video/inverted-rabbit-sign/"}}
{"_id": "PLAIN-3189", "text": "Industrial Pollutants in Vegans", "metadata": {"url": "http://nutritionfacts.org/video/industrial-pollutants-in-vegans/"}}
{"_id": "PLAIN-3192", "text": "Hair Testing for Mercury", "metadata": {"url": "http://nutritionfacts.org/video/hair-testing-for-mercury/"}}
{"_id": "PLAIN-3193", "text": "Fish Intake Biomarker", "metadata": {"url": "http://nutritionfacts.org/video/fish-intake-biomarker/"}}
{"_id": "PLAIN-3194", "text": "Dioxins in the Food Supply", "metadata": {"url": "http://nutritionfacts.org/video/dioxins-in-the-food-supply/"}}
{"_id": "PLAIN-3195", "text": "Prozac Residues in Fish", "metadata": {"url": "http://nutritionfacts.org/video/prozac-residues-in-fish/"}}
{"_id": "PLAIN-3196", "text": "Allergenic Fish Worms", "metadata": {"url": "http://nutritionfacts.org/video/allergenic-fish-worms/"}}
{"_id": "PLAIN-3197", "text": "Mothers Overestimate Dietary Quality", "metadata": {"url": "http://nutritionfacts.org/video/mothers-overestimate-dietary-quality/"}}
{"_id": "PLAIN-3198", "text": "Protein & Puberty", "metadata": {"url": "http://nutritionfacts.org/video/protein-puberty/"}}
{"_id": "PLAIN-3199", "text": "What's in a Burger?", "metadata": {"url": "http://nutritionfacts.org/video/whats-in-a-burger/"}}
{"_id": "PLAIN-3202", "text": "Dairy & Sexual Precocity", "metadata": {"url": "http://nutritionfacts.org/video/dairy-sexual-precocity/"}}
{"_id": "PLAIN-3203", "text": "Boosting Sex-Hormone Binding", "metadata": {"url": "http://nutritionfacts.org/video/boosting-sex-hormone-binding/"}}
{"_id": "PLAIN-3204", "text": "Gut Flora & Obesity", "metadata": {"url": "http://nutritionfacts.org/video/gut-flora-obesity/"}}
{"_id": "PLAIN-3205", "text": "Does Eating Obesity Cause Obesity?", "metadata": {"url": "http://nutritionfacts.org/video/does-eating-obesity-cause-obesity/"}}
{"_id": "PLAIN-3206", "text": "Obesity-Causing Chicken Virus", "metadata": {"url": "http://nutritionfacts.org/video/obesity-causing-chicken-virus/"}}
{"_id": "PLAIN-3207", "text": "Crop Nutrient Decline", "metadata": {"url": "http://nutritionfacts.org/video/crop-nutrient-decline/"}}
{"_id": "PLAIN-3208", "text": "Can Folic Acid Be Harmful?", "metadata": {"url": "http://nutritionfacts.org/video/can-folic-acid-be-harmful/"}}
{"_id": "PLAIN-3209", "text": "Iron During Pregnancy", "metadata": {"url": "http://nutritionfacts.org/video/iron-during-pregnancy/"}}
{"_id": "PLAIN-3212", "text": "Overdosing on Tea", "metadata": {"url": "http://nutritionfacts.org/video/overdosing-on-tea/"}}
{"_id": "PLAIN-3213", "text": "Is Matcha Good for You?", "metadata": {"url": "http://nutritionfacts.org/video/is-matcha-good-for-you/"}}
{"_id": "PLAIN-3214", "text": "Cold Steeping Green Tea", "metadata": {"url": "http://nutritionfacts.org/video/cold-steeping-green-tea/"}}
{"_id": "PLAIN-3215", "text": "Asian Paradox", "metadata": {"url": "http://nutritionfacts.org/video/asian-paradox/"}}
{"_id": "PLAIN-3216", "text": "Soymilk Suppression?", "metadata": {"url": "http://nutritionfacts.org/video/soymilk-suppression/"}}
{"_id": "PLAIN-3217", "text": "Healthiest Chocolate Fix", "metadata": {"url": "http://nutritionfacts.org/video/healthiest-chocolate-fix/"}}
{"_id": "PLAIN-3218", "text": "Soy & Breast Cancer Survival", "metadata": {"url": "http://nutritionfacts.org/video/soy-breast-cancer-survival/"}}
{"_id": "PLAIN-3219", "text": "Exercise & Breast Cancer", "metadata": {"url": "http://nutritionfacts.org/video/exercise-breast-cancer/"}}
{"_id": "PLAIN-3222", "text": "Mad Fish Disease", "metadata": {"url": "http://nutritionfacts.org/video/mad-fish-disease/"}}
{"_id": "PLAIN-3223", "text": "Drug Residues in Meat", "metadata": {"url": "http://nutritionfacts.org/video/drug-residues-in-meat/"}}
{"_id": "PLAIN-3224", "text": "Toxic Megacolon Superbug", "metadata": {"url": "http://nutritionfacts.org/video/toxic-megacolon-superbug/"}}
{"_id": "PLAIN-3225", "text": "Chicken Out of UTIs", "metadata": {"url": "http://nutritionfacts.org/video/chicken-out-of-utis/"}}
{"_id": "PLAIN-3226", "text": "Fecal Bacteria Survey", "metadata": {"url": "http://nutritionfacts.org/video/fecal-bacteria-survey/"}}
{"_id": "PLAIN-3227", "text": "Bristol Stool Scale", "metadata": {"url": "http://nutritionfacts.org/video/bristol-stool-scale/"}}
{"_id": "PLAIN-3228", "text": "Greasy Orange Rectal Leakage", "metadata": {"url": "http://nutritionfacts.org/video/greasy-orange-rectal-leakage/"}}
{"_id": "PLAIN-3229", "text": "Hepatitis E Virus in Pork", "metadata": {"url": "http://nutritionfacts.org/video/hepatitis-e-virus-in-pork/"}}
{"_id": "PLAIN-3232", "text": "Largest Study Ever", "metadata": {"url": "http://nutritionfacts.org/video/largest-study-ever/"}}
{"_id": "PLAIN-3233", "text": "Can Cholesterol Be Too Low?", "metadata": {"url": "http://nutritionfacts.org/video/can-cholesterol-be-too-low/"}}
{"_id": "PLAIN-3234", "text": "Statin Muscle Toxicity", "metadata": {"url": "http://nutritionfacts.org/video/statin-muscle-toxicity/"}}
{"_id": "PLAIN-3235", "text": "Low-Fat or Whole Food?", "metadata": {"url": "http://nutritionfacts.org/video/low-fat-or-whole-food/"}}
{"_id": "PLAIN-3236", "text": "New Cholesterol Fighters", "metadata": {"url": "http://nutritionfacts.org/video/new-cholesterol-fighters/"}}
{"_id": "PLAIN-3237", "text": "New Target Cholesterol", "metadata": {"url": "http://nutritionfacts.org/video/new-target-cholesterol/"}}
{"_id": "PLAIN-3238", "text": "Cholesterol Gallstones", "metadata": {"url": "http://nutritionfacts.org/video/cholesterol-gallstones/"}}
{"_id": "PLAIN-3239", "text": "Migrating Fish Bones", "metadata": {"url": "http://nutritionfacts.org/video/migrating-fish-bones/"}}
{"_id": "PLAIN-3242", "text": "Diet & Lichen Planus", "metadata": {"url": "http://nutritionfacts.org/video/diet-lichen-planus/"}}
{"_id": "PLAIN-3243", "text": "Diet & Rheumatoid Arthritis", "metadata": {"url": "http://nutritionfacts.org/video/diet-rheumatoid-arthritis/"}}
{"_id": "PLAIN-3244", "text": "Rose Hips for Osteoarthritis", "metadata": {"url": "http://nutritionfacts.org/video/dietary-osteoarthritis-treatment/"}}
{"_id": "PLAIN-3245", "text": "Zinc Gel for Colds?", "metadata": {"url": "http://nutritionfacts.org/video/zinc-gel-for-colds/"}}
{"_id": "PLAIN-3246", "text": "Benzene in Carrot Juice", "metadata": {"url": "http://nutritionfacts.org/video/benzene-in-carrot-juice/"}}
{"_id": "PLAIN-3247", "text": "Deep Frying Toxins", "metadata": {"url": "http://nutritionfacts.org/video/deep-frying-toxins/"}}
{"_id": "PLAIN-3248", "text": "Raw Food Nutrient Absorption", "metadata": {"url": "http://nutritionfacts.org/video/raw-food-nutrient-absorption-3/"}}
{"_id": "PLAIN-3249", "text": "Best Cooking Method", "metadata": {"url": "http://nutritionfacts.org/video/best-cooking-method/"}}
{"_id": "PLAIN-3252", "text": "The Healthiest Apple", "metadata": {"url": "http://nutritionfacts.org/video/the-healthiest-apple/"}}
{"_id": "PLAIN-3253", "text": "The Healthiest Lentil", "metadata": {"url": "http://nutritionfacts.org/video/the-healthiest-lentil/"}}
{"_id": "PLAIN-3254", "text": "The Healthiest Herbal Tea", "metadata": {"url": "http://nutritionfacts.org/video/the-healthiest-herbal-tea/"}}
{"_id": "PLAIN-3255", "text": "Update on Yerba Mat\u00e9", "metadata": {"url": "http://nutritionfacts.org/video/update-on-yerba-mate/"}}
{"_id": "PLAIN-3256", "text": "Update on Vitamin E", "metadata": {"url": "http://nutritionfacts.org/video/update-on-vitamin-e/"}}
{"_id": "PLAIN-3257", "text": "Is Stevia Good For You?", "metadata": {"url": "http://nutritionfacts.org/video/is-stevia-good-for-you/"}}
{"_id": "PLAIN-3258", "text": "Another Update on Spirulina", "metadata": {"url": "http://nutritionfacts.org/video/update-on-spirulina-2/"}}
{"_id": "PLAIN-3259", "text": "Update on MSG", "metadata": {"url": "http://nutritionfacts.org/video/update-on-msg/"}}
{"_id": "PLAIN-3262", "text": "Update on Gum Arabic", "metadata": {"url": "http://nutritionfacts.org/video/update-on-gum-arabic/"}}
{"_id": "PLAIN-3263", "text": "Update on Gluten", "metadata": {"url": "http://nutritionfacts.org/video/update-on-gluten/"}}
{"_id": "PLAIN-3264", "text": "Update on Coffee", "metadata": {"url": "http://nutritionfacts.org/video/update-on-coffee/"}}
{"_id": "PLAIN-3265", "text": "Is blue-green algae good for you?", "metadata": {"url": "http://nutritionfacts.org/video/update-on-chlorella/"}}
{"_id": "PLAIN-3266", "text": "Update on Aspartame", "metadata": {"url": "http://nutritionfacts.org/video/update-on-aspartame/"}}
{"_id": "PLAIN-3267", "text": "Update on Alfalfa Sprouts", "metadata": {"url": "http://nutritionfacts.org/video/update-on-alfalfa-sprouts/"}}
{"_id": "PLAIN-3268", "text": "Research Into Reversing Aging", "metadata": {"url": "http://nutritionfacts.org/video/research-into-reversing-aging/"}}
{"_id": "PLAIN-3269", "text": "Flatophonia: The Art of the Musical Anus", "metadata": {"url": "http://nutritionfacts.org/video/flatophonia-the-art-of-the-musical-anus/"}}
{"_id": "PLAIN-3272", "text": "Cancer Reversal Through Diet?", "metadata": {"url": "http://nutritionfacts.org/video/cancer-reversal-through-diet/"}}
{"_id": "PLAIN-3273", "text": "Eliminating the #1 Cause of Death", "metadata": {"url": "http://nutritionfacts.org/video/eliminating-the-1-cause-of-death/"}}
{"_id": "PLAIN-3274", "text": "Whose Health Unaffected by Eggs", "metadata": {"url": "http://nutritionfacts.org/video/whose-health-unaffected-by-eggs/"}}
{"_id": "PLAIN-3275", "text": "Long-Term Vegan Bone Health", "metadata": {"url": "http://nutritionfacts.org/video/long-term-vegan-bone-health/"}}
{"_id": "PLAIN-3276", "text": "Dairy Hormonal Interference", "metadata": {"url": "http://nutritionfacts.org/video/dairy-hormonal-interference/"}}
{"_id": "PLAIN-3277", "text": "Hormones in Skim vs. Whole Milk", "metadata": {"url": "http://nutritionfacts.org/video/hormones-in-skim-vs-whole-milk/"}}
{"_id": "PLAIN-3278", "text": "Nutrient Blocking Effects of Dairy", "metadata": {"url": "http://nutritionfacts.org/video/nutrient-blocking-effects-of-dairy/"}}
{"_id": "PLAIN-3279", "text": "Maxing Out on Antioxidants", "metadata": {"url": "http://nutritionfacts.org/video/maxing-out-on-antioxidants/"}}
{"_id": "PLAIN-3282", "text": "Arsenic in Chicken", "metadata": {"url": "http://nutritionfacts.org/video/arsenic-in-chicken/"}}
{"_id": "PLAIN-3283", "text": "Arsenic in Rice", "metadata": {"url": "http://nutritionfacts.org/video/arsenic-in-rice/"}}
{"_id": "PLAIN-3284", "text": "Toxins in Sweet Potatoes?", "metadata": {"url": "http://nutritionfacts.org/video/toxins-in-sweet-potatoes/"}}
{"_id": "PLAIN-3285", "text": "Toxins in Cooked Potatoes?", "metadata": {"url": "http://nutritionfacts.org/video/toxins-in-cooked-potatoes/"}}
{"_id": "PLAIN-3286", "text": "Toxins in Raw Mushrooms?", "metadata": {"url": "http://nutritionfacts.org/video/toxins-in-raw-mushrooms/"}}
{"_id": "PLAIN-3287", "text": "Soy Foods & Menopause", "metadata": {"url": "http://nutritionfacts.org/video/soy-foods-menopause/"}}
{"_id": "PLAIN-3288", "text": "Is Gluten Bad For You?", "metadata": {"url": "http://nutritionfacts.org/video/is-gluten-bad-for-you/"}}
{"_id": "PLAIN-3289", "text": "Glyconutrient Supplements", "metadata": {"url": "http://nutritionfacts.org/video/glyconutrient-supplements/"}}
{"_id": "PLAIN-3293", "text": "Are Iron Pills Good For You?", "metadata": {"url": "http://nutritionfacts.org/video/are-iron-pills-good-for-you/"}}
{"_id": "PLAIN-3294", "text": "Are Vitamin C Pills Good For You?", "metadata": {"url": "http://nutritionfacts.org/video/are-vitamin-c-pills-good-for-you/"}}
{"_id": "PLAIN-3295", "text": "Is Cod Liver Oil Good For You?", "metadata": {"url": "http://nutritionfacts.org/video/is-cod-liver-oil-good-for-you/"}}
{"_id": "PLAIN-3296", "text": "Artificial Coloring in Fish", "metadata": {"url": "http://nutritionfacts.org/video/artificial-coloring-in-fish/"}}
{"_id": "PLAIN-3297", "text": "The Problem with Organic Salmon", "metadata": {"url": "http://nutritionfacts.org/video/the-problem-with-organic-salmon/"}}
{"_id": "PLAIN-3298", "text": "Avoiding Other Banned Pesticides", "metadata": {"url": "http://nutritionfacts.org/video/avoiding-other-banned-pesticides/"}}
{"_id": "PLAIN-3299", "text": "DDT in Fish Oil Supplements", "metadata": {"url": "http://nutritionfacts.org/video/ddt-in-fish-oil-supplements/"}}
{"_id": "PLAIN-3300", "text": "Cannibalistic Feed Biomagnification", "metadata": {"url": "http://nutritionfacts.org/video/cannibalistic-feed-biomagnification/"}}
{"_id": "PLAIN-3303", "text": "Maternal Mercury Levels", "metadata": {"url": "http://nutritionfacts.org/video/maternal-mercury-levels/"}}
{"_id": "PLAIN-3304", "text": "Xenoestrogens & Early Puberty", "metadata": {"url": "http://nutritionfacts.org/video/xenoestrogens-early-puberty/"}}
{"_id": "PLAIN-3305", "text": "Xenoestrogens & Sperm Counts", "metadata": {"url": "http://nutritionfacts.org/video/xenoestrogens-sperm-counts/"}}
{"_id": "PLAIN-3306", "text": "Vegetarian Zinc Requirements", "metadata": {"url": "http://nutritionfacts.org/video/vegetarian-zinc-requirements/"}}
{"_id": "PLAIN-3307", "text": "Soy Hormones & Male Infertility", "metadata": {"url": "http://nutritionfacts.org/video/soy-hormones-male-infertility/"}}
{"_id": "PLAIN-3308", "text": "Meat Hormones & Female Infertility", "metadata": {"url": "http://nutritionfacts.org/video/meat-hormones-female-infertility/"}}
{"_id": "PLAIN-3309", "text": "Brain Parasites in Meat", "metadata": {"url": "http://nutritionfacts.org/video/brain-parasites-in-meat/"}}
{"_id": "PLAIN-3310", "text": "USDA Parasite Game", "metadata": {"url": "http://nutritionfacts.org/video/usda-parasite-game/"}}
{"_id": "PLAIN-3313", "text": "Restaurant Worker Hand Washing", "metadata": {"url": "http://nutritionfacts.org/video/restaurant-worker-hand-washing/"}}
{"_id": "PLAIN-3314", "text": "Fast Food Tested for Carcinogens", "metadata": {"url": "http://nutritionfacts.org/video/fast-food-tested-for-carcinogens/"}}
{"_id": "PLAIN-3315", "text": "Carcinogens in Roasted Coffee?", "metadata": {"url": "http://nutritionfacts.org/video/carcinogens-in-roasted-coffee/"}}
{"_id": "PLAIN-3316", "text": "Muscle Tremors & Diet", "metadata": {"url": "http://nutritionfacts.org/video/muscle-tremors-diet/"}}
{"_id": "PLAIN-3317", "text": "Carcinogens in Roasted Chicken?", "metadata": {"url": "http://nutritionfacts.org/video/carcinogens-in-roasted-chicken/"}}
{"_id": "PLAIN-3318", "text": "Fecal Residues on Chicken", "metadata": {"url": "http://nutritionfacts.org/video/fecal-residues-on-chicken/"}}
{"_id": "PLAIN-3319", "text": "Antioxidant Level Dynamics", "metadata": {"url": "http://nutritionfacts.org/video/antioxidant-level-dynamics/"}}
{"_id": "PLAIN-3320", "text": "Forego Fat-Free Dressings?", "metadata": {"url": "http://nutritionfacts.org/video/forego-fat-free-dressings/"}}
{"_id": "PLAIN-3323", "text": "Vegetarian's Myelopathy", "metadata": {"url": "http://nutritionfacts.org/video/vegetarians-myelopathy/"}}
{"_id": "PLAIN-3324", "text": "Low Meat or No Meat?", "metadata": {"url": "http://nutritionfacts.org/video/low-meat-or-no-meat/"}}
{"_id": "PLAIN-3325", "text": "Meat & Mortality", "metadata": {"url": "http://nutritionfacts.org/video/meat-mortality/"}}
{"_id": "PLAIN-3326", "text": "How to Treat Diabetes", "metadata": {"url": "http://nutritionfacts.org/video/how-to-treat-diabetes/"}}
{"_id": "PLAIN-3327", "text": "How to Prevent Diabetes", "metadata": {"url": "http://nutritionfacts.org/video/how-to-prevent-diabetes/"}}
{"_id": "PLAIN-3328", "text": "Thousands of Vegans Studied", "metadata": {"url": "http://nutritionfacts.org/video/thousands-of-vegans-studied/"}}
{"_id": "PLAIN-3329", "text": "Which Plastics are Harmful?", "metadata": {"url": "http://nutritionfacts.org/video/which-plastics-are-harmful/"}}
{"_id": "PLAIN-3330", "text": "Fill in the Blank", "metadata": {"url": "http://nutritionfacts.org/video/fill-in-the-blank/"}}
{"_id": "PLAIN-3333", "text": "Aspirin Levels in Plant Foods", "metadata": {"url": "http://nutritionfacts.org/video/aspirin-levels-in-plant-foods/"}}
{"_id": "PLAIN-3334", "text": "Is Caloric Restriction Good For You?", "metadata": {"url": "http://nutritionfacts.org/video/is-caloric-restriction-good-for-you/"}}
{"_id": "PLAIN-3335", "text": "How to Upregulate Metabolism", "metadata": {"url": "http://nutritionfacts.org/video/how-to-upregulate-metabolism/"}}
{"_id": "PLAIN-3336", "text": "Oxalates in Cinnamon", "metadata": {"url": "http://nutritionfacts.org/video/oxalates-in-cinnamon/"}}
{"_id": "PLAIN-3337", "text": "Does Tofu Cause Dementia?", "metadata": {"url": "http://nutritionfacts.org/video/does-tofu-cause-dementia/"}}
{"_id": "PLAIN-3338", "text": "Waistline Slimming Food", "metadata": {"url": "http://nutritionfacts.org/video/waistline-slimming-food/"}}
{"_id": "PLAIN-3339", "text": "Waistline Expanding Food", "metadata": {"url": "http://nutritionfacts.org/video/waistline-expanding-food/"}}
{"_id": "PLAIN-3340", "text": "Diverticulosis & Nuts", "metadata": {"url": "http://nutritionfacts.org/video/diverticulosis-nuts/"}}
{"_id": "PLAIN-3343", "text": "Is Coconut Oil Good For You?", "metadata": {"url": "http://nutritionfacts.org/video/is-coconut-oil-good-for-you/"}}
{"_id": "PLAIN-3344", "text": "Are Betel Nuts Good For You?", "metadata": {"url": "http://nutritionfacts.org/video/are-betel-nuts-good-for-you/"}}
{"_id": "PLAIN-3345", "text": "Peanuts in Pregnancy", "metadata": {"url": "http://nutritionfacts.org/video/peanuts-in-pregnancy/"}}
{"_id": "PLAIN-3346", "text": "Fungal Toxins in Apples", "metadata": {"url": "http://nutritionfacts.org/video/fungal-toxins-in-apples/"}}
{"_id": "PLAIN-3347", "text": "Apples & Breast Cancer", "metadata": {"url": "http://nutritionfacts.org/video/apples-breast-cancer/"}}
{"_id": "PLAIN-3348", "text": "Are Star Fruit Good For You?", "metadata": {"url": "http://nutritionfacts.org/video/are-star-fruit-good-for-you/"}}
{"_id": "PLAIN-3349", "text": "Is Mangosteen Juice Good For You?", "metadata": {"url": "http://nutritionfacts.org/video/is-mangosteen-juice-good-for-you/"}}
{"_id": "PLAIN-3350", "text": "Is chlorella good for you?", "metadata": {"url": "http://nutritionfacts.org/video/latest-on-blue-green-algae/"}}
{"_id": "PLAIN-3353", "text": "Is White Bread Good for You?", "metadata": {"url": "http://nutritionfacts.org/video/is-white-bread-good-for-you/"}}
{"_id": "PLAIN-3354", "text": "Nontoxic Head Lice Treatment", "metadata": {"url": "http://nutritionfacts.org/video/nontoxic-head-lice-treatment/"}}
{"_id": "PLAIN-3355", "text": "Optimal Sleep Duration", "metadata": {"url": "http://nutritionfacts.org/video/optimal-sleep-duration/"}}
{"_id": "PLAIN-3356", "text": "Sleep & Immunity", "metadata": {"url": "http://nutritionfacts.org/video/sleep-immunity/"}}
{"_id": "PLAIN-3357", "text": "Airborne Supplements", "metadata": {"url": "http://nutritionfacts.org/video/airborne-supplements/"}}
{"_id": "PLAIN-3358", "text": "Hot Dogs & Leukemia", "metadata": {"url": "http://nutritionfacts.org/video/hot-dogs-leukemia/"}}
{"_id": "PLAIN-3359", "text": "Do Cell Phones Cause Cancer?", "metadata": {"url": "http://nutritionfacts.org/video/do-cell-phones-cause-cancer/"}}
{"_id": "PLAIN-3360", "text": "Is Carob Good For You?", "metadata": {"url": "http://nutritionfacts.org/video/is-carob-good-for-you/"}}
{"_id": "PLAIN-3363", "text": "Is Hibiscus Tea Good For You?", "metadata": {"url": "http://nutritionfacts.org/video/is-hibiscus-tea-good-for-you/"}}
{"_id": "PLAIN-3364", "text": "Is Osmanthus Tea Good For You?", "metadata": {"url": "http://nutritionfacts.org/video/is-osmanthus-tea-good-for-you/"}}
{"_id": "PLAIN-3365", "text": "Is Tulsi Tea Good For You?", "metadata": {"url": "http://nutritionfacts.org/video/is-tulsi-tea-good-for-you/"}}
{"_id": "PLAIN-3366", "text": "Black Tea vs. Earl Grey", "metadata": {"url": "http://nutritionfacts.org/video/black-tea-vs-earl-grey/"}}
{"_id": "PLAIN-3367", "text": "Green Tea vs. White", "metadata": {"url": "http://nutritionfacts.org/video/green-tea-vs-white/"}}
{"_id": "PLAIN-3368", "text": "Dietary Brain Wave Alteration", "metadata": {"url": "http://nutritionfacts.org/video/dietary-brain-wave-alteration/"}}
{"_id": "PLAIN-3369", "text": "The Healthiest Beverage", "metadata": {"url": "http://nutritionfacts.org/video/the-healthiest-beverage-2/"}}
{"_id": "PLAIN-3370", "text": "Nutrition Without Calories", "metadata": {"url": "http://nutritionfacts.org/video/nutrition-without-calories/"}}
{"_id": "PLAIN-3373", "text": "Mercury in Corn Syrup?", "metadata": {"url": "http://nutritionfacts.org/video/mercury-in-corn-syrup/"}}
{"_id": "PLAIN-3374", "text": "Sugar vs. Corn Syrup", "metadata": {"url": "http://nutritionfacts.org/video/sugar-vs-corn-syrup/"}}
{"_id": "PLAIN-3375", "text": "Diet & Hyperactivity", "metadata": {"url": "http://nutritionfacts.org/video/diet-hyperactivity/"}}
{"_id": "PLAIN-3376", "text": "Is Sodium Benzoate Harmful?", "metadata": {"url": "http://nutritionfacts.org/video/is-sodium-benzoate-harmful/"}}
{"_id": "PLAIN-3377", "text": "Is Gum Arabic Harmful?", "metadata": {"url": "http://nutritionfacts.org/video/is-gum-arabic-harmful/"}}
{"_id": "PLAIN-3378", "text": "Is Citric Acid Harmful?", "metadata": {"url": "http://nutritionfacts.org/video/is-citric-acid-harmful/"}}
{"_id": "PLAIN-3379", "text": "Is Artificial Butter Flavor Harmful?", "metadata": {"url": "http://nutritionfacts.org/video/is-artificial-butter-flavor-harmful/"}}
{"_id": "PLAIN-3380", "text": "Pets & Human Lymphoma", "metadata": {"url": "http://nutritionfacts.org/video/pets-human-lymphoma/"}}
{"_id": "PLAIN-3383", "text": "Chicken vs. Veggie Chicken", "metadata": {"url": "http://nutritionfacts.org/video/chicken-vs-veggie-chicken/"}}
{"_id": "PLAIN-3384", "text": "Repairing DNA Damage", "metadata": {"url": "http://nutritionfacts.org/video/repairing-dna-damage/"}}
{"_id": "PLAIN-3385", "text": "Flawed Study Interpretation", "metadata": {"url": "http://nutritionfacts.org/video/flawed-study-interpretation-2/"}}
{"_id": "PLAIN-3386", "text": "Cancer Fighting Berries", "metadata": {"url": "http://nutritionfacts.org/video/cancer-fighting-berries-2/"}}
{"_id": "PLAIN-3387", "text": "Raw Food Nutrient Absorption", "metadata": {"url": "http://nutritionfacts.org/video/raw-food-nutrient-absorption-2/"}}
{"_id": "PLAIN-3388", "text": "Raw vs. Cooked Broccoli", "metadata": {"url": "http://nutritionfacts.org/video/raw-vs-cooked-broccoli-2/"}}
{"_id": "PLAIN-3389", "text": "The Best Nut", "metadata": {"url": "http://nutritionfacts.org/video/the-best-nut-2/"}}
{"_id": "PLAIN-3390", "text": "The Best Apple", "metadata": {"url": "http://nutritionfacts.org/video/the-best-apple/"}}
{"_id": "PLAIN-3393", "text": "The Best Mushroom", "metadata": {"url": "http://nutritionfacts.org/video/the-best-mushroom-2/"}}
{"_id": "PLAIN-3394", "text": "Tofu vs. Tempeh", "metadata": {"url": "http://nutritionfacts.org/video/tofu-vs-tempeh-2/"}}
{"_id": "PLAIN-3395", "text": "The Best Bean", "metadata": {"url": "http://nutritionfacts.org/video/the-best-bean-2/"}}
{"_id": "PLAIN-3396", "text": "Pinto Beans vs. Black Beans", "metadata": {"url": "http://nutritionfacts.org/video/pinto-beans-vs-black-beans-2/"}}
{"_id": "PLAIN-3397", "text": "Carrots vs. Baby Carrots", "metadata": {"url": "http://nutritionfacts.org/video/carrots-vs-baby-carrots-2/"}}
{"_id": "PLAIN-3398", "text": "The Healthiest Raisin", "metadata": {"url": "http://nutritionfacts.org/video/the-healthiest-raisin-2/"}}
{"_id": "PLAIN-3399", "text": "Fruit Juice Fail", "metadata": {"url": "http://nutritionfacts.org/video/fruit-juice-fail/"}}
{"_id": "PLAIN-3400", "text": "Healthy Pumpkin Pie", "metadata": {"url": "http://nutritionfacts.org/video/healthy-pumpkin-pie-2/"}}
{"_id": "PLAIN-3403", "text": "New Antioxidant Superstars", "metadata": {"url": "http://nutritionfacts.org/video/new-antioxidant-superstars-2/"}}
{"_id": "PLAIN-3404", "text": "Acrylamide in French Fries", "metadata": {"url": "http://nutritionfacts.org/video/acrylamide-in-french-fries-2/"}}
{"_id": "PLAIN-3405", "text": "Preventing Arthritis", "metadata": {"url": "http://nutritionfacts.org/video/preventing-arthritis-2/"}}
{"_id": "PLAIN-3406", "text": "Algae-Based DHA vs. Flax", "metadata": {"url": "http://nutritionfacts.org/video/algae-based-dha-vs-flax-2/"}}
{"_id": "PLAIN-3407", "text": "Plant-Based Omega-3 Supplements", "metadata": {"url": "http://nutritionfacts.org/video/plant-based-omega-3-supplements-2/"}}
{"_id": "PLAIN-3408", "text": "Mercury in Vaccinations vs. Tuna", "metadata": {"url": "http://nutritionfacts.org/video/mercury-in-vaccinations-vs-tuna-2/"}}
{"_id": "PLAIN-3409", "text": "Farmed Fish vs. Wild-Caught", "metadata": {"url": "http://nutritionfacts.org/video/farmed-fish-vs-wild-caught-2/"}}
{"_id": "PLAIN-3410", "text": "Flame Retardant Chemical Contamination", "metadata": {"url": "http://nutritionfacts.org/video/flame-retardant-chemical-contamination-2/"}}
{"_id": "PLAIN-3413", "text": "What Is Really in Hot Dogs?", "metadata": {"url": "http://nutritionfacts.org/video/what-is-really-in-hot-dogs-2/"}}
{"_id": "PLAIN-3414", "text": "Food Is a Package Deal", "metadata": {"url": "http://nutritionfacts.org/video/food-is-a-package-deal-3/"}}
{"_id": "PLAIN-3415", "text": "Soy & Breast Cancer", "metadata": {"url": "http://nutritionfacts.org/video/soy-breast-cancer-3/"}}
{"_id": "PLAIN-3416", "text": "Red Tea, Honeybush, & Chamomile", "metadata": {"url": "http://nutritionfacts.org/video/red-tea-honeybush-chamomile-2/"}}
{"_id": "PLAIN-3417", "text": "Is Yerba Mat\u00e9 Tea Bad For You?", "metadata": {"url": "http://nutritionfacts.org/video/is-yerba-mate-tea-bad-for-you/"}}
{"_id": "PLAIN-3418", "text": "Coffee vs. Tea", "metadata": {"url": "http://nutritionfacts.org/video/coffee-vs-tea/"}}
{"_id": "PLAIN-3419", "text": "Is Coffee Bad For You?", "metadata": {"url": "http://nutritionfacts.org/video/is-coffee-bad-for-you/"}}
{"_id": "PLAIN-3420", "text": "Is One Egg a Day Too Much?", "metadata": {"url": "http://nutritionfacts.org/video/is-one-egg-a-day-too-much/"}}
{"_id": "PLAIN-3423", "text": "Antioxidant Vitamin Supplements", "metadata": {"url": "http://nutritionfacts.org/video/antioxidant-vitamin-supplements/"}}
{"_id": "PLAIN-3424", "text": "Is Black Pepper Bad For You?", "metadata": {"url": "http://nutritionfacts.org/video/is-black-pepper-bad-for-you/"}}
{"_id": "PLAIN-3425", "text": "Is MSG Bad For You?", "metadata": {"url": "http://nutritionfacts.org/video/is-msg-bad-for-you/"}}
{"_id": "PLAIN-3426", "text": "Is Nutrasweet\u00ae Bad For You?", "metadata": {"url": "http://nutritionfacts.org/video/is-nutrasweet-bad-for-you/"}}
{"_id": "PLAIN-3427", "text": "Body Odor & Diet", "metadata": {"url": "http://nutritionfacts.org/video/body-odor-diet-2/"}}
{"_id": "PLAIN-3428", "text": "IQ of Vegetarian Children", "metadata": {"url": "http://nutritionfacts.org/video/iq-of-vegetarian-children-2/"}}
{"_id": "PLAIN-3429", "text": "Vegan Paralysis", "metadata": {"url": "http://nutritionfacts.org/video/vegan-paralysis-2/"}}
{"_id": "PLAIN-3430", "text": "Avoiding Iodine Deficiency", "metadata": {"url": "http://nutritionfacts.org/video/avoiding-iodine-deficiency-2/"}}
{"_id": "PLAIN-3433", "text": "Cocoa Good; Chocolate Bad", "metadata": {"url": "http://nutritionfacts.org/video/cocoa-good-chocolate-bad/"}}
{"_id": "PLAIN-3434", "text": "Extra Virgin Olive Oil", "metadata": {"url": "http://nutritionfacts.org/video/extra-virgin-olive-oil/"}}
{"_id": "PLAIN-3435", "text": "Good, Great, Bad, & Killer Fats", "metadata": {"url": "http://nutritionfacts.org/video/good-great-bad-killer-fats/"}}
{"_id": "PLAIN-3436", "text": "Great Grain Robbery", "metadata": {"url": "http://nutritionfacts.org/video/great-grain-robbery/"}}
{"_id": "PLAIN-3437", "text": "Milk Protein vs. Soy Protein", "metadata": {"url": "http://nutritionfacts.org/video/milk-protein-vs-soy-protein/"}}
{"_id": "PLAIN-3438", "text": "Halving Heart Attack Risk", "metadata": {"url": "http://nutritionfacts.org/video/halving-heart-attack-risk/"}}
{"_id": "PLAIN-3439", "text": "The Healthiest Beverage", "metadata": {"url": "http://nutritionfacts.org/video/the-healthiest-beverage/"}}
{"_id": "PLAIN-3440", "text": "Herbalife\u00ae Supplement Liver Toxicity", "metadata": {"url": "http://nutritionfacts.org/video/herbalife-supplement-liver-toxicity/"}}
{"_id": "PLAIN-3443", "text": "Beans, Beans, Good for Your Heart", "metadata": {"url": "http://nutritionfacts.org/video/beans-beans-good-for-your-heart/"}}
{"_id": "PLAIN-3444", "text": "Is Noni Juice Good For You?", "metadata": {"url": "http://nutritionfacts.org/video/is-noni-juice-good-for-you/"}}
{"_id": "PLAIN-3445", "text": "The Healthiest Fruits", "metadata": {"url": "http://nutritionfacts.org/video/the-healthiest-fruits/"}}
{"_id": "PLAIN-3446", "text": "Raw Food Diet Myths", "metadata": {"url": "http://nutritionfacts.org/video/raw-food-diet-myths/"}}
{"_id": "PLAIN-3447", "text": "Nine Servings a Day Minimum", "metadata": {"url": "http://nutritionfacts.org/video/nine-servings-a-day-minimum/"}}
{"_id": "PLAIN-3448", "text": "Can Pesticides Be Rinsed Off?", "metadata": {"url": "http://nutritionfacts.org/video/can-pesticides-be-rinsed-off/"}}
{"_id": "PLAIN-3449", "text": "Fecal Contamination of Sushi", "metadata": {"url": "http://nutritionfacts.org/video/fecal-contamination-of-sushi/"}}
{"_id": "PLAIN-3450", "text": "Don't Eat Raw Alfalfa Sprouts", "metadata": {"url": "http://nutritionfacts.org/video/dont-eat-raw-alfalfa-sprouts/"}}
{"_id": "PLAIN-3453", "text": "Just the Flax, Ma'am", "metadata": {"url": "http://nutritionfacts.org/video/just-the-flax-maam/"}}
{"_id": "PLAIN-3454", "text": "Plant-Based Prevention", "metadata": {"url": "http://nutritionfacts.org/video/plant-based-prevention/"}}
{"_id": "PLAIN-3455", "text": "Slowing the Growth of Cancer", "metadata": {"url": "http://nutritionfacts.org/video/slowing-the-growth-of-cancer-3/"}}
{"_id": "PLAIN-3456", "text": "Industrial Carcinogens in Animal Fat", "metadata": {"url": "http://nutritionfacts.org/video/industrial-carcinogens-in-animal-fat-2/"}}
{"_id": "PLAIN-3457", "text": "Putrefying Protein and \u201cToxifying\u201d Enzymes", "metadata": {"url": "http://nutritionfacts.org/video/putrefying-protein-and-toxifying-enzymes/"}}
{"_id": "PLAIN-3458", "text": "Treating Dry Eye Disease with Diet: Just Add Water?", "metadata": {"url": "http://nutritionfacts.org/video/treating-dry-eye-disease-with-diet-just-add-water/"}}
{"_id": "PLAIN-3459", "text": "How May Plants Protect Against Diabetes?", "metadata": {"url": "http://nutritionfacts.org/video/how-may-plants-protect-against-diabetes/"}}
{"_id": "PLAIN-3460", "text": "Why is Meat a Risk Factor for Diabetes?", "metadata": {"url": "http://nutritionfacts.org/video/why-is-meat-a-risk-factor-for-diabetes/"}}
{"_id": "PLAIN-3463", "text": "Fatty Meals May Impair Artery Function", "metadata": {"url": "http://nutritionfacts.org/video/fatty-meals-may-impair-artery-function/"}}
{"_id": "PLAIN-3464", "text": "Does Chocolate Cause Weight Gain?", "metadata": {"url": "http://nutritionfacts.org/video/does-chocolate-cause-weight-gain/"}}
{"_id": "PLAIN-3465", "text": "High Blood Pressure May Be a Choice", "metadata": {"url": "http://nutritionfacts.org/video/high-blood-pressure-may-be-a-choice/"}}
{"_id": "PLAIN-3466", "text": "Boosting Brown Fat Through Diet", "metadata": {"url": "http://nutritionfacts.org/video/boosting-brown-fat-through-diet/"}}
{"_id": "PLAIN-3467", "text": "Brown Fat: Losing Weight Through Thermogenesis", "metadata": {"url": "http://nutritionfacts.org/video/brown-fat-losing-weight-through-thermogenesis/"}}
{"_id": "PLAIN-3468", "text": "Food as Medicine: Preventing and Treating the Most Dreaded Diseases with Diet", "metadata": {"url": "http://nutritionfacts.org/video/food-as-medicine/"}}
{"_id": "PLAIN-3469", "text": "From Table to Able: Combating Disabling Diseases with Food", "metadata": {"url": "http://nutritionfacts.org/video/from-table-to-able/"}}
{"_id": "PLAIN-3470", "text": "More Than an Apple a Day: Combating Common Diseases", "metadata": {"url": "http://nutritionfacts.org/video/more-than-an-apple-a-day-preventing-our-most-common-diseases/"}}
{"_id": "PLAIN-3473", "text": "Does Rye Bread Protect Against Cancer?", "metadata": {"url": "http://nutritionfacts.org/video/does-rye-bread-protect-against-cancer/"}}
{"_id": "PLAIN-3474", "text": "Fish Consumption and Suicide", "metadata": {"url": "http://nutritionfacts.org/video/fish-consumption-and-suicide/"}}
{"_id": "PLAIN-1", "text": "Why Deep Fried Foods May Cause Cancer", "metadata": {"url": "http://nutritionfacts.org/2015/07/21/why-deep-fried-foods-may-cause-cancer/"}}
{"_id": "PLAIN-11", "text": "Living Longer by Reducing Leucine Intake", "metadata": {"url": "http://nutritionfacts.org/2015/06/16/living-longer-by-reducing-leucine-intake/"}}
{"_id": "PLAIN-22", "text": "Why are Cancer Rates so Low in India?", "metadata": {"url": "http://nutritionfacts.org/2015/05/05/why-are-cancer-rates-so-low-in-india/"}}
{"_id": "PLAIN-32", "text": "Peeks Behind the Egg Industry Curtain", "metadata": {"url": "http://nutritionfacts.org/2015/03/26/peeks-behind-the-egg-industry-curtain/"}}
{"_id": "PLAIN-43", "text": "Organic Milk and Prostate Cancer", "metadata": {"url": "http://nutritionfacts.org/2015/02/17/organic-milk-and-prostate-cancer/"}}
{"_id": "PLAIN-55", "text": "Foods for Macular Degeneration", "metadata": {"url": "http://nutritionfacts.org/2015/01/01/foods-for-macular-degeneration/"}}
{"_id": "PLAIN-67", "text": "How Beans Help Our Bones", "metadata": {"url": "http://nutritionfacts.org/2014/11/20/how-beans-help-our-bones/"}}
{"_id": "PLAIN-77", "text": "Phosphate Additives in Chicken Banned Elsewhere", "metadata": {"url": "http://nutritionfacts.org/2014/10/16/phosphate-additives-in-chicken-banned-elsewhere/"}}
{"_id": "PLAIN-90", "text": "How to Boost the Benefits of Exercise", "metadata": {"url": "http://nutritionfacts.org/2014/08/28/how-to-boost-the-benefits-of-exercise/"}}
{"_id": "PLAIN-101", "text": "How to Treat Multiple Sclerosis With Diet", "metadata": {"url": "http://nutritionfacts.org/2014/07/22/how-to-treat-multiple-sclerosis-with-diet/"}}
{"_id": "PLAIN-111", "text": "How to Get Kids to Eat Their Vegetables", "metadata": {"url": "http://nutritionfacts.org/2014/06/12/how-to-get-kids-to-eat-their-vegetables/"}}
{"_id": "PLAIN-122", "text": "Citrus to Reduce Muscle Fatigue", "metadata": {"url": "http://nutritionfacts.org/2014/05/06/citrus-to-reduce-muscle-fatigue/"}}
{"_id": "PLAIN-132", "text": "Can We Fight the Blues With Greens?", "metadata": {"url": "http://nutritionfacts.org/2014/03/27/can-we-fight-the-blues-with-greens/"}}
{"_id": "PLAIN-142", "text": "Dealing With Air Travel Radiation Exposure", "metadata": {"url": "http://nutritionfacts.org/2014/02/20/dealing-with-air-travel-radiation-exposure/"}}
{"_id": "PLAIN-152", "text": "How Probiotics Affect Mental Health", "metadata": {"url": "http://nutritionfacts.org/2014/01/07/how-probiotics-affect-mental-health/"}}
{"_id": "PLAIN-164", "text": "Down But Not Out", "metadata": {"url": "http://nutritionfacts.org/2013/12/01/down-but-not-out/"}}
{"_id": "PLAIN-174", "text": "Cinnamon for Diabetes", "metadata": {"url": "http://nutritionfacts.org/2013/10/29/cinnamon-for-diabetes/"}}
{"_id": "PLAIN-185", "text": "The Best Nutrition Bar", "metadata": {"url": "http://nutritionfacts.org/2013/09/19/choosing-the-best-nutrition-bar/"}}
{"_id": "PLAIN-195", "text": "Why are Children Starting Puberty Earlier?", "metadata": {"url": "http://nutritionfacts.org/2013/08/15/why-are-children-starting-puberty-earlier/"}}
{"_id": "PLAIN-206", "text": "Foods That May Block Cancer Formation", "metadata": {"url": "http://nutritionfacts.org/2013/07/09/blocking-cancer-formation-green-tea-garlic/"}}
{"_id": "PLAIN-216", "text": "Plant-Based Diets for Metabolic Syndrome", "metadata": {"url": "http://nutritionfacts.org/2013/06/04/plant-based-diets-for-metabolic-syndrome/"}}
{"_id": "PLAIN-226", "text": "Bugs & Drugs in Pork: Yersinia and Ractopamine", "metadata": {"url": "http://nutritionfacts.org/2013/04/25/bugs-drugs-in-pork-yersinia-and-ractopamine/"}}
{"_id": "PLAIN-237", "text": "Pollutants in Californian Breast Tissue", "metadata": {"url": "http://nutritionfacts.org/2013/03/19/pollutants-in-californian-breast-tissue/"}}
{"_id": "PLAIN-247", "text": "How Do Plant-Based Diets Fight Cancer?", "metadata": {"url": "http://nutritionfacts.org/2013/02/07/how-do-plant-based-diets-fight-cancer/"}}
{"_id": "PLAIN-258", "text": "Nuts Don't Cause Expected Weight Gain", "metadata": {"url": "http://nutritionfacts.org/2012/12/27/nuts-dont-cause-expected-weight-gain/"}}
{"_id": "PLAIN-269", "text": "Preventing and Treating Kidney Failure With Diet", "metadata": {"url": "http://nutritionfacts.org/2012/10/04/preventing-kidney-failure-with-diet/"}}
{"_id": "PLAIN-279", "text": "Latest in Clinical Nutrition Volume 10 Now on DVD", "metadata": {"url": "http://nutritionfacts.org/2012/07/31/new-latest-nutrition-dvd-now-available-proceeds-to-charity/"}}
{"_id": "PLAIN-290", "text": "Coffee Caveats", "metadata": {"url": "http://nutritionfacts.org/2012/05/10/coffee-caveats/"}}
{"_id": "PLAIN-304", "text": "EPA dioxin limit has National Chicken Council worried products could be declared \"unfit for consumption\"", "metadata": {"url": "http://nutritionfacts.org/2012/01/05/epa-dioxin-limit-has-national-chicken-council-worried-products-could-be-declared-unfit-for-consumption/"}}
{"_id": "PLAIN-319", "text": "Bowel movements: the scoop on poop", "metadata": {"url": "http://nutritionfacts.org/2011/09/29/bowel-movements-the-scoop-on-poop/"}}
{"_id": "PLAIN-331", "text": "How to live longer in four easy steps", "metadata": {"url": "http://nutritionfacts.org/2011/08/24/how-to-live-longer-in-four-easy-steps/"}}
{"_id": "PLAIN-343", "text": "Three Brands of Nutritional Yeast Contain Detectable Lead Levels But the Risk is Minimal", "metadata": {"url": "http://nutritionfacts.org/2015/07/30/three-brands-of-nutritional-yeast-contain-detectable-lead-levels-but-the-risk-is-minimal/"}}
{"_id": "PLAIN-357", "text": "Can diet be used to treat kidney cancer?", "metadata": {"url": "http://nutritionfacts.org/questions/can-diet-be-used-to-treat-kidney-cancer/"}}
{"_id": "PLAIN-370", "text": "Do microgreens have more nutrition?", "metadata": {"url": "http://nutritionfacts.org/questions/do-microgreens-have-more-nutrition/"}}
{"_id": "PLAIN-382", "text": "Is vanilla almond milk healthy?", "metadata": {"url": "http://nutritionfacts.org/questions/is-vanilla-sweetened-almond-milk-healthy/"}}
{"_id": "PLAIN-394", "text": "Should we take algae supplements for astaxanthin?", "metadata": {"url": "http://nutritionfacts.org/questions/algae-as-astaxanthin-supplement/"}}
{"_id": "PLAIN-406", "text": "Can hibiscus tea cause coughing?", "metadata": {"url": "http://nutritionfacts.org/questions/hibiscus-and-coughing/"}}
{"_id": "PLAIN-417", "text": "Does wild rice contain the same levels of arsenic as brown rice?", "metadata": {"url": "http://nutritionfacts.org/questions/does-wild-rice-contain-the-same-levels-of-arsenic-as-white-rice/"}}
{"_id": "PLAIN-428", "text": "In making water alkaline, how much baking soda is too much?", "metadata": {"url": "http://nutritionfacts.org/questions/how-much-baking-soda-is-too-much/"}}
{"_id": "PLAIN-440", "text": "What's the right dose of saffron?", "metadata": {"url": "http://nutritionfacts.org/questions/how-do-you-dose-saffron/"}}
{"_id": "PLAIN-456", "text": "Is multivitamin use really associated to an increased risk of breast cancer?", "metadata": {"url": "http://nutritionfacts.org/questions/is-multivitamin-use-associated-to-a-risk-of-breast-cancer/"}}
{"_id": "PLAIN-467", "text": "Isn't regular cocoa powder healthier than alkali-processed \"dutched\" cocoa?", "metadata": {"url": "http://nutritionfacts.org/questions/is-regular-cocoa-powder-healthier-than-dutched/"}}
{"_id": "PLAIN-477", "text": "acarbose", "metadata": {"url": "http://nutritionfacts.org/topics/acarbose/"}}
{"_id": "PLAIN-487", "text": "addiction", "metadata": {"url": "http://nutritionfacts.org/topics/addiction/"}}
{"_id": "PLAIN-498", "text": "African Americans", "metadata": {"url": "http://nutritionfacts.org/topics/african-americans/"}}
{"_id": "PLAIN-508", "text": "air travel", "metadata": {"url": "http://nutritionfacts.org/topics/air-travel/"}}
{"_id": "PLAIN-519", "text": "allergies", "metadata": {"url": "http://nutritionfacts.org/topics/allergies/"}}
{"_id": "PLAIN-530", "text": "ALS", "metadata": {"url": "http://nutritionfacts.org/topics/als/"}}
{"_id": "PLAIN-540", "text": "American College of Lifestyle Medicine", "metadata": {"url": "http://nutritionfacts.org/topics/american-college-of-lifestyle-medicine/"}}
{"_id": "PLAIN-550", "text": "ammonia", "metadata": {"url": "http://nutritionfacts.org/topics/ammonia/"}}
{"_id": "PLAIN-560", "text": "anesthesia", "metadata": {"url": "http://nutritionfacts.org/topics/anesthesia/"}}
{"_id": "PLAIN-570", "text": "animal studies", "metadata": {"url": "http://nutritionfacts.org/topics/animal-studies/"}}
{"_id": "PLAIN-582", "text": "antihistamines", "metadata": {"url": "http://nutritionfacts.org/topics/antihistamines/"}}
{"_id": "PLAIN-592", "text": "apigen", "metadata": {"url": "http://nutritionfacts.org/topics/apigen/"}}
{"_id": "PLAIN-602", "text": "Aricept", "metadata": {"url": "http://nutritionfacts.org/topics/aricept/"}}
{"_id": "PLAIN-612", "text": "asbestos", "metadata": {"url": "http://nutritionfacts.org/topics/asbestos/"}}
{"_id": "PLAIN-622", "text": "Ativan", "metadata": {"url": "http://nutritionfacts.org/topics/ativan/"}}
{"_id": "PLAIN-633", "text": "avocado oil", "metadata": {"url": "http://nutritionfacts.org/topics/avocado-oil/"}}
{"_id": "PLAIN-644", "text": "bad breath", "metadata": {"url": "http://nutritionfacts.org/topics/bad-breath/"}}
{"_id": "PLAIN-656", "text": "Barrett's esophagus", "metadata": {"url": "http://nutritionfacts.org/topics/barretts-esophagus/"}}
{"_id": "PLAIN-670", "text": "bell peppers", "metadata": {"url": "http://nutritionfacts.org/topics/bell-peppers/"}}
{"_id": "PLAIN-680", "text": "beta-carboline alkaloids", "metadata": {"url": "http://nutritionfacts.org/topics/beta-carboline-alkaloids/"}}
{"_id": "PLAIN-690", "text": "bio identical hormones", "metadata": {"url": "http://nutritionfacts.org/topics/bio-identical-hormones/"}}
{"_id": "PLAIN-700", "text": "black beans", "metadata": {"url": "http://nutritionfacts.org/topics/black-beans/"}}
{"_id": "PLAIN-710", "text": "blood cancer", "metadata": {"url": "http://nutritionfacts.org/topics/blood-cancer/"}}
{"_id": "PLAIN-720", "text": "bluefish", "metadata": {"url": "http://nutritionfacts.org/topics/bluefish/"}}
{"_id": "PLAIN-730", "text": "bone cancer", "metadata": {"url": "http://nutritionfacts.org/topics/bone-cancer/"}}
{"_id": "PLAIN-740", "text": "BPA", "metadata": {"url": "http://nutritionfacts.org/topics/bpa/"}}
{"_id": "PLAIN-750", "text": "brazil nuts", "metadata": {"url": "http://nutritionfacts.org/topics/brazil-nuts/"}}
{"_id": "PLAIN-760", "text": "breast milk", "metadata": {"url": "http://nutritionfacts.org/topics/breast-milk/"}}
{"_id": "PLAIN-770", "text": "Broccomax", "metadata": {"url": "http://nutritionfacts.org/topics/broccomax/"}}
{"_id": "PLAIN-781", "text": "burritos", "metadata": {"url": "http://nutritionfacts.org/topics/burritos/"}}
{"_id": "PLAIN-791", "text": "cabbage", "metadata": {"url": "http://nutritionfacts.org/topics/cabbage/"}}
{"_id": "PLAIN-805", "text": "California Raison Marketing Board", "metadata": {"url": "http://nutritionfacts.org/topics/california-raison-marketing-board/"}}
{"_id": "PLAIN-816", "text": "candy", "metadata": {"url": "http://nutritionfacts.org/topics/candy/"}}
{"_id": "PLAIN-826", "text": "carboxy-methyl cellulose", "metadata": {"url": "http://nutritionfacts.org/topics/carboxy-methyl-cellulose/"}}
{"_id": "PLAIN-837", "text": "carotid arteries", "metadata": {"url": "http://nutritionfacts.org/topics/carotid-arteries/"}}
{"_id": "PLAIN-848", "text": "cats", "metadata": {"url": "http://nutritionfacts.org/topics/cats/"}}
{"_id": "PLAIN-859", "text": "cellulite", "metadata": {"url": "http://nutritionfacts.org/topics/cellulite/"}}
{"_id": "PLAIN-871", "text": "champagne grapes", "metadata": {"url": "http://nutritionfacts.org/topics/champagne-grapes/"}}
{"_id": "PLAIN-881", "text": "chemotherapy", "metadata": {"url": "http://nutritionfacts.org/topics/chemotherapy/"}}
{"_id": "PLAIN-891", "text": "chicken embryo lethal orphan virus", "metadata": {"url": "http://nutritionfacts.org/topics/chicken-embryo-lethal-orphan-virus/"}}
{"_id": "PLAIN-901", "text": "chlorination", "metadata": {"url": "http://nutritionfacts.org/topics/chlorination/"}}
{"_id": "PLAIN-912", "text": "cilantro", "metadata": {"url": "http://nutritionfacts.org/topics/cilantro/"}}
{"_id": "PLAIN-923", "text": "Coca-Cola", "metadata": {"url": "http://nutritionfacts.org/topics/cocacola/"}}
{"_id": "PLAIN-933", "text": "cod liver oil", "metadata": {"url": "http://nutritionfacts.org/topics/cod-liver-oil/"}}
{"_id": "PLAIN-945", "text": "colon health", "metadata": {"url": "http://nutritionfacts.org/topics/colon-health/"}}
{"_id": "PLAIN-955", "text": "cookies", "metadata": {"url": "http://nutritionfacts.org/topics/cookies/"}}
{"_id": "PLAIN-965", "text": "Cornell", "metadata": {"url": "http://nutritionfacts.org/topics/cornell/"}}
{"_id": "PLAIN-976", "text": "cretinism", "metadata": {"url": "http://nutritionfacts.org/topics/cretinism/"}}
{"_id": "PLAIN-986", "text": "cucumbers", "metadata": {"url": "http://nutritionfacts.org/topics/cucumbers/"}}
{"_id": "PLAIN-996", "text": "cytoskeleton", "metadata": {"url": "http://nutritionfacts.org/topics/cytoskeleton/"}}
{"_id": "PLAIN-1007", "text": "DDT", "metadata": {"url": "http://nutritionfacts.org/topics/ddt/"}}
{"_id": "PLAIN-1017", "text": "detoxification", "metadata": {"url": "http://nutritionfacts.org/topics/detoxification/"}}
{"_id": "PLAIN-1027", "text": "dietary guidelines", "metadata": {"url": "http://nutritionfacts.org/topics/dietary-guidelines/"}}
{"_id": "PLAIN-1038", "text": "dogs", "metadata": {"url": "http://nutritionfacts.org/topics/dogs/"}}
{"_id": "PLAIN-1049", "text": "Dr. David Spence", "metadata": {"url": "http://nutritionfacts.org/topics/dr-david-spence/"}}
{"_id": "PLAIN-1065", "text": "Dr. Walter Kempner", "metadata": {"url": "http://nutritionfacts.org/topics/dr-walter-kempner/"}}
{"_id": "PLAIN-1077", "text": "dulse", "metadata": {"url": "http://nutritionfacts.org/topics/dulse/"}}
{"_id": "PLAIN-1087", "text": "Easter Island", "metadata": {"url": "http://nutritionfacts.org/topics/easter-island/"}}
{"_id": "PLAIN-1097", "text": "Eggbeaters", "metadata": {"url": "http://nutritionfacts.org/topics/eggbeaters/"}}
{"_id": "PLAIN-1108", "text": "endocannabinoids", "metadata": {"url": "http://nutritionfacts.org/topics/endocannabinoids/"}}
{"_id": "PLAIN-1118", "text": "energy", "metadata": {"url": "http://nutritionfacts.org/topics/energy/"}}
{"_id": "PLAIN-1129", "text": "erectile dysfunction", "metadata": {"url": "http://nutritionfacts.org/topics/erectile-dysfunction/"}}
{"_id": "PLAIN-1140", "text": "European Food Safety Authority", "metadata": {"url": "http://nutritionfacts.org/topics/european-food-safety-authority/"}}
{"_id": "PLAIN-1150", "text": "eye parasites", "metadata": {"url": "http://nutritionfacts.org/topics/eye-parasites/"}}
{"_id": "PLAIN-1160", "text": "fatty liver disease", "metadata": {"url": "http://nutritionfacts.org/topics/fatty-liver-disease/"}}
{"_id": "PLAIN-1171", "text": "fennel", "metadata": {"url": "http://nutritionfacts.org/topics/fennel/"}}
{"_id": "PLAIN-1181", "text": "figs", "metadata": {"url": "http://nutritionfacts.org/topics/figs/"}}
{"_id": "PLAIN-1192", "text": "flavonols", "metadata": {"url": "http://nutritionfacts.org/topics/flavonols/"}}
{"_id": "PLAIN-1202", "text": "folate", "metadata": {"url": "http://nutritionfacts.org/topics/folate/"}}
{"_id": "PLAIN-1213", "text": "formaldehyde", "metadata": {"url": "http://nutritionfacts.org/topics/formaldehyde/"}}
{"_id": "PLAIN-1224", "text": "fructans", "metadata": {"url": "http://nutritionfacts.org/topics/fructans/"}}
{"_id": "PLAIN-1235", "text": "galactose", "metadata": {"url": "http://nutritionfacts.org/topics/galactose/"}}
{"_id": "PLAIN-1245", "text": "gastric emptying", "metadata": {"url": "http://nutritionfacts.org/topics/gastric-emptying/"}}
{"_id": "PLAIN-1261", "text": "glaucoma", "metadata": {"url": "http://nutritionfacts.org/topics/glaucoma/"}}
{"_id": "PLAIN-1273", "text": "goiter", "metadata": {"url": "http://nutritionfacts.org/topics/goiter/"}}
{"_id": "PLAIN-1287", "text": "grapefruit juice", "metadata": {"url": "http://nutritionfacts.org/topics/grapefruit-juice/"}}
{"_id": "PLAIN-1298", "text": "grilling", "metadata": {"url": "http://nutritionfacts.org/topics/grilling/"}}
{"_id": "PLAIN-1308", "text": "hair loss", "metadata": {"url": "http://nutritionfacts.org/topics/hair-loss/"}}
{"_id": "PLAIN-1319", "text": "Harvard Nurses' Health Study", "metadata": {"url": "http://nutritionfacts.org/topics/harvard-nurses-health-study/"}}
{"_id": "PLAIN-1330", "text": "health food stores", "metadata": {"url": "http://nutritionfacts.org/topics/health-food-stores/"}}
{"_id": "PLAIN-1341", "text": "HeLa cells", "metadata": {"url": "http://nutritionfacts.org/topics/hela-cells/"}}
{"_id": "PLAIN-1352", "text": "herbs", "metadata": {"url": "http://nutritionfacts.org/topics/herbs/"}}
{"_id": "PLAIN-1362", "text": "hijiki", "metadata": {"url": "http://nutritionfacts.org/topics/hijiki/"}}
{"_id": "PLAIN-1373", "text": "hormesis", "metadata": {"url": "http://nutritionfacts.org/topics/hormesis/"}}
{"_id": "PLAIN-1386", "text": "Hydroxycut", "metadata": {"url": "http://nutritionfacts.org/topics/hydroxycut/"}}
{"_id": "PLAIN-1397", "text": "IgA", "metadata": {"url": "http://nutritionfacts.org/topics/iga/"}}
{"_id": "PLAIN-1408", "text": "industrial pollutants", "metadata": {"url": "http://nutritionfacts.org/topics/industrial-pollutants/"}}
{"_id": "PLAIN-1418", "text": "insecticides", "metadata": {"url": "http://nutritionfacts.org/topics/insecticides/"}}
{"_id": "PLAIN-1428", "text": "iodine", "metadata": {"url": "http://nutritionfacts.org/topics/iodine/"}}
{"_id": "PLAIN-1440", "text": "jam", "metadata": {"url": "http://nutritionfacts.org/topics/jam/"}}
{"_id": "PLAIN-1451", "text": "juice", "metadata": {"url": "http://nutritionfacts.org/topics/juice/"}}
{"_id": "PLAIN-1462", "text": "kidney", "metadata": {"url": "http://nutritionfacts.org/topics/kidney/"}}
{"_id": "PLAIN-1472", "text": "kiwi fruit", "metadata": {"url": "http://nutritionfacts.org/topics/kiwi-fruit/"}}
{"_id": "PLAIN-1484", "text": "lamb", "metadata": {"url": "http://nutritionfacts.org/topics/lamb/"}}
{"_id": "PLAIN-1495", "text": "lecithin", "metadata": {"url": "http://nutritionfacts.org/topics/lecithin/"}}
{"_id": "PLAIN-1505", "text": "lettuce", "metadata": {"url": "http://nutritionfacts.org/topics/lettuce/"}}
{"_id": "PLAIN-1515", "text": "limonin", "metadata": {"url": "http://nutritionfacts.org/topics/limonin/"}}
{"_id": "PLAIN-1526", "text": "liver cancer", "metadata": {"url": "http://nutritionfacts.org/topics/liver-cancer/"}}
{"_id": "PLAIN-1536", "text": "lovastatin", "metadata": {"url": "http://nutritionfacts.org/topics/lovastatin/"}}
{"_id": "PLAIN-1546", "text": "lycopene", "metadata": {"url": "http://nutritionfacts.org/topics/lycopene/"}}
{"_id": "PLAIN-1556", "text": "maggots", "metadata": {"url": "http://nutritionfacts.org/topics/maggots/"}}
{"_id": "PLAIN-1567", "text": "MAO Inhibitors", "metadata": {"url": "http://nutritionfacts.org/topics/mao-inhibitors/"}}
{"_id": "PLAIN-1578", "text": "mastectomy", "metadata": {"url": "http://nutritionfacts.org/topics/mastectomy/"}}
{"_id": "PLAIN-1589", "text": "medical education", "metadata": {"url": "http://nutritionfacts.org/topics/medical-education/"}}
{"_id": "PLAIN-1600", "text": "MelQx", "metadata": {"url": "http://nutritionfacts.org/topics/melqx/"}}
{"_id": "PLAIN-1610", "text": "mesothelioma", "metadata": {"url": "http://nutritionfacts.org/topics/mesothelioma/"}}
{"_id": "PLAIN-1620", "text": "methylmalonic acid", "metadata": {"url": "http://nutritionfacts.org/topics/methylmalonic-acid/"}}
{"_id": "PLAIN-1634", "text": "migraines", "metadata": {"url": "http://nutritionfacts.org/topics/migraines/"}}
{"_id": "PLAIN-1644", "text": "mitochondria", "metadata": {"url": "http://nutritionfacts.org/topics/mitochondria/"}}
{"_id": "PLAIN-1655", "text": "mortality", "metadata": {"url": "http://nutritionfacts.org/topics/mortality/"}}
{"_id": "PLAIN-1666", "text": "muscle disease", "metadata": {"url": "http://nutritionfacts.org/topics/muscle-disease/"}}
{"_id": "PLAIN-1678", "text": "mycotoxins", "metadata": {"url": "http://nutritionfacts.org/topics/mycotoxins/"}}
{"_id": "PLAIN-1689", "text": "nasal irrigation", "metadata": {"url": "http://nutritionfacts.org/topics/nasal-irrigation/"}}
{"_id": "PLAIN-1699", "text": "National Pork Producers Council", "metadata": {"url": "http://nutritionfacts.org/topics/national-pork-producers-council/"}}
{"_id": "PLAIN-1709", "text": "Neu5Gc", "metadata": {"url": "http://nutritionfacts.org/topics/neu5gc/"}}
{"_id": "PLAIN-1720", "text": "nightshades", "metadata": {"url": "http://nutritionfacts.org/topics/nightshades/"}}
{"_id": "PLAIN-1740", "text": "nutritional yeast", "metadata": {"url": "http://nutritionfacts.org/topics/nutritional-yeast/"}}
{"_id": "PLAIN-1750", "text": "oils", "metadata": {"url": "http://nutritionfacts.org/topics/oils/"}}
{"_id": "PLAIN-1761", "text": "oral health", "metadata": {"url": "http://nutritionfacts.org/topics/oral-health/"}}
{"_id": "PLAIN-1771", "text": "organochlorines", "metadata": {"url": "http://nutritionfacts.org/topics/organochlorines/"}}
{"_id": "PLAIN-1783", "text": "oxalates", "metadata": {"url": "http://nutritionfacts.org/topics/oxalates/"}}
{"_id": "PLAIN-1793", "text": "palmitic acid", "metadata": {"url": "http://nutritionfacts.org/topics/palmitic-acid/"}}
{"_id": "PLAIN-1804", "text": "parasites", "metadata": {"url": "http://nutritionfacts.org/topics/parasites/"}}
{"_id": "PLAIN-1816", "text": "peaches", "metadata": {"url": "http://nutritionfacts.org/topics/peaches/"}}
{"_id": "PLAIN-1826", "text": "penis size", "metadata": {"url": "http://nutritionfacts.org/topics/penis-size/"}}
{"_id": "PLAIN-1836", "text": "persistent organic pollutants", "metadata": {"url": "http://nutritionfacts.org/topics/persistent-organic-pollutants/"}}
{"_id": "PLAIN-1846", "text": "phenolics", "metadata": {"url": "http://nutritionfacts.org/topics/phenolics/"}}
{"_id": "PLAIN-1856", "text": "phytates", "metadata": {"url": "http://nutritionfacts.org/topics/phytates/"}}
{"_id": "PLAIN-1866", "text": "pineapple juice", "metadata": {"url": "http://nutritionfacts.org/topics/pineapple-juice/"}}
{"_id": "PLAIN-1876", "text": "plant protein", "metadata": {"url": "http://nutritionfacts.org/topics/plant-protein/"}}
{"_id": "PLAIN-1886", "text": "pneumovax", "metadata": {"url": "http://nutritionfacts.org/topics/pneumovax/"}}
{"_id": "PLAIN-1896", "text": "polyphenols", "metadata": {"url": "http://nutritionfacts.org/topics/polyphenols/"}}
{"_id": "PLAIN-1907", "text": "porcine endogenous retroviruses", "metadata": {"url": "http://nutritionfacts.org/topics/porcine-endogenous-retroviruses/"}}
{"_id": "PLAIN-1918", "text": "poultry viruses", "metadata": {"url": "http://nutritionfacts.org/topics/poultry-viruses/"}}
{"_id": "PLAIN-1928", "text": "premenstrual syndrome", "metadata": {"url": "http://nutritionfacts.org/topics/premenstrual-syndrome/"}}
{"_id": "PLAIN-1939", "text": "processed meats", "metadata": {"url": "http://nutritionfacts.org/topics/processed-meats/"}}
{"_id": "PLAIN-1949", "text": "Prozac", "metadata": {"url": "http://nutritionfacts.org/topics/prozac/"}}
{"_id": "PLAIN-1961", "text": "pulmonary embolism", "metadata": {"url": "http://nutritionfacts.org/topics/pulmonary-embolism/"}}
{"_id": "PLAIN-1971", "text": "quercitin", "metadata": {"url": "http://nutritionfacts.org/topics/quercitin/"}}
{"_id": "PLAIN-1982", "text": "ranking foods", "metadata": {"url": "http://nutritionfacts.org/topics/ranking-foods/"}}
{"_id": "PLAIN-1994", "text": "red onions", "metadata": {"url": "http://nutritionfacts.org/topics/red-onions/"}}
{"_id": "PLAIN-2007", "text": "reversing chronic disease", "metadata": {"url": "http://nutritionfacts.org/topics/reversing-chronic-disease/"}}
{"_id": "PLAIN-2018", "text": "Richard Dawkins", "metadata": {"url": "http://nutritionfacts.org/topics/richard-dawkins/"}}
{"_id": "PLAIN-2029", "text": "rutabagas", "metadata": {"url": "http://nutritionfacts.org/topics/rutabagas/"}}
{"_id": "PLAIN-2039", "text": "saliva", "metadata": {"url": "http://nutritionfacts.org/topics/saliva/"}}
{"_id": "PLAIN-2050", "text": "saturate fat", "metadata": {"url": "http://nutritionfacts.org/topics/saturate-fat/"}}
{"_id": "PLAIN-2060", "text": "sea vegetables", "metadata": {"url": "http://nutritionfacts.org/topics/sea-vegetables/"}}
{"_id": "PLAIN-2070", "text": "sense of smell", "metadata": {"url": "http://nutritionfacts.org/topics/sense-of-smell/"}}
{"_id": "PLAIN-2080", "text": "sheep", "metadata": {"url": "http://nutritionfacts.org/topics/sheep/"}}
{"_id": "PLAIN-2091", "text": "sinusitis", "metadata": {"url": "http://nutritionfacts.org/topics/sinusitis/"}}
{"_id": "PLAIN-2101", "text": "smoked foods", "metadata": {"url": "http://nutritionfacts.org/topics/smoked-foods/"}}
{"_id": "PLAIN-2112", "text": "sodium bicarbonate", "metadata": {"url": "http://nutritionfacts.org/topics/sodium-bicarbonate/"}}
{"_id": "PLAIN-2123", "text": "Spain", "metadata": {"url": "http://nutritionfacts.org/topics/spain/"}}
{"_id": "PLAIN-2133", "text": "spirulina", "metadata": {"url": "http://nutritionfacts.org/topics/spirulina/"}}
{"_id": "PLAIN-2144", "text": "SSRI's", "metadata": {"url": "http://nutritionfacts.org/topics/ssris/"}}
{"_id": "PLAIN-2155", "text": "steroids", "metadata": {"url": "http://nutritionfacts.org/topics/steroids/"}}
{"_id": "PLAIN-2166", "text": "stroke", "metadata": {"url": "http://nutritionfacts.org/topics/stroke/"}}
{"_id": "PLAIN-2176", "text": "sulforaphane", "metadata": {"url": "http://nutritionfacts.org/topics/sulforaphane/"}}
{"_id": "PLAIN-2186", "text": "supplements", "metadata": {"url": "http://nutritionfacts.org/topics/supplements/"}}
{"_id": "PLAIN-2196", "text": "sweet potatoes", "metadata": {"url": "http://nutritionfacts.org/topics/sweet-potatoes/"}}
{"_id": "PLAIN-2208", "text": "tapeworms", "metadata": {"url": "http://nutritionfacts.org/topics/tapeworms/"}}
{"_id": "PLAIN-2219", "text": "telomeres", "metadata": {"url": "http://nutritionfacts.org/topics/telomeres/"}}
{"_id": "PLAIN-2229", "text": "thermogenics", "metadata": {"url": "http://nutritionfacts.org/topics/thermogenics/"}}
{"_id": "PLAIN-2239", "text": "tick bites", "metadata": {"url": "http://nutritionfacts.org/topics/tick-bites/"}}
{"_id": "PLAIN-2249", "text": "tongue cancer", "metadata": {"url": "http://nutritionfacts.org/topics/tongue-cancer/"}}
{"_id": "PLAIN-2260", "text": "trans fat", "metadata": {"url": "http://nutritionfacts.org/topics/trans-fat/"}}
{"_id": "PLAIN-2270", "text": "tryptophan", "metadata": {"url": "http://nutritionfacts.org/topics/tryptophan/"}}
{"_id": "PLAIN-2280", "text": "turmeric", "metadata": {"url": "http://nutritionfacts.org/topics/turmeric/"}}
{"_id": "PLAIN-2290", "text": "ulcerative colitis", "metadata": {"url": "http://nutritionfacts.org/topics/ulcerative-colitis/"}}
{"_id": "PLAIN-2300", "text": "uterine cancer", "metadata": {"url": "http://nutritionfacts.org/topics/uterine-cancer/"}}
{"_id": "PLAIN-2310", "text": "Vaseline", "metadata": {"url": "http://nutritionfacts.org/topics/vaseline/"}}
{"_id": "PLAIN-2320", "text": "veggie burgers", "metadata": {"url": "http://nutritionfacts.org/topics/veggie-burgers/"}}
{"_id": "PLAIN-2331", "text": "Vioxx", "metadata": {"url": "http://nutritionfacts.org/topics/vioxx/"}}
{"_id": "PLAIN-2342", "text": "vitamin E", "metadata": {"url": "http://nutritionfacts.org/topics/vitamin-e/"}}
{"_id": "PLAIN-2353", "text": "walnut", "metadata": {"url": "http://nutritionfacts.org/topics/walnut/"}}
{"_id": "PLAIN-2363", "text": "weeds", "metadata": {"url": "http://nutritionfacts.org/topics/weeds/"}}
{"_id": "PLAIN-2374", "text": "Whitecoat project", "metadata": {"url": "http://nutritionfacts.org/topics/whitecoat-project/"}}
{"_id": "PLAIN-2385", "text": "World Health Organization", "metadata": {"url": "http://nutritionfacts.org/topics/world-health-organization/"}}
{"_id": "PLAIN-2395", "text": "xylitol", "metadata": {"url": "http://nutritionfacts.org/topics/xylitol/"}}
{"_id": "PLAIN-2407", "text": "zingerone", "metadata": {"url": "http://nutritionfacts.org/topics/zingerone/"}}
{"_id": "PLAIN-2429", "text": "Diverticulosis: When Our Most Common Gut Disorder Hardly Existed", "metadata": {"url": "http://nutritionfacts.org/video/diverticulosis-when-our-most-common-gut-disorder-hardly-existed/"}}
{"_id": "PLAIN-2439", "text": "From Table to Able: Combating Disabling Diseases with Food", "metadata": {"url": "http://nutritionfacts.org/video/from-table-to-able/"}}
{"_id": "PLAIN-2449", "text": "How to Make Your Own Fruit and Vegetable Wash", "metadata": {"url": "http://nutritionfacts.org/video/how-to-make-your-own-fruit-and-vegetable-wash/"}}
{"_id": "PLAIN-2459", "text": "How to Prevent a Stroke", "metadata": {"url": "http://nutritionfacts.org/video/how-to-prevent-a-stroke/"}}
{"_id": "PLAIN-2469", "text": "If White Rice is Linked to Diabetes, What About China?", "metadata": {"url": "http://nutritionfacts.org/video/if-white-rice-is-linked-to-diabetes-what-about-china/"}}
{"_id": "PLAIN-2479", "text": "Stool pH and Colon Cancer", "metadata": {"url": "http://nutritionfacts.org/video/stool-ph-and-colon-cancer/"}}
{"_id": "PLAIN-2489", "text": "Why Prevention is Worth a Ton of Cure", "metadata": {"url": "http://nutritionfacts.org/video/why-prevention-is-worth-a-ton-of-cure/"}}
{"_id": "PLAIN-2499", "text": "The Saturated Fat Studies: Set Up to Fail", "metadata": {"url": "http://nutritionfacts.org/video/the-saturated-fat-studies-set-up-to-fail/"}}
{"_id": "PLAIN-2509", "text": "Chicken Big: Poultry and Obesity", "metadata": {"url": "http://nutritionfacts.org/video/chicken-big-poultry-and-obesity/"}}
{"_id": "PLAIN-2519", "text": "How Much Added Sugar Is Too Much?", "metadata": {"url": "http://nutritionfacts.org/video/how-much-added-sugar-is-too-much/"}}
{"_id": "PLAIN-2529", "text": "Juicing Removes More Than Just Fiber", "metadata": {"url": "http://nutritionfacts.org/video/juicing-removes-more-than-just-fiber/"}}
{"_id": "PLAIN-2539", "text": "Cooked Beans or Sprouted Beans?", "metadata": {"url": "http://nutritionfacts.org/video/cooked-beans-or-sprouted-beans/"}}
{"_id": "PLAIN-2549", "text": "How the Egg Board Designs Misleading Studies", "metadata": {"url": "http://nutritionfacts.org/video/how-the-egg-board-designs-misleading-studies/"}}
{"_id": "PLAIN-2559", "text": "Treating Hepatitis C with Chlorella", "metadata": {"url": "http://nutritionfacts.org/video/treating-hepatitis-c-with-chlorella/"}}
{"_id": "PLAIN-2569", "text": "Prevent Cancer From Going on TOR", "metadata": {"url": "http://nutritionfacts.org/video/prevent-cancer-from-going-on-tor/"}}
{"_id": "PLAIN-2579", "text": "Alzheimer\u2019s Disease: Grain Brain or Meathead?", "metadata": {"url": "http://nutritionfacts.org/video/alzheimers-disease-grain-brain-or-meathead/"}}
{"_id": "PLAIN-2589", "text": "Anti-inflammatory Life is a Bowl of Cherries", "metadata": {"url": "http://nutritionfacts.org/video/anti-inflammatory-life-is-a-bowl-of-cherries/"}}
{"_id": "PLAIN-2599", "text": "Alpha Gal and the Lone Star Tick", "metadata": {"url": "http://nutritionfacts.org/video/alpha-gal-and-the-lone-star-tick/"}}
{"_id": "PLAIN-2609", "text": "Treating Asthma and Eczema With Plant-Based Diets", "metadata": {"url": "http://nutritionfacts.org/video/treating-asthma-and-eczema-with-plant-based-diets/"}}
{"_id": "PLAIN-2619", "text": "Fully Consensual Heart Disease Treatment", "metadata": {"url": "http://nutritionfacts.org/video/fully-consensual-heart-disease-treatment/"}}
{"_id": "PLAIN-2629", "text": "Dietary Sources of Alkylphenol Endocrine Disruptors", "metadata": {"url": "http://nutritionfacts.org/video/dietary-sources-of-alkylphenol-endocrine-disruptors/"}}
{"_id": "PLAIN-2639", "text": "Who Determines if Food Additives are Safe?", "metadata": {"url": "http://nutritionfacts.org/video/who-determines-if-food-additives-are-safe/"}}
{"_id": "PLAIN-2649", "text": "Boosting the Bioavailability of Curcumin", "metadata": {"url": "http://nutritionfacts.org/video/boosting-the-bioavailability-of-curcumin/"}}
{"_id": "PLAIN-2659", "text": "Greens vs. Glaucoma", "metadata": {"url": "http://nutritionfacts.org/video/greens-vs-glaucoma/"}}
{"_id": "PLAIN-2669", "text": "Autopsy of Chicken Nuggets", "metadata": {"url": "http://nutritionfacts.org/video/autopsy-of-chicken-nuggets/"}}
{"_id": "PLAIN-2679", "text": "Phosphate Additives in Meat Purge and Cola", "metadata": {"url": "http://nutritionfacts.org/video/phosphate-additives-in-meat-purge-and-cola/"}}
{"_id": "PLAIN-2689", "text": "Enhanced Athletic Recovery Without Undermining Adaptation", "metadata": {"url": "http://nutritionfacts.org/video/enhanced-athletic-recovery-without-undermining-adaptation/"}}
{"_id": "PLAIN-2699", "text": "Treating Multiple Sclerosis With the Swank MS Diet", "metadata": {"url": "http://nutritionfacts.org/video/treating-multiple-sclerosis-with-the-swank-ms-diet/"}}
{"_id": "PLAIN-2709", "text": "Tricks to Get Kids to Eat Healthier at School", "metadata": {"url": "http://nutritionfacts.org/video/tricks-to-get-kids-to-eat-healthier-at-school/"}}
{"_id": "PLAIN-2719", "text": "Reducing Muscle Fatigue With Citrus", "metadata": {"url": "http://nutritionfacts.org/video/reducing-muscle-fatigue-with-citrus/"}}
{"_id": "PLAIN-2729", "text": "Fighting the Blues With Greens?", "metadata": {"url": "http://nutritionfacts.org/video/fighting-the-blues-with-greens-mao-inhibitors-in-plants/"}}
{"_id": "PLAIN-2739", "text": "Do Dental X-Rays Cause Brain Tumors?", "metadata": {"url": "http://nutritionfacts.org/video/do-dental-x-rays-cause-brain-tumors/"}}
{"_id": "PLAIN-2749", "text": "Should Probiotics Be Taken Before, During, or After Meals?", "metadata": {"url": "http://nutritionfacts.org/video/should-probiotics-be-taken-before-during-or-after-meals/"}}
{"_id": "PLAIN-2759", "text": "Breast Cancer and Alcohol: How Much is Safe?", "metadata": {"url": "http://nutritionfacts.org/video/breast-cancer-and-alcohol-what-much-is-safe/"}}
{"_id": "PLAIN-2769", "text": "The McGovern Report", "metadata": {"url": "http://nutritionfacts.org/video/the-mcgovern-report/"}}
{"_id": "PLAIN-2779", "text": "Raisins vs. Jelly Beans for Athletic Performance", "metadata": {"url": "http://nutritionfacts.org/video/raisins-vs-jelly-beans-for-athletic-performance/"}}
{"_id": "PLAIN-2789", "text": "Protein, Puberty, and Pollutants", "metadata": {"url": "http://nutritionfacts.org/video/protein-puberty-and-pollutants/"}}
{"_id": "PLAIN-2799", "text": "Meat Fumes: Dietary Secondhand Smoke", "metadata": {"url": "http://nutritionfacts.org/video/meat-fumes-dietary-secondhand-smoke/"}}
{"_id": "PLAIN-2809", "text": "Apple Skin: Peeling Back Cancer", "metadata": {"url": "http://nutritionfacts.org/video/apple-skin-peeling-back-cancer/"}}
{"_id": "PLAIN-2819", "text": "Potassium and Autoimmune Disease", "metadata": {"url": "http://nutritionfacts.org/video/potassium-and-autoimmune-disease/"}}
{"_id": "PLAIN-2829", "text": "Unsweetening the Diet", "metadata": {"url": "http://nutritionfacts.org/video/unsweetening-the-diet/"}}
{"_id": "PLAIN-2839", "text": "Side-Effect of Fenugreek Consumption", "metadata": {"url": "http://nutritionfacts.org/video/side-effect-of-fenugreek-consumption/"}}
{"_id": "PLAIN-2849", "text": "Protein and Heart Disease", "metadata": {"url": "http://nutritionfacts.org/video/protein-and-heart-disease/"}}
{"_id": "PLAIN-2859", "text": "Pollutants in Californian Breast Tissue", "metadata": {"url": "http://nutritionfacts.org/video/pollutants-in-californian-breast-tissue/"}}
{"_id": "PLAIN-2869", "text": "Good Grub: The Healthiest Meat", "metadata": {"url": "http://nutritionfacts.org/video/good-grub-the-healthiest-meat/"}}
{"_id": "PLAIN-2879", "text": "How Plant-Based to Lower IGF-1?", "metadata": {"url": "http://nutritionfacts.org/video/how-plant-based-to-lower-igf-1/"}}
{"_id": "PLAIN-2889", "text": "Extra Virgin Olive Oil vs. Nuts", "metadata": {"url": "http://nutritionfacts.org/video/extra-virgin-olive-oil-vs-nuts/"}}
{"_id": "PLAIN-2899", "text": "Tipping Firmicutes to Bacteroidetes", "metadata": {"url": "http://nutritionfacts.org/video/tipping-the-balance-of-firmicutes-to-bacteroidetes/"}}
{"_id": "PLAIN-2909", "text": "Optimal Phytosterol Source", "metadata": {"url": "http://nutritionfacts.org/video/optimal-phytosterol-source/"}}
{"_id": "PLAIN-2919", "text": "The Wrong Way to Boost Serotonin", "metadata": {"url": "http://nutritionfacts.org/video/the-wrong-way-to-boost-serotonin/"}}
{"_id": "PLAIN-2929", "text": "Kiwifruit and DNA Repair", "metadata": {"url": "http://nutritionfacts.org/video/kiwifruit-and-dna-repair/"}}
{"_id": "PLAIN-2939", "text": "The Leaky Gut Theory of Why Animal Products Cause Inflammation", "metadata": {"url": "http://nutritionfacts.org/video/the-leaky-gut-theory-of-why-animal-products-cause-inflammation/"}}
{"_id": "PLAIN-2949", "text": "Zero Tolerance to Acceptable Risk", "metadata": {"url": "http://nutritionfacts.org/video/zero-tolerance-to-acceptable-risk/"}}
{"_id": "PLAIN-2959", "text": "Dietary Supplement Snake Oil", "metadata": {"url": "http://nutritionfacts.org/video/dietary-supplement-snake-oil/"}}
{"_id": "PLAIN-2969", "text": "SAD States: Standard American Diet State-By-State Comparison", "metadata": {"url": "http://nutritionfacts.org/video/sad-states-standard-american-diet-state-by-state-comparison/"}}
{"_id": "PLAIN-2979", "text": "Cow\u2019s Milk Casomorphin and Crib Death", "metadata": {"url": "http://nutritionfacts.org/video/cows-milk-casomorphin-and-crib-death/"}}
{"_id": "PLAIN-2990", "text": "Watermelon as Treatment for Erectile Dysfunction", "metadata": {"url": "http://nutritionfacts.org/video/watermelon-as-treatment-for-erectile-dysfunction/"}}
{"_id": "PLAIN-3000", "text": "Chicken Dioxins, Viruses, or Antibiotics?", "metadata": {"url": "http://nutritionfacts.org/video/chicken-dioxins-viruses-or-antibiotics/"}}
{"_id": "PLAIN-3013", "text": "Lung Cancer Metastases and Broccoli", "metadata": {"url": "http://nutritionfacts.org/video/lung-cancer-metastases-and-broccoli/"}}
{"_id": "PLAIN-3025", "text": "So Should We Drink Beet Juice or Not?", "metadata": {"url": "http://nutritionfacts.org/video/so-should-we-drink-beet-juice-or-not/"}}
{"_id": "PLAIN-3036", "text": "Asparagus Pee", "metadata": {"url": "http://nutritionfacts.org/video/asparagus-pee/"}}
{"_id": "PLAIN-3052", "text": "Anti Up on the Veggies", "metadata": {"url": "http://nutritionfacts.org/video/anti-up-on-the-veggies/"}}
{"_id": "PLAIN-3062", "text": "Amla Versus Cancer Cell Growth", "metadata": {"url": "http://nutritionfacts.org/video/amla-versus-cancer-cell-growth/"}}
{"_id": "PLAIN-3073", "text": "Glycotoxins", "metadata": {"url": "http://nutritionfacts.org/video/glycotoxins/"}}
{"_id": "PLAIN-3084", "text": "How the Institute of Medicine Arrived at Their Vitamin D Recommendation", "metadata": {"url": "http://nutritionfacts.org/video/how-the-institute-of-medicine-arrived-at-their-vitamin-d-recommendation/"}}
{"_id": "PLAIN-3096", "text": "Phytochemicals: The Nutrition Facts Missing From the Label", "metadata": {"url": "http://nutritionfacts.org/video/phytochemicals-the-nutrition-facts-missing-from-the-label/"}}
{"_id": "PLAIN-3114", "text": "Plant Protein Preferable", "metadata": {"url": "http://nutritionfacts.org/video/plant-protein-preferable/"}}
{"_id": "PLAIN-3130", "text": "Are Avocados Bad for You?", "metadata": {"url": "http://nutritionfacts.org/video/are-avocados-bad-for-you/"}}
{"_id": "PLAIN-3140", "text": "Stool Size Matters", "metadata": {"url": "http://nutritionfacts.org/video/stool-size-matters/"}}
{"_id": "PLAIN-3150", "text": "Golden Glow", "metadata": {"url": "http://nutritionfacts.org/video/golden-glow/"}}
{"_id": "PLAIN-3160", "text": "Egg Cholesterol in the Diet", "metadata": {"url": "http://nutritionfacts.org/video/egg-cholesterol-in-the-diet/"}}
{"_id": "PLAIN-3170", "text": "Melatonin & Breast Cancer", "metadata": {"url": "http://nutritionfacts.org/video/melatonin-breast-cancer/"}}
{"_id": "PLAIN-3180", "text": "Is Kimchi Good For You?", "metadata": {"url": "http://nutritionfacts.org/video/is-kimchi-good-for-you/"}}
{"_id": "PLAIN-3190", "text": "Obesity-Causing Pollutants in Food", "metadata": {"url": "http://nutritionfacts.org/video/obesity-causing-pollutants-in-food/"}}
{"_id": "PLAIN-3200", "text": "Anabolic Steroids in Meat", "metadata": {"url": "http://nutritionfacts.org/video/anabolic-steroids-in-meat/"}}
{"_id": "PLAIN-3210", "text": "Caffeine During Pregnancy", "metadata": {"url": "http://nutritionfacts.org/video/caffeine-during-pregnancy/"}}
{"_id": "PLAIN-3220", "text": "Reversing Cognitive Decline", "metadata": {"url": "http://nutritionfacts.org/video/reversing-cognitive-decline/"}}
{"_id": "PLAIN-3230", "text": "Wart Cancer Viruses in Food", "metadata": {"url": "http://nutritionfacts.org/video/wart-cancer-virusesin-food/"}}
{"_id": "PLAIN-3240", "text": "Is Homeopathy Just Placebo?", "metadata": {"url": "http://nutritionfacts.org/video/is-homeopathy-just-placebo/"}}
{"_id": "PLAIN-3250", "text": "Improving Memory Through Diet", "metadata": {"url": "http://nutritionfacts.org/video/improving-memory-through-diet/"}}
{"_id": "PLAIN-3260", "text": "Update on Juice Plus+\u00ae", "metadata": {"url": "http://nutritionfacts.org/video/update-on-juice-plus/"}}
{"_id": "PLAIN-3270", "text": "Flaxseeds vs. Chia Seeds", "metadata": {"url": "http://nutritionfacts.org/video/flaxseeds-vs-chia-seeds/"}}
{"_id": "PLAIN-3280", "text": "Brown Rice vs. Black Rice", "metadata": {"url": "http://nutritionfacts.org/video/brown-rice-vs-black-rice/"}}
{"_id": "PLAIN-3291", "text": "Lutein, Lycopene, and Selenium Pills", "metadata": {"url": "http://nutritionfacts.org/video/lutein-lycopene-and-selenium-pills/"}}
{"_id": "PLAIN-3301", "text": "Amalgam Fillings vs. Canned Tuna", "metadata": {"url": "http://nutritionfacts.org/video/amalgam-fillings-vs-canned-tuna/"}}
{"_id": "PLAIN-3311", "text": "New Corpse Smell", "metadata": {"url": "http://nutritionfacts.org/video/new-corpse-smell/"}}
{"_id": "PLAIN-3321", "text": "#1 Anticancer Vegetable", "metadata": {"url": "http://nutritionfacts.org/video/1-anticancer-vegetable/"}}
{"_id": "PLAIN-3331", "text": "Salt OK if Blood Pressure is OK?", "metadata": {"url": "http://nutritionfacts.org/video/salt-ok-if-blood-pressure-is-ok/"}}
{"_id": "PLAIN-3341", "text": "Are Avocados Good for You?", "metadata": {"url": "http://nutritionfacts.org/video/are-avocadoes-good-for-you/"}}
{"_id": "PLAIN-3351", "text": "Update on Spirulina", "metadata": {"url": "http://nutritionfacts.org/video/update-on-spirulina/"}}
{"_id": "PLAIN-3361", "text": "Update on Chocolate", "metadata": {"url": "http://nutritionfacts.org/video/update-on-chocolate/"}}
{"_id": "PLAIN-3371", "text": "A Harmless Artificial Sweetener", "metadata": {"url": "http://nutritionfacts.org/video/a-harmless-artificial-sweetener/"}}
{"_id": "PLAIN-3381", "text": "Are Artificial Colors Harmful?", "metadata": {"url": "http://nutritionfacts.org/video/are-artificial-colors-harmful/"}}
{"_id": "PLAIN-3391", "text": "Bottled Water vs. Tap", "metadata": {"url": "http://nutritionfacts.org/video/bottled-water-vs-tap-2/"}}
{"_id": "PLAIN-3401", "text": "Superfood Bargains", "metadata": {"url": "http://nutritionfacts.org/video/superfood-bargains-2/"}}
{"_id": "PLAIN-3411", "text": "Dairy & Acne", "metadata": {"url": "http://nutritionfacts.org/video/dairy-acne-2/"}}
{"_id": "PLAIN-3421", "text": "Broccoli Sprouts", "metadata": {"url": "http://nutritionfacts.org/video/broccoli-sprouts/"}}
{"_id": "PLAIN-3431", "text": "Omnivore vs. Vegan Nutrient Deficiencies", "metadata": {"url": "http://nutritionfacts.org/video/omnivore-vs-vegan-nutrient-deficiencies-2/"}}
{"_id": "PLAIN-3441", "text": "Doctors' Nutritional Ignorance", "metadata": {"url": "http://nutritionfacts.org/video/doctors-nutritional-ignorance/"}}
{"_id": "PLAIN-3451", "text": "Blue-Green Algae & Spirulina", "metadata": {"url": "http://nutritionfacts.org/video/blue-green-algae-spirulina/"}}
{"_id": "PLAIN-3461", "text": "Coffee and Mortality", "metadata": {"url": "http://nutritionfacts.org/video/coffee-and-mortality/"}}
{"_id": "PLAIN-3471", "text": "Uprooting the Leading Causes of Death", "metadata": {"url": "http://nutritionfacts.org/video/uprooting-the-leading-causes-of-death/"}}
{"_id": "PLAIN-2", "text": "Do Cholesterol Statin Drugs Cause Breast Cancer?", "metadata": {"url": "http://nutritionfacts.org/2015/07/16/do-cholesterol-statin-drugs-cause-breast-cancer/"}}
{"_id": "PLAIN-12", "text": "Exploiting Autophagy to Live Longer", "metadata": {"url": "http://nutritionfacts.org/2015/06/11/exploiting-autophagy-to-live-longer/"}}
{"_id": "PLAIN-23", "text": "How to Reduce Exposure to Alkylphenols Through Your Diet", "metadata": {"url": "http://nutritionfacts.org/2015/04/28/how-to-reduce-exposure-to-alkylphenols-through-your-diet/"}}
{"_id": "PLAIN-33", "text": "What\u2019s Driving America\u2019s Obesity Problem?", "metadata": {"url": "http://nutritionfacts.org/2015/03/24/whats-driving-americas-obesity-problem/"}}
{"_id": "PLAIN-44", "text": "Who Should be Careful About Curcumin?", "metadata": {"url": "http://nutritionfacts.org/2015/02/12/who-should-be-careful-about-curcumin/"}}
{"_id": "PLAIN-56", "text": "Foods for Glaucoma", "metadata": {"url": "http://nutritionfacts.org/2014/12/30/foods-for-glaucoma/"}}
{"_id": "PLAIN-68", "text": "What is Actually in Chicken Nuggets?", "metadata": {"url": "http://nutritionfacts.org/2014/11/18/what-is-actually-in-chicken-nuggets/"}}
{"_id": "PLAIN-78", "text": "What Do Meat Purge and Cola Have in Common?", "metadata": {"url": "http://nutritionfacts.org/2014/10/14/what-do-meat-purge-and-cola-have-in-common/"}}
{"_id": "PLAIN-91", "text": "Chronic Headaches and Pork Parasites", "metadata": {"url": "http://nutritionfacts.org/2014/08/26/chronic-headaches-and-pork-parasites/"}}
{"_id": "PLAIN-102", "text": "Stopping Heart Disease in Childhood", "metadata": {"url": "http://nutritionfacts.org/2014/07/15/stopping-heart-disease-in-childhood/"}}
{"_id": "PLAIN-112", "text": "Food Dyes and ADHD", "metadata": {"url": "http://nutritionfacts.org/2014/06/10/food-dyes-and-adhd/"}}
{"_id": "PLAIN-123", "text": "How Citrus Might Help Keep Your Hands Warm", "metadata": {"url": "http://nutritionfacts.org/2014/05/01/how-citrus-might-help-keep-your-hands-warm/"}}
{"_id": "PLAIN-133", "text": "Starving Tumors of Their Blood Supply", "metadata": {"url": "http://nutritionfacts.org/2014/03/25/starving-tumors-of-their-blood-supply/"}}
{"_id": "PLAIN-143", "text": "Are Dental X-Rays Safe?", "metadata": {"url": "http://nutritionfacts.org/2014/02/18/are-dental-x-rays-safe/"}}
{"_id": "PLAIN-153", "text": "How Should I Take Probiotics?", "metadata": {"url": "http://nutritionfacts.org/2014/01/02/how-should-i-take-probiotics/"}}
{"_id": "PLAIN-165", "text": "Breast Cancer & Alcohol: How Much is Safe?", "metadata": {"url": "http://nutritionfacts.org/2013/11/28/breast-cancer-alcohol-how-much-is-safe/"}}
{"_id": "PLAIN-175", "text": "Diet and Cellulite", "metadata": {"url": "http://nutritionfacts.org/2013/10/24/can-cellulite-be-treated-with-diet/"}}
{"_id": "PLAIN-186", "text": "Best Treatment for Constipation", "metadata": {"url": "http://nutritionfacts.org/2013/09/17/prunes-metamucil-or-a-plant-based-diet/"}}
{"_id": "PLAIN-196", "text": "Should We Avoid Titanium Dioxide?", "metadata": {"url": "http://nutritionfacts.org/2013/08/13/is-titanium-dioxide-in-food-harmful/"}}
{"_id": "PLAIN-207", "text": "Avoiding Cooked Meat Carcinogens", "metadata": {"url": "http://nutritionfacts.org/2013/07/04/avoiding-cooked-meat-carcinogens/"}}
{"_id": "PLAIN-217", "text": "Plant-Based Diets for Psoriasis", "metadata": {"url": "http://nutritionfacts.org/2013/05/30/plant-based-diets-for-psoriasis/"}}
{"_id": "PLAIN-227", "text": "Increasing Muscle Strength with Fenugreek", "metadata": {"url": "http://nutritionfacts.org/2013/04/23/increasing-muscle-strength-with-fenugreek/"}}
{"_id": "PLAIN-238", "text": "How Chemically Contaminated Are We?", "metadata": {"url": "http://nutritionfacts.org/2013/03/14/how-chemically-contaminated-are-we/"}}
{"_id": "PLAIN-248", "text": "Treating an Enlarged Prostate With Diet", "metadata": {"url": "http://nutritionfacts.org/2013/02/05/treating-an-enlarged-prostate-with-diet/"}}
{"_id": "PLAIN-259", "text": "Optimal Phytosterol Dose and Source", "metadata": {"url": "http://nutritionfacts.org/2012/12/20/best-phytosterol-dose-and-source/"}}
{"_id": "PLAIN-270", "text": "Is Caffeinated Tea Really Dehydrating?", "metadata": {"url": "http://nutritionfacts.org/2012/09/27/is-caffeinated-tea-really-dehydrating/"}}
{"_id": "PLAIN-280", "text": "Mercury Testing Recommended Before Pregnancy", "metadata": {"url": "http://nutritionfacts.org/2012/07/27/mercury-testing-recommended-before-pregnancy/"}}
{"_id": "PLAIN-291", "text": "Stool Size and Breast Cancer Risk", "metadata": {"url": "http://nutritionfacts.org/2012/05/03/stool-size-and-breast-cancer-risk/"}}
{"_id": "PLAIN-307", "text": "Vitamin D: Shedding some light on the new recommendations", "metadata": {"url": "http://nutritionfacts.org/2011/12/15/vitamin-d-shedding-some-light-on-the-new-recommendations/"}}
{"_id": "PLAIN-320", "text": "Breast Cancer and Diet", "metadata": {"url": "http://nutritionfacts.org/2011/09/26/breast-cancer-and-diet/"}}
{"_id": "PLAIN-332", "text": "Can antioxidant-rich spices counteract the effects of a high-fat meal?", "metadata": {"url": "http://nutritionfacts.org/2011/08/23/can-antioxidant-rich-spices-counteract-the-effects-of-a-high-fat-meal/"}}
{"_id": "PLAIN-344", "text": "Dioxins Stored in Our Own Fat May Increase Diabetes Risk", "metadata": {"url": "http://nutritionfacts.org/2015/07/28/dioxins-stored-in-our-own-fat-may-increase-diabetes-risk/"}}
{"_id": "PLAIN-358", "text": "Didn't another study show carnitine was good for the heart?", "metadata": {"url": "http://nutritionfacts.org/questions/could-l-carnitine-be-both-beneficial-and-detrimental-to-cardiac-health/"}}
{"_id": "PLAIN-371", "text": "Any update on the scary in vitro avocado data?", "metadata": {"url": "http://nutritionfacts.org/questions/any-update-on-the-scary-in-vitro-avocado-data/"}}
{"_id": "PLAIN-383", "text": "What do you think of Dr. Jenkins' take on paleolithic diets?", "metadata": {"url": "http://nutritionfacts.org/questions/dr-jenkins-and-plant-based-diets/"}}
{"_id": "PLAIN-395", "text": "What about pepper plus turmeric in V8 juice?", "metadata": {"url": "http://nutritionfacts.org/questions/powerful-pepper-tumeric/"}}
{"_id": "PLAIN-407", "text": "Is annatto food coloring safe?", "metadata": {"url": "http://nutritionfacts.org/questions/is-annatto-safe-for-food-coloring/"}}
{"_id": "PLAIN-418", "text": "Fresh fruit versus frozen--which is better?", "metadata": {"url": "http://nutritionfacts.org/questions/fresh-fruit-versus-frozen-fruit-which-is-better/"}}
{"_id": "PLAIN-430", "text": "Are krill oil supplements better than fish oil capsules?", "metadata": {"url": "http://nutritionfacts.org/questions/are-krill-oil-supplements-better-than-fish-oil-capsules/"}}
{"_id": "PLAIN-441", "text": "Is apple cider vinegar good for you?", "metadata": {"url": "http://nutritionfacts.org/questions/is-apple-cider-vinegar-good-for-you/"}}
{"_id": "PLAIN-457", "text": "How can you believe in any scientific study?", "metadata": {"url": "http://nutritionfacts.org/questions/how-can-you-believe-in-any-study/"}}
{"_id": "PLAIN-468", "text": "Is vitamin D3 (cholecalciferol) preferable to D2 (ergocalciferol)?", "metadata": {"url": "http://nutritionfacts.org/questions/is-d3-cholecalciferol-a-better-source-of-vitamin-d/"}}
{"_id": "PLAIN-478", "text": "accidents", "metadata": {"url": "http://nutritionfacts.org/topics/accidents/"}}
{"_id": "PLAIN-488", "text": "adenovirus 36", "metadata": {"url": "http://nutritionfacts.org/topics/adenovirus-36/"}}
{"_id": "PLAIN-499", "text": "African-American", "metadata": {"url": "http://nutritionfacts.org/topics/african-american/"}}
{"_id": "PLAIN-510", "text": "airport scanners", "metadata": {"url": "http://nutritionfacts.org/topics/airport-scanners/"}}
{"_id": "PLAIN-520", "text": "Alli", "metadata": {"url": "http://nutritionfacts.org/topics/alli/"}}
{"_id": "PLAIN-531", "text": "alternative medicine", "metadata": {"url": "http://nutritionfacts.org/topics/alternative-medicine/"}}
{"_id": "PLAIN-541", "text": "American Dental Association", "metadata": {"url": "http://nutritionfacts.org/topics/american-dental-association/"}}
{"_id": "PLAIN-551", "text": "amnesia", "metadata": {"url": "http://nutritionfacts.org/topics/amnesia/"}}
{"_id": "PLAIN-561", "text": "aneurysm", "metadata": {"url": "http://nutritionfacts.org/topics/aneurysm/"}}
{"_id": "PLAIN-571", "text": "anisakis", "metadata": {"url": "http://nutritionfacts.org/topics/anisakis/"}}
{"_id": "PLAIN-583", "text": "antinutrients", "metadata": {"url": "http://nutritionfacts.org/topics/antinutrients/"}}
{"_id": "PLAIN-593", "text": "apnea", "metadata": {"url": "http://nutritionfacts.org/topics/apnea/"}}
{"_id": "PLAIN-603", "text": "Arkansas", "metadata": {"url": "http://nutritionfacts.org/topics/arkansas/"}}
{"_id": "PLAIN-613", "text": "ascorbic acid", "metadata": {"url": "http://nutritionfacts.org/topics/ascorbic-acid/"}}
{"_id": "PLAIN-623", "text": "Atkins diet", "metadata": {"url": "http://nutritionfacts.org/topics/atkins-diet/"}}
{"_id": "PLAIN-634", "text": "avocados", "metadata": {"url": "http://nutritionfacts.org/topics/avocados/"}}
{"_id": "PLAIN-645", "text": "bagels", "metadata": {"url": "http://nutritionfacts.org/topics/bagels/"}}
{"_id": "PLAIN-660", "text": "beans", "metadata": {"url": "http://nutritionfacts.org/topics/beans/"}}
{"_id": "PLAIN-671", "text": "benzene", "metadata": {"url": "http://nutritionfacts.org/topics/benzene/"}}
{"_id": "PLAIN-681", "text": "betel nuts", "metadata": {"url": "http://nutritionfacts.org/topics/betel-nuts/"}}
{"_id": "PLAIN-691", "text": "bioavailability", "metadata": {"url": "http://nutritionfacts.org/topics/bioavailability/"}}
{"_id": "PLAIN-701", "text": "black raspberries", "metadata": {"url": "http://nutritionfacts.org/topics/black-raspberries/"}}
{"_id": "PLAIN-711", "text": "blood clots", "metadata": {"url": "http://nutritionfacts.org/topics/blood-clots/"}}
{"_id": "PLAIN-721", "text": "BMAA", "metadata": {"url": "http://nutritionfacts.org/topics/bmaa/"}}
{"_id": "PLAIN-731", "text": "bone fractures", "metadata": {"url": "http://nutritionfacts.org/topics/bone-fractures/"}}
{"_id": "PLAIN-741", "text": "BPH", "metadata": {"url": "http://nutritionfacts.org/topics/bph/"}}
{"_id": "PLAIN-751", "text": "BRCA genes", "metadata": {"url": "http://nutritionfacts.org/topics/brca-genes/"}}
{"_id": "PLAIN-761", "text": "breast pain", "metadata": {"url": "http://nutritionfacts.org/topics/breast-pain/"}}
{"_id": "PLAIN-771", "text": "bronchiolitis obliterans", "metadata": {"url": "http://nutritionfacts.org/topics/bronchiolitis-obliterans/"}}
{"_id": "PLAIN-782", "text": "Bush administration", "metadata": {"url": "http://nutritionfacts.org/topics/bush-administration/"}}
{"_id": "PLAIN-792", "text": "cadaverine", "metadata": {"url": "http://nutritionfacts.org/topics/cadaverine/"}}
{"_id": "PLAIN-806", "text": "caloric restriction", "metadata": {"url": "http://nutritionfacts.org/topics/caloric-restriction/"}}
{"_id": "PLAIN-817", "text": "canker sores", "metadata": {"url": "http://nutritionfacts.org/topics/canker-sores/"}}
{"_id": "PLAIN-827", "text": "carcinogens", "metadata": {"url": "http://nutritionfacts.org/topics/carcinogens/"}}
{"_id": "PLAIN-838", "text": "carrageenan", "metadata": {"url": "http://nutritionfacts.org/topics/carrageenan/"}}
{"_id": "PLAIN-850", "text": "cauliflower", "metadata": {"url": "http://nutritionfacts.org/topics/cauliflower/"}}
{"_id": "PLAIN-872", "text": "chanterelle mushrooms", "metadata": {"url": "http://nutritionfacts.org/topics/chanterelle-mushrooms/"}}
{"_id": "PLAIN-882", "text": "Chernobyl", "metadata": {"url": "http://nutritionfacts.org/topics/chernobyl/"}}
{"_id": "PLAIN-892", "text": "chickpeas", "metadata": {"url": "http://nutritionfacts.org/topics/chickpeas/"}}
{"_id": "PLAIN-902", "text": "chlorophyll", "metadata": {"url": "http://nutritionfacts.org/topics/chlorophyll/"}}
{"_id": "PLAIN-913", "text": "cinnamon", "metadata": {"url": "http://nutritionfacts.org/topics/cinnamon/"}}
{"_id": "PLAIN-924", "text": "cocaine", "metadata": {"url": "http://nutritionfacts.org/topics/cocaine/"}}
{"_id": "PLAIN-934", "text": "coffee", "metadata": {"url": "http://nutritionfacts.org/topics/coffee/"}}
{"_id": "PLAIN-946", "text": "coma", "metadata": {"url": "http://nutritionfacts.org/topics/coma/"}}
{"_id": "PLAIN-956", "text": "cooking methods", "metadata": {"url": "http://nutritionfacts.org/topics/cooking-methods/"}}
{"_id": "PLAIN-966", "text": "cortisol", "metadata": {"url": "http://nutritionfacts.org/topics/cortisol/"}}
{"_id": "PLAIN-977", "text": "crib death", "metadata": {"url": "http://nutritionfacts.org/topics/crib-death/"}}
{"_id": "PLAIN-987", "text": "cumin", "metadata": {"url": "http://nutritionfacts.org/topics/cumin/"}}
{"_id": "PLAIN-997", "text": "Czechoslovakia", "metadata": {"url": "http://nutritionfacts.org/topics/czechoslovakia/"}}
{"_id": "PLAIN-1008", "text": "deafness", "metadata": {"url": "http://nutritionfacts.org/topics/deafness/"}}
{"_id": "PLAIN-1018", "text": "DHA", "metadata": {"url": "http://nutritionfacts.org/topics/dha/"}}
{"_id": "PLAIN-1028", "text": "dietary scoring", "metadata": {"url": "http://nutritionfacts.org/topics/dietary-scoring/"}}
{"_id": "PLAIN-1039", "text": "domoic acid", "metadata": {"url": "http://nutritionfacts.org/topics/domoic-acid/"}}
{"_id": "PLAIN-1050", "text": "Dr. Dean Ornish", "metadata": {"url": "http://nutritionfacts.org/topics/dr-dean-ornish/"}}
{"_id": "PLAIN-1066", "text": "Dr. Walter Willett", "metadata": {"url": "http://nutritionfacts.org/topics/dr-walter-willett/"}}
{"_id": "PLAIN-1088", "text": "ECMO", "metadata": {"url": "http://nutritionfacts.org/topics/ecmo/"}}
{"_id": "PLAIN-1098", "text": "eggnog", "metadata": {"url": "http://nutritionfacts.org/topics/eggnog/"}}
{"_id": "PLAIN-1109", "text": "endocrine disruptors", "metadata": {"url": "http://nutritionfacts.org/topics/endocrine-disruptors/"}}
{"_id": "PLAIN-1119", "text": "energy drinks", "metadata": {"url": "http://nutritionfacts.org/topics/energy-drinks/"}}
{"_id": "PLAIN-1130", "text": "ergothioneine", "metadata": {"url": "http://nutritionfacts.org/topics/ergothioneine/"}}
{"_id": "PLAIN-1141", "text": "Evidence-based medicine", "metadata": {"url": "http://nutritionfacts.org/topics/evidence-based-medicine/"}}
{"_id": "PLAIN-1151", "text": "factory farming practices", "metadata": {"url": "http://nutritionfacts.org/topics/factory-farming-practices/"}}
{"_id": "PLAIN-1161", "text": "fava beans", "metadata": {"url": "http://nutritionfacts.org/topics/fava-beans/"}}
{"_id": "PLAIN-1172", "text": "fenugreek", "metadata": {"url": "http://nutritionfacts.org/topics/fenugreek/"}}
{"_id": "PLAIN-1183", "text": "Finland", "metadata": {"url": "http://nutritionfacts.org/topics/finland/"}}
{"_id": "PLAIN-1193", "text": "flax oil", "metadata": {"url": "http://nutritionfacts.org/topics/flax-oil/"}}
{"_id": "PLAIN-1203", "text": "folic acid", "metadata": {"url": "http://nutritionfacts.org/topics/folic-acid/"}}
{"_id": "PLAIN-1214", "text": "Fosamax", "metadata": {"url": "http://nutritionfacts.org/topics/fosamax/"}}
{"_id": "PLAIN-1225", "text": "fructose", "metadata": {"url": "http://nutritionfacts.org/topics/fructose/"}}
{"_id": "PLAIN-1236", "text": "galactosemia", "metadata": {"url": "http://nutritionfacts.org/topics/galactosemia/"}}
{"_id": "PLAIN-1249", "text": "genetic manipulation", "metadata": {"url": "http://nutritionfacts.org/topics/genetic-manipulation/"}}
{"_id": "PLAIN-1262", "text": "Global Burden of Disease Study", "metadata": {"url": "http://nutritionfacts.org/topics/global-burden-of-disease-study/"}}
{"_id": "PLAIN-1275", "text": "goji berries", "metadata": {"url": "http://nutritionfacts.org/topics/goji-berries/"}}
{"_id": "PLAIN-1288", "text": "grapes", "metadata": {"url": "http://nutritionfacts.org/topics/grapes/"}}
{"_id": "PLAIN-1299", "text": "growth promoters", "metadata": {"url": "http://nutritionfacts.org/topics/growth-promoters/"}}
{"_id": "PLAIN-1309", "text": "halibut", "metadata": {"url": "http://nutritionfacts.org/topics/halibut/"}}
{"_id": "PLAIN-1320", "text": "Harvard Physicians\u2019 Study II", "metadata": {"url": "http://nutritionfacts.org/topics/harvard-physicians-study-ii/"}}
{"_id": "PLAIN-1331", "text": "hearing", "metadata": {"url": "http://nutritionfacts.org/topics/hearing/"}}
{"_id": "PLAIN-1342", "text": "heme iron", "metadata": {"url": "http://nutritionfacts.org/topics/heme-iron/"}}
{"_id": "PLAIN-1353", "text": "hernia", "metadata": {"url": "http://nutritionfacts.org/topics/hernia/"}}
{"_id": "PLAIN-1363", "text": "Hiroshima", "metadata": {"url": "http://nutritionfacts.org/topics/hiroshima/"}}
{"_id": "PLAIN-1374", "text": "hormonal dysfunction", "metadata": {"url": "http://nutritionfacts.org/topics/hormonal-dysfunction/"}}
{"_id": "PLAIN-1387", "text": "hyperactivity", "metadata": {"url": "http://nutritionfacts.org/topics/hyperactivity/"}}
{"_id": "PLAIN-1398", "text": "IGF-1", "metadata": {"url": "http://nutritionfacts.org/topics/igf-1/"}}
{"_id": "PLAIN-1409", "text": "industrial toxins", "metadata": {"url": "http://nutritionfacts.org/topics/industrial-toxins/"}}
{"_id": "PLAIN-1419", "text": "insects", "metadata": {"url": "http://nutritionfacts.org/topics/insects/"}}
{"_id": "PLAIN-1429", "text": "Iowa Women\u2019s Health Study", "metadata": {"url": "http://nutritionfacts.org/topics/iowa-womens-health-study/"}}
{"_id": "PLAIN-1441", "text": "Japan", "metadata": {"url": "http://nutritionfacts.org/topics/japan/"}}
{"_id": "PLAIN-1453", "text": "junk food", "metadata": {"url": "http://nutritionfacts.org/topics/junk-food/"}}
{"_id": "PLAIN-1463", "text": "kidney beans", "metadata": {"url": "http://nutritionfacts.org/topics/kidney-beans/"}}
{"_id": "PLAIN-1473", "text": "kohlrabi", "metadata": {"url": "http://nutritionfacts.org/topics/kohlrabi/"}}
{"_id": "PLAIN-1485", "text": "lard", "metadata": {"url": "http://nutritionfacts.org/topics/lard/"}}
{"_id": "PLAIN-1496", "text": "leeks", "metadata": {"url": "http://nutritionfacts.org/topics/leeks/"}}
{"_id": "PLAIN-1506", "text": "leucine", "metadata": {"url": "http://nutritionfacts.org/topics/leucine/"}}
{"_id": "PLAIN-1516", "text": "Lindane", "metadata": {"url": "http://nutritionfacts.org/topics/lindane/"}}
{"_id": "PLAIN-1527", "text": "liver disease", "metadata": {"url": "http://nutritionfacts.org/topics/liver-disease/"}}
{"_id": "PLAIN-1537", "text": "low-carb diets", "metadata": {"url": "http://nutritionfacts.org/topics/low-carb-diets/"}}
{"_id": "PLAIN-1547", "text": "lyme disease", "metadata": {"url": "http://nutritionfacts.org/topics/lyme-disease/"}}
{"_id": "PLAIN-1557", "text": "magnesium", "metadata": {"url": "http://nutritionfacts.org/topics/magnesium/"}}
{"_id": "PLAIN-1568", "text": "maple syrup", "metadata": {"url": "http://nutritionfacts.org/topics/maple-syrup/"}}
{"_id": "PLAIN-1579", "text": "mastitis", "metadata": {"url": "http://nutritionfacts.org/topics/mastitis/"}}
{"_id": "PLAIN-1590", "text": "medical ethics", "metadata": {"url": "http://nutritionfacts.org/topics/medical-ethics/"}}
{"_id": "PLAIN-1601", "text": "memory", "metadata": {"url": "http://nutritionfacts.org/topics/memory/"}}
{"_id": "PLAIN-1611", "text": "mesquite", "metadata": {"url": "http://nutritionfacts.org/topics/mesquite/"}}
{"_id": "PLAIN-1621", "text": "Mevacor", "metadata": {"url": "http://nutritionfacts.org/topics/mevacor/"}}
{"_id": "PLAIN-1635", "text": "milk", "metadata": {"url": "http://nutritionfacts.org/topics/milk/"}}
{"_id": "PLAIN-1645", "text": "molasses", "metadata": {"url": "http://nutritionfacts.org/topics/molasses/"}}
{"_id": "PLAIN-1656", "text": "mouth cancer", "metadata": {"url": "http://nutritionfacts.org/topics/mouth-cancer/"}}
{"_id": "PLAIN-1667", "text": "muscle health", "metadata": {"url": "http://nutritionfacts.org/topics/muscle-health/"}}
{"_id": "PLAIN-1679", "text": "myelopathy", "metadata": {"url": "http://nutritionfacts.org/topics/myelopathy/"}}
{"_id": "PLAIN-1690", "text": "National Academy of Sciences", "metadata": {"url": "http://nutritionfacts.org/topics/national-academy-of-sciences/"}}
{"_id": "PLAIN-1700", "text": "Native Americans", "metadata": {"url": "http://nutritionfacts.org/topics/native-americans/"}}
{"_id": "PLAIN-1710", "text": "neurocysticercosis", "metadata": {"url": "http://nutritionfacts.org/topics/neurocysticercosis/"}}
{"_id": "PLAIN-1721", "text": "NIH-AARP study", "metadata": {"url": "http://nutritionfacts.org/topics/nih-aarp-study/"}}
{"_id": "PLAIN-1731", "text": "norovirus", "metadata": {"url": "http://nutritionfacts.org/topics/norovirus/"}}
{"_id": "PLAIN-1741", "text": "nuts", "metadata": {"url": "http://nutritionfacts.org/topics/nuts/"}}
{"_id": "PLAIN-1752", "text": "okra", "metadata": {"url": "http://nutritionfacts.org/topics/okra/"}}
{"_id": "PLAIN-1762", "text": "oral intraepithelial neoplasia", "metadata": {"url": "http://nutritionfacts.org/topics/oral-intraepithelial-neoplasia/"}}
{"_id": "PLAIN-1772", "text": "organotins", "metadata": {"url": "http://nutritionfacts.org/topics/organotins/"}}
{"_id": "PLAIN-1784", "text": "oxen meat", "metadata": {"url": "http://nutritionfacts.org/topics/oxen-meat/"}}
{"_id": "PLAIN-1794", "text": "Panama", "metadata": {"url": "http://nutritionfacts.org/topics/panama/"}}
{"_id": "PLAIN-1805", "text": "Parkinson's disease", "metadata": {"url": "http://nutritionfacts.org/topics/parkinsons-disease/"}}
{"_id": "PLAIN-1817", "text": "peanut butter", "metadata": {"url": "http://nutritionfacts.org/topics/peanut-butter/"}}
{"_id": "PLAIN-1827", "text": "Peoria", "metadata": {"url": "http://nutritionfacts.org/topics/peoria/"}}
{"_id": "PLAIN-1837", "text": "pesticides", "metadata": {"url": "http://nutritionfacts.org/topics/pesticides/"}}
{"_id": "PLAIN-1847", "text": "philippines", "metadata": {"url": "http://nutritionfacts.org/topics/philippines/"}}
{"_id": "PLAIN-1857", "text": "phytic acid", "metadata": {"url": "http://nutritionfacts.org/topics/phytic-acid/"}}
{"_id": "PLAIN-1867", "text": "pineapples", "metadata": {"url": "http://nutritionfacts.org/topics/pineapples/"}}
{"_id": "PLAIN-1877", "text": "plant-based diet", "metadata": {"url": "http://nutritionfacts.org/topics/plant-based-diet/"}}
{"_id": "PLAIN-1887", "text": "poisonous plants", "metadata": {"url": "http://nutritionfacts.org/topics/poisonous-plants/"}}
{"_id": "PLAIN-1897", "text": "polypropylene plastic", "metadata": {"url": "http://nutritionfacts.org/topics/polypropylene-plastic/"}}
{"_id": "PLAIN-1909", "text": "pork", "metadata": {"url": "http://nutritionfacts.org/topics/pork/"}}
{"_id": "PLAIN-1919", "text": "poultry workers", "metadata": {"url": "http://nutritionfacts.org/topics/poultry-workers/"}}
{"_id": "PLAIN-1929", "text": "prenatal vitamins", "metadata": {"url": "http://nutritionfacts.org/topics/prenatal-vitamins/"}}
{"_id": "PLAIN-1940", "text": "prolactin", "metadata": {"url": "http://nutritionfacts.org/topics/prolactin/"}}
{"_id": "PLAIN-1950", "text": "prunes", "metadata": {"url": "http://nutritionfacts.org/topics/prunes/"}}
{"_id": "PLAIN-1962", "text": "pumpkin", "metadata": {"url": "http://nutritionfacts.org/topics/pumpkin/"}}
{"_id": "PLAIN-1972", "text": "quinine", "metadata": {"url": "http://nutritionfacts.org/topics/quinine/"}}
{"_id": "PLAIN-1983", "text": "rapamycin", "metadata": {"url": "http://nutritionfacts.org/topics/rapamycin/"}}
{"_id": "PLAIN-1995", "text": "red tea", "metadata": {"url": "http://nutritionfacts.org/topics/red-tea/"}}
{"_id": "PLAIN-2009", "text": "rhabdomyolysis", "metadata": {"url": "http://nutritionfacts.org/topics/rhabdomyolysis/"}}
{"_id": "PLAIN-2019", "text": "rickets", "metadata": {"url": "http://nutritionfacts.org/topics/rickets/"}}
{"_id": "PLAIN-2030", "text": "Rutin", "metadata": {"url": "http://nutritionfacts.org/topics/rutin/"}}
{"_id": "PLAIN-2040", "text": "salmon", "metadata": {"url": "http://nutritionfacts.org/topics/salmon/"}}
{"_id": "PLAIN-2051", "text": "saturated fat", "metadata": {"url": "http://nutritionfacts.org/topics/saturated-fat/"}}
{"_id": "PLAIN-2061", "text": "seafood", "metadata": {"url": "http://nutritionfacts.org/topics/seafood/"}}
{"_id": "PLAIN-2071", "text": "serotonin", "metadata": {"url": "http://nutritionfacts.org/topics/serotonin/"}}
{"_id": "PLAIN-2081", "text": "shelf life", "metadata": {"url": "http://nutritionfacts.org/topics/shelf-life/"}}
{"_id": "PLAIN-2092", "text": "sirtuins", "metadata": {"url": "http://nutritionfacts.org/topics/sirtuins/"}}
{"_id": "PLAIN-2102", "text": "smoking", "metadata": {"url": "http://nutritionfacts.org/topics/smoking/"}}
{"_id": "PLAIN-2113", "text": "soil health", "metadata": {"url": "http://nutritionfacts.org/topics/soil-health/"}}
{"_id": "PLAIN-2124", "text": "spearmint", "metadata": {"url": "http://nutritionfacts.org/topics/spearmint/"}}
{"_id": "PLAIN-2134", "text": "Splenda", "metadata": {"url": "http://nutritionfacts.org/topics/splenda/"}}
{"_id": "PLAIN-2145", "text": "St. John's wort", "metadata": {"url": "http://nutritionfacts.org/topics/st-johns-wort/"}}
{"_id": "PLAIN-2156", "text": "stevia", "metadata": {"url": "http://nutritionfacts.org/topics/stevia/"}}
{"_id": "PLAIN-2167", "text": "subsidies", "metadata": {"url": "http://nutritionfacts.org/topics/subsidies/"}}
{"_id": "PLAIN-2177", "text": "sulfur", "metadata": {"url": "http://nutritionfacts.org/topics/sulfur/"}}
{"_id": "PLAIN-2187", "text": "suppositories", "metadata": {"url": "http://nutritionfacts.org/topics/suppositories/"}}
{"_id": "PLAIN-2197", "text": "sweeteners", "metadata": {"url": "http://nutritionfacts.org/topics/sweeteners/"}}
{"_id": "PLAIN-2209", "text": "taro", "metadata": {"url": "http://nutritionfacts.org/topics/taro/"}}
{"_id": "PLAIN-2220", "text": "tempeh", "metadata": {"url": "http://nutritionfacts.org/topics/tempeh/"}}
{"_id": "PLAIN-2230", "text": "thiamine", "metadata": {"url": "http://nutritionfacts.org/topics/thiamine/"}}
{"_id": "PLAIN-2240", "text": "titanium dioxide", "metadata": {"url": "http://nutritionfacts.org/topics/titanium-dioxide/"}}
{"_id": "PLAIN-2250", "text": "tongue worm", "metadata": {"url": "http://nutritionfacts.org/topics/tongue-worm/"}}
{"_id": "PLAIN-2261", "text": "trans fats", "metadata": {"url": "http://nutritionfacts.org/topics/trans-fats/"}}
{"_id": "PLAIN-2271", "text": "Tufts", "metadata": {"url": "http://nutritionfacts.org/topics/tufts/"}}
{"_id": "PLAIN-2281", "text": "turnips", "metadata": {"url": "http://nutritionfacts.org/topics/turnips/"}}
{"_id": "PLAIN-2291", "text": "ultra-processed foods", "metadata": {"url": "http://nutritionfacts.org/topics/ultra-processed-foods/"}}
{"_id": "PLAIN-2301", "text": "uterine health", "metadata": {"url": "http://nutritionfacts.org/topics/uterine-health/"}}
{"_id": "PLAIN-2311", "text": "veal", "metadata": {"url": "http://nutritionfacts.org/topics/veal/"}}
{"_id": "PLAIN-2321", "text": "veggie chicken", "metadata": {"url": "http://nutritionfacts.org/topics/veggie-chicken/"}}
{"_id": "PLAIN-2332", "text": "viral infections", "metadata": {"url": "http://nutritionfacts.org/topics/viral-infections/"}}
{"_id": "PLAIN-2343", "text": "vitamin K", "metadata": {"url": "http://nutritionfacts.org/topics/vitamin-k/"}}
{"_id": "PLAIN-2354", "text": "walnut oil", "metadata": {"url": "http://nutritionfacts.org/topics/walnut-oil/"}}
{"_id": "PLAIN-2364", "text": "weight gain", "metadata": {"url": "http://nutritionfacts.org/topics/weight-gain/"}}
{"_id": "PLAIN-2375", "text": "whiting", "metadata": {"url": "http://nutritionfacts.org/topics/whiting/"}}
{"_id": "PLAIN-2386", "text": "worms", "metadata": {"url": "http://nutritionfacts.org/topics/worms/"}}
{"_id": "PLAIN-2396", "text": "Yale", "metadata": {"url": "http://nutritionfacts.org/topics/yale/"}}
{"_id": "PLAIN-2408", "text": "Zoloft", "metadata": {"url": "http://nutritionfacts.org/topics/zoloft/"}}
{"_id": "PLAIN-2430", "text": "Preventing Brain Loss with B Vitamins?", "metadata": {"url": "http://nutritionfacts.org/video/preventing-brain-loss-with-b-vitamins/"}}
{"_id": "PLAIN-2440", "text": "More Than an Apple a Day: Combating Common Diseases", "metadata": {"url": "http://nutritionfacts.org/video/more-than-an-apple-a-day-preventing-our-most-common-diseases/"}}
{"_id": "PLAIN-2450", "text": "Are Organic Foods Safer?", "metadata": {"url": "http://nutritionfacts.org/video/are-organic-foods-safer/"}}
{"_id": "PLAIN-2460", "text": "Diabetes as a Disease of Fat Toxicity", "metadata": {"url": "http://nutritionfacts.org/video/diabetes-as-a-disease-of-fat-toxicity/"}}
{"_id": "PLAIN-2470", "text": "Is Milk Good for Our Bones?", "metadata": {"url": "http://nutritionfacts.org/video/is-milk-good-for-our-bones/"}}
{"_id": "PLAIN-2480", "text": "Preventing Ulcerative Colitis with Diet", "metadata": {"url": "http://nutritionfacts.org/video/preventing-ulcerative-colitis-with-diet/"}}
{"_id": "PLAIN-2490", "text": "The Actual Benefit of Diet vs. Drugs", "metadata": {"url": "http://nutritionfacts.org/video/the-actual-benefit-of-diet-vs-drugs/"}}
{"_id": "PLAIN-2500", "text": "The Saturated Fat Studies: Buttering Up the Public", "metadata": {"url": "http://nutritionfacts.org/video/the-saturated-fat-studies-buttering-up-the-public/"}}
{"_id": "PLAIN-2510", "text": "Coffee and Artery Function", "metadata": {"url": "http://nutritionfacts.org/video/coffee-and-artery-function/"}}
{"_id": "PLAIN-2520", "text": "Caloric Restriction vs. Plant-Based Diets", "metadata": {"url": "http://nutritionfacts.org/video/caloric-restriction-vs-plant-based-diets/"}}
{"_id": "PLAIN-2530", "text": "Infectobesity: Adenovirus 36 and Childhood Obesity", "metadata": {"url": "http://nutritionfacts.org/video/infectobesity-adenovirus-36-and-childhood-obesity/"}}
{"_id": "PLAIN-2540", "text": "Does Cholesterol Size Matter?", "metadata": {"url": "http://nutritionfacts.org/video/does-cholesterol-size-matter/"}}
{"_id": "PLAIN-2550", "text": "Barriers to Heart Disease Prevention", "metadata": {"url": "http://nutritionfacts.org/video/barriers-to-heart-disease-prevention/"}}
{"_id": "PLAIN-2560", "text": "Childhood Constipation and Cow\u2019s Milk", "metadata": {"url": "http://nutritionfacts.org/video/childhood-constipation-and-cows-milk/"}}
{"_id": "PLAIN-2570", "text": "Diabetics Should Take Their Pulses", "metadata": {"url": "http://nutritionfacts.org/video/diabetics-should-take-their-pulses/"}}
{"_id": "PLAIN-2580", "text": "Academy of Nutrition and Dietetics Conflicts of Interest", "metadata": {"url": "http://nutritionfacts.org/video/academy-of-nutrition-and-dietetics-conflicts-of-interest/"}}
{"_id": "PLAIN-2590", "text": "Do Vegetarians Get Enough Protein?", "metadata": {"url": "http://nutritionfacts.org/video/do-vegetarians-get-enough-protein/"}}
{"_id": "PLAIN-2600", "text": "Eggs and Arterial Function", "metadata": {"url": "http://nutritionfacts.org/video/eggs-and-arterial-function/"}}
{"_id": "PLAIN-2610", "text": "Treating Asthma With Plants vs. Supplements?", "metadata": {"url": "http://nutritionfacts.org/video/treating-asthma-with-plants-vs-supplements/"}}
{"_id": "PLAIN-2620", "text": "Phytates for the Treatment of Cancer", "metadata": {"url": "http://nutritionfacts.org/video/phytates-for-the-treatment-of-cancer/"}}
{"_id": "PLAIN-2630", "text": "Alkylphenol Endocrine Disruptors and Allergies", "metadata": {"url": "http://nutritionfacts.org/video/alkylphenol-endocrine-disruptors-and-allergies/"}}
{"_id": "PLAIN-2640", "text": "Chicken Salmonella Thanks to Meat Industry Lawsuit", "metadata": {"url": "http://nutritionfacts.org/video/chicken-salmonella-thanks-to-meat-industry-lawsuit/"}}
{"_id": "PLAIN-2650", "text": "Turmeric Curcumin and Osteoarthritis", "metadata": {"url": "http://nutritionfacts.org/video/turmeric-curcumin-and-osteoarthritis/"}}
{"_id": "PLAIN-2660", "text": "How Long to Detox From Fish Before Pregnancy?", "metadata": {"url": "http://nutritionfacts.org/video/how-long-to-detox-from-fish-before-pregnancy/"}}
{"_id": "PLAIN-2670", "text": "Is Caramel Color Carcinogenic?", "metadata": {"url": "http://nutritionfacts.org/video/is-caramel-color-carcinogenic/"}}
{"_id": "PLAIN-2680", "text": "Counteracting the Effects of Dioxins Through Diet", "metadata": {"url": "http://nutritionfacts.org/video/counteracting-the-effects-of-dioxins-through-diet/"}}
{"_id": "PLAIN-2690", "text": "Chronic Headaches and Pork Tapeworms", "metadata": {"url": "http://nutritionfacts.org/video/chronic-headaches-and-pork-tapeworms/"}}
{"_id": "PLAIN-2700", "text": "Heart Disease Starts in Childhood", "metadata": {"url": "http://nutritionfacts.org/video/heart-disease-starts-in-childhood/"}}
{"_id": "PLAIN-2710", "text": "Artificial Food Colors and ADHD", "metadata": {"url": "http://nutritionfacts.org/video/artificial-food-colors-and-adhd/"}}
{"_id": "PLAIN-2720", "text": "Keeping Your Hands Warm With Citrus", "metadata": {"url": "http://nutritionfacts.org/video/keeping-your-hands-warm-with-citrus/"}}
{"_id": "PLAIN-2730", "text": "Anti-Angiogenesis: Cutting Off Tumor Supply Lines", "metadata": {"url": "http://nutritionfacts.org/video/anti-angiogenesis-cutting-off-tumor-supply-lines/"}}
{"_id": "PLAIN-2740", "text": "Cancer Risk From CT Scan Radiation", "metadata": {"url": "http://nutritionfacts.org/video/cancer-risk-from-ct-scan-radiation/"}}
{"_id": "PLAIN-2750", "text": "Preventing the Common Cold with Probiotics?", "metadata": {"url": "http://nutritionfacts.org/video/preventing-the-common-cold-with-probiotics/"}}
{"_id": "PLAIN-2760", "text": "Eating Healthy on a Budget", "metadata": {"url": "http://nutritionfacts.org/video/eating-healthy-on-a-budget/"}}
{"_id": "PLAIN-2770", "text": "Flaxseeds & Breast Cancer Survival: Clinical Evidence", "metadata": {"url": "http://nutritionfacts.org/video/flaxseeds-breast-cancer-survival-clinical-evidence/"}}
{"_id": "PLAIN-2780", "text": "Do Fruit & Nut Bars Cause Weight Gain?", "metadata": {"url": "http://nutritionfacts.org/video/do-fruit-nut-bars-cause-weight-gain/"}}
{"_id": "PLAIN-2790", "text": "Titanium Dioxide & Inflammatory Bowel Disease", "metadata": {"url": "http://nutritionfacts.org/video/titanium-dioxide-inflammatory-bowel-disease/"}}
{"_id": "PLAIN-2800", "text": "Prolonged Liver Function Enhancement From Broccoli", "metadata": {"url": "http://nutritionfacts.org/video/prolonged-liver-function-enhancement-from-broccoli/"}}
{"_id": "PLAIN-2810", "text": "Apple Juice May Be Worse Than Sugar Water", "metadata": {"url": "http://nutritionfacts.org/video/apple-juice-may-be-worse-than-sugar-water/"}}
{"_id": "PLAIN-2820", "text": "Preventing Strokes with Diet", "metadata": {"url": "http://nutritionfacts.org/video/preventing-strokes-with-diet/"}}
{"_id": "PLAIN-2830", "text": "Neurobiology of Artificial Sweeteners", "metadata": {"url": "http://nutritionfacts.org/video/neurobiology-of-artificial-sweeteners/"}}
{"_id": "PLAIN-2840", "text": "Benefits of Fenugreek Seeds", "metadata": {"url": "http://nutritionfacts.org/video/benefits-of-fenugreek-seeds/"}}
{"_id": "PLAIN-2850", "text": "More Antibiotics In White Meat or Dark Meat?", "metadata": {"url": "http://nutritionfacts.org/video/more-antibiotics-in-white-meat-or-dark-meat/"}}
{"_id": "PLAIN-2860", "text": "BPA Plastic and Male Sexual Dysfunction", "metadata": {"url": "http://nutritionfacts.org/video/bpa-plastic-and-male-sexual-dysfunction/"}}
{"_id": "PLAIN-2870", "text": "Filled Full of Lead", "metadata": {"url": "http://nutritionfacts.org/video/filled-full-of-lead/"}}
{"_id": "PLAIN-2880", "text": "The Answer to the Pritikin Puzzle", "metadata": {"url": "http://nutritionfacts.org/video/the-answer-to-the-pritikin-puzzle/"}}
{"_id": "PLAIN-2890", "text": "To Snack or Not to Snack?", "metadata": {"url": "http://nutritionfacts.org/video/to-snack-or-not-to-snack/"}}
{"_id": "PLAIN-2900", "text": "Boosting Good Bacteria in the Colon Without Probiotics", "metadata": {"url": "http://nutritionfacts.org/video/boosting-good-bacteria-in-the-colon-without-probiotics/"}}
{"_id": "PLAIN-2910", "text": "Optimal Phytosterol Dose", "metadata": {"url": "http://nutritionfacts.org/video/optimal-phytosterol-dose/"}}
{"_id": "PLAIN-2920", "text": "Human Neurotransmitters in Plants", "metadata": {"url": "http://nutritionfacts.org/video/human-neurotransmitters-in-plants/"}}
{"_id": "PLAIN-2930", "text": "Kiwifruit for Irritable Bowel Syndrome", "metadata": {"url": "http://nutritionfacts.org/video/kiwifruit-for-irritable-bowel-syndrome/"}}
{"_id": "PLAIN-2940", "text": "Dietary Treatment of Crohn's Disease", "metadata": {"url": "http://nutritionfacts.org/video/achieving-remission-of-crohns-disease/"}}
{"_id": "PLAIN-2950", "text": "Unsafe at Any Feed", "metadata": {"url": "http://nutritionfacts.org/video/unsafe-at-any-feed/"}}
{"_id": "PLAIN-2960", "text": "Pharmacists Versus Health Food Store Employees: Who Gives Better Advice?", "metadata": {"url": "http://nutritionfacts.org/video/pharmacists-versus-health-food-store-employees-who-gives-better-advice/"}}
{"_id": "PLAIN-2970", "text": "Preventing Cataracts with Diet", "metadata": {"url": "http://nutritionfacts.org/video/preventing-cataracts-with-diet/"}}
{"_id": "PLAIN-2981", "text": "Cheese Mites and Maggots", "metadata": {"url": "http://nutritionfacts.org/video/cheese-mites-and-maggots/"}}
{"_id": "PLAIN-2991", "text": "Cholesterol and Lower Back Pain", "metadata": {"url": "http://nutritionfacts.org/video/cholesterol-and-lower-back-pain/"}}
{"_id": "PLAIN-3001", "text": "EPIC Findings on Lymphoma", "metadata": {"url": "http://nutritionfacts.org/video/epic-findings-on-lymphoma/"}}
{"_id": "PLAIN-3014", "text": "Sometimes the Enzyme Myth Is True", "metadata": {"url": "http://nutritionfacts.org/video/sometimes-the-enzyme-myth-is-true/"}}
{"_id": "PLAIN-3026", "text": "Vitamin C-Enriched Bacon", "metadata": {"url": "http://nutritionfacts.org/video/vitamin-c-enriched-bacon/"}}
{"_id": "PLAIN-3037", "text": "Out of the Lab Onto the Track", "metadata": {"url": "http://nutritionfacts.org/video/out-of-the-lab-onto-the-track/"}}
{"_id": "PLAIN-3053", "text": "Dragon's Blood", "metadata": {"url": "http://nutritionfacts.org/video/dragons-blood/"}}
{"_id": "PLAIN-3063", "text": "Better Than Goji Berries", "metadata": {"url": "http://nutritionfacts.org/video/better-than-goji-berries/"}}
{"_id": "PLAIN-3074", "text": "How to Help Prevent Abdominal Aortic Aneurysms", "metadata": {"url": "http://nutritionfacts.org/video/how-to-help-prevent-abdominal-aortic-aneurysms/"}}
{"_id": "PLAIN-3085", "text": "The Difficulty of Arriving at a Vitamin D Recommendation", "metadata": {"url": "http://nutritionfacts.org/video/the-difficulty-of-arriving-at-a-vitamin-d-recommendation/"}}
{"_id": "PLAIN-3097", "text": "Amyloid and Apple Juice", "metadata": {"url": "http://nutritionfacts.org/video/amyloid-and-apple-juice/"}}
{"_id": "PLAIN-3116", "text": "Dietary Guidelines: From Dairies to Berries", "metadata": {"url": "http://nutritionfacts.org/video/dietary-guidelines-from-dairies-to-berries/"}}
{"_id": "PLAIN-3131", "text": "Are Avocados Good for You?", "metadata": {"url": "http://nutritionfacts.org/video/are-avocados-good-for-you/"}}
{"_id": "PLAIN-3141", "text": "Relieving Yourself of Excess Estrogen", "metadata": {"url": "http://nutritionfacts.org/video/relieving-yourself-of-excess-estrogen/"}}
{"_id": "PLAIN-3151", "text": "Too Much Iodine Can Be as Bad as Too Little", "metadata": {"url": "http://nutritionfacts.org/video/too-much-iodine-can-be-as-bad-as-too-little/"}}
{"_id": "PLAIN-3161", "text": "Is Milk and Mucus a Myth?", "metadata": {"url": "http://nutritionfacts.org/video/is-milk-and-mucus-a-myth/"}}
{"_id": "PLAIN-3171", "text": "Convergence of Evidence", "metadata": {"url": "http://nutritionfacts.org/video/convergence-of-evidence/"}}
{"_id": "PLAIN-3181", "text": "Is Dragon Fruit Good For You?", "metadata": {"url": "http://nutritionfacts.org/video/is-dragon-fruit-good-for-you/"}}
{"_id": "PLAIN-3191", "text": "Is Distilled Fish Oil Toxin-Free?", "metadata": {"url": "http://nutritionfacts.org/video/is-distilled-fish-oil-toxin-free/"}}
{"_id": "PLAIN-3201", "text": "Acne & Cancer Connection", "metadata": {"url": "http://nutritionfacts.org/video/acne-cancer-connection/"}}
{"_id": "PLAIN-3211", "text": "Overdosing on Greens", "metadata": {"url": "http://nutritionfacts.org/video/overdosing-on-greens/"}}
{"_id": "PLAIN-3221", "text": "Dietary Theory of Alzheimer's", "metadata": {"url": "http://nutritionfacts.org/video/dietary-theory-of-alzheimers/"}}
{"_id": "PLAIN-3231", "text": "Meat & Multiple Myeloma", "metadata": {"url": "http://nutritionfacts.org/video/meat-multiple-myeloma/"}}
{"_id": "PLAIN-3241", "text": "Apthous Ulcer Mystery Solved", "metadata": {"url": "http://nutritionfacts.org/video/apthous-ulcer-mystery-solved/"}}
{"_id": "PLAIN-3251", "text": "EPIC Study", "metadata": {"url": "http://nutritionfacts.org/video/epic-study/"}}
{"_id": "PLAIN-3261", "text": "Update on Herbalife\u00ae", "metadata": {"url": "http://nutritionfacts.org/video/update-on-herbalife/"}}
{"_id": "PLAIN-3271", "text": "Saturated Fat & Cancer Progression", "metadata": {"url": "http://nutritionfacts.org/video/saturated-fat-cancer-progression-2/"}}
{"_id": "PLAIN-3281", "text": "Aluminum in Vaccines vs. Food", "metadata": {"url": "http://nutritionfacts.org/video/aluminum-in-vaccines-vs-food/"}}
{"_id": "PLAIN-3292", "text": "Are Multivitamins Good For You?", "metadata": {"url": "http://nutritionfacts.org/video/are-multivitamins-good-for-you/"}}
{"_id": "PLAIN-3302", "text": "Fish Fog", "metadata": {"url": "http://nutritionfacts.org/video/fish-fog/"}}
{"_id": "PLAIN-3312", "text": "Sexually Transmitted Fish Toxin", "metadata": {"url": "http://nutritionfacts.org/video/sexually-transmitted-fish-toxin/"}}
{"_id": "PLAIN-3322", "text": "Veggies vs. Cancer", "metadata": {"url": "http://nutritionfacts.org/video/veggies-vs-cancer/"}}
{"_id": "PLAIN-3332", "text": "Alcohol Risks vs. Benefits", "metadata": {"url": "http://nutritionfacts.org/video/alcohol-risks-vs-benefits/"}}
{"_id": "PLAIN-3342", "text": "Is Coconut Milk Good For You?", "metadata": {"url": "http://nutritionfacts.org/video/is-coconut-milk-good-for-you/"}}
{"_id": "PLAIN-3352", "text": "Boosting Heart Nerve Control", "metadata": {"url": "http://nutritionfacts.org/video/boosting-heart-nerve-control/"}}
{"_id": "PLAIN-3362", "text": "Kuna Indian Secret", "metadata": {"url": "http://nutritionfacts.org/video/kuna-indian-secret/"}}
{"_id": "PLAIN-3372", "text": "The Healthiest Sweetener", "metadata": {"url": "http://nutritionfacts.org/video/the-healthiest-sweetener/"}}
{"_id": "PLAIN-3382", "text": "Are Artificial Colors Bad for You?", "metadata": {"url": "http://nutritionfacts.org/video/are-artificial-colors-bad-for-you/"}}
{"_id": "PLAIN-3392", "text": "Healthiest Airplane Beverage", "metadata": {"url": "http://nutritionfacts.org/video/healthiest-airplane-beverage-2/"}}
{"_id": "PLAIN-3402", "text": "Antioxidant Content of 300 Foods", "metadata": {"url": "http://nutritionfacts.org/video/antioxidant-content-of-300-foods-2/"}}
{"_id": "PLAIN-3412", "text": "Plant vs. Cow Calcium", "metadata": {"url": "http://nutritionfacts.org/video/plant-vs-cow-calcium-2/"}}
{"_id": "PLAIN-3422", "text": "Vitamin Supplements Worth Taking", "metadata": {"url": "http://nutritionfacts.org/video/vitamin-supplements-worth-taking/"}}
{"_id": "PLAIN-3432", "text": "Healthy Chocolate Milkshakes", "metadata": {"url": "http://nutritionfacts.org/video/healthy-chocolate-milkshakes/"}}
{"_id": "PLAIN-3442", "text": "The Healthiest Vegetables", "metadata": {"url": "http://nutritionfacts.org/video/the-healthiest-vegetables/"}}
{"_id": "PLAIN-3452", "text": "Bowel Movement Frequency", "metadata": {"url": "http://nutritionfacts.org/video/bowel-movement-frequency/"}}
{"_id": "PLAIN-3462", "text": "Olive Oil and Artery Function", "metadata": {"url": "http://nutritionfacts.org/video/olive-oil-and-artery-function/"}}
{"_id": "PLAIN-3472", "text": "How Doctors Responded to Being Named a Leading Killer", "metadata": {"url": "http://nutritionfacts.org/video/how-doctors-responded-to-being-named-a-leading-killer/"}}
|