diff --git a/LLM/site-checks-playbook.md b/LLM/site-checks-playbook.md index ac4f471..b637a6d 100644 --- a/LLM/site-checks-playbook.md +++ b/LLM/site-checks-playbook.md @@ -97,6 +97,46 @@ Practical observations from fixing top-ranked sites. Full details: section **7** | **Non-standard anti-bot HTTP codes** | HTTP 468 (Tengine), 520–530 (Cloudflare) — not standard 403/429. Check with `curl -sIL`; if code is from intermediary → `disabled: true`. | | **`--diagnose` doesn't test POST** | `site_check.py --diagnose` uses GET only. For POST APIs (Discord, Holopin), verify with `curl -X POST` or `maigret --self-check`. | -## 8. Documentation maintenance +## 8. Site naming rules + +Site names in `data.json` are the **keys** of the `"sites"` object and appear in user-facing reports. Follow these rules: + +| Rule | Example | Counter-example | +|------|---------|-----------------| +| **Title Case** by default | `Hacker News`, `Product Hunt` | ~~`hackernews`~~, ~~`product hunt`~~ | +| **Lowercase** if the brand is written that way | `kofi`, `note`, `hi5` | ~~`Kofi`~~, ~~`Note`~~ | +| **No domain suffix** unless it is part of the recognized brand | `Flickr`, `Calendly`, `Upwork` | ~~`www.flickr.com`~~, ~~`calendly.com`~~ | +| **Domain OK** when the brand is commonly written with it | `last.fm`, `VC.ru`, `Archive.org` | | +| **No full UPPERCASE** unless the brand is an acronym/initialism | `VK`, `CNET`, `ICQ`, `IFTTT` | ~~`BOOTH`~~, ~~`VSCO`~~ → `Booth`, `VSCO` (brand) | +| **`{username}` templates** in names are OK | `{username}.tilda.ws` | | +| **Spaces** are allowed when the brand uses them | `Star Citizen`, `Google Maps` | | +| **No `www.` or `https://`** prefix | `Flickr`, `Change.org` | ~~`www.flickr.com`~~, ~~`https:`~~ | + +When in doubt, check how the service refers to itself on its homepage or in its page title. + +## 9. Tagging rules + +### Country tags (ISO 3166-1 alpha-2) + +The goal of a country tag is to **attribute a person to their country of origin or residence**, not to be a perfect truth source. + +| Scenario | Action | Example | +|----------|--------|---------| +| Site is global, account says nothing about country | **No country tag** | GitHub, YouTube, Reddit, Medium, Udemy | +| Account implies connection to a specific country | **Add country tag** | VK → `ru`, Naver → `kr`, Zhihu → `cn` | +| Service used mostly in a few specific countries | **Multiple country tags OK** | Xing → `de`, `eu` | +| Very local/regional site | **Must have country tag** | Nairaland → `ng`, 4pda → `ru` | + +**Do NOT** assign country tags based on traffic statistics (e.g. Alexa/SimilarWeb audience data). A site popular in India by traffic is not "Indian" if it is used globally. The `in` tag was previously over-applied this way. + +### Category tags + +- Every tag used in `data.json` must be registered in the `"tags"` array at the bottom of the file. The `test_tags_validity` test enforces this. +- Do not use platform/software names as tags (`writefreely`, `pixelfed`). Use category names instead (`blog`, `photo`). +- Avoid 2-letter category tags that collide with ISO country codes (e.g. `ai` = Anguilla). The `is_country_tag()` function treats any 2-letter tag as a country code. +- Keep existing category tags when modifying country tags. +- Top-50 sites by alexaRank must have at least one category tag (enforced by `test_top_sites_have_category_tag`). + +## 10. Documentation maintenance When you change Maigret, add search tools, or change check logic, keep **this playbook**, [`site-checks-guide.md`](site-checks-guide.md), and (when applicable) the template in [`socid_extractor_improvements.log`](socid_extractor_improvements.log) aligned. New log **entries** are append-only at the bottom of that file. diff --git a/docs/source/development.rst b/docs/source/development.rst index a7b508f..75002ce 100644 --- a/docs/source/development.rst +++ b/docs/source/development.rst @@ -69,6 +69,21 @@ Use the following commands to check Maigret: make speed +Site naming conventions +----------------------------------------------- + +Site names are the keys in ``data.json`` and appear in user-facing reports. Follow these rules: + +- **Title Case** by default: ``Product Hunt``, ``Hacker News``. +- **Lowercase** only if the brand itself is written that way: ``kofi``, ``note``, ``hi5``. +- **No domain suffix** (``calendly.com`` → ``Calendly``), unless the domain is part of the recognized brand name: ``last.fm``, ``VC.ru``, ``Archive.org``. +- **No full UPPERCASE** unless the brand is an acronym: ``VK``, ``CNET``, ``ICQ``, ``IFTTT``. +- **No** ``www.`` **or** ``https://`` **prefix** in the name. +- **Spaces** are allowed when the brand uses them: ``Star Citizen``, ``Google Maps``. +- **{username} templates** in names are acceptable: ``{username}.tilda.ws``. + +When in doubt, check how the service refers to itself on its homepage. + How to fix false-positives ----------------------------------------------- diff --git a/docs/source/tags.rst b/docs/source/tags.rst index 4e0efa0..00543d5 100644 --- a/docs/source/tags.rst +++ b/docs/source/tags.rst @@ -10,7 +10,12 @@ The use of tags allows you to select a subset of the sites from big Maigret DB f There are several types of tags: -1. **Country codes**: ``us``, ``jp``, ``br``... (`ISO 3166-1 alpha-2 `_). These tags reflect the site language and regional origin of its users and are then used to locate the owner of a username. If the regional origin is difficult to establish or a site is positioned as worldwide, `no country code is given`. There could be multiple country code tags for one site. +1. **Country codes**: ``us``, ``jp``, ``br``... (`ISO 3166-1 alpha-2 `_). A country tag means that having an account on the site implies a connection to that country — either origin or residence. The goal is attribution, not perfect accuracy. + + - **Global sites** (GitHub, YouTube, Reddit, Medium, etc.) get **no country tag** — an account there says nothing about where a person is from. + - **Regional/local sites** where an account implies a specific country **must** have a country tag: ``VK`` → ``ru``, ``Naver`` → ``kr``, ``Zhihu`` → ``cn``. + - Multiple country tags are allowed when a service is used predominantly in a few countries (e.g. ``Xing`` → ``de``, ``eu``). + - Do **not** assign country tags based on traffic statistics alone — a site popular in India by traffic is not "Indian" if it is used globally. 2. **Site engines**. Most of them are forum engines now: ``uCoz``, ``vBulletin``, ``XenForo`` et al. Full list of engines stored in the Maigret database. diff --git a/maigret/resources/data.json b/maigret/resources/data.json index 5b49ca3..e216cb6 100644 --- a/maigret/resources/data.json +++ b/maigret/resources/data.json @@ -18,7 +18,7 @@ "usernameClaimed": "zuck", "usernameUnclaimed": "noonewouldeverusethis7", "tags": [ - "networking" + "social" ] }, "YouTube": { @@ -70,10 +70,11 @@ "Instagram": { "disabled": true, "tags": [ - "photo" + "photo", + "social" ], "errors": { - "Login \u2022 Instagram": "Login required" + "Login • Instagram": "Login required" }, "checkType": "message", "presenseStrs": [ @@ -87,13 +88,13 @@ }, "Twitter": { "tags": [ - "messaging" + "social" ], "headers": { "sec-ch-ua": "Google Chrome\";v=\"87\", \" Not;A Brand\";v=\"99\", \"Chromium\";v=\"87\"", "authorization": "Bearer AAAAAAAAAAAAAAAAAAAAANRILgAAAAAAnNwIzUejRCOuH5E6I8xnZz4puTs%3D1Zv7ttfk8LF81IUq16cHjhLTvJu4FA33AGWWjCpTnA", "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.88 Safari/537.36", - "x-guest-token": "2035841115320996156" + "x-guest-token": "2037668354144538994" }, "errors": { "Bad guest token": "x-guest-token update required" @@ -125,9 +126,7 @@ }, "MicrosoftTechNet": { "disabled": true, - "tags": [ - "us" - ], + "tags": [], "checkType": "status_code", "urlMain": "https://social.technet.microsoft.com", "url": "https://social.technet.microsoft.com/profile/{username}/", @@ -136,8 +135,7 @@ }, "MicrosoftLearn": { "tags": [ - "tech", - "us" + "tech" ], "checkType": "response_url", "urlMain": "https://learn.microsoft.com", @@ -148,9 +146,7 @@ }, "social.msdn.microsoft.com": { "disabled": true, - "tags": [ - "us" - ], + "tags": [], "engine": "engine404", "urlMain": "https://social.msdn.microsoft.com", "url": "https://social.msdn.microsoft.com/profile/{username}", @@ -159,8 +155,7 @@ }, "AppleDeveloper": { "tags": [ - "forum", - "us" + "forum" ], "checkType": "status_code", "urlMain": "https://developer.apple.com/forums", @@ -169,9 +164,7 @@ "usernameUnclaimed": "noonewouldeverusethis7" }, "AppleDiscussions": { - "tags": [ - "us" - ], + "tags": [], "checkType": "status_code", "urlMain": "https://discussions.apple.com/", "url": "https://discussions.apple.com/profile/{username}", @@ -205,7 +198,8 @@ }, "WordPressOrg": { "tags": [ - "in" + "blog", + "coding" ], "checkType": "response_url", "alexaRank": 12, @@ -217,8 +211,7 @@ }, "GooglePlayStore": { "tags": [ - "apps", - "us" + "apps" ], "checkType": "status_code", "alexaRank": 14, @@ -245,8 +238,7 @@ }, "Google Maps": { "tags": [ - "maps", - "us" + "maps" ], "type": "gaia_id", "checkType": "message", @@ -266,15 +258,16 @@ "tags": [ "art", "photo", - "sharing" + "sharing", + "social" ], "checkType": "message", "alexaRank": 18, "presenseStrs": [ " followers", " following", - " \u043f\u043e\u0434\u043f\u0438\u0441\u0447\u0438\u043a\u043e\u0432", - " \u043f\u043e\u0434\u043f\u0438\u0441\u043e\u043a" + " подписчиков", + " подписок" ], "absenceStrs": [ "@undefined" @@ -296,7 +289,7 @@ "method": "vimeo" }, "headers": { - "Authorization": "jwt eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJleHAiOjE3NzQyMTk5MjAsInVzZXJfaWQiOm51bGwsImFwcF9pZCI6NTg0NzksInNjb3BlcyI6InB1YmxpYyIsInRlYW1fdXNlcl9pZCI6bnVsbCwianRpIjoiMzk4ZTVlYmMtMTEyOS00OTE5LWJmYzYtYmE2OWYwZDdhNGIxIn0.XEYGPsAnwgBdFaAgrDToeQHs3B5wqgjMs-_zeVEXV58" + "Authorization": "jwt eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJleHAiOjE3NzQ2NTM5MDAsInVzZXJfaWQiOm51bGwsImFwcF9pZCI6NTg0NzksInNjb3BlcyI6InB1YmxpYyIsInRlYW1fdXNlcl9pZCI6bnVsbCwianRpIjoiZDM3N2QyY2EtYTEyMC00NWRlLThkYjAtMGUzYWZlNWQ0NGRlIn0.5ZfqU66p6wQtFNg5-7Syrmu3mXTOzQ4Tju97eaw3Nbo" }, "urlProbe": "https://api.vimeo.com/users/{username}?fields=name%2Cgender%2Cbio%2Curi%2Clink%2Cbackground_video%2Clocation_details%2Cpictures%2Cverified%2Cmetadata.public_videos.total%2Cavailable_for_hire%2Ccan_work_remotely%2Cmetadata.connections.videos.total%2Cmetadata.connections.albums.total%2Cmetadata.connections.followers.total%2Cmetadata.connections.following.total%2Cmetadata.public_videos.total%2Cmetadata.connections.vimeo_experts.is_enrolled%2Ctotal_collection_count%2Ccreated_time%2Cprofile_preferences%2Cmembership%2Cclients%2Cskills%2Cproject_types%2Crates%2Ccategories%2Cis_expert%2Cprofile_discovery%2Cwebsites%2Ccontact_emails&fetch_user_profile=1", "checkType": "status_code", @@ -308,7 +301,8 @@ }, "TikTok": { "tags": [ - "video" + "video", + "social" ], "headers": { "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.88 Safari/537.36" @@ -331,7 +325,7 @@ }, "Amazon": { "tags": [ - "us" + "shopping" ], "checkType": "message", "presenseStrs": [ @@ -348,9 +342,7 @@ }, "community.adobe.com": { "similarSearch": true, - "tags": [ - "us" - ], + "tags": [], "checkType": "message", "presenseStrs": [ "lia-user-item-profile", @@ -390,9 +382,7 @@ "usernameUnclaimed": "noonewouldeverusethis7" }, "Mozilla Support": { - "tags": [ - "us" - ], + "tags": [], "checkType": "message", "absenceStrs": [ ">Page Not Found", @@ -436,7 +426,10 @@ "urlProbe": "https://web.archive.org/web/timemap/?url=http%3A%2F%2Fplus.google.com%2F{username}&matchType=prefix&collapse=urlkey&output=json&fl=original%2Cmimetype%2Ctimestamp%2Cendtimestamp%2Cgroupcount%2Cuniqcount&filter=!statuscode%3A%5B45%5D..&limit=100000&_=1624789582128", "url": "https://web.archive.org/web/*/plus.google.com/{username}*", "usernameClaimed": "117522081019092547227", - "usernameUnclaimed": "noonewouldeverusethis7" + "usernameUnclaimed": "noonewouldeverusethis7", + "tags": [ + "social" + ] }, "Telegram": { "tags": [ @@ -494,7 +487,8 @@ "Reddit": { "tags": [ "discussion", - "news" + "news", + "social" ], "checkType": "message", "absenceStrs": [ @@ -515,7 +509,8 @@ }, "Tumblr": { "tags": [ - "blog" + "blog", + "social" ], "regexCheck": "^[^\\.]+$", "checkType": "message", @@ -538,8 +533,7 @@ "Spotify": { "disabled": true, "tags": [ - "music", - "us" + "music" ], "headers": { "authorization": "Bearer BQDDk6n__YLKqIDKxBb2fvOZm6yxuOj0XeU0mCpRmBi_0UsUz2fUP-tFsl7IjT-YOCXxmvfzUMAnQ0Y4KBo" @@ -578,7 +572,10 @@ "url": "https://archive.org/details/@{username}", "usernameClaimed": "blue", "usernameUnclaimed": "noonewould", - "disabled": true + "disabled": true, + "tags": [ + "archive" + ] }, "Flickr": { "tags": [ @@ -591,7 +588,7 @@ "usernameClaimed": "blue", "usernameUnclaimed": "noonewouldeverusethis7" }, - "www.flickr.com": { + "Flickr Groups": { "checkType": "message", "absenceStrs": [ ":404,", @@ -611,12 +608,14 @@ "urlMain": "https://www.flickr.com", "usernameClaimed": "sunny2000", "usernameUnclaimed": "vozkxyhksz", - "alexaRank": 68 + "alexaRank": 68, + "tags": [ + "photo" + ] }, "Medium": { "tags": [ - "blog", - "us" + "blog" ], "checkType": "message", "presenseStrs": [ @@ -658,7 +657,7 @@ "\"hydratable\":\"user\"" ], "absenceStrs": [ - "SoundCloud - Hear the world\u2019s sounds" + "SoundCloud - Hear the world’s sounds" ], "urlMain": "https://soundcloud.com/", "url": "https://soundcloud.com/{username}", @@ -668,8 +667,7 @@ }, "SourceForge": { "tags": [ - "coding", - "us" + "coding" ], "checkType": "message", "alexaRank": 80, @@ -684,8 +682,8 @@ "TheGuardian": { "disabled": true, "tags": [ - "news", - "us" + "gb", + "news" ], "checkType": "message", "absenceStrs": [ @@ -699,9 +697,7 @@ }, "Oracle Community": { "disabled": true, - "tags": [ - "us" - ], + "tags": [], "checkType": "status_code", "urlMain": "https://community.oracle.com", "url": "https://community.oracle.com/people/{username}", @@ -710,8 +706,7 @@ }, "forums.opera.com": { "tags": [ - "forum", - "us" + "forum" ], "checkType": "status_code", "urlMain": "https://forums.opera.com/", @@ -721,7 +716,8 @@ }, "VK": { "tags": [ - "ru" + "ru", + "social" ], "checkType": "status_code", "regexCheck": "^(?!id\\d)\\w*$", @@ -733,7 +729,8 @@ }, "VK (by id)": { "tags": [ - "ru" + "ru", + "social" ], "type": "vk_id", "checkType": "response_url", @@ -747,8 +744,7 @@ }, "Launchpad": { "tags": [ - "tech", - "us" + "tech" ], "checkType": "status_code", "alexaRank": 96, @@ -769,8 +765,8 @@ }, "ResearchGate": { "tags": [ - "in", - "us" + "research", + "social" ], "regexCheck": "\\w+_\\w+", "checkType": "response_url", @@ -783,8 +779,7 @@ }, "Scratch": { "tags": [ - "coding", - "us" + "coding" ], "checkType": "status_code", "urlMain": "https://scratch.mit.edu/", @@ -794,9 +789,7 @@ "usernameUnclaimed": "noonewould" }, "cyber.harvard.edu": { - "tags": [ - "us" - ], + "tags": [], "checkType": "status_code", "urlMain": "https://cyber.harvard.edu", "url": "https://cyber.harvard.edu/people/{username}", @@ -853,7 +846,7 @@ "activation": { "method": "weibo", "marks": [ - "\u5fae\u535a</title", + "<title>微博</title", "<title>Sina Visitor System" ], "url": "https://passport.weibo.com/visitor/genvisitor2" @@ -866,7 +859,7 @@ "checkType": "message", "tags": [ "cn", - "networking" + "social" ], "alexaRank": 115 }, @@ -894,7 +887,7 @@ ], "checkType": "message", "absenceStrs": [ - "The page you\u2019re looking for doesn\u2019t exist.", + "The page you’re looking for doesn’t exist.", "Want this to be your username?" ], "presenseStrs": [ @@ -928,7 +921,11 @@ "The resource is being rate limited": "Rate limited", "You are being rate limited": "Rate limited", "rate_limited": "Rate limited" - } + }, + "tags": [ + "messaging", + "gaming" + ] }, "Unsplash": { "tags": [ @@ -942,9 +939,9 @@ "usernameClaimed": "jenny", "usernameUnclaimed": "noonewouldeverusethis7" }, - "calendly.com": { + "Calendly": { "tags": [ - "us" + "business" ], "checkType": "status_code", "presenseStrs": [ @@ -964,12 +961,11 @@ "Etsy": { "disabled": true, "tags": [ - "shopping", - "us" + "shopping" ], "errors": { "Sanctions Policy": "Site censorship", - "\u041f\u043e\u043b\u0438\u0442\u0438\u043a\u0430 \u0441\u0430\u043d\u043a\u0446\u0438\u0439": "Site censorship" + "Политика санкций": "Site censorship" }, "checkType": "status_code", "alexaRank": 151, @@ -995,8 +991,7 @@ }, "Twitch": { "tags": [ - "streaming", - "us" + "streaming" ], "urlProbe": "https://twitchtracker.com/{username}", "checkType": "status_code", @@ -1008,8 +1003,7 @@ }, "Ebay": { "tags": [ - "shopping", - "us" + "shopping" ], "errors": { "Security Measure": "Captcha detected" @@ -1064,7 +1058,11 @@ ], "errors": { "Client Challenge": "Anti-bot challenge" - } + }, + "tags": [ + "documents", + "sharing" + ] }, "Behance": { "tags": [ @@ -1101,7 +1099,7 @@ }, "Bluesky": { "tags": [ - "messaging" + "social" ], "checkType": "message", "absenceStrs": [ @@ -1162,8 +1160,7 @@ "CNET": { "tags": [ "news", - "tech", - "us" + "tech" ], "checkType": "message", "absenceStrs": [ @@ -1195,7 +1192,7 @@ ], "checkType": "message", "absenceStrs": [ - "This page is on vacation\u2026" + "This page is on vacation…" ], "headers": { "Accept-Language": "en-US,en;q=0.5" @@ -1208,7 +1205,7 @@ }, "Wix": { "tags": [ - "us" + "tech" ], "regexCheck": "^[^\\.]+$", "checkType": "status_code", @@ -1232,8 +1229,7 @@ }, "Bandcamp": { "tags": [ - "music", - "us" + "music" ], "checkType": "status_code", "alexaRank": 230, @@ -1304,7 +1300,8 @@ }, "TheVerge": { "tags": [ - "us" + "news", + "tech" ], "checkType": "response_url", "alexaRank": 241, @@ -1315,7 +1312,8 @@ }, "ThemeForest": { "tags": [ - "in" + "coding", + "shopping" ], "checkType": "status_code", "alexaRank": 242, @@ -1326,7 +1324,8 @@ }, "Myspace": { "tags": [ - "blog" + "social", + "music" ], "checkType": "status_code", "alexaRank": 244, @@ -1345,12 +1344,15 @@ "absenceStrs": [ "did not match any articles", "not match" + ], + "tags": [ + "education", + "research" ] }, "GoodReads": { "tags": [ - "books", - "us" + "books" ], "checkType": "status_code", "alexaRank": 256, @@ -1369,10 +1371,10 @@ }, "checkType": "message", "presenseStrs": [ - "content=\"\u041e\u0442\u0437\u044b\u0432\u044b \u0438 \u043e\u0446\u0435\u043d\u043a\u0438" + "content=\"Отзывы и оценки" ], "absenceStrs": [ - "\u041f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c \u0441\u043a\u0440\u044b\u043b \u0441\u0432\u043e\u044e \u043f\u0443\u0431\u043b\u0438\u0447\u043d\u0443\u044e \u0441\u0442\u0440\u0430\u043d\u0438\u0446\u0443" + "Пользователь скрыл свою публичную страницу" ], "alexaRank": 262, "urlMain": "https://yandex.ru/", @@ -1517,8 +1519,7 @@ }, "forums.docker.com": { "tags": [ - "forum", - "us" + "forum" ], "engine": "Discourse", "urlMain": "https://forums.docker.com", @@ -1527,8 +1528,7 @@ }, "Weforum": { "tags": [ - "forum", - "us" + "forum" ], "checkType": "status_code", "alexaRank": 270, @@ -1569,7 +1569,8 @@ }, "Academia.edu": { "tags": [ - "id" + "education", + "research" ], "regexCheck": "^[^\\.]+$", "checkType": "status_code", @@ -1582,8 +1583,7 @@ "DiscussPython": { "tags": [ "coding", - "forum", - "us" + "forum" ], "engine": "Discourse", "urlMain": "https://discuss.python.org/", @@ -1605,8 +1605,7 @@ }, "Dribbble": { "tags": [ - "business", - "in" + "business" ], "regexCheck": "^[a-zA-Z][a-zA-Z0-9_-]*$", "checkType": "message", @@ -1645,8 +1644,7 @@ }, "Kickstarter": { "tags": [ - "finance", - "us" + "finance" ], "checkType": "status_code", "alexaRank": 300, @@ -1655,9 +1653,9 @@ "usernameClaimed": "zhovner", "usernameUnclaimed": "noonewouldeverusethis7" }, - "www.change.org": { + "Change.org": { "tags": [ - "us" + "social" ], "checkType": "message", "presenseStrs": [ @@ -1675,7 +1673,6 @@ }, "Armchairgm": { "tags": [ - "us", "wiki" ], "checkType": "message", @@ -1694,7 +1691,6 @@ "Battleraprus": { "tags": [ "ru", - "us", "wiki" ], "checkType": "status_code", @@ -1724,7 +1720,7 @@ }, "Fandom": { "tags": [ - "us" + "wiki" ], "checkType": "status_code", "alexaRank": 315, @@ -1808,8 +1804,7 @@ }, "Waypoint": { "tags": [ - "forum", - "us" + "forum" ], "engine": "Discourse", "urlMain": "https://forum.waypoint.vice.com", @@ -1819,8 +1814,7 @@ }, "Gofundme": { "tags": [ - "finance", - "us" + "finance" ], "checkType": "status_code", "alexaRank": 397, @@ -1838,13 +1832,13 @@ "urlMain": "https://www.zhihu.com/", "url": "https://www.zhihu.com/people/{username}", "absenceStrs": [ - "\u7528\u6237\u4e0d\u5b58\u5728" + "用户不存在" ], "usernameClaimed": "blue", "usernameUnclaimed": "noonewouldeverusethis7", "disabled": true }, - "giphy.com": { + "Giphy": { "absenceStrs": [ "404 Not Found" ], @@ -1867,14 +1861,17 @@ "urlMain": "https://www.threads.net/", "checkType": "message", "absenceStrs": [ - "Threads \u2022 Log in" + "Threads • Log in" ], "headers": { "Sec-Fetch-Mode": "navigate" }, "usernameClaimed": "zuck", "usernameUnclaimed": "noonewouldeverusethis7", - "alexaRank": 407 + "alexaRank": 407, + "tags": [ + "social" + ] }, "Slack": { "tags": [ @@ -1895,7 +1892,7 @@ ], "checkType": "message", "absenceStrs": [ - "\u041f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c \u043d\u0435 \u0437\u0430\u0440\u0435\u0433\u0438\u0441\u0442\u0440\u0438\u0440\u043e\u0432\u0430\u043d \u0438 \u043d\u0435 \u0438\u043c\u0435\u0435\u0442 \u043f\u0440\u043e\u0444\u0438\u043b\u044f \u0434\u043b\u044f \u043f\u0440\u043e\u0441\u043c\u043e\u0442\u0440\u0430." + "Пользователь не зарегистрирован и не имеет профиля для просмотра." ], "urlMain": "https://weld.in.ua", "url": "https://weld.in.ua/forum/member.php/?username={username}", @@ -1904,8 +1901,7 @@ }, "BuzzFeed": { "tags": [ - "news", - "us" + "news" ], "checkType": "status_code", "alexaRank": 451, @@ -1916,8 +1912,7 @@ }, "W3Schools": { "tags": [ - "education", - "us" + "education" ], "checkType": "status_code", "urlMain": "https://www.w3schools.com/", @@ -1939,7 +1934,8 @@ }, "Disqus": { "tags": [ - "discussion" + "discussion", + "social" ], "errors": { "Invalid API key": "New API key needed" @@ -1961,9 +1957,7 @@ }, "Ask Fedora": { "tags": [ - "forum", - "in", - "us" + "forum" ], "absenceStrs": [ "Sorry, we couldn't find that page." @@ -1975,7 +1969,8 @@ }, "OK": { "tags": [ - "ru" + "ru", + "social" ], "regexCheck": "^[a-zA-Z][a-zA-Z0-9_.-]*$", "checkType": "status_code", @@ -1993,7 +1988,10 @@ "usernameClaimed": "teamsnapchat", "usernameUnclaimed": "noonewouldeverusethis7", "alexaRank": 525, - "requestMethod": "GET" + "requestMethod": "GET", + "tags": [ + "social" + ] }, "Trello": { "tags": [ @@ -2013,8 +2011,7 @@ "Photobucket": { "disabled": true, "tags": [ - "photo", - "us" + "photo" ], "regexCheck": "\\w{4,32}", "checkType": "message", @@ -2031,7 +2028,7 @@ "Udemy": { "disabled": true, "tags": [ - "in" + "education" ], "checkType": "response_url", "alexaRank": 546, @@ -2044,8 +2041,7 @@ "tags": [ "music", "photo", - "stock", - "us" + "stock" ], "checkType": "message", "absenceStrs": [ @@ -2179,7 +2175,7 @@ ], "checkType": "message", "absenceStrs": [ - "\u041f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c \u043d\u0435 \u0437\u0430\u0440\u0435\u0433\u0438\u0441\u0442\u0440\u0438\u0440\u043e\u0432\u0430\u043d \u0438 \u043d\u0435 \u0438\u043c\u0435\u0435\u0442 \u043f\u0440\u043e\u0444\u0438\u043b\u044f \u0434\u043b\u044f \u043f\u0440\u043e\u0441\u043c\u043e\u0442\u0440\u0430" + "Пользователь не зарегистрирован и не имеет профиля для просмотра" ], "urlMain": "https://cfire.mail.ru", "url": "https://cfire.mail.ru/forums/member.php?username={username}", @@ -2205,7 +2201,7 @@ "regexCheck": "^\\d+$", "checkType": "message", "absenceStrs": [ - "\u0417\u043d\u0430\u043a\u043e\u043c\u0441\u0442\u0432\u0430@Mail.Ru" + "Знакомства@Mail.Ru" ], "urlMain": "https://love.mail.ru", "url": "https://love.mail.ru/profile/{username}", @@ -2223,7 +2219,7 @@ ], "absenceStrs": [ "mm-profile_not-found_content", - "\u041c\u043e\u0439 \u041c\u0438\u0440@Mail.Ru" + "Мой Мир@Mail.Ru" ], "urlMain": "https://my.mail.ru/", "url": "https://my.mail.ru/ok/{username}", @@ -2241,7 +2237,7 @@ ], "absenceStrs": [ "mm-profile_not-found_content", - "\u041c\u043e\u0439 \u041c\u0438\u0440@Mail.Ru" + "Мой Мир@Mail.Ru" ], "urlMain": "https://my.mail.ru/", "url": "https://my.mail.ru/vk/{username}", @@ -2258,7 +2254,7 @@ ], "absenceStrs": [ "mm-profile_not-found_content", - "\u041c\u043e\u0439 \u041c\u0438\u0440@Mail.Ru" + "Мой Мир@Mail.Ru" ], "urlMain": "https://my.mail.ru/", "url": "https://my.mail.ru/bk/{username}/", @@ -2275,7 +2271,7 @@ ], "absenceStrs": [ "mm-profile_not-found_content", - "\u041c\u043e\u0439 \u041c\u0438\u0440@Mail.Ru" + "Мой Мир@Mail.Ru" ], "urlMain": "https://my.mail.ru/", "url": "https://my.mail.ru/gmail.com/{username}/", @@ -2292,7 +2288,7 @@ ], "absenceStrs": [ "mm-profile_not-found_content", - "\u041c\u043e\u0439 \u041c\u0438\u0440@Mail.Ru" + "Мой Мир@Mail.Ru" ], "urlMain": "https://my.mail.ru/", "url": "https://my.mail.ru/list/{username}/", @@ -2309,7 +2305,7 @@ ], "absenceStrs": [ "mm-profile_not-found_content", - "\u041c\u043e\u0439 \u041c\u0438\u0440@Mail.Ru" + "Мой Мир@Mail.Ru" ], "urlMain": "https://my.mail.ru/", "url": "https://my.mail.ru/mail/{username}/", @@ -2326,7 +2322,7 @@ ], "absenceStrs": [ "mm-profile_not-found_content", - "\u041c\u043e\u0439 \u041c\u0438\u0440@Mail.Ru" + "Мой Мир@Mail.Ru" ], "urlMain": "https://my.mail.ru/", "url": "https://my.mail.ru/ya.ru/{username}/", @@ -2343,7 +2339,7 @@ ], "absenceStrs": [ "mm-profile_not-found_content", - "\u041c\u043e\u0439 \u041c\u0438\u0440@Mail.Ru" + "Мой Мир@Mail.Ru" ], "urlMain": "https://my.mail.ru/", "url": "https://my.mail.ru/yandex.ru/{username}/", @@ -2462,7 +2458,6 @@ "DigitalOcean": { "tags": [ "forum", - "in", "tech" ], "regexCheck": "^[^\\.]+$", @@ -2475,8 +2470,7 @@ }, "About.me": { "tags": [ - "blog", - "in" + "blog" ], "checkType": "status_code", "alexaRank": 669, @@ -2501,8 +2495,7 @@ }, "PeopleIgn": { "tags": [ - "gaming", - "us" + "gaming" ], "checkType": "message", "absenceStrs": [ @@ -2516,8 +2509,7 @@ "Envato": { "tags": [ "au", - "forum", - "in" + "forum" ], "engine": "Discourse", "urlMain": "https://forums.envato.com", @@ -2548,7 +2540,7 @@ ], "checkType": "message", "absenceStrs": [ - "\u041f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c \u043d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d" + "Пользователь не найден" ], "urlMain": "https://2berega.spb.ru", "url": "https://2berega.spb.ru/user/{username}", @@ -2562,7 +2554,7 @@ ], "checkType": "message", "absenceStrs": [ - "\u0418\u0437\u0432\u0438\u043d\u0438\u0442\u0435" + "Извините" ], "urlMain": "https://diveforum.spb.ru/", "url": "https://diveforum.spb.ru/profile.php?mode=viewprofile&u={username}", @@ -2577,8 +2569,7 @@ }, "Fiverr": { "tags": [ - "shopping", - "us" + "shopping" ], "checkType": "response_url", "alexaRank": 733, @@ -2594,7 +2585,12 @@ "urlMain": "https://huggingface.co/", "usernameClaimed": "blue", "usernameUnclaimed": "noonewouldeverusethis7", - "alexaRank": 749 + "alexaRank": 749, + "tags": [ + "coding", + "tech", + "llm" + ] }, "Laracast": { "url": "https://laracasts.com/@{username}", @@ -2603,7 +2599,11 @@ "regexCheck": "^[a-zA-Z0-9_-]{3,}$", "usernameClaimed": "user1", "usernameUnclaimed": "noonewouldeverusethis7", - "alexaRank": 752 + "alexaRank": 752, + "tags": [ + "coding", + "education" + ] }, "Paypal": { "tags": [ @@ -2626,7 +2626,7 @@ }, "Itch.io": { "tags": [ - "blog" + "gaming" ], "regexCheck": "^[^\\.]+$", "checkType": "status_code", @@ -2652,8 +2652,7 @@ "disabled": true, "tags": [ "forum", - "gaming", - "us" + "gaming" ], "checkType": "status_code", "urlMain": "https://forums.ea.com", @@ -2674,7 +2673,7 @@ }, "Gumroad": { "tags": [ - "us" + "shopping" ], "checkType": "message", "absenceStrs": [ @@ -2710,7 +2709,7 @@ }, "Douban": { "absenceStrs": [ - "\u8fd4\u56de\u9996\u9875" + "返回首页" ], "presenseStrs": [ "db-usr-profile" @@ -2725,9 +2724,9 @@ ], "alexaRank": 874 }, - "upwork.com": { + "Upwork": { "tags": [ - "us" + "freelance" ], "engine": "engine404", "urlMain": "https://upwork.com", @@ -2739,7 +2738,7 @@ "LonelyPlanet": { "disabled": true, "tags": [ - "us" + "travel" ], "checkType": "status_code", "alexaRank": 893, @@ -2790,8 +2789,7 @@ }, "PyPi": { "tags": [ - "in", - "us" + "coding" ], "errors": { "Please enable JavaScript to proceed": "Scraping protection" @@ -2817,8 +2815,7 @@ }, "ComicvineGamespot": { "tags": [ - "gaming", - "us" + "gaming" ], "checkType": "status_code", "urlMain": "https://comicvine.gamespot.com/", @@ -2828,8 +2825,7 @@ }, "Gamefaqs": { "tags": [ - "gaming", - "us" + "gaming" ], "regexCheck": "^\\S+$", "errors": { @@ -2851,8 +2847,7 @@ }, "Gamespot": { "tags": [ - "gaming", - "us" + "gaming" ], "checkType": "status_code", "alexaRank": 913, @@ -2867,8 +2862,7 @@ "usernameClaimed": "abbyec", "usernameUnclaimed": "noonewouldeverusethis7", "tags": [ - "forum", - "us" + "forum" ] }, "Figma": { @@ -2904,7 +2898,7 @@ "Houzz": { "disabled": true, "tags": [ - "us" + "design" ], "checkType": "message", "absenceStrs": [ @@ -2919,7 +2913,7 @@ "Foursquare": { "tags": [ "geosocial", - "in" + "social" ], "checkType": "message", "presenseStrs": [ @@ -2936,8 +2930,7 @@ }, "HackerNews": { "tags": [ - "news", - "us" + "news" ], "checkType": "message", "absenceStrs": [ @@ -2951,8 +2944,7 @@ }, "TradingView": { "tags": [ - "trading", - "us" + "trading" ], "checkType": "status_code", "alexaRank": 995, @@ -2963,8 +2955,7 @@ }, "Discogs": { "tags": [ - "music", - "us" + "music" ], "checkType": "status_code", "alexaRank": 1016, @@ -2975,7 +2966,7 @@ }, "Jimdo": { "tags": [ - "jp" + "de" ], "regexCheck": "^[^\\.]+$", "checkType": "status_code", @@ -3008,8 +2999,7 @@ }, "Codepen": { "tags": [ - "coding", - "in" + "coding" ], "errors": { "Checking your browser before accessing": "Autoredirect detected" @@ -3026,8 +3016,7 @@ }, "Rottentomatoes": { "tags": [ - "movies", - "us" + "movies" ], "checkType": "status_code", "alexaRank": 1083, @@ -3038,8 +3027,7 @@ }, "TomsHardware": { "tags": [ - "forum", - "us" + "forum" ], "checkType": "message", "absenceStrs": [ @@ -3053,7 +3041,7 @@ }, "Smugmug": { "tags": [ - "us" + "photo" ], "regexCheck": "^[^\\.]+$", "checkType": "response_url", @@ -3069,13 +3057,12 @@ "usernameClaimed": "alex", "usernameUnclaimed": "noonewouldeverusethis7", "tags": [ - "forum", - "us" + "forum" ] }, "Duolingo": { "tags": [ - "us" + "education" ], "urlProbe": "https://www.duolingo.com/2017-06-30/users?username={username}", "checkType": "message", @@ -3090,10 +3077,7 @@ }, "kofi": { "tags": [ - "freelance", - "in", - "ru", - "us" + "freelance" ], "regexCheck": "^[^\\.]+$", "checkType": "message", @@ -3109,8 +3093,8 @@ }, "Ustream": { "tags": [ - "eg", - "us" + "streaming", + "video" ], "checkType": "response_url", "alexaRank": 1143, @@ -3120,9 +3104,7 @@ "usernameUnclaimed": "noonewouldeverusethis7" }, "djskt.lnk.to": { - "tags": [ - "us" - ], + "tags": [], "checkType": "message", "presenseStrs": [ "artistName", @@ -3148,7 +3130,7 @@ }, "Strava": { "tags": [ - "us" + "sport" ], "regexCheck": "^[^\\.]+$", "checkType": "message", @@ -3176,7 +3158,7 @@ }, "Wikidot": { "tags": [ - "us" + "wiki" ], "checkType": "message", "absenceStrs": [ @@ -3205,7 +3187,7 @@ }, "ReverbNation": { "tags": [ - "us" + "music" ], "errors": { "But your computer or network appears to be generating a lot of automated requests": "Too many requests" @@ -3258,7 +3240,7 @@ "VirusTotal": { "disabled": true, "tags": [ - "in" + "tech" ], "headers": { "accept-language": "en-US,en;q=0.9,es;q=0.8", @@ -3284,7 +3266,7 @@ "ru" ], "errors": { - "\u041f\u0440\u0438 \u0432\u044b\u043f\u043e\u043b\u043d\u0435\u043d\u0438\u0438 \u0437\u0430\u043f\u0440\u043e\u0441\u0430 \u044d\u0442\u043e\u0439 \u0441\u0442\u0440\u0430\u043d\u0438\u0446\u044b \u043f\u0440\u043e\u0438\u0437\u043e\u0448\u043b\u0430 \u043e\u0448\u0438\u0431\u043a\u0430.": "Site error" + "При выполнении запроса этой страницы произошла ошибка.": "Site error" }, "checkType": "message", "absenseStrs": [ @@ -3301,8 +3283,7 @@ }, "ProductHunt": { "tags": [ - "tech", - "us" + "tech" ], "checkType": "message", "presenseStrs": [ @@ -3319,8 +3300,7 @@ }, "HubPages": { "tags": [ - "blog", - "us" + "blog" ], "checkType": "status_code", "urlMain": "https://hubpages.com/", @@ -3331,8 +3311,7 @@ }, "Genius": { "tags": [ - "music", - "us" + "music" ], "checkType": "status_code", "alexaRank": 1324, @@ -3354,7 +3333,6 @@ }, "Flipboard": { "tags": [ - "in", "tech" ], "regexCheck": "^([a-zA-Z0-9_]){1,15}$", @@ -3392,7 +3370,7 @@ }, "BuyMeACoffee": { "tags": [ - "in" + "freelance" ], "urlProbe": "https://www.buymeacoffee.com/{username}", "checkType": "status_code", @@ -3404,7 +3382,8 @@ }, "Techrepublic": { "tags": [ - "us" + "news", + "tech" ], "checkType": "status_code", "alexaRank": 1360, @@ -3415,7 +3394,7 @@ }, "Pbase": { "tags": [ - "in" + "photo" ], "checkType": "message", "absenceStrs": [ @@ -3430,8 +3409,7 @@ }, "Packagist": { "tags": [ - "in", - "jp" + "coding" ], "checkType": "response_url", "alexaRank": 1400, @@ -3462,11 +3440,16 @@ "absenceStrs": [ "not found", "404" + ], + "tags": [ + "coding", + "education" ] }, "AllTrails": { "tags": [ - "us" + "sport", + "travel" ], "regexCheck": "^[^\\.]+$", "checkType": "message", @@ -3484,7 +3467,7 @@ }, "Diigo": { "tags": [ - "in" + "bookmarks" ], "checkType": "message", "absenceStrs": [ @@ -3498,7 +3481,7 @@ }, "AllRecipes": { "tags": [ - "us" + "hobby" ], "checkType": "message", "absenceStrs": [ @@ -3522,7 +3505,7 @@ ], "checkType": "message", "absenceStrs": [ - "

