rere 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.
Files changed (168) hide show
  1. data/.classpath +260 -0
  2. data/.gitignore +28 -0
  3. data/.project +14 -0
  4. data/.ruby-version +1 -0
  5. data/.settings/org.eclim.prefs +3 -0
  6. data/.settings/org.eclipse.jdt.core.prefs +5 -0
  7. data/.settings/org.eclipse.jdt.ui.prefs +2 -0
  8. data/Gemfile +7 -0
  9. data/LICENSE +22 -0
  10. data/README.md +44 -0
  11. data/Rakefile +65 -0
  12. data/bin/solr +61 -0
  13. data/example/config/solr.yml +23 -0
  14. data/example/log/.gitkeep +0 -0
  15. data/example/solr/README.txt +63 -0
  16. data/example/solr/collection1/README.txt +50 -0
  17. data/example/solr/collection1/conf/admin-extra.html +24 -0
  18. data/example/solr/collection1/conf/admin-extra.menu-bottom.html +25 -0
  19. data/example/solr/collection1/conf/admin-extra.menu-top.html +25 -0
  20. data/example/solr/collection1/conf/currency.xml +67 -0
  21. data/example/solr/collection1/conf/elevate.xml +38 -0
  22. data/example/solr/collection1/conf/lang/contractions_ca.txt +8 -0
  23. data/example/solr/collection1/conf/lang/contractions_fr.txt +15 -0
  24. data/example/solr/collection1/conf/lang/contractions_ga.txt +5 -0
  25. data/example/solr/collection1/conf/lang/contractions_it.txt +23 -0
  26. data/example/solr/collection1/conf/lang/hyphenations_ga.txt +5 -0
  27. data/example/solr/collection1/conf/lang/stemdict_nl.txt +6 -0
  28. data/example/solr/collection1/conf/lang/stoptags_ja.txt +420 -0
  29. data/example/solr/collection1/conf/lang/stopwords_ar.txt +125 -0
  30. data/example/solr/collection1/conf/lang/stopwords_bg.txt +193 -0
  31. data/example/solr/collection1/conf/lang/stopwords_ca.txt +220 -0
  32. data/example/solr/collection1/conf/lang/stopwords_cz.txt +172 -0
  33. data/example/solr/collection1/conf/lang/stopwords_da.txt +108 -0
  34. data/example/solr/collection1/conf/lang/stopwords_de.txt +292 -0
  35. data/example/solr/collection1/conf/lang/stopwords_el.txt +78 -0
  36. data/example/solr/collection1/conf/lang/stopwords_en.txt +54 -0
  37. data/example/solr/collection1/conf/lang/stopwords_es.txt +354 -0
  38. data/example/solr/collection1/conf/lang/stopwords_eu.txt +99 -0
  39. data/example/solr/collection1/conf/lang/stopwords_fa.txt +313 -0
  40. data/example/solr/collection1/conf/lang/stopwords_fi.txt +95 -0
  41. data/example/solr/collection1/conf/lang/stopwords_fr.txt +184 -0
  42. data/example/solr/collection1/conf/lang/stopwords_ga.txt +110 -0
  43. data/example/solr/collection1/conf/lang/stopwords_gl.txt +161 -0
  44. data/example/solr/collection1/conf/lang/stopwords_hi.txt +235 -0
  45. data/example/solr/collection1/conf/lang/stopwords_hu.txt +209 -0
  46. data/example/solr/collection1/conf/lang/stopwords_hy.txt +46 -0
  47. data/example/solr/collection1/conf/lang/stopwords_id.txt +359 -0
  48. data/example/solr/collection1/conf/lang/stopwords_it.txt +301 -0
  49. data/example/solr/collection1/conf/lang/stopwords_ja.txt +127 -0
  50. data/example/solr/collection1/conf/lang/stopwords_lv.txt +172 -0
  51. data/example/solr/collection1/conf/lang/stopwords_nl.txt +117 -0
  52. data/example/solr/collection1/conf/lang/stopwords_no.txt +192 -0
  53. data/example/solr/collection1/conf/lang/stopwords_pt.txt +251 -0
  54. data/example/solr/collection1/conf/lang/stopwords_ro.txt +233 -0
  55. data/example/solr/collection1/conf/lang/stopwords_ru.txt +241 -0
  56. data/example/solr/collection1/conf/lang/stopwords_sv.txt +131 -0
  57. data/example/solr/collection1/conf/lang/stopwords_th.txt +119 -0
  58. data/example/solr/collection1/conf/lang/stopwords_tr.txt +212 -0
  59. data/example/solr/collection1/conf/lang/userdict_ja.txt +29 -0
  60. data/example/solr/collection1/conf/mapping-FoldToASCII.txt +3813 -0
  61. data/example/solr/collection1/conf/mapping-ISOLatin1Accent.txt +246 -0
  62. data/example/solr/collection1/conf/protwords.txt +21 -0
  63. data/example/solr/collection1/conf/schema.xml +1125 -0
  64. data/example/solr/collection1/conf/scripts.conf +24 -0
  65. data/example/solr/collection1/conf/solrconfig.xml +1816 -0
  66. data/example/solr/collection1/conf/spellings.txt +2 -0
  67. data/example/solr/collection1/conf/stopwords.txt +14 -0
  68. data/example/solr/collection1/conf/synonyms.txt +29 -0
  69. data/example/solr/collection1/conf/update-script.js +53 -0
  70. data/example/solr/collection1/conf/velocity/VM_global_library.vm +170 -0
  71. data/example/solr/collection1/conf/velocity/browse.vm +50 -0
  72. data/example/solr/collection1/conf/velocity/cluster.vm +9 -0
  73. data/example/solr/collection1/conf/velocity/clusterResults.vm +12 -0
  74. data/example/solr/collection1/conf/velocity/debug.vm +17 -0
  75. data/example/solr/collection1/conf/velocity/did_you_mean.vm +4 -0
  76. data/example/solr/collection1/conf/velocity/facet_fields.vm +15 -0
  77. data/example/solr/collection1/conf/velocity/facet_pivot.vm +3 -0
  78. data/example/solr/collection1/conf/velocity/facet_queries.vm +3 -0
  79. data/example/solr/collection1/conf/velocity/facet_ranges.vm +15 -0
  80. data/example/solr/collection1/conf/velocity/facets.vm +5 -0
  81. data/example/solr/collection1/conf/velocity/footer.vm +17 -0
  82. data/example/solr/collection1/conf/velocity/head.vm +32 -0
  83. data/example/solr/collection1/conf/velocity/header.vm +3 -0
  84. data/example/solr/collection1/conf/velocity/hit.vm +11 -0
  85. data/example/solr/collection1/conf/velocity/hitGrouped.vm +24 -0
  86. data/example/solr/collection1/conf/velocity/join-doc.vm +4 -0
  87. data/example/solr/collection1/conf/velocity/jquery.autocomplete.css +48 -0
  88. data/example/solr/collection1/conf/velocity/jquery.autocomplete.js +763 -0
  89. data/example/solr/collection1/conf/velocity/layout.vm +20 -0
  90. data/example/solr/collection1/conf/velocity/main.css +208 -0
  91. data/example/solr/collection1/conf/velocity/product-doc.vm +27 -0
  92. data/example/solr/collection1/conf/velocity/query.vm +42 -0
  93. data/example/solr/collection1/conf/velocity/queryGroup.vm +19 -0
  94. data/example/solr/collection1/conf/velocity/querySpatial.vm +40 -0
  95. data/example/solr/collection1/conf/velocity/richtext-doc.vm +114 -0
  96. data/example/solr/collection1/conf/velocity/suggest.vm +3 -0
  97. data/example/solr/collection1/conf/velocity/tabs.vm +6 -0
  98. data/example/solr/collection1/conf/xslt/example.xsl +132 -0
  99. data/example/solr/collection1/conf/xslt/example_atom.xsl +67 -0
  100. data/example/solr/collection1/conf/xslt/example_rss.xsl +66 -0
  101. data/example/solr/collection1/conf/xslt/luke.xsl +337 -0
  102. data/example/solr/collection1/conf/xslt/updateXml.xsl +70 -0
  103. data/example/solr/collection1/data/index/segments.gen +0 -0
  104. data/example/solr/collection1/data/index/segments_1 +0 -0
  105. data/example/solr/data/development/index/segments.gen +0 -0
  106. data/example/solr/data/development/index/segments_1 +0 -0
  107. data/example/solr/solr.xml +53 -0
  108. data/example/solr/zoo.cfg +17 -0
  109. data/lib/rere.rb +66 -0
  110. data/lib/rere/railtie.rb +8 -0
  111. data/lib/rere/server.rb +380 -0
  112. data/lib/rere/tasks/solr.rake +47 -0
  113. data/lib/rere/version.rb +3 -0
  114. data/pom.xml +168 -0
  115. data/rere.gemspec +26 -0
  116. data/server/README.txt +78 -0
  117. data/server/cloud-scripts/zkcli.bat +12 -0
  118. data/server/cloud-scripts/zkcli.sh +14 -0
  119. data/server/contexts/solr-jetty-context.xml +8 -0
  120. data/server/etc/create-solrtest.keystore.sh +37 -0
  121. data/server/etc/jetty.xml +205 -0
  122. data/server/etc/logging.properties +38 -0
  123. data/server/etc/solrtest.keystore +0 -0
  124. data/server/etc/webdefault.xml +527 -0
  125. data/server/exampledocs/books.csv +11 -0
  126. data/server/exampledocs/books.json +51 -0
  127. data/server/exampledocs/gb18030-example.xml +32 -0
  128. data/server/exampledocs/hd.xml +56 -0
  129. data/server/exampledocs/ipod_other.xml +60 -0
  130. data/server/exampledocs/ipod_video.xml +40 -0
  131. data/server/exampledocs/manufacturers.xml +75 -0
  132. data/server/exampledocs/mem.xml +77 -0
  133. data/server/exampledocs/money.xml +65 -0
  134. data/server/exampledocs/monitor.xml +35 -0
  135. data/server/exampledocs/monitor2.xml +34 -0
  136. data/server/exampledocs/mp500.xml +43 -0
  137. data/server/exampledocs/post.jar +0 -0
  138. data/server/exampledocs/post.sh +30 -0
  139. data/server/exampledocs/sd500.xml +38 -0
  140. data/server/exampledocs/solr.xml +38 -0
  141. data/server/exampledocs/test_utf8.sh +93 -0
  142. data/server/exampledocs/utf8-example.xml +42 -0
  143. data/server/exampledocs/vidcard.xml +62 -0
  144. data/server/lib/ext/jcl-over-slf4j-1.6.6.jar +0 -0
  145. data/server/lib/ext/jul-to-slf4j-1.6.6.jar +0 -0
  146. data/server/lib/ext/log4j-1.2.16.jar +0 -0
  147. data/server/lib/ext/slf4j-api-1.6.6.jar +0 -0
  148. data/server/lib/ext/slf4j-log4j12-1.6.6.jar +0 -0
  149. data/server/lib/jetty-continuation-8.1.8.v20121106.jar +0 -0
  150. data/server/lib/jetty-deploy-8.1.8.v20121106.jar +0 -0
  151. data/server/lib/jetty-http-8.1.8.v20121106.jar +0 -0
  152. data/server/lib/jetty-io-8.1.8.v20121106.jar +0 -0
  153. data/server/lib/jetty-jmx-8.1.8.v20121106.jar +0 -0
  154. data/server/lib/jetty-security-8.1.8.v20121106.jar +0 -0
  155. data/server/lib/jetty-server-8.1.8.v20121106.jar +0 -0
  156. data/server/lib/jetty-servlet-8.1.8.v20121106.jar +0 -0
  157. data/server/lib/jetty-util-8.1.8.v20121106.jar +0 -0
  158. data/server/lib/jetty-webapp-8.1.8.v20121106.jar +0 -0
  159. data/server/lib/jetty-xml-8.1.8.v20121106.jar +0 -0
  160. data/server/lib/servlet-api-3.0.jar +0 -0
  161. data/server/resources/log4j.properties +19 -0
  162. data/server/solr/README.txt +63 -0
  163. data/server/solr/solr.xml +53 -0
  164. data/server/solr/zoo.cfg +17 -0
  165. data/server/start.jar +0 -0
  166. data/server/webapps/solr.war +0 -0
  167. data/solr/lib/solr-winds-0.1.jar +0 -0
  168. metadata +284 -0
