southnote-mini-sdk 1.0.21 → 1.0.23
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/app.js +1 -22
- package/assets/file/badwords.js +1 -63008
- package/assets/file/rules.js +1 -38
- package/components/bottomSheet/bottomSheet.js +1 -473
- package/components/experience-item/experience-item.js +1 -105
- package/components/grid-item/grid-item.js +1 -8
- package/components/post-item/post-item.js +1 -1086
- package/components/wiki-renderer/wiki-renderer.js +1 -636
- package/components/wiki-tabs/wiki-tabs.js +1 -52
- package/index.js +1 -49
- package/package.json +2 -22
- package/pages/addGame/addGame.js +1 -454
- package/pages/addSubject/addSubject.js +1 -199
- package/pages/commonLogin/commonLogin.js +1 -269
- package/pages/copyOfficial/copyOfficial.js +1 -25
- package/pages/demo/demo.js +1 -23
- package/pages/game/game.js +1 -1305
- package/pages/home/home.js +1 -665
- package/pages/lottery-winners/lottery-winners.js +1 -60
- package/pages/message/messageCommentsAndAt/messageCommentsAndAt.js +1 -178
- package/pages/message/messageEntire/messageEntire.js +1 -112
- package/pages/message/messageLikeAndCollect/messageLikeAndCollect.js +1 -147
- package/pages/message/messageNewFans/messageNewFans.js +1 -139
- package/pages/officialWebview/officialWebview.js +1 -13
- package/pages/post/post.js +1 -1856
- package/pages/post-editor/post-editor.js +1 -465
- package/pages/postDialog/postDialog.js +1 -560
- package/pages/report-category/report-category.js +1 -29
- package/pages/report-form/report-form.js +1 -65
- package/pages/sevenDaySignDetail/sevenDaySignDetail.js +1 -273
- package/pages/topic/topic.js +1 -266
- package/pages/user/user.js +1 -939
- package/pages/userDatum/userDatum.js +1 -24
- package/pages/userGameLib/userGameLib.js +1 -105
- package/pages/webview/webview.js +1 -25
- package/pages/wheelActivivty/wheelActivivty.js +1 -492
- package/pages/wiki/wiki.js +1 -138
- package/request/JKRequest.js +1 -177
- package/services/home.js +1 -603
- package/utils/auth.js +1 -17
- package/utils/base64.js +1 -67
- package/utils/compressImage.js +1 -41
- package/utils/exp.js +1 -49
- package/utils/formatPost.js +1 -18
- package/utils/parseContent.js +1 -191
- package/utils/query-select.js +1 -9
- package/utils/sensitive.js +1 -82
|
@@ -1,465 +1 @@
|
|
|
1
|
-
import {
|
|
2
|
-
publishPostNew,
|
|
3
|
-
getUploadToken
|
|
4
|
-
} from "../../services/home"
|
|
5
|
-
import sensitive from '../../utils/sensitive'
|
|
6
|
-
import {
|
|
7
|
-
compressImages
|
|
8
|
-
} from "../../utils/compressImage"
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
Page({
|
|
12
|
-
data: {
|
|
13
|
-
content: '',
|
|
14
|
-
images: [],
|
|
15
|
-
emojiVisible: false,
|
|
16
|
-
emojiList: [],
|
|
17
|
-
textareaHeight: 'calc(100vh - 230rpx)', // 默认高度
|
|
18
|
-
selectedTopic: null,
|
|
19
|
-
selectedGame: null,
|
|
20
|
-
cursor: 0,
|
|
21
|
-
// 新增
|
|
22
|
-
keyboardHeight: 0,
|
|
23
|
-
isKeyboardVisible: false,
|
|
24
|
-
showGameOption: false,
|
|
25
|
-
|
|
26
|
-
},
|
|
27
|
-
|
|
28
|
-
// 防重复点击
|
|
29
|
-
isSubmitting: false,
|
|
30
|
-
|
|
31
|
-
onLoad(options) {
|
|
32
|
-
const gameId = options.gameId;
|
|
33
|
-
const gameName = decodeURIComponent(options.gameName || '');
|
|
34
|
-
if (gameId && gameName) {
|
|
35
|
-
|
|
36
|
-
this.setData({
|
|
37
|
-
gameId,
|
|
38
|
-
selectedGame: {
|
|
39
|
-
id: gameId,
|
|
40
|
-
name: gameName
|
|
41
|
-
}
|
|
42
|
-
});
|
|
43
|
-
}
|
|
44
|
-
|
|
45
|
-
const windowInfo = wx.getWindowInfo()
|
|
46
|
-
const safeArea = windowInfo.safeArea
|
|
47
|
-
const safeHeight = safeArea.height
|
|
48
|
-
const safeTop = safeArea.top
|
|
49
|
-
const safeBottom = windowInfo.screenHeight - safeArea.bottom
|
|
50
|
-
console.log('safeHeight:', safeHeight)
|
|
51
|
-
console.log('safeBottom:', safeBottom)
|
|
52
|
-
this.setData({
|
|
53
|
-
safeBottomHeight: safeBottom
|
|
54
|
-
})
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
// wx.getSystemInfo({
|
|
60
|
-
// success: (res) => {
|
|
61
|
-
// // 安全区域信息
|
|
62
|
-
// const safeArea = res.safeArea;
|
|
63
|
-
// const safeHeight = safeArea.height; // 安全区域高度
|
|
64
|
-
// const safeTop = safeArea.top; // 安全区顶部 y 坐标
|
|
65
|
-
// const safeBottom = res.screenHeight - safeArea.bottom; // 底部安全区高度(手势栏)
|
|
66
|
-
|
|
67
|
-
// console.log('safeHeight:', safeHeight);
|
|
68
|
-
// console.log('safeBottom:', safeBottom);
|
|
69
|
-
// this.setData({
|
|
70
|
-
// safeBottomHeight: safeBottom
|
|
71
|
-
// })
|
|
72
|
-
// }
|
|
73
|
-
// });
|
|
74
|
-
|
|
75
|
-
// 初始化emoji列表,例如44个
|
|
76
|
-
let list = [];
|
|
77
|
-
for (let i = 1; i <= 44; i++) {
|
|
78
|
-
let num = i.toString().padStart(3, '0');
|
|
79
|
-
list.push(`../emoji/smile${num}.png`);
|
|
80
|
-
}
|
|
81
|
-
this.setData({
|
|
82
|
-
emojiList: list
|
|
83
|
-
});
|
|
84
|
-
|
|
85
|
-
// 监听键盘高度变化(确保微信基础库支持)
|
|
86
|
-
wx.onKeyboardHeightChange(res => {
|
|
87
|
-
const height = res.height || 0;
|
|
88
|
-
if (height > 0) {
|
|
89
|
-
// 键盘弹起:互斥,隐藏 emoji 面板
|
|
90
|
-
this.setData({
|
|
91
|
-
keyboardHeight: height,
|
|
92
|
-
isKeyboardVisible: true,
|
|
93
|
-
emojiVisible: false
|
|
94
|
-
}, this.updateTextareaHeight);
|
|
95
|
-
} else {
|
|
96
|
-
// 键盘收起
|
|
97
|
-
this.setData({
|
|
98
|
-
keyboardHeight: 0,
|
|
99
|
-
isKeyboardVisible: false
|
|
100
|
-
}, this.updateTextareaHeight);
|
|
101
|
-
}
|
|
102
|
-
});
|
|
103
|
-
},
|
|
104
|
-
|
|
105
|
-
onShow() {
|
|
106
|
-
this.insertSelectedTopic();
|
|
107
|
-
},
|
|
108
|
-
removeSelectedGame() {
|
|
109
|
-
this.setData({
|
|
110
|
-
selectedGame: null
|
|
111
|
-
});
|
|
112
|
-
},
|
|
113
|
-
/** 计算高度(考虑键盘互斥、emoji、图片) */
|
|
114
|
-
updateTextareaHeight() {
|
|
115
|
-
const {
|
|
116
|
-
emojiVisible,
|
|
117
|
-
images,
|
|
118
|
-
keyboardHeight,
|
|
119
|
-
isKeyboardVisible
|
|
120
|
-
} = this.data;
|
|
121
|
-
|
|
122
|
-
// 优先:键盘
|
|
123
|
-
if (isKeyboardVisible && keyboardHeight > 0) {
|
|
124
|
-
// 留出工具栏高度(约100rpx)用于显示按钮 — 因为键盘单位是 px,这里直接用 px
|
|
125
|
-
const reservedPx = 190 + 40; // 你可以调整这个值微调显示
|
|
126
|
-
let height;
|
|
127
|
-
if (images.length > 0) {
|
|
128
|
-
// 有图并且键盘弹出
|
|
129
|
-
height = `calc(100vh - ${keyboardHeight + reservedPx}px)`;
|
|
130
|
-
} else {
|
|
131
|
-
// 无图并且键盘弹出
|
|
132
|
-
height = `calc(100vh - ${keyboardHeight + 90+30}px)`;
|
|
133
|
-
}
|
|
134
|
-
this.setData({
|
|
135
|
-
textareaHeight: height
|
|
136
|
-
});
|
|
137
|
-
return;
|
|
138
|
-
}
|
|
139
|
-
|
|
140
|
-
// 如果显示 emoji(并且键盘未显示)
|
|
141
|
-
if (emojiVisible && images.length > 0) {
|
|
142
|
-
this.setData({
|
|
143
|
-
textareaHeight: 'calc(100vh - 840rpx)'
|
|
144
|
-
});
|
|
145
|
-
} else if (emojiVisible) {
|
|
146
|
-
this.setData({
|
|
147
|
-
textareaHeight: 'calc(100vh - 660rpx)'
|
|
148
|
-
});
|
|
149
|
-
} else if (images.length > 0) {
|
|
150
|
-
this.setData({
|
|
151
|
-
textareaHeight: 'calc(100vh - 410rpx)'
|
|
152
|
-
});
|
|
153
|
-
} else {
|
|
154
|
-
this.setData({
|
|
155
|
-
textareaHeight: 'calc(100vh - 240rpx)'
|
|
156
|
-
});
|
|
157
|
-
}
|
|
158
|
-
},
|
|
159
|
-
|
|
160
|
-
onInput(e) {
|
|
161
|
-
this.setData({
|
|
162
|
-
content: e.detail.value,
|
|
163
|
-
cursor: e.detail.cursor // 输入时光标位置
|
|
164
|
-
});
|
|
165
|
-
},
|
|
166
|
-
|
|
167
|
-
handleBlur(e) {
|
|
168
|
-
this.setData({
|
|
169
|
-
cursor: e.detail.cursor
|
|
170
|
-
});
|
|
171
|
-
// 注意:键盘高度变化由 onKeyboardHeightChange 处理,不在这里改 isKeyboardVisible
|
|
172
|
-
},
|
|
173
|
-
|
|
174
|
-
async chooseImage() {
|
|
175
|
-
// 选择图片前隐藏键盘(与 emoji 互斥)
|
|
176
|
-
try {
|
|
177
|
-
wx.hideKeyboard();
|
|
178
|
-
} catch (e) {
|
|
179
|
-
/* ignore */
|
|
180
|
-
}
|
|
181
|
-
|
|
182
|
-
wx.chooseMedia({
|
|
183
|
-
count: 9 - this.data.images.length,
|
|
184
|
-
mediaType: ['image'],
|
|
185
|
-
sourceType: ['album', 'camera'],
|
|
186
|
-
success: async (res) => {
|
|
187
|
-
const newImages = [];
|
|
188
|
-
|
|
189
|
-
for (let file of res.tempFiles) {
|
|
190
|
-
|
|
191
|
-
const compressed = await compressImages(file.tempFilePath);
|
|
192
|
-
|
|
193
|
-
// 获取压缩后的文件信息
|
|
194
|
-
const info = await new Promise((resolve, reject) => {
|
|
195
|
-
wx.getFileInfo({
|
|
196
|
-
filePath: compressed,
|
|
197
|
-
success: resolve,
|
|
198
|
-
fail: reject
|
|
199
|
-
});
|
|
200
|
-
});
|
|
201
|
-
|
|
202
|
-
console.log('压缩后图片路径:', compressed);
|
|
203
|
-
console.log('压缩后大小(字节):', info.size);
|
|
204
|
-
console.log('压缩后大小(MB):', (info.size / 1024 / 1024).toFixed(2));
|
|
205
|
-
newImages.push(compressed);
|
|
206
|
-
}
|
|
207
|
-
|
|
208
|
-
const images = this.data.images.concat(newImages);
|
|
209
|
-
|
|
210
|
-
this.setData({
|
|
211
|
-
images
|
|
212
|
-
}, this.updateTextareaHeight);
|
|
213
|
-
},
|
|
214
|
-
fail: (err) => {
|
|
215
|
-
console.error('选择图片失败:', err);
|
|
216
|
-
}
|
|
217
|
-
});
|
|
218
|
-
},
|
|
219
|
-
|
|
220
|
-
removeImage(e) {
|
|
221
|
-
let index = e.currentTarget.dataset.index;
|
|
222
|
-
let images = this.data.images;
|
|
223
|
-
images.splice(index, 1);
|
|
224
|
-
this.setData({
|
|
225
|
-
images
|
|
226
|
-
}, this.updateTextareaHeight);
|
|
227
|
-
},
|
|
228
|
-
|
|
229
|
-
toggleEmoji() {
|
|
230
|
-
// 如果要打开 emoji,需要先隐藏键盘(互斥),并拿到回调后再显示 emoji
|
|
231
|
-
if (!this.data.emojiVisible) {
|
|
232
|
-
// 打开 emoji:先隐藏键盘
|
|
233
|
-
try {
|
|
234
|
-
wx.hideKeyboard({
|
|
235
|
-
success: () => {
|
|
236
|
-
this.setData({
|
|
237
|
-
emojiVisible: true,
|
|
238
|
-
isKeyboardVisible: false,
|
|
239
|
-
keyboardHeight: 0
|
|
240
|
-
}, this.updateTextareaHeight);
|
|
241
|
-
},
|
|
242
|
-
fail: () => {
|
|
243
|
-
// 即便 hideKeyboard 失败,也打开 emoji
|
|
244
|
-
this.setData({
|
|
245
|
-
emojiVisible: true,
|
|
246
|
-
isKeyboardVisible: false,
|
|
247
|
-
keyboardHeight: 0
|
|
248
|
-
}, this.updateTextareaHeight);
|
|
249
|
-
}
|
|
250
|
-
});
|
|
251
|
-
} catch (e) {
|
|
252
|
-
this.setData({
|
|
253
|
-
emojiVisible: true,
|
|
254
|
-
isKeyboardVisible: false,
|
|
255
|
-
keyboardHeight: 0
|
|
256
|
-
}, this.updateTextareaHeight);
|
|
257
|
-
}
|
|
258
|
-
} else {
|
|
259
|
-
// 关闭 emoji(不打开键盘)
|
|
260
|
-
this.setData({
|
|
261
|
-
emojiVisible: false
|
|
262
|
-
}, this.updateTextareaHeight);
|
|
263
|
-
}
|
|
264
|
-
},
|
|
265
|
-
|
|
266
|
-
chooseGame() {
|
|
267
|
-
wx.navigateTo({
|
|
268
|
-
url: '../addGame/addGame',
|
|
269
|
-
})
|
|
270
|
-
},
|
|
271
|
-
|
|
272
|
-
selectEmoji(e) {
|
|
273
|
-
let index = e.currentTarget.dataset.index;
|
|
274
|
-
let emojiText = `[/` + (index + 1) + `]`;
|
|
275
|
-
|
|
276
|
-
// 延迟执行,确保 cursor 已经更新
|
|
277
|
-
setTimeout(() => {
|
|
278
|
-
const {
|
|
279
|
-
content,
|
|
280
|
-
cursor
|
|
281
|
-
} = this.data;
|
|
282
|
-
const newContent = content.slice(0, cursor) + emojiText + content.slice(cursor);
|
|
283
|
-
|
|
284
|
-
this.setData({
|
|
285
|
-
content: newContent,
|
|
286
|
-
cursor: cursor + emojiText.length // 光标移动到表情末尾
|
|
287
|
-
});
|
|
288
|
-
}, 100);
|
|
289
|
-
},
|
|
290
|
-
|
|
291
|
-
chooseTopic() {
|
|
292
|
-
// 打开主题页面前隐藏键盘,保持互斥逻辑
|
|
293
|
-
try {
|
|
294
|
-
wx.hideKeyboard();
|
|
295
|
-
} catch (e) {}
|
|
296
|
-
wx.navigateTo({
|
|
297
|
-
url: '../addSubject/addSubject',
|
|
298
|
-
});
|
|
299
|
-
},
|
|
300
|
-
|
|
301
|
-
|
|
302
|
-
|
|
303
|
-
toBase64(str) {
|
|
304
|
-
const chars = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/';
|
|
305
|
-
let result = '';
|
|
306
|
-
let i = 0;
|
|
307
|
-
|
|
308
|
-
str = unescape(encodeURIComponent(str)); // 处理中文
|
|
309
|
-
|
|
310
|
-
while (i < str.length) {
|
|
311
|
-
const byte1 = str.charCodeAt(i++);
|
|
312
|
-
const byte2 = str.charCodeAt(i++);
|
|
313
|
-
const byte3 = str.charCodeAt(i++);
|
|
314
|
-
|
|
315
|
-
const enc1 = byte1 >> 2;
|
|
316
|
-
const enc2 = ((byte1 & 3) << 4) | (byte2 >> 4);
|
|
317
|
-
const enc3 = isNaN(byte2) ? 64 : (((byte2 & 15) << 2) | (byte3 >> 6));
|
|
318
|
-
const enc4 = isNaN(byte3) ? 64 : (byte3 & 63);
|
|
319
|
-
|
|
320
|
-
result += chars.charAt(enc1);
|
|
321
|
-
result += chars.charAt(enc2);
|
|
322
|
-
result += enc3 === 64 ? '=' : chars.charAt(enc3);
|
|
323
|
-
result += enc4 === 64 ? '=' : chars.charAt(enc4);
|
|
324
|
-
}
|
|
325
|
-
|
|
326
|
-
return result;
|
|
327
|
-
},
|
|
328
|
-
|
|
329
|
-
insertSelectedTopic() {
|
|
330
|
-
const topic = this.data.selectedTopic;
|
|
331
|
-
if (!topic || !topic.name) return;
|
|
332
|
-
|
|
333
|
-
const content = this.data.content;
|
|
334
|
-
const cursor = this.data.cursor || content.length;
|
|
335
|
-
const topicText = `#${topic.name}#`;
|
|
336
|
-
|
|
337
|
-
const newContent = content.slice(0, cursor) + topicText + content.slice(cursor);
|
|
338
|
-
|
|
339
|
-
this.setData({
|
|
340
|
-
content: newContent,
|
|
341
|
-
cursor: cursor + topicText.length,
|
|
342
|
-
selectedTopic: null
|
|
343
|
-
});
|
|
344
|
-
},
|
|
345
|
-
|
|
346
|
-
async submitPost() {
|
|
347
|
-
if (this.isSubmitting) return;
|
|
348
|
-
this.isSubmitting = true;
|
|
349
|
-
|
|
350
|
-
|
|
351
|
-
try {
|
|
352
|
-
const {
|
|
353
|
-
content,
|
|
354
|
-
images,
|
|
355
|
-
selectedGame
|
|
356
|
-
} = this.data;
|
|
357
|
-
|
|
358
|
-
if (!content && images.length === 0) {
|
|
359
|
-
return wx.showToast({
|
|
360
|
-
title: '请输入帖子内容',
|
|
361
|
-
icon: 'error'
|
|
362
|
-
});
|
|
363
|
-
}
|
|
364
|
-
|
|
365
|
-
// 敏感词检测
|
|
366
|
-
const hit = sensitive.detect(content)
|
|
367
|
-
if (hit) {
|
|
368
|
-
return wx.showToast({
|
|
369
|
-
title: `敏感词 ${sensitive.mask(hit)}`,
|
|
370
|
-
icon: 'none'
|
|
371
|
-
})
|
|
372
|
-
}
|
|
373
|
-
|
|
374
|
-
wx.showLoading({
|
|
375
|
-
title: '发布中...',
|
|
376
|
-
mask: true
|
|
377
|
-
});
|
|
378
|
-
|
|
379
|
-
|
|
380
|
-
let tokenId = null;
|
|
381
|
-
|
|
382
|
-
if (images.length > 0) {
|
|
383
|
-
tokenId = await this.uploadImagesToOSS(images);
|
|
384
|
-
console.log('上传成功:', tokenId);
|
|
385
|
-
}
|
|
386
|
-
|
|
387
|
-
await publishPostNew(this.toBase64(content), tokenId, false, selectedGame?.id).catch(err => {
|
|
388
|
-
this.isSubmitting = false;
|
|
389
|
-
});
|
|
390
|
-
wx.hideLoading();
|
|
391
|
-
|
|
392
|
-
setTimeout(() => {
|
|
393
|
-
wx.showToast({
|
|
394
|
-
title: '发布成功',
|
|
395
|
-
icon: 'success'
|
|
396
|
-
});
|
|
397
|
-
}, 200);
|
|
398
|
-
|
|
399
|
-
wx.navigateBack();
|
|
400
|
-
} catch (err) {
|
|
401
|
-
wx.hideLoading();
|
|
402
|
-
console.error("发布失败:", err);
|
|
403
|
-
wx.showToast({
|
|
404
|
-
title: '发布失败',
|
|
405
|
-
icon: 'none'
|
|
406
|
-
});
|
|
407
|
-
} finally {
|
|
408
|
-
this.isSubmitting = false;
|
|
409
|
-
}
|
|
410
|
-
},
|
|
411
|
-
|
|
412
|
-
async uploadImagesToOSS(images) {
|
|
413
|
-
try {
|
|
414
|
-
const tokenRes = await getUploadToken(images.map(() => 1), false);
|
|
415
|
-
const {
|
|
416
|
-
host,
|
|
417
|
-
list,
|
|
418
|
-
accessid,
|
|
419
|
-
id
|
|
420
|
-
} = tokenRes.data;
|
|
421
|
-
|
|
422
|
-
const uploadPromises = images.map((filePath, i) => {
|
|
423
|
-
const {
|
|
424
|
-
dir,
|
|
425
|
-
policy,
|
|
426
|
-
signature
|
|
427
|
-
} = list[i];
|
|
428
|
-
|
|
429
|
-
return new Promise((resolve, reject) => {
|
|
430
|
-
wx.uploadFile({
|
|
431
|
-
url: host,
|
|
432
|
-
filePath,
|
|
433
|
-
name: 'file',
|
|
434
|
-
formData: {
|
|
435
|
-
key: dir,
|
|
436
|
-
policy,
|
|
437
|
-
OSSAccessKeyId: accessid,
|
|
438
|
-
signature,
|
|
439
|
-
success_action_status: '200'
|
|
440
|
-
},
|
|
441
|
-
success(res) {
|
|
442
|
-
if (res.statusCode === 200) {
|
|
443
|
-
resolve();
|
|
444
|
-
} else {
|
|
445
|
-
reject(res);
|
|
446
|
-
}
|
|
447
|
-
},
|
|
448
|
-
fail(err) {
|
|
449
|
-
reject(err);
|
|
450
|
-
}
|
|
451
|
-
});
|
|
452
|
-
});
|
|
453
|
-
});
|
|
454
|
-
|
|
455
|
-
await Promise.all(uploadPromises);
|
|
456
|
-
return id;
|
|
457
|
-
} catch (err) {
|
|
458
|
-
console.error('上传失败', err);
|
|
459
|
-
wx.showToast({
|
|
460
|
-
title: '上传失败' + err,
|
|
461
|
-
})
|
|
462
|
-
throw err;
|
|
463
|
-
}
|
|
464
|
-
}
|
|
465
|
-
});
|
|
1
|
+
(function(_0x15d171,_0x243309){const _0x10b7d5=_0x35db,_0x246770=_0x15d171();while(!![]){try{const _0x2e5179=-parseInt(_0x10b7d5(0x1dd))/0x1+parseInt(_0x10b7d5(0x212))/0x2+-parseInt(_0x10b7d5(0x1fd))/0x3*(parseInt(_0x10b7d5(0x1b9))/0x4)+parseInt(_0x10b7d5(0x1fa))/0x5*(-parseInt(_0x10b7d5(0x222))/0x6)+parseInt(_0x10b7d5(0x1b5))/0x7*(parseInt(_0x10b7d5(0x214))/0x8)+parseInt(_0x10b7d5(0x1ad))/0x9+-parseInt(_0x10b7d5(0x1f3))/0xa*(-parseInt(_0x10b7d5(0x1bc))/0xb);if(_0x2e5179===_0x243309)break;else _0x246770['push'](_0x246770['shift']());}catch(_0x3fc222){_0x246770['push'](_0x246770['shift']());}}}(_0x3c0b,0xa33d6));import{publishPostNew,getUploadToken}from'../../services/home';import _0x4cbd10 from'../../utils/sensitive';import{compressImages}from'../../utils/compressImage';Page({'data':{'content':'','images':[],'emojiVisible':![],'emojiList':[],'textareaHeight':'calc(100vh\x20-\x20230rpx)','selectedTopic':null,'selectedGame':null,'cursor':0x0,'keyboardHeight':0x0,'isKeyboardVisible':![],'showGameOption':![]},'isSubmitting':![],'onLoad'(_0x2807d8){const _0x314032=_0x35db,_0x4dc74f={'DITjG':function(_0x3c2aa1,_0x35f3fc){return _0x3c2aa1>_0x35f3fc;},'gktub':function(_0x5b1420,_0x408c0c){return _0x5b1420(_0x408c0c);},'QSBzO':function(_0x1e98d6,_0x5e1112){return _0x1e98d6&&_0x5e1112;},'YWIRK':function(_0x59b8f5,_0x2ff9e3){return _0x59b8f5-_0x2ff9e3;},'zYHtA':_0x314032(0x21d),'ysrRV':_0x314032(0x1d5),'xhusZ':function(_0x47f67d,_0x256975){return _0x47f67d<=_0x256975;}},_0x1eab08=_0x2807d8[_0x314032(0x1d2)],_0x2971c6=_0x4dc74f[_0x314032(0x21f)](decodeURIComponent,_0x2807d8[_0x314032(0x219)]||'');_0x4dc74f[_0x314032(0x1fe)](_0x1eab08,_0x2971c6)&&this['setData']({'gameId':_0x1eab08,'selectedGame':{'id':_0x1eab08,'name':_0x2971c6}});const _0x47291d=wx[_0x314032(0x1d8)](),_0x6348d7=_0x47291d[_0x314032(0x1c0)],_0x4b4ace=_0x6348d7['height'],_0x1d2255=_0x6348d7[_0x314032(0x1df)],_0x529aa7=_0x4dc74f[_0x314032(0x1c9)](_0x47291d['screenHeight'],_0x6348d7[_0x314032(0x1f5)]);console[_0x314032(0x215)](_0x4dc74f[_0x314032(0x225)],_0x4b4ace),console[_0x314032(0x215)](_0x4dc74f[_0x314032(0x1bd)],_0x529aa7),this[_0x314032(0x20a)]({'safeBottomHeight':_0x529aa7});let _0x5021f3=[];for(let _0x50f1cf=0x1;_0x4dc74f['xhusZ'](_0x50f1cf,0x2c);_0x50f1cf++){let _0x26143b=_0x50f1cf[_0x314032(0x213)]()['padStart'](0x3,'0');_0x5021f3[_0x314032(0x221)](_0x314032(0x20e)+_0x26143b+_0x314032(0x1cd));}this[_0x314032(0x20a)]({'emojiList':_0x5021f3}),wx[_0x314032(0x1e2)](_0x3315a6=>{const _0x5ca04b=_0x314032,_0x3b17b3=_0x3315a6['height']||0x0;_0x4dc74f[_0x5ca04b(0x1e3)](_0x3b17b3,0x0)?this[_0x5ca04b(0x20a)]({'keyboardHeight':_0x3b17b3,'isKeyboardVisible':!![],'emojiVisible':![]},this[_0x5ca04b(0x218)]):this[_0x5ca04b(0x20a)]({'keyboardHeight':0x0,'isKeyboardVisible':![]},this[_0x5ca04b(0x218)]);});},'onShow'(){const _0x15c3ea=_0x35db;this[_0x15c3ea(0x1e6)]();},'removeSelectedGame'(){this['setData']({'selectedGame':null});},'updateTextareaHeight'(){const _0x3b0918=_0x35db,_0x377870={'IaDis':function(_0x5224c5,_0x2cb1c2){return _0x5224c5>_0x2cb1c2;},'OmxNr':function(_0x1fe1c9,_0x44bef9){return _0x1fe1c9+_0x44bef9;},'EIrIp':function(_0x3c3c79,_0x5bd098){return _0x3c3c79+_0x5bd098;},'hrJjU':function(_0x20b9a0,_0x2c4527){return _0x20b9a0+_0x2c4527;},'kmwOl':_0x3b0918(0x1e7),'rSmvB':'calc(100vh\x20-\x20660rpx)','PWSJn':_0x3b0918(0x1ae),'ksIHA':'calc(100vh\x20-\x20240rpx)'},{emojiVisible:_0x49b9e9,images:_0x7493c9,keyboardHeight:_0x33ab49,isKeyboardVisible:_0x1bdfe2}=this[_0x3b0918(0x1b6)];if(_0x1bdfe2&&_0x377870[_0x3b0918(0x1cf)](_0x33ab49,0x0)){const _0x4b7263=_0x377870[_0x3b0918(0x1d1)](0xbe,0x28);let _0x345b6c;_0x377870[_0x3b0918(0x1cf)](_0x7493c9['length'],0x0)?_0x345b6c=_0x3b0918(0x1d6)+_0x377870[_0x3b0918(0x207)](_0x33ab49,_0x4b7263)+'px)':_0x345b6c=_0x3b0918(0x1d6)+_0x377870[_0x3b0918(0x207)](_0x377870['hrJjU'](_0x33ab49,0x5a),0x1e)+_0x3b0918(0x200);this['setData']({'textareaHeight':_0x345b6c});return;}if(_0x49b9e9&&_0x377870['IaDis'](_0x7493c9[_0x3b0918(0x1c6)],0x0))this['setData']({'textareaHeight':_0x377870['kmwOl']});else{if(_0x49b9e9)this[_0x3b0918(0x20a)]({'textareaHeight':_0x377870[_0x3b0918(0x1f4)]});else _0x377870['IaDis'](_0x7493c9[_0x3b0918(0x1c6)],0x0)?this[_0x3b0918(0x20a)]({'textareaHeight':_0x377870['PWSJn']}):this[_0x3b0918(0x20a)]({'textareaHeight':_0x377870[_0x3b0918(0x1d4)]});}},'onInput'(_0x320b09){const _0x2b8eab=_0x35db;this['setData']({'content':_0x320b09[_0x2b8eab(0x1fb)][_0x2b8eab(0x21a)],'cursor':_0x320b09[_0x2b8eab(0x1fb)][_0x2b8eab(0x217)]});},'handleBlur'(_0x11040c){const _0x51c95c=_0x35db;this['setData']({'cursor':_0x11040c['detail'][_0x51c95c(0x217)]});},async 'chooseImage'(){const _0x434e02=_0x35db,_0x5cad90={'aaLna':function(_0x156b29,_0x440809){return _0x156b29(_0x440809);},'VgNaG':'压缩后图片路径:','BoMLv':_0x434e02(0x1c3),'sWozh':_0x434e02(0x1db),'dnNfY':function(_0x2b5396,_0x29660c){return _0x2b5396/_0x29660c;},'LnshK':function(_0x1fa6f6,_0x5058dc){return _0x1fa6f6/_0x5058dc;},'MHMXt':_0x434e02(0x1cc),'cKSJF':'image','rhCOI':_0x434e02(0x1e8),'AiYPI':_0x434e02(0x1bf)};try{wx['hideKeyboard']();}catch(_0x3c86a5){}wx['chooseMedia']({'count':0x9-this[_0x434e02(0x1b6)][_0x434e02(0x1f0)][_0x434e02(0x1c6)],'mediaType':[_0x5cad90[_0x434e02(0x1f9)]],'sourceType':[_0x5cad90[_0x434e02(0x1b1)],_0x5cad90[_0x434e02(0x1f7)]],'success':async _0x5b0bd4=>{const _0x215446=_0x434e02,_0x730d9b=[];for(let _0x2aaa0c of _0x5b0bd4['tempFiles']){const _0x2553a4=await _0x5cad90[_0x215446(0x20c)](compressImages,_0x2aaa0c[_0x215446(0x1cb)]),_0x18125f=await new Promise((_0xbaf987,_0xd2cf66)=>{const _0x4d0031=_0x215446;wx[_0x4d0031(0x1bb)]({'filePath':_0x2553a4,'success':_0xbaf987,'fail':_0xd2cf66});});console['log'](_0x5cad90[_0x215446(0x1d0)],_0x2553a4),console[_0x215446(0x215)](_0x5cad90['BoMLv'],_0x18125f['size']),console[_0x215446(0x215)](_0x5cad90[_0x215446(0x1de)],_0x5cad90[_0x215446(0x1e5)](_0x5cad90[_0x215446(0x1eb)](_0x18125f['size'],0x400),0x400)[_0x215446(0x1f1)](0x2)),_0x730d9b[_0x215446(0x221)](_0x2553a4);}const _0x1f7c6d=this[_0x215446(0x1b6)][_0x215446(0x1f0)][_0x215446(0x206)](_0x730d9b);this[_0x215446(0x20a)]({'images':_0x1f7c6d},this['updateTextareaHeight']);},'fail':_0x40db71=>{console['error'](_0x5cad90['MHMXt'],_0x40db71);}});},'removeImage'(_0x45d81b){const _0x3abc0c=_0x35db;let _0x3f3a37=_0x45d81b[_0x3abc0c(0x1b4)][_0x3abc0c(0x1c7)][_0x3abc0c(0x210)],_0x3bb3bc=this[_0x3abc0c(0x1b6)]['images'];_0x3bb3bc[_0x3abc0c(0x1b2)](_0x3f3a37,0x1),this[_0x3abc0c(0x20a)]({'images':_0x3bb3bc},this[_0x3abc0c(0x218)]);},'toggleEmoji'(){const _0x3e5a24=_0x35db;if(!this[_0x3e5a24(0x1b6)]['emojiVisible'])try{wx[_0x3e5a24(0x216)]({'success':()=>{const _0x6450bb=_0x3e5a24;this[_0x6450bb(0x20a)]({'emojiVisible':!![],'isKeyboardVisible':![],'keyboardHeight':0x0},this[_0x6450bb(0x218)]);},'fail':()=>{const _0x1b51de=_0x3e5a24;this[_0x1b51de(0x20a)]({'emojiVisible':!![],'isKeyboardVisible':![],'keyboardHeight':0x0},this[_0x1b51de(0x218)]);}});}catch(_0x3086c6){this['setData']({'emojiVisible':!![],'isKeyboardVisible':![],'keyboardHeight':0x0},this[_0x3e5a24(0x218)]);}else this[_0x3e5a24(0x20a)]({'emojiVisible':![]},this[_0x3e5a24(0x218)]);},'chooseGame'(){const _0x54ef8c=_0x35db,_0x2d0728={'kOZCV':_0x54ef8c(0x1f6)};wx['navigateTo']({'url':_0x2d0728[_0x54ef8c(0x1b8)]});},'selectEmoji'(_0x26340f){const _0x2bcf3b=_0x35db,_0x58010d={'EOPUD':function(_0x35f159,_0x3c7831){return _0x35f159+_0x3c7831;},'HWrKC':function(_0x3463a8,_0x3f97b8){return _0x3463a8+_0x3f97b8;},'ADsqZ':function(_0x5d3ddf,_0x400222){return _0x5d3ddf+_0x400222;},'mXCmY':function(_0x51f2ea,_0x5d4e9d){return _0x51f2ea+_0x5d4e9d;},'qacXq':function(_0xb39fe3,_0x481278){return _0xb39fe3+_0x481278;},'FqlrU':function(_0x44b632,_0x153eb7,_0x37b82c){return _0x44b632(_0x153eb7,_0x37b82c);}};let _0x5b7363=_0x26340f[_0x2bcf3b(0x1b4)][_0x2bcf3b(0x1c7)][_0x2bcf3b(0x210)],_0x16b9bd=_0x58010d['mXCmY'](_0x58010d[_0x2bcf3b(0x1a9)]('[/',_0x58010d[_0x2bcf3b(0x1ee)](_0x5b7363,0x1)),']');_0x58010d['FqlrU'](setTimeout,()=>{const _0x5e0f6e=_0x2bcf3b,{content:_0x222c97,cursor:_0x2f6149}=this[_0x5e0f6e(0x1b6)],_0x2630de=_0x58010d['EOPUD'](_0x58010d[_0x5e0f6e(0x1ee)](_0x222c97[_0x5e0f6e(0x205)](0x0,_0x2f6149),_0x16b9bd),_0x222c97[_0x5e0f6e(0x205)](_0x2f6149));this[_0x5e0f6e(0x20a)]({'content':_0x2630de,'cursor':_0x58010d[_0x5e0f6e(0x1af)](_0x2f6149,_0x16b9bd[_0x5e0f6e(0x1c6)])});},0x64);},'chooseTopic'(){const _0x3f35a6=_0x35db,_0x48169a={'aLlWn':_0x3f35a6(0x223)};try{wx[_0x3f35a6(0x216)]();}catch(_0x59a7df){}wx[_0x3f35a6(0x220)]({'url':_0x48169a['aLlWn']});},'toBase64'(_0x22fe58){const _0x389479=_0x35db,_0x30fd21={'yNZED':_0x389479(0x20d),'JEmMc':function(_0x107454,_0x2985a7){return _0x107454(_0x2985a7);},'ODJZI':function(_0x53e488,_0x49f575){return _0x53e488>>_0x49f575;},'rkmSG':function(_0x58abba,_0x393fee){return _0x58abba|_0x393fee;},'oOFkW':function(_0x15f62,_0x3207bc){return _0x15f62<<_0x3207bc;},'mtYVh':function(_0x5b5b5a,_0x4280d8){return _0x5b5b5a&_0x4280d8;},'bReLR':function(_0x33b2e1,_0x2fbdb2){return _0x33b2e1>>_0x2fbdb2;},'Ttgth':function(_0x52f9aa,_0x46169d){return _0x52f9aa===_0x46169d;}},_0x642461=_0x30fd21['yNZED'];let _0x2b3784='',_0x1f367a=0x0;_0x22fe58=_0x30fd21[_0x389479(0x21c)](unescape,_0x30fd21[_0x389479(0x21c)](encodeURIComponent,_0x22fe58));while(_0x1f367a<_0x22fe58[_0x389479(0x1c6)]){const _0x1c32c7=_0x22fe58['charCodeAt'](_0x1f367a++),_0x41d8f4=_0x22fe58[_0x389479(0x21e)](_0x1f367a++),_0x158575=_0x22fe58[_0x389479(0x21e)](_0x1f367a++),_0x15685f=_0x30fd21[_0x389479(0x203)](_0x1c32c7,0x2),_0x11b607=_0x30fd21[_0x389479(0x1f2)](_0x30fd21['oOFkW'](_0x30fd21['mtYVh'](_0x1c32c7,0x3),0x4),_0x30fd21[_0x389479(0x1ab)](_0x41d8f4,0x4)),_0x4ee383=isNaN(_0x41d8f4)?0x40:_0x30fd21[_0x389479(0x1ff)](_0x30fd21[_0x389479(0x1d9)](_0x41d8f4,0xf),0x2)|_0x30fd21[_0x389479(0x203)](_0x158575,0x6),_0x2689e8=isNaN(_0x158575)?0x40:_0x30fd21[_0x389479(0x1d9)](_0x158575,0x3f);_0x2b3784+=_0x642461['charAt'](_0x15685f),_0x2b3784+=_0x642461[_0x389479(0x1b0)](_0x11b607),_0x2b3784+=_0x4ee383===0x40?'=':_0x642461[_0x389479(0x1b0)](_0x4ee383),_0x2b3784+=_0x30fd21['Ttgth'](_0x2689e8,0x40)?'=':_0x642461['charAt'](_0x2689e8);}return _0x2b3784;},'insertSelectedTopic'(){const _0x82c0d9=_0x35db,_0x93fe50={'TYcGY':function(_0x181f0c,_0x2028a0){return _0x181f0c+_0x2028a0;},'qVVqp':function(_0xdf22d8,_0xbd2593){return _0xdf22d8+_0xbd2593;}},_0x5d3d3b=this['data']['selectedTopic'];if(!_0x5d3d3b||!_0x5d3d3b[_0x82c0d9(0x1ca)])return;const _0x5de3b2=this['data']['content'],_0x59a386=this['data'][_0x82c0d9(0x217)]||_0x5de3b2[_0x82c0d9(0x1c6)],_0x14b06a='#'+_0x5d3d3b[_0x82c0d9(0x1ca)]+'#',_0x36862d=_0x93fe50[_0x82c0d9(0x1c1)](_0x5de3b2['slice'](0x0,_0x59a386),_0x14b06a)+_0x5de3b2[_0x82c0d9(0x205)](_0x59a386);this[_0x82c0d9(0x20a)]({'content':_0x36862d,'cursor':_0x93fe50[_0x82c0d9(0x1e4)](_0x59a386,_0x14b06a['length']),'selectedTopic':null});},async 'submitPost'(){const _0x155c84=_0x35db,_0xfbf4bd={'hrWXJ':_0x155c84(0x1ed),'bZPaP':'success','iKzyn':function(_0x227840,_0x4a235d){return _0x227840===_0x4a235d;},'dRoig':'请输入帖子内容','kUEKn':'error','xPojd':_0x155c84(0x1d3),'gzRky':_0x155c84(0x1ec),'oTkqt':function(_0x2753cf,_0xcb4d41){return _0x2753cf>_0xcb4d41;},'sTHbY':_0x155c84(0x211),'aHxvG':function(_0xcd761d,_0x1c6b22,_0x283662){return _0xcd761d(_0x1c6b22,_0x283662);},'LPviw':_0x155c84(0x1ef)};if(this[_0x155c84(0x224)])return;this['isSubmitting']=!![];try{const {content:_0x114e37,images:_0x3ebc39,selectedGame:_0x354909}=this['data'];if(!_0x114e37&&_0xfbf4bd['iKzyn'](_0x3ebc39[_0x155c84(0x1c6)],0x0))return wx[_0x155c84(0x1ac)]({'title':_0xfbf4bd[_0x155c84(0x21b)],'icon':_0xfbf4bd['kUEKn']});const _0x51cb93=_0x4cbd10['detect'](_0x114e37);if(_0x51cb93)return wx[_0x155c84(0x1ac)]({'title':_0x155c84(0x1aa)+_0x4cbd10[_0x155c84(0x226)](_0x51cb93),'icon':_0xfbf4bd[_0x155c84(0x1ba)]});wx[_0x155c84(0x1c2)]({'title':_0xfbf4bd[_0x155c84(0x1c4)],'mask':!![]});let _0x25bfdf=null;_0xfbf4bd['oTkqt'](_0x3ebc39['length'],0x0)&&(_0x25bfdf=await this[_0x155c84(0x20f)](_0x3ebc39),console[_0x155c84(0x215)](_0xfbf4bd[_0x155c84(0x1b7)],_0x25bfdf)),await publishPostNew(this[_0x155c84(0x1c5)](_0x114e37),_0x25bfdf,![],_0x354909?.['id'])[_0x155c84(0x1ea)](_0x262a2c=>{const _0x2d9062=_0x155c84;this[_0x2d9062(0x224)]=![];}),wx['hideLoading'](),_0xfbf4bd[_0x155c84(0x1d7)](setTimeout,()=>{const _0x37247b=_0x155c84;wx['showToast']({'title':_0xfbf4bd['hrWXJ'],'icon':_0xfbf4bd[_0x37247b(0x1c8)]});},0xc8),wx[_0x155c84(0x1e0)]();}catch(_0xbf9620){wx[_0x155c84(0x1dc)](),console[_0x155c84(0x1b3)](_0xfbf4bd[_0x155c84(0x201)],_0xbf9620),wx[_0x155c84(0x1ac)]({'title':'发布失败','icon':'none'});}finally{this[_0x155c84(0x224)]=![];}},async 'uploadImagesToOSS'(_0x28ca50){const _0x2569bf=_0x35db,_0x5909d3={'AcAXy':function(_0x1f3b34){return _0x1f3b34();},'peGzl':function(_0x3fc763,_0x36d0af){return _0x3fc763(_0x36d0af);},'CngJn':_0x2569bf(0x1ce)};try{const _0x4daf3f=await getUploadToken(_0x28ca50[_0x2569bf(0x1be)](()=>0x1),![]),{host:_0xc9b452,list:_0x28bdf1,accessid:_0x418c47,id:_0x330cab}=_0x4daf3f[_0x2569bf(0x1b6)],_0x5271f3=_0x28ca50[_0x2569bf(0x1be)]((_0x323129,_0x3e6a19)=>{const _0x5cf354={'xrLTU':function(_0xf2dc96){const _0x17ac71=_0x35db;return _0x5909d3[_0x17ac71(0x1fc)](_0xf2dc96);},'xnlOy':function(_0x5ee403,_0x2024c7){const _0x552bdc=_0x35db;return _0x5909d3[_0x552bdc(0x202)](_0x5ee403,_0x2024c7);}},{dir:_0x30d008,policy:_0x56c85f,signature:_0x27639f}=_0x28bdf1[_0x3e6a19];return new Promise((_0x2f655f,_0x5e624d)=>{const _0x2cd363=_0x35db,_0x5db377={'Trtqi':function(_0x1b415f,_0x5020be){return _0x1b415f(_0x5020be);}};wx[_0x2cd363(0x1e9)]({'url':_0xc9b452,'filePath':_0x323129,'name':_0x2cd363(0x1da),'formData':{'key':_0x30d008,'policy':_0x56c85f,'OSSAccessKeyId':_0x418c47,'signature':_0x27639f,'success_action_status':_0x2cd363(0x1f8)},'success'(_0x585e37){const _0x2f408a=_0x2cd363;_0x585e37[_0x2f408a(0x1e1)]===0xc8?_0x5cf354[_0x2f408a(0x209)](_0x2f655f):_0x5cf354[_0x2f408a(0x227)](_0x5e624d,_0x585e37);},'fail'(_0x33a42f){const _0x57ce0a=_0x2cd363;_0x5db377[_0x57ce0a(0x204)](_0x5e624d,_0x33a42f);}});});});return await Promise[_0x2569bf(0x20b)](_0x5271f3),_0x330cab;}catch(_0x4f2c33){console[_0x2569bf(0x1b3)](_0x5909d3[_0x2569bf(0x208)],_0x4f2c33),wx['showToast']({'title':_0x5909d3[_0x2569bf(0x208)]+_0x4f2c33});throw _0x4f2c33;}}});function _0x35db(_0x37b542,_0x1b2a8b){_0x37b542=_0x37b542-0x1a9;const _0x3c0b33=_0x3c0b();let _0x35db0f=_0x3c0b33[_0x37b542];if(_0x35db['PPkLzC']===undefined){var _0x513366=function(_0x431094){const _0x5945b6='abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789+/=';let _0x42fd8a='',_0x31f0c7='';for(let _0x2abca7=0x0,_0x51c473,_0x5db53a,_0x10460b=0x0;_0x5db53a=_0x431094['charAt'](_0x10460b++);~_0x5db53a&&(_0x51c473=_0x2abca7%0x4?_0x51c473*0x40+_0x5db53a:_0x5db53a,_0x2abca7++%0x4)?_0x42fd8a+=String['fromCharCode'](0xff&_0x51c473>>(-0x2*_0x2abca7&0x6)):0x0){_0x5db53a=_0x5945b6['indexOf'](_0x5db53a);}for(let _0xb723b1=0x0,_0x23536f=_0x42fd8a['length'];_0xb723b1<_0x23536f;_0xb723b1++){_0x31f0c7+='%'+('00'+_0x42fd8a['charCodeAt'](_0xb723b1)['toString'](0x10))['slice'](-0x2);}return decodeURIComponent(_0x31f0c7);};_0x35db['RVSdyr']=_0x513366,_0x35db['cDKVss']={},_0x35db['PPkLzC']=!![];}const _0x377d30=_0x3c0b33[0x0],_0x5781ef=_0x37b542+_0x377d30,_0x19d4a9=_0x35db['cDKVss'][_0x5781ef];return!_0x19d4a9?(_0x35db0f=_0x35db['RVSdyr'](_0x35db0f),_0x35db['cDKVss'][_0x5781ef]=_0x35db0f):_0x35db0f=_0x19d4a9,_0x35db0f;}function _0x3c0b(){const _0x4507f5=['qurZCvO','y2HHCKf0','CMHdt0K','C3bSAwnL','zxjYB3i','y3vYCMvUDfrHCMDLDa','mJfrv2r1zNu','zgf0yq','C1riyLK','A09Aq1y','nJuXmZj4EfLXBMO','EfbVAMq','z2v0rMLSzuLUzM8','mtm5n2n4t3ziwa','ExnYuLy','BwfW','y2fTzxjH','C2fMzufYzwe','vfLJr1K','C2HVD0XVywrPBMC','5y6l57YP5zco5AsN5Bcp77Yi5A2x6iQc77YjoG','z3PsA3K','Dg9cyxnLnJq','BgvUz3rO','zgf0yxnLDa','yLPqyva','wvDjuKS','BMfTzq','DgvTCezPBgvqyxrO','6ycj5OUP5zU+54Mh5AsX6lsL77YA','lNbUzW','5lIk5lYG5AsX6lsL','swfeAxm','vMDoyuC','t214tNi','z2fTzuLK','BM9Uzq','A3njsee','C2fMzujVDhrVBtO','y2fSyYGXmdb2AcaTia','yuH4DKC','z2v0v2LUzg93sw5MBW','BxrzvMG','zMLSzq','5y6l57YP5zco5AsN5Bcp77YitulVViK6','AgLKzuXVywrPBMC','oti3ndm2ww1HAMj4','C1DVEMG','Dg9W','BMf2AwDHDgvcywnR','C3rHDhvZq29Kzq','B25lzxLIB2fYzeHLAwDODenOyw5Nzq','reLuAKC','CvzwCxa','zg5ozLK','Aw5Zzxj0u2vSzwn0zwruB3bPyW','y2fSyYGXmdb2AcaTidG0mhjWEcK','ywXIDw0','DxbSB2fKrMLSzq','y2f0y2G','tg5ZAeS','5y+r5BId5lITlI4U','5y+r5BId5OIq5yQF','sfDYs0m','5y+r5BId5AsX6lsLoG','Aw1Hz2vZ','Dg9gAxHLza','CMTTu0C','mty0mJbXzer6ug0','CLnTDKi','yM90Dg9T','lI4VywrKr2fTzs9Hzgrhyw1L','qwLzueK','mJaW','y0TtsKy','mte1tfHxCKnx','zgv0ywLS','qwnbwhK','mJfOsuT5sLK','uvncEK8','B09gA1C','ChGP','tfb2AxC','CgvhEMW','t0rkwKK','vhj0CwK','C2XPy2u','y29Uy2f0','ruLYsxa','q25NsM4','Ehjmvfu','C2v0rgf0yq','ywXS','ywfmBMe','qujdrevgr0HjsKTmtu5puffsu1rvvLDywvPHyMnKzwzNAgLQA2XTBM9WCxjZDhv2D3H5EJaXmJm0nty3odKRlW','lI4Vzw1VAMKVC21PBgu','DxbSB2fKsw1Hz2vZvg9pu1m','Aw5KzxG','5lIk5lYG5OIq5yQFoG','ntGWmdeWC1DKu0jU','Dg9tDhjPBMC','mti0ndiWmhvbC0fVCW','Bg9N','AgLKzuTLEwjVyxjK','y3vYC29Y','DxbKyxrLvgv4DgfYzwfizwLNAhq','z2fTzu5HBwu','DMfSDwu','zfjVAwC','sKvTtwm','C2fMzuHLAwDODdO','y2HHCKnVzgvbDa','z2T0Dwi','BMf2AwDHDgvuBW','ChvZAa','nZq5mJj4yNLNCeG','lI4VywrKu3vIAMvJDc9HzgrtDwjQzwn0','AxntDwjTAxr0Aw5N','ELLiDee','BwfZAW','Eg5St3K','CwfJwhe','5Pwp5OsF6k+nia','yLjLtfi','C2HVD1rVyxn0','oti4otiWnKHOC01ltW','y2fSyYGXmdb2AcaTidqXmhjWEcK'];_0x3c0b=function(){return _0x4507f5;};return _0x3c0b();}
|