\u041e\u0448\u0438\u0431\u043a\u0430 404

" + "

Ошибка 404

" ], "urlMain": "https://career.habr.com/", "url": "https://career.habr.com/{username}", @@ -3570,8 +3553,7 @@ "usernameClaimed": "admin", "usernameUnclaimed": "noonewouldeverusethis7", "tags": [ - "forum", - "us" + "forum" ] }, "Gorod.dp.ua": { @@ -3595,8 +3577,7 @@ }, "Redbubble": { "tags": [ - "shopping", - "us" + "shopping" ], "checkType": "status_code", "alexaRank": 1503, @@ -3607,7 +3588,7 @@ }, "codeberg.org": { "tags": [ - "in" + "coding" ], "checkType": "message", "presenseStrs": [ @@ -3626,7 +3607,8 @@ }, "Codecanyon": { "tags": [ - "in" + "coding", + "shopping" ], "checkType": "status_code", "alexaRank": 1571, @@ -3638,11 +3620,7 @@ "Windy": { "disabled": true, "tags": [ - "in", - "jp", - "kr", - "pl", - "us" + "maps" ], "checkType": "status_code", "alexaRank": 1580, @@ -3653,8 +3631,7 @@ }, "community.brave.com": { "tags": [ - "forum", - "us" + "forum" ], "engine": "Discourse", "urlMain": "https://community.brave.com", @@ -3707,7 +3684,10 @@ "regexCheck": "^.{1,25}$", "usernameClaimed": "blue", "usernameUnclaimed": "noonewouldeverusethis7", - "alexaRank": 1629 + "alexaRank": 1629, + "tags": [ + "gaming" + ] }, "{username}.tilda.ws": { "tags": [ @@ -3723,8 +3703,7 @@ "Discuss.Elastic.co": { "tags": [ "forum", - "tech", - "us" + "tech" ], "engine": "Discourse", "urlMain": "https://discuss.elastic.co/", @@ -3751,8 +3730,7 @@ }, "discuss.codecademy.com": { "tags": [ - "forum", - "us" + "forum" ], "engine": "Discourse", "urlMain": "https://discuss.codecademy.com", @@ -3761,7 +3739,8 @@ }, "Polygon": { "tags": [ - "us" + "gaming", + "news" ], "checkType": "status_code", "alexaRank": 1658, @@ -3786,10 +3765,9 @@ "forum" ] }, - "hackernoon.com": { + "HackerNoon": { "tags": [ - "news", - "us" + "news" ], "checkType": "message", "absenceStrs": [ @@ -3847,8 +3825,7 @@ "disabled": true, "tags": [ "forum", - "gaming", - "us" + "gaming" ], "checkType": "message", "absenceStrs": [ @@ -3879,7 +3856,10 @@ "usernameClaimed": "john", "usernameUnclaimed": "noonewouldeverusethis7", "alexaRank": 1757, - "requestMethod": "GET" + "requestMethod": "GET", + "tags": [ + "reading" + ] }, "RamblerDating": { "disabled": true, @@ -3940,10 +3920,11 @@ "usernameClaimed": "Dogstho7951", "usernameUnclaimed": "noonewouldeverusethis7" }, - "opensea.io": { + "OpenSea": { "disabled": true, "tags": [ - "us" + "nft", + "crypto" ], "checkType": "message", "presenseStrs": [ @@ -3963,8 +3944,7 @@ }, "Speakerdeck": { "tags": [ - "in", - "us" + "sharing" ], "regexCheck": "^[^\\.]+$", "checkType": "message", @@ -4016,7 +3996,7 @@ ], "checkType": "message", "absenceStrs": [ - "\u041c\u044b \u0432\u0441\u0435 \u0432\u043d\u0438\u043c\u0430\u0442\u0435\u043b\u044c\u043d\u043e \u043f\u043e\u0441\u043c\u043e\u0442\u0440\u0435\u043b\u0438, \u043d\u043e \u043d\u0438\u0447\u0435\u0433\u043e \u043d\u0435 \u043d\u0430\u0448\u043b\u0438 :(" + "Мы все внимательно посмотрели, но ничего не нашли :(" ], "alexaRank": 1879, "urlMain": "https://vc.ru", @@ -4097,9 +4077,7 @@ ] }, "fablero.ucoz.ru": { - "tags": [ - "in" - ], + "tags": [], "engine": "uCoz", "urlMain": "http://fablero.ucoz.ru", "usernameClaimed": "alex", @@ -5346,9 +5324,7 @@ ] }, "SoftwareInformer": { - "tags": [ - "in" - ], + "tags": [], "checkType": "response_url", "urlMain": "https://users.software.informer.com", "url": "https://users.software.informer.com/{username}/", @@ -5369,11 +5345,11 @@ }, "Letterboxd": { "tags": [ - "us" + "movies" ], "checkType": "message", "absenceStrs": [ - "Sorry, we can\u2019t find the page you\u2019ve requested." + "Sorry, we can’t find the page you’ve requested." ], "alexaRank": 2000, "urlMain": "https://letterboxd.com/", @@ -5383,7 +5359,7 @@ }, "MyAnimeList": { "tags": [ - "movies" + "anime" ], "checkType": "status_code", "alexaRank": 2033, @@ -5406,8 +5382,7 @@ }, "Roblox": { "tags": [ - "gaming", - "us" + "gaming" ], "checkType": "status_code", "alexaRank": 2097, @@ -5418,9 +5393,7 @@ }, "Flightradar24": { "tags": [ - "de", - "es", - "us" + "maps" ], "regexCheck": "^[a-zA-Z0-9_]{3,20}$", "checkType": "status_code", @@ -5436,8 +5409,7 @@ "usernameClaimed": "alex", "usernameUnclaimed": "noonewouldeverusethis7", "tags": [ - "forum", - "us" + "forum" ] }, "discuss.hashicorp.com": { @@ -5449,15 +5421,15 @@ "tech" ] }, - "metacritic": { + "Metacritic": { "disabled": true, "tags": [ - "us" + "review" ], "regexCheck": "^(?![-_])[A-Za-z0-9-_]{3,15}$", "checkType": "message", "absenceStrs": [ - "This user hasn\u2019t rated anything yet" + "This user hasn’t rated anything yet" ], "presenseStrs": [ "Avg. User score" @@ -5470,7 +5442,7 @@ }, "TVTropes": { "tags": [ - "us" + "wiki" ], "regexCheck": "^[^\\.]+$", "checkType": "status_code", @@ -5487,9 +5459,7 @@ "usernameUnclaimed": "noonewouldeverusethis7" }, "T-MobileSupport": { - "tags": [ - "us" - ], + "tags": [], "checkType": "status_code", "urlMain": "https://support.t-mobile.com", "url": "https://support.t-mobile.com/people/{username}", @@ -5511,9 +5481,7 @@ "ICQ": { "disabled": true, "tags": [ - "ch", - "ru", - "tr" + "ru" ], "checkType": "status_code", "alexaRank": 2391, @@ -5525,7 +5493,7 @@ "Eurogamer": { "disabled": true, "tags": [ - "us" + "gb" ], "checkType": "status_code", "alexaRank": 2394, @@ -5537,8 +5505,7 @@ "BoardGameGeek": { "checkType": "message", "tags": [ - "gaming", - "us" + "gaming" ], "absenceStrs": [ "\t\tUser not found", @@ -5566,9 +5533,13 @@ "checkType": "status_code", "usernameClaimed": "notice", "usernameUnclaimed": "noonewouldeverusethis7", - "alexaRank": 2424 + "alexaRank": 2424, + "tags": [ + "blog", + "kr" + ] }, - "jsfiddle.net": { + "JSFiddle": { "tags": [ "coding", "sharing" @@ -5602,8 +5573,7 @@ "123rf": { "tags": [ "photo", - "ru", - "us" + "ru" ], "checkType": "response_url", "urlMain": "https://ru.123rf.com", @@ -5613,9 +5583,7 @@ }, "linuxfoundation": { "tags": [ - "forum", - "in", - "us" + "forum" ], "checkType": "status_code", "urlMain": "https://forum.linuxfoundation.org", @@ -5623,10 +5591,9 @@ "usernameClaimed": "chap92", "usernameUnclaimed": "noonewouldeverusethis7" }, - "techspot.com": { + "TechSpot": { "tags": [ - "forum", - "us" + "forum" ], "errors": { "You must be logged-in to do that.": "Login required" @@ -5637,9 +5604,10 @@ "usernameClaimed": "alex", "usernameUnclaimed": "noonewouldeverusethis7" }, - "www.gamesradar.com": { + "GamesRadar": { "tags": [ - "us" + "gaming", + "news" ], "checkType": "message", "presenseStrs": [ @@ -5661,8 +5629,7 @@ }, "Gog": { "tags": [ - "gaming", - "us" + "gaming" ], "checkType": "status_code", "alexaRank": 2516, @@ -5671,11 +5638,9 @@ "usernameClaimed": "blue", "usernameUnclaimed": "noonewouldeverusethis7" }, - "geocaching": { + "Geocaching": { "tags": [ - "de", - "hobby", - "us" + "hobby" ], "checkType": "status_code", "alexaRank": 2520, @@ -5686,7 +5651,7 @@ }, "Coub": { "tags": [ - "us" + "video" ], "checkType": "status_code", "alexaRank": 2543, @@ -5698,8 +5663,7 @@ "Metacafe": { "disabled": true, "tags": [ - "in", - "us" + "video" ], "checkType": "message", "absenceStrs": [ @@ -5731,8 +5695,7 @@ "Rust-lang": { "tags": [ "coding", - "forum", - "us" + "forum" ], "engine": "Discourse", "urlMain": "https://users.rust-lang.org", @@ -5741,8 +5704,7 @@ }, "Keybase": { "tags": [ - "business", - "us" + "business" ], "urlProbe": "https://keybase.io/_/api/1.0/user/lookup.json?usernames={username}", "checkType": "message", @@ -5759,7 +5721,8 @@ "LiveLeak": { "disabled": true, "tags": [ - "us" + "video", + "news" ], "checkType": "message", "absenceStrs": [ @@ -5773,7 +5736,7 @@ }, "Artsy": { "tags": [ - "us" + "art" ], "checkType": "status_code", "alexaRank": 2691, @@ -5803,7 +5766,7 @@ }, "beacons.ai": { "tags": [ - "us" + "links" ], "checkType": "message", "presenseStrs": [ @@ -5829,7 +5792,7 @@ "checkType": "message", "absenceStrs": [ "Page not found", - "\u0421\u0442\u0440\u0430\u043d\u0438\u0446\u0430 \u043d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d\u0430" + "Страница не найдена" ], "presenseStrs": [ "taplink.cc" @@ -5842,8 +5805,7 @@ }, "MetaDiscourse": { "tags": [ - "forum", - "us" + "forum" ], "engine": "Discourse", "urlMain": "https://meta.discourse.org/", @@ -5864,7 +5826,7 @@ "checkType": "message", "alexaRank": 2778, "tags": [ - "us" + "news" ] }, "Odysee": { @@ -5876,7 +5838,10 @@ ], "usernameClaimed": "Odysee", "usernameUnclaimed": "noonewouldeverusethis7", - "alexaRank": 2787 + "alexaRank": 2787, + "tags": [ + "video" + ] }, "community.icons8.com": { "urlMain": "https://community.icons8.com", @@ -5884,8 +5849,7 @@ "usernameClaimed": "alex", "usernameUnclaimed": "noonewouldeverusethis7", "tags": [ - "forum", - "in" + "forum" ] }, "Hack MD": { @@ -5903,8 +5867,7 @@ "disabled": true, "tags": [ "forum", - "movies", - "us" + "movies" ], "headers": { "'User-Agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:109.0) Gecko/20100101 Firefox/117.0" @@ -5937,7 +5900,7 @@ "coding" ] }, - "donorbox": { + "Donorbox": { "absenceStrs": [ "/orgs/new" ], @@ -5956,8 +5919,7 @@ }, "Freelancer.com": { "tags": [ - "freelance", - "us" + "freelance" ], "checkType": "message", "absenceStrs": [ @@ -5971,7 +5933,7 @@ }, "Giantbomb": { "tags": [ - "us" + "gaming" ], "checkType": "status_code", "alexaRank": 2936, @@ -5986,9 +5948,12 @@ "checkType": "status_code", "usernameClaimed": "blue", "usernameUnclaimed": "noonewouldeverusethis7", - "alexaRank": 2948 + "alexaRank": 2948, + "tags": [ + "coding" + ] }, - "steemit": { + "Steemit": { "absenceStrs": [ "NotFound__menu" ], @@ -6009,8 +5974,7 @@ "gentoo": { "tags": [ "fi", - "forum", - "in" + "forum" ], "checkType": "message", "absenceStrs": [ @@ -6039,11 +6003,10 @@ "usernameClaimed": "alex", "usernameUnclaimed": "noonewouldeverusethis7", "tags": [ - "forum", - "us" + "forum" ] }, - "www.inaturalist.org": { + "iNaturalist": { "checkType": "message", "absenceStrs": [ "display:none", @@ -6063,13 +6026,14 @@ "urlMain": "https://www.inaturalist.org", "usernameClaimed": "sparky123", "usernameUnclaimed": "cawlpwmifx", - "alexaRank": 3027 + "alexaRank": 3027, + "tags": [ + "science", + "hobby" + ] }, "Pluralsight": { - "tags": [ - "in", - "us" - ], + "tags": [], "checkType": "message", "errors": { "Unfortunately, Pluralsight's products are not available in your area at this time": "Site censorship" @@ -6083,7 +6047,7 @@ "usernameClaimed": "adam-crahen", "usernameUnclaimed": "noonewouldeverusethis7" }, - "gfycat": { + "Gfycat": { "tags": [ "photo", "sharing" @@ -6110,7 +6074,7 @@ }, "Teletype": { "tags": [ - "in", + "ru", "writing" ], "checkType": "status_code", @@ -6122,16 +6086,14 @@ }, "F-droid": { "tags": [ - "forum", - "in", - "us" + "forum" ], "engine": "Discourse", "urlMain": "https://forum.f-droid.org", "usernameClaimed": "blue", "usernameUnclaimed": "noonewouldeverusethis7" }, - "dailykos": { + "DailyKos": { "tags": [ "us" ], @@ -6148,11 +6110,15 @@ "checkType": "status_code", "usernameClaimed": "briggs", "usernameUnclaimed": "noonewouldeverusethis7", - "alexaRank": 3099 + "alexaRank": 3099, + "tags": [ + "coding" + ] }, "Mix": { "tags": [ - "in" + "links", + "sharing" ], "checkType": "response_url", "alexaRank": 3128, @@ -6191,7 +6157,8 @@ }, "OpenCollective": { "tags": [ - "in" + "finance", + "coding" ], "checkType": "message", "absenceStrs": [ @@ -6225,7 +6192,7 @@ }, "ChaturBate": { "tags": [ - "us" + "webcam" ], "checkType": "status_code", "alexaRank": 3165, @@ -6237,8 +6204,8 @@ "Techdirt": { "disabled": true, "tags": [ - "in", - "us" + "news", + "tech" ], "checkType": "status_code", "alexaRank": 3176, @@ -6289,7 +6256,7 @@ }, "Ultimate-Guitar": { "tags": [ - "us" + "music" ], "checkType": "status_code", "alexaRank": 3347, @@ -6301,8 +6268,7 @@ "SublimeForum": { "tags": [ "coding", - "forum", - "in" + "forum" ], "engine": "Discourse", "urlMain": "https://forum.sublimetext.com/", @@ -6530,7 +6496,8 @@ }, "Plurk": { "tags": [ - "tw" + "tw", + "social" ], "checkType": "message", "absenceStrs": [ @@ -7079,7 +7046,7 @@ "TechPowerUp": { "disabled": true, "tags": [ - "us" + "tech" ], "checkType": "message", "absenceStrs": [ @@ -7104,8 +7071,7 @@ }, "HackerOne": { "tags": [ - "hacking", - "in" + "hacking" ], "checkType": "message", "absenceStrs": [ @@ -7139,13 +7105,15 @@ "checkType": "status_code", "usernameClaimed": "blue", "usernameUnclaimed": "noonewouldeverusethis7", - "alexaRank": 3699 + "alexaRank": 3699, + "tags": [ + "movies" + ] }, "Winamp": { "disabled": true, "tags": [ - "forum", - "us" + "forum" ], "engine": "vBulletin", "urlMain": "http://forums.winamp.com", @@ -7155,8 +7123,7 @@ "Skyrock": { "disabled": true, "tags": [ - "fr", - "in" + "fr" ], "regexCheck": "^[^_\\.]+$", "checkType": "status_code", @@ -7182,7 +7149,7 @@ "usernameClaimed": "blue", "usernameUnclaimed": "noonewouldeverusethis7" }, - "angel.co": { + "AngelList": { "absenceStrs": [ "render_not_found" ], @@ -7207,11 +7174,9 @@ "disabled": true, "tags": [ "de", - "in", "it", "nl", - "no", - "us" + "no" ], "checkType": "status_code", "urlMain": "https://discussions.tomtom.com/", @@ -7221,7 +7186,7 @@ }, "Cracked": { "tags": [ - "us" + "news" ], "checkType": "response_url", "alexaRank": 3845, @@ -7235,8 +7200,7 @@ "disabled": true, "tags": [ "forum", - "gb", - "us" + "gb" ], "checkType": "status_code", "urlMain": "https://forums.digitalspy.com/", @@ -7283,8 +7247,8 @@ }, "Gab": { "tags": [ - "in", - "us" + "us", + "social" ], "urlProbe": "https://gab.com/api/v1/account_by_username/{username}", "checkType": "status_code", @@ -7302,7 +7266,7 @@ }, "MyFitnessPal": { "tags": [ - "us" + "sport" ], "checkType": "message", "absenceStrs": [ @@ -7318,9 +7282,7 @@ "usernameUnclaimed": "noonewouldeverusethis7" }, "BodyBuilding": { - "tags": [ - "us" - ], + "tags": [], "checkType": "response_url", "urlMain": "https://bodyspace.bodybuilding.com/", "url": "https://bodyspace.bodybuilding.com/{username}", @@ -7330,8 +7292,7 @@ }, "Contently": { "tags": [ - "freelance", - "in" + "freelance" ], "checkType": "message", "absenceStrs": [ @@ -7348,8 +7309,8 @@ }, "MyMiniFactory": { "tags": [ - "gb", - "us" + "3d", + "shopping" ], "checkType": "status_code", "alexaRank": 4013, @@ -7364,15 +7325,13 @@ "usernameClaimed": "alex", "usernameUnclaimed": "noonewouldeverusethis7", "tags": [ - "forum", - "in" + "forum" ] }, "Folkd": { "disabled": true, "tags": [ - "eu", - "in" + "bookmarks" ], "checkType": "message", "absenceStrs": [ @@ -7387,7 +7346,8 @@ }, "9GAG": { "tags": [ - "sharing" + "sharing", + "social" ], "checkType": "status_code", "alexaRank": 4141, @@ -7398,8 +7358,7 @@ }, "Cbr": { "tags": [ - "forum", - "us" + "forum" ], "engine": "vBulletin", "urlMain": "https://community.cbr.com", @@ -7417,7 +7376,7 @@ "usernameClaimed": "red", "usernameUnclaimed": "noonewouldeverusethis7" }, - "imgflip.com": { + "Imgflip": { "checkType": "message", "absenceStrs": [ "\t\t

