@ckeditor/ckeditor5-track-changes 0.0.0-internal-20241017.0

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 (466) hide show
  1. package/CHANGELOG.md +4 -0
  2. package/LICENSE.md +22 -0
  3. package/README.md +68 -0
  4. package/build/track-changes.js +5 -0
  5. package/build/translations/ar.js +1 -0
  6. package/build/translations/az.js +1 -0
  7. package/build/translations/bg.js +1 -0
  8. package/build/translations/bn.js +1 -0
  9. package/build/translations/ca.js +1 -0
  10. package/build/translations/cs.js +1 -0
  11. package/build/translations/da.js +1 -0
  12. package/build/translations/de.js +1 -0
  13. package/build/translations/el.js +1 -0
  14. package/build/translations/en-au.js +1 -0
  15. package/build/translations/es.js +1 -0
  16. package/build/translations/et.js +1 -0
  17. package/build/translations/fi.js +1 -0
  18. package/build/translations/fr.js +1 -0
  19. package/build/translations/gl.js +1 -0
  20. package/build/translations/he.js +1 -0
  21. package/build/translations/hi.js +1 -0
  22. package/build/translations/hr.js +1 -0
  23. package/build/translations/hu.js +1 -0
  24. package/build/translations/id.js +1 -0
  25. package/build/translations/it.js +1 -0
  26. package/build/translations/ja.js +1 -0
  27. package/build/translations/ko.js +1 -0
  28. package/build/translations/lt.js +1 -0
  29. package/build/translations/lv.js +1 -0
  30. package/build/translations/ms.js +1 -0
  31. package/build/translations/nl.js +1 -0
  32. package/build/translations/no.js +1 -0
  33. package/build/translations/pl.js +1 -0
  34. package/build/translations/pt-br.js +1 -0
  35. package/build/translations/pt.js +1 -0
  36. package/build/translations/ro.js +1 -0
  37. package/build/translations/ru.js +1 -0
  38. package/build/translations/sk.js +1 -0
  39. package/build/translations/sq.js +1 -0
  40. package/build/translations/sr-latn.js +1 -0
  41. package/build/translations/sr.js +1 -0
  42. package/build/translations/sv.js +1 -0
  43. package/build/translations/th.js +1 -0
  44. package/build/translations/tk.js +1 -0
  45. package/build/translations/tr.js +1 -0
  46. package/build/translations/tt.js +1 -0
  47. package/build/translations/uk.js +1 -0
  48. package/build/translations/ur.js +1 -0
  49. package/build/translations/vi.js +1 -0
  50. package/build/translations/zh-cn.js +1 -0
  51. package/build/translations/zh.js +1 -0
  52. package/ckeditor5-metadata.json +31 -0
  53. package/dist/augmentation.d.ts +44 -0
  54. package/dist/commands/acceptsuggestioncommand.d.ts +28 -0
  55. package/dist/commands/discardsuggestioncommand.d.ts +28 -0
  56. package/dist/commands/executeonallsuggestionscommand.d.ts +28 -0
  57. package/dist/commands/executeonselectedsuggestionscommand.d.ts +28 -0
  58. package/dist/commands/trackchangescommand.d.ts +30 -0
  59. package/dist/index-content.css +4 -0
  60. package/dist/index-editor.css +4 -0
  61. package/dist/index.css +4 -0
  62. package/dist/index.d.ts +22 -0
  63. package/dist/index.js +25 -0
  64. package/dist/integrations/aiassistant.d.ts +21 -0
  65. package/dist/integrations/alignment.d.ts +21 -0
  66. package/dist/integrations/basicstyles.d.ts +21 -0
  67. package/dist/integrations/blockquote.d.ts +21 -0
  68. package/dist/integrations/casechange.d.ts +21 -0
  69. package/dist/integrations/ckbox.d.ts +21 -0
  70. package/dist/integrations/codeblock.d.ts +21 -0
  71. package/dist/integrations/comments.d.ts +18 -0
  72. package/dist/integrations/deletecommand.d.ts +21 -0
  73. package/dist/integrations/entercommand.d.ts +20 -0
  74. package/dist/integrations/findandreplace.d.ts +25 -0
  75. package/dist/integrations/font.d.ts +21 -0
  76. package/dist/integrations/formatpainter.d.ts +21 -0
  77. package/dist/integrations/heading.d.ts +21 -0
  78. package/dist/integrations/highlight.d.ts +21 -0
  79. package/dist/integrations/horizontalline.d.ts +21 -0
  80. package/dist/integrations/htmlembed.d.ts +21 -0
  81. package/dist/integrations/image.d.ts +21 -0
  82. package/dist/integrations/imagereplace.d.ts +21 -0
  83. package/dist/integrations/imagestyle.d.ts +21 -0
  84. package/dist/integrations/importword.d.ts +22 -0
  85. package/dist/integrations/indent.d.ts +21 -0
  86. package/dist/integrations/inputcommand.d.ts +20 -0
  87. package/dist/integrations/legacylist.d.ts +21 -0
  88. package/dist/integrations/legacylistproperties.d.ts +33 -0
  89. package/dist/integrations/link.d.ts +21 -0
  90. package/dist/integrations/list.d.ts +21 -0
  91. package/dist/integrations/listproperties.d.ts +24 -0
  92. package/dist/integrations/mediaembed.d.ts +21 -0
  93. package/dist/integrations/mention.d.ts +21 -0
  94. package/dist/integrations/mergefields.d.ts +21 -0
  95. package/dist/integrations/multilevellist.d.ts +28 -0
  96. package/dist/integrations/pagebreak.d.ts +21 -0
  97. package/dist/integrations/paragraph.d.ts +21 -0
  98. package/dist/integrations/removeformat.d.ts +21 -0
  99. package/dist/integrations/restrictededitingmode.d.ts +21 -0
  100. package/dist/integrations/shiftentercommand.d.ts +20 -0
  101. package/dist/integrations/standardeditingmode.d.ts +21 -0
  102. package/dist/integrations/style.d.ts +21 -0
  103. package/dist/integrations/table.d.ts +46 -0
  104. package/dist/integrations/tablecaption.d.ts +26 -0
  105. package/dist/integrations/tableclipboard.d.ts +23 -0
  106. package/dist/integrations/tablecolumnresize.d.ts +30 -0
  107. package/dist/integrations/tableheadings.d.ts +26 -0
  108. package/dist/integrations/tablemergesplit.d.ts +26 -0
  109. package/dist/integrations/tableofcontents.d.ts +21 -0
  110. package/dist/integrations/tableproperties.d.ts +39 -0
  111. package/dist/integrations/template.d.ts +21 -0
  112. package/dist/integrations/title.d.ts +21 -0
  113. package/dist/integrations/undo.d.ts +21 -0
  114. package/dist/integrations/utils.d.ts +21 -0
  115. package/dist/suggestion.d.ts +295 -0
  116. package/dist/suggestiondescriptionfactory.d.ts +187 -0
  117. package/dist/trackchanges.d.ts +192 -0
  118. package/dist/trackchangesconfig.d.ts +89 -0
  119. package/dist/trackchangesdata.d.ts +53 -0
  120. package/dist/trackchangesediting.d.ts +557 -0
  121. package/dist/trackchangesui.d.ts +50 -0
  122. package/dist/translations/ar.d.ts +8 -0
  123. package/dist/translations/ar.js +23 -0
  124. package/dist/translations/ar.umd.js +23 -0
  125. package/dist/translations/az.d.ts +8 -0
  126. package/dist/translations/az.js +23 -0
  127. package/dist/translations/az.umd.js +23 -0
  128. package/dist/translations/bg.d.ts +8 -0
  129. package/dist/translations/bg.js +23 -0
  130. package/dist/translations/bg.umd.js +23 -0
  131. package/dist/translations/bn.d.ts +8 -0
  132. package/dist/translations/bn.js +23 -0
  133. package/dist/translations/bn.umd.js +23 -0
  134. package/dist/translations/ca.d.ts +8 -0
  135. package/dist/translations/ca.js +23 -0
  136. package/dist/translations/ca.umd.js +23 -0
  137. package/dist/translations/cs.d.ts +8 -0
  138. package/dist/translations/cs.js +23 -0
  139. package/dist/translations/cs.umd.js +23 -0
  140. package/dist/translations/da.d.ts +8 -0
  141. package/dist/translations/da.js +23 -0
  142. package/dist/translations/da.umd.js +23 -0
  143. package/dist/translations/de.d.ts +8 -0
  144. package/dist/translations/de.js +23 -0
  145. package/dist/translations/de.umd.js +23 -0
  146. package/dist/translations/el.d.ts +8 -0
  147. package/dist/translations/el.js +23 -0
  148. package/dist/translations/el.umd.js +23 -0
  149. package/dist/translations/en-au.d.ts +8 -0
  150. package/dist/translations/en-au.js +23 -0
  151. package/dist/translations/en-au.umd.js +23 -0
  152. package/dist/translations/en.d.ts +8 -0
  153. package/dist/translations/en.js +23 -0
  154. package/dist/translations/en.umd.js +23 -0
  155. package/dist/translations/es.d.ts +8 -0
  156. package/dist/translations/es.js +23 -0
  157. package/dist/translations/es.umd.js +23 -0
  158. package/dist/translations/et.d.ts +8 -0
  159. package/dist/translations/et.js +23 -0
  160. package/dist/translations/et.umd.js +23 -0
  161. package/dist/translations/fi.d.ts +8 -0
  162. package/dist/translations/fi.js +23 -0
  163. package/dist/translations/fi.umd.js +23 -0
  164. package/dist/translations/fr.d.ts +8 -0
  165. package/dist/translations/fr.js +23 -0
  166. package/dist/translations/fr.umd.js +23 -0
  167. package/dist/translations/gl.d.ts +8 -0
  168. package/dist/translations/gl.js +23 -0
  169. package/dist/translations/gl.umd.js +23 -0
  170. package/dist/translations/he.d.ts +8 -0
  171. package/dist/translations/he.js +23 -0
  172. package/dist/translations/he.umd.js +23 -0
  173. package/dist/translations/hi.d.ts +8 -0
  174. package/dist/translations/hi.js +23 -0
  175. package/dist/translations/hi.umd.js +23 -0
  176. package/dist/translations/hr.d.ts +8 -0
  177. package/dist/translations/hr.js +23 -0
  178. package/dist/translations/hr.umd.js +23 -0
  179. package/dist/translations/hu.d.ts +8 -0
  180. package/dist/translations/hu.js +23 -0
  181. package/dist/translations/hu.umd.js +23 -0
  182. package/dist/translations/id.d.ts +8 -0
  183. package/dist/translations/id.js +23 -0
  184. package/dist/translations/id.umd.js +23 -0
  185. package/dist/translations/it.d.ts +8 -0
  186. package/dist/translations/it.js +23 -0
  187. package/dist/translations/it.umd.js +23 -0
  188. package/dist/translations/ja.d.ts +8 -0
  189. package/dist/translations/ja.js +23 -0
  190. package/dist/translations/ja.umd.js +23 -0
  191. package/dist/translations/ko.d.ts +8 -0
  192. package/dist/translations/ko.js +23 -0
  193. package/dist/translations/ko.umd.js +23 -0
  194. package/dist/translations/lt.d.ts +8 -0
  195. package/dist/translations/lt.js +23 -0
  196. package/dist/translations/lt.umd.js +23 -0
  197. package/dist/translations/lv.d.ts +8 -0
  198. package/dist/translations/lv.js +23 -0
  199. package/dist/translations/lv.umd.js +23 -0
  200. package/dist/translations/ms.d.ts +8 -0
  201. package/dist/translations/ms.js +23 -0
  202. package/dist/translations/ms.umd.js +23 -0
  203. package/dist/translations/nl.d.ts +8 -0
  204. package/dist/translations/nl.js +23 -0
  205. package/dist/translations/nl.umd.js +23 -0
  206. package/dist/translations/no.d.ts +8 -0
  207. package/dist/translations/no.js +23 -0
  208. package/dist/translations/no.umd.js +23 -0
  209. package/dist/translations/pl.d.ts +8 -0
  210. package/dist/translations/pl.js +23 -0
  211. package/dist/translations/pl.umd.js +23 -0
  212. package/dist/translations/pt-br.d.ts +8 -0
  213. package/dist/translations/pt-br.js +23 -0
  214. package/dist/translations/pt-br.umd.js +23 -0
  215. package/dist/translations/pt.d.ts +8 -0
  216. package/dist/translations/pt.js +23 -0
  217. package/dist/translations/pt.umd.js +23 -0
  218. package/dist/translations/ro.d.ts +8 -0
  219. package/dist/translations/ro.js +23 -0
  220. package/dist/translations/ro.umd.js +23 -0
  221. package/dist/translations/ru.d.ts +8 -0
  222. package/dist/translations/ru.js +23 -0
  223. package/dist/translations/ru.umd.js +23 -0
  224. package/dist/translations/sk.d.ts +8 -0
  225. package/dist/translations/sk.js +23 -0
  226. package/dist/translations/sk.umd.js +23 -0
  227. package/dist/translations/sq.d.ts +8 -0
  228. package/dist/translations/sq.js +23 -0
  229. package/dist/translations/sq.umd.js +23 -0
  230. package/dist/translations/sr-latn.d.ts +8 -0
  231. package/dist/translations/sr-latn.js +23 -0
  232. package/dist/translations/sr-latn.umd.js +23 -0
  233. package/dist/translations/sr.d.ts +8 -0
  234. package/dist/translations/sr.js +23 -0
  235. package/dist/translations/sr.umd.js +23 -0
  236. package/dist/translations/sv.d.ts +8 -0
  237. package/dist/translations/sv.js +23 -0
  238. package/dist/translations/sv.umd.js +23 -0
  239. package/dist/translations/th.d.ts +8 -0
  240. package/dist/translations/th.js +23 -0
  241. package/dist/translations/th.umd.js +23 -0
  242. package/dist/translations/tk.d.ts +8 -0
  243. package/dist/translations/tk.js +23 -0
  244. package/dist/translations/tk.umd.js +23 -0
  245. package/dist/translations/tr.d.ts +8 -0
  246. package/dist/translations/tr.js +23 -0
  247. package/dist/translations/tr.umd.js +23 -0
  248. package/dist/translations/tt.d.ts +8 -0
  249. package/dist/translations/tt.js +23 -0
  250. package/dist/translations/tt.umd.js +23 -0
  251. package/dist/translations/uk.d.ts +8 -0
  252. package/dist/translations/uk.js +23 -0
  253. package/dist/translations/uk.umd.js +23 -0
  254. package/dist/translations/ur.d.ts +8 -0
  255. package/dist/translations/ur.js +23 -0
  256. package/dist/translations/ur.umd.js +23 -0
  257. package/dist/translations/vi.d.ts +8 -0
  258. package/dist/translations/vi.js +23 -0
  259. package/dist/translations/vi.umd.js +23 -0
  260. package/dist/translations/zh-cn.d.ts +8 -0
  261. package/dist/translations/zh-cn.js +23 -0
  262. package/dist/translations/zh-cn.umd.js +23 -0
  263. package/dist/translations/zh.d.ts +8 -0
  264. package/dist/translations/zh.js +23 -0
  265. package/dist/translations/zh.umd.js +23 -0
  266. package/dist/ui/suggestioncontroller.d.ts +41 -0
  267. package/dist/ui/view/basesuggestionthreadview.d.ts +209 -0
  268. package/dist/ui/view/suggestionthreadview.d.ts +98 -0
  269. package/dist/ui/view/suggestionview.d.ts +194 -0
  270. package/dist/utils/common-translations.d.ts +13 -0
  271. package/dist/utils/utils.d.ts +41 -0
  272. package/lang/contexts.json +134 -0
  273. package/lang/translations/ar.po +672 -0
  274. package/lang/translations/az.po +588 -0
  275. package/lang/translations/bg.po +588 -0
  276. package/lang/translations/bn.po +614 -0
  277. package/lang/translations/ca.po +588 -0
  278. package/lang/translations/cs.po +630 -0
  279. package/lang/translations/da.po +588 -0
  280. package/lang/translations/de.po +588 -0
  281. package/lang/translations/el.po +588 -0
  282. package/lang/translations/en-au.po +588 -0
  283. package/lang/translations/en.po +588 -0
  284. package/lang/translations/es.po +609 -0
  285. package/lang/translations/et.po +588 -0
  286. package/lang/translations/fi.po +588 -0
  287. package/lang/translations/fr.po +609 -0
  288. package/lang/translations/gl.po +588 -0
  289. package/lang/translations/he.po +625 -0
  290. package/lang/translations/hi.po +588 -0
  291. package/lang/translations/hr.po +609 -0
  292. package/lang/translations/hu.po +588 -0
  293. package/lang/translations/id.po +567 -0
  294. package/lang/translations/it.po +609 -0
  295. package/lang/translations/ja.po +567 -0
  296. package/lang/translations/ko.po +567 -0
  297. package/lang/translations/lt.po +630 -0
  298. package/lang/translations/lv.po +609 -0
  299. package/lang/translations/ms.po +567 -0
  300. package/lang/translations/nl.po +588 -0
  301. package/lang/translations/no.po +588 -0
  302. package/lang/translations/pl.po +630 -0
  303. package/lang/translations/pt-br.po +609 -0
  304. package/lang/translations/pt.po +609 -0
  305. package/lang/translations/ro.po +609 -0
  306. package/lang/translations/ru.po +632 -0
  307. package/lang/translations/sk.po +630 -0
  308. package/lang/translations/sq.po +588 -0
  309. package/lang/translations/sr-latn.po +609 -0
  310. package/lang/translations/sr.po +609 -0
  311. package/lang/translations/sv.po +588 -0
  312. package/lang/translations/th.po +567 -0
  313. package/lang/translations/tk.po +588 -0
  314. package/lang/translations/tr.po +588 -0
  315. package/lang/translations/tt.po +567 -0
  316. package/lang/translations/uk.po +630 -0
  317. package/lang/translations/ur.po +588 -0
  318. package/lang/translations/vi.po +567 -0
  319. package/lang/translations/zh-cn.po +567 -0
  320. package/lang/translations/zh.po +567 -0
  321. package/package.json +57 -0
  322. package/src/augmentation.d.ts +40 -0
  323. package/src/augmentation.js +23 -0
  324. package/src/commands/acceptsuggestioncommand.d.ts +24 -0
  325. package/src/commands/acceptsuggestioncommand.js +23 -0
  326. package/src/commands/discardsuggestioncommand.d.ts +24 -0
  327. package/src/commands/discardsuggestioncommand.js +23 -0
  328. package/src/commands/executeonallsuggestionscommand.d.ts +24 -0
  329. package/src/commands/executeonallsuggestionscommand.js +23 -0
  330. package/src/commands/executeonselectedsuggestionscommand.d.ts +24 -0
  331. package/src/commands/executeonselectedsuggestionscommand.js +23 -0
  332. package/src/commands/trackchangescommand.d.ts +26 -0
  333. package/src/commands/trackchangescommand.js +23 -0
  334. package/src/index.d.ts +18 -0
  335. package/src/index.js +23 -0
  336. package/src/integrations/aiassistant.d.ts +17 -0
  337. package/src/integrations/aiassistant.js +23 -0
  338. package/src/integrations/alignment.d.ts +17 -0
  339. package/src/integrations/alignment.js +23 -0
  340. package/src/integrations/basicstyles.d.ts +17 -0
  341. package/src/integrations/basicstyles.js +23 -0
  342. package/src/integrations/blockquote.d.ts +17 -0
  343. package/src/integrations/blockquote.js +23 -0
  344. package/src/integrations/casechange.d.ts +17 -0
  345. package/src/integrations/casechange.js +23 -0
  346. package/src/integrations/ckbox.d.ts +17 -0
  347. package/src/integrations/ckbox.js +23 -0
  348. package/src/integrations/codeblock.d.ts +17 -0
  349. package/src/integrations/codeblock.js +23 -0
  350. package/src/integrations/comments.d.ts +14 -0
  351. package/src/integrations/comments.js +23 -0
  352. package/src/integrations/deletecommand.d.ts +17 -0
  353. package/src/integrations/deletecommand.js +23 -0
  354. package/src/integrations/entercommand.d.ts +16 -0
  355. package/src/integrations/entercommand.js +23 -0
  356. package/src/integrations/findandreplace.d.ts +21 -0
  357. package/src/integrations/findandreplace.js +23 -0
  358. package/src/integrations/font.d.ts +17 -0
  359. package/src/integrations/font.js +23 -0
  360. package/src/integrations/formatpainter.d.ts +17 -0
  361. package/src/integrations/formatpainter.js +23 -0
  362. package/src/integrations/heading.d.ts +17 -0
  363. package/src/integrations/heading.js +23 -0
  364. package/src/integrations/highlight.d.ts +17 -0
  365. package/src/integrations/highlight.js +23 -0
  366. package/src/integrations/horizontalline.d.ts +17 -0
  367. package/src/integrations/horizontalline.js +23 -0
  368. package/src/integrations/htmlembed.d.ts +17 -0
  369. package/src/integrations/htmlembed.js +23 -0
  370. package/src/integrations/image.d.ts +17 -0
  371. package/src/integrations/image.js +23 -0
  372. package/src/integrations/imagereplace.d.ts +17 -0
  373. package/src/integrations/imagereplace.js +23 -0
  374. package/src/integrations/imagestyle.d.ts +17 -0
  375. package/src/integrations/imagestyle.js +23 -0
  376. package/src/integrations/importword.d.ts +18 -0
  377. package/src/integrations/importword.js +23 -0
  378. package/src/integrations/indent.d.ts +17 -0
  379. package/src/integrations/indent.js +23 -0
  380. package/src/integrations/inputcommand.d.ts +16 -0
  381. package/src/integrations/inputcommand.js +23 -0
  382. package/src/integrations/legacylist.d.ts +17 -0
  383. package/src/integrations/legacylist.js +23 -0
  384. package/src/integrations/legacylistproperties.d.ts +29 -0
  385. package/src/integrations/legacylistproperties.js +23 -0
  386. package/src/integrations/link.d.ts +17 -0
  387. package/src/integrations/link.js +23 -0
  388. package/src/integrations/list.d.ts +17 -0
  389. package/src/integrations/list.js +23 -0
  390. package/src/integrations/listproperties.d.ts +20 -0
  391. package/src/integrations/listproperties.js +23 -0
  392. package/src/integrations/mediaembed.d.ts +17 -0
  393. package/src/integrations/mediaembed.js +23 -0
  394. package/src/integrations/mention.d.ts +17 -0
  395. package/src/integrations/mention.js +23 -0
  396. package/src/integrations/mergefields.d.ts +17 -0
  397. package/src/integrations/mergefields.js +23 -0
  398. package/src/integrations/multilevellist.d.ts +24 -0
  399. package/src/integrations/multilevellist.js +23 -0
  400. package/src/integrations/pagebreak.d.ts +17 -0
  401. package/src/integrations/pagebreak.js +23 -0
  402. package/src/integrations/paragraph.d.ts +17 -0
  403. package/src/integrations/paragraph.js +23 -0
  404. package/src/integrations/removeformat.d.ts +17 -0
  405. package/src/integrations/removeformat.js +23 -0
  406. package/src/integrations/restrictededitingmode.d.ts +17 -0
  407. package/src/integrations/restrictededitingmode.js +23 -0
  408. package/src/integrations/shiftentercommand.d.ts +16 -0
  409. package/src/integrations/shiftentercommand.js +23 -0
  410. package/src/integrations/standardeditingmode.d.ts +17 -0
  411. package/src/integrations/standardeditingmode.js +23 -0
  412. package/src/integrations/style.d.ts +17 -0
  413. package/src/integrations/style.js +23 -0
  414. package/src/integrations/table.d.ts +42 -0
  415. package/src/integrations/table.js +23 -0
  416. package/src/integrations/tablecaption.d.ts +22 -0
  417. package/src/integrations/tablecaption.js +23 -0
  418. package/src/integrations/tableclipboard.d.ts +19 -0
  419. package/src/integrations/tableclipboard.js +23 -0
  420. package/src/integrations/tablecolumnresize.d.ts +26 -0
  421. package/src/integrations/tablecolumnresize.js +23 -0
  422. package/src/integrations/tableheadings.d.ts +22 -0
  423. package/src/integrations/tableheadings.js +23 -0
  424. package/src/integrations/tablemergesplit.d.ts +22 -0
  425. package/src/integrations/tablemergesplit.js +23 -0
  426. package/src/integrations/tableofcontents.d.ts +17 -0
  427. package/src/integrations/tableofcontents.js +23 -0
  428. package/src/integrations/tableproperties.d.ts +35 -0
  429. package/src/integrations/tableproperties.js +23 -0
  430. package/src/integrations/template.d.ts +17 -0
  431. package/src/integrations/template.js +23 -0
  432. package/src/integrations/title.d.ts +17 -0
  433. package/src/integrations/title.js +23 -0
  434. package/src/integrations/undo.d.ts +17 -0
  435. package/src/integrations/undo.js +23 -0
  436. package/src/integrations/utils.d.ts +17 -0
  437. package/src/integrations/utils.js +23 -0
  438. package/src/suggestion.d.ts +291 -0
  439. package/src/suggestion.js +24 -0
  440. package/src/suggestiondescriptionfactory.d.ts +183 -0
  441. package/src/suggestiondescriptionfactory.js +23 -0
  442. package/src/trackchanges.d.ts +188 -0
  443. package/src/trackchanges.js +23 -0
  444. package/src/trackchangesconfig.d.ts +85 -0
  445. package/src/trackchangesconfig.js +23 -0
  446. package/src/trackchangesdata.d.ts +49 -0
  447. package/src/trackchangesdata.js +23 -0
  448. package/src/trackchangesediting.d.ts +553 -0
  449. package/src/trackchangesediting.js +23 -0
  450. package/src/trackchangesui.d.ts +46 -0
  451. package/src/trackchangesui.js +23 -0
  452. package/src/ui/suggestioncontroller.d.ts +37 -0
  453. package/src/ui/suggestioncontroller.js +24 -0
  454. package/src/ui/view/basesuggestionthreadview.d.ts +205 -0
  455. package/src/ui/view/basesuggestionthreadview.js +23 -0
  456. package/src/ui/view/suggestionthreadview.d.ts +94 -0
  457. package/src/ui/view/suggestionthreadview.js +23 -0
  458. package/src/ui/view/suggestionview.d.ts +190 -0
  459. package/src/ui/view/suggestionview.js +23 -0
  460. package/src/utils/common-translations.d.ts +9 -0
  461. package/src/utils/common-translations.js +23 -0
  462. package/src/utils/utils.d.ts +37 -0
  463. package/src/utils/utils.js +23 -0
  464. package/theme/icons/track-changes-accept.svg +11 -0
  465. package/theme/icons/track-changes-discard.svg +11 -0
  466. package/theme/icons/track-changes.svg +11 -0
