1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
|
<!DOCTYPE html>
<html lang="en" >
<head>
<meta charset="utf8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="shortcut icon" href="/favicon.ico" type="image/x-icon"/>
<meta name="robots" content="noindex,nofollow">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0" />
<meta name="format-detection" content="telephone=no">
<title>4chan - Ghostery Private Search</title>
<link rel="search" type="application/opensearchdescription+xml" title="Ghostery Search" href="https://cdn.ghostery.com/search/2023-07-25-opensearch.xml">
<link rel="stylesheet" href="/stylesheets/global.css?v=92634a5cbfe667f6a0f714945bda9d6c" />
<link rel="stylesheet" href="/stylesheets/search-bar.css?v=99a02699f700e6feb31c9bb14f022e24" />
<link rel="stylesheet" href="/stylesheets/wtm-popup.css?v=274b20cf5962102ab17d3cf9b9bcb22f" />
<link rel="stylesheet" href="/stylesheets/search.css?v=a26130543b688d32fb4af2bcdd922a3e" />
<link rel="stylesheet" href="/stylesheets/search-web.css?v=c5b44e547e1fc179bf4ebdd29e98af20" />
<script src="https://cdn.jsdelivr.net/npm/@tarekraafat/autocomplete.js@7.2.0/dist/js/autoComplete.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/js-cookie@3.0.1/dist/js.cookie.min.js"></script>
<script src="/scripts/query-suggestions.js?v=cc742fcf0c40f2d3dc0a676d70771fb3"></script>
<script type="module" src="/scripts/modal.js?v=0f532adfc0a38fcb3a42ed76b37a7eb0'"></script>
<script type="module" src="/scripts/settings.js?v=d17fa069c4fc7b08f3cf96916b881589'"></script>
<script>document.documentElement.dataset.theme = Cookies.get('theme') || "";</script>
</head>
<body class="tab-web">
<header>
<a href="/" id="logo">
<img src="/img/ghosty.svg" />
</a>
<div id="searchForm">
<form action="/search">
<input
id="search-input"
name="q"
tabindex="1"
aria-label="Search input"
placeholder="Search privately with Ghostery"
size="30"
autocapitalize="off"
autocomplete="off"
autocorrect="off"
spellcheck="false"
aria-haspopup="false"
maxlength="2048"
type="text"
aria-autocomplete="both"
value="4chan"
required
/>
<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg" class="feather feather-search">
<path fill-rule="evenodd" clip-rule="evenodd" d="M8.87497 1.74999C4.93995 1.74999 1.74999 4.93995 1.74999 8.87497C1.74999 12.81 4.93995 15.9999 8.87497 15.9999C12.81 15.9999 15.9999 12.81 15.9999 8.87497C15.9999 4.93995 12.81 1.74999 8.87497 1.74999ZM0.25 8.87497C0.25 4.11153 4.11153 0.25 8.87497 0.25C13.6384 0.25 17.4999 4.11153 17.4999 8.87497C17.4999 13.6384 13.6384 17.4999 8.87497 17.4999C4.11153 17.4999 0.25 13.6384 0.25 8.87497Z" fill="url(#paint0_linear_850_511)"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M13.9128 13.9134C14.2057 13.6205 14.6805 13.6205 14.9734 13.9134L19.5297 18.4697C19.8226 18.7626 19.8226 19.2374 19.5297 19.5303C19.2368 19.8232 18.7619 19.8232 18.4691 19.5303L13.9128 14.9741C13.6199 14.6812 13.6199 14.2063 13.9128 13.9134Z" fill="url(#paint1_linear_850_511)"/>
<defs>
<linearGradient id="paint0_linear_850_511" x1="4.84817" y1="1.87525" x2="15.168" y2="14.8726" gradientUnits="userSpaceOnUse">
<stop stop-color="#67A73A"/>
<stop offset="1" stop-color="#00AEF0"/>
</linearGradient>
<linearGradient id="paint1_linear_850_511" x1="4.84817" y1="1.87525" x2="15.168" y2="14.8726" gradientUnits="userSpaceOnUse">
<stop stop-color="#67A73A"/>
<stop offset="1" stop-color="#00AEF0"/>
</linearGradient>
</defs>
</svg>
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" class="feather-x">
<path fill-rule="evenodd" clip-rule="evenodd" d="M19.2803 4.71967C19.5732 5.01256 19.5732 5.48744 19.2803 5.78033L5.78033 19.2803C5.48744 19.5732 5.01256 19.5732 4.71967 19.2803C4.42678 18.9874 4.42678 18.5126 4.71967 18.2197L18.2197 4.71967C18.5126 4.42678 18.9874 4.42678 19.2803 4.71967Z" fill="currentColor"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M4.71967 4.71967C5.01256 4.42678 5.48744 4.42678 5.78033 4.71967L19.2803 18.2197C19.5732 18.5126 19.5732 18.9874 19.2803 19.2803C18.9874 19.5732 18.5126 19.5732 18.2197 19.2803L4.71967 5.78033C4.42678 5.48744 4.42678 5.01256 4.71967 4.71967Z" fill="currentColor"/>
</svg>
</form>
</div>
<div class="header-boost-container">
<a href="#boost-privacy-protection" class="boost-button">
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M9 11.4999L11 13.4999L15.5 8.99987M20 11.9999C20 16.9083 14.646 20.4783 12.698 21.6147C12.4766 21.7439 12.3659 21.8085 12.2097 21.842C12.0884 21.868 11.9116 21.868 11.7903 21.842C11.6341 21.8085 11.5234 21.7439 11.302 21.6147C9.35396 20.4783 4 16.9083 4 11.9999V7.21747C4 6.41796 4 6.0182 4.13076 5.67457C4.24627 5.37101 4.43398 5.10015 4.67766 4.8854C4.9535 4.64231 5.3278 4.50195 6.0764 4.22122L11.4382 2.21054C11.6461 2.13258 11.75 2.0936 11.857 2.07815C11.9518 2.06444 12.0482 2.06444 12.143 2.07815C12.25 2.0936 12.3539 2.13258 12.5618 2.21054L17.9236 4.22122C18.6722 4.50195 19.0465 4.64231 19.3223 4.8854C19.566 5.10015 19.7537 5.37101 19.8692 5.67457C20 6.0182 20 6.41796 20 7.21747V11.9999Z" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
</svg>
<span>Boost Privacy Protection</span>
</a>
</div>
</header>
<section class="tabs">
<ul>
<li class="active">
<a href="/search?q=4chan">
<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M17.5 17.5L13.875 13.875M9.16667 5C11.4678 5 13.3333 6.86548 13.3333 9.16667M15.8333 9.16667C15.8333 12.8486 12.8486 15.8333 9.16667 15.8333C5.48477 15.8333 2.5 12.8486 2.5 9.16667C2.5 5.48477 5.48477 2.5 9.16667 2.5C12.8486 2.5 15.8333 5.48477 15.8333 9.16667Z" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" />
</svg>
All
</a>
</li>
<li class="">
<a href="/images/search?q=4chan">
<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0_775_2297)">
<path d="M4.999 16.6668L12.3898 9.276C12.7198 8.946 12.8849 8.78092 13.0752 8.71917C13.2425 8.66475 13.4228 8.66475 13.5902 8.71917C13.7804 8.78092 13.9455 8.946 14.2755 9.276L17.8371 12.8376M8.74935 7.08317C8.74935 8.00365 8.00316 8.74984 7.08268 8.74984C6.16221 8.74984 5.41602 8.00365 5.41602 7.08317C5.41602 6.1627 6.16221 5.4165 7.08268 5.4165C8.00316 5.4165 8.74935 6.1627 8.74935 7.08317ZM18.3327 9.99984C18.3327 14.6022 14.6017 18.3332 9.99935 18.3332C5.39697 18.3332 1.66602 14.6022 1.66602 9.99984C1.66602 5.39746 5.39697 1.6665 9.99935 1.6665C14.6017 1.6665 18.3327 5.39746 18.3327 9.99984Z" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" />
</g>
<defs>
<clipPath id="clip0_775_2297">
<rect width="20" height="20" fill="currentColor" />
</clipPath>
</defs>
</svg>
Images
</a>
</li>
<li class="">
<a href="/videos/search?q=4chan">
<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0_775_2301)">
<path d="M9.99935 18.3332C14.6017 18.3332 18.3327 14.6022 18.3327 9.99984C18.3327 5.39746 14.6017 1.6665 9.99935 1.6665C5.39697 1.6665 1.66602 5.39746 1.66602 9.99984C1.66602 14.6022 5.39697 18.3332 9.99935 18.3332Z" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" />
<path d="M7.91602 7.47107C7.91602 7.07334 7.91602 6.87447 7.99913 6.76345C8.07157 6.66669 8.18244 6.60616 8.303 6.59755C8.44135 6.58767 8.6086 6.69521 8.94318 6.91029L12.877 9.43921C13.1673 9.6258 13.3125 9.71913 13.3626 9.8378C13.4064 9.94146 13.4064 10.0585 13.3626 10.1621C13.3125 10.2808 13.1673 10.3741 12.877 10.5607L8.94318 13.0896C8.6086 13.3047 8.44135 13.4123 8.303 13.4024C8.18244 13.3938 8.07157 13.3332 7.99913 13.2365C7.91602 13.1255 7.91602 12.9266 7.91602 12.5289V7.47107Z" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" />
</g>
<defs>
<clipPath id="clip0_775_2301">
<rect width="20" height="20" fill="white" />
</clipPath>
</defs>
</svg>
Videos
</a>
</li>
<li class="tabs-settings">
<a href="#settings" title="Search Settings">
<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0_775_2306)">
<path d="M10 12.5C11.3807 12.5 12.5 11.3807 12.5 10C12.5 8.61925 11.3807 7.5 10 7.5C8.61925 7.5 7.5 8.61925 7.5 10C7.5 11.3807 8.61925 12.5 10 12.5Z" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M15.6054 12.2726C15.5046 12.5011 15.4745 12.7545 15.519 13.0003C15.5636 13.246 15.6808 13.4728 15.8554 13.6513L15.9008 13.6968C16.0418 13.8375 16.1535 14.0046 16.2298 14.1886C16.306 14.3725 16.3453 14.5697 16.3453 14.7688C16.3453 14.9679 16.306 15.1651 16.2298 15.349C16.1535 15.5329 16.0418 15.7 15.9008 15.8408C15.7602 15.9816 15.593 16.0933 15.4091 16.1696C15.2252 16.2458 15.028 16.2851 14.8289 16.2851C14.6298 16.2851 14.4326 16.2458 14.2487 16.1696C14.0648 16.0933 13.8977 15.9816 13.7569 15.8408L13.7114 15.7953C13.5329 15.6207 13.3062 15.5035 13.0604 15.4589C12.8147 15.4143 12.5612 15.4444 12.3327 15.5453C12.1086 15.6413 11.9175 15.8008 11.7829 16.004C11.6483 16.2073 11.5761 16.4454 11.5751 16.6893V16.818C11.5751 17.2198 11.4155 17.6053 11.1313 17.8894C10.8472 18.1735 10.4618 18.3332 10.0599 18.3332C9.6581 18.3332 9.27277 18.1735 8.9886 17.8894C8.70443 17.6053 8.54477 17.2198 8.54477 16.818V16.7498C8.53893 16.4991 8.45777 16.2559 8.31186 16.0519C8.16594 15.8478 7.96202 15.6925 7.72662 15.6059C7.49812 15.5051 7.24466 15.475 6.99891 15.5195C6.75315 15.5641 6.52638 15.6813 6.34783 15.8559L6.30238 15.9013C6.16167 16.0423 5.99456 16.154 5.81062 16.2303C5.62668 16.3065 5.42952 16.3458 5.23041 16.3458C5.0313 16.3458 4.83413 16.3065 4.6502 16.2303C4.46626 16.154 4.29916 16.0423 4.15844 15.9013C4.01757 15.7607 3.90581 15.5935 3.82957 15.4096C3.75332 15.2257 3.71407 15.0285 3.71407 14.8294C3.71407 14.6303 3.75332 14.4331 3.82957 14.2492C3.90581 14.0653 4.01757 13.8982 4.15844 13.7574L4.20389 13.7119C4.37854 13.5334 4.4957 13.3067 4.54027 13.0609C4.58482 12.8152 4.55474 12.5617 4.45389 12.3332C4.35787 12.1091 4.19841 11.918 3.99516 11.7834C3.79191 11.6488 3.55373 11.5766 3.30996 11.5756H3.18117C2.77932 11.5756 2.39394 11.416 2.10979 11.1318C1.82565 10.8477 1.66602 10.4623 1.66602 10.0604C1.66602 9.65859 1.82565 9.27325 2.10979 8.98909C2.39394 8.70492 2.77932 8.54525 3.18117 8.54525H3.24935C3.5001 8.53942 3.74329 8.45825 3.9473 8.31235C4.15132 8.16643 4.30671 7.96251 4.39329 7.72711C4.49413 7.49861 4.52422 7.24515 4.47966 6.9994C4.4351 6.75364 4.31794 6.52687 4.14329 6.34832L4.09783 6.30287C3.95696 6.16215 3.84521 5.99505 3.76896 5.81111C3.69271 5.62717 3.65346 5.43001 3.65346 5.2309C3.65346 5.03179 3.69271 4.83462 3.76896 4.65069C3.84521 4.46675 3.95696 4.29965 4.09783 4.15893C4.23855 4.01805 4.40566 3.9063 4.58959 3.83005C4.77352 3.7538 4.97069 3.71455 5.16981 3.71455C5.36892 3.71455 5.56608 3.7538 5.75002 3.83005C5.93395 3.9063 6.10106 4.01805 6.24177 4.15893L6.28722 4.20438C6.46577 4.37903 6.69254 4.49619 6.9383 4.54075C7.18405 4.58531 7.43752 4.55523 7.66602 4.45438H7.72662C7.95069 4.35835 8.14179 4.1989 8.27639 3.99565C8.41102 3.7924 8.48327 3.55422 8.48418 3.31045V3.18165C8.48418 2.77981 8.64385 2.39443 8.92802 2.11028C9.2121 1.82614 9.59752 1.6665 9.99935 1.6665C10.4012 1.6665 10.7866 1.82614 11.0707 2.11028C11.3548 2.39443 11.5145 2.77981 11.5145 3.18165V3.24984C11.5154 3.49361 11.5877 3.73179 11.7223 3.93504C11.8569 4.13829 12.048 4.29775 12.2721 4.39378C12.5006 4.49462 12.754 4.5247 12.9998 4.48015C13.2455 4.43559 13.4723 4.31843 13.6508 4.14378L13.6963 4.09832C13.837 3.95745 14.0041 3.8457 14.1881 3.76945C14.372 3.6932 14.5692 3.65395 14.7683 3.65395C14.9674 3.65395 15.1646 3.6932 15.3485 3.76945C15.5324 3.8457 15.6995 3.95745 15.8403 4.09832C15.9811 4.23904 16.0928 4.40615 16.1691 4.59008C16.2453 4.77401 16.2846 4.97118 16.2846 5.1703C16.2846 5.3694 16.2453 5.56657 16.1691 5.7505C16.0928 5.93444 15.9811 6.10155 15.8403 6.24226L15.7948 6.28771C15.6202 6.46626 15.503 6.69303 15.4584 6.93879C15.4138 7.18454 15.4439 7.438 15.5448 7.6665V7.72711C15.6408 7.95118 15.8003 8.14228 16.0035 8.27688C16.2068 8.4115 16.4449 8.48375 16.6888 8.48467H16.8175C17.2193 8.48467 17.6048 8.64434 17.8889 8.9285C18.173 9.21259 18.3327 9.598 18.3327 9.99984C18.3327 10.4017 18.173 10.7871 17.8889 11.0712C17.6048 11.3553 17.2193 11.515 16.8175 11.515H16.7493C16.5056 11.5159 16.2674 11.5882 16.0642 11.7228C15.8609 11.8574 15.7014 12.0485 15.6054 12.2726Z" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
</g>
<defs>
<clipPath id="clip0_775_2306">
<rect width="20" height="20" fill="white"/>
</clipPath>
</defs>
</svg>
</a>
<a href="#boost-privacy-protection" class="boost-button">
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M9 11.4999L11 13.4999L15.5 8.99987M20 11.9999C20 16.9083 14.646 20.4783 12.698 21.6147C12.4766 21.7439 12.3659 21.8085 12.2097 21.842C12.0884 21.868 11.9116 21.868 11.7903 21.842C11.6341 21.8085 11.5234 21.7439 11.302 21.6147C9.35396 20.4783 4 16.9083 4 11.9999V7.21747C4 6.41796 4 6.0182 4.13076 5.67457C4.24627 5.37101 4.43398 5.10015 4.67766 4.8854C4.9535 4.64231 5.3278 4.50195 6.0764 4.22122L11.4382 2.21054C11.6461 2.13258 11.75 2.0936 11.857 2.07815C11.9518 2.06444 12.0482 2.06444 12.143 2.07815C12.25 2.0936 12.3539 2.13258 12.5618 2.21054L17.9236 4.22122C18.6722 4.50195 19.0465 4.64231 19.3223 4.8854C19.566 5.10015 19.7537 5.37101 19.8692 5.67457C20 6.0182 20 6.41796 20 7.21747V11.9999Z" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
</svg>
</a>
</li>
</ul>
</section>
<section class="results">
<ol>
<div class="modal" id="ghostery-highlights-info">
<div class="modal-container">
<a href="#/" class="modal-close">
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" class="feather-x">
<path fill-rule="evenodd" clip-rule="evenodd" d="M19.2803 4.71967C19.5732 5.01256 19.5732 5.48744 19.2803 5.78033L5.78033 19.2803C5.48744 19.5732 5.01256 19.5732 4.71967 19.2803C4.42678 18.9874 4.42678 18.5126 4.71967 18.2197L18.2197 4.71967C18.5126 4.42678 18.9874 4.42678 19.2803 4.71967Z" fill="currentColor"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M4.71967 4.71967C5.01256 4.42678 5.48744 4.42678 5.78033 4.71967L19.2803 18.2197C19.5732 18.5126 19.5732 18.9874 19.2803 19.2803C18.9874 19.5732 18.5126 19.5732 18.2197 19.2803L4.71967 5.78033C4.42678 5.48744 4.42678 5.01256 4.71967 4.71967Z" fill="currentColor"/>
</svg>
</a>
<header>Private Sponsored Links</header>
<h3>Why am I seeing this?</h3>
<p>To support our service, we display Private Sponsored Links that are relevant to your search queries. These tracker-free affiliate links are not based on your personal information or browsing history, and they help us cover our costs without compromising your privacy.</p>
<p>If you want to enjoy Ghostery without seeing sponsored results, you can easily disable them in the search settings, or consider becoming a Contributor.</p>
<a class="button large" href="https://www.ghostery.com/become-a-contributor" target="_blank">
Become a Contributor
</a>
<a class="button outline large" href="#settings">
Search Settings
</a>
</div>
</div>
<li class="result " id="result-0">
<h2>
<a rel="noreferrer" href="https://www.4chan.org/">4chan</a>
</h2>
<div class="snippet">
<div>
</div>
<div class="description">
<p>
<strong>4chan</strong> is a simple image-based bulletin board where anyone can post comments and share images anonymously.
</p>
<div class="address-wrapper">
<div class="address">
<a class="url " href="https://www.4chan.org/" rel="noreferrer">https://www.4chan.org/</a>
<a class="wtm-badge" href="#wtm-popup-0">
<span class="wtm-chart">
<svg
id='circle'
xmlns='http://www.w3.org/2000/svg'
version='1.1'
width='100%'
height='100%'
viewBox='-20 -20 240 240'
>
<g
fill='none'
stroke-width='32'
style="transform: translate(100px, 100px);"
>
<path
d="M 6.123233995736766e-15 -100 A 100 100 0 0 1 90.96319953545184 -41.54150130018864"
pathLength="65.45454545454545"
style="stroke-dashoffset: 0; stroke-dasharray: 1000; stroke: #cb55cd"
>
<title>2</title>
</path>
<path
d="M 90.96319953545184 -41.54150130018864 A 100 100 0 0 1 75.57495743542584 65.4860733945285"
pathLength="65.45454545454545"
style="stroke-dashoffset: 0; stroke-dasharray: 1000; stroke: #87d7ef"
>
<title>2</title>
</path>
<path
d="M 75.57495743542584 65.4860733945285 A 100 100 0 0 1 28.17325568414298 95.94929736144974"
pathLength="32.72727272727272"
style="stroke-dashoffset: 0; stroke-dasharray: 1000; stroke: #ef671e"
>
<title>1</title>
</path>
<path
d="M 28.17325568414298 95.94929736144974 A 100 100 0 0 1 -54.064081745559825 -84.12535328311807"
pathLength="163.63636363636363"
style="stroke-dashoffset: 0; stroke-dasharray: 1000; stroke: #e8e8e8"
>
<title>5</title>
</path>
<path
d="M -54.064081745559825 -84.12535328311807 A 100 100 0 0 1 -0.00017453292519727508 -99.99999999984769"
pathLength="32.72717272727277"
style="stroke-dashoffset: 0; stroke-dasharray: 1000; stroke: #e2e781"
>
<title>1</title>
</path>
</g>
</svg>
</span>
<span class="wtm-count">11</span>
</a>
<div class="wtm-popup" id="wtm-popup-0">
<div class="wrapper">
<div class="header">
<svg width="25" height="24" viewBox="0 0 25 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd" d="M19.8145 10.5C19.8145 14.6421 16.4566 18 12.3145 18C8.17233 18 4.81445 14.6421 4.81445 10.5C4.81445 6.35788 8.17233 3 12.3145 3C16.4566 3 19.8145 6.35788 19.8145 10.5Z" fill="currentColor" />
<path fill-rule="evenodd" clip-rule="evenodd" d="M22.2207 19.9302C21.2254 17.6415 21.054 15.7022 21.0273 14.9403V8.67118C21.0273 3.88205 17.1256 0 12.3129 0C7.49973 0 3.59792 3.88205 3.59792 8.67118V15.0309C3.56074 15.8507 3.36517 17.7306 2.40828 19.9302C1.12213 22.8858 2.18654 22.5335 3.13994 22.2904C4.09322 22.0482 6.22217 21.0989 6.88726 22.2683C7.55208 23.4372 8.1067 24.4523 9.65875 23.7904C11.2109 23.1288 11.9423 22.9083 12.1639 22.9083H12.4654C12.6867 22.9083 13.4184 23.1288 14.9705 23.7904C16.5225 24.4523 17.0769 23.4372 17.7421 22.2683C18.4069 21.0989 20.5357 22.0482 21.4893 22.2904C22.4427 22.5335 23.5066 22.8858 22.2207 19.9302ZM9.62304 4.72821C10.5617 4.72821 11.3226 5.92624 11.3226 7.4046C11.3226 8.88282 10.5617 10.0813 9.62304 10.0813C8.6844 10.0813 7.92334 8.88282 7.92334 7.4046C7.92334 5.92624 8.6844 4.72821 9.62304 4.72821ZM12.3129 15.4259C10.2445 15.4259 8.50333 13.4004 7.97865 11.1466C8.99205 12.5328 10.5562 13.4237 12.3129 13.4237C14.0695 13.4237 15.6335 12.5328 16.6471 11.1466C16.1224 13.4004 14.3809 15.4259 12.3129 15.4259ZM15.0028 10.0813C14.0635 10.0813 13.3028 8.88282 13.3028 7.4046C13.3028 5.92624 14.0635 4.72821 15.0028 4.72821C15.942 4.72821 16.7024 5.92624 16.7024 7.4046C16.7024 8.88282 15.942 10.0813 15.0028 10.0813Z" fill="#00AEF0" />
</svg>
<h3>4chan.org</h3>
<a class="close" href="#"><svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" class="feather-x">
<path fill-rule="evenodd" clip-rule="evenodd" d="M19.2803 4.71967C19.5732 5.01256 19.5732 5.48744 19.2803 5.78033L5.78033 19.2803C5.48744 19.5732 5.01256 19.5732 4.71967 19.2803C4.42678 18.9874 4.42678 18.5126 4.71967 18.2197L18.2197 4.71967C18.5126 4.42678 18.9874 4.42678 19.2803 4.71967Z" fill="currentColor"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M4.71967 4.71967C5.01256 4.42678 5.48744 4.42678 5.78033 4.71967L19.2803 18.2197C19.5732 18.5126 19.5732 18.9874 19.2803 19.2803C18.9874 19.5732 18.5126 19.5732 18.2197 19.2803L4.71967 5.78033C4.42678 5.48744 4.42678 5.01256 4.71967 4.71967Z" fill="currentColor"/>
</svg>
</a>
</div>
<div class="info">
<div class="desc" tabindex="0">
All trackers seen
<span data-tooltip="Not all entities listed are trackers, meaning they do not collect your personal data."><svg width="17" height="16" viewBox="0 0 17 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0_831_3007)">
<path d="M8.31462 10.6666V7.99992M8.31462 5.33325H8.32128M14.9813 7.99992C14.9813 11.6818 11.9965 14.6666 8.31462 14.6666C4.63272 14.6666 1.64795 11.6818 1.64795 7.99992C1.64795 4.31802 4.63272 1.33325 8.31462 1.33325C11.9965 1.33325 14.9813 4.31802 14.9813 7.99992Z" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
</g>
<defs>
<clipPath id="clip0_831_3007">
<rect width="16" height="16" fill="currentColor" transform="translate(0.314453)"/>
</clipPath>
</defs>
</svg>
</span>
</div>
<a class="report" data-tooltip="WhoTracks.Me Statistical Report" href="https://whotracks.me/websites/4chan.org.html" target="_blank" title="Statistical report">
<svg width="17" height="16" viewBox="0 0 17 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M9.64762 7.33325H5.64762M6.98096 9.99992H5.64762M10.981 4.66659H5.64762M13.6476 6.99992V4.53325C13.6476 3.41315 13.6476 2.85309 13.4296 2.42527C13.2379 2.04895 12.932 1.74299 12.5556 1.55124C12.1278 1.33325 11.5678 1.33325 10.4476 1.33325H6.18096C5.06085 1.33325 4.5008 1.33325 4.07298 1.55124C3.69665 1.74299 3.39069 2.04895 3.19894 2.42527C2.98096 2.85309 2.98096 3.41315 2.98096 4.53325V11.4666C2.98096 12.5867 2.98096 13.1467 3.19894 13.5746C3.39069 13.9509 3.69665 14.2569 4.07298 14.4486C4.5008 14.6666 5.06085 14.6666 6.18096 14.6666H7.98096M14.981 14.6666L13.981 13.6666M14.6476 11.9999C14.6476 13.2886 13.603 14.3333 12.3143 14.3333C11.0256 14.3333 9.98096 13.2886 9.98096 11.9999C9.98096 10.7113 11.0256 9.66658 12.3143 9.66658C13.603 9.66658 14.6476 10.7113 14.6476 11.9999Z" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
</svg>
</a>
</div>
<div class="details">
<div class="chart">
<svg
id='circle'
xmlns='http://www.w3.org/2000/svg'
version='1.1'
width='100%'
height='100%'
viewBox='-20 -20 240 240'
>
<g
fill='none'
stroke-width='32'
style="transform: translate(100px, 100px);"
>
<path
d="M 6.123233995736766e-15 -100 A 100 100 0 0 1 90.96319953545184 -41.54150130018864"
pathLength="65.45454545454545"
style="stroke-dashoffset: 0; stroke-dasharray: 1000; stroke: #cb55cd"
>
<title>2</title>
</path>
<path
d="M 90.96319953545184 -41.54150130018864 A 100 100 0 0 1 75.57495743542584 65.4860733945285"
pathLength="65.45454545454545"
style="stroke-dashoffset: 0; stroke-dasharray: 1000; stroke: #87d7ef"
>
<title>2</title>
</path>
<path
d="M 75.57495743542584 65.4860733945285 A 100 100 0 0 1 28.17325568414298 95.94929736144974"
pathLength="32.72727272727272"
style="stroke-dashoffset: 0; stroke-dasharray: 1000; stroke: #ef671e"
>
<title>1</title>
</path>
<path
d="M 28.17325568414298 95.94929736144974 A 100 100 0 0 1 -54.064081745559825 -84.12535328311807"
pathLength="163.63636363636363"
style="stroke-dashoffset: 0; stroke-dasharray: 1000; stroke: #e8e8e8"
>
<title>5</title>
</path>
<path
d="M -54.064081745559825 -84.12535328311807 A 100 100 0 0 1 -0.00017453292519727508 -99.99999999984769"
pathLength="32.72717272727277"
style="stroke-dashoffset: 0; stroke-dasharray: 1000; stroke: #e2e781"
>
<title>1</title>
</path>
</g>
</svg>
<span class="count">11</span>
</div>
<ul>
<li>
<span class="color" style="background-color: #cb55cd;"></span>
<span class="category">Advertising</span>
<span class="count">2</span>
</li>
<li>
<span class="color" style="background-color: #87d7ef;"></span>
<span class="category">Site Analytics</span>
<span class="count">2</span>
</li>
<li>
<span class="color" style="background-color: #ef671e;"></span>
<span class="category">Audio Video Player</span>
<span class="count">1</span>
</li>
<li>
<span class="color" style="background-color: #e8e8e8;"></span>
<span class="category">Hosting</span>
<span class="count">5</span>
</li>
<li>
<span class="color" style="background-color: #e2e781;"></span>
<span class="category">Extensions</span>
<span class="count">1</span>
</li>
</ul>
</div>
</div>
</div>
</div>
<div class="empty"></div>
</div>
</div>
</div>
</li>
<li class="result " id="result-1">
<h2>
<a rel="noreferrer" href="https://en.wikipedia.org/wiki/4chan">4chan - Wikipedia</a>
</h2>
<div class="snippet">
<div>
</div>
<div class="description">
<p>
<strong>4chan</strong> is an anonymous English-language imageboard website. Launched by Christopher "moot" Poole in October 2003, the site hosts boards dedicated to a wide variety of topics, from video games and television to literature, cooking, weapons, music, history, anime, fitness, politics, and sports, ...
</p>
<div class="address-wrapper">
<div class="address">
<a class="url " href="https://en.wikipedia.org/wiki/4chan" rel="noreferrer">https://en.wikipedia.org/wiki/4chan</a>
<a class="wtm-badge" href="#wtm-popup-1">
<span class="wtm-chart">
<svg
id='circle'
xmlns='http://www.w3.org/2000/svg'
version='1.1'
width='100%'
height='100%'
viewBox='-20 -20 240 240'
>
<g
fill='none'
stroke-width='32'
style="transform: translate(100px, 100px);"
>
<path
d="M 6.123233995736766e-15 -100 A 100 100 0 0 1 95.10565162951535 30.901699437494738"
pathLength="108"
style="stroke-dashoffset: 0; stroke-dasharray: 1000; stroke: #cb55cd"
>
<title>3</title>
</path>
<path
d="M 95.10565162951535 30.901699437494738 A 100 100 0 0 1 58.778525229247315 80.90169943749474"
pathLength="36"
style="stroke-dashoffset: 0; stroke-dasharray: 1000; stroke: #ef671e"
>
<title>1</title>
</path>
<path
d="M 58.778525229247315 80.90169943749474 A 100 100 0 0 1 -58.77852522924732 -80.90169943749473"
pathLength="180"
style="stroke-dashoffset: 0; stroke-dasharray: 1000; stroke: #e8e8e8"
>
<title>5</title>
</path>
<path
d="M -58.77852522924732 -80.90169943749473 A 100 100 0 0 1 -0.00017453292519727508 -99.99999999984769"
pathLength="35.999900000000025"
style="stroke-dashoffset: 0; stroke-dasharray: 1000; stroke: #e2e781"
>
<title>1</title>
</path>
</g>
</svg>
</span>
<span class="wtm-count">10</span>
</a>
<div class="wtm-popup" id="wtm-popup-1">
<div class="wrapper">
<div class="header">
<svg width="25" height="24" viewBox="0 0 25 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd" d="M19.8145 10.5C19.8145 14.6421 16.4566 18 12.3145 18C8.17233 18 4.81445 14.6421 4.81445 10.5C4.81445 6.35788 8.17233 3 12.3145 3C16.4566 3 19.8145 6.35788 19.8145 10.5Z" fill="currentColor" />
<path fill-rule="evenodd" clip-rule="evenodd" d="M22.2207 19.9302C21.2254 17.6415 21.054 15.7022 21.0273 14.9403V8.67118C21.0273 3.88205 17.1256 0 12.3129 0C7.49973 0 3.59792 3.88205 3.59792 8.67118V15.0309C3.56074 15.8507 3.36517 17.7306 2.40828 19.9302C1.12213 22.8858 2.18654 22.5335 3.13994 22.2904C4.09322 22.0482 6.22217 21.0989 6.88726 22.2683C7.55208 23.4372 8.1067 24.4523 9.65875 23.7904C11.2109 23.1288 11.9423 22.9083 12.1639 22.9083H12.4654C12.6867 22.9083 13.4184 23.1288 14.9705 23.7904C16.5225 24.4523 17.0769 23.4372 17.7421 22.2683C18.4069 21.0989 20.5357 22.0482 21.4893 22.2904C22.4427 22.5335 23.5066 22.8858 22.2207 19.9302ZM9.62304 4.72821C10.5617 4.72821 11.3226 5.92624 11.3226 7.4046C11.3226 8.88282 10.5617 10.0813 9.62304 10.0813C8.6844 10.0813 7.92334 8.88282 7.92334 7.4046C7.92334 5.92624 8.6844 4.72821 9.62304 4.72821ZM12.3129 15.4259C10.2445 15.4259 8.50333 13.4004 7.97865 11.1466C8.99205 12.5328 10.5562 13.4237 12.3129 13.4237C14.0695 13.4237 15.6335 12.5328 16.6471 11.1466C16.1224 13.4004 14.3809 15.4259 12.3129 15.4259ZM15.0028 10.0813C14.0635 10.0813 13.3028 8.88282 13.3028 7.4046C13.3028 5.92624 14.0635 4.72821 15.0028 4.72821C15.942 4.72821 16.7024 5.92624 16.7024 7.4046C16.7024 8.88282 15.942 10.0813 15.0028 10.0813Z" fill="#00AEF0" />
</svg>
<h3>wikipedia.org</h3>
<a class="close" href="#"><svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" class="feather-x">
<path fill-rule="evenodd" clip-rule="evenodd" d="M19.2803 4.71967C19.5732 5.01256 19.5732 5.48744 19.2803 5.78033L5.78033 19.2803C5.48744 19.5732 5.01256 19.5732 4.71967 19.2803C4.42678 18.9874 4.42678 18.5126 4.71967 18.2197L18.2197 4.71967C18.5126 4.42678 18.9874 4.42678 19.2803 4.71967Z" fill="currentColor"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M4.71967 4.71967C5.01256 4.42678 5.48744 4.42678 5.78033 4.71967L19.2803 18.2197C19.5732 18.5126 19.5732 18.9874 19.2803 19.2803C18.9874 19.5732 18.5126 19.5732 18.2197 19.2803L4.71967 5.78033C4.42678 5.48744 4.42678 5.01256 4.71967 4.71967Z" fill="currentColor"/>
</svg>
</a>
</div>
<div class="info">
<div class="desc" tabindex="0">
All trackers seen
<span data-tooltip="Not all entities listed are trackers, meaning they do not collect your personal data."><svg width="17" height="16" viewBox="0 0 17 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0_831_3007)">
<path d="M8.31462 10.6666V7.99992M8.31462 5.33325H8.32128M14.9813 7.99992C14.9813 11.6818 11.9965 14.6666 8.31462 14.6666C4.63272 14.6666 1.64795 11.6818 1.64795 7.99992C1.64795 4.31802 4.63272 1.33325 8.31462 1.33325C11.9965 1.33325 14.9813 4.31802 14.9813 7.99992Z" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
</g>
<defs>
<clipPath id="clip0_831_3007">
<rect width="16" height="16" fill="currentColor" transform="translate(0.314453)"/>
</clipPath>
</defs>
</svg>
</span>
</div>
<a class="report" data-tooltip="WhoTracks.Me Statistical Report" href="https://whotracks.me/websites/wikipedia.org.html" target="_blank" title="Statistical report">
<svg width="17" height="16" viewBox="0 0 17 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M9.64762 7.33325H5.64762M6.98096 9.99992H5.64762M10.981 4.66659H5.64762M13.6476 6.99992V4.53325C13.6476 3.41315 13.6476 2.85309 13.4296 2.42527C13.2379 2.04895 12.932 1.74299 12.5556 1.55124C12.1278 1.33325 11.5678 1.33325 10.4476 1.33325H6.18096C5.06085 1.33325 4.5008 1.33325 4.07298 1.55124C3.69665 1.74299 3.39069 2.04895 3.19894 2.42527C2.98096 2.85309 2.98096 3.41315 2.98096 4.53325V11.4666C2.98096 12.5867 2.98096 13.1467 3.19894 13.5746C3.39069 13.9509 3.69665 14.2569 4.07298 14.4486C4.5008 14.6666 5.06085 14.6666 6.18096 14.6666H7.98096M14.981 14.6666L13.981 13.6666M14.6476 11.9999C14.6476 13.2886 13.603 14.3333 12.3143 14.3333C11.0256 14.3333 9.98096 13.2886 9.98096 11.9999C9.98096 10.7113 11.0256 9.66658 12.3143 9.66658C13.603 9.66658 14.6476 10.7113 14.6476 11.9999Z" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
</svg>
</a>
</div>
<div class="details">
<div class="chart">
<svg
id='circle'
xmlns='http://www.w3.org/2000/svg'
version='1.1'
width='100%'
height='100%'
viewBox='-20 -20 240 240'
>
<g
fill='none'
stroke-width='32'
style="transform: translate(100px, 100px);"
>
<path
d="M 6.123233995736766e-15 -100 A 100 100 0 0 1 95.10565162951535 30.901699437494738"
pathLength="108"
style="stroke-dashoffset: 0; stroke-dasharray: 1000; stroke: #cb55cd"
>
<title>3</title>
</path>
<path
d="M 95.10565162951535 30.901699437494738 A 100 100 0 0 1 58.778525229247315 80.90169943749474"
pathLength="36"
style="stroke-dashoffset: 0; stroke-dasharray: 1000; stroke: #ef671e"
>
<title>1</title>
</path>
<path
d="M 58.778525229247315 80.90169943749474 A 100 100 0 0 1 -58.77852522924732 -80.90169943749473"
pathLength="180"
style="stroke-dashoffset: 0; stroke-dasharray: 1000; stroke: #e8e8e8"
>
<title>5</title>
</path>
<path
d="M -58.77852522924732 -80.90169943749473 A 100 100 0 0 1 -0.00017453292519727508 -99.99999999984769"
pathLength="35.999900000000025"
style="stroke-dashoffset: 0; stroke-dasharray: 1000; stroke: #e2e781"
>
<title>1</title>
</path>
</g>
</svg>
<span class="count">10</span>
</div>
<ul>
<li>
<span class="color" style="background-color: #cb55cd;"></span>
<span class="category">Advertising</span>
<span class="count">3</span>
</li>
<li>
<span class="color" style="background-color: #ef671e;"></span>
<span class="category">Audio Video Player</span>
<span class="count">1</span>
</li>
<li>
<span class="color" style="background-color: #e8e8e8;"></span>
<span class="category">Hosting</span>
<span class="count">5</span>
</li>
<li>
<span class="color" style="background-color: #e2e781;"></span>
<span class="category">Extensions</span>
<span class="count">1</span>
</li>
</ul>
</div>
</div>
</div>
</div>
<div class="empty"></div>
</div>
</div>
</div>
</li>
<li class="result " id="result-2">
<h2>
<a rel="noreferrer" href="https://www.reddit.com/r/4chan/">r/4chan</a>
</h2>
<div class="snippet">
<div>
</div>
<div class="description">
<p>
r/<strong>4chan</strong>: The stories and information posted here are artistic works of fiction and falsehood. Only a fool would take anything posted here as fact.
</p>
<div class="address-wrapper">
<div class="address">
<a class="url " href="https://www.reddit.com/r/4chan/" rel="noreferrer">https://www.reddit.com/r/4chan/</a>
<a class="wtm-badge" href="#wtm-popup-2">
<span class="wtm-chart">
<svg
id='circle'
xmlns='http://www.w3.org/2000/svg'
version='1.1'
width='100%'
height='100%'
viewBox='-20 -20 240 240'
>
<g
fill='none'
stroke-width='32'
style="transform: translate(100px, 100px);"
>
<path
d="M 6.123233995736766e-15 -100 A 100 100 0 0 1 92.38795325112868 38.268343236508976"
pathLength="112.5"
style="stroke-dashoffset: 0; stroke-dasharray: 1000; stroke: #cb55cd"
>
<title>5</title>
</path>
<path
d="M 92.38795325112868 38.268343236508976 A 100 100 0 0 1 70.71067811865476 70.71067811865474"
pathLength="22.5"
style="stroke-dashoffset: 0; stroke-dasharray: 1000; stroke: #87d7ef"
>
<title>1</title>
</path>
<path
d="M 70.71067811865476 70.71067811865474 A 100 100 0 0 1 38.26834323650898 92.38795325112868"
pathLength="22.5"
style="stroke-dashoffset: 0; stroke-dasharray: 1000; stroke: #ef671e"
>
<title>1</title>
</path>
<path
d="M 38.26834323650898 92.38795325112868 A 100 100 0 0 1 6.123233995736766e-15 100"
pathLength="22.5"
style="stroke-dashoffset: 0; stroke-dasharray: 1000; stroke: #ecafc2"
>
<title>1</title>
</path>
<path
d="M 6.123233995736766e-15 100 A 100 100 0 0 1 -38.268343236508976 92.38795325112868"
pathLength="22.5"
style="stroke-dashoffset: 0; stroke-dasharray: 1000; stroke: #388ee8"
>
<title>1</title>
</path>
<path
d="M -38.268343236508976 92.38795325112868 A 100 100 0 0 1 -38.26834323650895 -92.38795325112868"
pathLength="135"
style="stroke-dashoffset: 0; stroke-dasharray: 1000; stroke: #e8e8e8"
>
<title>6</title>
</path>
<path
d="M -38.26834323650895 -92.38795325112868 A 100 100 0 0 1 -0.00017453292519727508 -99.99999999984769"
pathLength="22.499900000000025"
style="stroke-dashoffset: 0; stroke-dasharray: 1000; stroke: #fdc257"
>
<title>1</title>
</path>
</g>
</svg>
</span>
<span class="wtm-count">16</span>
</a>
<div class="wtm-popup" id="wtm-popup-2">
<div class="wrapper">
<div class="header">
<svg width="25" height="24" viewBox="0 0 25 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd" d="M19.8145 10.5C19.8145 14.6421 16.4566 18 12.3145 18C8.17233 18 4.81445 14.6421 4.81445 10.5C4.81445 6.35788 8.17233 3 12.3145 3C16.4566 3 19.8145 6.35788 19.8145 10.5Z" fill="currentColor" />
<path fill-rule="evenodd" clip-rule="evenodd" d="M22.2207 19.9302C21.2254 17.6415 21.054 15.7022 21.0273 14.9403V8.67118C21.0273 3.88205 17.1256 0 12.3129 0C7.49973 0 3.59792 3.88205 3.59792 8.67118V15.0309C3.56074 15.8507 3.36517 17.7306 2.40828 19.9302C1.12213 22.8858 2.18654 22.5335 3.13994 22.2904C4.09322 22.0482 6.22217 21.0989 6.88726 22.2683C7.55208 23.4372 8.1067 24.4523 9.65875 23.7904C11.2109 23.1288 11.9423 22.9083 12.1639 22.9083H12.4654C12.6867 22.9083 13.4184 23.1288 14.9705 23.7904C16.5225 24.4523 17.0769 23.4372 17.7421 22.2683C18.4069 21.0989 20.5357 22.0482 21.4893 22.2904C22.4427 22.5335 23.5066 22.8858 22.2207 19.9302ZM9.62304 4.72821C10.5617 4.72821 11.3226 5.92624 11.3226 7.4046C11.3226 8.88282 10.5617 10.0813 9.62304 10.0813C8.6844 10.0813 7.92334 8.88282 7.92334 7.4046C7.92334 5.92624 8.6844 4.72821 9.62304 4.72821ZM12.3129 15.4259C10.2445 15.4259 8.50333 13.4004 7.97865 11.1466C8.99205 12.5328 10.5562 13.4237 12.3129 13.4237C14.0695 13.4237 15.6335 12.5328 16.6471 11.1466C16.1224 13.4004 14.3809 15.4259 12.3129 15.4259ZM15.0028 10.0813C14.0635 10.0813 13.3028 8.88282 13.3028 7.4046C13.3028 5.92624 14.0635 4.72821 15.0028 4.72821C15.942 4.72821 16.7024 5.92624 16.7024 7.4046C16.7024 8.88282 15.942 10.0813 15.0028 10.0813Z" fill="#00AEF0" />
</svg>
<h3>reddit.com</h3>
<a class="close" href="#"><svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" class="feather-x">
<path fill-rule="evenodd" clip-rule="evenodd" d="M19.2803 4.71967C19.5732 5.01256 19.5732 5.48744 19.2803 5.78033L5.78033 19.2803C5.48744 19.5732 5.01256 19.5732 4.71967 19.2803C4.42678 18.9874 4.42678 18.5126 4.71967 18.2197L18.2197 4.71967C18.5126 4.42678 18.9874 4.42678 19.2803 4.71967Z" fill="currentColor"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M4.71967 4.71967C5.01256 4.42678 5.48744 4.42678 5.78033 4.71967L19.2803 18.2197C19.5732 18.5126 19.5732 18.9874 19.2803 19.2803C18.9874 19.5732 18.5126 19.5732 18.2197 19.2803L4.71967 5.78033C4.42678 5.48744 4.42678 5.01256 4.71967 4.71967Z" fill="currentColor"/>
</svg>
</a>
</div>
<div class="info">
<div class="desc" tabindex="0">
All trackers seen
<span data-tooltip="Not all entities listed are trackers, meaning they do not collect your personal data."><svg width="17" height="16" viewBox="0 0 17 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0_831_3007)">
<path d="M8.31462 10.6666V7.99992M8.31462 5.33325H8.32128M14.9813 7.99992C14.9813 11.6818 11.9965 14.6666 8.31462 14.6666C4.63272 14.6666 1.64795 11.6818 1.64795 7.99992C1.64795 4.31802 4.63272 1.33325 8.31462 1.33325C11.9965 1.33325 14.9813 4.31802 14.9813 7.99992Z" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
</g>
<defs>
<clipPath id="clip0_831_3007">
<rect width="16" height="16" fill="currentColor" transform="translate(0.314453)"/>
</clipPath>
</defs>
</svg>
</span>
</div>
<a class="report" data-tooltip="WhoTracks.Me Statistical Report" href="https://whotracks.me/websites/reddit.com.html" target="_blank" title="Statistical report">
<svg width="17" height="16" viewBox="0 0 17 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M9.64762 7.33325H5.64762M6.98096 9.99992H5.64762M10.981 4.66659H5.64762M13.6476 6.99992V4.53325C13.6476 3.41315 13.6476 2.85309 13.4296 2.42527C13.2379 2.04895 12.932 1.74299 12.5556 1.55124C12.1278 1.33325 11.5678 1.33325 10.4476 1.33325H6.18096C5.06085 1.33325 4.5008 1.33325 4.07298 1.55124C3.69665 1.74299 3.39069 2.04895 3.19894 2.42527C2.98096 2.85309 2.98096 3.41315 2.98096 4.53325V11.4666C2.98096 12.5867 2.98096 13.1467 3.19894 13.5746C3.39069 13.9509 3.69665 14.2569 4.07298 14.4486C4.5008 14.6666 5.06085 14.6666 6.18096 14.6666H7.98096M14.981 14.6666L13.981 13.6666M14.6476 11.9999C14.6476 13.2886 13.603 14.3333 12.3143 14.3333C11.0256 14.3333 9.98096 13.2886 9.98096 11.9999C9.98096 10.7113 11.0256 9.66658 12.3143 9.66658C13.603 9.66658 14.6476 10.7113 14.6476 11.9999Z" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
</svg>
</a>
</div>
<div class="details">
<div class="chart">
<svg
id='circle'
xmlns='http://www.w3.org/2000/svg'
version='1.1'
width='100%'
height='100%'
viewBox='-20 -20 240 240'
>
<g
fill='none'
stroke-width='32'
style="transform: translate(100px, 100px);"
>
<path
d="M 6.123233995736766e-15 -100 A 100 100 0 0 1 92.38795325112868 38.268343236508976"
pathLength="112.5"
style="stroke-dashoffset: 0; stroke-dasharray: 1000; stroke: #cb55cd"
>
<title>5</title>
</path>
<path
d="M 92.38795325112868 38.268343236508976 A 100 100 0 0 1 70.71067811865476 70.71067811865474"
pathLength="22.5"
style="stroke-dashoffset: 0; stroke-dasharray: 1000; stroke: #87d7ef"
>
<title>1</title>
</path>
<path
d="M 70.71067811865476 70.71067811865474 A 100 100 0 0 1 38.26834323650898 92.38795325112868"
pathLength="22.5"
style="stroke-dashoffset: 0; stroke-dasharray: 1000; stroke: #ef671e"
>
<title>1</title>
</path>
<path
d="M 38.26834323650898 92.38795325112868 A 100 100 0 0 1 6.123233995736766e-15 100"
pathLength="22.5"
style="stroke-dashoffset: 0; stroke-dasharray: 1000; stroke: #ecafc2"
>
<title>1</title>
</path>
<path
d="M 6.123233995736766e-15 100 A 100 100 0 0 1 -38.268343236508976 92.38795325112868"
pathLength="22.5"
style="stroke-dashoffset: 0; stroke-dasharray: 1000; stroke: #388ee8"
>
<title>1</title>
</path>
<path
d="M -38.268343236508976 92.38795325112868 A 100 100 0 0 1 -38.26834323650895 -92.38795325112868"
pathLength="135"
style="stroke-dashoffset: 0; stroke-dasharray: 1000; stroke: #e8e8e8"
>
<title>6</title>
</path>
<path
d="M -38.26834323650895 -92.38795325112868 A 100 100 0 0 1 -0.00017453292519727508 -99.99999999984769"
pathLength="22.499900000000025"
style="stroke-dashoffset: 0; stroke-dasharray: 1000; stroke: #fdc257"
>
<title>1</title>
</path>
</g>
</svg>
<span class="count">16</span>
</div>
<ul>
<li>
<span class="color" style="background-color: #cb55cd;"></span>
<span class="category">Advertising</span>
<span class="count">5</span>
</li>
<li>
<span class="color" style="background-color: #87d7ef;"></span>
<span class="category">Site Analytics</span>
<span class="count">1</span>
</li>
<li>
<span class="color" style="background-color: #ef671e;"></span>
<span class="category">Audio Video Player</span>
<span class="count">1</span>
</li>
<li>
<span class="color" style="background-color: #ecafc2;"></span>
<span class="category">Misc</span>
<span class="count">1</span>
</li>
<li>
<span class="color" style="background-color: #388ee8;"></span>
<span class="category">Social Media</span>
<span class="count">1</span>
</li>
<li>
<span class="color" style="background-color: #e8e8e8;"></span>
<span class="category">Hosting</span>
<span class="count">6</span>
</li>
<li>
<span class="color" style="background-color: #fdc257;"></span>
<span class="category">Customer Interaction</span>
<span class="count">1</span>
</li>
</ul>
</div>
</div>
</div>
</div>
<div class="empty"></div>
</div>
</div>
</div>
</li>
<li class="result " id="result-3">
<h2>
<a rel="noreferrer" href="https://github.com/4chan/4chan-API">GitHub - 4chan/4chan-API: Documentation for 4chan's read-only JSON API.</a>
</h2>
<div class="snippet">
<div>
</div>
<div class="description">
<p>
Documentation for <strong>4chan</strong>'s read-only JSON API. Contribute to <strong>4chan</strong>/<strong>4chan</strong>-API development by creating an account on GitHub.
</p>
<div class="address-wrapper">
<div class="address">
<a class="url " href="https://github.com/4chan/4chan-API" rel="noreferrer">https://github.com/4chan/4chan-API</a>
<a class="wtm-badge" href="#wtm-popup-3">
<span class="wtm-chart">
<svg
id='circle'
xmlns='http://www.w3.org/2000/svg'
version='1.1'
width='100%'
height='100%'
viewBox='-20 -20 240 240'
>
<g
fill='none'
stroke-width='32'
style="transform: translate(100px, 100px);"
>
<path
d="M 6.123233995736766e-15 -100 A 100 100 0 0 1 100 0"
pathLength="90"
style="stroke-dashoffset: 0; stroke-dasharray: 1000; stroke: #cb55cd"
>
<title>2</title>
</path>
<path
d="M 100 0 A 100 100 0 0 1 70.71067811865476 70.71067811865474"
pathLength="45"
style="stroke-dashoffset: 0; stroke-dasharray: 1000; stroke: #ecafc2"
>
<title>1</title>
</path>
<path
d="M 70.71067811865476 70.71067811865474 A 100 100 0 0 1 -70.71067811865477 -70.71067811865474"
pathLength="180"
style="stroke-dashoffset: 0; stroke-dasharray: 1000; stroke: #e8e8e8"
>
<title>4</title>
</path>
<path
d="M -70.71067811865477 -70.71067811865474 A 100 100 0 0 1 -0.00017453292519727508 -99.99999999984769"
pathLength="44.999900000000025"
style="stroke-dashoffset: 0; stroke-dasharray: 1000; stroke: #fdc257"
>
<title>1</title>
</path>
</g>
</svg>
</span>
<span class="wtm-count">8</span>
</a>
<div class="wtm-popup" id="wtm-popup-3">
<div class="wrapper">
<div class="header">
<svg width="25" height="24" viewBox="0 0 25 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd" d="M19.8145 10.5C19.8145 14.6421 16.4566 18 12.3145 18C8.17233 18 4.81445 14.6421 4.81445 10.5C4.81445 6.35788 8.17233 3 12.3145 3C16.4566 3 19.8145 6.35788 19.8145 10.5Z" fill="currentColor" />
<path fill-rule="evenodd" clip-rule="evenodd" d="M22.2207 19.9302C21.2254 17.6415 21.054 15.7022 21.0273 14.9403V8.67118C21.0273 3.88205 17.1256 0 12.3129 0C7.49973 0 3.59792 3.88205 3.59792 8.67118V15.0309C3.56074 15.8507 3.36517 17.7306 2.40828 19.9302C1.12213 22.8858 2.18654 22.5335 3.13994 22.2904C4.09322 22.0482 6.22217 21.0989 6.88726 22.2683C7.55208 23.4372 8.1067 24.4523 9.65875 23.7904C11.2109 23.1288 11.9423 22.9083 12.1639 22.9083H12.4654C12.6867 22.9083 13.4184 23.1288 14.9705 23.7904C16.5225 24.4523 17.0769 23.4372 17.7421 22.2683C18.4069 21.0989 20.5357 22.0482 21.4893 22.2904C22.4427 22.5335 23.5066 22.8858 22.2207 19.9302ZM9.62304 4.72821C10.5617 4.72821 11.3226 5.92624 11.3226 7.4046C11.3226 8.88282 10.5617 10.0813 9.62304 10.0813C8.6844 10.0813 7.92334 8.88282 7.92334 7.4046C7.92334 5.92624 8.6844 4.72821 9.62304 4.72821ZM12.3129 15.4259C10.2445 15.4259 8.50333 13.4004 7.97865 11.1466C8.99205 12.5328 10.5562 13.4237 12.3129 13.4237C14.0695 13.4237 15.6335 12.5328 16.6471 11.1466C16.1224 13.4004 14.3809 15.4259 12.3129 15.4259ZM15.0028 10.0813C14.0635 10.0813 13.3028 8.88282 13.3028 7.4046C13.3028 5.92624 14.0635 4.72821 15.0028 4.72821C15.942 4.72821 16.7024 5.92624 16.7024 7.4046C16.7024 8.88282 15.942 10.0813 15.0028 10.0813Z" fill="#00AEF0" />
</svg>
<h3>github.com</h3>
<a class="close" href="#"><svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" class="feather-x">
<path fill-rule="evenodd" clip-rule="evenodd" d="M19.2803 4.71967C19.5732 5.01256 19.5732 5.48744 19.2803 5.78033L5.78033 19.2803C5.48744 19.5732 5.01256 19.5732 4.71967 19.2803C4.42678 18.9874 4.42678 18.5126 4.71967 18.2197L18.2197 4.71967C18.5126 4.42678 18.9874 4.42678 19.2803 4.71967Z" fill="currentColor"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M4.71967 4.71967C5.01256 4.42678 5.48744 4.42678 5.78033 4.71967L19.2803 18.2197C19.5732 18.5126 19.5732 18.9874 19.2803 19.2803C18.9874 19.5732 18.5126 19.5732 18.2197 19.2803L4.71967 5.78033C4.42678 5.48744 4.42678 5.01256 4.71967 4.71967Z" fill="currentColor"/>
</svg>
</a>
</div>
<div class="info">
<div class="desc" tabindex="0">
All trackers seen
<span data-tooltip="Not all entities listed are trackers, meaning they do not collect your personal data."><svg width="17" height="16" viewBox="0 0 17 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0_831_3007)">
<path d="M8.31462 10.6666V7.99992M8.31462 5.33325H8.32128M14.9813 7.99992C14.9813 11.6818 11.9965 14.6666 8.31462 14.6666C4.63272 14.6666 1.64795 11.6818 1.64795 7.99992C1.64795 4.31802 4.63272 1.33325 8.31462 1.33325C11.9965 1.33325 14.9813 4.31802 14.9813 7.99992Z" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
</g>
<defs>
<clipPath id="clip0_831_3007">
<rect width="16" height="16" fill="currentColor" transform="translate(0.314453)"/>
</clipPath>
</defs>
</svg>
</span>
</div>
<a class="report" data-tooltip="WhoTracks.Me Statistical Report" href="https://whotracks.me/websites/github.com.html" target="_blank" title="Statistical report">
<svg width="17" height="16" viewBox="0 0 17 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M9.64762 7.33325H5.64762M6.98096 9.99992H5.64762M10.981 4.66659H5.64762M13.6476 6.99992V4.53325C13.6476 3.41315 13.6476 2.85309 13.4296 2.42527C13.2379 2.04895 12.932 1.74299 12.5556 1.55124C12.1278 1.33325 11.5678 1.33325 10.4476 1.33325H6.18096C5.06085 1.33325 4.5008 1.33325 4.07298 1.55124C3.69665 1.74299 3.39069 2.04895 3.19894 2.42527C2.98096 2.85309 2.98096 3.41315 2.98096 4.53325V11.4666C2.98096 12.5867 2.98096 13.1467 3.19894 13.5746C3.39069 13.9509 3.69665 14.2569 4.07298 14.4486C4.5008 14.6666 5.06085 14.6666 6.18096 14.6666H7.98096M14.981 14.6666L13.981 13.6666M14.6476 11.9999C14.6476 13.2886 13.603 14.3333 12.3143 14.3333C11.0256 14.3333 9.98096 13.2886 9.98096 11.9999C9.98096 10.7113 11.0256 9.66658 12.3143 9.66658C13.603 9.66658 14.6476 10.7113 14.6476 11.9999Z" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
</svg>
</a>
</div>
<div class="details">
<div class="chart">
<svg
id='circle'
xmlns='http://www.w3.org/2000/svg'
version='1.1'
width='100%'
height='100%'
viewBox='-20 -20 240 240'
>
<g
fill='none'
stroke-width='32'
style="transform: translate(100px, 100px);"
>
<path
d="M 6.123233995736766e-15 -100 A 100 100 0 0 1 100 0"
pathLength="90"
style="stroke-dashoffset: 0; stroke-dasharray: 1000; stroke: #cb55cd"
>
<title>2</title>
</path>
<path
d="M 100 0 A 100 100 0 0 1 70.71067811865476 70.71067811865474"
pathLength="45"
style="stroke-dashoffset: 0; stroke-dasharray: 1000; stroke: #ecafc2"
>
<title>1</title>
</path>
<path
d="M 70.71067811865476 70.71067811865474 A 100 100 0 0 1 -70.71067811865477 -70.71067811865474"
pathLength="180"
style="stroke-dashoffset: 0; stroke-dasharray: 1000; stroke: #e8e8e8"
>
<title>4</title>
</path>
<path
d="M -70.71067811865477 -70.71067811865474 A 100 100 0 0 1 -0.00017453292519727508 -99.99999999984769"
pathLength="44.999900000000025"
style="stroke-dashoffset: 0; stroke-dasharray: 1000; stroke: #fdc257"
>
<title>1</title>
</path>
</g>
</svg>
<span class="count">8</span>
</div>
<ul>
<li>
<span class="color" style="background-color: #cb55cd;"></span>
<span class="category">Advertising</span>
<span class="count">2</span>
</li>
<li>
<span class="color" style="background-color: #ecafc2;"></span>
<span class="category">Misc</span>
<span class="count">1</span>
</li>
<li>
<span class="color" style="background-color: #e8e8e8;"></span>
<span class="category">Hosting</span>
<span class="count">4</span>
</li>
<li>
<span class="color" style="background-color: #fdc257;"></span>
<span class="category">Customer Interaction</span>
<span class="count">1</span>
</li>
</ul>
</div>
</div>
</div>
</div>
<div class="empty"></div>
</div>
</div>
</div>
</li>
<li class="result " id="result-4">
<h2>
<a rel="noreferrer" href="https://www.washingtonpost.com/news/the-intersect/wp/2014/09/25/absolutely-everything-you-need-to-know-to-understand-4chan-the-internets-own-bogeyman/">Absolutely everything you need to know to understand 4chan, the Internet’s own bogeyman - The Washington Post</a>
</h2>
<div class="snippet">
<div>
</div>
<div class="description">
<p>
A comprehensive, no-nonsense guide to one of the Internet's most confusing and influential Web sites.
</p>
<div class="address-wrapper">
<div class="address">
<a class="url " href="https://www.washingtonpost.com/news/the-intersect/wp/2014/09/25/absolutely-everything-you-need-to-know-to-understand-4chan-the-internets-own-bogeyman/" rel="noreferrer">https://www.washingtonpost.com/news/the-intersect/wp/2014/09/25/absolutely-everything-you-need-to-know-to-understand-4chan-the-internets-own-bogeyman/</a>
<a class="wtm-badge" href="#wtm-popup-4">
<span class="wtm-chart">
<svg
id='circle'
xmlns='http://www.w3.org/2000/svg'
version='1.1'
width='100%'
height='100%'
viewBox='-20 -20 240 240'
>
<g
fill='none'
stroke-width='32'
style="transform: translate(100px, 100px);"
>
<path
d="M 6.123233995736766e-15 -100 A 100 100 0 1 1 -25.19780613851248 96.7732946933499"
pathLength="194.59459459459458"
style="stroke-dashoffset: 0; stroke-dasharray: 1000; stroke: #cb55cd"
>
<title>20</title>
</path>
<path
d="M -25.19780613851248 96.7732946933499 A 100 100 0 0 1 -95.61667347392509 29.28227712765507"
pathLength="58.378378378378386"
style="stroke-dashoffset: 0; stroke-dasharray: 1000; stroke: #87d7ef"
>
<title>6</title>
</path>
<path
d="M -95.61667347392509 29.28227712765507 A 100 100 0 0 1 -99.19004352588769 12.70178197468787"
pathLength="9.72972972972974"
style="stroke-dashoffset: 0; stroke-dasharray: 1000; stroke: #ef671e"
>
<title>1</title>
</path>
<path
d="M -99.19004352588769 12.70178197468787 A 100 100 0 0 1 -92.78890272965096 -37.28564777803081"
pathLength="29.189189189189165"
style="stroke-dashoffset: 0; stroke-dasharray: 1000; stroke: #ecafc2"
>
<title>3</title>
</path>
<path
d="M -92.78890272965096 -37.28564777803081 A 100 100 0 0 1 -75.06723052527245 -66.06747233900812"
pathLength="19.45945945945948"
style="stroke-dashoffset: 0; stroke-dasharray: 1000; stroke: #388ee8"
>
<title>2</title>
</path>
<path
d="M -75.06723052527245 -66.06747233900812 A 100 100 0 0 1 -0.00017453292519727508 -99.99999999984769"
pathLength="48.64854864864867"
style="stroke-dashoffset: 0; stroke-dasharray: 1000; stroke: #e8e8e8"
>
<title>5</title>
</path>
</g>
</svg>
</span>
<span class="wtm-count">37</span>
</a>
<div class="wtm-popup" id="wtm-popup-4">
<div class="wrapper">
<div class="header">
<svg width="25" height="24" viewBox="0 0 25 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd" d="M19.8145 10.5C19.8145 14.6421 16.4566 18 12.3145 18C8.17233 18 4.81445 14.6421 4.81445 10.5C4.81445 6.35788 8.17233 3 12.3145 3C16.4566 3 19.8145 6.35788 19.8145 10.5Z" fill="currentColor" />
<path fill-rule="evenodd" clip-rule="evenodd" d="M22.2207 19.9302C21.2254 17.6415 21.054 15.7022 21.0273 14.9403V8.67118C21.0273 3.88205 17.1256 0 12.3129 0C7.49973 0 3.59792 3.88205 3.59792 8.67118V15.0309C3.56074 15.8507 3.36517 17.7306 2.40828 19.9302C1.12213 22.8858 2.18654 22.5335 3.13994 22.2904C4.09322 22.0482 6.22217 21.0989 6.88726 22.2683C7.55208 23.4372 8.1067 24.4523 9.65875 23.7904C11.2109 23.1288 11.9423 22.9083 12.1639 22.9083H12.4654C12.6867 22.9083 13.4184 23.1288 14.9705 23.7904C16.5225 24.4523 17.0769 23.4372 17.7421 22.2683C18.4069 21.0989 20.5357 22.0482 21.4893 22.2904C22.4427 22.5335 23.5066 22.8858 22.2207 19.9302ZM9.62304 4.72821C10.5617 4.72821 11.3226 5.92624 11.3226 7.4046C11.3226 8.88282 10.5617 10.0813 9.62304 10.0813C8.6844 10.0813 7.92334 8.88282 7.92334 7.4046C7.92334 5.92624 8.6844 4.72821 9.62304 4.72821ZM12.3129 15.4259C10.2445 15.4259 8.50333 13.4004 7.97865 11.1466C8.99205 12.5328 10.5562 13.4237 12.3129 13.4237C14.0695 13.4237 15.6335 12.5328 16.6471 11.1466C16.1224 13.4004 14.3809 15.4259 12.3129 15.4259ZM15.0028 10.0813C14.0635 10.0813 13.3028 8.88282 13.3028 7.4046C13.3028 5.92624 14.0635 4.72821 15.0028 4.72821C15.942 4.72821 16.7024 5.92624 16.7024 7.4046C16.7024 8.88282 15.942 10.0813 15.0028 10.0813Z" fill="#00AEF0" />
</svg>
<h3>washingtonpost.com</h3>
<a class="close" href="#"><svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" class="feather-x">
<path fill-rule="evenodd" clip-rule="evenodd" d="M19.2803 4.71967C19.5732 5.01256 19.5732 5.48744 19.2803 5.78033L5.78033 19.2803C5.48744 19.5732 5.01256 19.5732 4.71967 19.2803C4.42678 18.9874 4.42678 18.5126 4.71967 18.2197L18.2197 4.71967C18.5126 4.42678 18.9874 4.42678 19.2803 4.71967Z" fill="currentColor"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M4.71967 4.71967C5.01256 4.42678 5.48744 4.42678 5.78033 4.71967L19.2803 18.2197C19.5732 18.5126 19.5732 18.9874 19.2803 19.2803C18.9874 19.5732 18.5126 19.5732 18.2197 19.2803L4.71967 5.78033C4.42678 5.48744 4.42678 5.01256 4.71967 4.71967Z" fill="currentColor"/>
</svg>
</a>
</div>
<div class="info">
<div class="desc" tabindex="0">
All trackers seen
<span data-tooltip="Not all entities listed are trackers, meaning they do not collect your personal data."><svg width="17" height="16" viewBox="0 0 17 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0_831_3007)">
<path d="M8.31462 10.6666V7.99992M8.31462 5.33325H8.32128M14.9813 7.99992C14.9813 11.6818 11.9965 14.6666 8.31462 14.6666C4.63272 14.6666 1.64795 11.6818 1.64795 7.99992C1.64795 4.31802 4.63272 1.33325 8.31462 1.33325C11.9965 1.33325 14.9813 4.31802 14.9813 7.99992Z" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
</g>
<defs>
<clipPath id="clip0_831_3007">
<rect width="16" height="16" fill="currentColor" transform="translate(0.314453)"/>
</clipPath>
</defs>
</svg>
</span>
</div>
<a class="report" data-tooltip="WhoTracks.Me Statistical Report" href="https://whotracks.me/websites/washingtonpost.com.html" target="_blank" title="Statistical report">
<svg width="17" height="16" viewBox="0 0 17 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M9.64762 7.33325H5.64762M6.98096 9.99992H5.64762M10.981 4.66659H5.64762M13.6476 6.99992V4.53325C13.6476 3.41315 13.6476 2.85309 13.4296 2.42527C13.2379 2.04895 12.932 1.74299 12.5556 1.55124C12.1278 1.33325 11.5678 1.33325 10.4476 1.33325H6.18096C5.06085 1.33325 4.5008 1.33325 4.07298 1.55124C3.69665 1.74299 3.39069 2.04895 3.19894 2.42527C2.98096 2.85309 2.98096 3.41315 2.98096 4.53325V11.4666C2.98096 12.5867 2.98096 13.1467 3.19894 13.5746C3.39069 13.9509 3.69665 14.2569 4.07298 14.4486C4.5008 14.6666 5.06085 14.6666 6.18096 14.6666H7.98096M14.981 14.6666L13.981 13.6666M14.6476 11.9999C14.6476 13.2886 13.603 14.3333 12.3143 14.3333C11.0256 14.3333 9.98096 13.2886 9.98096 11.9999C9.98096 10.7113 11.0256 9.66658 12.3143 9.66658C13.603 9.66658 14.6476 10.7113 14.6476 11.9999Z" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
</svg>
</a>
</div>
<div class="details">
<div class="chart">
<svg
id='circle'
xmlns='http://www.w3.org/2000/svg'
version='1.1'
width='100%'
height='100%'
viewBox='-20 -20 240 240'
>
<g
fill='none'
stroke-width='32'
style="transform: translate(100px, 100px);"
>
<path
d="M 6.123233995736766e-15 -100 A 100 100 0 1 1 -25.19780613851248 96.7732946933499"
pathLength="194.59459459459458"
style="stroke-dashoffset: 0; stroke-dasharray: 1000; stroke: #cb55cd"
>
<title>20</title>
</path>
<path
d="M -25.19780613851248 96.7732946933499 A 100 100 0 0 1 -95.61667347392509 29.28227712765507"
pathLength="58.378378378378386"
style="stroke-dashoffset: 0; stroke-dasharray: 1000; stroke: #87d7ef"
>
<title>6</title>
</path>
<path
d="M -95.61667347392509 29.28227712765507 A 100 100 0 0 1 -99.19004352588769 12.70178197468787"
pathLength="9.72972972972974"
style="stroke-dashoffset: 0; stroke-dasharray: 1000; stroke: #ef671e"
>
<title>1</title>
</path>
<path
d="M -99.19004352588769 12.70178197468787 A 100 100 0 0 1 -92.78890272965096 -37.28564777803081"
pathLength="29.189189189189165"
style="stroke-dashoffset: 0; stroke-dasharray: 1000; stroke: #ecafc2"
>
<title>3</title>
</path>
<path
d="M -92.78890272965096 -37.28564777803081 A 100 100 0 0 1 -75.06723052527245 -66.06747233900812"
pathLength="19.45945945945948"
style="stroke-dashoffset: 0; stroke-dasharray: 1000; stroke: #388ee8"
>
<title>2</title>
</path>
<path
d="M -75.06723052527245 -66.06747233900812 A 100 100 0 0 1 -0.00017453292519727508 -99.99999999984769"
pathLength="48.64854864864867"
style="stroke-dashoffset: 0; stroke-dasharray: 1000; stroke: #e8e8e8"
>
<title>5</title>
</path>
</g>
</svg>
<span class="count">37</span>
</div>
<ul>
<li>
<span class="color" style="background-color: #cb55cd;"></span>
<span class="category">Advertising</span>
<span class="count">20</span>
</li>
<li>
<span class="color" style="background-color: #87d7ef;"></span>
<span class="category">Site Analytics</span>
<span class="count">6</span>
</li>
<li>
<span class="color" style="background-color: #ef671e;"></span>
<span class="category">Audio Video Player</span>
<span class="count">1</span>
</li>
<li>
<span class="color" style="background-color: #ecafc2;"></span>
<span class="category">Misc</span>
<span class="count">3</span>
</li>
<li>
<span class="color" style="background-color: #388ee8;"></span>
<span class="category">Social Media</span>
<span class="count">2</span>
</li>
<li>
<span class="color" style="background-color: #e8e8e8;"></span>
<span class="category">Hosting</span>
<span class="count">5</span>
</li>
</ul>
</div>
</div>
</div>
</div>
<div class="empty"></div>
</div>
</div>
</div>
</li>
<li class="result " id="result-5">
<h2>
<a rel="noreferrer" href="https://www.thebullhornnews.com/article/2023/12/the-dark-side-of-4chan-exploring-the-dangers-of-an-unmoderated-online-community">The Dark Side of 4chan: Exploring the Dangers of an Unmoderated Online Community - The Bullhorn News</a>
</h2>
<div class="snippet">
<div>
</div>
<div class="description">
<p>
The origins and dangers of the online chat room <strong>4chan</strong>.
</p>
<div class="address-wrapper">
<div class="address">
<a class="url " href="https://www.thebullhornnews.com/article/2023/12/the-dark-side-of-4chan-exploring-the-dangers-of-an-unmoderated-online-community" rel="noreferrer">https://www.thebullhornnews.com/article/2023/12/the-dark-side-of-4chan-exploring-the-dangers-of-an-unmoderated-online-community</a>
</div>
<div class="empty"></div>
</div>
</div>
</div>
</li>
<li class="result " id="result-6">
<h2>
<a rel="noreferrer" href="https://www.instagram.com/actual4chan/">4chan (@actual4chan) • Instagram photos and videos</a>
</h2>
<div class="snippet">
<div>
</div>
<div class="description">
<p>
15K Followers, 11 Following, 1,299 Posts - See Instagram photos and videos from <strong>4chan</strong> (@actual4chan)
</p>
<div class="address-wrapper">
<div class="address">
<a class="url " href="https://www.instagram.com/actual4chan/" rel="noreferrer">https://www.instagram.com/actual4chan/</a>
<a class="wtm-badge" href="#wtm-popup-6">
<span class="wtm-chart">
<svg
id='circle'
xmlns='http://www.w3.org/2000/svg'
version='1.1'
width='100%'
height='100%'
viewBox='-20 -20 240 240'
>
<g
fill='none'
stroke-width='32'
style="transform: translate(100px, 100px);"
>
<path
d="M 6.123233995736766e-15 -100 A 100 100 0 0 1 93.50162426854148 35.46048870425357"
pathLength="110.76923076923077"
style="stroke-dashoffset: 0; stroke-dasharray: 1000; stroke: #cb55cd"
>
<title>4</title>
</path>
<path
d="M 93.50162426854148 35.46048870425357 A 100 100 0 0 1 66.31226582407953 74.8510748171101"
pathLength="27.69230769230768"
style="stroke-dashoffset: 0; stroke-dasharray: 1000; stroke: #87d7ef"
>
<title>1</title>
</path>
<path
d="M 66.31226582407953 74.8510748171101 A 100 100 0 0 1 23.931566428755826 97.09418174260519"
pathLength="27.69230769230768"
style="stroke-dashoffset: 0; stroke-dasharray: 1000; stroke: #ef671e"
>
<title>1</title>
</path>
<path
d="M 23.931566428755826 97.09418174260519 A 100 100 0 0 1 -23.93156642875571 97.09418174260523"
pathLength="27.69230769230768"
style="stroke-dashoffset: 0; stroke-dasharray: 1000; stroke: #ecafc2"
>
<title>1</title>
</path>
<path
d="M -23.93156642875571 97.09418174260523 A 100 100 0 0 1 -66.31226582407946 74.85107481711015"
pathLength="27.69230769230768"
style="stroke-dashoffset: 0; stroke-dasharray: 1000; stroke: #388ee8"
>
<title>1</title>
</path>
<path
d="M -66.31226582407946 74.85107481711015 A 100 100 0 0 1 -1.0718754395722282e-13 -100"
pathLength="138.46153846153845"
style="stroke-dashoffset: 0; stroke-dasharray: 1000; stroke: #e8e8e8"
>
<title>5</title>
</path>
</g>
</svg>
</span>
<span class="wtm-count">13</span>
</a>
<div class="wtm-popup" id="wtm-popup-6">
<div class="wrapper">
<div class="header">
<svg width="25" height="24" viewBox="0 0 25 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd" d="M19.8145 10.5C19.8145 14.6421 16.4566 18 12.3145 18C8.17233 18 4.81445 14.6421 4.81445 10.5C4.81445 6.35788 8.17233 3 12.3145 3C16.4566 3 19.8145 6.35788 19.8145 10.5Z" fill="currentColor" />
<path fill-rule="evenodd" clip-rule="evenodd" d="M22.2207 19.9302C21.2254 17.6415 21.054 15.7022 21.0273 14.9403V8.67118C21.0273 3.88205 17.1256 0 12.3129 0C7.49973 0 3.59792 3.88205 3.59792 8.67118V15.0309C3.56074 15.8507 3.36517 17.7306 2.40828 19.9302C1.12213 22.8858 2.18654 22.5335 3.13994 22.2904C4.09322 22.0482 6.22217 21.0989 6.88726 22.2683C7.55208 23.4372 8.1067 24.4523 9.65875 23.7904C11.2109 23.1288 11.9423 22.9083 12.1639 22.9083H12.4654C12.6867 22.9083 13.4184 23.1288 14.9705 23.7904C16.5225 24.4523 17.0769 23.4372 17.7421 22.2683C18.4069 21.0989 20.5357 22.0482 21.4893 22.2904C22.4427 22.5335 23.5066 22.8858 22.2207 19.9302ZM9.62304 4.72821C10.5617 4.72821 11.3226 5.92624 11.3226 7.4046C11.3226 8.88282 10.5617 10.0813 9.62304 10.0813C8.6844 10.0813 7.92334 8.88282 7.92334 7.4046C7.92334 5.92624 8.6844 4.72821 9.62304 4.72821ZM12.3129 15.4259C10.2445 15.4259 8.50333 13.4004 7.97865 11.1466C8.99205 12.5328 10.5562 13.4237 12.3129 13.4237C14.0695 13.4237 15.6335 12.5328 16.6471 11.1466C16.1224 13.4004 14.3809 15.4259 12.3129 15.4259ZM15.0028 10.0813C14.0635 10.0813 13.3028 8.88282 13.3028 7.4046C13.3028 5.92624 14.0635 4.72821 15.0028 4.72821C15.942 4.72821 16.7024 5.92624 16.7024 7.4046C16.7024 8.88282 15.942 10.0813 15.0028 10.0813Z" fill="#00AEF0" />
</svg>
<h3>instagram.com</h3>
<a class="close" href="#"><svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" class="feather-x">
<path fill-rule="evenodd" clip-rule="evenodd" d="M19.2803 4.71967C19.5732 5.01256 19.5732 5.48744 19.2803 5.78033L5.78033 19.2803C5.48744 19.5732 5.01256 19.5732 4.71967 19.2803C4.42678 18.9874 4.42678 18.5126 4.71967 18.2197L18.2197 4.71967C18.5126 4.42678 18.9874 4.42678 19.2803 4.71967Z" fill="currentColor"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M4.71967 4.71967C5.01256 4.42678 5.48744 4.42678 5.78033 4.71967L19.2803 18.2197C19.5732 18.5126 19.5732 18.9874 19.2803 19.2803C18.9874 19.5732 18.5126 19.5732 18.2197 19.2803L4.71967 5.78033C4.42678 5.48744 4.42678 5.01256 4.71967 4.71967Z" fill="currentColor"/>
</svg>
</a>
</div>
<div class="info">
<div class="desc" tabindex="0">
All trackers seen
<span data-tooltip="Not all entities listed are trackers, meaning they do not collect your personal data."><svg width="17" height="16" viewBox="0 0 17 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0_831_3007)">
<path d="M8.31462 10.6666V7.99992M8.31462 5.33325H8.32128M14.9813 7.99992C14.9813 11.6818 11.9965 14.6666 8.31462 14.6666C4.63272 14.6666 1.64795 11.6818 1.64795 7.99992C1.64795 4.31802 4.63272 1.33325 8.31462 1.33325C11.9965 1.33325 14.9813 4.31802 14.9813 7.99992Z" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
</g>
<defs>
<clipPath id="clip0_831_3007">
<rect width="16" height="16" fill="currentColor" transform="translate(0.314453)"/>
</clipPath>
</defs>
</svg>
</span>
</div>
<a class="report" data-tooltip="WhoTracks.Me Statistical Report" href="https://whotracks.me/websites/instagram.com.html" target="_blank" title="Statistical report">
<svg width="17" height="16" viewBox="0 0 17 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M9.64762 7.33325H5.64762M6.98096 9.99992H5.64762M10.981 4.66659H5.64762M13.6476 6.99992V4.53325C13.6476 3.41315 13.6476 2.85309 13.4296 2.42527C13.2379 2.04895 12.932 1.74299 12.5556 1.55124C12.1278 1.33325 11.5678 1.33325 10.4476 1.33325H6.18096C5.06085 1.33325 4.5008 1.33325 4.07298 1.55124C3.69665 1.74299 3.39069 2.04895 3.19894 2.42527C2.98096 2.85309 2.98096 3.41315 2.98096 4.53325V11.4666C2.98096 12.5867 2.98096 13.1467 3.19894 13.5746C3.39069 13.9509 3.69665 14.2569 4.07298 14.4486C4.5008 14.6666 5.06085 14.6666 6.18096 14.6666H7.98096M14.981 14.6666L13.981 13.6666M14.6476 11.9999C14.6476 13.2886 13.603 14.3333 12.3143 14.3333C11.0256 14.3333 9.98096 13.2886 9.98096 11.9999C9.98096 10.7113 11.0256 9.66658 12.3143 9.66658C13.603 9.66658 14.6476 10.7113 14.6476 11.9999Z" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
</svg>
</a>
</div>
<div class="details">
<div class="chart">
<svg
id='circle'
xmlns='http://www.w3.org/2000/svg'
version='1.1'
width='100%'
height='100%'
viewBox='-20 -20 240 240'
>
<g
fill='none'
stroke-width='32'
style="transform: translate(100px, 100px);"
>
<path
d="M 6.123233995736766e-15 -100 A 100 100 0 0 1 93.50162426854148 35.46048870425357"
pathLength="110.76923076923077"
style="stroke-dashoffset: 0; stroke-dasharray: 1000; stroke: #cb55cd"
>
<title>4</title>
</path>
<path
d="M 93.50162426854148 35.46048870425357 A 100 100 0 0 1 66.31226582407953 74.8510748171101"
pathLength="27.69230769230768"
style="stroke-dashoffset: 0; stroke-dasharray: 1000; stroke: #87d7ef"
>
<title>1</title>
</path>
<path
d="M 66.31226582407953 74.8510748171101 A 100 100 0 0 1 23.931566428755826 97.09418174260519"
pathLength="27.69230769230768"
style="stroke-dashoffset: 0; stroke-dasharray: 1000; stroke: #ef671e"
>
<title>1</title>
</path>
<path
d="M 23.931566428755826 97.09418174260519 A 100 100 0 0 1 -23.93156642875571 97.09418174260523"
pathLength="27.69230769230768"
style="stroke-dashoffset: 0; stroke-dasharray: 1000; stroke: #ecafc2"
>
<title>1</title>
</path>
<path
d="M -23.93156642875571 97.09418174260523 A 100 100 0 0 1 -66.31226582407946 74.85107481711015"
pathLength="27.69230769230768"
style="stroke-dashoffset: 0; stroke-dasharray: 1000; stroke: #388ee8"
>
<title>1</title>
</path>
<path
d="M -66.31226582407946 74.85107481711015 A 100 100 0 0 1 -1.0718754395722282e-13 -100"
pathLength="138.46153846153845"
style="stroke-dashoffset: 0; stroke-dasharray: 1000; stroke: #e8e8e8"
>
<title>5</title>
</path>
</g>
</svg>
<span class="count">13</span>
</div>
<ul>
<li>
<span class="color" style="background-color: #cb55cd;"></span>
<span class="category">Advertising</span>
<span class="count">4</span>
</li>
<li>
<span class="color" style="background-color: #87d7ef;"></span>
<span class="category">Site Analytics</span>
<span class="count">1</span>
</li>
<li>
<span class="color" style="background-color: #ef671e;"></span>
<span class="category">Audio Video Player</span>
<span class="count">1</span>
</li>
<li>
<span class="color" style="background-color: #ecafc2;"></span>
<span class="category">Misc</span>
<span class="count">1</span>
</li>
<li>
<span class="color" style="background-color: #388ee8;"></span>
<span class="category">Social Media</span>
<span class="count">1</span>
</li>
<li>
<span class="color" style="background-color: #e8e8e8;"></span>
<span class="category">Hosting</span>
<span class="count">5</span>
</li>
</ul>
</div>
</div>
</div>
</div>
<div class="empty"></div>
</div>
</div>
</div>
</li>
<li class="result " id="result-7">
<h2>
<a rel="noreferrer" href="https://www.theguardian.com/technology/4chan">4chan | The Guardian</a>
</h2>
<div class="snippet">
<div>
</div>
<div class="description">
<p>
Latest news, sport, business, comment, analysis and reviews from the Guardian, the world's leading liberal voice
</p>
<div class="address-wrapper">
<div class="address">
<a class="url " href="https://www.theguardian.com/technology/4chan" rel="noreferrer">https://www.theguardian.com/technology/4chan</a>
<a class="wtm-badge" href="#wtm-popup-7">
<span class="wtm-chart">
<svg
id='circle'
xmlns='http://www.w3.org/2000/svg'
version='1.1'
width='100%'
height='100%'
viewBox='-20 -20 240 240'
>
<g
fill='none'
stroke-width='32'
style="transform: translate(100px, 100px);"
>
<path
d="M 6.123233995736766e-15 -100 A 100 100 0 1 1 -46.47231720437685 88.54560256532099"
pathLength="207.69230769230768"
style="stroke-dashoffset: 0; stroke-dasharray: 1000; stroke: #cb55cd"
>
<title>15</title>
</path>
<path
d="M -46.47231720437685 88.54560256532099 A 100 100 0 0 1 -93.50162426854148 35.460488704253585"
pathLength="41.53846153846155"
style="stroke-dashoffset: 0; stroke-dasharray: 1000; stroke: #87d7ef"
>
<title>3</title>
</path>
<path
d="M -93.50162426854148 35.460488704253585 A 100 100 0 0 1 -99.27088740980541 12.053668025532263"
pathLength="13.846153846153868"
style="stroke-dashoffset: 0; stroke-dasharray: 1000; stroke: #ef671e"
>
<title>1</title>
</path>
<path
d="M -99.27088740980541 12.053668025532263 A 100 100 0 0 1 -99.27088740980538 -12.053668025532371"
pathLength="13.846153846153868"
style="stroke-dashoffset: 0; stroke-dasharray: 1000; stroke: #ecafc2"
>
<title>1</title>
</path>
<path
d="M -99.27088740980538 -12.053668025532371 A 100 100 0 0 1 -82.2983865893656 -56.80647467311564"
pathLength="27.69230769230768"
style="stroke-dashoffset: 0; stroke-dasharray: 1000; stroke: #388ee8"
>
<title>2</title>
</path>
<path
d="M -82.2983865893656 -56.80647467311564 A 100 100 0 0 1 -0.00017453292519727508 -99.99999999984769"
pathLength="55.38451538461538"
style="stroke-dashoffset: 0; stroke-dasharray: 1000; stroke: #e8e8e8"
>
<title>4</title>
</path>
</g>
</svg>
</span>
<span class="wtm-count">26</span>
</a>
<div class="wtm-popup" id="wtm-popup-7">
<div class="wrapper">
<div class="header">
<svg width="25" height="24" viewBox="0 0 25 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd" d="M19.8145 10.5C19.8145 14.6421 16.4566 18 12.3145 18C8.17233 18 4.81445 14.6421 4.81445 10.5C4.81445 6.35788 8.17233 3 12.3145 3C16.4566 3 19.8145 6.35788 19.8145 10.5Z" fill="currentColor" />
<path fill-rule="evenodd" clip-rule="evenodd" d="M22.2207 19.9302C21.2254 17.6415 21.054 15.7022 21.0273 14.9403V8.67118C21.0273 3.88205 17.1256 0 12.3129 0C7.49973 0 3.59792 3.88205 3.59792 8.67118V15.0309C3.56074 15.8507 3.36517 17.7306 2.40828 19.9302C1.12213 22.8858 2.18654 22.5335 3.13994 22.2904C4.09322 22.0482 6.22217 21.0989 6.88726 22.2683C7.55208 23.4372 8.1067 24.4523 9.65875 23.7904C11.2109 23.1288 11.9423 22.9083 12.1639 22.9083H12.4654C12.6867 22.9083 13.4184 23.1288 14.9705 23.7904C16.5225 24.4523 17.0769 23.4372 17.7421 22.2683C18.4069 21.0989 20.5357 22.0482 21.4893 22.2904C22.4427 22.5335 23.5066 22.8858 22.2207 19.9302ZM9.62304 4.72821C10.5617 4.72821 11.3226 5.92624 11.3226 7.4046C11.3226 8.88282 10.5617 10.0813 9.62304 10.0813C8.6844 10.0813 7.92334 8.88282 7.92334 7.4046C7.92334 5.92624 8.6844 4.72821 9.62304 4.72821ZM12.3129 15.4259C10.2445 15.4259 8.50333 13.4004 7.97865 11.1466C8.99205 12.5328 10.5562 13.4237 12.3129 13.4237C14.0695 13.4237 15.6335 12.5328 16.6471 11.1466C16.1224 13.4004 14.3809 15.4259 12.3129 15.4259ZM15.0028 10.0813C14.0635 10.0813 13.3028 8.88282 13.3028 7.4046C13.3028 5.92624 14.0635 4.72821 15.0028 4.72821C15.942 4.72821 16.7024 5.92624 16.7024 7.4046C16.7024 8.88282 15.942 10.0813 15.0028 10.0813Z" fill="#00AEF0" />
</svg>
<h3>theguardian.com</h3>
<a class="close" href="#"><svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" class="feather-x">
<path fill-rule="evenodd" clip-rule="evenodd" d="M19.2803 4.71967C19.5732 5.01256 19.5732 5.48744 19.2803 5.78033L5.78033 19.2803C5.48744 19.5732 5.01256 19.5732 4.71967 19.2803C4.42678 18.9874 4.42678 18.5126 4.71967 18.2197L18.2197 4.71967C18.5126 4.42678 18.9874 4.42678 19.2803 4.71967Z" fill="currentColor"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M4.71967 4.71967C5.01256 4.42678 5.48744 4.42678 5.78033 4.71967L19.2803 18.2197C19.5732 18.5126 19.5732 18.9874 19.2803 19.2803C18.9874 19.5732 18.5126 19.5732 18.2197 19.2803L4.71967 5.78033C4.42678 5.48744 4.42678 5.01256 4.71967 4.71967Z" fill="currentColor"/>
</svg>
</a>
</div>
<div class="info">
<div class="desc" tabindex="0">
All trackers seen
<span data-tooltip="Not all entities listed are trackers, meaning they do not collect your personal data."><svg width="17" height="16" viewBox="0 0 17 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0_831_3007)">
<path d="M8.31462 10.6666V7.99992M8.31462 5.33325H8.32128M14.9813 7.99992C14.9813 11.6818 11.9965 14.6666 8.31462 14.6666C4.63272 14.6666 1.64795 11.6818 1.64795 7.99992C1.64795 4.31802 4.63272 1.33325 8.31462 1.33325C11.9965 1.33325 14.9813 4.31802 14.9813 7.99992Z" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
</g>
<defs>
<clipPath id="clip0_831_3007">
<rect width="16" height="16" fill="currentColor" transform="translate(0.314453)"/>
</clipPath>
</defs>
</svg>
</span>
</div>
<a class="report" data-tooltip="WhoTracks.Me Statistical Report" href="https://whotracks.me/websites/theguardian.com.html" target="_blank" title="Statistical report">
<svg width="17" height="16" viewBox="0 0 17 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M9.64762 7.33325H5.64762M6.98096 9.99992H5.64762M10.981 4.66659H5.64762M13.6476 6.99992V4.53325C13.6476 3.41315 13.6476 2.85309 13.4296 2.42527C13.2379 2.04895 12.932 1.74299 12.5556 1.55124C12.1278 1.33325 11.5678 1.33325 10.4476 1.33325H6.18096C5.06085 1.33325 4.5008 1.33325 4.07298 1.55124C3.69665 1.74299 3.39069 2.04895 3.19894 2.42527C2.98096 2.85309 2.98096 3.41315 2.98096 4.53325V11.4666C2.98096 12.5867 2.98096 13.1467 3.19894 13.5746C3.39069 13.9509 3.69665 14.2569 4.07298 14.4486C4.5008 14.6666 5.06085 14.6666 6.18096 14.6666H7.98096M14.981 14.6666L13.981 13.6666M14.6476 11.9999C14.6476 13.2886 13.603 14.3333 12.3143 14.3333C11.0256 14.3333 9.98096 13.2886 9.98096 11.9999C9.98096 10.7113 11.0256 9.66658 12.3143 9.66658C13.603 9.66658 14.6476 10.7113 14.6476 11.9999Z" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
</svg>
</a>
</div>
<div class="details">
<div class="chart">
<svg
id='circle'
xmlns='http://www.w3.org/2000/svg'
version='1.1'
width='100%'
height='100%'
viewBox='-20 -20 240 240'
>
<g
fill='none'
stroke-width='32'
style="transform: translate(100px, 100px);"
>
<path
d="M 6.123233995736766e-15 -100 A 100 100 0 1 1 -46.47231720437685 88.54560256532099"
pathLength="207.69230769230768"
style="stroke-dashoffset: 0; stroke-dasharray: 1000; stroke: #cb55cd"
>
<title>15</title>
</path>
<path
d="M -46.47231720437685 88.54560256532099 A 100 100 0 0 1 -93.50162426854148 35.460488704253585"
pathLength="41.53846153846155"
style="stroke-dashoffset: 0; stroke-dasharray: 1000; stroke: #87d7ef"
>
<title>3</title>
</path>
<path
d="M -93.50162426854148 35.460488704253585 A 100 100 0 0 1 -99.27088740980541 12.053668025532263"
pathLength="13.846153846153868"
style="stroke-dashoffset: 0; stroke-dasharray: 1000; stroke: #ef671e"
>
<title>1</title>
</path>
<path
d="M -99.27088740980541 12.053668025532263 A 100 100 0 0 1 -99.27088740980538 -12.053668025532371"
pathLength="13.846153846153868"
style="stroke-dashoffset: 0; stroke-dasharray: 1000; stroke: #ecafc2"
>
<title>1</title>
</path>
<path
d="M -99.27088740980538 -12.053668025532371 A 100 100 0 0 1 -82.2983865893656 -56.80647467311564"
pathLength="27.69230769230768"
style="stroke-dashoffset: 0; stroke-dasharray: 1000; stroke: #388ee8"
>
<title>2</title>
</path>
<path
d="M -82.2983865893656 -56.80647467311564 A 100 100 0 0 1 -0.00017453292519727508 -99.99999999984769"
pathLength="55.38451538461538"
style="stroke-dashoffset: 0; stroke-dasharray: 1000; stroke: #e8e8e8"
>
<title>4</title>
</path>
</g>
</svg>
<span class="count">26</span>
</div>
<ul>
<li>
<span class="color" style="background-color: #cb55cd;"></span>
<span class="category">Advertising</span>
<span class="count">15</span>
</li>
<li>
<span class="color" style="background-color: #87d7ef;"></span>
<span class="category">Site Analytics</span>
<span class="count">3</span>
</li>
<li>
<span class="color" style="background-color: #ef671e;"></span>
<span class="category">Audio Video Player</span>
<span class="count">1</span>
</li>
<li>
<span class="color" style="background-color: #ecafc2;"></span>
<span class="category">Misc</span>
<span class="count">1</span>
</li>
<li>
<span class="color" style="background-color: #388ee8;"></span>
<span class="category">Social Media</span>
<span class="count">2</span>
</li>
<li>
<span class="color" style="background-color: #e8e8e8;"></span>
<span class="category">Hosting</span>
<span class="count">4</span>
</li>
</ul>
</div>
</div>
</div>
</div>
<div class="empty"></div>
</div>
</div>
</div>
</li>
<li class="result " id="result-8">
<h2>
<a rel="noreferrer" href="https://www.amazon.com/Epic-Win-4chans-Army-Conquered/dp/1590207106">Epic Win for Anonymous: How 4chan's Army Conquered the Web: Stryker, Cole: 9781590207109: Amazon.com: Books</a>
</h2>
<div class="snippet">
<div>
</div>
<div class="description">
<p>
Epic Win for Anonymous: How <strong>4chan</strong>'s Army Conquered the Web [Stryker, Cole] on Amazon.com. *FREE* shipping on qualifying offers. Epic Win for Anonymous: How <strong>4chan</strong>'s Army Conquered the Web
</p>
<div class="address-wrapper">
<div class="address">
<a class="url " href="https://www.amazon.com/Epic-Win-4chans-Army-Conquered/dp/1590207106" rel="noreferrer">https://www.amazon.com/Epic-Win-4chans-Army-Conquered/dp/1590207106</a>
<a class="wtm-badge" href="#wtm-popup-8">
<span class="wtm-chart">
<svg
id='circle'
xmlns='http://www.w3.org/2000/svg'
version='1.1'
width='100%'
height='100%'
viewBox='-20 -20 240 240'
>
<g
fill='none'
stroke-width='32'
style="transform: translate(100px, 100px);"
>
<path
d="M 6.123233995736766e-15 -100 A 100 100 0 1 1 -86.60254037844388 49.99999999999999"
pathLength="240"
style="stroke-dashoffset: 0; stroke-dasharray: 1000; stroke: #cb55cd"
>
<title>18</title>
</path>
<path
d="M -86.60254037844388 49.99999999999999 A 100 100 0 0 1 -98.4807753012208 -17.364817766693047"
pathLength="40"
style="stroke-dashoffset: 0; stroke-dasharray: 1000; stroke: #87d7ef"
>
<title>3</title>
</path>
<path
d="M -98.4807753012208 -17.364817766693047 A 100 100 0 0 1 -91.82161068802743 -39.60797660391561"
pathLength="13.333333333333314"
style="stroke-dashoffset: 0; stroke-dasharray: 1000; stroke: #ef671e"
>
<title>1</title>
</path>
<path
d="M -91.82161068802743 -39.60797660391561 A 100 100 0 0 1 -0.00017453292519727508 -99.99999999984769"
pathLength="66.66656666666671"
style="stroke-dashoffset: 0; stroke-dasharray: 1000; stroke: #e8e8e8"
>
<title>5</title>
</path>
</g>
</svg>
</span>
<span class="wtm-count">27</span>
</a>
<div class="wtm-popup" id="wtm-popup-8">
<div class="wrapper">
<div class="header">
<svg width="25" height="24" viewBox="0 0 25 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd" d="M19.8145 10.5C19.8145 14.6421 16.4566 18 12.3145 18C8.17233 18 4.81445 14.6421 4.81445 10.5C4.81445 6.35788 8.17233 3 12.3145 3C16.4566 3 19.8145 6.35788 19.8145 10.5Z" fill="currentColor" />
<path fill-rule="evenodd" clip-rule="evenodd" d="M22.2207 19.9302C21.2254 17.6415 21.054 15.7022 21.0273 14.9403V8.67118C21.0273 3.88205 17.1256 0 12.3129 0C7.49973 0 3.59792 3.88205 3.59792 8.67118V15.0309C3.56074 15.8507 3.36517 17.7306 2.40828 19.9302C1.12213 22.8858 2.18654 22.5335 3.13994 22.2904C4.09322 22.0482 6.22217 21.0989 6.88726 22.2683C7.55208 23.4372 8.1067 24.4523 9.65875 23.7904C11.2109 23.1288 11.9423 22.9083 12.1639 22.9083H12.4654C12.6867 22.9083 13.4184 23.1288 14.9705 23.7904C16.5225 24.4523 17.0769 23.4372 17.7421 22.2683C18.4069 21.0989 20.5357 22.0482 21.4893 22.2904C22.4427 22.5335 23.5066 22.8858 22.2207 19.9302ZM9.62304 4.72821C10.5617 4.72821 11.3226 5.92624 11.3226 7.4046C11.3226 8.88282 10.5617 10.0813 9.62304 10.0813C8.6844 10.0813 7.92334 8.88282 7.92334 7.4046C7.92334 5.92624 8.6844 4.72821 9.62304 4.72821ZM12.3129 15.4259C10.2445 15.4259 8.50333 13.4004 7.97865 11.1466C8.99205 12.5328 10.5562 13.4237 12.3129 13.4237C14.0695 13.4237 15.6335 12.5328 16.6471 11.1466C16.1224 13.4004 14.3809 15.4259 12.3129 15.4259ZM15.0028 10.0813C14.0635 10.0813 13.3028 8.88282 13.3028 7.4046C13.3028 5.92624 14.0635 4.72821 15.0028 4.72821C15.942 4.72821 16.7024 5.92624 16.7024 7.4046C16.7024 8.88282 15.942 10.0813 15.0028 10.0813Z" fill="#00AEF0" />
</svg>
<h3>amazon.com</h3>
<a class="close" href="#"><svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" class="feather-x">
<path fill-rule="evenodd" clip-rule="evenodd" d="M19.2803 4.71967C19.5732 5.01256 19.5732 5.48744 19.2803 5.78033L5.78033 19.2803C5.48744 19.5732 5.01256 19.5732 4.71967 19.2803C4.42678 18.9874 4.42678 18.5126 4.71967 18.2197L18.2197 4.71967C18.5126 4.42678 18.9874 4.42678 19.2803 4.71967Z" fill="currentColor"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M4.71967 4.71967C5.01256 4.42678 5.48744 4.42678 5.78033 4.71967L19.2803 18.2197C19.5732 18.5126 19.5732 18.9874 19.2803 19.2803C18.9874 19.5732 18.5126 19.5732 18.2197 19.2803L4.71967 5.78033C4.42678 5.48744 4.42678 5.01256 4.71967 4.71967Z" fill="currentColor"/>
</svg>
</a>
</div>
<div class="info">
<div class="desc" tabindex="0">
All trackers seen
<span data-tooltip="Not all entities listed are trackers, meaning they do not collect your personal data."><svg width="17" height="16" viewBox="0 0 17 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0_831_3007)">
<path d="M8.31462 10.6666V7.99992M8.31462 5.33325H8.32128M14.9813 7.99992C14.9813 11.6818 11.9965 14.6666 8.31462 14.6666C4.63272 14.6666 1.64795 11.6818 1.64795 7.99992C1.64795 4.31802 4.63272 1.33325 8.31462 1.33325C11.9965 1.33325 14.9813 4.31802 14.9813 7.99992Z" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
</g>
<defs>
<clipPath id="clip0_831_3007">
<rect width="16" height="16" fill="currentColor" transform="translate(0.314453)"/>
</clipPath>
</defs>
</svg>
</span>
</div>
<a class="report" data-tooltip="WhoTracks.Me Statistical Report" href="https://whotracks.me/websites/amazon.com.html" target="_blank" title="Statistical report">
<svg width="17" height="16" viewBox="0 0 17 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M9.64762 7.33325H5.64762M6.98096 9.99992H5.64762M10.981 4.66659H5.64762M13.6476 6.99992V4.53325C13.6476 3.41315 13.6476 2.85309 13.4296 2.42527C13.2379 2.04895 12.932 1.74299 12.5556 1.55124C12.1278 1.33325 11.5678 1.33325 10.4476 1.33325H6.18096C5.06085 1.33325 4.5008 1.33325 4.07298 1.55124C3.69665 1.74299 3.39069 2.04895 3.19894 2.42527C2.98096 2.85309 2.98096 3.41315 2.98096 4.53325V11.4666C2.98096 12.5867 2.98096 13.1467 3.19894 13.5746C3.39069 13.9509 3.69665 14.2569 4.07298 14.4486C4.5008 14.6666 5.06085 14.6666 6.18096 14.6666H7.98096M14.981 14.6666L13.981 13.6666M14.6476 11.9999C14.6476 13.2886 13.603 14.3333 12.3143 14.3333C11.0256 14.3333 9.98096 13.2886 9.98096 11.9999C9.98096 10.7113 11.0256 9.66658 12.3143 9.66658C13.603 9.66658 14.6476 10.7113 14.6476 11.9999Z" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
</svg>
</a>
</div>
<div class="details">
<div class="chart">
<svg
id='circle'
xmlns='http://www.w3.org/2000/svg'
version='1.1'
width='100%'
height='100%'
viewBox='-20 -20 240 240'
>
<g
fill='none'
stroke-width='32'
style="transform: translate(100px, 100px);"
>
<path
d="M 6.123233995736766e-15 -100 A 100 100 0 1 1 -86.60254037844388 49.99999999999999"
pathLength="240"
style="stroke-dashoffset: 0; stroke-dasharray: 1000; stroke: #cb55cd"
>
<title>18</title>
</path>
<path
d="M -86.60254037844388 49.99999999999999 A 100 100 0 0 1 -98.4807753012208 -17.364817766693047"
pathLength="40"
style="stroke-dashoffset: 0; stroke-dasharray: 1000; stroke: #87d7ef"
>
<title>3</title>
</path>
<path
d="M -98.4807753012208 -17.364817766693047 A 100 100 0 0 1 -91.82161068802743 -39.60797660391561"
pathLength="13.333333333333314"
style="stroke-dashoffset: 0; stroke-dasharray: 1000; stroke: #ef671e"
>
<title>1</title>
</path>
<path
d="M -91.82161068802743 -39.60797660391561 A 100 100 0 0 1 -0.00017453292519727508 -99.99999999984769"
pathLength="66.66656666666671"
style="stroke-dashoffset: 0; stroke-dasharray: 1000; stroke: #e8e8e8"
>
<title>5</title>
</path>
</g>
</svg>
<span class="count">27</span>
</div>
<ul>
<li>
<span class="color" style="background-color: #cb55cd;"></span>
<span class="category">Advertising</span>
<span class="count">18</span>
</li>
<li>
<span class="color" style="background-color: #87d7ef;"></span>
<span class="category">Site Analytics</span>
<span class="count">3</span>
</li>
<li>
<span class="color" style="background-color: #ef671e;"></span>
<span class="category">Audio Video Player</span>
<span class="count">1</span>
</li>
<li>
<span class="color" style="background-color: #e8e8e8;"></span>
<span class="category">Hosting</span>
<span class="count">5</span>
</li>
</ul>
</div>
</div>
</div>
</div>
<div class="empty"></div>
</div>
</div>
</div>
</li>
<li class="result " id="result-9">
<h2>
<a rel="noreferrer" href="https://twitter.com/4chan">4chan</a>
</h2>
<div class="snippet">
<div>
</div>
<div class="description">
<p>
<strong>4chan</strong>
</p>
<div class="address-wrapper">
<div class="address">
<a class="url " href="https://twitter.com/4chan" rel="noreferrer">https://twitter.com/4chan</a>
<a class="wtm-badge" href="#wtm-popup-9">
<span class="wtm-chart">
<svg
id='circle'
xmlns='http://www.w3.org/2000/svg'
version='1.1'
width='100%'
height='100%'
viewBox='-20 -20 240 240'
>
<g
fill='none'
stroke-width='32'
style="transform: translate(100px, 100px);"
>
<path
d="M 6.123233995736766e-15 -100 A 100 100 0 0 1 90.48270524660195 42.577929156507274"
pathLength="115.2"
style="stroke-dashoffset: 0; stroke-dasharray: 1000; stroke: #cb55cd"
>
<title>8</title>
</path>
<path
d="M 90.48270524660195 42.577929156507274 A 100 100 0 0 1 36.81245526846779 92.97764858882515"
pathLength="43.2"
style="stroke-dashoffset: 0; stroke-dasharray: 1000; stroke: #87d7ef"
>
<title>3</title>
</path>
<path
d="M 36.81245526846779 92.97764858882515 A 100 100 0 0 1 12.533323356430405 99.21147013144778"
pathLength="14.400000000000006"
style="stroke-dashoffset: 0; stroke-dasharray: 1000; stroke: #ef671e"
>
<title>1</title>
</path>
<path
d="M 12.533323356430405 99.21147013144778 A 100 100 0 0 1 -12.533323356430456 99.21147013144778"
pathLength="14.400000000000006"
style="stroke-dashoffset: 0; stroke-dasharray: 1000; stroke: #ecafc2"
>
<title>1</title>
</path>
<path
d="M -12.533323356430456 99.21147013144778 A 100 100 0 0 1 -77.05132427757897 63.74239897486892"
pathLength="43.20000000000002"
style="stroke-dashoffset: 0; stroke-dasharray: 1000; stroke: #388ee8"
>
<title>3</title>
</path>
<path
d="M -77.05132427757897 63.74239897486892 A 100 100 0 0 1 -0.00017453292519727508 -99.99999999984769"
pathLength="129.5999"
style="stroke-dashoffset: 0; stroke-dasharray: 1000; stroke: #e8e8e8"
>
<title>9</title>
</path>
</g>
</svg>
</span>
<span class="wtm-count">25</span>
</a>
<div class="wtm-popup" id="wtm-popup-9">
<div class="wrapper">
<div class="header">
<svg width="25" height="24" viewBox="0 0 25 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd" d="M19.8145 10.5C19.8145 14.6421 16.4566 18 12.3145 18C8.17233 18 4.81445 14.6421 4.81445 10.5C4.81445 6.35788 8.17233 3 12.3145 3C16.4566 3 19.8145 6.35788 19.8145 10.5Z" fill="currentColor" />
<path fill-rule="evenodd" clip-rule="evenodd" d="M22.2207 19.9302C21.2254 17.6415 21.054 15.7022 21.0273 14.9403V8.67118C21.0273 3.88205 17.1256 0 12.3129 0C7.49973 0 3.59792 3.88205 3.59792 8.67118V15.0309C3.56074 15.8507 3.36517 17.7306 2.40828 19.9302C1.12213 22.8858 2.18654 22.5335 3.13994 22.2904C4.09322 22.0482 6.22217 21.0989 6.88726 22.2683C7.55208 23.4372 8.1067 24.4523 9.65875 23.7904C11.2109 23.1288 11.9423 22.9083 12.1639 22.9083H12.4654C12.6867 22.9083 13.4184 23.1288 14.9705 23.7904C16.5225 24.4523 17.0769 23.4372 17.7421 22.2683C18.4069 21.0989 20.5357 22.0482 21.4893 22.2904C22.4427 22.5335 23.5066 22.8858 22.2207 19.9302ZM9.62304 4.72821C10.5617 4.72821 11.3226 5.92624 11.3226 7.4046C11.3226 8.88282 10.5617 10.0813 9.62304 10.0813C8.6844 10.0813 7.92334 8.88282 7.92334 7.4046C7.92334 5.92624 8.6844 4.72821 9.62304 4.72821ZM12.3129 15.4259C10.2445 15.4259 8.50333 13.4004 7.97865 11.1466C8.99205 12.5328 10.5562 13.4237 12.3129 13.4237C14.0695 13.4237 15.6335 12.5328 16.6471 11.1466C16.1224 13.4004 14.3809 15.4259 12.3129 15.4259ZM15.0028 10.0813C14.0635 10.0813 13.3028 8.88282 13.3028 7.4046C13.3028 5.92624 14.0635 4.72821 15.0028 4.72821C15.942 4.72821 16.7024 5.92624 16.7024 7.4046C16.7024 8.88282 15.942 10.0813 15.0028 10.0813Z" fill="#00AEF0" />
</svg>
<h3>twitter.com</h3>
<a class="close" href="#"><svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" class="feather-x">
<path fill-rule="evenodd" clip-rule="evenodd" d="M19.2803 4.71967C19.5732 5.01256 19.5732 5.48744 19.2803 5.78033L5.78033 19.2803C5.48744 19.5732 5.01256 19.5732 4.71967 19.2803C4.42678 18.9874 4.42678 18.5126 4.71967 18.2197L18.2197 4.71967C18.5126 4.42678 18.9874 4.42678 19.2803 4.71967Z" fill="currentColor"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M4.71967 4.71967C5.01256 4.42678 5.48744 4.42678 5.78033 4.71967L19.2803 18.2197C19.5732 18.5126 19.5732 18.9874 19.2803 19.2803C18.9874 19.5732 18.5126 19.5732 18.2197 19.2803L4.71967 5.78033C4.42678 5.48744 4.42678 5.01256 4.71967 4.71967Z" fill="currentColor"/>
</svg>
</a>
</div>
<div class="info">
<div class="desc" tabindex="0">
All trackers seen
<span data-tooltip="Not all entities listed are trackers, meaning they do not collect your personal data."><svg width="17" height="16" viewBox="0 0 17 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0_831_3007)">
<path d="M8.31462 10.6666V7.99992M8.31462 5.33325H8.32128M14.9813 7.99992C14.9813 11.6818 11.9965 14.6666 8.31462 14.6666C4.63272 14.6666 1.64795 11.6818 1.64795 7.99992C1.64795 4.31802 4.63272 1.33325 8.31462 1.33325C11.9965 1.33325 14.9813 4.31802 14.9813 7.99992Z" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
</g>
<defs>
<clipPath id="clip0_831_3007">
<rect width="16" height="16" fill="currentColor" transform="translate(0.314453)"/>
</clipPath>
</defs>
</svg>
</span>
</div>
<a class="report" data-tooltip="WhoTracks.Me Statistical Report" href="https://whotracks.me/websites/twitter.com.html" target="_blank" title="Statistical report">
<svg width="17" height="16" viewBox="0 0 17 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M9.64762 7.33325H5.64762M6.98096 9.99992H5.64762M10.981 4.66659H5.64762M13.6476 6.99992V4.53325C13.6476 3.41315 13.6476 2.85309 13.4296 2.42527C13.2379 2.04895 12.932 1.74299 12.5556 1.55124C12.1278 1.33325 11.5678 1.33325 10.4476 1.33325H6.18096C5.06085 1.33325 4.5008 1.33325 4.07298 1.55124C3.69665 1.74299 3.39069 2.04895 3.19894 2.42527C2.98096 2.85309 2.98096 3.41315 2.98096 4.53325V11.4666C2.98096 12.5867 2.98096 13.1467 3.19894 13.5746C3.39069 13.9509 3.69665 14.2569 4.07298 14.4486C4.5008 14.6666 5.06085 14.6666 6.18096 14.6666H7.98096M14.981 14.6666L13.981 13.6666M14.6476 11.9999C14.6476 13.2886 13.603 14.3333 12.3143 14.3333C11.0256 14.3333 9.98096 13.2886 9.98096 11.9999C9.98096 10.7113 11.0256 9.66658 12.3143 9.66658C13.603 9.66658 14.6476 10.7113 14.6476 11.9999Z" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
</svg>
</a>
</div>
<div class="details">
<div class="chart">
<svg
id='circle'
xmlns='http://www.w3.org/2000/svg'
version='1.1'
width='100%'
height='100%'
viewBox='-20 -20 240 240'
>
<g
fill='none'
stroke-width='32'
style="transform: translate(100px, 100px);"
>
<path
d="M 6.123233995736766e-15 -100 A 100 100 0 0 1 90.48270524660195 42.577929156507274"
pathLength="115.2"
style="stroke-dashoffset: 0; stroke-dasharray: 1000; stroke: #cb55cd"
>
<title>8</title>
</path>
<path
d="M 90.48270524660195 42.577929156507274 A 100 100 0 0 1 36.81245526846779 92.97764858882515"
pathLength="43.2"
style="stroke-dashoffset: 0; stroke-dasharray: 1000; stroke: #87d7ef"
>
<title>3</title>
</path>
<path
d="M 36.81245526846779 92.97764858882515 A 100 100 0 0 1 12.533323356430405 99.21147013144778"
pathLength="14.400000000000006"
style="stroke-dashoffset: 0; stroke-dasharray: 1000; stroke: #ef671e"
>
<title>1</title>
</path>
<path
d="M 12.533323356430405 99.21147013144778 A 100 100 0 0 1 -12.533323356430456 99.21147013144778"
pathLength="14.400000000000006"
style="stroke-dashoffset: 0; stroke-dasharray: 1000; stroke: #ecafc2"
>
<title>1</title>
</path>
<path
d="M -12.533323356430456 99.21147013144778 A 100 100 0 0 1 -77.05132427757897 63.74239897486892"
pathLength="43.20000000000002"
style="stroke-dashoffset: 0; stroke-dasharray: 1000; stroke: #388ee8"
>
<title>3</title>
</path>
<path
d="M -77.05132427757897 63.74239897486892 A 100 100 0 0 1 -0.00017453292519727508 -99.99999999984769"
pathLength="129.5999"
style="stroke-dashoffset: 0; stroke-dasharray: 1000; stroke: #e8e8e8"
>
<title>9</title>
</path>
</g>
</svg>
<span class="count">25</span>
</div>
<ul>
<li>
<span class="color" style="background-color: #cb55cd;"></span>
<span class="category">Advertising</span>
<span class="count">8</span>
</li>
<li>
<span class="color" style="background-color: #87d7ef;"></span>
<span class="category">Site Analytics</span>
<span class="count">3</span>
</li>
<li>
<span class="color" style="background-color: #ef671e;"></span>
<span class="category">Audio Video Player</span>
<span class="count">1</span>
</li>
<li>
<span class="color" style="background-color: #ecafc2;"></span>
<span class="category">Misc</span>
<span class="count">1</span>
</li>
<li>
<span class="color" style="background-color: #388ee8;"></span>
<span class="category">Social Media</span>
<span class="count">3</span>
</li>
<li>
<span class="color" style="background-color: #e8e8e8;"></span>
<span class="category">Hosting</span>
<span class="count">9</span>
</li>
</ul>
</div>
</div>
</div>
</div>
<div class="empty"></div>
</div>
</div>
</div>
</li>
</ol>
<div class="pagination">
<a href="https://ghosterysearch.com/search?q=4chan&page=2">
Next
<svg xmlns="http://www.w3.org/2000/svg" width="28" height="28" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-chevron-right"><polyline points="9 18 15 12 9 6"></polyline></svg>
</a>
</div>
<section class="other-search-results">
<h3>Alternative Search Engines</h3>
<div class="search-engines">
<a class="search-engine" href="https://search.brave.com/search?q=4chan" rel="noopener" target="_blank">
<span class="search-engine-name">Brave</span>
<svg width="12" height="12" viewBox="0 0 12 12" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M9 6.5V9.5C9 9.76522 8.89464 10.0196 8.70711 10.2071C8.51957 10.3946 8.26522 10.5 8 10.5H2.5C2.23478 10.5 1.98043 10.3946 1.79289 10.2071C1.60536 10.0196 1.5 9.76522 1.5 9.5V4C1.5 3.73478 1.60536 3.48043 1.79289 3.29289C1.98043 3.10536 2.23478 3 2.5 3H5.5" stroke="url(#paint0_linear_831_2925)" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M7.5 1.5H10.5V4.5" stroke="url(#paint1_linear_831_2925)" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M5 7L10.5 1.5" stroke="url(#paint2_linear_831_2925)" stroke-linecap="round" stroke-linejoin="round"/>
<defs>
<linearGradient id="paint0_linear_831_2925" x1="3.26858" y1="3.6251" x2="7.23772" y2="8.6242" gradientUnits="userSpaceOnUse">
<stop stop-color="#67A73A"/>
<stop offset="1" stop-color="#00AEF0"/>
</linearGradient>
<linearGradient id="paint1_linear_831_2925" x1="8.20743" y1="1.75004" x2="9.79509" y2="3.74968" gradientUnits="userSpaceOnUse">
<stop stop-color="#67A73A"/>
<stop offset="1" stop-color="#00AEF0"/>
</linearGradient>
<linearGradient id="paint2_linear_831_2925" x1="6.29696" y1="1.9584" x2="9.20766" y2="5.62441" gradientUnits="userSpaceOnUse">
<stop stop-color="#67A73A"/>
<stop offset="1" stop-color="#00AEF0"/>
</linearGradient>
</defs>
</svg>
</a>
<a class="search-engine" href="https://www.bing.com/search?q=4chan" rel="noopener" target="_blank">
<span class="search-engine-name">Bing</span>
<svg width="12" height="12" viewBox="0 0 12 12" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M9 6.5V9.5C9 9.76522 8.89464 10.0196 8.70711 10.2071C8.51957 10.3946 8.26522 10.5 8 10.5H2.5C2.23478 10.5 1.98043 10.3946 1.79289 10.2071C1.60536 10.0196 1.5 9.76522 1.5 9.5V4C1.5 3.73478 1.60536 3.48043 1.79289 3.29289C1.98043 3.10536 2.23478 3 2.5 3H5.5" stroke="url(#paint0_linear_831_2925)" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M7.5 1.5H10.5V4.5" stroke="url(#paint1_linear_831_2925)" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M5 7L10.5 1.5" stroke="url(#paint2_linear_831_2925)" stroke-linecap="round" stroke-linejoin="round"/>
<defs>
<linearGradient id="paint0_linear_831_2925" x1="3.26858" y1="3.6251" x2="7.23772" y2="8.6242" gradientUnits="userSpaceOnUse">
<stop stop-color="#67A73A"/>
<stop offset="1" stop-color="#00AEF0"/>
</linearGradient>
<linearGradient id="paint1_linear_831_2925" x1="8.20743" y1="1.75004" x2="9.79509" y2="3.74968" gradientUnits="userSpaceOnUse">
<stop stop-color="#67A73A"/>
<stop offset="1" stop-color="#00AEF0"/>
</linearGradient>
<linearGradient id="paint2_linear_831_2925" x1="6.29696" y1="1.9584" x2="9.20766" y2="5.62441" gradientUnits="userSpaceOnUse">
<stop stop-color="#67A73A"/>
<stop offset="1" stop-color="#00AEF0"/>
</linearGradient>
</defs>
</svg>
</a>
<a class="search-engine" href="https://www.google.com/search?q=4chan" rel="noopener" target="_blank">
<span class="search-engine-name">Google</span>
<svg width="12" height="12" viewBox="0 0 12 12" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M9 6.5V9.5C9 9.76522 8.89464 10.0196 8.70711 10.2071C8.51957 10.3946 8.26522 10.5 8 10.5H2.5C2.23478 10.5 1.98043 10.3946 1.79289 10.2071C1.60536 10.0196 1.5 9.76522 1.5 9.5V4C1.5 3.73478 1.60536 3.48043 1.79289 3.29289C1.98043 3.10536 2.23478 3 2.5 3H5.5" stroke="url(#paint0_linear_831_2925)" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M7.5 1.5H10.5V4.5" stroke="url(#paint1_linear_831_2925)" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M5 7L10.5 1.5" stroke="url(#paint2_linear_831_2925)" stroke-linecap="round" stroke-linejoin="round"/>
<defs>
<linearGradient id="paint0_linear_831_2925" x1="3.26858" y1="3.6251" x2="7.23772" y2="8.6242" gradientUnits="userSpaceOnUse">
<stop stop-color="#67A73A"/>
<stop offset="1" stop-color="#00AEF0"/>
</linearGradient>
<linearGradient id="paint1_linear_831_2925" x1="8.20743" y1="1.75004" x2="9.79509" y2="3.74968" gradientUnits="userSpaceOnUse">
<stop stop-color="#67A73A"/>
<stop offset="1" stop-color="#00AEF0"/>
</linearGradient>
<linearGradient id="paint2_linear_831_2925" x1="6.29696" y1="1.9584" x2="9.20766" y2="5.62441" gradientUnits="userSpaceOnUse">
<stop stop-color="#67A73A"/>
<stop offset="1" stop-color="#00AEF0"/>
</linearGradient>
</defs>
</svg>
</a>
</div>
<template id="search-engine-template">
</template>
</section>
</section>
<footer class="footer">
<div class="footer-container">
<a href="#boost-privacy-protection" class="boost-button">
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M9 11.4999L11 13.4999L15.5 8.99987M20 11.9999C20 16.9083 14.646 20.4783 12.698 21.6147C12.4766 21.7439 12.3659 21.8085 12.2097 21.842C12.0884 21.868 11.9116 21.868 11.7903 21.842C11.6341 21.8085 11.5234 21.7439 11.302 21.6147C9.35396 20.4783 4 16.9083 4 11.9999V7.21747C4 6.41796 4 6.0182 4.13076 5.67457C4.24627 5.37101 4.43398 5.10015 4.67766 4.8854C4.9535 4.64231 5.3278 4.50195 6.0764 4.22122L11.4382 2.21054C11.6461 2.13258 11.75 2.0936 11.857 2.07815C11.9518 2.06444 12.0482 2.06444 12.143 2.07815C12.25 2.0936 12.3539 2.13258 12.5618 2.21054L17.9236 4.22122C18.6722 4.50195 19.0465 4.64231 19.3223 4.8854C19.566 5.10015 19.7537 5.37101 19.8692 5.67457C20 6.0182 20 6.41796 20 7.21747V11.9999Z" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
</svg>
Boost Privacy Protection
</a>
<nav class="footer-primary">
<a href="https://www.ghostery.com/ghostery-ad-blocker" target="_blank">
<img src="/img/icon-feature-extension.svg" />
Tracker & Ad Blocker
</a>
<a href="https://www.ghostery.com/ghostery-private-browser" target="_blank">
<img src="/img/icon-feature-browser.svg" />
Private Browser
</a>
<a href="https://www.ghostery.com/private-search" target="_blank">
<img src="/img/icon-feature-search.svg" />
Private Search
</a>
<a href="https://www.ghostery.com/privacy-digest" target="_blank">
<img src="/img/icon-feature-digest.svg" />
Privacy Digest
</a>
</nav>
<p class="footer-copyrights">
<svg width="32" height="32" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd" d="M29.2083 26.5736C27.8812 23.522 27.6527 20.9363 27.6171 19.9204V11.5616C27.6171 5.17607 22.4149 0 15.998 0C9.58037 0 4.37796 5.17607 4.37796 11.5616V20.0412C4.32838 21.1342 4.06763 23.6408 2.79177 26.5736C1.0769 30.5144 2.49611 30.0447 3.76732 29.7205C5.03835 29.3976 7.87696 28.1319 8.76374 29.6911C9.65017 31.2496 10.3897 32.6031 12.4591 31.7206C14.5286 30.8384 15.5038 30.5444 15.7993 30.5444H16.2013C16.4964 30.5444 17.472 30.8384 19.5414 31.7206C21.6108 32.6031 22.3499 31.2496 23.2369 29.6911C24.1233 28.1319 26.9617 29.3976 28.2331 29.7205C29.5043 30.0447 30.9228 30.5144 29.2083 26.5736M12.4114 6.30428C13.663 6.30428 14.6775 7.90165 14.6775 9.8728C14.6775 11.8438 13.663 13.4417 12.4114 13.4417C11.1599 13.4417 10.1452 11.8438 10.1452 9.8728C10.1452 7.90165 11.1599 6.30428 12.4114 6.30428M15.998 20.5678C13.2401 20.5678 10.9185 17.8671 10.2189 14.8621C11.5701 16.7104 13.6556 17.8982 15.998 17.8982C18.3401 17.8982 20.4255 16.7104 21.7768 14.8621C21.0773 17.8671 18.7553 20.5678 15.998 20.5678M19.5845 13.4417C18.3321 13.4417 17.3178 11.8438 17.3178 9.8728C17.3178 7.90165 18.3321 6.30428 19.5845 6.30428C20.8367 6.30428 21.8506 7.90165 21.8506 9.8728C21.8506 11.8438 20.8367 13.4417 19.5845 13.4417" fill="currentColor" />
</svg>
© 2024 Ghostery GmbH. All rights reserved.
</p>
<nav class="footer-secondary">
<a href="https://www.ghostery.com/support" target="_blank">Support</a>
<a href="https://www.ghostery.com/privacy-policy" target="_blank">Privacy Policy</a>
<a href="https://www.ghostery.com/privacy/ghostery-terms-and-conditions" target="_blank">Terms & Conditions</a>
<a href="https://www.ghostery.com/privacy/imprint" target="_blank">Imprint</a>
</nav>
</div>
</footer>
<div class="modal boost" id="boost-privacy-protection">
<div class="modal-container">
<a href="#/" class="modal-close">
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" class="feather-x">
<path fill-rule="evenodd" clip-rule="evenodd" d="M19.2803 4.71967C19.5732 5.01256 19.5732 5.48744 19.2803 5.78033L5.78033 19.2803C5.48744 19.5732 5.01256 19.5732 4.71967 19.2803C4.42678 18.9874 4.42678 18.5126 4.71967 18.2197L18.2197 4.71967C18.5126 4.42678 18.9874 4.42678 19.2803 4.71967Z" fill="currentColor"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M4.71967 4.71967C5.01256 4.42678 5.48744 4.42678 5.78033 4.71967L19.2803 18.2197C19.5732 18.5126 19.5732 18.9874 19.2803 19.2803C18.9874 19.5732 18.5126 19.5732 18.2197 19.2803L4.71967 5.78033C4.42678 5.48744 4.42678 5.01256 4.71967 4.71967Z" fill="currentColor"/>
</svg>
</a>
<header>Boost Privacy Protection</header>
<section class="boost-product-list">
<div class="boost-product">
<div class="boost-product-img"><img src="/img/product-extension.svg" /></div>
<div class="boost-product-desc">
<h3>Ghostery Tracker & Ad Blocker</h3>
<ul>
<li>Block hidden trackers</li>
<li>Hide intrusive ads</li>
<li>Prevent cookie popups</li>
</ul>
<a href="https://www.ghostery.com/ghostery-ad-blocker" target="_blank">Add Extension to your browser</a>
</div>
</div>
<div class="boost-product">
<div class="boost-product-img"><img src="/img/product-browser.svg" /></div>
<div class="boost-product-desc">
<h3>Ghostery Private Browser</h3>
<ul>
<li>Built-in Tracker & Ad Blocker</li>
<li>Integrated Private Search</li>
<li>Fast and seamless page loads</li>
<li>For desktop and mobile</li>
</ul>
<a href="https://www.ghostery.com/ghostery-private-browser" target="_blank">Install Private Browser</a>
</div>
</div>
<div class="boost-product">
<div class="boost-product-img"><img src="/img/product-search.svg" /></div>
<div class="boost-product-desc">
<h3>Ghostery Private Search</h3>
<ul>
<li>Independent of Big Tech</li>
<li>Objective</li>
<li>Private</li>
<li>Transparent</li>
</ul>
<a href="https://www.ghostery.com/private-search" target="_blank">Add Private Search to your browser</a>
</div>
</div>
<div class="boost-product">
<div class="boost-product-img"><img src="/img/product-newsletter.svg" /></div>
<div class="boost-product-desc">
<h3>Ghostery Privacy Digest</h3>
<ul>
<li>Gets you privacy news & tips</li>
<li>Helps maintain good digital health</li>
<li>Sends every 2 weeks. No more, no less</li>
</ul>
<a href="https://www.ghostery.com/privacy-digest" target="_blank">Sign up for newsletter</a>
</div>
</div>
</section>
</div>
</div>
<div class="modal" id="settings">
<div class="modal-container">
<a href="#/" class="modal-close">
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" class="feather-x">
<path fill-rule="evenodd" clip-rule="evenodd" d="M19.2803 4.71967C19.5732 5.01256 19.5732 5.48744 19.2803 5.78033L5.78033 19.2803C5.48744 19.5732 5.01256 19.5732 4.71967 19.2803C4.42678 18.9874 4.42678 18.5126 4.71967 18.2197L18.2197 4.71967C18.5126 4.42678 18.9874 4.42678 19.2803 4.71967Z" fill="currentColor"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M4.71967 4.71967C5.01256 4.42678 5.48744 4.42678 5.78033 4.71967L19.2803 18.2197C19.5732 18.5126 19.5732 18.9874 19.2803 19.2803C18.9874 19.5732 18.5126 19.5732 18.2197 19.2803L4.71967 5.78033C4.42678 5.48744 4.42678 5.01256 4.71967 4.71967Z" fill="currentColor"/>
</svg>
</a>
<header>Search Settings</header>
<section class="settings">
<label>Search Region</label>
<select name="region">
<option value="--" selected>All regions</option>
<option value="AR">Argentina</option>
<option value="AU">Australia</option>
<option value="AT">Austria</option>
<option value="BE">Belgium</option>
<option value="BR">Brazil</option>
<option value="CA">Canada</option>
<option value="CL">Chile</option>
<option value="DK">Denmark</option>
<option value="FI">Finland</option>
<option value="FR">France</option>
<option value="DE">Germany</option>
<option value="HK">Hong Kong</option>
<option value="IN">India</option>
<option value="ID">Indonesia</option>
<option value="IT">Italy</option>
<option value="JP">Japan</option>
<option value="KR">Korea</option>
<option value="MY">Malaysia</option>
<option value="MX">Mexico</option>
<option value="NL">Netherlands</option>
<option value="NZ">New Zealand</option>
<option value="NO">Norway</option>
<option value="CN">People's Republic of China</option>
<option value="PL">Poland</option>
<option value="PT">Portugal</option>
<option value="PH">Republic of the Philippines</option>
<option value="RU">Russia</option>
<option value="SA">Saudi Arabia</option>
<option value="ZA">South Africa</option>
<option value="ES">Spain</option>
<option value="SE">Sweden</option>
<option value="CH">Switzerland</option>
<option value="TW">Taiwan</option>
<option value="TR">Turkey</option>
<option value="GB">United Kingdom</option>
<option value="US">United States</option>
</select>
<label>Theme</label>
<select name="theme">
<option value="" selected>Device default</option>
<option value="light">Light theme</option>
<option value="dark">Dark theme</option>
</select>
<div class="private-sponsored-links">
<div class="ads-checkbox">
<label>Private Sponsored Links</label>
<div class="toggle">
<input type="checkbox" name="ads" checked />
<span class="toggle-switch"></span>
<span class="toggle-off">Disabled</span>
<span class="toggle-on">Enabled</span>
</div>
</div>
<p>If you enjoy Ghostery ad-free, consider joining our Contributor program and help us advocate for privacy as a basic human right.</p>
<a href="https://www.ghostery.com/become-a-contributor" target="_blank" class="button">
Become a Contributor
</a>
</div>
</section>
</div>
</div>
</body>
</html>
|