404 Page Not Found

\r", @@ -7437,7 +7396,11 @@ "urlMain": "https://imgflip.com", "usernameClaimed": "sparkles99", "usernameUnclaimed": "hrypxleske", - "alexaRank": 4268 + "alexaRank": 4268, + "tags": [ + "photo", + "sharing" + ] }, "azovmore.dn.ua": { "engine": "uCoz", @@ -7457,7 +7420,7 @@ "checkType": "message", "absenceStrs": [ "Whoomp, there it isn't...", - "It looks like the page you\u2019re looking for is no longer available. " + "It looks like the page you’re looking for is no longer available. " ], "presenseStrs": [ "Likes" @@ -7468,9 +7431,9 @@ "usernameClaimed": "blue", "usernameUnclaimed": "noonewouldeverusethis7" }, - "couchsurfing": { + "Couchsurfing": { "tags": [ - "in" + "travel" ], "checkType": "status_code", "alexaRank": 4340, @@ -7481,8 +7444,8 @@ }, "Hackaday": { "tags": [ - "de", - "us" + "tech", + "hobby" ], "checkType": "status_code", "alexaRank": 4348, @@ -7493,10 +7456,7 @@ }, "Metal-archives": { "tags": [ - "de", - "music", - "pl", - "us" + "music" ], "checkType": "message", "presenseStrs": [ @@ -7511,10 +7471,9 @@ "usernameClaimed": "adam", "usernameUnclaimed": "noonewouldeverusethis7" }, - "opensource": { + "OpenSource": { "tags": [ - "in", - "us" + "coding" ], "checkType": "status_code", "alexaRank": 4379, @@ -7525,7 +7484,7 @@ }, "Fodors": { "tags": [ - "us" + "travel" ], "checkType": "response_url", "alexaRank": 4384, @@ -7537,8 +7496,8 @@ "AnimeNewsNetwork": { "urlSubpath": "/bbs", "tags": [ - "gb", - "us" + "anime", + "news" ], "checkType": "message", "absenceStrs": [ @@ -7550,7 +7509,7 @@ "usernameClaimed": "adam", "usernameUnclaimed": "noonewouldeverusethis7" }, - "www.itemfix.com": { + "ItemFix": { "absenceStrs": [ "ItemFix - Channel: " ], @@ -7563,11 +7522,11 @@ "usernameUnclaimed": "noonewouldeverusethis7", "checkType": "message", "tags": [ - "us" + "video" ], "alexaRank": 4413 }, - "99designs.com": { + "Designs99": { "absenceStrs": [ "mobile-only" ], @@ -7608,7 +7567,7 @@ }, "LibraryThing": { "tags": [ - "us" + "books" ], "checkType": "message", "absenceStrs": [ @@ -7628,7 +7587,7 @@ ], "checkType": "message", "absenceStrs": [ - "\u041f\u0440\u043e\u0441\u0442\u0438\u0442\u0435, \u043d\u043e \u0443\u0447\u0430\u0441\u0442\u043d\u0438\u043a" + "Простите, но участник" ], "urlMain": "https://forum.ixbt.com", "url": "https://forum.ixbt.com/users.cgi?id=info:{username}", @@ -7639,7 +7598,6 @@ "tags": [ "coding", "forum", - "in", "za" ], "engine": "Discourse", @@ -7649,8 +7607,7 @@ }, "Kongregate": { "tags": [ - "gaming", - "us" + "gaming" ], "regexCheck": "^[a-zA-Z][a-zA-Z0-9_-]*$", "checkType": "message", @@ -7665,8 +7622,7 @@ }, "Freesound": { "tags": [ - "music", - "us" + "music" ], "checkType": "status_code", "alexaRank": 4582, @@ -7681,14 +7637,12 @@ "usernameClaimed": "alex", "usernameUnclaimed": "noonewouldeverusethis7", "tags": [ - "forum", - "in" + "forum" ] }, "AlternativeTo": { "tags": [ - "in", - "us" + "tech" ], "regexCheck": "^[^\\.]+$", "checkType": "message", @@ -7718,7 +7672,11 @@ "urlMain": "https://www.pscp.tv", "usernameClaimed": "moonlitraven", "usernameUnclaimed": "higfjqmiez", - "alexaRank": 4652 + "alexaRank": 4652, + "tags": [ + "streaming", + "video" + ] }, "discourse.jupyter.org": { "urlMain": "https://discourse.jupyter.org", @@ -7733,7 +7691,8 @@ "Pikabu": { "tags": [ "ru", - "sharing" + "sharing", + "social" ], "checkType": "status_code", "alexaRank": 4727, @@ -7746,8 +7705,7 @@ "urlSubpath": "/v3", "disabled": true, "tags": [ - "forum", - "us" + "forum" ], "presenseStrs": [ "reputation_alexaRank" @@ -7785,7 +7743,7 @@ }, "Speedrun.com": { "tags": [ - "us" + "gaming" ], "checkType": "message", "absenceStrs": [ @@ -7802,7 +7760,7 @@ }, "F6S": { "tags": [ - "in" + "business" ], "errors": { "custom-page-main-frontpage-captcha": "Captcha detected" @@ -7832,8 +7790,8 @@ ], "checkType": "message", "absenceStrs": [ - "\u041f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c \u043d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d", - "\u0421\u0442\u0440\u0430\u043d\u0438\u0446\u0430 \u043d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d\u0430" + "Пользователь не найден", + "Страница не найдена" ], "alexaRank": 19671, "urlMain": "https://club.cnews.ru/", @@ -7843,7 +7801,6 @@ }, "Boosty": { "tags": [ - "eu", "ru" ], "checkType": "message", @@ -7861,7 +7818,7 @@ }, "Soup": { "tags": [ - "in" + "blog" ], "checkType": "response_url", "alexaRank": 5179, @@ -7872,7 +7829,7 @@ }, "adblockplus.org": { "tags": [ - "us" + "tech" ], "checkType": "message", "presenseStrs": [ @@ -7891,7 +7848,6 @@ "LiverpoolFC": { "tags": [ "forum", - "us", "za" ], "checkType": "message", @@ -7915,7 +7871,6 @@ }, "Hackster": { "tags": [ - "in", "tech" ], "checkType": "status_code", @@ -7928,8 +7883,7 @@ "Dreamwidth": { "disabled": true, "tags": [ - "in", - "us" + "blog" ], "regexCheck": "^[^\\.]+$", "checkType": "message", @@ -7944,8 +7898,7 @@ }, "Xvideos": { "tags": [ - "porn", - "us" + "porn" ], "checkType": "status_code", "alexaRank": 5295, @@ -7965,7 +7918,7 @@ ], "alexaRank": 5338 }, - "www.furaffinity.net": { + "Fur Affinity": { "checkType": "message", "absenceStrs": [ ">The username ", @@ -7985,14 +7938,14 @@ "urlMain": "https://www.furaffinity.net", "usernameClaimed": "astrid7", "usernameUnclaimed": "djmgizlhqb", - "alexaRank": 5404 + "alexaRank": 5404, + "tags": [ + "art" + ] }, "ModDB": { "tags": [ - "au", - "cn", - "gb", - "us" + "gaming" ], "checkType": "status_code", "alexaRank": 5439, @@ -8001,9 +7954,10 @@ "usernameClaimed": "adam", "usernameUnclaimed": "noonewouldeverusethis7" }, - "hashnode": { + "Hashnode": { "tags": [ - "in" + "blog", + "coding" ], "checkType": "message", "presenseStrs": [ @@ -8019,7 +7973,7 @@ "alexaRank": 5495, "urlProbe": "https://gql.hashnode.com?query=%7Buser(username%3A%20%22{username}%22)%20%7B%20name%20username%20%7D%7D" }, - "allmylinks": { + "AllMyLinks": { "tags": [ "links" ], @@ -8036,8 +7990,7 @@ "Funnyordie": { "disabled": true, "tags": [ - "in", - "us" + "video" ], "checkType": "status_code", "alexaRank": 5543, @@ -8048,8 +8001,7 @@ }, "Carbonmade": { "tags": [ - "in", - "us" + "design" ], "checkType": "response_url", "alexaRank": 5658, @@ -8061,8 +8013,8 @@ }, "Audiojungle": { "tags": [ - "in", - "us" + "music", + "shopping" ], "regexCheck": "^[a-zA-Z0-9_]+$", "checkType": "status_code", @@ -8072,7 +8024,7 @@ "usernameClaimed": "blue", "usernameUnclaimed": "noonewouldeverusethis7" }, - "segmentfault": { + "SegmentFault": { "disabled": true, "tags": [ "cn" @@ -8082,7 +8034,7 @@ "message\":\"Not Found\"" ], "presenseStrs": [ - "- SegmentFault \u601d\u5426" + "- SegmentFault 思否" ], "alexaRank": 5833, "urlMain": "https://segmentfault.com/", @@ -8093,8 +8045,7 @@ "Untappd": { "tags": [ "geosocial", - "networking", - "us" + "networking" ], "checkType": "status_code", "alexaRank": 5848, @@ -8114,17 +8065,6 @@ "usernameClaimed": "adam", "usernameUnclaimed": "noonewouldeverusethis7" }, - "designspiration.com": { - "tags": [ - "art" - ], - "engine": "engine404", - "urlMain": "https://designspiration.com", - "url": "https://designspiration.com/{username}/", - "usernameUnclaimed": "noonewouldeverusethis7", - "usernameClaimed": "alex", - "alexaRank": 5889 - }, "Alabay": { "tags": [ "forum", @@ -8132,7 +8072,7 @@ ], "checkType": "message", "absenceStrs": [ - "\u043f\u0440\u043e\u0444\u0438\u043b\u044c \u0437\u0430\u0431\u0430\u043d\u0435\u043d \u0438\u043b\u0438 \u0443\u0434\u0430\u043b\u0435\u043d" + "профиль забанен или удален" ], "urlMain": "https://alabay.forum24.ru", "url": "https://alabay.forum24.ru/?32-{username}", @@ -8146,7 +8086,7 @@ ], "checkType": "message", "absenceStrs": [ - "\u043f\u0440\u043e\u0444\u0438\u043b\u044c \u0437\u0430\u0431\u0430\u043d\u0435\u043d \u0438\u043b\u0438 \u0443\u0434\u0430\u043b\u0435\u043d" + "профиль забанен или удален" ], "urlMain": "http://jer.forum24.ru", "url": "http://jer.forum24.ru/?32-{username}", @@ -8160,7 +8100,7 @@ ], "checkType": "message", "absenceStrs": [ - "\u043f\u0440\u043e\u0444\u0438\u043b\u044c \u0437\u0430\u0431\u0430\u043d\u0435\u043d \u0438\u043b\u0438 \u0443\u0434\u0430\u043b\u0435\u043d" + "профиль забанен или удален" ], "urlMain": "https://kuban.forum24.ru/", "url": "https://kuban.forum24.ru/?32-{username}", @@ -8175,7 +8115,7 @@ ], "checkType": "message", "absenceStrs": [ - "\u041f\u0440\u043e\u0444\u0438\u043b\u044c \u0437\u0430\u0431\u0430\u043d\u0435\u043d" + "Профиль забанен" ], "urlMain": "https://uaksu.forum24.ru/", "url": "https://uaksu.forum24.ru/?32-{username}", @@ -8191,7 +8131,7 @@ ], "checkType": "message", "absenceStrs": [ - "\u043f\u0440\u043e\u0444\u0438\u043b\u044c \u0437\u0430\u0431\u0430\u043d\u0435\u043d \u0438\u043b\u0438 \u0443\u0434\u0430\u043b\u0435\u043d" + "профиль забанен или удален" ], "urlMain": "https://volkodavcaoko.forum24.ru", "url": "https://volkodavcaoko.forum24.ru/?32-{username}", @@ -8205,7 +8145,7 @@ ], "checkType": "message", "absenceStrs": [ - "\u043f\u0440\u043e\u0444\u0438\u043b\u044c \u0437\u0430\u0431\u0430\u043d\u0435\u043d \u0438\u043b\u0438 \u0443\u0434\u0430\u043b\u0435\u043d" + "профиль забанен или удален" ], "urlMain": "https://microcap.forum24.ru", "url": "https://microcap.forum24.ru/?32-{username}", @@ -8218,7 +8158,12 @@ "checkType": "status_code", "usernameClaimed": "qlgks1", "usernameUnclaimed": "noonewouldeverusethis7", - "alexaRank": 5921 + "alexaRank": 5921, + "tags": [ + "kr", + "blog", + "coding" + ] }, "Tinkoff Invest": { "tags": [ @@ -8264,10 +8209,10 @@ "forum" ] }, - "rapidapi.com": { + "RapidAPI": { "urlSubpath": "/blog", "tags": [ - "in" + "coding" ], "engine": "Wordpress/Author", "urlMain": "https://rapidapi.com", @@ -8277,8 +8222,7 @@ }, "Fanpop": { "tags": [ - "in", - "us" + "discussion" ], "checkType": "response_url", "alexaRank": 6149, @@ -8305,9 +8249,9 @@ "usernameClaimed": "red", "usernameUnclaimed": "noonewouldeverusethis7" }, - "www.minds.com": { + "Minds": { "tags": [ - "in" + "social" ], "checkType": "message", "presenseStrs": [ @@ -8323,18 +8267,18 @@ "usernameUnclaimed": "noonewouldeverusethis7", "alexaRank": 6243 }, - "mercadolivre": { + "MercadoLivre": { "tags": [ "br" ], "checkType": "message", "presenseStrs": [ - "An\u00fancios do vendedor", + "Anúncios do vendedor", "Publicaciones del Vendedor" ], "absenceStrs": [ - "Parece que esta p\u00e1gina n\u00e3o existe", - "Este usu\u00e1rio foi temporariamente desativado ou exclu\u00eddo" + "Parece que esta página não existe", + "Este usuário foi temporariamente desativado ou excluído" ], "alexaRank": 6294, "urlMain": "https://www.mercadolivre.com.br", @@ -8342,7 +8286,7 @@ "usernameClaimed": "MLB", "usernameUnclaimed": "noonewouldeverusethis77777" }, - "morguefile.com": { + "Morguefile": { "absenceStrs": [ "free photographs for commercial use" ], @@ -8362,8 +8306,7 @@ }, "Tinder": { "tags": [ - "dating", - "us" + "dating" ], "checkType": "message", "absenceStrs": [ @@ -8380,8 +8323,7 @@ "Kali community": { "disabled": true, "tags": [ - "forum", - "in" + "forum" ], "errors": { "You are not logged in or you do not have permission to access this page.": "Auth required" @@ -8398,7 +8340,7 @@ ], "checkType": "message", "absenceStrs": [ - "\u0421\u0442\u0440\u0430\u043d\u0438\u0446\u0430 \u043d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d\u0430 " + "Страница не найдена " ], "alexaRank": 6397, "urlMain": "https://dtf.ru", @@ -8464,7 +8406,7 @@ }, "Setlist": { "tags": [ - "us" + "music" ], "checkType": "message", "presenseStrs": [ @@ -8485,8 +8427,7 @@ "usernameClaimed": "alex", "usernameUnclaimed": "noonewouldeverusethis7", "tags": [ - "forum", - "us" + "forum" ] }, "Tweakers": { @@ -8495,12 +8436,17 @@ "checkType": "status_code", "usernameClaimed": "femme", "usernameUnclaimed": "noonewouldeverusethis7", - "alexaRank": 6611 + "alexaRank": 6611, + "tags": [ + "tech", + "nl" + ] }, "Destructoid": { "disabled": true, "tags": [ - "us" + "gaming", + "news" ], "checkType": "message", "absenceStrs": [ @@ -8518,15 +8464,13 @@ "usernameClaimed": "olibriss", "usernameUnclaimed": "noonewouldeverusethis7", "tags": [ - "forum", - "us" + "forum" ] }, "Star Citizen": { "disabled": true, "tags": [ - "de", - "us" + "gaming" ], "checkType": "status_code", "alexaRank": 6635, @@ -8537,8 +8481,7 @@ }, "Star Citizens Community": { "tags": [ - "de", - "us" + "gaming" ], "checkType": "status_code", "urlMain": "https://robertsspaceindustries.com/", @@ -8554,7 +8497,10 @@ "checkType": "status_code", "usernameClaimed": "blue", "usernameUnclaimed": "noonewouldeverusethis7", - "alexaRank": 6653 + "alexaRank": 6653, + "tags": [ + "streaming" + ] }, "antihack.ucoz.net": { "engine": "uCoz", @@ -8721,12 +8667,14 @@ "checkType": "status_code", "usernameClaimed": "namu", "usernameUnclaimed": "noonewouldeverusethis7", - "alexaRank": 6693 + "alexaRank": 6693, + "tags": [ + "wiki", + "kr" + ] }, "Cheezburger": { - "tags": [ - "us" - ], + "tags": [], "checkType": "response_url", "urlMain": "https://profile.cheezburger.com", "url": "https://profile.cheezburger.com/{username}", @@ -8739,14 +8687,13 @@ "usernameClaimed": "alex", "usernameUnclaimed": "noonewouldeverusethis7", "tags": [ - "forum", - "us" + "forum" ] }, "GaiaOnline": { "tags": [ - "ro", - "us" + "gaming", + "social" ], "checkType": "message", "absenceStrs": [ @@ -8938,8 +8885,7 @@ }, "Jigsawplanet": { "tags": [ - "fr", - "us" + "gaming" ], "checkType": "status_code", "alexaRank": 6935, @@ -8955,12 +8901,14 @@ "usernameClaimed": "arrangeme", "usernameUnclaimed": "noonewouldeverusethis7", "alexaRank": 6988, - "requestMethod": "GET" + "requestMethod": "GET", + "tags": [ + "music" + ] }, "community.getpostman.com": { "tags": [ "forum", - "in", "tech" ], "engine": "Discourse", @@ -8971,9 +8919,7 @@ "AskFM": { "disabled": true, "tags": [ - "eg", - "in", - "ru" + "social" ], "regexCheck": "^[a-zA-Z0-9_]{3,40}$", "checkType": "message", @@ -8988,7 +8934,7 @@ }, "PlanetMinecraft": { "tags": [ - "us" + "gaming" ], "checkType": "message", "absenceStrs": [ @@ -9029,10 +8975,10 @@ ], "checkType": "message", "absenceStrs": [ - "\u041f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c \u043d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d" + "Пользователь не найден" ], "presenseStrs": [ - "\u041f\u0440\u043e\u0444\u0438\u043b\u044c \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044f" + "Профиль пользователя" ], "alexaRank": 7251, "urlMain": "https://rutracker.org/", @@ -9075,7 +9021,7 @@ "usernameClaimed": "siamparagon", "usernameUnclaimed": "asadasdsd" }, - "kwork": { + "Kwork": { "tags": [ "ru" ], @@ -9105,8 +9051,7 @@ }, "Memrise": { "tags": [ - "jp", - "us" + "education" ], "checkType": "response_url", "alexaRank": 7364, @@ -9120,7 +9065,6 @@ "disabled": true, "tags": [ "blog", - "in", "photo" ], "checkType": "message", @@ -9145,7 +9089,11 @@ "url": "https://www.americanthinker.com/author/{username}/", "usernameClaimed": "monicashowalter", "usernameUnclaimed": "noonewouldeverusethis7", - "alexaRank": 7389 + "alexaRank": 7389, + "tags": [ + "news", + "us" + ] }, "Yummly": { "tags": [ @@ -9175,7 +9123,7 @@ }, "ArchiveOfOurOwn": { "tags": [ - "us" + "writing" ], "regexCheck": "^[a-zA-Z0-9_]{3,40}$", "checkType": "response_url", @@ -9187,7 +9135,7 @@ }, "Ello": { "tags": [ - "in" + "social" ], "checkType": "message", "absenceStrs": [ @@ -9206,8 +9154,7 @@ "usernameClaimed": "alex", "usernameUnclaimed": "noonewouldeverusethis7", "tags": [ - "forum", - "in" + "forum" ] }, "RubyGems": { @@ -9553,8 +9500,7 @@ }, "WebNode": { "tags": [ - "cz", - "us" + "cz" ], "regexCheck": "^[^\\.]+$", "checkType": "status_code", @@ -9564,9 +9510,9 @@ "usernameClaimed": "radkabalcarova", "usernameUnclaimed": "noonewouldeverusethis7" }, - "colourlovers.com": { + "ColourLovers": { "tags": [ - "in" + "design" ], "engine": "engine404", "urlMain": "http://colourlovers.com", @@ -9577,8 +9523,7 @@ }, "Wowhead": { "tags": [ - "gaming", - "us" + "gaming" ], "checkType": "status_code", "urlMain": "https://www.wowhead.com", @@ -9589,8 +9534,7 @@ }, "Aptoide": { "tags": [ - "apps", - "in" + "apps" ], "regexCheck": "^[^\\.]+$", "checkType": "status_code", @@ -9606,7 +9550,6 @@ "disabled": true, "tags": [ "streaming", - "us", "video" ], "checkType": "status_code", @@ -9635,7 +9578,7 @@ ], "checkType": "message", "absenceStrs": [ - "\u043f\u0440\u043e\u0444\u0438\u043b\u044c \u0437\u0430\u0431\u0430\u043d\u0435\u043d \u0438\u043b\u0438 \u0443\u0434\u0430\u043b\u0435\u043d" + "профиль забанен или удален" ], "urlMain": "https://rodgersforum.borda.ru", "url": "https://rodgersforum.borda.ru/?32-{username}", @@ -9648,7 +9591,7 @@ ], "checkType": "message", "absenceStrs": [ - "\u043f\u0440\u043e\u0444\u0438\u043b\u044c \u0437\u0430\u0431\u0430\u043d\u0435\u043d \u0438\u043b\u0438 \u0443\u0434\u0430\u043b\u0435\u043d" + "профиль забанен или удален" ], "urlMain": "https://starsonice.borda.ru", "url": "https://starsonice.borda.ru/?32-{username}", @@ -9661,7 +9604,7 @@ ], "checkType": "message", "absenceStrs": [ - "\u043f\u0440\u043e\u0444\u0438\u043b\u044c \u0437\u0430\u0431\u0430\u043d\u0435\u043d \u0438\u043b\u0438 \u0443\u0434\u0430\u043b\u0435\u043d" + "профиль забанен или удален" ], "urlMain": "https://terminatorium.borda.ru/", "url": "https://terminatorium.borda.ru/?32-{username}", @@ -9682,10 +9625,7 @@ }, "SkyscraperCity": { "tags": [ - "de", - "forum", - "pl", - "us" + "forum" ], "engine": "XenForo", "alexaRank": 7917, @@ -9693,7 +9633,7 @@ "usernameClaimed": "adam", "usernameUnclaimed": "noonewouldeverusethis7" }, - "drive2": { + "Drive2": { "tags": [ "ru" ], @@ -9706,8 +9646,7 @@ }, "Empowher": { "tags": [ - "in", - "us" + "medicine" ], "checkType": "status_code", "alexaRank": 7948, @@ -9875,8 +9814,7 @@ }, "Armorgames": { "tags": [ - "gaming", - "us" + "gaming" ], "checkType": "response_url", "alexaRank": 8017, @@ -9903,8 +9841,7 @@ }, "Kinja": { "tags": [ - "in", - "us" + "blog" ], "checkType": "status_code", "alexaRank": 8140, @@ -9950,8 +9887,7 @@ }, "Paltalk": { "tags": [ - "sa", - "us" + "messaging" ], "checkType": "message", "absenceStrs": [ @@ -9968,9 +9904,7 @@ }, "Ccm": { "tags": [ - "ao", - "in", - "ve" + "fr" ], "checkType": "status_code", "alexaRank": 8363, @@ -9991,8 +9925,7 @@ }, "Rate Your Music": { "tags": [ - "gb", - "us" + "music" ], "checkType": "status_code", "alexaRank": 8392, @@ -10017,7 +9950,8 @@ }, "Airliners": { "tags": [ - "us" + "photo", + "hobby" ], "checkType": "status_code", "alexaRank": 8484, @@ -10026,7 +9960,7 @@ "usernameClaimed": "adam", "usernameUnclaimed": "noonewouldeverusethis7" }, - "videohive.net": { + "VideoHive": { "absenceStrs": [ "Page Not Found | VideoHive" ], @@ -10046,8 +9980,7 @@ }, "forum.snapcraft.io": { "tags": [ - "forum", - "in" + "forum" ], "engine": "Discourse", "urlMain": "https://forum.snapcraft.io", @@ -10056,8 +9989,7 @@ }, "xHamster": { "tags": [ - "porn", - "us" + "porn" ], "checkType": "message", "presenseStrs": [ @@ -10074,11 +10006,7 @@ }, "xenforo.com": { "tags": [ - "forum", - "in", - "jp", - "tr", - "us" + "forum" ], "engine": "XenForo", "urlMain": "https://xenforo.com/community/", @@ -10176,7 +10104,7 @@ ], "checkType": "message", "absenceStrs": [ - "\u0410\u0432\u0442\u043e\u0440 \u043d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d" + "Автор не найден" ], "alexaRank": 8932, "urlMain": "https://www.proza.ru/", @@ -10190,7 +10118,10 @@ "checkType": "status_code", "usernameClaimed": "waniathar", "usernameUnclaimed": "noonewouldeverusethis7", - "alexaRank": 8998 + "alexaRank": 8998, + "tags": [ + "social" + ] }, "blogs.klerk.ru": { "presenseStrs": [ @@ -10202,10 +10133,9 @@ "usernameUnclaimed": "noonewouldeverusethis7", "checkType": "message" }, - "aminoapp": { + "AminoApp": { "tags": [ - "br", - "us" + "social" ], "checkType": "status_code", "alexaRank": 9040, @@ -10344,9 +10274,7 @@ }, "Namepros": { "tags": [ - "forum", - "in", - "us" + "forum" ], "engine": "XenForo", "alexaRank": 9310, @@ -10370,9 +10298,7 @@ "usernameUnclaimed": "noonewouldeverusethis7" }, "Niftygateway": { - "tags": [ - "us" - ], + "tags": [], "urlProbe": "https://api.niftygateway.com/user/profile-and-offchain-nifties-by-url/?profile_url={username}", "checkType": "message", "presenseStrs": [ @@ -10393,8 +10319,7 @@ }, "Globalvoices": { "tags": [ - "sv", - "us" + "news" ], "checkType": "message", "absenceStrs": [ @@ -10420,8 +10345,7 @@ "forums.bulbagarden.net": { "disabled": true, "tags": [ - "forum", - "us" + "forum" ], "engine": "XenForo", "urlMain": "http://forums.bulbagarden.net", @@ -10430,12 +10354,13 @@ }, "Wykop": { "tags": [ - "pl" + "pl", + "social" ], "checkType": "message", "alexaRank": 9438, "presenseStrs": [ - "Aktywno\u015b\u0107 u\u017cytkownika" + "Aktywność użytkownika" ], "urlMain": "https://www.wykop.pl", "url": "https://www.wykop.pl/ludzie/{username}/", @@ -10444,8 +10369,7 @@ }, "Warrior Forum": { "tags": [ - "forum", - "us" + "forum" ], "checkType": "status_code", "alexaRank": 9467, @@ -10458,8 +10382,7 @@ "disabled": true, "tags": [ "forum", - "gb", - "us" + "gb" ], "checkType": "status_code", "urlMain": "https://fifaforums.easports.com/", @@ -10469,7 +10392,8 @@ }, "write.as": { "tags": [ - "writefreely" + "blog", + "writing" ], "checkType": "status_code", "url": "https://write.as/{username}", @@ -10484,12 +10408,16 @@ "checkType": "status_code", "usernameClaimed": "MagicLike", "usernameUnclaimed": "noonewouldeverusethis7", - "alexaRank": 9644 + "alexaRank": 9644, + "tags": [ + "social" + ] }, "Taringa": { "disabled": true, "tags": [ - "ar" + "ar", + "social" ], "checkType": "message", "presenseStrs": [ @@ -10508,7 +10436,7 @@ }, "ResidentAdvisor": { "tags": [ - "us" + "music" ], "checkType": "message", "presenseStrs": [ @@ -10526,8 +10454,7 @@ "Waveapps": { "disabled": true, "tags": [ - "ca", - "us" + "ca" ], "checkType": "status_code", "urlMain": "https://community.waveapps.com", @@ -10535,7 +10462,7 @@ "usernameClaimed": "adam", "usernameUnclaimed": "noonewouldeverusethis7" }, - "jeuxvideo": { + "JeuxVideo": { "tags": [ "fr", "gaming" @@ -10545,7 +10472,7 @@ "Messages Forums" ], "absenceStrs": [ - "Vous \u00eates" + "Vous êtes" ], "alexaRank": 9808, "urlMain": "http://www.jeuxvideo.com", @@ -10555,8 +10482,7 @@ }, "Sporcle": { "tags": [ - "gaming", - "us" + "gaming" ], "checkType": "status_code", "alexaRank": 9827, @@ -10567,7 +10493,7 @@ }, "Coroflot": { "tags": [ - "us" + "design" ], "checkType": "status_code", "alexaRank": 9837, @@ -10576,7 +10502,7 @@ "usernameClaimed": "blue", "usernameUnclaimed": "noonewouldeverusethis7" }, - "BOOTH": { + "Booth": { "tags": [ "jp", "shopping" @@ -10589,9 +10515,10 @@ "usernameClaimed": "blue", "usernameUnclaimed": "noonewouldeverusethis7" }, - "teamtreehouse.com": { + "Treehouse": { "tags": [ - "us" + "coding", + "education" ], "checkType": "message", "presenseStrs": [ @@ -10608,7 +10535,8 @@ }, "are.na": { "tags": [ - "us" + "art", + "sharing" ], "checkType": "message", "presenseStrs": [ @@ -10625,7 +10553,7 @@ }, "Anime-planet": { "tags": [ - "us" + "anime" ], "checkType": "message", "absenceStrs": [ @@ -10637,9 +10565,10 @@ "usernameClaimed": "adam", "usernameUnclaimed": "noonewouldeverusethis7" }, - "depop.com": { + "Depop": { "tags": [ - "us" + "shopping", + "fashion" ], "checkType": "message", "presenseStrs": [ @@ -10661,12 +10590,14 @@ "regexCheck": "^[a-zA-Z0-9-]{1,63}$", "usernameClaimed": "jonasjacobsson", "usernameUnclaimed": "noonewouldeverusethis7", - "alexaRank": 10207 + "alexaRank": 10207, + "tags": [ + "photo" + ] }, "Blu-ray": { "tags": [ - "forum", - "us" + "forum" ], "engine": "vBulletin", "urlMain": "https://forum.blu-ray.com/", @@ -10674,7 +10605,7 @@ "usernameUnclaimed": "noonewouldeverusethis7", "disabled": true }, - "lyricstranslate.com": { + "LyricsTranslate": { "absenceStrs": [ "Page not found | Lyrics Translate" ], @@ -10693,7 +10624,7 @@ }, "VSCO": { "tags": [ - "us" + "photo" ], "checkType": "status_code", "alexaRank": 10377, @@ -10709,7 +10640,7 @@ ], "checkType": "message", "absenceStrs": [ - "\u0410\u0432\u0442\u043e\u0440 \u043d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d" + "Автор не найден" ], "alexaRank": 10403, "urlMain": "https://www.stihi.ru/", @@ -10740,7 +10671,11 @@ "absenceStrs": [ "Page Not Found" ], - "urlProbe": "https://rarible.com/marketplace/api/v4/urls/{username}" + "urlProbe": "https://rarible.com/marketplace/api/v4/urls/{username}", + "tags": [ + "nft", + "crypto" + ] }, "Computerbase": { "disabled": true, @@ -10749,7 +10684,7 @@ ], "checkType": "message", "absenceStrs": [ - "Das gew\u00fcnschte Mitglied kann nicht gefunden werden" + "Das gewünschte Mitglied kann nicht gefunden werden" ], "alexaRank": 10518, "urlMain": "https://www.computerbase.de", @@ -10759,8 +10694,7 @@ }, "DiscoursePi-hole": { "tags": [ - "forum", - "us" + "forum" ], "engine": "Discourse", "urlMain": "https://discourse.pi-hole.net", @@ -10774,11 +10708,15 @@ "regexCheck": "^[^.]*?$", "usernameClaimed": "blue", "usernameUnclaimed": "noonewouldeverusethis7", - "alexaRank": 10808 + "alexaRank": 10808, + "tags": [ + "3d", + "shopping" + ] }, "Guru": { "tags": [ - "in" + "freelance" ], "checkType": "message", "presenseStrs": [ @@ -10796,8 +10734,7 @@ }, "YouPorn": { "tags": [ - "porn", - "us" + "porn" ], "checkType": "message", "presenseStrs": [ @@ -10814,7 +10751,7 @@ }, "Bookcrossing": { "tags": [ - "in" + "books" ], "checkType": "status_code", "alexaRank": 10927, @@ -10904,15 +10841,16 @@ "checkType": "status_code", "usernameClaimed": "gutefrage", "usernameUnclaimed": "noonewouldeverusethis7", - "alexaRank": 10985 + "alexaRank": 10985, + "tags": [ + "forum", + "de" + ] }, "Badoo": { "disabled": true, "tags": [ - "dating", - "de", - "pl", - "ve" + "dating" ], "checkType": "status_code", "alexaRank": 11043, @@ -10927,7 +10865,7 @@ ], "checkType": "message", "absenceStrs": [ - "\u041f\u043e \u0432\u0430\u0448\u0435\u043c\u0443 \u0437\u0430\u043f\u0440\u043e\u0441\u0443 \u043d\u0438\u0447\u0435\u0433\u043e \u043d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d\u043e." + "По вашему запросу ничего не найдено." ], "urlMain": "http://gribnikikybani.mybb.ru", "url": "http://gribnikikybani.mybb.ru/search.php?action=search&keywords=&author={username}", @@ -10941,7 +10879,7 @@ ], "checkType": "message", "absenceStrs": [ - "\u041f\u043e \u0432\u0430\u0448\u0435\u043c\u0443 \u0437\u0430\u043f\u0440\u043e\u0441\u0443 \u043d\u0438\u0447\u0435\u0433\u043e \u043d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d\u043e." + "По вашему запросу ничего не найдено." ], "urlMain": "https://waytothelight.mybb.ru/", "url": "https://waytothelight.mybb.ru/search.php?action=search&keywords=&author={username}", @@ -10950,9 +10888,7 @@ }, "AllKPop": { "tags": [ - "de", - "kr", - "us" + "kr" ], "checkType": "response_url", "alexaRank": 11166, @@ -10963,13 +10899,12 @@ }, "Diary.ru": { "tags": [ - "blog", - "nl", - "ru" + "ru", + "blog" ], "checkType": "message", "absenceStrs": [ - " — @\u0434\u043d\u0435\u0432\u043d\u0438\u043a\u0438: \u0430\u0441\u043e\u0446\u0438\u0430\u043b\u044c\u043d\u0430\u044f \u0441\u0435\u0442\u044c" + " — @дневники: асоциальная сеть" ], "alexaRank": 11260, "urlMain": "https://diary.ru", @@ -10995,15 +10930,14 @@ "usernameUnclaimed": "noonewouldeverusethis7", "checkType": "message", "tags": [ - "networking" + "social" ], "alexaRank": 11308 }, "Scala-lang": { "tags": [ "coding", - "forum", - "us" + "forum" ], "engine": "Discourse", "urlMain": "https://users.scala-lang.org", @@ -11016,15 +10950,12 @@ "usernameClaimed": "alex", "usernameUnclaimed": "noonewouldeverusethis7", "tags": [ - "forum", - "in" + "forum" ] }, "AdvancedCustomFields": { "tags": [ - "au", - "in", - "us" + "au" ], "checkType": "message", "absenceStrs": [ @@ -11038,10 +10969,8 @@ "community.asterisk.org": { "tags": [ "forum", - "in", "ir", - "jp", - "us" + "jp" ], "engine": "Discourse", "urlMain": "https://community.asterisk.org", @@ -11050,9 +10979,7 @@ }, "Aufeminin": { "tags": [ - "fr", - "ma", - "mg" + "fr" ], "checkType": "response_url", "alexaRank": 11409, @@ -11087,7 +11014,8 @@ "PCPartPicker": { "disabled": true, "tags": [ - "us" + "tech", + "shopping" ], "checkType": "status_code", "alexaRank": 11598, @@ -11096,9 +11024,9 @@ "usernameClaimed": "blue", "usernameUnclaimed": "noonewouldeverusethis7" }, - "fotolog.com": { + "Fotolog": { "tags": [ - "in" + "photo" ], "engine": "engine404get", "urlMain": "http://fotolog.com", @@ -11142,10 +11070,10 @@ ], "checkType": "message", "absenceStrs": [ - "\u041f\u043e \u0412\u0430\u0448\u0435\u043c\u0443 \u0437\u0430\u043f\u0440\u043e\u0441\u0443 \u043d\u0438\u0447\u0435\u0433\u043e \u043d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d\u043e" + "По Вашему запросу ничего не найдено" ], "presenseStrs": [ - "\u041b\u044e\u0434\u0438" + "Люди" ], "alexaRank": 6409, "urlMain": "https://mirtesen.ru", @@ -11156,8 +11084,7 @@ "BikeRadar": { "tags": [ "forum", - "gb", - "us" + "gb" ], "checkType": "status_code", "urlMain": "https://forum.bikeradar.com", @@ -11180,8 +11107,7 @@ "catholic": { "disabled": true, "tags": [ - "forum", - "us" + "forum" ], "engine": "Discourse", "urlMain": "https://forums.catholic.com", @@ -11190,8 +11116,7 @@ }, "Coderwall": { "tags": [ - "coding", - "in" + "coding" ], "regexCheck": "^[^\\.]+$", "checkType": "message", @@ -11229,18 +11154,16 @@ }, "InfosecInstitute": { "disabled": true, - "tags": [ - "us" - ], + "tags": [], "checkType": "status_code", "urlMain": "https://community.infosecinstitute.com", "url": "https://community.infosecinstitute.com/profile/{username}", "usernameClaimed": "adam", "usernameUnclaimed": "noonewouldeverusethis7" }, - "lomography": { + "Lomography": { "absenceStrs": [ - "404 \u00b7 Lomography" + "404 · Lomography" ], "presenseStrs": [ "Lomography", @@ -11275,8 +11198,7 @@ }, "Codementor": { "tags": [ - "coding", - "in" + "coding" ], "checkType": "message", "presenseStrs": [ @@ -11310,7 +11232,8 @@ }, "Neoseeker": { "tags": [ - "us" + "gaming", + "forum" ], "checkType": "status_code", "alexaRank": 13021, @@ -11326,10 +11249,10 @@ ], "checkType": "message", "presenseStrs": [ - "\u0418\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u044f \u0443\u0447\u0430\u0441\u0442\u043d\u0438\u043a\u0430" + "Информация участника" ], "absenceStrs": [ - "\u043d\u0435 \u0441\u0443\u0449\u0435\u0441\u0442\u0432\u0443\u0435\u0442" + "не существует" ], "urlMain": "https://forum.guns.ru/", "url": "https://forum.guns.ru/forummisc/show_profile/00098415?username={username}", @@ -11369,7 +11292,7 @@ }, "Lookbook": { "tags": [ - "in" + "fashion" ], "regexCheck": "^[^.]{1,}$", "checkType": "message", @@ -11385,8 +11308,7 @@ }, "Redtube": { "tags": [ - "porn", - "us" + "porn" ], "checkType": "message", "presenseStrs": [ @@ -11403,7 +11325,7 @@ }, "Edocr": { "tags": [ - "in" + "documents" ], "checkType": "message", "absenceStrs": [ @@ -11418,8 +11340,7 @@ "N4g": { "tags": [ "gaming", - "news", - "us" + "news" ], "checkType": "message", "presenseStrs": [ @@ -11436,9 +11357,8 @@ }, "Listal": { "tags": [ - "gb", - "in", - "us" + "movies", + "music" ], "checkType": "response_url", "urlMain": "https://listal.com/", @@ -11450,7 +11370,7 @@ "pixelfed.social": { "tags": [ "art", - "pixelfed" + "photo" ], "checkType": "status_code", "usernameClaimed": "pylapp", @@ -11493,9 +11413,7 @@ }, "Bukkit": { "tags": [ - "at", - "forum", - "us" + "forum" ], "engine": "XenForo", "alexaRank": 13700, @@ -11505,10 +11423,7 @@ }, "notabug.org": { "tags": [ - "in", - "ma", - "ro", - "us" + "coding" ], "urlProbe": "https://notabug.org/{username}/followers", "checkType": "status_code", @@ -11532,12 +11447,7 @@ }, "Liberapay": { "tags": [ - "eg", - "finance", - "in", - "pk", - "us", - "za" + "finance" ], "checkType": "message", "absenceStrs": [ @@ -11563,7 +11473,6 @@ }, "Huntingnet": { "tags": [ - "in", "us" ], "checkType": "message", @@ -11604,8 +11513,7 @@ "usernameClaimed": "alex", "usernameUnclaimed": "noonewouldeverusethis7", "tags": [ - "forum", - "in" + "forum" ] }, "forums.battlefield.com": { @@ -11613,8 +11521,7 @@ "tags": [ "forum", "gaming", - "gb", - "us" + "gb" ], "checkType": "status_code", "urlMain": "https://forums.battlefield.com", @@ -11622,7 +11529,7 @@ "usernameClaimed": "NLBartmaN", "usernameUnclaimed": "noonewouldeverusethis7" }, - "sparkpeople": { + "SparkPeople": { "tags": [ "us" ], @@ -11639,9 +11546,7 @@ }, "Sythe": { "tags": [ - "ca", - "forum", - "us" + "forum" ], "engine": "XenForo", "alexaRank": 14156, @@ -11670,12 +11575,15 @@ ], "usernameClaimed": "elhadidy12398", "usernameUnclaimed": "noonewouldeverusethis7", - "alexaRank": 14425 + "alexaRank": 14425, + "tags": [ + "movies", + "kr" + ] }, "MeetMe": { "tags": [ - "in", - "us" + "social" ], "errors": { "fa fa-spinner fa-pulse loading-icon-lg": "Registration page" @@ -11690,7 +11598,7 @@ }, "Joomlart": { "tags": [ - "us" + "coding" ], "checkType": "message", "absenceStrs": [ @@ -11711,7 +11619,7 @@ "usernameClaimed": "rixx", "usernameUnclaimed": "noonewouldeverusethis7", "tags": [ - "networking" + "social" ] }, "mastodon.social": { @@ -11723,7 +11631,7 @@ "usernameClaimed": "Gargron", "usernameUnclaimed": "noonewouldeverusethis7", "tags": [ - "networking" + "social" ] }, "iRecommend.RU": { @@ -11739,8 +11647,7 @@ }, "Pinkbike": { "tags": [ - "hobby", - "us" + "hobby" ], "regexCheck": "^[^\\.]+$", "checkType": "status_code", @@ -11752,10 +11659,8 @@ }, "GBAtemp.net": { "tags": [ - "de", "forum", - "gaming", - "us" + "gaming" ], "engine": "XenForo", "alexaRank": 14832, @@ -11765,7 +11670,7 @@ }, "Thechive": { "tags": [ - "us" + "sharing" ], "checkType": "message", "presenseStrs": [ @@ -11780,10 +11685,10 @@ "usernameClaimed": "bhgilliland", "usernameUnclaimed": "noonewouldeverusethis7" }, - "tripit.com": { + "TripIt": { "disabled": true, "tags": [ - "us" + "travel" ], "engine": "engineRedirect", "urlMain": "https://tripit.com", @@ -11794,7 +11699,7 @@ }, "Vivino": { "tags": [ - "us" + "review" ], "checkType": "status_code", "alexaRank": 15130, @@ -11805,7 +11710,7 @@ }, "Flyertalk": { "tags": [ - "us" + "travel" ], "checkType": "message", "absenceStrs": [ @@ -11819,7 +11724,7 @@ }, "Goldderby": { "tags": [ - "us" + "movies" ], "checkType": "status_code", "alexaRank": 15258, @@ -11830,7 +11735,6 @@ }, "BLIP.fm": { "tags": [ - "in", "music" ], "regexCheck": "^[a-zA-Z0-9_]{1,30}$", @@ -11844,8 +11748,7 @@ "Librusec": { "tags": [ "br", - "ru", - "us" + "ru" ], "disabled": true, "checkType": "message", @@ -11872,8 +11775,7 @@ }, "social.tchncs.de": { "tags": [ - "de", - "in" + "de" ], "checkType": "status_code", "regexCheck": "^[a-zA-Z0-9_]+$", @@ -11887,10 +11789,8 @@ "tags": [ "forum", "gb", - "in", "jp", "tr", - "us", "uz" ], "engine": "vBulletin", @@ -11904,7 +11804,7 @@ ], "checkType": "message", "absenceStrs": [ - "\u041a \u0441\u043e\u0436\u0430\u043b\u0435\u043d\u0438\u044e, \u0412\u0430\u0448 \u043f\u043e\u0438\u0441\u043a \u043d\u0435 \u0434\u0430\u043b \u043d\u0438\u043a\u0430\u043a\u0438\u0445 \u0440\u0435\u0437\u0443\u043b\u044c\u0442\u0430\u0442\u043e\u0432." + "К сожалению, Ваш поиск не дал никаких результатов." ], "alexaRank": 16651, "urlMain": "https://4pda.ru/", @@ -11916,8 +11816,7 @@ "GameRevolution": { "tags": [ "forum", - "gaming", - "us" + "gaming" ], "engine": "XenForo", "urlMain": "https://forums.gamerevolution.com", @@ -11926,8 +11825,7 @@ }, "Pathofexile": { "tags": [ - "ru", - "us" + "ru" ], "checkType": "message", "presenseStrs": [ @@ -11943,9 +11841,8 @@ }, "Avforums": { "tags": [ - "forum", "gb", - "us" + "forum" ], "checkType": "message", "absenceStrs": [ @@ -11982,7 +11879,7 @@ "usernameClaimed": "alex", "usernameUnclaimed": "noonewouldeverusethis7" }, - "akniga": { + "Akniga": { "tags": [ "ru" ], @@ -11995,7 +11892,7 @@ }, "TrueAchievements": { "tags": [ - "us" + "gaming" ], "checkType": "status_code", "alexaRank": 16959, @@ -12034,7 +11931,6 @@ }, "Cont": { "tags": [ - "be", "ru" ], "checkType": "status_code", @@ -12047,8 +11943,7 @@ }, "Pinboard": { "tags": [ - "in", - "us" + "bookmarks" ], "checkType": "status_code", "alexaRank": 17310, @@ -12066,7 +11961,7 @@ "regexCheck": "^[^\\.]+$", "checkType": "message", "absenceStrs": [ - "The Village: \u043e\u0448\u0438\u0431\u043a\u0430 404, \u0441\u0442\u0440\u0430\u043d\u0438\u0446\u0430 \u043d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d\u0430" + "The Village: ошибка 404, страница не найдена" ], "alexaRank": 17452, "urlMain": "https://www.the-village.ru/", @@ -12075,16 +11970,14 @@ "usernameUnclaimed": "noonewouldeverusethis7" }, "Justlanded": { - "tags": [ - "in" - ], + "tags": [], "checkType": "status_code", "urlMain": "https://community.justlanded.com", "url": "https://community.justlanded.com/en/profile/{username}", "usernameClaimed": "rahul-vaidya", "usernameUnclaimed": "noonewouldeverusethis7" }, - "dlive.tv": { + "DLive": { "absenceStrs": [ "Channel not found" ], @@ -12137,9 +12030,9 @@ "usernameClaimed": "blue", "usernameUnclaimed": "noonewouldeverusethis7" }, - "ifunny.co": { + "iFunny": { "tags": [ - "us" + "sharing" ], "checkType": "message", "presenseStrs": [ @@ -12164,8 +12057,7 @@ }, "Trakt": { "tags": [ - "de", - "fr" + "movies" ], "checkType": "status_code", "alexaRank": 18040, @@ -12176,8 +12068,7 @@ }, "Physicsforums": { "tags": [ - "forum", - "us" + "forum" ], "checkType": "message", "absenceStrs": [ @@ -12196,7 +12087,11 @@ "usernameClaimed": "Blue", "usernameUnclaimed": "noonewouldeverusethis7", "alexaRank": 18203, - "requestMethod": "GET" + "requestMethod": "GET", + "tags": [ + "shopping", + "gb" + ] }, "TJournal": { "disabled": true, @@ -12206,7 +12101,7 @@ ], "checkType": "message", "absenceStrs": [ - "\u041c\u044b \u0432\u0441\u0435 \u0432\u043d\u0438\u043c\u0430\u0442\u0435\u043b\u044c\u043d\u043e \u043f\u043e\u0441\u043c\u043e\u0442\u0440\u0435\u043b\u0438, \u043d\u043e \u043d\u0438\u0447\u0435\u0433\u043e \u043d\u0435 \u043d\u0430\u0448\u043b\u0438 :(" + "Мы все внимательно посмотрели, но ничего не нашли :(" ], "alexaRank": 18235, "urlMain": "https://tjournal.ru", @@ -12227,8 +12122,7 @@ }, "AdultFriendFinder": { "tags": [ - "dating", - "us" + "dating" ], "checkType": "message", "absenceStrs": [ @@ -12278,8 +12172,8 @@ }, "codeforces.com": { "tags": [ - "coding", - "in" + "ru", + "coding" ], "errors": { "The page is temporarily blocked by administrator.": "IP ban" @@ -12333,7 +12227,7 @@ }, "Eksisozluk": { "absenceStrs": [ - "

