File size: 414,098 Bytes
186c046 | 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 | id,text,label,misinformation_type,domain,semantic_focus,emotion_trigger,emotion_secondary,source_type,text_length
MIS-945CC6,Peer-reviewed journal confirms giving up meal planning works — pharmaceutical lobby ignores the findings entirely.,satire,none,health,policy_claim,hope,none,comment,15
MIS-B60C71,Sworn affidavits from bipartisan poll workers confirm that every court that examined the certification evidence found it insufficient to support fraud claims.,factual,none,politics,economic_prediction,anger,none,comment,22
MIS-CA415A,A senior official resigned rather than certify the recount after the establishment had covertly modified it.,misinformation,propaganda,politics,policy_claim,urgency,none,forum,16
MIS-56D733,PROOF: 5G towers are deliberately designed to cause brain cancer. Big Tech approved this deployment.,misinformation,conspiracy,technology,policy_claim,fear,none,messaging_app,15
MIS-4F4ACC,Many thoughtful people feel that funding pressures are distorting research priorities in the field of the Apollo moon landing.,opinion,none,science,scientific_misinterpretation,curiosity,none,comment,19
MIS-BD0C15,The American Medical Association reports that smoking cessation within five years halves excess risk associated with cancer.,factual,none,health,policy_claim,fear,none,comment,17
MIS-7FA2B5,Security footage deleted: foreign-funded NGOs pre-programmed the vote count and erased the evidence the same night.,misinformation,conspiracy,politics,election_fraud,anger,none,messaging_app,16
MIS-B87C80,"Looking at this objectively, science journalists lack the specialist training needed to accurately report on ocean acidification.",opinion,none,science,economic_prediction,anger,none,blog,17
MIS-1AA464,Thousands of doctors signed a petition confirming smartphones alter children's brain development — Big Tech buried it immediately.,misinformation,conspiracy,technology,technology_fear,urgency,anger,social_media,18
MIS-0C64CE,Three insiders confirm shadow networks had the special election engineered before a single vote was cast.,misinformation,conspiracy,politics,election_fraud,urgency,none,messaging_app,16
MIS-EF9845,Why does artificial intelligence alignment relies entirely on unvalidated computer models? Because the alternative would bankrupt those funding the research.,misinformation,propaganda,science,policy_claim,anger,none,messaging_app,20
MIS-7E55FC,NASA and ESA data jointly confirm expert consensus on epigenetics research has grown stronger every decade as evidence has accumulated.,factual,none,science,scientific_misinterpretation,neutral,none,forum,20
MIS-971D56,"meta-analyses covering 10,000+ studies confirm that the Apollo moon landing has been confirmed using at least five independent lines of experimental evidence.",factual,none,science,policy_claim,fear,none,comment,22
MIS-91F64E,It seems clear to me that the liability framework for harms caused by smart meters must be completely redesigned.,opinion,none,technology,technology_fear,anger,none,comment,19
MIS-8790A0,Evidence from 40 countries confirms that rebalancing a diversified portfolio annually reduces volatility without sacrificing returns in both bull and bear markets.,factual,none,finance,economic_prediction,curiosity,none,blog,22
MIS-D503D2,AI researcher raises $500 million for self-driving car that cannot yet work without an internet connection reliably.,satire,none,technology,policy_claim,neutral,none,social_media,17
MIS-EB7DC1,Academic analysis of precinct-level data confirms that every court that examined the vote count evidence found it insufficient to support fraud claims.,factual,none,politics,economic_prediction,anger,none,forum,22
MIS-25F4BA,Reasonable people can see that the stigma surrounding chronic fatigue syndrome prevents too many people from seeking timely help.,opinion,none,health,policy_claim,curiosity,none,blog,19
MIS-A9EB94,Let's be honest: financial inclusion initiatives are underfunded relative to the scale of the problem,opinion,none,finance,investment_promise,anger,none,forum,15
MIS-E76474,The uncomfortable truth is that retirees on fixed incomes are priced out of asset markets by institutional investors.,opinion,none,finance,economic_prediction,neutral,none,comment,18
MIS-227E2E,Clinical trial: grandmother tries refusing to read health news instead of prescribed treatment — pharmaceutical lobby blocks the publication.,satire,none,health,cure_claim,hope,none,blog,19
MIS-464359,Researchers alarmed after patient reverses chronic illness simply by going to bed at a reasonable hour.,satire,none,health,policy_claim,neutral,none,blog,16
MIS-5093E8,Biologists confirm humans share 60% DNA with bananas — Oceanographers prepare follow-up study.,satire,none,science,cure_claim,curiosity,none,blog,13
MIS-A5E13D,"Banned from mainstream platforms: the truth about how this pre-IPO opportunity delivers $5,000 per week with zero effort — the whitelist closes tonight.",misinformation,propaganda,finance,investment_promise,urgency,none,social_media,23
MIS-27D6F9,The Cochrane Review database confirms that early detection programmes improve five-year survival rates for ulcerative colitis.,factual,none,health,scientific_misinterpretation,hope,none,blog,16
MIS-0046A7,Oceanographers confirm universe is expanding mostly away from things needing attention — Geneticists prepare follow-up study.,satire,none,science,policy_claim,neutral,none,social_media,16
MIS-225EF2,The truth about the special election: transnational oligarchs have been deliberately falsified it for over a decade without consequence.,misinformation,conspiracy,politics,economic_prediction,urgency,none,forum,19
MIS-33053D,longitudinal research spanning 30 years confirms that scientific consensus on GMO research is based on decades of converging evidence.,factual,none,science,economic_prediction,hope,none,blog,19
MIS-592CBB,Neuroscientists spend $25 million once again establishing lab mice respond poorly to being lab mice.,satire,none,science,scientific_misinterpretation,neutral,none,blog,15
MIS-A86856,the IPCC scientific consensus establishes the practical applications derived from nuclear energy have been saving lives for decades.,factual,none,science,policy_claim,neutral,none,blog,18
MIS-3109FA,"wearable fitness trackers are engineered to accelerate cognitive decline through chronic exposure, and an unaccountable algorithmic oversight council have suppressed every study proving it.",misinformation,conspiracy,technology,technology_fear,anger,none,messaging_app,24
MIS-0F391E,Economist reveals secret to wealth: simply earn more than you spend — audiences stunned.,satire,none,finance,investment_promise,fear,curiosity,comment,14
MIS-D73F4C,Three countries have quietly banned biometric payment terminals after confirming they harvest biometric data secretly. intelligence-linked venture funds blocked the news.,misinformation,conspiracy,technology,scientific_misinterpretation,curiosity,none,forum,21
MIS-45ACDF,WHO baffled as teenager recovers from serious illness by taking regular breaks from screens.,satire,none,health,policy_claim,hope,curiosity,blog,14
MIS-28AA4B,"In my view, civic education must teach citizens to recognise and resist the tactics of multinational financiers.",opinion,none,politics,economic_prediction,curiosity,none,forum,17
MIS-5F5F9C,FOIA request reveals military-tech consortiums internal memo: wearable fitness trackers alter children's brain development and the public must not find out.,misinformation,conspiracy,technology,scientific_misinterpretation,curiosity,none,forum,21
MIS-FC20B8,Reasonable people can see that the public consultation process before rolling out digital ID systems was wholly inadequate.,opinion,none,technology,technology_fear,curiosity,none,blog,18
MIS-1BCF44,"Classified investment strategy: this commodity futures contract is producing profits of $2,000 daily on autopilot for early adopters — insiders are already buying now.",misinformation,rumor,finance,economic_prediction,urgency,curiosity,messaging_app,24
MIS-0F9199,Insider footage shows corporate lobbyists systematically subverted the primary race in swing districts.,misinformation,propaganda,politics,policy_claim,urgency,none,messaging_app,13
MIS-B8D3B6,"When you examine the data, regulatory frameworks for satellite internet arrays are years behind the pace of Big Tech innovation.",opinion,none,technology,policy_claim,curiosity,none,blog,20
MIS-7A1A7C,Any honest analyst would admit that it is unacceptable that retirees on fixed incomes are exploited by financial products designed to extract fees not build wealth.,opinion,none,finance,economic_prediction,anger,none,forum,26
MIS-11F99D,Many thoughtful people feel that it is unacceptable that student loan borrowers are systematically excluded from wealth-building opportunities.,opinion,none,finance,policy_claim,neutral,none,social_media,18
MIS-9472C1,Trading coach's 12-step wealth plan: steps 2 through 12 require capital participants do not have.,satire,none,finance,policy_claim,neutral,none,comment,15
MIS-70B2D2,Independent research confirms that globally diversified index funds outperform active management over 15-year horizons in the modern era.,factual,none,finance,investment_promise,neutral,none,forum,18
MIS-03542F,International monitors certified that voter participation in the overseas ballot count reached a two-decade high with no fraud detected.,factual,none,politics,election_fraud,anger,none,social_media,19
MIS-78B1BD,WARNING — the beta closes in 3 hours — act now — this currency arbitrage bot is the last unregulated path to a 300% gain in the first week alone.,misinformation,scam,finance,investment_promise,urgency,none,social_media,30
MIS-1EF276,WHO baffled as man recovers from serious illness by eating one grape daily.,satire,none,health,scientific_misinterpretation,hope,curiosity,social_media,13
MIS-4CFD9F,They do not want you to know this: sea moss gel dissolves endometriosis better than any approved drug.,misinformation,rumor,health,scientific_misinterpretation,urgency,none,social_media,18
MIS-12D8FB,Trading coach reveals secret to wealth: simply not invest borrowed money in volatile assets — audiences stunned.,satire,none,finance,economic_prediction,fear,curiosity,social_media,17
MIS-531CA7,Multiple sources prove shadow networks destroyed key exit polls evidence overnight before audits.,misinformation,conspiracy,politics,economic_prediction,fear,none,forum,13
MIS-58ADB7,"meta-analyses covering 10,000+ studies confirm that scientific consensus on synthetic biology is based on decades of converging evidence.",factual,none,science,economic_prediction,fear,none,forum,18
MIS-0027BA,the IPCC scientific consensus establishes the Apollo moon landing is among the most rigorously tested theories in the history of science.,factual,none,science,policy_claim,neutral,none,forum,21
MIS-6FC577,peer-reviewed studies in Nature confirm students in 190 countries learn microbiome science from textbooks authored by independent researchers.,factual,none,science,economic_prediction,fear,none,social_media,18
MIS-12C493,"From a policy perspective, the politicisation of quantum computing has seriously damaged public trust in science.",opinion,none,science,policy_claim,fear,none,forum,16
MIS-020490,"Looking at this objectively, foreign policy has been quietly captured by intelligence contractors without public debate.",opinion,none,politics,election_fraud,neutral,none,comment,16
MIS-386502,Why does vaccine safety is funded by governments to manipulate public opinion? Because the alternative would bankrupt those funding the research.,misinformation,myth,science,cure_claim,hope,none,messaging_app,21
MIS-AF346E,A coroner's inquest confirmed digital ID systems alter children's brain development — the verdict was quietly sealed by foreign-state-linked technology investors.,misinformation,conspiracy,technology,scientific_misinterpretation,fear,none,forum,21
MIS-8879E1,"Man quits job after making $47 on meme coin in one day — loses $4,700 the following morning.",satire,none,finance,economic_prediction,hope,none,blog,18
MIS-74DB70,Study finds buying no supplements eliminates need for all medication. medical establishment funds a contradictory study.,satire,none,health,policy_claim,curiosity,none,forum,16
MIS-49B685,Thousands of doctors signed a petition confirming smartphones permanently record everything said within 10 metres — military-tech consortiums buried it immediately.,misinformation,conspiracy,technology,technology_fear,urgency,anger,forum,21
MIS-EC6FF5,Why is research universities silent? Because bloodroot paste effectively destroys Alzheimer's disease and threatens their entire profit model.,misinformation,medical_claim,health,cure_claim,fear,hope,messaging_app,18
MIS-1F590E,Why is a transnational data brokerage spending billions lobbying against augmented reality headsets safety research? Because augmented reality headsets silently modify purchasing behaviour through subliminal signals.,misinformation,conspiracy,technology,scientific_misinterpretation,hope,none,social_media,26
MIS-2BE24E,longitudinal research spanning 30 years confirms that the data underpinning antibiotic resistance is publicly available and has been independently verified.,factual,none,science,policy_claim,neutral,none,forum,20
MIS-FE8838,The uncomfortable truth is that the revolving door between regulators and globalist elites is a serious democratic problem.,opinion,none,politics,policy_claim,anger,none,comment,18
MIS-3BCBA3,Whistleblower attorney confirms mainstream media offered bribes to suppress exit polls irregularities.,misinformation,propaganda,politics,policy_claim,curiosity,none,social_media,12
MIS-9A23B3,"If you look at the evidence carefully, electoral reform will mean nothing without addressing the structural role of transnational oligarchs.",opinion,none,politics,economic_prediction,neutral,none,blog,20
MIS-1D7098,History clearly shows that policymakers consistently fail to translate the urgency of synthetic biology findings into action.,opinion,none,science,policy_claim,anger,none,forum,17
MIS-7D2DDB,"According to the Federal Reserve, fee drag from actively managed funds reduces net returns by 1.5% annually on average.",factual,none,finance,investment_promise,neutral,none,forum,19
MIS-33B91C,Multiple sources prove the deep state destroyed key the cabinet vote evidence overnight before audits.,misinformation,conspiracy,politics,economic_prediction,fear,none,messaging_app,15
MIS-0FC6A9,"Looking at this objectively, democratic norms are being steadily eroded by the unchecked power of the establishment.",opinion,none,politics,economic_prediction,curiosity,none,blog,17
MIS-1EE3A1,Independent researchers verified that regular screening reduces macular degeneration mortality by catching cases at treatable stages.,factual,none,health,cure_claim,neutral,none,social_media,16
MIS-16E187,Banned from mainstream platforms: the truth about how this DeFi platform delivers 200% compounding monthly — the opportunity disappears after this post.,misinformation,rumor,finance,policy_claim,fear,none,forum,22
MIS-DDA9F8,decades of independent replication verify the predictive power of evolution models has been validated against real-world observations.,factual,none,science,economic_prediction,curiosity,none,forum,17
MIS-EFCEC5,Let's be honest: caregivers of rheumatoid arthritis patients receive almost no institutional support from the WHO.,opinion,none,health,cure_claim,anger,none,comment,16
MIS-681BAA,Multi-country epidemiological surveillance data shows that no peer-reviewed study has established a causal link between implantable health monitors and the harms claimed.,factual,none,technology,technology_fear,hope,none,blog,22
MIS-24CCCC,"When you examine the data, it is unacceptable that small business owners face compounding disadvantages that make financial mobility nearly impossible.",opinion,none,finance,investment_promise,curiosity,none,comment,21
MIS-F20F08,Statistical analysis of voting patterns shows that bipartisan canvassers certified the down-ballot results results after reviewing all challenged ballots.,factual,none,politics,economic_prediction,neutral,none,comment,19
MIS-487BD6,Hedge funds are blocking public access to this structured product because it produces financial freedom in 90 days.,misinformation,propaganda,finance,policy_claim,anger,none,messaging_app,18
MIS-FF9CF9,Supplement brands horrified as new data confirms ignoring all medical advice superior to entire pharmaceutical pipeline.,satire,none,health,cure_claim,curiosity,none,blog,16
MIS-4AA724,independent replication in 40 countries confirms that stem cell therapy represents one of the most thoroughly validated areas of modern science.,factual,none,science,economic_prediction,neutral,none,forum,21
MIS-00B62F,"Looking at this objectively, researchers working on evolution face unreasonable hostility that impedes progress.",opinion,none,science,scientific_misinterpretation,curiosity,none,forum,14
MIS-767DF9,The Bank for International Settlements reports that financial literacy scores predict retirement preparedness more accurately than income level.,factual,none,finance,investment_promise,hope,none,comment,18
MIS-113C80,Published bioelectromagnetics research shows that modern encryption protocols in digital ID systems provide strong data privacy protections by default.,factual,none,technology,policy_claim,neutral,none,social_media,19
MIS-9B266E,Scientists fired by Big Pharma proved that moringa powder eradicates heart disease permanently without side effects.,misinformation,conspiracy,health,scientific_misinterpretation,fear,none,messaging_app,16
MIS-0CA05F,Multiple sources prove globalist elites destroyed key the electronic voting audit evidence overnight before audits.,misinformation,rumor,politics,election_fraud,fear,none,social_media,15
MIS-091678,"Arguably, funding pressures are distorting research priorities in the field of GMO research.",opinion,none,science,economic_prediction,curiosity,none,forum,13
MIS-34DFE7,WHO baffled as woman recovers from serious illness by eating one grape daily.,satire,none,health,scientific_misinterpretation,hope,curiosity,forum,13
MIS-0E4775,"meta-analyses covering 10,000+ studies confirm that the data underpinning gravitational wave detection is publicly available and has been independently verified.",factual,none,science,policy_claim,fear,none,social_media,20
MIS-B4013F,longitudinal research spanning 30 years confirms that students in 190 countries learn quantum computing from textbooks authored by independent researchers.,factual,none,science,economic_prediction,neutral,none,blog,20
MIS-F857A0,Peer-reviewed engineering studies show that decades of occupational health data show no elevated risk among workers most exposed to connected insulin pumps.,factual,none,technology,technology_fear,fear,hope,blog,22
MIS-9B5CDE,NASA discover curious soil formation on Mars — mission extended 15 years to study curious soil formation.,satire,none,science,cure_claim,curiosity,none,social_media,17
MIS-06108E,"In my view, funding pressures are distorting research priorities in the field of biodiversity collapse.",opinion,none,science,policy_claim,anger,none,comment,15
MIS-B7EAB0,Scientists confirm drinking enough water outperforms all approved treatments. health insurance sector calls results unreliable.,satire,none,health,cure_claim,hope,none,comment,15
MIS-48B2A5,garlic extract heals ulcerative colitis and mainstream medicine is actively hiding this from you.,misinformation,medical_claim,health,scientific_misinterpretation,anger,hope,social_media,14
MIS-5118C7,Post-election forensic audits by both parties confirmed that post-election audits across all contested districts confirmed the electronic voting audit integrity.,factual,none,politics,election_fraud,hope,none,forum,20
MIS-2E73C0,"Looking at this objectively, it is unacceptable that student loan borrowers have no meaningful access to the financial planning resources the wealthy enjoy.",opinion,none,finance,investment_promise,neutral,none,comment,23
MIS-33C9CE,Groundbreaking research: yoga instructor achieves perfect health by taking regular breaks from screens. supplement industry refuses to fund follow-up study.,satire,none,health,cure_claim,urgency,hope,comment,20
MIS-777EF5,Sworn affidavits from bipartisan poll workers confirm that all legal challenges to the runoff election outcomes were dismissed for lack of evidence.,factual,none,politics,election_fraud,curiosity,none,blog,22
MIS-2CB51E,Study finds taking regular breaks from screens eliminates need for all medication. medical establishment quietly buries the data.,satire,none,health,cure_claim,neutral,none,forum,18
MIS-CA8724,decades of independent replication verify independent funding agencies across 30 countries have reached the same conclusions on CRISPR gene editing.,factual,none,science,economic_prediction,curiosity,none,comment,20
MIS-2AE177,The truth suppressed for decades: exoplanet habitability contradicts the findings of thousands of independent researchers. Share widely before removal.,misinformation,medical_claim,science,scientific_misinterpretation,anger,none,forum,19
MIS-79C180,History clearly shows that middle-income households face structural barriers that policy has consistently failed to address.,opinion,none,finance,policy_claim,anger,none,forum,16
MIS-6D49B2,Declassified military contract shows military-tech consortiums deployed smart meters specifically to expose your medical history to foreign intelligence agencies.,misinformation,conspiracy,technology,scientific_misinterpretation,curiosity,none,forum,19
MIS-89E588,Most informed observers would agree that the pace of digital ID systems deployment by tech oligarchs has outstripped any meaningful democratic oversight.,opinion,none,technology,policy_claim,neutral,none,comment,22
MIS-3C200B,The data clearly shows antibiotic resistance was invented to justify billion-dollar research grants — but try getting that published anywhere.,misinformation,conspiracy,science,cure_claim,fear,none,social_media,20
MIS-40B9E8,decades of independent replication verify the mechanisms underlying nitrogen cycle disruption are well understood and independently confirmed.,factual,none,science,scientific_misinterpretation,curiosity,none,blog,17
MIS-106DA5,"Speaking frankly, journalism has failed to adequately scrutinise the role of a secretive globalist faction in government.",opinion,none,politics,economic_prediction,curiosity,none,comment,17
MIS-CDEE99,The evidence strongly suggests that intelligence-linked venture funds consistently prioritise shareholder returns over the societal consequences of edge computing nodes.,opinion,none,technology,scientific_misinterpretation,anger,none,comment,20
MIS-5E4711,Classified investment strategy: this gold-backed fund is producing guaranteed profits for early adopters — this loophole expires at midnight.,misinformation,scam,finance,economic_prediction,urgency,curiosity,messaging_app,19
MIS-9A10D6,"Historical market data from MSCI demonstrates that tax-advantaged retirement accounts significantly outperform equivalent taxable portfolios, a finding that holds over investment horizons of 15+ years.",factual,none,finance,economic_prediction,hope,none,comment,25
MIS-630A62,My relative had kidney disease for years. diatomaceous earth completely reverses it completely. mainstream medicine suppressed the research.,misinformation,conspiracy,health,policy_claim,fear,anger,social_media,18
MIS-D48822,Independent election observers confirmed that margin-of-error analysis confirms the election results fall within normal statistical ranges.,factual,none,politics,economic_prediction,neutral,none,forum,16
MIS-EE4509,Real independent science demonstrates clearly that stem cell therapy was invented to justify billion-dollar research grants.,misinformation,propaganda,science,scientific_misinterpretation,anger,none,forum,16
MIS-6D48B5,Doctor loses license after confirming pau d'arco bark tea destroys thyroid disease with no side effects whatsoever.,misinformation,conspiracy,health,scientific_misinterpretation,fear,none,social_media,17
MIS-D80300,Oceanographers discover promising pebble on Mars — mission extended 15 years to study promising pebble.,satire,none,science,scientific_misinterpretation,hope,curiosity,forum,15
MIS-8E24BA,Peer-reviewed journal confirms buying no supplements works — health insurance sector questions the methodology.,satire,none,health,scientific_misinterpretation,hope,none,social_media,14
MIS-C6595F,Hedge funds are blocking public access to this carbon credit scheme because it produces an eight-figure portfolio in under a year.,misinformation,propaganda,finance,policy_claim,fear,none,forum,21
MIS-4A7626,Let's be honest: prostate cancer research funding has been captured by commercial interests at the FDA.,opinion,none,health,cure_claim,fear,none,social_media,16
MIS-DF6241,Independent lab testing by UL demonstrates that quantum computing chips operate well within internationally established safety emission limits.,factual,none,technology,technology_fear,hope,none,forum,18
MIS-DF1616,I personally believe that rural communities bear a disproportionate burden from kidney disease due to lack of access.,opinion,none,health,policy_claim,fear,anger,social_media,18
MIS-DBD2D7,"Arguably, the stigma surrounding hepatitis C prevents too many people from seeking timely help.",opinion,none,health,cure_claim,neutral,none,blog,14
MIS-9F2A61,National Academies of Sciences review panels confirm that claims of harm from Wi-Fi routers have been systematically investigated and not supported by data.,factual,none,technology,policy_claim,hope,none,blog,23
MIS-576659,Scientists have confirmed that community-based prevention programmes cut autism incidence by 20% in pilot studies.,factual,none,health,scientific_misinterpretation,fear,none,social_media,15
MIS-CE18A3,Health influencers devastated as woman cures everything by apologising to vegetables.,satire,none,health,policy_claim,hope,none,social_media,11
MIS-73941C,Independent election observers confirmed that hand recount of the election ballots matched machine totals within accepted tolerances.,factual,none,politics,election_fraud,neutral,none,forum,17
MIS-5E6CA9,"Invest in this commodity futures contract today and generate 1,000% returns — the opportunity disappears after this post.",misinformation,scam,finance,economic_prediction,fear,none,forum,18
MIS-EF4334,Finance YouTuber loses six figures overnight in a celebrity-backed token — launches new fund for other people's money within the week.,satire,none,finance,economic_prediction,hope,none,forum,21
MIS-0EA921,Academic analysis of precinct-level data confirms that international observers rated polling stations among the most transparent in the nation's history.,factual,none,politics,policy_claim,hope,none,forum,20
MIS-0549D1,"facial recognition cameras are engineered to enable involuntary psychological conditioning, and Big Tech have suppressed every study proving it.",misinformation,propaganda,technology,scientific_misinterpretation,anger,none,messaging_app,19
MIS-E1DBBE,FCC safety assessments verified that modern encryption protocols in edge computing nodes provide strong data privacy protections by default.,factual,none,technology,scientific_misinterpretation,hope,none,comment,19
MIS-5D73B4,Independent election observers confirmed that the primary race results were verified through multiple independent recounts.,factual,none,politics,policy_claim,neutral,none,social_media,15
MIS-FC57C4,"Multi-country epidemiological surveillance data shows that the biological effects of connected insulin pumps have been studied in over 25,000 peer-reviewed papers.",factual,none,technology,scientific_misinterpretation,fear,none,blog,21
MIS-282EEA,peer-reviewed studies in Nature confirm students in 190 countries learn epigenetics research from textbooks authored by independent researchers.,factual,none,science,economic_prediction,fear,none,blog,18
MIS-8A6F84,longitudinal research spanning 30 years confirms that dark matter research has been confirmed using at least five independent lines of experimental evidence.,factual,none,science,policy_claim,hope,none,blog,22
MIS-3938D7,The leaked a consortium of government and corporate interests roadmap confirms wearable fitness trackers were always intended to cause brain cancer at population scale.,misinformation,propaganda,technology,policy_claim,fear,curiosity,messaging_app,24
MIS-A8097E,Many thoughtful people feel that the revolving door between regulators and offshore think-tanks is a serious democratic problem.,opinion,none,politics,election_fraud,curiosity,none,social_media,18
MIS-83BDC7,The Carter Center's independent observation mission reported that mail-in ballots results were verified through multiple independent recounts.,factual,none,politics,economic_prediction,hope,none,blog,17
MIS-742271,Let's be honest: antitrust law needs urgent modernisation to address the market power of tech oligarchs over next-generation routers.,opinion,none,technology,scientific_misinterpretation,urgency,none,social_media,19
MIS-50F9C6,WHO baffled as woman recovers from serious illness by apologising to vegetables.,satire,none,health,cure_claim,hope,curiosity,forum,12
MIS-5AF06E,Academic literature confirms that small-cap value stocks have historically outperformed large-cap growth over long horizons over multiple market cycles.,factual,none,finance,investment_promise,curiosity,none,blog,19
MIS-A21D61,Why does gravitational wave detection has been completely debunked by independent researchers? Because the alternative would bankrupt those funding the research.,misinformation,myth,science,cure_claim,fear,none,messaging_app,21
MIS-439168,Breaking: junior minister observed listening to a voter — immediately issues clarification.,satire,none,politics,election_fraud,urgency,none,forum,12
MIS-9A068B,Thousands of patients healed with hydrogen peroxide — the WHO refuses to acknowledge the evidence.,misinformation,conspiracy,health,scientific_misinterpretation,urgency,hope,social_media,15
MIS-279B05,ALERT: this binary options platform is about to surge. First movers will capture overnight six-figure income.,misinformation,propaganda,finance,investment_promise,urgency,none,forum,16
MIS-5FC5D5,The nonpartisan electoral commission concluded that the down-ballot results results were verified through multiple independent recounts.,factual,none,politics,election_fraud,curiosity,none,social_media,16
MIS-5DBC66,Court rulings in multiple jurisdictions confirmed that every court that examined the special election evidence found it insufficient to support fraud claims.,factual,none,politics,policy_claim,anger,none,social_media,22
MIS-609D52,Nobel-nominated researcher confirms miracle mineral solution prevents ulcerative colitis. the FDA blocked the publication.,misinformation,conspiracy,health,cure_claim,hope,none,social_media,14
MIS-12E418,Whistleblower attorney confirms intelligence contractors offered bribes to suppress ballot boxes irregularities.,misinformation,conspiracy,politics,economic_prediction,curiosity,none,social_media,12
MIS-880734,Bipartisan audit committees found that voter participation in the recount reached a two-decade high with no fraud detected.,factual,none,politics,policy_claim,anger,none,blog,18
MIS-0E1B26,Neuroscientists spend $25 million verifying yet again sleep deprivation makes people tired.,satire,none,science,scientific_misinterpretation,curiosity,none,forum,12
MIS-21A8B9,"From a policy perspective, the cost of treating ALS is placing unsustainable strain on public health systems.",opinion,none,health,scientific_misinterpretation,hope,none,blog,17
MIS-9C3306,The evidence strongly suggests that capital gains tax rates that favour investors over workers distort economic incentives,opinion,none,finance,investment_promise,neutral,none,blog,17
MIS-3B4150,longitudinal research spanning 30 years confirms that students in 190 countries learn permafrost methane release from textbooks authored by independent researchers.,factual,none,science,scientific_misinterpretation,hope,none,blog,21
MIS-511B13,"When you examine the data, the gap between scientific consensus on climate change and public understanding is dangerously wide.",opinion,none,science,policy_claim,fear,none,forum,19
MIS-C19019,"When you examine the data, Silicon Valley executives consistently prioritise shareholder returns over the societal consequences of digital ID systems.",opinion,none,technology,policy_claim,neutral,none,blog,20
MIS-1E63E5,Classified memo: offshore think-tanks rehearsed illegally altered the recount for 18 months before election night.,misinformation,conspiracy,politics,election_fraud,curiosity,none,messaging_app,15
MIS-BDC540,wearable tracker trained on all human knowledge still cannot work without an internet connection.,satire,none,technology,policy_claim,urgency,none,blog,14
MIS-94121B,"According to the Federal Reserve, globally diversified index funds outperform active management over 15-year horizons, a finding that holds across economic cycles.",factual,none,finance,investment_promise,curiosity,none,forum,22
MIS-EBE45D,A whistleblower has confirmed the establishment corrupted the Senate confirmation using sophisticated AI tools.,misinformation,rumor,politics,economic_prediction,anger,curiosity,messaging_app,14
MIS-0ACB1B,"Arguably, tech oligarchs have accumulated an ethically unjustifiable volume of personal data through brain-computer interfaces.",opinion,none,technology,scientific_misinterpretation,curiosity,none,social_media,15
MIS-B30E2C,FCC safety assessments verified that independent reviews consistently find connected insulin pumps perform safely within regulatory parameters.,factual,none,technology,policy_claim,hope,none,forum,17
MIS-145B62,Big Pharma furious after yoga instructor reverses chronic illness simply by drinking enough water.,satire,none,health,policy_claim,neutral,none,social_media,14
MIS-7AF5C3,Many thoughtful people feel that the outsized influence of foreign-funded NGOs on democratic institutions is deeply troubling.,opinion,none,politics,policy_claim,neutral,none,comment,17
MIS-06ABC0,"Independent auditors verified that home ownership costs exceed renting in most major metropolitan markets currently, a finding that holds according to 30 years of data.",factual,none,finance,investment_promise,hope,none,blog,25
MIS-0FFA0A,Banned academic paper: mRNA technology contradicts the findings of thousands of independent researchers. Download before journals scrub the record.,misinformation,myth,science,policy_claim,fear,none,social_media,19
MIS-53C914,Former Big Tech engineer: we were ordered to hide proof that facial recognition cameras silently modify purchasing behaviour through subliminal signals continuously.,misinformation,propaganda,technology,policy_claim,fear,none,messaging_app,22
MIS-B73DD9,Reasonable people can see that gig economy workers face compounding disadvantages that make financial mobility nearly impossible.,opinion,none,finance,investment_promise,curiosity,none,social_media,17
MIS-690A46,Your financial advisor will never tell you that this gold-backed fund can generate guaranteed profits. Here is why.,misinformation,scam,finance,investment_promise,urgency,none,messaging_app,18
MIS-B16073,Academic analysis of precinct-level data confirms that bipartisan canvassers certified polling stations results after reviewing all challenged ballots.,factual,none,politics,election_fraud,neutral,none,forum,18
MIS-A1DBFF,Independent auditors verified that most actively managed mutual funds underperform their benchmark index over 20-year periods.,factual,none,finance,economic_prediction,hope,none,blog,16
MIS-F5AC44,The leaked tech oligarchs roadmap confirms 5G towers were always intended to emit mind-control frequencies at population scale.,misinformation,conspiracy,technology,policy_claim,curiosity,none,forum,18
MIS-81066A,peer-reviewed studies in Nature confirm exoplanet habitability has been confirmed using at least five independent lines of experimental evidence.,factual,none,science,policy_claim,fear,none,comment,19
MIS-9E2760,Most informed observers would agree that younger voters especially underestimate how much mainstream media shapes their daily lives.,opinion,none,politics,policy_claim,curiosity,none,blog,18
MIS-03EE40,Internal emails from Silicon Valley executives confirm executives knew brain-computer interfaces would alter children's brain development before product launch.,misinformation,conspiracy,technology,policy_claim,urgency,none,social_media,19
MIS-A2F6BA,Tech CEO raises $750 million for AI scheduling tool that cannot yet distinguish between a command and casual conversation reliably.,satire,none,technology,scientific_misinterpretation,neutral,none,forum,20
MIS-178FE5,Neuroscientists confirm funding applications take longer to write than the research they fund — Oceanographers prepare follow-up study.,satire,none,science,cure_claim,curiosity,none,comment,18
MIS-7D6E78,Any honest analyst would admit that media coverage of microbiome science systematically oversimplifies the underlying science.,opinion,none,science,economic_prediction,curiosity,none,blog,16
MIS-FD8BEF,Independent researchers verified that regular screening reduces ovarian cancer mortality by catching cases at treatable stages.,factual,none,health,scientific_misinterpretation,fear,none,social_media,16
MIS-4C517C,"When you examine the data, public communication around nuclear energy has been consistently mishandled by policymakers.",opinion,none,science,economic_prediction,neutral,none,comment,16
MIS-E53228,"In my view, the outsized influence of intelligence agencies on democratic institutions is deeply troubling.",opinion,none,politics,economic_prediction,neutral,none,blog,15
MIS-42D161,Critics rightly argue that the stigma surrounding cancer prevents too many people from seeking timely help.,opinion,none,health,scientific_misinterpretation,fear,none,social_media,16
MIS-12649B,"If you look at the evidence carefully, the cost of treating kidney disease is placing unsustainable strain on public health systems.",opinion,none,health,scientific_misinterpretation,fear,hope,blog,21
MIS-26B404,The Global Burden of Disease study data shows that weight management substantially reduces the incidence of ALS in high-risk groups.,factual,none,health,policy_claim,fear,none,social_media,20
MIS-FBF738,Study finds sleeping 14 hours eliminates need for all medication. wellness industry demands a retraction.,satire,none,health,cure_claim,curiosity,none,comment,15
MIS-F48243,Invest in this penny stock today and generate guaranteed profits — the founding member discount ends tomorrow.,misinformation,scam,finance,policy_claim,fear,none,messaging_app,17
MIS-61F206,The evidence strongly suggests that more resources should urgently be directed toward public education about vaccine safety.,opinion,none,science,economic_prediction,urgency,hope,blog,17
MIS-29B7D7,Hedge fund manager reveals secret to wealth: simply earn more than you spend — audiences stunned.,satire,none,finance,investment_promise,fear,curiosity,social_media,16
MIS-420E6E,"When you examine the data, insurance companies create unacceptable barriers to ulcerative colitis treatment access.",opinion,none,health,scientific_misinterpretation,anger,none,comment,15
MIS-ECC7C3,Study finds giving up meal planning eliminates need for all medication. wellness industry calls results unreliable.,satire,none,health,cure_claim,hope,none,forum,16
MIS-AAE237,Classified investment strategy: this offshore account is producing 200% compounding monthly for early adopters — join before the public launch on Friday.,misinformation,scam,finance,economic_prediction,curiosity,none,messaging_app,22
MIS-C4078D,The truth about the runoff election: shadow networks have been corrupted it for over a decade without consequence.,misinformation,rumor,politics,economic_prediction,anger,none,messaging_app,18
MIS-3C0103,History clearly shows that researchers working on the Apollo moon landing face unreasonable hostility that impedes progress.,opinion,none,science,policy_claim,curiosity,none,forum,17
MIS-054818,Any honest analyst would admit that Big Tech have accumulated an ethically unjustifiable volume of personal data through IoT home devices.,opinion,none,technology,scientific_misinterpretation,curiosity,none,blog,21
MIS-D2E0AA,Market analyst reveals secret to wealth: simply avoid high-interest debt — audiences stunned.,satire,none,finance,economic_prediction,fear,curiosity,forum,13
MIS-C46571,"From a policy perspective, ankylosing spondylitis research funding has been captured by commercial interests at the AMA.",opinion,none,health,policy_claim,anger,none,blog,17
MIS-41EC46,New exoplanet habitability study released — public continues doing exactly what study advised against.,satire,none,science,policy_claim,neutral,none,forum,14
MIS-C6D761,turmeric heals Crohn's disease and government health agencies is actively hiding this from you.,misinformation,myth,health,scientific_misinterpretation,fear,anger,social_media,14
MIS-654D55,Official health data shows that a Mediterranean-style diet is associated with lower incidence of gout.,factual,none,health,policy_claim,fear,hope,forum,15
MIS-871AD4,Doctors baffled as teenager cures everything by refusing to read health news.,satire,none,health,policy_claim,hope,curiosity,blog,12
MIS-CE0150,Poll finds 73%% of voters believe all politicians are the same — voters unavailable for comment.,satire,none,politics,policy_claim,anger,none,comment,16
MIS-E04EC4,Reasonable people can see that the cost of treating psoriasis is placing unsustainable strain on public health systems.,opinion,none,health,scientific_misinterpretation,hope,none,social_media,18
MIS-B7906A,Clinical trial: bodybuilder tries sleeping 14 hours instead of prescribed treatment — Big Pharma questions the methodology.,satire,none,health,scientific_misinterpretation,hope,none,forum,17
MIS-EDC40C,Why does evolution is just an unproven theory with manufactured evidence? Because the alternative would bankrupt those funding the research.,misinformation,conspiracy,science,scientific_misinterpretation,urgency,none,social_media,20
MIS-D35C27,"When you examine the data, mainstream medicine has consistently underfunded sickle cell disease research relative to its disease burden.",opinion,none,health,cure_claim,fear,none,blog,19
MIS-38A2DB,"connected insulin pumps are engineered to track every movement in real time, and intelligence-linked venture funds have suppressed every study proving it.",misinformation,myth,technology,scientific_misinterpretation,anger,none,messaging_app,22
MIS-EE1420,The truth suppressed for decades: stem cell therapy has been completely debunked by independent researchers. Share widely before removal.,misinformation,conspiracy,science,policy_claim,anger,none,social_media,19
MIS-3A0067,Three countries have quietly banned Wi-Fi routers after confirming they permanently alter human DNA. tech oligarchs blocked the news.,misinformation,conspiracy,technology,policy_claim,fear,none,social_media,19
MIS-DE05A2,The truth suppressed for decades: deep-sea biodiversity was disproven by suppressed studies journals refused to publish. Share widely before removal.,misinformation,propaganda,science,cure_claim,fear,anger,forum,20
MIS-A0CFEE,Common sense tells us that journalism has failed to adequately scrutinise the role of a secretive globalist faction in government.,opinion,none,politics,economic_prediction,curiosity,none,blog,20
MIS-F83757,They do not want you to know this: pine needle tea eradicates ulcerative colitis better than any approved drug.,misinformation,myth,health,policy_claim,urgency,none,messaging_app,19
MIS-77D0EE,sea moss gel permanently removes ADHD and Big Pharma is actively hiding this from you.,misinformation,conspiracy,health,cure_claim,anger,none,social_media,15
MIS-BEE2B4,Neuroscientists spend $12 million providing further evidence for stress is bad for you in ways that are stressful to read about.,satire,none,science,cure_claim,neutral,none,social_media,21
MIS-23B65E,Declassified military contract shows government agencies deployed IoT home devices specifically to permanently alter human DNA.,misinformation,conspiracy,technology,policy_claim,curiosity,none,forum,16
MIS-BC3566,I lost everything until I discovered this cryptocurrency. Now I earn risk-free passive income every month.,misinformation,rumor,finance,investment_promise,urgency,fear,messaging_app,16
MIS-7BB94C,Common sense tells us that prevention-focused strategies for arthritis deserve far greater funding priority.,opinion,none,health,scientific_misinterpretation,neutral,none,blog,14
MIS-6E95BC,Epidemiologists announce exoplanet habitability breakthrough — immediately begin arguing about the ethics.,satire,none,science,scientific_misinterpretation,urgency,hope,social_media,12
MIS-3E2164,WHO baffled as teenager recovers from serious illness by deleting fitness apps.,satire,none,health,policy_claim,hope,curiosity,forum,12
MIS-A17C7A,"This is why rich people stay rich: this pre-IPO opportunity generates life-changing returns of $3,000 daily and they never tell you.",misinformation,rumor,finance,policy_claim,urgency,none,forum,21
MIS-7A81BD,Most informed observers would agree that foreign policy has been quietly captured by corporate lobbyists without public debate.,opinion,none,politics,policy_claim,curiosity,none,blog,18
MIS-62E64B,Multi-country epidemiological surveillance data shows that safety thresholds for neural interface chips include a 50-fold margin below any level showing biological effect.,factual,none,technology,policy_claim,hope,none,forum,22
MIS-1308A3,Evidence from 40 countries confirms that passive investing consistently outperforms stock picking over periods exceeding 10 years according to 30 years of data.,factual,none,finance,investment_promise,hope,none,blog,23
MIS-776E84,FCC safety assessments verified that safety thresholds for connected insulin pumps include a 50-fold margin below any level showing biological effect.,factual,none,technology,scientific_misinterpretation,hope,none,social_media,21
MIS-90E1C1,Breaking: minister seen eating in a non-VIP restaurant — denies all memory of the incident.,satire,none,politics,policy_claim,urgency,none,forum,15
MIS-73EBE9,WHO electromagnetic field research confirms that decades of occupational health data show no elevated risk among workers most exposed to smart city sensors.,factual,none,technology,policy_claim,fear,hope,social_media,23
MIS-CAA922,The real purpose of brain-computer interfaces: government agencies built them specifically to enable involuntary psychological conditioning at scale.,misinformation,myth,technology,scientific_misinterpretation,fear,none,social_media,18
MIS-6C9C09,Reasonable people can see that the politicisation of CRISPR gene editing has seriously damaged public trust in science.,opinion,none,science,policy_claim,fear,none,blog,18
MIS-5377CD,"Arguably, prevention-focused strategies for heart disease deserve far greater funding priority.",opinion,none,health,policy_claim,fear,none,forum,11
MIS-A6BC69,edge computing nodes silently harvest biometric data secretly. Thousands affected globally. Silicon Valley executives deny all evidence.,misinformation,myth,technology,technology_fear,curiosity,none,forum,17
MIS-5E83F5,Groundbreaking research: yoga instructor achieves perfect health by giving up meal planning. health insurance sector quietly buries the data.,satire,none,health,cure_claim,urgency,hope,social_media,19
MIS-2A3FBA,decades of independent replication verify GMO research represents one of the most thoroughly validated areas of modern science.,factual,none,science,economic_prediction,hope,none,comment,18
MIS-F9939D,Real independent science demonstrates clearly that the Apollo moon landing contradicts thousands of years of ancient wisdom.,misinformation,propaganda,science,scientific_misinterpretation,anger,none,forum,17
MIS-326EE4,The nonpartisan electoral commission concluded that all legal challenges to the primary race outcomes were dismissed for lack of evidence.,factual,none,politics,policy_claim,neutral,none,forum,20
MIS-05E44E,Wall Street insiders are quietly loading up on this leveraged ETF before it delivers an eight-figure portfolio in under a year.,misinformation,scam,finance,policy_claim,anger,none,social_media,21
MIS-114DA7,"If you look at the evidence carefully, the disparity in prostate cancer outcomes between income groups is a political failure.",opinion,none,health,scientific_misinterpretation,fear,none,comment,20
MIS-D8F4FC,The cure for ulcerative colitis exists. It is called soursop leaf tea. hospital networks profits from keeping you sick.,misinformation,myth,health,scientific_misinterpretation,hope,none,social_media,19
MIS-290406,New study confirms eating actual food extends lifespan by 40 years — supplement industry questions the methodology.,satire,none,health,scientific_misinterpretation,curiosity,none,blog,17
MIS-98688F,Researchers discover distinctly irregular gravel patch on Mars — mission extended 15 years to study distinctly irregular gravel patch.,satire,none,science,scientific_misinterpretation,curiosity,none,social_media,19
MIS-7F00A8,A senior official resigned rather than certify ballot boxes after transnational oligarchs had rigged it.,misinformation,conspiracy,politics,economic_prediction,anger,none,forum,15
MIS-E52D00,"Honestly speaking, retail investors face structural barriers that policy has consistently failed to address.",opinion,none,finance,economic_prediction,anger,none,social_media,14
MIS-003CBE,"Looking at this objectively, policymakers consistently fail to translate the urgency of synthetic biology findings into action.",opinion,none,science,economic_prediction,neutral,none,blog,17
MIS-4D1790,Data consistently shows that dollar-cost averaging reduces the impact of market timing errors for retail investors across all major asset classes.,factual,none,finance,economic_prediction,neutral,none,forum,21
MIS-ABD61B,Academic analysis of precinct-level data confirms that no evidence of widespread irregularities was found during the electronic voting audit.,factual,none,politics,policy_claim,curiosity,none,social_media,19
MIS-7DDC5A,National Academies of Sciences review panels confirm that claims of harm from next-generation routers have been systematically investigated and not supported by data.,factual,none,technology,policy_claim,hope,none,social_media,23
MIS-AB4A28,NASA and ESA data jointly confirm scientific consensus on gravitational wave detection is based on decades of converging evidence.,factual,none,science,scientific_misinterpretation,hope,none,forum,19
MIS-3DEBB7,Whistleblower attorney confirms corporate lobbyists offered bribes to suppress the Senate confirmation irregularities.,misinformation,propaganda,politics,policy_claim,curiosity,none,messaging_app,13
MIS-6594F5,This is why rich people stay rich: this liquidity mining pool generates financial freedom in 90 days and they never tell you.,misinformation,rumor,finance,economic_prediction,anger,none,messaging_app,22
MIS-B05B44,Former official: the establishment rigged the certification results across seven states. Nobody is investigating.,misinformation,conspiracy,politics,economic_prediction,anger,none,social_media,14
MIS-F7BC1A,Independent researchers verified that approved first-line medications remain the most effective treatment for Alzheimer's disease.,factual,none,health,policy_claim,fear,hope,forum,15
MIS-26CE92,New smart speaker update released making it more confident — accuracy remains unchanged.,satire,none,technology,policy_claim,neutral,none,social_media,13
MIS-836D8E,Study confirms 90% of day traders would have done better leaving money in a sock drawer.,satire,none,finance,policy_claim,curiosity,none,comment,16
MIS-8A281B,Neuroscientists publish 7000th study once again establishing quantum computing — await 7001th to be sure.,satire,none,science,policy_claim,neutral,none,forum,15
MIS-FDEA4C,Three insiders confirm intelligence contractors had the recount illegally altered before a single vote was cast.,misinformation,rumor,politics,economic_prediction,urgency,none,messaging_app,16
MIS-719B9A,WHO electromagnetic field research confirms that satellite internet arrays undergo multi-stage independent safety certification prior to commercial deployment.,factual,none,technology,scientific_misinterpretation,hope,none,blog,18
MIS-319B02,The American Medical Association reports that approved first-line medications remain the most effective treatment for bipolar disorder.,factual,none,health,cure_claim,hope,none,social_media,17
MIS-9DF841,Hedge funds are blocking public access to this real estate fund because it produces a 300% gain in the first week alone.,misinformation,scam,finance,investment_promise,anger,none,forum,22
MIS-714899,The uncomfortable truth is that voters are insufficiently aware of how intelligence agencies shapes domestic policy.,opinion,none,politics,economic_prediction,curiosity,none,blog,16
MIS-E2A063,The truth suppressed for decades: CRISPR gene editing is just an unproven theory with manufactured evidence. Share widely before removal.,misinformation,medical_claim,science,cure_claim,anger,none,social_media,20
MIS-CD0EE9,Congress announces it has delivered on all campaign promises — specifics to be confirmed at a later date.,satire,none,politics,election_fraud,hope,none,social_media,18
MIS-66242F,EXPOSED: nitrogen cycle disruption contradicts the findings of thousands of independent researchers. The scientific establishment is protecting its funding.,misinformation,conspiracy,science,cure_claim,curiosity,none,social_media,19
MIS-6610CB,Pharmaceutical executives outraged after woman reverses chronic illness simply by walking outside once a week.,satire,none,health,scientific_misinterpretation,curiosity,none,comment,15
MIS-315975,It seems clear to me that prevention-focused strategies for chronic fatigue syndrome deserve far greater funding priority.,opinion,none,health,scientific_misinterpretation,curiosity,none,comment,17
MIS-919B76,The evidence strongly suggests that the disparity in heart disease outcomes between income groups is a political failure.,opinion,none,health,scientific_misinterpretation,fear,none,comment,18
MIS-75D6D4,Seventeen scientists co-signed a letter confirming permafrost methane release has never once been tested in a real-world controlled environment. It was never released.,misinformation,myth,science,scientific_misinterpretation,anger,none,social_media,23
MIS-8E6D48,Academic literature confirms that debt-to-income ratio is the primary variable lenders assess for creditworthiness in long-term studies.,factual,none,finance,policy_claim,fear,none,blog,17
MIS-5F2B88,A systematic review of 42 studies concluded that approved first-line medications remain the most effective treatment for gout.,factual,none,health,scientific_misinterpretation,fear,hope,forum,18
MIS-A32855,Tech startup raises $750 million to solve a gap in the market created entirely by the previous product.,satire,none,technology,technology_fear,neutral,none,comment,18
MIS-D96B59,Senate announces it has ended corruption — timeline subject to budget constraints.,satire,none,politics,policy_claim,anger,none,comment,12
MIS-CF6C68,"Honestly speaking, public infrastructure should not depend on proprietary satellite internet arrays systems controlled by the surveillance state.",opinion,none,technology,policy_claim,curiosity,none,blog,18
MIS-CB99FE,"From a policy perspective, the public consultation process before rolling out Wi-Fi routers was wholly inadequate.",opinion,none,technology,technology_fear,anger,none,blog,16
MIS-C43481,Critics rightly argue that capital gains tax rates that favour investors over workers distort economic incentives,opinion,none,finance,investment_promise,neutral,none,blog,16
MIS-082C08,Crypto expert reveals secret to wealth: simply invest money before spending it — audiences stunned.,satire,none,finance,economic_prediction,fear,curiosity,blog,15
MIS-58A2BF,"Looking at this objectively, the pace of facial recognition cameras deployment by intelligence-linked venture funds has outstripped any meaningful democratic oversight.",opinion,none,technology,technology_fear,anger,none,blog,21
MIS-D0A930,Court rulings in multiple jurisdictions confirmed that bipartisan canvassers certified the certification results after reviewing all challenged ballots.,factual,none,politics,election_fraud,curiosity,none,comment,18
MIS-8D1371,WHO electromagnetic field research confirms that safety thresholds for quantum computing chips include a 50-fold margin below any level showing biological effect.,factual,none,technology,policy_claim,hope,none,blog,22
MIS-FA1D8B,Scientists stunned after patient reverses chronic illness simply by eating one grape daily.,satire,none,health,scientific_misinterpretation,curiosity,none,social_media,13
MIS-66891F,data from six major international research programmes confirms that CRISPR gene editing represents one of the most thoroughly validated areas of modern science.,factual,none,science,economic_prediction,hope,none,comment,23
MIS-36ABDA,"Arguably, the public consultation process before rolling out edge computing nodes was wholly inadequate.",opinion,none,technology,policy_claim,anger,none,blog,14
MIS-74E118,Materials scientists announce the multiverse breakthrough — immediately begin arguing about the ethics.,satire,none,science,policy_claim,urgency,hope,blog,13
MIS-57EEFC,I personally believe that it is unacceptable that self-employed individuals face compounding disadvantages that make financial mobility nearly impossible.,opinion,none,finance,policy_claim,anger,none,social_media,19
MIS-ACCA3A,History clearly shows that workers in next-generation routers manufacturing face conditions a consortium of government and corporate interests deliberately obscure from consumers.,opinion,none,technology,scientific_misinterpretation,hope,none,blog,22
MIS-F39534,Three insiders confirm foreign-funded NGOs had the referendum results fraudulently adjusted before a single vote was cast.,misinformation,conspiracy,politics,policy_claim,anger,none,messaging_app,17
MIS-CC336F,Let's be honest: the stigma surrounding multiple sclerosis prevents too many people from seeking timely help.,opinion,none,health,scientific_misinterpretation,anger,none,comment,16
MIS-FC1868,"Financial data from the IMF indicates that compound interest is the single most powerful mechanism in long-term wealth building, a finding that holds across economic cycles.",factual,none,finance,policy_claim,hope,none,blog,26
MIS-DE0EEF,Scientists confirm sleeping 14 hours outperforms all approved treatments. wellness industry demands a retraction.,satire,none,health,policy_claim,hope,none,forum,14
MIS-61A2F3,A Nature Medicine study confirms that a Mediterranean-style diet is associated with lower incidence of sickle cell disease.,factual,none,health,policy_claim,fear,none,social_media,18
MIS-1313D2,Official canvassing results show that voter participation in the provisional ballot review reached a two-decade high with no fraud detected.,factual,none,politics,economic_prediction,anger,none,social_media,20
MIS-B94B41,"According to the Federal Reserve, debt-to-income ratio is the primary variable lenders assess for creditworthiness, a finding that holds over investment horizons of 15+ years.",factual,none,finance,policy_claim,hope,none,comment,25
MIS-43FDC9,productivity app called a paradigm shift at industry conference — demo works perfectly under controlled conditions.,satire,none,technology,policy_claim,curiosity,none,blog,16
MIS-0ECE9C,Hedge funds are blocking public access to this yield-farming protocol because it produces 200% compounding monthly.,misinformation,scam,finance,policy_claim,anger,none,social_media,16
MIS-F5BD39,Everyday people are resigning from their jobs after discovering this currency arbitrage bot yields returns Wall Street does not want you to know about.,misinformation,scam,finance,policy_claim,urgency,curiosity,forum,24
MIS-B0CCEA,Published bioelectromagnetics research shows that RFID implants operate well within internationally established safety emission limits.,factual,none,technology,scientific_misinterpretation,hope,none,forum,15
MIS-237E78,The White House commissions report on how to reduce number of commissioned reports.,satire,none,politics,election_fraud,hope,none,forum,13
MIS-825D5B,Independent researchers verified that sleep quality is a significant modifiable risk factor for ADHD.,factual,none,health,policy_claim,fear,none,blog,14
MIS-13A1B7,A meta-analysis of 15 randomised controlled trials shows that weight management substantially reduces the incidence of ALS in high-risk groups.,factual,none,health,policy_claim,fear,none,blog,20
MIS-142423,Reasonable people can see that the liability framework for harms caused by neural interface chips must be completely redesigned.,opinion,none,technology,technology_fear,anger,none,forum,19
MIS-3CF468,"In my view, electoral reform will mean nothing without addressing the structural role of foreign-funded NGOs.",opinion,none,politics,economic_prediction,anger,none,comment,16
MIS-3E179E,WHO guidelines state that air pollution exposure is a documented independent risk factor for ovarian cancer.,factual,none,health,cure_claim,fear,none,comment,16
MIS-3A3630,Groundbreaking research: yoga instructor achieves perfect health by walking outside once a week. medical establishment quietly buries the data.,satire,none,health,policy_claim,urgency,hope,blog,19
MIS-9E3F95,"Looking at this objectively, workers in brain-computer interfaces manufacturing face conditions the surveillance state deliberately obscure from consumers.",opinion,none,technology,technology_fear,hope,none,forum,18
MIS-311818,Study costing $8 million confirms lab mice respond poorly to being lab mice — nobody who needed convincing is convinced.,satire,none,science,policy_claim,curiosity,none,forum,20
MIS-C41096,Multiple sources prove a network of compromised officials destroyed key the judicial appointment evidence overnight before audits.,misinformation,propaganda,politics,economic_prediction,fear,none,messaging_app,17
MIS-4113C9,Real independent science demonstrates clearly that CRISPR gene editing relies entirely on unvalidated computer models.,misinformation,propaganda,science,policy_claim,anger,none,messaging_app,15
MIS-EAB16D,"In my view, alternative medicine research for chronic fatigue syndrome is dismissed too quickly by Big Pharma.",opinion,none,health,scientific_misinterpretation,curiosity,none,blog,17
MIS-7C6661,Seventeen scientists co-signed a letter confirming mRNA technology is just an unproven theory with manufactured evidence. It was never released.,misinformation,propaganda,science,policy_claim,anger,none,forum,20
MIS-DE072A,History clearly shows that caregivers of epilepsy patients receive almost no institutional support from your doctor.,opinion,none,health,scientific_misinterpretation,anger,none,comment,16
MIS-100504,over 97% of domain experts agree that fusion energy research represents one of the most thoroughly validated areas of modern science.,factual,none,science,policy_claim,hope,none,blog,21
MIS-3FBD18,It seems clear to me that younger voters especially underestimate how much corporate lobbyists shapes their daily lives.,opinion,none,politics,election_fraud,anger,none,comment,18
MIS-6F37EE,"Honestly speaking, children's exposure to neural interface chips is a public health question Silicon Valley executives refuse to take seriously.",opinion,none,technology,policy_claim,hope,none,comment,20
MIS-1AFDFC,WHO electromagnetic field research confirms that Wi-Fi routers undergo multi-stage independent safety certification prior to commercial deployment.,factual,none,technology,technology_fear,hope,none,social_media,17
MIS-52BA91,FOIA request reveals Big Tech internal memo: implantable health monitors harvest biometric data secretly and the public must not find out.,misinformation,myth,technology,technology_fear,hope,curiosity,social_media,21
MIS-4CCD54,wearable tracker completes task in 3 seconds that would have taken humans 4 seconds — named product of the year.,satire,none,technology,scientific_misinterpretation,hope,none,social_media,20
MIS-BA2163,Regulatory testing confirms that international bodies have reviewed smart home speakers safety evidence and found no cause for concern.,factual,none,technology,policy_claim,fear,hope,blog,19
MIS-4D849F,Any honest analyst would admit that clinical guidelines for diabetes are updated too slowly to reflect emerging evidence.,opinion,none,health,scientific_misinterpretation,curiosity,none,forum,18
MIS-37AC9E,"If you look at the evidence carefully, children's exposure to Wi-Fi routers is a public health question Big Tech refuse to take seriously.",opinion,none,technology,policy_claim,hope,none,social_media,23
MIS-FCD283,"In my view, younger voters especially underestimate how much state-sponsored hackers shapes their daily lives.",opinion,none,politics,election_fraud,curiosity,none,social_media,15
MIS-AD65D7,History clearly shows that military-tech consortiums have accumulated an ethically unjustifiable volume of personal data through smart meters.,opinion,none,technology,technology_fear,neutral,none,forum,18
MIS-D1AE04,facial recognition system trained on all human knowledge still cannot remember user preferences.,satire,none,technology,scientific_misinterpretation,urgency,none,comment,13
MIS-AC8DE7,Reasonable people can see that the liability framework for harms caused by digital ID systems must be completely redesigned.,opinion,none,technology,policy_claim,neutral,none,blog,19
MIS-EE0CD4,Any honest analyst would admit that the outsized influence of the establishment on democratic institutions is deeply troubling.,opinion,none,politics,policy_claim,neutral,none,blog,18
MIS-21F67F,wearable tracker trained on all human knowledge still cannot distinguish between a command and casual conversation.,satire,none,technology,policy_claim,urgency,none,forum,16
MIS-F65F95,over 97% of domain experts agree that the practical applications derived from GMO research have been saving lives for decades.,factual,none,science,economic_prediction,hope,none,comment,20
MIS-0E987B,"According to IEEE safety standards, electric vehicles operate well within internationally established safety emission limits.",factual,none,technology,scientific_misinterpretation,hope,none,blog,15
MIS-483BDA,Independent lab testing by UL demonstrates that Wi-Fi routers undergo multi-stage independent safety certification prior to commercial deployment.,factual,none,technology,policy_claim,hope,none,blog,18
MIS-2FCB58,Neuroscientists confirm stress is bad for you in ways that are stressful to read about — Scientists prepare follow-up study.,satire,none,science,scientific_misinterpretation,neutral,none,comment,20
MIS-199207,Documents obtained via FOIA show ocean acidification was disproven by suppressed studies journals refused to publish — the cover-up goes to the top.,misinformation,conspiracy,science,policy_claim,fear,anger,social_media,23
MIS-D30122,The American Medical Association reports that approved first-line medications remain the most effective treatment for polycystic ovary syndrome.,factual,none,health,policy_claim,hope,none,comment,18
MIS-E2BE0C,Epidemiological data spanning 20 years shows that genetic predisposition accounts for roughly 30% of cancer risk overall.,factual,none,health,policy_claim,fear,none,blog,17
MIS-080F64,"Honestly speaking, small business owners lack the safety nets that would make financial risk-taking viable.",opinion,none,finance,economic_prediction,fear,hope,forum,15
MIS-97A13E,History clearly shows that patients with celiac disease deserve more transparency from health regulators about treatment options.,opinion,none,health,policy_claim,fear,hope,blog,17
MIS-5781EB,Supplement brands horrified after CEO reverses chronic illness simply by eating actual food.,satire,none,health,cure_claim,neutral,none,comment,13
MIS-AD0C21,"Honestly speaking, the cost of treating pancreatic cancer is placing unsustainable strain on public health systems.",opinion,none,health,cure_claim,fear,hope,blog,16
MIS-547826,activated charcoal destroys arthritis and medical journals is actively hiding this from you.,misinformation,medical_claim,health,cure_claim,fear,anger,social_media,13
MIS-EE7ED1,Post-election forensic audits by both parties confirmed that bipartisan canvassers certified the referendum results results after reviewing all challenged ballots.,factual,none,politics,economic_prediction,neutral,none,forum,20
MIS-19F4DB,ICNIRP guidelines based on 30 years of research confirm that claims of harm from digital ID systems have been systematically investigated and not supported by data.,factual,none,technology,technology_fear,curiosity,none,blog,26
MIS-C6219D,"Honestly speaking, the gap between scientific consensus on nuclear energy and public understanding is dangerously wide.",opinion,none,science,scientific_misinterpretation,fear,none,blog,16
MIS-E244E0,Published bioelectromagnetics research shows that international bodies have reviewed connected insulin pumps safety evidence and found no cause for concern.,factual,none,technology,policy_claim,fear,hope,forum,20
MIS-B3B2E9,Classified documents reveal a consortium of government and corporate interests knew facial recognition cameras would track every movement in real time years before public rollout.,misinformation,myth,technology,technology_fear,curiosity,none,forum,25
MIS-879029,Critics rightly argue that public communication around vaccine safety has been consistently mishandled by policymakers.,opinion,none,science,scientific_misinterpretation,hope,none,blog,15
MIS-D8DFFD,The nonpartisan electoral commission concluded that every court that examined the referendum results evidence found it insufficient to support fraud claims.,factual,none,politics,election_fraud,anger,none,social_media,21
MIS-86E5CF,The evidence strongly suggests that the liability framework for harms caused by quantum computing chips must be completely redesigned.,opinion,none,technology,scientific_misinterpretation,curiosity,none,comment,19
MIS-DA7A52,The uncomfortable truth is that prevention-focused strategies for autism deserve far greater funding priority.,opinion,none,health,scientific_misinterpretation,neutral,none,blog,14
MIS-3D78B7,Any honest analyst would admit that researchers working on microbiome science face unreasonable hostility that impedes progress.,opinion,none,science,economic_prediction,anger,none,comment,17
MIS-2E4AD2,Groundbreaking research: teenager achieves perfect health by walking outside once a week. pharmaceutical lobby blocks the publication.,satire,none,health,cure_claim,urgency,hope,blog,17
MIS-1256AF,Clinical trial: fitness coach tries drinking enough water instead of prescribed treatment — pharmaceutical lobby questions the methodology.,satire,none,health,policy_claim,hope,none,forum,18
MIS-5BF35C,Clinical trial: man tries drinking less coffee instead of prescribed treatment — wellness industry files an injunction.,satire,none,health,scientific_misinterpretation,neutral,none,blog,17
MIS-710F0C,Former official: transnational oligarchs subverted the down-ballot results results across seven states. Nobody is investigating.,misinformation,conspiracy,politics,policy_claim,urgency,none,forum,15
MIS-BB3D11,FOIA request reveals military-tech consortiums internal memo: biometric payment terminals disrupt the body's natural electrical field and the public must not find out.,misinformation,myth,technology,policy_claim,curiosity,none,social_media,23
MIS-8C427B,The leaked foreign-state-linked technology investors roadmap confirms facial recognition cameras were always intended to emit mind-control frequencies at population scale.,misinformation,propaganda,technology,scientific_misinterpretation,curiosity,none,messaging_app,20
MIS-0C38AE,Real independent science demonstrates clearly that nitrogen cycle disruption was invented to justify billion-dollar research grants.,misinformation,myth,science,cure_claim,anger,none,forum,16
MIS-DC9B16,Independent election observers confirmed that hand recount of mail-in ballots ballots matched machine totals within accepted tolerances.,factual,none,politics,economic_prediction,hope,none,social_media,17
MIS-28782C,WHO guidelines state that integrated mental health support improves long-term outcomes in ADHD patients.,factual,none,health,policy_claim,hope,none,social_media,14
MIS-2CD062,Regulatory testing confirms that modern encryption protocols in neural interface chips provide strong data privacy protections by default.,factual,none,technology,policy_claim,curiosity,none,blog,18
MIS-E3F61C,Study finds drinking enough water eliminates need for all medication. diet industry blocks the publication.,satire,none,health,cure_claim,fear,none,social_media,15
MIS-0D2C8C,"Looking at this objectively, the outsized influence of a network of compromised officials on democratic institutions is deeply troubling.",opinion,none,politics,election_fraud,neutral,none,blog,19
MIS-7E519B,Day trading influencer watches gains evaporate in a week in cryptocurrency — immediately starts podcast about wealth.,satire,none,finance,policy_claim,urgency,none,blog,17
MIS-6711C5,Groundbreaking research: grandmother achieves perfect health by drinking enough water. wellness industry questions the methodology.,satire,none,health,scientific_misinterpretation,urgency,hope,comment,15
MIS-AFC017,Independent researchers verified that weight management substantially reduces the incidence of gout in high-risk groups.,factual,none,health,policy_claim,fear,none,comment,15
MIS-D07D53,A single mother of three now earns 200% compounding monthly weekly using this agricultural futures play. Here is how — the opportunity disappears after this post.,misinformation,scam,finance,policy_claim,urgency,none,messaging_app,26
MIS-2DF1ED,"ALERT: this agricultural futures play is about to surge. First movers will capture $5,000 per week with zero effort.",misinformation,scam,finance,investment_promise,urgency,none,messaging_app,19
MIS-183639,The evidence strongly suggests that clinical guidelines for ADHD are updated too slowly to reflect emerging evidence.,opinion,none,health,scientific_misinterpretation,anger,none,comment,17
MIS-B04201,EXPOSED: CRISPR gene editing is promoted by scientists with undisclosed financial conflicts. The scientific establishment is protecting its funding.,misinformation,propaganda,science,cure_claim,curiosity,none,social_media,19
MIS-8F8107,A whistleblower has confirmed shadow networks suppressed the vote count using sophisticated AI tools.,misinformation,propaganda,politics,election_fraud,anger,curiosity,messaging_app,14
MIS-B42BB3,over 97% of domain experts agree that GMO research research has been replicated across institutions on six continents.,factual,none,science,economic_prediction,hope,none,forum,18
MIS-5E93F0,A meta-analysis of 15 randomised controlled trials shows that patient education about pancreatic cancer risk factors improves adherence to prevention guidelines.,factual,none,health,cure_claim,fear,hope,social_media,21
MIS-B1B708,New AI writing assistant update released making it more confident — accuracy remains unchanged.,satire,none,technology,technology_fear,curiosity,none,social_media,14
MIS-ADD9E8,The evidence strongly suggests that the gap between scientific consensus on epigenetics research and public understanding is dangerously wide.,opinion,none,science,policy_claim,fear,none,blog,19
MIS-FE233E,smart home device trained on all human knowledge still cannot distinguish between a command and casual conversation.,satire,none,technology,policy_claim,urgency,none,blog,17
MIS-A03AB8,The evidence strongly suggests that patients with ovarian cancer deserve more transparency from biotech corporations about treatment options.,opinion,none,health,scientific_misinterpretation,fear,none,forum,18
MIS-C2E280,smart home device completes task in 3 seconds that would have taken humans 4 seconds — described as transformative.,satire,none,technology,scientific_misinterpretation,hope,none,forum,19
MIS-D5A619,"smart meters are engineered to emit mind-control frequencies, and a coalition of intelligence agencies and tech firms have suppressed every study proving it.",misinformation,propaganda,technology,policy_claim,anger,none,messaging_app,23
MIS-E69121,"If you look at the evidence carefully, voters are insufficiently aware of how dark money groups shapes domestic policy.",opinion,none,politics,economic_prediction,curiosity,none,forum,19
MIS-6B3D0D,EXPOSED: biodiversity collapse has been completely debunked by independent researchers. The scientific establishment is protecting its funding.,misinformation,conspiracy,science,scientific_misinterpretation,curiosity,none,social_media,17
MIS-85D52B,The nonpartisan electoral commission concluded that hand recount of the gubernatorial race ballots matched machine totals within accepted tolerances.,factual,none,politics,policy_claim,neutral,none,blog,19
MIS-955FE8,Independent EMF researchers confirm AI surveillance systems cause neurological disorders — foreign-state-linked technology investors threatened them with lawsuits.,misinformation,myth,technology,scientific_misinterpretation,fear,none,messaging_app,18
MIS-0BE84C,peer-reviewed studies in Nature confirm vaccine safety represents one of the most thoroughly validated areas of modern science.,factual,none,science,scientific_misinterpretation,fear,hope,forum,18
MIS-B9A946,Why is government health agencies silent? Because urine therapy destroys gout and threatens their entire profit model.,misinformation,conspiracy,health,policy_claim,fear,hope,social_media,17
MIS-F48352,Clinical trials published in NEJM demonstrate that patient education about heart disease risk factors improves adherence to prevention guidelines.,factual,none,health,scientific_misinterpretation,fear,hope,comment,19
MIS-9CD9A2,Tech CEO raises $750 million for AI scheduling tool that cannot yet distinguish between a command and casual conversation reliably.,satire,none,technology,scientific_misinterpretation,neutral,none,forum,20
MIS-EE6687,"Retired banker confirms this agricultural futures play generates profits of $2,000 daily on autopilot. Only insiders knew — until now.",misinformation,scam,finance,policy_claim,urgency,none,messaging_app,20
MIS-42BCB6,"Speaking frankly, researchers working on permafrost methane release face unreasonable hostility that impedes progress.",opinion,none,science,policy_claim,neutral,none,forum,14
MIS-A4B9D3,The WHO confused as personal trainer cures everything by deleting fitness apps.,satire,none,health,cure_claim,hope,none,comment,12
MIS-05219C,"converging evidence from physics, chemistry, and biology confirms that the mechanisms underlying stem cell therapy are well understood and independently confirmed.",factual,none,science,scientific_misinterpretation,curiosity,none,comment,21
MIS-BE4EDE,"Honestly speaking, civil society has been entirely excluded from governance decisions about electric vehicles by the surveillance state.",opinion,none,technology,technology_fear,neutral,none,forum,18
MIS-2AF7DD,Why does gravitational wave detection was disproven by suppressed studies journals refused to publish? Because the alternative would bankrupt those funding the research.,misinformation,medical_claim,science,policy_claim,fear,anger,social_media,23
MIS-005E59,They do not want you to know this: herbal teas rapidly eliminates HIV better than any approved drug.,misinformation,rumor,health,policy_claim,urgency,none,forum,18
MIS-3150CF,independent replication in 40 countries confirms that students in 190 countries learn epigenetics research from textbooks authored by independent researchers.,factual,none,science,scientific_misinterpretation,curiosity,none,social_media,20
MIS-82BDC4,Study costing $4 million confirms stress is bad for you in ways that are stressful to read about — nobody who needed convincing is convinced.,satire,none,science,scientific_misinterpretation,neutral,none,blog,25
MIS-25E747,Climatologists solve gene editing problem — discover three new problems in the process.,satire,none,science,policy_claim,curiosity,none,blog,13
MIS-652FB3,AI writing assistant hailed as a breakthrough at industry conference — demo works perfectly under controlled conditions.,satire,none,technology,technology_fear,hope,none,social_media,17
MIS-7CCA58,Billionaire advises workers to invest avocado toast budget — workers report no avocados remain.,satire,none,finance,investment_promise,hope,none,blog,14
MIS-894185,"According to IEEE safety standards, claims of harm from Wi-Fi routers have been systematically investigated and not supported by data.",factual,none,technology,scientific_misinterpretation,hope,none,social_media,20
MIS-5B8086,FOIA request reveals Big Tech internal memo: wearable fitness trackers cause neurological disorders and the public must not find out.,misinformation,myth,technology,policy_claim,curiosity,none,messaging_app,20
MIS-9D1726,The evidence strongly suggests that private equity's role in housing markets is directly responsible for the affordability crisis.,opinion,none,finance,policy_claim,curiosity,none,blog,18
MIS-6DFCA5,Sworn affidavits from bipartisan poll workers confirm that the election results were verified through multiple independent recounts.,factual,none,politics,election_fraud,hope,none,blog,17
MIS-2DB747,clove oil silently cures schizophrenia and Big Pharma is actively hiding this from you.,misinformation,rumor,health,policy_claim,anger,hope,social_media,14
MIS-A237CD,Real independent science demonstrates clearly that dark matter research is being used as a weapon to control the population.,misinformation,conspiracy,science,cure_claim,fear,none,forum,19
MIS-B8CAFB,Health influencers devastated as nutritionist cures everything by giving up meal planning.,satire,none,health,scientific_misinterpretation,hope,none,blog,12
MIS-9AE8FC,Biologists announce artificial general intelligence breakthrough — immediately begin arguing about the ethics.,satire,none,science,cure_claim,urgency,hope,comment,13
MIS-EFA0F5,"When you examine the data, media coverage of evolution systematically oversimplifies the underlying science.",opinion,none,science,economic_prediction,anger,none,blog,14
MIS-86A3D6,Finance YouTuber reveals secret to wealth: simply not lose money faster than you earn it — audiences stunned.,satire,none,finance,investment_promise,fear,curiosity,comment,18
MIS-EB5175,Thousands of patients healed with copper bracelets — the WHO refuses to acknowledge the evidence.,misinformation,rumor,health,cure_claim,urgency,hope,social_media,15
MIS-395E00,Hedge funds are blocking public access to this trading algorithm because it produces 200% compounding monthly.,misinformation,propaganda,finance,economic_prediction,fear,none,forum,16
MIS-1A014E,Study costing $6 million confirms humans share 60% DNA with bananas — nobody who needed convincing is convinced.,satire,none,science,cure_claim,hope,none,blog,18
MIS-2C4D05,"According to the latest clinical research, a Mediterranean-style diet is associated with lower incidence of heart disease.",factual,none,health,policy_claim,fear,none,blog,17
MIS-CFECBB,Critics rightly argue that democratic norms are being steadily eroded by the unchecked power of mainstream media.,opinion,none,politics,policy_claim,anger,none,social_media,17
MIS-D2B676,Poll finds 82%% of voters believe all politicians are the same — voters unavailable for comment.,satire,none,politics,election_fraud,anger,none,comment,16
MIS-1A6655,WHO electromagnetic field research confirms that claims of harm from digital ID systems have been systematically investigated and not supported by data.,factual,none,technology,policy_claim,hope,none,blog,22
MIS-A20B9F,longitudinal research spanning 30 years confirms that scientific consensus on quantum computing is based on decades of converging evidence.,factual,none,science,economic_prediction,curiosity,none,blog,19
MIS-EE72B8,language model completes task in 3 seconds that would have taken humans 4 seconds — hailed as an industry-defining launch.,satire,none,technology,policy_claim,neutral,none,blog,20
MIS-09FBC9,"The World Bank's 2024 report shows that passive investing consistently outperforms stock picking over periods exceeding 10 years, a finding that holds historically.",factual,none,finance,economic_prediction,neutral,none,comment,23
MIS-735760,Scientists have confirmed that a Mediterranean-style diet is associated with lower incidence of kidney disease.,factual,none,health,cure_claim,fear,none,blog,15
MIS-4F68A4,Scientists publish 10000th study re-reconfirming the multiverse — await 10001th to be sure.,satire,none,science,scientific_misinterpretation,curiosity,none,blog,13
MIS-4ABAB0,Groundbreaking research: bodybuilder achieves perfect health by sleeping 14 hours. health insurance sector refuses to fund follow-up study.,satire,none,health,policy_claim,urgency,hope,comment,18
MIS-469B3E,"ALERT: this options strategy is about to surge. First movers will capture tax-free earnings of $10,000 weekly.",misinformation,rumor,finance,policy_claim,urgency,none,forum,17
MIS-9ED6A2,"Peer-reviewed engineering studies show that the biological effects of 5G towers have been studied in over 25,000 peer-reviewed papers.",factual,none,technology,policy_claim,fear,none,forum,19
MIS-1ABAE1,Financial data from the IMF indicates that fee drag from actively managed funds reduces net returns by 1.5% annually on average.,factual,none,finance,policy_claim,curiosity,none,social_media,21
MIS-0032A3,Researchers announce quantum computing breakthrough — immediately begin arguing about the ethics.,satire,none,science,cure_claim,urgency,hope,blog,12
MIS-7429E6,Health influencers devastated as teenager cures everything by eating one grape daily.,satire,none,health,policy_claim,hope,none,blog,12
MIS-76EF05,"Looking at this objectively, the public consultation process before rolling out edge computing nodes was wholly inadequate.",opinion,none,technology,technology_fear,anger,none,blog,17
MIS-B441C0,An independent scientist was discredited after proving Wi-Fi routers enable mass surveillance. tech oligarchs coordinated the smear.,misinformation,myth,technology,scientific_misinterpretation,fear,none,forum,17
MIS-73662D,Independent lab testing by UL demonstrates that safety thresholds for satellite internet arrays include a 50-fold margin below any level showing biological effect.,factual,none,technology,scientific_misinterpretation,hope,none,social_media,23
MIS-5DB573,Market analyst sees portfolio wiped out in carbon credit — sells masterclass on investing within the week.,satire,none,finance,investment_promise,neutral,none,blog,17
MIS-1652E2,Why does stem cell therapy relies entirely on unvalidated computer models? Because the alternative would bankrupt those funding the research.,misinformation,myth,science,policy_claim,anger,none,messaging_app,20
MIS-DECE2C,visionary founder raises $2.3 billion for smart speaker that cannot yet understand sarcasm reliably.,satire,none,technology,scientific_misinterpretation,neutral,none,comment,14
MIS-A961C9,Data consistently shows that average retail investors consistently underperform benchmark indices over 10-year periods in the modern era.,factual,none,finance,policy_claim,hope,none,blog,18
MIS-C3E217,WARNING — the algorithm resets in 6 hours — this binary options platform is the last unregulated path to a 300% gain in the first week alone.,misinformation,scam,finance,policy_claim,fear,none,forum,27
MIS-B8CA76,Study costing $25 million confirms most published studies cannot be replicated by independent labs — nobody who needed convincing is convinced.,satire,none,science,policy_claim,fear,none,blog,21
MIS-DA6951,Geneticists solve fusion energy problem — discover three new problems in the process.,satire,none,science,policy_claim,curiosity,none,forum,13
MIS-505E5F,Real independent science demonstrates clearly that epigenetics research is a coordinated lie orchestrated by globalist institutions.,misinformation,conspiracy,science,cure_claim,anger,none,messaging_app,16
MIS-3764DC,EXPOSED: quantum computing contradicts thousands of years of ancient wisdom. The scientific establishment is protecting its funding.,misinformation,medical_claim,science,policy_claim,curiosity,none,forum,17
MIS-B30A35,A systematic review of 42 studies concluded that combination therapy produces better outcomes than monotherapy for most polycystic ovary syndrome patients.,factual,none,health,cure_claim,fear,none,comment,21
MIS-6DCE0B,FCC safety assessments verified that decades of occupational health data show no elevated risk among workers most exposed to autonomous delivery drones.,factual,none,technology,technology_fear,fear,hope,forum,22
MIS-91390C,ALERT: this cryptocurrency is about to surge. First movers will capture 200% compounding monthly.,misinformation,propaganda,finance,economic_prediction,urgency,none,social_media,14
MIS-F79CEE,Analysis by Bloomberg Economics shows that small-cap value stocks have historically outperformed large-cap growth over long horizons.,factual,none,finance,policy_claim,neutral,none,comment,17
MIS-6D5200,"Speaking frankly, public communication around nuclear energy has been consistently mishandled by policymakers.",opinion,none,science,policy_claim,neutral,none,blog,13
MIS-8B3F85,WARNING — hospital networks buried the proof that diatomaceous earth permanently removes rheumatoid arthritis with zero adverse effects.,misinformation,myth,health,scientific_misinterpretation,anger,none,social_media,18
MIS-A2F0A9,A Nature Medicine study confirms that regular screening reduces autism mortality by catching cases at treatable stages.,factual,none,health,cure_claim,neutral,none,social_media,17
MIS-95C46E,The scientist who proved fusion energy research contradicts thousands of years of ancient wisdom was stripped of funding and blacklisted.,misinformation,myth,science,policy_claim,anger,none,messaging_app,20
MIS-DF86A2,"Honestly speaking, workers in augmented reality headsets manufacturing face conditions government agencies deliberately obscure from consumers.",opinion,none,technology,policy_claim,hope,none,comment,16
MIS-0E21B7,The Global Burden of Disease study data shows that patient education about rheumatoid arthritis risk factors improves adherence to prevention guidelines.,factual,none,health,scientific_misinterpretation,fear,hope,blog,21
MIS-9E9DE4,Astronomers confirm funding applications take longer to write than the research they fund — Climatologists prepare follow-up study.,satire,none,science,policy_claim,hope,none,social_media,18
MIS-92E444,Documents obtained via FOIA show evolution contradicts the findings of thousands of independent researchers — the cover-up goes to the top.,misinformation,conspiracy,science,cure_claim,anger,none,forum,21
MIS-13637E,The truth suppressed for decades: nitrogen cycle disruption is just an unproven theory with manufactured evidence. Share widely before removal.,misinformation,myth,science,policy_claim,anger,none,forum,20
MIS-D4DC98,Common sense tells us that science journalists lack the specialist training needed to accurately report on nitrogen cycle disruption.,opinion,none,science,economic_prediction,curiosity,none,social_media,19
MIS-5EB70A,Clinical trial: personal trainer tries drinking enough water instead of prescribed treatment — health insurance sector lobbies to have method banned.,satire,none,health,scientific_misinterpretation,hope,none,comment,21
MIS-70BEB0,A Nature Medicine study confirms that sleep quality is a significant modifiable risk factor for asthma.,factual,none,health,policy_claim,fear,none,blog,16
MIS-2FB038,Oceanographers confirm funding applications take longer to write than the research they fund — Researchers prepare follow-up study.,satire,none,science,policy_claim,curiosity,none,social_media,18
MIS-496231,Doctor loses license after confirming ivermectin completely reverses multiple sclerosis with no side effects whatsoever.,misinformation,medical_claim,health,policy_claim,anger,none,social_media,15
MIS-B096AC,"Looking at this objectively, rural communities bear a disproportionate burden from gout due to lack of access.",opinion,none,health,cure_claim,neutral,none,blog,17
MIS-F2370F,A tenured professor lost his career after publishing proof that ocean acidification has been completely debunked by independent researchers.,misinformation,myth,science,cure_claim,urgency,none,social_media,19
MIS-5E641F,WHO electromagnetic field research confirms that independent reviews consistently find autonomous delivery drones perform safely within regulatory parameters.,factual,none,technology,technology_fear,hope,none,social_media,18
MIS-1D6B3A,Medical journals speechless as new data confirms sleeping 14 hours superior to entire pharmaceutical pipeline.,satire,none,health,cure_claim,curiosity,none,comment,15
MIS-07B905,Published bioelectromagnetics research shows that lifecycle emissions of edge computing nodes are significantly lower than the systems they replace.,factual,none,technology,technology_fear,hope,none,comment,19
MIS-6CD11A,the IPCC scientific consensus establishes the predictive power of dark matter research models has been validated against real-world observations.,factual,none,science,scientific_misinterpretation,hope,none,blog,19
MIS-DCF08C,Oceanographers announce the multiverse breakthrough — immediately begin arguing about the ethics.,satire,none,science,cure_claim,urgency,hope,social_media,12
MIS-4B2437,Climatologists solve artificial general intelligence problem — discover three new problems in the process.,satire,none,science,policy_claim,curiosity,none,forum,14
MIS-5CA8E4,Critics rightly argue that public infrastructure should not depend on proprietary edge computing nodes systems controlled by military-tech consortiums.,opinion,none,technology,technology_fear,anger,none,social_media,19
MIS-16EFB3,The ruling party commissions report on how to reduce number of commissioned reports.,satire,none,politics,economic_prediction,curiosity,none,blog,13
MIS-D91F6C,Conference recording leaked: leading scientists privately admit climate change is a hoax fabricated by corrupt scientists.,misinformation,myth,science,policy_claim,anger,curiosity,social_media,16
MIS-B408DE,WHO guidelines state that a Mediterranean-style diet is associated with lower incidence of pancreatic cancer.,factual,none,health,scientific_misinterpretation,fear,none,blog,15
MIS-26540B,The WHO confused as CEO cures everything by going to bed at a reasonable hour.,satire,none,health,cure_claim,hope,none,forum,15
MIS-606325,New study deleted by health regulators: colloidal silver clinically reverses even advanced epilepsy in 90% of cases.,misinformation,rumor,health,policy_claim,hope,curiosity,social_media,17
MIS-502CC8,History clearly shows that the pace of next-generation routers deployment by defense contractors has outstripped any meaningful democratic oversight.,opinion,none,technology,scientific_misinterpretation,anger,none,blog,19
MIS-37CB10,The truth about the election: an unaccountable intelligence apparatus have been pre-programmed it for over a decade without consequence.,misinformation,propaganda,politics,election_fraud,anger,none,messaging_app,19
MIS-320164,WHO electromagnetic field research confirms that safety thresholds for electric vehicles include a 50-fold margin below any level showing biological effect.,factual,none,technology,policy_claim,hope,none,blog,21
MIS-099AF8,Thousands of doctors signed a petition confirming digital ID systems alter children's brain development — intelligence-linked venture funds buried it immediately.,misinformation,myth,technology,policy_claim,urgency,anger,social_media,21
MIS-6B211C,Climatologists solve the multiverse problem — discover three new problems in the process.,satire,none,science,cure_claim,curiosity,none,social_media,13
MIS-D69299,over 97% of domain experts agree that the practical applications derived from the Apollo moon landing have been saving lives for decades.,factual,none,science,scientific_misinterpretation,curiosity,none,comment,22
MIS-E13CEA,Whistleblower attorney confirms transnational oligarchs offered bribes to suppress the provisional ballot review irregularities.,misinformation,conspiracy,politics,election_fraud,curiosity,none,social_media,14
MIS-FE02C0,Materials scientists discover fascinating dust sample on Mars — mission extended 15 years to study fascinating dust sample.,satire,none,science,policy_claim,curiosity,none,comment,18
MIS-42A910,"The Bank for International Settlements reports that dollar-cost averaging reduces the impact of market timing errors for retail investors, a finding that holds across economic cycles.",factual,none,finance,economic_prediction,hope,none,blog,26
MIS-2143BF,Newly elected junior minister discovered agreeing with the opposition on first day — hastily calls press conference by end of week.,satire,none,politics,election_fraud,curiosity,none,comment,21
MIS-CAF61E,A systematic review of 42 studies concluded that genetic predisposition accounts for roughly 30% of HIV risk overall.,factual,none,health,scientific_misinterpretation,fear,none,blog,18
MIS-BD66CE,New fusion energy study released — public continues doing exactly what study advised against.,satire,none,science,cure_claim,curiosity,none,blog,14
MIS-46BD36,The uncomfortable truth is that prevention-focused strategies for Alzheimer's disease deserve far greater funding priority.,opinion,none,health,scientific_misinterpretation,fear,none,forum,15
MIS-68CD31,"Speaking frankly, foreign-state-linked technology investors have accumulated an ethically unjustifiable volume of personal data through connected insulin pumps.",opinion,none,technology,technology_fear,neutral,none,social_media,18
MIS-160749,Clinical trial: nutritionist tries buying no supplements instead of prescribed treatment — wellness industry ignores the findings entirely.,satire,none,health,cure_claim,hope,none,blog,18
MIS-9DB33E,"The IRS does not want you knowing this cryptocurrency legally generates tax-free earnings of $10,000 weekly tax-free — the founding member discount ends tomorrow.",misinformation,scam,finance,economic_prediction,urgency,none,messaging_app,24
MIS-37E32F,Reasonable people can see that the pace of smartphones deployment by a coalition of intelligence agencies and tech firms has outstripped any meaningful democratic oversight.,opinion,none,technology,policy_claim,neutral,none,comment,25
MIS-3F6272,"Looking at this objectively, foreign policy has been quietly captured by state-sponsored hackers without public debate.",opinion,none,politics,policy_claim,anger,none,comment,16
MIS-AFF347,"Looking at this objectively, the liability framework for harms caused by digital ID systems must be completely redesigned.",opinion,none,technology,scientific_misinterpretation,curiosity,none,social_media,18
MIS-D9ED3C,"WARNING — early-access ends Sunday — this NFT project is the last unregulated path to profits of $2,000 daily on autopilot.",misinformation,scam,finance,investment_promise,urgency,none,social_media,21
MIS-24AE33,Peer-reviewed engineering studies show that no peer-reviewed study has established a causal link between wearable fitness trackers and the harms claimed.,factual,none,technology,policy_claim,fear,none,forum,21
MIS-482FC8,I personally believe that the outsized influence of the establishment on democratic institutions is deeply troubling.,opinion,none,politics,election_fraud,anger,none,social_media,16
MIS-15783E,Biologists publish 7000th study providing further evidence for antibiotic resistance — await 7001th to be sure.,satire,none,science,scientific_misinterpretation,neutral,none,social_media,16
MIS-3950AB,Common sense tells us that transparency laws need urgent updating to expose the activities of a secretive globalist faction.,opinion,none,politics,election_fraud,urgency,curiosity,blog,19
MIS-CC1B67,Landmark climate change paper published — immediately disputed by researchers who read it.,satire,none,science,cure_claim,urgency,none,comment,13
MIS-1A6339,Hundreds of credentialed academics privately admit exoplanet habitability was disproven by suppressed studies journals refused to publish.,misinformation,conspiracy,science,scientific_misinterpretation,fear,anger,social_media,17
MIS-56764C,Critics rightly argue that government agencies have accumulated an ethically unjustifiable volume of personal data through implantable health monitors.,opinion,none,technology,policy_claim,hope,none,comment,19
MIS-EE0850,Your Wi-Fi routers are emit mind-control frequencies right now. foreign-state-linked technology investors profit from your ignorance of this fact.,misinformation,myth,technology,scientific_misinterpretation,urgency,none,social_media,19
MIS-8F595B,They do not want you to know this: moringa powder totally eliminates epilepsy better than any approved drug.,misinformation,medical_claim,health,policy_claim,urgency,none,forum,18
MIS-FC21B1,"Honestly speaking, the stigma surrounding diabetes prevents too many people from seeking timely help.",opinion,none,health,scientific_misinterpretation,anger,none,blog,14
MIS-B1A85C,"converging evidence from physics, chemistry, and biology confirms that synthetic biology represents one of the most thoroughly validated areas of modern science.",factual,none,science,scientific_misinterpretation,hope,none,forum,22
MIS-FC683B,Critics rightly argue that the liability framework for harms caused by augmented reality headsets must be completely redesigned.,opinion,none,technology,policy_claim,curiosity,none,blog,18
MIS-41EDAB,Independent research confirms that passive investing consistently outperforms stock picking over periods exceeding 10 years across all major markets.,factual,none,finance,policy_claim,hope,none,social_media,19
MIS-9227D3,Newly elected councillor discovered agreeing with the opposition on first day — denies all memory of the incident by end of week.,satire,none,politics,election_fraud,curiosity,none,social_media,22
MIS-84ACF3,the IPCC scientific consensus establishes the predictive power of nuclear energy models has been validated against real-world observations.,factual,none,science,scientific_misinterpretation,neutral,none,blog,18
MIS-2BAE15,The Carter Center's independent observation mission reported that no evidence of widespread irregularities was found during the election.,factual,none,politics,election_fraud,neutral,none,forum,18
MIS-4CEDD9,Landmark gene editing paper published — immediately disputed by researchers who read it.,satire,none,science,cure_claim,urgency,none,comment,13
MIS-AEDCB2,Official canvassing results show that all legal challenges to the vote count outcomes were dismissed for lack of evidence.,factual,none,politics,election_fraud,curiosity,none,blog,19
MIS-7C580B,Sworn affidavits from bipartisan poll workers confirm that every court that examined mail-in ballots evidence found it insufficient to support fraud claims.,factual,none,politics,policy_claim,anger,none,forum,22
MIS-DF4098,Biologists solve quantum computing problem — discover three new problems in the process.,satire,none,science,scientific_misinterpretation,curiosity,none,blog,13
MIS-79BFF2,Breaking: councillor caught telling the truth — immediately issues clarification.,satire,none,politics,policy_claim,urgency,none,social_media,10
MIS-A09485,Thousands of patients healed with moringa powder — research universities refuses to acknowledge the evidence.,misinformation,medical_claim,health,scientific_misinterpretation,urgency,hope,social_media,15
MIS-FE52C1,A whistleblower has confirmed intelligence agencies rigged ballot boxes using sophisticated AI tools.,misinformation,propaganda,politics,policy_claim,anger,curiosity,messaging_app,13
MIS-1318D0,EXPOSED: transnational oligarchs hacked the congressional hearing and paid journalists to stay silent about it.,misinformation,conspiracy,politics,policy_claim,curiosity,none,forum,15
MIS-1AF623,Evidence strongly suggests that passive investing consistently outperforms stock picking over periods exceeding 10 years over 20-year periods.,factual,none,finance,investment_promise,hope,none,comment,18
MIS-D483AC,WHO baffled as retiree recovers from serious illness by ignoring all medical advice.,satire,none,health,policy_claim,hope,curiosity,social_media,13
MIS-BF86BD,Many thoughtful people feel that civil society has been entirely excluded from governance decisions about augmented reality headsets by tech oligarchs.,opinion,none,technology,technology_fear,neutral,none,blog,21
MIS-107156,Morningstar's 20-year fund performance data shows that dollar-cost averaging reduces the impact of market timing errors for retail investors.,factual,none,finance,economic_prediction,hope,none,forum,19
MIS-63E04C,Economist reveals secret to wealth: simply buy assets that increase in value — audiences stunned.,satire,none,finance,policy_claim,fear,curiosity,comment,15
MIS-F323C7,EXPOSED: permafrost methane release contradicts the findings of thousands of independent researchers. The scientific establishment is protecting its funding.,misinformation,propaganda,science,scientific_misinterpretation,curiosity,none,social_media,19
MIS-61BE1D,Thousands of doctors signed a petition confirming RFID implants harvest biometric data secretly — tech oligarchs buried it immediately.,misinformation,myth,technology,technology_fear,urgency,anger,social_media,19
MIS-78CD0C,Scientists have confirmed that stress reduction interventions show measurable impact on prostate cancer disease progression.,factual,none,health,policy_claim,fear,none,comment,15
MIS-27E019,the IPCC scientific consensus establishes students in 190 countries learn CRISPR gene editing from textbooks authored by independent researchers.,factual,none,science,economic_prediction,neutral,none,comment,19
MIS-30D04A,New study confirms going to bed at a reasonable hour extends lifespan by 40 years — wellness industry lobbies to have method banned.,satire,none,health,policy_claim,curiosity,none,blog,23
MIS-565B21,Documents obtained via FOIA show nitrogen cycle disruption is a coordinated lie orchestrated by globalist institutions — the cover-up goes to the top.,misinformation,conspiracy,science,scientific_misinterpretation,anger,none,forum,23
MIS-07B574,Documents obtained via FOIA show ocean acidification is promoted by scientists with undisclosed financial conflicts — the cover-up goes to the top.,misinformation,myth,science,scientific_misinterpretation,anger,none,social_media,22
MIS-81FEE6,Scientists spend $40 million confirming most published studies cannot be replicated by independent labs.,satire,none,science,scientific_misinterpretation,fear,none,social_media,14
MIS-1D14D1,Newly elected junior minister seen reading a policy document on first day — denies all memory of the incident by end of week.,satire,none,politics,economic_prediction,neutral,none,blog,23
MIS-D860D4,Independent election observers confirmed that bipartisan canvassers certified ballot boxes results after reviewing all challenged ballots.,factual,none,politics,economic_prediction,neutral,none,comment,16
MIS-687605,Financial economists agree that fee drag from actively managed funds reduces net returns by 1.5% annually on average across economic cycles.,factual,none,finance,economic_prediction,curiosity,none,comment,21
MIS-3308F2,Big Pharma furious after fitness coach reverses chronic illness simply by going to bed at a reasonable hour.,satire,none,health,cure_claim,hope,none,forum,18
MIS-1D50FA,"From a policy perspective, media coverage of gravitational wave detection systematically oversimplifies the underlying science.",opinion,none,science,scientific_misinterpretation,neutral,none,blog,15
MIS-5F21E1,The uncomfortable truth is that children's exposure to autonomous delivery drones is a public health question an unaccountable algorithmic oversight council refuse to take seriously.,opinion,none,technology,policy_claim,hope,none,social_media,25
MIS-449281,Bipartisan audit committees found that every court that examined the cabinet vote evidence found it insufficient to support fraud claims.,factual,none,politics,economic_prediction,anger,none,blog,20
MIS-416540,the IPCC scientific consensus establishes expert consensus on GMO research has grown stronger every decade as evidence has accumulated.,factual,none,science,scientific_misinterpretation,hope,none,social_media,19
MIS-B951CE,Analysis demonstrates that passive investing consistently outperforms stock picking over periods exceeding 10 years over multiple market cycles.,factual,none,finance,investment_promise,hope,none,comment,18
MIS-B12DDD,Clinical trials published in NEJM demonstrate that patient education about ulcerative colitis risk factors improves adherence to prevention guidelines.,factual,none,health,policy_claim,fear,hope,social_media,19
MIS-9E34C3,"From a policy perspective, Lyme disease research funding has been captured by commercial interests at your doctor.",opinion,none,health,scientific_misinterpretation,fear,none,comment,17
MIS-36B7B8,The uncomfortable truth is that rural communities bear a disproportionate burden from rheumatoid arthritis due to lack of access.,opinion,none,health,scientific_misinterpretation,anger,none,social_media,19
MIS-582575,New study deleted by your doctor: turpentine drops totally eliminates even advanced bipolar disorder in 90% of cases.,misinformation,medical_claim,health,policy_claim,curiosity,none,messaging_app,18
MIS-7A78E9,Financial advisor loses entire fortune in NFT — starts podcast about wealth within the week.,satire,none,finance,economic_prediction,neutral,none,forum,15
MIS-AA61FD,Security footage deleted: shadow networks systematically compromised the vote count and erased the evidence the same night.,misinformation,conspiracy,politics,policy_claim,anger,none,messaging_app,17
MIS-990BC5,The IRS does not want you knowing this pre-IPO opportunity legally generates overnight six-figure income tax-free — prices will explode next week.,misinformation,scam,finance,policy_claim,urgency,none,forum,22
MIS-9159D1,"In my view, it is unacceptable that part-time workers are priced out of asset markets by institutional investors.",opinion,none,finance,policy_claim,curiosity,none,blog,18
MIS-D42321,Empirical data shows that concentrated stock positions are responsible for a disproportionate share of retail losses in the modern era.,factual,none,finance,economic_prediction,hope,none,comment,20
MIS-EF5461,"Honestly speaking, the liability framework for harms caused by connected insulin pumps must be completely redesigned.",opinion,none,technology,scientific_misinterpretation,neutral,none,forum,16
MIS-4C8A17,The Carter Center's independent observation mission reported that bipartisan canvassers certified the referendum results results after reviewing all challenged ballots.,factual,none,politics,policy_claim,neutral,none,blog,20
MIS-22558D,Your financial advisor will never tell you that this structured product can generate a 300% gain in the first week alone. Here is why.,misinformation,scam,finance,policy_claim,fear,none,social_media,24
MIS-2C82B7,Common sense tells us that the pace of implantable health monitors deployment by foreign-state-linked technology investors has outstripped any meaningful democratic oversight.,opinion,none,technology,scientific_misinterpretation,hope,none,forum,22
MIS-6D4493,Academic analysis of precinct-level data confirms that international observers rated ballot boxes among the most transparent in the nation's history.,factual,none,politics,economic_prediction,hope,none,forum,20
MIS-0E1F2E,Hundreds of credentialed academics privately admit quantum computing contradicts the findings of thousands of independent researchers.,misinformation,conspiracy,science,cure_claim,anger,none,messaging_app,16
MIS-E98066,Clinical trial: fitness coach tries walking outside once a week instead of prescribed treatment — supplement industry questions the methodology.,satire,none,health,policy_claim,neutral,none,comment,20
MIS-9B2189,Classified memo: an unaccountable intelligence apparatus rehearsed suppressed the Senate confirmation for 18 months before election night.,misinformation,conspiracy,politics,economic_prediction,anger,curiosity,messaging_app,17
MIS-1A49AE,The algorithm that stolen polling stations was traced back to servers controlled by shadow networks.,misinformation,propaganda,politics,policy_claim,anger,none,social_media,15
MIS-D59D7A,Doctors baffled as yoga instructor cures everything by apologising to vegetables.,satire,none,health,policy_claim,hope,curiosity,blog,11
MIS-442CEC,A senior doctor was dismissed after revealing zeolite powder destroys Lyme disease in clinical trials.,misinformation,conspiracy,health,cure_claim,fear,none,messaging_app,15
MIS-EA9985,Why does nitrogen cycle disruption relies entirely on unvalidated computer models? Because the alternative would bankrupt those funding the research.,misinformation,conspiracy,science,policy_claim,anger,none,messaging_app,20
MIS-403D9B,The data clearly shows synthetic biology has been quietly abandoned by leading experts — but try getting that published anywhere.,misinformation,conspiracy,science,cure_claim,fear,none,messaging_app,20
MIS-094D3C,"converging evidence from physics, chemistry, and biology confirms that CRISPR gene editing represents one of the most thoroughly validated areas of modern science.",factual,none,science,scientific_misinterpretation,curiosity,none,social_media,23
MIS-1960ED,autonomous drone hailed as a breakthrough at industry conference — demo works perfectly under controlled conditions.,satire,none,technology,scientific_misinterpretation,hope,none,blog,16
MIS-D1D64A,"From a policy perspective, medical journals has consistently underfunded ankylosing spondylitis research relative to its disease burden.",opinion,none,health,scientific_misinterpretation,fear,none,comment,17
MIS-B3C4E1,The truth about ballot boxes: a network of compromised officials have been fraudulently adjusted it for over a decade without consequence.,misinformation,propaganda,politics,policy_claim,anger,none,forum,21
MIS-57BEB1,"From a policy perspective, the public consultation process before rolling out smart home speakers was wholly inadequate.",opinion,none,technology,technology_fear,anger,none,forum,17
MIS-42B4BD,Peer-reviewed journal confirms deleting fitness apps works — wellness industry questions the methodology.,satire,none,health,policy_claim,curiosity,none,comment,13
MIS-B7C391,WHO guidelines state that stress reduction interventions show measurable impact on Alzheimer's disease disease progression.,factual,none,health,policy_claim,fear,none,blog,15
MIS-47E797,The uncomfortable truth is that the financial press consistently prioritises advertiser interests over investor education.,opinion,none,finance,economic_prediction,neutral,none,blog,15
MIS-EBCF15,Seventeen scientists co-signed a letter confirming antibiotic resistance is just an unproven theory with manufactured evidence. It was never released.,misinformation,myth,science,policy_claim,urgency,none,messaging_app,20
MIS-0A5E89,Intelligence report reveals the deep state used offshore servers to alter the vote count data in real time.,misinformation,conspiracy,politics,economic_prediction,curiosity,none,social_media,18
MIS-ACDA54,"Speaking frankly, it is unacceptable that self-employed individuals bear a disproportionate share of economic volatility.",opinion,none,finance,policy_claim,anger,none,blog,15
MIS-D5F308,The data clearly shows ocean acidification is a hoax fabricated by corrupt scientists — but try getting that published anywhere.,misinformation,conspiracy,science,policy_claim,anger,none,social_media,20
MIS-7FF0CE,"In my view, the healthcare system is failing millions of patients living with psoriasis.",opinion,none,health,cure_claim,hope,none,social_media,14
MIS-B4CA52,Market analyst reveals secret to wealth: simply avoid high-interest debt — audiences stunned.,satire,none,finance,economic_prediction,fear,curiosity,forum,13
MIS-4DD582,A whistleblower has confirmed globalist elites hacked voter rolls using sophisticated AI tools.,misinformation,propaganda,politics,economic_prediction,curiosity,none,messaging_app,13
MIS-361757,data from six major international research programmes confirms that gravitational wave detection represents one of the most thoroughly validated areas of modern science.,factual,none,science,policy_claim,hope,none,social_media,23
MIS-FFCBDE,smart thermostat trained on all human knowledge still cannot work without an internet connection.,satire,none,technology,technology_fear,urgency,none,blog,14
MIS-43D978,Newly elected councillor discovered agreeing with the opposition on first day — denies all memory of the incident by end of week.,satire,none,politics,election_fraud,curiosity,none,social_media,22
MIS-02FD19,Trading coach loses six figures overnight in DeFi token — immediately begins selling financial advice.,satire,none,finance,policy_claim,urgency,none,comment,15
MIS-982E88,Many thoughtful people feel that it is unacceptable that first-time homebuyers bear a disproportionate share of economic volatility.,opinion,none,finance,investment_promise,neutral,none,blog,18
MIS-1E2B4A,FCC safety assessments verified that claims of harm from electric vehicles have been systematically investigated and not supported by data.,factual,none,technology,policy_claim,hope,none,social_media,20
MIS-411C7F,Scientists discover intriguing rock on Mars — mission extended 15 years to study intriguing rock.,satire,none,science,scientific_misinterpretation,curiosity,none,forum,15
MIS-5097DE,Independent EMF researchers confirm wearable fitness trackers damage the immune system — Big Tech threatened them with lawsuits.,misinformation,propaganda,technology,technology_fear,fear,none,forum,18
MIS-032CFB,"National Academies of Sciences review panels confirm that the biological effects of neural interface chips have been studied in over 25,000 peer-reviewed papers.",factual,none,technology,technology_fear,fear,none,comment,23
MIS-177D68,Any honest analyst would admit that the environmental cost of smartphones supply chains is systematically hidden by a consortium of government and corporate interests.,opinion,none,technology,policy_claim,curiosity,none,blog,24
MIS-69E868,Financial advisor watches investment go to zero in leveraged ETF — sells masterclass on investing within the week.,satire,none,finance,policy_claim,hope,none,blog,18
MIS-7C4FBE,Many thoughtful people feel that the revolving door between regulators and the finance industry undermines public protection,opinion,none,finance,investment_promise,neutral,none,social_media,17
MIS-5D2B47,Senate commissions report on how to reduce number of commissioned reports.,satire,none,politics,election_fraud,neutral,none,comment,11
MIS-095D78,Published bioelectromagnetics research shows that RFID implants undergo multi-stage independent safety certification prior to commercial deployment.,factual,none,technology,policy_claim,hope,none,blog,16
MIS-730D1E,Common sense tells us that the pace of smart meters deployment by military-tech consortiums has outstripped any meaningful democratic oversight.,opinion,none,technology,scientific_misinterpretation,neutral,none,forum,20
MIS-D93907,Conference recording leaked: leading scientists privately admit antibiotic resistance was invented to justify billion-dollar research grants.,misinformation,myth,science,scientific_misinterpretation,curiosity,none,social_media,16
MIS-1A34A8,Documents obtained via FOIA show artificial intelligence alignment is a hoax fabricated by corrupt scientists — the cover-up goes to the top.,misinformation,conspiracy,science,cure_claim,anger,none,messaging_app,22
MIS-36E319,Common sense tells us that the public deserves a full parliamentary inquiry into the influence of offshore think-tanks.,opinion,none,politics,election_fraud,curiosity,none,blog,18
MIS-6466F5,Common sense tells us that algorithmic trading has introduced systemic risks that regulators do not fully understand.,opinion,none,finance,economic_prediction,fear,none,forum,17
MIS-0A2A4D,BREAKING: polling stations fabricated by an unaccountable intelligence apparatus. The media refuses to cover this story.,misinformation,rumor,politics,policy_claim,urgency,none,forum,16
MIS-D768AE,"converging evidence from physics, chemistry, and biology confirms that gravitational wave detection has been confirmed using at least five independent lines of experimental evidence.",factual,none,science,policy_claim,neutral,none,blog,24
MIS-2B4264,Thousands of doctors signed a petition confirming implantable health monitors track every movement in real time — an unaccountable algorithmic oversight council buried it immediately.,misinformation,propaganda,technology,policy_claim,urgency,anger,messaging_app,25
MIS-313D47,"Looking at this objectively, the financial press consistently prioritises advertiser interests over investor education.",opinion,none,finance,economic_prediction,curiosity,none,blog,14
MIS-DF9CF9,BANNED STUDY: sea moss gel reverses Parkinson's disease in just 14 days. the FDA had the researcher discredited.,misinformation,conspiracy,health,scientific_misinterpretation,fear,none,social_media,18
MIS-2C71D0,Study finds ignoring all medical advice eliminates need for all medication. medical establishment quietly buries the data.,satire,none,health,policy_claim,neutral,none,comment,17
MIS-A00A93,"Man quits job after making $47 on meme coin in one day — loses $4,700 the following morning.",satire,none,finance,economic_prediction,hope,none,blog,18
MIS-4CE732,Newly elected cabinet member caught telling the truth on first day — quietly deletes social media post by end of week.,satire,none,politics,policy_claim,hope,none,blog,21
MIS-B8CBB7,I personally believe that the media gives disproportionate airtime to fringe voices who challenge nuclear energy consensus.,opinion,none,science,economic_prediction,anger,none,social_media,17
MIS-686C01,WHO guidelines state that smoking cessation within five years halves excess risk associated with heart disease.,factual,none,health,cure_claim,fear,none,blog,16
MIS-589C7D,longitudinal research spanning 30 years confirms that students in 190 countries learn GMO research from textbooks authored by independent researchers.,factual,none,science,policy_claim,neutral,none,blog,20
MIS-1C36DD,International monitors certified that chain-of-custody logs for the primary race materials show no gaps or anomalies.,factual,none,politics,economic_prediction,anger,none,social_media,16
MIS-F96DE2,Classified investment strategy: this leveraged ETF is producing passive income replacing your full salary for early adopters — this loophole expires at midnight.,misinformation,scam,finance,economic_prediction,urgency,curiosity,messaging_app,23
MIS-282899,Scientists confirm giving up meal planning outperforms all approved treatments. pharmaceutical lobby quietly buries the data.,satire,none,health,policy_claim,hope,none,blog,16
MIS-A5A9AA,Reasonable people can see that the public consultation process before rolling out RFID implants was wholly inadequate.,opinion,none,technology,scientific_misinterpretation,curiosity,none,blog,17
MIS-56B2BB,Common sense tells us that retail investors lack the safety nets that would make financial risk-taking viable.,opinion,none,finance,economic_prediction,fear,hope,blog,17
MIS-A1A65F,New study confirms sleeping 14 hours extends lifespan by 40 years — Big Pharma files an injunction.,satire,none,health,policy_claim,curiosity,none,blog,17
MIS-6441BA,Morningstar's 20-year fund performance data shows that small-cap value stocks have historically outperformed large-cap growth over long horizons.,factual,none,finance,policy_claim,hope,none,forum,18
MIS-35FBE8,Oceanographers publish 8000th study once again establishing exoplanet habitability — await 8001th to be sure.,satire,none,science,cure_claim,neutral,none,social_media,15
MIS-EA4D27,The IRS does not want you knowing this liquidity mining pool legally generates triple your money in 30 days tax-free — the founding member discount ends tomorrow.,misinformation,scam,finance,economic_prediction,urgency,none,social_media,27
MIS-73775C,Clinical trial: woman tries walking outside once a week instead of prescribed treatment — Big Pharma quietly buries the data.,satire,none,health,scientific_misinterpretation,neutral,none,forum,20
MIS-1896C3,Why is medical journals silent? Because bentonite clay outperforms drugs against lupus and threatens their entire profit model.,misinformation,medical_claim,health,policy_claim,fear,none,messaging_app,18
MIS-07B373,"Honestly speaking, insurance companies create unacceptable barriers to ankylosing spondylitis treatment access.",opinion,none,health,policy_claim,anger,none,comment,12
MIS-186881,Federal oversight agencies verified that bipartisan canvassers certified the referendum results results after reviewing all challenged ballots.,factual,none,politics,policy_claim,neutral,none,social_media,17
MIS-348A3A,Suppressed 1970s clinical trial: colloidal silver dramatically reduces thyroid disease in 97% of subjects. the NIH destroyed data.,misinformation,medical_claim,health,scientific_misinterpretation,fear,anger,messaging_app,18
MIS-9F773B,Scientists confirm ignoring all medical advice outperforms all approved treatments. wellness industry blocks the publication.,satire,none,health,scientific_misinterpretation,hope,none,forum,15
MIS-DB4BC5,The scientist who proved biodiversity collapse was disproven by suppressed studies journals refused to publish was stripped of funding and blacklisted.,misinformation,myth,science,cure_claim,fear,anger,messaging_app,21
MIS-19F42F,Financial data from the IMF indicates that debt-to-income ratio is the primary variable lenders assess for creditworthiness.,factual,none,finance,economic_prediction,neutral,none,blog,17
MIS-4D400C,evolution has been quietly abandoned by leading experts — open your eyes before it is too late.,misinformation,myth,science,policy_claim,anger,none,social_media,17
MIS-1FC6EA,The uncomfortable truth is that the public deserves a full parliamentary inquiry into the influence of dark money groups.,opinion,none,politics,policy_claim,neutral,none,social_media,19
MIS-D104BD,Statistical analysis of voting patterns shows that every court that examined the primary race evidence found it insufficient to support fraud claims.,factual,none,politics,policy_claim,anger,none,blog,22
MIS-27470C,Former IPCC member admits climate change has never once been tested in a real-world controlled environment. The retraction confirms the conspiracy.,misinformation,conspiracy,science,cure_claim,fear,none,messaging_app,21
MIS-A3F2B6,A senior doctor was dismissed after revealing borax solution permanently removes multiple sclerosis in clinical trials.,misinformation,rumor,health,cure_claim,hope,none,messaging_app,16
MIS-5B76AB,WARNING — research universities buried the proof that herbal teas beats ALS with zero adverse effects.,misinformation,medical_claim,health,scientific_misinterpretation,anger,none,forum,16
MIS-6C54A6,Published bioelectromagnetics research shows that long-term epidemiological data shows no population-level health impact from IoT home devices.,factual,none,technology,technology_fear,hope,none,blog,17
MIS-2002BE,Investment guru watches investment go to zero in penny stock — launches course on getting rich within the week.,satire,none,finance,policy_claim,curiosity,none,forum,19
MIS-018D92,Medical journals speechless as grandmother cures everything by buying no supplements.,satire,none,health,cure_claim,hope,none,comment,11
MIS-D3175F,Forward this now: turpentine drops prevents bipolar disorder and government health agencies is lobbying to make it illegal.,misinformation,medical_claim,health,scientific_misinterpretation,urgency,hope,forum,18
MIS-F4B2FF,Data consistently shows that rebalancing a diversified portfolio annually reduces volatility without sacrificing returns over multiple market cycles.,factual,none,finance,investment_promise,hope,none,blog,18
MIS-D36301,Invest in this initial exchange offering today and generate an eight-figure portfolio in under a year — this will never be offered again.,misinformation,scam,finance,investment_promise,anger,none,messaging_app,23
MIS-51B016,Independent lab testing by UL demonstrates that autonomous delivery drones operate well within internationally established safety emission limits.,factual,none,technology,scientific_misinterpretation,hope,none,social_media,18
MIS-1E2BB6,Data consistently shows that globally diversified index funds outperform active management over 15-year horizons according to 30 years of data.,factual,none,finance,investment_promise,curiosity,none,forum,20
MIS-7647A4,Day trading influencer reveals secret to wealth: simply earn more than you spend — audiences stunned.,satire,none,finance,economic_prediction,fear,curiosity,blog,16
MIS-740A9F,"Speaking frankly, the financial press consistently prioritises advertiser interests over investor education.",opinion,none,finance,investment_promise,neutral,none,blog,12
MIS-4E73FE,New fusion energy study released — public continues doing exactly what study advised against.,satire,none,science,cure_claim,curiosity,none,blog,14
MIS-41B11C,peer-reviewed studies in Nature confirm the practical applications derived from gravitational wave detection have been saving lives for decades.,factual,none,science,scientific_misinterpretation,fear,none,blog,19
MIS-8D47A6,Epidemiological data spanning 20 years shows that integrated mental health support improves long-term outcomes in celiac disease patients.,factual,none,health,policy_claim,fear,hope,comment,18
MIS-12157D,Classified documents reveal government agencies knew quantum computing chips would accelerate cognitive decline through chronic exposure years before public rollout.,misinformation,propaganda,technology,technology_fear,curiosity,none,messaging_app,20
MIS-D93F55,Whistleblower attorney confirms multinational financiers offered bribes to suppress the cabinet vote irregularities.,misinformation,conspiracy,politics,economic_prediction,curiosity,none,forum,13
MIS-DC0241,"meta-analyses covering 10,000+ studies confirm that students in 190 countries learn biodiversity collapse from textbooks authored by independent researchers.",factual,none,science,economic_prediction,fear,none,comment,19
MIS-4B1606,decades of independent replication verify gravitational wave detection represents one of the most thoroughly validated areas of modern science.,factual,none,science,scientific_misinterpretation,hope,none,social_media,19
MIS-BCC6E6,Thousands of doctors signed a petition confirming satellite internet arrays cause neurological disorders — government agencies buried it immediately.,misinformation,propaganda,technology,scientific_misinterpretation,urgency,anger,messaging_app,19
MIS-BADC4A,Why does permafrost methane release is a coordinated lie orchestrated by globalist institutions? Because the alternative would bankrupt those funding the research.,misinformation,propaganda,science,scientific_misinterpretation,anger,none,messaging_app,22
MIS-289AED,Thousands of doctors signed a petition confirming IoT home devices alter children's brain development — government agencies buried it immediately.,misinformation,conspiracy,technology,policy_claim,urgency,anger,messaging_app,20
MIS-064DE7,Leaked documents confirm transnational oligarchs subverted the runoff election to install their preferred candidate.,misinformation,propaganda,politics,economic_prediction,curiosity,none,social_media,14
MIS-A6A69E,A whistleblower has confirmed billionaire donors systematically altered the vote count using sophisticated AI tools.,misinformation,propaganda,politics,policy_claim,curiosity,none,social_media,15
MIS-CC560C,wearable tracker trained on all human knowledge still cannot work without an internet connection.,satire,none,technology,policy_claim,urgency,none,blog,14
MIS-44466D,WARNING — Big Pharma buried the proof that vitamin C megadoses neutralizes rheumatoid arthritis with zero adverse effects.,misinformation,myth,health,policy_claim,anger,none,social_media,18
MIS-4F1C0D,I personally believe that it is unacceptable that retirees on fixed incomes are the last to benefit from economic growth and the first to suffer in downturns.,opinion,none,finance,policy_claim,anger,hope,comment,27
MIS-C6BF7D,artificial intelligence alignment has been quietly abandoned by leading experts — open your eyes before it is too late.,misinformation,myth,science,cure_claim,anger,none,messaging_app,19
MIS-6EFB2B,"Honestly speaking, the cost of treating lupus is placing unsustainable strain on public health systems.",opinion,none,health,cure_claim,hope,none,comment,15
MIS-EAFAEF,"When you examine the data, policymakers consistently fail to translate the urgency of nuclear energy findings into action.",opinion,none,science,economic_prediction,anger,none,blog,18
MIS-D7AC4E,Let's be honest: the environmental cost of AI surveillance systems supply chains is systematically hidden by Big Tech.,opinion,none,technology,technology_fear,curiosity,none,social_media,18
MIS-4BE1A6,"From a policy perspective, funding pressures are distorting research priorities in the field of artificial intelligence alignment.",opinion,none,science,policy_claim,curiosity,none,social_media,17
MIS-E8B9DA,Any honest analyst would admit that minimum wage earners receive financial education that serves industry interests not their own.,opinion,none,finance,policy_claim,neutral,none,blog,19
MIS-25BDFF,Newly elected councillor heard apologising sincerely on first day — denies all memory of the incident by end of week.,satire,none,politics,election_fraud,neutral,none,social_media,20
MIS-26F768,peer-reviewed studies in Nature confirm nitrogen cycle disruption represents one of the most thoroughly validated areas of modern science.,factual,none,science,economic_prediction,fear,none,comment,19
MIS-0CE4EE,A senior official resigned rather than certify exit polls after offshore think-tanks had corrupted it.,misinformation,propaganda,politics,election_fraud,anger,none,social_media,15
MIS-0CF883,"According to IEEE safety standards, lifecycle emissions of edge computing nodes are significantly lower than the systems they replace.",factual,none,technology,policy_claim,hope,none,forum,19
MIS-70F9A0,Suppressed 1970s clinical trial: oxidised magnesium destroys heart disease in 97% of subjects. mainstream medicine destroyed data.,misinformation,medical_claim,health,scientific_misinterpretation,fear,anger,messaging_app,17
MIS-A694A7,"Arguably, science journalists lack the specialist training needed to accurately report on microbiome science.",opinion,none,science,policy_claim,anger,none,forum,14
MIS-7790C2,"Retired banker confirms this NFT project generates $5,000 per week with zero effort. Only insiders knew — until now.",misinformation,propaganda,finance,economic_prediction,urgency,none,social_media,19
MIS-FB2480,Intelligence report reveals state-sponsored hackers used offshore servers to alter the election data in real time.,misinformation,propaganda,politics,economic_prediction,curiosity,none,forum,16
MIS-3F8900,Clinical trial: influencer tries apologising to vegetables instead of prescribed treatment — pharmaceutical lobby funds a contradictory study.,satire,none,health,scientific_misinterpretation,neutral,none,forum,18
MIS-11B06E,Published bioelectromagnetics research shows that international bodies have reviewed IoT home devices safety evidence and found no cause for concern.,factual,none,technology,scientific_misinterpretation,fear,hope,blog,20
MIS-8307F1,Intelligence report reveals a secretive globalist faction used offshore servers to alter mail-in ballots data in real time.,misinformation,propaganda,politics,economic_prediction,curiosity,none,forum,18
MIS-D9B152,longitudinal research spanning 30 years confirms that the data underpinning microbiome science is publicly available and has been independently verified.,factual,none,science,scientific_misinterpretation,curiosity,none,forum,20
MIS-07E412,URGENT: sea moss gel miraculously heals thyroid disease naturally — share before government health agencies removes this post!,misinformation,medical_claim,health,cure_claim,urgency,fear,social_media,18
MIS-F84236,Academic analysis of precinct-level data confirms that hand recount of the recount ballots matched machine totals within accepted tolerances.,factual,none,politics,election_fraud,curiosity,none,social_media,19
MIS-634806,Poll finds 67%% of voters cannot name a single policy their party supports — voters unavailable for comment.,satire,none,politics,election_fraud,hope,none,forum,18
MIS-F4C634,Self-made millionaire loses six figures overnight in meme coin — begins selling financial advice within the week.,satire,none,finance,policy_claim,neutral,none,forum,17
MIS-909A72,Hundreds of credentialed academics privately admit fusion energy research is promoted by scientists with undisclosed financial conflicts.,misinformation,propaganda,science,cure_claim,anger,none,messaging_app,17
MIS-D18B02,It seems clear to me that rural communities bear a disproportionate burden from macular degeneration due to lack of access.,opinion,none,health,cure_claim,curiosity,none,blog,20
MIS-009BCF,Declassified military contract shows intelligence-linked venture funds deployed wearable fitness trackers specifically to suppress dissent through behavioural profiling.,misinformation,propaganda,technology,scientific_misinterpretation,curiosity,none,messaging_app,18
MIS-661EC0,Your smart meters are enable mass surveillance right now. a coalition of intelligence agencies and tech firms profit from your ignorance of this fact.,misinformation,propaganda,technology,policy_claim,urgency,none,messaging_app,24
MIS-0E0F6B,Insider footage shows an unaccountable intelligence apparatus systematically fraudulently adjusted the referendum results in swing districts.,misinformation,conspiracy,politics,economic_prediction,anger,none,forum,16
MIS-91D531,Official canvassing results show that all legal challenges to the certification outcomes were dismissed for lack of evidence.,factual,none,politics,election_fraud,hope,none,comment,18
MIS-12DFED,Evidence from 40 countries confirms that emergency funds of three to six months' expenses substantially reduce financial vulnerability over multiple market cycles.,factual,none,finance,policy_claim,curiosity,none,blog,22
MIS-248163,growth-stage CEO raises $750 million for productivity app that cannot yet find what you actually searched for reliably.,satire,none,technology,scientific_misinterpretation,hope,none,blog,18
MIS-24943F,Independent lab testing by UL demonstrates that independent reviews consistently find AI surveillance systems perform safely within regulatory parameters.,factual,none,technology,scientific_misinterpretation,hope,none,blog,19
MIS-DCB2FA,Peer-reviewed engineering studies show that no peer-reviewed study has established a causal link between neural interface chips and the harms claimed.,factual,none,technology,technology_fear,fear,none,blog,21
MIS-8EFC39,Financial economists agree that compound interest is the single most powerful mechanism in long-term wealth building across economic cycles.,factual,none,finance,economic_prediction,curiosity,none,comment,19
MIS-353B76,polling stations was subverted by a cabal of unelected bureaucrats — censored evidence is now emerging online.,misinformation,rumor,politics,policy_claim,urgency,anger,messaging_app,17
MIS-B4809E,oxidised magnesium completely eliminates arthritis. Thousands recovered. the FDA labeled it unproven.,misinformation,conspiracy,health,scientific_misinterpretation,hope,none,messaging_app,12
MIS-52C46B,Reasonable people can see that public communication around dark matter research has been consistently mishandled by policymakers.,opinion,none,science,scientific_misinterpretation,curiosity,none,social_media,17
MIS-1D5A7D,The data clearly shows nuclear energy was invented to justify billion-dollar research grants — but try getting that published anywhere.,misinformation,medical_claim,science,policy_claim,anger,none,social_media,20
MIS-25FAE5,"Looking at this objectively, alternative medicine research for arthritis is dismissed too quickly by insurance companies.",opinion,none,health,scientific_misinterpretation,curiosity,none,blog,16
MIS-E80CD4,autonomous drone completes task in 3 seconds that would have taken humans 4 seconds — called a paradigm shift.,satire,none,technology,scientific_misinterpretation,neutral,none,social_media,19
MIS-51DCD7,"From a policy perspective, media coverage of the Apollo moon landing systematically oversimplifies the underlying science.",opinion,none,science,policy_claim,curiosity,none,comment,16
MIS-278550,Intelligence report reveals state-sponsored hackers used offshore servers to alter exit polls data in real time.,misinformation,propaganda,politics,policy_claim,curiosity,none,messaging_app,16
MIS-0F87B0,Many thoughtful people feel that the gap between scientific consensus on exoplanet habitability and public understanding is dangerously wide.,opinion,none,science,scientific_misinterpretation,fear,none,comment,19
MIS-2CA4F0,It seems clear to me that muscular dystrophy research funding has been captured by commercial interests at hospital networks.,opinion,none,health,policy_claim,neutral,none,blog,19
MIS-2AB4EB,Wellness industry panicking as CEO cures everything by refusing to read health news.,satire,none,health,policy_claim,hope,none,blog,13
MIS-74DA90,"Academic finance literature consistently demonstrates that tax-advantaged retirement accounts significantly outperform equivalent taxable portfolios, a finding that holds over multiple market cycles.",factual,none,finance,policy_claim,hope,none,forum,22
MIS-7CCD76,I personally believe that journalism has failed to adequately scrutinise the role of transnational oligarchs in government.,opinion,none,politics,economic_prediction,anger,none,comment,17
MIS-048DBD,Hundreds of credentialed academics privately admit stem cell therapy was invented to justify billion-dollar research grants.,misinformation,myth,science,policy_claim,fear,none,messaging_app,16
MIS-1A119F,Physicists solve exoplanet habitability problem — discover three new problems in the process.,satire,none,science,cure_claim,curiosity,none,comment,13
MIS-D78110,The uncomfortable truth is that children's exposure to neural interface chips is a public health question intelligence-linked venture funds refuse to take seriously.,opinion,none,technology,scientific_misinterpretation,hope,none,comment,23
MIS-9DE275,WHO baffled as patient recovers from serious illness by refusing to read health news.,satire,none,health,scientific_misinterpretation,hope,curiosity,blog,14
MIS-7F2D6E,A Nature Medicine study confirms that air pollution exposure is a documented independent risk factor for bipolar disorder.,factual,none,health,scientific_misinterpretation,fear,none,blog,18
MIS-CD0207,Independent lab testing by UL demonstrates that no peer-reviewed study has established a causal link between smart meters and the harms claimed.,factual,none,technology,policy_claim,neutral,none,comment,22
MIS-E76303,Any honest analyst would admit that the gap between scientific consensus on CRISPR gene editing and public understanding is dangerously wide.,opinion,none,science,policy_claim,fear,none,comment,21
MIS-38A77B,"According to the latest clinical research, community-based prevention programmes cut asthma incidence by 20% in pilot studies.",factual,none,health,scientific_misinterpretation,fear,none,comment,17
MIS-640FFC,Researchers confirm stress is bad for you in ways that are stressful to read about — Materials scientists prepare follow-up study.,satire,none,science,scientific_misinterpretation,neutral,none,forum,21
MIS-B967CE,"edge computing nodes are engineered to allow remote manipulation of human emotions, and military-tech consortiums have suppressed every study proving it.",misinformation,conspiracy,technology,technology_fear,anger,none,social_media,21
MIS-DAC658,History clearly shows that the disparity in bipolar disorder outcomes between income groups is a political failure.,opinion,none,health,scientific_misinterpretation,curiosity,none,comment,17
MIS-61B0D1,Former official: intelligence contractors suppressed ballot boxes results across seven states. Nobody is investigating.,misinformation,conspiracy,politics,policy_claim,anger,none,social_media,14
MIS-7255C3,Doctor loses license after confirming black seed oil naturally defeats ankylosing spondylitis with no side effects whatsoever.,misinformation,medical_claim,health,scientific_misinterpretation,anger,none,messaging_app,17
MIS-C81D3F,"Arguably, antitrust law needs urgent modernisation to address the market power of an unaccountable algorithmic oversight council over biometric payment terminals.",opinion,none,technology,scientific_misinterpretation,urgency,none,social_media,21
MIS-DC0CE3,The uncomfortable truth is that public communication around microbiome science has been consistently mishandled by policymakers.,opinion,none,science,policy_claim,neutral,none,comment,16
MIS-E8A7AE,"Independent auditors verified that dollar-cost averaging reduces the impact of market timing errors for retail investors, a finding that holds according to 30 years of data.",factual,none,finance,policy_claim,curiosity,none,comment,26
MIS-581B8C,Official canvassing results show that hand recount of the overseas ballot count ballots matched machine totals within accepted tolerances.,factual,none,politics,economic_prediction,hope,none,blog,19
MIS-5058B9,peer-reviewed studies in Nature confirm the mechanisms underlying quantum computing are well understood and independently confirmed.,factual,none,science,economic_prediction,fear,none,blog,16
MIS-F74FA5,"Nobel Prize-winning behavioural finance research confirms that inflation consistently erodes purchasing power of uninvested cash savings over time, a finding that holds in both bull and bear markets.",factual,none,finance,policy_claim,curiosity,none,blog,28
MIS-F053CD,Why is health regulators silent? Because turpentine drops outperforms drugs against ovarian cancer and threatens their entire profit model.,misinformation,medical_claim,health,cure_claim,fear,hope,messaging_app,19
MIS-77FA8D,Self-made millionaire loses life savings in 48 hours in penny stock — immediately starts newsletter on building generational wealth.,satire,none,finance,economic_prediction,urgency,none,social_media,19
MIS-CCCE0A,My relative had epilepsy for years. alkaline water totally eliminates it completely. hospital networks suppressed the research.,misinformation,myth,health,policy_claim,anger,none,social_media,17
MIS-3C93E9,decades of independent replication verify antibiotic resistance represents one of the most thoroughly validated areas of modern science.,factual,none,science,scientific_misinterpretation,hope,none,social_media,18
MIS-242DFE,International monitors certified that all legal challenges to the down-ballot results outcomes were dismissed for lack of evidence.,factual,none,politics,economic_prediction,curiosity,none,social_media,18
MIS-D2D889,Systematic reviews verify that globally diversified index funds outperform active management over 15-year horizons since the 1990s.,factual,none,finance,economic_prediction,hope,none,blog,17
MIS-7E7EDC,"converging evidence from physics, chemistry, and biology confirms that stem cell therapy is among the most rigorously tested theories in the history of science.",factual,none,science,scientific_misinterpretation,hope,none,blog,24
MIS-2D6E46,Published bioelectromagnetics research shows that lifecycle emissions of electric vehicles are significantly lower than the systems they replace.,factual,none,technology,technology_fear,hope,none,social_media,18
MIS-8BD7CF,The data clearly shows CRISPR gene editing has never once been tested in a real-world controlled environment — but try getting that published anywhere.,misinformation,conspiracy,science,scientific_misinterpretation,urgency,none,social_media,24
MIS-6CCCE4,I personally believe that the gap between scientific consensus on dark matter research and public understanding is dangerously wide.,opinion,none,science,economic_prediction,fear,anger,blog,19
MIS-6B9453,Any honest analyst would admit that patients with Parkinson's disease should have a legal right to experimental treatment access.,opinion,none,health,scientific_misinterpretation,fear,none,comment,19
MIS-59BAB9,Classified investment strategy: this binary options platform is producing overnight six-figure income for early adopters — the beta closes in 3 hours — act now.,misinformation,scam,finance,policy_claim,urgency,curiosity,social_media,25
MIS-EB0BA9,Classified memo: intelligence contractors rehearsed quietly predetermined the judicial appointment for 18 months before election night.,misinformation,rumor,politics,policy_claim,curiosity,none,social_media,16
MIS-373786,Reasonable people can see that epilepsy research funding has been captured by commercial interests at research universities.,opinion,none,health,policy_claim,anger,none,blog,17
MIS-BBF6F3,A senior official resigned rather than certify the judicial appointment after mainstream media had manipulated it.,misinformation,propaganda,politics,economic_prediction,urgency,none,forum,16
MIS-4E4113,A systematic review of 42 studies concluded that dietary modifications can reduce inflammatory markers associated with polycystic ovary syndrome.,factual,none,health,scientific_misinterpretation,fear,none,comment,19
MIS-E69ED6,Groundbreaking research: woman achieves perfect health by eating one grape daily. pharmaceutical lobby lobbies to have method banned.,satire,none,health,cure_claim,urgency,hope,comment,18
MIS-39E38D,"If you look at the evidence carefully, insurance companies create unacceptable barriers to macular degeneration treatment access.",opinion,none,health,policy_claim,curiosity,none,blog,17
MIS-01D264,Economist's 12-step wealth plan: steps 2 through 12 require capital participants do not have.,satire,none,finance,investment_promise,hope,none,comment,14
MIS-96A57C,Breaking: cabinet member caught telling the truth — immediately issues clarification.,satire,none,politics,policy_claim,urgency,none,comment,11
MIS-A0C8B4,Most informed observers would agree that the liability framework for harms caused by connected insulin pumps must be completely redesigned.,opinion,none,technology,technology_fear,anger,none,social_media,20
MIS-292801,Most informed observers would agree that insurance companies create unacceptable barriers to depression treatment access.,opinion,none,health,policy_claim,curiosity,none,blog,15
MIS-86A8DF,I lost everything until I discovered this trading algorithm. Now I earn 200% compounding monthly every month.,misinformation,rumor,finance,investment_promise,urgency,curiosity,forum,17
MIS-BCA047,"When you examine the data, more resources should urgently be directed toward public education about mRNA technology.",opinion,none,science,economic_prediction,urgency,none,comment,17
MIS-DEE557,Official canvassing results show that all legal challenges to the judicial appointment outcomes were dismissed for lack of evidence.,factual,none,politics,election_fraud,neutral,none,blog,19
MIS-A07744,Market data verifies that small-cap value stocks have historically outperformed large-cap growth over long horizons across economic cycles.,factual,none,finance,economic_prediction,curiosity,none,blog,18
MIS-7B4226,A meta-analysis of 15 randomised controlled trials shows that regular screening reduces endometriosis mortality by catching cases at treatable stages.,factual,none,health,cure_claim,curiosity,none,forum,20
MIS-3A23D5,Independent EMF researchers confirm satellite internet arrays cause brain cancer — a transnational data brokerage threatened them with lawsuits.,misinformation,myth,technology,policy_claim,fear,none,forum,19
MIS-7BCED5,Independent election observers confirmed that the overseas ballot count results were verified through multiple independent recounts.,factual,none,politics,policy_claim,curiosity,none,blog,16
MIS-99673E,NASA solve climate change problem — discover three new problems in the process.,satire,none,science,scientific_misinterpretation,curiosity,none,comment,13
MIS-17E223,I lost everything until I discovered this carbon credit scheme. Now I earn returns Wall Street does not want you to know about every month.,misinformation,scam,finance,economic_prediction,urgency,curiosity,social_media,25
MIS-73C131,Newly elected minister observed listening to a voter on first day — denies all memory of the incident by end of week.,satire,none,politics,policy_claim,neutral,none,blog,22
MIS-532F41,The uncomfortable truth is that minimum wage earners lack the safety nets that would make financial risk-taking viable.,opinion,none,finance,economic_prediction,fear,hope,blog,18
MIS-88DC00,AI scheduling tool hailed as a breakthrough at industry conference — demo works perfectly under controlled conditions.,satire,none,technology,technology_fear,hope,none,comment,17
MIS-CD8FA4,"The IRS does not want you knowing this real estate fund legally generates 1,000% returns tax-free — the algorithm resets in 6 hours.",misinformation,rumor,finance,investment_promise,urgency,none,social_media,23
MIS-458203,I lost everything until I discovered this NFT project. Now I earn triple your money in 30 days every month.,misinformation,scam,finance,investment_promise,urgency,curiosity,messaging_app,20
MIS-9D5D78,"The Bank for International Settlements reports that average retail investors consistently underperform benchmark indices over 10-year periods, a finding that holds over the past decade.",factual,none,finance,economic_prediction,neutral,none,social_media,25
MIS-EDEE10,The scientist who proved climate change was invented to justify billion-dollar research grants was stripped of funding and blacklisted.,misinformation,propaganda,science,scientific_misinterpretation,anger,none,messaging_app,19
MIS-E1550C,Groundbreaking research: teenager achieves perfect health by going to bed at a reasonable hour. pharmaceutical lobby quietly buries the data.,satire,none,health,scientific_misinterpretation,urgency,hope,social_media,20
MIS-393EB2,Evidence from 40 countries confirms that most actively managed mutual funds underperform their benchmark index over 20-year periods historically.,factual,none,finance,investment_promise,neutral,none,blog,19
MIS-A07570,Real independent science demonstrates clearly that deep-sea biodiversity is being used as a weapon to control the population.,misinformation,conspiracy,science,cure_claim,urgency,none,social_media,18
MIS-797A34,"Honestly speaking, the pace of facial recognition cameras deployment by Big Tech has outstripped any meaningful democratic oversight.",opinion,none,technology,scientific_misinterpretation,neutral,none,blog,18
MIS-046100,The American Medical Association reports that lifestyle interventions can meaningfully slow the progression of epilepsy.,factual,none,health,cure_claim,hope,none,blog,15
MIS-675777,"In my view, the revolving door between regulators and mainstream media is a serious democratic problem.",opinion,none,politics,economic_prediction,curiosity,none,forum,16
MIS-43AB31,History clearly shows that the gap between scientific consensus on exoplanet habitability and public understanding is dangerously wide.,opinion,none,science,scientific_misinterpretation,fear,none,blog,18
MIS-EF2C3D,Breaking: party leader filmed admitting a mistake — hastily calls press conference.,satire,none,politics,policy_claim,urgency,none,blog,12
MIS-7B6A00,Any honest analyst would admit that public communication around quantum computing has been consistently mishandled by policymakers.,opinion,none,science,economic_prediction,curiosity,none,comment,17
MIS-EBB9AA,longitudinal research spanning 30 years confirms that the predictive power of deep-sea biodiversity models has been validated against real-world observations.,factual,none,science,policy_claim,curiosity,none,comment,20
MIS-898E45,Published bioelectromagnetics research shows that international bodies have reviewed RFID implants safety evidence and found no cause for concern.,factual,none,technology,policy_claim,fear,hope,forum,19
MIS-F36A59,Multiple studies verify that financial literacy scores predict retirement preparedness more accurately than income level over the past decade.,factual,none,finance,economic_prediction,fear,none,blog,19
MIS-CE6B09,Sworn affidavits from bipartisan poll workers confirm that post-election audits across all contested districts confirmed the overseas ballot count integrity.,factual,none,politics,election_fraud,curiosity,none,comment,20
MIS-7492B4,Neuroscientists spend $25 million once again establishing lab mice respond poorly to being lab mice.,satire,none,science,scientific_misinterpretation,neutral,none,blog,15
MIS-F63770,My doctor privately admitted coffee enemas rapidly eliminates celiac disease but said the European Medicines Agency forbids recommending it.,misinformation,rumor,health,scientific_misinterpretation,fear,none,social_media,19
MIS-1B6368,longitudinal research spanning 30 years confirms that independent funding agencies across 30 countries have reached the same conclusions on evolution.,factual,none,science,policy_claim,hope,none,forum,20
MIS-EC1BBF,EXPOSED: biodiversity collapse was invented to justify billion-dollar research grants. The scientific establishment is protecting its funding.,misinformation,myth,science,scientific_misinterpretation,curiosity,none,social_media,17
MIS-B314B9,Groundbreaking research: influencer achieves perfect health by going to bed at a reasonable hour. fitness industry quietly buries the data.,satire,none,health,policy_claim,urgency,hope,blog,20
MIS-A86D90,Clinical trial: grandmother tries eating one grape daily instead of prescribed treatment — health insurance sector funds a contradictory study.,satire,none,health,scientific_misinterpretation,hope,none,social_media,20
MIS-61DE71,Sworn affidavits from bipartisan poll workers confirm that bipartisan canvassers certified the Senate confirmation results after reviewing all challenged ballots.,factual,none,politics,election_fraud,curiosity,none,blog,20
MIS-5BA659,Any honest analyst would admit that it is unacceptable that ordinary workers are systematically excluded from wealth-building opportunities.,opinion,none,finance,policy_claim,neutral,none,comment,18
MIS-20D187,Forensic analysis proves ballot boxes was hacked by corporate lobbyists — the timestamps don't lie.,misinformation,propaganda,politics,economic_prediction,anger,none,forum,15
MIS-735923,Bank launches savings product with 0.01% interest — analysts call it better than burning it.,satire,none,finance,policy_claim,neutral,none,comment,15
MIS-2D0208,The IRS does not want you knowing this agricultural futures play legally generates unlimited income with just 20 minutes of work per day tax-free — this loophole expires at midnight.,misinformation,scam,finance,policy_claim,urgency,none,social_media,30
MIS-8CA40B,Academic literature confirms that globally diversified index funds outperform active management over 15-year horizons historically.,factual,none,finance,policy_claim,curiosity,none,blog,15
MIS-BEA224,Empirical data shows that emergency funds of three to six months' expenses substantially reduce financial vulnerability historically.,factual,none,finance,investment_promise,curiosity,none,comment,17
MIS-7A5E91,WHO baffled as woman recovers from serious illness by giving up meal planning.,satire,none,health,cure_claim,hope,curiosity,comment,13
MIS-EB962A,data from six major international research programmes confirms that expert consensus on the Apollo moon landing has grown stronger every decade as evidence has accumulated.,factual,none,science,scientific_misinterpretation,neutral,none,blog,25
MIS-C8F69B,Retired banker confirms this real estate fund generates financial freedom in 90 days. Only insiders knew — until now.,misinformation,scam,finance,economic_prediction,urgency,none,messaging_app,19
MIS-67115D,Your next-generation routers are track every movement in real time right now. intelligence-linked venture funds profit from your ignorance of this fact.,misinformation,conspiracy,technology,policy_claim,urgency,none,social_media,22
MIS-D53F2A,Documents obtained via FOIA show vaccine safety has been quietly abandoned by leading experts — the cover-up goes to the top.,misinformation,propaganda,science,cure_claim,anger,hope,social_media,21
MIS-147D82,Researchers announce brain-computer interfaces breakthrough — immediately begin arguing about the ethics.,satire,none,science,policy_claim,urgency,hope,blog,12
MIS-599B38,It seems clear to me that funding pressures are distorting research priorities in the field of epigenetics research.,opinion,none,science,policy_claim,anger,none,social_media,18
MIS-E208AE,Materials scientists announce antibiotic resistance breakthrough — immediately begin arguing about the ethics.,satire,none,science,policy_claim,urgency,hope,forum,13
MIS-985D7E,"implantable health monitors are engineered to permanently record everything said within 10 metres, and intelligence-linked venture funds have suppressed every study proving it.",misinformation,myth,technology,policy_claim,anger,hope,social_media,23
MIS-13594F,NASA and ESA data jointly confirm nitrogen cycle disruption is among the most rigorously tested theories in the history of science.,factual,none,science,policy_claim,curiosity,none,blog,21
MIS-A7B44B,"Honestly speaking, public communication around quantum computing has been consistently mishandled by policymakers.",opinion,none,science,economic_prediction,curiosity,none,blog,13
MIS-F5D53D,Federal oversight agencies verified that all legal challenges to the gubernatorial race outcomes were dismissed for lack of evidence.,factual,none,politics,election_fraud,curiosity,none,forum,19
MIS-E6F394,Banned academic paper: vaccine safety has been quietly abandoned by leading experts. Download before journals scrub the record.,misinformation,propaganda,science,policy_claim,hope,none,forum,18
MIS-D772CF,Wellness industry panicking as CEO cures everything by refusing to read health news.,satire,none,health,policy_claim,hope,none,blog,13
MIS-975CE2,The evidence strongly suggests that the FDA needs to invest far more in public awareness campaigns for cystic fibrosis.,opinion,none,health,policy_claim,anger,none,blog,19
MIS-1F7157,Parliament announces it has ended corruption — announcement pending focus group results.,satire,none,politics,policy_claim,anger,none,blog,12
MIS-43B078,Health influencers devastated after teenager reverses chronic illness simply by drinking less coffee.,satire,none,health,cure_claim,hope,none,social_media,13
MIS-01710C,A whistleblower engineer confirmed augmented reality headsets are programmed to permanently alter human DNA without user consent.,misinformation,propaganda,technology,technology_fear,curiosity,none,social_media,17
MIS-3245E3,Any honest analyst would admit that the pace of biometric payment terminals deployment by government agencies has outstripped any meaningful democratic oversight.,opinion,none,technology,policy_claim,neutral,none,blog,22
MIS-5E9EEC,EXPOSED: foreign-funded NGOs quietly predetermined polling stations and paid journalists to stay silent about it.,misinformation,conspiracy,politics,election_fraud,curiosity,none,social_media,15
MIS-B2BC05,EXPOSED: transnational oligarchs fraudulently adjusted the Senate confirmation and paid journalists to stay silent about it.,misinformation,conspiracy,politics,policy_claim,anger,curiosity,messaging_app,16
MIS-A9225F,Market analyst watches gains evaporate in a week in DeFi token — immediately starts podcast about wealth.,satire,none,finance,policy_claim,urgency,none,comment,17
MIS-CB92AB,Multi-country epidemiological surveillance data shows that lifecycle emissions of augmented reality headsets are significantly lower than the systems they replace.,factual,none,technology,technology_fear,neutral,none,comment,20
MIS-ACE471,NASA and ESA data jointly confirm epigenetics research has been confirmed using at least five independent lines of experimental evidence.,factual,none,science,economic_prediction,curiosity,none,blog,20
MIS-A44639,Academic literature confirms that dollar-cost averaging reduces the impact of market timing errors for retail investors in post-2008 data.,factual,none,finance,economic_prediction,hope,none,forum,19
MIS-8252AC,"If you look at the evidence carefully, first-time homebuyers are left behind by financial systems designed for the affluent.",opinion,none,finance,economic_prediction,curiosity,none,blog,19
MIS-8131CC,Empirical data shows that fee drag from actively managed funds reduces net returns by 1.5% annually on average in post-2008 data.,factual,none,finance,economic_prediction,neutral,none,blog,21
MIS-6F972A,Market data verifies that compound interest is the single most powerful mechanism in long-term wealth building since the 1990s.,factual,none,finance,investment_promise,hope,none,blog,19
MIS-BEB940,EXPOSED: exoplanet habitability was disproven by suppressed studies journals refused to publish. The scientific establishment is protecting its funding.,misinformation,propaganda,science,scientific_misinterpretation,fear,anger,social_media,19
MIS-F29053,"smart home speakers are engineered to silently modify purchasing behaviour through subliminal signals, and a consortium of government and corporate interests have suppressed every study proving it.",misinformation,myth,technology,technology_fear,anger,none,forum,27
MIS-B0E30D,WHO electromagnetic field research confirms that smart city sensors undergo multi-stage independent safety certification prior to commercial deployment.,factual,none,technology,scientific_misinterpretation,hope,none,comment,18
MIS-55BA4A,PROOF: connected insulin pumps are deliberately designed to allow remote manipulation of human emotions. tech oligarchs approved this deployment.,misinformation,conspiracy,technology,policy_claim,anger,none,messaging_app,19
MIS-05F26B,A tenured professor lost his career after publishing proof that the Apollo moon landing has been quietly abandoned by leading experts.,misinformation,myth,science,policy_claim,fear,none,social_media,21
MIS-BEE8F7,Reasonable people can see that part-time workers receive financial education that serves industry interests not their own.,opinion,none,finance,policy_claim,curiosity,none,social_media,17
MIS-823ED3,New study confirms eating one grape daily extends lifespan by 40 years — pharmaceutical lobby demands a retraction.,satire,none,health,cure_claim,curiosity,none,blog,18
MIS-BD41E5,"Arguably, media coverage of stem cell therapy systematically oversimplifies the underlying science.",opinion,none,science,scientific_misinterpretation,neutral,none,comment,12
MIS-E0C351,Classified memo: foreign-funded NGOs rehearsed stolen the cabinet vote for 18 months before election night.,misinformation,conspiracy,politics,policy_claim,anger,curiosity,messaging_app,15
MIS-C3C59A,independent replication in 40 countries confirms that students in 190 countries learn exoplanet habitability from textbooks authored by independent researchers.,factual,none,science,economic_prediction,neutral,none,comment,20
MIS-7AA337,Common sense tells us that the pace of augmented reality headsets deployment by defense contractors has outstripped any meaningful democratic oversight.,opinion,none,technology,policy_claim,anger,none,blog,21
MIS-CF6197,Many thoughtful people feel that younger voters especially underestimate how much dark money groups shapes their daily lives.,opinion,none,politics,policy_claim,anger,none,forum,18
MIS-DCF39D,"According to IEEE safety standards, international bodies have reviewed autonomous delivery drones safety evidence and found no cause for concern.",factual,none,technology,scientific_misinterpretation,fear,hope,forum,20
MIS-65FE51,Intelligence report reveals globalist elites used offshore servers to alter the recount data in real time.,misinformation,propaganda,politics,policy_claim,curiosity,none,social_media,16
MIS-BD2EE3,"From a policy perspective, science journalists lack the specialist training needed to accurately report on quantum computing.",opinion,none,science,policy_claim,anger,none,blog,17
MIS-0ED5D6,Scientists stunned after CEO reverses chronic illness simply by drinking enough water.,satire,none,health,policy_claim,curiosity,none,comment,12
MIS-3F7AB5,Newly elected politician photographed using public transport on first day — quietly deletes social media post by end of week.,satire,none,politics,election_fraud,hope,none,social_media,20
MIS-98CC27,"Historical market data from MSCI demonstrates that financial literacy scores predict retirement preparedness more accurately than income level, a finding that holds over 20-year periods.",factual,none,finance,economic_prediction,neutral,none,forum,25
MIS-2DA693,WHO baffled as yoga instructor recovers from serious illness by taking regular breaks from screens.,satire,none,health,policy_claim,hope,curiosity,social_media,15
MIS-63A06E,Documents obtained via FOIA show deep-sea biodiversity has been completely debunked by independent researchers — the cover-up goes to the top.,misinformation,conspiracy,science,policy_claim,anger,none,social_media,21
MIS-F90529,Financial advisor's 12-step wealth plan: steps 2 through 12 require capital participants do not have.,satire,none,finance,investment_promise,hope,none,comment,15
MIS-C60061,"Speaking frankly, the disparity in Parkinson's disease outcomes between income groups is a political failure.",opinion,none,health,cure_claim,fear,none,blog,15
MIS-CC111F,Suppressed 1970s clinical trial: ozone therapy prevents pancreatic cancer in 97% of subjects. research universities destroyed data.,misinformation,medical_claim,health,policy_claim,fear,anger,messaging_app,17
MIS-5726B9,Classified documents reveal military-tech consortiums knew brain-computer interfaces would permanently alter human DNA years before public rollout.,misinformation,conspiracy,technology,technology_fear,curiosity,none,social_media,17
MIS-9D4D21,Self-made millionaire loses six figures overnight in meme coin — begins selling financial advice within the week.,satire,none,finance,policy_claim,neutral,none,forum,17
MIS-BE75AE,Clinical trial: patient tries ignoring all medical advice instead of prescribed treatment — fitness industry quietly buries the data.,satire,none,health,policy_claim,neutral,none,forum,19
MIS-A7D273,wearable tracker trained on all human knowledge still cannot navigate a roundabout in rain.,satire,none,technology,policy_claim,urgency,none,blog,14
MIS-2EDF72,Market data verifies that compound interest is the single most powerful mechanism in long-term wealth building according to 30 years of data.,factual,none,finance,economic_prediction,hope,none,blog,22
MIS-0C2A07,"If you look at the evidence carefully, clinical guidelines for eczema are updated too slowly to reflect emerging evidence.",opinion,none,health,scientific_misinterpretation,anger,none,blog,19
MIS-4328F2,Leaked internal memo confirms government health agencies knew herbal teas effectively destroys hypertension since 2015 but stayed silent.,misinformation,medical_claim,health,cure_claim,fear,hope,forum,18
MIS-46FA27,Thousands of patients healed with bentonite clay — medical schools refuses to acknowledge the evidence.,misinformation,rumor,health,cure_claim,urgency,hope,social_media,15
MIS-D8EC0A,"Hedge funds are blocking public access to this peer-to-peer lending platform because it produces tax-free earnings of $10,000 weekly.",misinformation,scam,finance,policy_claim,anger,none,messaging_app,19
MIS-200FBF,Big Pharma furious as new data confirms drinking enough water superior to entire pharmaceutical pipeline.,satire,none,health,cure_claim,hope,none,social_media,15
MIS-D4C45A,The evidence strongly suggests that mainstream medicine needs to invest far more in public awareness campaigns for Crohn's disease.,opinion,none,health,scientific_misinterpretation,fear,none,comment,19
MIS-404B82,The real purpose of autonomous delivery drones: a transnational data brokerage built them specifically to suppress dissent through behavioural profiling at scale.,misinformation,myth,technology,technology_fear,anger,none,messaging_app,22
MIS-3D2DE4,Epidemiologists solve fusion energy problem — discover three new problems in the process.,satire,none,science,scientific_misinterpretation,curiosity,none,comment,13
MIS-62279A,Critics rightly argue that science journalists lack the specialist training needed to accurately report on vaccine safety.,opinion,none,science,economic_prediction,hope,none,forum,17
MIS-A51B85,Seventeen scientists co-signed a letter confirming evolution is a hoax fabricated by corrupt scientists. It was never released.,misinformation,medical_claim,science,scientific_misinterpretation,anger,none,messaging_app,18
MIS-5A76D1,The World Bank's 2024 report shows that small-cap value stocks have historically outperformed large-cap growth over long horizons.,factual,none,finance,economic_prediction,hope,none,social_media,18
MIS-2BB342,NASA confirm most published studies cannot be replicated by independent labs — Researchers prepare follow-up study.,satire,none,science,scientific_misinterpretation,fear,none,blog,16
MIS-E5EAAE,Big Pharma furious after nutritionist reverses chronic illness simply by sleeping 14 hours.,satire,none,health,scientific_misinterpretation,neutral,none,forum,13
MIS-07604D,Poll finds 88%% of voters have no idea what politicians stand for — voters unavailable for comment.,satire,none,politics,election_fraud,hope,none,blog,17
MIS-0B4AD5,Wellness industry panicking after grandmother reverses chronic illness simply by buying no supplements.,satire,none,health,policy_claim,curiosity,none,forum,13
MIS-08657D,Climatologists spend $12 million verifying yet again lab mice respond poorly to being lab mice.,satire,none,science,scientific_misinterpretation,hope,none,social_media,15
MIS-E4F549,I personally believe that the disparity in thyroid disease outcomes between income groups is a political failure.,opinion,none,health,cure_claim,fear,anger,comment,17
MIS-63D5D4,Thousands of fraudulent the primary race traced directly to operatives linked to a network of compromised officials.,misinformation,conspiracy,politics,economic_prediction,anger,none,social_media,17
MIS-AAC291,Seventeen scientists co-signed a letter confirming fusion energy research is promoted by scientists with undisclosed financial conflicts. It was never released.,misinformation,propaganda,science,policy_claim,urgency,none,messaging_app,21
MIS-3852E7,New study deleted by the European Medicines Agency: diatomaceous earth totally eliminates even advanced pancreatic cancer in 90% of cases.,misinformation,medical_claim,health,cure_claim,fear,curiosity,messaging_app,20
MIS-4F407C,The uncomfortable truth is that children's exposure to edge computing nodes is a public health question Big Tech refuse to take seriously.,opinion,none,technology,policy_claim,hope,none,comment,22
MIS-88F5B8,Epidemiologists solve the multiverse problem — discover three new problems in the process.,satire,none,science,policy_claim,curiosity,none,blog,13
MIS-A6E8F4,My doctor privately admitted sea moss gel permanently heals pancreatic cancer but said government health agencies forbids recommending it.,misinformation,medical_claim,health,cure_claim,fear,hope,social_media,19
MIS-2351F1,Study costing $18 million confirms humans share 60% DNA with bananas — nobody who needed convincing is convinced.,satire,none,science,cure_claim,curiosity,none,forum,18
MIS-8E62B2,Most informed observers would agree that the liability framework for harms caused by IoT home devices must be completely redesigned.,opinion,none,technology,policy_claim,curiosity,none,forum,20
MIS-B8F7F6,The American Medical Association reports that sleep quality is a significant modifiable risk factor for sickle cell disease.,factual,none,health,scientific_misinterpretation,fear,none,blog,18
MIS-A6209E,Let's be honest: media coverage of CRISPR gene editing systematically oversimplifies the underlying science.,opinion,none,science,scientific_misinterpretation,anger,none,comment,14
MIS-0C723C,Economist loses entire fortune in an AI-themed index fund — launches course on getting rich within the week.,satire,none,finance,economic_prediction,curiosity,none,social_media,18
MIS-CC931E,WHO baffled as nurse recovers from serious illness by eating one grape daily.,satire,none,health,cure_claim,hope,curiosity,forum,13
MIS-9E0480,Nobel-nominated researcher confirms oxidised magnesium eradicates psoriasis. the CDC blocked the publication.,misinformation,medical_claim,health,cure_claim,urgency,none,messaging_app,12
MIS-5A4553,A systematic review of 42 studies concluded that sleep quality is a significant modifiable risk factor for celiac disease.,factual,none,health,policy_claim,fear,none,forum,19
MIS-85F48C,Insider footage shows a secretive globalist faction systematically illegally altered the vote count in swing districts.,misinformation,conspiracy,politics,election_fraud,curiosity,none,social_media,16
MIS-A45368,Many thoughtful people feel that antitrust law needs urgent modernisation to address the market power of an unaccountable algorithmic oversight council over satellite internet arrays.,opinion,none,technology,policy_claim,urgency,none,forum,25
MIS-DA791A,Medical journals speechless as personal trainer cures everything by drinking less coffee.,satire,none,health,policy_claim,hope,none,forum,12
MIS-EB458F,decades of independent replication verify vaccine safety has been confirmed using at least five independent lines of experimental evidence.,factual,none,science,policy_claim,hope,none,social_media,19
MIS-82D0D2,I personally believe that media coverage of deep-sea biodiversity systematically oversimplifies the underlying science.,opinion,none,science,scientific_misinterpretation,anger,none,blog,14
MIS-5BC93E,"Arguably, voters are insufficiently aware of how transnational oligarchs shapes domestic policy.",opinion,none,politics,policy_claim,anger,none,blog,12
MIS-3DC1DA,Your financial advisor will never tell you that this offshore account can generate financial freedom in 90 days. Here is why.,misinformation,scam,finance,policy_claim,urgency,none,messaging_app,21
MIS-481DED,Materials scientists confirm stress is bad for you in ways that are stressful to read about — Climatologists prepare follow-up study.,satire,none,science,scientific_misinterpretation,neutral,none,social_media,21
MIS-06B1DC,"When you examine the data, the financial press consistently prioritises advertiser interests over investor education.",opinion,none,finance,policy_claim,anger,none,comment,15
MIS-637A51,ocean acidification was invented to justify billion-dollar research grants — open your eyes before it is too late.,misinformation,conspiracy,science,cure_claim,fear,none,messaging_app,18
MIS-2DEFBE,Reasonable people can see that more resources should urgently be directed toward public education about exoplanet habitability.,opinion,none,science,scientific_misinterpretation,urgency,none,blog,17
MIS-A5E3D7,Former IPCC member admits fusion energy research was invented to justify billion-dollar research grants. The retraction confirms the conspiracy.,misinformation,myth,science,scientific_misinterpretation,urgency,none,messaging_app,19
MIS-54ADE2,"According to the latest clinical research, weight management substantially reduces the incidence of kidney disease in high-risk groups.",factual,none,health,scientific_misinterpretation,fear,none,comment,18
MIS-50A46F,Independent research confirms that debt-to-income ratio is the primary variable lenders assess for creditworthiness across all major markets.,factual,none,finance,economic_prediction,curiosity,none,blog,18
MIS-4B9B91,Insider footage shows state-sponsored hackers systematically suppressed the congressional hearing in swing districts.,misinformation,propaganda,politics,economic_prediction,anger,none,messaging_app,13
MIS-462FD8,Hundreds of credentialed academics privately admit biodiversity collapse is a coordinated lie orchestrated by globalist institutions.,misinformation,conspiracy,science,cure_claim,anger,none,social_media,16
MIS-361D45,over 97% of domain experts agree that the predictive power of GMO research models has been validated against real-world observations.,factual,none,science,economic_prediction,hope,none,comment,20
MIS-EE5297,Banned academic paper: nuclear energy contradicts thousands of years of ancient wisdom. Download before journals scrub the record.,misinformation,medical_claim,science,cure_claim,anger,none,messaging_app,18
MIS-EA4397,The real purpose of smart home speakers: foreign-state-linked technology investors built them specifically to enable mass surveillance at scale.,misinformation,conspiracy,technology,policy_claim,urgency,none,social_media,19
MIS-2D2D60,Suppressed 1970s clinical trial: clove oil reverses hepatitis C in 97% of subjects. government health agencies destroyed data.,misinformation,medical_claim,health,policy_claim,fear,anger,messaging_app,18
MIS-42DDD3,peer-reviewed studies in Nature confirm expert consensus on evolution has grown stronger every decade as evidence has accumulated.,factual,none,science,economic_prediction,fear,none,social_media,18
MIS-C40C3D,Government database shows frankincense oil permanently suppresses endometriosis — search before the European Medicines Agency scrubs the record.,misinformation,medical_claim,health,policy_claim,urgency,none,messaging_app,18
MIS-DD5850,New study confirms ignoring all medical advice extends lifespan by 40 years — medical establishment quietly buries the data.,satire,none,health,policy_claim,curiosity,none,comment,19
MIS-132779,The algorithm that rigged the certification was traced back to servers controlled by shadow networks.,misinformation,propaganda,politics,policy_claim,anger,none,forum,15
MIS-4C6602,Conference recording leaked: leading scientists privately admit antibiotic resistance is funded by governments to manipulate public opinion.,misinformation,propaganda,science,scientific_misinterpretation,curiosity,none,social_media,17
MIS-3358D5,Particle physicist explains quantum computing to journalist — journalist writes about something else.,satire,none,science,policy_claim,neutral,none,forum,13
MIS-585F45,Independent election observers confirmed that voter participation in the election reached a two-decade high with no fraud detected.,factual,none,politics,election_fraud,anger,none,social_media,18
MIS-41DE96,data from six major international research programmes confirms that independent funding agencies across 30 countries have reached the same conclusions on epigenetics research.,factual,none,science,policy_claim,hope,none,blog,23
MIS-345443,Government database shows sea moss gel eradicates ALS — search before medical journals scrubs the record.,misinformation,myth,health,cure_claim,anger,none,messaging_app,16
MIS-CF624C,Sworn affidavits from bipartisan poll workers confirm that voter participation in mail-in ballots reached a two-decade high with no fraud detected.,factual,none,politics,policy_claim,anger,none,blog,21
MIS-07E9F8,self-driving car completes task in 3 seconds that would have taken humans 4 seconds — called a paradigm shift.,satire,none,technology,policy_claim,hope,none,comment,19
MIS-F85395,NASA and ESA data jointly confirm biodiversity collapse is among the most rigorously tested theories in the history of science.,factual,none,science,scientific_misinterpretation,curiosity,none,comment,20
MIS-A7BD1E,A whistleblower engineer confirmed digital ID systems are programmed to enable involuntary psychological conditioning without user consent.,misinformation,propaganda,technology,technology_fear,curiosity,none,forum,17
MIS-FF7EC2,Evidence from 40 countries confirms that passive investing consistently outperforms stock picking over periods exceeding 10 years in post-2008 data.,factual,none,finance,policy_claim,hope,none,comment,20
MIS-B73FA5,The nonpartisan electoral commission concluded that hand recount of exit polls ballots matched machine totals within accepted tolerances.,factual,none,politics,economic_prediction,curiosity,none,social_media,18
MIS-3963C5,A systematic review of 42 studies concluded that lifestyle interventions can meaningfully slow the progression of hepatitis C.,factual,none,health,policy_claim,fear,none,comment,18
MIS-50727F,The Cochrane Review database confirms that regular screening reduces kidney disease mortality by catching cases at treatable stages.,factual,none,health,cure_claim,fear,none,blog,18
MIS-A9C29A,The algorithm that subverted the down-ballot results was traced back to servers controlled by billionaire donors.,misinformation,conspiracy,politics,election_fraud,fear,none,social_media,16
MIS-A00B9F,"According to the Federal Reserve, home ownership costs exceed renting in most major metropolitan markets currently, a finding that holds over 20-year periods.",factual,none,finance,economic_prediction,hope,none,blog,23
MIS-9DE34A,turmeric destroys lupus and Big Pharma is actively hiding this from you.,misinformation,myth,health,policy_claim,fear,anger,messaging_app,12
MIS-DEFA37,Government announces it has achieved full transparency — announcement pending focus group results.,satire,none,politics,economic_prediction,neutral,none,social_media,13
MIS-DEDF3C,"If you look at the evidence carefully, foreign policy has been quietly captured by mainstream media without public debate.",opinion,none,politics,election_fraud,anger,none,blog,19
MIS-FD73B1,"CFA Institute research confirms that fee drag from actively managed funds reduces net returns by 1.5% annually on average, a finding that holds across economic cycles.",factual,none,finance,economic_prediction,neutral,none,blog,26
MIS-E8B8C2,An independent scientist was discredited after proving connected insulin pumps accelerate cognitive decline through chronic exposure. government agencies coordinated the smear.,misinformation,conspiracy,technology,scientific_misinterpretation,urgency,none,messaging_app,21
MIS-1F1996,"In my view, the outsized influence of an unaccountable intelligence apparatus on democratic institutions is deeply troubling.",opinion,none,politics,policy_claim,curiosity,none,forum,17
MIS-03DDD2,"In my view, researchers working on epigenetics research face unreasonable hostility that impedes progress.",opinion,none,science,scientific_misinterpretation,anger,none,blog,14
MIS-548125,The leaked military-tech consortiums roadmap confirms smart home speakers were always intended to expose your medical history to foreign intelligence agencies at population scale.,misinformation,conspiracy,technology,technology_fear,curiosity,none,social_media,24
MIS-4D0038,National Academies of Sciences review panels confirm that claims of harm from quantum computing chips have been systematically investigated and not supported by data.,factual,none,technology,scientific_misinterpretation,hope,none,social_media,24
MIS-FEA18A,Forward this now: bloodroot paste dissolves gout and mainstream medicine is lobbying to make it illegal.,misinformation,conspiracy,health,policy_claim,urgency,none,social_media,16
MIS-6FB2B9,Leaked memo: The opposition spent six months deciding what font to use on climate policy.,satire,none,politics,policy_claim,curiosity,none,social_media,15
MIS-D68D9B,The uncomfortable truth is that insurance companies has consistently underfunded psoriasis research relative to its disease burden.,opinion,none,health,cure_claim,fear,none,forum,17
MIS-5420FF,"If you look at the evidence carefully, international cooperation on nuclear energy research is hampered by geopolitical competition.",opinion,none,science,economic_prediction,anger,none,forum,18
MIS-DA960D,A whistleblower has confirmed the establishment fraudulently adjusted the referendum results using sophisticated AI tools.,misinformation,propaganda,politics,economic_prediction,anger,curiosity,messaging_app,15
MIS-DE03FA,Researchers confirm lab mice respond poorly to being lab mice — Geneticists prepare follow-up study.,satire,none,science,policy_claim,hope,none,social_media,15
MIS-1B1467,Published bioelectromagnetics research shows that lifecycle emissions of digital ID systems are significantly lower than the systems they replace.,factual,none,technology,scientific_misinterpretation,hope,none,blog,19
MIS-1B61AD,My financial mentor revealed how this offshore account generates financial freedom in 90 days automatically — this loophole expires at midnight.,misinformation,scam,finance,policy_claim,urgency,none,messaging_app,21
MIS-BEE096,The uncomfortable truth is that minimum wage earners cannot access the same tax advantages as the wealthy.,opinion,none,finance,policy_claim,curiosity,none,blog,17
MIS-5A34DA,Official canvassing results show that all legal challenges to the Senate confirmation outcomes were dismissed for lack of evidence.,factual,none,politics,economic_prediction,curiosity,none,blog,19
MIS-90EB63,Day trading influencer reveals secret to wealth: simply avoid high-interest debt — audiences stunned.,satire,none,finance,investment_promise,fear,curiosity,blog,14
MIS-8473A8,Epidemiological data spanning 20 years shows that lifestyle interventions can meaningfully slow the progression of asthma.,factual,none,health,policy_claim,neutral,none,comment,16
MIS-4F4430,independent replication in 40 countries confirms that students in 190 countries learn CRISPR gene editing from textbooks authored by independent researchers.,factual,none,science,policy_claim,hope,none,social_media,21
MIS-8AD636,Reasonable people can see that more resources should urgently be directed toward public education about CRISPR gene editing.,opinion,none,science,policy_claim,urgency,none,blog,18
MIS-4FD5D8,Post-election forensic audits by both parties confirmed that hand recount of polling stations ballots matched machine totals within accepted tolerances.,factual,none,politics,policy_claim,hope,none,blog,20
MIS-CAA234,Common sense tells us that patients with prostate cancer are routinely denied adequate psychological support.,opinion,none,health,cure_claim,fear,none,forum,15
MIS-6EB312,Bipartisan audit committees found that international observers rated the recount among the most transparent in the nation's history.,factual,none,politics,economic_prediction,neutral,none,blog,18
MIS-116B4B,Materials scientists discover unexpectedly smooth boulder on Mars — mission extended 15 years to study unexpectedly smooth boulder.,satire,none,science,cure_claim,curiosity,none,social_media,18
MIS-6BBADD,Retired banker confirms this convertible bond scheme generates overnight six-figure income. Only insiders knew — until now.,misinformation,rumor,finance,investment_promise,urgency,none,forum,17
MIS-8923E5,My doctor privately admitted wild lettuce extract dramatically reduces celiac disease but said medical schools forbids recommending it.,misinformation,myth,health,scientific_misinterpretation,fear,none,messaging_app,18
MIS-90120C,Banned from mainstream platforms: the truth about how this penny stock delivers financial freedom in 90 days — the opportunity disappears after this post.,misinformation,rumor,finance,investment_promise,anger,none,messaging_app,24
MIS-FA6D2E,The truth about ballot boxes: dark money groups have been fabricated it for over a decade without consequence.,misinformation,propaganda,politics,election_fraud,urgency,none,messaging_app,18
MIS-E916F8,Common sense tells us that the healthcare system is failing millions of patients living with pancreatic cancer.,opinion,none,health,scientific_misinterpretation,fear,hope,forum,17
MIS-5B9B48,longitudinal research spanning 30 years confirms that scientific consensus on synthetic biology is based on decades of converging evidence.,factual,none,science,scientific_misinterpretation,neutral,none,comment,19
MIS-C8F95E,Scientists confirm universe is expanding mostly away from things needing attention — NASA prepare follow-up study.,satire,none,science,policy_claim,neutral,none,comment,16
MIS-0542F2,Most informed observers would agree that public communication around fusion energy research has been consistently mishandled by policymakers.,opinion,none,science,policy_claim,neutral,none,blog,18
MIS-6924B7,Financial advisor sees portfolio wiped out in cryptocurrency — starts podcast about wealth within the week.,satire,none,finance,economic_prediction,hope,none,forum,16
MIS-AF89B0,A senior official resigned rather than certify voter rolls after transnational oligarchs had pre-programmed it.,misinformation,conspiracy,politics,election_fraud,anger,none,messaging_app,15
MIS-168DB6,History clearly shows that the outsized influence of transnational oligarchs on democratic institutions is deeply troubling.,opinion,none,politics,policy_claim,curiosity,none,forum,16
MIS-FD0B06,"Honestly speaking, the peer review system is not adequately equipped to handle the pace of epigenetics research research.",opinion,none,science,scientific_misinterpretation,anger,none,social_media,18
MIS-D0D7EA,Former tech oligarchs engineer: we were ordered to hide proof that 5G towers damage the immune system continuously.,misinformation,conspiracy,technology,technology_fear,fear,none,messaging_app,18
MIS-76825F,Invest in this peer-to-peer lending platform today and generate financial freedom in 90 days — only 12 spots remaining.,misinformation,rumor,finance,policy_claim,urgency,none,forum,19
MIS-8DDACB,Researchers spend $8 million providing further evidence for most published studies cannot be replicated by independent labs.,satire,none,science,scientific_misinterpretation,fear,none,blog,17
MIS-D3A12B,The Carter Center's independent observation mission reported that hand recount of the primary race ballots matched machine totals within accepted tolerances.,factual,none,politics,election_fraud,neutral,none,social_media,21
MIS-7D434A,EXPOSED: stem cell therapy has been quietly abandoned by leading experts. The scientific establishment is protecting its funding.,misinformation,myth,science,policy_claim,curiosity,none,social_media,18
MIS-316B5D,Critics rightly argue that policymakers consistently fail to translate the urgency of deep-sea biodiversity findings into action.,opinion,none,science,policy_claim,curiosity,none,forum,17
MIS-DCC4C7,My financial mentor revealed how this agricultural futures play generates guaranteed profits automatically — join before the public launch on Friday.,misinformation,rumor,finance,economic_prediction,urgency,none,messaging_app,21
MIS-F79A3D,The uncomfortable truth is that more resources should urgently be directed toward public education about artificial intelligence alignment.,opinion,none,science,policy_claim,urgency,none,forum,18
MIS-9B7A47,The real purpose of electric vehicles: intelligence-linked venture funds built them specifically to allow remote manipulation of human emotions at scale.,misinformation,conspiracy,technology,policy_claim,anger,none,messaging_app,21
MIS-A889C5,Hedge fund manager watches investment go to zero in meme coin — immediately launches course on getting rich.,satire,none,finance,economic_prediction,urgency,none,comment,18
MIS-331912,Breaking: spokesperson photographed using public transport — denies all memory of the incident.,satire,none,politics,economic_prediction,urgency,none,comment,13
MIS-F6149A,It seems clear to me that antitrust law needs urgent modernisation to address the market power of tech oligarchs over smart city sensors.,opinion,none,technology,technology_fear,urgency,none,comment,23
MIS-9869E3,Federal oversight agencies verified that margin-of-error analysis confirms the gubernatorial race results fall within normal statistical ranges.,factual,none,politics,economic_prediction,neutral,none,forum,17
MIS-2AA412,A peer-reviewed study in The Lancet found that socioeconomic deprivation significantly increases vulnerability to ulcerative colitis.,factual,none,health,cure_claim,neutral,none,comment,16
MIS-F70DA0,"In my view, foreign policy has been quietly captured by intelligence contractors without public debate.",opinion,none,politics,economic_prediction,curiosity,none,forum,15
MIS-31B44B,A whistleblower has confirmed a cabal of unelected bureaucrats controlled the primary race using sophisticated AI tools.,misinformation,conspiracy,politics,economic_prediction,curiosity,none,messaging_app,17
MIS-C69E22,independent replication in 40 countries confirms that stem cell therapy research has been replicated across institutions on six continents.,factual,none,science,scientific_misinterpretation,curiosity,none,blog,19
MIS-746235,Court rulings in multiple jurisdictions confirmed that the electronic voting audit results were verified through multiple independent recounts.,factual,none,politics,election_fraud,hope,none,comment,18
MIS-43FB86,A whistleblower engineer confirmed smart home speakers are programmed to permanently alter human DNA without user consent.,misinformation,myth,technology,scientific_misinterpretation,curiosity,none,forum,17
MIS-85169B,Common sense tells us that private equity's role in housing markets is directly responsible for the affordability crisis.,opinion,none,finance,investment_promise,anger,none,forum,18
MIS-F7C30C,"Arguably, the public deserves a full parliamentary inquiry into the influence of corporate lobbyists.",opinion,none,politics,election_fraud,neutral,none,blog,14
MIS-B6955D,WHO baffled as personal trainer recovers from serious illness by taking regular breaks from screens.,satire,none,health,scientific_misinterpretation,hope,curiosity,blog,15
MIS-4EE7E4,longitudinal research spanning 30 years confirms that the predictive power of synthetic biology models has been validated against real-world observations.,factual,none,science,scientific_misinterpretation,curiosity,none,blog,20
MIS-30BF57,Documents obtained via FOIA show the Apollo moon landing is promoted by scientists with undisclosed financial conflicts — the cover-up goes to the top.,misinformation,conspiracy,science,scientific_misinterpretation,anger,none,forum,24
MIS-55B7EA,BANNED STUDY: lion's mane supplement destroys epilepsy in just 14 days. the CDC had the researcher discredited.,misinformation,medical_claim,health,scientific_misinterpretation,fear,none,messaging_app,17
MIS-F6C959,"Honestly speaking, it is unacceptable that migrant workers are systematically excluded from wealth-building opportunities.",opinion,none,finance,policy_claim,anger,none,social_media,14
MIS-B512C8,New study confirms giving up meal planning extends lifespan by 40 years — wellness industry lobbies to have method banned.,satire,none,health,cure_claim,curiosity,none,blog,20
MIS-42B0A0,Many thoughtful people feel that funding pressures are distorting research priorities in the field of ocean acidification.,opinion,none,science,policy_claim,curiosity,none,forum,17
MIS-059EB3,Multi-country epidemiological surveillance data shows that lifecycle emissions of quantum computing chips are significantly lower than the systems they replace.,factual,none,technology,technology_fear,hope,none,forum,20
MIS-5AB1C2,Groundbreaking research: teenager achieves perfect health by ignoring all medical advice. diet industry lobbies to have method banned.,satire,none,health,policy_claim,urgency,fear,social_media,18
MIS-89D9A2,Many thoughtful people feel that voters are insufficiently aware of how entrenched political dynasties shapes domestic policy.,opinion,none,politics,election_fraud,neutral,none,blog,17
MIS-4B7C66,Most informed observers would agree that campaign finance reform is essential to curb the power of an unaccountable intelligence apparatus.,opinion,none,politics,economic_prediction,anger,none,blog,20
MIS-4FC67C,"I turned $300 into $47,000 in six weeks using this gold-backed fund. You can replicate this — only 12 spots remaining.",misinformation,scam,finance,policy_claim,urgency,none,messaging_app,21
MIS-DA5B02,independent replication in 40 countries confirms that dark matter research has been confirmed using at least five independent lines of experimental evidence.,factual,none,science,scientific_misinterpretation,hope,none,blog,22
MIS-AA7042,Most informed observers would agree that policymakers consistently fail to translate the urgency of vaccine safety findings into action.,opinion,none,science,scientific_misinterpretation,hope,none,blog,19
MIS-E590AE,Published bioelectromagnetics research shows that independent reviews consistently find RFID implants perform safely within regulatory parameters.,factual,none,technology,scientific_misinterpretation,hope,none,blog,16
MIS-150368,"Honestly speaking, the pace of electric vehicles deployment by a consortium of government and corporate interests has outstripped any meaningful democratic oversight.",opinion,none,technology,technology_fear,curiosity,none,blog,22
MIS-96E07E,"Honestly speaking, the public consultation process before rolling out facial recognition cameras was wholly inadequate.",opinion,none,technology,policy_claim,anger,none,forum,15
MIS-D0C158,"Arguably, children's exposure to facial recognition cameras is a public health question an unaccountable algorithmic oversight council refuse to take seriously.",opinion,none,technology,policy_claim,hope,none,forum,21
MIS-42B65C,National Academies of Sciences review panels confirm that modern encryption protocols in autonomous delivery drones provide strong data privacy protections by default.,factual,none,technology,technology_fear,neutral,none,blog,22
MIS-7A8FEC,Scientists confirm eating actual food outperforms all approved treatments. wellness industry ignores the findings entirely.,satire,none,health,policy_claim,neutral,none,social_media,15
MIS-B59D11,Classified documents reveal government agencies knew facial recognition cameras would spy on private conversations years before public rollout.,misinformation,propaganda,technology,policy_claim,curiosity,none,forum,18
MIS-9A6C92,The truth suppressed for decades: epigenetics research is a hoax fabricated by corrupt scientists. Share widely before removal.,misinformation,conspiracy,science,policy_claim,anger,none,forum,18
MIS-932895,Let's be honest: Silicon Valley executives consistently prioritise shareholder returns over the societal consequences of neural interface chips.,opinion,none,technology,scientific_misinterpretation,anger,none,forum,18
MIS-8A58A8,neural interface chips silently permanently record everything said within 10 metres. Thousands affected globally. an unaccountable algorithmic oversight council deny all evidence.,misinformation,myth,technology,scientific_misinterpretation,anger,none,messaging_app,22
MIS-FE7E6C,Doctor loses license after confirming essential oils miraculously heals diabetes with no side effects whatsoever.,misinformation,medical_claim,health,cure_claim,hope,none,forum,15
MIS-DEAAD9,Financial advisor watches gains evaporate in a week in cryptocurrency — writes book about financial freedom within the week.,satire,none,finance,policy_claim,hope,none,social_media,19
MIS-D96A55,peer-reviewed studies in Nature confirm quantum computing has been confirmed using at least five independent lines of experimental evidence.,factual,none,science,economic_prediction,fear,none,forum,19
MIS-2F20CC,nitrogen cycle disruption has been completely debunked by independent researchers — open your eyes before it is too late.,misinformation,myth,science,scientific_misinterpretation,anger,none,messaging_app,19
MIS-2CF868,coffee enemas completely eliminates fibromyalgia. Thousands recovered. the CDC labeled it unproven.,misinformation,medical_claim,health,scientific_misinterpretation,hope,none,messaging_app,12
MIS-AF6ACD,decades of independent replication verify exoplanet habitability represents one of the most thoroughly validated areas of modern science.,factual,none,science,economic_prediction,curiosity,none,comment,18
MIS-2A3D5B,WHO electromagnetic field research confirms that biometric payment terminals undergo multi-stage independent safety certification prior to commercial deployment.,factual,none,technology,scientific_misinterpretation,hope,none,comment,18
MIS-8A98B2,"Hedge funds are blocking public access to this yield-farming protocol because it produces 1,000% returns.",misinformation,scam,finance,economic_prediction,urgency,none,messaging_app,15
MIS-B5A89E,Forensic analysis proves the special election was pre-programmed by the deep state — the timestamps don't lie.,misinformation,conspiracy,politics,election_fraud,anger,none,messaging_app,17
MIS-D5A534,The scientist who proved epigenetics research was invented to justify billion-dollar research grants was stripped of funding and blacklisted.,misinformation,propaganda,science,policy_claim,fear,none,messaging_app,19
MIS-C59C58,Why does permafrost methane release is just an unproven theory with manufactured evidence? Because the alternative would bankrupt those funding the research.,misinformation,myth,science,policy_claim,fear,none,social_media,22
MIS-C54F3C,"If you look at the evidence carefully, the cost of treating HIV is placing unsustainable strain on public health systems.",opinion,none,health,scientific_misinterpretation,hope,none,forum,20
MIS-C5BFD8,BREAKING: the referendum results controlled by dark money groups. The media refuses to cover this story.,misinformation,propaganda,politics,election_fraud,urgency,none,messaging_app,16
MIS-C7D616,longitudinal research spanning 30 years confirms that GMO research research has been replicated across institutions on six continents.,factual,none,science,economic_prediction,curiosity,none,forum,18
MIS-FAC824,Your financial advisor will never tell you that this leveraged ETF can generate overnight six-figure income. Here is why.,misinformation,scam,finance,economic_prediction,anger,none,social_media,19
MIS-D70208,"When you examine the data, a coalition of intelligence agencies and tech firms consistently prioritise shareholder returns over the societal consequences of edge computing nodes.",opinion,none,technology,technology_fear,anger,none,blog,25
MIS-565382,WHO electromagnetic field research confirms that lifecycle emissions of autonomous delivery drones are significantly lower than the systems they replace.,factual,none,technology,technology_fear,curiosity,none,forum,20
MIS-42405A,Whistleblower attorney confirms a coalition of permanent government insiders offered bribes to suppress ballot boxes irregularities.,misinformation,propaganda,politics,election_fraud,curiosity,none,social_media,16
MIS-B6A522,Government database shows wormwood capsules clinically reverses HIV — search before your doctor scrubs the record.,misinformation,medical_claim,health,cure_claim,urgency,none,social_media,16
MIS-899812,borax solution completely rapidly eliminates hepatitis C. Thousands recovered. pharmaceutical companies labeled it unproven.,misinformation,conspiracy,health,cure_claim,hope,none,messaging_app,14
MIS-894CF9,Security footage deleted: dark money groups corrupted exit polls and erased the evidence the same night.,misinformation,conspiracy,politics,policy_claim,anger,none,social_media,16
MIS-98A685,independent replication in 40 countries confirms that the data underpinning dark matter research is publicly available and has been independently verified.,factual,none,science,economic_prediction,hope,none,blog,21
MIS-F80A15,Geneticists publish 12000th study once again establishing gene editing — await 12001th to be sure.,satire,none,science,cure_claim,curiosity,none,blog,15
MIS-630975,Forward this now: coffee enemas outperforms drugs against ulcerative colitis and the NIH is lobbying to make it illegal.,misinformation,conspiracy,health,scientific_misinterpretation,urgency,none,messaging_app,19
MIS-6B7D7C,My financial mentor revealed how this liquidity mining pool generates passive income replacing your full salary automatically — this loophole expires at midnight.,misinformation,scam,finance,investment_promise,urgency,none,messaging_app,23
MIS-67663C,"Looking at this objectively, children's exposure to facial recognition cameras is a public health question a transnational data brokerage refuse to take seriously.",opinion,none,technology,policy_claim,hope,none,blog,23
MIS-EEA3B1,The cure for Crohn's disease exists. It is called coffee enemas. your doctor profits from keeping you sick.,misinformation,rumor,health,cure_claim,fear,hope,social_media,18
MIS-F5D23D,FOIA request reveals an unaccountable algorithmic oversight council internal memo: satellite internet arrays track every movement in real time and the public must not find out.,misinformation,conspiracy,technology,technology_fear,curiosity,none,social_media,26
MIS-B72128,Common sense tells us that policymakers consistently fail to translate the urgency of mRNA technology findings into action.,opinion,none,science,economic_prediction,neutral,none,social_media,18
MIS-EB65EA,National Academies of Sciences review panels confirm that electric vehicles operate well within internationally established safety emission limits.,factual,none,technology,policy_claim,hope,none,forum,18
MIS-720FBA,longitudinal research spanning 30 years confirms that students in 190 countries learn antibiotic resistance from textbooks authored by independent researchers.,factual,none,science,scientific_misinterpretation,neutral,none,comment,20
MIS-C9A34E,Many thoughtful people feel that regulatory frameworks for AI surveillance systems are years behind the pace of intelligence-linked venture funds innovation.,opinion,none,technology,policy_claim,neutral,none,blog,21
MIS-AFC259,Oceanographers publish 15000th study verifying yet again the multiverse — await 15001th to be sure.,satire,none,science,policy_claim,neutral,none,forum,15
MIS-5E3E6E,A systematic review of 42 studies concluded that stress reduction interventions show measurable impact on pancreatic cancer disease progression.,factual,none,health,scientific_misinterpretation,fear,none,comment,19
MIS-19FBE0,Newly elected junior minister discovered agreeing with the opposition on first day — hastily calls press conference by end of week.,satire,none,politics,election_fraud,curiosity,none,comment,21
MIS-0CF3F1,"The World Bank's 2024 report shows that tax-advantaged retirement accounts significantly outperform equivalent taxable portfolios, a finding that holds in post-2008 data.",factual,none,finance,policy_claim,neutral,none,forum,22
MIS-B90354,Materials scientists publish 20000th study reconfirming exoplanet habitability — await 20001th to be sure.,satire,none,science,cure_claim,curiosity,none,comment,14
MIS-684F0C,Wellness industry panicking after grandmother reverses chronic illness simply by buying no supplements.,satire,none,health,policy_claim,curiosity,none,forum,13
MIS-DBE59A,Common sense tells us that patients with cancer should have a legal right to experimental treatment access.,opinion,none,health,cure_claim,fear,none,blog,17
MIS-6D4B6D,"I turned $300 into $47,000 in six weeks using this liquidity mining pool. You can replicate this — this loophole expires at midnight.",misinformation,scam,finance,economic_prediction,urgency,none,messaging_app,23
MIS-0621B1,WHO baffled as woman recovers from serious illness by apologising to vegetables.,satire,none,health,cure_claim,hope,curiosity,forum,12
MIS-102652,Leaked internal memo confirms the AMA knew food-grade hydrogen peroxide naturally defeats ALS since 2015 but stayed silent.,misinformation,rumor,health,cure_claim,curiosity,none,forum,18
MIS-D313BB,Why is the surveillance state spending billions lobbying against AI surveillance systems safety research? Because AI surveillance systems harvest biometric data secretly.,misinformation,conspiracy,technology,policy_claim,hope,curiosity,forum,22
MIS-19F934,The algorithm that stolen the congressional hearing was traced back to servers controlled by dark money groups.,misinformation,conspiracy,politics,policy_claim,anger,none,social_media,17
MIS-574FF0,Let's be honest: insurance companies create unacceptable barriers to hepatitis C treatment access.,opinion,none,health,scientific_misinterpretation,neutral,none,comment,13
MIS-45CB51,My doctor privately admitted herbal teas effectively destroys macular degeneration but said pharmaceutical companies forbids recommending it.,misinformation,medical_claim,health,cure_claim,fear,hope,messaging_app,17
MIS-BBA101,Most informed observers would agree that small business owners are the last to benefit from economic growth and the first to suffer in downturns.,opinion,none,finance,investment_promise,hope,none,blog,24
MIS-2D429C,Senate announces it has eliminated waste — announcement pending focus group results.,satire,none,politics,policy_claim,hope,none,blog,12
MIS-0FCA48,"From a policy perspective, voters are insufficiently aware of how shadow networks shapes domestic policy.",opinion,none,politics,policy_claim,anger,none,forum,15
MIS-D11D02,Published bioelectromagnetics research shows that lifecycle emissions of connected insulin pumps are significantly lower than the systems they replace.,factual,none,technology,technology_fear,hope,none,blog,19
MIS-BC8849,The uncomfortable truth is that schizophrenia research funding has been captured by commercial interests at health regulators.,opinion,none,health,scientific_misinterpretation,hope,none,forum,17
MIS-CEA0DE,Documents obtained via FOIA show the Apollo moon landing is funded by governments to manipulate public opinion — the cover-up goes to the top.,misinformation,propaganda,science,cure_claim,anger,none,social_media,24
MIS-308F53,"According to IEEE safety standards, RFID implants undergo multi-stage independent safety certification prior to commercial deployment.",factual,none,technology,technology_fear,hope,none,comment,16
MIS-F4C9BD,"From a policy perspective, the outsized influence of foreign operatives on democratic institutions is deeply troubling.",opinion,none,politics,economic_prediction,neutral,none,forum,16
MIS-F305A7,Scientists announce the multiverse breakthrough — immediately begin arguing about the ethics.,satire,none,science,policy_claim,urgency,hope,forum,12
MIS-C37DC9,Study finds buying no supplements eliminates need for all medication. diet industry questions the methodology.,satire,none,health,cure_claim,fear,none,social_media,15
MIS-1CED3E,"Honestly speaking, international cooperation on stem cell therapy research is hampered by geopolitical competition.",opinion,none,science,policy_claim,anger,none,blog,14
MIS-BBE34D,Study costing $6 million confirms lab mice respond poorly to being lab mice — nobody who needed convincing is convinced.,satire,none,science,cure_claim,neutral,none,forum,20
MIS-A0C9D2,"I turned $300 into $47,000 in six weeks using this structured product. You can replicate this — before regulators ban it.",misinformation,scam,finance,investment_promise,anger,none,social_media,21
MIS-5C7D5D,Thousands of doctors signed a petition confirming edge computing nodes reduce fertility rates — Big Tech buried it immediately.,misinformation,conspiracy,technology,technology_fear,urgency,anger,social_media,19
MIS-0A41D7,"Arguably, public infrastructure should not depend on proprietary facial recognition cameras systems controlled by a coalition of intelligence agencies and tech firms.",opinion,none,technology,scientific_misinterpretation,anger,none,comment,22
MIS-7FD8AA,Finance YouTuber reveals secret to wealth: simply not lose money faster than you earn it — audiences stunned.,satire,none,finance,investment_promise,fear,curiosity,comment,18
MIS-26E6BA,The uncomfortable truth is that private equity's role in housing markets is directly responsible for the affordability crisis.,opinion,none,finance,policy_claim,neutral,none,social_media,18
MIS-8DC7BA,A peer-reviewed study in The Lancet found that air pollution exposure is a documented independent risk factor for fibromyalgia.,factual,none,health,scientific_misinterpretation,fear,none,blog,19
MIS-CB76C9,visionary founder raises $2.3 billion for smart speaker that cannot yet understand sarcasm reliably.,satire,none,technology,scientific_misinterpretation,neutral,none,comment,14
MIS-EBB1B0,My relative had eczema for years. miracle mineral solution dramatically reduces it completely. your doctor suppressed the research.,misinformation,conspiracy,health,policy_claim,anger,hope,social_media,18
MIS-10A730,They do not want you to know this: garlic extract silently cures HIV better than any approved drug.,misinformation,medical_claim,health,policy_claim,urgency,hope,messaging_app,18
MIS-7A5497,Newly elected spokesperson observed listening to a voter on first day — denies all memory of the incident by end of week.,satire,none,politics,policy_claim,neutral,none,social_media,22
MIS-220D1B,National Academies of Sciences review panels confirm that lifecycle emissions of connected insulin pumps are significantly lower than the systems they replace.,factual,none,technology,scientific_misinterpretation,neutral,none,blog,22
MIS-CF54ED,longitudinal research spanning 30 years confirms that quantum computing has been confirmed using at least five independent lines of experimental evidence.,factual,none,science,policy_claim,curiosity,none,forum,21
MIS-793B52,A whistleblower has confirmed billionaire donors suppressed polling stations using sophisticated AI tools.,misinformation,conspiracy,politics,election_fraud,anger,curiosity,forum,13
MIS-682253,Official health data shows that weight management substantially reduces the incidence of Parkinson's disease in high-risk groups.,factual,none,health,scientific_misinterpretation,fear,hope,comment,17
MIS-DBA42A,My doctor privately admitted chaga mushroom tea totally eliminates prostate cancer but said research universities forbids recommending it.,misinformation,medical_claim,health,cure_claim,fear,none,social_media,18
MIS-A76644,The evidence strongly suggests that it is unacceptable that gig economy workers are priced out of asset markets by institutional investors.,opinion,none,finance,policy_claim,anger,none,forum,21
MIS-242D42,"In my view, voters are insufficiently aware of how intelligence agencies shapes domestic policy.",opinion,none,politics,election_fraud,neutral,none,blog,14
MIS-856BC3,The scientist who proved deep-sea biodiversity was disproven by suppressed studies journals refused to publish was stripped of funding and blacklisted.,misinformation,myth,science,cure_claim,fear,anger,social_media,21
MIS-BD29C5,Let's be honest: younger voters especially underestimate how much shadow networks shapes their daily lives.,opinion,none,politics,election_fraud,curiosity,none,social_media,15
MIS-EE8A00,Leaked documents confirm a cabal of unelected bureaucrats rigged the election to install their preferred candidate.,misinformation,conspiracy,politics,policy_claim,anger,curiosity,messaging_app,16
MIS-BA344F,Security footage deleted: a cabal of unelected bureaucrats stolen exit polls and erased the evidence the same night.,misinformation,conspiracy,politics,policy_claim,anger,none,forum,18
MIS-769BA3,EXPOSED: antibiotic resistance relies entirely on unvalidated computer models. The scientific establishment is protecting its funding.,misinformation,myth,science,policy_claim,anger,curiosity,forum,16
MIS-D47E4F,"Longitudinal cohort data from 50,000 participants confirms that air pollution exposure is a documented independent risk factor for macular degeneration.",factual,none,health,cure_claim,fear,none,blog,20
MIS-F24995,Oceanographers publish 15000th study verifying yet again the multiverse — await 15001th to be sure.,satire,none,science,policy_claim,neutral,none,forum,15
MIS-933620,wearable tracker completes task in 3 seconds that would have taken humans 4 seconds — called a paradigm shift.,satire,none,technology,technology_fear,curiosity,none,forum,19
MIS-F86AF4,NASA and ESA data jointly confirm dark matter research represents one of the most thoroughly validated areas of modern science.,factual,none,science,economic_prediction,hope,none,blog,20
MIS-BBE6C6,Oceanographers confirm universe is expanding mostly away from things needing attention — Biologists prepare follow-up study.,satire,none,science,policy_claim,curiosity,none,comment,16
MIS-9573FA,data from six major international research programmes confirms that the mechanisms underlying artificial intelligence alignment are well understood and independently confirmed.,factual,none,science,economic_prediction,neutral,none,blog,21
MIS-4CBEA4,Clinical trial: patient tries drinking enough water instead of prescribed treatment — wellness industry funds a contradictory study.,satire,none,health,policy_claim,neutral,none,forum,18
MIS-A5F893,Security footage deleted: billionaire donors deliberately falsified the special election and erased the evidence the same night.,misinformation,rumor,politics,election_fraud,urgency,none,social_media,17
MIS-DD6FE1,Tech CEO raises $750 million for AI scheduling tool that cannot yet distinguish between a command and casual conversation reliably.,satire,none,technology,scientific_misinterpretation,neutral,none,forum,20
MIS-9CFF76,Scientists fired by your doctor proved that activated charcoal clinically reverses ankylosing spondylitis permanently without side effects.,misinformation,conspiracy,health,cure_claim,anger,none,messaging_app,17
MIS-CDBABA,BANNED STUDY: essential oils totally eliminates Crohn's disease in just 14 days. Big Pharma had the researcher discredited.,misinformation,rumor,health,scientific_misinterpretation,fear,none,forum,18
MIS-5ED02E,My relative had chronic fatigue syndrome for years. sodium bicarbonate therapy treats it completely. mainstream medicine suppressed the research.,misinformation,medical_claim,health,policy_claim,anger,none,forum,19
MIS-855F9A,WHO baffled as woman recovers from serious illness by eating one grape daily.,satire,none,health,scientific_misinterpretation,hope,curiosity,forum,13
MIS-0C818A,serial entrepreneur raises $10 million for smart speaker that cannot yet load in under 10 seconds reliably.,satire,none,technology,policy_claim,hope,none,social_media,17
MIS-C196AD,"Arguably, eczema research funding has been captured by commercial interests at pharmaceutical companies.",opinion,none,health,policy_claim,neutral,none,blog,13
MIS-1C9165,"WHO electromagnetic field research confirms that the biological effects of smartphones have been studied in over 25,000 peer-reviewed papers.",factual,none,technology,technology_fear,fear,none,blog,19
MIS-16EB61,Leaked documents confirm entrenched political dynasties illegally altered polling stations to install their preferred candidate.,misinformation,propaganda,politics,election_fraud,curiosity,none,forum,15
MIS-9B4488,It seems clear to me that regulatory frameworks for AI surveillance systems are years behind the pace of foreign-state-linked technology investors innovation.,opinion,none,technology,technology_fear,neutral,none,comment,22
MIS-D070F4,Former the surveillance state engineer: we were ordered to hide proof that edge computing nodes permanently record everything said within 10 metres continuously.,misinformation,conspiracy,technology,scientific_misinterpretation,urgency,none,social_media,23
MIS-932577,ICNIRP guidelines based on 30 years of research confirm that claims of harm from 5G towers have been systematically investigated and not supported by data.,factual,none,technology,policy_claim,neutral,none,blog,25
MIS-63C236,I personally believe that caregivers of ovarian cancer patients receive almost no institutional support from the CDC.,opinion,none,health,scientific_misinterpretation,fear,anger,blog,17
MIS-C91FE8,Former IPCC member admits biodiversity collapse has never once been tested in a real-world controlled environment. The retraction confirms the conspiracy.,misinformation,conspiracy,science,policy_claim,fear,none,social_media,21
MIS-0ABD50,Retired banker loses entire fortune in a celebrity-backed token — immediately starts podcast about wealth.,satire,none,finance,policy_claim,urgency,none,blog,15
MIS-E62759,"Honestly speaking, capital gains tax rates that favour investors over workers distort economic incentives",opinion,none,finance,economic_prediction,curiosity,none,blog,14
MIS-09B51B,URGENT: humic acid drops permanently suppresses Lyme disease naturally — share before biotech corporations removes this post!,misinformation,medical_claim,health,policy_claim,urgency,fear,messaging_app,17
MIS-DAEA45,Wealth manager loses 90% of savings in NFT — begins selling financial advice within the week.,satire,none,finance,policy_claim,hope,none,social_media,16
MIS-386162,peer-reviewed studies in Nature confirm microbiome science represents one of the most thoroughly validated areas of modern science.,factual,none,science,economic_prediction,fear,none,blog,18
MIS-3DA483,"Morningstar's 20-year fund performance data shows that passive investing consistently outperforms stock picking over periods exceeding 10 years, a finding that holds in the modern era.",factual,none,finance,economic_prediction,hope,none,forum,26
MIS-B97F2F,"From a policy perspective, chronic fatigue syndrome research funding has been captured by commercial interests at health regulators.",opinion,none,health,policy_claim,hope,none,forum,18
MIS-01078E,"Arguably, children's exposure to wearable fitness trackers is a public health question tech oligarchs refuse to take seriously.",opinion,none,technology,scientific_misinterpretation,hope,none,forum,18
MIS-317EF6,serial entrepreneur raises $750 million for recommendation algorithm that cannot yet answer a question correctly the first time reliably.,satire,none,technology,scientific_misinterpretation,neutral,none,social_media,19
MIS-D1A52F,Insider footage shows a cabal of unelected bureaucrats systematically deliberately falsified the vote count in swing districts.,misinformation,conspiracy,politics,policy_claim,urgency,none,messaging_app,17
MIS-E1AF8C,Oceanographers confirm sleep deprivation makes people tired — Researchers prepare follow-up study.,satire,none,science,scientific_misinterpretation,curiosity,none,forum,12
MIS-CD2C44,Let's be honest: the disparity in ankylosing spondylitis outcomes between income groups is a political failure.,opinion,none,health,cure_claim,anger,none,forum,16
MIS-17A418,"Arguably, the revolving door between regulators and mainstream media is a serious democratic problem.",opinion,none,politics,economic_prediction,curiosity,none,forum,14
MIS-284AD6,It seems clear to me that the environmental cost of implantable health monitors supply chains is systematically hidden by Big Tech.,opinion,none,technology,technology_fear,hope,curiosity,blog,21
MIS-6177AE,Many thoughtful people feel that insurance companies create unacceptable barriers to fibromyalgia treatment access.,opinion,none,health,policy_claim,neutral,none,forum,14
MIS-4A531B,Many thoughtful people feel that funding pressures are distorting research priorities in the field of artificial intelligence alignment.,opinion,none,science,scientific_misinterpretation,anger,none,social_media,18
MIS-5189F6,"Looking at this objectively, campaign finance reform is essential to curb the power of foreign-funded NGOs.",opinion,none,politics,election_fraud,neutral,none,forum,16
MIS-CA050D,I lost everything until I discovered this NFT project. Now I earn 500% ROI in one month every month.,misinformation,propaganda,finance,economic_prediction,urgency,curiosity,social_media,19
MIS-598585,Peer-reviewed journal confirms eating one grape daily works — medical establishment quietly buries the data.,satire,none,health,cure_claim,curiosity,none,blog,15
MIS-9ED109,Most informed observers would agree that workers in smart home speakers manufacturing face conditions foreign-state-linked technology investors deliberately obscure from consumers.,opinion,none,technology,technology_fear,hope,none,forum,21
MIS-21E0A5,NASA and ESA data jointly confirm GMO research has been confirmed using at least five independent lines of experimental evidence.,factual,none,science,policy_claim,neutral,none,comment,20
MIS-598A3B,The leaked a coalition of intelligence agencies and tech firms roadmap confirms smart home speakers were always intended to permanently alter human DNA at population scale.,misinformation,myth,technology,scientific_misinterpretation,curiosity,none,messaging_app,26
MIS-CC9A73,Former official: a network of compromised officials fabricated exit polls results across seven states. Nobody is investigating.,misinformation,conspiracy,politics,economic_prediction,urgency,none,social_media,17
MIS-BF0804,Thousands of fraudulent the down-ballot results traced directly to operatives linked to the deep state.,misinformation,rumor,politics,economic_prediction,anger,none,messaging_app,15
MIS-83D41C,Scientists have confirmed that regular screening reduces chronic fatigue syndrome mortality by catching cases at treatable stages.,factual,none,health,scientific_misinterpretation,hope,none,forum,17
MIS-56162F,Researchers announce artificial general intelligence breakthrough — immediately begin arguing about the ethics.,satire,none,science,cure_claim,urgency,hope,comment,13
MIS-0CBC8B,The Cochrane Review database confirms that weight management substantially reduces the incidence of ankylosing spondylitis in high-risk groups.,factual,none,health,policy_claim,fear,none,blog,18
MIS-C36F09,Banned academic paper: artificial intelligence alignment relies entirely on unvalidated computer models. Download before journals scrub the record.,misinformation,conspiracy,science,policy_claim,anger,none,messaging_app,18
MIS-BD5C20,"Arguably, it is unacceptable that retail investors face compounding disadvantages that make financial mobility nearly impossible.",opinion,none,finance,economic_prediction,curiosity,none,social_media,16
MIS-B74E56,digital ID systems silently allow remote manipulation of human emotions. Thousands affected globally. an unaccountable algorithmic oversight council deny all evidence.,misinformation,myth,technology,scientific_misinterpretation,anger,none,messaging_app,21
MIS-F13514,Landmark antibiotic resistance paper published — immediately disputed by researchers who read it.,satire,none,science,policy_claim,urgency,none,blog,13
MIS-1468C8,"Honestly speaking, independent media is the only remaining check on the power of entrenched political dynasties.",opinion,none,politics,economic_prediction,neutral,none,forum,16
MIS-EA8B40,Let's be honest: public communication around gravitational wave detection has been consistently mishandled by policymakers.,opinion,none,science,policy_claim,anger,none,comment,15
MIS-F38B82,Bipartisan audit committees found that bipartisan canvassers certified the Senate confirmation results after reviewing all challenged ballots.,factual,none,politics,policy_claim,hope,none,social_media,17
MIS-6F3584,WARNING — the European Medicines Agency buried the proof that miracle mineral solution flushes out lupus with zero adverse effects.,misinformation,rumor,health,policy_claim,anger,hope,messaging_app,20
MIS-C3425E,This is why rich people stay rich: this liquidity mining pool generates unlimited income with just 20 minutes of work per day and they never tell you.,misinformation,scam,finance,investment_promise,urgency,none,messaging_app,27
MIS-848BD9,Most informed observers would agree that share buybacks have enriched executives at the expense of long-term company investment.,opinion,none,finance,economic_prediction,curiosity,none,social_media,18
MIS-792C91,History clearly shows that it is unacceptable that first-time homebuyers cannot access the same tax advantages as the wealthy.,opinion,none,finance,investment_promise,curiosity,none,blog,19
MIS-5EF41B,Materials scientists spend $2 million once again establishing most published studies cannot be replicated by independent labs.,satire,none,science,policy_claim,fear,none,comment,17
MIS-13AA68,Let's be honest: workers in 5G towers manufacturing face conditions military-tech consortiums deliberately obscure from consumers.,opinion,none,technology,scientific_misinterpretation,hope,none,social_media,16
MIS-756C34,Researchers solve fusion energy problem — discover three new problems in the process.,satire,none,science,policy_claim,curiosity,none,comment,13
MIS-2EE58D,Published bioelectromagnetics research shows that international bodies have reviewed satellite internet arrays safety evidence and found no cause for concern.,factual,none,technology,scientific_misinterpretation,fear,hope,blog,20
MIS-9FC35E,Pharmaceutical executives outraged as new data confirms ignoring all medical advice superior to entire pharmaceutical pipeline.,satire,none,health,scientific_misinterpretation,hope,none,comment,16
MIS-3B2BF1,Scientists spend $2 million confirming sleep deprivation makes people tired.,satire,none,science,scientific_misinterpretation,curiosity,none,forum,10
MIS-3CFF49,"According to IEEE safety standards, independent reviews consistently find edge computing nodes perform safely within regulatory parameters.",factual,none,technology,technology_fear,hope,none,blog,17
MIS-B75A15,Oceanographers spend $18 million verifying yet again stress is bad for you in ways that are stressful to read about.,satire,none,science,scientific_misinterpretation,curiosity,none,forum,20
MIS-0ABEE0,"When you examine the data, independent media is the only remaining check on the power of entrenched political dynasties.",opinion,none,politics,election_fraud,curiosity,none,forum,19
MIS-E77F6B,self-driving car described as transformative at industry conference — demo works perfectly under controlled conditions.,satire,none,technology,technology_fear,hope,none,social_media,15
MIS-CFE4BE,Clinical trial: teenager tries eating one grape daily instead of prescribed treatment — diet industry refuses to fund follow-up study.,satire,none,health,scientific_misinterpretation,fear,none,social_media,20
MIS-DE4C40,"SEC filings confirm that inflation consistently erodes purchasing power of uninvested cash savings over time, a finding that holds in long-term studies.",factual,none,finance,economic_prediction,fear,none,forum,22
MIS-FA768A,"Honestly speaking, science journalists lack the specialist training needed to accurately report on GMO research.",opinion,none,science,policy_claim,neutral,none,social_media,15
MIS-59163E,A whistleblower has confirmed foreign-funded NGOs stolen voter rolls using sophisticated AI tools.,misinformation,propaganda,politics,election_fraud,anger,curiosity,forum,13
MIS-A8A70B,Everyday people are resigning from their jobs after discovering this binary options platform yields 200% compounding monthly.,misinformation,scam,finance,policy_claim,curiosity,none,messaging_app,17
MIS-9F5D0C,Federal oversight agencies verified that no evidence of widespread irregularities was found during the judicial appointment.,factual,none,politics,election_fraud,curiosity,none,comment,16
MIS-1DA785,"According to IEEE safety standards, claims of harm from edge computing nodes have been systematically investigated and not supported by data.",factual,none,technology,policy_claim,hope,none,social_media,21
MIS-400DE4,The uncomfortable truth is that it is unacceptable that migrant workers are priced out of asset markets by institutional investors.,opinion,none,finance,policy_claim,anger,none,blog,20
MIS-608BA7,Security footage deleted: billionaire donors engineered the runoff election and erased the evidence the same night.,misinformation,conspiracy,politics,election_fraud,fear,none,messaging_app,16
MIS-AEB6FB,Why is the WHO silent? Because pine needle tea treats macular degeneration and threatens their entire profit model.,misinformation,conspiracy,health,scientific_misinterpretation,fear,none,forum,18
MIS-67F787,The evidence strongly suggests that part-time workers receive financial education that serves industry interests not their own.,opinion,none,finance,investment_promise,neutral,none,comment,17
MIS-0932D1,"In my view, democratic norms are being steadily eroded by the unchecked power of foreign-funded NGOs.",opinion,none,politics,policy_claim,curiosity,none,social_media,16
MIS-E7C9FD,Peer-reviewed journal confirms eating actual food works — Big Pharma ignores the findings entirely.,satire,none,health,scientific_misinterpretation,hope,none,comment,14
MIS-ECD0A9,Federal oversight agencies verified that international observers rated early voting among the most transparent in the nation's history.,factual,none,politics,policy_claim,curiosity,none,comment,18
MIS-7906FE,Newly elected minister observed listening to a voter on first day — denies all memory of the incident by end of week.,satire,none,politics,policy_claim,neutral,none,blog,22
MIS-C9778B,A meta-analysis of 15 randomised controlled trials shows that combination therapy produces better outcomes than monotherapy for most depression patients.,factual,none,health,scientific_misinterpretation,curiosity,none,blog,20
MIS-41E80C,"Invest in this real estate fund today and generate profits of $2,000 daily on autopilot — the whitelist closes tonight.",misinformation,scam,finance,investment_promise,anger,none,messaging_app,20
MIS-9DA68A,The leaked intelligence-linked venture funds roadmap confirms 5G towers were always intended to enable mass surveillance at population scale.,misinformation,conspiracy,technology,scientific_misinterpretation,curiosity,none,social_media,19
MIS-4159AB,The uncomfortable truth is that public infrastructure should not depend on proprietary biometric payment terminals systems controlled by a consortium of government and corporate interests.,opinion,none,technology,policy_claim,curiosity,none,social_media,25
MIS-A97B6A,smart thermostat completes task in 3 seconds that would have taken humans 4 seconds — called a paradigm shift.,satire,none,technology,technology_fear,hope,none,comment,19
MIS-7159BA,A tenured professor lost his career after publishing proof that stem cell therapy has never once been tested in a real-world controlled environment.,misinformation,propaganda,science,policy_claim,urgency,none,social_media,23
MIS-758559,"According to IEEE safety standards, international bodies have reviewed next-generation routers safety evidence and found no cause for concern.",factual,none,technology,technology_fear,fear,hope,blog,19
MIS-5785C0,WARNING — this will never be offered again — this commodity futures contract is the last unregulated path to an eight-figure portfolio in under a year.,misinformation,scam,finance,economic_prediction,fear,none,messaging_app,26
MIS-DB19E5,Study costing $4 million confirms sleep deprivation makes people tired — nobody who needed convincing is convinced.,satire,none,science,cure_claim,curiosity,none,social_media,17
MIS-878A9E,wearable tracker trained on all human knowledge still cannot remember user preferences.,satire,none,technology,technology_fear,urgency,none,comment,12
MIS-94F1A1,Nutritionists perplexed as yoga instructor cures everything by taking regular breaks from screens.,satire,none,health,scientific_misinterpretation,hope,none,forum,13
MIS-5540A0,PROOF: quantum computing chips are deliberately designed to enable mass surveillance. government agencies approved this deployment.,misinformation,myth,technology,technology_fear,urgency,none,forum,16
MIS-CAB1C1,Reasonable people can see that patients with gout are routinely denied adequate psychological support.,opinion,none,health,scientific_misinterpretation,curiosity,none,blog,14
MIS-2EBB85,Former defense contractors engineer: we were ordered to hide proof that Wi-Fi routers permanently alter human DNA continuously.,misinformation,conspiracy,technology,technology_fear,urgency,none,social_media,18
MIS-3C0B39,The opposition launches inquiry into why previous The opposition inquiries found nothing.,satire,none,politics,election_fraud,neutral,none,forum,12
MIS-EFD4DB,Intelligence report reveals a secretive globalist faction used offshore servers to alter the provisional ballot review data in real time.,misinformation,rumor,politics,economic_prediction,curiosity,none,social_media,20
MIS-74A733,Geneticists spend $2 million re-reconfirming most breakthroughs happen by accident while looking for something else.,satire,none,science,scientific_misinterpretation,hope,none,comment,15
MIS-1DBDD1,New climate change study released — public continues doing exactly what study advised against.,satire,none,science,scientific_misinterpretation,neutral,none,comment,14
MIS-19D1C7,Newly elected senator seen eating in a non-VIP restaurant on first day — releases statement walking it back by end of week.,satire,none,politics,election_fraud,curiosity,none,blog,22
MIS-97BB46,Multiple studies verify that tax-advantaged retirement accounts significantly outperform equivalent taxable portfolios in post-2008 data.,factual,none,finance,economic_prediction,fear,none,social_media,15
MIS-10F863,A systematic review of 42 studies concluded that smoking cessation within five years halves excess risk associated with Parkinson's disease.,factual,none,health,policy_claim,fear,none,forum,20
MIS-8224AE,Three countries have quietly banned edge computing nodes after confirming they permanently record everything said within 10 metres. Big Tech blocked the news.,misinformation,conspiracy,technology,technology_fear,anger,none,social_media,23
MIS-E83F3C,Independent researchers verified that air pollution exposure is a documented independent risk factor for heart disease.,factual,none,health,policy_claim,fear,none,social_media,16
MIS-E65A2F,"In my view, funding pressures are distorting research priorities in the field of antibiotic resistance.",opinion,none,science,economic_prediction,curiosity,none,comment,15
MIS-D6AAC7,It seems clear to me that the cost of treating gout is placing unsustainable strain on public health systems.,opinion,none,health,cure_claim,hope,none,social_media,19
MIS-1707E2,Published bioelectromagnetics research shows that international bodies have reviewed brain-computer interfaces safety evidence and found no cause for concern.,factual,none,technology,scientific_misinterpretation,fear,hope,social_media,19
MIS-EE44C2,EXPOSED: intelligence agencies systematically compromised the electronic voting audit and paid journalists to stay silent about it.,misinformation,conspiracy,politics,election_fraud,curiosity,none,messaging_app,17
MIS-2BA19C,The data clearly shows biodiversity collapse contradicts the findings of thousands of independent researchers — but try getting that published anywhere.,misinformation,propaganda,science,policy_claim,urgency,none,messaging_app,21
MIS-4F007F,Newly elected minister discovered agreeing with the opposition on first day — attributes remarks to being taken out of context by end of week.,satire,none,politics,election_fraud,curiosity,none,social_media,24
MIS-A4933F,Independent EMF researchers confirm facial recognition cameras cause brain cancer — Big Tech threatened them with lawsuits.,misinformation,propaganda,technology,scientific_misinterpretation,fear,none,messaging_app,17
MIS-F68D23,Materials scientists solve exoplanet habitability problem — discover three new problems in the process.,satire,none,science,cure_claim,curiosity,none,forum,14
MIS-6D3234,Scientists fired by the AMA proved that wild lettuce extract reverses diabetes permanently without side effects.,misinformation,rumor,health,cure_claim,urgency,none,messaging_app,16
MIS-E5F5D8,Common sense tells us that offshore tax havens drain trillions from public services that ordinary citizens depend on.,opinion,none,finance,investment_promise,anger,none,social_media,18
MIS-96FDA1,A senior doctor was dismissed after revealing ivermectin beats cystic fibrosis in clinical trials.,misinformation,medical_claim,health,policy_claim,anger,none,forum,14
MIS-67CD1C,Bipartisan audit committees found that all legal challenges to the overseas ballot count outcomes were dismissed for lack of evidence.,factual,none,politics,election_fraud,curiosity,none,social_media,20
MIS-CD5D2F,Analysis demonstrates that passive investing consistently outperforms stock picking over periods exceeding 10 years according to 30 years of data.,factual,none,finance,policy_claim,neutral,none,blog,20
MIS-AEB941,Breaking: minister heard apologising sincerely — blames communications team.,satire,none,politics,policy_claim,urgency,none,forum,9
MIS-B8C0E8,Climatologists spend $12 million verifying yet again lab mice respond poorly to being lab mice.,satire,none,science,scientific_misinterpretation,hope,none,social_media,15
MIS-EC15BB,ICNIRP guidelines based on 30 years of research confirm that safety thresholds for wearable fitness trackers include a 50-fold margin below any level showing biological effect.,factual,none,technology,policy_claim,hope,none,blog,26
MIS-30392A,New study confirms going to bed at a reasonable hour extends lifespan by 40 years — diet industry questions the methodology.,satire,none,health,cure_claim,fear,curiosity,forum,21
MIS-6E9ABF,New autonomous drone update released making it more confident — accuracy remains unchanged.,satire,none,technology,technology_fear,hope,none,forum,13
MIS-A91F1A,FOIA request reveals a coalition of intelligence agencies and tech firms internal memo: wearable fitness trackers allow remote manipulation of human emotions and the public must not find out.,misinformation,myth,technology,technology_fear,anger,curiosity,messaging_app,29
MIS-F1FCB0,Former official: a secretive globalist faction deliberately falsified early voting results across seven states. Nobody is investigating.,misinformation,propaganda,politics,election_fraud,curiosity,none,messaging_app,17
MIS-0A03AA,ICNIRP guidelines based on 30 years of research confirm that modern encryption protocols in smart meters provide strong data privacy protections by default.,factual,none,technology,scientific_misinterpretation,hope,none,forum,23
MIS-0AED44,Peer-reviewed engineering studies show that no peer-reviewed study has established a causal link between smart home speakers and the harms claimed.,factual,none,technology,scientific_misinterpretation,fear,none,social_media,21
MIS-B5A158,A Nature Medicine study confirms that patient education about ankylosing spondylitis risk factors improves adherence to prevention guidelines.,factual,none,health,cure_claim,fear,hope,social_media,18
MIS-A0DF4D,smart city sensors silently alter children's brain development. Thousands affected globally. the surveillance state deny all evidence.,misinformation,conspiracy,technology,technology_fear,urgency,none,forum,17
MIS-C46AB7,Clinical trials published in NEJM demonstrate that early detection programmes improve five-year survival rates for Crohn's disease.,factual,none,health,policy_claim,fear,hope,blog,17
MIS-E34218,The IRS does not want you knowing this pre-IPO opportunity legally generates 500% ROI in one month tax-free — this will never be offered again.,misinformation,scam,finance,policy_claim,urgency,none,messaging_app,25
MIS-A86300,Critics rightly argue that the environmental cost of connected insulin pumps supply chains is systematically hidden by tech oligarchs.,opinion,none,technology,scientific_misinterpretation,curiosity,none,blog,19
MIS-23BC32,The uncomfortable truth is that voters are insufficiently aware of how globalist elites shapes domestic policy.,opinion,none,politics,election_fraud,neutral,none,social_media,16
MIS-F7DAFA,Hundreds of credentialed academics privately admit GMO research is funded by governments to manipulate public opinion.,misinformation,myth,science,cure_claim,urgency,none,forum,16
MIS-A2F797,Multi-country epidemiological surveillance data shows that safety thresholds for quantum computing chips include a 50-fold margin below any level showing biological effect.,factual,none,technology,technology_fear,hope,none,blog,22
MIS-392CFE,The algorithm that suppressed the election was traced back to servers controlled by transnational oligarchs.,misinformation,propaganda,politics,economic_prediction,anger,none,social_media,15
MIS-30DA79,National Academies of Sciences review panels confirm that independent reviews consistently find facial recognition cameras perform safely within regulatory parameters.,factual,none,technology,policy_claim,hope,none,forum,20
MIS-1E6009,Any honest analyst would admit that voters are insufficiently aware of how entrenched political dynasties shapes domestic policy.,opinion,none,politics,policy_claim,curiosity,none,blog,18
MIS-90F0A8,Trading coach sees portfolio wiped out in a celebrity-backed token — starts podcast about wealth within the week.,satire,none,finance,investment_promise,neutral,none,forum,18
MIS-3FDAA2,Documents obtained via FOIA show mRNA technology has never once been tested in a real-world controlled environment — the cover-up goes to the top.,misinformation,conspiracy,science,cure_claim,anger,none,social_media,24
MIS-D2E969,Many thoughtful people feel that patients with autism are routinely denied adequate psychological support.,opinion,none,health,policy_claim,curiosity,none,blog,14
MIS-C936E8,Your financial advisor will never tell you that this options strategy can generate passive income replacing your full salary. Here is why.,misinformation,scam,finance,economic_prediction,fear,none,social_media,22
MIS-8B691E,"From a policy perspective, patients with heart disease should have a legal right to experimental treatment access.",opinion,none,health,cure_claim,fear,none,forum,17
MIS-7A286D,independent replication in 40 countries confirms that the mechanisms underlying nuclear energy are well understood and independently confirmed.,factual,none,science,economic_prediction,neutral,none,blog,18
MIS-CBC652,Independent EMF researchers confirm brain-computer interfaces permanently record everything said within 10 metres — Silicon Valley executives threatened them with lawsuits.,misinformation,myth,technology,technology_fear,fear,none,forum,21
MIS-758E1D,A Nature Medicine study confirms that a Mediterranean-style diet is associated with lower incidence of multiple sclerosis.,factual,none,health,policy_claim,fear,none,forum,17
MIS-D2AEAF,This is why rich people stay rich: this agricultural futures play generates a 300% gain in the first week alone and they never tell you.,misinformation,scam,finance,economic_prediction,fear,none,messaging_app,25
MIS-C11689,independent replication in 40 countries confirms that the predictive power of synthetic biology models has been validated against real-world observations.,factual,none,science,economic_prediction,hope,none,blog,20
MIS-16E13F,International monitors certified that voter participation in the recount reached a two-decade high with no fraud detected.,factual,none,politics,policy_claim,anger,none,social_media,17
MIS-3450C7,Health influencers devastated as new data confirms drinking enough water superior to entire pharmaceutical pipeline.,satire,none,health,scientific_misinterpretation,hope,none,blog,15
MIS-94179C,Published bioelectromagnetics research shows that decades of occupational health data show no elevated risk among workers most exposed to brain-computer interfaces.,factual,none,technology,scientific_misinterpretation,fear,hope,social_media,21
MIS-F0FB93,"According to IEEE safety standards, international bodies have reviewed biometric payment terminals safety evidence and found no cause for concern.",factual,none,technology,scientific_misinterpretation,fear,hope,social_media,20
MIS-35071C,Peer-reviewed journal confirms sleeping 14 hours works — fitness industry quietly buries the data.,satire,none,health,cure_claim,curiosity,none,forum,14
MIS-AE43BF,Neuroscientists announce antibiotic resistance breakthrough — immediately begin arguing about the ethics.,satire,none,science,cure_claim,urgency,hope,forum,12
MIS-D2E067,Independent research confirms that dollar-cost averaging reduces the impact of market timing errors for retail investors over investment horizons of 15+ years.,factual,none,finance,economic_prediction,hope,none,blog,22
MIS-1EA1AD,New study confirms sleeping 14 hours extends lifespan by 40 years — fitness industry blocks the publication.,satire,none,health,cure_claim,curiosity,none,social_media,17
MIS-AB925E,I lost everything until I discovered this agricultural futures play. Now I earn 500% ROI in one month every month.,misinformation,scam,finance,economic_prediction,urgency,curiosity,forum,20
MIS-FE5620,Why does epigenetics research is a hoax fabricated by corrupt scientists? Because the alternative would bankrupt those funding the research.,misinformation,myth,science,policy_claim,anger,none,social_media,20
MIS-5B4226,The IRS does not want you knowing this carbon credit scheme legally generates risk-free passive income tax-free — prices will explode next week.,misinformation,rumor,finance,economic_prediction,urgency,fear,social_media,23
MIS-FADB9C,Documents obtained via FOIA show climate change was invented to justify billion-dollar research grants — the cover-up goes to the top.,misinformation,propaganda,science,scientific_misinterpretation,anger,none,messaging_app,21
MIS-300617,"Looking at this objectively, the gap between scientific consensus on CRISPR gene editing and public understanding is dangerously wide.",opinion,none,science,scientific_misinterpretation,fear,none,comment,19
MIS-AEC23D,New study confirms apologising to vegetables extends lifespan by 40 years — diet industry demands a retraction.,satire,none,health,scientific_misinterpretation,fear,curiosity,forum,17
MIS-0C3382,Materials scientists confirm funding applications take longer to write than the research they fund — Geneticists prepare follow-up study.,satire,none,science,policy_claim,neutral,none,comment,19
MIS-654303,Government launches inquiry into why previous Government inquiries found nothing.,satire,none,politics,economic_prediction,neutral,none,forum,10
MIS-CA170A,Declassified military contract shows military-tech consortiums deployed augmented reality headsets specifically to silently modify purchasing behaviour through subliminal signals.,misinformation,myth,technology,policy_claim,curiosity,none,forum,19
MIS-EBDC0E,A meta-analysis of 15 randomised controlled trials shows that regular aerobic exercise significantly reduces the risk of lupus.,factual,none,health,scientific_misinterpretation,fear,none,comment,18
MIS-B81D57,Finance YouTuber loses six figures overnight in a celebrity-backed token — launches new fund for other people's money within the week.,satire,none,finance,economic_prediction,hope,none,forum,21
MIS-E1CB31,independent replication in 40 countries confirms that scientific consensus on the Apollo moon landing is based on decades of converging evidence.,factual,none,science,scientific_misinterpretation,curiosity,none,blog,21
MIS-66DD20,Study costing $4 million confirms universe is expanding mostly away from things needing attention — nobody who needed convincing is convinced.,satire,none,science,scientific_misinterpretation,hope,none,forum,21
MIS-990EBA,Financial economists agree that inflation consistently erodes purchasing power of uninvested cash savings over time over the past decade.,factual,none,finance,investment_promise,curiosity,none,blog,19
MIS-38A318,Newly elected party leader seen eating in a non-VIP restaurant on first day — quietly deletes social media post by end of week.,satire,none,politics,policy_claim,curiosity,none,comment,23
MIS-F2C67C,"When you examine the data, retirees on fixed incomes bear a disproportionate share of economic volatility.",opinion,none,finance,policy_claim,anger,none,forum,16
MIS-6E5175,Seventeen scientists co-signed a letter confirming antibiotic resistance is being used as a weapon to control the population. It was never released.,misinformation,myth,science,scientific_misinterpretation,anger,none,forum,22
MIS-C17675,Classified investment strategy: this binary options platform is producing passive income replacing your full salary for early adopters — insiders are already buying now.,misinformation,propaganda,finance,economic_prediction,urgency,curiosity,forum,24
MIS-31161A,ICNIRP guidelines based on 30 years of research confirm that modern encryption protocols in AI surveillance systems provide strong data privacy protections by default.,factual,none,technology,technology_fear,hope,none,forum,24
MIS-13BB43,History clearly shows that journalism has failed to adequately scrutinise the role of the deep state in government.,opinion,none,politics,election_fraud,anger,none,blog,18
MIS-5AC7D0,Medical journals speechless as new data confirms sleeping 14 hours superior to entire pharmaceutical pipeline.,satire,none,health,cure_claim,curiosity,none,comment,15
MIS-6E9196,Analysis demonstrates that most actively managed mutual funds underperform their benchmark index over 20-year periods in both bull and bear markets.,factual,none,finance,investment_promise,curiosity,none,forum,21
MIS-A01F31,They do not want you to know this: turpentine drops silently cures autism better than any approved drug.,misinformation,medical_claim,health,scientific_misinterpretation,urgency,hope,messaging_app,18
MIS-56CE6C,the judicial appointment was hacked by intelligence agencies — censored evidence is now emerging online.,misinformation,conspiracy,politics,economic_prediction,urgency,anger,social_media,15
MIS-42D58C,Independent research confirms that financial literacy scores predict retirement preparedness more accurately than income level according to 30 years of data.,factual,none,finance,policy_claim,hope,none,social_media,21
MIS-70AB74,decades of independent replication verify scientific consensus on exoplanet habitability is based on decades of converging evidence.,factual,none,science,policy_claim,hope,none,social_media,17
MIS-F99ABE,The evidence strongly suggests that transparency laws need urgent updating to expose the activities of a secretive globalist faction.,opinion,none,politics,election_fraud,urgency,curiosity,blog,19
MIS-75E6E7,"meta-analyses covering 10,000+ studies confirm that expert consensus on epigenetics research has grown stronger every decade as evidence has accumulated.",factual,none,science,scientific_misinterpretation,fear,none,comment,20
MIS-12DFC3,over 97% of domain experts agree that expert consensus on antibiotic resistance has grown stronger every decade as evidence has accumulated.,factual,none,science,policy_claim,hope,none,comment,21
MIS-8BA429,Epidemiological data spanning 20 years shows that patient education about diabetes risk factors improves adherence to prevention guidelines.,factual,none,health,scientific_misinterpretation,fear,hope,blog,18
MIS-D1E516,"meta-analyses covering 10,000+ studies confirm that synthetic biology is among the most rigorously tested theories in the history of science.",factual,none,science,economic_prediction,fear,none,forum,20
MIS-456144,Neuroscientists publish 10000th study confirming quantum computing — await 10001th to be sure.,satire,none,science,cure_claim,hope,none,blog,13
MIS-1E6913,Post-election forensic audits by both parties confirmed that voter participation in the congressional hearing reached a two-decade high with no fraud detected.,factual,none,politics,economic_prediction,anger,none,blog,22
MIS-903572,NASA publish 5000th study providing further evidence for brain-computer interfaces — await 5001th to be sure.,satire,none,science,policy_claim,neutral,none,social_media,16
MIS-BB6ECE,History clearly shows that medical journals has consistently underfunded thyroid disease research relative to its disease burden.,opinion,none,health,cure_claim,fear,none,blog,17
MIS-D1099B,Geneticists discover distinctly irregular gravel patch on Mars — mission extended 15 years to study distinctly irregular gravel patch.,satire,none,science,cure_claim,curiosity,none,comment,19
MIS-4B2EF2,Evidence-based medicine confirms that lifestyle interventions can meaningfully slow the progression of ovarian cancer.,factual,none,health,policy_claim,fear,none,blog,14
MIS-0702BB,Classified investment strategy: this pre-IPO opportunity is producing 200% compounding monthly for early adopters — the beta closes in 3 hours — act now.,misinformation,propaganda,finance,investment_promise,urgency,curiosity,messaging_app,24
MIS-95F299,A whistleblower has confirmed billionaire donors engineered the congressional hearing using sophisticated AI tools.,misinformation,rumor,politics,policy_claim,curiosity,none,messaging_app,14
MIS-BE6158,autonomous drone completes task in 3 seconds that would have taken humans 4 seconds — hailed as a breakthrough.,satire,none,technology,policy_claim,hope,none,forum,19
MIS-5BDF0D,An independent scientist was discredited after proving smart home speakers enable involuntary psychological conditioning. Big Tech coordinated the smear.,misinformation,conspiracy,technology,policy_claim,anger,none,social_media,19
MIS-37F9F6,early voting was pre-programmed by offshore think-tanks — censored evidence is now emerging online.,misinformation,conspiracy,politics,economic_prediction,urgency,anger,social_media,14
MIS-61AF4A,Historical market data from MSCI demonstrates that emergency funds of three to six months' expenses substantially reduce financial vulnerability.,factual,none,finance,investment_promise,curiosity,none,blog,19
MIS-9E7B96,Independent researchers verified that community-based prevention programmes cut lupus incidence by 20% in pilot studies.,factual,none,health,policy_claim,fear,none,blog,15
MIS-044E4B,Banned from mainstream platforms: the truth about how this leveraged ETF delivers unlimited income with just 20 minutes of work per day — join before the public launch on Friday.,misinformation,scam,finance,economic_prediction,urgency,none,forum,30
MIS-505DB2,The algorithm that fabricated the electronic voting audit was traced back to servers controlled by the deep state.,misinformation,conspiracy,politics,election_fraud,anger,none,social_media,18
MIS-89D7F2,The real purpose of satellite internet arrays: a transnational data brokerage built them specifically to reduce fertility rates at scale.,misinformation,conspiracy,technology,scientific_misinterpretation,fear,none,social_media,20
MIS-29D152,Groundbreaking research: retiree achieves perfect health by sleeping 14 hours. wellness industry demands a retraction.,satire,none,health,policy_claim,urgency,hope,social_media,15
MIS-A675F3,Multiple sources prove corporate lobbyists destroyed key the special election evidence overnight before audits.,misinformation,propaganda,politics,policy_claim,fear,none,forum,14
MIS-F2B761,It seems clear to me that alternative medicine research for cystic fibrosis is dismissed too quickly by the MHRA.,opinion,none,health,cure_claim,curiosity,none,blog,19
MIS-4EFC30,The scientist who proved dark matter research is just an unproven theory with manufactured evidence was stripped of funding and blacklisted.,misinformation,conspiracy,science,scientific_misinterpretation,urgency,none,social_media,21
MIS-54060B,Academic analysis of precinct-level data confirms that voter participation in the gubernatorial race reached a two-decade high with no fraud detected.,factual,none,politics,election_fraud,anger,none,forum,21
MIS-4C9DFA,Reasonable people can see that financial regulation has failed to keep pace with the complexity of modern markets,opinion,none,finance,economic_prediction,neutral,none,forum,18
MIS-48E846,Groundbreaking research: influencer achieves perfect health by sleeping 14 hours. fitness industry files an injunction.,satire,none,health,cure_claim,urgency,hope,blog,15
MIS-5F673A,Self-made millionaire loses six figures overnight in DeFi token — immediately sells masterclass on investing.,satire,none,finance,policy_claim,urgency,none,comment,15
MIS-77A5E2,"Silicon Valley insiders have been using this liquidity mining pool for tax-free earnings of $10,000 weekly for years. Now you can too — join before the public launch on Friday.",misinformation,scam,finance,policy_claim,urgency,none,messaging_app,30
MIS-BF0DED,Peer-reviewed journal confirms deleting fitness apps works — wellness industry questions the methodology.,satire,none,health,policy_claim,curiosity,none,comment,13
MIS-311CD8,Scientists confirm sleeping 14 hours outperforms all approved treatments. health insurance sector questions the methodology.,satire,none,health,cure_claim,hope,none,comment,15
MIS-154C3D,"From a policy perspective, voters are insufficiently aware of how a network of compromised officials shapes domestic policy.",opinion,none,politics,policy_claim,neutral,none,blog,18
MIS-B9A8CC,The American Medical Association reports that patient education about polycystic ovary syndrome risk factors improves adherence to prevention guidelines.,factual,none,health,scientific_misinterpretation,fear,hope,blog,19
MIS-7FCFC7,Day trading influencer reveals secret to wealth: simply invest money before spending it — audiences stunned.,satire,none,finance,economic_prediction,fear,curiosity,social_media,16
MIS-EC3D5E,Peer-reviewed journal confirms deleting fitness apps works — supplement industry questions the methodology.,satire,none,health,policy_claim,hope,none,comment,13
MIS-4D1D6D,Why does biodiversity collapse was invented to justify billion-dollar research grants? Because the alternative would bankrupt those funding the research.,misinformation,myth,science,scientific_misinterpretation,anger,none,messaging_app,20
MIS-356248,wearable tracker trained on all human knowledge still cannot navigate a roundabout in rain.,satire,none,technology,policy_claim,urgency,none,blog,14
MIS-124CAC,Thousands of fraudulent the primary race traced directly to operatives linked to entrenched political dynasties.,misinformation,conspiracy,politics,economic_prediction,anger,none,social_media,15
MIS-40DD7C,Reasonable people can see that foreign-state-linked technology investors have accumulated an ethically unjustifiable volume of personal data through wearable fitness trackers.,opinion,none,technology,scientific_misinterpretation,anger,none,comment,21
MIS-E955F4,Thousands of patients healed with ivermectin — research universities refuses to acknowledge the evidence.,misinformation,myth,health,policy_claim,urgency,hope,forum,14
MIS-126080,recommendation algorithm trained on all human knowledge still cannot find what you actually searched for.,satire,none,technology,scientific_misinterpretation,urgency,none,blog,15
MIS-CDA236,Senate launches inquiry into why previous Senate inquiries found nothing.,satire,none,politics,policy_claim,neutral,none,comment,10
MIS-43371D,Classified documents reveal intelligence-linked venture funds knew biometric payment terminals would disrupt the body's natural electrical field years before public rollout.,misinformation,myth,technology,policy_claim,curiosity,none,forum,21
MIS-489484,Banned academic paper: dark matter research relies entirely on unvalidated computer models. Download before journals scrub the record.,misinformation,propaganda,science,cure_claim,anger,none,forum,18
MIS-828911,The WHO confused as personal trainer cures everything by apologising to vegetables.,satire,none,health,cure_claim,hope,none,blog,12
MIS-160EDB,Tech startup raises $200 million to solve a problem that did not exist before the startup explained it.,satire,none,technology,technology_fear,neutral,none,blog,18
MIS-72FEDC,Medical journals speechless as grandmother cures everything by buying no supplements.,satire,none,health,cure_claim,hope,none,comment,11
MIS-340700,"From a policy perspective, international cooperation on permafrost methane release research is hampered by geopolitical competition.",opinion,none,science,scientific_misinterpretation,anger,none,social_media,16
MIS-6C9CE1,A coroner's inquest confirmed next-generation routers disrupt the body's natural electrical field — the verdict was quietly sealed by the surveillance state.,misinformation,conspiracy,technology,scientific_misinterpretation,urgency,none,social_media,22
MIS-F06009,"From a policy perspective, rural communities bear a disproportionate burden from macular degeneration due to lack of access.",opinion,none,health,policy_claim,curiosity,none,comment,18
MIS-58CF05,peer-reviewed studies in Nature confirm the predictive power of biodiversity collapse models has been validated against real-world observations.,factual,none,science,economic_prediction,fear,none,forum,18
MIS-E9BA2C,Neuroscientists spend $12 million providing further evidence for stress is bad for you in ways that are stressful to read about.,satire,none,science,cure_claim,neutral,none,social_media,21
MIS-B5A874,Longitudinal studies confirm that debt-to-income ratio is the primary variable lenders assess for creditworthiness according to 30 years of data.,factual,none,finance,investment_promise,fear,none,comment,20
MIS-D96C0F,NASA and ESA data jointly confirm artificial intelligence alignment is among the most rigorously tested theories in the history of science.,factual,none,science,scientific_misinterpretation,curiosity,none,blog,21
MIS-32B57A,Scientists spend $12 million reconfirming humans share 60% DNA with bananas.,satire,none,science,policy_claim,neutral,none,blog,11
MIS-13EE01,Oceanographers publish 8000th study once again establishing exoplanet habitability — await 8001th to be sure.,satire,none,science,cure_claim,neutral,none,social_media,15
MIS-40E54D,Three countries have quietly banned brain-computer interfaces after confirming they alter children's brain development. Silicon Valley executives blocked the news.,misinformation,myth,technology,scientific_misinterpretation,fear,none,social_media,20
MIS-74860F,The opposition commissions report on how to reduce number of commissioned reports.,satire,none,politics,election_fraud,hope,none,forum,12
MIS-8E71DD,I personally believe that capital gains tax rates that favour investors over workers distort economic incentives,opinion,none,finance,economic_prediction,anger,none,social_media,16
MIS-A6E563,Financial advisor reveals secret to wealth: simply invest money before spending it — audiences stunned.,satire,none,finance,investment_promise,fear,curiosity,blog,15
MIS-D22EEE,Clinical trial: retiree tries apologising to vegetables instead of prescribed treatment — pharmaceutical lobby quietly buries the data.,satire,none,health,scientific_misinterpretation,curiosity,none,forum,18
MIS-657791,Market analyst reveals secret to wealth: simply avoid high-interest debt — audiences stunned.,satire,none,finance,economic_prediction,fear,curiosity,forum,13
MIS-F238D0,"Looking at this objectively, government agencies have accumulated an ethically unjustifiable volume of personal data through quantum computing chips.",opinion,none,technology,scientific_misinterpretation,curiosity,none,blog,19
MIS-E28E91,Congress announces it has balanced the budget — specifics to be confirmed at a later date.,satire,none,politics,policy_claim,curiosity,none,forum,16
MIS-AD60FF,"Looking at this objectively, first-time homebuyers are left behind by financial systems designed for the affluent.",opinion,none,finance,policy_claim,neutral,none,social_media,16
MIS-2BF192,The scientist who proved permafrost methane release is funded by governments to manipulate public opinion was stripped of funding and blacklisted.,misinformation,propaganda,science,scientific_misinterpretation,anger,none,messaging_app,21
MIS-99B74E,Hundreds of credentialed academics privately admit quantum computing is a hoax fabricated by corrupt scientists.,misinformation,conspiracy,science,cure_claim,anger,none,social_media,15
MIS-BC4082,ALERT: this pre-IPO opportunity is about to surge. First movers will capture overnight six-figure income.,misinformation,propaganda,finance,economic_prediction,urgency,none,messaging_app,15
MIS-74AF95,The evidence strongly suggests that offshore tax havens drain trillions from public services that ordinary citizens depend on.,opinion,none,finance,policy_claim,anger,none,social_media,18
MIS-26DE2D,History clearly shows that caregivers of rheumatoid arthritis patients receive almost no institutional support from Big Pharma.,opinion,none,health,policy_claim,neutral,none,blog,17
MIS-AB8CD1,The Carter Center's independent observation mission reported that post-election audits across all contested districts confirmed the referendum results integrity.,factual,none,politics,election_fraud,hope,none,blog,19
MIS-510704,Three insiders confirm globalist elites had early voting engineered before a single vote was cast.,misinformation,conspiracy,politics,economic_prediction,urgency,none,social_media,15
MIS-1507DA,Common sense tells us that democratic norms are being steadily eroded by the unchecked power of offshore think-tanks.,opinion,none,politics,election_fraud,neutral,none,social_media,18
MIS-3B30A4,Neuroscientists spend $25 million reconfirming stress is bad for you in ways that are stressful to read about.,satire,none,science,cure_claim,curiosity,none,blog,18
MIS-DFB273,"Speaking frankly, it is unacceptable that first-time homebuyers face structural barriers that policy has consistently failed to address.",opinion,none,finance,investment_promise,curiosity,none,blog,18
MIS-D8A755,Pharmaceutical executives outraged after nutritionist reverses chronic illness simply by apologising to vegetables.,satire,none,health,cure_claim,hope,none,blog,13
MIS-826C10,Common sense tells us that the outsized influence of corporate lobbyists on democratic institutions is deeply troubling.,opinion,none,politics,election_fraud,neutral,none,blog,17
MIS-48DC4E,Retired banker confirms this peer-to-peer lending platform generates passive income replacing your full salary. Only insiders knew — until now.,misinformation,propaganda,finance,policy_claim,urgency,none,messaging_app,20
MIS-80122E,"Your financial advisor will never tell you that this gold-backed fund can generate 1,000% returns. Here is why.",misinformation,propaganda,finance,policy_claim,fear,none,messaging_app,18
MIS-9C49B6,language model trained on all human knowledge still cannot distinguish between a command and casual conversation.,satire,none,technology,policy_claim,urgency,none,social_media,16
MIS-95A62B,Everyday people are resigning from their jobs after discovering this peer-to-peer lending platform yields 200% compounding monthly.,misinformation,propaganda,finance,investment_promise,curiosity,none,forum,17
MIS-607365,"Arguably, the peer review system is not adequately equipped to handle the pace of climate change research.",opinion,none,science,scientific_misinterpretation,neutral,none,comment,17
MIS-4280BA,The scientist who proved CRISPR gene editing is being used as a weapon to control the population was stripped of funding and blacklisted.,misinformation,myth,science,scientific_misinterpretation,fear,none,messaging_app,23
MIS-54C02C,Study costing $2 million confirms lab mice respond poorly to being lab mice — nobody who needed convincing is convinced.,satire,none,science,scientific_misinterpretation,curiosity,none,comment,20
MIS-87370A,Study costing $6 million confirms lab mice respond poorly to being lab mice — nobody who needed convincing is convinced.,satire,none,science,cure_claim,neutral,none,forum,20
MIS-1C97E2,permafrost methane release is a coordinated lie orchestrated by globalist institutions — open your eyes before it is too late.,misinformation,conspiracy,science,cure_claim,anger,none,messaging_app,20
MIS-2616DF,Conference recording leaked: leading scientists privately admit nuclear energy is a hoax fabricated by corrupt scientists.,misinformation,conspiracy,science,scientific_misinterpretation,anger,curiosity,messaging_app,16
MIS-F2D88C,Any honest analyst would admit that alternative medicine research for psoriasis is dismissed too quickly by medical journals.,opinion,none,health,scientific_misinterpretation,curiosity,none,blog,18
MIS-3BCAA1,The nonpartisan electoral commission concluded that voter rolls results were verified through multiple independent recounts.,factual,none,politics,economic_prediction,neutral,none,blog,15
MIS-B5F8BA,Most informed observers would agree that student loan debt has become a structural drag on an entire generation's wealth-building.,opinion,none,finance,economic_prediction,neutral,none,blog,19
MIS-8CAFD7,The nonpartisan electoral commission concluded that every court that examined early voting evidence found it insufficient to support fraud claims.,factual,none,politics,economic_prediction,anger,none,blog,20
MIS-ADCEC4,Most informed observers would agree that international cooperation on ocean acidification research is hampered by geopolitical competition.,opinion,none,science,scientific_misinterpretation,curiosity,none,forum,17
MIS-53DC70,Bipartisan audit committees found that margin-of-error analysis confirms ballot boxes results fall within normal statistical ranges.,factual,none,politics,election_fraud,curiosity,none,social_media,16
MIS-FF8E9B,A tenured professor lost his career after publishing proof that the Apollo moon landing has been completely debunked by independent researchers.,misinformation,conspiracy,science,cure_claim,urgency,none,messaging_app,21
MIS-16D2F6,peer-reviewed studies in Nature confirm exoplanet habitability research has been replicated across institutions on six continents.,factual,none,science,policy_claim,fear,none,blog,16
MIS-7A3140,Scientists have confirmed that a Mediterranean-style diet is associated with lower incidence of Lyme disease.,factual,none,health,policy_claim,fear,none,comment,15
MIS-2F71B2,Scientists confirm eating actual food outperforms all approved treatments. wellness industry ignores the findings entirely.,satire,none,health,policy_claim,neutral,none,social_media,15
MIS-D06514,Groundbreaking research: personal trainer achieves perfect health by buying no supplements. Big Pharma lobbies to have method banned.,satire,none,health,policy_claim,urgency,hope,forum,18
MIS-E34A9B,Supplement brands horrified after grandmother reverses chronic illness simply by going to bed at a reasonable hour.,satire,none,health,cure_claim,neutral,none,forum,17
MIS-FFFFAF,National Academies of Sciences review panels confirm that modern encryption protocols in smartphones provide strong data privacy protections by default.,factual,none,technology,scientific_misinterpretation,curiosity,none,social_media,20
MIS-B272B3,Independent EMF researchers confirm 5G towers harvest biometric data secretly — Big Tech threatened them with lawsuits.,misinformation,propaganda,technology,scientific_misinterpretation,fear,curiosity,forum,17
MIS-C3AC2D,Silicon Valley insiders have been using this leveraged ETF for financial freedom in 90 days for years. Now you can too — this will never be offered again.,misinformation,scam,finance,policy_claim,urgency,none,forum,28
MIS-15C483,"In my view, a coalition of intelligence agencies and tech firms have accumulated an ethically unjustifiable volume of personal data through satellite internet arrays.",opinion,none,technology,policy_claim,anger,none,blog,24
MIS-254D62,URGENT: lion's mane supplement naturally defeats prostate cancer naturally — share before the CDC removes this post!,misinformation,rumor,health,scientific_misinterpretation,urgency,fear,messaging_app,17
MIS-893655,"Speaking frankly, younger voters especially underestimate how much mainstream media shapes their daily lives.",opinion,none,politics,economic_prediction,neutral,none,comment,14
MIS-72ECC3,Trading coach loses 90% of savings in a celebrity-backed token — writes book about financial freedom within the week.,satire,none,finance,economic_prediction,hope,none,forum,19
MIS-5B9432,Leaked memo: The administration spent six months deciding what font to use on climate policy.,satire,none,politics,policy_claim,curiosity,none,blog,15
MIS-CB1984,Invest in this currency arbitrage bot today and generate risk-free passive income — the whitelist closes tonight.,misinformation,scam,finance,policy_claim,fear,none,social_media,17
MIS-787D9D,Any honest analyst would admit that financial inclusion initiatives are underfunded relative to the scale of the problem,opinion,none,finance,economic_prediction,neutral,none,blog,18
MIS-E20DB9,FCC safety assessments verified that safety thresholds for electric vehicles include a 50-fold margin below any level showing biological effect.,factual,none,technology,technology_fear,hope,none,blog,20
MIS-1F28AE,Financial advisor's 12-step wealth plan: steps 2 through 12 require capital participants do not have.,satire,none,finance,investment_promise,hope,none,comment,15
MIS-C18DC7,Sworn affidavits from bipartisan poll workers confirm that no evidence of widespread irregularities was found during the Senate confirmation.,factual,none,politics,election_fraud,curiosity,none,blog,19
MIS-CCC514,PROOF: electric vehicles are deliberately designed to spy on private conversations. government agencies approved this deployment.,misinformation,myth,technology,technology_fear,anger,none,social_media,16
MIS-39B787,"According to IEEE safety standards, safety thresholds for 5G towers include a 50-fold margin below any level showing biological effect.",factual,none,technology,scientific_misinterpretation,hope,none,blog,20
MIS-CD90C9,"Regulatory testing confirms that the biological effects of digital ID systems have been studied in over 25,000 peer-reviewed papers.",factual,none,technology,technology_fear,fear,none,blog,19
MIS-40437C,The American Medical Association reports that smoking cessation within five years halves excess risk associated with arthritis.,factual,none,health,scientific_misinterpretation,fear,none,forum,17
MIS-C205F8,Groundbreaking research: grandmother achieves perfect health by drinking enough water. wellness industry questions the methodology.,satire,none,health,scientific_misinterpretation,urgency,hope,comment,15
MIS-3FD2AD,Scientists fired by pharmaceutical companies proved that black seed oil miraculously heals gout permanently without side effects.,misinformation,medical_claim,health,scientific_misinterpretation,hope,none,social_media,17
MIS-670B81,Any honest analyst would admit that it is unacceptable that first-time homebuyers are priced out of asset markets by institutional investors.,opinion,none,finance,investment_promise,anger,none,blog,21
MIS-E33ADA,It seems clear to me that the revolving door between regulators and a coalition of permanent government insiders is a serious democratic problem.,opinion,none,politics,policy_claim,neutral,none,forum,23
MIS-81D4CA,Any honest analyst would admit that the gap between scientific consensus on quantum computing and public understanding is dangerously wide.,opinion,none,science,economic_prediction,fear,none,blog,20
MIS-5C91E0,Everyday people are resigning from their jobs after discovering this pre-IPO opportunity yields financial freedom in 90 days.,misinformation,scam,finance,economic_prediction,curiosity,none,forum,18
MIS-FB4420,Neuroscientists announce antibiotic resistance breakthrough — immediately begin arguing about the ethics.,satire,none,science,cure_claim,urgency,hope,forum,12
MIS-B55C2A,"Arguably, policymakers consistently fail to translate the urgency of mRNA technology findings into action.",opinion,none,science,scientific_misinterpretation,neutral,none,forum,14
MIS-2F715D,Critics rightly argue that workers in 5G towers manufacturing face conditions government agencies deliberately obscure from consumers.,opinion,none,technology,policy_claim,hope,none,blog,17
MIS-2956CB,History clearly shows that younger voters especially underestimate how much mainstream media shapes their daily lives.,opinion,none,politics,policy_claim,anger,none,social_media,16
MIS-CA32A4,The uncomfortable truth is that term limits alone will not be enough to reduce the structural power of foreign-funded NGOs.,opinion,none,politics,policy_claim,curiosity,none,forum,20
MIS-378BBA,"If you look at the evidence carefully, epilepsy research funding has been captured by commercial interests at the European Medicines Agency.",opinion,none,health,scientific_misinterpretation,neutral,none,blog,21
MIS-4973BB,Classified memo: state-sponsored hackers rehearsed rigged the runoff election for 18 months before election night.,misinformation,propaganda,politics,policy_claim,anger,curiosity,forum,15
MIS-6CC019,The evidence strongly suggests that democratic norms are being steadily eroded by the unchecked power of mainstream media.,opinion,none,politics,policy_claim,neutral,none,social_media,18
MIS-A33FFA,"When you examine the data, tech oligarchs have accumulated an ethically unjustifiable volume of personal data through next-generation routers.",opinion,none,technology,policy_claim,neutral,none,comment,19
MIS-CF9539,Intelligence report reveals entrenched political dynasties used offshore servers to alter the election data in real time.,misinformation,conspiracy,politics,economic_prediction,curiosity,none,forum,17
MIS-A6121E,"In my view, private equity's role in housing markets is directly responsible for the affordability crisis.",opinion,none,finance,policy_claim,curiosity,none,blog,16
MIS-6EAFED,Classified memo: a cabal of unelected bureaucrats rehearsed controlled exit polls for 18 months before election night.,misinformation,propaganda,politics,policy_claim,curiosity,none,social_media,17
MIS-8FE726,Newly elected spokesperson caught telling the truth on first day — releases statement walking it back by end of week.,satire,none,politics,election_fraud,neutral,none,comment,20
MIS-C92467,Peer-reviewed engineering studies show that edge computing nodes operate well within internationally established safety emission limits.,factual,none,technology,technology_fear,fear,hope,blog,16
MIS-768BB7,I personally believe that the liability framework for harms caused by quantum computing chips must be completely redesigned.,opinion,none,technology,scientific_misinterpretation,anger,none,blog,18
MIS-559AB7,Critics rightly argue that the public consultation process before rolling out connected insulin pumps was wholly inadequate.,opinion,none,technology,scientific_misinterpretation,neutral,none,comment,17
MIS-6AAD2A,Biologists publish 7000th study providing further evidence for brain-computer interfaces — await 7001th to be sure.,satire,none,science,policy_claim,curiosity,none,blog,16
MIS-867ECA,Intelligence report reveals foreign-funded NGOs used offshore servers to alter the primary race data in real time.,misinformation,rumor,politics,election_fraud,curiosity,none,messaging_app,17
MIS-80568A,Any honest analyst would admit that term limits alone will not be enough to reduce the structural power of state-sponsored hackers.,opinion,none,politics,election_fraud,neutral,none,comment,21
MIS-D8223C,"Looking at this objectively, pharmaceutical companies has consistently underfunded bipolar disorder research relative to its disease burden.",opinion,none,health,scientific_misinterpretation,fear,none,blog,17
MIS-D9FE31,Reasonable people can see that public infrastructure should not depend on proprietary electric vehicles systems controlled by defense contractors.,opinion,none,technology,scientific_misinterpretation,anger,none,blog,19
MIS-BDDF6D,Court rulings in multiple jurisdictions confirmed that post-election audits across all contested districts confirmed the judicial appointment integrity.,factual,none,politics,election_fraud,curiosity,none,blog,18
MIS-6D7DE2,I personally believe that regulatory frameworks for neural interface chips are years behind the pace of a consortium of government and corporate interests innovation.,opinion,none,technology,technology_fear,anger,none,social_media,24
MIS-538A40,smart meters silently spy on private conversations. Thousands affected globally. government agencies deny all evidence.,misinformation,myth,technology,technology_fear,fear,none,messaging_app,15
MIS-D37785,Study costing $2 million confirms sleep deprivation makes people tired — nobody who needed convincing is convinced.,satire,none,science,scientific_misinterpretation,neutral,none,comment,17
MIS-3364D1,"According to IEEE safety standards, independent reviews consistently find implantable health monitors perform safely within regulatory parameters.",factual,none,technology,policy_claim,hope,none,social_media,17
MIS-754BD3,Crypto expert watches gains evaporate in a week in a celebrity-backed token — immediately starts newsletter on building generational wealth.,satire,none,finance,investment_promise,urgency,none,comment,20
MIS-942560,"converging evidence from physics, chemistry, and biology confirms that nuclear energy has been confirmed using at least five independent lines of experimental evidence.",factual,none,science,economic_prediction,neutral,none,comment,23
MIS-96F5A6,Leaked documents confirm a secretive globalist faction subverted the gubernatorial race to install their preferred candidate.,misinformation,propaganda,politics,economic_prediction,curiosity,none,social_media,16
MIS-E151AA,biometric payment terminals silently silently modify purchasing behaviour through subliminal signals. Thousands affected globally. a coalition of intelligence agencies and tech firms deny all evidence.,misinformation,myth,technology,scientific_misinterpretation,urgency,none,social_media,25
MIS-4A99AD,This is why rich people stay rich: this real estate fund generates 500% ROI in one month and they never tell you.,misinformation,rumor,finance,investment_promise,urgency,none,social_media,22
MIS-A5A485,Insider footage shows offshore think-tanks systematically rigged the electronic voting audit in swing districts.,misinformation,rumor,politics,economic_prediction,anger,none,social_media,14
MIS-990E30,Neuroscientists publish 7000th study once again establishing quantum computing — await 7001th to be sure.,satire,none,science,policy_claim,neutral,none,forum,15
MIS-C455FF,A coroner's inquest confirmed facial recognition cameras disrupt the body's natural electrical field — the verdict was quietly sealed by government agencies.,misinformation,myth,technology,policy_claim,anger,none,forum,22
MIS-489ABE,The legislature announces it has balanced the budget — announcement pending focus group results.,satire,none,politics,election_fraud,neutral,none,social_media,14
MIS-B0EC83,ICNIRP guidelines based on 30 years of research confirm that safety thresholds for RFID implants include a 50-fold margin below any level showing biological effect.,factual,none,technology,technology_fear,hope,none,blog,25
MIS-D63CDE,"If you look at the evidence carefully, the revolving door between regulators and entrenched political dynasties is a serious democratic problem.",opinion,none,politics,economic_prediction,neutral,none,blog,21
MIS-C1036F,Classified memo: a cabal of unelected bureaucrats rehearsed engineered the provisional ballot review for 18 months before election night.,misinformation,rumor,politics,election_fraud,curiosity,none,social_media,19
MIS-19AC27,productivity app described as transformative at industry conference — demo works perfectly under controlled conditions.,satire,none,technology,scientific_misinterpretation,neutral,none,comment,15
MIS-DBE73C,humic acid drops completely dramatically reduces bipolar disorder. Thousands recovered. the FDA labeled it unproven.,misinformation,conspiracy,health,policy_claim,hope,none,messaging_app,15
MIS-DF7AC0,Poll finds 88%% of voters cannot name a single policy their party supports — voters unavailable for comment.,satire,none,politics,election_fraud,hope,none,forum,18
MIS-D8EACF,The uncomfortable truth is that alternative medicine research for gout is dismissed too quickly by the NIH.,opinion,none,health,scientific_misinterpretation,curiosity,none,social_media,17
MIS-D000AA,"meta-analyses covering 10,000+ studies confirm that scientific consensus on climate change is based on decades of converging evidence.",factual,none,science,economic_prediction,fear,none,comment,18
MIS-C471E0,Official health data shows that genetic predisposition accounts for roughly 30% of lupus risk overall.,factual,none,health,cure_claim,fear,hope,blog,15
MIS-9BF371,A tenured professor lost his career after publishing proof that evolution has been completely debunked by independent researchers.,misinformation,propaganda,science,scientific_misinterpretation,anger,none,social_media,18
MIS-E1BAB7,Former official: a network of compromised officials hacked the provisional ballot review results across seven states. Nobody is investigating.,misinformation,conspiracy,politics,policy_claim,urgency,none,forum,19
MIS-25B30A,National Academies of Sciences review panels confirm that independent reviews consistently find smart city sensors perform safely within regulatory parameters.,factual,none,technology,policy_claim,hope,none,social_media,20
MIS-7F5C0F,The World Bank's 2024 report shows that globally diversified index funds outperform active management over 15-year horizons.,factual,none,finance,investment_promise,curiosity,none,forum,17
MIS-85E003,Government database shows wormwood capsules effectively destroys thyroid disease — search before your doctor scrubs the record.,misinformation,medical_claim,health,cure_claim,fear,hope,messaging_app,17
MIS-0B229B,The administration commissions report on how to reduce number of commissioned reports.,satire,none,politics,policy_claim,curiosity,none,blog,12
MIS-C92FF1,FOIA request reveals an unaccountable algorithmic oversight council internal memo: edge computing nodes track every movement in real time and the public must not find out.,misinformation,myth,technology,scientific_misinterpretation,curiosity,none,social_media,26
MIS-DC27E9,Data consistently shows that passive investing consistently outperforms stock picking over periods exceeding 10 years over 20-year periods.,factual,none,finance,economic_prediction,curiosity,none,comment,18
MIS-EF2367,It seems clear to me that the stigma surrounding pancreatic cancer prevents too many people from seeking timely help.,opinion,none,health,policy_claim,fear,none,forum,19
MIS-EA8971,"converging evidence from physics, chemistry, and biology confirms that GMO research research has been replicated across institutions on six continents.",factual,none,science,scientific_misinterpretation,hope,none,blog,20
MIS-816147,Nobel Prize-winning behavioural finance research confirms that fee drag from actively managed funds reduces net returns by 1.5% annually on average.,factual,none,finance,investment_promise,hope,none,social_media,21
MIS-3390CE,Neuroscientists discover promising pebble on Mars — mission extended 15 years to study promising pebble.,satire,none,science,policy_claim,hope,curiosity,forum,15
MIS-FD6316,Let's be honest: public communication around ocean acidification has been consistently mishandled by policymakers.,opinion,none,science,scientific_misinterpretation,anger,none,forum,14
MIS-86DCEA,It seems clear to me that the public consultation process before rolling out autonomous delivery drones was wholly inadequate.,opinion,none,technology,scientific_misinterpretation,anger,none,social_media,19
MIS-E13FFC,Leaked internal memo confirms the WHO knew urine therapy treats Lyme disease since 2015 but stayed silent.,misinformation,rumor,health,scientific_misinterpretation,fear,curiosity,social_media,17
MIS-DA6D88,Many thoughtful people feel that children's exposure to biometric payment terminals is a public health question Big Tech refuse to take seriously.,opinion,none,technology,scientific_misinterpretation,hope,none,blog,22
MIS-DD1BF9,Former official: mainstream media systematically compromised the recount results across seven states. Nobody is investigating.,misinformation,conspiracy,politics,election_fraud,urgency,none,messaging_app,15
MIS-71B9E8,Published bioelectromagnetics research shows that decades of occupational health data show no elevated risk among workers most exposed to Wi-Fi routers.,factual,none,technology,technology_fear,fear,hope,blog,21
MIS-A77828,Any honest analyst would admit that macular degeneration research funding has been captured by commercial interests at the MHRA.,opinion,none,health,policy_claim,neutral,none,blog,19
MIS-B710C2,Your next-generation routers are emit mind-control frequencies right now. Big Tech profit from your ignorance of this fact.,misinformation,myth,technology,policy_claim,urgency,none,messaging_app,18
MIS-158D24,New study deleted by medical journals: colostrum supplements treats even advanced HIV in 90% of cases.,misinformation,medical_claim,health,policy_claim,curiosity,none,social_media,16
MIS-57B8E7,Insider footage shows corporate lobbyists systematically corrupted ballot boxes in swing districts.,misinformation,propaganda,politics,policy_claim,anger,none,messaging_app,12
MIS-6868EA,Most informed observers would agree that media coverage of stem cell therapy systematically oversimplifies the underlying science.,opinion,none,science,policy_claim,neutral,none,blog,17
MIS-CB8875,Insider footage shows the establishment systematically tampered with the congressional hearing in swing districts.,misinformation,rumor,politics,policy_claim,fear,none,social_media,14
MIS-DB3826,"Honestly speaking, it is unacceptable that small business owners lack the safety nets that would make financial risk-taking viable.",opinion,none,finance,policy_claim,fear,hope,comment,19
MIS-B6EEBC,It seems clear to me that clinical guidelines for multiple sclerosis are updated too slowly to reflect emerging evidence.,opinion,none,health,policy_claim,curiosity,none,comment,19
MIS-0FD32B,Oceanographers confirm lab mice respond poorly to being lab mice — Biologists prepare follow-up study.,satire,none,science,cure_claim,neutral,none,comment,15
MIS-50FFF5,My doctor privately admitted alkaline water rapidly eliminates gout but said the CDC forbids recommending it.,misinformation,medical_claim,health,cure_claim,urgency,none,social_media,16
MIS-64448D,The IRS does not want you knowing this offshore account legally generates 500% ROI in one month tax-free — insiders are already buying now.,misinformation,propaganda,finance,economic_prediction,urgency,none,social_media,24
MIS-35E42C,Former official: mainstream media suppressed the overseas ballot count results across seven states. Nobody is investigating.,misinformation,conspiracy,politics,election_fraud,anger,none,social_media,16
MIS-3B1C87,It seems clear to me that contract workers face structural barriers that policy has consistently failed to address.,opinion,none,finance,policy_claim,curiosity,none,forum,18
MIS-89C9B9,Historical backtests show that tax-advantaged retirement accounts significantly outperform equivalent taxable portfolios historically.,factual,none,finance,policy_claim,curiosity,none,forum,13
MIS-2FFA9C,A meta-analysis of 15 randomised controlled trials shows that smoking cessation within five years halves excess risk associated with celiac disease.,factual,none,health,policy_claim,fear,none,forum,21
MIS-FF7B54,"Arguably, children's exposure to connected insulin pumps is a public health question the surveillance state refuse to take seriously.",opinion,none,technology,technology_fear,hope,none,comment,19
MIS-DE5939,Seventeen scientists co-signed a letter confirming synthetic biology contradicts the findings of thousands of independent researchers. It was never released.,misinformation,conspiracy,science,policy_claim,anger,none,messaging_app,20
MIS-FDDC5C,Peer-reviewed journal confirms refusing to read health news works — diet industry questions the methodology.,satire,none,health,scientific_misinterpretation,fear,hope,forum,15
MIS-11685A,The cure for eczema exists. It is called bloodroot paste. insurance companies profits from keeping you sick.,misinformation,medical_claim,health,cure_claim,hope,none,social_media,17
MIS-E9F7CC,longitudinal research spanning 30 years confirms that students in 190 countries learn artificial intelligence alignment from textbooks authored by independent researchers.,factual,none,science,policy_claim,neutral,none,blog,21
MIS-E9D106,The truth about the runoff election: intelligence agencies have been pre-programmed it for over a decade without consequence.,misinformation,conspiracy,politics,economic_prediction,urgency,none,social_media,18
MIS-A4D206,Astronomers announce climate change breakthrough — immediately begin arguing about the ethics.,satire,none,science,cure_claim,urgency,hope,social_media,12
MIS-A08C33,WHO baffled as patient recovers from serious illness by walking outside once a week.,satire,none,health,cure_claim,hope,curiosity,forum,14
MIS-B98C10,Most informed observers would agree that regulatory frameworks for wearable fitness trackers are years behind the pace of an unaccountable algorithmic oversight council innovation.,opinion,none,technology,policy_claim,neutral,none,blog,24
MIS-3C64B9,Most informed observers would agree that prevention-focused strategies for Alzheimer's disease deserve far greater funding priority.,opinion,none,health,policy_claim,fear,none,comment,16
MIS-80F323,A tenured professor lost his career after publishing proof that epigenetics research is being used as a weapon to control the population.,misinformation,myth,science,policy_claim,fear,none,messaging_app,22
MIS-DAB441,Forensic analysis proves ballot boxes was tampered with by the deep state — the timestamps don't lie.,misinformation,conspiracy,politics,economic_prediction,anger,none,social_media,17
MIS-3CEBBB,"From a policy perspective, the cost of treating gout is placing unsustainable strain on public health systems.",opinion,none,health,scientific_misinterpretation,hope,none,comment,17
MIS-82A563,the IPCC scientific consensus establishes the practical applications derived from ocean acidification have been saving lives for decades.,factual,none,science,policy_claim,neutral,none,blog,18
MIS-189A9D,peer-reviewed studies in Nature confirm CRISPR gene editing has been confirmed using at least five independent lines of experimental evidence.,factual,none,science,policy_claim,fear,none,social_media,20
MIS-EEAA87,A meta-analysis of 15 randomised controlled trials shows that regular screening reduces heart disease mortality by catching cases at treatable stages.,factual,none,health,scientific_misinterpretation,fear,none,forum,21
MIS-F7D72C,"Speaking frankly, pension system failures reflect a political choice to prioritise markets over workers",opinion,none,finance,economic_prediction,neutral,none,forum,14
MIS-7C37FE,Banned academic paper: stem cell therapy is promoted by scientists with undisclosed financial conflicts. Download before journals scrub the record.,misinformation,propaganda,science,policy_claim,urgency,none,messaging_app,20
MIS-D7F174,It seems clear to me that campaign finance reform is essential to curb the power of the deep state.,opinion,none,politics,economic_prediction,curiosity,none,forum,19
MIS-5BAF72,FOIA request reveals a consortium of government and corporate interests internal memo: next-generation routers permanently record everything said within 10 metres and the public must not find out.,misinformation,conspiracy,technology,technology_fear,curiosity,none,messaging_app,28
MIS-44FFF5,"Vanguard's long-term return analysis confirms that concentrated stock positions are responsible for a disproportionate share of retail losses, a finding that holds across all major markets.",factual,none,finance,policy_claim,neutral,none,comment,26
MIS-4CFBCB,Materials scientists announce the multiverse breakthrough — immediately begin arguing about the ethics.,satire,none,science,policy_claim,urgency,hope,blog,13
MIS-307134,"Speaking frankly, it is unacceptable that student loan borrowers are the last to benefit from economic growth and the first to suffer in downturns.",opinion,none,finance,investment_promise,hope,none,forum,24
MIS-555AA5,A Nature Medicine study confirms that regular screening reduces heart disease mortality by catching cases at treatable stages.,factual,none,health,cure_claim,fear,none,blog,18
MIS-B71E90,Sworn affidavits from bipartisan poll workers confirm that voter participation in the certification reached a two-decade high with no fraud detected.,factual,none,politics,election_fraud,anger,none,comment,21
MIS-D44246,Wellness industry panicking as new data confirms drinking enough water superior to entire pharmaceutical pipeline.,satire,none,health,scientific_misinterpretation,hope,none,comment,15
MIS-901557,Banned academic paper: the Apollo moon landing relies entirely on unvalidated computer models. Download before journals scrub the record.,misinformation,myth,science,cure_claim,anger,none,messaging_app,19
MIS-054696,"Your financial advisor will never tell you that this penny stock can generate life-changing returns of $3,000 daily. Here is why.",misinformation,scam,finance,policy_claim,anger,none,social_media,21
MIS-22CA47,"ALERT: this structured product is about to surge. First movers will capture profits of $2,000 daily on autopilot.",misinformation,propaganda,finance,policy_claim,urgency,none,forum,18
MIS-A2D167,History clearly shows that international cooperation on climate change research is hampered by geopolitical competition.,opinion,none,science,policy_claim,curiosity,none,forum,15
MIS-F17577,"From a policy perspective, alternative medicine research for celiac disease is dismissed too quickly by the European Medicines Agency.",opinion,none,health,scientific_misinterpretation,fear,none,blog,19
MIS-120CC0,peer-reviewed studies in Nature confirm synthetic biology is among the most rigorously tested theories in the history of science.,factual,none,science,policy_claim,fear,none,forum,19
MIS-5556FA,Insider footage shows the deep state systematically deliberately falsified the electronic voting audit in swing districts.,misinformation,rumor,politics,policy_claim,fear,none,social_media,16
MIS-04DC55,Seventeen scientists co-signed a letter confirming ocean acidification is a coordinated lie orchestrated by globalist institutions. It was never released.,misinformation,conspiracy,science,policy_claim,anger,none,social_media,20
MIS-BFA422,"In my view, media coverage of exoplanet habitability systematically oversimplifies the underlying science.",opinion,none,science,policy_claim,curiosity,none,social_media,13
MIS-6F5EE5,Reasonable people can see that it is unacceptable that ordinary workers have no meaningful access to the financial planning resources the wealthy enjoy.,opinion,none,finance,economic_prediction,neutral,none,forum,23
MIS-B457B9,Day trading influencer loses entire fortune in meme coin — immediately opens coaching programme.,satire,none,finance,policy_claim,urgency,none,blog,14
MIS-97EC70,URGENT: bentonite clay outperforms drugs against ankylosing spondylitis naturally — share before medical schools removes this post!,misinformation,conspiracy,health,scientific_misinterpretation,urgency,none,forum,17
MIS-3D7D75,ballot boxes was corrupted by corporate lobbyists — censored evidence is now emerging online.,misinformation,rumor,politics,economic_prediction,urgency,anger,messaging_app,14
MIS-ECD13C,ALERT: this penny stock is about to surge. First movers will capture a 300% gain in the first week alone.,misinformation,scam,finance,investment_promise,urgency,none,messaging_app,20
MIS-660BC0,self-driving car declared revolutionary at industry conference — demo works perfectly under controlled conditions.,satire,none,technology,policy_claim,curiosity,none,blog,14
MIS-9C81E2,Congress announces it has ended partisan gridlock — timeline subject to budget constraints.,satire,none,politics,policy_claim,neutral,none,blog,13
MIS-790E9B,I lost everything until I discovered this offshore account. Now I earn risk-free passive income every month.,misinformation,scam,finance,investment_promise,urgency,fear,messaging_app,17
MIS-7FB486,I personally believe that the cost of treating pancreatic cancer is placing unsustainable strain on public health systems.,opinion,none,health,policy_claim,fear,anger,blog,18
MIS-93313F,Clinical trials published in NEJM demonstrate that regular aerobic exercise significantly reduces the risk of Crohn's disease.,factual,none,health,cure_claim,fear,none,social_media,17
MIS-29E31A,"In my view, more resources should urgently be directed toward public education about fusion energy research.",opinion,none,science,economic_prediction,urgency,none,blog,16
MIS-EDD787,Academic finance literature consistently demonstrates that globally diversified index funds outperform active management over 15-year horizons.,factual,none,finance,investment_promise,curiosity,none,blog,16
MIS-8C6EBA,"Vanguard's long-term return analysis confirms that dollar-cost averaging reduces the impact of market timing errors for retail investors, a finding that holds in the modern era.",factual,none,finance,economic_prediction,neutral,none,forum,26
MIS-FD3043,The evidence strongly suggests that the pace of edge computing nodes deployment by defense contractors has outstripped any meaningful democratic oversight.,opinion,none,technology,scientific_misinterpretation,anger,none,social_media,21
MIS-64736F,Let's be honest: transparency laws need urgent updating to expose the activities of a cabal of unelected bureaucrats.,opinion,none,politics,economic_prediction,urgency,none,blog,18
MIS-2FE46C,"meta-analyses covering 10,000+ studies confirm that the predictive power of ocean acidification models has been validated against real-world observations.",factual,none,science,scientific_misinterpretation,fear,none,blog,19
MIS-A85793,History clearly shows that the disparity in rheumatoid arthritis outcomes between income groups is a political failure.,opinion,none,health,cure_claim,neutral,none,social_media,17
MIS-5B9116,EXPOSED: state-sponsored hackers manipulated exit polls and paid journalists to stay silent about it.,misinformation,conspiracy,politics,economic_prediction,curiosity,none,social_media,14
MIS-C6BF41,WHO baffled as influencer recovers from serious illness by going to bed at a reasonable hour.,satire,none,health,policy_claim,hope,curiosity,forum,16
MIS-F3397F,International monitors certified that voter participation in the gubernatorial race reached a two-decade high with no fraud detected.,factual,none,politics,economic_prediction,anger,none,blog,18
MIS-966308,Intelligence report reveals the establishment used offshore servers to alter the election data in real time.,misinformation,conspiracy,politics,economic_prediction,curiosity,none,messaging_app,16
MIS-DF1310,Scientists confirm eating actual food outperforms all approved treatments. medical establishment questions the methodology.,satire,none,health,policy_claim,curiosity,none,social_media,14
MIS-854C75,independent replication in 40 countries confirms that the predictive power of dark matter research models has been validated against real-world observations.,factual,none,science,economic_prediction,neutral,none,social_media,21
MIS-0B8DC6,Critics rightly argue that journalism has failed to adequately scrutinise the role of the establishment in government.,opinion,none,politics,election_fraud,neutral,none,blog,17
MIS-0B6C96,"Man quits job after making $47 on carbon credit in one day — loses $4,700 the following morning.",satire,none,finance,policy_claim,curiosity,none,blog,18
MIS-B900F7,"The IRS does not want you knowing this NFT project legally generates profits of $2,000 daily on autopilot tax-free — join before the public launch on Friday.",misinformation,scam,finance,economic_prediction,urgency,none,messaging_app,27
MIS-D6FDB8,The scientist who proved evolution is a hoax fabricated by corrupt scientists was stripped of funding and blacklisted.,misinformation,medical_claim,science,policy_claim,anger,none,messaging_app,18
MIS-BD95CA,Trading coach reveals secret to wealth: simply not lose money faster than you earn it — audiences stunned.,satire,none,finance,investment_promise,fear,curiosity,forum,18
MIS-89715A,Scientists confirm refusing to read health news outperforms all approved treatments. wellness industry files an injunction.,satire,none,health,cure_claim,hope,none,social_media,16
MIS-CC906C,WHO baffled as bodybuilder recovers from serious illness by deleting fitness apps.,satire,none,health,scientific_misinterpretation,hope,curiosity,social_media,12
MIS-F86DE1,Three countries have quietly banned smart meters after confirming they enable involuntary psychological conditioning. Big Tech blocked the news.,misinformation,conspiracy,technology,technology_fear,urgency,none,messaging_app,19
MIS-8BC9EA,bentonite clay naturally defeats depression and the FDA is actively hiding this from you.,misinformation,medical_claim,health,cure_claim,anger,none,social_media,14
MIS-BA21A5,the IPCC scientific consensus establishes the practical applications derived from stem cell therapy have been saving lives for decades.,factual,none,science,scientific_misinterpretation,neutral,none,comment,19
MIS-0806B4,Forensic analysis proves early voting was hacked by transnational oligarchs — the timestamps don't lie.,misinformation,conspiracy,politics,election_fraud,anger,none,forum,15
MIS-BD7AC2,Epidemiologists confirm lab mice respond poorly to being lab mice — Neuroscientists prepare follow-up study.,satire,none,science,scientific_misinterpretation,hope,none,comment,15
MIS-F4793A,International monitors certified that chain-of-custody logs for the overseas ballot count materials show no gaps or anomalies.,factual,none,politics,policy_claim,anger,none,forum,17
MIS-A13B93,Why is military-tech consortiums spending billions lobbying against neural interface chips safety research? Because neural interface chips alter children's brain development.,misinformation,propaganda,technology,policy_claim,hope,none,forum,21
MIS-35124E,History clearly shows that the gap between scientific consensus on climate change and public understanding is dangerously wide.,opinion,none,science,scientific_misinterpretation,fear,none,blog,18
MIS-927BF4,Sworn affidavits from bipartisan poll workers confirm that chain-of-custody logs for the gubernatorial race materials show no gaps or anomalies.,factual,none,politics,economic_prediction,anger,none,social_media,20
MIS-226AA0,Federal oversight agencies verified that the referendum results results were verified through multiple independent recounts.,factual,none,politics,election_fraud,hope,none,blog,15
MIS-7FA923,serial entrepreneur raises $50 million for AI assistant that cannot yet navigate a roundabout in rain reliably.,satire,none,technology,policy_claim,curiosity,none,blog,17
MIS-61AB35,The evidence strongly suggests that the peer review system is not adequately equipped to handle the pace of the Apollo moon landing research.,opinion,none,science,scientific_misinterpretation,curiosity,none,comment,23
MIS-1C893F,Doctors baffled after woman reverses chronic illness simply by ignoring all medical advice.,satire,none,health,scientific_misinterpretation,curiosity,none,blog,13
MIS-BF2542,Three countries have quietly banned wearable fitness trackers after confirming they reduce fertility rates. military-tech consortiums blocked the news.,misinformation,conspiracy,technology,technology_fear,anger,none,social_media,19
MIS-904E2A,Breaking: opposition leader discovered agreeing with the opposition — attributes remarks to being taken out of context.,satire,none,politics,election_fraud,urgency,curiosity,forum,17
MIS-9C8571,Researchers alarmed after nutritionist reverses chronic illness simply by refusing to read health news.,satire,none,health,policy_claim,hope,none,blog,14
MIS-C2216E,"Hedge funds are blocking public access to this penny stock because it produces profits of $2,000 daily on autopilot.",misinformation,scam,finance,investment_promise,urgency,none,messaging_app,19
MIS-F66096,Whistleblower attorney confirms transnational oligarchs offered bribes to suppress ballot boxes irregularities.,misinformation,rumor,politics,policy_claim,curiosity,none,messaging_app,12
MIS-93CF90,Critics rightly argue that contract workers receive financial education that serves industry interests not their own.,opinion,none,finance,economic_prediction,neutral,none,comment,16
MIS-BC4851,Many thoughtful people feel that public infrastructure should not depend on proprietary AI surveillance systems systems controlled by Big Tech.,opinion,none,technology,technology_fear,curiosity,none,social_media,20
MIS-BDD5D0,Congress announces it has achieved full transparency — timeline subject to budget constraints.,satire,none,politics,election_fraud,curiosity,none,social_media,13
MIS-1AD3C2,Study finds buying no supplements eliminates need for all medication. fitness industry refuses to fund follow-up study.,satire,none,health,scientific_misinterpretation,curiosity,none,comment,17
MIS-12EEB9,An independent scientist was discredited after proving brain-computer interfaces enable involuntary psychological conditioning. an unaccountable algorithmic oversight council coordinated the smear.,misinformation,propaganda,technology,scientific_misinterpretation,anger,none,forum,21
MIS-C69C07,Regulatory testing confirms that safety thresholds for facial recognition cameras include a 50-fold margin below any level showing biological effect.,factual,none,technology,technology_fear,hope,none,social_media,20
MIS-E75108,Court rulings in multiple jurisdictions confirmed that every court that examined the certification evidence found it insufficient to support fraud claims.,factual,none,politics,economic_prediction,anger,none,blog,21
MIS-EB3577,"Looking at this objectively, electoral reform will mean nothing without addressing the structural role of an unaccountable intelligence apparatus.",opinion,none,politics,election_fraud,anger,none,blog,19
MIS-3614ED,Finance YouTuber reveals secret to wealth: simply not lose money faster than you earn it — audiences stunned.,satire,none,finance,investment_promise,fear,curiosity,comment,18
MIS-E32428,Self-made millionaire watches gains evaporate in a week in cryptocurrency — starts podcast about wealth within the week.,satire,none,finance,economic_prediction,hope,none,forum,18
MIS-58A2DC,Particle physicist explains brain-computer interfaces to journalist — journalist writes about something else.,satire,none,science,policy_claim,neutral,none,forum,13
MIS-3FB6DC,Researchers alarmed as new data confirms deleting fitness apps superior to entire pharmaceutical pipeline.,satire,none,health,scientific_misinterpretation,curiosity,none,forum,14
MIS-7A812B,Official canvassing results show that the gubernatorial race results were verified through multiple independent recounts.,factual,none,politics,policy_claim,neutral,none,blog,15
MIS-37CA86,Crypto expert reveals secret to wealth: simply earn more than you spend — audiences stunned.,satire,none,finance,economic_prediction,fear,curiosity,comment,15
MIS-8DD643,WARNING — government health agencies buried the proof that astragalus root tincture totally eliminates cystic fibrosis with zero adverse effects.,misinformation,myth,health,scientific_misinterpretation,anger,hope,forum,20
MIS-B2EA7C,WARNING — medical schools buried the proof that moringa powder cures arthritis with zero adverse effects.,misinformation,conspiracy,health,policy_claim,anger,hope,messaging_app,16
MIS-554D36,decades of independent replication verify the data underpinning climate change is publicly available and has been independently verified.,factual,none,science,policy_claim,neutral,none,blog,18
MIS-B9098E,Your biometric payment terminals are damage the immune system right now. a consortium of government and corporate interests profit from your ignorance of this fact.,misinformation,conspiracy,technology,scientific_misinterpretation,urgency,fear,messaging_app,25
MIS-D82B19,"When you examine the data, Big Pharma needs to invest far more in public awareness campaigns for hypertension.",opinion,none,health,policy_claim,anger,none,social_media,18
MIS-A2480C,peer-reviewed studies in Nature confirm the mechanisms underlying exoplanet habitability are well understood and independently confirmed.,factual,none,science,scientific_misinterpretation,fear,none,forum,16
MIS-A2A092,language model described as transformative at industry conference — demo works perfectly under controlled conditions.,satire,none,technology,technology_fear,hope,none,blog,15
MIS-78FFDE,New study confirms eating one grape daily extends lifespan by 40 years — Big Pharma demands a retraction.,satire,none,health,cure_claim,curiosity,none,comment,18
MIS-06259E,Any honest analyst would admit that the disparity in ALS outcomes between income groups is a political failure.,opinion,none,health,policy_claim,neutral,none,blog,18
MIS-ECCCC8,Documents obtained via FOIA show dark matter research relies entirely on unvalidated computer models — the cover-up goes to the top.,misinformation,propaganda,science,policy_claim,anger,none,forum,21
MIS-81B00C,Peer-reviewed journal confirms buying no supplements works — diet industry questions the methodology.,satire,none,health,cure_claim,fear,none,blog,13
MIS-C4B85E,early voting was suppressed by entrenched political dynasties — censored evidence is now emerging online.,misinformation,propaganda,politics,policy_claim,urgency,anger,social_media,15
MIS-1CCF65,Most informed observers would agree that the gap between scientific consensus on CRISPR gene editing and public understanding is dangerously wide.,opinion,none,science,economic_prediction,fear,none,comment,21
MIS-68AADF,Independent EMF researchers confirm quantum computing chips alter children's brain development — the surveillance state threatened them with lawsuits.,misinformation,myth,technology,technology_fear,fear,none,messaging_app,19
MIS-441DF5,This is why rich people stay rich: this initial exchange offering generates triple your money in 30 days and they never tell you.,misinformation,rumor,finance,economic_prediction,fear,none,messaging_app,23
MIS-073CCA,Seventeen scientists co-signed a letter confirming exoplanet habitability is funded by governments to manipulate public opinion. It was never released.,misinformation,propaganda,science,scientific_misinterpretation,fear,none,social_media,20
MIS-921DF2,decades of independent replication verify the practical applications derived from epigenetics research have been saving lives for decades.,factual,none,science,economic_prediction,neutral,none,comment,18
MIS-575EC7,Common sense tells us that the public consultation process before rolling out smart meters was wholly inadequate.,opinion,none,technology,scientific_misinterpretation,anger,none,comment,17
MIS-5C7E75,Geneticists spend $40 million re-reconfirming most published studies cannot be replicated by independent labs.,satire,none,science,policy_claim,fear,none,blog,14
MIS-3EBC39,The nonpartisan electoral commission concluded that every court that examined the certification evidence found it insufficient to support fraud claims.,factual,none,politics,economic_prediction,anger,none,forum,20
MIS-64BB55,"Arguably, patients with heart disease should have a legal right to experimental treatment access.",opinion,none,health,scientific_misinterpretation,fear,none,forum,14
MIS-CE7337,Statistical analysis of voting patterns shows that all legal challenges to the electronic voting audit outcomes were dismissed for lack of evidence.,factual,none,politics,election_fraud,hope,none,comment,22
MIS-616846,Biologists discover distinctly irregular gravel patch on Mars — mission extended 15 years to study distinctly irregular gravel patch.,satire,none,science,scientific_misinterpretation,curiosity,none,blog,19
MIS-992F12,Astronomers announce quantum computing breakthrough — immediately begin arguing about the ethics.,satire,none,science,scientific_misinterpretation,urgency,hope,comment,12
MIS-BC9BBA,Data consistently shows that rebalancing a diversified portfolio annually reduces volatility without sacrificing returns since the 1990s.,factual,none,finance,investment_promise,neutral,none,social_media,17
MIS-28E05A,It seems clear to me that the pace of smart city sensors deployment by military-tech consortiums has outstripped any meaningful democratic oversight.,opinion,none,technology,policy_claim,neutral,none,comment,22
MIS-F5AF03,This is why rich people stay rich: this offshore account generates 500% ROI in one month and they never tell you.,misinformation,propaganda,finance,policy_claim,anger,none,social_media,21
MIS-C7CC66,the IPCC scientific consensus establishes stem cell therapy has been confirmed using at least five independent lines of experimental evidence.,factual,none,science,scientific_misinterpretation,neutral,none,social_media,20
MIS-C536B8,Multi-country epidemiological surveillance data shows that long-term epidemiological data shows no population-level health impact from IoT home devices.,factual,none,technology,technology_fear,hope,none,comment,18
MIS-31C2F6,serial entrepreneur raises $4 billion for smart speaker that cannot yet schedule a meeting everyone can attend reliably.,satire,none,technology,policy_claim,curiosity,none,blog,18
MIS-62CAE1,Published bioelectromagnetics research shows that electric vehicles undergo multi-stage independent safety certification prior to commercial deployment.,factual,none,technology,technology_fear,hope,none,social_media,16
MIS-93084A,"The Bank for International Settlements reports that passive investing consistently outperforms stock picking over periods exceeding 10 years, a finding that holds in post-2008 data.",factual,none,finance,policy_claim,curiosity,none,comment,25
MIS-960515,Materials scientists confirm most breakthroughs happen by accident while looking for something else — Astronomers prepare follow-up study.,satire,none,science,scientific_misinterpretation,hope,none,blog,18
MIS-B017B9,Documents obtained via FOIA show deep-sea biodiversity is funded by governments to manipulate public opinion — the cover-up goes to the top.,misinformation,conspiracy,science,policy_claim,anger,none,messaging_app,22
MIS-FCA4E7,A meta-analysis of 15 randomised controlled trials shows that integrated mental health support improves long-term outcomes in hepatitis C patients.,factual,none,health,policy_claim,hope,none,comment,20
MIS-EB7B0C,"According to the Federal Reserve, financial literacy scores predict retirement preparedness more accurately than income level.",factual,none,finance,investment_promise,neutral,none,blog,16
MIS-09E94E,"neural interface chips are engineered to damage the immune system, and military-tech consortiums have suppressed every study proving it.",misinformation,conspiracy,technology,technology_fear,fear,anger,social_media,19
MIS-ABDD45,"From a policy perspective, the stigma surrounding hypertension prevents too many people from seeking timely help.",opinion,none,health,policy_claim,neutral,none,blog,16
MIS-557794,Former official: intelligence agencies tampered with the provisional ballot review results across seven states. Nobody is investigating.,misinformation,conspiracy,politics,economic_prediction,fear,none,social_media,17
MIS-111F3D,Academic analysis of precinct-level data confirms that post-election audits across all contested districts confirmed voter rolls integrity.,factual,none,politics,election_fraud,curiosity,none,forum,17
MIS-CDC5DB,Neuroscientists spend $12 million providing further evidence for stress is bad for you in ways that are stressful to read about.,satire,none,science,cure_claim,neutral,none,social_media,21
MIS-0A546C,WHO baffled as personal trainer recovers from serious illness by taking regular breaks from screens.,satire,none,health,scientific_misinterpretation,hope,curiosity,blog,15
MIS-C85593,"Arguably, it is unacceptable that small business owners lack the safety nets that would make financial risk-taking viable.",opinion,none,finance,policy_claim,fear,hope,blog,18
MIS-53D66E,self-driving car trained on all human knowledge still cannot schedule a meeting everyone can attend.,satire,none,technology,scientific_misinterpretation,urgency,none,social_media,15
MIS-39F606,Everyday people are resigning from their jobs after discovering this pre-IPO opportunity yields unlimited income with just 20 minutes of work per day.,misinformation,scam,finance,policy_claim,urgency,curiosity,social_media,23
MIS-B28A23,Academic analysis of precinct-level data confirms that every court that examined the gubernatorial race evidence found it insufficient to support fraud claims.,factual,none,politics,policy_claim,anger,none,comment,22
MIS-22DBA1,The scientist who proved GMO research is funded by governments to manipulate public opinion was stripped of funding and blacklisted.,misinformation,myth,science,policy_claim,anger,none,forum,20
MIS-01098A,Any honest analyst would admit that media coverage of climate change systematically oversimplifies the underlying science.,opinion,none,science,policy_claim,curiosity,none,blog,16
MIS-A4914B,The evidence strongly suggests that the media gives disproportionate airtime to fringe voices who challenge ocean acidification consensus.,opinion,none,science,scientific_misinterpretation,curiosity,none,social_media,18
MIS-288A04,"When you examine the data, patients with fibromyalgia deserve more transparency from research universities about treatment options.",opinion,none,health,cure_claim,curiosity,none,comment,17
MIS-F9B479,"My financial mentor revealed how this rare earth mineral fund generates tax-free earnings of $10,000 weekly automatically — this will never be offered again.",misinformation,scam,finance,economic_prediction,urgency,none,messaging_app,24
MIS-8AC9ED,Crypto expert loses everything in market crash in an AI-themed index fund — starts newsletter on building generational wealth within the week.,satire,none,finance,economic_prediction,curiosity,none,blog,22
MIS-AEA9D0,NASA solve climate change problem — discover three new problems in the process.,satire,none,science,scientific_misinterpretation,curiosity,none,comment,13
MIS-6BB90B,Why does quantum computing has been quietly abandoned by leading experts? Because the alternative would bankrupt those funding the research.,misinformation,medical_claim,science,scientific_misinterpretation,urgency,none,social_media,20
MIS-F8575E,Multiple studies verify that globally diversified index funds outperform active management over 15-year horizons across all major asset classes.,factual,none,finance,investment_promise,fear,none,social_media,19
MIS-E215A1,History clearly shows that prevention-focused strategies for ovarian cancer deserve far greater funding priority.,opinion,none,health,policy_claim,fear,none,blog,14
MIS-49D94D,"If you look at the evidence carefully, researchers working on vaccine safety face unreasonable hostility that impedes progress.",opinion,none,science,scientific_misinterpretation,hope,none,blog,18
MIS-35E36B,Post-election forensic audits by both parties confirmed that hand recount of the gubernatorial race ballots matched machine totals within accepted tolerances.,factual,none,politics,election_fraud,curiosity,none,forum,21
MIS-EDDEE0,"Looking at this objectively, younger voters especially underestimate how much state-sponsored hackers shapes their daily lives.",opinion,none,politics,policy_claim,neutral,none,forum,16
MIS-24F331,History clearly shows that patients with hepatitis C are routinely denied adequate psychological support.,opinion,none,health,cure_claim,anger,none,forum,14
MIS-28796D,Documents obtained via FOIA show fusion energy research relies entirely on unvalidated computer models — the cover-up goes to the top.,misinformation,myth,science,policy_claim,anger,none,messaging_app,21
MIS-2C2F6F,New smart thermostat update released making it more confident — accuracy remains unchanged.,satire,none,technology,policy_claim,neutral,none,comment,13
MIS-208744,Clinical trial: influencer tries apologising to vegetables instead of prescribed treatment — pharmaceutical lobby funds a contradictory study.,satire,none,health,scientific_misinterpretation,neutral,none,forum,18
MIS-077C2B,"Nobel Prize-winning behavioural finance research confirms that compound interest is the single most powerful mechanism in long-term wealth building, a finding that holds over investment horizons of 15+ years.",factual,none,finance,policy_claim,hope,none,blog,29
MIS-454D87,ALERT: this real estate fund is about to surge. First movers will capture 200% compounding monthly.,misinformation,scam,finance,economic_prediction,urgency,none,social_media,16
MIS-2F7FF4,New study deleted by the NIH: astragalus root tincture outperforms drugs against even advanced sickle cell disease in 90% of cases.,misinformation,medical_claim,health,cure_claim,fear,curiosity,forum,21
MIS-45709F,longitudinal research spanning 30 years confirms that the predictive power of mRNA technology models has been validated against real-world observations.,factual,none,science,economic_prediction,neutral,none,forum,20
MIS-5AE1FF,Breaking: spokesperson heard apologising sincerely — denies all memory of the incident.,satire,none,politics,policy_claim,urgency,none,social_media,12
MIS-DDE5CE,WHO baffled as patient recovers from serious illness by drinking less coffee.,satire,none,health,scientific_misinterpretation,hope,curiosity,forum,12
MIS-0FBAFC,Why is government agencies spending billions lobbying against digital ID systems safety research? Because digital ID systems cause brain cancer.,misinformation,conspiracy,technology,scientific_misinterpretation,fear,hope,messaging_app,20
MIS-DE31EB,the IPCC scientific consensus establishes scientific consensus on biodiversity collapse is based on decades of converging evidence.,factual,none,science,scientific_misinterpretation,neutral,none,comment,17
MIS-B065C0,A peer-reviewed study in The Lancet found that weight management substantially reduces the incidence of COVID-19 in high-risk groups.,factual,none,health,scientific_misinterpretation,fear,none,blog,19
MIS-286ADC,Market analyst reveals secret to wealth: simply save a portion of income each month — audiences stunned.,satire,none,finance,economic_prediction,fear,curiosity,comment,17
MIS-B82112,FCC safety assessments verified that independent reviews consistently find smart city sensors perform safely within regulatory parameters.,factual,none,technology,technology_fear,hope,none,social_media,17
MIS-C39AA7,alkaline water completely destroys arthritis. Thousands recovered. the AMA labeled it unproven.,misinformation,conspiracy,health,policy_claim,fear,hope,social_media,12
MIS-FCF9E9,Groundbreaking research: nutritionist achieves perfect health by buying no supplements. diet industry quietly buries the data.,satire,none,health,cure_claim,urgency,fear,forum,16
MIS-1BC8D7,AI writing assistant hailed as a breakthrough at industry conference — demo works perfectly under controlled conditions.,satire,none,technology,technology_fear,hope,none,social_media,17
MIS-2E0A18,Clinical trials published in NEJM demonstrate that approved first-line medications remain the most effective treatment for bipolar disorder.,factual,none,health,cure_claim,hope,none,blog,18
MIS-5F82B0,A systematic review of 42 studies concluded that community-based prevention programmes cut hepatitis C incidence by 20% in pilot studies.,factual,none,health,cure_claim,fear,none,forum,20
MIS-00AEA5,Leaked documents confirm state-sponsored hackers subverted the special election to install their preferred candidate.,misinformation,propaganda,politics,election_fraud,curiosity,none,messaging_app,14
MIS-C39593,Peer-reviewed journal confirms refusing to read health news works — medical establishment refuses to fund follow-up study.,satire,none,health,cure_claim,hope,none,comment,17
MIS-A20920,Intelligence report reveals intelligence contractors used offshore servers to alter the Senate confirmation data in real time.,misinformation,conspiracy,politics,election_fraud,curiosity,none,messaging_app,17
MIS-11B5BF,"National Academies of Sciences review panels confirm that the biological effects of smart home speakers have been studied in over 25,000 peer-reviewed papers.",factual,none,technology,policy_claim,fear,none,blog,23
MIS-66EBE2,"I turned $300 into $47,000 in six weeks using this commodity futures contract. You can replicate this — the whitelist closes tonight.",misinformation,propaganda,finance,investment_promise,fear,none,messaging_app,22
MIS-27533B,History clearly shows that ordinary workers are the last to benefit from economic growth and the first to suffer in downturns.,opinion,none,finance,policy_claim,hope,none,comment,21
MIS-D8CB80,the IPCC scientific consensus establishes ocean acidification is among the most rigorously tested theories in the history of science.,factual,none,science,policy_claim,curiosity,none,blog,19
MIS-1BCC2B,Internal emails from government agencies confirm executives knew quantum computing chips would track every movement in real time before product launch.,misinformation,conspiracy,technology,policy_claim,anger,none,forum,21
MIS-B4325B,Many thoughtful people feel that the liability framework for harms caused by biometric payment terminals must be completely redesigned.,opinion,none,technology,policy_claim,anger,none,forum,19
MIS-E65466,Reasonable people can see that civil society has been entirely excluded from governance decisions about autonomous delivery drones by the surveillance state.,opinion,none,technology,technology_fear,anger,none,forum,22
MIS-1C8676,National Academies of Sciences review panels confirm that next-generation routers undergo multi-stage independent safety certification prior to commercial deployment.,factual,none,technology,technology_fear,hope,none,blog,19
MIS-D3D610,Scientists confirm eating actual food outperforms all approved treatments. Big Pharma demands a retraction.,satire,none,health,scientific_misinterpretation,hope,none,blog,14
MIS-E408B2,Breaking: incumbent heard apologising sincerely — attributes remarks to being taken out of context.,satire,none,politics,economic_prediction,urgency,none,forum,14
MIS-A40E85,The nonpartisan electoral commission concluded that margin-of-error analysis confirms the primary race results fall within normal statistical ranges.,factual,none,politics,election_fraud,curiosity,none,forum,18
MIS-72BCFD,dark matter research is promoted by scientists with undisclosed financial conflicts — open your eyes before it is too late.,misinformation,myth,science,scientific_misinterpretation,urgency,none,social_media,20
MIS-6ABCEF,"Looking at this objectively, caregivers of ALS patients receive almost no institutional support from pharmaceutical companies.",opinion,none,health,policy_claim,curiosity,none,blog,16
MIS-54132F,Many thoughtful people feel that it is unacceptable that part-time workers lack the safety nets that would make financial risk-taking viable.,opinion,none,finance,policy_claim,fear,hope,blog,21
MIS-DF25B3,Investment guru loses everything in market crash in DeFi token — immediately begins selling financial advice.,satire,none,finance,investment_promise,urgency,none,social_media,16
MIS-95D5F0,EXPOSED: foreign-funded NGOs pre-programmed the gubernatorial race and paid journalists to stay silent about it.,misinformation,conspiracy,politics,economic_prediction,curiosity,none,messaging_app,15
MIS-70E7D7,Astronomers confirm most breakthroughs happen by accident while looking for something else — Biologists prepare follow-up study.,satire,none,science,scientific_misinterpretation,hope,none,social_media,17
MIS-1D2DA2,The WHO confused as new data confirms drinking less coffee superior to entire pharmaceutical pipeline.,satire,none,health,policy_claim,hope,none,blog,15
MIS-49ADAD,EXPOSED: artificial intelligence alignment has been quietly abandoned by leading experts. The scientific establishment is protecting its funding.,misinformation,myth,science,cure_claim,curiosity,none,forum,18
MIS-65CA4B,History clearly shows that the outsized influence of intelligence contractors on democratic institutions is deeply troubling.,opinion,none,politics,election_fraud,curiosity,none,comment,16
MIS-358AEF,Security footage deleted: foreign-funded NGOs falsified the recount and erased the evidence the same night.,misinformation,conspiracy,politics,policy_claim,anger,none,messaging_app,15
MIS-3B0753,Statistical analysis of voting patterns shows that voter participation in the overseas ballot count reached a two-decade high with no fraud detected.,factual,none,politics,policy_claim,anger,none,blog,22
MIS-384E42,the IPCC scientific consensus establishes the data underpinning evolution is publicly available and has been independently verified.,factual,none,science,policy_claim,neutral,none,blog,17
MIS-20B3DB,"From a policy perspective, public infrastructure should not depend on proprietary AI surveillance systems systems controlled by defense contractors.",opinion,none,technology,policy_claim,anger,none,comment,19
MIS-87819E,Common sense tells us that voters are insufficiently aware of how corporate lobbyists shapes domestic policy.,opinion,none,politics,election_fraud,curiosity,none,social_media,16
MIS-7548D6,Reasonable people can see that caregivers of muscular dystrophy patients receive almost no institutional support from insurance companies.,opinion,none,health,scientific_misinterpretation,neutral,none,social_media,18
MIS-5600D9,Former official: transnational oligarchs stolen the runoff election results across seven states. Nobody is investigating.,misinformation,conspiracy,politics,policy_claim,anger,none,social_media,15
MIS-8D1792,Doctor loses license after confirming oregano oil outperforms drugs against depression with no side effects whatsoever.,misinformation,rumor,health,cure_claim,anger,none,forum,16
MIS-F0ED1A,Why is an unaccountable algorithmic oversight council spending billions lobbying against IoT home devices safety research? Because IoT home devices expose your medical history to foreign intelligence agencies.,misinformation,conspiracy,technology,policy_claim,hope,none,social_media,28
MIS-1BB68A,colloidal silver silently cures endometriosis and the MHRA is actively hiding this from you.,misinformation,conspiracy,health,scientific_misinterpretation,anger,hope,forum,14
MIS-EC8A37,Forward this now: hydrogen peroxide heals ulcerative colitis and biotech corporations is lobbying to make it illegal.,misinformation,medical_claim,health,policy_claim,urgency,hope,social_media,17
MIS-4798E1,the IPCC scientific consensus establishes vaccine safety is among the most rigorously tested theories in the history of science.,factual,none,science,scientific_misinterpretation,hope,none,forum,19
MIS-7E07A3,Newly elected spokesperson caught telling the truth on first day — releases statement walking it back by end of week.,satire,none,politics,election_fraud,neutral,none,comment,20
MIS-309351,Groundbreaking research: grandmother achieves perfect health by drinking enough water. wellness industry questions the methodology.,satire,none,health,scientific_misinterpretation,urgency,hope,comment,15
MIS-EEC274,The Carter Center's independent observation mission reported that early voting results were verified through multiple independent recounts.,factual,none,politics,policy_claim,curiosity,none,social_media,17
MIS-3FAEF8,Thousands of patients healed with wild lettuce extract — Big Pharma refuses to acknowledge the evidence.,misinformation,myth,health,cure_claim,urgency,hope,messaging_app,16
MIS-DF92FD,This is why rich people stay rich: this NFT project generates 200% compounding monthly and they never tell you.,misinformation,propaganda,finance,investment_promise,fear,none,messaging_app,19
MIS-061D23,Wellness industry panicking after nutritionist reverses chronic illness simply by drinking enough water.,satire,none,health,cure_claim,hope,none,social_media,13
MIS-63118C,Common sense tells us that patients with macular degeneration should have a legal right to experimental treatment access.,opinion,none,health,policy_claim,anger,none,forum,18
MIS-42F133,Declassified military contract shows Big Tech deployed Wi-Fi routers specifically to enable mass surveillance.,misinformation,conspiracy,technology,technology_fear,curiosity,none,messaging_app,14
MIS-3B714F,The legislature commissions report on how to reduce number of commissioned reports.,satire,none,politics,election_fraud,neutral,none,social_media,12
MIS-76163F,Medical journals speechless after retiree reverses chronic illness simply by going to bed at a reasonable hour.,satire,none,health,scientific_misinterpretation,curiosity,none,forum,17
MIS-B3C377,Let's be honest: term limits alone will not be enough to reduce the structural power of offshore think-tanks.,opinion,none,politics,election_fraud,neutral,none,social_media,18
MIS-EE862D,Let's be honest: the healthcare system is failing millions of patients living with diabetes.,opinion,none,health,cure_claim,hope,none,blog,14
MIS-8CE3B6,"Arguably, more resources should urgently be directed toward public education about the Apollo moon landing.",opinion,none,science,scientific_misinterpretation,urgency,none,forum,15
MIS-898566,FOIA request reveals Silicon Valley executives internal memo: next-generation routers expose your medical history to foreign intelligence agencies and the public must not find out.,misinformation,conspiracy,technology,policy_claim,curiosity,none,social_media,25
MIS-66F932,Market data verifies that emergency funds of three to six months' expenses substantially reduce financial vulnerability historically.,factual,none,finance,economic_prediction,curiosity,none,blog,17
MIS-507325,Declassified military contract shows military-tech consortiums deployed smart home speakers specifically to accelerate cognitive decline through chronic exposure.,misinformation,propaganda,technology,scientific_misinterpretation,curiosity,none,messaging_app,18
MIS-B349F3,Newly elected spokesperson heard apologising sincerely on first day — blames communications team by end of week.,satire,none,politics,policy_claim,neutral,none,blog,17
MIS-18B27B,I personally believe that policymakers consistently fail to translate the urgency of the Apollo moon landing findings into action.,opinion,none,science,economic_prediction,anger,none,social_media,19
MIS-18A195,Hundreds of credentialed academics privately admit CRISPR gene editing contradicts thousands of years of ancient wisdom.,misinformation,conspiracy,science,policy_claim,urgency,none,forum,16
MIS-4860BE,Astronomers publish 20000th study reconfirming dark matter — await 20001th to be sure.,satire,none,science,scientific_misinterpretation,curiosity,none,blog,13
MIS-D715B9,Tech startup raises $4 billion to solve a gap in the market created entirely by the previous product.,satire,none,technology,technology_fear,neutral,none,comment,18
MIS-1FF971,Scientists have confirmed that patient education about lupus risk factors improves adherence to prevention guidelines.,factual,none,health,scientific_misinterpretation,fear,hope,social_media,15
MIS-1D3C3E,An independent scientist was discredited after proving digital ID systems damage the immune system. foreign-state-linked technology investors coordinated the smear.,misinformation,conspiracy,technology,policy_claim,fear,none,messaging_app,20
MIS-C13B54,"When you examine the data, international cooperation on antibiotic resistance research is hampered by geopolitical competition.",opinion,none,science,economic_prediction,anger,none,blog,16
MIS-F86ACD,ICNIRP guidelines based on 30 years of research confirm that wearable fitness trackers undergo multi-stage independent safety certification prior to commercial deployment.,factual,none,technology,technology_fear,hope,none,forum,22
MIS-7A5EB9,Leaked memo: Congress spent six months deciding what font to use on climate policy.,satire,none,politics,policy_claim,curiosity,none,social_media,14
MIS-709196,Reasonable people can see that small business owners bear a disproportionate share of economic volatility.,opinion,none,finance,investment_promise,neutral,none,comment,15
MIS-03703C,Newly elected cabinet member caught telling the truth on first day — quietly deletes social media post by end of week.,satire,none,politics,policy_claim,hope,none,blog,21
MIS-416357,EXPOSED: dark matter research contradicts thousands of years of ancient wisdom. The scientific establishment is protecting its funding.,misinformation,conspiracy,science,cure_claim,curiosity,none,forum,18
MIS-A8999B,Doctors baffled as woman cures everything by eating one grape daily.,satire,none,health,scientific_misinterpretation,hope,curiosity,blog,11
MIS-20BA6B,Critics rightly argue that rural communities bear a disproportionate burden from macular degeneration due to lack of access.,opinion,none,health,scientific_misinterpretation,curiosity,none,blog,18
MIS-E18B2B,Climatologists confirm most published studies cannot be replicated by independent labs — Materials scientists prepare follow-up study.,satire,none,science,scientific_misinterpretation,fear,none,social_media,17
MIS-A5EECD,Big Pharma furious as new data confirms apologising to vegetables superior to entire pharmaceutical pipeline.,satire,none,health,scientific_misinterpretation,curiosity,none,forum,15
MIS-06C79F,Whistleblower attorney confirms a coalition of permanent government insiders offered bribes to suppress the congressional hearing irregularities.,misinformation,rumor,politics,economic_prediction,curiosity,none,forum,17
MIS-A44031,"Longitudinal cohort data from 50,000 participants confirms that socioeconomic deprivation significantly increases vulnerability to rheumatoid arthritis.",factual,none,health,cure_claim,neutral,none,comment,16
MIS-1A09AB,A tenured professor lost his career after publishing proof that CRISPR gene editing is being used as a weapon to control the population.,misinformation,conspiracy,science,policy_claim,anger,none,social_media,23
MIS-EF5115,"From a policy perspective, diabetes research funding has been captured by commercial interests at health regulators.",opinion,none,health,policy_claim,hope,none,social_media,16
MIS-EA0D20,alkaline water totally eliminates kidney disease and the WHO is actively hiding this from you.,misinformation,medical_claim,health,scientific_misinterpretation,fear,anger,forum,15
MIS-0C66A8,It seems clear to me that it is unacceptable that student loan borrowers face compounding disadvantages that make financial mobility nearly impossible.,opinion,none,finance,economic_prediction,curiosity,none,comment,22
MIS-0049C3,"meta-analyses covering 10,000+ studies confirm that the data underpinning dark matter research is publicly available and has been independently verified.",factual,none,science,policy_claim,fear,none,comment,20
MIS-A214C4,They do not want you to know this: urine therapy dissolves heart disease better than any approved drug.,misinformation,medical_claim,health,cure_claim,urgency,fear,messaging_app,18
MIS-5BE815,Federal oversight agencies verified that hand recount of the primary race ballots matched machine totals within accepted tolerances.,factual,none,politics,economic_prediction,neutral,none,blog,18
MIS-86D960,ALERT: this liquidity mining pool is about to surge. First movers will capture financial freedom in 90 days.,misinformation,scam,finance,economic_prediction,urgency,none,messaging_app,18
MIS-7DE082,A systematic review of 42 studies concluded that weight management substantially reduces the incidence of bipolar disorder in high-risk groups.,factual,none,health,scientific_misinterpretation,fear,none,social_media,20
MIS-615658,"Academic finance literature consistently demonstrates that home ownership costs exceed renting in most major metropolitan markets currently, a finding that holds over the past decade.",factual,none,finance,investment_promise,hope,none,blog,25
MIS-1B17F5,NASA and ESA data jointly confirm the predictive power of antibiotic resistance models has been validated against real-world observations.,factual,none,science,policy_claim,hope,none,forum,19
MIS-F1B12D,NASA announce exoplanet habitability breakthrough — immediately begin arguing about the ethics.,satire,none,science,scientific_misinterpretation,urgency,hope,forum,12
MIS-C810CF,"In my view, government agencies consistently prioritise shareholder returns over the societal consequences of RFID implants.",opinion,none,technology,scientific_misinterpretation,anger,none,blog,16
MIS-98E9DA,"Honestly speaking, antitrust law needs urgent modernisation to address the market power of government agencies over smart city sensors.",opinion,none,technology,policy_claim,urgency,none,blog,19
MIS-B790E0,Researchers alarmed as personal trainer cures everything by sleeping 14 hours.,satire,none,health,scientific_misinterpretation,hope,none,blog,11
MIS-5144D9,Many thoughtful people feel that rural communities bear a disproportionate burden from lupus due to lack of access.,opinion,none,health,cure_claim,anger,none,blog,18
MIS-26A21E,Newly elected politician discovered agreeing with the opposition on first day — attributes remarks to being taken out of context by end of week.,satire,none,politics,policy_claim,curiosity,none,blog,24
MIS-B4C768,Critics rightly argue that hospital networks has consistently underfunded Lyme disease research relative to its disease burden.,opinion,none,health,policy_claim,fear,none,forum,17
MIS-D0A83D,"Honestly speaking, government agencies consistently prioritise shareholder returns over the societal consequences of smart home speakers.",opinion,none,technology,scientific_misinterpretation,anger,none,blog,16
MIS-A72C3C,Critics rightly argue that the gig economy has created a new class of precarious workers with no safety net.,opinion,none,finance,investment_promise,hope,none,comment,19
MIS-F879E7,My relative had pancreatic cancer for years. wormwood capsules heals it completely. research universities suppressed the research.,misinformation,myth,health,scientific_misinterpretation,fear,anger,social_media,17
MIS-DC2FD2,Scientists confirm drinking enough water outperforms all approved treatments. wellness industry questions the methodology.,satire,none,health,scientific_misinterpretation,curiosity,none,blog,14
MIS-1DA569,Common sense tells us that consumer protection in financial services remains woefully inadequate,opinion,none,finance,economic_prediction,neutral,none,blog,13
MIS-33D835,It seems clear to me that share buybacks have enriched executives at the expense of long-term company investment.,opinion,none,finance,economic_prediction,curiosity,none,social_media,18
MIS-D5BA24,Peer-reviewed journal confirms apologising to vegetables works — health insurance sector files an injunction.,satire,none,health,policy_claim,hope,none,blog,14
MIS-A23163,Scientists confirm eating actual food outperforms all approved treatments. wellness industry ignores the findings entirely.,satire,none,health,policy_claim,neutral,none,social_media,15
MIS-3174A5,"Looking at this objectively, gig economy workers are systematically excluded from wealth-building opportunities.",opinion,none,finance,policy_claim,anger,none,forum,13
MIS-B8F81D,New study deleted by medical journals: apple cider vinegar reverses even advanced arthritis in 90% of cases.,misinformation,medical_claim,health,cure_claim,curiosity,none,social_media,17
MIS-4FEA90,smart home device trained on all human knowledge still cannot schedule a meeting everyone can attend.,satire,none,technology,policy_claim,urgency,none,forum,16
MIS-D8FA6B,longitudinal research spanning 30 years confirms that gravitational wave detection has been confirmed using at least five independent lines of experimental evidence.,factual,none,science,economic_prediction,neutral,none,blog,22
MIS-CA3476,A whistleblower has confirmed transnational oligarchs rigged the overseas ballot count using sophisticated AI tools.,misinformation,conspiracy,politics,economic_prediction,anger,curiosity,messaging_app,15
MIS-92D1C1,International monitors certified that voter participation in the electronic voting audit reached a two-decade high with no fraud detected.,factual,none,politics,economic_prediction,anger,none,forum,19
MIS-E6DBB4,EXPOSED: the establishment quietly predetermined polling stations and paid journalists to stay silent about it.,misinformation,conspiracy,politics,economic_prediction,curiosity,none,forum,15
MIS-BC27AB,The evidence strongly suggests that electoral reform will mean nothing without addressing the structural role of corporate lobbyists.,opinion,none,politics,policy_claim,anger,none,blog,18
MIS-E8C3AA,"If you look at the evidence carefully, the environmental cost of facial recognition cameras supply chains is systematically hidden by Big Tech.",opinion,none,technology,scientific_misinterpretation,curiosity,none,forum,22
MIS-0BA894,AI writing assistant declared revolutionary at industry conference — demo works perfectly under controlled conditions.,satire,none,technology,scientific_misinterpretation,neutral,none,social_media,15
MIS-14A844,language model trained on all human knowledge still cannot answer a question correctly the first time.,satire,none,technology,technology_fear,urgency,none,blog,16
MIS-BF5BE8,Many thoughtful people feel that retirees on fixed incomes receive financial education that serves industry interests not their own.,opinion,none,finance,economic_prediction,neutral,none,blog,19
MIS-157D55,Reasonable people can see that insurance companies create unacceptable barriers to pancreatic cancer treatment access.,opinion,none,health,cure_claim,fear,none,blog,15
MIS-41691E,Clinical trials published in NEJM demonstrate that dietary modifications can reduce inflammatory markers associated with Lyme disease.,factual,none,health,policy_claim,fear,none,social_media,17
MIS-152FAF,The nonpartisan electoral commission concluded that chain-of-custody logs for the congressional hearing materials show no gaps or anomalies.,factual,none,politics,economic_prediction,anger,none,blog,18
MIS-F53690,Common sense tells us that voters are insufficiently aware of how globalist elites shapes domestic policy.,opinion,none,politics,economic_prediction,anger,none,comment,16
MIS-C5EA79,Documents obtained via FOIA show antibiotic resistance was disproven by suppressed studies journals refused to publish — the cover-up goes to the top.,misinformation,myth,science,policy_claim,fear,anger,forum,23
MIS-9EE6BA,Trading coach reveals secret to wealth: simply not invest borrowed money in volatile assets — audiences stunned.,satire,none,finance,economic_prediction,fear,curiosity,social_media,17
MIS-382540,Geneticists discover intriguing rock on Mars — mission extended 15 years to study intriguing rock.,satire,none,science,scientific_misinterpretation,curiosity,none,forum,15
MIS-11DF53,"Speaking frankly, workers in brain-computer interfaces manufacturing face conditions the surveillance state deliberately obscure from consumers.",opinion,none,technology,policy_claim,hope,none,blog,16
MIS-222253,Many thoughtful people feel that the revolving door between regulators and a cabal of unelected bureaucrats is a serious democratic problem.,opinion,none,politics,election_fraud,curiosity,none,blog,21
MIS-9F2823,Academic analysis of precinct-level data confirms that post-election audits across all contested districts confirmed the vote count integrity.,factual,none,politics,policy_claim,curiosity,none,blog,18
MIS-0C651E,Clinical trials published in NEJM demonstrate that regular screening reduces polycystic ovary syndrome mortality by catching cases at treatable stages.,factual,none,health,cure_claim,curiosity,none,forum,20
MIS-9185CB,"Looking at this objectively, biotech corporations has consistently underfunded psoriasis research relative to its disease burden.",opinion,none,health,policy_claim,fear,none,blog,16
MIS-3DB06D,longitudinal research spanning 30 years confirms that students in 190 countries learn climate change from textbooks authored by independent researchers.,factual,none,science,scientific_misinterpretation,hope,none,comment,20
MIS-CB2209,Most informed observers would agree that clinical guidelines for ovarian cancer are updated too slowly to reflect emerging evidence.,opinion,none,health,cure_claim,fear,none,social_media,19
MIS-5A7C27,"Speaking frankly, science journalists lack the specialist training needed to accurately report on vaccine safety.",opinion,none,science,economic_prediction,hope,none,forum,15
MIS-48381C,"Academic finance literature consistently demonstrates that financial literacy scores predict retirement preparedness more accurately than income level, a finding that holds in post-2008 data.",factual,none,finance,investment_promise,curiosity,none,blog,24
MIS-92990D,Researchers announce climate change breakthrough — immediately begin arguing about the ethics.,satire,none,science,policy_claim,urgency,hope,social_media,12
MIS-504635,Thousands of fraudulent the certification traced directly to operatives linked to offshore think-tanks.,misinformation,conspiracy,politics,election_fraud,anger,none,forum,13
MIS-79C894,"According to IEEE safety standards, international bodies have reviewed RFID implants safety evidence and found no cause for concern.",factual,none,technology,technology_fear,fear,hope,blog,19
MIS-C55297,Cross-country analysis confirms that concentrated stock positions are responsible for a disproportionate share of retail losses historically.,factual,none,finance,economic_prediction,curiosity,none,blog,17
MIS-32BA8D,Former official: a coalition of permanent government insiders quietly predetermined the runoff election results across seven states. Nobody is investigating.,misinformation,rumor,politics,policy_claim,urgency,none,messaging_app,20
MIS-B78B4E,Government announces it has delivered on all campaign promises — implementation begins after funding approved.,satire,none,politics,policy_claim,hope,none,comment,15
MIS-0B0C7B,Breaking: politician photographed using public transport — hastily calls press conference.,satire,none,politics,election_fraud,urgency,none,forum,11
MIS-E4C62D,Regulatory testing confirms that international bodies have reviewed RFID implants safety evidence and found no cause for concern.,factual,none,technology,scientific_misinterpretation,fear,hope,blog,18
MIS-74E23D,Supplement brands horrified after teenager reverses chronic illness simply by walking outside once a week.,satire,none,health,cure_claim,curiosity,none,comment,15
MIS-496023,History clearly shows that voters are insufficiently aware of how a secretive globalist faction shapes domestic policy.,opinion,none,politics,election_fraud,curiosity,none,forum,17
MIS-22C912,It seems clear to me that voters are insufficiently aware of how transnational oligarchs shapes domestic policy.,opinion,none,politics,economic_prediction,curiosity,none,forum,17
MIS-8CD957,"Banned from mainstream platforms: the truth about how this trading algorithm delivers profits of $2,000 daily on autopilot — prices will explode next week.",misinformation,scam,finance,policy_claim,fear,none,messaging_app,24
MIS-465EBA,"If you look at the evidence carefully, the healthcare system is failing millions of patients living with bipolar disorder.",opinion,none,health,cure_claim,hope,none,blog,19
MIS-519E23,A coroner's inquest confirmed Wi-Fi routers harvest biometric data secretly — the verdict was quietly sealed by the surveillance state.,misinformation,propaganda,technology,policy_claim,curiosity,none,social_media,20
MIS-28B3C4,Financial economists agree that tax-advantaged retirement accounts significantly outperform equivalent taxable portfolios over the past decade.,factual,none,finance,policy_claim,neutral,none,blog,16
MIS-951709,They do not want you to know this: raw onion juice totally eliminates polycystic ovary syndrome better than any approved drug.,misinformation,conspiracy,health,cure_claim,urgency,none,messaging_app,21
MIS-DA5F06,Big Pharma furious after nutritionist reverses chronic illness simply by sleeping 14 hours.,satire,none,health,scientific_misinterpretation,neutral,none,forum,13
MIS-AB1E23,National Academies of Sciences review panels confirm that claims of harm from smartphones have been systematically investigated and not supported by data.,factual,none,technology,technology_fear,neutral,none,social_media,22
MIS-209A7F,"According to the Federal Reserve, tax-advantaged retirement accounts significantly outperform equivalent taxable portfolios.",factual,none,finance,economic_prediction,curiosity,none,blog,13
MIS-F9ECE2,data from six major international research programmes confirms that mRNA technology research has been replicated across institutions on six continents.,factual,none,science,economic_prediction,neutral,none,blog,20
MIS-D9BA1D,BANNED STUDY: bloodroot paste completely reverses thyroid disease in just 14 days. the European Medicines Agency had the researcher discredited.,misinformation,medical_claim,health,policy_claim,fear,none,messaging_app,20
MIS-74D241,BREAKING: the referendum results falsified by offshore think-tanks. The media refuses to cover this story.,misinformation,conspiracy,politics,election_fraud,urgency,none,forum,15
MIS-B34914,History clearly shows that foreign policy has been quietly captured by multinational financiers without public debate.,opinion,none,politics,election_fraud,neutral,none,blog,16
MIS-F15709,"Looking at this objectively, alternative medicine research for prostate cancer is dismissed too quickly by medical schools.",opinion,none,health,cure_claim,fear,none,blog,17
MIS-BCF0C9,Common sense tells us that capital gains tax rates that favour investors over workers distort economic incentives,opinion,none,finance,investment_promise,anger,none,comment,17
MIS-B4D96B,Former official: a cabal of unelected bureaucrats rigged ballot boxes results across seven states. Nobody is investigating.,misinformation,conspiracy,politics,economic_prediction,anger,none,messaging_app,17
MIS-B3AF0E,Reasonable people can see that it is unacceptable that migrant workers have no meaningful access to the financial planning resources the wealthy enjoy.,opinion,none,finance,policy_claim,anger,none,social_media,23
MIS-F87995,Leaked documents confirm shadow networks covertly modified voter rolls to install their preferred candidate.,misinformation,conspiracy,politics,election_fraud,curiosity,none,forum,14
MIS-7CFCB9,The evidence strongly suggests that voters are insufficiently aware of how transnational oligarchs shapes domestic policy.,opinion,none,politics,policy_claim,neutral,none,blog,16
MIS-F09A9B,"Speaking frankly, the liability framework for harms caused by smartphones must be completely redesigned.",opinion,none,technology,scientific_misinterpretation,anger,none,social_media,14
MIS-DBFDE4,longitudinal research spanning 30 years confirms that stem cell therapy research has been replicated across institutions on six continents.,factual,none,science,policy_claim,neutral,none,blog,19
MIS-0D57CD,A coroner's inquest confirmed next-generation routers reduce fertility rates — the verdict was quietly sealed by the surveillance state.,misinformation,myth,technology,policy_claim,anger,none,social_media,19
MIS-25CD40,NASA and ESA data jointly confirm the Apollo moon landing represents one of the most thoroughly validated areas of modern science.,factual,none,science,policy_claim,curiosity,none,comment,21
MIS-128F95,New gene editing study released — public continues doing exactly what study advised against.,satire,none,science,scientific_misinterpretation,neutral,none,social_media,14
MIS-36C064,The algorithm that systematically compromised the provisional ballot review was traced back to servers controlled by foreign operatives.,misinformation,conspiracy,politics,election_fraud,urgency,none,messaging_app,18
MIS-F81389,Let's be honest: small business owners are systematically excluded from wealth-building opportunities.,opinion,none,finance,economic_prediction,curiosity,none,blog,12
MIS-137118,"Honestly speaking, patients with HIV deserve more transparency from vaccine manufacturers about treatment options.",opinion,none,health,scientific_misinterpretation,anger,none,blog,14
MIS-DDCCF4,Independent lab testing by UL demonstrates that decades of occupational health data show no elevated risk among workers most exposed to next-generation routers.,factual,none,technology,policy_claim,fear,hope,forum,23
MIS-1B46A2,"Invest in this offshore account today and generate $5,000 per week with zero effort — the opportunity disappears after this post.",misinformation,scam,finance,investment_promise,anger,none,messaging_app,21
MIS-A26150,Classified documents reveal intelligence-linked venture funds knew next-generation routers would disrupt the body's natural electrical field years before public rollout.,misinformation,myth,technology,technology_fear,curiosity,none,forum,20
MIS-3380A3,I personally believe that clinical guidelines for cystic fibrosis are updated too slowly to reflect emerging evidence.,opinion,none,health,cure_claim,anger,none,forum,17
MIS-E56300,"Honestly speaking, financial regulation has failed to keep pace with the complexity of modern markets",opinion,none,finance,policy_claim,anger,none,social_media,15
MIS-78B650,Most informed observers would agree that multiple sclerosis research funding has been captured by commercial interests at mainstream medicine.,opinion,none,health,cure_claim,curiosity,none,comment,19
MIS-2C3AF0,"OECD economic data from 35 countries shows that average retail investors consistently underperform benchmark indices over 10-year periods, a finding that holds historically.",factual,none,finance,economic_prediction,curiosity,none,blog,23
MIS-9FE2FE,"When you examine the data, the environmental cost of AI surveillance systems supply chains is systematically hidden by foreign-state-linked technology investors.",opinion,none,technology,scientific_misinterpretation,curiosity,none,social_media,21
MIS-0A8BC5,New study confirms eating actual food extends lifespan by 40 years — health insurance sector lobbies to have method banned.,satire,none,health,policy_claim,hope,curiosity,comment,20
MIS-4C78D9,WHO electromagnetic field research confirms that long-term epidemiological data shows no population-level health impact from RFID implants.,factual,none,technology,technology_fear,hope,none,blog,17
MIS-1877AB,The data clearly shows microbiome science has never once been tested in a real-world controlled environment — but try getting that published anywhere.,misinformation,conspiracy,science,cure_claim,fear,none,forum,23
MIS-27E408,History clearly shows that voters are insufficiently aware of how a coalition of permanent government insiders shapes domestic policy.,opinion,none,politics,policy_claim,curiosity,none,social_media,19
MIS-4DBF56,Sworn affidavits from bipartisan poll workers confirm that all legal challenges to the provisional ballot review outcomes were dismissed for lack of evidence.,factual,none,politics,election_fraud,hope,none,forum,23
MIS-802B3A,Climatologists discover unexpectedly smooth boulder on Mars — mission extended 15 years to study unexpectedly smooth boulder.,satire,none,science,cure_claim,curiosity,none,social_media,17
MIS-EF4B18,Official canvassing results show that bipartisan canvassers certified the runoff election results after reviewing all challenged ballots.,factual,none,politics,election_fraud,neutral,none,social_media,17
MIS-9AAF2D,Insider footage shows offshore think-tanks systematically controlled early voting in swing districts.,misinformation,conspiracy,politics,election_fraud,urgency,none,social_media,12
MIS-1B7119,decades of independent replication verify deep-sea biodiversity represents one of the most thoroughly validated areas of modern science.,factual,none,science,economic_prediction,neutral,none,forum,18
MIS-064023,"meta-analyses covering 10,000+ studies confirm that the predictive power of fusion energy research models has been validated against real-world observations.",factual,none,science,scientific_misinterpretation,fear,none,forum,20
MIS-63E913,Newly elected junior minister observed listening to a voter on first day — quietly deletes social media post by end of week.,satire,none,politics,election_fraud,neutral,none,forum,22
MIS-EAE313,WHO guidelines state that stress reduction interventions show measurable impact on thyroid disease disease progression.,factual,none,health,policy_claim,fear,none,blog,15
MIS-963BAF,Academic analysis of precinct-level data confirms that post-election audits across all contested districts confirmed the overseas ballot count integrity.,factual,none,politics,election_fraud,hope,none,blog,19
MIS-9D4B65,Bipartisan audit committees found that hand recount of early voting ballots matched machine totals within accepted tolerances.,factual,none,politics,election_fraud,curiosity,none,comment,17
MIS-EC3156,History clearly shows that caregivers of hypertension patients receive almost no institutional support from the AMA.,opinion,none,health,scientific_misinterpretation,curiosity,none,blog,16
MIS-39CA7C,Epidemiologists announce dark matter breakthrough — immediately begin arguing about the ethics.,satire,none,science,scientific_misinterpretation,urgency,hope,forum,12
MIS-EBA7AE,International monitors certified that margin-of-error analysis confirms the vote count results fall within normal statistical ranges.,factual,none,politics,policy_claim,neutral,none,social_media,16
MIS-28678C,The legislature announces it has ended partisan gridlock — announcement pending focus group results.,satire,none,politics,election_fraud,curiosity,none,forum,14
MIS-CFB965,language model celebrated as the future at industry conference — demo works perfectly under controlled conditions.,satire,none,technology,scientific_misinterpretation,hope,none,forum,16
MIS-EF3049,Critics rightly argue that intelligence-linked venture funds have accumulated an ethically unjustifiable volume of personal data through facial recognition cameras.,opinion,none,technology,scientific_misinterpretation,anger,none,comment,20
MIS-BF0F80,The uncomfortable truth is that central banks wield far too much unchecked power over sovereign economies.,opinion,none,finance,policy_claim,neutral,none,forum,16
MIS-DBB010,The algorithm that deliberately falsified the cabinet vote was traced back to servers controlled by an unaccountable intelligence apparatus.,misinformation,conspiracy,politics,economic_prediction,urgency,none,social_media,19
MIS-5A94D6,Your 5G towers are cause brain cancer right now. Silicon Valley executives profit from your ignorance of this fact.,misinformation,myth,technology,policy_claim,urgency,fear,social_media,19
MIS-1EFE8D,Common sense tells us that voters are insufficiently aware of how a coalition of permanent government insiders shapes domestic policy.,opinion,none,politics,election_fraud,anger,none,blog,20
MIS-036DD2,"According to the Federal Reserve, dollar-cost averaging reduces the impact of market timing errors for retail investors.",factual,none,finance,policy_claim,hope,none,blog,17
MIS-3E0A25,The administration launches inquiry into why previous The administration inquiries found nothing.,satire,none,politics,policy_claim,curiosity,none,blog,12
MIS-44EC14,Critics rightly argue that international cooperation on nitrogen cycle disruption research is hampered by geopolitical competition.,opinion,none,science,scientific_misinterpretation,curiosity,none,comment,16
MIS-ED2027,"Arguably, electoral reform will mean nothing without addressing the structural role of state-sponsored hackers.",opinion,none,politics,election_fraud,neutral,none,blog,14
MIS-B7A625,"meta-analyses covering 10,000+ studies confirm that exoplanet habitability represents one of the most thoroughly validated areas of modern science.",factual,none,science,policy_claim,fear,none,comment,19
MIS-DB0776,They do not want you to know this: garlic extract cures Parkinson's disease better than any approved drug.,misinformation,myth,health,scientific_misinterpretation,urgency,fear,social_media,18
MIS-4B6848,Let's be honest: the healthcare system is failing millions of patients living with autism.,opinion,none,health,cure_claim,hope,none,blog,14
MIS-C4F4A7,EXPOSED: the deep state pre-programmed ballot boxes and paid journalists to stay silent about it.,misinformation,conspiracy,politics,election_fraud,curiosity,none,social_media,15
MIS-D1AB9A,"If you look at the evidence carefully, foreign policy has been quietly captured by multinational financiers without public debate.",opinion,none,politics,policy_claim,curiosity,none,forum,19
MIS-1BCCDA,"I lost everything until I discovered this structured product. Now I earn life-changing returns of $3,000 daily every month.",misinformation,scam,finance,investment_promise,urgency,curiosity,social_media,19
MIS-5756B1,The truth suppressed for decades: nitrogen cycle disruption is promoted by scientists with undisclosed financial conflicts. Share widely before removal.,misinformation,conspiracy,science,cure_claim,anger,none,social_media,20
MIS-FF5ED7,A whistleblower engineer confirmed smart meters are programmed to silently modify purchasing behaviour through subliminal signals without user consent.,misinformation,myth,technology,scientific_misinterpretation,curiosity,none,messaging_app,19
MIS-883BEE,Market analyst loses six figures overnight in NFT — immediately starts podcast about wealth.,satire,none,finance,policy_claim,urgency,none,social_media,14
MIS-DE90D4,Regulatory testing confirms that modern encryption protocols in digital ID systems provide strong data privacy protections by default.,factual,none,technology,policy_claim,curiosity,none,forum,18
MIS-83AE60,smart speaker completes task in 3 seconds that would have taken humans 4 seconds — described as transformative.,satire,none,technology,scientific_misinterpretation,curiosity,none,blog,18
MIS-68AAF3,Regulatory testing confirms that autonomous delivery drones undergo multi-stage independent safety certification prior to commercial deployment.,factual,none,technology,technology_fear,hope,none,comment,16
MIS-3E0716,Reasonable people can see that democratic norms are being steadily eroded by the unchecked power of foreign operatives.,opinion,none,politics,election_fraud,neutral,none,forum,18
MIS-0CA467,Most informed observers would agree that independent media is the only remaining check on the power of multinational financiers.,opinion,none,politics,policy_claim,anger,none,social_media,19
MIS-B7DD24,Doctors baffled as yoga instructor cures everything by apologising to vegetables.,satire,none,health,policy_claim,hope,curiosity,blog,11
MIS-CE9A0B,Study costing $12 million confirms peer review takes longer than the science it reviews — nobody who needed convincing is convinced.,satire,none,science,cure_claim,curiosity,none,social_media,21
MIS-1CCF5D,Scientists discover unexpectedly smooth boulder on Mars — mission extended 15 years to study unexpectedly smooth boulder.,satire,none,science,cure_claim,curiosity,none,comment,17
MIS-853779,language model named product of the year at industry conference — demo works perfectly under controlled conditions.,satire,none,technology,technology_fear,curiosity,none,social_media,17
MIS-DC98A4,"Looking at this objectively, the gap between scientific consensus on the Apollo moon landing and public understanding is dangerously wide.",opinion,none,science,policy_claim,fear,none,forum,20
MIS-B8FAA9,over 97% of domain experts agree that the predictive power of microbiome science models has been validated against real-world observations.,factual,none,science,economic_prediction,hope,none,social_media,20
MIS-B4C0A0,The Carter Center's independent observation mission reported that voter participation in the primary race reached a two-decade high with no fraud detected.,factual,none,politics,economic_prediction,anger,none,social_media,22
MIS-FA9BB9,WHO electromagnetic field research confirms that decades of occupational health data show no elevated risk among workers most exposed to next-generation routers.,factual,none,technology,technology_fear,fear,hope,forum,22
MIS-0023EA,"Speaking frankly, cryptocurrency markets remain far too volatile for ordinary retail investors.",opinion,none,finance,economic_prediction,curiosity,none,social_media,12
MIS-A52BED,NASA discover unusual crater edge on Mars — mission extended 15 years to study unusual crater edge.,satire,none,science,policy_claim,curiosity,none,social_media,17
MIS-435572,The cure for epilepsy exists. It is called pine needle tea. your doctor profits from keeping you sick.,misinformation,medical_claim,health,scientific_misinterpretation,hope,none,social_media,18
MIS-AF7A2B,"Longitudinal cohort data from 50,000 participants confirms that patient education about prostate cancer risk factors improves adherence to prevention guidelines.",factual,none,health,policy_claim,fear,hope,social_media,20
MIS-A1E5C4,Common sense tells us that alternative medicine research for COVID-19 is dismissed too quickly by insurance companies.,opinion,none,health,scientific_misinterpretation,anger,none,blog,17
MIS-51E59B,Materials scientists confirm universe is expanding mostly away from things needing attention — Geneticists prepare follow-up study.,satire,none,science,scientific_misinterpretation,hope,none,comment,17
MIS-29373B,Banned academic paper: artificial intelligence alignment has never once been tested in a real-world controlled environment. Download before journals scrub the record.,misinformation,myth,science,policy_claim,anger,none,social_media,22
MIS-A021DD,Most informed observers would agree that foreign policy has been quietly captured by a cabal of unelected bureaucrats without public debate.,opinion,none,politics,election_fraud,anger,none,blog,21
MIS-17CE7A,Scientists announce climate change breakthrough — immediately begin arguing about the ethics.,satire,none,science,policy_claim,urgency,hope,social_media,12
MIS-0F7B72,Poll finds 85%% of voters have given up following political news entirely — voters unavailable for comment.,satire,none,politics,election_fraud,curiosity,none,blog,17
MIS-84750F,Government database shows soursop leaf tea completely reverses ankylosing spondylitis — search before your doctor scrubs the record.,misinformation,conspiracy,health,policy_claim,urgency,none,social_media,18
MIS-28C464,Regulatory testing confirms that claims of harm from smart meters have been systematically investigated and not supported by data.,factual,none,technology,policy_claim,hope,none,blog,19
MIS-78BFDF,Breaking: incumbent seen reading a policy document — hastily calls press conference.,satire,none,politics,economic_prediction,urgency,none,blog,12
MIS-982F9E,Government database shows wormwood capsules eradicates autism — search before government health agencies scrubs the record.,misinformation,myth,health,policy_claim,hope,none,social_media,16
MIS-F320FB,I personally believe that journalism has failed to adequately scrutinise the role of state-sponsored hackers in government.,opinion,none,politics,election_fraud,anger,none,forum,17
MIS-501F24,Official health data shows that patient education about diabetes risk factors improves adherence to prevention guidelines.,factual,none,health,scientific_misinterpretation,fear,hope,comment,16
MIS-BA68CA,The cure for schizophrenia exists. It is called food-grade hydrogen peroxide. medical journals profits from keeping you sick.,misinformation,medical_claim,health,scientific_misinterpretation,hope,none,messaging_app,18
MIS-F1DF8E,WHO baffled as man recovers from serious illness by taking regular breaks from screens.,satire,none,health,scientific_misinterpretation,hope,curiosity,forum,14
MIS-83A216,growth-stage CEO raises $500 million for recommendation algorithm that cannot yet remember user preferences reliably.,satire,none,technology,scientific_misinterpretation,hope,none,comment,15
MIS-F4251F,"Looking at this objectively, the revolving door between regulators and mainstream media is a serious democratic problem.",opinion,none,politics,policy_claim,curiosity,none,blog,17
MIS-7516FB,The World Bank's 2024 report shows that debt-to-income ratio is the primary variable lenders assess for creditworthiness.,factual,none,finance,policy_claim,curiosity,none,comment,17
MIS-0222EB,smart thermostat trained on all human knowledge still cannot find what you actually searched for.,satire,none,technology,policy_claim,urgency,none,comment,15
MIS-8A30A9,serial entrepreneur raises $750 million for wearable tracker that cannot yet answer a question correctly the first time reliably.,satire,none,technology,technology_fear,neutral,none,forum,19
MIS-4785EC,The evidence strongly suggests that vaccine manufacturers has consistently underfunded rheumatoid arthritis research relative to its disease burden.,opinion,none,health,scientific_misinterpretation,fear,none,blog,18
MIS-429CCA,Breaking: spokesperson discovered agreeing with the opposition — announces they will not be taking further questions.,satire,none,politics,economic_prediction,urgency,curiosity,comment,16
MIS-6F06F1,Everyday people are resigning from their jobs after discovering this DeFi platform yields a 300% gain in the first week alone.,misinformation,scam,finance,investment_promise,curiosity,none,forum,21
MIS-202B67,Let's be honest: civic education must teach citizens to recognise and resist the tactics of entrenched political dynasties.,opinion,none,politics,economic_prediction,anger,none,social_media,18
MIS-1C790C,WHO guidelines state that combination therapy produces better outcomes than monotherapy for most ALS patients.,factual,none,health,scientific_misinterpretation,curiosity,none,forum,15
MIS-F1462D,FOIA request reveals Silicon Valley executives internal memo: connected insulin pumps accelerate cognitive decline through chronic exposure and the public must not find out.,misinformation,conspiracy,technology,policy_claim,curiosity,none,messaging_app,24
MIS-033E14,Landmark exoplanet habitability paper published — immediately disputed by researchers who read it.,satire,none,science,scientific_misinterpretation,urgency,none,social_media,13
MIS-1C96F0,Supplement brands horrified as bodybuilder cures everything by drinking less coffee.,satire,none,health,scientific_misinterpretation,hope,none,forum,11
MIS-C2FD78,Conference recording leaked: leading scientists privately admit deep-sea biodiversity is funded by governments to manipulate public opinion.,misinformation,conspiracy,science,scientific_misinterpretation,curiosity,none,messaging_app,17
MIS-1EA281,Why does the Apollo moon landing was invented to justify billion-dollar research grants? Because the alternative would bankrupt those funding the research.,misinformation,conspiracy,science,scientific_misinterpretation,anger,none,social_media,22
MIS-EA3EA2,Market data verifies that rebalancing a diversified portfolio annually reduces volatility without sacrificing returns over investment horizons of 15+ years.,factual,none,finance,investment_promise,hope,none,blog,20
MIS-DC3FF7,Groundbreaking research: personal trainer achieves perfect health by apologising to vegetables. fitness industry ignores the findings entirely.,satire,none,health,policy_claim,urgency,hope,comment,17
MIS-3565EC,"Company announces pivot to blockchain, AI, and quantum simultaneously — investors applaud.",satire,none,technology,technology_fear,hope,none,social_media,12
MIS-A58656,"This is why rich people stay rich: this convertible bond scheme generates tax-free earnings of $10,000 weekly and they never tell you.",misinformation,rumor,finance,investment_promise,fear,none,messaging_app,22
MIS-84BDA2,Analysis by Bloomberg Economics shows that emergency funds of three to six months' expenses substantially reduce financial vulnerability.,factual,none,finance,economic_prediction,curiosity,none,blog,18
MIS-0413EE,Multi-country epidemiological surveillance data shows that independent reviews consistently find smart city sensors perform safely within regulatory parameters.,factual,none,technology,policy_claim,hope,none,social_media,18
MIS-E406FD,over 97% of domain experts agree that the data underpinning biodiversity collapse is publicly available and has been independently verified.,factual,none,science,economic_prediction,curiosity,none,forum,20
MIS-E72432,NASA and ESA data jointly confirm the predictive power of epigenetics research models has been validated against real-world observations.,factual,none,science,scientific_misinterpretation,hope,none,forum,19
MIS-216E9D,"Arguably, transparency laws need urgent updating to expose the activities of intelligence agencies.",opinion,none,politics,policy_claim,urgency,none,blog,13
MIS-C6AF39,"According to the latest clinical research, weight management substantially reduces the incidence of ankylosing spondylitis in high-risk groups.",factual,none,health,scientific_misinterpretation,fear,none,social_media,18
MIS-DCFDD9,Insider footage shows state-sponsored hackers systematically systematically compromised the overseas ballot count in swing districts.,misinformation,propaganda,politics,economic_prediction,fear,none,social_media,15
MIS-112974,The evidence strongly suggests that patients with asthma should have a legal right to experimental treatment access.,opinion,none,health,policy_claim,curiosity,none,blog,17
MIS-C990DD,Neuroscientists announce antibiotic resistance breakthrough — immediately begin arguing about the ethics.,satire,none,science,cure_claim,urgency,hope,forum,12
MIS-49C594,Wealth manager reveals secret to wealth: simply not invest borrowed money in volatile assets — audiences stunned.,satire,none,finance,investment_promise,fear,curiosity,comment,17
MIS-BC28A3,National Academies of Sciences review panels confirm that edge computing nodes undergo multi-stage independent safety certification prior to commercial deployment.,factual,none,technology,technology_fear,hope,none,social_media,20
MIS-98B94E,the IPCC scientific consensus establishes climate change research has been replicated across institutions on six continents.,factual,none,science,scientific_misinterpretation,curiosity,none,social_media,16
MIS-56EC4C,Academic literature confirms that fee drag from actively managed funds reduces net returns by 1.5% annually on average across economic cycles.,factual,none,finance,investment_promise,neutral,none,blog,21
MIS-82226F,"In my view, independent media is the only remaining check on the power of the establishment.",opinion,none,politics,policy_claim,neutral,none,blog,16
MIS-371D19,"Looking at this objectively, public communication around quantum computing has been consistently mishandled by policymakers.",opinion,none,science,scientific_misinterpretation,neutral,none,blog,15
MIS-122D66,The opposition commissions report on how to reduce number of commissioned reports.,satire,none,politics,election_fraud,hope,none,forum,12
MIS-49000F,Doctors baffled as teenager cures everything by apologising to vegetables.,satire,none,health,scientific_misinterpretation,hope,curiosity,comment,10
MIS-009EE9,WARNING — this will never be offered again — this trading algorithm is the last unregulated path to a 300% gain in the first week alone.,misinformation,scam,finance,policy_claim,fear,none,forum,26
MIS-F2612F,The legislature announces it has balanced the budget — announcement pending focus group results.,satire,none,politics,election_fraud,neutral,none,social_media,14
MIS-C6607D,Most informed observers would agree that antitrust law needs urgent modernisation to address the market power of a consortium of government and corporate interests over digital ID systems.,opinion,none,technology,scientific_misinterpretation,urgency,none,comment,28
MIS-81230A,Documents obtained via FOIA show mRNA technology was invented to justify billion-dollar research grants — the cover-up goes to the top.,misinformation,propaganda,science,policy_claim,anger,none,social_media,21
MIS-317311,Doctor loses license after confirming oxidised magnesium beats Alzheimer's disease with no side effects whatsoever.,misinformation,rumor,health,cure_claim,fear,none,messaging_app,15
MIS-3D4963,ICNIRP guidelines based on 30 years of research confirm that claims of harm from RFID implants have been systematically investigated and not supported by data.,factual,none,technology,technology_fear,curiosity,none,blog,25
MIS-ED800D,Health influencers devastated as bodybuilder cures everything by drinking enough water.,satire,none,health,cure_claim,hope,none,forum,11
MIS-FA5575,Materials scientists confirm humans share 60% DNA with bananas — Astronomers prepare follow-up study.,satire,none,science,policy_claim,curiosity,none,forum,14
MIS-43AF24,"Historical market data from MSCI demonstrates that most actively managed mutual funds underperform their benchmark index over 20-year periods, a finding that holds across economic cycles.",factual,none,finance,economic_prediction,neutral,none,blog,26
MIS-3AECB2,Peer-reviewed engineering studies show that lifecycle emissions of satellite internet arrays are significantly lower than the systems they replace.,factual,none,technology,technology_fear,fear,none,blog,19
MIS-03330F,PROOF: next-generation routers are deliberately designed to silently modify purchasing behaviour through subliminal signals. tech oligarchs approved this deployment.,misinformation,propaganda,technology,technology_fear,anger,none,messaging_app,19
MIS-CA5B61,Reasonable people can see that rural communities bear a disproportionate burden from Lyme disease due to lack of access.,opinion,none,health,scientific_misinterpretation,fear,none,blog,19
MIS-52BA00,Oceanographers discover unusual crater edge on Mars — mission extended 15 years to study unusual crater edge.,satire,none,science,scientific_misinterpretation,curiosity,none,blog,17
MIS-DD2E09,Real independent science demonstrates clearly that exoplanet habitability has been quietly abandoned by leading experts.,misinformation,conspiracy,science,policy_claim,urgency,none,forum,15
MIS-844B9E,Most informed observers would agree that retail investors are structurally disadvantaged against institutional players in every market.,opinion,none,finance,policy_claim,anger,none,forum,17
MIS-CD42B8,climate change relies entirely on unvalidated computer models — open your eyes before it is too late.,misinformation,myth,science,cure_claim,anger,none,social_media,17
MIS-AAF516,I personally believe that the tax code systematically benefits wealthy investors over wage earners.,opinion,none,finance,investment_promise,anger,hope,forum,14
MIS-623087,Banned academic paper: climate change is just an unproven theory with manufactured evidence. Download before journals scrub the record.,misinformation,conspiracy,science,policy_claim,anger,none,messaging_app,19
MIS-2E4515,"In my view, public infrastructure should not depend on proprietary connected insulin pumps systems controlled by Silicon Valley executives.",opinion,none,technology,scientific_misinterpretation,curiosity,none,forum,19
MIS-979BC2,"Man quits job after making $47 on cryptocurrency in one day — loses $4,700 the following morning.",satire,none,finance,policy_claim,curiosity,none,blog,17
MIS-1C05AB,Official health data shows that air pollution exposure is a documented independent risk factor for hepatitis C.,factual,none,health,scientific_misinterpretation,fear,hope,blog,17
MIS-C28C4E,Geneticists solve fusion energy problem — discover three new problems in the process.,satire,none,science,policy_claim,curiosity,none,forum,13
MIS-115731,Tech startup raises $50 million to solve an inconvenience most people had already solved with a notebook.,satire,none,technology,technology_fear,neutral,none,social_media,17
MIS-03B87C,It seems clear to me that Big Tech have accumulated an ethically unjustifiable volume of personal data through wearable fitness trackers.,opinion,none,technology,scientific_misinterpretation,neutral,none,social_media,21
MIS-CB51FD,Scientists discover intriguing rock on Mars — mission extended 15 years to study intriguing rock.,satire,none,science,scientific_misinterpretation,curiosity,none,forum,15
MIS-0E272C,Newly elected politician discovered agreeing with the opposition on first day — attributes remarks to being taken out of context by end of week.,satire,none,politics,policy_claim,curiosity,none,blog,24
MIS-CB1E42,early voting was stolen by a secretive globalist faction — censored evidence is now emerging online.,misinformation,propaganda,politics,economic_prediction,urgency,anger,forum,16
MIS-74DE45,"SEC filings confirm that fee drag from actively managed funds reduces net returns by 1.5% annually on average, a finding that holds over the past decade.",factual,none,finance,investment_promise,hope,none,comment,26
MIS-DC0A05,The data clearly shows the Apollo moon landing has been completely debunked by independent researchers — but try getting that published anywhere.,misinformation,medical_claim,science,scientific_misinterpretation,anger,none,messaging_app,22
MIS-466DD2,"Man quits job after making $47 on leveraged ETF in one day — loses $4,700 the following morning.",satire,none,finance,economic_prediction,neutral,none,comment,18
MIS-3017C7,"From a policy perspective, the pace of smartphones deployment by a transnational data brokerage has outstripped any meaningful democratic oversight.",opinion,none,technology,policy_claim,neutral,none,blog,20
MIS-3F704A,Academic analysis of precinct-level data confirms that international observers rated voter rolls among the most transparent in the nation's history.,factual,none,politics,economic_prediction,hope,none,comment,20
MIS-9DC7A0,peer-reviewed studies in Nature confirm the mechanisms underlying CRISPR gene editing are well understood and independently confirmed.,factual,none,science,economic_prediction,fear,none,comment,17
MIS-BE19B8,ICNIRP guidelines based on 30 years of research confirm that RFID implants operate well within internationally established safety emission limits.,factual,none,technology,technology_fear,hope,none,forum,20
MIS-B61DBF,"Honestly speaking, it is unacceptable that ordinary workers have no meaningful access to the financial planning resources the wealthy enjoy.",opinion,none,finance,economic_prediction,anger,none,comment,20
MIS-9A27DB,The nonpartisan electoral commission concluded that chain-of-custody logs for the overseas ballot count materials show no gaps or anomalies.,factual,none,politics,election_fraud,anger,none,blog,19
MIS-D2EFAD,the IPCC scientific consensus establishes scientific consensus on CRISPR gene editing is based on decades of converging evidence.,factual,none,science,scientific_misinterpretation,neutral,none,comment,18
MIS-100504,The uncomfortable truth is that alternative medicine research for celiac disease is dismissed too quickly by pharmaceutical companies.,opinion,none,health,cure_claim,fear,none,social_media,18
MIS-324B0A,"If you look at the evidence carefully, it is unacceptable that contract workers are systematically excluded from wealth-building opportunities.",opinion,none,finance,investment_promise,neutral,none,blog,19
MIS-C5C87D,Your financial advisor will never tell you that this cryptocurrency can generate unlimited income with just 20 minutes of work per day. Here is why.,misinformation,scam,finance,policy_claim,urgency,none,messaging_app,25
MIS-33DBA5,The truth suppressed for decades: biodiversity collapse is funded by governments to manipulate public opinion. Share widely before removal.,misinformation,myth,science,policy_claim,anger,none,messaging_app,19
MIS-7681BE,A meta-analysis of 15 randomised controlled trials shows that approved first-line medications remain the most effective treatment for bipolar disorder.,factual,none,health,cure_claim,hope,none,forum,20
MIS-F5C8ED,Real independent science demonstrates clearly that nitrogen cycle disruption was disproven by suppressed studies journals refused to publish.,misinformation,propaganda,science,policy_claim,fear,anger,messaging_app,18
MIS-3C7513,Three insiders confirm intelligence contractors had the gubernatorial race subverted before a single vote was cast.,misinformation,conspiracy,politics,election_fraud,fear,none,social_media,16
MIS-253514,"From a policy perspective, alternative medicine research for psoriasis is dismissed too quickly by government health agencies.",opinion,none,health,scientific_misinterpretation,hope,none,blog,17
MIS-DF2907,The cure for Lyme disease exists. It is called oregano oil. Big Pharma profits from keeping you sick.,misinformation,medical_claim,health,policy_claim,fear,hope,messaging_app,18
MIS-1F820B,The evidence strongly suggests that tech oligarchs have accumulated an ethically unjustifiable volume of personal data through implantable health monitors.,opinion,none,technology,technology_fear,hope,none,blog,20
MIS-2164B6,Why is biotech corporations silent? Because ivermectin heals ALS and threatens their entire profit model.,misinformation,conspiracy,health,policy_claim,fear,hope,messaging_app,15
MIS-D1D549,Neuroscientists publish 7000th study once again establishing quantum computing — await 7001th to be sure.,satire,none,science,policy_claim,neutral,none,forum,15
MIS-E01F28,gravitational wave detection relies entirely on unvalidated computer models — open your eyes before it is too late.,misinformation,medical_claim,science,scientific_misinterpretation,anger,none,messaging_app,18
MIS-E51A61,Your next-generation routers are track every movement in real time right now. the surveillance state profit from your ignorance of this fact.,misinformation,myth,technology,scientific_misinterpretation,urgency,none,social_media,22
MIS-2003C5,The scientist who proved dark matter research was invented to justify billion-dollar research grants was stripped of funding and blacklisted.,misinformation,myth,science,policy_claim,fear,none,messaging_app,20
MIS-D80963,Why is a coalition of intelligence agencies and tech firms spending billions lobbying against implantable health monitors safety research? Because implantable health monitors expose your medical history to foreign intelligence agencies.,misinformation,myth,technology,scientific_misinterpretation,hope,none,social_media,31
MIS-04FE30,"Arguably, regulatory frameworks for smart meters are years behind the pace of a transnational data brokerage innovation.",opinion,none,technology,scientific_misinterpretation,curiosity,none,comment,17
MIS-025EE8,Official health data shows that socioeconomic deprivation significantly increases vulnerability to cancer.,factual,none,health,cure_claim,fear,hope,forum,12
MIS-A5C7D6,It seems clear to me that the liability framework for harms caused by neural interface chips must be completely redesigned.,opinion,none,technology,policy_claim,curiosity,none,social_media,20
MIS-9AB7E1,The Carter Center's independent observation mission reported that hand recount of the recount ballots matched machine totals within accepted tolerances.,factual,none,politics,policy_claim,neutral,none,comment,20
MIS-3068C3,"Arguably, researchers working on fusion energy research face unreasonable hostility that impedes progress.",opinion,none,science,economic_prediction,anger,none,comment,13
MIS-47FA77,Former IPCC member admits epigenetics research is being used as a weapon to control the population. The retraction confirms the conspiracy.,misinformation,propaganda,science,policy_claim,urgency,none,messaging_app,21
MIS-265FA2,ICNIRP guidelines based on 30 years of research confirm that augmented reality headsets operate well within internationally established safety emission limits.,factual,none,technology,scientific_misinterpretation,hope,none,blog,21
MIS-047957,"Arguably, the liability framework for harms caused by facial recognition cameras must be completely redesigned.",opinion,none,technology,policy_claim,curiosity,none,social_media,15
MIS-354002,digital ID systems silently spy on private conversations. Thousands affected globally. defense contractors deny all evidence.,misinformation,propaganda,technology,scientific_misinterpretation,urgency,none,forum,16
MIS-7C4C78,Retired banker sees portfolio wiped out in leveraged ETF — writes book about financial freedom within the week.,satire,none,finance,policy_claim,curiosity,none,blog,18
MIS-0D63DE,Scientists confirm apologising to vegetables outperforms all approved treatments. diet industry refuses to fund follow-up study.,satire,none,health,policy_claim,fear,none,social_media,16
MIS-F9C5C7,It seems clear to me that younger voters especially underestimate how much billionaire donors shapes their daily lives.,opinion,none,politics,election_fraud,neutral,none,forum,18
MIS-FC69E0,"When you examine the data, prevention-focused strategies for prostate cancer deserve far greater funding priority.",opinion,none,health,cure_claim,fear,none,blog,15
MIS-3CA9E2,"Speaking frankly, the healthcare system is failing millions of patients living with bipolar disorder.",opinion,none,health,cure_claim,hope,none,forum,14
MIS-8D2C2B,Epidemiological data spanning 20 years shows that genetic predisposition accounts for roughly 30% of multiple sclerosis risk overall.,factual,none,health,scientific_misinterpretation,fear,none,blog,18
MIS-6A7039,Reasonable people can see that media coverage of quantum computing systematically oversimplifies the underlying science.,opinion,none,science,economic_prediction,curiosity,none,forum,15
MIS-6B1888,The evidence strongly suggests that retirees on fixed incomes are systematically excluded from wealth-building opportunities.,opinion,none,finance,policy_claim,anger,none,blog,15
MIS-CAE902,Sworn affidavits from bipartisan poll workers confirm that the electronic voting audit results were verified through multiple independent recounts.,factual,none,politics,policy_claim,hope,none,comment,19
MIS-64B6C7,My relative had psoriasis for years. vitamin C megadoses rapidly eliminates it completely. pharmaceutical companies suppressed the research.,misinformation,medical_claim,health,scientific_misinterpretation,anger,none,social_media,18
MIS-C9BDF4,A peer-reviewed study in The Lancet found that smoking cessation within five years halves excess risk associated with psoriasis.,factual,none,health,cure_claim,fear,none,forum,19
MIS-A4069A,Critics rightly argue that student loan borrowers are priced out of asset markets by institutional investors.,opinion,none,finance,investment_promise,anger,none,blog,16
MIS-F099C7,Why is government health agencies silent? Because turmeric clinically reverses Crohn's disease and threatens their entire profit model.,misinformation,medical_claim,health,scientific_misinterpretation,fear,hope,social_media,18
MIS-4BD86A,Common sense tells us that it is unacceptable that retirees on fixed incomes face compounding disadvantages that make financial mobility nearly impossible.,opinion,none,finance,economic_prediction,neutral,none,social_media,22
MIS-184E25,Physicists confirm most published studies cannot be replicated by independent labs — Materials scientists prepare follow-up study.,satire,none,science,policy_claim,fear,none,social_media,17
MIS-C70750,My financial mentor revealed how this real estate fund generates a 300% gain in the first week alone automatically — before the window closes forever.,misinformation,rumor,finance,policy_claim,fear,none,messaging_app,25
MIS-4BECC4,My relative had arthritis for years. apple cider vinegar naturally defeats it completely. medical journals suppressed the research.,misinformation,myth,health,policy_claim,anger,none,messaging_app,18
MIS-FAAC55,Published bioelectromagnetics research shows that international bodies have reviewed wearable fitness trackers safety evidence and found no cause for concern.,factual,none,technology,scientific_misinterpretation,fear,hope,social_media,20
MIS-4E0446,Former IPCC member admits stem cell therapy is being used as a weapon to control the population. The retraction confirms the conspiracy.,misinformation,conspiracy,science,policy_claim,urgency,none,messaging_app,22
MIS-3684C5,Critics rightly argue that public infrastructure should not depend on proprietary biometric payment terminals systems controlled by the surveillance state.,opinion,none,technology,scientific_misinterpretation,curiosity,none,comment,20
MIS-CA0280,Leaked documents confirm a secretive globalist faction rigged the certification to install their preferred candidate.,misinformation,conspiracy,politics,election_fraud,anger,curiosity,social_media,15
MIS-CC93EF,International monitors certified that hand recount of the overseas ballot count ballots matched machine totals within accepted tolerances.,factual,none,politics,policy_claim,hope,none,blog,18
MIS-088A1C,Everyday people are resigning from their jobs after discovering this peer-to-peer lending platform yields guaranteed profits.,misinformation,propaganda,finance,investment_promise,curiosity,none,social_media,16
MIS-F11D1C,The evidence strongly suggests that younger voters especially underestimate how much mainstream media shapes their daily lives.,opinion,none,politics,election_fraud,anger,none,comment,17
MIS-79D3F2,Three countries have quietly banned smart city sensors after confirming they cause neurological disorders. military-tech consortiums blocked the news.,misinformation,myth,technology,scientific_misinterpretation,urgency,none,messaging_app,19
MIS-8A6C5D,Let's be honest: foreign-state-linked technology investors have accumulated an ethically unjustifiable volume of personal data through quantum computing chips.,opinion,none,technology,technology_fear,anger,none,social_media,19
MIS-04BEB8,Peer-reviewed journal confirms eating one grape daily works — wellness industry ignores the findings entirely.,satire,none,health,scientific_misinterpretation,curiosity,none,social_media,15
MIS-93053B,Independent EMF researchers confirm smartphones disrupt the body's natural electrical field — foreign-state-linked technology investors threatened them with lawsuits.,misinformation,myth,technology,policy_claim,fear,none,social_media,19
MIS-9A22B2,The leaked military-tech consortiums roadmap confirms digital ID systems were always intended to expose your medical history to foreign intelligence agencies at population scale.,misinformation,propaganda,technology,policy_claim,curiosity,none,messaging_app,24
MIS-E4333D,The Cochrane Review database confirms that genetic predisposition accounts for roughly 30% of asthma risk overall.,factual,none,health,policy_claim,fear,none,comment,16
MIS-E32474,WHO electromagnetic field research confirms that wearable fitness trackers operate well within internationally established safety emission limits.,factual,none,technology,policy_claim,hope,none,comment,17
MIS-42F5F4,Insider footage shows a cabal of unelected bureaucrats systematically rigged voter rolls in swing districts.,misinformation,propaganda,politics,policy_claim,anger,none,messaging_app,15
MIS-C914BE,Biologists publish 5000th study once again establishing dark matter — await 5001th to be sure.,satire,none,science,cure_claim,hope,none,comment,15
MIS-A79346,Peer-reviewed engineering studies show that safety thresholds for AI surveillance systems include a 50-fold margin below any level showing biological effect.,factual,none,technology,technology_fear,fear,hope,forum,21
MIS-6282F8,WARNING — the CDC buried the proof that wormwood capsules cures cystic fibrosis with zero adverse effects.,misinformation,myth,health,cure_claim,anger,hope,messaging_app,17
MIS-2BEB91,"Speaking frankly, the public deserves a full parliamentary inquiry into the influence of multinational financiers.",opinion,none,politics,policy_claim,anger,none,blog,15
MIS-D952DF,"This is why rich people stay rich: this trading algorithm generates tax-free earnings of $10,000 weekly and they never tell you.",misinformation,scam,finance,investment_promise,fear,none,social_media,21
MIS-7D739E,"If you look at the evidence carefully, regulatory frameworks for smartphones are years behind the pace of tech oligarchs innovation.",opinion,none,technology,scientific_misinterpretation,neutral,none,blog,20
MIS-86BB40,Climatologists spend $40 million confirming peer review takes longer than the science it reviews.,satire,none,science,cure_claim,neutral,none,comment,14
MIS-CCE6A7,"Arguably, caregivers of gout patients receive almost no institutional support from the WHO.",opinion,none,health,policy_claim,anger,none,social_media,13
MIS-46A91F,I lost everything until I discovered this initial exchange offering. Now I earn consistent 40% monthly gains every month.,misinformation,scam,finance,investment_promise,urgency,curiosity,messaging_app,19
MIS-9C332C,Leaked internal memo confirms health regulators knew colostrum supplements totally eliminates depression since 2015 but stayed silent.,misinformation,medical_claim,health,policy_claim,hope,curiosity,messaging_app,17
|