bekindprofanityfilter 0.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CONTRIBUTORS.md +106 -0
- package/LICENSE +22 -0
- package/README.md +1015 -0
- package/allprofanity.config.example.json +35 -0
- package/bin/init.js +49 -0
- package/config.schema.json +163 -0
- package/dist/algos/aho-corasick.d.ts +75 -0
- package/dist/algos/aho-corasick.js +238 -0
- package/dist/algos/aho-corasick.js.map +1 -0
- package/dist/algos/bloom-filter.d.ts +103 -0
- package/dist/algos/bloom-filter.js +208 -0
- package/dist/algos/bloom-filter.js.map +1 -0
- package/dist/algos/context-patterns.d.ts +102 -0
- package/dist/algos/context-patterns.js +484 -0
- package/dist/algos/context-patterns.js.map +1 -0
- package/dist/index.d.ts +1332 -0
- package/dist/index.js +2631 -0
- package/dist/index.js.map +1 -0
- package/dist/innocence-scoring.d.ts +23 -0
- package/dist/innocence-scoring.js +118 -0
- package/dist/innocence-scoring.js.map +1 -0
- package/dist/language-detector.d.ts +162 -0
- package/dist/language-detector.js +952 -0
- package/dist/language-detector.js.map +1 -0
- package/dist/language-dicts.d.ts +60 -0
- package/dist/language-dicts.js +2718 -0
- package/dist/language-dicts.js.map +1 -0
- package/dist/languages/arabic-words.d.ts +10 -0
- package/dist/languages/arabic-words.js +1649 -0
- package/dist/languages/arabic-words.js.map +1 -0
- package/dist/languages/bengali-words.d.ts +10 -0
- package/dist/languages/bengali-words.js +1696 -0
- package/dist/languages/bengali-words.js.map +1 -0
- package/dist/languages/brazilian-words.d.ts +10 -0
- package/dist/languages/brazilian-words.js +2122 -0
- package/dist/languages/brazilian-words.js.map +1 -0
- package/dist/languages/chinese-words.d.ts +10 -0
- package/dist/languages/chinese-words.js +2728 -0
- package/dist/languages/chinese-words.js.map +1 -0
- package/dist/languages/english-primary-all-languages.d.ts +23 -0
- package/dist/languages/english-primary-all-languages.js +36894 -0
- package/dist/languages/english-primary-all-languages.js.map +1 -0
- package/dist/languages/english-words.d.ts +5 -0
- package/dist/languages/english-words.js +5156 -0
- package/dist/languages/english-words.js.map +1 -0
- package/dist/languages/french-words.d.ts +10 -0
- package/dist/languages/french-words.js +2326 -0
- package/dist/languages/french-words.js.map +1 -0
- package/dist/languages/german-words.d.ts +10 -0
- package/dist/languages/german-words.js +2633 -0
- package/dist/languages/german-words.js.map +1 -0
- package/dist/languages/hindi-words.d.ts +10 -0
- package/dist/languages/hindi-words.js +2341 -0
- package/dist/languages/hindi-words.js.map +1 -0
- package/dist/languages/innocent-words.d.ts +41 -0
- package/dist/languages/innocent-words.js +109 -0
- package/dist/languages/innocent-words.js.map +1 -0
- package/dist/languages/italian-words.d.ts +10 -0
- package/dist/languages/italian-words.js +2287 -0
- package/dist/languages/italian-words.js.map +1 -0
- package/dist/languages/japanese-words.d.ts +11 -0
- package/dist/languages/japanese-words.js +2557 -0
- package/dist/languages/japanese-words.js.map +1 -0
- package/dist/languages/korean-words.d.ts +10 -0
- package/dist/languages/korean-words.js +2509 -0
- package/dist/languages/korean-words.js.map +1 -0
- package/dist/languages/russian-words.d.ts +10 -0
- package/dist/languages/russian-words.js +2175 -0
- package/dist/languages/russian-words.js.map +1 -0
- package/dist/languages/spanish-words.d.ts +11 -0
- package/dist/languages/spanish-words.js +2536 -0
- package/dist/languages/spanish-words.js.map +1 -0
- package/dist/languages/tamil-words.d.ts +10 -0
- package/dist/languages/tamil-words.js +1722 -0
- package/dist/languages/tamil-words.js.map +1 -0
- package/dist/languages/telugu-words.d.ts +10 -0
- package/dist/languages/telugu-words.js +1739 -0
- package/dist/languages/telugu-words.js.map +1 -0
- package/dist/romanization-detector.d.ts +50 -0
- package/dist/romanization-detector.js +779 -0
- package/dist/romanization-detector.js.map +1 -0
- package/package.json +79 -0
|
@@ -0,0 +1,1722 @@
|
|
|
1
|
+
// src/languages/tamil-words.ts
|
|
2
|
+
/**
|
|
3
|
+
* Tamil profanity words list
|
|
4
|
+
* Contains common profanities in both Tamil script and Roman transliteration
|
|
5
|
+
* ⚠️ Warning: This file contains explicit language in Tamil
|
|
6
|
+
*/
|
|
7
|
+
const tamilBadWords = {
|
|
8
|
+
// ========================================
|
|
9
|
+
// === Tamil Script Profanities ===
|
|
10
|
+
// ========================================
|
|
11
|
+
"ஓத்தா": { s: 3, c: 4 },
|
|
12
|
+
"தேவடியா": { s: 5, c: 4 },
|
|
13
|
+
"கூதி": { s: 3, c: 4 },
|
|
14
|
+
"புண்ட": { s: 3, c: 4 },
|
|
15
|
+
"புண்டை": { s: 3, c: 4 },
|
|
16
|
+
"பொட்டை": { s: 3, c: 4 },
|
|
17
|
+
"மயிரு": { s: 3, c: 4 },
|
|
18
|
+
"சுன்னி": { s: 4, c: 4 },
|
|
19
|
+
"தாயோளி": { s: 3, c: 4 },
|
|
20
|
+
"நாய்": { s: 3, c: 4 },
|
|
21
|
+
"புள்ள": { s: 3, c: 4 },
|
|
22
|
+
"முட்டாள்": { s: 1, c: 4 },
|
|
23
|
+
"பொறுக்கி": { s: 3, c: 4 },
|
|
24
|
+
"கோமியம்": { s: 3, c: 4 },
|
|
25
|
+
"கும்மு": { s: 3, c: 4 },
|
|
26
|
+
"அயிர்": { s: 4, c: 4 },
|
|
27
|
+
"பால்": { s: 2, c: 3 },
|
|
28
|
+
"வெட்ட": { s: 3, c: 4 },
|
|
29
|
+
"ஊம்பு": { s: 3, c: 4 },
|
|
30
|
+
"மாட்டு": { s: 3, c: 4 },
|
|
31
|
+
"ஐயா கூதி": { s: 5, c: 5 },
|
|
32
|
+
// ========================================
|
|
33
|
+
// === Roman Script Transliterations ===
|
|
34
|
+
// ========================================
|
|
35
|
+
"otha": { s: 3, c: 5 },
|
|
36
|
+
"thevidiya": { s: 5, c: 5 },
|
|
37
|
+
"koothi": { s: 3, c: 5 },
|
|
38
|
+
"punda": { s: 3, c: 5 },
|
|
39
|
+
"pundai": { s: 3, c: 5 },
|
|
40
|
+
"pottai": { s: 3, c: 5 },
|
|
41
|
+
"mayiru": { s: 3, c: 5 },
|
|
42
|
+
"sunni": { s: 4, c: 5 },
|
|
43
|
+
"thayoli": { s: 3, c: 5 },
|
|
44
|
+
"naai": { s: 3, c: 4 },
|
|
45
|
+
"pulla": { s: 3, c: 5 },
|
|
46
|
+
"muttaal": { s: 1, c: 5 },
|
|
47
|
+
"porukki": { s: 3, c: 5 },
|
|
48
|
+
"gomiyam": { s: 3, c: 5 },
|
|
49
|
+
"kummu": { s: 3, c: 5 },
|
|
50
|
+
"ayir": { s: 4, c: 5 },
|
|
51
|
+
"paal": { s: 3, c: 4 },
|
|
52
|
+
"vetta": { s: 3, c: 5 },
|
|
53
|
+
"oombu": { s: 3, c: 5 },
|
|
54
|
+
"maatu": { s: 3, c: 5 },
|
|
55
|
+
"aiyaa koothi": { s: 5, c: 5 },
|
|
56
|
+
// Common variations and combinations
|
|
57
|
+
"thevidiya paiyan": { s: 5, c: 4 },
|
|
58
|
+
"thevidiya payale": { s: 3, c: 4 },
|
|
59
|
+
"otha pundai": { s: 5, c: 5 },
|
|
60
|
+
"baadu": { s: 3, c: 4 },
|
|
61
|
+
"loosu": { s: 1, c: 4 },
|
|
62
|
+
"enna da mayiru": { s: 3, c: 4 },
|
|
63
|
+
"graandi": { s: 3, c: 4 },
|
|
64
|
+
"kandaaala": { s: 3, c: 4 },
|
|
65
|
+
"dai pundai": { s: 5, c: 5 },
|
|
66
|
+
"kena punda": { s: 1, c: 4 },
|
|
67
|
+
"mutta punda": { s: 1, c: 4 },
|
|
68
|
+
"narakoothi": { s: 3, c: 4 },
|
|
69
|
+
"akkul thukki": { s: 3, c: 4 },
|
|
70
|
+
"pacha thevudiya": { s: 5, c: 4 },
|
|
71
|
+
"thevadiya paiya": { s: 5, c: 4 },
|
|
72
|
+
"myra": { s: 3, c: 4 },
|
|
73
|
+
"pundamavaney": { s: 4, c: 4 },
|
|
74
|
+
"sunni oombu": { s: 3, c: 4 },
|
|
75
|
+
// Common misspellings and variations
|
|
76
|
+
"oththaa": { s: 3, c: 5 },
|
|
77
|
+
"ottha": { s: 3, c: 5 },
|
|
78
|
+
"thayli": { s: 3, c: 5 },
|
|
79
|
+
"thailee": { s: 3, c: 5 },
|
|
80
|
+
"koothee": { s: 3, c: 5 },
|
|
81
|
+
"kooti": { s: 3, c: 5 },
|
|
82
|
+
"pundek": { s: 3, c: 5 },
|
|
83
|
+
"pundaik": { s: 3, c: 5 },
|
|
84
|
+
"illa pundek": { s: 5, c: 5 },
|
|
85
|
+
"thevdiya": { s: 5, c: 5 },
|
|
86
|
+
"poriki": { s: 3, c: 5 },
|
|
87
|
+
"kuthi": { s: 3, c: 5 },
|
|
88
|
+
"soothu": { s: 3, c: 5 },
|
|
89
|
+
"lavadey": { s: 4, c: 5 },
|
|
90
|
+
"lavda": { s: 4, c: 5 },
|
|
91
|
+
"sappi": { s: 3, c: 5 },
|
|
92
|
+
// Additional Tamil profanity
|
|
93
|
+
"oombu da": { s: 3, c: 4 },
|
|
94
|
+
"pundai mavanae": { s: 4, c: 4 },
|
|
95
|
+
"koothi payale": { s: 3, c: 4 },
|
|
96
|
+
"thevudiya mavan": { s: 5, c: 4 },
|
|
97
|
+
"okka": { s: 3, c: 5 },
|
|
98
|
+
"okkala": { s: 3, c: 5 },
|
|
99
|
+
"soothu nakki": { s: 3, c: 4 },
|
|
100
|
+
"poolu": { s: 4, c: 4 },
|
|
101
|
+
"poolai oombuda": { s: 4, c: 4 },
|
|
102
|
+
"kena pundai": { s: 1, c: 4 },
|
|
103
|
+
"akka koothi": { s: 4, c: 4 },
|
|
104
|
+
"amma koothi": { s: 4, c: 4 },
|
|
105
|
+
"thayoli paiyan": { s: 5, c: 5 },
|
|
106
|
+
"kevalama": { s: 3, c: 4 },
|
|
107
|
+
"olai pottan": { s: 3, c: 4 },
|
|
108
|
+
"katukutty": { s: 3, c: 4 },
|
|
109
|
+
"ammayandi": { s: 3, c: 4 },
|
|
110
|
+
"koodhi magane": { s: 5, c: 5 },
|
|
111
|
+
// Tamil script additions
|
|
112
|
+
"ஊம்பு டா": { s: 3, c: 4 },
|
|
113
|
+
"புண்டை மாவனே": { s: 3, c: 4 },
|
|
114
|
+
"கூத்தி பயலே": { s: 3, c: 4 },
|
|
115
|
+
"தேவுடிய மாவன்": { s: 3, c: 4 },
|
|
116
|
+
"சூத்து நக்கி": { s: 3, c: 4 },
|
|
117
|
+
"பூலு": { s: 3, c: 4 },
|
|
118
|
+
"அக்கா கூதி": { s: 3, c: 4 },
|
|
119
|
+
"அம்மா கூதி": { s: 3, c: 4 },
|
|
120
|
+
"கூதி மகனே": { s: 3, c: 4 },
|
|
121
|
+
// More Tamil profanity - Roman script
|
|
122
|
+
"aambala koothi": { s: 5, c: 5 },
|
|
123
|
+
"ammadi pundai": { s: 5, c: 5 },
|
|
124
|
+
"anga soothu": { s: 3, c: 4 },
|
|
125
|
+
"baadu punda": { s: 5, c: 5 },
|
|
126
|
+
"dei kena": { s: 1, c: 4 },
|
|
127
|
+
"dei punda": { s: 5, c: 5 },
|
|
128
|
+
"ennada punda": { s: 5, c: 5 },
|
|
129
|
+
"gommala": { s: 4, c: 4 },
|
|
130
|
+
"kaai": { s: 4, c: 4 },
|
|
131
|
+
"kandaarai": { s: 3, c: 5 },
|
|
132
|
+
"kazhudhai": { s: 3, c: 4 },
|
|
133
|
+
"keezhadi": { s: 3, c: 4 },
|
|
134
|
+
"kena payale": { s: 1, c: 4 },
|
|
135
|
+
"ki adi": { s: 3, c: 4 },
|
|
136
|
+
"koothichi": { s: 3, c: 4 },
|
|
137
|
+
"koodhi munda": { s: 5, c: 5 },
|
|
138
|
+
"kudikaran": { s: 1, c: 3 },
|
|
139
|
+
"kusu": { s: 3, c: 4 },
|
|
140
|
+
"kuthimagane": { s: 5, c: 5 },
|
|
141
|
+
"lavadai": { s: 4, c: 4 },
|
|
142
|
+
"lenda": { s: 4, c: 4 },
|
|
143
|
+
"maadu": { s: 3, c: 4 },
|
|
144
|
+
"mairu pudungi": { s: 3, c: 4 },
|
|
145
|
+
"mayira pudunguda": { s: 3, c: 4 },
|
|
146
|
+
"mayiru poodai": { s: 5, c: 5 },
|
|
147
|
+
"molai": { s: 4, c: 4 },
|
|
148
|
+
"moodevi": { s: 3, c: 4 },
|
|
149
|
+
"mooku oombura": { s: 3, c: 4 },
|
|
150
|
+
"myiru": { s: 3, c: 4 },
|
|
151
|
+
"na koothi": { s: 5, c: 5 },
|
|
152
|
+
"naai koodhi": { s: 5, c: 5 },
|
|
153
|
+
"naaye": { s: 3, c: 4 },
|
|
154
|
+
"narakoodhi": { s: 5, c: 5 },
|
|
155
|
+
"okkali": { s: 3, c: 5 },
|
|
156
|
+
"olmaari": { s: 3, c: 4 },
|
|
157
|
+
"ommala": { s: 3, c: 4 },
|
|
158
|
+
"ommala koothi": { s: 5, c: 5 },
|
|
159
|
+
"oor koothi": { s: 3, c: 4 },
|
|
160
|
+
"oor otha": { s: 3, c: 5 },
|
|
161
|
+
"paal kudi": { s: 3, c: 4 },
|
|
162
|
+
"pacha koothi": { s: 5, c: 5 },
|
|
163
|
+
"pachakoothi": { s: 3, c: 4 },
|
|
164
|
+
"pandi": { s: 3, c: 4 },
|
|
165
|
+
"panni": { s: 3, c: 4 },
|
|
166
|
+
"panni punda": { s: 5, c: 5 },
|
|
167
|
+
"podei": { s: 3, c: 4 },
|
|
168
|
+
"poolu sappi": { s: 4, c: 4 },
|
|
169
|
+
"pottachi": { s: 3, c: 4 },
|
|
170
|
+
"potta koothi": { s: 5, c: 5 },
|
|
171
|
+
"pullu": { s: 4, c: 4 },
|
|
172
|
+
"pundai payale": { s: 5, c: 5 },
|
|
173
|
+
"pundamavan": { s: 5, c: 5 },
|
|
174
|
+
"saathaan": { s: 3, c: 4 },
|
|
175
|
+
"sevuru": { s: 3, c: 4 },
|
|
176
|
+
"sootha moodi": { s: 3, c: 4 },
|
|
177
|
+
"soothu kolutha": { s: 3, c: 4 },
|
|
178
|
+
"soothu oombura": { s: 3, c: 4 },
|
|
179
|
+
"sunni koodhi": { s: 5, c: 5 },
|
|
180
|
+
"sunni sappi": { s: 4, c: 4 },
|
|
181
|
+
"thayir sappaan": { s: 3, c: 4 },
|
|
182
|
+
"thevadiya payale": { s: 5, c: 4 },
|
|
183
|
+
"thevadiya pasanga": { s: 5, c: 4 },
|
|
184
|
+
"thodai": { s: 3, c: 4 },
|
|
185
|
+
"thoombu": { s: 3, c: 4 },
|
|
186
|
+
"thottal": { s: 3, c: 4 },
|
|
187
|
+
"ukkaru": { s: 3, c: 4 },
|
|
188
|
+
"venna punda": { s: 5, c: 5 },
|
|
189
|
+
"vesi": { s: 5, c: 4 },
|
|
190
|
+
"vesipaya": { s: 5, c: 4 },
|
|
191
|
+
"vesikoothi": { s: 5, c: 5 },
|
|
192
|
+
// More Tamil script additions
|
|
193
|
+
"ஆம்பள கூதி": { s: 3, c: 4 },
|
|
194
|
+
"கழுதை": { s: 3, c: 4 },
|
|
195
|
+
"கூத்தி முண்ட": { s: 3, c: 4 },
|
|
196
|
+
"கூத்திச்சி": { s: 3, c: 4 },
|
|
197
|
+
"பச்ச கூதி": { s: 3, c: 4 },
|
|
198
|
+
"பன்னி": { s: 3, c: 4 },
|
|
199
|
+
"பூலு சப்பி": { s: 3, c: 4 },
|
|
200
|
+
"சூத்து மூடு": { s: 3, c: 4 },
|
|
201
|
+
"சூத்து ஊம்பு": { s: 3, c: 4 },
|
|
202
|
+
"சுன்னி சப்பி": { s: 3, c: 4 },
|
|
203
|
+
"தேவடியா பசங்க": { s: 3, c: 4 },
|
|
204
|
+
"வேசி": { s: 5, c: 4 },
|
|
205
|
+
"வேசிபய": { s: 3, c: 4 },
|
|
206
|
+
"ஓக்கலி": { s: 3, c: 4 },
|
|
207
|
+
"ஊர் கூத்தி": { s: 3, c: 4 },
|
|
208
|
+
"ஒம்மால கூத்தி": { s: 3, c: 4 },
|
|
209
|
+
"நாய்க்கூதி": { s: 3, c: 4 },
|
|
210
|
+
"மயிரு புடுங்குடா": { s: 3, c: 4 },
|
|
211
|
+
"மூடேவி": { s: 3, c: 4 },
|
|
212
|
+
// ========================================
|
|
213
|
+
// === Extended Tamil Profanity (Roman) ===
|
|
214
|
+
// ========================================
|
|
215
|
+
"aambala soothu": { s: 3, c: 4 },
|
|
216
|
+
"adi otha": { s: 3, c: 5 },
|
|
217
|
+
"akka pundai": { s: 5, c: 5 },
|
|
218
|
+
"akka soothu": { s: 3, c: 4 },
|
|
219
|
+
"ammadi soothu": { s: 3, c: 4 },
|
|
220
|
+
"amma oombu": { s: 3, c: 4 },
|
|
221
|
+
"amma pundai otha": { s: 5, c: 5 },
|
|
222
|
+
"anga pundai": { s: 5, c: 5 },
|
|
223
|
+
"anna koothi": { s: 5, c: 5 },
|
|
224
|
+
"asingam": { s: 1, c: 4 },
|
|
225
|
+
"avala otha": { s: 3, c: 5 },
|
|
226
|
+
"baadu koothi": { s: 5, c: 5 },
|
|
227
|
+
"baadu soothu": { s: 3, c: 4 },
|
|
228
|
+
"baadu sunni": { s: 4, c: 4 },
|
|
229
|
+
"chee koothi": { s: 5, c: 5 },
|
|
230
|
+
"chinna punda": { s: 5, c: 5 },
|
|
231
|
+
"chinna sunni": { s: 4, c: 4 },
|
|
232
|
+
"dei koothi": { s: 5, c: 5 },
|
|
233
|
+
"dei soothu": { s: 3, c: 4 },
|
|
234
|
+
"enna koothi": { s: 5, c: 5 },
|
|
235
|
+
"enna soothu": { s: 3, c: 4 },
|
|
236
|
+
"gommala udai": { s: 4, c: 4 },
|
|
237
|
+
"irumbu sunni": { s: 4, c: 4 },
|
|
238
|
+
"kai adi": { s: 4, c: 4 },
|
|
239
|
+
"kari koothi": { s: 5, c: 5 },
|
|
240
|
+
"kari sunni": { s: 4, c: 4 },
|
|
241
|
+
"kazhudhai punda": { s: 5, c: 5 },
|
|
242
|
+
"kazhudhai soothu": { s: 3, c: 4 },
|
|
243
|
+
"keezhtharam": { s: 3, c: 4 },
|
|
244
|
+
"konju punda": { s: 5, c: 5 },
|
|
245
|
+
"koothimagal": { s: 5, c: 5 },
|
|
246
|
+
"koothi mairu": { s: 5, c: 5 },
|
|
247
|
+
"koothi munda sappi": { s: 5, c: 5 },
|
|
248
|
+
"koothi nakki": { s: 5, c: 5 },
|
|
249
|
+
"koothi odanji": { s: 5, c: 5 },
|
|
250
|
+
"koothi sappi": { s: 5, c: 5 },
|
|
251
|
+
"kudimagan": { s: 1, c: 3 },
|
|
252
|
+
"kunju sunni": { s: 4, c: 4 },
|
|
253
|
+
"kuppai koothi": { s: 5, c: 5 },
|
|
254
|
+
"kuppai punda": { s: 5, c: 5 },
|
|
255
|
+
"lavadai sappi": { s: 4, c: 4 },
|
|
256
|
+
"mairu punda": { s: 5, c: 5 },
|
|
257
|
+
"mairu soothu": { s: 3, c: 4 },
|
|
258
|
+
"mama punda": { s: 5, c: 5 },
|
|
259
|
+
"mamanar soothu": { s: 1, c: 4 },
|
|
260
|
+
"mandi koothi": { s: 5, c: 5 },
|
|
261
|
+
"mandi soothu": { s: 3, c: 4 },
|
|
262
|
+
"mayiru koothi": { s: 5, c: 5 },
|
|
263
|
+
"mayiru sappi": { s: 3, c: 4 },
|
|
264
|
+
"modha koothi": { s: 1, c: 4 },
|
|
265
|
+
"molai paal": { s: 4, c: 4 },
|
|
266
|
+
"molai sappi": { s: 4, c: 4 },
|
|
267
|
+
"motta punda": { s: 5, c: 5 },
|
|
268
|
+
"motta soothu": { s: 3, c: 4 },
|
|
269
|
+
"muttaa punda": { s: 1, c: 4 },
|
|
270
|
+
"muttaal koothi": { s: 1, c: 4 },
|
|
271
|
+
"myre": { s: 3, c: 4 },
|
|
272
|
+
"na punda": { s: 5, c: 5 },
|
|
273
|
+
"na soothu": { s: 3, c: 4 },
|
|
274
|
+
"naai oombu": { s: 3, c: 4 },
|
|
275
|
+
"naai punda": { s: 5, c: 5 },
|
|
276
|
+
"naai soothu": { s: 3, c: 4 },
|
|
277
|
+
"naai sunni": { s: 4, c: 4 },
|
|
278
|
+
"naaye poda": { s: 3, c: 4 },
|
|
279
|
+
"okkali sunni": { s: 4, c: 5 },
|
|
280
|
+
"ommala pundai": { s: 5, c: 5 },
|
|
281
|
+
"ommala soothu": { s: 3, c: 4 },
|
|
282
|
+
"oor baadu": { s: 3, c: 4 },
|
|
283
|
+
"oor punda": { s: 5, c: 5 },
|
|
284
|
+
"oor vesi": { s: 5, c: 4 },
|
|
285
|
+
"oor vesikoothi": { s: 5, c: 5 },
|
|
286
|
+
"otha da": { s: 3, c: 5 },
|
|
287
|
+
"otha di": { s: 3, c: 5 },
|
|
288
|
+
"otha koothi": { s: 5, c: 5 },
|
|
289
|
+
"otha loosu": { s: 3, c: 5 },
|
|
290
|
+
"otha myre": { s: 3, c: 5 },
|
|
291
|
+
"otha poda": { s: 3, c: 5 },
|
|
292
|
+
"otha soothu": { s: 3, c: 5 },
|
|
293
|
+
"oththa": { s: 3, c: 5 },
|
|
294
|
+
"oththa punda": { s: 5, c: 5 },
|
|
295
|
+
"pacha punda": { s: 5, c: 5 },
|
|
296
|
+
"pacha soothu": { s: 3, c: 4 },
|
|
297
|
+
"pacha vesi": { s: 5, c: 4 },
|
|
298
|
+
"pandi punda": { s: 5, c: 5 },
|
|
299
|
+
"pandi soothu": { s: 3, c: 4 },
|
|
300
|
+
"panni oombu": { s: 3, c: 4 },
|
|
301
|
+
"pathu koothi": { s: 5, c: 5 },
|
|
302
|
+
"pathu sunni": { s: 4, c: 4 },
|
|
303
|
+
"pee koothi": { s: 5, c: 5 },
|
|
304
|
+
"periya koothi": { s: 5, c: 5 },
|
|
305
|
+
"periya punda": { s: 5, c: 5 },
|
|
306
|
+
"periya soothu": { s: 3, c: 4 },
|
|
307
|
+
"periya sunni": { s: 4, c: 4 },
|
|
308
|
+
"podei da": { s: 3, c: 4 },
|
|
309
|
+
"podei di": { s: 3, c: 4 },
|
|
310
|
+
"poolu oombu": { s: 4, c: 4 },
|
|
311
|
+
"poolu thattu": { s: 4, c: 4 },
|
|
312
|
+
"poolu udai": { s: 4, c: 4 },
|
|
313
|
+
"pudungu sunni": { s: 4, c: 4 },
|
|
314
|
+
"pullu oombu": { s: 4, c: 4 },
|
|
315
|
+
"pullu sappi": { s: 4, c: 4 },
|
|
316
|
+
"puluthee": { s: 3, c: 4 },
|
|
317
|
+
"pundai adi": { s: 5, c: 5 },
|
|
318
|
+
"pundai koothi": { s: 5, c: 5 },
|
|
319
|
+
"pundai mairu": { s: 5, c: 5 },
|
|
320
|
+
"pundai nakki": { s: 5, c: 5 },
|
|
321
|
+
"pundai odai": { s: 5, c: 5 },
|
|
322
|
+
"pundai thattu": { s: 5, c: 5 },
|
|
323
|
+
"sappi da": { s: 3, c: 4 },
|
|
324
|
+
"sappi di": { s: 3, c: 4 },
|
|
325
|
+
"semma koothi": { s: 5, c: 5 },
|
|
326
|
+
"semma punda": { s: 5, c: 5 },
|
|
327
|
+
"sevaru koothi": { s: 5, c: 5 },
|
|
328
|
+
"sinna punda": { s: 5, c: 5 },
|
|
329
|
+
"soothu adi": { s: 3, c: 4 },
|
|
330
|
+
"soothu koothi": { s: 5, c: 5 },
|
|
331
|
+
"soothu mairu": { s: 3, c: 4 },
|
|
332
|
+
"soothu mara": { s: 3, c: 4 },
|
|
333
|
+
"soothu sappi": { s: 3, c: 4 },
|
|
334
|
+
"soothu thattu": { s: 3, c: 4 },
|
|
335
|
+
"sunni adi": { s: 4, c: 4 },
|
|
336
|
+
"sunni koothi mavan": { s: 5, c: 5 },
|
|
337
|
+
"sunni mavan": { s: 4, c: 4 },
|
|
338
|
+
"sunni poolu": { s: 4, c: 4 },
|
|
339
|
+
"sunni thattu": { s: 4, c: 4 },
|
|
340
|
+
"sunni udai": { s: 4, c: 4 },
|
|
341
|
+
"thaayoli paiyan": { s: 5, c: 5 },
|
|
342
|
+
"thanni koothi": { s: 5, c: 5 },
|
|
343
|
+
"thanni punda": { s: 5, c: 5 },
|
|
344
|
+
"thayoli batch": { s: 5, c: 5 },
|
|
345
|
+
"thayoli koothi": { s: 5, c: 5 },
|
|
346
|
+
"thayoli punda": { s: 5, c: 5 },
|
|
347
|
+
"thevadiya batch": { s: 5, c: 4 },
|
|
348
|
+
"thevadiya koothi": { s: 5, c: 5 },
|
|
349
|
+
"thevadiya punda": { s: 5, c: 5 },
|
|
350
|
+
"thevadiya soothu": { s: 5, c: 4 },
|
|
351
|
+
"thevadiya sunni": { s: 5, c: 4 },
|
|
352
|
+
"thoo koothi": { s: 5, c: 5 },
|
|
353
|
+
"thookku sunni": { s: 4, c: 4 },
|
|
354
|
+
"venna koothi": { s: 5, c: 5 },
|
|
355
|
+
"vesi batch": { s: 5, c: 4 },
|
|
356
|
+
"vesi koothi": { s: 5, c: 5 },
|
|
357
|
+
"vesi mavan": { s: 5, c: 4 },
|
|
358
|
+
"vesi punda": { s: 5, c: 5 },
|
|
359
|
+
"vesi soothu": { s: 5, c: 4 },
|
|
360
|
+
// ========================================
|
|
361
|
+
// === Madras Bashai (Slang) ===
|
|
362
|
+
// ========================================
|
|
363
|
+
"figure otha": { s: 3, c: 5 },
|
|
364
|
+
"galeej": { s: 3, c: 4 },
|
|
365
|
+
"galatta punda": { s: 5, c: 5 },
|
|
366
|
+
"goiyala": { s: 4, c: 4 },
|
|
367
|
+
"gumbal koothi": { s: 5, c: 5 },
|
|
368
|
+
"item koothi": { s: 5, c: 5 },
|
|
369
|
+
"jollu viduradhu": { s: 3, c: 4 },
|
|
370
|
+
"kattapunda": { s: 5, c: 5 },
|
|
371
|
+
"kettavan": { s: 3, c: 4 },
|
|
372
|
+
"kettava": { s: 3, c: 4 },
|
|
373
|
+
"kodumai koothi": { s: 5, c: 5 },
|
|
374
|
+
"kuppam punda": { s: 5, c: 5 },
|
|
375
|
+
"loosu koothi": { s: 5, c: 5 },
|
|
376
|
+
"loosu punda": { s: 5, c: 5 },
|
|
377
|
+
"mokka punda": { s: 5, c: 5 },
|
|
378
|
+
"naatukoothi": { s: 5, c: 5 },
|
|
379
|
+
"olu podra": { s: 3, c: 4 },
|
|
380
|
+
"settai koothi": { s: 5, c: 5 },
|
|
381
|
+
"somberi koothi": { s: 5, c: 5 },
|
|
382
|
+
"thara local koothi": { s: 5, c: 5 },
|
|
383
|
+
"waste koothi": { s: 5, c: 5 },
|
|
384
|
+
// ========================================
|
|
385
|
+
// === Sri Lankan Tamil Profanity ===
|
|
386
|
+
// ========================================
|
|
387
|
+
"hutti punda": { s: 1, c: 4 },
|
|
388
|
+
"kundi": { s: 3, c: 4 },
|
|
389
|
+
"kundi adi": { s: 3, c: 4 },
|
|
390
|
+
"modda": { s: 4, c: 4 },
|
|
391
|
+
"moddai oombu": { s: 4, c: 4 },
|
|
392
|
+
"ponnaya": { s: 3, c: 4 },
|
|
393
|
+
"pundai vettu": { s: 5, c: 5 },
|
|
394
|
+
"salli vesi": { s: 5, c: 4 },
|
|
395
|
+
"sunni vetti": { s: 4, c: 4 },
|
|
396
|
+
"thambiya punda": { s: 5, c: 5 },
|
|
397
|
+
"umbala kundi": { s: 3, c: 4 },
|
|
398
|
+
// ========================================
|
|
399
|
+
// === Malaysian Tamil Profanity ===
|
|
400
|
+
// ========================================
|
|
401
|
+
"bodoh punda": { s: 1, c: 4 },
|
|
402
|
+
"dei pundek": { s: 5, c: 5 },
|
|
403
|
+
"keling koothi": { s: 5, c: 5 },
|
|
404
|
+
"machan punda": { s: 5, c: 5 },
|
|
405
|
+
"mabuk koothi": { s: 1, c: 3 },
|
|
406
|
+
"pukimak": { s: 5, c: 5 },
|
|
407
|
+
"pundek amma": { s: 5, c: 5 },
|
|
408
|
+
"sial pundek": { s: 5, c: 5 },
|
|
409
|
+
"thayoli pundek": { s: 5, c: 5 },
|
|
410
|
+
"thambi pundek": { s: 5, c: 5 },
|
|
411
|
+
// ========================================
|
|
412
|
+
// === More Tamil Script Additions ===
|
|
413
|
+
// ========================================
|
|
414
|
+
"ஆம்பள சூத்து": { s: 3, c: 4 },
|
|
415
|
+
"அக்கா புண்டை": { s: 3, c: 4 },
|
|
416
|
+
"அக்கா சூத்து": { s: 3, c: 4 },
|
|
417
|
+
"அம்மா ஊம்பு": { s: 3, c: 4 },
|
|
418
|
+
"அவள ஓத்தா": { s: 3, c: 4 },
|
|
419
|
+
"சின்ன புண்ட": { s: 3, c: 4 },
|
|
420
|
+
"சின்ன சுன்னி": { s: 3, c: 4 },
|
|
421
|
+
"என்ன கூத்தி": { s: 3, c: 4 },
|
|
422
|
+
"கழுதை புண்ட": { s: 3, c: 4 },
|
|
423
|
+
"கூத்தி மகள்": { s: 3, c: 4 },
|
|
424
|
+
"கூத்தி மயிரு": { s: 3, c: 4 },
|
|
425
|
+
"கூத்தி நக்கி": { s: 3, c: 4 },
|
|
426
|
+
"கூத்தி சப்பி": { s: 3, c: 4 },
|
|
427
|
+
"குப்பை கூத்தி": { s: 3, c: 4 },
|
|
428
|
+
"மயிரு கூத்தி": { s: 3, c: 4 },
|
|
429
|
+
"மொலை சப்பி": { s: 3, c: 4 },
|
|
430
|
+
"முட்டா புண்ட": { s: 3, c: 4 },
|
|
431
|
+
"நாய் புண்ட": { s: 3, c: 4 },
|
|
432
|
+
"நாய் சூத்து": { s: 3, c: 4 },
|
|
433
|
+
"நாய் சுன்னி": { s: 3, c: 4 },
|
|
434
|
+
"ஒத்தா டா": { s: 3, c: 4 },
|
|
435
|
+
"ஒத்தா டி": { s: 3, c: 4 },
|
|
436
|
+
"பச்ச வேசி": { s: 3, c: 4 },
|
|
437
|
+
"பன்னி புண்ட": { s: 3, c: 4 },
|
|
438
|
+
"பெரிய கூத்தி": { s: 3, c: 4 },
|
|
439
|
+
"பெரிய சுன்னி": { s: 3, c: 4 },
|
|
440
|
+
"பூலு ஊம்பு": { s: 3, c: 4 },
|
|
441
|
+
"புண்டை அடி": { s: 3, c: 4 },
|
|
442
|
+
"புண்டை நக்கி": { s: 3, c: 4 },
|
|
443
|
+
"சப்பி டா": { s: 3, c: 4 },
|
|
444
|
+
"செம்ம கூத்தி": { s: 3, c: 4 },
|
|
445
|
+
"சூத்து அடி": { s: 3, c: 4 },
|
|
446
|
+
"சூத்து சப்பி": { s: 3, c: 4 },
|
|
447
|
+
"சுன்னி அடி": { s: 3, c: 4 },
|
|
448
|
+
"சுன்னி மாவன்": { s: 3, c: 4 },
|
|
449
|
+
"தாயோளி பண்ட": { s: 3, c: 4 },
|
|
450
|
+
"தேவடியா சூத்து": { s: 3, c: 4 },
|
|
451
|
+
"வேசி பண்ட": { s: 3, c: 4 },
|
|
452
|
+
"வேசி சூத்து": { s: 3, c: 4 },
|
|
453
|
+
"வேசி மாவன்": { s: 3, c: 4 },
|
|
454
|
+
"போன்னாய": { s: 3, c: 4 },
|
|
455
|
+
"குண்டி": { s: 3, c: 4 },
|
|
456
|
+
// ========================================
|
|
457
|
+
// === Tamil Internet Slang ===
|
|
458
|
+
// ========================================
|
|
459
|
+
"otha myr": { s: 3, c: 5 },
|
|
460
|
+
"koodhi mgne": { s: 5, c: 5 },
|
|
461
|
+
"tvdya": { s: 2, c: 3 },
|
|
462
|
+
"thyoli": { s: 2, c: 3 },
|
|
463
|
+
"othmyr": { s: 2, c: 3 },
|
|
464
|
+
"myru": { s: 2, c: 3 },
|
|
465
|
+
"pnda": { s: 2, c: 3 },
|
|
466
|
+
"snni": { s: 2, c: 3 },
|
|
467
|
+
"sthu": { s: 2, c: 3 },
|
|
468
|
+
"kthi": { s: 2, c: 3 },
|
|
469
|
+
"dei othmyr": { s: 3, c: 5 },
|
|
470
|
+
"aama kthi": { s: 5, c: 5 },
|
|
471
|
+
// ========================================
|
|
472
|
+
// === More Romanized Tamil Profanity ===
|
|
473
|
+
// ========================================
|
|
474
|
+
"aambala pundai": { s: 5, c: 5 },
|
|
475
|
+
"akka sunni": { s: 4, c: 5 },
|
|
476
|
+
"amma poolai oombu": { s: 4, c: 5 },
|
|
477
|
+
"amma soothu otha": { s: 3, c: 5 },
|
|
478
|
+
"anga sunni": { s: 4, c: 5 },
|
|
479
|
+
"anna punda": { s: 5, c: 5 },
|
|
480
|
+
"anna soothu": { s: 3, c: 5 },
|
|
481
|
+
"appan koothi": { s: 1, c: 5 },
|
|
482
|
+
"appan soothu": { s: 1, c: 5 },
|
|
483
|
+
"avana otha": { s: 3, c: 5 },
|
|
484
|
+
"avanuku sunni illa": { s: 4, c: 5 },
|
|
485
|
+
"avaluku pudikum sunni": { s: 4, c: 5 },
|
|
486
|
+
"baadu mayiru": { s: 3, c: 5 },
|
|
487
|
+
"chee mayiru": { s: 3, c: 5 },
|
|
488
|
+
"chinna mayiru": { s: 3, c: 5 },
|
|
489
|
+
"dei kena baadu": { s: 1, c: 5 },
|
|
490
|
+
"dei poolai oombu": { s: 4, c: 5 },
|
|
491
|
+
"dei venna sunni": { s: 4, c: 5 },
|
|
492
|
+
"ennada soothu": { s: 3, c: 5 },
|
|
493
|
+
"galeej koothi": { s: 5, c: 5 },
|
|
494
|
+
"irumbu koothi": { s: 5, c: 5 },
|
|
495
|
+
"kaai udai": { s: 4, c: 5 },
|
|
496
|
+
"kaai oombu": { s: 4, c: 5 },
|
|
497
|
+
"kai adippa": { s: 4, c: 5 },
|
|
498
|
+
"kandaarai koothi": { s: 5, c: 5 },
|
|
499
|
+
"kari baadu": { s: 3, c: 5 },
|
|
500
|
+
"kari mayiru": { s: 3, c: 5 },
|
|
501
|
+
"kattai koothi": { s: 5, c: 5 },
|
|
502
|
+
"keezh taram koothi": { s: 5, c: 5 },
|
|
503
|
+
"kena koothi": { s: 1, c: 5 },
|
|
504
|
+
"kena mayiru": { s: 1, c: 5 },
|
|
505
|
+
"kena soothu": { s: 1, c: 5 },
|
|
506
|
+
"kodumai soothu": { s: 3, c: 5 },
|
|
507
|
+
"koothi mooku": { s: 5, c: 5 },
|
|
508
|
+
"koothi vaai": { s: 5, c: 5 },
|
|
509
|
+
"koothi vesam": { s: 5, c: 5 },
|
|
510
|
+
"kuppai mayiru": { s: 3, c: 5 },
|
|
511
|
+
"kuppai soothu": { s: 3, c: 5 },
|
|
512
|
+
"kuppai sunni": { s: 4, c: 5 },
|
|
513
|
+
"loosu mayiru": { s: 3, c: 5 },
|
|
514
|
+
"loosu soothu": { s: 3, c: 5 },
|
|
515
|
+
"loosu sunni": { s: 4, c: 5 },
|
|
516
|
+
"maadu koothi": { s: 5, c: 5 },
|
|
517
|
+
"maadu soothu": { s: 3, c: 5 },
|
|
518
|
+
"maadu sunni": { s: 4, c: 5 },
|
|
519
|
+
"mairu odanji": { s: 3, c: 5 },
|
|
520
|
+
"mairu veri": { s: 3, c: 5 },
|
|
521
|
+
"mama koothi": { s: 5, c: 5 },
|
|
522
|
+
"mama soothu": { s: 3, c: 5 },
|
|
523
|
+
"mandi punda": { s: 5, c: 5 },
|
|
524
|
+
"mandi sunni": { s: 4, c: 5 },
|
|
525
|
+
"mayiru koothi vesi": { s: 5, c: 5 },
|
|
526
|
+
"modha punda": { s: 1, c: 5 },
|
|
527
|
+
"modha soothu": { s: 1, c: 5 },
|
|
528
|
+
"modha sunni": { s: 1, c: 5 },
|
|
529
|
+
"molai oombu": { s: 4, c: 5 },
|
|
530
|
+
"motta koothi": { s: 5, c: 5 },
|
|
531
|
+
"motta mayiru": { s: 1, c: 5 },
|
|
532
|
+
"mottai koothi": { s: 5, c: 5 },
|
|
533
|
+
"motta sunni": { s: 4, c: 5 },
|
|
534
|
+
"mooku koothi": { s: 5, c: 5 },
|
|
535
|
+
"muttaa soothu": { s: 1, c: 5 },
|
|
536
|
+
"muttaa sunni": { s: 1, c: 5 },
|
|
537
|
+
"naai koothi": { s: 5, c: 5 },
|
|
538
|
+
"naai mayiru": { s: 3, c: 5 },
|
|
539
|
+
"naaiye oombu da": { s: 3, c: 5 },
|
|
540
|
+
"naai koothi magane": { s: 5, c: 5 },
|
|
541
|
+
"oor mayiru": { s: 3, c: 5 },
|
|
542
|
+
"oor soothu": { s: 3, c: 5 },
|
|
543
|
+
"oor sunni": { s: 4, c: 5 },
|
|
544
|
+
"oru koothi kooda kidaiyathu": { s: 5, c: 5 },
|
|
545
|
+
"otha poolai": { s: 4, c: 5 },
|
|
546
|
+
"otha sunni": { s: 4, c: 5 },
|
|
547
|
+
"oththa koothi": { s: 5, c: 5 },
|
|
548
|
+
"othmyr koothi": { s: 5, c: 5 },
|
|
549
|
+
"pacha mayiru": { s: 3, c: 5 },
|
|
550
|
+
"pacha sunni": { s: 4, c: 5 },
|
|
551
|
+
"pandi koothi": { s: 5, c: 5 },
|
|
552
|
+
"pandi mayiru": { s: 3, c: 5 },
|
|
553
|
+
"pandi sunni": { s: 4, c: 5 },
|
|
554
|
+
"panni koothi": { s: 5, c: 5 },
|
|
555
|
+
"panni mayiru": { s: 3, c: 5 },
|
|
556
|
+
"panni sunni": { s: 4, c: 5 },
|
|
557
|
+
"panni soothu": { s: 3, c: 5 },
|
|
558
|
+
"pee soothu": { s: 3, c: 5 },
|
|
559
|
+
"pee sunni": { s: 4, c: 5 },
|
|
560
|
+
"periya mayiru": { s: 3, c: 5 },
|
|
561
|
+
"poolu koothi": { s: 5, c: 5 },
|
|
562
|
+
"poolu mayiru": { s: 4, c: 5 },
|
|
563
|
+
"poolu soothu": { s: 4, c: 5 },
|
|
564
|
+
"pottai koothi": { s: 5, c: 5 },
|
|
565
|
+
"pottai sunni": { s: 4, c: 5 },
|
|
566
|
+
"pundai oombu": { s: 5, c: 5 },
|
|
567
|
+
"pundai sappi": { s: 5, c: 5 },
|
|
568
|
+
"pundai vedikkai": { s: 5, c: 5 },
|
|
569
|
+
"sappi sappi": { s: 3, c: 5 },
|
|
570
|
+
// ========================================
|
|
571
|
+
// === Tanglish (Tamil-English Mix) Profanity ===
|
|
572
|
+
// ========================================
|
|
573
|
+
"fucking otha": { s: 3, c: 5 },
|
|
574
|
+
"bloody koothi": { s: 5, c: 5 },
|
|
575
|
+
"damn thevidiya": { s: 5, c: 4 },
|
|
576
|
+
"fucking punda": { s: 5, c: 5 },
|
|
577
|
+
"shit mayiru": { s: 3, c: 5 },
|
|
578
|
+
"asshole soothu": { s: 3, c: 4 },
|
|
579
|
+
"bastard thevidiya paiyan": { s: 3, c: 4 },
|
|
580
|
+
"bitch koothi": { s: 5, c: 5 },
|
|
581
|
+
"son of a thevidiya": { s: 5, c: 4 },
|
|
582
|
+
"stupid muttaal": { s: 1, c: 4 },
|
|
583
|
+
"shut up koothi": { s: 5, c: 5 },
|
|
584
|
+
"fuck off otha": { s: 3, c: 5 },
|
|
585
|
+
"die da koothi": { s: 5, c: 5 },
|
|
586
|
+
"ugly koothi": { s: 1, c: 4 },
|
|
587
|
+
"cheap vesi": { s: 5, c: 4 },
|
|
588
|
+
"dirty soothu": { s: 3, c: 4 },
|
|
589
|
+
"loser punda": { s: 1, c: 4 },
|
|
590
|
+
"idiot muttaal": { s: 1, c: 4 },
|
|
591
|
+
"useless waste": { s: 3, c: 4 },
|
|
592
|
+
"disgusting punda": { s: 5, c: 5 },
|
|
593
|
+
"pathetic mayiru": { s: 3, c: 4 },
|
|
594
|
+
"bloody vesi": { s: 5, c: 4 },
|
|
595
|
+
"fucking sunni": { s: 4, c: 5 },
|
|
596
|
+
"go to hell otha": { s: 3, c: 5 },
|
|
597
|
+
"mother fucker thayoli": { s: 5, c: 5 },
|
|
598
|
+
"bloody thayoli": { s: 5, c: 5 },
|
|
599
|
+
"shut your koothi mouth": { s: 5, c: 5 },
|
|
600
|
+
"piece of shit punda": { s: 5, c: 5 },
|
|
601
|
+
// ========================================
|
|
602
|
+
// === More Compound Insults ===
|
|
603
|
+
// ========================================
|
|
604
|
+
"thevidiya paiyan otha": { s: 5, c: 5 },
|
|
605
|
+
"koothi magane otha": { s: 5, c: 5 },
|
|
606
|
+
"thayoli paiyan koothi": { s: 5, c: 5 },
|
|
607
|
+
"otha punda koothi": { s: 5, c: 5 },
|
|
608
|
+
"naai koothi thevidiya": { s: 5, c: 5 },
|
|
609
|
+
"panni punda otha": { s: 5, c: 5 },
|
|
610
|
+
"vesi koothi mayiru": { s: 5, c: 5 },
|
|
611
|
+
"thevidiya soothu koothi": { s: 5, c: 5 },
|
|
612
|
+
"otha da thevidiya paiyan": { s: 5, c: 5 },
|
|
613
|
+
"oombu da sunni koothi": { s: 5, c: 5 },
|
|
614
|
+
"sappi da koothi mayiru": { s: 5, c: 5 },
|
|
615
|
+
"naai koothi vesi punda": { s: 5, c: 5 },
|
|
616
|
+
"panni sunni koothi otha": { s: 5, c: 5 },
|
|
617
|
+
"otha loosu koothi mayiru": { s: 5, c: 5 },
|
|
618
|
+
"thayoli batch koothi": { s: 5, c: 5 },
|
|
619
|
+
"thevidiya koothi mayiru otha": { s: 5, c: 5 },
|
|
620
|
+
"akka pundai otha": { s: 5, c: 5 },
|
|
621
|
+
"amma koothi otha da": { s: 5, c: 5 },
|
|
622
|
+
"ommala koothi mayiru otha": { s: 5, c: 5 },
|
|
623
|
+
"oor koothi vesi punda": { s: 5, c: 5 },
|
|
624
|
+
// ========================================
|
|
625
|
+
// === More Tamil Script Additions ===
|
|
626
|
+
// ========================================
|
|
627
|
+
"அப்பன் கூத்தி": { s: 1, c: 4 },
|
|
628
|
+
"அப்பன் சூத்து": { s: 1, c: 4 },
|
|
629
|
+
"அவன ஓத்தா": { s: 3, c: 5 },
|
|
630
|
+
"கை அடிப்ப": { s: 4, c: 4 },
|
|
631
|
+
"கணக்காரி கூத்தி": { s: 5, c: 5 },
|
|
632
|
+
"கரி பாடு": { s: 3, c: 4 },
|
|
633
|
+
"கூத்தி வாய்": { s: 5, c: 5 },
|
|
634
|
+
"கூத்தி மூக்கு": { s: 5, c: 5 },
|
|
635
|
+
"குப்பை சுன்னி": { s: 4, c: 4 },
|
|
636
|
+
"லூசு சுன்னி": { s: 4, c: 4 },
|
|
637
|
+
"மாடு கூத்தி": { s: 5, c: 5 },
|
|
638
|
+
"மாமா கூத்தி": { s: 5, c: 5 },
|
|
639
|
+
"மொட்ட கூத்தி": { s: 5, c: 5 },
|
|
640
|
+
"நாய் மயிரு": { s: 3, c: 4 },
|
|
641
|
+
"ஊர் மயிரு": { s: 3, c: 4 },
|
|
642
|
+
"பச்ச சுன்னி": { s: 4, c: 4 },
|
|
643
|
+
"பன்னி கூத்தி": { s: 5, c: 5 },
|
|
644
|
+
"பன்னி மயிரு": { s: 3, c: 4 },
|
|
645
|
+
"பன்னி சுன்னி": { s: 4, c: 4 },
|
|
646
|
+
"பூ சூத்து": { s: 3, c: 5 },
|
|
647
|
+
"பெரிய மயிரு": { s: 3, c: 4 },
|
|
648
|
+
"பூலு கூத்தி": { s: 5, c: 5 },
|
|
649
|
+
"பொட்டை சுன்னி": { s: 4, c: 4 },
|
|
650
|
+
"புண்டை வெடிக்கை": { s: 5, c: 5 },
|
|
651
|
+
"தேவடியா சுன்னி": { s: 5, c: 4 },
|
|
652
|
+
"வேசி மயிரு": { s: 5, c: 4 },
|
|
653
|
+
"நாய் கூத்தி மகனே": { s: 5, c: 5 },
|
|
654
|
+
"தாயோளி பிண்ட கூத்தி": { s: 5, c: 5 },
|
|
655
|
+
"ஒத்தா டா தேவடியா பையன்": { s: 5, c: 5 },
|
|
656
|
+
"ஊம்பு டா சுன்னி கூத்தி": { s: 5, c: 5 },
|
|
657
|
+
"நாய் கூத்தி வேசி புண்ட": { s: 5, c: 5 },
|
|
658
|
+
"பன்னி சுன்னி கூத்தி ஓத்தா": { s: 5, c: 5 },
|
|
659
|
+
"ஊர் கூத்தி வேசி புண்ட": { s: 5, c: 5 },
|
|
660
|
+
"அக்கா புண்டை ஓத்தா": { s: 5, c: 5 },
|
|
661
|
+
// ========================================
|
|
662
|
+
// === Kongu Tamil Dialect ===
|
|
663
|
+
// ========================================
|
|
664
|
+
"koothadi": { s: 5, c: 5 },
|
|
665
|
+
"punda vazhinjirukku": { s: 5, c: 5 },
|
|
666
|
+
"sunni thattu da": { s: 4, c: 4 },
|
|
667
|
+
"oombu di soothu": { s: 3, c: 4 },
|
|
668
|
+
"okkara myre": { s: 3, c: 4 },
|
|
669
|
+
"poola oombura": { s: 4, c: 4 },
|
|
670
|
+
"koothi vaari": { s: 5, c: 5 },
|
|
671
|
+
"punda kalaichi": { s: 5, c: 5 },
|
|
672
|
+
"soothu vedichi": { s: 3, c: 4 },
|
|
673
|
+
// ========================================
|
|
674
|
+
// === Madurai Dialect ===
|
|
675
|
+
// ========================================
|
|
676
|
+
"koothi na": { s: 5, c: 5 },
|
|
677
|
+
"punda polappa": { s: 5, c: 5 },
|
|
678
|
+
"mayiru da polappa": { s: 3, c: 4 },
|
|
679
|
+
"sunni koothi polappa": { s: 5, c: 5 },
|
|
680
|
+
"otha polappa": { s: 3, c: 5 },
|
|
681
|
+
"soothu polappa": { s: 3, c: 4 },
|
|
682
|
+
"dei punda polappa": { s: 5, c: 5 },
|
|
683
|
+
"thevidiya polappa": { s: 5, c: 4 },
|
|
684
|
+
"naaye polappa": { s: 3, c: 4 },
|
|
685
|
+
// ========================================
|
|
686
|
+
// === Singapore Tamil Profanity ===
|
|
687
|
+
// ========================================
|
|
688
|
+
"kaneh pundai": { s: 1, c: 4 },
|
|
689
|
+
"machan koothi": { s: 5, c: 5 },
|
|
690
|
+
"thambi sunni": { s: 4, c: 4 },
|
|
691
|
+
"bodoh otha": { s: 1, c: 4 },
|
|
692
|
+
"sial otha": { s: 3, c: 5 },
|
|
693
|
+
"knn pundek": { s: 5, c: 5 },
|
|
694
|
+
"pundek neh": { s: 5, c: 5 },
|
|
695
|
+
"mayiru neh": { s: 3, c: 4 },
|
|
696
|
+
// ========================================
|
|
697
|
+
// === More Internet/Texting Abbreviations ===
|
|
698
|
+
// ========================================
|
|
699
|
+
"otha myr da": { s: 3, c: 5 },
|
|
700
|
+
"tvdya pyn": { s: 2, c: 3 },
|
|
701
|
+
"kthimgn": { s: 2, c: 3 },
|
|
702
|
+
"snni ombu": { s: 2, c: 3 },
|
|
703
|
+
"sthu nkki": { s: 2, c: 3 },
|
|
704
|
+
"pndai nkki": { s: 2, c: 3 },
|
|
705
|
+
"otha kth myr": { s: 2, c: 3 },
|
|
706
|
+
"dei othmyr kth": { s: 2, c: 3 },
|
|
707
|
+
"tvdya sthu": { s: 2, c: 3 },
|
|
708
|
+
"vsi kth": { s: 2, c: 3 },
|
|
709
|
+
"pnni kth": { s: 2, c: 3 },
|
|
710
|
+
"otha lsu": { s: 2, c: 3 },
|
|
711
|
+
"nai pnda": { s: 2, c: 3 },
|
|
712
|
+
// ========================================
|
|
713
|
+
// === Extended Tamil Script Profanity ===
|
|
714
|
+
// ========================================
|
|
715
|
+
"சுன்னி ஊம்பு டா": { s: 4, c: 4 },
|
|
716
|
+
"தேவடியா மகனே": { s: 5, c: 4 },
|
|
717
|
+
"புண்டை ஓத்தா": { s: 5, c: 5 },
|
|
718
|
+
"சூத்து ஓத்தா": { s: 3, c: 5 },
|
|
719
|
+
"மயிரு பிடுங்கு": { s: 3, c: 4 },
|
|
720
|
+
"கூத்தி அடிச்சி": { s: 5, c: 5 },
|
|
721
|
+
"ஊம்பு வேசி": { s: 5, c: 4 },
|
|
722
|
+
"கழுதை சூத்து": { s: 3, c: 4 },
|
|
723
|
+
"பன்னி சூத்து": { s: 3, c: 4 },
|
|
724
|
+
"ஆடு புண்டை": { s: 5, c: 5 },
|
|
725
|
+
"மாடு சுன்னி": { s: 4, c: 4 },
|
|
726
|
+
"கரடி கூத்தி": { s: 5, c: 5 },
|
|
727
|
+
"குரங்கு புண்டை": { s: 5, c: 5 },
|
|
728
|
+
"எலி சூத்து": { s: 3, c: 4 },
|
|
729
|
+
"பாம்பு சுன்னி": { s: 4, c: 4 },
|
|
730
|
+
"காக்கா கூத்தி": { s: 5, c: 5 },
|
|
731
|
+
"நரி கூத்தி": { s: 5, c: 5 },
|
|
732
|
+
"ஓநாய் புண்டை": { s: 5, c: 5 },
|
|
733
|
+
"எருமை கூத்தி": { s: 5, c: 5 },
|
|
734
|
+
"எருமை மாடு": { s: 3, c: 4 },
|
|
735
|
+
"கோழை": { s: 1, c: 4 },
|
|
736
|
+
"கோழை நாய்": { s: 1, c: 4 },
|
|
737
|
+
"பேடி": { s: 1, c: 4 },
|
|
738
|
+
"பேடிப்பயல்": { s: 1, c: 4 },
|
|
739
|
+
"தாயோளி மகனே": { s: 5, c: 5 },
|
|
740
|
+
"கூத்தி அடி": { s: 5, c: 5 },
|
|
741
|
+
"புண்டை வெட்டு": { s: 5, c: 5 },
|
|
742
|
+
"சுன்னி வெட்டு": { s: 4, c: 4 },
|
|
743
|
+
"சூத்து வெடி": { s: 3, c: 4 },
|
|
744
|
+
"மயிரு கொட்டு": { s: 3, c: 4 },
|
|
745
|
+
"கூத்தி வழிய": { s: 5, c: 5 },
|
|
746
|
+
"சுன்னி நிக்குது": { s: 4, c: 4 },
|
|
747
|
+
"சூத்து எரியுது": { s: 3, c: 4 },
|
|
748
|
+
"கூத்தி நாறுது": { s: 5, c: 5 },
|
|
749
|
+
"சுன்னி கம்பு": { s: 4, c: 4 },
|
|
750
|
+
"கூத்தி குழி": { s: 5, c: 5 },
|
|
751
|
+
"சூத்து குழி": { s: 3, c: 4 },
|
|
752
|
+
"மயிரு காடு": { s: 3, c: 4 },
|
|
753
|
+
"பூனை கூத்தி": { s: 5, c: 5 },
|
|
754
|
+
"பூனை சூத்து": { s: 3, c: 4 },
|
|
755
|
+
// ========================================
|
|
756
|
+
// === Extended Romanized Tamil ===
|
|
757
|
+
// ========================================
|
|
758
|
+
"sunni oombu da": { s: 4, c: 5 },
|
|
759
|
+
"thevidiya magane": { s: 5, c: 5 },
|
|
760
|
+
"pundai otha": { s: 5, c: 5 },
|
|
761
|
+
"soothu otha": { s: 3, c: 5 },
|
|
762
|
+
"mayiru pudungu": { s: 3, c: 5 },
|
|
763
|
+
"koothi adichchi": { s: 5, c: 5 },
|
|
764
|
+
"oombu vesi": { s: 5, c: 5 },
|
|
765
|
+
"aadu pundai": { s: 5, c: 5 },
|
|
766
|
+
"karadi koothi": { s: 5, c: 5 },
|
|
767
|
+
"kurangu pundai": { s: 5, c: 5 },
|
|
768
|
+
"eli soothu": { s: 3, c: 5 },
|
|
769
|
+
"paambu sunni": { s: 4, c: 5 },
|
|
770
|
+
"kaakka koothi": { s: 5, c: 5 },
|
|
771
|
+
"nari koothi": { s: 5, c: 5 },
|
|
772
|
+
"onaai pundai": { s: 5, c: 5 },
|
|
773
|
+
"erumai koothi": { s: 5, c: 5 },
|
|
774
|
+
"erumai maadu": { s: 3, c: 5 },
|
|
775
|
+
"kozhai": { s: 1, c: 5 },
|
|
776
|
+
"kozhai naai": { s: 1, c: 5 },
|
|
777
|
+
"pedi": { s: 1, c: 5 },
|
|
778
|
+
"pedippayal": { s: 1, c: 5 },
|
|
779
|
+
"thayoli magane": { s: 5, c: 5 },
|
|
780
|
+
"koothi adi da": { s: 5, c: 5 },
|
|
781
|
+
"pundai vettu da": { s: 5, c: 5 },
|
|
782
|
+
"sunni vettu da": { s: 4, c: 5 },
|
|
783
|
+
"soothu vedi": { s: 3, c: 5 },
|
|
784
|
+
"mayiru kottu": { s: 3, c: 5 },
|
|
785
|
+
"koothi vazhiya": { s: 5, c: 5 },
|
|
786
|
+
"sunni nikkudhu": { s: 4, c: 5 },
|
|
787
|
+
"soothu eriyudhu": { s: 3, c: 5 },
|
|
788
|
+
"koothi naarudhu": { s: 5, c: 5 },
|
|
789
|
+
"sunni kambu": { s: 4, c: 5 },
|
|
790
|
+
"koothi kuzhi": { s: 5, c: 5 },
|
|
791
|
+
"soothu kuzhi": { s: 3, c: 5 },
|
|
792
|
+
"mayiru kaadu": { s: 3, c: 5 },
|
|
793
|
+
"poonai koothi": { s: 5, c: 5 },
|
|
794
|
+
"poonai soothu": { s: 3, c: 5 },
|
|
795
|
+
// ========================================
|
|
796
|
+
// === Extended Madras Bashai ===
|
|
797
|
+
// ========================================
|
|
798
|
+
"area koothi": { s: 5, c: 5 },
|
|
799
|
+
"area punda": { s: 5, c: 5 },
|
|
800
|
+
"auto koothi": { s: 5, c: 5 },
|
|
801
|
+
"bajji punda": { s: 5, c: 5 },
|
|
802
|
+
"beedi koothi": { s: 5, c: 5 },
|
|
803
|
+
"chappal koothi": { s: 5, c: 5 },
|
|
804
|
+
"chappal sunni": { s: 4, c: 4 },
|
|
805
|
+
"dabba koothi": { s: 5, c: 5 },
|
|
806
|
+
"dabba sunni": { s: 4, c: 4 },
|
|
807
|
+
"dosai koothi": { s: 5, c: 5 },
|
|
808
|
+
"figure koothi": { s: 5, c: 5 },
|
|
809
|
+
"galeej punda": { s: 5, c: 5 },
|
|
810
|
+
"galeej soothu": { s: 3, c: 4 },
|
|
811
|
+
"galeej sunni": { s: 4, c: 4 },
|
|
812
|
+
"goiyala koothi": { s: 5, c: 5 },
|
|
813
|
+
"item punda": { s: 5, c: 5 },
|
|
814
|
+
"item soothu": { s: 3, c: 4 },
|
|
815
|
+
"jollu punda": { s: 5, c: 5 },
|
|
816
|
+
"kattai punda": { s: 5, c: 5 },
|
|
817
|
+
"kattai soothu": { s: 3, c: 4 },
|
|
818
|
+
"kettavan koothi": { s: 5, c: 5 },
|
|
819
|
+
"kettava soothu": { s: 3, c: 4 },
|
|
820
|
+
"kodumai punda": { s: 5, c: 5 },
|
|
821
|
+
"kodumai sunni": { s: 4, c: 4 },
|
|
822
|
+
"kuppam koothi": { s: 5, c: 5 },
|
|
823
|
+
"kuppam punda otha": { s: 5, c: 5 },
|
|
824
|
+
"local koothi": { s: 5, c: 5 },
|
|
825
|
+
"local punda": { s: 5, c: 5 },
|
|
826
|
+
"loosu mayiru punda": { s: 5, c: 5 },
|
|
827
|
+
"mass koothi": { s: 5, c: 5 },
|
|
828
|
+
"mokka soothu": { s: 3, c: 4 },
|
|
829
|
+
"mokka sunni": { s: 4, c: 4 },
|
|
830
|
+
"naatukoothi otha": { s: 5, c: 5 },
|
|
831
|
+
"olu koothi": { s: 5, c: 5 },
|
|
832
|
+
"oru pisa illa koothi": { s: 5, c: 5 },
|
|
833
|
+
"paavi koothi": { s: 5, c: 5 },
|
|
834
|
+
"paavi punda": { s: 5, c: 5 },
|
|
835
|
+
"rowdy koothi": { s: 5, c: 5 },
|
|
836
|
+
"semma waste koothi": { s: 5, c: 5 },
|
|
837
|
+
"settai punda": { s: 5, c: 5 },
|
|
838
|
+
"settai soothu": { s: 3, c: 4 },
|
|
839
|
+
"somberi punda": { s: 5, c: 5 },
|
|
840
|
+
"somberi soothu": { s: 3, c: 4 },
|
|
841
|
+
"thara local punda": { s: 5, c: 5 },
|
|
842
|
+
"thara local soothu": { s: 3, c: 4 },
|
|
843
|
+
"theri koothi": { s: 5, c: 5 },
|
|
844
|
+
"theri punda": { s: 5, c: 5 },
|
|
845
|
+
"waste punda": { s: 5, c: 5 },
|
|
846
|
+
"waste soothu": { s: 3, c: 4 },
|
|
847
|
+
"waste sunni": { s: 4, c: 4 },
|
|
848
|
+
// ========================================
|
|
849
|
+
// === Extended Sri Lankan Tamil ===
|
|
850
|
+
// ========================================
|
|
851
|
+
"hutti punda otha": { s: 1, c: 4 },
|
|
852
|
+
"kundi adi da": { s: 3, c: 4 },
|
|
853
|
+
"kundi sappi": { s: 3, c: 4 },
|
|
854
|
+
"kundi nakki": { s: 3, c: 4 },
|
|
855
|
+
"modda oombu da": { s: 4, c: 4 },
|
|
856
|
+
"modda sappi": { s: 4, c: 4 },
|
|
857
|
+
"ponnaya koothi": { s: 5, c: 5 },
|
|
858
|
+
"ponnaya punda": { s: 5, c: 5 },
|
|
859
|
+
"ponnaya sunni": { s: 4, c: 4 },
|
|
860
|
+
"salli vesi koothi": { s: 5, c: 5 },
|
|
861
|
+
"salli vesi punda": { s: 5, c: 5 },
|
|
862
|
+
"sunni vetti da": { s: 4, c: 4 },
|
|
863
|
+
"thambiya punda otha": { s: 5, c: 5 },
|
|
864
|
+
"umbala kundi sappi": { s: 3, c: 4 },
|
|
865
|
+
"umbala kundi otha": { s: 3, c: 5 },
|
|
866
|
+
"kundi otha da": { s: 3, c: 5 },
|
|
867
|
+
"umbala amma kundi": { s: 3, c: 4 },
|
|
868
|
+
"umbala thathi kundi": { s: 1, c: 4 },
|
|
869
|
+
"umbala akka kundi": { s: 3, c: 4 },
|
|
870
|
+
"rathu kundi": { s: 3, c: 4 },
|
|
871
|
+
"modda illatha": { s: 4, c: 4 },
|
|
872
|
+
"hutti kundi": { s: 1, c: 4 },
|
|
873
|
+
"maaraadi kundi": { s: 1, c: 4 },
|
|
874
|
+
"gon punda": { s: 1, c: 4 },
|
|
875
|
+
"gon soothu": { s: 1, c: 4 },
|
|
876
|
+
"gon sunni": { s: 1, c: 4 },
|
|
877
|
+
"yakko kundi": { s: 3, c: 4 },
|
|
878
|
+
"yakko punda": { s: 5, c: 5 },
|
|
879
|
+
// ========================================
|
|
880
|
+
// === Extended Malaysian Tamil ===
|
|
881
|
+
// ========================================
|
|
882
|
+
"bodoh punda koothi": { s: 1, c: 4 },
|
|
883
|
+
"dei pundek sial": { s: 5, c: 5 },
|
|
884
|
+
"keling koothi otha": { s: 5, c: 5 },
|
|
885
|
+
"machan punda otha": { s: 5, c: 5 },
|
|
886
|
+
"mabuk koothi otha": { s: 1, c: 3 },
|
|
887
|
+
"pukimak koothi": { s: 5, c: 5 },
|
|
888
|
+
"pundek amma otha": { s: 5, c: 5 },
|
|
889
|
+
"sial pundek otha": { s: 5, c: 5 },
|
|
890
|
+
"thayoli pundek otha": { s: 5, c: 5 },
|
|
891
|
+
"thambi pundek otha": { s: 5, c: 5 },
|
|
892
|
+
"bodoh sunni": { s: 1, c: 4 },
|
|
893
|
+
"bodoh soothu": { s: 1, c: 4 },
|
|
894
|
+
"sial sunni": { s: 4, c: 4 },
|
|
895
|
+
"sial soothu": { s: 3, c: 4 },
|
|
896
|
+
"keling sunni": { s: 5, c: 4 },
|
|
897
|
+
"pukimak sunni": { s: 5, c: 5 },
|
|
898
|
+
"mangkuk punda": { s: 1, c: 4 },
|
|
899
|
+
"babi punda": { s: 5, c: 5 },
|
|
900
|
+
"babi koothi": { s: 5, c: 5 },
|
|
901
|
+
"babi soothu": { s: 3, c: 4 },
|
|
902
|
+
"babi sunni": { s: 4, c: 4 },
|
|
903
|
+
"haram punda": { s: 5, c: 5 },
|
|
904
|
+
"haram koothi": { s: 5, c: 5 },
|
|
905
|
+
"lancau punda": { s: 5, c: 5 },
|
|
906
|
+
"pantat koothi": { s: 5, c: 5 },
|
|
907
|
+
"sundal koothi": { s: 5, c: 5 },
|
|
908
|
+
"sundal punda": { s: 5, c: 5 },
|
|
909
|
+
// ========================================
|
|
910
|
+
// === Extended Singapore Tamil ===
|
|
911
|
+
// ========================================
|
|
912
|
+
"kaneh pundai otha": { s: 1, c: 4 },
|
|
913
|
+
"machan koothi otha": { s: 5, c: 5 },
|
|
914
|
+
"thambi sunni otha": { s: 4, c: 5 },
|
|
915
|
+
"bodoh otha da": { s: 1, c: 4 },
|
|
916
|
+
"sial otha da": { s: 3, c: 5 },
|
|
917
|
+
"knn pundek otha": { s: 5, c: 5 },
|
|
918
|
+
"pundek neh otha": { s: 5, c: 5 },
|
|
919
|
+
"mayiru neh otha": { s: 3, c: 5 },
|
|
920
|
+
"kaneh soothu": { s: 1, c: 4 },
|
|
921
|
+
"kaneh sunni": { s: 1, c: 4 },
|
|
922
|
+
"machan soothu": { s: 3, c: 4 },
|
|
923
|
+
"machan sunni": { s: 4, c: 4 },
|
|
924
|
+
"thambi koothi": { s: 5, c: 5 },
|
|
925
|
+
"thambi soothu": { s: 3, c: 4 },
|
|
926
|
+
"abang punda": { s: 5, c: 5 },
|
|
927
|
+
"abang koothi": { s: 5, c: 5 },
|
|
928
|
+
"keling bodoh": { s: 1, c: 4 },
|
|
929
|
+
// ========================================
|
|
930
|
+
// === Extended Kongu Tamil ===
|
|
931
|
+
// ========================================
|
|
932
|
+
"koothadi da": { s: 5, c: 5 },
|
|
933
|
+
"koothadi di": { s: 5, c: 5 },
|
|
934
|
+
"punda vazhinjirukku da": { s: 5, c: 5 },
|
|
935
|
+
"sunni thattu otha": { s: 4, c: 5 },
|
|
936
|
+
"okkara myre da": { s: 3, c: 4 },
|
|
937
|
+
"poola oombura di": { s: 4, c: 4 },
|
|
938
|
+
"koothi vaari da": { s: 5, c: 5 },
|
|
939
|
+
"punda kalaichi da": { s: 5, c: 5 },
|
|
940
|
+
"soothu vedichi da": { s: 3, c: 4 },
|
|
941
|
+
// ========================================
|
|
942
|
+
// === Extended Madurai Tamil ===
|
|
943
|
+
// ========================================
|
|
944
|
+
"koothi na polappa": { s: 5, c: 5 },
|
|
945
|
+
"punda polappa da": { s: 5, c: 5 },
|
|
946
|
+
"mayiru da polappa otha": { s: 3, c: 5 },
|
|
947
|
+
"sunni koothi polappa da": { s: 5, c: 5 },
|
|
948
|
+
"otha polappa da": { s: 3, c: 5 },
|
|
949
|
+
"soothu polappa da": { s: 3, c: 4 },
|
|
950
|
+
"dei punda polappa otha": { s: 5, c: 5 },
|
|
951
|
+
"thevidiya polappa otha": { s: 5, c: 5 },
|
|
952
|
+
"naaye polappa otha": { s: 3, c: 5 },
|
|
953
|
+
"thayoli polappa": { s: 5, c: 5 },
|
|
954
|
+
"vesi polappa": { s: 5, c: 4 },
|
|
955
|
+
"kazhudhai polappa": { s: 3, c: 4 },
|
|
956
|
+
"panni polappa": { s: 3, c: 4 },
|
|
957
|
+
"erumai polappa": { s: 3, c: 4 },
|
|
958
|
+
// ========================================
|
|
959
|
+
// === Extended Compound Tamil Insults ===
|
|
960
|
+
// ========================================
|
|
961
|
+
"thevidiya paiyan otha punda koothi": { s: 5, c: 4 },
|
|
962
|
+
"koothi magane otha punda naai": { s: 5, c: 5 },
|
|
963
|
+
"thayoli paiyan koothi sunni otha": { s: 5, c: 5 },
|
|
964
|
+
"otha punda koothi mayiru sunni": { s: 5, c: 5 },
|
|
965
|
+
"naai koothi thevidiya punda soothu": { s: 5, c: 5 },
|
|
966
|
+
"panni punda otha koothi sunni": { s: 5, c: 5 },
|
|
967
|
+
"vesi koothi mayiru punda soothu": { s: 5, c: 5 },
|
|
968
|
+
"thevidiya soothu koothi sunni otha": { s: 5, c: 4 },
|
|
969
|
+
"otha da thevidiya paiyan koothi": { s: 5, c: 5 },
|
|
970
|
+
"oombu da sunni koothi punda": { s: 5, c: 5 },
|
|
971
|
+
"sappi da koothi mayiru punda": { s: 5, c: 5 },
|
|
972
|
+
"naai koothi vesi punda otha": { s: 5, c: 5 },
|
|
973
|
+
"panni sunni koothi otha da": { s: 5, c: 5 },
|
|
974
|
+
"otha loosu koothi mayiru punda": { s: 5, c: 5 },
|
|
975
|
+
"thayoli batch koothi punda": { s: 5, c: 5 },
|
|
976
|
+
"ommala koothi mayiru otha punda": { s: 5, c: 5 },
|
|
977
|
+
"oor koothi vesi punda otha da": { s: 5, c: 5 },
|
|
978
|
+
// ========================================
|
|
979
|
+
// === Caste-Based Slurs (Tamil) ===
|
|
980
|
+
// ========================================
|
|
981
|
+
"paraiyan": { s: 5, c: 4 },
|
|
982
|
+
"paraichi": { s: 5, c: 4 },
|
|
983
|
+
"chakkiliya": { s: 5, c: 4 },
|
|
984
|
+
"pallan": { s: 5, c: 4 },
|
|
985
|
+
"pallaichi": { s: 5, c: 4 },
|
|
986
|
+
"vannan": { s: 5, c: 4 },
|
|
987
|
+
"vannaathi": { s: 5, c: 4 },
|
|
988
|
+
"thotti": { s: 5, c: 4 },
|
|
989
|
+
"thottichi": { s: 5, c: 4 },
|
|
990
|
+
"paarpan": { s: 5, c: 4 },
|
|
991
|
+
"paarpathi": { s: 5, c: 4 },
|
|
992
|
+
"kulam kettavan": { s: 5, c: 4 },
|
|
993
|
+
"jathi thaazhndha": { s: 5, c: 4 },
|
|
994
|
+
"keezh jathi": { s: 5, c: 4 },
|
|
995
|
+
"thazhntha jathi": { s: 5, c: 4 },
|
|
996
|
+
"kulam keduthavan": { s: 5, c: 4 },
|
|
997
|
+
"keezh jaathi koothi": { s: 5, c: 5 },
|
|
998
|
+
"keezh jaathi punda": { s: 5, c: 5 },
|
|
999
|
+
"paraiyan koothi": { s: 5, c: 5 },
|
|
1000
|
+
"paraiyan punda": { s: 5, c: 5 },
|
|
1001
|
+
"chakkiliya koothi": { s: 5, c: 5 },
|
|
1002
|
+
"thotti koothi": { s: 5, c: 5 },
|
|
1003
|
+
// ========================================
|
|
1004
|
+
// === Tamil Caste Slurs - Script ===
|
|
1005
|
+
// ========================================
|
|
1006
|
+
"பறையன்": { s: 5, c: 4 },
|
|
1007
|
+
"பறைச்சி": { s: 5, c: 4 },
|
|
1008
|
+
"சக்கிலிய": { s: 5, c: 4 },
|
|
1009
|
+
"பள்ளன்": { s: 5, c: 4 },
|
|
1010
|
+
"பள்ளச்சி": { s: 5, c: 4 },
|
|
1011
|
+
"வண்ணான்": { s: 5, c: 4 },
|
|
1012
|
+
"தோட்டி": { s: 5, c: 4 },
|
|
1013
|
+
"பாப்பான்": { s: 5, c: 4 },
|
|
1014
|
+
"குலம் கெட்டவன்": { s: 5, c: 4 },
|
|
1015
|
+
"கீழ் ஜாதி": { s: 5, c: 4 },
|
|
1016
|
+
// ========================================
|
|
1017
|
+
// === Extended Tanglish Mix ===
|
|
1018
|
+
// ========================================
|
|
1019
|
+
"fucking otha da": { s: 3, c: 5 },
|
|
1020
|
+
"bloody koothi di": { s: 5, c: 5 },
|
|
1021
|
+
"damn thevidiya otha": { s: 5, c: 5 },
|
|
1022
|
+
"fucking punda otha": { s: 5, c: 5 },
|
|
1023
|
+
"shit mayiru otha": { s: 3, c: 5 },
|
|
1024
|
+
"asshole soothu otha": { s: 3, c: 5 },
|
|
1025
|
+
"bastard thevidiya paiyan otha": { s: 3, c: 4 },
|
|
1026
|
+
"bitch koothi otha": { s: 5, c: 5 },
|
|
1027
|
+
"son of a thevidiya otha": { s: 5, c: 5 },
|
|
1028
|
+
"stupid muttaal otha": { s: 1, c: 4 },
|
|
1029
|
+
"shut up koothi otha": { s: 5, c: 5 },
|
|
1030
|
+
"fuck off otha da punda": { s: 5, c: 5 },
|
|
1031
|
+
"die da koothi otha": { s: 5, c: 5 },
|
|
1032
|
+
"ugly koothi vesi": { s: 1, c: 4 },
|
|
1033
|
+
"cheap vesi koothi otha": { s: 5, c: 5 },
|
|
1034
|
+
"dirty soothu otha": { s: 3, c: 5 },
|
|
1035
|
+
"loser punda otha": { s: 1, c: 4 },
|
|
1036
|
+
"trash koothi otha": { s: 5, c: 5 },
|
|
1037
|
+
"garbage punda otha": { s: 5, c: 5 },
|
|
1038
|
+
"noob koothi otha": { s: 5, c: 5 },
|
|
1039
|
+
"toxic punda otha": { s: 5, c: 5 },
|
|
1040
|
+
"cancer koothi": { s: 5, c: 5 },
|
|
1041
|
+
"feeder punda": { s: 5, c: 5 },
|
|
1042
|
+
"bot koothi": { s: 5, c: 5 },
|
|
1043
|
+
"hacker otha": { s: 3, c: 5 },
|
|
1044
|
+
"camper punda": { s: 5, c: 5 },
|
|
1045
|
+
"uninstall pannu da koothi": { s: 5, c: 5 },
|
|
1046
|
+
"delete pannu da punda": { s: 5, c: 5 },
|
|
1047
|
+
// ========================================
|
|
1048
|
+
// === Extended Threats (Tamil) ===
|
|
1049
|
+
// ========================================
|
|
1050
|
+
"un soothu poduven": { s: 5, c: 5 },
|
|
1051
|
+
"un pundai kedhuppen": { s: 5, c: 5 },
|
|
1052
|
+
"un sunni odaippen": { s: 5, c: 5 },
|
|
1053
|
+
"un goiyala madippen": { s: 5, c: 5 },
|
|
1054
|
+
"soothu la sunni vaippen": { s: 5, c: 5 },
|
|
1055
|
+
"un koothi keduppen": { s: 5, c: 5 },
|
|
1056
|
+
"un thala odaippen": { s: 5, c: 5 },
|
|
1057
|
+
"un pal udaippen": { s: 5, c: 5 },
|
|
1058
|
+
"un elumbu odaippen": { s: 5, c: 5 },
|
|
1059
|
+
"kaalai odaippen": { s: 5, c: 5 },
|
|
1060
|
+
"kaiyai odaippen": { s: 5, c: 5 },
|
|
1061
|
+
"naai ku theenam pottruven": { s: 5, c: 5 },
|
|
1062
|
+
"drain la thallruven": { s: 5, c: 5 },
|
|
1063
|
+
"gutter la thallruven": { s: 5, c: 5 },
|
|
1064
|
+
"uyiroda puthaippen": { s: 5, c: 5 },
|
|
1065
|
+
"thol urichen": { s: 5, c: 5 },
|
|
1066
|
+
"keezhi kizhippen": { s: 5, c: 5 },
|
|
1067
|
+
"adichippen": { s: 5, c: 5 },
|
|
1068
|
+
"kolluven": { s: 5, c: 5 },
|
|
1069
|
+
"saaga adichippen": { s: 5, c: 5 },
|
|
1070
|
+
// ========================================
|
|
1071
|
+
// === Tamil Threats - Script ===
|
|
1072
|
+
// ========================================
|
|
1073
|
+
"உன் சூத்து போடுவேன்": { s: 5, c: 5 },
|
|
1074
|
+
"உன் புண்டை கெடுப்பேன்": { s: 5, c: 5 },
|
|
1075
|
+
"உன் சுன்னி ஒடைப்பேன்": { s: 5, c: 5 },
|
|
1076
|
+
"உன் கூத்தி கெடுப்பேன்": { s: 5, c: 5 },
|
|
1077
|
+
"உன் தலை ஒடைப்பேன்": { s: 5, c: 5 },
|
|
1078
|
+
"உன் பல் உடைப்பேன்": { s: 5, c: 5 },
|
|
1079
|
+
"உன் எலும்பு ஒடைப்பேன்": { s: 5, c: 5 },
|
|
1080
|
+
"நாய்க்கு தீனம் போட்டுருவேன்": { s: 5, c: 5 },
|
|
1081
|
+
"உயிரோட புதைப்பேன்": { s: 5, c: 5 },
|
|
1082
|
+
"கொல்லுவேன்": { s: 5, c: 5 },
|
|
1083
|
+
"சாக அடிச்சிப்பேன்": { s: 5, c: 5 },
|
|
1084
|
+
// ========================================
|
|
1085
|
+
// === Extended Tamil Body Part Insults ===
|
|
1086
|
+
// ========================================
|
|
1087
|
+
"soothu mudichu": { s: 4, c: 3 },
|
|
1088
|
+
"pundai mudichu": { s: 5, c: 5 },
|
|
1089
|
+
"sunni mudichu": { s: 4, c: 3 },
|
|
1090
|
+
"koothi thuni": { s: 5, c: 5 },
|
|
1091
|
+
"soothu thuni": { s: 4, c: 3 },
|
|
1092
|
+
"sunni thuni": { s: 4, c: 3 },
|
|
1093
|
+
"pundai thol": { s: 5, c: 5 },
|
|
1094
|
+
"soothu thol": { s: 4, c: 3 },
|
|
1095
|
+
"sunni thol": { s: 4, c: 3 },
|
|
1096
|
+
"koothi kaadhu": { s: 5, c: 5 },
|
|
1097
|
+
"koothi kan": { s: 5, c: 5 },
|
|
1098
|
+
"soothu kan": { s: 4, c: 3 },
|
|
1099
|
+
"sunni kan": { s: 4, c: 3 },
|
|
1100
|
+
"pundai mooku": { s: 5, c: 5 },
|
|
1101
|
+
"soothu mooku": { s: 4, c: 3 },
|
|
1102
|
+
"sunni mooku": { s: 4, c: 3 },
|
|
1103
|
+
// ========================================
|
|
1104
|
+
// === Extended Scatological Tamil ===
|
|
1105
|
+
// ========================================
|
|
1106
|
+
"theeni koothi": { s: 5, c: 5 },
|
|
1107
|
+
"theeni punda": { s: 5, c: 5 },
|
|
1108
|
+
"theeni sunni": { s: 4, c: 5 },
|
|
1109
|
+
"theeni soothu": { s: 3, c: 5 },
|
|
1110
|
+
"moothram kudi da": { s: 3, c: 4 },
|
|
1111
|
+
"moothram koothi": { s: 5, c: 5 },
|
|
1112
|
+
"moothram sunni": { s: 4, c: 4 },
|
|
1113
|
+
"kusu koothi": { s: 5, c: 5 },
|
|
1114
|
+
"kusu punda": { s: 5, c: 5 },
|
|
1115
|
+
"kusu sunni": { s: 4, c: 4 },
|
|
1116
|
+
"kusu soothu": { s: 3, c: 4 },
|
|
1117
|
+
"theeni thinnu da": { s: 3, c: 5 },
|
|
1118
|
+
"moothram kudi koothi": { s: 5, c: 5 },
|
|
1119
|
+
"drainage koothi": { s: 5, c: 5 },
|
|
1120
|
+
"drainage punda": { s: 5, c: 5 },
|
|
1121
|
+
"drainage sunni": { s: 4, c: 4 },
|
|
1122
|
+
"sewage koothi": { s: 5, c: 5 },
|
|
1123
|
+
"sewage punda": { s: 5, c: 5 },
|
|
1124
|
+
"kuppai thotti koothi": { s: 5, c: 5 },
|
|
1125
|
+
"kuppai thotti punda": { s: 5, c: 5 },
|
|
1126
|
+
"kuppai thotti sunni": { s: 4, c: 4 },
|
|
1127
|
+
// ========================================
|
|
1128
|
+
// === Extended Evasion Spellings (Tamil) ===
|
|
1129
|
+
// ========================================
|
|
1130
|
+
"0tha": { s: 3, c: 5 },
|
|
1131
|
+
"th3vidiya": { s: 3, c: 5 },
|
|
1132
|
+
"k00thi": { s: 3, c: 5 },
|
|
1133
|
+
"p0nda": { s: 3, c: 5 },
|
|
1134
|
+
"p0ndai": { s: 3, c: 5 },
|
|
1135
|
+
"s00thu": { s: 3, c: 5 },
|
|
1136
|
+
"s0nni": { s: 3, c: 5 },
|
|
1137
|
+
"m@yiru": { s: 3, c: 5 },
|
|
1138
|
+
"th@yoli": { s: 3, c: 5 },
|
|
1139
|
+
"v3si": { s: 3, c: 5 },
|
|
1140
|
+
"p0olu": { s: 3, c: 5 },
|
|
1141
|
+
"0mbu": { s: 3, c: 5 },
|
|
1142
|
+
"s@ppi": { s: 3, c: 5 },
|
|
1143
|
+
"n@ai": { s: 3, c: 5 },
|
|
1144
|
+
"p@nni": { s: 3, c: 5 },
|
|
1145
|
+
"k@zhudhai": { s: 3, c: 5 },
|
|
1146
|
+
// ========================================
|
|
1147
|
+
// === More Internet Abbreviations ===
|
|
1148
|
+
// ========================================
|
|
1149
|
+
"oth myr pnda": { s: 2, c: 3 },
|
|
1150
|
+
"tvdya pyn kth": { s: 2, c: 3 },
|
|
1151
|
+
"kth mgne oth pnd": { s: 2, c: 3 },
|
|
1152
|
+
"snni mbu da": { s: 2, c: 3 },
|
|
1153
|
+
"sthu nkki oth": { s: 2, c: 3 },
|
|
1154
|
+
"pndai nkki oth": { s: 2, c: 3 },
|
|
1155
|
+
"oth kth myr pnd": { s: 2, c: 3 },
|
|
1156
|
+
"dei othmyr kth pnd": { s: 2, c: 3 },
|
|
1157
|
+
"tvdya sthu kth": { s: 2, c: 3 },
|
|
1158
|
+
"vsi kth pnd": { s: 2, c: 3 },
|
|
1159
|
+
"pnni kth myr": { s: 2, c: 3 },
|
|
1160
|
+
"oth lsu kth myr": { s: 2, c: 3 },
|
|
1161
|
+
"nai pnda oth": { s: 2, c: 3 },
|
|
1162
|
+
"thyoli pnd kth": { s: 2, c: 3 },
|
|
1163
|
+
"kth vsi myr oth": { s: 2, c: 3 },
|
|
1164
|
+
// ========================================
|
|
1165
|
+
// === Extended Animal Insults (Tamil) ===
|
|
1166
|
+
// ========================================
|
|
1167
|
+
"erumai koothi otha": { s: 5, c: 5 },
|
|
1168
|
+
"erumai punda otha": { s: 5, c: 5 },
|
|
1169
|
+
"erumai soothu otha": { s: 3, c: 5 },
|
|
1170
|
+
"erumai sunni otha": { s: 4, c: 5 },
|
|
1171
|
+
"kurangu koothi otha": { s: 5, c: 5 },
|
|
1172
|
+
"kurangu punda otha": { s: 5, c: 5 },
|
|
1173
|
+
"kurangu soothu otha": { s: 3, c: 5 },
|
|
1174
|
+
"kurangu sunni otha": { s: 4, c: 5 },
|
|
1175
|
+
"eli koothi otha": { s: 5, c: 5 },
|
|
1176
|
+
"eli punda otha": { s: 5, c: 5 },
|
|
1177
|
+
"paambu koothi otha": { s: 5, c: 5 },
|
|
1178
|
+
"paambu punda otha": { s: 5, c: 5 },
|
|
1179
|
+
"aadu koothi otha": { s: 5, c: 5 },
|
|
1180
|
+
"aadu soothu otha": { s: 3, c: 5 },
|
|
1181
|
+
"aadu sunni otha": { s: 4, c: 5 },
|
|
1182
|
+
"karadi punda otha": { s: 5, c: 5 },
|
|
1183
|
+
"karadi soothu otha": { s: 3, c: 5 },
|
|
1184
|
+
"nari punda otha": { s: 5, c: 5 },
|
|
1185
|
+
"nari soothu otha": { s: 3, c: 5 },
|
|
1186
|
+
"onaai koothi otha": { s: 5, c: 5 },
|
|
1187
|
+
"onaai soothu otha": { s: 3, c: 5 },
|
|
1188
|
+
"kaakka punda otha": { s: 5, c: 5 },
|
|
1189
|
+
"poonai punda otha": { s: 5, c: 5 },
|
|
1190
|
+
"poonai sunni otha": { s: 4, c: 5 },
|
|
1191
|
+
// ========================================
|
|
1192
|
+
// === Extended Tamil Religious Insults ===
|
|
1193
|
+
// ========================================
|
|
1194
|
+
"kovil koothi": { s: 5, c: 5 },
|
|
1195
|
+
"kovil punda": { s: 5, c: 5 },
|
|
1196
|
+
"kovil sunni": { s: 4, c: 3 },
|
|
1197
|
+
"sami koothi": { s: 5, c: 5 },
|
|
1198
|
+
"sami punda": { s: 5, c: 5 },
|
|
1199
|
+
"sami sunni": { s: 4, c: 3 },
|
|
1200
|
+
"pujari koothi": { s: 5, c: 5 },
|
|
1201
|
+
"pujari punda": { s: 5, c: 5 },
|
|
1202
|
+
"pujari sunni": { s: 4, c: 3 },
|
|
1203
|
+
"maulvi koothi": { s: 5, c: 5 },
|
|
1204
|
+
"maulvi punda": { s: 5, c: 5 },
|
|
1205
|
+
"church koothi": { s: 5, c: 5 },
|
|
1206
|
+
"church punda": { s: 5, c: 5 },
|
|
1207
|
+
"mosque koothi": { s: 5, c: 5 },
|
|
1208
|
+
"mosque punda": { s: 5, c: 5 },
|
|
1209
|
+
// ========================================
|
|
1210
|
+
// === Extended Tamil Script Body Part ===
|
|
1211
|
+
// ========================================
|
|
1212
|
+
"சூத்து முடிச்சு": { s: 4, c: 3 },
|
|
1213
|
+
"புண்டை முடிச்சு": { s: 5, c: 5 },
|
|
1214
|
+
"சுன்னி முடிச்சு": { s: 4, c: 3 },
|
|
1215
|
+
"கூத்தி துணி": { s: 5, c: 5 },
|
|
1216
|
+
"சூத்து துணி": { s: 4, c: 3 },
|
|
1217
|
+
"சுன்னி துணி": { s: 4, c: 3 },
|
|
1218
|
+
"கூத்தி காது": { s: 5, c: 5 },
|
|
1219
|
+
"கூத்தி கண்": { s: 5, c: 5 },
|
|
1220
|
+
"சூத்து கண்": { s: 4, c: 3 },
|
|
1221
|
+
"சுன்னி கண்": { s: 4, c: 3 },
|
|
1222
|
+
"புண்டை மூக்கு": { s: 5, c: 5 },
|
|
1223
|
+
"சூத்து மூக்கு": { s: 4, c: 3 },
|
|
1224
|
+
"சுன்னி மூக்கு": { s: 4, c: 3 },
|
|
1225
|
+
"எருமை கூத்தி ஓத்தா": { s: 5, c: 5 },
|
|
1226
|
+
"குரங்கு கூத்தி ஓத்தா": { s: 5, c: 5 },
|
|
1227
|
+
"பூனை புண்ட ஓத்தா": { s: 5, c: 5 },
|
|
1228
|
+
"ஆடு புண்டை ஓத்தா": { s: 5, c: 5 },
|
|
1229
|
+
"நரி கூத்தி ஓத்தா": { s: 5, c: 5 },
|
|
1230
|
+
// ========================================
|
|
1231
|
+
// === Extended Tamil Scatological Script ===
|
|
1232
|
+
// ========================================
|
|
1233
|
+
"தீனி கூத்தி": { s: 5, c: 5 },
|
|
1234
|
+
"தீனி புண்ட": { s: 5, c: 5 },
|
|
1235
|
+
"தீனி சுன்னி": { s: 4, c: 5 },
|
|
1236
|
+
"தீனி சூத்து": { s: 3, c: 5 },
|
|
1237
|
+
"மூத்திரம் குடி டா": { s: 3, c: 4 },
|
|
1238
|
+
"குசு கூத்தி": { s: 5, c: 5 },
|
|
1239
|
+
"குசு புண்ட": { s: 5, c: 5 },
|
|
1240
|
+
"குசு சுன்னி": { s: 4, c: 4 },
|
|
1241
|
+
"குசு சூத்து": { s: 3, c: 4 },
|
|
1242
|
+
"குப்பை தொட்டி கூத்தி": { s: 5, c: 5 },
|
|
1243
|
+
"டிரெய்னேஜ் கூத்தி": { s: 5, c: 5 },
|
|
1244
|
+
"சீவேஜ் கூத்தி": { s: 5, c: 5 },
|
|
1245
|
+
// ========================================
|
|
1246
|
+
// === More Extended Tamil Compounds ===
|
|
1247
|
+
// ========================================
|
|
1248
|
+
"un amma oor koothi": { s: 3, c: 5 },
|
|
1249
|
+
"un amma pacha vesi": { s: 5, c: 5 },
|
|
1250
|
+
"un akka oor vesi": { s: 5, c: 5 },
|
|
1251
|
+
"un appa koothi payale": { s: 1, c: 4 },
|
|
1252
|
+
"un kudumbam muzhusum koothi": { s: 5, c: 5 },
|
|
1253
|
+
"un vaamsam muzhusum vesi": { s: 5, c: 5 },
|
|
1254
|
+
"un amma ku sunni oombu tha theriyum": { s: 4, c: 5 },
|
|
1255
|
+
"un akka ku koothi okkura tha theriyum": { s: 5, c: 5 },
|
|
1256
|
+
"un amma oor naai koothi": { s: 5, c: 5 },
|
|
1257
|
+
"un amma panni koothi vesi": { s: 5, c: 5 },
|
|
1258
|
+
"un akka naai punda vesi": { s: 5, c: 5 },
|
|
1259
|
+
"un amma kazhudhai koothi": { s: 5, c: 5 },
|
|
1260
|
+
"un akka erumai koothi": { s: 5, c: 5 },
|
|
1261
|
+
"un appa naai sunni": { s: 1, c: 4 },
|
|
1262
|
+
"un amma sunni oomburadhu paathurukken": { s: 4, c: 5 },
|
|
1263
|
+
"un akka soothu thara paathurukken": { s: 3, c: 5 },
|
|
1264
|
+
"un amma ku naai okkum": { s: 3, c: 5 },
|
|
1265
|
+
"un amma ku panni okkum": { s: 3, c: 5 },
|
|
1266
|
+
"un amma ku kazhudhai okkum": { s: 3, c: 5 },
|
|
1267
|
+
"un amma ku erumai okkum": { s: 3, c: 5 },
|
|
1268
|
+
"un amma ku aadu okkum": { s: 3, c: 5 },
|
|
1269
|
+
"un amma ku kurangu okkum": { s: 3, c: 5 },
|
|
1270
|
+
"un amma ku eli okkum": { s: 3, c: 5 },
|
|
1271
|
+
"un amma ku paambu okkum": { s: 3, c: 5 },
|
|
1272
|
+
"un amma hijra": { s: 3, c: 5 },
|
|
1273
|
+
"un appa hijra": { s: 1, c: 4 },
|
|
1274
|
+
"un akka hijra": { s: 3, c: 5 },
|
|
1275
|
+
"hijra koothi": { s: 5, c: 5 },
|
|
1276
|
+
"hijra punda": { s: 5, c: 5 },
|
|
1277
|
+
"hijra sunni": { s: 4, c: 5 },
|
|
1278
|
+
"hijra soothu": { s: 3, c: 5 },
|
|
1279
|
+
"pottai vesi": { s: 5, c: 5 },
|
|
1280
|
+
"pottai koothi vesi": { s: 5, c: 5 },
|
|
1281
|
+
"aravani koothi": { s: 5, c: 5 },
|
|
1282
|
+
"thirunangai koothi": { s: 5, c: 5 },
|
|
1283
|
+
"number 9 koothi": { s: 5, c: 5 },
|
|
1284
|
+
"pottal koothi": { s: 5, c: 5 },
|
|
1285
|
+
"pottal sunni": { s: 4, c: 5 },
|
|
1286
|
+
// ========================================
|
|
1287
|
+
// === More Extended Tamil Script ===
|
|
1288
|
+
// ========================================
|
|
1289
|
+
"உன் அம்மா ஊர் கூத்தி": { s: 3, c: 4 },
|
|
1290
|
+
"உன் அம்மா பச்ச வேசி": { s: 5, c: 4 },
|
|
1291
|
+
"உன் அக்கா ஊர் வேசி": { s: 5, c: 4 },
|
|
1292
|
+
"உன் குடும்பம் முழுசும் கூத்தி": { s: 5, c: 5 },
|
|
1293
|
+
"உன் வம்சம் முழுசும் வேசி": { s: 5, c: 4 },
|
|
1294
|
+
"உன் அம்மா கழுதை கூத்தி": { s: 5, c: 5 },
|
|
1295
|
+
"உன் அக்கா எருமை கூத்தி": { s: 5, c: 5 },
|
|
1296
|
+
"உன் அம்மாக்கு நாய் ஒக்கும்": { s: 3, c: 5 },
|
|
1297
|
+
"உன் அம்மாக்கு பன்னி ஒக்கும்": { s: 3, c: 5 },
|
|
1298
|
+
"உன் அம்மாக்கு கழுதை ஒக்கும்": { s: 3, c: 5 },
|
|
1299
|
+
"உன் அம்மா ஹிஜ்ரா": { s: 3, c: 4 },
|
|
1300
|
+
"உன் அப்பா ஹிஜ்ரா": { s: 1, c: 4 },
|
|
1301
|
+
"ஹிஜ்ரா கூத்தி": { s: 5, c: 5 },
|
|
1302
|
+
"பொட்டை வேசி": { s: 5, c: 4 },
|
|
1303
|
+
"அரவாணி கூத்தி": { s: 5, c: 5 },
|
|
1304
|
+
// ========================================
|
|
1305
|
+
// === More Extended Animal Compounds ===
|
|
1306
|
+
// ========================================
|
|
1307
|
+
"naai otha punda koothi": { s: 5, c: 5 },
|
|
1308
|
+
"panni otha punda koothi": { s: 5, c: 5 },
|
|
1309
|
+
"kazhudhai otha punda koothi": { s: 5, c: 5 },
|
|
1310
|
+
"erumai otha punda koothi": { s: 5, c: 5 },
|
|
1311
|
+
"aadu otha punda koothi": { s: 5, c: 5 },
|
|
1312
|
+
"kurangu otha punda koothi": { s: 5, c: 5 },
|
|
1313
|
+
"poonai otha punda koothi": { s: 5, c: 5 },
|
|
1314
|
+
"eli otha punda koothi": { s: 5, c: 5 },
|
|
1315
|
+
"paambu otha punda koothi": { s: 5, c: 5 },
|
|
1316
|
+
"naai vesi thevidiya koothi": { s: 5, c: 5 },
|
|
1317
|
+
"panni vesi thevidiya koothi": { s: 5, c: 5 },
|
|
1318
|
+
"kazhudhai vesi thevidiya koothi": { s: 5, c: 5 },
|
|
1319
|
+
"erumai vesi thevidiya koothi": { s: 5, c: 5 },
|
|
1320
|
+
"naai sunni oombu": { s: 4, c: 5 },
|
|
1321
|
+
"panni sunni oombu": { s: 4, c: 5 },
|
|
1322
|
+
"kazhudhai sunni oombu": { s: 4, c: 5 },
|
|
1323
|
+
"erumai sunni oombu": { s: 4, c: 5 },
|
|
1324
|
+
"kurangu sunni oombu": { s: 4, c: 5 },
|
|
1325
|
+
"aadu sunni oombu": { s: 4, c: 5 },
|
|
1326
|
+
"naai soothu nakki": { s: 3, c: 5 },
|
|
1327
|
+
"panni soothu nakki": { s: 3, c: 5 },
|
|
1328
|
+
"kazhudhai soothu nakki": { s: 3, c: 5 },
|
|
1329
|
+
"erumai soothu nakki": { s: 3, c: 5 },
|
|
1330
|
+
"naai thayoli": { s: 5, c: 5 },
|
|
1331
|
+
"panni thayoli": { s: 5, c: 5 },
|
|
1332
|
+
"kazhudhai thayoli": { s: 5, c: 5 },
|
|
1333
|
+
"erumai thayoli": { s: 5, c: 5 },
|
|
1334
|
+
"kurangu thayoli": { s: 5, c: 5 },
|
|
1335
|
+
"aadu thayoli": { s: 5, c: 5 },
|
|
1336
|
+
"poonai thayoli": { s: 5, c: 5 },
|
|
1337
|
+
"eli thayoli": { s: 5, c: 5 },
|
|
1338
|
+
// ========================================
|
|
1339
|
+
// === More Extended Threats (Tamil) ===
|
|
1340
|
+
// ========================================
|
|
1341
|
+
"un amma munnadiye okkuven": { s: 5, c: 5 },
|
|
1342
|
+
"un akka munnadiye okkuven": { s: 5, c: 5 },
|
|
1343
|
+
"un vamsam azhikkuven": { s: 5, c: 5 },
|
|
1344
|
+
"un kudumbam azhikkuven": { s: 5, c: 5 },
|
|
1345
|
+
"un peyar keli kettiduvaan": { s: 5, c: 5 },
|
|
1346
|
+
"un pundai la thee vaippen": { s: 5, c: 5 },
|
|
1347
|
+
"un soothu la thee vaippen": { s: 5, c: 5 },
|
|
1348
|
+
"un sunni la thee vaippen": { s: 5, c: 5 },
|
|
1349
|
+
"un koothi la milagai podhuven": { s: 5, c: 5 },
|
|
1350
|
+
"un soothu la milagai podhuven": { s: 5, c: 5 },
|
|
1351
|
+
"un pundai la irumbu sunni dhukuven": { s: 5, c: 5 },
|
|
1352
|
+
"un soothu la irumbu sunni dhukuven": { s: 5, c: 5 },
|
|
1353
|
+
"un sunni la rope kattuven": { s: 5, c: 5 },
|
|
1354
|
+
"un koothi thaichikuven": { s: 5, c: 5 },
|
|
1355
|
+
"un soothu thaichikuven": { s: 5, c: 5 },
|
|
1356
|
+
"un pundai la paambu viduven": { s: 5, c: 5 },
|
|
1357
|
+
"un soothu la paambu viduven": { s: 5, c: 5 },
|
|
1358
|
+
"un vamsam thikku muzhangu paduvaan": { s: 5, c: 5 },
|
|
1359
|
+
"unna naai ku pottruven": { s: 5, c: 5 },
|
|
1360
|
+
"unna panni ku pottruven": { s: 5, c: 5 },
|
|
1361
|
+
"unna drain la podhuven": { s: 5, c: 5 },
|
|
1362
|
+
"unna gutter la podhuven": { s: 5, c: 5 },
|
|
1363
|
+
"unna uyiroda puthaippen": { s: 5, c: 5 },
|
|
1364
|
+
// ========================================
|
|
1365
|
+
// === More Extended Tamil Script Threats ===
|
|
1366
|
+
// ========================================
|
|
1367
|
+
"உன் அம்மா முன்னாடியே ஒக்குவேன்": { s: 5, c: 5 },
|
|
1368
|
+
"உன் அக்கா முன்னாடியே ஒக்குவேன்": { s: 5, c: 5 },
|
|
1369
|
+
"உன் வம்சம் அழிக்குவேன்": { s: 5, c: 5 },
|
|
1370
|
+
"உன் குடும்பம் அழிக்குவேன்": { s: 5, c: 5 },
|
|
1371
|
+
"உன் புண்டையில தீ வைப்பேன்": { s: 5, c: 5 },
|
|
1372
|
+
"உன் சூத்தில தீ வைப்பேன்": { s: 5, c: 5 },
|
|
1373
|
+
"உன் கூத்தியில மிளகாய் போடுவேன்": { s: 5, c: 5 },
|
|
1374
|
+
"உன் சூத்தில மிளகாய் போடுவேன்": { s: 5, c: 5 },
|
|
1375
|
+
"உன் புண்டையில பாம்பு விடுவேன்": { s: 5, c: 5 },
|
|
1376
|
+
"உன் சூத்தில பாம்பு விடுவேன்": { s: 5, c: 5 },
|
|
1377
|
+
"உன்னை நாய்க்கு போட்டுருவேன்": { s: 5, c: 5 },
|
|
1378
|
+
"உன்னை பன்னிக்கு போட்டுருவேன்": { s: 5, c: 5 },
|
|
1379
|
+
// ========================================
|
|
1380
|
+
// === More Extended Tanglish Gaming ===
|
|
1381
|
+
// ========================================
|
|
1382
|
+
"afk koothi otha": { s: 5, c: 5 },
|
|
1383
|
+
"report pannu da koothi": { s: 5, c: 5 },
|
|
1384
|
+
"mute pannu da punda": { s: 5, c: 5 },
|
|
1385
|
+
"feed panda koothi": { s: 5, c: 5 },
|
|
1386
|
+
"carry pannura koothi": { s: 5, c: 5 },
|
|
1387
|
+
"int panda koothi": { s: 5, c: 5 },
|
|
1388
|
+
"trash tier koothi": { s: 5, c: 5 },
|
|
1389
|
+
"bronze koothi": { s: 5, c: 5 },
|
|
1390
|
+
"iron koothi": { s: 5, c: 5 },
|
|
1391
|
+
"hardstuck koothi": { s: 5, c: 5 },
|
|
1392
|
+
"boosted koothi": { s: 5, c: 5 },
|
|
1393
|
+
"elo hell koothi": { s: 5, c: 5 },
|
|
1394
|
+
"smurf otha": { s: 3, c: 5 },
|
|
1395
|
+
"aim illa koothi": { s: 5, c: 5 },
|
|
1396
|
+
"game sense illa koothi": { s: 5, c: 5 },
|
|
1397
|
+
"camping koothi otha": { s: 5, c: 5 },
|
|
1398
|
+
"stream sniper otha": { s: 3, c: 5 },
|
|
1399
|
+
"gg koothi otha": { s: 5, c: 5 },
|
|
1400
|
+
"ez koothi otha": { s: 5, c: 5 },
|
|
1401
|
+
// ========================================
|
|
1402
|
+
// === More Extended Caste Slurs ===
|
|
1403
|
+
// ========================================
|
|
1404
|
+
"paraiyan koothi otha": { s: 5, c: 5 },
|
|
1405
|
+
"paraiyan punda otha": { s: 5, c: 5 },
|
|
1406
|
+
"paraichi koothi otha": { s: 5, c: 5 },
|
|
1407
|
+
"chakkiliya punda otha": { s: 5, c: 5 },
|
|
1408
|
+
"pallan koothi otha": { s: 5, c: 5 },
|
|
1409
|
+
"pallaichi punda otha": { s: 5, c: 5 },
|
|
1410
|
+
"thotti koothi otha": { s: 5, c: 5 },
|
|
1411
|
+
"thottichi punda otha": { s: 5, c: 5 },
|
|
1412
|
+
"paarpan koothi otha": { s: 5, c: 5 },
|
|
1413
|
+
"keezh jaathi otha da": { s: 5, c: 5 },
|
|
1414
|
+
"kulam kettavan otha": { s: 5, c: 5 },
|
|
1415
|
+
"jathi illa otha": { s: 5, c: 5 },
|
|
1416
|
+
"paraiyan thevidiya": { s: 5, c: 4 },
|
|
1417
|
+
"chakkiliya thevidiya": { s: 5, c: 4 },
|
|
1418
|
+
"pallan thevidiya": { s: 5, c: 4 },
|
|
1419
|
+
"thotti thevidiya": { s: 5, c: 4 },
|
|
1420
|
+
"keezh jaathi thevidiya": { s: 5, c: 4 },
|
|
1421
|
+
"keezh jaathi thayoli": { s: 5, c: 5 },
|
|
1422
|
+
"keezh jaathi sunni oombu": { s: 5, c: 4 },
|
|
1423
|
+
"keezh jaathi vesi": { s: 5, c: 4 },
|
|
1424
|
+
// ========================================
|
|
1425
|
+
// === More Extended Tamil Script Caste ===
|
|
1426
|
+
// ========================================
|
|
1427
|
+
"பறையன் கூத்தி ஓத்தா": { s: 5, c: 4 },
|
|
1428
|
+
"பறைச்சி கூத்தி ஓத்தா": { s: 5, c: 4 },
|
|
1429
|
+
"சக்கிலிய புண்ட ஓத்தா": { s: 5, c: 4 },
|
|
1430
|
+
"பள்ளன் கூத்தி ஓத்தா": { s: 5, c: 4 },
|
|
1431
|
+
"தோட்டி கூத்தி ஓத்தா": { s: 5, c: 4 },
|
|
1432
|
+
"பாப்பான் கூத்தி ஓத்தா": { s: 5, c: 4 },
|
|
1433
|
+
"கீழ் ஜாதி ஓத்தா டா": { s: 5, c: 4 },
|
|
1434
|
+
"கீழ் ஜாதி தேவடியா": { s: 5, c: 4 },
|
|
1435
|
+
"கீழ் ஜாதி தாயோளி": { s: 5, c: 4 },
|
|
1436
|
+
"கீழ் ஜாதி வேசி": { s: 5, c: 4 },
|
|
1437
|
+
// ========================================
|
|
1438
|
+
// === More Tamil Romanized Compounds ===
|
|
1439
|
+
// ========================================
|
|
1440
|
+
"un amma thevidiya batch": { s: 5, c: 5 },
|
|
1441
|
+
"un akka vesi batch": { s: 5, c: 5 },
|
|
1442
|
+
"un appa punda batch": { s: 1, c: 5 },
|
|
1443
|
+
"un kudumbam koothi batch": { s: 5, c: 5 },
|
|
1444
|
+
"un vaamsam vesi batch": { s: 5, c: 5 },
|
|
1445
|
+
"oor la ellaarum un amma ku okkum": { s: 3, c: 5 },
|
|
1446
|
+
"oor la ellaarum un akka ku okkum": { s: 3, c: 5 },
|
|
1447
|
+
"area la ellaarum un amma ku okkum": { s: 3, c: 5 },
|
|
1448
|
+
"bazaar la ellaarum un amma ku okkum": { s: 3, c: 5 },
|
|
1449
|
+
"naai kuda un amma ku okkum": { s: 3, c: 5 },
|
|
1450
|
+
"panni kuda un amma ku okkum": { s: 3, c: 5 },
|
|
1451
|
+
"kazhudhai kuda un amma ku okkum": { s: 3, c: 5 },
|
|
1452
|
+
"un amma sunni oomburadhu profession": { s: 4, c: 5 },
|
|
1453
|
+
"un akka soothu tharuradhu profession": { s: 3, c: 5 },
|
|
1454
|
+
"un amma free la okkum": { s: 5, c: 5 },
|
|
1455
|
+
"un akka free la okkum": { s: 3, c: 5 },
|
|
1456
|
+
"un amma oru ruba ku okkum": { s: 5, c: 5 },
|
|
1457
|
+
"un amma oru paisa ku okkum": { s: 5, c: 5 },
|
|
1458
|
+
"un amma ku price illa": { s: 3, c: 5 },
|
|
1459
|
+
"un akka ku price illa": { s: 3, c: 5 },
|
|
1460
|
+
// ========================================
|
|
1461
|
+
// === Extended Tamil Script Sexual Insults ===
|
|
1462
|
+
// ========================================
|
|
1463
|
+
"உன் அம்மா புண்ட நக்குவேன்": { s: 4, c: 4 },
|
|
1464
|
+
"உன் அக்கா புண்ட நக்குவேன்": { s: 4, c: 4 },
|
|
1465
|
+
"உன் அம்மா சூத்து நக்குவேன்": { s: 3, c: 4 },
|
|
1466
|
+
"உன் அக்கா சூத்து நக்குவேன்": { s: 3, c: 4 },
|
|
1467
|
+
"உன் அம்மா முலை பிடிப்பேன்": { s: 4, c: 4 },
|
|
1468
|
+
"உன் அக்கா முலை பிடிப்பேன்": { s: 4, c: 4 },
|
|
1469
|
+
"உன் அம்மா புண்டையில கை வைப்பேன்": { s: 4, c: 4 },
|
|
1470
|
+
"உன் அம்மா புண்டையில கால் வைப்பேன்": { s: 4, c: 4 },
|
|
1471
|
+
"உன் சுன்னி வெட்டுவேன்": { s: 4, c: 4 },
|
|
1472
|
+
"உன் சுன்னி ஒடிப்பேன்": { s: 4, c: 4 },
|
|
1473
|
+
"உன் கொட்டை பிடிப்பேன்": { s: 4, c: 4 },
|
|
1474
|
+
"உன் கொட்டை வெட்டுவேன்": { s: 4, c: 4 },
|
|
1475
|
+
"உன் அம்மா புண்ட கிழிப்பேன்": { s: 4, c: 4 },
|
|
1476
|
+
"உன் அக்கா புண்ட கிழிப்பேன்": { s: 4, c: 4 },
|
|
1477
|
+
"உன் அம்மா சூத்து கிழிப்பேன்": { s: 3, c: 4 },
|
|
1478
|
+
"உன் அக்கா சூத்து கிழிப்பேன்": { s: 3, c: 4 },
|
|
1479
|
+
"வேசி மகனே நீ": { s: 5, c: 4 },
|
|
1480
|
+
"விபச்சாரி மகனே நீ": { s: 5, c: 4 },
|
|
1481
|
+
"தேவிடியா மகனே நீ": { s: 5, c: 4 },
|
|
1482
|
+
"தேவிடியா மகளே நீ": { s: 5, c: 4 },
|
|
1483
|
+
"கூத்தி மகனே நீ": { s: 5, c: 4 },
|
|
1484
|
+
"கூத்தி மகளே நீ": { s: 5, c: 4 },
|
|
1485
|
+
"உன் அம்மா சந்தை வேசி": { s: 5, c: 4 },
|
|
1486
|
+
"உன் அக்கா சந்தை வேசி": { s: 5, c: 4 },
|
|
1487
|
+
"உன் அம்மா ரோட்டு வேசி": { s: 5, c: 4 },
|
|
1488
|
+
"உன் அக்கா ரோட்டு வேசி": { s: 5, c: 4 },
|
|
1489
|
+
"உன் அம்மா ஊர் வேசி": { s: 5, c: 4 },
|
|
1490
|
+
// ========================================
|
|
1491
|
+
// === Extended Romanized Tamil Sexual ===
|
|
1492
|
+
// ========================================
|
|
1493
|
+
"un amma punda nakkuven": { s: 4, c: 5 },
|
|
1494
|
+
"un akka punda nakkuven": { s: 4, c: 5 },
|
|
1495
|
+
"un amma soothu nakkuven": { s: 3, c: 5 },
|
|
1496
|
+
"un akka soothu nakkuven": { s: 3, c: 5 },
|
|
1497
|
+
"un amma mulai pidipppen": { s: 4, c: 5 },
|
|
1498
|
+
"un akka mulai pidippen": { s: 4, c: 5 },
|
|
1499
|
+
"un amma pundaiyila kai vaipppen": { s: 4, c: 5 },
|
|
1500
|
+
"un amma pundaiyila kaal vaipppen": { s: 4, c: 5 },
|
|
1501
|
+
"un sunni vettuven": { s: 4, c: 5 },
|
|
1502
|
+
"un sunni odippen": { s: 4, c: 5 },
|
|
1503
|
+
"un kottai pidippen": { s: 4, c: 5 },
|
|
1504
|
+
"un kottai vettuven": { s: 4, c: 5 },
|
|
1505
|
+
"un amma punda kizhippen": { s: 4, c: 5 },
|
|
1506
|
+
"un akka punda kizhippen": { s: 4, c: 5 },
|
|
1507
|
+
"un amma soothu kizhippen": { s: 3, c: 5 },
|
|
1508
|
+
"un akka soothu kizhippen": { s: 3, c: 5 },
|
|
1509
|
+
"vesi magane nee": { s: 5, c: 5 },
|
|
1510
|
+
"vibachchaari magane nee": { s: 5, c: 5 },
|
|
1511
|
+
"thevidiya magane nee": { s: 5, c: 5 },
|
|
1512
|
+
"thevidiya magale nee": { s: 5, c: 5 },
|
|
1513
|
+
"koothi magane nee": { s: 5, c: 5 },
|
|
1514
|
+
"koothi magale nee": { s: 5, c: 5 },
|
|
1515
|
+
"un amma sandai vesi": { s: 5, c: 5 },
|
|
1516
|
+
"un akka sandai vesi": { s: 5, c: 5 },
|
|
1517
|
+
"un amma rottu vesi": { s: 5, c: 5 },
|
|
1518
|
+
"un akka rottu vesi": { s: 5, c: 5 },
|
|
1519
|
+
"un amma ooru vesi": { s: 5, c: 5 },
|
|
1520
|
+
"un akka ooru vesi": { s: 5, c: 5 },
|
|
1521
|
+
// ========================================
|
|
1522
|
+
// === Extended Madurai/Kongu Dialect ===
|
|
1523
|
+
// ========================================
|
|
1524
|
+
"unga amma ku okkuven da": { s: 3, c: 5 },
|
|
1525
|
+
"unga akka ku okkuven da": { s: 3, c: 5 },
|
|
1526
|
+
"thevidiya paiyan da nee": { s: 5, c: 4 },
|
|
1527
|
+
"koothi paiyan da nee": { s: 5, c: 4 },
|
|
1528
|
+
"punda paiyan da nee": { s: 5, c: 5 },
|
|
1529
|
+
"otha da saani": { s: 3, c: 5 },
|
|
1530
|
+
"okkala da saani": { s: 3, c: 5 },
|
|
1531
|
+
"punda mavane": { s: 5, c: 5 },
|
|
1532
|
+
"koothi mavane": { s: 5, c: 4 },
|
|
1533
|
+
"soothu mavane": { s: 3, c: 4 },
|
|
1534
|
+
"sunni mavane": { s: 4, c: 4 },
|
|
1535
|
+
"okkala mavane": { s: 3, c: 5 },
|
|
1536
|
+
"poda koothi payale": { s: 5, c: 4 },
|
|
1537
|
+
"poda punda payale": { s: 5, c: 5 },
|
|
1538
|
+
"poda soothu payale": { s: 3, c: 4 },
|
|
1539
|
+
"unga veettula ellaarum vesi": { s: 5, c: 4 },
|
|
1540
|
+
"unga veettula ellaarum thevidiya": { s: 5, c: 4 },
|
|
1541
|
+
"unga kula ellaarum vesi": { s: 5, c: 4 },
|
|
1542
|
+
"unga kula ellaarum koothi": { s: 5, c: 4 },
|
|
1543
|
+
"ooru la un amma ku okkuvaanga": { s: 3, c: 5 },
|
|
1544
|
+
// ========================================
|
|
1545
|
+
// === Extended Sri Lankan Tamil ===
|
|
1546
|
+
// ========================================
|
|
1547
|
+
"umba amma pundai okkuvan": { s: 4, c: 5 },
|
|
1548
|
+
"umba akka pundai okkuvan": { s: 4, c: 5 },
|
|
1549
|
+
"umba thathi modda": { s: 1, c: 4 },
|
|
1550
|
+
"umba amma vesiyaa": { s: 5, c: 4 },
|
|
1551
|
+
"umba akka vesiyaa": { s: 5, c: 4 },
|
|
1552
|
+
"pundai okkara paiyan": { s: 4, c: 5 },
|
|
1553
|
+
"soothu okkara paiyan": { s: 3, c: 5 },
|
|
1554
|
+
"sunni oomba paiyan": { s: 4, c: 4 },
|
|
1555
|
+
"vesiyoda mahan": { s: 5, c: 4 },
|
|
1556
|
+
"kooththiyoda mahan": { s: 5, c: 4 },
|
|
1557
|
+
"umba amma roadla nikkindra": { s: 3, c: 4 },
|
|
1558
|
+
"umba akka roadla nikkindra": { s: 3, c: 4 },
|
|
1559
|
+
"umba amma lorry driverlukku okkum": { s: 5, c: 5 },
|
|
1560
|
+
"umba amma soldierslukku okkum": { s: 5, c: 5 },
|
|
1561
|
+
"umba amma bazaarlaa okkum": { s: 5, c: 5 },
|
|
1562
|
+
// ========================================
|
|
1563
|
+
// === Extended Malaysian/Singapore Tamil ===
|
|
1564
|
+
// ========================================
|
|
1565
|
+
"pundek maa": { s: 4, c: 4 },
|
|
1566
|
+
"pundek ayah": { s: 1, c: 4 },
|
|
1567
|
+
"pundek lu": { s: 4, c: 4 },
|
|
1568
|
+
"keling pundek": { s: 4, c: 4 },
|
|
1569
|
+
"anna pundek": { s: 4, c: 4 },
|
|
1570
|
+
"machan pundek": { s: 4, c: 4 },
|
|
1571
|
+
"pundek kia": { s: 4, c: 4 },
|
|
1572
|
+
"okkala pundek": { s: 4, c: 5 },
|
|
1573
|
+
"pundek bodoh": { s: 1, c: 4 },
|
|
1574
|
+
"sundel lu": { s: 5, c: 4 },
|
|
1575
|
+
"palat lu pundek": { s: 4, c: 4 },
|
|
1576
|
+
"mabuk pundek": { s: 1, c: 3 },
|
|
1577
|
+
"celaka pundek": { s: 4, c: 4 },
|
|
1578
|
+
// ========================================
|
|
1579
|
+
// === Extended Body Part Combos (Tamil) ===
|
|
1580
|
+
// ========================================
|
|
1581
|
+
"பெரிய புண்ட வாடா": { s: 4, c: 3 },
|
|
1582
|
+
"சின்ன சுன்னி வாடா": { s: 4, c: 3 },
|
|
1583
|
+
"பெரிய சூத்து வாடா": { s: 4, c: 3 },
|
|
1584
|
+
"சின்ன கொட்டை வாடா": { s: 4, c: 3 },
|
|
1585
|
+
"வளைந்த சுன்னி வாடா": { s: 4, c: 3 },
|
|
1586
|
+
"குட்டை சுன்னி வாடா": { s: 4, c: 3 },
|
|
1587
|
+
"தொங்கு முலை": { s: 4, c: 3 },
|
|
1588
|
+
"தொங்கு சுன்னி": { s: 4, c: 3 },
|
|
1589
|
+
"periya punda vaada": { s: 4, c: 3 },
|
|
1590
|
+
"chinna sunni vaada": { s: 4, c: 3 },
|
|
1591
|
+
"periya soothu vaada": { s: 4, c: 3 },
|
|
1592
|
+
"chinna kottai vaada": { s: 4, c: 3 },
|
|
1593
|
+
"valaindha sunni vaada": { s: 4, c: 3 },
|
|
1594
|
+
"kuttai sunni vaada": { s: 4, c: 3 },
|
|
1595
|
+
"thongu mulai": { s: 4, c: 3 },
|
|
1596
|
+
"thongu sunni": { s: 4, c: 3 },
|
|
1597
|
+
"ஊளை சுன்னி": { s: 4, c: 3 },
|
|
1598
|
+
"ஊளை புண்ட": { s: 4, c: 3 },
|
|
1599
|
+
"oolai sunni": { s: 4, c: 3 },
|
|
1600
|
+
"oolai punda": { s: 4, c: 3 },
|
|
1601
|
+
// ========================================
|
|
1602
|
+
// === Extended Emasculation Insults (Tamil) ===
|
|
1603
|
+
// ========================================
|
|
1604
|
+
"உன் சுன்னி எழும்பாது": { s: 4, c: 4 },
|
|
1605
|
+
"உன் சுன்னி வேலை செய்யாது": { s: 4, c: 4 },
|
|
1606
|
+
"உன் சுன்னி செத்துப்போச்சு": { s: 5, c: 5 },
|
|
1607
|
+
"நீ ஆண்மை இல்லாதவன்": { s: 1, c: 4 },
|
|
1608
|
+
"நீ அலி": { s: 1, c: 4 },
|
|
1609
|
+
"நீ ஒன்பது": { s: 1, c: 3 },
|
|
1610
|
+
"உன் சுன்னி புழு மாதிரி": { s: 4, c: 4 },
|
|
1611
|
+
"உன் சுன்னி விரல் மாதிரி": { s: 4, c: 4 },
|
|
1612
|
+
"un sunni ezhumbadhu": { s: 4, c: 4 },
|
|
1613
|
+
"un sunni velai seyyaadhu": { s: 4, c: 4 },
|
|
1614
|
+
"un sunni sethupochu": { s: 5, c: 5 },
|
|
1615
|
+
"nee aanmai illaathavan": { s: 1, c: 4 },
|
|
1616
|
+
"nee ali": { s: 1, c: 4 },
|
|
1617
|
+
"nee ombudhu": { s: 1, c: 3 },
|
|
1618
|
+
"un sunni puzhu maathiri": { s: 4, c: 4 },
|
|
1619
|
+
"un sunni viral maathiri": { s: 4, c: 4 },
|
|
1620
|
+
// ========================================
|
|
1621
|
+
// === Extended Scatological (Tamil) ===
|
|
1622
|
+
// ========================================
|
|
1623
|
+
"உன் முகத்தில் மலம் தீற்றுவேன்": { s: 3, c: 5 },
|
|
1624
|
+
"உன் முகத்தில் சிறுநீர் ஊற்றுவேன்": { s: 3, c: 4 },
|
|
1625
|
+
"உன் சாப்பாட்டில் மலம் போடுவேன்": { s: 3, c: 5 },
|
|
1626
|
+
"உன் சாப்பாட்டில் சிறுநீர் போடுவேன்": { s: 3, c: 4 },
|
|
1627
|
+
"மலம் தின்னும் நாய்": { s: 3, c: 5 },
|
|
1628
|
+
"சிறுநீர் குடிக்கும் நாய்": { s: 3, c: 4 },
|
|
1629
|
+
"குண்டி காற்று மோப்பான்": { s: 3, c: 4 },
|
|
1630
|
+
"un mugathtula malam theetruven": { s: 3, c: 5 },
|
|
1631
|
+
"un mugathtula siruneer ootruven": { s: 3, c: 4 },
|
|
1632
|
+
"un saappaattula malam poduven": { s: 3, c: 5 },
|
|
1633
|
+
"un saappaattula siruneer poduven": { s: 3, c: 4 },
|
|
1634
|
+
"malam thinnum naai": { s: 3, c: 5 },
|
|
1635
|
+
"siruneer kudikkum naai": { s: 3, c: 4 },
|
|
1636
|
+
"kundi kaatru moppaan": { s: 3, c: 4 },
|
|
1637
|
+
"un amma mugathtula malam": { s: 3, c: 5 },
|
|
1638
|
+
"un akka mugathtula malam": { s: 3, c: 5 },
|
|
1639
|
+
"un amma mugathtula moothiram": { s: 3, c: 4 },
|
|
1640
|
+
"un akka mugathtula moothiram": { s: 3, c: 4 },
|
|
1641
|
+
// ========================================
|
|
1642
|
+
// === Extended Evasion Spellings (Tamil) ===
|
|
1643
|
+
// ========================================
|
|
1644
|
+
"0thaa": { s: 3, c: 5 },
|
|
1645
|
+
"p00nda": { s: 4, c: 5 },
|
|
1646
|
+
"sunn1": { s: 4, c: 5 },
|
|
1647
|
+
"0kkala": { s: 3, c: 5 },
|
|
1648
|
+
"p00ndai": { s: 4, c: 5 },
|
|
1649
|
+
"th3v1d1ya": { s: 5, c: 5 },
|
|
1650
|
+
"k@@thi": { s: 5, c: 5 },
|
|
1651
|
+
"p@@nda": { s: 4, c: 5 },
|
|
1652
|
+
"s@@thu": { s: 3, c: 5 },
|
|
1653
|
+
"0mb0": { s: 3, c: 5 },
|
|
1654
|
+
"sunn!": { s: 4, c: 5 },
|
|
1655
|
+
"m00lai": { s: 4, c: 5 },
|
|
1656
|
+
"k0tt@i": { s: 4, c: 5 },
|
|
1657
|
+
"th@y0li": { s: 5, c: 5 },
|
|
1658
|
+
// ========================================
|
|
1659
|
+
// === Extended Abuse Phrases (Tamil) ===
|
|
1660
|
+
// ========================================
|
|
1661
|
+
"un vazhkaikku vilai illa": { s: 3, c: 4 },
|
|
1662
|
+
"nee porakkaamal irunthaa nallaa irukum": { s: 3, c: 4 },
|
|
1663
|
+
"un amma un appaa yaarunu theriyaadhu": { s: 1, c: 4 },
|
|
1664
|
+
"un appaa yaaru yaarukkum theriyaadhu": { s: 1, c: 4 },
|
|
1665
|
+
"un amma unnai dustbin la pottu vittaa": { s: 3, c: 4 },
|
|
1666
|
+
"un amma unnai road la pottu vittaa": { s: 3, c: 4 },
|
|
1667
|
+
"unnai yaarukum vendaam": { s: 3, c: 4 },
|
|
1668
|
+
"un mugam paarthaa aalu thupum": { s: 3, c: 4 },
|
|
1669
|
+
"un peru ketta aalu sirikum": { s: 3, c: 4 },
|
|
1670
|
+
"un family la ellaarum vesi": { s: 5, c: 4 },
|
|
1671
|
+
"un family la ellaarum thevidiya": { s: 5, c: 4 },
|
|
1672
|
+
"un kulam la ellaarum koothi": { s: 5, c: 4 },
|
|
1673
|
+
"un kulam la ellaarum okkalaigal": { s: 3, c: 5 },
|
|
1674
|
+
"உன் வாழ்க்கைக்கு விலை இல்லை": { s: 3, c: 4 },
|
|
1675
|
+
"நீ பொறக்காமல் இருந்தா நல்லா இருக்கும்": { s: 3, c: 4 },
|
|
1676
|
+
"உன் அம்மா உன் அப்பா யாருன்னு தெரியாது": { s: 1, c: 4 },
|
|
1677
|
+
"உன்னை யாருக்கும் வேண்டாம்": { s: 3, c: 4 },
|
|
1678
|
+
"உன் முகம் பார்த்தா ஆளு துப்பும்": { s: 3, c: 4 },
|
|
1679
|
+
"உன் பேரு கேட்டா ஆளு சிரிக்கும்": { s: 3, c: 4 },
|
|
1680
|
+
"உன் ஃபேமிலி ல எல்லாரும் வேசி": { s: 5, c: 4 },
|
|
1681
|
+
// ========================================
|
|
1682
|
+
// === Extended Caste-Based (Tamil) ===
|
|
1683
|
+
// ========================================
|
|
1684
|
+
"pallan punda otha": { s: 5, c: 5 },
|
|
1685
|
+
"chakkiliyar punda otha": { s: 5, c: 5 },
|
|
1686
|
+
"vannan punda otha": { s: 5, c: 5 },
|
|
1687
|
+
"ambaththan punda otha": { s: 5, c: 5 },
|
|
1688
|
+
"keezh jaathi naai": { s: 5, c: 4 },
|
|
1689
|
+
"keezh jaathi panni": { s: 5, c: 4 },
|
|
1690
|
+
"keezh jaathi thevidiya magan": { s: 5, c: 4 },
|
|
1691
|
+
"keezh jaathi koothi magan": { s: 5, c: 4 },
|
|
1692
|
+
"கீழ் ஜாதி நாய்": { s: 5, c: 4 },
|
|
1693
|
+
"கீழ் ஜாதி பன்னி": { s: 5, c: 4 },
|
|
1694
|
+
"கீழ் ஜாதி தேவடியா மகன்": { s: 5, c: 4 },
|
|
1695
|
+
"கீழ் ஜாதி கூத்தி மகன்": { s: 5, c: 4 },
|
|
1696
|
+
"பள்ளன் புண்ட": { s: 5, c: 5 },
|
|
1697
|
+
"பறையன் புண்ட": { s: 5, c: 5 },
|
|
1698
|
+
// ========================================
|
|
1699
|
+
// === Extended Internet/Gaming Tamil ===
|
|
1700
|
+
// ========================================
|
|
1701
|
+
"nee noob punda da": { s: 5, c: 5 },
|
|
1702
|
+
"nee hacker thevidiya magan da": { s: 5, c: 4 },
|
|
1703
|
+
"nee camper koothi paiyan da": { s: 5, c: 4 },
|
|
1704
|
+
"nee feeder punda da": { s: 5, c: 5 },
|
|
1705
|
+
"nee troll thevidiya magan da": { s: 5, c: 4 },
|
|
1706
|
+
"nee toxic koothi paiyan da": { s: 5, c: 4 },
|
|
1707
|
+
"nee griefing punda da": { s: 5, c: 5 },
|
|
1708
|
+
"nee afk thevidiya magan da": { s: 5, c: 4 },
|
|
1709
|
+
"nee stream sniper punda da": { s: 5, c: 5 },
|
|
1710
|
+
"game vidu da koothi paiyan": { s: 5, c: 4 },
|
|
1711
|
+
"uninstall pannu da punda": { s: 5, c: 5 },
|
|
1712
|
+
"lag ku otha da": { s: 3, c: 5 },
|
|
1713
|
+
"ping ku otha da": { s: 3, c: 5 },
|
|
1714
|
+
"server ku otha da": { s: 3, c: 5 },
|
|
1715
|
+
"gg punda": { s: 5, c: 5 },
|
|
1716
|
+
"ez punda": { s: 5, c: 5 },
|
|
1717
|
+
"gg sunni oombu": { s: 4, c: 3 },
|
|
1718
|
+
"ez sunni oombu": { s: 4, c: 3 },
|
|
1719
|
+
"report pannu punda": { s: 5, c: 5 }, // Report cunt
|
|
1720
|
+
};
|
|
1721
|
+
export default tamilBadWords;
|
|
1722
|
+
//# sourceMappingURL=tamil-words.js.map
|