b\u00f6yle bir yazar yok

\r" + "

böyle bir yazar yok

\r" ], "presenseStrs": [ "profile-dots", @@ -12354,8 +12248,7 @@ }, "TryHackMe": { "tags": [ - "hacking", - "us" + "hacking" ], "checkType": "message", "absenceStrs": [ @@ -12389,13 +12282,12 @@ "usernameUnclaimed": "noonewouldeverusethis7", "tags": [ "forum", - "tech", - "us" + "tech" ] }, "Voices": { "tags": [ - "us" + "freelance" ], "checkType": "status_code", "alexaRank": 19556, @@ -12407,9 +12299,7 @@ "SevenForums": { "disabled": true, "tags": [ - "forum", - "gb", - "us" + "forum" ], "engine": "vBulletin", "alexaRank": 19566, @@ -12423,7 +12313,11 @@ "checkType": "status_code", "usernameClaimed": "anrbrb", "usernameUnclaimed": "noonewouldeverusethis7", - "alexaRank": 19684 + "alexaRank": 19684, + "tags": [ + "forum", + "kr" + ] }, "forum.eksmo.ru": { "urlMain": "http://forum.eksmo.ru", @@ -12437,8 +12331,7 @@ }, "Repl.it": { "tags": [ - "coding", - "us" + "coding" ], "checkType": "message", "absenceStrs": [ @@ -12452,9 +12345,7 @@ }, "{username}.portfoliobox.net": { "tags": [ - "in", - "jp", - "us" + "design" ], "engine": "engine404", "urlMain": "https://portfoliobox.net", @@ -12482,8 +12373,7 @@ }, "Codewars": { "tags": [ - "coding", - "us" + "coding" ], "checkType": "status_code", "alexaRank": 20055, @@ -12526,8 +12416,7 @@ }, "forums.digitalpoint.com": { "tags": [ - "forum", - "in" + "forum" ], "engine": "XenForo", "urlMain": "https://forums.digitalpoint.com/", @@ -12561,11 +12450,8 @@ }, "cfd-online": { "tags": [ - "ca", - "de", - "fr", - "in", - "us" + "forum", + "science" ], "checkType": "message", "absenceStrs": [ @@ -12583,14 +12469,11 @@ "usernameClaimed": "alex", "usernameUnclaimed": "noonewouldeverusethis7", "tags": [ - "forum", - "us" + "forum" ] }, "Storycorps": { - "tags": [ - "us" - ], + "tags": [], "checkType": "status_code", "urlMain": "https://archive.storycorps.org", "url": "https://archive.storycorps.org/user/{username}/", @@ -12603,11 +12486,15 @@ "checkType": "status_code", "usernameClaimed": "blue", "usernameUnclaimed": "noonewouldeverusethis7", - "alexaRank": 21854 + "alexaRank": 21854, + "tags": [ + "shopping", + "ar" + ] }, "fixya": { "tags": [ - "us" + "tech" ], "checkType": "status_code", "alexaRank": 22024, @@ -12619,7 +12506,7 @@ "Bibsonomy": { "disabled": true, "tags": [ - "in" + "research" ], "checkType": "status_code", "alexaRank": 22062, @@ -12630,7 +12517,7 @@ }, "Nitter": { "tags": [ - "messaging" + "social" ], "headers": { "Accept-Language": "en-US,en;q=0.5" @@ -12661,8 +12548,7 @@ "forums.serebii.net": { "disabled": true, "tags": [ - "forum", - "us" + "forum" ], "engine": "XenForo", "urlMain": "https://forums.serebii.net", @@ -12671,9 +12557,7 @@ }, "Asciinema": { "tags": [ - "in", - "tr", - "us" + "coding" ], "checkType": "status_code", "alexaRank": 22510, @@ -12684,8 +12568,7 @@ }, "Funnyjunk": { "tags": [ - "gb", - "us" + "sharing" ], "checkType": "response_url", "alexaRank": 22534, @@ -12718,8 +12601,7 @@ }, "Ficwad": { "tags": [ - "gb", - "in" + "writing" ], "checkType": "status_code", "alexaRank": 22776, @@ -12755,7 +12637,7 @@ "Influenster": { "disabled": true, "tags": [ - "us" + "review" ], "errors": { "Attention Required! | Cloudflare": "Cloudflare security protection detected", @@ -12773,11 +12655,7 @@ }, "gloria.tv": { "tags": [ - "ar", - "mx", - "pl", - "sk", - "us" + "video" ], "checkType": "status_code", "alexaRank": 23199, @@ -12786,16 +12664,15 @@ "usernameClaimed": "blue", "usernameUnclaimed": "noonewouldeverusethis7" }, - "opennet": { + "OpenNet": { "disabled": true, "tags": [ - "fr", "ru" ], "regexCheck": "^[^-]+$", "checkType": "message", "absenceStrs": [ - "\u0418\u043c\u044f \u0443\u0447\u0430\u0441\u0442\u043d\u0438\u043a\u0430 \u043d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d\u043e" + "Имя участника не найдено" ], "alexaRank": 23221, "urlMain": "https://www.opennet.ru/", @@ -12837,15 +12714,14 @@ "usernameClaimed": "blue", "usernameUnclaimed": "noonewouldeverusethis7", "tags": [ - "de" + "fr" ], "alexaRank": 23441 }, "Lobsters": { "tags": [ - "in", - "us", - "vn" + "news", + "coding" ], "regexCheck": "[A-Za-z0-9][A-Za-z0-9_-]{0,24}", "checkType": "status_code", @@ -12857,7 +12733,7 @@ }, "Tripline": { "tags": [ - "in" + "travel" ], "checkType": "status_code", "alexaRank": 23648, @@ -12872,14 +12748,12 @@ "usernameClaimed": "alex", "usernameUnclaimed": "noonewouldeverusethis7", "tags": [ - "forum", - "us" + "forum" ] }, "Wishlistr": { "tags": [ - "in", - "se" + "shopping" ], "checkType": "response_url", "alexaRank": 23882, @@ -12890,8 +12764,7 @@ }, "forums.golfmonthly.com": { "tags": [ - "forum", - "us" + "forum" ], "engine": "XenForo", "urlMain": "https://forums.golfmonthly.com", @@ -12904,8 +12777,7 @@ "usernameClaimed": "admin", "usernameUnclaimed": "noonewouldeverusethis7", "tags": [ - "forum", - "in" + "forum" ] }, "Lurkmore": { @@ -12921,9 +12793,7 @@ }, "NotebookReview": { "tags": [ - "forum", - "in", - "us" + "forum" ], "engine": "XenForo", "urlMain": "http://forum.notebookreview.com", @@ -13018,8 +12888,7 @@ "usernameClaimed": "alex", "usernameUnclaimed": "noonewouldeverusethis7", "tags": [ - "forum", - "us" + "forum" ] }, "xakep.ru": { @@ -13046,8 +12915,7 @@ }, "Hr": { "tags": [ - "in", - "us" + "career" ], "checkType": "status_code", "urlMain": "https://www.hr.com", @@ -13061,8 +12929,7 @@ "tags": [ "de", "forum", - "gb", - "us" + "gb" ], "engine": "vBulletin", "alexaRank": 25196, @@ -13075,7 +12942,7 @@ "l-page-404__text-not-found" ], "presenseStrs": [ - "\u0412\u0432\u0435\u0434\u0438\u0442\u0435 e-mail" + "Введите e-mail" ], "url": "https://mel.fm/blog/{username}", "urlMain": "https://mel.fm", @@ -13105,8 +12972,7 @@ "usernameClaimed": "alex", "usernameUnclaimed": "noonewouldeverusethis7", "tags": [ - "forum", - "in" + "forum" ] }, "freelance.ru": { @@ -13134,12 +13000,14 @@ "urlMain": "https://deepdreamgenerator.com", "usernameClaimed": "sparkles99", "usernameUnclaimed": "lyazybfqoh", - "alexaRank": 25555 + "alexaRank": 25555, + "tags": [ + "art" + ] }, "Fatsecret": { "tags": [ - "au", - "us" + "au" ], "checkType": "response_url", "alexaRank": 25593, @@ -13155,7 +13023,10 @@ "url": "http://phrack.org/author_{username}.html", "usernameClaimed": "Dispater", "usernameUnclaimed": "noonewouldeverusethis7", - "disabled": true + "disabled": true, + "tags": [ + "hacking" + ] }, "forums.scummvm.org": { "urlMain": "https://forums.scummvm.org", @@ -13170,7 +13041,6 @@ "mastodon.cloud": { "disabled": true, "tags": [ - "in", "pk" ], "checkType": "status_code", @@ -13215,7 +13085,7 @@ "create_exhibition_name" ], "absenceStrs": [ - "1x.com \u2022 In Pursuit of the Sublime", + "1x.com • In Pursuit of the Sublime", " >404" ], "urlMain": "https://1x.com", @@ -13246,9 +13116,7 @@ "prosportsdaily": { "disabled": true, "tags": [ - "forum", - "in", - "us" + "forum" ], "engine": "vBulletin", "urlMain": "https://forums.prosportsdaily.com", @@ -13256,9 +13124,7 @@ "usernameUnclaimed": "noonewouldeverusethis7" }, "osu!": { - "tags": [ - "us" - ], + "tags": [], "checkType": "status_code", "urlMain": "https://osu.ppy.sh/", "url": "https://osu.ppy.sh/users/{username}", @@ -13272,7 +13138,7 @@ ], "checkType": "message", "absenceStrs": [ - "\u041f\u0440\u0435\u043a\u0440\u0430\u0441\u043d\u0430\u044f \u0441\u0442\u0440\u0430\u043d\u0438\u0446\u0430, \u043a\u0430\u043a\u0438\u0445 \u0431\u043e\u043b\u044c\u0448\u0435 \u043d\u0435 \u0434\u0435\u043b\u0430\u044e\u0442" + "Прекрасная страница, каких больше не делают" ], "urlMain": "https://moscow.flamp.ru/", "url": "https://moscow.flamp.ru/{username}", @@ -13312,7 +13178,7 @@ ], "checkType": "message", "absenceStrs": [ - "\u041f\u043e\u0434\u0445\u043e\u0434\u044f\u0449\u0438\u0445 \u0442\u0435\u043c \u0438\u043b\u0438 \u0441\u043e\u043e\u0431\u0449\u0435\u043d\u0438\u0439 \u043d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d\u043e." + "Подходящих тем или сообщений не найдено." ], "alexaRank": 27022, "urlMain": "https://www.vxzone.com", @@ -13400,8 +13266,7 @@ }, "forum.nameberry.com": { "tags": [ - "forum", - "us" + "forum" ], "engine": "Discourse", "urlMain": "https://forum.nameberry.com", @@ -13433,9 +13298,7 @@ }, "Androidforums": { "tags": [ - "forum", - "in", - "us" + "forum" ], "engine": "XenForo", "alexaRank": 27921, @@ -13455,7 +13318,7 @@ }, "Pling": { "tags": [ - "in" + "coding" ], "checkType": "response_url", "alexaRank": 28461, @@ -13509,10 +13372,8 @@ "Comedy": { "tags": [ "gb", - "in", "movies", - "pk", - "us" + "pk" ], "checkType": "status_code", "alexaRank": 29265, @@ -13528,7 +13389,11 @@ "usernameClaimed": "freddier", "usernameUnclaimed": "noonewouldeverusethis7", "alexaRank": 30029, - "requestMethod": "GET" + "requestMethod": "GET", + "tags": [ + "education", + "es" + ] }, "forum.ykt.ru": { "tags": [ @@ -13541,10 +13406,9 @@ "usernameClaimed": "NINJA", "usernameUnclaimed": "noonewouldeverusethis7" }, - "eintracht": { + "Eintracht": { "tags": [ - "tr", - "us" + "tr" ], "regexCheck": "^[^\\.]+$", "checkType": "status_code", @@ -13554,7 +13418,7 @@ "usernameClaimed": "blue", "usernameUnclaimed": "noonewouldeverusethis7" }, - "www.tagged.com": { + "Tagged": { "absenceStrs": [ "lastName", "birthDay", @@ -13579,9 +13443,7 @@ }, "Nxp": { "tags": [ - "be", - "in", - "us" + "be" ], "checkType": "message", "absenceStrs": [ @@ -13593,10 +13455,9 @@ "usernameClaimed": "adam", "usernameUnclaimed": "noonewouldeverusethis7" }, - "polarsteps": { + "Polarsteps": { "tags": [ - "in", - "us" + "travel" ], "urlProbe": "https://api.polarsteps.com/users/byusername/{username}", "checkType": "status_code", @@ -13606,7 +13467,7 @@ "usernameClaimed": "james", "usernameUnclaimed": "noonewouldeverusethis7" }, - "fl": { + "FL.ru": { "tags": [ "ru" ], @@ -13641,7 +13502,6 @@ }, "EyeEm": { "tags": [ - "in", "it", "photo", "sd" @@ -13664,7 +13524,7 @@ ], "checkType": "status_code", "absenceStrs": [ - "\u06f4\u06f0\u06f4" + "۴۰۴" ], "alexaRank": 31518, "urlMain": "https://virgool.io/", @@ -13675,8 +13535,8 @@ "Chatujme.cz": { "checkType": "message", "absenceStrs": [ - "Neexistujic\u00ed profil", - "Str\u00e1nka nebyla nalezena" + "Neexistujicí profil", + "Stránka nebyla nalezena" ], "alexaRank": 31541, "urlMain": "https://chatujme.cz/", @@ -13694,8 +13554,7 @@ "usernameClaimed": "Bnim81", "usernameUnclaimed": "noonewouldeverusethis7", "tags": [ - "forum", - "us" + "forum" ] }, "dumskaya.net": { @@ -13741,9 +13600,7 @@ "Gardenstew": { "disabled": true, "tags": [ - "forum", - "in", - "us" + "forum" ], "engine": "XenForo", "alexaRank": 32707, @@ -13764,7 +13621,8 @@ }, "Mamot": { "tags": [ - "mastodon" + "mastodon", + "fr" ], "checkType": "status_code", "urlMain": "https://mamot.fr", @@ -13815,7 +13673,11 @@ ], "usernameClaimed": "mango-juice", "usernameUnclaimed": "noonewouldeverusethis7", - "alexaRank": 34002 + "alexaRank": 34002, + "tags": [ + "blog", + "crypto" + ] }, "Alexgyver": { "tags": [ @@ -13909,7 +13771,10 @@ "urlMain": "https://manifold.markets/", "usernameClaimed": "adam", "usernameUnclaimed": "noonewouldeverusethis7", - "alexaRank": 34826 + "alexaRank": 34826, + "tags": [ + "finance" + ] }, "forums.stevehoffman.tv": { "urlMain": "https://forums.stevehoffman.tv", @@ -13924,9 +13789,7 @@ "alexaRank": 35942 }, "TalkDrugabuse": { - "tags": [ - "us" - ], + "tags": [], "checkType": "message", "absenceStrs": [ "The specified member cannot be found" @@ -13936,7 +13799,7 @@ "usernameClaimed": "adam", "usernameUnclaimed": "noonewouldeverusethis777" }, - "spletnik": { + "Spletnik": { "tags": [ "ru" ], @@ -13960,8 +13823,7 @@ }, "Antiquers": { "tags": [ - "forum", - "in" + "forum" ], "engine": "XenForo", "alexaRank": 36676, @@ -13971,7 +13833,7 @@ }, "Smogon": { "tags": [ - "us" + "gaming" ], "checkType": "message", "absenceStrs": [ @@ -14033,14 +13895,13 @@ "usernameUnclaimed": "noonewouldeverusethis7", "checkType": "message", "tags": [ - "ai" + "tech", + "llm" ], "alexaRank": 37110 }, "Insanejournal": { - "tags": [ - "us" - ], + "tags": [], "checkType": "message", "absenceStrs": [ "404 Not Found", @@ -14053,8 +13914,7 @@ }, "Fredmiranda": { "tags": [ - "de", - "us" + "de" ], "checkType": "message", "absenceStrs": [ @@ -14073,7 +13933,7 @@ ], "checkType": "message", "absenceStrs": [ - "Sorry! We couldn\u2019t find what you were looking for", + "Sorry! We couldn’t find what you were looking for", "error-cartoon__image" ], "urlMain": "https://ru.bookmate.com", @@ -14097,7 +13957,7 @@ "business" ] }, - "https:": { + "Skyblock": { "engine": "XenForo", "urlMain": "https://skyblock.net", "usernameClaimed": "alex", @@ -14123,8 +13983,7 @@ }, "operationsports": { "tags": [ - "forum", - "us" + "forum" ], "checkType": "status_code", "urlMain": "https://forums.operationsports.com", @@ -14166,7 +14025,7 @@ "usernameClaimed": "blue", "usernameUnclaimed": "noonewouldeverusethis" }, - "viewbug": { + "ViewBug": { "absenceStrs": [ "missing-photos" ], @@ -14190,7 +14049,10 @@ "checkType": "status_code", "usernameClaimed": "blue", "usernameUnclaimed": "noonewouldeverusethis7", - "alexaRank": 39020 + "alexaRank": 39020, + "tags": [ + "gaming" + ] }, "Mouthshut": { "tags": [ @@ -14227,7 +14089,7 @@ ], "checkType": "message", "absenceStrs": [ - "\u041f\u0430\u0441\u043f\u043e\u0440\u0442 - - \u0415\u0432\u0430.\u0420\u0443" + "Паспорт - - Ева.Ру" ], "alexaRank": 40463, "urlMain": "https://eva.ru/", @@ -14238,8 +14100,7 @@ "TravellersPoint": { "disabled": true, "tags": [ - "in", - "us" + "travel" ], "checkType": "message", "absenceStrs": [ @@ -14253,7 +14114,7 @@ }, "Videosift": { "tags": [ - "us" + "video" ], "checkType": "status_code", "alexaRank": 40884, @@ -14263,7 +14124,7 @@ "usernameUnclaimed": "noonewouldeverusethis7", "disabled": true }, - "SOOP": { + "Soop": { "url": "https://www.sooplive.co.kr/station/{username}", "urlMain": "https://www.sooplive.co.kr/", "urlProbe": "https://api-channel.sooplive.co.kr/v1.1/channel/{username}/station", @@ -14341,7 +14202,7 @@ "" ], "presenseStrs": [ - "\u041f\u0440\u043e\u0444\u0438\u043b\u044c" + "<title>Профиль" ], "url": "https://partnerkin.com/user/{username}", "urlMain": "https://partnerkin.com", @@ -14371,7 +14232,8 @@ "usernameClaimed": "alex", "usernameUnclaimed": "noonewouldeverusethis7", "tags": [ - "in" + "coding", + "forum" ], "alexaRank": 44533 }, @@ -14412,7 +14274,6 @@ }, "Publiclab": { "tags": [ - "in", "science" ], "checkType": "response_url", @@ -14477,9 +14338,7 @@ "EasyEDA": { "tags": [ "de", - "in", - "mx", - "us" + "mx" ], "checkType": "status_code", "alexaRank": 46844, @@ -14488,7 +14347,7 @@ "usernameClaimed": "blue", "usernameUnclaimed": "noonewouldeverusethis7" }, - "interpals": { + "InterPals": { "tags": [ "dating" ], @@ -14504,9 +14363,7 @@ }, "Ecoustics": { "tags": [ - "hk", - "in", - "us" + "hk" ], "checkType": "message", "absenceStrs": [ @@ -14558,8 +14415,8 @@ }, "Gapyear": { "tags": [ - "gb", - "in" + "travel", + "gb" ], "checkType": "status_code", "alexaRank": 47746, @@ -14570,8 +14427,7 @@ }, "funcom": { "tags": [ - "forum", - "us" + "forum" ], "engine": "Discourse", "urlMain": "https://forums.funcom.com", @@ -14590,9 +14446,7 @@ }, "PacketStormSecurity": { "tags": [ - "in", - "tr", - "us" + "tr" ], "checkType": "message", "absenceStrs": [ @@ -14618,8 +14472,7 @@ }, "Mapillary Forum": { "tags": [ - "forum", - "us" + "forum" ], "engine": "Discourse", "urlMain": "https://forum.mapillary.com", @@ -14644,9 +14497,7 @@ "Mybuilder": { "tags": [ "gb", - "hk", - "in", - "us" + "hk" ], "checkType": "status_code", "alexaRank": 50027, @@ -14655,7 +14506,7 @@ "usernameClaimed": "adam", "usernameUnclaimed": "noonewouldeverusethis7" }, - "www.tnaflix.com": { + "TNAFlix": { "checkType": "message", "absenceStrs": [ "Not Found" @@ -14669,7 +14520,10 @@ "usernameClaimed": "luna92", "usernameUnclaimed": "krjmekrmlp", "disabled": true, - "alexaRank": 50293 + "alexaRank": 50293, + "tags": [ + "porn" + ] }, "reality-check.ca": { "disabled": true, @@ -14690,7 +14544,7 @@ ], "checkType": "message", "absenceStrs": [ - "\u041d\u0435\u0442 \u0442\u0430\u043a\u043e\u0433\u043e \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044f" + "Нет такого пользователя" ], "alexaRank": 50460, "urlMain": "https://www.oper.ru/", @@ -14737,12 +14591,11 @@ }, "Vero": { "tags": [ - "in", - "us" + "social" ], "checkType": "message", "absenceStrs": [ - "<title>Error Page - VERO\u2122 \u2013 True Social" + "Error Page - VERO™ – True Social" ], "alexaRank": 50828, "urlMain": "https://vero.co", @@ -14800,7 +14653,7 @@ ], "checkType": "message", "absenceStrs": [ - "Tra\u017eeni \u010dlan nije prona\u0111en. Molimo unesite puno ime \u010dlana i poku\u0161ajte ponovo." + "Traženi član nije pronađen. Molimo unesite puno ime člana i pokušajte ponovo." ], "urlMain": "https://forum.krstarica.com", "url": "https://forum.krstarica.com/members/?username={username}", @@ -14850,10 +14703,10 @@ ], "checkType": "message", "absenceStrs": [ - "\u041f\u043e\u0434\u0445\u043e\u0434\u044f\u0449\u0438\u0445 \u0442\u0435\u043c \u0438\u043b\u0438 \u0441\u043e\u043e\u0431\u0449\u0435\u043d\u0438\u0439 \u043d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d\u043e." + "Подходящих тем или сообщений не найдено." ], "presenseStrs": [ - "\u0420\u0435\u0437\u0443\u043b\u044c\u0442\u0430\u0442\u043e\u0432 \u043f\u043e\u0438\u0441\u043a\u0430:" + "Результатов поиска:" ], "urlMain": "https://forum.awd.ru", "url": "https://forum.awd.ru/search.php?keywords=&terms=all&author={username}", @@ -14863,10 +14716,8 @@ "Whonix Forum": { "tags": [ "forum", - "in", "ir", - "tech", - "us" + "tech" ], "engine": "Discourse", "urlMain": "https://forums.whonix.org/", @@ -14878,11 +14729,15 @@ "urlMain": "https://aniworld.to/", "checkType": "message", "absenceStrs": [ - "Dieses Profil ist nicht verf\u00fcgbar" + "Dieses Profil ist nicht verfügbar" ], "usernameClaimed": "blue", "usernameUnclaimed": "noonewouldeverusethis7", - "alexaRank": 52153 + "alexaRank": 52153, + "tags": [ + "anime", + "de" + ] }, "smokingmeatforums.com": { "urlMain": "https://smokingmeatforums.com", @@ -14901,13 +14756,11 @@ "usernameClaimed": "alex", "usernameUnclaimed": "noonewouldeverusethis7", "tags": [ - "forum", - "us" + "forum" ] }, "Icobench": { "tags": [ - "in", "kr", "ru" ], @@ -14923,14 +14776,11 @@ "engine": "Flarum", "usernameClaimed": "alex", "usernameUnclaimed": "noonewouldeverusethis7", - "tags": [ - "in" - ] + "tags": [] }, "ProfilesTigweb": { "tags": [ "ca", - "in", "pk" ], "checkType": "status_code", @@ -14956,8 +14806,7 @@ "Infura": { "tags": [ "forum", - "kr", - "us" + "kr" ], "engine": "Discourse", "urlMain": "https://community.infura.io", @@ -14983,8 +14832,7 @@ "usernameClaimed": "red", "usernameUnclaimed": "noonewouldeverusethis7", "tags": [ - "forum", - "us" + "forum" ] }, "AfreecaTV": { @@ -15009,7 +14857,7 @@ }, "Jetpunk": { "tags": [ - "us" + "gaming" ], "checkType": "message", "absenceStrs": [ @@ -15023,8 +14871,7 @@ }, "Blogmarks": { "tags": [ - "fr", - "in" + "fr" ], "checkType": "message", "absenceStrs": [ @@ -15066,8 +14913,7 @@ "disabled": true, "tags": [ "forum", - "pk", - "us" + "pk" ], "checkType": "message", "absenceStrs": [ @@ -15094,7 +14940,7 @@ ], "checkType": "message", "absenceStrs": [ - "\u041f\u043e\u0434\u0445\u043e\u0434\u044f\u0449\u0438\u0445 \u0442\u0435\u043c \u0438\u043b\u0438 \u0441\u043e\u043e\u0431\u0449\u0435\u043d\u0438\u0439 \u043d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d\u043e." + "Подходящих тем или сообщений не найдено." ], "urlMain": "https://forum.podolsk.ru", "url": "https://forum.podolsk.ru/search.php?keywords=&terms=all&author={username}", @@ -15110,7 +14956,10 @@ ], "usernameClaimed": "hacker", "usernameUnclaimed": "noonewouldeverusethis7", - "alexaRank": 56175 + "alexaRank": 56175, + "tags": [ + "porn" + ] }, "Atcoder": { "url": "https://atcoder.jp/users/{username}", @@ -15152,15 +15001,12 @@ "usernameClaimed": "alex", "usernameUnclaimed": "noonewouldeverusethis7", "tags": [ - "forum", - "us" + "forum" ] }, "Rasa": { "tags": [ - "forum", - "in", - "us" + "forum" ], "engine": "Discourse", "urlMain": "https://forum.rasa.com", @@ -15177,7 +15023,7 @@ "channel:{title:\"" ], "absenceStrs": [ - "\u041d\u0435 \u043d\u0430\u0448\u043b\u0438 \u0447\u0430\u0442 \u043f\u043e \u044d\u0442\u043e\u0439 \u0441\u0441\u044b\u043b\u043a\u0435" + "Не нашли чат по этой ссылке" ], "urlMain": "https://max.ru", "url": "https://max.ru/{username}", @@ -15192,8 +15038,8 @@ ], "checkType": "message", "absenceStrs": [ - "\u041e\u0428\u0418\u0411\u041a\u0410 50x", - "\u041e\u0428\u0418\u0411\u041a\u0410 404" + "ОШИБКА 50x", + "ОШИБКА 404" ], "alexaRank": 57906, "urlMain": "https://maxpark.com", @@ -15204,8 +15050,7 @@ "Wanelo": { "disabled": true, "tags": [ - "in", - "us" + "shopping" ], "checkType": "status_code", "alexaRank": 57955, @@ -15300,7 +15145,7 @@ ], "checkType": "message", "absenceStrs": [ - " - \u0416\u0435\u043d\u0441\u043a\u0438\u0435 \u0444\u043e\u0440\u0443\u043c\u044b myJane" + " - Женские форумы myJane" ], "urlMain": "http://forum.myjane.ru/", "url": "http://forum.myjane.ru/profile.php?mode=viewprofile&u={username}", @@ -15311,8 +15156,7 @@ "tags": [ "ch", "cr", - "forum", - "us" + "forum" ], "engine": "Discourse", "alexaRank": 59783, @@ -15326,8 +15170,7 @@ "usernameClaimed": "alex", "usernameUnclaimed": "noonewouldeverusethis7", "tags": [ - "in", - "us" + "finance" ], "alexaRank": 59798 }, @@ -15337,14 +15180,21 @@ "checkType": "status_code", "usernameClaimed": "tokitsukaze", "usernameUnclaimed": "noonewouldeverusethis7", - "alexaRank": 60366 + "alexaRank": 60366, + "tags": [ + "coding" + ] }, "homebrewtalk.com": { "urlMain": "https://www.homebrewtalk.com", "engine": "XenForo", "usernameClaimed": "alex", "usernameUnclaimed": "noonewouldeverusethis7", - "alexaRank": 60718 + "alexaRank": 60718, + "tags": [ + "forum", + "hobby" + ] }, "forum.scssoft.com": { "urlMain": "https://forum.scssoft.com", @@ -15377,12 +15227,15 @@ ], "usernameClaimed": "blue", "usernameUnclaimed": "noonewouldeverusethis7", - "alexaRank": 62165 + "alexaRank": 62165, + "tags": [ + "discussion", + "lemmy" + ] }, "Railfan": { "tags": [ - "forum", - "us" + "forum" ], "checkType": "message", "absenceStrs": [ @@ -15409,8 +15262,7 @@ "urlSubpath": "/vbts", "disabled": true, "tags": [ - "forum", - "in" + "forum" ], "engine": "vBulletin", "alexaRank": 63070, @@ -15432,7 +15284,6 @@ "tags": [ "ch", "forum", - "in", "it" ], "engine": "phpBB", @@ -15442,8 +15293,7 @@ }, "forum.endeavouros.com": { "tags": [ - "forum", - "in" + "forum" ], "engine": "Discourse", "urlMain": "https://forum.endeavouros.com", @@ -15465,8 +15315,7 @@ "usernameClaimed": "alex", "usernameUnclaimed": "noonewouldeverusethis7", "tags": [ - "forum", - "in" + "forum" ] }, "Vgtimes/Games": { @@ -15483,7 +15332,7 @@ }, "Vgtimes": { "absenceStrs": [ - "\u041f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c \u0441 \u0442\u0430\u043a\u0438\u043c \u0438\u043c\u0435\u043d\u0435\u043c \u043d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d" + "Пользователь с таким именем не найден" ], "presenseStrs": [ "user_profile" @@ -15527,17 +15376,13 @@ "engine": "Flarum", "usernameClaimed": "alex", "usernameUnclaimed": "noonewouldeverusethis7", - "tags": [ - "in" - ] + "tags": [] }, "Root-me": { "tags": [ "hacking", - "in", "ir", - "pk", - "us" + "pk" ], "errors": { "429 Too Many Requests": "Too many requests" @@ -15624,7 +15469,7 @@ }, "Chessclub": { "tags": [ - "us" + "gaming" ], "checkType": "message", "absenceStrs": [ @@ -15655,8 +15500,7 @@ }, "Libraries": { "tags": [ - "coding", - "in" + "coding" ], "regexCheck": "^[^\\.]+$", "checkType": "status_code", @@ -15679,8 +15523,7 @@ }, "devRant": { "tags": [ - "coding", - "in" + "coding" ], "checkType": "response_url", "alexaRank": 69493, @@ -15692,8 +15535,7 @@ }, "openframeworks": { "tags": [ - "forum", - "us" + "forum" ], "engine": "Discourse", "urlMain": "https://forum.openframeworks.cc", @@ -15706,8 +15548,7 @@ "de", "forum", "gaming", - "gb", - "us" + "gb" ], "checkType": "status_code", "urlMain": "https://forums.futbin.com", @@ -15721,7 +15562,10 @@ "checkType": "status_code", "usernameClaimed": "blue", "usernameUnclaimed": "noonewouldeverusethis7", - "alexaRank": 70556 + "alexaRank": 70556, + "tags": [ + "freelance" + ] }, "Image Fap": { "url": "https://www.imagefap.com/profile/{username}", @@ -15732,13 +15576,14 @@ ], "usernameClaimed": "blue", "usernameUnclaimed": "noonewouldeverusethis7", - "alexaRank": 70745 + "alexaRank": 70745, + "tags": [ + "porn" + ] }, "Windowsforum": { "tags": [ - "forum", - "in", - "us" + "forum" ], "checkType": "message", "absenceStrs": [ @@ -15769,8 +15614,7 @@ "disabled": true, "tags": [ "forum", - "lt", - "us" + "lt" ], "checkType": "message", "absenceStrs": [ @@ -15787,8 +15631,7 @@ "usernameClaimed": "alex", "usernameUnclaimed": "noonewouldeverusethis7", "tags": [ - "forum", - "us" + "forum" ] }, "Erome": { @@ -15797,7 +15640,10 @@ "checkType": "status_code", "usernameClaimed": "bob", "usernameUnclaimed": "noonewouldeverusethis7", - "alexaRank": 72328 + "alexaRank": 72328, + "tags": [ + "porn" + ] }, "tks": { "tags": [ @@ -15815,12 +15661,14 @@ "checkType": "status_code", "usernameClaimed": "optms", "usernameUnclaimed": "noonewouldeverusethis7", - "alexaRank": 72530 + "alexaRank": 72530, + "tags": [ + "gaming" + ] }, "collectors.com": { "tags": [ - "forum", - "us" + "forum" ], "checkType": "status_code", "urlMain": "https://forums.collectors.com", @@ -15831,7 +15679,6 @@ "Cent": { "tags": [ "art", - "us", "writing" ], "urlProbe": "https://beta.cent.co/data/user/profile?userHandles={username}", @@ -15856,7 +15703,7 @@ "regexCheck": "^[^\\.]+$", "checkType": "message", "absenceStrs": [ - "\u043f\u043e\u0436\u0430\u043b\u0443\u0439\u0441\u0442\u0430 \u0441\u0432\u044f\u0436\u0438\u0442\u0435\u0441\u044c \u0441 \u0430\u0434\u043c\u0438\u043d\u0438\u0441\u0442\u0440\u0430\u0442\u043e\u0440\u043e\u043c" + "пожалуйста свяжитесь с администратором" ], "alexaRank": 73195, "urlMain": "https://www.politforums.net/", @@ -15893,7 +15740,7 @@ ], "checkType": "message", "absenceStrs": [ - "\u041f\u043e \u0432\u0430\u0448\u0435\u043c\u0443 \u0437\u0430\u043f\u0440\u043e\u0441\u0443 \u043d\u0438\u0447\u0435\u0433\u043e \u043d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d\u043e." + "По вашему запросу ничего не найдено." ], "urlMain": "http://sexforum.ixbb.ru", "url": "http://sexforum.ixbb.ru/search.php?action=search&keywords=&author={username}", @@ -15912,7 +15759,7 @@ }, "Pokemon Showdown": { "tags": [ - "us" + "gaming" ], "checkType": "status_code", "alexaRank": 74994, @@ -15946,11 +15793,11 @@ "ua" ], "errors": { - "\u0412\u044b \u043d\u0435 \u043c\u043e\u0436\u0435\u0442\u0435 \u043f\u0440\u043e\u0438\u0437\u0432\u0435\u0441\u0442\u0438 \u043f\u043e\u0438\u0441\u043a \u0441\u0440\u0430\u0437\u0443 \u043f\u043e\u0441\u043b\u0435 \u043f\u0440\u0435\u0434\u044b\u0434\u0443\u0449\u0435\u0433\u043e": "Rate limit" + "Вы не можете произвести поиск сразу после предыдущего": "Rate limit" }, "checkType": "message", "absenceStrs": [ - "\u041f\u043e\u0434\u0445\u043e\u0434\u044f\u0449\u0438\u0445 \u0442\u0435\u043c \u0438\u043b\u0438 \u0441\u043e\u043e\u0431\u0449\u0435\u043d\u0438\u0439 \u043d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d\u043e." + "Подходящих тем или сообщений не найдено." ], "alexaRank": 75697, "urlMain": "https://www.medikforum.ru", @@ -15960,7 +15807,6 @@ }, "Partyflock": { "tags": [ - "in", "nl" ], "checkType": "status_code", @@ -15976,7 +15822,7 @@ ], "checkType": "message", "absenceStrs": [ - "\u041f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c \u043d\u0435 \u0437\u0430\u0440\u0435\u0433\u0438\u0441\u0442\u0440\u0438\u0440\u043e\u0432\u0430\u043d \u0438 \u043d\u0435 \u0438\u043c\u0435\u0435\u0442 \u043f\u0440\u043e\u0444\u0438\u043b\u044f \u0434\u043b\u044f \u043f\u0440\u043e\u0441\u043c\u043e\u0442\u0440\u0430." + "Пользователь не зарегистрирован и не имеет профиля для просмотра." ], "alexaRank": 76500, "urlMain": "http://astraclub.ru", @@ -15996,9 +15842,7 @@ "usernameUnclaimed": "noonewouldeverusethis7" }, "KanoWorld": { - "tags": [ - "us" - ], + "tags": [], "checkType": "status_code", "urlMain": "https://world.kano.me/", "url": "https://api.kano.me/progress/user/{username}", @@ -16008,8 +15852,7 @@ }, "MoiKrug": { "tags": [ - "career", - "us" + "career" ], "checkType": "status_code", "alexaRank": 77538, @@ -16020,7 +15863,7 @@ }, "HackingWithSwift": { "tags": [ - "us" + "coding" ], "regexCheck": "^[^\\.]+$", "checkType": "message", @@ -16033,7 +15876,7 @@ "usernameClaimed": "davextreme", "usernameUnclaimed": "noonewouldeverusethis7" }, - "TRASHBOX.RU": { + "Trashbox.ru": { "tags": [ "az", "ru" @@ -16041,7 +15884,7 @@ "regexCheck": "^[A-Za-z0-9_-]{3,16}$", "checkType": "message", "absenceStrs": [ - "404 \u2014 Not found" + "404 — Not found" ], "urlMain": "https://trashbox.ru/", "url": "https://trashbox.ru/users/{username}", @@ -16052,8 +15895,7 @@ "RPGGeek": { "ignore403": true, "tags": [ - "gaming", - "us" + "gaming" ], "checkType": "message", "absenceStrs": [ @@ -16070,8 +15912,7 @@ "urlSubpath": "/forums", "disabled": true, "tags": [ - "forum", - "us" + "forum" ], "engine": "vBulletin", "alexaRank": 80201, @@ -16092,8 +15933,7 @@ }, "Trisquel": { "tags": [ - "eu", - "in" + "eu" ], "checkType": "status_code", "alexaRank": 80641, @@ -16130,11 +15970,11 @@ "ru" ], "errors": { - "\u0432\u044b \u043c\u043e\u0436\u0435\u0442\u0435 \u0438\u0441\u043a\u0430\u0442\u044c \u043d\u0435 \u0447\u0430\u0449\u0435, \u0447\u0435\u043c \u0440\u0430\u0437 \u0432 10 \u0441\u0435\u043a\u0443\u043d\u0434": "Too many requests" + "вы можете искать не чаще, чем раз в 10 секунд": "Too many requests" }, "checkType": "message", "absenceStrs": [ - "\u041d\u0438\u0447\u0435\u0433\u043e \u043d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d\u043e!" + "Ничего не найдено!" ], "alexaRank": 83107, "urlMain": "http://www.radioscanner.ru", @@ -16149,11 +15989,11 @@ "ru" ], "errors": { - "\u041a \u0441\u043e\u0436\u0430\u043b\u0435\u043d\u0438\u044e, \u0432\u043e\u0437\u043d\u0438\u043a\u043b\u0430 \u043f\u0440\u043e\u0431\u043b\u0435\u043c\u0430": "Too many reqeusts" + "К сожалению, возникла проблема": "Too many reqeusts" }, "checkType": "message", "absenceStrs": [ - "\u041d\u0430\u0439\u0434\u0435\u043d\u043e 0 \u0440\u0435\u0437\u0443\u043b\u044c\u0442\u0430\u0442\u043e\u0432" + "Найдено 0 результатов" ], "urlMain": "https://forum.cxem.net/", "url": "https://forum.cxem.net/index.php?/search/&q={username}&quick=1&type=core_members", @@ -16206,7 +16046,10 @@ "urlMain": "https://mynickname.com", "usernameClaimed": "godbrithil", "usernameUnclaimed": "fqiakbtdhu", - "alexaRank": 84236 + "alexaRank": 84236, + "tags": [ + "social" + ] }, "forum.rzn.info": { "urlMain": "https://forum.rzn.info", @@ -16249,7 +16092,7 @@ ], "checkType": "message", "absenceStrs": [ - "\u041f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c \u043d\u0435 \u0437\u0430\u0440\u0435\u0433\u0438\u0441\u0442\u0440\u0438\u0440\u043e\u0432\u0430\u043d \u0438 \u043d\u0435 \u0438\u043c\u0435\u0435\u0442 \u043f\u0440\u043e\u0444\u0438\u043b\u044f \u0434\u043b\u044f \u043f\u0440\u043e\u0441\u043c\u043e\u0442\u0440\u0430." + "Пользователь не зарегистрирован и не имеет профиля для просмотра." ], "alexaRank": 85461, "urlMain": "http://www.cqham.ru", @@ -16257,7 +16100,7 @@ "usernameClaimed": "adam", "usernameUnclaimed": "noonewouldeverusethis7" }, - "www.polywork.com": { + "Polywork": { "checkType": "message", "absenceStrs": [ ">404", @@ -16277,7 +16120,10 @@ "urlMain": "https://www.polywork.com", "usernameClaimed": "zoey123", "usernameUnclaimed": "timhhdgent", - "alexaRank": 86045 + "alexaRank": 86045, + "tags": [ + "career" + ] }, "EuroFootball": { "tags": [ @@ -16333,8 +16179,7 @@ "usernameClaimed": "alex", "usernameUnclaimed": "noonewouldeverusethis7", "tags": [ - "forum", - "us" + "forum" ] }, "Wakatime": { @@ -16359,7 +16204,10 @@ "usernameClaimed": "Aimilios", "usernameUnclaimed": "noonewouldeverusethis7", "alexaRank": 89235, - "disabled": true + "disabled": true, + "tags": [ + "streaming" + ] }, "Icheckmovies": { "tags": [ @@ -16375,8 +16223,7 @@ "Tl": { "tags": [ "de", - "dk", - "us" + "dk" ], "checkType": "status_code", "alexaRank": 89601, @@ -16391,13 +16238,14 @@ "url": "https://www.designspiration.net/{username}/", "usernameClaimed": "blue", "usernameUnclaimed": "noonewouldeverusethis7", - "alexaRank": 89939 + "alexaRank": 89939, + "tags": [ + "design" + ] }, "forum.garudalinux.org": { "tags": [ - "forum", - "in", - "us" + "forum" ], "engine": "Discourse", "urlMain": "https://forum.garudalinux.org", @@ -16407,9 +16255,7 @@ "AnimeSuperHero": { "disabled": true, "tags": [ - "forum", - "in", - "us" + "forum" ], "engine": "XenForo", "alexaRank": 90814, @@ -16436,7 +16282,7 @@ }, "NameMC": { "tags": [ - "us" + "gaming" ], "regexCheck": "^.{3,16}$", "checkType": "message", @@ -16455,10 +16301,8 @@ "beyond3d": { "tags": [ "forum", - "in", "pk", - "ru", - "us" + "ru" ], "engine": "XenForo", "urlMain": "https://forum.beyond3d.com", @@ -16589,7 +16433,6 @@ }, "sa-mp.ucoz.de": { "tags": [ - "in", "ua" ], "engine": "uCoz", @@ -16600,7 +16443,6 @@ "Movieforums": { "tags": [ "forum", - "in", "la" ], "checkType": "message", @@ -16615,8 +16457,7 @@ }, "Crevado": { "tags": [ - "in", - "us" + "design" ], "checkType": "status_code", "alexaRank": 102794, @@ -16672,8 +16513,7 @@ }, "IRC-Galleria": { "tags": [ - "fi", - "us" + "fi" ], "checkType": "message", "absenceStrs": [ @@ -16692,7 +16532,7 @@ ], "checkType": "message", "absenceStrs": [ - "\u041a \u0441\u043e\u0436\u0430\u043b\u0435\u043d\u0438\u044e, \u043c\u044b \u043d\u0438\u0447\u0435\u0433\u043e \u043d\u0435 \u043d\u0430\u0448\u043b\u0438 \u0434\u043b\u044f \u0432\u0430\u0441.." + "К сожалению, мы ничего не нашли для вас.." ], "urlMain": "https://are.kamrbb.ru", "url": "https://are.kamrbb.ru/?x=find&f={username}#top", @@ -16705,7 +16545,7 @@ ], "checkType": "message", "absenceStrs": [ - "\u041a \u0441\u043e\u0436\u0430\u043b\u0435\u043d\u0438\u044e, \u043c\u044b \u043d\u0438\u0447\u0435\u0433\u043e \u043d\u0435 \u043d\u0430\u0448\u043b\u0438 \u0434\u043b\u044f \u0432\u0430\u0441" + "К сожалению, мы ничего не нашли для вас" ], "urlMain": "https://hyundaitruckclub.kamrbb.ru", "url": "https://hyundaitruckclub.kamrbb.ru/?x=find&f={username}&type=topics&nick=on#top", @@ -16714,10 +16554,7 @@ }, "Mylot": { "tags": [ - "fr", - "in", - "pl", - "us" + "pl" ], "checkType": "status_code", "alexaRank": 105084, @@ -16728,7 +16565,7 @@ }, "GuruShots": { "tags": [ - "us" + "photo" ], "checkType": "message", "presenseStrs": [ @@ -16742,9 +16579,7 @@ }, "SeoClerks": { "tags": [ - "in", - "jp", - "us" + "jp" ], "checkType": "response_url", "alexaRank": 105432, @@ -16766,7 +16601,7 @@ }, "E621": { "tags": [ - "us" + "art" ], "checkType": "message", "absenceStrs": [ @@ -16788,7 +16623,10 @@ "checkType": "status_code", "usernameClaimed": "Lost_Arrow", "usernameUnclaimed": "noonewouldeverusethis7", - "alexaRank": 106344 + "alexaRank": 106344, + "tags": [ + "gaming" + ] }, "Gingerbread": { "tags": [ @@ -16806,7 +16644,7 @@ }, "rive.app": { "tags": [ - "in" + "design" ], "engine": "engine404", "urlMain": "https://rive.app", @@ -16837,7 +16675,10 @@ "url": "https://cash.me/${username}", "usernameClaimed": "Jenny", "usernameUnclaimed": "noonewouldeverusethis7", - "alexaRank": 108253 + "alexaRank": 108253, + "tags": [ + "finance" + ] }, "forum.kineshemec.ru": { "disabled": true, @@ -16865,12 +16706,15 @@ "urlMain": "https://mstdn.io/", "url": "https://mstdn.io/@{username}", "usernameClaimed": "blue", - "usernameUnclaimed": "noonewouldeverusethis7" + "usernameUnclaimed": "noonewouldeverusethis7", + "tags": [ + "social", + "mastodon" + ] }, "HackTheBox": { "tags": [ - "forum", - "us" + "forum" ], "checkType": "status_code", "urlMain": "https://forum.hackthebox.eu/", @@ -16893,7 +16737,6 @@ "tags": [ "forum", "gb", - "in", "pk" ], "engine": "XenForo", @@ -16909,9 +16752,9 @@ ], "checkType": "message", "absenceStrs": [ - "\u0420\u0435\u0437\u0443\u043b\u044c\u0442\u0430\u0442\u044b \u043e\u0442\u0441\u0443\u0442\u0441\u0442\u0432\u0443\u044e\u0442", - "\u041f\u043e\u0438\u0441\u043a \u0432\u0440\u0435\u043c\u0435\u043d\u043d\u043e \u043e\u0442\u043a\u043b\u044e\u0447\u0435\u043d", - "