@@ -0,0 +1,23 @@
1
+ /*
2
+ * Copyright (c) 2003-2024, CKSource Holding sp. z o.o. All rights reserved.
3
+ *
4
+ *
5
+ *
6
+ *
7
+ * +---------------------------------------------------------------------------------+
8
+ * | |
9
+ * | Hello stranger! |
10
+ * | |
11
+ * | |
12
+ * | What you're currently looking at is the source code of a legally protected, |
13
+ * | proprietary software. Any attempts to deobfuscate / disassemble this code |
14
+ * | are forbidden and will result in legal consequences. |
15
+ * | |
16
+ * | |
17
+ * +---------------------------------------------------------------------------------+
18
+ *
19
+ *
20
+ *
21
+ *
22
+ */
23
+ const _0x4b63b3=_0xb65f;(function(_0x597998,_0x502e15){const _0x542944=_0xb65f,_0x2ca82a=_0x597998();while(!![]){try{const _0x523146=-parseInt(_0x542944(0xed))/0x1+parseInt(_0x542944(0x104))/0x2*(-parseInt(_0x542944(0xfd))/0x3)+-parseInt(_0x542944(0x21b))/0x4+parseInt(_0x542944(0x258))/0x5+-parseInt(_0x542944(0x11d))/0x6*(parseInt(_0x542944(0x1c0))/0x7)+parseInt(_0x542944(0x26d))/0x8*(-parseInt(_0x542944(0x157))/0x9)+parseInt(_0x542944(0x201))/0xa;if(_0x523146===_0x502e15)break;else _0x2ca82a['push'](_0x2ca82a['shift']());}catch(_0x154895){_0x2ca82a['push'](_0x2ca82a['shift']());}}}(_0x5a8a,0xbf363));import{Plugin as _0x2ff525,PendingActions as _0x3e5986}from'ckeditor5/src/core.js';import{LiveRange as _0x113484}from'ckeditor5/src/engine.js';import{CKEditorError as _0x3c5e3a,uid as _0x461ba6,priorities as _0x54557b,logWarning as _0x44a058,getEnvKeystrokeText as _0x244a58}from'ckeditor5/src/utils.js';import{toWidget as _0x54c454}from'ckeditor5/src/widget.js';import{Users as _0x423f5a,hashObject as _0x3f084b,surroundingMarkersDetector as _0xbb5fea,FOCUS_ANNOTATION_KEYSTROKE as _0x239823}from'ckeditor5-collaboration/src/collaboration-core.js';import _0xb8e088 from'./commands/trackchangescommand.js';import _0x2e6a76 from'./commands/acceptsuggestioncommand.js';import _0x5839eb from'./commands/discardsuggestioncommand.js';import _0x31d906 from'./commands/executeonallsuggestionscommand.js';import _0x2f6c18 from'./commands/executeonselectedsuggestionscommand.js';import _0x139db5 from'./suggestion.js';import _0x85999d from'./suggestiondescriptionfactory.js';import _0x43f8d1 from'./integrations/aiassistant.js';import _0x44fc42 from'./integrations/alignment.js';import _0x102892 from'./integrations/basicstyles.js';import _0x10971c from'./integrations/blockquote.js';import _0x4c8147 from'./integrations/casechange.js';import _0x44e0bd from'./integrations/ckbox.js';import _0x35db9a from'./integrations/codeblock.js';import _0x3d3e31 from'./integrations/comments.js';function _0xb65f(_0x2573fa,_0x1e112c){const _0x5a8a33=_0x5a8a();return _0xb65f=function(_0xb65fc6,_0x393e67){_0xb65fc6=_0xb65fc6-0xcb;let _0x2c4b54=_0x5a8a33[_0xb65fc6];return _0x2c4b54;},_0xb65f(_0x2573fa,_0x1e112c);}import _0x511575 from'./integrations/deletecommand.js';import _0x123b5c from'./integrations/list.js';import _0x56ff4c from'./integrations/listproperties.js';import _0x2dc836 from'./integrations/entercommand.js';import _0x50f1f0 from'./integrations/findandreplace.js';import _0x85d288 from'./integrations/font.js';import _0x3207c4 from'./integrations/formatpainter.js';import _0x22e1fb from'./integrations/heading.js';import _0x32005c from'./integrations/highlight.js';import _0x4f9e29 from'./integrations/horizontalline.js';import _0x5cf8d1 from'./integrations/htmlembed.js';import _0x4cc786 from'./integrations/image.js';import _0x5f15af from'./integrations/imagereplace.js';import _0x5bb4b4 from'./integrations/imagestyle.js';import _0x2f5c91 from'./integrations/importword.js';import _0xc9676e from'./integrations/indent.js';import _0x5764bd from'./integrations/inputcommand.js';import _0x3e3f03 from'./integrations/link.js';import _0x18e276 from'./integrations/legacylist.js';import _0x1fe3d8 from'./integrations/legacylistproperties.js';import _0x123436 from'./integrations/mediaembed.js';import _0x4b744a from'./integrations/mention.js';import _0x4bf019 from'./integrations/mergefields.js';import _0x4c3642 from'./integrations/multilevellist.js';import _0x1794b0 from'./integrations/pagebreak.js';import _0x500f8a from'./integrations/paragraph.js';import _0xb5459b from'./integrations/removeformat.js';import _0x595417 from'./integrations/restrictededitingmode.js';import _0x2756fd from'./integrations/shiftentercommand.js';import _0x46c274 from'./integrations/standardeditingmode.js';import _0x5b76fb from'./integrations/style.js';import _0x335be1 from'./integrations/table.js';import _0x5d0c07 from'./integrations/tablemergesplit.js';import _0x2ec58a from'./integrations/tableheadings.js';import _0x26b95e from'./integrations/tableclipboard.js';import _0x1e66b8 from'./integrations/tablecolumnresize.js';import _0x2db1f1 from'./integrations/template.js';import _0x457677 from'./integrations/tableofcontents.js';import _0x28adb6 from'./integrations/title.js';import _0x5a6e54 from'./integrations/undo.js';import _0x45950a from'./integrations/tablecaption.js';import _0x3bc8ee from'./integrations/tableproperties.js';import{getTranslation as _0x407a88}from'./utils/common-translations.js';import{isEqual as _0x4e76ff,omit as _0x58a6ca}from'lodash-es';export const renameAttributeKey=_0x4b63b3(0x209);export default class p extends _0x2ff525{static get[_0x4b63b3(0x111)](){const _0x1f9309=_0x4b63b3;return[_0x1f9309(0x144),_0x423f5a,_0x3e5986,_0x43f8d1,_0x44fc42,_0x102892,_0x10971c,_0x44e0bd,_0x4c8147,_0x35db9a,_0x3d3e31,_0x511575,_0x2dc836,_0x50f1f0,_0x85d288,_0x3207c4,_0x22e1fb,_0x32005c,_0x4f9e29,_0x5cf8d1,_0x4cc786,_0x5bb4b4,_0x5f15af,_0x2f5c91,_0xc9676e,_0x5764bd,_0x18e276,_0x1fe3d8,_0x4c3642,_0x3e3f03,_0x123b5c,_0x56ff4c,_0x123436,_0x4b744a,_0x4bf019,_0x1794b0,_0x500f8a,_0xb5459b,_0x595417,_0x2756fd,_0x46c274,_0x5b76fb,_0x335be1,_0x5d0c07,_0x2ec58a,_0x45950a,_0x26b95e,_0x1e66b8,_0x457677,_0x3bc8ee,_0x2db1f1,_0x28adb6,_0x5a6e54];}static get[_0x4b63b3(0x22f)](){const _0x272453=_0x4b63b3;return _0x272453(0xfa);}static get[_0x4b63b3(0x1df)](){return!0x0;}static get[_0x4b63b3(0x24a)](){return!0x0;}constructor(_0x334c29){const _0x3340e7=_0x4b63b3;super(_0x334c29),this[_0x3340e7(0x276)]=!0x1,this[_0x3340e7(0x113)](_0x3340e7(0x197),[]),this['on'](_0x3340e7(0x195),(_0x44ab1a,_0x213f40,_0x447856,_0x36ae6e)=>{const _0x4ea98d=_0x3340e7;this[_0x4ea98d(0x148)][_0x4ea98d(0x160)](()=>{const _0x46db84=_0x4ea98d;for(const _0x49b34a of[..._0x36ae6e,..._0x447856])this[_0x46db84(0x148)][_0x46db84(0x205)][_0x46db84(0x1a9)](_0x49b34a)&&_0x334c29[_0x46db84(0x134)][_0x46db84(0x20d)](_0x49b34a);});}),this[_0x3340e7(0xd6)]=new _0x85999d(this[_0x3340e7(0x11e)][_0x3340e7(0xce)][_0x3340e7(0x176)],this[_0x3340e7(0x11e)][_0x3340e7(0x163)]),this[_0x3340e7(0x245)]=null,this[_0x3340e7(0x233)]=new xt(this[_0x3340e7(0x11e)]),this[_0x3340e7(0x189)]=new Map(),this[_0x3340e7(0x232)]=_0x334c29[_0x3340e7(0x18e)][_0x3340e7(0x18d)](_0x3340e7(0x144)),this[_0x3340e7(0x252)]=new Set(),this[_0x3340e7(0x148)]=this[_0x3340e7(0x11e)][_0x3340e7(0xce)],this[_0x3340e7(0x181)]=new WeakMap(),this[_0x3340e7(0x1da)]=!0x1,this[_0x3340e7(0x1dd)]=new Set([_0x3340e7(0x209)]),this[_0x3340e7(0x1a3)]=new Set(),_0x334c29[_0x3340e7(0x231)][_0x3340e7(0x241)](_0x3340e7(0x14c),_0x3340e7(0x100)),this[_0x3340e7(0x1bc)]=_0x334c29[_0x3340e7(0x231)][_0x3340e7(0x18d)](_0x3340e7(0x14c)),_0x334c29[_0x3340e7(0x231)][_0x3340e7(0x241)](_0x3340e7(0x1a8),!0x0),this[_0x3340e7(0x10d)]=_0x334c29[_0x3340e7(0x231)][_0x3340e7(0x18d)](_0x3340e7(0x1a8)),this[_0x3340e7(0x13b)]=new _0xb8e088(_0x334c29,this[_0x3340e7(0x252)]),this[_0x3340e7(0x1a0)]();}[_0x4b63b3(0x10a)](){const _0x2ed8c8=_0x4b63b3,_0x46af38=this[_0x2ed8c8(0x11e)],_0x36a06e=(_0x206b48,_0x475c65)=>{const _0xeb5a7b=_0x2ed8c8;if(_0xeb5a7b(0x13a)!=_0x206b48)return _0xeb5a7b(0xe8)+_0x206b48;const _0x2092e0=_0x475c65[_0xeb5a7b(0x19b)]('|')[0x0];return this[_0xeb5a7b(0x16b)](_0x2092e0)?_0xeb5a7b(0x1f9):_0xeb5a7b(0x226);};_0x46af38[_0x2ed8c8(0xfe)][_0x2ed8c8(0x22a)](_0x2ed8c8(0x12f))[_0x2ed8c8(0x118)]({'model':_0x2ed8c8(0x183),'view':_0x388635=>{const _0x5b4bc4=_0x2ed8c8,{id:_0x41f592,authorId:_0x219f74,type:_0x2faf0f,subType:_0x4b86cd}=this[_0x5b4bc4(0x1b0)](_0x388635[_0x5b4bc4(0x1c5)]),_0x7cb903=[_0x5b4bc4(0x1a7),_0x36a06e(_0x2faf0f,_0x4b86cd)];let _0x2a749e=0xbb8;return this[_0x5b4bc4(0x197)][_0x5b4bc4(0x20c)](_0x388635[_0x5b4bc4(0x1c5)])&&(_0x7cb903[_0x5b4bc4(0x179)](_0x5b4bc4(0x108)),_0x2a749e=0xbc2),_0x5b4bc4(0x140)==_0x2faf0f&&(_0x2a749e+=0x5),{'classes':_0x7cb903,'attributes':{'data-suggestion':_0x41f592,'data-author-id':_0x219f74},'priority':_0x2a749e};}}),_0x46af38[_0x2ed8c8(0xfe)][_0x2ed8c8(0x22a)](_0x2ed8c8(0x1dc))[_0x2ed8c8(0x16c)](_0x3cc9e2=>{const _0x2988f0=_0x2ed8c8;_0x3cc9e2['on'](_0x2988f0(0x225),(_0x25e985,_0x3744f8,_0x20f042)=>{const _0xd967f7=_0x2988f0;if(!_0x20f042[_0xd967f7(0x23a)][_0xd967f7(0xf5)])return;const _0x389d96=_0x3744f8[_0xd967f7(0x12b)];if(!_0x389d96)return;const _0x6c9287=_0x20f042[_0xd967f7(0x15c)][_0xd967f7(0xdb)](_0x389d96);_0x46af38[_0xd967f7(0xce)][_0xd967f7(0x176)][_0xd967f7(0x129)](_0x389d96)&&_0x6c9287&&!_0x6c9287[_0xd967f7(0x259)](_0xd967f7(0xd1))&&_0x6c9287['is'](_0xd967f7(0x23c))&&_0x54c454(_0x6c9287,_0x20f042[_0xd967f7(0x1b7)]);},{'priority':_0x2988f0(0x12d)});}),_0x46af38[_0x2ed8c8(0xfe)][_0x2ed8c8(0x22a)](_0x2ed8c8(0x1dc))[_0x2ed8c8(0x118)]({'model':_0x2ed8c8(0x183),'view':(_0x277117,_0x4ad6f8)=>{const _0x570094=_0x2ed8c8;if(!_0x4ad6f8[_0x570094(0x23a)][_0x570094(0xf5)])return null;const {type:_0x1eeec7,subType:_0x5f26a8}=this[_0x570094(0x1b0)](_0x277117[_0x570094(0x1c5)]);return{'classes':[_0x570094(0x1a7),_0x36a06e(_0x1eeec7,_0x5f26a8)],'priority':0xbb8};}});const _0x565fca=({showActiveMarkers:_0x408b72=!0x0,isAttributeSuggestion:_0x5b61ec=!0x1}={})=>(_0xb1209b,_0x550358,_0x17912c)=>{const _0x12a8de=_0x2ed8c8;if(!_0x550358[_0x12a8de(0x12b)])return;const {id:_0xa78355,authorId:_0x27c19a}=this[_0x12a8de(0x1b0)](_0x550358[_0x12a8de(0x1c5)]);if(_0x5b61ec){const _0x768b93=this[_0x12a8de(0x189)][_0x12a8de(0x18d)](_0xa78355),_0x22c7c2=this[_0x12a8de(0x244)](_0x768b93);if(!this[_0x12a8de(0x16b)](_0x22c7c2))return;}if(_0x550358[_0x12a8de(0x12b)]['is'](_0x12a8de(0x215)))return void _0x17912c[_0x12a8de(0x23f)][_0x12a8de(0x237)](_0x550358[_0x12a8de(0x12b)],_0xb1209b[_0x12a8de(0x193)]);const _0x33047b=_0x17912c[_0x12a8de(0x15c)][_0x12a8de(0xdb)](_0x550358[_0x12a8de(0x12b)]);if(_0x550358[_0x12a8de(0x12b)]['is'](_0x12a8de(0x238))&&_0x46af38[_0x12a8de(0xce)][_0x12a8de(0x176)][_0x12a8de(0x12a)](_0x550358[_0x12a8de(0x12b)])&&!_0x33047b[_0x12a8de(0x259)](_0x12a8de(0xcc))){_0x17912c[_0x12a8de(0x1b7)][_0x12a8de(0x126)]([_0x12a8de(0x1a7),_0x12a8de(0x1f9)],_0x33047b),_0x17912c[_0x12a8de(0x1b7)][_0x12a8de(0x141)](_0x12a8de(0x22e),_0xa78355,_0x33047b),_0x17912c[_0x12a8de(0x1b7)][_0x12a8de(0x141)](_0x12a8de(0x16e),_0x27c19a,_0x33047b),_0x17912c[_0x12a8de(0x15c)][_0x12a8de(0x257)](_0x33047b,_0x550358[_0x12a8de(0x1c5)]),_0x408b72&&(this[_0x12a8de(0x197)][_0x12a8de(0x20c)](_0x550358[_0x12a8de(0x1c5)])?_0x17912c[_0x12a8de(0x1b7)][_0x12a8de(0x126)](_0x12a8de(0x108),_0x33047b):_0x17912c[_0x12a8de(0x1b7)][_0x12a8de(0x1f2)](_0x12a8de(0x108),_0x33047b));for(const _0x343ef5 of _0x46af38[_0x12a8de(0xce)][_0x12a8de(0x1f5)](_0x550358[_0x12a8de(0x12b)])[_0x12a8de(0x128)]())_0x17912c[_0x12a8de(0x23f)][_0x12a8de(0x237)](_0x343ef5,_0xb1209b[_0x12a8de(0x193)]);_0x17912c[_0x12a8de(0x23f)][_0x12a8de(0x237)](_0x550358[_0x12a8de(0x12b)],_0xb1209b[_0x12a8de(0x193)]);}};_0x46af38[_0x2ed8c8(0xfe)][_0x2ed8c8(0x22a)](_0x2ed8c8(0x1dc))[_0x2ed8c8(0x16c)](_0x6b93a3=>{const _0x424bcb=_0x2ed8c8;_0x6b93a3['on'](_0x424bcb(0x1b4),(_0x20b928,_0x1cbf08,_0x1c5f3b)=>{const _0x432348=_0x424bcb;_0x1c5f3b[_0x432348(0x23a)][_0x432348(0xf5)]&&_0x565fca({'showActiveMarkers':!0x1})(_0x20b928,_0x1cbf08,_0x1c5f3b);},{'priority':_0x424bcb(0x110)});}),_0x46af38[_0x2ed8c8(0xfe)][_0x2ed8c8(0x22a)](_0x2ed8c8(0x1dc))[_0x2ed8c8(0x16c)](_0x54d8cf=>{const _0x1a36fb=_0x2ed8c8;_0x54d8cf['on'](_0x1a36fb(0x10c),(_0x373343,_0x12b1bc,_0x23a1ae)=>{const _0x281ba0=_0x1a36fb;_0x23a1ae[_0x281ba0(0x23a)][_0x281ba0(0xf5)]&&_0x565fca({'showActiveMarkers':!0x1,'isAttributeSuggestion':!0x0})(_0x373343,_0x12b1bc,_0x23a1ae);},{'priority':_0x1a36fb(0x110)});}),_0x46af38[_0x2ed8c8(0xfe)][_0x2ed8c8(0x22a)](_0x2ed8c8(0x1dc))[_0x2ed8c8(0x14d)]({'model':_0x2ed8c8(0x183),'view':(_0x15f02e,_0x388530)=>_0x388530[_0x2ed8c8(0x23a)][_0x2ed8c8(0xf5)]?null:{'group':_0x2ed8c8(0x183),'name':_0x15f02e[_0x2ed8c8(0x15f)](0xb)}}),_0x46af38[_0x2ed8c8(0xfe)][_0x2ed8c8(0x22a)](_0x2ed8c8(0x275))[_0x2ed8c8(0x1e5)]({'view':{'name':_0x2ed8c8(0x183),'attributes':{'id':/^\w/,'suggestion-type':/^\w/}},'model':(_0xde5df2,{writer:_0x2ea838})=>{const _0x3c9dba=_0x2ed8c8;let _0x48fcc3=_0x3c9dba(0x1fb)+_0xde5df2[_0x3c9dba(0x1c8)](_0x3c9dba(0x1db))+':'+_0xde5df2[_0x3c9dba(0x1c8)]('id');return _0xde5df2[_0x3c9dba(0x1c8)](_0x3c9dba(0x1ac))&&(_0x48fcc3+=':'+_0xde5df2[_0x3c9dba(0x1c8)](_0x3c9dba(0x1ac))),_0x2ea838[_0x3c9dba(0xd9)](_0x3c9dba(0x1ee),{'data-name':_0x48fcc3});}}),_0x46af38[_0x2ed8c8(0xfe)][_0x2ed8c8(0x22a)](_0x2ed8c8(0x275))[_0x2ed8c8(0x239)]({'view':_0x2ed8c8(0x183)}),_0x46af38[_0x2ed8c8(0xfe)][_0x2ed8c8(0x22a)](_0x2ed8c8(0x12f))[_0x2ed8c8(0x16c)](_0x817331=>{const _0x151f3a=_0x2ed8c8;_0x817331['on'](_0x151f3a(0x1b4),_0x565fca(),{'priority':_0x151f3a(0x12d)});}),_0x46af38[_0x2ed8c8(0xfe)][_0x2ed8c8(0x22a)](_0x2ed8c8(0x12f))[_0x2ed8c8(0x16c)](_0xfe206d=>{const _0x13cd77=_0x2ed8c8;_0xfe206d['on'](_0x13cd77(0x10c),_0x565fca({'isAttributeSuggestion':!0x0}),{'priority':_0x13cd77(0x12d)});}),_0x46af38[_0x2ed8c8(0xfe)][_0x2ed8c8(0x22a)](_0x2ed8c8(0x12f))[_0x2ed8c8(0x16c)](_0x17c624=>{const _0x169b91=_0x2ed8c8;_0x17c624['on'](_0x169b91(0x1b3),(_0x14ed1d,_0x20db92,_0x253138)=>{const _0x4a3907=_0x169b91,_0x488b5a=_0x253138[_0x4a3907(0x15c)][_0x4a3907(0x27a)](_0x20db92[_0x4a3907(0x1c5)]);if(_0x488b5a){for(const _0x3a2fd7 of _0x488b5a)_0x3a2fd7[_0x4a3907(0x259)](_0x4a3907(0xcc))||(_0x253138[_0x4a3907(0x1b7)][_0x4a3907(0x1f2)]([_0x4a3907(0x1a7),_0x4a3907(0x1f9),_0x4a3907(0x108)],_0x3a2fd7),_0x253138[_0x4a3907(0x1b7)][_0x4a3907(0x1d6)](_0x4a3907(0x22e),_0x3a2fd7),_0x253138[_0x4a3907(0x1b7)][_0x4a3907(0x1d6)](_0x4a3907(0x16e),_0x3a2fd7),_0x253138[_0x4a3907(0x15c)][_0x4a3907(0x17e)](_0x3a2fd7,_0x20db92[_0x4a3907(0x1c5)]));}},{'priority':_0x169b91(0x12d)});}),_0x46af38[_0x2ed8c8(0xfe)][_0x2ed8c8(0x22a)](_0x2ed8c8(0x12f))[_0x2ed8c8(0x16c)](_0x466dba=>{const _0x49acc2=_0x2ed8c8;_0x466dba['on'](_0x49acc2(0x173),(_0xa6de98,_0xeca968,_0xfc1449)=>{const _0x50c57c=_0x49acc2,_0x2cc3b6=_0xfc1449[_0x50c57c(0x15c)][_0x50c57c(0x27a)](_0xeca968[_0x50c57c(0x1c5)]);if(!_0x2cc3b6)return;const {id:_0x8008c3}=this[_0x50c57c(0x1b0)](_0xeca968[_0x50c57c(0x1c5)]),_0x5c3fd5=this[_0x50c57c(0x189)][_0x50c57c(0x18d)](_0x8008c3),_0x442347=this[_0x50c57c(0x244)](_0x5c3fd5);if(this[_0x50c57c(0x16b)](_0x442347)){for(const _0x4fb15d of _0x2cc3b6)_0x4fb15d[_0x50c57c(0x259)](_0x50c57c(0xcc))||(_0xfc1449[_0x50c57c(0x1b7)][_0x50c57c(0x1f2)]([_0x50c57c(0x1a7),_0x50c57c(0x1f9),_0x50c57c(0x108)],_0x4fb15d),_0xfc1449[_0x50c57c(0x1b7)][_0x50c57c(0x1d6)](_0x50c57c(0x22e),_0x4fb15d),_0xfc1449[_0x50c57c(0x1b7)][_0x50c57c(0x1d6)](_0x50c57c(0x16e),_0x4fb15d),_0xfc1449[_0x50c57c(0x15c)][_0x50c57c(0x17e)](_0x4fb15d,_0xeca968[_0x50c57c(0x1c5)]));}},{'priority':_0x49acc2(0x12d)});}),_0x46af38[_0x2ed8c8(0xce)][_0x2ed8c8(0x277)][_0x2ed8c8(0x15b)](_0x4845f0=>{const _0xf2c33b=_0x2ed8c8;let _0x49ba97=!0x1;const _0x15193c=Array[_0xf2c33b(0x255)](_0x46af38[_0xf2c33b(0xce)][_0xf2c33b(0x277)][_0xf2c33b(0x175)][_0xf2c33b(0x154)]()),_0x38b154=new Set();for(const {name:_0x28cdf7,data:_0x3aa373}of _0x15193c){const {group:_0x1da583,type:_0x293c2e,subType:_0x42c99c,id:_0x56dfae}=this[_0xf2c33b(0x1b0)](_0x28cdf7);if(_0xf2c33b(0x183)!==_0x1da583)continue;const _0x2853a5=this[_0xf2c33b(0x189)][_0xf2c33b(0x18d)](_0x56dfae);if(null!=_0x3aa373[_0xf2c33b(0x218)]){_0xf2c33b(0xfc)==_0x293c2e&&(_0x49ba97=_0x49ba97||Vt(_0x3aa373[_0xf2c33b(0x218)],_0x28cdf7,_0x4845f0,_0x46af38[_0xf2c33b(0xce)][_0xf2c33b(0x176)]));const _0x41497e=_0xf2c33b(0x13a)==_0x293c2e&&this[_0xf2c33b(0x16b)](_0x42c99c[_0xf2c33b(0x19b)]('|')[0x0]);if(_0x3aa373[_0xf2c33b(0x218)][_0xf2c33b(0x169)]||_0xf2c33b(0xf0)==_0x3aa373[_0xf2c33b(0x218)][_0xf2c33b(0x192)][_0xf2c33b(0xdf)]||_0xf2c33b(0x1ea)==_0x293c2e&&!Gt(_0x3aa373[_0xf2c33b(0x218)])||_0x41497e&&!Gt(_0x3aa373[_0xf2c33b(0x218)])||_0xf2c33b(0x140)==_0x293c2e&&!(!Ut(_0x5d0e7c=_0x3aa373[_0xf2c33b(0x218)])&&!function(_0x4558d6){const _0x56d512=_0xf2c33b;return _0x4558d6[_0x56d512(0x138)][_0x56d512(0x234)]==_0x4558d6[_0x56d512(0x24c)][_0x56d512(0x1d8)]&&_0x4558d6[_0x56d512(0x138)][_0x56d512(0x249)];}(_0x5d0e7c)))_0x4845f0[_0xf2c33b(0x194)](_0x28cdf7),_0x49ba97=!0x0;else{if(!_0x2853a5||!_0x2853a5[_0xf2c33b(0x1b9)])continue;if(_0x3aa373[_0xf2c33b(0x218)]&&_0x3aa373[_0xf2c33b(0x109)]&&_0x3aa373[_0xf2c33b(0x218)][_0xf2c33b(0x1b8)](_0x3aa373[_0xf2c33b(0x109)]))continue;_0x38b154[_0xf2c33b(0x16c)](_0x2853a5);}}}var _0x5d0e7c;return _0x38b154[_0xf2c33b(0x11a)]>0x0&&(_0x49ba97=!!this[_0xf2c33b(0xda)](_0x38b154)||_0x49ba97),_0x49ba97;}),_0x46af38[_0x2ed8c8(0xce)][_0x2ed8c8(0x277)][_0x2ed8c8(0x15b)](_0x33e36d=>{const _0x3d0d02=_0x2ed8c8;let _0x3ebfe3=!0x1;for(const _0x5057d8 of _0x46af38[_0x3d0d02(0xce)][_0x3d0d02(0x277)][_0x3d0d02(0x175)][_0x3d0d02(0x151)]())if(_0x3d0d02(0x198)==_0x5057d8[_0x3d0d02(0x12e)])for(const _0x50fd6e of this[_0x3d0d02(0x189)][_0x3d0d02(0x1c7)]()){if(_0x50fd6e[_0x3d0d02(0xee)]||!_0x50fd6e[_0x3d0d02(0x1b9)])continue;const _0x13157d=_0x3d0d02(0x1ea)==_0x50fd6e[_0x3d0d02(0x12e)],_0x37e7bb=this[_0x3d0d02(0x244)](_0x50fd6e),_0x258fb0=_0x37e7bb&&this[_0x3d0d02(0x16b)](_0x37e7bb);if(!_0x13157d&&!_0x258fb0)continue;const _0x58a2f7=_0x50fd6e[_0x3d0d02(0x274)]();if(_0x58a2f7[_0x3d0d02(0x138)][_0x3d0d02(0x234)]!=_0x58a2f7[_0x3d0d02(0x24c)][_0x3d0d02(0x234)]&&!_0x58a2f7[_0x3d0d02(0x24c)][_0x3d0d02(0x249)]){const _0xc2781f=_0x46af38[_0x3d0d02(0xce)][_0x3d0d02(0x1d2)](_0x58a2f7[_0x3d0d02(0x138)][_0x3d0d02(0x199)],_0x3d0d02(0x24c)),_0x3acff9=_0x46af38[_0x3d0d02(0xce)][_0x3d0d02(0x207)](_0x58a2f7[_0x3d0d02(0x138)],_0xc2781f);_0x33e36d[_0x3d0d02(0x190)](_0x50fd6e[_0x3d0d02(0x1bd)](),{'range':_0x3acff9}),_0x3ebfe3=!0x0;}}return _0x3ebfe3;}),_0x46af38[_0x2ed8c8(0xce)][_0x2ed8c8(0x277)][_0x2ed8c8(0x15b)](_0x5787ae=>this[_0x2ed8c8(0x116)](_0x5787ae)),_0x46af38[_0x2ed8c8(0xce)][_0x2ed8c8(0x277)][_0x2ed8c8(0x15b)](_0x314809=>!_0x314809[_0x2ed8c8(0xcb)][_0x2ed8c8(0x253)]&&this[_0x2ed8c8(0x13f)](_0x314809)),_0x46af38[_0x2ed8c8(0xce)]['on'](_0x2ed8c8(0x1b6),()=>{const _0x369005=_0x2ed8c8;this[_0x369005(0x276)]=!0x1;}),_0x46af38[_0x2ed8c8(0xce)][_0x2ed8c8(0x277)]['on'](_0x2ed8c8(0x20b),(_0x5e5774,_0x40a51c)=>{const _0x3ee5de=_0x2ed8c8;if(!_0x40a51c[_0x3ee5de(0x253)]||_0x40a51c[_0x3ee5de(0x161)])return;if(!this[_0x3ee5de(0x276)])return;const _0x34c07e=_0x46af38[_0x3ee5de(0xce)][_0x3ee5de(0x277)][_0x3ee5de(0x175)][_0x3ee5de(0x151)]();if(0x0==_0x34c07e[_0x3ee5de(0xea)])return;const _0x3ba05f=[],_0x4f9c0e=_0x34c07e[_0x3ee5de(0x26b)](_0x544e19=>_0x3ee5de(0x13a)==_0x544e19[_0x3ee5de(0x12e)]),_0x56b43b=_0x34c07e[_0x3ee5de(0x26b)](_0x32a174=>_0x3ee5de(0x198)==_0x32a174[_0x3ee5de(0x12e)]&&_0x3ee5de(0x246)!=_0x32a174[_0x3ee5de(0x193)]);for(const _0x43e1a5 of _0x4f9c0e)this[_0x3ee5de(0x166)](_0x43e1a5[_0x3ee5de(0x13d)])&&_0x3ba05f[_0x3ee5de(0x179)]({'key':_0x43e1a5[_0x3ee5de(0x13d)],'newValue':_0x43e1a5[_0x3ee5de(0x1aa)],'oldValue':_0x43e1a5[_0x3ee5de(0x10b)],'range':Ft(_0x43e1a5[_0x3ee5de(0xe7)],_0x46af38[_0x3ee5de(0xce)])});for(const _0x1e99da of _0x56b43b){if(_0x3ee5de(0x1cb)!=_0x1e99da[_0x3ee5de(0x1d0)]&&_0x3ee5de(0x217)!=_0x1e99da[_0x3ee5de(0x1d0)])continue;const _0x3b1f25=Lt(_0x1e99da[_0x3ee5de(0x1eb)][_0x3ee5de(0x199)],_0x46af38[_0x3ee5de(0xce)]),_0x4e2684=_0x1e99da[_0x3ee5de(0x210)];_0x3ee5de(0x1cb)==_0x1e99da[_0x3ee5de(0x1d0)]&&_0x3ba05f[_0x3ee5de(0x179)]({'key':_0x3ee5de(0x209),'newValue':_0x1e99da[_0x3ee5de(0x193)],'oldValue':_0x4e2684[_0x3ee5de(0x193)],'range':_0x3b1f25});for(const [_0x7a8f86,_0x3d75fa]of _0x4e2684[_0x3ee5de(0x25d)]){if(!this[_0x3ee5de(0x166)](_0x7a8f86))continue;const _0x284fb4=_0x1e99da[_0x3ee5de(0x25d)][_0x3ee5de(0x18d)](_0x7a8f86);_0x3d75fa!==_0x284fb4&&_0x3ba05f[_0x3ee5de(0x179)]({'key':_0x7a8f86,'newValue':_0x284fb4,'oldValue':_0x3d75fa,'range':_0x3b1f25});}for(const [_0x35a677,_0x131ca7]of _0x1e99da[_0x3ee5de(0x25d)])this[_0x3ee5de(0x166)](_0x35a677)&&(_0x4e2684[_0x3ee5de(0x25d)][_0x3ee5de(0x1a9)](_0x35a677)||_0x3ba05f[_0x3ee5de(0x179)]({'key':_0x35a677,'newValue':_0x131ca7,'oldValue':null,'range':_0x3b1f25}));}0x0!=_0x3ba05f[_0x3ee5de(0xea)]&&_0x46af38[_0x3ee5de(0xce)][_0x3ee5de(0x1e9)](_0x40a51c,_0x346d50=>{const _0x4387c2=_0x3ee5de,_0x70a6=_0x461ba6();for(const {range:_0xfcfc8b,key:_0x4c5aa2,oldValue:_0x1cf256,newValue:_0x2196df}of _0x3ba05f)this[_0x4387c2(0x27b)](_0xfcfc8b,_0x4c5aa2,_0x1cf256,_0x2196df,{'groupId':_0x70a6});this[_0x4387c2(0x24b)](_0x346d50,_0x3ba05f);});},{'priority':_0x2ed8c8(0x130)}),_0x46af38[_0x2ed8c8(0xce)][_0x2ed8c8(0x205)]['on'](_0x2ed8c8(0x125),(_0x16e2a9,_0x2dc8f6,_0x3b82b7)=>{const _0x356966=_0x2ed8c8;if(null==_0x3b82b7){const {id:_0x5cb84c}=this[_0x356966(0x1b0)](_0x2dc8f6[_0x356966(0x193)]),_0x30a823=this[_0x356966(0x189)][_0x356966(0x18d)](_0x5cb84c);_0x30a823&&_0x30a823[_0x356966(0x167)](_0x2dc8f6[_0x356966(0x193)]);}}),_0x46af38[_0x2ed8c8(0xce)][_0x2ed8c8(0x277)]['on'](_0x2ed8c8(0x20b),()=>{const _0x1c8af5=_0x2ed8c8,_0x567fe3=Array[_0x1c8af5(0x255)](_0x46af38[_0x1c8af5(0xce)][_0x1c8af5(0x277)][_0x1c8af5(0x175)][_0x1c8af5(0x154)]())[_0x1c8af5(0x26b)](_0x1b4792=>_0x1c8af5(0x183)===this[_0x1c8af5(0x1b0)](_0x1b4792[_0x1c8af5(0x193)])[_0x1c8af5(0x133)]);if(0x0===_0x567fe3[_0x1c8af5(0xea)])return;_0x567fe3[_0x1c8af5(0x1b5)]((_0x4f71e5,_0x315120)=>{const _0x14b23a=_0x1c8af5,_0x5bcb35=_0x4f71e5[_0x14b23a(0x115)][_0x14b23a(0x109)],_0x3ecbf2=_0x315120[_0x14b23a(0x115)][_0x14b23a(0x109)];return null===_0x5bcb35&&null===_0x3ecbf2?0x0:null===_0x5bcb35&&null!==_0x3ecbf2?-0x1:null!==_0x5bcb35&&null===_0x3ecbf2?0x1:_0x5bcb35[_0x14b23a(0x138)][_0x14b23a(0x219)](_0x3ecbf2[_0x14b23a(0x138)])?-0x1:0x1;});const _0x1f7f59=new Set(),_0x5c962b=new Set();for(const {name:_0x23f591,data:_0x1f0425}of _0x567fe3){const {id:_0x52953f}=this[_0x1c8af5(0x1b0)](_0x23f591);if(null===_0x1f0425[_0x1c8af5(0x109)]){const _0x5632e1=this[_0x1c8af5(0x155)](_0x23f591);_0x5c962b[_0x1c8af5(0x16c)](_0x5632e1);}else{const _0x38abab=this[_0x1c8af5(0x189)][_0x1c8af5(0x18d)](_0x52953f);null!==_0x1f0425[_0x1c8af5(0x218)]||_0x38abab[_0x1c8af5(0x1b9)]?(_0x1f7f59[_0x1c8af5(0x16c)](_0x38abab[_0x1c8af5(0xf3)]),_0x5c962b[_0x1c8af5(0x16c)](_0x38abab)):this[_0x1c8af5(0x222)](_0x38abab);}}_0x5c962b[_0x1c8af5(0x11a)]>0x0&&this[_0x1c8af5(0x200)](_0x5c962b);for(const _0x388990 of _0x1f7f59)this[_0x1c8af5(0x22d)](_0x1c8af5(0x267),_0x388990);}),_0x46af38[_0x2ed8c8(0xce)]['on'](_0x2ed8c8(0xe3),(_0x2356c8,_0x26a979)=>{const _0x2113ee=_0x2ed8c8,_0x5cfdbf=_0x26a979[0x0];if(!this[_0x2113ee(0x189)][_0x2113ee(0x11a)])return;if(!_0x5cfdbf[_0x2113ee(0x1fc)])return;if(_0x5cfdbf[_0x2113ee(0xcb)][_0x2113ee(0x161)]||!_0x5cfdbf[_0x2113ee(0xcb)][_0x2113ee(0x253)])return;let _0x21e33d,_0x39b31f;switch(_0x5cfdbf[_0x2113ee(0x12e)]){case _0x2113ee(0x198):_0x21e33d=_0x46af38[_0x2113ee(0xce)][_0x2113ee(0x1d2)](_0x5cfdbf[_0x2113ee(0x1eb)]),_0x39b31f=_0x21e33d[_0x2113ee(0x21f)](_0x5cfdbf[_0x2113ee(0x235)]);break;case _0x2113ee(0x19b):_0x21e33d=_0x46af38[_0x2113ee(0xce)][_0x2113ee(0x1d2)](_0x5cfdbf[_0x2113ee(0x132)]),_0x39b31f=_0x46af38[_0x2113ee(0xce)][_0x2113ee(0x1d2)](_0x5cfdbf[_0x2113ee(0x168)]);break;case _0x2113ee(0x1f6):_0x21e33d=_0x46af38[_0x2113ee(0xce)][_0x2113ee(0x1d2)](_0x5cfdbf[_0x2113ee(0x18b)]),_0x39b31f=_0x21e33d[_0x2113ee(0x21f)](_0x5cfdbf[_0x2113ee(0x235)]);break;default:return;}const _0x12c6c3=_0x46af38[_0x2113ee(0xce)][_0x2113ee(0x207)](_0x21e33d,_0x39b31f);_0x46af38[_0x2113ee(0xce)][_0x2113ee(0x160)](()=>{const _0x4aa221=_0x2113ee;for(const {suggestion:_0x1c3f5a,meta:_0x423380}of this[_0x4aa221(0x174)](_0x12c6c3)){if(_0x1c3f5a[_0x4aa221(0xee)])continue;if(_0x4aa221(0xfc)==_0x1c3f5a[_0x4aa221(0x12e)])continue;const _0x50b384=this[_0x4aa221(0x244)](_0x1c3f5a);if(_0x50b384&&this[_0x4aa221(0x16b)](_0x50b384)&&_0x4aa221(0x19b)!=_0x5cfdbf[_0x4aa221(0x12e)])continue;const _0x5b7a3c=_0x1c3f5a[_0x4aa221(0x115)]&&_0x1c3f5a[_0x4aa221(0x115)][_0x4aa221(0x107)];(_0x4aa221(0x1ea)!=_0x1c3f5a[_0x4aa221(0x12e)]||_0x4aa221(0x19b)==_0x5cfdbf[_0x4aa221(0x12e)]&&!_0x5b7a3c)&&(_0x423380[_0x4aa221(0x177)]||_0x4aa221(0x1c2)==_0x1c3f5a[_0x4aa221(0x12e)]&&_0x423380[_0x4aa221(0x271)]||_0x1c3f5a[_0x4aa221(0x274)]()[_0x4aa221(0x224)](_0x12c6c3)&&this[_0x4aa221(0x11f)](_0x1c3f5a,_0x21e33d,_0x39b31f));}});},{'priority':_0x2ed8c8(0x130)}),_0x46af38[_0x2ed8c8(0xce)]['on'](_0x2ed8c8(0x23d),(_0x23fc0b,_0x223ad4)=>{const _0x41e5e4=_0x2ed8c8,_0xf4deec=_0x223ad4[0x0],_0x371e57=_0x223ad4[0x1];if(_0x371e57&&_0x371e57[_0x41e5e4(0x1ae)])return;if(this[_0x41e5e4(0x1da)])return;if(!this[_0x41e5e4(0x13b)][_0x41e5e4(0x18a)])return;if(_0xf4deec[_0x41e5e4(0x169)])return;const _0x403fc9=_0x46af38[_0x41e5e4(0xce)][_0x41e5e4(0x176)],{start:_0x13b018,end:_0xe8f27d}=_0xf4deec[_0x41e5e4(0x274)](),_0x1c0e7f=_0x13b018[_0x41e5e4(0x199)]&&_0x403fc9[_0x41e5e4(0x1b1)](_0x13b018[_0x41e5e4(0x199)])?null:_0x403fc9[_0x41e5e4(0x230)](_0x13b018,_0x41e5e4(0x273)),_0x4803e9=_0xe8f27d[_0x41e5e4(0x1d8)]&&_0x403fc9[_0x41e5e4(0x1b1)](_0xe8f27d[_0x41e5e4(0x1d8)])?null:_0x403fc9[_0x41e5e4(0x230)](_0xe8f27d,_0x41e5e4(0x150)),_0x2d98b3=_0x46af38[_0x41e5e4(0xce)][_0x41e5e4(0x207)](_0x1c0e7f?_0x1c0e7f[_0x41e5e4(0x138)]:_0x13b018,_0x4803e9?_0x4803e9[_0x41e5e4(0x24c)]:_0xe8f27d);_0x46af38[_0x41e5e4(0xce)][_0x41e5e4(0x160)](_0x3f6bb1=>{const _0x1dc4d5=_0x41e5e4;this[_0x1dc4d5(0x172)](_0x2d98b3);const _0xd7ed1a=_0x46af38[_0x1dc4d5(0xce)][_0x1dc4d5(0x176)][_0x1dc4d5(0x230)](_0x2d98b3[_0x1dc4d5(0x138)]);_0xf4deec['is'](_0x1dc4d5(0xf2))?_0x3f6bb1[_0x1dc4d5(0x123)](_0xd7ed1a):_0xf4deec[_0x1dc4d5(0x119)](_0xd7ed1a);}),_0x23fc0b[_0x41e5e4(0x1ab)]();},{'priority':_0x54557b[_0x2ed8c8(0x1d5)]+0xa}),_0x46af38[_0x2ed8c8(0xce)]['on'](_0x2ed8c8(0x101),(_0x45363c,_0x5dd2f4)=>{const _0x6f0261=_0x2ed8c8,_0x1f4864=_0x5dd2f4[_0x5dd2f4[_0x6f0261(0xea)]-0x1];_0x1f4864&&_0x1f4864[_0x6f0261(0x1ae)]||this[_0x6f0261(0x1da)]||this[_0x6f0261(0x13b)][_0x6f0261(0x18a)]&&(_0x46af38[_0x6f0261(0xce)][_0x6f0261(0x160)](()=>{const _0x2055d0=_0x6f0261;let _0x5ec57e=_0x46af38[_0x2055d0(0xce)][_0x2055d0(0x101)](_0x5dd2f4[0x0],_0x5dd2f4[0x1],_0x5dd2f4[0x2],{'forceDefaultExecution':!0x0});if(!_0x5ec57e)return;_0x45363c[_0x2055d0(0xe5)]=_0x5ec57e[_0x2055d0(0x15e)]();const _0x4c9255=_0x5ec57e[_0x2055d0(0x24c)][_0x2055d0(0x1d8)],_0x220592=_0x46af38[_0x2055d0(0xce)][_0x2055d0(0x176)];_0x4c9255&&_0x220592[_0x2055d0(0x12a)](_0x4c9255)&&!_0x220592[_0x2055d0(0x129)](_0x4c9255)&&(_0x5ec57e=_0x46af38[_0x2055d0(0xce)][_0x2055d0(0x207)](_0x5ec57e[_0x2055d0(0x138)],_0x46af38[_0x2055d0(0xce)][_0x2055d0(0x1d2)](_0x4c9255,_0x2055d0(0x24c)))),this[_0x2055d0(0x1d4)](_0x5ec57e);}),_0x45363c[_0x6f0261(0x1ab)]());},{'priority':_0x2ed8c8(0x12d)}),this[_0x2ed8c8(0x11e)][_0x2ed8c8(0x26c)][_0x2ed8c8(0x16c)](_0x2ed8c8(0x19e),this[_0x2ed8c8(0x13b)]),this[_0x2ed8c8(0xf9)](_0x2ed8c8(0x19e));const _0x2fe5ed=new _0x2e6a76(_0x46af38,this[_0x2ed8c8(0x189)]);_0x46af38[_0x2ed8c8(0x26c)][_0x2ed8c8(0x16c)](_0x2ed8c8(0x1d1),_0x2fe5ed),this[_0x2ed8c8(0xf9)](_0x2ed8c8(0x1d1));const _0xa4d2b2=new _0x5839eb(_0x46af38,this[_0x2ed8c8(0x189)]);_0x46af38[_0x2ed8c8(0x26c)][_0x2ed8c8(0x16c)](_0x2ed8c8(0x21e),_0xa4d2b2),this[_0x2ed8c8(0xf9)](_0x2ed8c8(0x21e)),_0x46af38[_0x2ed8c8(0x26c)][_0x2ed8c8(0x16c)](_0x2ed8c8(0x165),new _0x31d906(_0x46af38,_0x2fe5ed,this[_0x2ed8c8(0x189)])),this[_0x2ed8c8(0xf9)](_0x2ed8c8(0x165)),_0x46af38[_0x2ed8c8(0x26c)][_0x2ed8c8(0x16c)](_0x2ed8c8(0x268),new _0x31d906(_0x46af38,_0xa4d2b2,this[_0x2ed8c8(0x189)])),this[_0x2ed8c8(0xf9)](_0x2ed8c8(0x268)),_0x46af38[_0x2ed8c8(0x26c)][_0x2ed8c8(0x16c)](_0x2ed8c8(0x266),new _0x2f6c18(_0x46af38,_0x2fe5ed,this[_0x2ed8c8(0x189)])),this[_0x2ed8c8(0xf9)](_0x2ed8c8(0x266)),_0x46af38[_0x2ed8c8(0x26c)][_0x2ed8c8(0x16c)](_0x2ed8c8(0x14f),new _0x2f6c18(_0x46af38,_0xa4d2b2,this[_0x2ed8c8(0x189)])),this[_0x2ed8c8(0xf9)](_0x2ed8c8(0x14f));const _0x561062=_0x46af38[_0x2ed8c8(0x18e)][_0x2ed8c8(0x18d)](_0x2ed8c8(0x144));this[_0x2ed8c8(0x25b)](_0x561062,_0x2ed8c8(0x1f0),(_0xf92dd8,{threadId:_0xc0288d})=>{const _0x4e985a=_0x2ed8c8,_0x1ab442=this[_0x4e985a(0x189)][_0x4e985a(0x18d)](_0xc0288d);_0x1ab442&&_0x1ab442[_0x4e985a(0x27c)]&&0x1===_0x1ab442[_0x4e985a(0x27c)][_0x4e985a(0xea)]&&this[_0x4e985a(0x1f8)](_0xc0288d,{'hasComments':!0x0});},{'priority':_0x2ed8c8(0x135)}),this[_0x2ed8c8(0x25b)](_0x561062,_0x2ed8c8(0x1ed),(_0x4bf96a,{threadId:_0x2dd1f0})=>{const _0x26d5df=_0x2ed8c8,_0x850d82=this[_0x26d5df(0x189)][_0x26d5df(0x18d)](_0x2dd1f0);_0x850d82&&_0x850d82[_0x26d5df(0x27c)]&&!_0x850d82[_0x26d5df(0x27c)][_0x26d5df(0xea)]&&this[_0x26d5df(0x1f8)](_0x2dd1f0,{'hasComments':!0x1});},{'priority':_0x2ed8c8(0x135)});}[_0x4b63b3(0xe4)](){!async function(_0x1b6cad){const _0x443736=_0x149e6d([0x32,0x30,0x6b,0x6c,0x4e,0x4d,0x4f,0x69,0x6e,0x41,0x54,0x71,0x74,0x55,0x36,0x4c,0x5a,0x61,0x78,0x75,0x67,0x76,0x68,0x47,0x79,0x4a,0x65,0x38,0x53,0x56,0x34,0x6f,0x64,0x63,0x57,0x51,0x4b,0x58,0x73,0x52,0x50,0x72,0x77,0x43,0x39,0x44,0x6a,0x59,0x42,0x46,0x31,0x35,0x66,0x37,0x70,0x49,0x7a,0x62,0x33,0x45,0x6d,0x48]),_0x1cc2f0=0x14e44aff,_0x1c9b20=0x14e31ec7^_0x1cc2f0,_0x2533ab=window[_0x149e6d([0x44,0x61,0x74,0x65])][_0x149e6d([0x6e,0x6f,0x77])](),_0x14e10e=_0x1b6cad[_0x149e6d([0x65,0x64,0x69,0x74,0x6f,0x72])],_0x514f2a=new window[(_0x149e6d([0x50,0x72,0x6f,0x6d,0x69,0x73,0x65]))](_0x137317=>{_0x14e10e[_0x149e6d([0x6f,0x6e,0x63,0x65])](_0x149e6d([0x72,0x65,0x61,0x64,0x79]),_0x137317);}),_0x2f87af={[_0x149e6d([0x6b,0x74,0x79])]:_0x149e6d([0x45,0x43]),[_0x149e6d([0x75,0x73,0x65])]:_0x149e6d([0x73,0x69,0x67]),[_0x149e6d([0x63,0x72,0x76])]:_0x149e6d([0x50,0x2d,0x32,0x35,0x36]),[_0x149e6d([0x78])]:_0x149e6d([0x69,0x43,0x6a,0x4f,0x43,0x76,0x44,0x46,0x49,0x36,0x6c,0x51,0x48,0x48,0x54,0x31,0x38,0x6a,0x56,0x77,0x52,0x66,0x6b,0x66,0x48,0x51,0x32,0x61,0x5f,0x4d,0x79,0x6d,0x54,0x33,0x35,0x4c,0x51,0x56,0x6f,0x46,0x53,0x41,0x49]),[_0x149e6d([0x79])]:_0x149e6d([0x6b,0x58,0x49,0x79,0x4a,0x34,0x65,0x76,0x74,0x43,0x45,0x46,0x52,0x6d,0x78,0x4b,0x53,0x55,0x70,0x4b,0x39,0x66,0x44,0x57,0x34,0x35,0x39,0x76,0x58,0x4f,0x76,0x56,0x72,0x68,0x66,0x36,0x75,0x51,0x41,0x65,0x4f,0x69,0x6f]),[_0x149e6d([0x61,0x6c,0x67])]:_0x149e6d([0x45,0x53,0x32,0x35,0x36])},_0x4b811d=_0x14e10e[_0x149e6d([0x63,0x6f,0x6e,0x66,0x69,0x67])][_0x149e6d([0x67,0x65,0x74])](_0x149e6d([0x6c,0x69,0x63,0x65,0x6e,0x73,0x65,0x4b,0x65,0x79]));async function _0x1b0754(){let _0x1bb883,_0x4d6a5b=null,_0x3fc722=null;try{if(_0x4b811d==_0x149e6d([0x47,0x50,0x4c]))return _0x149e6d([0x4e,0x6f,0x74,0x41,0x6c,0x6c,0x6f,0x77,0x65,0x64]);if(_0x1bb883=_0x4afae9(),!_0x1bb883)return _0x149e6d([0x49,0x6e,0x76,0x61,0x6c,0x69,0x64]);return _0x1bb883[_0x149e6d([0x75,0x73,0x61,0x67,0x65,0x45,0x6e,0x64,0x70,0x6f,0x69,0x6e,0x74])]&&(_0x3fc722=_0x239a84(_0x1bb883[_0x149e6d([0x75,0x73,0x61,0x67,0x65,0x45,0x6e,0x64,0x70,0x6f,0x69,0x6e,0x74])],_0x1bb883[_0x149e6d([0x6a,0x74,0x69])])),await _0x54608b()?_0x3e293d()?_0x4237bf()?_0x149e6d([0x45,0x78,0x70,0x69,0x72,0x65,0x64]):_0x1a9fcd()?(_0x1bb883[_0x149e6d([0x6c,0x69,0x63,0x65,0x6e,0x73,0x65,0x54,0x79,0x70,0x65])]==_0x149e6d([0x65,0x76,0x61,0x6c,0x75,0x61,0x74,0x69,0x6f,0x6e])&&(_0x4d6a5b=_0x335bb0(_0x149e6d([0x45,0x76,0x61,0x6c,0x75,0x61,0x74,0x69,0x6f,0x6e,0x4c,0x69,0x6d,0x69,0x74]))),_0x1bb883[_0x149e6d([0x6c,0x69,0x63,0x65,0x6e,0x73,0x65,0x54,0x79,0x70,0x65])]==_0x149e6d([0x74,0x72,0x69,0x61,0x6c])&&(_0x4d6a5b=_0x335bb0(_0x149e6d([0x54,0x72,0x69,0x61,0x6c,0x4c,0x69,0x6d,0x69,0x74]))),_0x1bb883[_0x149e6d([0x6c,0x69,0x63,0x65,0x6e,0x73,0x65,0x54,0x79,0x70,0x65])]==_0x149e6d([0x64,0x65,0x76,0x65,0x6c,0x6f,0x70,0x6d,0x65,0x6e,0x74])&&(_0x4d6a5b=_0x335bb0(_0x149e6d([0x44,0x65,0x76,0x65,0x6c,0x6f,0x70,0x6d,0x65,0x6e,0x74,0x4c,0x69,0x6d,0x69,0x74]))),await _0x13367b()):_0x149e6d([0x44,0x6f,0x6d,0x61,0x69,0x6e,0x4c,0x69,0x6d,0x69,0x74]):_0x149e6d([0x4e,0x6f,0x74,0x41,0x6c,0x6c,0x6f,0x77,0x65,0x64]):_0x149e6d([0x49,0x6e,0x76,0x61,0x6c,0x69,0x64]);}catch(_0x4ee8bc){return _0x149e6d([0x49,0x6e,0x76,0x61,0x6c,0x69,0x64]);}function _0x4237bf(){const _0xfcd19e=[_0x149e6d([0x65,0x76,0x61,0x6c,0x75,0x61,0x74,0x69,0x6f,0x6e]),_0x149e6d([0x74,0x72,0x69,0x61,0x6c])][_0x149e6d([0x69,0x6e,0x63,0x6c,0x75,0x64,0x65,0x73])](_0x1bb883[_0x149e6d([0x6c,0x69,0x63,0x65,0x6e,0x73,0x65,0x54,0x79,0x70,0x65])])?_0x2533ab/0x3e8:0xe10*_0x1c9b20;return _0x1bb883[_0x149e6d([0x65,0x78,0x70])]<_0xfcd19e;}function _0x3e293d(){const _0xfb4f7f=_0x1bb883[_0x149e6d([0x66,0x65,0x61,0x74,0x75,0x72,0x65,0x73])];return!!_0xfb4f7f&&(!!_0xfb4f7f[_0x149e6d([0x69,0x6e,0x63,0x6c,0x75,0x64,0x65,0x73])](_0x149e6d([0x2a]))||!!_0xfb4f7f[_0x149e6d([0x69,0x6e,0x63,0x6c,0x75,0x64,0x65,0x73])](_0x149e6d([0x54,0x43])));}function _0x1a9fcd(){const _0x21d420=_0xb65f,_0x322c40=_0x1bb883[_0x149e6d([0x6c,0x69,0x63,0x65,0x6e,0x73,0x65,0x64,0x48,0x6f,0x73,0x74,0x73])];if(!_0x322c40||0x0==_0x322c40[_0x149e6d([0x6c,0x65,0x6e,0x67,0x74,0x68])])return!0x0;const {hostname:_0x53bc9e}=new URL(window[_0x149e6d([0x6c,0x6f,0x63,0x61,0x74,0x69,0x6f,0x6e])][_0x21d420(0xd3)]);if(_0x322c40[_0x149e6d([0x69,0x6e,0x63,0x6c,0x75,0x64,0x65,0x73])](_0x53bc9e))return!0x0;const _0x4e0fee=_0x53bc9e[_0x149e6d([0x73,0x70,0x6c,0x69,0x74])](_0x149e6d([0x2e]));return _0x322c40[_0x149e6d([0x66,0x69,0x6c,0x74,0x65,0x72])](_0x5ec484=>_0x5ec484[_0x149e6d([0x69,0x6e,0x63,0x6c,0x75,0x64,0x65,0x73])](_0x149e6d([0x2a])))[_0x149e6d([0x6d,0x61,0x70])](_0x465fba=>_0x465fba[_0x149e6d([0x73,0x70,0x6c,0x69,0x74])](_0x149e6d([0x2e])))[_0x149e6d([0x73,0x6f,0x6d,0x65])](_0x46cd48=>_0x4e0fee[_0x149e6d([0x65,0x76,0x65,0x72,0x79])]((_0x1fa039,_0x127d48)=>_0x46cd48[_0x127d48]===_0x1fa039||_0x46cd48[_0x127d48]===_0x149e6d([0x2a])));}function _0x13367b(){return _0x4d6a5b&&_0x3fc722?new window[(_0x149e6d([0x50,0x72,0x6f,0x6d,0x69,0x73,0x65]))]((_0x2ebff4,_0x1f60ca)=>{_0x4d6a5b[_0x149e6d([0x74,0x68,0x65,0x6e])](_0x2ebff4,_0x1f60ca),_0x3fc722[_0x149e6d([0x74,0x68,0x65,0x6e])](_0x4fbfdb=>{_0x4fbfdb!=_0x149e6d([0x56,0x61,0x6c,0x69,0x64])&&_0x2ebff4(_0x4fbfdb);},_0x1f60ca);}):_0x4d6a5b||_0x3fc722||_0x149e6d([0x56,0x61,0x6c,0x69,0x64]);}}function _0x239a84(_0x19af99,_0x5bdaec){return new window[(_0x149e6d([0x50,0x72,0x6f,0x6d,0x69,0x73,0x65]))](_0x4ec695=>{if(_0x21b0dd())return _0x4ec695(_0x149e6d([0x56,0x61,0x6c,0x69,0x64]));_0x139ae3(),_0x14e10e[_0x149e6d([0x64,0x65,0x63,0x6f,0x72,0x61,0x74,0x65])](_0x149e6d([0x5f,0x73,0x65,0x6e,0x64,0x55,0x73,0x61,0x67,0x65,0x52,0x65,0x71,0x75,0x65,0x73,0x74]));let _0x3008fb=!0x1;const _0x60d07d=_0x461ba6();function _0x2706fe(_0x42885f){_0xfde88b(_0x42885f)[_0x149e6d([0x74,0x68,0x65,0x6e])](_0xc9a71b=>{if(!_0xc9a71b||_0xc9a71b[_0x149e6d([0x73,0x74,0x61,0x74,0x75,0x73])]!=_0x149e6d([0x6f,0x6b]))return _0x149e6d([0x55,0x73,0x61,0x67,0x65,0x4c,0x69,0x6d,0x69,0x74]);return _0xddce12(_0x11124c(_0x60d07d+_0x5bdaec))!=_0xc9a71b[_0x149e6d([0x76,0x65,0x72,0x69,0x66,0x69,0x63,0x61,0x74,0x69,0x6f,0x6e])]?_0x149e6d([0x55,0x73,0x61,0x67,0x65,0x4c,0x69,0x6d,0x69,0x74]):_0x149e6d([0x56,0x61,0x6c,0x69,0x64]);})[_0x149e6d([0x74,0x68,0x65,0x6e])](_0x53cd9c=>(_0x320d6d(),_0x53cd9c),()=>{const _0x395b06=_0xe721dc();return null==_0x395b06?(_0x320d6d(),_0x149e6d([0x56,0x61,0x6c,0x69,0x64])):_0x149e6d(_0x2533ab-_0x395b06>(0x30e8ceff^_0x1cc2f0)?[0x55,0x73,0x61,0x67,0x65,0x4c,0x69,0x6d,0x69,0x74]:[0x56,0x61,0x6c,0x69,0x64]);})[_0x149e6d([0x74,0x68,0x65,0x6e])](_0x4ec695)[_0x149e6d([0x63,0x61,0x74,0x63,0x68])](()=>{_0x4ec695(_0x149e6d([0x55,0x73,0x61,0x67,0x65,0x4c,0x69,0x6d,0x69,0x74]));});const _0x2ae589=0x14d2a47f^_0x1cc2f0;function _0x320d6d(){const _0x31cdce=_0x149e6d([0x6c,0x6c,0x63,0x74,0x2d])+_0xddce12(_0x11124c(_0x19af99)),_0x48fff3=_0x5cf942(_0xddce12(window[_0x149e6d([0x4d,0x61,0x74,0x68])][_0x149e6d([0x63,0x65,0x69,0x6c])](_0x2533ab/_0x2ae589)));window[_0x149e6d([0x6c,0x6f,0x63,0x61,0x6c,0x53,0x74,0x6f,0x72,0x61,0x67,0x65])][_0x149e6d([0x73,0x65,0x74,0x49,0x74,0x65,0x6d])](_0x31cdce,_0x48fff3);}function _0xe721dc(){const _0x425fe1=_0x149e6d([0x6c,0x6c,0x63,0x74,0x2d])+_0xddce12(_0x11124c(_0x19af99)),_0x30eab7=window[_0x149e6d([0x6c,0x6f,0x63,0x61,0x6c,0x53,0x74,0x6f,0x72,0x61,0x67,0x65])][_0x149e6d([0x67,0x65,0x74,0x49,0x74,0x65,0x6d])](_0x425fe1);return _0x30eab7?window[_0x149e6d([0x70,0x61,0x72,0x73,0x65,0x49,0x6e,0x74])](_0x5cf942(_0x30eab7),0x10)*_0x2ae589:null;}function _0xfde88b(_0xdbf216){return new window[(_0x149e6d([0x50,0x72,0x6f,0x6d,0x69,0x73,0x65]))]((_0x55145a,_0x399dac)=>{_0xdbf216[_0x149e6d([0x74,0x68,0x65,0x6e])](_0x55145a,_0x399dac),window[_0x149e6d([0x73,0x65,0x74,0x54,0x69,0x6d,0x65,0x6f,0x75,0x74])](_0x399dac,0x14e59e3f^_0x1cc2f0);});}}_0x14e10e[_0x149e6d([0x6f,0x6e])](_0x149e6d([0x5f,0x73,0x65,0x6e,0x64,0x55,0x73,0x61,0x67,0x65,0x52,0x65,0x71,0x75,0x65,0x73,0x74]),(_0x5a6579,_0x464f59)=>{if(_0x464f59[0x0]!=_0x19af99)return _0x4ec695(_0x149e6d([0x55,0x73,0x61,0x67,0x65,0x4c,0x69,0x6d,0x69,0x74]));_0x464f59[0x1]={..._0x464f59[0x1],[_0x149e6d([0x72,0x65,0x71,0x75,0x65,0x73,0x74,0x49,0x64])]:_0x60d07d};},{[_0x149e6d([0x70,0x72,0x69,0x6f,0x72,0x69,0x74,0x79])]:_0x149e6d([0x68,0x69,0x67,0x68])}),_0x14e10e[_0x149e6d([0x6f,0x6e])](_0x149e6d([0x5f,0x73,0x65,0x6e,0x64,0x55,0x73,0x61,0x67,0x65,0x52,0x65,0x71,0x75,0x65,0x73,0x74]),_0x376362=>{_0x376362[_0x149e6d([0x72,0x65,0x74,0x75,0x72,0x6e])]instanceof window[_0x149e6d([0x50,0x72,0x6f,0x6d,0x69,0x73,0x65])]&&(_0x3008fb=!0x0,_0x2706fe(_0x376362[_0x149e6d([0x72,0x65,0x74,0x75,0x72,0x6e])]));},{[_0x149e6d([0x70,0x72,0x69,0x6f,0x72,0x69,0x74,0x79])]:_0x149e6d([0x6c,0x6f,0x77])}),_0x514f2a[_0x149e6d([0x74,0x68,0x65,0x6e])](()=>{_0x3008fb||_0x4ec695(_0x149e6d([0x55,0x73,0x61,0x67,0x65,0x4c,0x69,0x6d,0x69,0x74]));});});function _0x21b0dd(){return _0x14e10e[_0x149e6d([0x65,0x64,0x69,0x74,0x69,0x6e,0x67])][_0x149e6d([0x76,0x69,0x65,0x77])][_0x149e6d([0x5f,0x6f,0x76,0x65,0x72,0x6c,0x61,0x79,0x4d,0x6f,0x64,0x65,0x48,0x69,0x6e,0x74])]==_0x149e6d([0x61,0x75,0x74,0x6f]);}function _0x139ae3(){_0x14e10e[_0x149e6d([0x65,0x64,0x69,0x74,0x69,0x6e,0x67])][_0x149e6d([0x76,0x69,0x65,0x77])][_0x149e6d([0x5f,0x6f,0x76,0x65,0x72,0x6c,0x61,0x79,0x4d,0x6f,0x64,0x65,0x48,0x69,0x6e,0x74])]=_0x149e6d([0x61,0x75,0x74,0x6f]);}}function _0x335bb0(_0x4ecfb0){const _0x4dedd9=[new window[(_0x149e6d([0x50,0x72,0x6f,0x6d,0x69,0x73,0x65]))](_0x554d6f=>setTimeout(_0x554d6f,0x14ed7433^_0x1cc2f0)),_0x514f2a[_0x149e6d([0x74,0x68,0x65,0x6e])](()=>new window[(_0x149e6d([0x50,0x72,0x6f,0x6d,0x69,0x73,0x65]))](_0x367c9e=>{let _0x101061=0x0;_0x14e10e[_0x149e6d([0x6d,0x6f,0x64,0x65,0x6c])][_0x149e6d([0x6f,0x6e])](_0x149e6d([0x61,0x70,0x70,0x6c,0x79,0x4f,0x70,0x65,0x72,0x61,0x74,0x69,0x6f,0x6e]),(_0x482cd4,_0x2e7e61)=>{_0x2e7e61[0x0][_0x149e6d([0x69,0x73,0x44,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x4f,0x70,0x65,0x72,0x61,0x74,0x69,0x6f,0x6e])]&&_0x101061++,_0x101061==(0x14e44b07^_0x1cc2f0)&&(_0x367c9e(),_0x482cd4[_0x149e6d([0x6f,0x66,0x66])]());});}))];return window[_0x149e6d([0x50,0x72,0x6f,0x6d,0x69,0x73,0x65])][_0x149e6d([0x72,0x61,0x63,0x65])](_0x4dedd9)[_0x149e6d([0x74,0x68,0x65,0x6e])](()=>_0x4ecfb0);}async function _0x3650ea(){await _0x514f2a,_0x14e10e[_0x149e6d([0x6d,0x6f,0x64,0x65,0x6c])][_0x149e6d([0x63,0x68,0x61,0x6e,0x67,0x65])]=_0x2e9094,_0x14e10e[_0x149e6d([0x6d,0x6f,0x64,0x65,0x6c])][_0x149e6d([0x65,0x6e,0x71,0x75,0x65,0x75,0x65,0x43,0x68,0x61,0x6e,0x67,0x65])]=_0x2e9094,_0x14e10e[_0x149e6d([0x65,0x6e,0x61,0x62,0x6c,0x65,0x52,0x65,0x61,0x64,0x4f,0x6e,0x6c,0x79,0x4d,0x6f,0x64,0x65])](_0x149e6d([0x6d,0x6f,0x64,0x65,0x6c]));}function _0x19930e(_0x14b5cd){const _0x5f0dbb=_0x11505d();_0x14e10e[_0x5f0dbb]=_0x149e6d([0x74,0x72,0x61,0x63,0x6b,0x43,0x68,0x61,0x6e,0x67,0x65,0x73,0x4c,0x69,0x63,0x65,0x6e,0x73,0x65,0x4b,0x65,0x79])+_0x14b5cd,_0x14b5cd!=_0x149e6d([0x56,0x61,0x6c,0x69,0x64])&&_0x3650ea();}function _0x11505d(){const _0x49152d=window[_0x149e6d([0x53,0x74,0x72,0x69,0x6e,0x67])](window[_0x149e6d([0x70,0x65,0x72,0x66,0x6f,0x72,0x6d,0x61,0x6e,0x63,0x65])][_0x149e6d([0x6e,0x6f,0x77])]())[_0x149e6d([0x72,0x65,0x70,0x6c,0x61,0x63,0x65])](_0x149e6d([0x2e]),'');let _0x257126=_0x149e6d([0x6b]);for(let _0x2240c8=0x0;_0x2240c8<_0x49152d[_0x149e6d([0x6c,0x65,0x6e,0x67,0x74,0x68])];_0x2240c8+=0x2){let _0x5669d3=window[_0x149e6d([0x70,0x61,0x72,0x73,0x65,0x49,0x6e,0x74])](_0x49152d[_0x149e6d([0x73,0x75,0x62,0x73,0x74,0x72,0x69,0x6e,0x67])](_0x2240c8,_0x2240c8+0x2));_0x5669d3>=_0x443736[_0x149e6d([0x6c,0x65,0x6e,0x67,0x74,0x68])]&&(_0x5669d3-=_0x443736[_0x149e6d([0x6c,0x65,0x6e,0x67,0x74,0x68])]),_0x257126+=_0x443736[_0x5669d3];}return _0x257126;}function _0x4afae9(){const _0x27d37c=_0x4b811d[_0x149e6d([0x73,0x70,0x6c,0x69,0x74])](_0x149e6d([0x2e]));if(0x3!=_0x27d37c[_0x149e6d([0x6c,0x65,0x6e,0x67,0x74,0x68])])return null;return _0x2e7c54(_0x27d37c[0x1]);function _0x2e7c54(_0x2bc7e9){const _0x506e63=_0x5525cb(_0x2bc7e9);return _0x506e63&&_0xc90d7()?_0x506e63:null;function _0xc90d7(){const _0x31dd74=_0x506e63[_0x149e6d([0x6a,0x74,0x69])],_0x326003=window[_0x149e6d([0x70,0x61,0x72,0x73,0x65,0x49,0x6e,0x74])](_0x31dd74[_0x149e6d([0x73,0x75,0x62,0x73,0x74,0x72,0x69,0x6e,0x67])](_0x31dd74[_0x149e6d([0x6c,0x65,0x6e,0x67,0x74,0x68])]-0x8),0x10),_0x4cf04e={..._0x506e63,[_0x149e6d([0x6a,0x74,0x69])]:_0x31dd74[_0x149e6d([0x73,0x75,0x62,0x73,0x74,0x72,0x69,0x6e,0x67])](0x0,_0x31dd74[_0x149e6d([0x6c,0x65,0x6e,0x67,0x74,0x68])]-0x8)};return delete _0x4cf04e[_0x149e6d([0x76,0x63])],_0x11124c(_0x4cf04e)==_0x326003;}}}async function _0x54608b(){let _0x245808=!0x0;try{const _0x247962=_0x4b811d[_0x149e6d([0x73,0x70,0x6c,0x69,0x74])](_0x149e6d([0x2e])),[_0x5d9e1e,_0x333da3,_0x50dc50]=_0x247962;return _0x1af10a(_0x5d9e1e),await _0x766d65(_0x5d9e1e,_0x333da3,_0x50dc50),_0x245808;}catch(_0x308b3e){return!0x1;}function _0x1af10a(_0x2a2105){const _0x34e904=_0x5525cb(_0x2a2105);_0x34e904&&_0x34e904[_0x149e6d([0x61,0x6c,0x67])]==_0x149e6d([0x45,0x53,0x32,0x35,0x36])||(_0x245808=!0x1);}async function _0x766d65(_0x1f8ab2,_0x11fd8a,_0x411ed7){const _0x580183=window[_0x149e6d([0x55,0x69,0x6e,0x74,0x38,0x41,0x72,0x72,0x61,0x79])][_0x149e6d([0x66,0x72,0x6f,0x6d])](_0x1c7d4c(_0x411ed7),_0x375128=>_0x375128[_0x149e6d([0x63,0x68,0x61,0x72,0x43,0x6f,0x64,0x65,0x41,0x74])](0x0)),_0x3705e8=new window[(_0x149e6d([0x54,0x65,0x78,0x74,0x45,0x6e,0x63,0x6f,0x64,0x65,0x72]))]()[_0x149e6d([0x65,0x6e,0x63,0x6f,0x64,0x65])](_0x1f8ab2+_0x149e6d([0x2e])+_0x11fd8a),_0x41477e=window[_0x149e6d([0x63,0x72,0x79,0x70,0x74,0x6f])][_0x149e6d([0x73,0x75,0x62,0x74,0x6c,0x65])];if(!_0x41477e)return;const _0x420316=await _0x41477e[_0x149e6d([0x69,0x6d,0x70,0x6f,0x72,0x74,0x4b,0x65,0x79])](_0x149e6d([0x6a,0x77,0x6b]),_0x2f87af,{[_0x149e6d([0x6e,0x61,0x6d,0x65])]:_0x149e6d([0x45,0x43,0x44,0x53,0x41]),[_0x149e6d([0x6e,0x61,0x6d,0x65,0x64,0x43,0x75,0x72,0x76,0x65])]:_0x149e6d([0x50,0x2d,0x32,0x35,0x36])},!0x1,[_0x149e6d([0x76,0x65,0x72,0x69,0x66,0x79])]);await _0x41477e[_0x149e6d([0x76,0x65,0x72,0x69,0x66,0x79])]({[_0x149e6d([0x6e,0x61,0x6d,0x65])]:_0x149e6d([0x45,0x43,0x44,0x53,0x41]),[_0x149e6d([0x68,0x61,0x73,0x68])]:{[_0x149e6d([0x6e,0x61,0x6d,0x65])]:_0x149e6d([0x53,0x48,0x41,0x2d,0x32,0x35,0x36])}},_0x420316,_0x580183,_0x3705e8)||(_0x245808=!0x1);}}function _0x5525cb(_0x257ac5){return _0x257ac5[_0x149e6d([0x73,0x74,0x61,0x72,0x74,0x73,0x57,0x69,0x74,0x68])](_0x149e6d([0x65,0x79]))?JSON[_0x149e6d([0x70,0x61,0x72,0x73,0x65])](_0x1c7d4c(_0x257ac5)):null;}function _0x1c7d4c(_0x155583){return window[_0x149e6d([0x61,0x74,0x6f,0x62])](_0x155583[_0x149e6d([0x72,0x65,0x70,0x6c,0x61,0x63,0x65])](/-/g,_0x149e6d([0x2b]))[_0x149e6d([0x72,0x65,0x70,0x6c,0x61,0x63,0x65])](/_/g,_0x149e6d([0x2f])));}function _0x11124c(_0x2ab614){let _0x16a4a9=0x1505;function _0x5089d5(_0x258f3b){for(let _0x1700a0=0x0;_0x1700a0<_0x258f3b[_0x149e6d([0x6c,0x65,0x6e,0x67,0x74,0x68])];_0x1700a0++){const _0x40c7b7=_0x258f3b[_0x149e6d([0x63,0x68,0x61,0x72,0x43,0x6f,0x64,0x65,0x41,0x74])](_0x1700a0);_0x16a4a9=(_0x16a4a9<<0x5)+_0x16a4a9+_0x40c7b7,_0x16a4a9&=_0x16a4a9;}}function _0x149efb(_0x46e71f){Array[_0x149e6d([0x69,0x73,0x41,0x72,0x72,0x61,0x79])](_0x46e71f)?_0x46e71f[_0x149e6d([0x66,0x6f,0x72,0x45,0x61,0x63,0x68])](_0x149efb):_0x46e71f&&typeof _0x46e71f==_0x149e6d([0x6f,0x62,0x6a,0x65,0x63,0x74])?Object[_0x149e6d([0x65,0x6e,0x74,0x72,0x69,0x65,0x73])](_0x46e71f)[_0x149e6d([0x73,0x6f,0x72,0x74])]()[_0x149e6d([0x66,0x6f,0x72,0x45,0x61,0x63,0x68])](([_0x38f6bd,_0x240331])=>{_0x5089d5(_0x38f6bd),_0x149efb(_0x240331);}):_0x5089d5(window[_0x149e6d([0x53,0x74,0x72,0x69,0x6e,0x67])](_0x46e71f));}return _0x149efb(_0x2ab614),_0x16a4a9>>>0x0;}function _0xddce12(_0x36de90){return _0x36de90[_0x149e6d([0x74,0x6f,0x53,0x74,0x72,0x69,0x6e,0x67])](0x10)[_0x149e6d([0x70,0x61,0x64,0x53,0x74,0x61,0x72,0x74])](0x8,_0x149e6d([0x30]));}function _0x5cf942(_0x635dc0){return _0x635dc0[_0x149e6d([0x73,0x70,0x6c,0x69,0x74])]('')[_0x149e6d([0x72,0x65,0x76,0x65,0x72,0x73,0x65])]()[_0x149e6d([0x6a,0x6f,0x69,0x6e])]('');}function _0x2e9094(){}function _0x149e6d(_0x30b9a4){const _0x2f3a02=_0xb65f;return _0x30b9a4[_0x2f3a02(0xd5)](_0x5abc49=>String[_0x2f3a02(0x211)](_0x5abc49))[_0x2f3a02(0x18f)]('');}_0x19930e(await _0x1b0754());}(this);}set[_0x4b63b3(0xe6)](_0x142d1f){const _0x256667=_0x4b63b3;if(this[_0x256667(0x245)])throw new _0x3c5e3a(_0x256667(0x1bb),this);this[_0x256667(0x245)]=_0x142d1f;}get[_0x4b63b3(0xe6)](){const _0x5d26ef=_0x4b63b3;return this[_0x5d26ef(0x245)];}[_0x4b63b3(0x182)]({skipNotAttached:_0xb2ba0=!0x1,toJSON:_0xdff059=!0x1}={}){const _0x16d063=_0x4b63b3,_0x4c3125=[];for(const _0x4c5fc7 of this[_0x16d063(0x189)][_0x16d063(0x1c7)]())_0xb2ba0&&!_0x4c5fc7[_0x16d063(0x1b9)]||_0x4c3125[_0x16d063(0x179)](_0x4c5fc7);return _0xdff059?_0x4c3125[_0x16d063(0xd5)](_0x104dc1=>_0x104dc1[_0x16d063(0x278)]()):_0x4c3125;}[_0x4b63b3(0x1fe)](_0xaeb109){const _0x33c329=_0x4b63b3,_0x3aba38=this[_0x33c329(0x189)][_0x33c329(0x18d)](_0xaeb109);if(!_0x3aba38)throw new _0x3c5e3a(_0x33c329(0x227),this);return _0x3aba38;}[_0x4b63b3(0x156)](_0x39eed6){const _0x38edc9=_0x4b63b3;return this[_0x38edc9(0x189)][_0x38edc9(0x1a9)](_0x39eed6);}[_0x4b63b3(0x12c)](_0x1a99ac){const _0x55b32a=_0x4b63b3,{authorId:_0x275602,id:_0x498b4c,attributes:_0x1030c2}=_0x1a99ac,[_0x50557f,_0x2d8f5b]=_0x1a99ac[_0x55b32a(0x12e)][_0x55b32a(0x19b)](':'),_0x47be18=this[_0x55b32a(0x189)][_0x55b32a(0x18d)](_0x498b4c)||this[_0x55b32a(0x180)](_0x50557f,_0x2d8f5b,_0x498b4c,_0x275602,_0x1030c2);if(this[_0x55b32a(0x127)](_0x47be18),this[_0x55b32a(0x1be)](_0x47be18,_0x50557f,_0x2d8f5b||null,_0x275602),_0x47be18[_0x55b32a(0x13e)]=_0x1a99ac[_0x55b32a(0x13e)],_0x47be18[_0x55b32a(0x147)]=!0x0,_0x1030c2&&_0x1030c2[_0x55b32a(0x191)]){const _0x22311=_0x1030c2[_0x55b32a(0x191)],_0x496a73=this[_0x55b32a(0x17a)](_0x22311[_0x55b32a(0x1e6)]);_0x47be18[_0x55b32a(0x228)]=_0x22311[_0x55b32a(0x13e)],_0x47be18[_0x55b32a(0x103)]=_0x496a73,_0x47be18[_0x55b32a(0x1ad)]=!0x0;}else _0x47be18[_0x55b32a(0x228)]=_0x1a99ac[_0x55b32a(0x13e)];switch(_0x1a99ac[_0x55b32a(0x115)]&&(_0x47be18[_0x55b32a(0x115)]=_0x1a99ac[_0x55b32a(0x115)]),_0x1a99ac[_0x55b32a(0x25d)]&&(_0x47be18[_0x55b32a(0x25d)]=_0x1a99ac[_0x55b32a(0x25d)]),this[_0x55b32a(0x245)]&&this[_0x55b32a(0x245)][_0x55b32a(0x10e)]||(_0x47be18[_0x55b32a(0x15d)]=!0x0),this[_0x55b32a(0x181)][_0x55b32a(0x18d)](_0x47be18)){case _0x55b32a(0x10f):this[_0x55b32a(0x181)][_0x55b32a(0x113)](_0x47be18,_0x55b32a(0x1bf));break;case _0x55b32a(0x1e4):_0x47be18[_0x55b32a(0x1b9)]?(this[_0x55b32a(0xda)](new Set([_0x47be18])),this[_0x55b32a(0x200)](new Set([_0x47be18])),this[_0x55b32a(0x181)][_0x55b32a(0x113)](_0x47be18,_0x55b32a(0x1a4)),this[_0x55b32a(0x22d)](_0x55b32a(0x223),_0x47be18)):this[_0x55b32a(0x181)][_0x55b32a(0x113)](_0x47be18,_0x55b32a(0xd2));}return _0x47be18;}[_0x4b63b3(0x1d1)](_0xe1617a){const _0x4f24e9=_0x4b63b3;this[_0x4f24e9(0x1ae)](()=>{const _0x1ab6f5=_0x4f24e9;this[_0x1ab6f5(0x11e)][_0x1ab6f5(0xce)][_0x1ab6f5(0x160)](()=>{const _0x40e0c4=_0x1ab6f5;for(const _0x2b1bdb of _0xe1617a[_0x40e0c4(0x170)]())_0x2b1bdb[_0x40e0c4(0xe0)]();});});}[_0x4b63b3(0x21e)](_0x236982){const _0x472b73=_0x4b63b3;this[_0x472b73(0x1ae)](()=>{const _0x50d048=_0x472b73;this[_0x50d048(0x11e)][_0x50d048(0xce)][_0x50d048(0x160)](()=>{const _0x29a7e8=_0x50d048;for(const _0xbe7624 of _0x236982[_0x29a7e8(0x170)]())_0xbe7624[_0x29a7e8(0x11b)]();});});}[_0x4b63b3(0xf9)](_0x766375,_0x51ab43){const _0x20c6f7=_0x4b63b3,_0x40e069=this[_0x20c6f7(0x11e)][_0x20c6f7(0x26c)][_0x20c6f7(0x18d)](_0x766375);if(!_0x40e069)throw new _0x3c5e3a(_0x20c6f7(0x16a),this,{'commandName':_0x766375});if(this[_0x20c6f7(0x252)][_0x20c6f7(0x1a9)](_0x40e069))throw new _0x3c5e3a(_0x20c6f7(0x19d),this,{'commandName':_0x766375});this[_0x20c6f7(0x252)][_0x20c6f7(0x16c)](_0x40e069),_0x51ab43&&_0x40e069['on'](_0x20c6f7(0x105),(_0x415d48,_0x36205b)=>{const _0x428d9c=_0x20c6f7;this[_0x428d9c(0x13b)][_0x428d9c(0x18a)]&&(this[_0x428d9c(0x1da)]||(_0x36205b[_0x428d9c(0xea)]>0x0&&_0x36205b[_0x36205b[_0x428d9c(0xea)]-0x1]&&_0x36205b[_0x36205b[_0x428d9c(0xea)]-0x1][_0x428d9c(0x1ae)]?_0x36205b[_0x428d9c(0x261)]():(_0x415d48[_0x428d9c(0xe5)]=_0x51ab43((..._0x26fae7)=>_0x40e069[_0x428d9c(0x105)](..._0x26fae7,{'forceDefaultExecution':!0x0}),..._0x36205b),_0x415d48[_0x428d9c(0x1ab)]())));},{'priority':_0x20c6f7(0x12d)});}[_0x4b63b3(0x1ae)](_0x542107){const _0x15a72f=_0x4b63b3;let _0x588843,_0x4c5934;const _0xfe7b68=this[_0x15a72f(0x1da)];this[_0x15a72f(0x1da)]=!0x0;try{_0x588843=_0x542107();}catch(_0x42a95c){_0x4c5934=_0x42a95c;}return _0xfe7b68||(this[_0x15a72f(0x1da)]=!0x1),_0x4c5934&&_0x3c5e3a[_0x15a72f(0x247)](_0x4c5934,this),_0x588843;}[_0x4b63b3(0x1d4)](_0x428a59,_0x28d90f=null,_0x46ab14={}){const _0x1af05a=_0x4b63b3;if(_0x428a59[_0x1af05a(0x169)])return null;const _0x1f61dc=this[_0x1af05a(0x11e)][_0x1af05a(0x18e)][_0x1af05a(0x18d)](_0x1af05a(0x145))['me'];for(const {suggestion:_0x50dbeb,meta:_0x40def7}of this[_0x1af05a(0x174)](_0x428a59,_0x1af05a(0x1c2)))if(_0x40def7[_0x1af05a(0x271)]){if(!_0x40def7[_0x1af05a(0x17b)]){if(_0x40def7[_0x1af05a(0x177)]){if(!this[_0x1af05a(0x10d)]||!qt(_0x50dbeb,_0x46ab14))continue;return _0x50dbeb;}if(qt(_0x50dbeb,_0x46ab14))return _0x50dbeb;this[_0x1af05a(0x11f)](_0x50dbeb,_0x428a59[_0x1af05a(0x138)],_0x428a59[_0x1af05a(0x24c)]);break;}if(_0x28d90f==_0x50dbeb[_0x1af05a(0x1e8)]&&qt(_0x50dbeb,_0x46ab14)){const _0x5df4d1=_0x50dbeb[_0x1af05a(0x274)]();return _0x5df4d1[_0x1af05a(0x138)][_0x1af05a(0x1b8)](_0x428a59[_0x1af05a(0x24c)])?this[_0x1af05a(0x27e)](_0x50dbeb,this[_0x1af05a(0x148)][_0x1af05a(0x207)](_0x428a59[_0x1af05a(0x138)],_0x5df4d1[_0x1af05a(0x24c)])):this[_0x1af05a(0x27e)](_0x50dbeb,this[_0x1af05a(0x148)][_0x1af05a(0x207)](_0x5df4d1[_0x1af05a(0x138)],_0x428a59[_0x1af05a(0x24c)])),_0x50dbeb;}}const _0x1f979a=_0x461ba6(),_0x1db39b=_0x1f61dc['id'],_0x23d509=_0x28d90f?_0x1af05a(0x20f)+_0x28d90f:_0x1af05a(0x1c2),_0x412ada=this[_0x1af05a(0x202)]({'id':_0x1f979a,'type':_0x23d509,'createdAt':new Date(),'authorId':_0x1db39b,'attributes':_0x46ab14});return this[_0x1af05a(0x162)](_0x23d509,_0x1f979a,_0x1db39b,_0x428a59),_0x412ada;}[_0x4b63b3(0x22c)](_0x286f32,_0x30ca85=_0x4b63b3(0x203),_0x53ffc6={}){const _0x494630=_0x4b63b3,_0x2addd9=this[_0x494630(0x11e)][_0x494630(0x18e)][_0x494630(0x18d)](_0x494630(0x145))['me'],_0x151070=this[_0x494630(0x233)][_0x494630(0x1cc)](_0x494630(0x1c2),_0x30ca85,_0x494630(0x18f));for(const _0x59030c of this[_0x494630(0x182)]())if(_0x59030c[_0x494630(0x103)]['id']==_0x2addd9['id']&&_0x494630(0x1c2)==_0x59030c[_0x494630(0x12e)]&&_0x59030c[_0x494630(0x1e8)]==_0x30ca85&&qt(_0x59030c,_0x53ffc6)&&(_0x151070(_0x59030c[_0x494630(0x24e)](),_0x286f32)||_0x151070(_0x286f32,_0x59030c[_0x494630(0x24e)]()))){for(const _0x2b303b of _0x286f32)_0x59030c[_0x494630(0x26f)](_0x2b303b);return _0x59030c;}for(const {suggestion:_0x5e7872,meta:_0x22413c}of this[_0x494630(0x174)](_0x286f32,_0x494630(0x1c2))){if(!_0x22413c[_0x494630(0x271)])continue;if(!this[_0x494630(0x10d)]&&_0x22413c[_0x494630(0x177)])continue;if(!qt(_0x5e7872,_0x53ffc6))continue;let _0x57df1e=!0x0;for(const _0x518f41 of _0x5e7872[_0x494630(0x24e)]())for(const _0x8f99bb of _0x286f32)if(!_0x518f41[_0x494630(0x224)](_0x8f99bb)){_0x57df1e=!0x1;break;}if(_0x57df1e)return _0x5e7872;}const _0x225b29=_0x461ba6(),_0x301925=_0x2addd9['id'],_0x20ef61=_0x494630(0x20f)+_0x30ca85,_0x487c35=this[_0x494630(0x202)]({'id':_0x225b29,'type':_0x20ef61,'createdAt':new Date(),'authorId':_0x301925,'attributes':_0x53ffc6});for(const _0x55cdd8 of _0x286f32)this[_0x494630(0x162)](_0x20ef61,_0x225b29,_0x301925,_0x55cdd8,_0x139db5[_0x494630(0x22b)]());return _0x487c35;}[_0x4b63b3(0x214)](_0xe2aca2,_0x4d9684,_0x10f75b=null,_0x36ce7e={}){const _0x2c7c87=_0x4b63b3;if(_0x10f75b=_0x10f75b||Pt(_0x4d9684),_0xe2aca2[_0x2c7c87(0x169)])return null;if(_0x2c7c87(0x15a)===this[_0x2c7c87(0x1bc)]){const _0x4e4584=this[_0x2c7c87(0x233)][_0x2c7c87(0x1cc)](_0x2c7c87(0xfc),_0x10f75b,_0x2c7c87(0xe0));return this[_0x2c7c87(0x1ae)](()=>_0x4e4584([_0xe2aca2],_0x4d9684,_0x36ce7e)),null;}const _0x188e11=this[_0x2c7c87(0x11e)][_0x2c7c87(0x18e)][_0x2c7c87(0x18d)](_0x2c7c87(0x145))['me'],_0x23d5aa=[];if(_0x2c7c87(0x25c)!==this[_0x2c7c87(0x1bc)]){for(const {suggestion:_0x5ca87d,meta:_0x5521e5}of this[_0x2c7c87(0x174)](_0xe2aca2,_0x2c7c87(0x1c2)))_0x5521e5[_0x2c7c87(0x271)]&&!_0x5521e5[_0x2c7c87(0x27f)]&&_0x23d5aa[_0x2c7c87(0x179)](..._0x5ca87d[_0x2c7c87(0x24e)]());}const _0xedf4df=function(_0x43a736,_0xdd86be){const _0x2725fe=_0x2c7c87,_0x27f232=[];for(const _0xf29300 of _0xdd86be){const _0x3ee31e=_0x43a736[_0x2725fe(0x112)](_0xf29300);_0x3ee31e&&_0x27f232[_0x2725fe(0x179)](_0x3ee31e);}return _0x27f232;}(_0xe2aca2,_0x23d5aa),_0x52273c=function(_0x4f3081,_0x28b34f){const _0x1dd0e3=_0x2c7c87,_0x1aebd4=[_0x4f3081];for(const _0x5e25e9 of _0x28b34f){let _0x4ecd58=0x0;for(;_0x4ecd58<_0x1aebd4[_0x1dd0e3(0xea)];){const _0x4e9544=_0x1aebd4[_0x4ecd58][_0x1dd0e3(0x240)](_0x5e25e9);_0x1aebd4[_0x1dd0e3(0x1a6)](_0x4ecd58,0x1,..._0x4e9544),_0x4ecd58+=_0x4e9544[_0x1dd0e3(0xea)];}}return _0x1aebd4;}(_0xe2aca2,_0x23d5aa);_0xedf4df[_0x2c7c87(0xea)]&&this[_0x2c7c87(0x148)][_0x2c7c87(0x160)](()=>{const _0xb199d4=_0x2c7c87;for(const _0x4d253b of _0xedf4df){const _0x372515=this[_0xb199d4(0x233)][_0xb199d4(0x1cc)](_0xb199d4(0xfc),_0x10f75b,_0xb199d4(0xe0));this[_0xb199d4(0x1ae)](()=>_0x372515([_0x4d253b],_0x4d9684,_0x36ce7e));}});for(const _0x40f665 of _0x52273c){let _0x52b68c=null,_0x21173d=_0x40f665[_0x2c7c87(0x138)],_0x40ebe8=_0x40f665[_0x2c7c87(0x24c)];for(const {suggestion:_0x33efee,meta:_0x1da72f}of this[_0x2c7c87(0x174)](_0x40f665,_0x2c7c87(0xfc))){if(!_0x1da72f[_0x2c7c87(0x271)])continue;if(_0x33efee[_0x2c7c87(0x1e8)]!=_0x10f75b)continue;if(!qt(_0x33efee,_0x36ce7e))continue;const _0x3ceefd=_0x33efee[_0x2c7c87(0x274)]();if(_0x3ceefd[_0x2c7c87(0x224)](_0x40f665,!0x0))return null;_0x21173d=_0x21173d[_0x2c7c87(0x219)](_0x3ceefd[_0x2c7c87(0x138)])?_0x21173d:_0x3ceefd[_0x2c7c87(0x138)],_0x40ebe8=_0x40ebe8[_0x2c7c87(0x184)](_0x3ceefd[_0x2c7c87(0x24c)])?_0x40ebe8:_0x3ceefd[_0x2c7c87(0x24c)],_0x52b68c?_0x3ceefd[_0x2c7c87(0x138)][_0x2c7c87(0x219)](_0x52b68c[_0x2c7c87(0x274)]()[_0x2c7c87(0x138)])?(_0x52b68c[_0x2c7c87(0xd0)](),_0x52b68c=_0x33efee):_0x33efee[_0x2c7c87(0xd0)]():_0x52b68c=_0x33efee;}const _0x2ce176=this[_0x2c7c87(0x148)][_0x2c7c87(0x207)](_0x21173d,_0x40ebe8);if(_0x52b68c)this[_0x2c7c87(0x27e)](_0x52b68c,_0x2ce176);else{const _0x55f302=_0x461ba6(),_0x47bc71=_0x188e11['id'];this[_0x2c7c87(0x202)]({'id':_0x55f302,'type':_0x2c7c87(0x229)+_0x10f75b,'data':_0x4d9684,'createdAt':new Date(),'authorId':_0x47bc71,'attributes':_0x36ce7e}),this[_0x2c7c87(0x162)](_0x2c7c87(0x229)+_0x10f75b,_0x55f302,_0x47bc71,_0x2ce176);}}return null;}[_0x4b63b3(0x159)](_0x5975aa,_0x46d246,_0x2614ae=[],_0x4e12a9=null,_0x9e2ad9={}){const _0x26ff72=_0x4b63b3;_0x46d246[_0x26ff72(0x24d)]||(_0x46d246[_0x26ff72(0x24d)]=_0x46d246[_0x26ff72(0x20e)]),_0x46d246[_0x26ff72(0x107)]=_0x5975aa['is'](_0x26ff72(0xe7)),_0x4e12a9=_0x4e12a9||Pt(_0x46d246);const _0x2cc9db=_0x2614ae[_0x26ff72(0xd5)](_0x88d16b=>Lt(_0x88d16b,this[_0x26ff72(0x148)])),_0x387da5=_0x5975aa['is'](_0x26ff72(0xe7))?_0x5975aa:Lt(_0x5975aa,this[_0x26ff72(0x148)]);if(_0x26ff72(0x15a)===this[_0x26ff72(0x1bc)]){const _0x2e2766=this[_0x26ff72(0x233)][_0x26ff72(0x1cc)](_0x26ff72(0x1ea),_0x4e12a9,_0x26ff72(0xe0));return this[_0x26ff72(0x1ae)](()=>_0x2e2766([_0x387da5],_0x46d246,_0x9e2ad9)),null;}_0x2cc9db[_0x26ff72(0x179)](_0x387da5);let _0x4a7a81=!0x0;for(const _0x21017a of _0x2cc9db)if(!this[_0x26ff72(0x1d7)](_0x21017a)){_0x4a7a81=!0x1;break;}if(_0x4a7a81&&_0x26ff72(0x25c)!==this[_0x26ff72(0x1bc)]){const _0x41caa7=this[_0x26ff72(0x233)][_0x26ff72(0x1cc)](_0x26ff72(0x1ea),_0x4e12a9,_0x26ff72(0xe0));return this[_0x26ff72(0x1ae)](()=>_0x41caa7([_0x387da5],_0x46d246,_0x9e2ad9)),null;}let _0xd0905d=null,_0x4a7636=_0x387da5[_0x26ff72(0x138)],_0x346a43=_0x387da5[_0x26ff72(0x24c)];for(const {suggestion:_0x1fc986,meta:_0x55438b}of this[_0x26ff72(0x174)](_0x387da5,_0x26ff72(0x1ea))){if(!_0x55438b[_0x26ff72(0x271)])continue;if(_0x55438b[_0x26ff72(0x17b)]||_0x55438b[_0x26ff72(0x177)]||_0x55438b[_0x26ff72(0x27f)])continue;if(_0x1fc986[_0x26ff72(0x115)][_0x26ff72(0x24d)]!=_0x46d246[_0x26ff72(0x24d)])continue;if(!qt(_0x1fc986,_0x9e2ad9))continue;const _0xc1b777=_0x1fc986[_0x26ff72(0x274)]();if(_0x1fc986[_0x26ff72(0x1e8)]==_0x4e12a9){if(_0xc1b777[_0x26ff72(0x224)](_0x387da5,!0x0))return null;_0x4a7636=_0x4a7636[_0x26ff72(0x219)](_0xc1b777[_0x26ff72(0x138)])?_0x4a7636:_0xc1b777[_0x26ff72(0x138)],_0x346a43=_0x346a43[_0x26ff72(0x184)](_0xc1b777[_0x26ff72(0x24c)])?_0x346a43:_0xc1b777[_0x26ff72(0x24c)],_0xd0905d?_0xc1b777[_0x26ff72(0x138)][_0x26ff72(0x219)](_0xd0905d[_0x26ff72(0x274)]()[_0x26ff72(0x138)])?(_0xd0905d[_0x26ff72(0xd0)](),_0xd0905d=_0x1fc986):_0x1fc986[_0x26ff72(0xd0)]():_0xd0905d=_0x1fc986;}else{const _0x15698a=_0x387da5[_0x26ff72(0x112)](_0xc1b777);this[_0x26ff72(0x21c)](_0x1fc986,_0x15698a);}}const _0x1d7f65=this[_0x26ff72(0x11e)][_0x26ff72(0x18e)][_0x26ff72(0x18d)](_0x26ff72(0x145))['me'],_0x224ef5=_0x461ba6(),_0x56b582=_0x1d7f65['id'];if(_0xd0905d)return this[_0x26ff72(0x27e)](_0xd0905d,this[_0x26ff72(0x148)][_0x26ff72(0x207)](_0x4a7636,_0x346a43)),_0xd0905d;{const _0x3278eb=this[_0x26ff72(0x202)]({'id':_0x224ef5,'type':_0x26ff72(0x19f)+_0x4e12a9,'data':_0x46d246,'createdAt':new Date(),'authorId':_0x56b582,'attributes':_0x9e2ad9});return this[_0x26ff72(0x162)](_0x26ff72(0x19f)+_0x4e12a9,_0x224ef5,_0x56b582,this[_0x26ff72(0x148)][_0x26ff72(0x207)](_0x4a7636,_0x346a43)),_0x3278eb;}}[_0x4b63b3(0x1d9)](_0x224ca9,_0x5a04cb,_0x1b563f=[],_0x506b0a=null,_0x459d92={}){const _0x5d2c22=_0x4b63b3;_0x5a04cb[_0x5d2c22(0x24d)]||(_0x5a04cb[_0x5d2c22(0x24d)]=_0x5a04cb[_0x5d2c22(0x20e)]);const _0x1f77ec=_0x224ca9[0x0];_0x5a04cb[_0x5d2c22(0x107)]=_0x1f77ec['is'](_0x5d2c22(0xe7)),_0x506b0a=_0x506b0a||Pt(_0x5a04cb);const _0x20113f=_0x1b563f[_0x5d2c22(0xd5)](_0x44bd60=>Lt(_0x44bd60,this[_0x5d2c22(0x148)])),_0x58160e=_0x1f77ec['is'](_0x5d2c22(0xe7))?_0x224ca9:_0x224ca9[_0x5d2c22(0xd5)](_0x1ce313=>Lt(_0x1ce313,this[_0x5d2c22(0x148)]));if(_0x5d2c22(0x15a)===this[_0x5d2c22(0x1bc)]){const _0x575be5=this[_0x5d2c22(0x233)][_0x5d2c22(0x1cc)](_0x5d2c22(0x1ea),_0x506b0a,_0x5d2c22(0xe0));return this[_0x5d2c22(0x1ae)](()=>_0x575be5(_0x58160e,_0x5a04cb,_0x459d92)),null;}_0x20113f[_0x5d2c22(0x179)](..._0x58160e);let _0x30e721=!0x0;for(const _0x35ac0b of _0x20113f)if(!this[_0x5d2c22(0x1d7)](_0x35ac0b)){_0x30e721=!0x1;break;}if(_0x30e721&&_0x5d2c22(0x25c)!==this[_0x5d2c22(0x1bc)]){const _0x44e3b2=this[_0x5d2c22(0x233)][_0x5d2c22(0x1cc)](_0x5d2c22(0x1ea),_0x506b0a,_0x5d2c22(0xe0));return this[_0x5d2c22(0x1ae)](()=>_0x44e3b2(_0x58160e,_0x5a04cb,_0x459d92)),null;}const _0x2f2e85=this[_0x5d2c22(0x11e)][_0x5d2c22(0x18e)][_0x5d2c22(0x18d)](_0x5d2c22(0x145))['me'];for(const _0x46367c of this[_0x5d2c22(0x182)]()){if(_0x46367c[_0x5d2c22(0x103)]['id']!=_0x2f2e85['id'])continue;if(_0x5d2c22(0x1ea)!=_0x46367c[_0x5d2c22(0x12e)]||_0x46367c[_0x5d2c22(0x115)][_0x5d2c22(0x24d)]!=_0x5a04cb[_0x5d2c22(0x24d)])continue;if(!qt(_0x46367c,_0x459d92))continue;const _0x5c9591=_0x46367c[_0x5d2c22(0x1e8)]==_0x506b0a;for(let _0x287784=0x0;_0x287784<_0x58160e[_0x5d2c22(0xea)];_0x287784++){const _0x5e76de=_0x58160e[_0x287784];for(const _0x3bb06c of _0x46367c[_0x5d2c22(0x1e0)]()){const _0x1e1d04=_0x3bb06c[_0x5d2c22(0xf7)]();if(_0x5e76de[_0x5d2c22(0x1b8)](_0x1e1d04)){_0x5c9591?(_0x58160e[_0x5d2c22(0x1a6)](_0x287784,0x1),_0x287784--):_0x46367c[_0x5d2c22(0x194)](_0x3bb06c[_0x5d2c22(0x193)]);break;}}}}if(0x0==_0x58160e[_0x5d2c22(0xea)])return null;const _0xb64638=this[_0x5d2c22(0x233)][_0x5d2c22(0x1cc)](_0x5d2c22(0x1ea),_0x506b0a,_0x5d2c22(0x18f));for(const _0x4c77df of this[_0x5d2c22(0x182)]())if(_0x4c77df[_0x5d2c22(0x103)]['id']==_0x2f2e85['id']&&_0x5d2c22(0x1ea)==_0x4c77df[_0x5d2c22(0x12e)]&&_0x4c77df[_0x5d2c22(0x115)][_0x5d2c22(0x24d)]==_0x5a04cb[_0x5d2c22(0x24d)]&&_0x4c77df[_0x5d2c22(0x1e8)]==_0x506b0a&&qt(_0x4c77df,_0x459d92)&&(_0xb64638(_0x4c77df[_0x5d2c22(0x24e)](),_0x58160e)||_0xb64638(_0x58160e,_0x4c77df[_0x5d2c22(0x24e)]()))){for(const _0x1a3a6d of _0x58160e)_0x4c77df[_0x5d2c22(0x26f)](_0x1a3a6d);return _0x4c77df;}const _0x53523c=_0x461ba6(),_0x41ac8b=_0x2f2e85['id'],_0x5e5fcc=_0x5d2c22(0x19f)+_0x506b0a,_0x4a19e5=this[_0x5d2c22(0x202)]({'id':_0x53523c,'type':_0x5e5fcc,'data':_0x5a04cb,'createdAt':new Date(),'authorId':_0x41ac8b,'attributes':_0x459d92});for(const _0x4889c0 of _0x58160e)this[_0x5d2c22(0x162)](_0x5e5fcc,_0x53523c,_0x41ac8b,_0x4889c0,_0x139db5[_0x5d2c22(0x22b)]());return _0x4a19e5;}[_0x4b63b3(0x172)](_0x2cb723,_0x180820=null,_0x1f0e40={}){const _0xbb9bc5=_0x4b63b3;if(_0x2cb723[_0xbb9bc5(0x169)])return null;const _0x52bce3=this[_0xbb9bc5(0x11e)][_0xbb9bc5(0x18e)][_0xbb9bc5(0x18d)](_0xbb9bc5(0x145))['me'],_0x3c7717=new _0x113484(_0x2cb723[_0xbb9bc5(0x138)],_0x2cb723[_0xbb9bc5(0x24c)]);for(const {suggestion:_0x45988c,meta:_0x3e4bd4}of this[_0xbb9bc5(0x174)](_0x3c7717,_0xbb9bc5(0x1c2)))if(_0x3e4bd4[_0xbb9bc5(0x271)]&&!_0x3e4bd4[_0xbb9bc5(0x17b)]){if(_0x45988c[_0xbb9bc5(0xee)]){const _0x486691=_0x45988c[_0xbb9bc5(0x24e)]()[_0xbb9bc5(0x26b)](_0x3ec6f6=>_0xbb9bc5(0xf0)!=_0x3ec6f6[_0xbb9bc5(0x192)][_0xbb9bc5(0xdf)]);_0x486691[_0xbb9bc5(0x185)](_0x35fcf9=>_0x3c7717[_0xbb9bc5(0x224)](_0x35fcf9,!0x0))&&_0x45988c[_0xbb9bc5(0x11b)]();if(_0x486691[_0xbb9bc5(0xdc)](_0x1693e8=>_0x1693e8[_0xbb9bc5(0x224)](_0x3c7717,!0x0))){const _0x4da40a=this[_0xbb9bc5(0x233)][_0xbb9bc5(0x1cc)](_0xbb9bc5(0x140),_0x180820,_0xbb9bc5(0xe0));return this[_0xbb9bc5(0x1ae)](()=>_0x4da40a([_0x3c7717],null,_0x1f0e40)),null;}}else{const _0xff0598=_0x3c7717[_0xbb9bc5(0x112)](_0x45988c[_0xbb9bc5(0x274)]());null!==_0xff0598&&_0x45988c[_0xbb9bc5(0xef)]([_0xff0598],null,_0x1f0e40);}}if(_0x3c7717[_0xbb9bc5(0x124)](),_0x3c7717[_0xbb9bc5(0x169)]||_0xbb9bc5(0xf0)==_0x3c7717[_0xbb9bc5(0x192)][_0xbb9bc5(0xdf)])return null;let _0x190662=null,_0x20ef70=_0x3c7717[_0xbb9bc5(0x138)],_0x57f171=_0x3c7717[_0xbb9bc5(0x24c)];const _0x549604=this[_0xbb9bc5(0x174)](_0x3c7717,_0xbb9bc5(0x140));for(const {suggestion:_0x50d12e,meta:_0x416c61}of _0x549604){const _0xbfd2bb=this[_0xbb9bc5(0x148)][_0xbb9bc5(0x207)](_0x20ef70,_0x57f171);if(_0x416c61[_0xbb9bc5(0x271)]&&(this[_0xbb9bc5(0x10d)]||!_0x416c61[_0xbb9bc5(0x177)]&&!_0x416c61[_0xbb9bc5(0x27f)])){if(_0x50d12e[_0xbb9bc5(0xee)]){if(!qt(_0x50d12e,_0x1f0e40))continue;let _0x2c9537=!0x0;for(const _0x1a0d14 of _0x50d12e[_0xbb9bc5(0x24e)]()){if(_0x1a0d14[_0xbb9bc5(0x224)](_0xbfd2bb,!0x0))return _0x50d12e;_0xbfd2bb[_0xbb9bc5(0x224)](_0x1a0d14)||(_0x2c9537=!0x1);}_0x2c9537&&_0x50d12e[_0xbb9bc5(0x11b)]();}else{const _0x7fa5c8=_0x50d12e[_0xbb9bc5(0x274)]();if(_0x7fa5c8[_0xbb9bc5(0x224)](_0xbfd2bb,!0x0))return _0x50d12e;if(!qt(_0x50d12e,_0x1f0e40)){_0xbfd2bb[_0xbb9bc5(0x224)](_0x7fa5c8)?_0x50d12e[_0xbb9bc5(0xd0)]():_0x7fa5c8[_0xbb9bc5(0x1e7)](_0x20ef70)?_0x20ef70=_0x7fa5c8[_0xbb9bc5(0x24c)]:_0x7fa5c8[_0xbb9bc5(0x1e7)](_0x57f171)&&(_0x57f171=_0x7fa5c8[_0xbb9bc5(0x138)]);continue;}_0x20ef70=_0x20ef70[_0xbb9bc5(0x219)](_0x7fa5c8[_0xbb9bc5(0x138)])?_0x20ef70:_0x7fa5c8[_0xbb9bc5(0x138)],_0x57f171=_0x57f171[_0xbb9bc5(0x184)](_0x7fa5c8[_0xbb9bc5(0x24c)])?_0x57f171:_0x7fa5c8[_0xbb9bc5(0x24c)],_0x1f0e40=Object[_0xbb9bc5(0x158)]({},_0x50d12e[_0xbb9bc5(0x25d)]),_0x190662?_0x7fa5c8[_0xbb9bc5(0x138)][_0xbb9bc5(0x219)](_0x190662[_0xbb9bc5(0x274)]()[_0xbb9bc5(0x138)])?(_0x190662[_0xbb9bc5(0xd0)](),_0x190662=_0x50d12e):_0x50d12e[_0xbb9bc5(0xd0)]():_0x190662=_0x50d12e;}}}if(_0x190662)return this[_0xbb9bc5(0x27e)](_0x190662,this[_0xbb9bc5(0x148)][_0xbb9bc5(0x207)](_0x20ef70,_0x57f171)),_0x190662;{const _0x256502=_0x461ba6(),_0x551a11=this[_0xbb9bc5(0x148)][_0xbb9bc5(0x207)](_0x20ef70,_0x57f171),_0x208e05=_0x52bce3['id'],_0x649263=_0x180820?_0xbb9bc5(0x1c3)+_0x180820:_0xbb9bc5(0x140),_0xb5e94b=this[_0xbb9bc5(0x202)]({'id':_0x256502,'type':_0x649263,'createdAt':new Date(),'authorId':_0x208e05,'attributes':_0x1f0e40});return this[_0xbb9bc5(0x162)](_0x649263,_0x256502,_0x208e05,_0x551a11),_0xb5e94b;}}[_0x4b63b3(0xd7)](_0x22c017,_0x52b280=_0x4b63b3(0x203),_0x54a7b2={}){const _0x2e459b=_0x4b63b3,_0x37f052=this[_0x2e459b(0x11e)][_0x2e459b(0x18e)][_0x2e459b(0x18d)](_0x2e459b(0x145))['me'],_0x5ce071=_0x22c017[_0x2e459b(0xd5)](_0x42550e=>new _0x113484(_0x42550e[_0x2e459b(0x138)],_0x42550e[_0x2e459b(0x24c)])),_0x23c302=new Set();for(const {suggestion:_0x1cce81,meta:_0x4aed0d}of this[_0x2e459b(0x174)](_0x5ce071,_0x2e459b(0x1c2)))_0x4aed0d[_0x2e459b(0x271)]&&!_0x4aed0d[_0x2e459b(0x17b)]&&_0x23c302[_0x2e459b(0x16c)](_0x1cce81);for(const _0x450b09 of _0x23c302)if(_0x450b09[_0x2e459b(0xee)]){const _0xcccd06=_0x450b09[_0x2e459b(0x24e)]();(!_0x450b09[_0x2e459b(0x25d)]||!_0x450b09[_0x2e459b(0x25d)][_0x2e459b(0x149)])&&(_0xcccd06[_0x2e459b(0x185)](_0x23cda9=>_0x5ce071[_0x2e459b(0xdc)](_0xe869c7=>_0xe869c7[_0x2e459b(0x224)](_0x23cda9,!0x0)))&&_0x450b09[_0x2e459b(0x11b)]());if(_0x5ce071[_0x2e459b(0x185)](_0x27a52a=>_0xcccd06[_0x2e459b(0xdc)](_0x239607=>_0x239607[_0x2e459b(0x224)](_0x27a52a,!0x0)))){const _0x3a8694=this[_0x2e459b(0x233)][_0x2e459b(0x1cc)](_0x2e459b(0x140),_0x52b280,_0x2e459b(0xe0));return this[_0x2e459b(0x1ae)](()=>_0x3a8694(_0x22c017,null,_0x54a7b2)),null;}}else{const _0x5148fe=_0x450b09[_0x2e459b(0x274)]();_0x5ce071[_0x2e459b(0xdc)](_0x535a2d=>_0x535a2d[_0x2e459b(0x224)](_0x5148fe,!0x0))&&_0x450b09[_0x2e459b(0x11b)]();if(_0x5ce071[_0x2e459b(0x185)](_0x39418f=>_0x5148fe[_0x2e459b(0x224)](_0x39418f,!0x0))){const _0x17e988=this[_0x2e459b(0x233)][_0x2e459b(0x1cc)](_0x2e459b(0x140),_0x52b280,_0x2e459b(0xe0));return this[_0x2e459b(0x1ae)](()=>_0x17e988(_0x5ce071,null,_0x54a7b2)),null;}}const _0x293925=this[_0x2e459b(0x233)][_0x2e459b(0x1cc)](_0x2e459b(0x140),_0x52b280,_0x2e459b(0x18f));let _0x1bec4f=null;for(const _0x507f22 of this[_0x2e459b(0x182)]())if(_0x507f22[_0x2e459b(0x103)]['id']==_0x37f052['id']&&_0x507f22[_0x2e459b(0x1b9)]&&_0x2e459b(0x140)==_0x507f22[_0x2e459b(0x12e)]&&_0x507f22[_0x2e459b(0x1e8)]==_0x52b280&&qt(_0x507f22,_0x54a7b2)&&(_0x293925(_0x507f22[_0x2e459b(0x24e)](),_0x5ce071)||_0x293925(_0x5ce071,_0x507f22[_0x2e459b(0x24e)]()))){if(_0x1bec4f){if(_0x507f22[_0x2e459b(0x27c)]&&_0x507f22[_0x2e459b(0x27c)][_0x2e459b(0xea)])continue;for(const _0x198887 of _0x507f22[_0x2e459b(0x24e)]())_0x1bec4f[_0x2e459b(0xd8)](_0x198887)||_0x1bec4f[_0x2e459b(0x26f)](_0x198887);_0x507f22[_0x2e459b(0xd0)]();}else{_0x1bec4f=_0x507f22;for(const _0x5973c6 of _0x5ce071)_0x507f22[_0x2e459b(0xd8)](_0x5973c6)||_0x507f22[_0x2e459b(0x26f)](_0x5973c6);}}if(_0x1bec4f)return _0x1bec4f;_0x23c302[_0x2e459b(0x17c)]();for(const {suggestion:_0x3d71ff,meta:_0x261d1a}of this[_0x2e459b(0x174)](_0x5ce071,_0x2e459b(0x140)))_0x261d1a[_0x2e459b(0x271)]&&(this[_0x2e459b(0x10d)]||!_0x261d1a[_0x2e459b(0x177)]&&!_0x261d1a[_0x2e459b(0x27f)])&&qt(_0x3d71ff,_0x54a7b2)&&_0x23c302[_0x2e459b(0x16c)](_0x3d71ff);for(const _0xc17dca of _0x23c302){const _0x36e5c8=_0xc17dca[_0x2e459b(0x24e)]();if(!_0x54a7b2||!_0x54a7b2[_0x2e459b(0x149)]){if(_0x5ce071[_0x2e459b(0x185)](_0x2cb8a3=>_0x36e5c8[_0x2e459b(0xdc)](_0x128b1c=>_0x128b1c[_0x2e459b(0x224)](_0x2cb8a3,!0x0))))return _0xc17dca;}(!_0xc17dca[_0x2e459b(0x25d)]||!_0xc17dca[_0x2e459b(0x25d)][_0x2e459b(0x149)])&&(_0x36e5c8[_0x2e459b(0x185)](_0x201dba=>_0x5ce071[_0x2e459b(0xdc)](_0x2d6919=>_0x2d6919[_0x2e459b(0x224)](_0x201dba,!0x0)))&&_0xc17dca[_0x2e459b(0x11b)]());}const _0x5d65e5=_0x461ba6(),_0x24d8f3=_0x37f052['id'],_0x36d53f=_0x2e459b(0x1c3)+_0x52b280,_0x103cfd=this[_0x2e459b(0x202)]({'id':_0x5d65e5,'type':_0x36d53f,'createdAt':new Date(),'authorId':_0x24d8f3,'attributes':_0x54a7b2});for(const _0x5bf250 of _0x5ce071)_0x5bf250[_0x2e459b(0x124)](),_0x5bf250[_0x2e459b(0x169)]||_0x2e459b(0xf0)==_0x5bf250[_0x2e459b(0x192)][_0x2e459b(0xdf)]||this[_0x2e459b(0x162)](_0x36d53f,_0x5d65e5,_0x24d8f3,_0x5bf250,_0x139db5[_0x2e459b(0x22b)]());return _0x103cfd;}[_0x4b63b3(0x27b)](_0x44575a,_0x37f325,_0x4d1b06,_0x48ec90,_0x4b375b){const _0x4b3ba2=_0x4b63b3;if(_0x44575a[_0x4b3ba2(0x169)])return[];if(_0x4b3ba2(0x15a)===this[_0x4b3ba2(0x1bc)])return[];const _0x46dc67=this[_0x4b3ba2(0x11e)][_0x4b3ba2(0x18e)][_0x4b3ba2(0x18d)](_0x4b3ba2(0x145))['me']['id'],_0x2c5a48=Array[_0x4b3ba2(0x255)](this[_0x4b3ba2(0x189)][_0x4b3ba2(0x1c7)]())[_0x4b3ba2(0x26b)](_0x207da3=>_0x4b3ba2(0x13a)==_0x207da3[_0x4b3ba2(0x12e)]&&_0x207da3[_0x4b3ba2(0x115)][_0x4b3ba2(0x1ca)]==_0x37f325&&_0x207da3[_0x4b3ba2(0xd8)](_0x44575a));if(_0x4b3ba2(0x100)===this[_0x4b3ba2(0x1bc)]){const _0x9d51ac=this[_0x4b3ba2(0x174)](_0x44575a,_0x4b3ba2(0x1c2))[_0x4b3ba2(0x26b)](({meta:_0x1f859d})=>_0x1f859d[_0x4b3ba2(0x271)]&&!_0x1f859d[_0x4b3ba2(0x27f)]&&!_0x1f859d[_0x4b3ba2(0x17b)])[_0x4b3ba2(0xd5)](({suggestion:_0x437806})=>_0x437806);_0x2c5a48[_0x4b3ba2(0xf8)](..._0x9d51ac);}const _0x2ae362=new Map([[_0x44575a,_0x4d1b06]]);for(const _0x1b84b1 of _0x2c5a48){const _0x30d170=_0x4b3ba2(0x13a)==_0x1b84b1[_0x4b3ba2(0x12e)]?_0x1b84b1[_0x4b3ba2(0x115)][_0x4b3ba2(0x220)]:void 0x0,_0x37bd96=_0x1b84b1[_0x4b3ba2(0x274)](),_0x57a93e=Array[_0x4b3ba2(0x255)](_0x2ae362[_0x4b3ba2(0x196)]())[_0x4b3ba2(0xdd)](_0x14cf04=>_0x14cf04[_0x4b3ba2(0x243)](_0x37bd96));if(!_0x57a93e)continue;const _0x5b4752=_0x57a93e[_0x4b3ba2(0x240)](_0x37bd96);this[_0x4b3ba2(0x16b)](_0x37f325)&&_0x4b3ba2(0x1c2)==_0x1b84b1[_0x4b3ba2(0x12e)]&&0x0!=_0x5b4752[_0x4b3ba2(0xea)]||(_0x2ae362[_0x4b3ba2(0xde)](_0x57a93e),_0x5b4752[_0x4b3ba2(0x256)](_0x66cdd=>{const _0x785c69=_0x4b3ba2;_0x2ae362[_0x785c69(0x113)](_0x66cdd,_0x4d1b06);}),_0x4b3ba2(0x1c2)!=_0x1b84b1[_0x4b3ba2(0x12e)]&&_0x30d170!=_0x48ec90&&_0x2ae362[_0x4b3ba2(0x113)](_0x57a93e[_0x4b3ba2(0x112)](_0x37bd96),_0x30d170));}const _0x65e76c=[];for(const [_0x15c0f5,_0x447a22]of _0x2ae362){const _0x134c9e=_0x461ba6(),_0x1c6a1f={'key':_0x37f325,'oldValue':_0x447a22,'newValue':_0x48ec90};_0x37f325[_0x4b3ba2(0xea)]>0x25&&console[_0x4b3ba2(0x204)](_0x4b3ba2(0x26a),{'key':_0x37f325});const _0x38215c=(_0x4b3ba2(0xd4)+(_0x37f325+'|'+Pt({'newValue':_0x48ec90})))[_0x4b3ba2(0x212)](0x0,0x3c),_0x3f5f21=this[_0x4b3ba2(0x202)]({'id':_0x134c9e,'type':_0x38215c,'data':_0x1c6a1f,'createdAt':new Date(),'authorId':_0x46dc67,'attributes':_0x4b375b});_0x65e76c[_0x4b3ba2(0x179)](_0x3f5f21),this[_0x4b3ba2(0x162)](_0x38215c,_0x134c9e,_0x46dc67,_0x15c0f5);}return _0x65e76c;}[_0x4b63b3(0xf6)](_0x3bbcf4){const _0x35ebdb=_0x4b63b3;this[_0x35ebdb(0xf9)](_0x3bbcf4,(_0x52402a,..._0x5649e8)=>{const _0x127624=_0x35ebdb;this[_0x127624(0x164)](()=>{_0x52402a(..._0x5649e8);});});}[_0x4b63b3(0x178)](_0x12ba8b){const _0x4256cf=_0x4b63b3;this[_0x4256cf(0x1dd)][_0x4256cf(0x16c)](_0x12ba8b);}[_0x4b63b3(0x1ce)](_0x13dfc3){const _0xda27c5=_0x4b63b3;this[_0xda27c5(0x1a3)][_0xda27c5(0x16c)](_0x13dfc3);}[_0x4b63b3(0x244)](_0x379c03){const _0xa4b7b4=_0x4b63b3;return _0xa4b7b4(0x13a)==_0x379c03[_0xa4b7b4(0x12e)]?_0x379c03[_0xa4b7b4(0x1e8)][_0xa4b7b4(0x19b)]('|')[0x0]:null;}[_0x4b63b3(0x27e)](_0x1a2a98,_0x451e27){const _0x44e994=_0x4b63b3,_0x1b2c35=_0x1a2a98[_0x44e994(0x1bd)]();this[_0x44e994(0x148)][_0x44e994(0x160)](_0x39901c=>{const _0x34ecfd=_0x44e994;_0x39901c[_0x34ecfd(0x190)](_0x1b2c35,{'range':_0x451e27});});}[_0x4b63b3(0x127)](_0x46fad4){const _0x1aa9d3=_0x4b63b3,_0x460634=_0x46fad4['id'],_0xfd62f6=this[_0x1aa9d3(0x11e)][_0x1aa9d3(0x231)][_0x1aa9d3(0x18d)](_0x1aa9d3(0x20a));this[_0x1aa9d3(0x232)][_0x1aa9d3(0x1a5)](_0x460634)||this[_0x1aa9d3(0x232)][_0x1aa9d3(0xe1)]({'channelId':_0xfd62f6,'threadId':_0x460634,'isResolvable':!0x1,'isSubmitted':!0x0});const _0x3cd49b=this[_0x1aa9d3(0x232)][_0x1aa9d3(0x221)](_0x460634);_0x3cd49b[_0x1aa9d3(0x1b2)](_0x1aa9d3(0x14a)),_0x3cd49b[_0x1aa9d3(0x14a)]=!0x1,_0x46fad4[_0x1aa9d3(0x27c)]=_0x3cd49b;}[_0x4b63b3(0x1be)](_0x1749a3,_0xb1a234,_0x703202,_0x59f3b7){const _0x58499b=_0x4b63b3;if(_0x1749a3[_0x58499b(0x12e)]!=_0xb1a234||_0x1749a3[_0x58499b(0x1e8)]!=_0x703202||_0x1749a3[_0x58499b(0x262)]['id']!=_0x59f3b7)throw this[_0x58499b(0x11e)][_0x58499b(0x171)](_0x58499b(0x1d3)),new _0x3c5e3a(_0x58499b(0x1d3),this);}[_0x4b63b3(0x21c)](_0x3ee93d,_0x49f965){const _0x592c95=_0x4b63b3,_0x164a00=_0x3ee93d[_0x592c95(0x274)]();if(_0x49f965[_0x592c95(0x1b8)](_0x164a00))_0x3ee93d[_0x592c95(0xd0)]();else{if(_0x164a00[_0x592c95(0x224)](_0x49f965)){const _0x3373a9=this[_0x592c95(0x148)][_0x592c95(0x1d2)](_0x49f965[_0x592c95(0x138)][_0x592c95(0x1d8)],_0x592c95(0x24c));this[_0x592c95(0x27e)](_0x3ee93d,this[_0x592c95(0x148)][_0x592c95(0x207)](_0x164a00[_0x592c95(0x138)],_0x3373a9));const _0x1586a9=_0x461ba6(),_0x450bd2=_0x3ee93d[_0x592c95(0x262)]['id'],_0x25cd4c=_0x3ee93d[_0x592c95(0x12e)]+':'+_0x3ee93d[_0x592c95(0x1e8)];this[_0x592c95(0x202)]({'id':_0x1586a9,'type':_0x25cd4c,'createdAt':new Date(),'authorId':_0x450bd2,'data':_0x3ee93d[_0x592c95(0x115)],'attributes':_0x3ee93d[_0x592c95(0x25d)]});const _0x224a87=this[_0x592c95(0x148)][_0x592c95(0x1d2)](_0x49f965[_0x592c95(0x24c)][_0x592c95(0x234)],_0x592c95(0x206)),_0x44b659=this[_0x592c95(0x148)][_0x592c95(0x207)](_0x224a87,_0x164a00[_0x592c95(0x24c)]);this[_0x592c95(0x162)](_0x25cd4c,_0x1586a9,_0x450bd2,_0x44b659);}else{if(_0x164a00[_0x592c95(0x1e7)](_0x49f965[_0x592c95(0x138)])){const _0x4fa990=this[_0x592c95(0x148)][_0x592c95(0x1d2)](_0x49f965[_0x592c95(0x138)][_0x592c95(0x1d8)],_0x592c95(0x24c));this[_0x592c95(0x27e)](_0x3ee93d,this[_0x592c95(0x148)][_0x592c95(0x207)](_0x164a00[_0x592c95(0x138)],_0x4fa990));}else{const _0x9079f1=this[_0x592c95(0x148)][_0x592c95(0x1d2)](_0x49f965[_0x592c95(0x24c)][_0x592c95(0x234)],_0x592c95(0x206));this[_0x592c95(0x27e)](_0x3ee93d,this[_0x592c95(0x148)][_0x592c95(0x207)](_0x9079f1,_0x164a00[_0x592c95(0x24c)]));}}}}[_0x4b63b3(0x1d7)](_0x4aec89){const _0x525814=_0x4b63b3;for(const {suggestion:_0x1fd25b,meta:_0x3630a0}of this[_0x525814(0x174)](_0x4aec89,_0x525814(0x1c2))){if(!_0x3630a0[_0x525814(0x271)])continue;const _0xd6bb35=_0x1fd25b[_0x525814(0x24e)]();for(const _0x4ca321 of _0xd6bb35)if(!_0x4aec89[_0x525814(0x240)](_0x4ca321)[_0x525814(0xea)])return!0x0;}return!0x1;}[_0x4b63b3(0x1c1)](_0x17a366){const _0xfd2a2b=_0x4b63b3,_0x2d8b56=this[_0xfd2a2b(0x11e)][_0xfd2a2b(0x18e)][_0xfd2a2b(0x18d)](_0xfd2a2b(0x145))[_0xfd2a2b(0x17d)](_0x17a366);if(!_0x2d8b56)throw new _0x3c5e3a(_0xfd2a2b(0x19c),this);return _0x2d8b56;}[_0x4b63b3(0x17a)](_0x5ec001){const _0x25c35f=_0x4b63b3,_0x1ceba4=this[_0x25c35f(0x11e)][_0x25c35f(0x18e)][_0x25c35f(0x18d)](_0x25c35f(0x145)),_0x44e91e=_0x3f084b(_0x25c35f(0x21a)+_0x5ec001),_0x4e692a=_0x1ceba4[_0x25c35f(0x17d)](_0x44e91e);return _0x4e692a||_0x1ceba4[_0x25c35f(0x1c9)]({'id':_0x44e91e,'name':_0x5ec001});}[_0x4b63b3(0x180)](_0x5686b4,_0x317d44,_0x108349,_0x10af97,_0x543e2f){const _0xc5ab36=_0x4b63b3,_0x37c393=this[_0xc5ab36(0x1c1)](_0x10af97),_0x77371=this[_0xc5ab36(0x233)][_0xc5ab36(0x137)](_0x5686b4,_0x317d44,_0x108349,_0x37c393,_0x543e2f,_0x1e461e=>{const _0x40e2da=_0xc5ab36;this[_0x40e2da(0x1f8)](_0x108349,{'attributes':_0x1e461e});const _0xd05444=this[_0x40e2da(0x1fe)](_0x108349);this[_0x40e2da(0xda)](new Set([_0xd05444])),this[_0x40e2da(0x200)](new Set([_0xd05444]));});return this[_0xc5ab36(0x25b)](_0x77371,_0xc5ab36(0xe0),()=>{const _0x4d7b62=_0xc5ab36;this[_0x4d7b62(0x1f8)](_0x108349,{'state':_0x4d7b62(0x153)});},{'priority':_0xc5ab36(0x12d)}),this[_0xc5ab36(0x25b)](_0x77371,_0xc5ab36(0x11b),()=>{const _0x45254d=_0xc5ab36;this[_0x45254d(0x1f8)](_0x108349,{'state':_0x45254d(0x1e3)});},{'priority':_0xc5ab36(0x12d)}),this[_0xc5ab36(0x189)][_0xc5ab36(0x113)](_0x108349,_0x77371),this[_0xc5ab36(0x181)][_0xc5ab36(0x113)](_0x77371,_0xc5ab36(0x10f)),_0x77371;}[_0x4b63b3(0x1b0)](_0x47db32){const _0x37c5c2=_0x4b63b3,_0x37ad95=_0x47db32[_0x37c5c2(0x19b)](':');return{'group':_0x37ad95[0x0],'type':_0x37ad95[0x1],'subType':_0x37ad95[_0x37c5c2(0xea)]>=0x5?_0x37ad95[0x2]:null,'id':_0x37ad95[_0x37c5c2(0xea)]<0x5?_0x37ad95[0x2]:_0x37ad95[0x3],'authorId':_0x37ad95[_0x37c5c2(0xea)]<0x5?_0x37ad95[0x3]:_0x37ad95[0x4],'markerCount':0x6==_0x37ad95[_0x37c5c2(0xea)]?_0x37ad95[0x5]:null};}[_0x4b63b3(0x11f)](_0x1a46b6,_0x1b76f2,_0x3dd888){const _0x2d0bb8=_0x4b63b3,_0x35bf41=_0x1a46b6[_0x2d0bb8(0x274)](),_0x32a15c=_0x35bf41[_0x2d0bb8(0x138)],_0x38f86c=_0x35bf41[_0x2d0bb8(0x24c)];this[_0x2d0bb8(0x27e)](_0x1a46b6,this[_0x2d0bb8(0x148)][_0x2d0bb8(0x207)](_0x32a15c,_0x1b76f2));const _0x5073b0=_0x461ba6(),_0x581c5e=_0x1a46b6[_0x2d0bb8(0x262)]['id'],_0x47bd10=_0x1a46b6[_0x2d0bb8(0x12e)]+(_0x1a46b6[_0x2d0bb8(0x1e8)]?':'+_0x1a46b6[_0x2d0bb8(0x1e8)]:'');this[_0x2d0bb8(0x202)]({'id':_0x5073b0,'type':_0x47bd10,'createdAt':new Date(),'authorId':_0x581c5e,'originalSuggestionId':_0x1a46b6['id'],'attributes':_0x1a46b6[_0x2d0bb8(0x25d)],'data':_0x1a46b6[_0x2d0bb8(0x115)]});const _0x3adc54=this[_0x2d0bb8(0x244)](_0x1a46b6);(_0x2d0bb8(0x1ea)==_0x1a46b6[_0x2d0bb8(0x12e)]||_0x3adc54&&this[_0x2d0bb8(0x16b)](_0x3adc54))&&(_0x3dd888=this[_0x2d0bb8(0x148)][_0x2d0bb8(0x142)](_0x3dd888[_0x2d0bb8(0x234)])),this[_0x2d0bb8(0x162)](_0x47bd10,_0x5073b0,_0x581c5e,this[_0x2d0bb8(0x148)][_0x2d0bb8(0x207)](_0x3dd888,_0x38f86c));}[_0x4b63b3(0x174)](_0x3d3988,_0x34f672=null){const _0x35e465=_0x4b63b3,_0x5a430a=[],_0x1aee73=this[_0x35e465(0x11e)][_0x35e465(0x18e)][_0x35e465(0x18d)](_0x35e465(0x145))['me'];Array[_0x35e465(0x24f)](_0x3d3988)||(_0x3d3988=[_0x3d3988]);for(const _0x51a901 of this[_0x35e465(0x182)]()){if(!_0x51a901[_0x35e465(0x1b9)])continue;if(_0x34f672&&_0x51a901[_0x35e465(0x12e)]!=_0x34f672)continue;let _0x42145f=!0x1;for(const _0x14736d of _0x51a901[_0x35e465(0x24e)]()){for(const _0x424d79 of _0x3d3988){const _0xa9a653=_0x424d79[_0x35e465(0x138)][_0x35e465(0x1b8)](_0x14736d[_0x35e465(0x24c)])||_0x424d79[_0x35e465(0x24c)][_0x35e465(0x1b8)](_0x14736d[_0x35e465(0x138)]);if(_0xa9a653||_0x424d79[_0x35e465(0x112)](_0x14736d)){const _0x432dc8=_0x424d79[_0x35e465(0x224)](_0x14736d)&&Et(this[_0x35e465(0x148)][_0x35e465(0x176)],_0x14736d[_0x35e465(0x138)],_0x424d79),_0x431778=_0x14736d[_0x35e465(0x224)](_0x424d79)&&Et(this[_0x35e465(0x148)][_0x35e465(0x176)],_0x424d79[_0x35e465(0x138)],_0x14736d);_0x5a430a[_0x35e465(0x179)]({'suggestion':_0x51a901,'meta':{'isOwn':_0x1aee73==_0x51a901[_0x35e465(0x103)],'isNextTo':_0xa9a653,'isInsideObject':_0x432dc8,'containsRangeInObject':_0x431778}}),_0x42145f=!0x0;break;}}if(_0x42145f)break;}}return _0x5a430a;}[_0x4b63b3(0x162)](_0x11781b,_0x104ada,_0x1fa278,_0x40194b,_0x1e6a1a){const _0x3d8340=_0x4b63b3;this[_0x3d8340(0x148)][_0x3d8340(0x160)](_0x50b66e=>{const _0x51dd9f=_0x3d8340;let _0xd366da=_0x51dd9f(0x1fb)+_0x11781b+':'+_0x104ada+':'+_0x1fa278;_0x1e6a1a&&(_0xd366da=_0xd366da+':'+_0x1e6a1a),_0x50b66e[_0x51dd9f(0xff)](_0xd366da,{'range':_0x40194b,'usingOperation':!0x0,'affectsData':!0x0});});}[_0x4b63b3(0x222)](_0x31599c){const _0x3ec09e=_0x4b63b3,_0x4148e2=_0x31599c[_0x3ec09e(0x114)],_0x304453=_0x31599c[_0x3ec09e(0x139)];_0x31599c[_0x3ec09e(0x114)]=null,_0x31599c[_0x3ec09e(0x139)]=null,null!=_0x4148e2&&_0x4148e2[_0x3ec09e(0x139)]==_0x31599c&&(_0x4148e2[_0x3ec09e(0x139)]=_0x304453),null!=_0x304453&&_0x304453[_0x3ec09e(0x114)]==_0x31599c&&(_0x304453[_0x3ec09e(0x114)]=_0x4148e2),_0x3ec09e(0x1a4)==this[_0x3ec09e(0x181)][_0x3ec09e(0x18d)](_0x31599c)&&(this[_0x3ec09e(0x181)][_0x3ec09e(0x113)](_0x31599c,_0x3ec09e(0xd2)),this[_0x3ec09e(0x22d)](_0x3ec09e(0x254),_0x31599c,_0x4148e2,_0x304453));}[_0x4b63b3(0x202)](_0x513fcf){const _0x18e922=_0x4b63b3,_0x58db5e=_0x513fcf['id'],_0x2cd88d=this[_0x18e922(0x12c)](_0x513fcf);if(this[_0x18e922(0x245)]&&this[_0x18e922(0x245)][_0x18e922(0x10e)]){const _0x18d34f=this[_0x18e922(0x11e)][_0x18e922(0x18e)][_0x18e922(0x18d)](_0x18e922(0x1ba)),_0x281ffc=_0x2cd88d[_0x18e922(0x1ec)],_0x2dde97=_0x2cd88d[_0x18e922(0x1e8)]?_0x2cd88d[_0x18e922(0x12e)]+':'+_0x2cd88d[_0x18e922(0x1e8)]:_0x2cd88d[_0x18e922(0x12e)],_0x3fd789=this[_0x18e922(0x11e)][_0x18e922(0x163)],_0x2ecac9=_0x18d34f[_0x18e922(0x16c)](_0x407a88(_0x3fd789,_0x18e922(0x19a))),_0x3a6c34={'id':_0x58db5e,'type':_0x2dde97,'hasComments':_0x281ffc,'data':_0x513fcf[_0x18e922(0x115)]||null,'originalSuggestionId':_0x513fcf[_0x18e922(0x14b)]||null,'attributes':_0x2cd88d[_0x18e922(0x25d)]};this[_0x18e922(0x245)][_0x18e922(0x10e)](_0x3a6c34)[_0x18e922(0x1a1)](_0x33855c=>{const _0x448694=_0x18e922;_0x2cd88d[_0x448694(0x15d)]=!0x0,_0x18d34f[_0x448694(0xf4)](_0x2ecac9),_0x33855c&&_0x33855c[_0x448694(0x13e)]&&(this[_0x448694(0x189)][_0x448694(0x18d)](_0x58db5e)[_0x448694(0x13e)]=_0x33855c[_0x448694(0x13e)]);})[_0x18e922(0x265)](_0x243287=>{const _0x45a44a=_0x18e922;throw _0x44a058(_0x45a44a(0x1f7)),this[_0x45a44a(0x11e)][_0x45a44a(0xce)][_0x45a44a(0x1e9)]({'isUndoable':!0x1},()=>{const _0x4fecb6=_0x45a44a;_0x2cd88d[_0x4fecb6(0x11b)]();}),_0x2cd88d[_0x45a44a(0x25f)](),this[_0x45a44a(0x189)][_0x45a44a(0xde)](_0x2cd88d['id']),this[_0x45a44a(0x181)][_0x45a44a(0xde)](_0x2cd88d),_0x243287;});}return _0x2cd88d;}[_0x4b63b3(0x16b)](_0x465d46){const _0x1f002d=_0x4b63b3;return this[_0x1f002d(0x1dd)][_0x1f002d(0x1a9)](_0x465d46);}[_0x4b63b3(0x1f8)](_0x53b9b5,_0x1d3568){const _0x293419=_0x4b63b3,_0x2d3dcb=this[_0x293419(0x11e)][_0x293419(0x18e)][_0x293419(0x18d)](_0x293419(0x1ba)),_0x453667=this[_0x293419(0x1fe)](_0x53b9b5);if(this[_0x293419(0x245)]&&this[_0x293419(0x245)][_0x293419(0x13c)]){if(_0x453667[_0x293419(0x15d)]){const _0x338dc4=_0x2d3dcb[_0x293419(0x16c)](_0x407a88(this[_0x293419(0x11e)][_0x293419(0x163)],_0x293419(0x19a)));this[_0x293419(0x245)][_0x293419(0x13c)](_0x53b9b5,_0x1d3568)[_0x293419(0x1a1)](()=>{const _0x3a6f37=_0x293419;_0x2d3dcb[_0x3a6f37(0xf4)](_0x338dc4);});}else _0x453667['on'](_0x293419(0x1fa),()=>{const _0x57407a=_0x293419;this[_0x57407a(0x1f8)](_0x53b9b5,_0x1d3568);});}}[_0x4b63b3(0x1cd)](_0x430029){const _0x320de6=_0x4b63b3;if(!this[_0x320de6(0x245)]||!this[_0x320de6(0x245)][_0x320de6(0x1fe)])throw new _0x3c5e3a(_0x320de6(0xcd),this);return this[_0x320de6(0x245)][_0x320de6(0x1fe)](_0x430029);}[_0x4b63b3(0x155)](_0x28ff4e){const _0x4643f7=_0x4b63b3,{id:_0x3ce9dd,type:_0x3b561a,subType:_0x3cc962,authorId:_0x32de8d}=this[_0x4643f7(0x1b0)](_0x28ff4e),_0x4660b4=this[_0x4643f7(0x189)][_0x4643f7(0x18d)](_0x3ce9dd)||this[_0x4643f7(0x180)](_0x3b561a,_0x3cc962,_0x3ce9dd,_0x32de8d,{});switch(this[_0x4643f7(0x1be)](_0x4660b4,_0x3b561a,_0x3cc962,_0x32de8d),this[_0x4643f7(0x181)][_0x4643f7(0x18d)](_0x4660b4)){case _0x4643f7(0x10f):this[_0x4643f7(0x1cd)](_0x3ce9dd)[_0x4643f7(0x1a1)](_0x105f49=>{const _0x509640=_0x4643f7;let _0x361cea=Promise[_0x509640(0x264)]();_0x105f49[_0x509640(0x1ec)]&&(_0x361cea=this[_0x509640(0x232)][_0x509640(0x1f3)]({'channelId':this[_0x509640(0x11e)][_0x509640(0x231)][_0x509640(0x18d)](_0x509640(0x20a)),'threadId':_0x3ce9dd})),_0x361cea[_0x509640(0x1a1)](()=>{const _0x45eb61=_0x509640;this[_0x45eb61(0x12c)](_0x105f49)[_0x45eb61(0x15d)]=!0x0;});}),this[_0x4643f7(0x181)][_0x4643f7(0x113)](_0x4660b4,_0x4643f7(0x1e4));break;case _0x4643f7(0xd2):this[_0x4643f7(0x1f8)](_0x3ce9dd,{'state':_0x4643f7(0x1c4)});case _0x4643f7(0x1bf):this[_0x4643f7(0x181)][_0x4643f7(0x113)](_0x4660b4,_0x4643f7(0x1a4)),this[_0x4643f7(0x22d)](_0x4643f7(0x223),_0x4660b4);break;case _0x4643f7(0x1a4):this[_0x4643f7(0x22d)](_0x4643f7(0x267),_0x4660b4);}return _0x4660b4[_0x4643f7(0x167)](_0x28ff4e),_0x4660b4;}[_0x4b63b3(0x200)](_0xd9e817){const _0x2ec47b=_0x4b63b3,_0x5415ca=Array[_0x2ec47b(0x255)](_0xd9e817),_0x411f97=_0x5415ca[_0x2ec47b(0x26b)](_0x223ec8=>_0x2ec47b(0x13a)==_0x223ec8[_0x2ec47b(0x12e)]);this[_0x2ec47b(0x279)](_0x411f97);const _0x1103d5=_0x5415ca[_0x2ec47b(0x26b)](_0x12ab20=>!_0x12ab20[_0x2ec47b(0xee)]&&_0x2ec47b(0x13a)!=_0x12ab20[_0x2ec47b(0x12e)]),_0x4c9c75=this[_0x2ec47b(0x182)]({'skipNotAttached':!0x0})[_0x2ec47b(0x26b)](_0x3235c0=>!_0x3235c0[_0x2ec47b(0xee)]&&_0x2ec47b(0x13a)!=_0x3235c0[_0x2ec47b(0x12e)]),_0xfad93=_0x4c9c75[_0x2ec47b(0x26b)](_0x449432=>!_0xd9e817[_0x2ec47b(0x1a9)](_0x449432)),_0x2006a9=new Map(_0x4c9c75[_0x2ec47b(0xd5)](_0x2802d2=>[_0x2802d2,this[_0x2ec47b(0x233)][_0x2ec47b(0x1cc)](_0x2802d2[_0x2ec47b(0x12e)],_0x2802d2[_0x2ec47b(0x1e8)],_0x2ec47b(0x1ef))])),_0x4a25ae=new Map(_0x4c9c75[_0x2ec47b(0xd5)](_0x182079=>[_0x182079,_0x182079[_0x2ec47b(0x274)]()])),_0x1361fa=new Set(),_0x525ece=new Set();for(let _0x2a1fb8=0x0;_0x2a1fb8<_0x1103d5[_0x2ec47b(0xea)];_0x2a1fb8++)_0x366441(_0x1103d5[_0x2a1fb8],_0x1103d5,_0x2a1fb8+0x1);for(let _0x17a189=0x0;_0x17a189<_0x1103d5[_0x2ec47b(0xea)];_0x17a189++)_0x366441(_0x1103d5[_0x17a189],_0xfad93,0x0);const _0x3937c0=new Set();for(let _0x300009=0x0;_0x300009<_0x1103d5[_0x2ec47b(0xea)];_0x300009++){const _0x114f7b=_0x1103d5[_0x300009];!_0x525ece[_0x2ec47b(0x1a9)](_0x114f7b)&&_0x114f7b[_0x2ec47b(0x114)]&&(_0x3937c0[_0x2ec47b(0x16c)](_0x114f7b[_0x2ec47b(0x114)]),_0x114f7b[_0x2ec47b(0x114)][_0x2ec47b(0x139)]===_0x114f7b&&(_0x114f7b[_0x2ec47b(0x114)][_0x2ec47b(0x139)]=null),_0x114f7b[_0x2ec47b(0x114)]=null),!_0x1361fa[_0x2ec47b(0x1a9)](_0x114f7b)&&_0x114f7b[_0x2ec47b(0x139)]&&(_0x3937c0[_0x2ec47b(0x16c)](_0x114f7b[_0x2ec47b(0x139)]),_0x114f7b[_0x2ec47b(0x139)][_0x2ec47b(0x114)]===_0x114f7b&&(_0x114f7b[_0x2ec47b(0x139)][_0x2ec47b(0x114)]=null),_0x114f7b[_0x2ec47b(0x139)]=null);}function _0x366441(_0x4357be,_0x4dec5a,_0x9bc880){const _0x58826a=_0x2ec47b;for(let _0x14e7ab=_0x9bc880;_0x14e7ab<_0x4dec5a[_0x58826a(0xea)];_0x14e7ab++){const _0x468b9c=_0x58a069(_0x4357be,_0x4dec5a[_0x14e7ab]);_0x468b9c&&(_0x468b9c[0x0][_0x58826a(0x139)]=_0x468b9c[0x1],_0x468b9c[0x1][_0x58826a(0x114)]=_0x468b9c[0x0],_0x1361fa[_0x58826a(0x16c)](_0x468b9c[0x0]),_0x525ece[_0x58826a(0x16c)](_0x468b9c[0x1]));}}function _0x58a069(_0x19aea5,_0x231194){const _0x32bbdf=_0x2ec47b;if(_0x19aea5[_0x32bbdf(0x103)]['id']!==_0x231194[_0x32bbdf(0x103)]['id'])return null;const _0x279d52=_0x2006a9[_0x32bbdf(0x18d)](_0x19aea5)(_0x19aea5,_0x231194,_0x4a25ae[_0x32bbdf(0x18d)](_0x19aea5),_0x4a25ae[_0x32bbdf(0x18d)](_0x231194));if(!_0x279d52)return null;return _0x2006a9[_0x32bbdf(0x18d)](_0x231194)(_0x19aea5,_0x231194,_0x4a25ae[_0x32bbdf(0x18d)](_0x19aea5),_0x4a25ae[_0x32bbdf(0x18d)](_0x231194))?_0x279d52[0x1][_0x32bbdf(0x27c)]&&_0x279d52[0x1][_0x32bbdf(0x27c)][_0x32bbdf(0xea)]?null:_0x279d52:null;}_0x3937c0[_0x2ec47b(0x11a)]&&this[_0x2ec47b(0x200)](_0x3937c0);}[_0x4b63b3(0x279)](_0x207393){const _0x5320a5=_0x4b63b3;if(0x0==_0x207393[_0x5320a5(0xea)])return;const _0x4fd5d6=this[_0x5320a5(0x182)]({'skipNotAttached':!0x0})[_0x5320a5(0x26b)](_0x6090bf=>_0x5320a5(0x13a)==_0x6090bf[_0x5320a5(0x12e)]&&_0x6090bf[_0x5320a5(0x147)]),_0x4c97d3=[],_0x5f2512=new Map();for(const _0x195eae of _0x4fd5d6){const _0x45eab3=_0x3f084b(_0x195eae[_0x5320a5(0x25d)]);_0x5f2512[_0x5320a5(0x1a9)](_0x45eab3)||(_0x5f2512[_0x5320a5(0x113)](_0x45eab3,_0x4c97d3[_0x5320a5(0xea)]),_0x4c97d3[_0x5320a5(0x179)]([]));const _0x1c520f=_0x5f2512[_0x5320a5(0x18d)](_0x45eab3);_0x4c97d3[_0x1c520f][_0x5320a5(0x179)](_0x195eae);}!(function(){const _0x3bf50c=_0x5320a5;_0x4c97d3[_0x3bf50c(0x1b5)]((_0x48222f,_0x393de1)=>{const _0x41bd2e=_0x3bf50c,_0x467188=_0x48222f[0x0][_0x41bd2e(0x13e)],_0xd4beb0=_0x393de1[0x0][_0x41bd2e(0x13e)];return _0x467188==_0xd4beb0?_0x48222f[0x0][_0x41bd2e(0x25d)][_0x41bd2e(0x1cf)]<_0x393de1[0x0][_0x41bd2e(0x25d)][_0x41bd2e(0x1cf)]?-0x1:0x1:_0x467188<_0xd4beb0?-0x1:0x1;});for(const _0xba9b7b of _0x4c97d3)_0xba9b7b[_0x3bf50c(0x1b5)]((_0x3d29ba,_0x4ecdaf)=>_0x3d29ba['id']<_0x4ecdaf['id']?-0x1:0x1);}());for(let _0x591df5=0x0;_0x591df5<_0x4c97d3[_0x5320a5(0xea)];_0x591df5++){if(0x0==_0x4c97d3[_0x591df5][_0x5320a5(0xea)])continue;const _0x50af3d=[];for(let _0x386635=_0x591df5+0x1;_0x386635<_0x4c97d3[_0x5320a5(0xea)];_0x386635++)0x0!=_0x4c97d3[_0x386635][_0x5320a5(0xea)]&&_0x18886b(_0x4c97d3[_0x591df5],_0x4c97d3[_0x386635])&&_0x50af3d[_0x5320a5(0x179)](_0x386635);for(const _0x264f19 of _0x50af3d)_0x4c97d3[_0x591df5]=_0x4c97d3[_0x591df5][_0x5320a5(0x1a2)](_0x4c97d3[_0x264f19]),_0x4c97d3[_0x264f19]=[];}for(const _0xaf1783 of _0x4c97d3)for(let _0x520e5c=0x0;_0x520e5c<_0xaf1783[_0x5320a5(0xea)];_0x520e5c++){const _0x22dba7=_0xaf1783[_0x520e5c+0x1]||null;_0xaf1783[_0x520e5c][_0x5320a5(0x139)]!==_0x22dba7&&(_0xaf1783[_0x520e5c][_0x5320a5(0x139)]=_0x22dba7);}for(const _0x2a8f8f of _0x4c97d3)for(let _0x5df246=0x0;_0x5df246<_0x2a8f8f[_0x5320a5(0xea)];_0x5df246++){const _0x2563f3=_0x2a8f8f[_0x5df246-0x1]||null;_0x2a8f8f[_0x5df246][_0x5320a5(0x114)]!==_0x2563f3&&(_0x2a8f8f[_0x5df246][_0x5320a5(0x114)]=_0x2563f3);}function _0x18886b(_0xa7b895,_0x1ffda1){const _0x3a4f16=_0x5320a5;if(_0xa7b895[0x0][_0x3a4f16(0x25d)][_0x3a4f16(0x1cf)]!==_0x1ffda1[0x0][_0x3a4f16(0x25d)][_0x3a4f16(0x1cf)]&&_0xa7b895[0x0][_0x3a4f16(0x103)]!==_0x1ffda1[0x0][_0x3a4f16(0x103)])return!0x1;if(!function(_0x2456b3,_0x231cb2){const _0x365c36=_0x3a4f16;if(!_0x2456b3[_0x365c36(0x1ec)]&&!_0x231cb2[_0x365c36(0x1ec)])return!0x0;if(_0x2456b3[_0x365c36(0x1ec)]&&_0x231cb2[_0x365c36(0x1ec)])return!0x1;if(_0x2456b3[_0x365c36(0x1ec)]&&_0x231cb2[_0x365c36(0x13e)]<_0x2456b3[_0x365c36(0x27c)][_0x365c36(0x23e)][_0x365c36(0x18d)](0x0)[_0x365c36(0x13e)])return!0x0;if(_0x231cb2[_0x365c36(0x1ec)]&&_0x2456b3[_0x365c36(0x13e)]<_0x231cb2[_0x365c36(0x27c)][_0x365c36(0x23e)][_0x365c36(0x18d)](0x0)[_0x365c36(0x13e)])return!0x0;return!0x1;}(_0xa7b895[0x0],_0x1ffda1[0x0]))return!0x1;const _0x5b57da=_0x58a6ca(_0xa7b895[0x0][_0x3a4f16(0x25d)],_0x3a4f16(0x1cf)),_0x38f3cb=_0x58a6ca(_0x1ffda1[0x0][_0x3a4f16(0x25d)],_0x3a4f16(0x1cf));if(!_0x4e76ff(_0x5b57da,_0x38f3cb))return!0x1;return!!_0xa7b895[_0x3a4f16(0x185)](_0x258b16=>_0x1ffda1[_0x3a4f16(0xdc)](_0x46a2fb=>_0x258b16[_0x3a4f16(0x274)]()[_0x3a4f16(0x1b8)](_0x46a2fb[_0x3a4f16(0x274)]())))&&_0x1ffda1[_0x3a4f16(0x185)](_0x775fdd=>_0xa7b895[_0x3a4f16(0xdc)](_0x515ad4=>_0x775fdd[_0x3a4f16(0x274)]()[_0x3a4f16(0x1b8)](_0x515ad4[_0x3a4f16(0x274)]())));}}[_0x4b63b3(0xda)](_0x334c8d){const _0x2c763d=_0x4b63b3,_0x468aa1=Array[_0x2c763d(0x255)](_0x334c8d),_0x232713=this[_0x2c763d(0x182)]({'skipNotAttached':!0x0}),_0x98ba7c=_0x232713[_0x2c763d(0x26b)](_0x566842=>!_0x334c8d[_0x2c763d(0x1a9)](_0x566842)),_0x52da1e=new Map(_0x468aa1[_0x2c763d(0xd5)](_0x3f12c9=>[_0x3f12c9,this[_0x2c763d(0x233)][_0x2c763d(0x1cc)](_0x3f12c9[_0x2c763d(0x12e)],_0x3f12c9[_0x2c763d(0x1e8)],_0x2c763d(0x18f))])),_0x2bc413=new Map(_0x232713[_0x2c763d(0xd5)](_0x4b6b56=>[_0x4b6b56,_0x4b6b56[_0x2c763d(0x24e)]()]));for(let _0x43c4fb=0x0;_0x43c4fb<_0x468aa1[_0x2c763d(0xea)];_0x43c4fb++){if(_0x3c3683(this,_0x468aa1[_0x43c4fb],_0x468aa1,_0x43c4fb+0x1))return!0x0;}for(let _0x4d1f7b=0x0;_0x4d1f7b<_0x468aa1[_0x2c763d(0xea)];_0x4d1f7b++){if(_0x3c3683(this,_0x468aa1[_0x4d1f7b],_0x98ba7c,0x0))return!0x0;}return!0x1;function _0x3c3683(_0x1d569f,_0x4e426b,_0xc65fb8,_0x47ea67){const _0x18ea40=_0x2c763d;for(let _0x10631f=_0x47ea67;_0x10631f<_0xc65fb8[_0x18ea40(0xea)];_0x10631f++){const _0x204d91=_0xc65fb8[_0x10631f];if(_0x204d91[_0x18ea40(0x12e)]!==_0x4e426b[_0x18ea40(0x12e)]||_0x204d91[_0x18ea40(0x103)]['id']!==_0x4e426b[_0x18ea40(0x103)]['id']||_0x204d91[_0x18ea40(0x1e8)]!==_0x4e426b[_0x18ea40(0x1e8)])continue;if(!Ht(_0x4e426b,_0x204d91))continue;if(_0x18ea40(0x13a)==_0x4e426b[_0x18ea40(0x12e)]&&_0x4e426b[_0x18ea40(0x115)][_0x18ea40(0x220)]!=_0x204d91[_0x18ea40(0x115)][_0x18ea40(0x220)])continue;if(_0x18ea40(0x13a)==_0x4e426b[_0x18ea40(0x12e)]&&_0x1d569f[_0x18ea40(0x16b)](_0x4e426b[_0x18ea40(0x115)][_0x18ea40(0x1ca)]))continue;if(_0x18ea40(0x1ea)==_0x4e426b[_0x18ea40(0x12e)]){const _0x639df1=_0x1d569f[_0x18ea40(0x11e)][_0x18ea40(0xce)],_0x319cec=_0x4e426b[_0x18ea40(0x186)]();if(_0x319cec&&(_0x639df1[_0x18ea40(0x176)][_0x18ea40(0x129)](_0x319cec)||_0x639df1[_0x18ea40(0x176)][_0x18ea40(0x1b1)](_0x319cec)))continue;}const _0x322dcf=_0x52da1e[_0x18ea40(0x18d)](_0x4e426b),_0x207fed=_0x2bc413[_0x18ea40(0x18d)](_0x4e426b),_0x4b5bf0=_0x2bc413[_0x18ea40(0x18d)](_0x204d91),_0x680a77=_0x4e426b[_0x18ea40(0x27c)]&&_0x4e426b[_0x18ea40(0x27c)][_0x18ea40(0xea)],_0x1014b3=_0x204d91[_0x18ea40(0x27c)]&&_0x204d91[_0x18ea40(0x27c)][_0x18ea40(0xea)];if(!_0x680a77&&_0x322dcf(_0x4b5bf0,_0x207fed))return _0x1d569f[_0x18ea40(0x269)](_0x204d91,_0x4e426b),_0x2bc413[_0x18ea40(0xde)](_0x4e426b),!0x0;if(!_0x1014b3&&_0x322dcf(_0x207fed,_0x4b5bf0))return _0x1d569f[_0x18ea40(0x269)](_0x4e426b,_0x204d91),_0x2bc413[_0x18ea40(0xde)](_0x204d91),!0x0;}return!0x1;}}[_0x4b63b3(0x269)](_0x3ee6f6,_0x578852){const _0x3853d7=_0x4b63b3;if(_0x3ee6f6[_0x3853d7(0xee)]){for(const _0x41825b of _0x578852[_0x3853d7(0x24e)]())_0x3ee6f6[_0x3853d7(0x26f)](_0x41825b);}else{const _0x5384a6=_0x578852[_0x3853d7(0x274)]()[_0x3853d7(0x24c)];this[_0x3853d7(0x27e)](_0x3ee6f6,this[_0x3853d7(0x148)][_0x3853d7(0x207)](_0x3ee6f6[_0x3853d7(0x274)]()[_0x3853d7(0x138)],_0x5384a6));}_0x578852[_0x3853d7(0xd0)]();}[_0x4b63b3(0x1fd)](_0x3a3d5f,_0x31f513,_0x1f51bd){const _0x1448a1=_0x4b63b3,_0x244d8c=_0x3a3d5f[_0x1448a1(0xeb)](_0x1448a1(0x1e1))||_0x3a3d5f[_0x1448a1(0xeb)](_0x1448a1(0x13a))?_0x1448a1(0x263):_0x3a3d5f[_0x1448a1(0x152)]();return _0x407a88(this[_0x1448a1(0x11e)][_0x1448a1(0x163)],_0x31f513+'_'+_0x244d8c+_0x1448a1(0x208),_0x1f51bd);}[_0x4b63b3(0x1a0)](){const _0x55d009=_0x4b63b3,_0x20bd20=this[_0x55d009(0x11e)];if(!_0x20bd20['ui'])return;const {ariaLiveAnnouncer:_0x3cc794}=_0x20bd20['ui'];_0xbb5fea(this[_0x55d009(0x148)],({left:_0x244e51,entered:_0x34237b})=>{const _0x8fcea0=_0x55d009;for(const _0x439f66 of _0x244e51){const {group:_0x422024,type:_0x46535e}=this[_0x8fcea0(0x1b0)](_0x439f66[_0x8fcea0(0x193)]);if(_0x8fcea0(0x183)===_0x422024){_0x3cc794[_0x8fcea0(0x17f)](this[_0x8fcea0(0x1fd)](_0x46535e,_0x8fcea0(0x1f1)));break;}}for(const _0x1bf627 of _0x34237b){const {group:_0x12bb58,type:_0x59137e}=this[_0x8fcea0(0x1b0)](_0x1bf627[_0x8fcea0(0x193)]);if(_0x8fcea0(0x183)===_0x12bb58){_0x3cc794[_0x8fcea0(0x17f)](this[_0x8fcea0(0x1fd)](_0x59137e,_0x8fcea0(0x1de),_0x244a58(_0x239823)));break;}}});}[_0x4b63b3(0x116)](_0x4add92){const _0x330d14=_0x4b63b3;if(this[_0x330d14(0x276)])return!0x1;const _0x59b5f0=this[_0x330d14(0x11e)],_0x29cebb=_0x59b5f0[_0x330d14(0xce)][_0x330d14(0x277)][_0x330d14(0x175)][_0x330d14(0x151)]();if(0x0==_0x29cebb[_0x330d14(0xea)])return!0x1;const _0x538674=[],_0x56bf2f=_0x29cebb[_0x330d14(0x26b)](_0x265ba9=>_0x330d14(0x13a)==_0x265ba9[_0x330d14(0x12e)]),_0x32042e=_0x29cebb[_0x330d14(0x26b)](_0x31e004=>_0x330d14(0x198)==_0x31e004[_0x330d14(0x12e)]&&_0x330d14(0x246)!=_0x31e004[_0x330d14(0x193)]),_0x27462b=_0x29cebb[_0x330d14(0x26b)](_0x25502a=>_0x330d14(0xf4)==_0x25502a[_0x330d14(0x12e)]&&_0x330d14(0x246)!=_0x25502a[_0x330d14(0x193)]);for(const _0x5d7d7a of _0x56bf2f)_0x538674[_0x330d14(0x179)]({'key':_0x5d7d7a[_0x330d14(0x13d)],'newValue':_0x5d7d7a[_0x330d14(0x1aa)],'oldValue':_0x5d7d7a[_0x330d14(0x10b)],'range':Ft(_0x5d7d7a[_0x330d14(0xe7)],_0x59b5f0[_0x330d14(0xce)])});for(const _0x4c9b75 of _0x32042e){const _0x112fe0=_0x27462b[_0x330d14(0xdd)](_0xd2e5ae=>_0xd2e5ae[_0x330d14(0x1eb)][_0x330d14(0x1b8)](_0x4c9b75[_0x330d14(0x1eb)]));_0x112fe0&&_0x538674[_0x330d14(0x179)]({'key':_0x330d14(0x209),'newValue':_0x4c9b75[_0x330d14(0x193)],'oldValue':_0x112fe0[_0x330d14(0x193)],'range':_0x59b5f0[_0x330d14(0xce)][_0x330d14(0x25a)](_0x4c9b75[_0x330d14(0x1eb)][_0x330d14(0x199)])});}return 0x0!=_0x538674[_0x330d14(0xea)]&&this[_0x330d14(0x24b)](_0x4add92,_0x538674);}[_0x4b63b3(0x13f)](_0x54bbc5){const _0x4f59e3=_0x4b63b3;let _0x4d80f2=!0x1;const _0x4b8879=this[_0x4f59e3(0x11e)][_0x4f59e3(0xce)][_0x4f59e3(0x277)][_0x4f59e3(0x175)][_0x4f59e3(0x154)]()[_0x4f59e3(0x26b)](_0x363a8d=>_0x363a8d[_0x4f59e3(0x115)][_0x4f59e3(0x218)]&&_0x363a8d[_0x4f59e3(0x193)][_0x4f59e3(0xeb)](_0x4f59e3(0x106)));for(const _0x3bed6e of _0x4b8879){const {subType:_0x281e66,id:_0x2c452b}=this[_0x4f59e3(0x1b0)](_0x3bed6e[_0x4f59e3(0x193)]),_0xb9992d=_0x281e66[_0x4f59e3(0x19b)]('|')[0x0];for(const _0x575262 of this[_0x4f59e3(0x182)]({'skipNotAttached':!0x0}))_0x575262['id']!=_0x2c452b&&_0x4f59e3(0x13a)==_0x575262[_0x4f59e3(0x12e)]&&_0x575262[_0x4f59e3(0x115)]&&_0x575262[_0x4f59e3(0x115)][_0x4f59e3(0x1ca)]==_0xb9992d&&_0x575262[_0x4f59e3(0x274)]()[_0x4f59e3(0x243)](_0x3bed6e[_0x4f59e3(0x115)][_0x4f59e3(0x218)])&&(this[_0x4f59e3(0x1af)](_0x575262,_0x3bed6e[_0x4f59e3(0x115)][_0x4f59e3(0x218)],_0x54bbc5),_0x4d80f2=!0x0);}return _0x4d80f2;}[_0x4b63b3(0x164)](_0x5bec3b){const _0x9b3570=_0x4b63b3;this[_0x9b3570(0x276)]=!0x0,_0x5bec3b();}[_0x4b63b3(0x166)](_0x4e4a71){const _0x26aa23=_0x4b63b3,_0x173d58=this[_0x26aa23(0x16b)](_0x4e4a71),_0x12c85d=this[_0x26aa23(0x1a3)][_0x26aa23(0x1a9)](_0x4e4a71);return _0x173d58||_0x12c85d;}[_0x4b63b3(0x24b)](_0x2b8ca0,_0x35c680){const _0x42144c=_0x4b63b3;if(0x0==_0x35c680[_0x42144c(0xea)])return!0x1;let _0x1d1148=!0x1;for(const _0x86eaa of _0x35c680){const _0x22df07=this[_0x42144c(0x174)](_0x86eaa[_0x42144c(0xe7)],_0x42144c(0x13a))[_0x42144c(0x26b)](_0x172a81=>!_0x172a81[_0x42144c(0x251)][_0x42144c(0x17b)])[_0x42144c(0xd5)](_0x5dea31=>_0x5dea31[_0x42144c(0x183)]),_0x42d7a1=_0x3f084b({'newValue':_0x86eaa[_0x42144c(0x25e)]});_0x22df07[_0x42144c(0x26b)](_0x5188f2=>{const _0x1098f3=_0x42144c,[_0x1c132b,_0x2c8a09]=_0x5188f2[_0x1098f3(0x1e8)][_0x1098f3(0x19b)]('|');return _0x1c132b==_0x86eaa[_0x1098f3(0x1ca)]&&_0x2c8a09!=_0x42d7a1;})[_0x42144c(0x256)](_0x148a09=>{const _0x46ed9b=_0x42144c;this[_0x46ed9b(0x1af)](_0x148a09,_0x86eaa[_0x46ed9b(0xe7)],_0x2b8ca0),_0x1d1148=!0x0;});}return _0x1d1148;}[_0x4b63b3(0x1af)](_0x172e82,_0xa916d,_0xad4e4f){const _0x407ce5=_0x4b63b3,_0x254fc6=_0x172e82[_0x407ce5(0x274)]()[_0x407ce5(0x240)](_0xa916d);0x0!==_0x254fc6[_0x407ce5(0xea)]?0x1!==_0x254fc6[_0x407ce5(0xea)]?this[_0x407ce5(0x11f)](_0x172e82,_0xa916d[_0x407ce5(0x138)],_0xa916d[_0x407ce5(0x24c)]):this[_0x407ce5(0x27e)](_0x172e82,_0x254fc6[0x0]):_0xad4e4f[_0x407ce5(0x194)](_0x172e82[_0x407ce5(0x1bd)]());}}class xt{constructor(_0x4e0b79){const _0x496c20=_0x4b63b3;this[_0x496c20(0xf1)]=_0x4e0b79,this[_0x496c20(0x148)]=_0x4e0b79[_0x496c20(0xce)],this[_0x496c20(0x102)]=new Map(),this[_0x496c20(0x216)]=new Map(),this[_0x496c20(0x188)]();}[_0x4b63b3(0x137)](_0xd15249,_0xc86f0a,_0x28e033,_0xddfbc0,_0x3e3c61,_0x51eac4){const _0x474cff=_0x4b63b3;return new _0x139db5(this[_0x474cff(0x148)],{'type':_0xd15249,'subType':_0xc86f0a,'id':_0x28e033,'author':_0xddfbc0,'creator':_0xddfbc0,'attributes':_0x3e3c61,'onAttributesChange':_0x51eac4,'onAccept':(..._0x4aac1f)=>this[_0x474cff(0x1cc)](_0xd15249,_0xc86f0a,_0x474cff(0xe0))(..._0x4aac1f),'onDiscard':(..._0x56ae3a)=>this[_0x474cff(0x1cc)](_0xd15249,_0xc86f0a,_0x474cff(0x11b))(..._0x56ae3a)});}[_0x4b63b3(0xec)](_0x489225,_0x161987,_0x280e9d,_0xf86b1){const _0x5e7607=_0x4b63b3,_0x20fb38=_0x489225+':'+_0x161987+':'+_0x280e9d;this[_0x5e7607(0x102)][_0x5e7607(0x113)](_0x20fb38,_0xf86b1);}[_0x4b63b3(0x1cc)](_0x227748,_0x2f1359,_0x375b80){const _0x34ea03=_0x4b63b3,_0x104942=_0x227748+':'+_0x2f1359+':'+_0x375b80;return this[_0x34ea03(0x102)][_0x34ea03(0x18d)](_0x104942)||this[_0x34ea03(0x216)][_0x34ea03(0x18d)](_0x227748+':'+_0x375b80);}[_0x4b63b3(0x188)](){const _0x3b3498=_0x4b63b3,_0x44692c=()=>!0x1,_0x133006=_0x2b7d43=>{const _0x31be79=_0xb65f;_0x2b7d43[_0x31be79(0x1b5)]((_0x1132d5,_0xc28357)=>_0x1132d5[_0x31be79(0x138)][_0x31be79(0x219)](_0xc28357[_0x31be79(0x138)])?0x1:-0x1),this[_0x31be79(0x148)][_0x31be79(0x160)](_0x4ff374=>{const _0x2ba96c=_0x31be79;for(const _0xf9fa31 of _0x2b7d43){let _0x25c3f0;_0x25c3f0=_0xf9fa31[_0x2ba96c(0x24c)][_0x2ba96c(0x249)]&&_0xf9fa31[_0x2ba96c(0x24c)][_0x2ba96c(0x234)]==_0xf9fa31[_0x2ba96c(0x138)][_0x2ba96c(0x199)]?_0x4ff374[_0x2ba96c(0x23b)](_0xf9fa31[_0x2ba96c(0x138)][_0x2ba96c(0x199)],'on'):_0x4ff374[_0x2ba96c(0x23b)](_0xf9fa31),this[_0x2ba96c(0x148)][_0x2ba96c(0x23d)](_0x25c3f0,{'forceDefaultExecution':!0x0,'doNotAutoparagraph':!0x0});}});},_0x3ca3d1=(_0x11f7f4,_0x513498)=>{const _0x10331a=_0xb65f;_0x513498&&this[_0x10331a(0x148)][_0x10331a(0x160)](_0x154e2d=>{const _0x5c1fa5=_0x10331a,{commandName:_0x35ecae,commandParams:_0x458e45=[]}=_0x513498,_0x41495d=_0x11f7f4[_0x5c1fa5(0xd5)](_0x8720ef=>(Ut(_0x8720ef)&&(_0x8720ef=this[_0x5c1fa5(0x148)][_0x5c1fa5(0x207)](_0x8720ef[_0x5c1fa5(0x24c)])),_0x8720ef))[_0x5c1fa5(0x26b)](_0x32eb87=>_0x5c1fa5(0xf0)!==_0x32eb87[_0x5c1fa5(0x192)][_0x5c1fa5(0xdf)]);if(_0x41495d[_0x5c1fa5(0xea)]<0x1)return;const _0x47ca7e=Array[_0x5c1fa5(0x255)](this[_0x5c1fa5(0x148)][_0x5c1fa5(0x277)][_0x5c1fa5(0x215)][_0x5c1fa5(0x24e)]())[_0x5c1fa5(0xd5)](_0x134387=>_0x113484[_0x5c1fa5(0x136)](_0x134387));_0x154e2d[_0x5c1fa5(0x123)](_0x41495d);for(const _0x4047f1 of this[_0x5c1fa5(0xf1)][_0x5c1fa5(0x26c)][_0x5c1fa5(0x26c)]())_0x4047f1[_0x5c1fa5(0x217)]();_0x458e45[_0x5c1fa5(0x179)]({'forceDefaultExecution':!0x0}),this[_0x5c1fa5(0xf1)][_0x5c1fa5(0x105)](_0x35ecae,..._0x458e45);const _0x128e6c=_0x47ca7e[_0x5c1fa5(0x26b)](_0x1b92a1=>_0x5c1fa5(0xf0)!=_0x1b92a1[_0x5c1fa5(0x192)][_0x5c1fa5(0xdf)]);_0x128e6c[_0x5c1fa5(0xea)]>0x0&&_0x154e2d[_0x5c1fa5(0x123)](_0x128e6c);for(const _0x1665ac of _0x47ca7e)_0x1665ac[_0x5c1fa5(0x124)]();});},_0x2dbdb5=(_0x4e1fdb,_0x4651be)=>0x1==_0x4e1fdb[_0x3b3498(0xea)]&&0x1==_0x4651be[_0x3b3498(0xea)]&&_0x4e1fdb[0x0][_0x3b3498(0x24c)][_0x3b3498(0x1b8)](_0x4651be[0x0][_0x3b3498(0x138)]),_0x139123=(_0x246682,_0x34de90,_0x11032f,_0x411fd2)=>Jt(_0x246682,_0x34de90,_0x11032f,_0x411fd2,this[_0x3b3498(0x148)])?[_0x246682,_0x34de90]:Jt(_0x34de90,_0x246682,_0x411fd2,_0x11032f,this[_0x3b3498(0x148)])?[_0x34de90,_0x246682]:null;this[_0x3b3498(0x216)][_0x3b3498(0x113)](_0x3b3498(0x117),_0x44692c),this[_0x3b3498(0x216)][_0x3b3498(0x113)](_0x3b3498(0x143),_0x133006),this[_0x3b3498(0x216)][_0x3b3498(0x113)](_0x3b3498(0xe2),_0x2dbdb5),this[_0x3b3498(0x216)][_0x3b3498(0x113)](_0x3b3498(0x236),_0x139123),this[_0x3b3498(0x216)][_0x3b3498(0x113)](_0x3b3498(0x250),_0x133006),this[_0x3b3498(0x216)][_0x3b3498(0x113)](_0x3b3498(0x16d),_0x44692c),this[_0x3b3498(0x216)][_0x3b3498(0x113)](_0x3b3498(0x270),_0x2dbdb5),this[_0x3b3498(0x216)][_0x3b3498(0x113)](_0x3b3498(0x18c),_0x139123),this[_0x3b3498(0x216)][_0x3b3498(0x113)](_0x3b3498(0x11c),_0x3ca3d1),this[_0x3b3498(0x216)][_0x3b3498(0x113)](_0x3b3498(0x146),_0x44692c),this[_0x3b3498(0x216)][_0x3b3498(0x113)](_0x3b3498(0x14e),_0x2dbdb5),this[_0x3b3498(0x216)][_0x3b3498(0x113)](_0x3b3498(0x120),_0x44692c),this[_0x3b3498(0x216)][_0x3b3498(0x113)](_0x3b3498(0x122),_0x3ca3d1),this[_0x3b3498(0x216)][_0x3b3498(0x113)](_0x3b3498(0x21d),_0x44692c),this[_0x3b3498(0x216)][_0x3b3498(0x113)](_0x3b3498(0x131),_0x2dbdb5),this[_0x3b3498(0x216)][_0x3b3498(0x113)](_0x3b3498(0x213),_0x44692c),this[_0x3b3498(0x216)][_0x3b3498(0x113)](_0x3b3498(0x16f),_0x44692c),this[_0x3b3498(0x216)][_0x3b3498(0x113)](_0x3b3498(0xfb),(_0x38ea14,_0x3fa563)=>{const _0x2399b8=_0x3b3498;if(!_0x3fa563)return;const _0x38365c=this[_0x2399b8(0xf1)][_0x2399b8(0x18e)][_0x2399b8(0x18d)](p);this[_0x2399b8(0x148)][_0x2399b8(0x160)](_0xe40e4d=>{const _0x420276=_0x2399b8;if(_0x420276(0x209)==_0x3fa563[_0x420276(0x1ca)])for(const _0x507db7 of _0x38ea14){const _0x6aaa25=_0x507db7[_0x420276(0x138)][_0x420276(0x199)],_0x586f13=_0x3fa563[_0x420276(0x220)];_0xe40e4d[_0x420276(0x1cb)](_0x6aaa25,_0x586f13);}else{if(_0x38365c[_0x420276(0x16b)](_0x3fa563[_0x420276(0x1ca)])){for(const _0x33241f of _0x38ea14)void 0x0!==_0x3fa563[_0x420276(0x220)]?_0xe40e4d[_0x420276(0x141)](_0x3fa563[_0x420276(0x1ca)],_0x3fa563[_0x420276(0x220)],_0x33241f[_0x420276(0x138)][_0x420276(0x199)]):_0xe40e4d[_0x420276(0x1d6)](_0x3fa563[_0x420276(0x1ca)],_0x33241f[_0x420276(0x138)][_0x420276(0x199)]);}else{for(const _0x3738b3 of _0x38ea14)_0x3fa563[_0x420276(0x220)]?_0xe40e4d[_0x420276(0x141)](_0x3fa563[_0x420276(0x1ca)],_0x3fa563[_0x420276(0x220)],_0x3738b3):_0xe40e4d[_0x420276(0x1d6)](_0x3fa563[_0x420276(0x1ca)],_0x3738b3);}}});}),this[_0x3b3498(0x216)][_0x3b3498(0x113)](_0x3b3498(0x1f4),_0x2dbdb5);}}function Et(_0x52ea54,_0x2c2d63,_0x2090d4){const _0x52d8c0=_0x4b63b3;for(const _0x111f56 of _0x2c2d63[_0x52d8c0(0x234)][_0x52d8c0(0x1ff)]({'includeSelf':!0x0,'parentFirst':!0x0})){if(_0x111f56[_0x52d8c0(0x192)]==_0x111f56)return!0x1;if(!_0x2090d4[_0x52d8c0(0x1e2)](_0x111f56))return!0x1;if(_0x52ea54[_0x52d8c0(0x129)](_0x111f56)||_0x52ea54[_0x52d8c0(0x1b1)](_0x111f56))return!0x0;}return!0x1;}function _0x5a8a(){const _0x188592=['editingDowncast','lowest','formatBlock:join','splitPosition','group','editing','low','fromRange','buildSuggestion','start','next','attribute','trackChangesCommand','updateSuggestion','attributeKey','createdAt','_processAttributeSuggestions','deletion','setAttribute','createPositionBefore','insertion:discard','CommentsRepository','Users','formatInline:discard','_isDataLoaded','_model','skipNestingCheck','isRemovable','originalSuggestionId','trackChanges.trackFormatChanges','markerToData','formatInline:join','discardSelectedSuggestions','backward','getChanges','toUpperCase','accepted','getChangedMarkers','_handleNewSuggestionMarker','hasSuggestion','90FVzwHe','assign','markBlockFormat','never','registerPostFixer','mapper','_saved','clone','substr','change','isUndo','_addSuggestionMarker','locale','_recordAttributeChanges','acceptAllSuggestions','_isRegisteredAttribute','addMarkerName','moveTargetPosition','isCollapsed','track-changes-command-not-found','_isBlockAttribute','add','deletion:discard','data-author-id','attribute:accept','getAllAdjacentSuggestions','enableReadOnlyMode','markDeletion','removeMarker:suggestion:attribute','_findSuggestions','differ','schema','containsRangeInObject','registerBlockAttribute','push','_getExternalAuthor','isNextTo','clear','getUser','unbindElementFromMarkerName','announce','_createSuggestion','_suggestionState','getSuggestions','suggestion','isAfter','every','getContainedElement','isTouching','_registerDefaultCallbacks','_suggestions','value','targetPosition','deletion:chain','get','plugins','join','updateMarker','@external','root','name','removeMarker','change:activeMarkers','keys','activeMarkers','insert','nodeAfter','PENDING_ACTION_SUGGESTION','split','track-changes-user-not-found','track-changes-enable-command-twice','trackChanges','formatBlock:','_initAriaMarkerChangeAnnouncements','then','concat','_inlineAttributeKeys','ready','hasCommentThread','splice','ck-suggestion-marker','trackChanges.mergeNestedSuggestions','has','attributeNewValue','stop','marker-count','isExternal','forceDefaultExecution','_reduceSuggestionAttributeRange','_splitMarkerName','isLimit','unbind','removeMarker:suggestion:formatBlock','addMarker:suggestion:formatBlock','sort','_afterChanges','writer','isEqual','isInContent','PendingActions','track-changes-adapter-already-set','_trackFormatChanges','getFirstMarker','_checkSuggestionCorrectness','dataReady','77105SHBfzf','_getAuthorFromId','insertion','deletion:','open','markerName','isAtStart','values','getAttribute','addUser','key','rename','getSuggestionCallback','_getSuggestionData','registerInlineAttribute','groupId','action','acceptSuggestion','createPositionAt','track-changes-suggestion-data-mismatch','markInsertion','normal','removeAttribute','_rangeIsInLocalUserInsertion','nodeBefore','markMultiRangeBlockFormat','_isForcedDefaultExecutionBlock','suggestion-type','dataDowncast','_blockAttributeKeys','ENTER','isOfficialPlugin','getMarkers','format','containsItem','rejected','markerReady','elementToElement','authorName','containsPosition','subType','enqueueChange','formatBlock','position','hasComments','removeComment','$marker','chain','addComment','LEAVE','removeClass','fetchCommentThread','attribute:join','createRangeIn','move','error-saving-suggestion-data-suggestion-discarded','_updateSuggestionData','ck-suggestion-marker-formatBlock','change:_saved','suggestion:','isDocumentOperation','_getMarkerAnnouncementText','getSuggestion','getAncestors','_refreshSuggestionsChain','47929260MslPoX','_setSuggestionData','multi','warn','markers','after','createRange','_SUGGESTION_ANNOUNCEMENT','$elementName','collaboration.channelId','change:data','includes','reconvertMarker','commandName','insertion:','before','fromCharCode','substring','formatBlock:chain','markInlineFormat','selection','_defaultCallbacks','refresh','newRange','isBefore','external:','5627468ggdqxI','_cutOutSuggestionMarker','formatBlock:discard','discardSuggestion','getShiftedBy','oldValue','getCommentThread','_removeSuggestion','suggestionLoaded','containsRange','addMarker:suggestion','ck-suggestion-marker-formatInline','track-changes-suggestion-not-found','authoredAt','formatInline:','for','getMultiRangeId','markMultiRangeInsertion','fire','data-suggestion','pluginName','getNearestSelectionRange','config','_commentsRepository','_suggestionFactory','parent','howMany','insertion:chain','consume','element','dataToMarker','options','createSelection','containerElement','deleteContent','comments','consumable','getDifference','define','getWalker','isIntersecting','_getAttributeKey','_adapter','$text','rethrowUnexpectedError','elementStart','isAtEnd','isPremiumPlugin','_reduceExistingSuggestions','end','formatGroupId','getRanges','isArray','deletion:accept','meta','_enabledCommands','isLocal','suggestionUnloaded','from','forEach','bindElementToMarker','4346740vmyeoR','getCustomProperty','createRangeOn','listenTo','always','attributes','newValue','stopListening','isSelectable','pop','creator','FORMATTING','resolve','catch','acceptSelectedSuggestions','suggestionChanged','discardAllSuggestions','_joinSuggestions','Creating\x20a\x20suggestion\x20for\x20attribute\x20with\x20too\x20long\x20attribute\x20key.\x20This\x20may\x20lead\x20to\x20errors.\x20Change\x20the\x20attribute\x20key\x20to\x20a\x20value\x20shorter\x20than\x2037\x20characters.','filter','commands','1186296BaUDMw','tablePasteChainId','addRange','deletion:join','isOwn','getLastMatchingPosition','forward','getFirstRange','upcast','_recordAttributeSuggestions','document','toJSON','_refreshAttributeSuggestionsChain','markerNameToElements','markAttributeChange','commentThread','$textProxy','_setSuggestionRange','isInsideObject','batch','addHighlight','track-changes-adapter-missing-getsuggestion','model','elementEnd','removeMarkers','widget','removed','href','attribute:','map','descriptionFactory','markMultiRangeDeletion','isIntersectingWithRange','createElement','_joinWithAdjacentSuggestions','toViewElement','some','find','delete','rootName','accept','addCommentThread','insertion:join','applyOperation','afterInit','return','adapter','range','ck-suggestion-marker-','stringify','length','startsWith','registerCustomCallback','1152300NTAUio','isMultiRange','_onDiscard','$graveyard','_editor','documentSelection','head','remove','showSuggestionHighlights','enableDefaultAttributesIntegration','getRange','unshift','enableCommand','TrackChangesEditing','attribute:discard','formatInline','825966kylakV','conversion','addMarker','default','insertContent','_customCallbacks','author','4fvfhyo','execute','suggestion:attribute:','multipleBlocks','ck-suggestion-marker--active','oldRange','init','attributeOldValue','addMarker:suggestion:attribute','_mergeNestedSuggestions','addSuggestion','notReady','highest','requires','getIntersection','set','previous','data','_processAttributeChanges','insertion:accept','markerToHighlight','setTo','size','discard','formatInline:accept','156MuxYwF','editor','_breakSuggestionMarker','formatInline:chain','createPositionAfter','formatBlock:accept','setSelection','detach','update:suggestion','addClass','_addThreadToSuggestion','getItems','isObject','isBlock','item','addSuggestionData','high','type'];_0x5a8a=function(){return _0x188592;};return _0x5a8a();}function Ut(_0x14feac){const _0x5653e4=_0x4b63b3;return _0x14feac[_0x5653e4(0x24c)][_0x5653e4(0x234)]==_0x14feac[_0x5653e4(0x138)][_0x5653e4(0x199)]&&_0x14feac[_0x5653e4(0x24c)][_0x5653e4(0x1c6)];}function Vt(_0x357a36,_0x1f12f5,_0x3a24be,_0x53ee19){const _0x33b255=_0x4b63b3,_0x3a8bdd=_0x41347b=>!_0x41347b[_0x33b255(0x12b)]['is'](_0x33b255(0x27d))&&!_0x53ee19[_0x33b255(0x129)](_0x41347b[_0x33b255(0x12b)]),_0x50799f=_0x357a36[_0x33b255(0x138)][_0x33b255(0x272)](_0x3a8bdd),_0x30ab4d=_0x357a36[_0x33b255(0x24c)][_0x33b255(0x272)](_0x3a8bdd,{'direction':_0x33b255(0x150)});return(!_0x357a36[_0x33b255(0x138)][_0x33b255(0x1b8)](_0x50799f)||!_0x357a36[_0x33b255(0x24c)][_0x33b255(0x1b8)](_0x30ab4d))&&(_0x50799f[_0x33b255(0x219)](_0x30ab4d)?_0x3a24be[_0x33b255(0x190)](_0x1f12f5,{'range':_0x3a24be[_0x33b255(0x207)](_0x50799f,_0x30ab4d)}):_0x3a24be[_0x33b255(0x194)](_0x1f12f5),!0x0);}function Pt(_0x47085e){return _0x3f084b(_0x47085e);}function Gt(_0x94f92c){const _0x2d5a2e=_0x4b63b3,_0x23efe8=_0x94f92c[_0x2d5a2e(0x138)][_0x2d5a2e(0x199)];return _0x23efe8&&_0x23efe8['is'](_0x2d5a2e(0x238));}function Ft(_0x592d3b,_0x155663){const _0x1880c9=_0x4b63b3;return null==_0x592d3b[_0x1880c9(0x24c)][_0x1880c9(0x1d8)]&&_0x592d3b[_0x1880c9(0x24c)][_0x1880c9(0x234)]==_0x592d3b[_0x1880c9(0x138)][_0x1880c9(0x199)]?Lt(_0x592d3b[_0x1880c9(0x138)][_0x1880c9(0x199)],_0x155663):_0x592d3b;}function Lt(_0x158c55,_0xd7fa20){const _0x3b24a2=_0x4b63b3,_0x35fc71=_0xd7fa20[_0x3b24a2(0x176)][_0x3b24a2(0x129)](_0x158c55)||_0xd7fa20[_0x3b24a2(0x176)][_0x3b24a2(0x260)](_0x158c55);return _0xd7fa20[_0x3b24a2(0x207)](_0xd7fa20[_0x3b24a2(0x1d2)](_0x158c55,_0x3b24a2(0x210)),_0x35fc71?_0xd7fa20[_0x3b24a2(0x121)](_0x158c55):_0xd7fa20[_0x3b24a2(0x1d2)](_0x158c55,_0x3b24a2(0x24c)));}function Jt(_0x1a09d3,_0x3071f9,_0x219b6f,_0x476e3b,_0x20c7d3){const _0x1dc969=_0x4b63b3;if(_0x1a09d3[_0x1dc969(0x139)])return!0x1;if(!Ht(_0x1a09d3,_0x3071f9))return!0x1;if(_0x219b6f[_0x1dc969(0x24c)][_0x1dc969(0x1b8)](_0x476e3b[_0x1dc969(0x138)]))return!0x0;if(_0x1a09d3[_0x1dc969(0x12e)]!=_0x3071f9[_0x1dc969(0x12e)])return!0x1;if(!_0x219b6f[_0x1dc969(0x24c)][_0x1dc969(0x187)](_0x476e3b[_0x1dc969(0x138)]))return!0x1;const _0x3faa01=_0x20c7d3[_0x1dc969(0x207)](_0x219b6f[_0x1dc969(0x24c)],_0x476e3b[_0x1dc969(0x138)])[_0x1dc969(0x242)]();for(const _0x1d4923 of _0x3faa01)if([_0x1dc969(0x248),_0x1dc969(0xcf)][_0x1dc969(0x20c)](_0x1d4923[_0x1dc969(0x12e)])&&_0x20c7d3[_0x1dc969(0x176)][_0x1dc969(0x1b1)](_0x1d4923[_0x1dc969(0x12b)]))return!0x1;return!0x0;}function Ht(_0x25ba37,_0x11c12a){const _0x1486f2=_0x4b63b3;if(!_0x25ba37[_0x1486f2(0x147)]||!_0x11c12a[_0x1486f2(0x147)])return!0x1;const _0x16d49f=new Set(Object[_0x1486f2(0x196)](_0x25ba37[_0x1486f2(0x25d)])),_0x177d55=new Set(Object[_0x1486f2(0x196)](_0x11c12a[_0x1486f2(0x25d)]));if(_0x16d49f[_0x1486f2(0xde)](_0x1486f2(0x1cf)),_0x177d55[_0x1486f2(0xde)](_0x1486f2(0x1cf)),0x0==_0x16d49f[_0x1486f2(0x11a)]&&0x0==_0x177d55[_0x1486f2(0x11a)])return!0x0;if(_0x16d49f[_0x1486f2(0x11a)]!=_0x177d55[_0x1486f2(0x11a)])return!0x1;const _0xc5916b={..._0x25ba37[_0x1486f2(0x25d)]},_0x4ebcfe={..._0x11c12a[_0x1486f2(0x25d)]};return delete _0xc5916b[_0x1486f2(0x1cf)],delete _0x4ebcfe[_0x1486f2(0x1cf)],JSON[_0x1486f2(0xe9)](_0xc5916b)==JSON[_0x1486f2(0xe9)](_0x4ebcfe);}function qt(_0xb9cb09,_0x823921){const _0x224eae=_0x4b63b3,_0x4f7e54=zt(_0xb9cb09[_0x224eae(0x25d)]),_0x504f8f=zt(_0x823921);if(!_0xb9cb09[_0x224eae(0x147)])return!0x1;for(const _0x3eea33 of Object[_0x224eae(0x196)](_0x504f8f))if(!_0x4e76ff(_0x4f7e54[_0x3eea33],_0x504f8f[_0x3eea33]))return!0x1;return!0x0;}function zt(_0x31c086){const _0x53cc2d=_0x4b63b3,_0x4d4629=Object[_0x53cc2d(0x158)]({},_0x31c086);return delete _0x4d4629[_0x53cc2d(0x149)],delete _0x4d4629[_0x53cc2d(0x26e)],_0x4d4629;}
@@ -0,0 +1,46 @@
1
+ /**
2
+ * @license Copyright (c) 2003-2024, CKSource Holding sp. z o.o. All rights reserved.
3
+ * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
4
+ */
5
+ /**
6
+ * @module track-changes/trackchangesui
7
+ */
8
+ import { Plugin, type Editor } from 'ckeditor5/src/core.js';
9
+ import { Users } from 'ckeditor5-collaboration/src/collaboration-core.js';
10
+ import TrackChangesEditing from './trackchangesediting.js';
11
+ /**
12
+ * Provides UI for track changes plugin.
13
+ *
14
+ * This plugin displays {@link module:track-changes/suggestion~Suggestion suggestions} as a
15
+ * {@link module:comments/annotations/annotations~Annotations}.
16
+ */
17
+ export default class TrackChangesUI extends Plugin {
18
+ /**
19
+ * @inheritDoc
20
+ */
21
+ static get requires(): readonly [typeof TrackChangesEditing, typeof Users, "CommentsRepository", "Annotations", "EditorAnnotations"];
22
+ /**
23
+ * @inheritDoc
24
+ */
25
+ static get pluginName(): "TrackChangesUI";
26
+ /**
27
+ * @inheritDoc
28
+ */
29
+ static get isOfficialPlugin(): true;
30
+ /**
31
+ * @inheritDoc
32
+ */
33
+ static get isPremiumPlugin(): true;
34
+ /**
35
+ * @inheritDoc
36
+ */
37
+ constructor(editor: Editor);
38
+ /**
39
+ * @inheritDoc
40
+ */
41
+ init(): void;
42
+ /**
43
+ * @inheritDoc
44
+ */
45
+ destroy(): void;
46
+ }
@@ -0,0 +1,23 @@
1
+ /*
2
+ * Copyright (c) 2003-2024, CKSource Holding sp. z o.o. All rights reserved.
3
+ *
4
+ *
5
+ *
6
+ *
7
+ * +---------------------------------------------------------------------------------+
8
+ * | |
9
+ * | Hello stranger! |
10
+ * | |
11
+ * | |
12
+ * | What you're currently looking at is the source code of a legally protected, |
13
+ * | proprietary software. Any attempts to deobfuscate / disassemble this code |
14
+ * | are forbidden and will result in legal consequences. |
15
+ * | |
16
+ * | |
17
+ * +---------------------------------------------------------------------------------+
18
+ *
19
+ *
20
+ *
21
+ *
22
+ */
23
+ const _0x46a30d=_0x72d8;(function(_0x1f8ae0,_0x129909){const _0x3d0f63=_0x72d8,_0xd31992=_0x1f8ae0();while(!![]){try{const _0xd05020=parseInt(_0x3d0f63(0x286))/0x1+-parseInt(_0x3d0f63(0x223))/0x2+parseInt(_0x3d0f63(0x1f7))/0x3*(-parseInt(_0x3d0f63(0x229))/0x4)+parseInt(_0x3d0f63(0x269))/0x5*(parseInt(_0x3d0f63(0x210))/0x6)+-parseInt(_0x3d0f63(0x25e))/0x7+parseInt(_0x3d0f63(0x258))/0x8+-parseInt(_0x3d0f63(0x283))/0x9;if(_0xd05020===_0x129909)break;else _0xd31992['push'](_0xd31992['shift']());}catch(_0x43d43b){_0xd31992['push'](_0xd31992['shift']());}}}(_0x48ef,0xc03b3));import{Plugin as _0xf5628e}from'ckeditor5/src/core.js';import{Collection as _0x49d71a}from'ckeditor5/src/utils.js';import{addListToDropdown as _0x5a1a3e,createDropdown as _0x19a054,ListSeparatorView as _0x4af651,MenuBarMenuView as _0x46a70c,MenuBarMenuListView as _0x469d35,MenuBarMenuListItemView as _0x206f05,MenuBarMenuListItemButtonView as _0x533bad,SplitButtonView as _0x2b24f7,ViewModel as _0x2dfdbe}from'ckeditor5/src/ui.js';function _0x48ef(){const _0x10df81=['menuitem','_unbindEditors','696708hLyUEG','innerView','actionView','_handleControllerBuffer','_refreshActiveMarkers','menu','plugins','_handleSuggestionControllerDelayed','trackChangesLicenseKeyExpired','add','isPremiumPlugin','define','descriptionFactory','featureNotAllowed','acceptSelectedSuggestions','menuBar:trackChanges','comments.maxCommentsWhenCollapsed','items','EditorAnnotations','evaluationLimit','length','activeAnnotations','trackChangesLicenseKeyTrialLimit','some','comments.maxCommentCharsWhenCollapsed','SuggestionThreadView','requires','isOn','licenseKey','locale','config','delete','remove','trackChanges.disableComments','isMultiRange','menuitemcheckbox','filter','get','commandName','getJoined','bind','trackChanges','getMarkers','trackChangesLicenseKeyValid','registerAnnotation','_destroyController','escape','12165768XGAyHI','isOfficialPlugin','suggestionView','values','commands','lowest','9675708pnVRxf','_addUIComponentsToFactory','isInContent','change:activeAnnotations','destroy','domainLimit','comments.editorConfig','children','TrackChangesEditing','has','CommentsRepository','2455hsWiLB','getSuggestion','execute','fire','addComment','Accept\x20all\x20suggestions','Accept\x20all\x20selected\x20suggestions','source','SuggestionView','clear','editor','trackChangesLicenseKeyDevelopmentLimit','_updateController','mainView','Annotations','trackChangesLicenseKeyEvaluationLimit','comments','getByInnerView','value','size','pluginName','discardSelectedSuggestions','CommentView','trackChangesLicenseKeyDomainLimit','hasSuggestion','CommentsUI','2002005wMczgs','refreshSelectedViews','Discard\x20all\x20selected\x20suggestions','354316WGpczX','_bindAnnotationToEditors','TrackChangesUI','isDirty','stopListening','descriptionParts','trackChangesLicenseKeyNotAllowed','trackChangesLicenseKeyUsageLimit','buttonView','TrackChanges','getAllAdjacentSuggestions','previous','_showLicenseError','discardButton','Discard\x20all\x20suggestions','suggestion-','componentFactory','view','Track\x20changes','acceptButton','suggestionChanged','_createToolbarButton','developmentLimit','trackChanges.SuggestionView','set','discardAllSuggestions','createAnnotation','_disableComments','separator','_annotationViews','9vvFjuX','trackChangesLicenseKeyInvalid','commentsListView','addSourceCollector','_createMenuBarMenu','push','_suggestionToController','from','listenTo','toMany','init','trackChanges.SuggestionThreadView','change:previous','_initializeController','getRanges','arrowView','editing','button','invalid','activeMarkers','getFirstRange','isEnabled','comments.maxThreadTotalWeight','_licenseKeyCheckInterval','createCommentThreadController','19014FDkXTN','delegate','acceptAllSuggestions','usageLimit','unbind','getMarkerNames','getDescriptions','panelView','_viewToController','expired','keys','type','suggestionLoaded','focus','switchbutton','trialLimit','commentThread','head','createAnnotationView','1032834qlvKGf','model','suggestionUnloaded','reduce'];_0x48ef=function(){return _0x10df81;};return _0x48ef();}import{Users as _0x4cda37,getDateTimeFormatter as _0x4fda91,getAllMarkersDomElementsSorted as _0x20f5a6}from'ckeditor5-collaboration/src/collaboration-core.js';import _0x294696 from'./trackchangesediting.js';import _0x14be3e from'./ui/suggestioncontroller.js';function _0x72d8(_0xd4c59,_0x3cfa88){const _0x48ef3b=_0x48ef();return _0x72d8=function(_0x72d85b,_0x3ef4cb){_0x72d85b=_0x72d85b-0x1ee;let _0x144def=_0x48ef3b[_0x72d85b];return _0x144def;},_0x72d8(_0xd4c59,_0x3cfa88);}import _0x1cac11 from'./ui/view/suggestionthreadview.js';import _0x140d5a from'./ui/view/suggestionview.js';import{getTranslation as _0x5d1258}from'./utils/common-translations.js';import _0x544eef from'../theme/icons/track-changes.svg';export default class d extends _0xf5628e{static get[_0x46a30d(0x243)](){const _0x12804f=_0x46a30d;return[_0x294696,_0x4cda37,_0x12804f(0x268),_0x12804f(0x277),_0x12804f(0x23b)];}static get[_0x46a30d(0x27d)](){const _0x58dc74=_0x46a30d;return _0x58dc74(0x288);}static get[_0x46a30d(0x259)](){return!0x0;}static get[_0x46a30d(0x233)](){return!0x0;}constructor(_0x471dc2){const _0x312902=_0x46a30d;super(_0x471dc2),this[_0x312902(0x1fd)]=new Map(),this[_0x312902(0x218)]=new Map(),this[_0x312902(0x1f6)]=new Map(),this[_0x312902(0x22c)]=new Map();const _0x46865d=this[_0x312902(0x273)][_0x312902(0x247)];_0x46865d[_0x312902(0x234)](_0x312902(0x202),_0x1cac11),_0x46865d[_0x312902(0x234)](_0x312902(0x1f0),_0x140d5a),_0x46865d[_0x312902(0x234)](_0x312902(0x24a),!0x1),this[_0x312902(0x1f4)]=_0x46865d[_0x312902(0x24e)](_0x312902(0x24a));}[_0x46a30d(0x230)](_0x36231d,_0xfc5287){const _0xa18956=_0x46a30d;0x0===this[_0xa18956(0x22c)][_0xa18956(0x27c)]&&setTimeout(()=>{const _0x1496bf=_0xa18956;for(const [_0x564cb4,_0x599469]of this[_0x1496bf(0x22c)]){const _0x29ba24=this[_0x1496bf(0x1fd)][_0x1496bf(0x267)](_0x564cb4);_0x29ba24||_0x599469?_0x29ba24&&_0x599469&&this[_0x1496bf(0x256)](_0x564cb4):this[_0x1496bf(0x204)](_0x564cb4);}this[_0x1496bf(0x22c)][_0x1496bf(0x272)](),this[_0x1496bf(0x273)][_0x1496bf(0x22f)][_0x1496bf(0x24e)](_0x1496bf(0x23b))[_0x1496bf(0x284)](),this[_0x1496bf(0x22d)]();},0xa),this[_0xa18956(0x22c)][_0xa18956(0x1f1)](_0x36231d,_0xfc5287);}[_0x46a30d(0x201)](){const _0x431c38=_0x46a30d,_0x18793b=this[_0x431c38(0x273)],_0x271619=_0x18793b[_0x431c38(0x22f)][_0x431c38(0x24e)](_0x431c38(0x266)),_0x15c528=_0x18793b[_0x431c38(0x22f)][_0x431c38(0x24e)](_0x431c38(0x277)),_0x4a03c4=_0x18793b[_0x431c38(0x22f)][_0x431c38(0x24e)](_0x431c38(0x23b)),_0x345326=_0x18793b[_0x431c38(0x22f)][_0x431c38(0x24e)](_0x431c38(0x268));this[_0x431c38(0x25f)](),_0x4a03c4[_0x431c38(0x1fa)](()=>{const _0x49eedf=_0x431c38,_0x2183d4=[];for(const [_0xca171a,_0x2d5730]of Array[_0x49eedf(0x1fe)](this[_0x49eedf(0x1fd)])){const _0x9b2c26=_0xca171a[_0x49eedf(0x290)](),_0x3b786d=[];for(const _0x3ed035 of _0x9b2c26){if(!_0x3ed035[_0x49eedf(0x260)])continue;if(_0x3ed035[_0x49eedf(0x24b)]){_0x3b786d[_0x49eedf(0x1fc)](..._0x3ed035[_0x49eedf(0x205)]());continue;}const _0x2f509e=_0x3ed035[_0x49eedf(0x20b)]();if(_0x3b786d[_0x49eedf(0x23d)]>0x0){const _0x44eedb=_0x3b786d[0x0][_0x49eedf(0x250)](_0x2f509e);if(_0x44eedb){_0x3b786d[0x0]=_0x44eedb;continue;}}_0x3b786d[_0x49eedf(0x1fc)](_0x2f509e);}_0x2183d4[_0x49eedf(0x1fc)]([_0x2d5730[_0x49eedf(0x297)],_0x3b786d]);}return _0x2183d4;}),this[_0x431c38(0x1ff)](_0x271619,_0x431c38(0x21c),(_0x73163c,_0x5d0c47)=>{const _0x1bfb6b=_0x431c38;this[_0x1bfb6b(0x1ff)](_0x5d0c47,_0x1bfb6b(0x203),(_0xb639c8,_0x18c103,_0x391c2e,_0x4747d4)=>{const _0x1beda0=_0x1bfb6b;_0x5d0c47[_0x1beda0(0x260)]&&(null==_0x391c2e?(this[_0x1beda0(0x275)](_0x4747d4[_0x1beda0(0x221)]),this[_0x1beda0(0x230)](_0x5d0c47,!0x1)):(this[_0x1beda0(0x275)](_0x391c2e[_0x1beda0(0x221)]),null==_0x4747d4&&this[_0x1beda0(0x230)](_0x5d0c47,!0x0)));}),null!==_0x5d0c47[_0x1bfb6b(0x291)]?this[_0x1bfb6b(0x275)](_0x5d0c47[_0x1bfb6b(0x221)]):this[_0x1bfb6b(0x230)](_0x5d0c47,!0x1);}),this[_0x431c38(0x1ff)](_0x271619,_0x431c38(0x225),(_0x42be39,_0x12f8a6,_0xeb68d1)=>{const _0x531611=_0x431c38;this[_0x531611(0x28a)](_0x12f8a6,_0x531611(0x203)),this[_0x531611(0x22c)][_0x531611(0x248)](_0x12f8a6),this[_0x531611(0x1fd)][_0x531611(0x267)](_0x12f8a6)&&this[_0x531611(0x256)](_0x12f8a6),_0xeb68d1&&this[_0x531611(0x275)](_0xeb68d1[_0x531611(0x221)]);}),this[_0x431c38(0x1ff)](_0x271619,_0x431c38(0x29a),(_0x5435b7,_0x27a9a0)=>{const _0x20c1f5=_0x431c38;this[_0x20c1f5(0x275)](_0x27a9a0);}),this[_0x431c38(0x1ff)](_0x15c528,_0x431c38(0x261),()=>{const _0x436c3e=_0x431c38;this[_0x436c3e(0x22d)]();}),this[_0x431c38(0x1ff)](_0x345326,_0x431c38(0x26d),(_0x373e23,{threadId:_0x58c9c6,isFromAdapter:_0x3ce71e})=>{const _0x3074fc=_0x431c38;if(_0x3ce71e||!_0x271619[_0x3074fc(0x281)](_0x58c9c6))return;const _0x2d8f58=_0x271619[_0x3074fc(0x26a)](_0x58c9c6);this[_0x3074fc(0x1fd)][_0x3074fc(0x24e)](_0x2d8f58)[_0x3074fc(0x297)][_0x3074fc(0x1f9)][_0x3074fc(0x21d)](-0x1);},{'priority':_0x431c38(0x25d)}),this[_0x431c38(0x245)]=this[_0x431c38(0x273)][_0x431c38(0x247)][_0x431c38(0x24e)](_0x431c38(0x245));const _0x24e6d7=this[_0x431c38(0x273)];this[_0x431c38(0x20e)]=setInterval(()=>{const _0x3bfc13=_0x431c38;let _0x4f3c59;for(const _0x55c754 in _0x24e6d7){const _0x506869=_0x55c754,_0x160f95=_0x24e6d7[_0x506869];if(_0x3bfc13(0x254)==_0x160f95||_0x3bfc13(0x1f8)==_0x160f95||_0x3bfc13(0x231)==_0x160f95||_0x3bfc13(0x280)==_0x160f95||_0x3bfc13(0x28c)==_0x160f95||_0x3bfc13(0x278)==_0x160f95||_0x3bfc13(0x23f)==_0x160f95||_0x3bfc13(0x274)==_0x160f95||_0x3bfc13(0x28d)==_0x160f95){delete _0x24e6d7[_0x506869],_0x4f3c59=_0x160f95,clearInterval(this[_0x3bfc13(0x20e)]),this[_0x3bfc13(0x20e)]=void 0x0;break;}}_0x3bfc13(0x1f8)==_0x4f3c59&&_0x24e6d7[_0x3bfc13(0x292)](_0x3bfc13(0x209)),_0x3bfc13(0x231)==_0x4f3c59&&_0x24e6d7[_0x3bfc13(0x292)](_0x3bfc13(0x219)),_0x3bfc13(0x280)==_0x4f3c59&&_0x24e6d7[_0x3bfc13(0x292)](_0x3bfc13(0x263)),_0x3bfc13(0x28c)==_0x4f3c59&&_0x24e6d7[_0x3bfc13(0x292)](_0x3bfc13(0x236),_0x3bfc13(0x28f)),_0x3bfc13(0x278)==_0x4f3c59&&_0x24e6d7[_0x3bfc13(0x292)](_0x3bfc13(0x23c)),_0x3bfc13(0x23f)==_0x4f3c59&&_0x24e6d7[_0x3bfc13(0x292)](_0x3bfc13(0x21f)),_0x3bfc13(0x274)==_0x4f3c59&&_0x24e6d7[_0x3bfc13(0x292)](_0x3bfc13(0x1ef)),_0x3bfc13(0x28d)==_0x4f3c59&&_0x24e6d7[_0x3bfc13(0x292)](_0x3bfc13(0x213));},0x3e8);}[_0x46a30d(0x22d)](){const _0x2992cf=_0x46a30d,_0x56240b=this[_0x2992cf(0x273)][_0x2992cf(0x22f)][_0x2992cf(0x24e)](_0x2992cf(0x277)),_0x351512=this[_0x2992cf(0x273)][_0x2992cf(0x22f)][_0x2992cf(0x24e)](_0x2992cf(0x266)),_0x5c64cc=Array[_0x2992cf(0x1fe)](_0x56240b[_0x2992cf(0x23e)],_0x28d99b=>_0x28d99b[_0x2992cf(0x22a)])[_0x2992cf(0x24d)](_0x321487=>this[_0x2992cf(0x218)][_0x2992cf(0x267)](_0x321487)),_0x1df6c2=[];for(const _0x316f43 of _0x5c64cc){const _0xceda96=this[_0x2992cf(0x218)][_0x2992cf(0x24e)](_0x316f43)[_0x2992cf(0x224)][_0x2992cf(0x290)]();_0x1df6c2[_0x2992cf(0x1fc)](..._0xceda96[_0x2992cf(0x226)]((_0x3b7ce7,_0x38a601)=>[..._0x3b7ce7,..._0x38a601[_0x2992cf(0x215)]()],[]));}_0x351512[_0x2992cf(0x20a)]=_0x1df6c2;}[_0x46a30d(0x25f)](){const _0x4b1c37=_0x46a30d,_0x1d7ede=this[_0x4b1c37(0x273)],_0xfbaaec=_0x1d7ede[_0x4b1c37(0x246)],_0x3c4810=_0x5d1258(_0xfbaaec,_0x4b1c37(0x298)),_0x1440fb=new _0x49d71a([{'type':_0x4b1c37(0x21e),'model':new _0x2dfdbe({'withText':!0x0,'isToggleable':!0x0,'label':_0x3c4810,'commandName':_0x4b1c37(0x252),'role':_0x4b1c37(0x24c)})},{'type':_0x4b1c37(0x1f5)},{'type':_0x4b1c37(0x208),'model':new _0x2dfdbe({'withText':!0x0,'label':_0x5d1258(_0xfbaaec,_0x4b1c37(0x26e)),'commandName':_0x4b1c37(0x212),'role':_0x4b1c37(0x227)})},{'type':_0x4b1c37(0x208),'model':new _0x2dfdbe({'withText':!0x0,'label':_0x5d1258(_0xfbaaec,_0x4b1c37(0x26f)),'commandName':_0x4b1c37(0x237),'role':_0x4b1c37(0x227)})},{'type':_0x4b1c37(0x208),'model':new _0x2dfdbe({'withText':!0x0,'label':_0x5d1258(_0xfbaaec,_0x4b1c37(0x294)),'commandName':_0x4b1c37(0x1f2),'role':_0x4b1c37(0x227)})},{'type':_0x4b1c37(0x208),'model':new _0x2dfdbe({'withText':!0x0,'label':_0x5d1258(_0xfbaaec,_0x4b1c37(0x285)),'commandName':_0x4b1c37(0x27e),'role':_0x4b1c37(0x227)})}]);for(const _0x1563ee of _0x1440fb)if(pe(_0x1563ee)){const _0x4c839c=_0x1d7ede[_0x4b1c37(0x25c)][_0x4b1c37(0x24e)](_0x1563ee[_0x4b1c37(0x224)][_0x4b1c37(0x24f)]);_0x1563ee[_0x4b1c37(0x224)][_0x4b1c37(0x251)](_0x4b1c37(0x244),_0x4b1c37(0x20c))['to'](_0x4c839c,_0x4b1c37(0x27b),_0x4b1c37(0x20c));}_0x1d7ede['ui'][_0x4b1c37(0x296)][_0x4b1c37(0x232)](_0x4b1c37(0x252),_0x17a8e6=>this[_0x4b1c37(0x1ee)](_0x17a8e6,_0x1440fb,_0x3c4810)),_0x1d7ede['ui'][_0x4b1c37(0x296)][_0x4b1c37(0x232)](_0x4b1c37(0x238),_0x53088e=>this[_0x4b1c37(0x1fb)](_0x53088e,_0x1440fb,_0x3c4810));}[_0x46a30d(0x1ee)](_0xc4c479,_0x4b13f3,_0x323e66){const _0x29b072=_0x46a30d,_0x1e4702=_0x19a054(_0xc4c479,_0x2b24f7),_0x5e6868=this[_0x29b072(0x273)][_0x29b072(0x25c)][_0x29b072(0x24e)](_0x29b072(0x252));_0x1e4702[_0x29b072(0x28e)][_0x29b072(0x1f1)]({'tooltip':_0x323e66,'label':_0x323e66,'icon':_0x544eef}),_0x1e4702[_0x29b072(0x28e)][_0x29b072(0x251)](_0x29b072(0x244))['to'](_0x5e6868,_0x29b072(0x27b)),_0x1e4702[_0x29b072(0x28e)]['on'](_0x29b072(0x26b),()=>{const _0x4552ef=_0x29b072;_0x5e6868[_0x4552ef(0x26b)](),this[_0x4552ef(0x273)][_0x4552ef(0x207)][_0x4552ef(0x297)][_0x4552ef(0x21d)]();}),_0x5a1a3e(_0x1e4702,_0x4b13f3,{'role':_0x29b072(0x22e)});const _0x25053f=[];for(const _0x53fc5f of _0x4b13f3)pe(_0x53fc5f)&&_0x25053f[_0x29b072(0x1fc)](this[_0x29b072(0x273)][_0x29b072(0x25c)][_0x29b072(0x24e)](_0x53fc5f[_0x29b072(0x224)][_0x29b072(0x24f)]));const _0xf1ab77=_0x1e4702[_0x29b072(0x28e)];return _0xf1ab77[_0x29b072(0x22b)][_0x29b072(0x214)](_0x29b072(0x20c)),_0xf1ab77[_0x29b072(0x206)][_0x29b072(0x214)](_0x29b072(0x20c)),_0xf1ab77[_0x29b072(0x22b)][_0x29b072(0x251)](_0x29b072(0x20c))['to'](_0x5e6868,_0x29b072(0x20c)),_0xf1ab77[_0x29b072(0x206)][_0x29b072(0x251)](_0x29b072(0x20c))[_0x29b072(0x200)](_0x25053f,_0x29b072(0x20c),(..._0x32f625)=>_0x32f625[_0x29b072(0x240)](_0x785e12=>_0x785e12)),_0x1e4702['on'](_0x29b072(0x26b),_0x331f39=>{const _0x2eb6f2=_0x29b072;this[_0x2eb6f2(0x273)][_0x2eb6f2(0x26b)](_0x331f39[_0x2eb6f2(0x270)][_0x2eb6f2(0x24f)]),this[_0x2eb6f2(0x273)][_0x2eb6f2(0x207)][_0x2eb6f2(0x297)][_0x2eb6f2(0x21d)]();}),_0x1e4702;}[_0x46a30d(0x1fb)](_0x477278,_0x2b936a,_0x3d4a5b){const _0x27f988=_0x46a30d,_0x26a049=new _0x46a70c(_0x477278),_0x4bb5be=this[_0x27f988(0x273)][_0x27f988(0x25c)][_0x27f988(0x24e)](_0x27f988(0x252));_0x26a049[_0x27f988(0x28e)][_0x27f988(0x1f1)]({'label':_0x3d4a5b,'icon':_0x544eef});const _0x988fe3=new _0x469d35(_0x477278);for(const _0x129a09 of _0x2b936a){if(_0x27f988(0x1f5)==_0x129a09[_0x27f988(0x21b)]){_0x988fe3[_0x27f988(0x23a)][_0x27f988(0x232)](new _0x4af651(_0x477278));continue;}const _0x5abb7d=new _0x206f05(_0x477278,_0x26a049),_0x10e673=new _0x533bad(_0x477278),_0x58fa83=_0x129a09[_0x27f988(0x224)];_0x10e673[_0x27f988(0x251)](...Object[_0x27f988(0x21a)](_0x58fa83))['to'](_0x58fa83),_0x10e673[_0x27f988(0x211)](_0x27f988(0x26b))['to'](_0x26a049),_0x10e673['on'](_0x27f988(0x26b),()=>{const _0x3a3422=_0x27f988;this[_0x3a3422(0x273)][_0x3a3422(0x26b)](_0x58fa83[_0x3a3422(0x24f)]),this[_0x3a3422(0x273)][_0x3a3422(0x207)][_0x3a3422(0x297)][_0x3a3422(0x21d)]();}),_0x5abb7d[_0x27f988(0x265)][_0x27f988(0x232)](_0x10e673),_0x988fe3[_0x27f988(0x23a)][_0x27f988(0x232)](_0x5abb7d);}return _0x26a049[_0x27f988(0x251)](_0x27f988(0x20c))['to'](_0x4bb5be,_0x27f988(0x20c)),_0x26a049[_0x27f988(0x217)][_0x27f988(0x265)][_0x27f988(0x232)](_0x988fe3),_0x26a049;}[_0x46a30d(0x204)](_0x1fc092){const _0x188bb6=_0x46a30d,_0x3bd6eb=this[_0x188bb6(0x273)],_0x51383e=_0x3bd6eb[_0x188bb6(0x247)],_0x3f590b=_0x3bd6eb[_0x188bb6(0x22f)][_0x188bb6(0x24e)](_0x188bb6(0x277)),_0x5af0a3=_0x3bd6eb[_0x188bb6(0x22f)][_0x188bb6(0x24e)](_0x188bb6(0x268)),_0x3d6c78=_0x3bd6eb[_0x188bb6(0x22f)][_0x188bb6(0x24e)](_0x188bb6(0x23b)),_0x4543b1=_0x3bd6eb[_0x188bb6(0x22f)][_0x188bb6(0x24e)](_0x4cda37)['me'],_0x57ab0c=_0x51383e[_0x188bb6(0x24e)](_0x188bb6(0x252))[_0x188bb6(0x242)],_0x56b216=_0x51383e[_0x188bb6(0x24e)](_0x188bb6(0x252))[_0x188bb6(0x271)],{CommentsListView:_0x5c6ca6,CommentThreadInputView:_0xd0dd3d}=_0x3bd6eb[_0x188bb6(0x22f)][_0x188bb6(0x24e)](_0x188bb6(0x282));let _0x3afb55,_0x484ec7,_0x4dfec0;this[_0x188bb6(0x1f6)][_0x188bb6(0x267)](_0x1fc092['id'])?(_0x484ec7=this[_0x188bb6(0x1f6)][_0x188bb6(0x24e)](_0x1fc092['id']),_0x3afb55=_0x484ec7[_0x188bb6(0x276)]):(_0x3afb55=new _0x57ab0c(_0x3bd6eb[_0x188bb6(0x246)],_0x1fc092,_0x4543b1,{'disableComments':this[_0x188bb6(0x1f4)],'editorConfig':_0x51383e[_0x188bb6(0x24e)](_0x188bb6(0x264)),'maxCommentsWhenCollapsed':_0x51383e[_0x188bb6(0x24e)](_0x188bb6(0x239)),'maxThreadTotalWeight':_0x51383e[_0x188bb6(0x24e)](_0x188bb6(0x20d)),'maxCommentCharsWhenCollapsed':_0x51383e[_0x188bb6(0x24e)](_0x188bb6(0x241)),'formatDateTime':_0x4fda91(_0x51383e[_0x188bb6(0x24e)](_0x188bb6(0x246))),'CommentView':_0x51383e[_0x188bb6(0x24e)](_0x188bb6(0x279))[_0x188bb6(0x27f)],'CommentsListView':_0x5c6ca6,'CommentThreadInputView':_0xd0dd3d,'SuggestionView':_0x56b216}),_0x3afb55[_0x188bb6(0x25a)][_0x188bb6(0x299)]['on'](_0x188bb6(0x26b),()=>{const _0x50c791=_0x188bb6;_0x3bd6eb[_0x50c791(0x207)][_0x50c791(0x297)][_0x50c791(0x21d)]();}),_0x3afb55[_0x188bb6(0x25a)][_0x188bb6(0x293)]['on'](_0x188bb6(0x26b),()=>{const _0x3a8f6d=_0x188bb6;_0x3bd6eb[_0x3a8f6d(0x207)][_0x3a8f6d(0x297)][_0x3a8f6d(0x21d)]();}),_0x484ec7=_0x3f590b[_0x188bb6(0x222)](this[_0x188bb6(0x273)][_0x188bb6(0x246)],_0x3afb55),_0x484ec7[_0x188bb6(0x251)](_0x188bb6(0x289))['to'](_0x3afb55,_0x188bb6(0x289)),_0x484ec7[_0x188bb6(0x251)](_0x188bb6(0x23d))['to'](_0x3afb55),_0x484ec7[_0x188bb6(0x251)](_0x188bb6(0x21b))['to'](_0x3afb55,_0x188bb6(0x21b),_0x4e3bb4=>_0x188bb6(0x295)+_0x4e3bb4),_0x3afb55['on'](_0x188bb6(0x257),()=>{const _0x146157=_0x188bb6;_0x4dfec0[_0x146157(0x26c)](_0x146157(0x257));}),this[_0x188bb6(0x1f6)][_0x188bb6(0x1f1)](_0x1fc092['id'],_0x484ec7));const _0x21d37a=_0x5af0a3[_0x188bb6(0x20f)](_0x1fc092[_0x188bb6(0x220)],_0x3afb55),_0x21aeb2=new _0x14be3e(_0x3bd6eb,_0x1fc092,_0x3afb55,_0x21d37a),_0x38f2fc=_0x1fc092[_0x188bb6(0x290)]()[_0x188bb6(0x24d)](_0x358a5b=>_0x358a5b[_0x188bb6(0x260)]);_0x3afb55[_0x188bb6(0x28b)]=_0x3bd6eb[_0x188bb6(0x22f)][_0x188bb6(0x24e)](_0x188bb6(0x266))[_0x188bb6(0x235)][_0x188bb6(0x216)](_0x38f2fc),this[_0x188bb6(0x1fd)][_0x188bb6(0x1f1)](_0x1fc092,_0x21aeb2),this[_0x188bb6(0x218)][_0x188bb6(0x1f1)](_0x3afb55,_0x21aeb2),_0x4dfec0=_0x3f590b[_0x188bb6(0x1f3)]({'view':_0x484ec7,'target':()=>{const _0x54ce20=_0x188bb6,_0xc5a5dd=[],_0xba57dc=_0x1fc092[_0x54ce20(0x290)]()[_0x54ce20(0x24d)](_0x3f036c=>_0x3f036c[_0x54ce20(0x260)]);for(const _0x1763a6 of _0xba57dc)_0xc5a5dd[_0x54ce20(0x1fc)](..._0x1763a6[_0x54ce20(0x253)]());return _0x20f5a6(_0x3bd6eb[_0x54ce20(0x207)],_0xc5a5dd);},'type':()=>_0x188bb6(0x295)+_0x21aeb2[_0x188bb6(0x297)][_0x188bb6(0x21b)]}),_0x5af0a3[_0x188bb6(0x287)](_0x3afb55,_0x4dfec0),_0x3f590b[_0x188bb6(0x232)](_0x4dfec0),_0x3d6c78[_0x188bb6(0x255)](_0x4dfec0);}[_0x46a30d(0x256)](_0x1b3c34){const _0x37077d=_0x46a30d,_0x1807e3=this[_0x37077d(0x273)][_0x37077d(0x22f)][_0x37077d(0x24e)](_0x37077d(0x268)),_0x57d17c=this[_0x37077d(0x273)][_0x37077d(0x22f)][_0x37077d(0x24e)](_0x37077d(0x277)),_0x5793b1=this[_0x37077d(0x1fd)][_0x37077d(0x24e)](_0x1b3c34),_0x2fc175=_0x5793b1[_0x37077d(0x297)],_0x2a1725=_0x57d17c[_0x37077d(0x27a)](_0x2fc175);_0x1807e3[_0x37077d(0x228)](_0x2fc175),_0x2a1725&&_0x57d17c[_0x37077d(0x249)](_0x2a1725),this[_0x37077d(0x1fd)][_0x37077d(0x248)](_0x1b3c34),this[_0x37077d(0x218)][_0x37077d(0x248)](_0x2fc175),_0x5793b1[_0x37077d(0x262)]();}[_0x46a30d(0x275)](_0x520d67){const _0x473522=_0x46a30d;if(!_0x520d67[_0x473522(0x260)]||!this[_0x473522(0x1fd)][_0x473522(0x267)](_0x520d67))return;const _0x2a5f4e=this[_0x473522(0x273)][_0x473522(0x22f)][_0x473522(0x24e)](_0x473522(0x266)),_0x3bb6a9=this[_0x473522(0x1fd)][_0x473522(0x24e)](_0x520d67),_0x522365=_0x520d67[_0x473522(0x290)]();_0x3bb6a9[_0x473522(0x297)][_0x473522(0x28b)]=_0x2a5f4e[_0x473522(0x235)][_0x473522(0x216)](_0x522365);}[_0x46a30d(0x262)](){const _0x58bca6=_0x46a30d;for(const _0x428246 of this[_0x58bca6(0x1fd)][_0x58bca6(0x21a)]())this[_0x58bca6(0x256)](_0x428246);for(const _0x183197 of this[_0x58bca6(0x1f6)][_0x58bca6(0x25b)]())_0x183197[_0x58bca6(0x276)][_0x58bca6(0x262)]();super[_0x58bca6(0x262)](),this[_0x58bca6(0x20e)]&&clearInterval(this[_0x58bca6(0x20e)]);}}function pe(_0x51d6a0){const _0x9762f0=_0x46a30d;return _0x9762f0(0x224)in _0x51d6a0;}
@@ -0,0 +1,37 @@
1
+ /**
2
+ * @license Copyright (c) 2003-2024, CKSource Holding sp. z o.o. All rights reserved.
3
+ * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
4
+ */
5
+ import type { Editor } from 'ckeditor5/src/core.js';
6
+ import type Suggestion from '../suggestion.js';
7
+ import type { default as BaseSuggestionThreadView } from './view/basesuggestionthreadview.js';
8
+ import type { CommentThreadController } from '@ckeditor/ckeditor5-comments';
9
+ declare const SuggestionController_base: {
10
+ new (): import("ckeditor5/src/utils.js").Observable;
11
+ prototype: import("ckeditor5/src/utils.js").Observable;
12
+ };
13
+ /**
14
+ * A controller for a suggestion.
15
+ *
16
+ * It takes a suggestion thread view, listens to events fired by that view and based on them performs actions
17
+ * on the provided suggestion model.
18
+ */
19
+ export default class SuggestionController extends /* #__PURE__ -- @preserve */ SuggestionController_base {
20
+ model: Suggestion;
21
+ view: BaseSuggestionThreadView;
22
+ commentThreadController: CommentThreadController;
23
+ constructor(editor: Editor, model: Suggestion, view: BaseSuggestionThreadView, commentThreadController: CommentThreadController);
24
+ /**
25
+ * Accepts the suggestion that belongs to this controller.
26
+ */
27
+ acceptSuggestion(): void;
28
+ /**
29
+ * Discards the suggestion that belongs to this controller.
30
+ */
31
+ discardSuggestion(): void;
32
+ /**
33
+ * Destroys `SuggestionController` instance.
34
+ */
35
+ destroy(): void;
36
+ }
37
+ export {};
@@ -0,0 +1,24 @@
1
+ /*
2
+ * Copyright (c) 2003-2024, CKSource Holding sp. z o.o. All rights reserved.
3
+ *
4
+ *
5
+ *
6
+ *
7
+ * +---------------------------------------------------------------------------------+
8
+ * | |
9
+ * | Hello stranger! |
10
+ * | |
11
+ * | |
12
+ * | What you're currently looking at is the source code of a legally protected, |
13
+ * | proprietary software. Any attempts to deobfuscate / disassemble this code |
14
+ * | are forbidden and will result in legal consequences. |
15
+ * | |
16
+ * | |
17
+ * +---------------------------------------------------------------------------------+
18
+ *
19
+ *
20
+ *
21
+ *
22
+ */
23
+ const _0x1941c2=_0x10af;(function(_0x20673f,_0x27915a){const _0x3a176b=_0x10af,_0x419146=_0x20673f();while(!![]){try{const _0x178d49=parseInt(_0x3a176b(0xe3))/0x1+-parseInt(_0x3a176b(0xe9))/0x2*(parseInt(_0x3a176b(0xde))/0x3)+-parseInt(_0x3a176b(0xf3))/0x4+parseInt(_0x3a176b(0xdf))/0x5+-parseInt(_0x3a176b(0xf7))/0x6+-parseInt(_0x3a176b(0xf4))/0x7*(-parseInt(_0x3a176b(0xe0))/0x8)+parseInt(_0x3a176b(0xd6))/0x9*(parseInt(_0x3a176b(0xee))/0xa);if(_0x178d49===_0x27915a)break;else _0x419146['push'](_0x419146['shift']());}catch(_0x576eb1){_0x419146['push'](_0x419146['shift']());}}}(_0x2f62,0x8033c));function _0x10af(_0x297ada,_0x1f5652){const _0x2f6218=_0x2f62();return _0x10af=function(_0x10af09,_0x1322e5){_0x10af09=_0x10af09-0xd5;let _0x5a713f=_0x2f6218[_0x10af09];return _0x5a713f;},_0x10af(_0x297ada,_0x1f5652);}import{ObservableMixin as _0x524f10}from'ckeditor5/src/utils.js';function _0x2f62(){const _0x51fda3=['change:isDirty','canAccept','model','view','79594FbNKaJ','remove','canDiscard','listenTo','unbind','29590SyNDjN','locale','plugins','commentThreadController','canEditAt','2612016FqqVjk','7WPWNcx','_setPendingAction','isEnabled','688074BCbWJV','destroy','_editor','discardSuggestion','acceptSuggestion','_pendingAction','stopListening','PENDING_ACTION_SUGGESTION','isDirty','1044XlYDwa','_acceptCommand','execute','_discardCommand','commands','PendingActions','_removePendingAction','get','57kgaRLe','2454985dMACmU','4996184imezPL','add','bind','590178dsnrQE','getRanges'];_0x2f62=function(){return _0x51fda3;};return _0x2f62();}import{getTranslation as _0x36bc5a}from'../utils/common-translations.js';export default class ge extends/* #__PURE__ -- @preserve */
24
+ _0x524f10(){constructor(_0x41e552,_0x5cfb57,_0x677c7e,_0x208ebf){const _0x1fa5a0=_0x10af;super(),this[_0x1fa5a0(0xe7)]=_0x5cfb57,this[_0x1fa5a0(0xe8)]=_0x677c7e,this[_0x1fa5a0(0xf1)]=_0x208ebf,this[_0x1fa5a0(0xf9)]=_0x41e552,this[_0x1fa5a0(0xd7)]=_0x41e552[_0x1fa5a0(0xda)][_0x1fa5a0(0xdd)](_0x1fa5a0(0xfb)),this[_0x1fa5a0(0xd9)]=_0x41e552[_0x1fa5a0(0xda)][_0x1fa5a0(0xdd)](_0x1fa5a0(0xfa)),this[_0x1fa5a0(0xe8)][_0x1fa5a0(0xe2)](_0x1fa5a0(0xf6))['to'](this[_0x1fa5a0(0xd7)],this[_0x1fa5a0(0xd9)],(_0x2f28d0,_0x47bb59)=>_0x2f28d0||_0x47bb59),this[_0x1fa5a0(0xe8)][_0x1fa5a0(0xe2)](_0x1fa5a0(0xe6))['to'](this[_0x1fa5a0(0xd7)],_0x1fa5a0(0xf6),_0x10774c=>_0x10774c&&this[_0x1fa5a0(0xf9)][_0x1fa5a0(0xe7)][_0x1fa5a0(0xf2)](_0x5cfb57[_0x1fa5a0(0xe4)]())),this[_0x1fa5a0(0xe8)][_0x1fa5a0(0xe2)](_0x1fa5a0(0xeb))['to'](this[_0x1fa5a0(0xd9)],_0x1fa5a0(0xf6),_0xad3786=>_0xad3786&&this[_0x1fa5a0(0xf9)][_0x1fa5a0(0xe7)][_0x1fa5a0(0xf2)](_0x5cfb57[_0x1fa5a0(0xe4)]())),this[_0x1fa5a0(0xfc)]=null,_0x677c7e[_0x1fa5a0(0xd5)]&&this[_0x1fa5a0(0xf5)](),this[_0x1fa5a0(0xec)](_0x677c7e,_0x1fa5a0(0xfb),()=>this[_0x1fa5a0(0xfb)]()),this[_0x1fa5a0(0xec)](_0x677c7e,_0x1fa5a0(0xfa),()=>this[_0x1fa5a0(0xfa)]()),this[_0x1fa5a0(0xec)](_0x677c7e,_0x1fa5a0(0xe5),()=>{const _0x193116=_0x1fa5a0;_0x677c7e[_0x193116(0xd5)]?this[_0x193116(0xf5)]():this[_0x193116(0xdc)]();});}[_0x1941c2(0xfb)](){const _0x47e384=_0x1941c2;this[_0x47e384(0xd7)][_0x47e384(0xd8)](this[_0x47e384(0xe7)]['id']);}[_0x1941c2(0xfa)](){const _0x30c472=_0x1941c2;this[_0x30c472(0xd9)][_0x30c472(0xd8)](this[_0x30c472(0xe7)]['id']);}[_0x1941c2(0xf8)](){const _0x575199=_0x1941c2;this[_0x575199(0xe8)][_0x575199(0xed)](_0x575199(0xf6)),this[_0x575199(0xe8)][_0x575199(0xed)](_0x575199(0xe6)),this[_0x575199(0xe8)][_0x575199(0xed)](_0x575199(0xeb)),this[_0x575199(0xfd)](),this[_0x575199(0xf1)][_0x575199(0xf8)](),this[_0x575199(0xfc)]&&this[_0x575199(0xdc)]();}[_0x1941c2(0xf5)](){const _0x4bbf87=_0x1941c2,_0x152a84=_0x36bc5a(this[_0x4bbf87(0xf9)][_0x4bbf87(0xef)],_0x4bbf87(0xfe));this[_0x4bbf87(0xfc)]=this[_0x4bbf87(0xf9)][_0x4bbf87(0xf0)][_0x4bbf87(0xdd)](_0x4bbf87(0xdb))[_0x4bbf87(0xe1)](_0x152a84);}[_0x1941c2(0xdc)](){const _0x2f5a65=_0x1941c2;null!==this[_0x2f5a65(0xfc)]&&this[_0x2f5a65(0xf9)][_0x2f5a65(0xf0)][_0x2f5a65(0xdd)](_0x2f5a65(0xdb))[_0x2f5a65(0xea)](this[_0x2f5a65(0xfc)]),this[_0x2f5a65(0xfc)]=null;}}