text stringlengths 1 462 |
|---|
00 |
000 |
0M0DZH |
0MFQ |
100BTF |
100SALUTE100 |
100SEASHELL |
100SHOWHOTTUBMOVERS |
101DERMA |
101MEGAPLEX |
108SECT |
1099SUCCESSACADEMYLLC |
10KLOVE |
10SECONDAD |
10ZIDIYORUO |
110PODCAST |
11186 |
12CRYSTAL |
12QIAIFBLL |
12VOLTSAUTODIAGNOSTICSERVICES |
15 |
15DOLLARSEWERDRAINSERVICE |
1ANDONLYAMAZON |
1C |
1DAYEPOXY |
1EISMBIAO |
1FIREFLYCHARM |
1HOMEFURNIT |
1INCH |
1INCHOME |
1MAGICWORD |
1MAGTILLTHEDEATHOFMEONEMANARMYGANG |
1NFZKCN |
1PACC |
1ST |
1STCROWNREALTYCORPORATION |
1TOMTE |
1Z |
2000S |
2000SHIPHOPKIDS |
216XXXDJS |
21AE |
21TOPCEN |
24KSMOKESHOP |
24PAWS |
24PRESSURE |
24UNITS |
251OUTLAWS |
272CHILLICOTHEOHIOFIRSTCAPITOLSOUTHERNCRUISERS |
28C |
2B |
2BEBEST |
2BJUSTME |
2BUNNIES |
2DRESTAURANT |
2ECNDLYFELLC |
2FLY |
2GLASSESCOM |
2HEADEDDRAGONATTHECRATER |
2LPAVERSINSTALLATION |
2NDSKIN |
2PMENERGY |
2SMART2BEBROKE |
2SMARTBEBROKE |
2XOTICMERCHANDISE |
2XOTICPROMOTIONCOMPANY |
2XVOLUM |
3 |
305 |
305SPORTSBAR |
33 |
360JIUJITSU |
360PRODUCTXSELLINGQUALITYPRODUCTS |
360TRONICS |
360XSTAFFING |
367CLAVDICUM |
3927 |
39EMC2ALFIMOVNOBLEVODKAHIGHQUALITYITSTHEALFAMALEDRINKLIVINGTHEDREAMTAKEASHOTOFTHEALFAMALEVODKAANDYOUMIGHTFINDYOURSELFINADIFFERENTUNIVERSEATTHEGIANTSPARTY |
3ASYGLIDE |
3BRONXGIRLS |
3BROTHERSGUITARS |
3CPIZAI |
3CRIB5 |
3CRYSTAL |
3DAYKITCHEN |
3DIMSFILA |
3DMALIANG |
3DMETALCRAFT |
3DPEN |
3DPRINTERPEN |
3DPRINTFORGE |
3DPRINTFORGEPRINTINGYOURIMAGINATION |
3DPRINTINGPEN |
3GPLANTATIONANDFARMGODGRACEGUNDOGSEST2020 |
3HANDEDDENTISTRY |
3MIA5 |
3MIN |
3MIN19SEC |
3MIRRORS |
3PINFINITY |
USPTO Trademark Detector Lists
Ready-to-ship lists for a downstream detector (e.g. a browser extension),
consumed exactly like an ad-blocker filter list: fetch, cache, membership-
test. Each file is plain text, one normalized mark key per line. Rebuilt
monthly from the companion corpus illeatmyhat/uspto-trademarks.
Source
Generated by USPTO Trademark Radar - an open-source pipeline that builds these lists from the public USPTO corpus. Method, thresholds, ADRs, and the consumer contract live there.
| file | what it is | how to treat a hit |
|---|---|---|
tier1.txt |
marks on a filing the USPTO itself sanctioned (order-for-sanctions events / sanctions-terminated status) | a public-record flag; link the user to the USPTO record |
tier2.txt |
marks whose per-filing features clear a recommended screening threshold | a hint to inspect, not a verdict |
tier3.txt |
marks filed by a large, high-churn filing operation (a structural fact about filing volume, keyed on the filing) | a stronger prior to inspect, still not a verdict; no person is named |
origin_cn.txt |
Origin - China - marks whose registered owner country of record is CN | an origin filter, not a junk signal; opt-in, off by default |
Current build: tier1 = 74,488 marks, tier2 = 46,532 marks (threshold
1.8), tier3 = 946,163 marks. See _manifest.json for build lineage.
Origin filters (opt-in, not a junk signal)
origin_<cc>.txt lists marks by registered owner country of record - filing origin, not manufacture (a genuinely foreign brand that files through a domestic entity reads as domestic). Owner-country is deliberately excluded from the tier gates (it is evadable via a foreign shell); it ships only as a separate, clearly-labeled origin preference, off by default, never a junk verdict.
Key normalization (match this exactly)
Both lists are keyed on a normalized mark string. Normalize the brand text you read off a page the same way before testing membership (drop every character that is not a-z, A-Z, or 0-9, then uppercase):
const key = (s) => s.replace(/[^A-Za-z0-9]/g, "").toUpperCase();
Consume
const res = await fetch("https://huggingface.co/datasets/illeatmyhat/uspto-trademarks-detector/resolve/main/tier1.txt");
const tier1 = new Set((await res.text()).split("\n").filter(Boolean));
// cache in IndexedDB; refresh monthly. At runtime:
if (tier1.has(key(listingBrandText))) flagAsAdjudicated(key(listingBrandText));
A mark string maps to many filings, so a hit means "one or more filings under this mark were flagged," not "this exact listing." Surface the USPTO record and let the user judge; never blacklist a person. Design contract and rationale: https://github.com/illeatmyhat/uspto-trademark-radar/blob/main/CONSUMERS.md. License: US government work (public domain).
- Downloads last month
- 41