\u041f\u043e\u0438\u0441\u043a \u0432\u0440\u0435\u043c\u0435\u043d\u043d\u043e \u043e\u0442\u043a\u043b\u044e\u0447\u0435\u043d

" + "Результаты отсутствуют", + "Поиск временно отключен", + "

Поиск временно отключен

" ], "alexaRank": 113055, "urlMain": "https://dota2.ru/", @@ -16922,7 +16765,7 @@ "Quibblo": { "disabled": true, "tags": [ - "in" + "discussion" ], "checkType": "response_url", "alexaRank": 113120, @@ -17001,8 +16844,7 @@ }, "YouNow": { "tags": [ - "be", - "us" + "be" ], "urlProbe": "https://api.younow.com/php/api/broadcast/info/user={username}/", "checkType": "message", @@ -17018,8 +16860,7 @@ "CapFriendly": { "disabled": true, "tags": [ - "ca", - "us" + "ca" ], "regexCheck": "^[a-zA-z][a-zA-Z0-9_]{2,79}$", "checkType": "message", @@ -17063,8 +16904,7 @@ }, "Quartertothree": { "tags": [ - "forum", - "us" + "forum" ], "engine": "Discourse", "urlMain": "https://forum.quartertothree.com", @@ -17073,7 +16913,7 @@ }, "Weasyl": { "tags": [ - "in" + "art" ], "checkType": "status_code", "alexaRank": 115562, @@ -17098,7 +16938,7 @@ }, "Touristlink": { "tags": [ - "in" + "travel" ], "checkType": "message", "absenceStrs": [ @@ -17161,7 +17001,10 @@ "urlMain": "https://massagerepublic.com", "usernameClaimed": "lily88", "usernameUnclaimed": "xzhsxfyfzi", - "alexaRank": 120861 + "alexaRank": 120861, + "tags": [ + "erotic" + ] }, "AllTheLyrics": { "urlSubpath": "/forum", @@ -17203,8 +17046,7 @@ }, "Gvectors": { "tags": [ - "in", - "us" + "forum" ], "checkType": "status_code", "alexaRank": 123716, @@ -17215,9 +17057,7 @@ }, "Droidforums": { "tags": [ - "forum", - "in", - "us" + "forum" ], "errors": { "You must be logged-in to do that.": "Login required" @@ -17245,7 +17085,7 @@ }, "Clozemaster": { "tags": [ - "us" + "education" ], "checkType": "message", "absenceStrs": [ @@ -17304,7 +17144,7 @@ ], "checkType": "message", "absenceStrs": [ - "\u0423\u043a\u0430\u0437\u0430\u043d\u043d\u044b\u0439 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c \u043d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d" + "Указанный пользователь не найден" ], "alexaRank": 130840, "urlMain": "https://www.old-games.ru", @@ -17312,7 +17152,7 @@ "usernameClaimed": "viktort", "usernameUnclaimed": "noonewouldeverusethis7" }, - "getmyuni": { + "GetMyUni": { "tags": [ "in" ], @@ -17332,8 +17172,7 @@ "disabled": true, "tags": [ "forum", - "jp", - "us" + "jp" ], "engine": "vBulletin", "alexaRank": 131722, @@ -17343,12 +17182,11 @@ }, "ForumTauck": { "tags": [ - "forum", - "us" + "forum" ], "checkType": "message", "presenseStrs": [ - "\u2014 Tauck Community" + "— Tauck Community" ], "urlMain": "https://forums.tauck.com", "url": "https://forums.tauck.com/profile/{username}", @@ -17363,7 +17201,7 @@ ], "checkType": "message", "absenceStrs": [ - "\u041f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c \u043d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d</title" + "<title>Пользователь не найден</title" ], "alexaRank": 134674, "urlMain": "https://au.ru", @@ -17395,7 +17233,6 @@ "tags": [ "ca", "forum", - "in", "pk" ], "engine": "vBulletin", @@ -17410,7 +17247,7 @@ ], "checkType": "message", "absenceStrs": [ - "\u041f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c \u0441 \u0442\u0430\u043a\u0438\u043c \u0438\u043c\u0435\u043d\u0435\u043c \u043d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d" + "Пользователь с таким именем не найден" ], "alexaRank": 138886, "urlMain": "https://www.rusfootball.info/", @@ -17435,16 +17272,16 @@ "streaming" ] }, - "www.freelancejob.ru": { + "FreelanceJob": { "tags": [ "ru" ], "checkType": "message", "presenseStrs": [ - "\u041a\u043e\u043b-\u0432\u043e \u043f\u0440\u043e\u0441\u043c\u043e\u0442\u0440\u043e\u0432 \u0430\u043a\u043a\u0430\u0443\u043d\u0442\u0430 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044f" + "Кол-во просмотров аккаунта пользователя" ], "absenceStrs": [ - "<h1>\u041e\u0448\u0438\u0431\u043a\u0430 404</h1>" + "<h1>Ошибка 404</h1>" ], "urlMain": "https://www.freelancejob.ru", "url": "https://www.freelancejob.ru/users/{username}/", @@ -17456,9 +17293,7 @@ "tags": [ "co", "forum", - "in", - "sg", - "us" + "sg" ], "engine": "XenForo", "urlMain": "https://forum.popjustice.com", @@ -17467,7 +17302,7 @@ }, "1001tracklists": { "tags": [ - "us" + "music" ], "checkType": "message", "presenseStrs": [ @@ -17494,8 +17329,7 @@ }, "EthicalHacker": { "tags": [ - "in", - "us" + "hacking" ], "checkType": "status_code", "presenseStrs": [ @@ -17539,7 +17373,6 @@ "ca", "forum", "gb", - "in", "pk" ], "engine": "XenForo", @@ -17574,7 +17407,10 @@ ], "usernameClaimed": "kilroy222", "usernameUnclaimed": "noonewouldeverusethis7", - "alexaRank": 151421 + "alexaRank": 151421, + "tags": [ + "porn" + ] }, "999.md": { "absenceStrs": [ @@ -17609,7 +17445,7 @@ "usernameClaimed": "adam", "usernameUnclaimed": "noonewouldeverusethis7" }, - "www.livios.be": { + "Livios": { "checkType": "message", "absenceStrs": [ "not found", @@ -17629,7 +17465,11 @@ "urlMain": "https://www.livios.be", "usernameClaimed": "lily88", "usernameUnclaimed": "ldbdpisozv", - "alexaRank": 155125 + "alexaRank": 155125, + "tags": [ + "forum", + "be" + ] }, "Kwejk": { "tags": [ @@ -17647,8 +17487,7 @@ "forum", "jp", "tech", - "tw", - "us" + "tw" ], "checkType": "status_code", "alexaRank": 161262, @@ -17662,7 +17501,11 @@ "alexaRank": 163014, "urlMain": "http://millerovo161.ru", "usernameClaimed": "alex", - "usernameUnclaimed": "noonewouldeverusethis7" + "usernameUnclaimed": "noonewouldeverusethis7", + "tags": [ + "forum", + "ru" + ] }, "Pepper NL": { "url": "https://nl.pepper.com/profile/{username}", @@ -17690,7 +17533,10 @@ "checkType": "status_code", "usernameClaimed": "andrea", "usernameUnclaimed": "noonewouldeverusethis7", - "alexaRank": 165029 + "alexaRank": 165029, + "tags": [ + "social" + ] }, "programming.dev": { "tags": [ @@ -17731,10 +17577,8 @@ "be", "de", "es", - "in", "pt", - "ru", - "us" + "ru" ], "checkType": "response_url", "alexaRank": 167798, @@ -17758,9 +17602,7 @@ "disabled": true, "tags": [ "forum", - "in", - "pk", - "us" + "pk" ], "engine": "vBulletin", "urlMain": "https://forum.mt5.com", @@ -17788,8 +17630,8 @@ ], "checkType": "message", "absenceStrs": [ - "\u041f\u043e\u0434\u0445\u043e\u0434\u044f\u0449\u0438\u0445 \u0442\u0435\u043c \u0438\u043b\u0438 \u0441\u043e\u043e\u0431\u0449\u0435\u043d\u0438\u0439 \u043d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d\u043e.", - "\u041f\u043e\u0434\u0445\u043e\u0434\u044f\u0449\u0438\u0445 \u0442\u0435\u043c \u0438\u043b\u0438 \u0441\u043e\u043e\u0431\u0449\u0435\u043d\u0438\u0439 \u043d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d\u043e." + "Подходящих тем или сообщений не найдено.", + "Подходящих тем или сообщений не найдено." ], "alexaRank": 168544, "urlMain": "https://www.radiokot.ru", @@ -17814,8 +17656,7 @@ "disabled": true, "tags": [ "forum", - "sg", - "us" + "sg" ], "engine": "vBulletin", "alexaRank": 170454, @@ -17854,9 +17695,7 @@ "tags": [ "forum", "gb", - "in", - "sg", - "us" + "sg" ], "checkType": "status_code", "urlMain": "https://forums.footballindex.co.uk", @@ -17867,8 +17706,7 @@ }, "thewholesaleforums.co.uk": { "tags": [ - "forum", - "in" + "forum" ], "engine": "XenForo", "urlMain": "http://www.thewholesaleforums.co.uk/", @@ -17882,7 +17720,7 @@ ], "checkType": "message", "absenceStrs": [ - "\u0418\u0437\u0432\u0438\u043d\u0438\u0442\u0435" + "Извините" ], "urlMain": "https://forum.sibmama.ru/", "url": "https://forum.sibmama.ru/profile.php?mode=viewprofile&u={username}", @@ -17911,7 +17749,7 @@ ], "checkType": "message", "absenceStrs": [ - "\u041f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c \u043d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d." + "Пользователь не найден." ], "urlMain": "http://forum.mfd.ru", "url": "http://forum.mfd.ru/forum/search/?query=&method=And&userQuery={username}", @@ -17931,8 +17769,7 @@ }, "Mylespaul": { "tags": [ - "cl", - "us" + "cl" ], "checkType": "message", "absenceStrs": [ @@ -17977,7 +17814,7 @@ }, "Listography": { "tags": [ - "in" + "sharing" ], "errors": { "An error has occurred.": "Site error" @@ -18004,7 +17841,7 @@ "usernameClaimed": "mark", "usernameUnclaimed": "noonewouldeverusethis7" }, - "www.liinks.co": { + "Liinks": { "disabled": true, "tags": [ "links" @@ -18045,7 +17882,7 @@ "profile-content" ], "absenceStrs": [ - "\u0423\u043f\u0441! \u0412\u043e\u0442 \u044d\u0442\u043e \u043f\u043e\u0432\u043e\u0440\u043e\u0442!" + "Упс! Вот это поворот!" ], "alexaRank": 180260, "urlMain": "https://kosmetista.ru", @@ -18056,8 +17893,7 @@ "Riftgame": { "tags": [ "cr", - "forum", - "us" + "forum" ], "checkType": "message", "absenceStrs": [ @@ -18070,8 +17906,7 @@ }, "Fluther": { "tags": [ - "in", - "us" + "q&a" ], "checkType": "status_code", "alexaRank": 180379, @@ -18095,8 +17930,7 @@ "juce": { "tags": [ "ca", - "forum", - "us" + "forum" ], "engine": "Discourse", "urlMain": "https://forum.juce.com", @@ -18183,8 +18017,7 @@ "Antichat": { "tags": [ "forum", - "ru", - "us" + "ru" ], "engine": "XenForo", "urlMain": "https://forum.antichat.ru/", @@ -18237,8 +18070,7 @@ "ignore403": true, "disabled": true, "tags": [ - "ca", - "us" + "ca" ], "checkType": "message", "absenceStrs": [ @@ -18269,7 +18101,11 @@ "usernameClaimed": "blue", "usernameUnclaimed": "noonewouldeverusethis7", "alexaRank": 188982, - "requestMethod": "GET" + "requestMethod": "GET", + "tags": [ + "shopping", + "es" + ] }, "forum.hr": { "tags": [ @@ -18319,8 +18155,7 @@ }, "Runitonce": { "tags": [ - "ca", - "us" + "ca" ], "checkType": "response_url", "alexaRank": 194576, @@ -18376,8 +18211,7 @@ "tags": [ "forum", "gb", - "sg", - "us" + "sg" ], "engine": "XenForo", "alexaRank": 200368, @@ -18387,7 +18221,6 @@ }, "Pregame": { "tags": [ - "in", "us" ], "checkType": "response_url", @@ -18413,10 +18246,10 @@ ], "checkType": "message", "absenceStrs": [ - "\u041e\u0448\u0438\u0431\u043a\u0430 404" + "Ошибка 404" ], "presenseStrs": [ - "\u041b\u0438\u0447\u043d\u043e\u0435" + "Личное" ], "alexaRank": 200882, "urlMain": "https://vapenews.ru/", @@ -18427,10 +18260,8 @@ "bbs.evony.com": { "tags": [ "forum", - "in", "pk", - "tr", - "us" + "tr" ], "engine": "vBulletin", "urlMain": "http://bbs.evony.com", @@ -18458,7 +18289,10 @@ "urlMain": "https://oshwlab.com", "usernameClaimed": "zoey123", "usernameUnclaimed": "uckupswapv", - "alexaRank": 202371 + "alexaRank": 202371, + "tags": [ + "tech" + ] }, "forum.vectric.com": { "urlMain": "https://forum.vectric.com", @@ -18466,8 +18300,7 @@ "usernameClaimed": "alex", "usernameUnclaimed": "noonewouldeverusethis7", "tags": [ - "forum", - "us" + "forum" ] }, "sevenstring.org": { @@ -18500,7 +18333,6 @@ "disabled": true, "tags": [ "forum", - "in", "pk", "us" ], @@ -18513,7 +18345,7 @@ "usernameClaimed": "blue", "usernameUnclaimed": "noonewouldeverusethis7" }, - "pr0gramm": { + "Pr0gramm": { "tags": [ "de" ], @@ -18531,7 +18363,7 @@ ], "checkType": "message", "absenceStrs": [ - "\u041f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c \u043d\u0435 \u0437\u0430\u0440\u0435\u0433\u0438\u0441\u0442\u0440\u0438\u0440\u043e\u0432\u0430\u043d \u0438 \u043d\u0435 \u0438\u043c\u0435\u0435\u0442 \u043f\u0440\u043e\u0444\u0438\u043b\u044f \u0434\u043b\u044f \u043f\u0440\u043e\u0441\u043c\u043e\u0442\u0440\u0430." + "Пользователь не зарегистрирован и не имеет профиля для просмотра." ], "urlMain": "http://forum.bratsk.org", "url": "http://forum.bratsk.org/member.php?username={username}", @@ -18551,7 +18383,7 @@ "usernameClaimed": "Yamiha", "usernameUnclaimed": "noonewouldeverusethis7" }, - "www.opendiary.com": { + "OpenDiary": { "urlSubpath": "/m", "urlMain": "https://www.opendiary.com", "engine": "Wordpress/Author", @@ -18564,8 +18396,7 @@ }, "Showme": { "tags": [ - "in", - "us" + "education" ], "checkType": "status_code", "alexaRank": 207957, @@ -18650,7 +18481,7 @@ ], "checkType": "message", "absenceStrs": [ - "\u041f\u043e\u0434\u0445\u043e\u0434\u044f\u0449\u0438\u0445 \u0442\u0435\u043c \u0438\u043b\u0438 \u0441\u043e\u043e\u0431\u0449\u0435\u043d\u0438\u0439 \u043d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d\u043e." + "Подходящих тем или сообщений не найдено." ], "urlMain": "http://forum.qwas.ru", "url": "http://forum.qwas.ru/search.php?keywords=&terms=all&author={username}", @@ -18673,9 +18504,7 @@ }, "Office-forums": { "tags": [ - "forum", - "in", - "us" + "forum" ], "engine": "XenForo", "alexaRank": 214742, @@ -18763,8 +18592,8 @@ "has been temporarily blocked": "IP ban" }, "absenceStrs": [ - "\u0417\u0430\u043f\u0440\u043e\u0448\u0435\u043d\u043d\u0430\u044f \u0432\u0430\u043c\u0438 \u0441\u0442\u0440\u0430\u043d\u0438\u0446\u0430 \u043d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d\u0430.", - "\u0414\u0430\u043d\u043d\u044b\u0435 \u043e \u0432\u044b\u0431\u0440\u0430\u043d\u043d\u043e\u043c \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u0435 \u043d\u0435 \u0441\u0443\u0449\u0435\u0441\u0442\u0432\u0443\u044e\u0442", + "Запрошенная вами страница не найдена.", + "Данные о выбранном пользователе не существуют", "Information on selected user does not exist" ], "alexaRank": 218186, @@ -18790,9 +18619,7 @@ "ca", "forum", "gaming", - "gb", - "in", - "us" + "gb" ], "engine": "vBulletin", "urlMain": "https://forums.eagle.ru", @@ -18844,17 +18671,16 @@ "Bobrdobr": { "tags": [ "az", - "in", "ru", "tr", "ua" ], "checkType": "message", "presenseStrs": [ - "\u0417\u0430\u043a\u043b\u0430\u0434\u043a\u0438 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044f" + "Закладки пользователя" ], "absenceStrs": [ - "\u0421\u0442\u0440\u0430\u043d\u0438\u0446\u0430 \u043d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d\u0430." + "Страница не найдена." ], "alexaRank": 225698, "urlMain": "https://bobrdobr.ru", @@ -18910,7 +18736,7 @@ ], "checkType": "message", "absenceStrs": [ - "\u041f\u043e \u0432\u0430\u0448\u0435\u043c\u0443 \u0437\u0430\u043f\u0440\u043e\u0441\u0443 \u043d\u0438\u0447\u0435\u0433\u043e \u043d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d\u043e." + "По вашему запросу ничего не найдено." ], "urlMain": "http://ramta.0pk.ru", "url": "http://ramta.0pk.ru/search.php?action=search&keywords=&author={username}", @@ -18924,8 +18750,8 @@ ], "checkType": "message", "absenceStrs": [ - "<title> \u0418\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u044f", - "\u041f\u043e\u0434\u0445\u043e\u0434\u044f\u0449\u0438\u0445 \u0442\u0435\u043c \u0438\u043b\u0438 \u0441\u043e\u043e\u0431\u0449\u0435\u043d\u0438\u0439 \u043d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d\u043e." + " Информация", + "Подходящих тем или сообщений не найдено." ], "alexaRank": 226961, "urlMain": "https://gotovim-doma.ru", @@ -18933,7 +18759,7 @@ "usernameClaimed": "Maxxi", "usernameUnclaimed": "noonewouldeverusethis7" }, - "bliphoto": { + "Blipfoto": { "absenceStrs": [ "Your photo journal | Blipfoto" ], @@ -18959,7 +18785,6 @@ "tags": [ "forum", "pk", - "us", "vn" ], "engine": "vBulletin", @@ -18980,12 +18805,11 @@ }, "Hpc": { "tags": [ - "in", "ru" ], "checkType": "message", "absenceStrs": [ - "\u041f\u043e\u0434\u0445\u043e\u0434\u044f\u0449\u0438\u0445 \u0442\u0435\u043c \u0438\u043b\u0438 \u0441\u043e\u043e\u0431\u0449\u0435\u043d\u0438\u0439 \u043d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d\u043e." + "Подходящих тем или сообщений не найдено." ], "alexaRank": 230335, "urlMain": "https://hpc.ru", @@ -19000,7 +18824,10 @@ "regexCheck": "^[\\w]{4,30}$", "usernameClaimed": "0day", "usernameUnclaimed": "noonewouldeverusethis7", - "alexaRank": 230674 + "alexaRank": 230674, + "tags": [ + "hacking" + ] }, "Gribnyemesta": { "tags": [ @@ -19009,7 +18836,7 @@ ], "checkType": "message", "absenceStrs": [ - "\u043f\u0440\u043e\u0444\u0438\u043b\u044c \u0437\u0430\u0431\u0430\u043d\u0435\u043d \u0438\u043b\u0438 \u0443\u0434\u0430\u043b\u0435\u043d" + "профиль забанен или удален" ], "urlMain": "https://gribnyemesta.unoforum.pro", "url": "https://gribnyemesta.unoforum.pro/?32-{username}", @@ -19019,8 +18846,7 @@ }, "Ruby-forum": { "tags": [ - "forum", - "us" + "forum" ], "engine": "Discourse", "alexaRank": 232482, @@ -19031,8 +18857,7 @@ "EduGeek": { "disabled": true, "tags": [ - "education", - "us" + "education" ], "engine": "vBulletin", "urlMain": "https://www.edugeek.net", @@ -19045,7 +18870,11 @@ "urlMain": "http://justmj.ru", "usernameUnclaimed": "noonewouldeverusethis7", "usernameClaimed": "alex", - "alexaRank": 232953 + "alexaRank": 232953, + "tags": [ + "blog", + "ru" + ] }, "forums.immigration.com": { "urlMain": "https://forums.immigration.com", @@ -19053,8 +18882,7 @@ "usernameClaimed": "alex", "usernameUnclaimed": "noonewouldeverusethis7", "tags": [ - "forum", - "us" + "forum" ] }, "Empflix": { @@ -19072,7 +18900,6 @@ }, "Hackenproof": { "tags": [ - "in", "ua" ], "checkType": "message", @@ -19125,11 +18952,11 @@ "ru" ], "errors": { - "\u0412\u044b \u043d\u0435 \u043c\u043e\u0436\u0435\u0442\u0435 \u043f\u0440\u043e\u0438\u0437\u0432\u0435\u0441\u0442\u0438 \u043f\u043e\u0438\u0441\u043a \u0441\u0440\u0430\u0437\u0443 \u043f\u043e\u0441\u043b\u0435 \u043f\u0440\u0435\u0434\u044b\u0434\u0443\u0449\u0435\u0433\u043e": "Too many requests" + "Вы не можете произвести поиск сразу после предыдущего": "Too many requests" }, "checkType": "message", "absenceStrs": [ - "\u041f\u043e\u0434\u0445\u043e\u0434\u044f\u0449\u0438\u0445 \u0442\u0435\u043c \u0438\u043b\u0438 \u0441\u043e\u043e\u0431\u0449\u0435\u043d\u0438\u0439 \u043d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d\u043e." + "Подходящих тем или сообщений не найдено." ], "alexaRank": 241018, "urlMain": "https://www.romanticcollection.ru", @@ -19137,7 +18964,7 @@ "usernameClaimed": "Prim@", "usernameUnclaimed": "noonewouldeverusethis7" }, - "www.hsx.com": { + "HSX": { "checkType": "message", "presenseStrs": [ "profile-info" @@ -19178,9 +19005,7 @@ "Tellonym.me": { "tags": [ "de", - "fr", - "sa", - "us" + "sa" ], "checkType": "status_code", "alexaRank": 246104, @@ -19216,7 +19041,7 @@ ], "checkType": "message", "absenceStrs": [ - "\u0420\u0435\u0437\u0443\u043b\u044c\u0442\u0430\u0442\u043e\u0432 \u043f\u043e\u0438\u0441\u043a\u0430 \u043d\u0435\u0442. \u0420\u0430\u0441\u0448\u0438\u0440\u044c\u0442\u0435 \u043a\u0440\u0438\u0442\u0435\u0440\u0438\u0438 \u043f\u043e\u0438\u0441\u043a\u0430." + "Результатов поиска нет. Расширьте критерии поиска." ], "alexaRank": 250214, "urlMain": "https://www.chipmaker.ru", @@ -19253,7 +19078,7 @@ "usernameClaimed": "Lexx", "usernameUnclaimed": "noonewouldeverusethis7" }, - "soylentnews": { + "SoylentNews": { "tags": [ "us" ], @@ -19333,14 +19158,22 @@ "usernameClaimed": "blue", "usernameUnclaimed": "noonewouldeverusethis7", "alexaRank": 259987, - "requestMethod": "GET" + "requestMethod": "GET", + "tags": [ + "shopping", + "mx" + ] }, "mir-stalkera.ru": { "engine": "uCoz", "urlMain": "http://mir-stalkera.ru", "usernameUnclaimed": "noonewouldeverusethis7", "usernameClaimed": "john", - "alexaRank": 260295 + "alexaRank": 260295, + "tags": [ + "gaming", + "ru" + ] }, "sorento.kia-club.ru": { "urlMain": "http://sorento.kia-club.ru/forum", @@ -19357,7 +19190,11 @@ "alexaRank": 262389, "urlMain": "http://vishivalochka.ru", "usernameClaimed": "alex", - "usernameUnclaimed": "noonewouldeverusethis7" + "usernameUnclaimed": "noonewouldeverusethis7", + "tags": [ + "hobby", + "ru" + ] }, "Proshkolu": { "tags": [ @@ -19365,7 +19202,7 @@ ], "checkType": "message", "absenceStrs": [ - "\u041f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c \u043d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d" + "Пользователь не найден" ], "alexaRank": 263423, "urlMain": "https://proshkolu.ru", @@ -19400,9 +19237,7 @@ }, "Gunboards": { "tags": [ - "forum", - "in", - "us" + "forum" ], "presenseStrs": [ "latest-activity" @@ -19423,17 +19258,17 @@ "ua" ] }, - "www.sql.ru": { + "SQL.ru": { "tags": [ "ru" ], "checkType": "message", "presenseStrs": [ - "\u041f\u043e \u0432\u0430\u0448\u0435\u043c\u0443 \u0437\u0430\u043f\u0440\u043e\u0441\u0443 \u043d\u0430\u0439\u0434\u0435\u043d\u043e" + "По вашему запросу найдено" ], "absenceStrs": [ - "\u0418\u0437\u0432\u0438\u043d\u0438\u0442\u0435", - " \u043d\u043e \u043f\u043e \u0432\u0430\u0448\u0435\u043c\u0443 \u0437\u0430\u043f\u0440\u043e\u0441\u0443 \u043d\u0438\u0447\u0435\u0433\u043e \u043d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d\u043e" + "Извините", + " но по вашему запросу ничего не найдено" ], "url": "https://www.sql.ru/forum/actualsearch.aspx?a={username}&ma=0", "urlMain": "https://www.sql.ru", @@ -19461,7 +19296,7 @@ ], "checkType": "message", "absenceStrs": [ - "\u041f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c \u043d\u0435 \u0437\u0430\u0440\u0435\u0433\u0438\u0441\u0442\u0440\u0438\u0440\u043e\u0432\u0430\u043d \u0438 \u043d\u0435 \u0438\u043c\u0435\u0435\u0442 \u043f\u0440\u043e\u0444\u0438\u043b\u044f \u0434\u043b\u044f \u043f\u0440\u043e\u0441\u043c\u043e\u0442\u0440\u0430." + "Пользователь не зарегистрирован и не имеет профиля для просмотра." ], "alexaRank": 271584, "urlMain": "http://www.biketrials.ru", @@ -19476,8 +19311,7 @@ "usernameClaimed": "blue", "usernameUnclaimed": "noonewouldeverusethis7", "tags": [ - "forum", - "us" + "forum" ] }, "Hctorpedo": { @@ -19533,8 +19367,7 @@ "urlSubpath": "/forum", "tags": [ "forum", - "ru", - "us" + "ru" ], "engine": "phpBB", "alexaRank": 276576, @@ -19544,7 +19377,7 @@ }, "Flashflashrevolution": { "tags": [ - "us" + "gaming" ], "checkType": "response_url", "alexaRank": 277587, @@ -19582,10 +19415,10 @@ "regexCheck": "^[a-zA-Z0-9-]{3,}$", "checkType": "message", "presenseStrs": [ - "\u041f\u0440\u043e\u0444\u0438\u043b\u044c \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044f" + "Профиль пользователя" ], "absenceStrs": [ - "\u0418\u0437\u0432\u0438\u043d\u0438\u0442\u0435, \u0442\u0430\u043a\u043e\u0433\u043e \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044f \u043d\u0435 \u0441\u0443\u0449\u0435\u0441\u0442\u0432\u0443\u0435\u0442" + "Извините, такого пользователя не существует" ], "alexaRank": 282337, "urlMain": "http://33bru.com/", @@ -19600,7 +19433,7 @@ ], "checkType": "message", "absenceStrs": [ - "\u0422\u0430\u043a\u043e\u0439 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c \u043d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d" + "Такой пользователь не найден" ], "alexaRank": 282968, "urlMain": "https://avtomarket.ru", @@ -19647,7 +19480,11 @@ "regexCheck": "^[a-zA-Z0-9_.-]{3,40}$", "usernameClaimed": "blue", "usernameUnclaimed": "noonewouldeverusethis7", - "alexaRank": 284423 + "alexaRank": 284423, + "tags": [ + "forum", + "no" + ] }, "TheFastlaneForum": { "disabled": true, @@ -19712,9 +19549,7 @@ }, "Go365": { "disabled": true, - "tags": [ - "us" - ], + "tags": [], "checkType": "status_code", "urlMain": "https://community.go365.com", "url": "https://community.go365.com/people/{username}", @@ -19746,7 +19581,11 @@ "urlMain": "http://mcfc-fan.ru", "usernameUnclaimed": "noonewouldeverusethis7", "usernameClaimed": "alex", - "alexaRank": 289966 + "alexaRank": 289966, + "tags": [ + "sport", + "ru" + ] }, "Pedsovet": { "disabled": true, @@ -19761,9 +19600,7 @@ }, "Affiliatefix": { "tags": [ - "forum", - "in", - "us" + "forum" ], "engine": "XenForo", "alexaRank": 293573, @@ -19774,9 +19611,7 @@ "Hipforums": { "tags": [ "forum", - "in", - "ru", - "us" + "ru" ], "disabled": true, "engine": "XenForo", @@ -19806,7 +19641,11 @@ ], "usernameClaimed": "junferno", "usernameUnclaimed": "noonewouldeverusethis7", - "alexaRank": 294005 + "alexaRank": 294005, + "tags": [ + "coding", + "ca" + ] }, "2d-3d": { "tags": [ @@ -19837,8 +19676,7 @@ }, "nightbot": { "tags": [ - "jp", - "us" + "jp" ], "urlProbe": "https://api.nightbot.tv/1/channels/t/{username}", "checkType": "status_code", @@ -19851,8 +19689,7 @@ "Truesteamachievements": { "tags": [ "az", - "gb", - "us" + "gb" ], "checkType": "status_code", "alexaRank": 297108, @@ -19877,8 +19714,7 @@ "tags": [ "forum", "gb", - "jp", - "us" + "jp" ], "engine": "XenForo", "urlMain": "https://forum.questionablequesting.com", @@ -19936,7 +19772,10 @@ ], "usernameClaimed": "testadmin", "usernameUnclaimed": "noonewouldeverusethis7", - "alexaRank": 307326 + "alexaRank": 307326, + "tags": [ + "hacking" + ] }, "ifish.net": { "urlMain": "https://ifish.net", @@ -19958,7 +19797,10 @@ "usernameClaimed": "admin", "usernameUnclaimed": "noonewouldeverusethis7", "checkType": "response_url", - "alexaRank": 309815 + "alexaRank": 309815, + "tags": [ + "career" + ] }, "drupal.ru": { "tags": [ @@ -19966,7 +19808,7 @@ ], "checkType": "message", "absenceStrs": [ - "\u0421\u0442\u0440\u0430\u043d\u0438\u0446\u0430 \u043d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d\u0430 - 404" + "Страница не найдена - 404" ], "presenseStrs": [ "