@@ -0,0 +1,209 @@
1
+ | From svn.tartarus.org/snowball/trunk/website/algorithms/hungarian/stop.txt
2
+ | This file is distributed under the BSD License.
3
+ | See http://snowball.tartarus.org/license.php
4
+ | Also see http://www.opensource.org/licenses/bsd-license.html
5
+ | - Encoding was converted to UTF-8.
6
+ | - This notice was added.
7
+
8
+ | Hungarian stop word list
9
+ | prepared by Anna Tordai
10
+
11
+ a
12
+ ahogy
13
+ ahol
14
+ aki
15
+ akik
16
+ akkor
17
+ alatt
18
+ által
19
+ általában
20
+ amely
21
+ amelyek
22
+ amelyekben
23
+ amelyeket
24
+ amelyet
25
+ amelynek
26
+ ami
27
+ amit
28
+ amolyan
29
+ amíg
30
+ amikor
31
+ át
32
+ abban
33
+ ahhoz
34
+ annak
35
+ arra
36
+ arról
37
+ az
38
+ azok
39
+ azon
40
+ azt
41
+ azzal
42
+ azért
43
+ aztán
44
+ azután
45
+ azonban
46
+ bár
47
+ be
48
+ belül
49
+ benne
50
+ cikk
51
+ cikkek
52
+ cikkeket
53
+ csak
54
+ de
55
+ e
56
+ eddig
57
+ egész
58
+ egy
59
+ egyes
60
+ egyetlen
61
+ egyéb
62
+ egyik
63
+ egyre
64
+ ekkor
65
+ el
66
+ elég
67
+ ellen
68
+ elő
69
+ először
70
+ előtt
71
+ első
72
+ én
73
+ éppen
74
+ ebben
75
+ ehhez
76
+ emilyen
77
+ ennek
78
+ erre
79
+ ez
80
+ ezt
81
+ ezek
82
+ ezen
83
+ ezzel
84
+ ezért
85
+ és
86
+ fel
87
+ felé
88
+ hanem
89
+ hiszen
90
+ hogy
91
+ hogyan
92
+ igen
93
+ így
94
+ illetve
95
+ ill.
96
+ ill
97
+ ilyen
98
+ ilyenkor
99
+ ison
100
+ ismét
101
+ itt
102
+
103
+ jól
104
+ jobban
105
+ kell
106
+ kellett
107
+ keresztül
108
+ keressünk
109
+ ki
110
+ kívül
111
+ között
112
+ közül
113
+ legalább
114
+ lehet
115
+ lehetett
116
+ legyen
117
+ lenne
118
+ lenni
119
+ lesz
120
+ lett
121
+ maga
122
+ magát
123
+ majd
124
+ majd
125
+ már
126
+ más
127
+ másik
128
+ meg
129
+ még
130
+ mellett
131
+ mert
132
+ mely
133
+ melyek
134
+ mi
135
+ mit
136
+ míg
137
+ miért
138
+ milyen
139
+ mikor
140
+ minden
141
+ mindent
142
+ mindenki
143
+ mindig
144
+ mint
145
+ mintha
146
+ mivel
147
+ most
148
+ nagy
149
+ nagyobb
150
+ nagyon
151
+ ne
152
+ néha
153
+ nekem
154
+ neki
155
+ nem
156
+ néhány
157
+ nélkül
158
+ nincs
159
+ olyan
160
+ ott
161
+ össze
162
+ ő
163
+ ők
164
+ őket
165
+ pedig
166
+ persze
167
+
168
+ s
169
+ saját
170
+ sem
171
+ semmi
172
+ sok
173
+ sokat
174
+ sokkal
175
+ számára
176
+ szemben
177
+ szerint
178
+ szinte
179
+ talán
180
+ tehát
181
+ teljes
182
+ tovább
183
+ továbbá
184
+ több
185
+ úgy
186
+ ugyanis
187
+ új
188
+ újabb
189
+ újra
190
+ után
191
+ utána
192
+ utolsó
193
+ vagy
194
+ vagyis
195
+ valaki
196
+ valami
197
+ valamint
198
+ való
199
+ vagyok
200
+ van
201
+ vannak
202
+ volt
203
+ voltam
204
+ voltak
205
+ voltunk
206
+ vissza
207
+ vele
208
+ viszont
209
+ volna
@@ -0,0 +1,46 @@
1
+ # example set of Armenian stopwords.
2
+ այդ
3
+ այլ
4
+ այն
5
+ այս
6
+ դու
7
+ դուք
8
+ եմ
9
+ են
10
+ ենք
11
+ ես
12
+ եք
13
+ է
14
+ էի
15
+ էին
16
+ էինք
17
+ էիր
18
+ էիք
19
+ էր
20
+ ըստ
21
+ թ
22
+ ի
23
+ ին
24
+ իսկ
25
+ իր
26
+ կամ
27
+ համար
28
+ հետ
29
+ հետո
30
+ մենք
31
+ մեջ
32
+ մի
33
+ ն
34
+ նա
35
+ նաև
36
+ նրա
37
+ նրանք
38
+ որ
39
+ որը
40
+ որոնք
41
+ որպես
42
+ ու
43
+ ում
44
+ պիտի
45
+ վրա
46
+ և
@@ -0,0 +1,359 @@
1
+ # from appendix D of: A Study of Stemming Effects on Information
2
+ # Retrieval in Bahasa Indonesia
3
+ ada
4
+ adanya
5
+ adalah
6
+ adapun
7
+ agak
8
+ agaknya
9
+ agar
10
+ akan
11
+ akankah
12
+ akhirnya
13
+ aku
14
+ akulah
15
+ amat
16
+ amatlah
17
+ anda
18
+ andalah
19
+ antar
20
+ diantaranya
21
+ antara
22
+ antaranya
23
+ diantara
24
+ apa
25
+ apaan
26
+ mengapa
27
+ apabila
28
+ apakah
29
+ apalagi
30
+ apatah
31
+ atau
32
+ ataukah
33
+ ataupun
34
+ bagai
35
+ bagaikan
36
+ sebagai
37
+ sebagainya
38
+ bagaimana
39
+ bagaimanapun
40
+ sebagaimana
41
+ bagaimanakah
42
+ bagi
43
+ bahkan
44
+ bahwa
45
+ bahwasanya
46
+ sebaliknya
47
+ banyak
48
+ sebanyak
49
+ beberapa
50
+ seberapa
51
+ begini
52
+ beginian
53
+ beginikah
54
+ beginilah
55
+ sebegini
56
+ begitu
57
+ begitukah
58
+ begitulah
59
+ begitupun
60
+ sebegitu
61
+ belum
62
+ belumlah
63
+ sebelum
64
+ sebelumnya
65
+ sebenarnya
66
+ berapa
67
+ berapakah
68
+ berapalah
69
+ berapapun
70
+ betulkah
71
+ sebetulnya
72
+ biasa
73
+ biasanya
74
+ bila
75
+ bilakah
76
+ bisa
77
+ bisakah
78
+ sebisanya
79
+ boleh
80
+ bolehkah
81
+ bolehlah
82
+ buat
83
+ bukan
84
+ bukankah
85
+ bukanlah
86
+ bukannya
87
+ cuma
88
+ percuma
89
+ dahulu
90
+ dalam
91
+ dan
92
+ dapat
93
+ dari
94
+ daripada
95
+ dekat
96
+ demi
97
+ demikian
98
+ demikianlah
99
+ sedemikian
100
+ dengan
101
+ depan
102
+ di
103
+ dia
104
+ dialah
105
+ dini
106
+ diri
107
+ dirinya
108
+ terdiri
109
+ dong
110
+ dulu
111
+ enggak
112
+ enggaknya
113
+ entah
114
+ entahlah
115
+ terhadap
116
+ terhadapnya
117
+ hal
118
+ hampir
119
+ hanya
120
+ hanyalah
121
+ harus
122
+ haruslah
123
+ harusnya
124
+ seharusnya
125
+ hendak
126
+ hendaklah
127
+ hendaknya
128
+ hingga
129
+ sehingga
130
+ ia
131
+ ialah
132
+ ibarat
133
+ ingin
134
+ inginkah
135
+ inginkan
136
+ ini
137
+ inikah
138
+ inilah
139
+ itu
140
+ itukah
141
+ itulah
142
+ jangan
143
+ jangankan
144
+ janganlah
145
+ jika
146
+ jikalau
147
+ juga
148
+ justru
149
+ kala
150
+ kalau
151
+ kalaulah
152
+ kalaupun
153
+ kalian
154
+ kami
155
+ kamilah
156
+ kamu
157
+ kamulah
158
+ kan
159
+ kapan
160
+ kapankah
161
+ kapanpun
162
+ dikarenakan
163
+ karena
164
+ karenanya
165
+ ke
166
+ kecil
167
+ kemudian
168
+ kenapa
169
+ kepada
170
+ kepadanya
171
+ ketika
172
+ seketika
173
+ khususnya
174
+ kini
175
+ kinilah
176
+ kiranya
177
+ sekiranya
178
+ kita
179
+ kitalah
180
+ kok
181
+ lagi
182
+ lagian
183
+ selagi
184
+ lah
185
+ lain
186
+ lainnya
187
+ melainkan
188
+ selaku
189
+ lalu
190
+ melalui
191
+ terlalu
192
+ lama
193
+ lamanya
194
+ selama
195
+ selama
196
+ selamanya
197
+ lebih
198
+ terlebih
199
+ bermacam
200
+ macam
201
+ semacam
202
+ maka
203
+ makanya
204
+ makin
205
+ malah
206
+ malahan
207
+ mampu
208
+ mampukah
209
+ mana
210
+ manakala
211
+ manalagi
212
+ masih
213
+ masihkah
214
+ semasih
215
+ masing
216
+ mau
217
+ maupun
218
+ semaunya
219
+ memang
220
+ mereka
221
+ merekalah
222
+ meski
223
+ meskipun
224
+ semula
225
+ mungkin
226
+ mungkinkah
227
+ nah
228
+ namun
229
+ nanti
230
+ nantinya
231
+ nyaris
232
+ oleh
233
+ olehnya
234
+ seorang
235
+ seseorang
236
+ pada
237
+ padanya
238
+ padahal
239
+ paling
240
+ sepanjang
241
+ pantas
242
+ sepantasnya
243
+ sepantasnyalah
244
+ para
245
+ pasti
246
+ pastilah
247
+ per
248
+ pernah
249
+ pula
250
+ pun
251
+ merupakan
252
+ rupanya
253
+ serupa
254
+ saat
255
+ saatnya
256
+ sesaat
257
+ saja
258
+ sajalah
259
+ saling
260
+ bersama
261
+ sama
262
+ sesama
263
+ sambil
264
+ sampai
265
+ sana
266
+ sangat
267
+ sangatlah
268
+ saya
269
+ sayalah
270
+ se
271
+ sebab
272
+ sebabnya
273
+ sebuah
274
+ tersebut
275
+ tersebutlah
276
+ sedang
277
+ sedangkan
278
+ sedikit
279
+ sedikitnya
280
+ segala
281
+ segalanya
282
+ segera
283
+ sesegera
284
+ sejak
285
+ sejenak
286
+ sekali
287
+ sekalian
288
+ sekalipun
289
+ sesekali
290
+ sekaligus
291
+ sekarang
292
+ sekarang
293
+ sekitar
294
+ sekitarnya
295
+ sela
296
+ selain
297
+ selalu
298
+ seluruh
299
+ seluruhnya
300
+ semakin
301
+ sementara
302
+ sempat
303
+ semua
304
+ semuanya
305
+ sendiri
306
+ sendirinya
307
+ seolah
308
+ seperti
309
+ sepertinya
310
+ sering
311
+ seringnya
312
+ serta
313
+ siapa
314
+ siapakah
315
+ siapapun
316
+ disini
317
+ disinilah
318
+ sini
319
+ sinilah
320
+ sesuatu
321
+ sesuatunya
322
+ suatu
323
+ sesudah
324
+ sesudahnya
325
+ sudah
326
+ sudahkah
327
+ sudahlah
328
+ supaya
329
+ tadi
330
+ tadinya
331
+ tak
332
+ tanpa
333
+ setelah
334
+ telah
335
+ tentang
336
+ tentu
337
+ tentulah
338
+ tentunya
339
+ tertentu
340
+ seterusnya
341
+ tapi
342
+ tetapi
343
+ setiap
344
+ tiap
345
+ setidaknya
346
+ tidak
347
+ tidakkah
348
+ tidaklah
349
+ toh
350
+ waduh
351
+ wah
352
+ wahai
353
+ sewaktu
354
+ walau
355
+ walaupun
356
+ wong
357
+ yaitu
358
+ yakni
359
+ yang