@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,5 @@
1
+ !function(t){const e=t.en=t.en||{};e.dictionary=Object.assign(e.dictionary||{},{"*Change %0 content*":"*Change %0 content*","*Change to:* %0":"*Change to:* %0","*Check item*":"*Check item*","*Format:* %0":"*Format:* %0","*Format:* change table cell properties":"*Format:* change table cell properties","*Format:* change table properties":"*Format:* change table properties","*Format:* insert into %0":"*Format:* insert into %0","*Format:* remove from %0":"*Format:* remove from %0","*Format:* resize table":"*Format:* resize table","*Format:* set order to regular":"*Format:* set order to regular","*Format:* set order to reversed":"*Format:* set order to reversed","*Format:* set start index to %0":"*Format:* set start index to %0","*Indent:* %0":"*Indent:* %0","*Insert:* %0":"*Insert:* %0","*Merge cells*":"*Merge cells*","*Merge:* %0":"*Merge:* %0","*Outdent:* %0":"*Outdent:* %0","*Remove all formatting*":"*Remove all formatting*","*Remove format:* %0":"*Remove format:* %0","*Remove highlight*":"*Remove highlight*","*Remove image text alternative*":"*Remove image text alternative*","*Remove link*":"*Remove link*","*Remove:* %0":"*Remove:* %0","*Replace image URL*":"*Replace image URL*","*Replace table cells*":"*Replace table cells*","*Reset font background color*":"*Reset font background color*","*Reset font color*":"*Reset font color*","*Reset font family*":"*Reset font family*","*Reset font size*":"*Reset font size*","*Reset image width*":"*Reset image width*","*Set font background color:* %0":"*Set font background color:* %0","*Set font color:* %0":"*Set font color:* %0","*Set font family:* %0":"*Set font family:* %0","*Set font size:* %0":"*Set font size:* %0","*Set format to:* %0":"*Set format to:* %0","*Set format:* %0":"*Set format:* %0","*Set highlight:* %0":"*Set highlight:* %0","*Set image text alternative:* %0":"*Set image text alternative:* %0","*Set image width:* %0":"*Set image width:* %0","*Set link:* %0":"*Set link:* %0","*Split cell:* horizontally":"*Split cell:* horizontally","*Split cell:* vertically":"*Split cell:* vertically","*Split:* %0":"*Split:* %0","*Uncheck item*":"*Uncheck item*","Accept all selected suggestions":"Accept all selected suggestions","Accept all suggestions":"Accept all suggestions","Accept suggestion":"Accept suggestion","Discard all selected suggestions":"Discard all selected suggestions","Discard all suggestions":"Discard all suggestions","Discard suggestion":"Discard suggestion",ELEMENT_BLOCK_QUOTE:"block quote",ELEMENT_BULLETED_LIST:"bulleted list",ELEMENT_BULLETED_LIST_CIRCLE:"bulleted list (circle)",ELEMENT_BULLETED_LIST_DEFAULT:"bulleted list (default)",ELEMENT_BULLETED_LIST_DISC:"bulleted list (disc)",ELEMENT_BULLETED_LIST_SQUARE:"bulleted list (square)",ELEMENT_CAPTION:"caption",ELEMENT_CODE_BLOCK:["code block","%0 code blocks"],ELEMENT_DEFAULT_LIST_DEFAULT:"default list style",ELEMENT_HEADING:["heading (level %1)","%0 headings (level %1)"],ELEMENT_HEADING_CUSTOM:["heading (%1)","%0 headings (%1)"],ELEMENT_HORIZONTAL_LINE:["horizontal line","%0 horizontal lines"],ELEMENT_HTML_EMBED:["HTML embed","%0 HTML embeds"],ELEMENT_IMAGE:["image","%0 images"],ELEMENT_INLINE_IMAGE:["image","%0 images"],ELEMENT_LINE_BREAK:["line break","%0 line breaks"],ELEMENT_LIST_ITEM:["list item","%0 list items"],ELEMENT_MEDIA:["media item","%0 media items"],ELEMENT_MERGE_FIELD:["merge field","%0 merge fields"],ELEMENT_MULTI_LEVEL_LIST:"multi-level list",ELEMENT_NUMBERED_LIST:"numbered list",ELEMENT_NUMBERED_LIST_DECIMAL:"numbered list (decimal)",ELEMENT_NUMBERED_LIST_DECIMAL_LEADING_ZERO:"numbered list (decimal with leading zero)",ELEMENT_NUMBERED_LIST_DEFAULT:"numbered list (default)",ELEMENT_NUMBERED_LIST_LOWER_LATIN:"numbered list (lower-latin)",ELEMENT_NUMBERED_LIST_LOWER_ROMAN:"numbered list (lower-roman)",ELEMENT_NUMBERED_LIST_UPPER_LATIN:"numbered list (upper-latin)",ELEMENT_NUMBERED_LIST_UPPER_ROMAN:"numbered list (upper-roman)",ELEMENT_PAGE_BREAK:["page break","%0 page breaks"],ELEMENT_PARAGRAPH:["paragraph","%0 paragraphs"],ELEMENT_SPACE:["space","%0 spaces"],ELEMENT_TABLE:["table","%0 tables"],ELEMENT_TABLE_COLUMN:["table column","%0 table columns"],ELEMENT_TABLE_COLUMN_WITH_TEXT:["table column *with text* %1","%0 table columns *with text* %1"],ELEMENT_TABLE_OF_CONTENTS:["table of contents","%0 tables of contents"],ELEMENT_TABLE_ROW:["table row","%0 table rows"],ELEMENT_TABLE_ROW_WITH_TEXT:["table row *with text* %1","%0 table rows *with text* %1"],ELEMENT_TABLE_WITH_TEXT:"table *with text* %0",ELEMENT_TITLE:"title",ELEMENT_TODO_LIST:"to-do list",ENTER_DELETION_SUGGESTION_ANNOUNCEMENT:"Entering deletion suggestion. Press %0 to go to the discussion.",ENTER_FORMATTING_SUGGESTION_ANNOUNCEMENT:"Entering formatting suggestion. Press %0 to go to the discussion.",ENTER_INSERTION_SUGGESTION_ANNOUNCEMENT:"Entering insertion suggestion. Press %0 to go to the discussion.",EXTERNAL_IMPORT_WORD_SUGGESTION:"This suggestion comes from an imported Word file.",EXTERNAL_SUGGESTION:"This suggestion comes from an external source.",FORMAT_ALIGN_TO_CENTER:"align to center",FORMAT_ALIGN_TO_LEFT:"align to left",FORMAT_ALIGN_TO_RIGHT:"align to right",FORMAT_ALIGNMENT:"alignment",FORMAT_BOLD:"bold",FORMAT_CODE:"code",FORMAT_FONT_BACKGROUND:"font background color",FORMAT_FONT_COLOR:"font color",FORMAT_FONT_FAMILY:"font family",FORMAT_FONT_SIZE:"font size",FORMAT_HEADER_COLUMN:"header column",FORMAT_HEADER_ROW:"header row",FORMAT_HIGHLIGHT:"highlight",FORMAT_IMAGE_SIZE:"image size",FORMAT_INDENT:"indent",FORMAT_ITALIC:"italic",FORMAT_JUSTIFY_TEXT:"justify",FORMAT_LIST_REVERSED:"list reversed",FORMAT_LIST_START:"list start",FORMAT_REGULAR_COLUMN:"regular column",FORMAT_REGULAR_ROW:"regular row",FORMAT_RESTRICTED_DISABLED:"*Disable in restricted editing mode*",FORMAT_RESTRICTED_ENABLED:"*Enable in restricted editing mode*",FORMAT_SIDE_IMAGE:"side image",FORMAT_STRIKETHROUGH:"strikethrough",FORMAT_STYLE:"style",FORMAT_SUBSCRIPT:"subscript",FORMAT_SUPERSCRIPT:"superscript",FORMAT_UNDERLINE:"underline",LEAVE_DELETION_SUGGESTION_ANNOUNCEMENT:"Leaving deletion suggestion.",LEAVE_FORMATTING_SUGGESTION_ANNOUNCEMENT:"Leaving formatting suggestion.",LEAVE_INSERTION_SUGGESTION_ANNOUNCEMENT:"Leaving insertion suggestion.",PENDING_ACTION_SUGGESTION:"Unsaved change in suggestion.",REPLACE_TEXT:"*Replace:* %0 *with* %1",SUGGESTION_THREAD_ARIA_LABEL:["Suggestion by %1. Created on %2. %0 reply. %3","Suggestion by %1. Created on %2. %0 replies. %3"],SUGGESTION_THREAD_DESCRIPTION:"Press Enter for more options. Press Escape to exit.","Track changes":"Track changes"})}(window.CKEDITOR_TRANSLATIONS||(window.CKEDITOR_TRANSLATIONS={})),
2
+ /*!
3
+ * @license Copyright (c) 2003-2024, CKSource Holding sp. z o.o. All rights reserved.
4
+ * For licensing, see LICENSE.md.
5
+ */(()=>{var t={211:(t,e,n)=>{t.exports=n(312)("./src/collaboration-core.js")},782:(t,e,n)=>{t.exports=n(237)("./src/core.js")},783:(t,e,n)=>{t.exports=n(237)("./src/engine.js")},507:(t,e,n)=>{t.exports=n(237)("./src/enter.js")},834:(t,e,n)=>{t.exports=n(237)("./src/typing.js")},311:(t,e,n)=>{t.exports=n(237)("./src/ui.js")},584:(t,e,n)=>{t.exports=n(237)("./src/utils.js")},901:(t,e,n)=>{t.exports=n(237)("./src/widget.js")},312:t=>{"use strict";t.exports=CKEditor5.collaborationDll},237:t=>{"use strict";t.exports=CKEditor5.dll}},e={};function n(r){var s=e[r];if(void 0!==s)return s.exports;var o=e[r]={exports:{}};return t[r](o,o.exports,n),o.exports}n.d=(t,e)=>{for(var r in e)n.o(e,r)&&!n.o(t,r)&&Object.defineProperty(t,r,{enumerable:!0,get:e[r]})},n.o=(t,e)=>Object.prototype.hasOwnProperty.call(t,e),n.r=t=>{"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(t,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(t,"__esModule",{value:!0})};var r={};(()=>{"use strict";n.r(r),n.d(r,{BaseSuggestionThreadView:()=>Xc,Suggestion:()=>Wr,SuggestionThreadView:()=>Qc,SuggestionView:()=>eu,TrackChanges:()=>hu,TrackChangesData:()=>mu,TrackChangesEditing:()=>Nc});var t=n(782),e=n(584),s=n(311),o=n(211),i=n(783),a=n(901);const c=u;function u(t,e){const n=l();return(u=function(t,e){return n[t-=452]})(t,e)}function l(){const t=["clearForceDisabled","affectsData","forceDisabled","7139314Bpsjfw","106984ZJBOYZ","_disableUnsupportedCommands","commands","_isEnabledBasedOnSelection","84goGTnN","editor","value","isEnabled","has","2349448BZdYwc","14FWqQyq","5926224imFkHM","execute","refresh","6028035mkVyOf","3818610dhIwOX","_enabledCommands","9NRoTqb","TrackChangesCommand","72773ookvap","_enableCommands"];return(l=function(){return t})()}!function(t){const e=u,n=t();for(;;)try{if(655048===parseInt(e(461))/1*(-parseInt(e(452))/2)+parseInt(e(471))/3*(-parseInt(e(467))/4)+parseInt(e(456))/5+-parseInt(e(453))/6+parseInt(e(466))/7+parseInt(e(476))/8*(parseInt(e(459))/9)+parseInt(e(457))/10)break;n.push(n.shift())}catch(t){n.push(n.shift())}}(l);class f extends t.Command{constructor(t,e){const n=u;super(t),this[n(458)]=e,this[n(473)]=!1,this[n(455)](),this[n(470)]=!1}[c(455)](){this[c(474)]=!0}[c(454)](){const t=c;this[t(473)]=!this[t(473)],this[t(473)]?this[t(468)]():this[t(462)]()}[c(468)](){const t=c;for(const e of this[t(472)][t(469)][t(469)]())e[t(464)]&&!this[t(458)][t(475)](e)&&e[t(465)](t(460))}[c(462)](){const t=c;for(const e of this[t(472)][t(469)][t(469)]())e[t(464)]&&!this[t(458)][t(475)](e)&&e[t(463)](t(460))}}const h=g;function g(t,e){const n=d();return(g=function(t,e){return n[t-=203]})(t,e)}function d(){const t=["isEnabled","12167958qOIYVa","464360xmXqAv","plugins","editor","2933bcZlRz","10uzHfFW","acceptSuggestion","getRanges","TrackChangesEditing","refresh","7206021dYKARX","track-changes-accept-suggestion-not-found","canEditAt","_suggestions","9474ftEhcU","get","15EatUIQ","934555oSFnvT","model","3UykWSd","execute","419840EXLMSx","2673080mzJOGC","_isEnabledBasedOnSelection"];return(d=function(){return t})()}!function(t){const e=g,n=t();for(;;)try{if(495374===-parseInt(e(215))/1*(-parseInt(e(217))/2)+-parseInt(e(212))/3*(parseInt(e(222))/4)+-parseInt(e(213))/5+-parseInt(e(210))/6*(-parseInt(e(225))/7)+-parseInt(e(218))/8+parseInt(e(206))/9*(-parseInt(e(226))/10)+parseInt(e(221))/11)break;n.push(n.shift())}catch(t){n.push(n.shift())}}(d);class p extends t.Command{constructor(t,e){const n=g;super(t),this[n(209)]=e,this[n(205)](),this[n(219)]=!1}[h(205)](){this[h(220)]=!0}[h(216)](t){const n=h,r=this[n(209)][n(211)](t);if(!r)throw new e.CKEditorError(n(207),this);const s=r[n(203)]();this[n(224)][n(214)][n(208)](s)&&this[n(224)][n(223)][n(211)](n(204))[n(227)](r)}}const m=I;function I(t,e){const n=E();return(I=function(t,e){return n[t-=278]})(t,e)}function E(){const t=["editor","getRanges","2182194AVpOOz","2819724sxkNHn","1UPRVJp","1505814OMklWC","canEditAt","execute","refresh","_isEnabledBasedOnSelection","isEnabled","track-changes-discard-suggestion-not-found","31102rJtnNz","41235JiKQhv","10356360QYKgOY","discardSuggestion","get","plugins","model","TrackChangesEditing","_suggestions","1113792WKoFdJ"];return(E=function(){return t})()}!function(t){const e=I,n=t();for(;;)try{if(313157===-parseInt(e(296))/1*(-parseInt(e(282))/2)+-parseInt(e(297))/3+parseInt(e(291))/4+parseInt(e(283))/5+-parseInt(e(295))/6+-parseInt(e(294))/7+parseInt(e(284))/8)break;n.push(n.shift())}catch(t){n.push(n.shift())}}(E);class b extends t.Command{constructor(t,e){const n=I;super(t),this[n(290)]=e,this[n(278)](),this[n(279)]=!1}[m(278)](){this[m(280)]=!0}[m(299)](t){const n=m,r=this[n(290)][n(286)](t);if(!r)throw new e.CKEditorError(n(281),this);const s=r[n(293)]();this[n(292)][n(288)][n(298)](s)&&this[n(292)][n(287)][n(286)](n(289))[n(285)](r)}}function T(){const t=['" title="','<span class="ck-suggestion-type">',"2aKfPZl","isTouching","createRange","span","createPositionAfter","</span>","start","isMultiRange","execute","length","isInContent","14vQuXKB","18370ieNcwq","723105kWXKvx","end","createElement","isCollapsed","1254AXCpTl","replace","innerText","color","860orRGCl","content","next","splice","deletion","565694KQLMgY","6656936rVtKJx","map","9883956ApwENj","isIntersecting","70IWTZxO","value","innerHTML","split","push","change","getRanges","createPositionBefore","3429jpRxKx","schema","1536552SXUVjq","title","isObject","type","add","sort",'<span class="ck-suggestion-color" style="background-color: ',"isArray","createPositionAt",'"></span>',"join","from"," [color "];return(T=function(){return t})()}function _(t,e){const n=A;let r="";return r+=t[n(285)]("*")[n(279)](((t,e)=>e%2!=0?n(250)+y(t)+n(256):y(t)))[n(246)](""),e&&(r+=n(242)+e[n(283)]+n(249)+e[n(237)]+n(245)),r}function y(t){const e=A,n=document[e(266)](e(254));return n[e(270)]=t,n[e(284)]}function A(t,e){const n=T();return(A=function(t,e){return n[t-=237]})(t,e)}function k(t){const e=A;return t[e(241)](((t,n)=>e(276)==t[e(239)]&&e(276)!=n[e(239)]?-1:e(276)!=t[e(239)]&&e(276)==n[e(239)]?1:0))}function C(t,e){const n=A;let r,s=0;const o=[],i=e[n(291)];for(;s<t[n(260)];){const a=t[s],c=t[s+1];r||(r=e[n(289)](a)),L(e,a,c)||(o[n(286)](e[n(253)](r,i[n(238)](a)?e[n(255)](a):e[n(244)](a,n(265)))),r=null),s++}return o}function L(t,e,n){const r=A;if(!n)return!1;const s=t[r(255)](e),o=t[r(289)](n);return s[r(252)](o)}!function(t){const e=A,n=t();for(;;)try{if(440337===parseInt(e(251))/1*(parseInt(e(277))/2)+parseInt(e(290))/3*(parseInt(e(272))/4)+parseInt(e(263))/5*(-parseInt(e(268))/6)+-parseInt(e(262))/7*(parseInt(e(292))/8)+-parseInt(e(264))/9*(-parseInt(e(282))/10)+-parseInt(e(278))/11+parseInt(e(280))/12)break;n.push(n.shift())}catch(t){n.push(n.shift())}}(T);function N(t,e,n){const r=A;for(;n[r(260)];){const s=n[r(275)](0,100);t[r(287)]((()=>{const t=r;for(const n of s)n[t(261)]&&e[t(259)](n.id)}))}}const R=S;function S(t,e){const n=M();return(S=function(t,e){return n[t-=184]})(t,e)}function M(){const t=["isInContent","57047PafKCa","values","48370HStnXN","1546400lcgooZ","30075sthJKq","336GRcZXj","canEditAt","_isEnabledBasedOnSelection","12dhDaVN","some","execute","22GbPNvd","140ApFCbm","_command","model","6XYQjLj","6416kDuSFg","refresh","isEnabled","98766CyyEqI","getRanges","from","_suggestions","editor","2220432PnwvDg"];return(M=function(){return t})()}!function(t){const e=S,n=t();for(;;)try{if(188991===parseInt(e(192))/1*(parseInt(e(200))/2)+parseInt(e(196))/3*(-parseInt(e(204))/4)+parseInt(e(194))/5*(parseInt(e(207))/6)+-parseInt(e(197))/7*(parseInt(e(208))/8)+parseInt(e(185))/9+-parseInt(e(195))/10+parseInt(e(203))/11*(parseInt(e(190))/12))break;n.push(n.shift())}catch(t){n.push(n.shift())}}(M);class v extends t.Command{constructor(t,e,n){const r=S;super(t),this[r(205)]=e,this[r(188)]=n,this[r(209)](),this[r(199)]=!1}[R(209)](){const t=R,e=Array[t(187)](this[t(188)][t(193)]())[t(201)]((e=>e[t(191)]));this[t(184)]=this[t(205)][t(184)]&&e}[R(202)](){const t=R,e=k(Array[t(187)](this[t(188)][t(193)]()));for(const n of e){const e=n[t(186)]();if(!this[t(189)][t(206)][t(198)](e))return}N(this[t(189)][t(206)],this[t(205)],e)}}function w(){const t=["document","getRanges","values","56OoQIRe","654481ggJnxH","execute","_suggestions","model","9HNKdsy","editor","6612850woPlLf","92GZBFwl","7938007qfedXf","2638866aVNfMZ","size","refresh","canEditAt","1332uhDxBL","306232VatZYf","_selectedSuggestions","_command","selection","from","1641PTvHKr","_isEnabledBasedOnSelection","91265UPUnDm","isEnabled"];return(w=function(){return t})()}function O(t,e){const n=w();return(O=function(t,e){return n[t-=130]})(t,e)}const F=O;!function(t){const e=O,n=t();for(;;)try{if(650379===-parseInt(e(133))/1+-parseInt(e(146))/2*(parseInt(e(152))/3)+-parseInt(e(140))/4*(-parseInt(e(154))/5)+-parseInt(e(142))/6+-parseInt(e(132))/7*(-parseInt(e(147))/8)+-parseInt(e(137))/9*(-parseInt(e(139))/10)+parseInt(e(141))/11)break;n.push(n.shift())}catch(t){n.push(n.shift())}}(w);class D extends t.Command{constructor(t,e,n){const r=O;super(t),this[r(149)]=e,this[r(135)]=n,this[r(148)]=new Set,this[r(144)](),this[r(153)]=!1}[F(144)](){const t=F,e=this[t(138)][t(136)][t(156)][t(150)],n=Array[t(151)](this[t(135)][t(131)]());this[t(148)]=function(t,e){const n=A,r=Array[n(247)](t[n(288)]()),s=new Set;for(const o of e)if(o[n(261)])for(const e of r)for(const r of o[n(288)]())(e[n(281)](r)||t[n(267)]&&!o[n(258)]&&o[n(274)]&&r[n(265)][n(252)](e[n(257)]))&&s[n(240)](o);return s}(e,n),this[t(155)]=this[t(149)][t(155)]&&!!this[t(148)][t(143)]}[F(134)](){const t=F,e=k(Array[t(151)](this[t(148)]));for(const n of e){const e=n[t(130)]();if(!this[t(138)][t(136)][t(145)](e))return}N(this[t(138)][t(136)],this[t(149)],e)}}const P=function(){this.__data__=[],this.size=0};const x=function(t,e){return t===e||t!=t&&e!=e};const B=function(t,e){for(var n=t.length;n--;)if(x(t[n][0],e))return n;return-1};var U=Array.prototype.splice;const j=function(t){var e=this.__data__,n=B(e,t);return!(n<0)&&(n==e.length-1?e.pop():U.call(e,n,1),--this.size,!0)};const G=function(t){var e=this.__data__,n=B(e,t);return n<0?void 0:e[n][1]};const V=function(t){return B(this.__data__,t)>-1};const H=function(t,e){var n=this.__data__,r=B(n,t);return r<0?(++this.size,n.push([t,e])):n[r][1]=e,this};function z(t){var e=-1,n=null==t?0:t.length;for(this.clear();++e<n;){var r=t[e];this.set(r[0],r[1])}}z.prototype.clear=P,z.prototype.delete=j,z.prototype.get=G,z.prototype.has=V,z.prototype.set=H;const W=z;const K=function(){this.__data__=new W,this.size=0};const X=function(t){var e=this.__data__,n=e.delete(t);return this.size=e.size,n};const q=function(t){return this.__data__.get(t)};const Z=function(t){return this.__data__.has(t)};const J="object"==typeof global&&global&&global.Object===Object&&global;var Y="object"==typeof self&&self&&self.Object===Object&&self;const Q=J||Y||Function("return this")();const $=Q.Symbol;var tt=Object.prototype,et=tt.hasOwnProperty,nt=tt.toString,rt=$?$.toStringTag:void 0;const st=function(t){var e=et.call(t,rt),n=t[rt];try{t[rt]=void 0;var r=!0}catch(t){}var s=nt.call(t);return r&&(e?t[rt]=n:delete t[rt]),s};var ot=Object.prototype.toString;const it=function(t){return ot.call(t)};var at=$?$.toStringTag:void 0;const ct=function(t){return null==t?void 0===t?"[object Undefined]":"[object Null]":at&&at in Object(t)?st(t):it(t)};const ut=function(t){var e=typeof t;return null!=t&&("object"==e||"function"==e)};const lt=function(t){if(!ut(t))return!1;var e=ct(t);return"[object Function]"==e||"[object GeneratorFunction]"==e||"[object AsyncFunction]"==e||"[object Proxy]"==e};const ft=Q["__core-js_shared__"];var ht,gt=(ht=/[^.]+$/.exec(ft&&ft.keys&&ft.keys.IE_PROTO||""))?"Symbol(src)_1."+ht:"";const dt=function(t){return!!gt&&gt in t};var pt=Function.prototype.toString;const mt=function(t){if(null!=t){try{return pt.call(t)}catch(t){}try{return t+""}catch(t){}}return""};var It=/^\[object .+?Constructor\]$/,Et=Function.prototype,bt=Object.prototype,Tt=Et.toString,_t=bt.hasOwnProperty,yt=RegExp("^"+Tt.call(_t).replace(/[\\^$.*+?()[\]{}|]/g,"\\$&").replace(/hasOwnProperty|(function).*?(?=\\\()| for .+?(?=\\\])/g,"$1.*?")+"$");const At=function(t){return!(!ut(t)||dt(t))&&(lt(t)?yt:It).test(mt(t))};const kt=function(t,e){return null==t?void 0:t[e]};const Ct=function(t,e){var n=kt(t,e);return At(n)?n:void 0};const Lt=Ct(Q,"Map");const Nt=Ct(Object,"create");const Rt=function(){this.__data__=Nt?Nt(null):{},this.size=0};const St=function(t){var e=this.has(t)&&delete this.__data__[t];return this.size-=e?1:0,e};var Mt=Object.prototype.hasOwnProperty;const vt=function(t){var e=this.__data__;if(Nt){var n=e[t];return"__lodash_hash_undefined__"===n?void 0:n}return Mt.call(e,t)?e[t]:void 0};var wt=Object.prototype.hasOwnProperty;const Ot=function(t){var e=this.__data__;return Nt?void 0!==e[t]:wt.call(e,t)};const Ft=function(t,e){var n=this.__data__;return this.size+=this.has(t)?0:1,n[t]=Nt&&void 0===e?"__lodash_hash_undefined__":e,this};function Dt(t){var e=-1,n=null==t?0:t.length;for(this.clear();++e<n;){var r=t[e];this.set(r[0],r[1])}}Dt.prototype.clear=Rt,Dt.prototype.delete=St,Dt.prototype.get=vt,Dt.prototype.has=Ot,Dt.prototype.set=Ft;const Pt=Dt;const xt=function(){this.size=0,this.__data__={hash:new Pt,map:new(Lt||W),string:new Pt}};const Bt=function(t){var e=typeof t;return"string"==e||"number"==e||"symbol"==e||"boolean"==e?"__proto__"!==t:null===t};const Ut=function(t,e){var n=t.__data__;return Bt(e)?n["string"==typeof e?"string":"hash"]:n.map};const jt=function(t){var e=Ut(this,t).delete(t);return this.size-=e?1:0,e};const Gt=function(t){return Ut(this,t).get(t)};const Vt=function(t){return Ut(this,t).has(t)};const Ht=function(t,e){var n=Ut(this,t),r=n.size;return n.set(t,e),this.size+=n.size==r?0:1,this};function zt(t){var e=-1,n=null==t?0:t.length;for(this.clear();++e<n;){var r=t[e];this.set(r[0],r[1])}}zt.prototype.clear=xt,zt.prototype.delete=jt,zt.prototype.get=Gt,zt.prototype.has=Vt,zt.prototype.set=Ht;const Wt=zt;const Kt=function(t,e){var n=this.__data__;if(n instanceof W){var r=n.__data__;if(!Lt||r.length<199)return r.push([t,e]),this.size=++n.size,this;n=this.__data__=new Wt(r)}return n.set(t,e),this.size=n.size,this};function Xt(t){var e=this.__data__=new W(t);this.size=e.size}Xt.prototype.clear=K,Xt.prototype.delete=X,Xt.prototype.get=q,Xt.prototype.has=Z,Xt.prototype.set=Kt;const qt=Xt;const Zt=function(t,e){for(var n=-1,r=null==t?0:t.length;++n<r&&!1!==e(t[n],n,t););return t};const Jt=function(){try{var t=Ct(Object,"defineProperty");return t({},"",{}),t}catch(t){}}();const Yt=function(t,e,n){"__proto__"==e&&Jt?Jt(t,e,{configurable:!0,enumerable:!0,value:n,writable:!0}):t[e]=n};var Qt=Object.prototype.hasOwnProperty;const $t=function(t,e,n){var r=t[e];Qt.call(t,e)&&x(r,n)&&(void 0!==n||e in t)||Yt(t,e,n)};const te=function(t,e,n,r){var s=!n;n||(n={});for(var o=-1,i=e.length;++o<i;){var a=e[o],c=r?r(n[a],t[a],a,n,t):void 0;void 0===c&&(c=t[a]),s?Yt(n,a,c):$t(n,a,c)}return n};const ee=function(t,e){for(var n=-1,r=Array(t);++n<t;)r[n]=e(n);return r};const ne=function(t){return null!=t&&"object"==typeof t};const re=function(t){return ne(t)&&"[object Arguments]"==ct(t)};var se=Object.prototype,oe=se.hasOwnProperty,ie=se.propertyIsEnumerable;const ae=re(function(){return arguments}())?re:function(t){return ne(t)&&oe.call(t,"callee")&&!ie.call(t,"callee")};const ce=Array.isArray;const ue=function(){return!1};var le="object"==typeof exports&&exports&&!exports.nodeType&&exports,fe=le&&"object"==typeof module&&module&&!module.nodeType&&module,he=fe&&fe.exports===le?Q.Buffer:void 0;const ge=(he?he.isBuffer:void 0)||ue;var de=/^(?:0|[1-9]\d*)$/;const pe=function(t,e){var n=typeof t;return!!(e=null==e?9007199254740991:e)&&("number"==n||"symbol"!=n&&de.test(t))&&t>-1&&t%1==0&&t<e};const me=function(t){return"number"==typeof t&&t>-1&&t%1==0&&t<=9007199254740991};var Ie={};Ie["[object Float32Array]"]=Ie["[object Float64Array]"]=Ie["[object Int8Array]"]=Ie["[object Int16Array]"]=Ie["[object Int32Array]"]=Ie["[object Uint8Array]"]=Ie["[object Uint8ClampedArray]"]=Ie["[object Uint16Array]"]=Ie["[object Uint32Array]"]=!0,Ie["[object Arguments]"]=Ie["[object Array]"]=Ie["[object ArrayBuffer]"]=Ie["[object Boolean]"]=Ie["[object DataView]"]=Ie["[object Date]"]=Ie["[object Error]"]=Ie["[object Function]"]=Ie["[object Map]"]=Ie["[object Number]"]=Ie["[object Object]"]=Ie["[object RegExp]"]=Ie["[object Set]"]=Ie["[object String]"]=Ie["[object WeakMap]"]=!1;const Ee=function(t){return ne(t)&&me(t.length)&&!!Ie[ct(t)]};const be=function(t){return function(e){return t(e)}};var Te="object"==typeof exports&&exports&&!exports.nodeType&&exports,_e=Te&&"object"==typeof module&&module&&!module.nodeType&&module,ye=_e&&_e.exports===Te&&J.process;const Ae=function(){try{var t=_e&&_e.require&&_e.require("util").types;return t||ye&&ye.binding&&ye.binding("util")}catch(t){}}();var ke=Ae&&Ae.isTypedArray;const Ce=ke?be(ke):Ee;var Le=Object.prototype.hasOwnProperty;const Ne=function(t,e){var n=ce(t),r=!n&&ae(t),s=!n&&!r&&ge(t),o=!n&&!r&&!s&&Ce(t),i=n||r||s||o,a=i?ee(t.length,String):[],c=a.length;for(var u in t)!e&&!Le.call(t,u)||i&&("length"==u||s&&("offset"==u||"parent"==u)||o&&("buffer"==u||"byteLength"==u||"byteOffset"==u)||pe(u,c))||a.push(u);return a};var Re=Object.prototype;const Se=function(t){var e=t&&t.constructor;return t===("function"==typeof e&&e.prototype||Re)};const Me=function(t,e){return function(n){return t(e(n))}};const ve=Me(Object.keys,Object);var we=Object.prototype.hasOwnProperty;const Oe=function(t){if(!Se(t))return ve(t);var e=[];for(var n in Object(t))we.call(t,n)&&"constructor"!=n&&e.push(n);return e};const Fe=function(t){return null!=t&&me(t.length)&&!lt(t)};const De=function(t){return Fe(t)?Ne(t):Oe(t)};const Pe=function(t,e){return t&&te(e,De(e),t)};const xe=function(t){var e=[];if(null!=t)for(var n in Object(t))e.push(n);return e};var Be=Object.prototype.hasOwnProperty;const Ue=function(t){if(!ut(t))return xe(t);var e=Se(t),n=[];for(var r in t)("constructor"!=r||!e&&Be.call(t,r))&&n.push(r);return n};const je=function(t){return Fe(t)?Ne(t,!0):Ue(t)};const Ge=function(t,e){return t&&te(e,je(e),t)};var Ve="object"==typeof exports&&exports&&!exports.nodeType&&exports,He=Ve&&"object"==typeof module&&module&&!module.nodeType&&module,ze=He&&He.exports===Ve?Q.Buffer:void 0,We=ze?ze.allocUnsafe:void 0;const Ke=function(t,e){if(e)return t.slice();var n=t.length,r=We?We(n):new t.constructor(n);return t.copy(r),r};const Xe=function(t,e){var n=-1,r=t.length;for(e||(e=Array(r));++n<r;)e[n]=t[n];return e};const qe=function(t,e){for(var n=-1,r=null==t?0:t.length,s=0,o=[];++n<r;){var i=t[n];e(i,n,t)&&(o[s++]=i)}return o};const Ze=function(){return[]};var Je=Object.prototype.propertyIsEnumerable,Ye=Object.getOwnPropertySymbols;const Qe=Ye?function(t){return null==t?[]:(t=Object(t),qe(Ye(t),(function(e){return Je.call(t,e)})))}:Ze;const $e=function(t,e){return te(t,Qe(t),e)};const tn=function(t,e){for(var n=-1,r=e.length,s=t.length;++n<r;)t[s+n]=e[n];return t};const en=Me(Object.getPrototypeOf,Object);const nn=Object.getOwnPropertySymbols?function(t){for(var e=[];t;)tn(e,Qe(t)),t=en(t);return e}:Ze;const rn=function(t,e){return te(t,nn(t),e)};const sn=function(t,e,n){var r=e(t);return ce(t)?r:tn(r,n(t))};const on=function(t){return sn(t,De,Qe)};const an=function(t){return sn(t,je,nn)};const cn=Ct(Q,"DataView");const un=Ct(Q,"Promise");const ln=Ct(Q,"Set");const fn=Ct(Q,"WeakMap");var hn="[object Map]",gn="[object Promise]",dn="[object Set]",pn="[object WeakMap]",mn="[object DataView]",In=mt(cn),En=mt(Lt),bn=mt(un),Tn=mt(ln),_n=mt(fn),yn=ct;(cn&&yn(new cn(new ArrayBuffer(1)))!=mn||Lt&&yn(new Lt)!=hn||un&&yn(un.resolve())!=gn||ln&&yn(new ln)!=dn||fn&&yn(new fn)!=pn)&&(yn=function(t){var e=ct(t),n="[object Object]"==e?t.constructor:void 0,r=n?mt(n):"";if(r)switch(r){case In:return mn;case En:return hn;case bn:return gn;case Tn:return dn;case _n:return pn}return e});const An=yn;var kn=Object.prototype.hasOwnProperty;const Cn=function(t){var e=t.length,n=new t.constructor(e);return e&&"string"==typeof t[0]&&kn.call(t,"index")&&(n.index=t.index,n.input=t.input),n};const Ln=Q.Uint8Array;const Nn=function(t){var e=new t.constructor(t.byteLength);return new Ln(e).set(new Ln(t)),e};const Rn=function(t,e){var n=e?Nn(t.buffer):t.buffer;return new t.constructor(n,t.byteOffset,t.byteLength)};var Sn=/\w*$/;const Mn=function(t){var e=new t.constructor(t.source,Sn.exec(t));return e.lastIndex=t.lastIndex,e};var vn=$?$.prototype:void 0,wn=vn?vn.valueOf:void 0;const On=function(t){return wn?Object(wn.call(t)):{}};const Fn=function(t,e){var n=e?Nn(t.buffer):t.buffer;return new t.constructor(n,t.byteOffset,t.length)};const Dn=function(t,e,n){var r=t.constructor;switch(e){case"[object ArrayBuffer]":return Nn(t);case"[object Boolean]":case"[object Date]":return new r(+t);case"[object DataView]":return Rn(t,n);case"[object Float32Array]":case"[object Float64Array]":case"[object Int8Array]":case"[object Int16Array]":case"[object Int32Array]":case"[object Uint8Array]":case"[object Uint8ClampedArray]":case"[object Uint16Array]":case"[object Uint32Array]":return Fn(t,n);case"[object Map]":case"[object Set]":return new r;case"[object Number]":case"[object String]":return new r(t);case"[object RegExp]":return Mn(t);case"[object Symbol]":return On(t)}};var Pn=Object.create;const xn=function(){function t(){}return function(e){if(!ut(e))return{};if(Pn)return Pn(e);t.prototype=e;var n=new t;return t.prototype=void 0,n}}();const Bn=function(t){return"function"!=typeof t.constructor||Se(t)?{}:xn(en(t))};const Un=function(t){return ne(t)&&"[object Map]"==An(t)};var jn=Ae&&Ae.isMap;const Gn=jn?be(jn):Un;const Vn=function(t){return ne(t)&&"[object Set]"==An(t)};var Hn=Ae&&Ae.isSet;const zn=Hn?be(Hn):Vn;var Wn="[object Arguments]",Kn="[object Function]",Xn="[object Object]",qn={};qn[Wn]=qn["[object Array]"]=qn["[object ArrayBuffer]"]=qn["[object DataView]"]=qn["[object Boolean]"]=qn["[object Date]"]=qn["[object Float32Array]"]=qn["[object Float64Array]"]=qn["[object Int8Array]"]=qn["[object Int16Array]"]=qn["[object Int32Array]"]=qn["[object Map]"]=qn["[object Number]"]=qn[Xn]=qn["[object RegExp]"]=qn["[object Set]"]=qn["[object String]"]=qn["[object Symbol]"]=qn["[object Uint8Array]"]=qn["[object Uint8ClampedArray]"]=qn["[object Uint16Array]"]=qn["[object Uint32Array]"]=!0,qn["[object Error]"]=qn[Kn]=qn["[object WeakMap]"]=!1;const Zn=function t(e,n,r,s,o,i){var a,c=1&n,u=2&n,l=4&n;if(r&&(a=o?r(e,s,o,i):r(e)),void 0!==a)return a;if(!ut(e))return e;var f=ce(e);if(f){if(a=Cn(e),!c)return Xe(e,a)}else{var h=An(e),g=h==Kn||"[object GeneratorFunction]"==h;if(ge(e))return Ke(e,c);if(h==Xn||h==Wn||g&&!o){if(a=u||g?{}:Bn(e),!c)return u?rn(e,Ge(a,e)):$e(e,Pe(a,e))}else{if(!qn[h])return o?e:{};a=Dn(e,h,c)}}i||(i=new qt);var d=i.get(e);if(d)return d;i.set(e,a),zn(e)?e.forEach((function(s){a.add(t(s,n,r,s,e,i))})):Gn(e)&&e.forEach((function(s,o){a.set(o,t(s,n,r,o,e,i))}));var p=f?void 0:(l?u?an:on:u?je:De)(e);return Zt(p||e,(function(s,o){p&&(s=e[o=s]),$t(a,o,t(s,n,r,o,e,i))})),a};const Jn=function(t){return Zn(t,5)};const Yn=function(t){return"symbol"==typeof t||ne(t)&&"[object Symbol]"==ct(t)};var Qn=/\.|\[(?:[^[\]]*|(["'])(?:(?!\1)[^\\]|\\.)*?\1)\]/,$n=/^\w*$/;const tr=function(t,e){if(ce(t))return!1;var n=typeof t;return!("number"!=n&&"symbol"!=n&&"boolean"!=n&&null!=t&&!Yn(t))||($n.test(t)||!Qn.test(t)||null!=e&&t in Object(e))};function er(t,e){if("function"!=typeof t||null!=e&&"function"!=typeof e)throw new TypeError("Expected a function");var n=function(){var r=arguments,s=e?e.apply(this,r):r[0],o=n.cache;if(o.has(s))return o.get(s);var i=t.apply(this,r);return n.cache=o.set(s,i)||o,i};return n.cache=new(er.Cache||Wt),n}er.Cache=Wt;const nr=er;var rr=/[^.[\]]+|\[(?:(-?\d+(?:\.\d+)?)|(["'])((?:(?!\2)[^\\]|\\.)*?)\2)\]|(?=(?:\.|\[\])(?:\.|\[\]|$))/g,sr=/\\(\\)?/g;const or=function(t){var e=nr(t,(function(t){return 500===n.size&&n.clear(),t})),n=e.cache;return e}((function(t){var e=[];return 46===t.charCodeAt(0)&&e.push(""),t.replace(rr,(function(t,n,r,s){e.push(r?s.replace(sr,"$1"):n||t)})),e}));const ir=function(t,e){for(var n=-1,r=null==t?0:t.length,s=Array(r);++n<r;)s[n]=e(t[n],n,t);return s};var ar=$?$.prototype:void 0,cr=ar?ar.toString:void 0;const ur=function t(e){if("string"==typeof e)return e;if(ce(e))return ir(e,t)+"";if(Yn(e))return cr?cr.call(e):"";var n=e+"";return"0"==n&&1/e==-1/0?"-0":n};const lr=function(t){return null==t?"":ur(t)};const fr=function(t,e){return ce(t)?t:tr(t,e)?[t]:or(lr(t))};const hr=function(t){if("string"==typeof t||Yn(t))return t;var e=t+"";return"0"==e&&1/t==-1/0?"-0":e};const gr=function(t,e,n,r){if(!ut(t))return t;for(var s=-1,o=(e=fr(e,t)).length,i=o-1,a=t;null!=a&&++s<o;){var c=hr(e[s]),u=n;if("__proto__"===c||"constructor"===c||"prototype"===c)return t;if(s!=i){var l=a[c];void 0===(u=r?r(l,c,a):void 0)&&(u=ut(l)?l:pe(e[s+1])?[]:{})}$t(a,c,u),a=a[c]}return t};const dr=function(t,e,n){return null==t?t:gr(t,e,n)};const pr=function(t){return this.__data__.set(t,"__lodash_hash_undefined__"),this};const mr=function(t){return this.__data__.has(t)};function Ir(t){var e=-1,n=null==t?0:t.length;for(this.__data__=new Wt;++e<n;)this.add(t[e])}Ir.prototype.add=Ir.prototype.push=pr,Ir.prototype.has=mr;const Er=Ir;const br=function(t,e){for(var n=-1,r=null==t?0:t.length;++n<r;)if(e(t[n],n,t))return!0;return!1};const Tr=function(t,e){return t.has(e)};const _r=function(t,e,n,r,s,o){var i=1&n,a=t.length,c=e.length;if(a!=c&&!(i&&c>a))return!1;var u=o.get(t),l=o.get(e);if(u&&l)return u==e&&l==t;var f=-1,h=!0,g=2&n?new Er:void 0;for(o.set(t,e),o.set(e,t);++f<a;){var d=t[f],p=e[f];if(r)var m=i?r(p,d,f,e,t,o):r(d,p,f,t,e,o);if(void 0!==m){if(m)continue;h=!1;break}if(g){if(!br(e,(function(t,e){if(!Tr(g,e)&&(d===t||s(d,t,n,r,o)))return g.push(e)}))){h=!1;break}}else if(d!==p&&!s(d,p,n,r,o)){h=!1;break}}return o.delete(t),o.delete(e),h};const yr=function(t){var e=-1,n=Array(t.size);return t.forEach((function(t,r){n[++e]=[r,t]})),n};const Ar=function(t){var e=-1,n=Array(t.size);return t.forEach((function(t){n[++e]=t})),n};var kr=$?$.prototype:void 0,Cr=kr?kr.valueOf:void 0;const Lr=function(t,e,n,r,s,o,i){switch(n){case"[object DataView]":if(t.byteLength!=e.byteLength||t.byteOffset!=e.byteOffset)return!1;t=t.buffer,e=e.buffer;case"[object ArrayBuffer]":return!(t.byteLength!=e.byteLength||!o(new Ln(t),new Ln(e)));case"[object Boolean]":case"[object Date]":case"[object Number]":return x(+t,+e);case"[object Error]":return t.name==e.name&&t.message==e.message;case"[object RegExp]":case"[object String]":return t==e+"";case"[object Map]":var a=yr;case"[object Set]":var c=1&r;if(a||(a=Ar),t.size!=e.size&&!c)return!1;var u=i.get(t);if(u)return u==e;r|=2,i.set(t,e);var l=_r(a(t),a(e),r,s,o,i);return i.delete(t),l;case"[object Symbol]":if(Cr)return Cr.call(t)==Cr.call(e)}return!1};var Nr=Object.prototype.hasOwnProperty;const Rr=function(t,e,n,r,s,o){var i=1&n,a=on(t),c=a.length;if(c!=on(e).length&&!i)return!1;for(var u=c;u--;){var l=a[u];if(!(i?l in e:Nr.call(e,l)))return!1}var f=o.get(t),h=o.get(e);if(f&&h)return f==e&&h==t;var g=!0;o.set(t,e),o.set(e,t);for(var d=i;++u<c;){var p=t[l=a[u]],m=e[l];if(r)var I=i?r(m,p,l,e,t,o):r(p,m,l,t,e,o);if(!(void 0===I?p===m||s(p,m,n,r,o):I)){g=!1;break}d||(d="constructor"==l)}if(g&&!d){var E=t.constructor,b=e.constructor;E==b||!("constructor"in t)||!("constructor"in e)||"function"==typeof E&&E instanceof E&&"function"==typeof b&&b instanceof b||(g=!1)}return o.delete(t),o.delete(e),g};var Sr="[object Arguments]",Mr="[object Array]",vr="[object Object]",wr=Object.prototype.hasOwnProperty;const Or=function(t,e,n,r,s,o){var i=ce(t),a=ce(e),c=i?Mr:An(t),u=a?Mr:An(e),l=(c=c==Sr?vr:c)==vr,f=(u=u==Sr?vr:u)==vr,h=c==u;if(h&&ge(t)){if(!ge(e))return!1;i=!0,l=!1}if(h&&!l)return o||(o=new qt),i||Ce(t)?_r(t,e,n,r,s,o):Lr(t,e,c,n,r,s,o);if(!(1&n)){var g=l&&wr.call(t,"__wrapped__"),d=f&&wr.call(e,"__wrapped__");if(g||d){var p=g?t.value():t,m=d?e.value():e;return o||(o=new qt),s(p,m,n,r,o)}}return!!h&&(o||(o=new qt),Rr(t,e,n,r,s,o))};const Fr=function t(e,n,r,s,o){return e===n||(null==e||null==n||!ne(e)&&!ne(n)?e!=e&&n!=n:Or(e,n,r,s,t,o))};const Dr=function(t,e){return Fr(t,e)};const Pr=function(t){var e=null==t?0:t.length;return e?t[e-1]:void 0};const xr=function(t,e){for(var n=0,r=(e=fr(e,t)).length;null!=t&&n<r;)t=t[hr(e[n++])];return n&&n==r?t:void 0};const Br=function(t,e,n){var r=-1,s=t.length;e<0&&(e=-e>s?0:s+e),(n=n>s?s:n)<0&&(n+=s),s=e>n?0:n-e>>>0,e>>>=0;for(var o=Array(s);++r<s;)o[r]=t[r+e];return o};const Ur=function(t,e){return e.length<2?t:xr(t,Br(e,0,-1))};const jr=function(t,e){return e=fr(e,t),null==(t=Ur(t,e))||delete t[hr(Pr(e))]};const Gr=function(t,e){return null==t||jr(t,e)},Vr=Hr;function Hr(t,e){const n=zr();return(Hr=function(t,e){return n[t-=179]})(t,e)}function zr(){const t=["data","getMarkerNames","end","creator","removeAttribute","toJSON","substr","393468XyfepU","5558360vHKxmp","21RIGRmu","delete","isIntersecting","_markerNames","authoredAt","getAllAdjacentSuggestions","onDiscard","isMultiRange","8914320tTdJJT","5113314cNYvnJ","from","author","push","_isDataLoaded","_onDiscard","addRange","attributes","subType","@external","isIntersectingWithRange","getItems","1394996YuuhtW","getMarkers","removeMarker","onAttributesChange","_model","get","markers","filter","73941BDaXDn","discard","change","getRange","303939xvqnsV","previous","setAttribute","suggestion:","776DWPPEb","hasComments","_onAttributesChange","start","decorate","size","head","getFirstMarker","onAccept","createdAt","removeMarkers","set","nodeAfter","clear","accept","isInContent","addMarker","getRanges","getContainedElement","_onAccept","length","commentThread","add","getFirstRange","next","type","map","_saved","isExternal","getMultiRangeId","reduce","nodeBefore","addMarkerName","split"];return(zr=function(){return t})()}!function(t){const e=Hr,n=t();for(;;)try{if(584538===-parseInt(e(247))/1+-parseInt(e(235))/2+-parseInt(e(214))/3*(parseInt(e(212))/4)+parseInt(e(213))/5+-parseInt(e(223))/6+parseInt(e(243))/7*(parseInt(e(251))/8)+parseInt(e(222))/9)break;n.push(n.shift())}catch(t){n.push(n.shift())}}(zr);class Wr extends((0,e.ObservableMixin)()){constructor(t,e){const n=Hr;super(),this[n(227)]=!1,this.id=e.id,this[n(196)]=e[n(196)],this[n(231)]=e[n(231)]||null,this[n(225)]=e[n(225)],this[n(208)]=e[n(208)]||e[n(225)],this[n(199)]=Boolean(e[n(230)]&&e[n(230)][n(232)]),this[n(205)]=null,this[n(239)]=t,this[n(190)]=e[n(179)],this[n(228)]=e[n(220)],this[n(253)]=e[n(238)],this[n(217)]=new Set,this[n(180)]=null,this[n(182)](n(218),null),this[n(182)](n(230),e[n(230)]||{}),this[n(182)](n(248),null),this[n(182)](n(195),null),this[n(182)](n(192),null),this[n(182)](n(198),!1),this[n(255)](n(185)),this[n(255)](n(244))}get[Vr(257)](){const t=Vr;let e=this;for(;e[t(248)];)e=e[t(248)];return e}get[Vr(252)](){const t=Vr;return!!this[t(192)]&&this[t(192)][t(191)]>0}get[Vr(221)](){const t=Vr;return 0!=this[t(217)][t(256)]&&6==Array[t(224)](this[t(217)])[0][t(204)](":")[t(191)]}get[Vr(186)](){return null!==this[Vr(258)]()}[Vr(203)](t){const e=Vr;this[e(217)][e(193)](t)}[Vr(206)](){const t=Vr;return Array[t(224)](this[t(217)])}[Vr(236)](){const t=Vr;return this[t(206)]()[t(197)]((e=>this[t(239)][t(241)][t(240)](e)))[t(242)]((t=>t))}[Vr(258)](){return this[Vr(236)]()[0]||null}[Vr(181)](){const t=Vr;this[t(239)][t(245)]((e=>{const n=t;for(const t of this[n(236)]())e[n(237)](t)})),this[t(217)][t(184)]()}[Vr(237)](t){const e=Vr;this[e(239)][e(245)]((n=>{n[e(237)](t)})),this[e(217)][e(215)](t)}[Vr(229)](t){const e=Vr,n=e(250)+this[e(196)]+":"+this[e(231)]+":"+this.id+":"+this[e(208)].id+":"+Wr[e(200)]();this[e(203)](n),this[e(239)][e(245)]((r=>{r[e(187)](n,{range:t,usingOperation:!0,affectsData:!0})}))}[Vr(233)](t){const e=Vr;for(const n of this[e(188)]())if(n[e(216)](t))return!0;return!1}[Vr(188)](){const t=Vr;return this[t(236)]()[t(197)]((e=>e[t(246)]()))}[Vr(234)](){const t=Vr;return this[t(188)]()[t(201)](((e,n)=>[...e,...n[t(234)]()]),[])}[Vr(194)](){const t=Vr;var e;return(null===(e=this[t(258)]())||void 0===e?void 0:e[t(246)]())||null}[Vr(189)](){const t=Vr,e=this[t(188)]();if(1!=e[t(191)])return null;const n=e[0],r=n[t(254)][t(183)],s=n[t(207)][t(202)];return r instanceof i.Element?r!=s?null:r:null}[Vr(185)](){const t=Vr;this[t(190)](this[t(188)](),this[t(205)],this[t(230)]),this[t(181)]()}[Vr(244)](){const t=Vr;this[t(228)](this[t(188)](),this[t(205)],this[t(230)]),this[t(181)]()}[Vr(219)](){const t=Vr,e=[];let n=this[t(257)];for(;n;)e[t(226)](n),n=n[t(195)];return e}[Vr(249)](t,e){const n=Vr,r=Jn(this[n(230)]);dr(r,t,e),Dr(r,this[n(230)])||(this[n(230)]=r,this[n(253)](r))}[Vr(209)](t){const e=Vr,n=Jn(this[e(230)]);Gr(n,t),Dr(n,this[e(230)])||(this[e(230)]=n,this[e(253)](this[e(230)]))}[Vr(210)](){const t=Vr;return{id:this.id,type:this[t(231)]?this[t(196)]+":"+this[t(231)]:this[t(196)],authorId:this[t(208)].id,createdAt:this[t(180)],hasComments:this[t(252)],data:this[t(205)],attributes:this[t(230)]}}static[Vr(200)](){const t=Vr;return(0,e.uid)()[t(211)](1,5)}}function Kr(t,e,n){const r=t.t;switch(e){case"Track changes":return r("Track changes");case"Accept suggestion":return r("Accept suggestion");case"Discard suggestion":return r("Discard suggestion");case"Accept all suggestions":return r("Accept all suggestions");case"Accept all selected suggestions":return r("Accept all selected suggestions");case"Discard all suggestions":return r("Discard all suggestions");case"Discard all selected suggestions":return r("Discard all selected suggestions");case"*Reset font size*":return r("*Reset font size*");case"*Reset font family*":return r("*Reset font family*");case"*Reset font color*":return r("*Reset font color*");case"*Reset font background color*":return r("*Reset font background color*");case"*Remove image text alternative*":return r("*Remove image text alternative*");case"*Reset image width*":return r("*Reset image width*");case"*Remove link*":return r("*Remove link*");case"*Check item*":return r("*Check item*");case"*Uncheck item*":return r("*Uncheck item*");case"*Remove all formatting*":return r("*Remove all formatting*");case"*Replace table cells*":return r("*Replace table cells*");case"*Merge cells*":return r("*Merge cells*");case"*Split cell:* vertically":return r("*Split cell:* vertically");case"*Split cell:* horizontally":return r("*Split cell:* horizontally");case"*Indent:* %0":return r("*Indent:* %0",n);case"*Outdent:* %0":return r("*Outdent:* %0",n);case"*Change to:* %0":return r("*Change to:* %0",n);case"*Insert:* %0":return r("*Insert:* %0",n);case"*Format:* %0":return r("*Format:* %0",n);case"*Format:* change table properties":return r("*Format:* change table properties");case"*Format:* change table cell properties":return r("*Format:* change table cell properties");case"*Format:* insert into %0":return r("*Format:* insert into %0",n);case"*Format:* remove from %0":return r("*Format:* remove from %0",n);case"*Replace image URL*":return r("*Replace image URL*");case"*Format:* resize table":return r("*Format:* resize table");case"*Format:* set order to reversed":return r("*Format:* set order to reversed");case"*Format:* set order to regular":return r("*Format:* set order to regular");case"*Format:* set start index to %0":return r("*Format:* set start index to %0",n);case"*Change %0 content*":return r("*Change %0 content*",n);case"*Remove:* %0":return r("*Remove:* %0",n);case"*Merge:* %0":return r("*Merge:* %0",n);case"*Split:* %0":return r("*Split:* %0",n);case"*Remove format:* %0":return r("*Remove format:* %0",n);case"*Set font size:* %0":return r("*Set font size:* %0",n);case"*Set font family:* %0":return r("*Set font family:* %0",n);case"*Set format to:* %0":return r("*Set format to:* %0",n);case"*Set font color:* %0":return r("*Set font color:* %0",n);case"*Set font background color:* %0":return r("*Set font background color:* %0",n);case"*Set format:* %0":return r("*Set format:* %0",n);case"*Set image text alternative:* %0":return r("*Set image text alternative:* %0",n);case"*Set image width:* %0":return r("*Set image width:* %0",n);case"*Set link:* %0":return r("*Set link:* %0",n);case"*Set highlight:* %0":return r("*Set highlight:* %0",n);case"*Remove highlight*":return r("*Remove highlight*");case"FORMAT_HIGHLIGHT":return r({string:"highlight",id:"FORMAT_HIGHLIGHT"});case"FORMAT_RESTRICTED_ENABLED":return r({string:"*Enable in restricted editing mode*",id:"FORMAT_RESTRICTED_ENABLED"});case"FORMAT_RESTRICTED_DISABLED":return r({string:"*Disable in restricted editing mode*",id:"FORMAT_RESTRICTED_DISABLED"});case"ELEMENT_TABLE":return r({string:"table",plural:"%0 tables",id:"ELEMENT_TABLE"},n);case"ELEMENT_PARAGRAPH":return r({string:"paragraph",plural:"%0 paragraphs",id:"ELEMENT_PARAGRAPH"},n);case"ELEMENT_PAGE_BREAK":return r({string:"page break",plural:"%0 page breaks",id:"ELEMENT_PAGE_BREAK"},n);case"ELEMENT_MEDIA":return r({string:"media item",plural:"%0 media items",id:"ELEMENT_MEDIA"},n);case"ELEMENT_IMAGE":return r({string:"image",plural:"%0 images",id:"ELEMENT_IMAGE"},n);case"ELEMENT_INLINE_IMAGE":return r({string:"image",plural:"%0 images",id:"ELEMENT_INLINE_IMAGE"},n);case"FORMAT_SIDE_IMAGE":return r({string:"side image",id:"FORMAT_SIDE_IMAGE"});case"ELEMENT_CAPTION":return r({string:"caption",id:"ELEMENT_CAPTION"});case"ELEMENT_HORIZONTAL_LINE":return r({string:"horizontal line",plural:"%0 horizontal lines",id:"ELEMENT_HORIZONTAL_LINE"},n);case"ELEMENT_HTML_EMBED":return r({string:"HTML embed",plural:"%0 HTML embeds",id:"ELEMENT_HTML_EMBED"},n);case"ELEMENT_HEADING":return r({string:"heading (level %1)",plural:"%0 headings (level %1)",id:"ELEMENT_HEADING"},n);case"ELEMENT_HEADING_CUSTOM":return r({string:"heading (%1)",plural:"%0 headings (%1)",id:"ELEMENT_HEADING_CUSTOM"},n);case"ELEMENT_LIST_ITEM":return r({string:"list item",plural:"%0 list items",id:"ELEMENT_LIST_ITEM"},n);case"ELEMENT_DEFAULT_LIST_DEFAULT":return r({string:"default list style",id:"ELEMENT_DEFAULT_LIST_DEFAULT"});case"ELEMENT_BULLETED_LIST":return r({string:"bulleted list",id:"ELEMENT_BULLETED_LIST"});case"ELEMENT_BULLETED_LIST_DEFAULT":return r({string:"bulleted list (default)",id:"ELEMENT_BULLETED_LIST_DEFAULT"});case"ELEMENT_BULLETED_LIST_CIRCLE":return r({string:"bulleted list (circle)",id:"ELEMENT_BULLETED_LIST_CIRCLE"});case"ELEMENT_BULLETED_LIST_DISC":return r({string:"bulleted list (disc)",id:"ELEMENT_BULLETED_LIST_DISC"});case"ELEMENT_BULLETED_LIST_SQUARE":return r({string:"bulleted list (square)",id:"ELEMENT_BULLETED_LIST_SQUARE"});case"ELEMENT_NUMBERED_LIST_DEFAULT":return r({string:"numbered list (default)",id:"ELEMENT_NUMBERED_LIST_DEFAULT"});case"ELEMENT_NUMBERED_LIST":return r({string:"numbered list",id:"ELEMENT_NUMBERED_LIST"});case"ELEMENT_NUMBERED_LIST_DECIMAL":return r({string:"numbered list (decimal)",id:"ELEMENT_NUMBERED_LIST_DECIMAL"});case"ELEMENT_NUMBERED_LIST_DECIMAL_LEADING_ZERO":return r({string:"numbered list (decimal with leading zero)",id:"ELEMENT_NUMBERED_LIST_DECIMAL_LEADING_ZERO"});case"ELEMENT_NUMBERED_LIST_LOWER_LATIN":return r({string:"numbered list (lower-latin)",id:"ELEMENT_NUMBERED_LIST_LOWER_LATIN"});case"ELEMENT_NUMBERED_LIST_LOWER_ROMAN":return r({string:"numbered list (lower-roman)",id:"ELEMENT_NUMBERED_LIST_LOWER_ROMAN"});case"ELEMENT_NUMBERED_LIST_UPPER_LATIN":return r({string:"numbered list (upper-latin)",id:"ELEMENT_NUMBERED_LIST_UPPER_LATIN"});case"ELEMENT_NUMBERED_LIST_UPPER_ROMAN":return r({string:"numbered list (upper-roman)",id:"ELEMENT_NUMBERED_LIST_UPPER_ROMAN"});case"ELEMENT_TODO_LIST":return r({string:"to-do list",id:"ELEMENT_TODO_LIST"});case"ELEMENT_MULTI_LEVEL_LIST":return r({string:"multi-level list",id:"ELEMENT_MULTI_LEVEL_LIST"});case"REPLACE_TEXT":return r({string:"*Replace:* %0 *with* %1",id:"REPLACE_TEXT"},n);case"ELEMENT_SPACE":return r({string:"space",plural:"%0 spaces",id:"ELEMENT_SPACE"},n);case"FORMAT_ALIGNMENT":return r({string:"alignment",id:"FORMAT_ALIGNMENT"});case"FORMAT_ALIGN_TO_LEFT":return r({string:"align to left",id:"FORMAT_ALIGN_TO_LEFT"});case"FORMAT_ALIGN_TO_RIGHT":return r({string:"align to right",id:"FORMAT_ALIGN_TO_RIGHT"});case"FORMAT_ALIGN_TO_CENTER":return r({string:"align to center",id:"FORMAT_ALIGN_TO_CENTER"});case"FORMAT_JUSTIFY_TEXT":return r({string:"justify",id:"FORMAT_JUSTIFY_TEXT"});case"FORMAT_BOLD":return r({string:"bold",id:"FORMAT_BOLD"});case"FORMAT_ITALIC":return r({string:"italic",id:"FORMAT_ITALIC"});case"FORMAT_UNDERLINE":return r({string:"underline",id:"FORMAT_UNDERLINE"});case"FORMAT_CODE":return r({string:"code",id:"FORMAT_CODE"});case"FORMAT_STRIKETHROUGH":return r({string:"strikethrough",id:"FORMAT_STRIKETHROUGH"});case"FORMAT_SUBSCRIPT":return r({string:"subscript",id:"FORMAT_SUBSCRIPT"});case"FORMAT_SUPERSCRIPT":return r({string:"superscript",id:"FORMAT_SUPERSCRIPT"});case"ELEMENT_BLOCK_QUOTE":return r({string:"block quote",id:"ELEMENT_BLOCK_QUOTE"});case"ELEMENT_CODE_BLOCK":return r({string:"code block",plural:"%0 code blocks",id:"ELEMENT_CODE_BLOCK"},n);case"FORMAT_HEADER_COLUMN":return r({string:"header column",id:"FORMAT_HEADER_COLUMN"});case"FORMAT_REGULAR_COLUMN":return r({string:"regular column",id:"FORMAT_REGULAR_COLUMN"});case"FORMAT_HEADER_ROW":return r({string:"header row",id:"FORMAT_HEADER_ROW"});case"FORMAT_REGULAR_ROW":return r({string:"regular row",id:"FORMAT_REGULAR_ROW"});case"FORMAT_INDENT":return r({string:"indent",id:"FORMAT_INDENT"});case"FORMAT_LIST_REVERSED":return r({string:"list reversed",id:"FORMAT_LIST_REVERSED"});case"FORMAT_LIST_START":return r({string:"list start",id:"FORMAT_LIST_START"});case"FORMAT_FONT_SIZE":return r({string:"font size",id:"FORMAT_FONT_SIZE"});case"FORMAT_FONT_FAMILY":return r({string:"font family",id:"FORMAT_FONT_FAMILY"});case"FORMAT_FONT_COLOR":return r({string:"font color",id:"FORMAT_FONT_COLOR"});case"FORMAT_FONT_BACKGROUND":return r({string:"font background color",id:"FORMAT_FONT_BACKGROUND"});case"FORMAT_IMAGE_SIZE":return r({string:"image size",id:"FORMAT_IMAGE_SIZE"});case"FORMAT_STYLE":return r({string:"style",id:"FORMAT_STYLE"});case"PENDING_ACTION_SUGGESTION":return r({string:"Unsaved change in suggestion.",id:"PENDING_ACTION_SUGGESTION"});case"ELEMENT_TABLE_WITH_TEXT":return r({string:"table *with text* %0",id:"ELEMENT_TABLE_WITH_TEXT"},n);case"ELEMENT_TABLE_ROW":return r({string:"table row",plural:"%0 table rows",id:"ELEMENT_TABLE_ROW"},n);case"ELEMENT_TABLE_ROW_WITH_TEXT":return r({string:"table row *with text* %1",plural:"%0 table rows *with text* %1",id:"ELEMENT_TABLE_ROW_WITH_TEXT"},n);case"ELEMENT_TABLE_COLUMN":return r({string:"table column",plural:"%0 table columns",id:"ELEMENT_TABLE_COLUMN"},n);case"ELEMENT_TABLE_COLUMN_WITH_TEXT":return r({string:"table column *with text* %1",plural:"%0 table columns *with text* %1",id:"ELEMENT_TABLE_COLUMN_WITH_TEXT"},n);case"ELEMENT_TABLE_OF_CONTENTS":return r({string:"table of contents",plural:"%0 tables of contents",id:"ELEMENT_TABLE_OF_CONTENTS"},n);case"ELEMENT_LINE_BREAK":return r({id:"ELEMENT_LINE_BREAK",string:"line break",plural:"%0 line breaks"},n);case"ELEMENT_TITLE":return r({id:"ELEMENT_TITLE",string:"title"});case"ELEMENT_MERGE_FIELD":return r({id:"ELEMENT_MERGE_FIELD",string:"merge field",plural:"%0 merge fields"},n);case"EXTERNAL_SUGGESTION":return r({id:"EXTERNAL_SUGGESTION",string:"This suggestion comes from an external source."});case"EXTERNAL_IMPORT_WORD_SUGGESTION":return r({string:"This suggestion comes from an imported Word file.",id:"EXTERNAL_IMPORT_WORD_SUGGESTION"});case"EXTERNAL_AVATAR":return r({string:"Displayed author name comes from external source (added by %0)",id:"EXTERNAL_AVATAR"},n);case"EXTERNAL_IMPORT_WORD_AVATAR":return r({string:"Displayed author name comes from a Word document imported by %0",id:"EXTERNAL_IMPORT_WORD_AVATAR"},n);case"ENTER_INSERTION_SUGGESTION_ANNOUNCEMENT":return r({string:"Entering insertion suggestion. Press %0 to go to the discussion.",id:"ENTER_INSERTION_SUGGESTION_ANNOUNCEMENT"},n);case"LEAVE_INSERTION_SUGGESTION_ANNOUNCEMENT":return r({string:"Leaving insertion suggestion.",id:"LEAVE_INSERTION_SUGGESTION_ANNOUNCEMENT"});case"ENTER_DELETION_SUGGESTION_ANNOUNCEMENT":return r({string:"Entering deletion suggestion. Press %0 to go to the discussion.",id:"ENTER_DELETION_SUGGESTION_ANNOUNCEMENT"},n);case"LEAVE_DELETION_SUGGESTION_ANNOUNCEMENT":return r({string:"Leaving deletion suggestion.",id:"LEAVE_DELETION_SUGGESTION_ANNOUNCEMENT"});case"ENTER_FORMATTING_SUGGESTION_ANNOUNCEMENT":return r({string:"Entering formatting suggestion. Press %0 to go to the discussion.",id:"ENTER_FORMATTING_SUGGESTION_ANNOUNCEMENT"},n);case"LEAVE_FORMATTING_SUGGESTION_ANNOUNCEMENT":return r({string:"Leaving formatting suggestion.",id:"LEAVE_FORMATTING_SUGGESTION_ANNOUNCEMENT"});case"SUGGESTION_THREAD_ARIA_LABEL":return r({string:"Suggestion by %1. Created on %2. %0 reply. %3",plural:"Suggestion by %1. Created on %2. %0 replies. %3",id:"SUGGESTION_THREAD_ARIA_LABEL"},n);case"SUGGESTION_THREAD_DESCRIPTION":return r({string:"Press Enter for more options. Press Escape to exit.",id:"SUGGESTION_THREAD_DESCRIPTION"});default:return e}}const Xr=Zr;!function(t){const e=Zr,n=t();for(;;)try{if(470098===parseInt(e(435))/1*(-parseInt(e(444))/2)+parseInt(e(520))/3*(-parseInt(e(452))/4)+-parseInt(e(483))/5+parseInt(e(459))/6+parseInt(e(486))/7*(-parseInt(e(438))/8)+parseInt(e(507))/9*(-parseInt(e(499))/10)+-parseInt(e(494))/11*(-parseInt(e(492))/12))break;n.push(n.shift())}catch(t){n.push(n.shift())}}(Jr);class qr{constructor(t,e){const n=Zr;this[n(500)]=[],this[n(449)]=new Map,this[n(484)]=[],this[n(493)]=new Map,this[n(491)]=t,this[n(430)]=e}[Xr(473)](t){const e=Xr,n=[],r=new Set,s=new Set;for(let o=0;o<t[e(516)];o++){const i=t[o];if(!i[e(442)])continue;const a=this[e(446)](i);if(a){if(null!=i[e(434)]){if(r[e(436)](i[e(434)]))continue;r[e(476)](i[e(434)])}n[e(441)](a)}else if(e(470)!=i[e(514)])e(468)!=i[e(514)]&&e(431)!=i[e(514)]||this[e(512)](n,i,t[o+1]);else{const t=i[e(458)][e(518)];if(s[e(436)](t))continue;s[e(476)](i[e(458)][e(518)]),t==Lc?this[e(477)](n,i):this[e(524)](n,i)}}return this[e(454)](n)}[Xr(428)](t){const e=Xr;this[e(500)][e(441)](t)}[Xr(479)](t,n,r=e.priorities[Xr(474)]){const s=Xr;s(456)==typeof t?(0,e.insertToPriorityArray)(this[s(484)],{matchingCallback:t,label:n,priority:r}):this[s(449)][s(432)](t,n)}[Xr(453)](t,e){const n=Xr;this[n(493)][n(432)](t,e)}[Xr(451)](t,e=1){const n=Xr;let r;for(const e of this[n(484)])if(e[n(510)](t)){r=e[n(502)];break}return r||(r=this[n(449)][n(515)](t[n(501)])),r?r(e):1!==e?e+" "+t[n(501)]+"s":""+t[n(501)]}[Xr(490)](t,e){const n=Xr,r=e[n(482)]()[n(509)](),s=n(468)==e[n(514)]?n(476):n(457);for(const e of r){const o=e[n(471)],i=t[t[n(516)]-1];if(o.is(n(517)))i&&i[n(514)][n(455)](n(469))>-1&&t[n(498)](),i&&n(489)==i[n(514)]?i[s]+=o[n(458)]:t[n(441)]({type:n(489),add:n(476)==s?o[n(458)]:"",remove:n(457)==s?o[n(458)]:""});else if(this[n(491)][n(503)](o)){const a=o;if(i&&i[n(514)][n(455)](n(469))>-1&&t[n(498)](),n(511)==e[n(514)])continue;i&&i[n(514)]==s+n(445)&&i[n(478)][n(501)]==a[n(501)]?i[n(463)]++:t[n(441)]({type:s+n(445),element:a,quantity:1}),r[n(485)]((t=>!(n(511)==t[n(514)]&&t[n(471)]==o)))}else if(this[n(491)][n(472)](o,n(519))||o.is(n(478),n(521))){const r=o;if(n(476)==s&&n(429)==e[n(514)]||n(457)==s&&n(511)==e[n(514)])continue;if(i&&-1==i[n(514)][n(455)](n(469))){n(489)==i[n(514)]&&(i[s]+="\n");continue}let a;if(a=n(476)==s?r[n(447)]&&!this[n(491)][n(503)](r[n(447)])?r[n(447)]:null:r[n(481)]&&!this[n(491)][n(503)](r[n(481)])?r[n(481)]:null,r[n(433)]||a&&a[n(433)]){const e=a&&a[n(433)]?a:r;i&&i[n(514)]==s+n(439)&&i[n(478)][n(501)]==e[n(501)]?i[n(463)]++:t[n(441)]({type:s+n(439),element:e,quantity:1})}else t[n(441)]({type:s+n(469),element:r})}}}[Xr(454)](t){const e=Xr,n=this[e(430)],r=[],s=[],o=[];for(const i of t)switch(i[e(514)]){case e(489):if(i[e(476)]=i[e(476)][e(488)](/(\S)\u000A+(\S)/g,e(495))[e(488)](/\u000A/g,""),i[e(457)]=i[e(457)][e(488)](/(\S)\u000A+(\S)/g,e(495))[e(488)](/\u000A/g,""),""!=i[e(476)]&&""!=i[e(457)]){r[e(441)]({type:e(488),content:Kr(n,e(427),['"'+i[e(457)]+'"','"'+i[e(476)]+'"'])});continue}if(null!=i[e(476)][e(504)](/^ +$/)){r[e(441)]({type:e(468),content:Kr(n,e(480),Kr(n,e(513),i[e(476)][e(516)]))});continue}if(null!=i[e(457)][e(504)](/^ +$/)){r[e(441)]({type:e(431),content:Kr(n,e(461),Kr(n,e(513),i[e(457)][e(516)]))});continue}if(""!=i[e(476)]){r[e(441)]({type:e(468),content:Kr(n,e(480),'"'+i[e(476)]+'"')});continue}r[e(441)]({type:e(431),content:Kr(n,e(461),'"'+i[e(457)]+'"')});continue;case e(465):case e(450):r[e(441)]({type:e(468),content:Kr(n,e(480),this[e(451)](i[e(478)],i[e(463)]))});continue;case e(466):case e(464):r[e(441)]({type:e(431),content:Kr(n,e(461),this[e(451)](i[e(478)],i[e(463)]))});continue;case e(440):r[e(441)]({type:e(468),content:Kr(n,e(522),this[e(451)](i[e(478)],i[e(463)]))});continue;case e(475):r[e(441)]({type:e(431),content:Kr(n,e(506),this[e(451)](i[e(478)],i[e(463)]))});continue;case e(496):s[e(441)](i[e(518)]);continue;case e(523):o[e(441)](i[e(518)]);continue;default:r[e(441)](i)}if(s[e(516)]){const t=s[e(462)]((t=>this[e(493)][e(436)](t)?this[e(493)][e(515)](t):t))[e(487)](", ");r[e(441)]({type:e(467),content:Kr(this[e(430)],e(443),t)})}if(o[e(516)]){const t=o[e(462)]((t=>this[e(493)][e(436)](t)?this[e(493)][e(515)](t):t))[e(487)](", ");r[e(441)]({type:e(467),content:Kr(this[e(430)],e(508),t)})}return r}[Xr(446)](t){const e=Xr;for(const n of this[e(500)]){const r=n(t);if(r&&e(514)in r)return r}}[Xr(524)](t,e){const n=Xr,r=e[n(458)],s=void 0===r[n(525)]?n(523):n(496);t[n(441)]({type:s,key:r[n(518)]})}[Xr(477)](t,e){const n=Xr;t[n(441)]({type:n(467),content:Kr(this[n(430)],n(497),this[n(451)](e[n(482)]()[n(505)][n(437)],1))})}[Xr(512)](t,e,n){const r=Xr;if(this[r(490)](t,e),n&&n[r(482)]()&&!e[r(482)]()[r(460)][r(448)](n[r(482)]()[r(505)])){const n=t[t[r(516)]-1],s=r(468)==e[r(514)]?r(476):r(457);n&&r(489)==n[r(514)]&&(n[s]+="\n")}}}function Zr(t,e){const n=Jr();return(Zr=function(t,e){return n[t-=427]})(t,e)}function Jr(){const t=["25076qpQqQV","registerAttributeLabel","_resolveDescriptionItems","indexOf","function","remove","data","4812252XctBPC","end","*Remove:* %0","map","quantity","removeObject","addEmptyContainer","removeEmptyContainer","format","insertion","Container","attribute","item","checkChild","getDescriptions","normal","removeContainer","add","_handleRenameSuggestionDescription","element","registerElementLabel","*Insert:* %0","previousSibling","getFirstRange","4146620bWYmGl","_itemLabelsCallbacks","skip","134281EGbQIn","join","replace","text","_addDescriptionItems","_schema","14344608MbhoDi","_attributeLabels","11bVEITb","$1 $2","addFormat","*Change to:* %0","pop","72740zrCzVQ","_customCallbacks","name","label","isObject","match","start","*Merge:* %0","549pRzNbB","*Remove format:* %0","getWalker","matchingCallback","elementEnd","_handleInsertRemoveSuggestionDescription","ELEMENT_SPACE","type","get","length","$textProxy","key","$text","39euRxhn","softBreak","*Split:* %0","removeFormat","_handleAttributeSuggestionDescription","newValue","REPLACE_TEXT","registerDescriptionCallback","elementStart","_locale","deletion","set","isEmpty","subType","4xYWYSG","has","nodeAfter","24OrlBRX","EmptyContainer","addContainer","push","isInContent","*Set format:* %0","57622bFRhua","Object","_handleCustomCallbackDescription","nextSibling","isEqual","_itemLabels","addObject","getItemLabel"];return(Jr=function(){return t})()}const Yr=Qr;function Qr(t,e){const n=$r();return(Qr=function(t,e){return n[t-=499]})(t,e)}function $r(){const t=["commands","9908055XBkhsd","enableCommand","3hQrkPl","editor","get","showAIAssistant","140730NZHcmY","450107jcYtWX","15GCuFUr","afterInit","3630431SQSUHN","TrackChangesEditing","2940728aSTZJa","plugins","560116CjsrcC","2854220IoNkCV"];return($r=function(){return t})()}!function(t){const e=Qr,n=t();for(;;)try{if(423502===parseInt(e(513))/1+parseInt(e(503))/2+parseInt(e(508))/3*(parseInt(e(504))/4)+parseInt(e(514))/5*(-parseInt(e(512))/6)+parseInt(e(499))/7+-parseInt(e(501))/8+-parseInt(e(506))/9)break;n.push(n.shift())}catch(t){n.push(n.shift())}}($r);class ts extends t.Plugin{[Yr(515)](){const t=Yr,e=this[t(509)],n=e[t(502)][t(510)](t(500));e[t(505)][t(510)](t(511))&&n[t(507)](t(511))}}const es=ns;function ns(t,e){const n=rs();return(ns=function(t,e){return n[t-=286]})(t,e)}function rs(){const t=["center","alignment","get","487374uTfiSK","plugins","11291650QSfoMn","format","FORMAT_ALIGN_TO_CENTER","620318pDVdUu","FORMAT_ALIGNMENT","FORMAT_ALIGN_TO_RIGHT","AlignmentEditing","15GwYCkf","_registerLegacyDescription","registerBlockAttribute","justify","FORMAT_JUSTIFY_TEXT","3889010GGHneq","right","FORMAT_ALIGN_TO_LEFT","8HaHKJa","type","registerAttributeLabel","commandName","has","10043688CzmljE","TrackChangesEditing","afterInit","*Format:* %0","descriptionFactory","left","editor","formatBlock","locale","8368038aZxrnB","14dJGLMv","value","commandParams","38813qNgTzI","registerDescriptionCallback","enableDefaultAttributesIntegration"];return(rs=function(){return t})()}!function(t){const e=ns,n=t();for(;;)try{if(999948===parseInt(e(300))/1+-parseInt(e(311))/2*(-parseInt(e(315))/3)+-parseInt(e(323))/4*(parseInt(e(320))/5)+-parseInt(e(306))/6*(-parseInt(e(297))/7)+-parseInt(e(287))/8+parseInt(e(296))/9+parseInt(e(308))/10)break;n.push(n.shift())}catch(t){n.push(n.shift())}}(rs);class ss extends t.Plugin{[es(289)](){const t=es,e=this[t(293)],n=e[t(295)];if(!e[t(307)][t(286)](t(314)))return;const r=e[t(307)][t(305)](t(288));r[t(302)](t(304)),r[t(317)](t(304)),r[t(291)][t(325)](t(304),Kr(n,t(312))),this[t(316)]()}[es(316)](){const t=es,e=this[t(293)],n=e[t(295)];e[t(307)][t(305)](t(288))[t(291)][t(301)]((e=>{const r=t;if(r(294)!=e[r(324)])return;const{data:s}=e;if(s&&r(304)==s[r(326)]){const t=s[r(299)][0][r(298)];return{type:r(309),content:Kr(n,r(290),function(t){const e=r;switch(t){case e(292):return Kr(n,e(322));case e(321):return Kr(n,e(313));case e(303):return Kr(n,e(310));case e(318):return Kr(n,e(319))}}(t))}}}))}}const os=is;function is(t,e){const n=cs();return(is=function(t,e){return n[t-=321]})(t,e)}!function(t){const e=is,n=t();for(;;)try{if(850798===parseInt(e(357))/1+parseInt(e(334))/2*(parseInt(e(370))/3)+-parseInt(e(361))/4*(parseInt(e(353))/5)+parseInt(e(327))/6*(-parseInt(e(351))/7)+-parseInt(e(350))/8+-parseInt(e(355))/9+parseInt(e(342))/10)break;n.push(n.shift())}catch(t){n.push(n.shift())}}(cs);const as=[os(328),os(331),os(349),os(325),os(333),os(346),os(376)];function cs(){const t=["*Format:* %0","registerAttributeLabel","strikethrough","FORMAT_SUBSCRIPT","SuperscriptEditing","bold","descriptionFactory","type","FORMAT_BOLD","CodeEditing","subscript","6cMMbQL","BoldEditing","code","FORMAT_ITALIC","ItalicEditing","*Remove format:* %0","StrikethroughEditing","8IJUQRL","TrackChangesEditing","format","afterInit","underline","locale","enableDefaultAttributesIntegration","FORMAT_CODE","26721520EYIOao","superscript","FORMAT_","italic","SubscriptEditing","toLowerCase","slice","UnderlineEditing","9961608DdaBzP","8335145KSRcVl","FORMAT_SUPERSCRIPT","25ezBNTH","forceValue","14745402bIhZqC","plugins","1676976GUJXCs","get","has","editor","899616ImqtQt","FORMAT_UNDERLINE","registerInlineAttribute","toUpperCase","commandParams","_registerLegacyDescription","commandName","FORMAT_STRIKETHROUGH","registerDescriptionCallback","1275378SwSebG","formatInline"];return(cs=function(){return t})()}class us extends t.Plugin{[os(337)](){const t=os,e=this[t(360)],n=e[t(356)][t(358)](t(335)),r=e[t(339)];for(const s of as){if(!e[t(356)][t(359)](s))continue;const o=s[t(348)](0,-7)[t(347)](),i=t(344)+o[t(364)]();n[t(340)](o),n[t(363)](o),n[t(322)][t(373)](o,Kr(r,i))}this[t(366)]()}[os(366)](){const t=os,e=this[t(360)],n=e[t(339)],r=e[t(356)][t(358)](t(335));function s(e,s){const o=t;r[o(322)][o(369)]((t=>{const r=o;if(r(371)!=t[r(323)])return;const{data:i}=t;return i&&i[r(367)]===e?i[r(365)][0][r(354)]?{type:r(336),content:Kr(n,r(372),s)}:{type:r(336),content:Kr(n,r(332),s)}:void 0}))}s(t(321),Kr(n,t(324))),s(t(345),Kr(n,t(330))),s(t(338),Kr(n,t(362))),s(t(329),Kr(n,t(341))),s(t(374),Kr(n,t(368))),s(t(326),Kr(n,t(375))),s(t(343),Kr(n,t(352)))}}const ls=hs;function fs(){const t=["123UynsVo","15Ghvakq","checkChild","ELEMENT_BLOCK_QUOTE","*Remove format:* %0","format","document","33808360VyaOmG","*Set format:* %0","editor","commands","has","schema","commandName","5628216FOIrmm","locale","markBlockFormat","674368FUmAqL","enableCommand","filter","model","$root","commandParams","parent","870702wjDyLK","164420uQbwBB","2048641SheBeR","from","blockQuote","afterInit","getSelectedBlocks","descriptionFactory","plugins","BlockQuoteEditing","selection","value","9UtxGHt","TrackChangesEditing","forceValue","794669ULNOQY","change","registerDescriptionCallback","name","get"];return(fs=function(){return t})()}function hs(t,e){const n=fs();return(hs=function(t,e){return n[t-=291]})(t,e)}!function(t){const e=hs,n=t();for(;;)try{if(867863===parseInt(e(308))/1+parseInt(e(330))/2+-parseInt(e(313))/3*(-parseInt(e(294))/4)+-parseInt(e(314))/5*(-parseInt(e(293))/6)+parseInt(e(295))/7+parseInt(e(327))/8+parseInt(e(305))/9*(-parseInt(e(320))/10))break;n.push(n.shift())}catch(t){n.push(n.shift())}}(fs);class gs extends t.Plugin{[ls(298)](){const t=ls,e=this[t(322)],n=e[t(328)];if(!e[t(301)][t(324)](t(302)))return;const r=e[t(301)][t(312)](t(306)),s=this[t(322)][t(323)][t(312)](t(297));r[t(331)](t(297),((n,o={})=>{const i=t,a=this[i(322)][i(333)][i(319)][i(303)],c=o&&void 0!==o[i(307)]?o[i(307)]:!s[i(304)];let u=[];if(c){const t=Array[i(296)](a[i(299)]())[i(332)]((t=>ds(t)||function(t,e){const n=i,r=e[n(315)](t[n(292)],n(297)),s=e[n(315)]([n(334),n(297)],t);return r&&s}(t,this[i(322)][i(333)][i(325)])));u=C(t,e[i(333)])}else{const t=Array[i(296)](a[i(299)]())[i(332)]((t=>ds(t)));u=C(t,e[i(333)])}e[i(333)][i(309)]((()=>{const t=i;for(const e of u)r[t(329)](e,{commandName:t(297),commandParams:[{forceValue:c}]})}))})),r[t(300)][t(310)]((e=>{const r=t,{data:s}=e;if(s&&r(297)==s[r(326)]){const t=Kr(n,r(316));return s[r(291)][0][r(307)]?{type:r(318),content:Kr(n,r(321),t)}:{type:r(318),content:Kr(n,r(317),t)}}}))}}function ds(t){const e=ls;return e(297)==t[e(292)][e(311)]}const ps=ms;function ms(t,e){const n=Es();return(ms=function(t,e){return n[t-=303]})(t,e)}!function(t){const e=ms,n=t();for(;;)try{if(673339===-parseInt(e(310))/1+-parseInt(e(320))/2*(-parseInt(e(304))/3)+-parseInt(e(312))/4+parseInt(e(319))/5+-parseInt(e(317))/6+parseInt(e(322))/7+parseInt(e(307))/8*(parseInt(e(321))/9))break;n.push(n.shift())}catch(t){n.push(n.shift())}}(Es);class Is extends t.Plugin{[ps(314)](){const t=ps,e=this[t(303)];e[t(305)][t(309)](t(318))&&(e[t(305)][t(311)](t(313))[t(315)](t(306)),e[t(305)][t(311)](t(313))[t(315)](t(308)),e[t(305)][t(311)](t(313))[t(315)](t(316)))}}function Es(){const t=["changeCaseUpper","136PkZzed","changeCaseLower","has","314296hYKeLW","get","1305108giJlFl","TrackChangesEditing","afterInit","enableCommand","changeCaseTitle","2714712fVfjfv","CaseChange","3222400LgELAF","4fYNTrF","136809nWUNts","1326311WolyfX","editor","1010991eJnoYp","plugins"];return(Es=function(){return t})()}const bs=_s;!function(t){const e=_s,n=t();for(;;)try{if(840288===parseInt(e(502))/1*(-parseInt(e(501))/2)+-parseInt(e(507))/3+-parseInt(e(497))/4*(-parseInt(e(505))/5)+-parseInt(e(509))/6+parseInt(e(500))/7+parseInt(e(513))/8*(-parseInt(e(510))/9)+parseInt(e(511))/10)break;n.push(n.shift())}catch(t){n.push(n.shift())}}(ys);class Ts extends t.Plugin{[bs(504)](){const t=bs,e=this[t(506)];e[t(508)][t(498)](t(499))&&e[t(496)][t(498)](t(512))[t(503)](t(499))}}function _s(t,e){const n=ys();return(_s=function(t,e){return n[t-=496]})(t,e)}function ys(){const t=["3185958ECKPXD","commands","7515072VxobIE","355518hlCCVm","16520310zoISLb","TrackChangesEditing","112SwFjCJ","plugins","12ckpWBl","get","ckbox","8617175mrupfA","2ttIxTn","650483TxpMdf","enableCommand","afterInit","2458735PTpoTo","editor"];return(ys=function(){return t})()}const As=ks;function ks(t,e){const n=Cs();return(ks=function(t,e){return n[t-=379]})(t,e)}function Cs(){const t=["filter","checkChild","label","commandParams","editor","isLimit","name","afterInit","172158XzyMeu","enableCommand","blockName","*Remove format:* %0","commands","9921yilCjb","value","codeBlock","languages","CodeBlock","descriptionFactory","get","commandName","toLowerCase","formatBlock","markBlockFormat","registerElementLabel","getSelectedBlocks","*Set format:* %0","has","785288IeTgSv","document","format","outdentCodeBlock","language","config","locale","1240778RIiuds","34kIpORC","rootElement","656973uJOvmS","schema","indentCodeBlock","TrackChangesEditing","find","parent","from","forceValue","type","ELEMENT_CODE_BLOCK","316180WpiGGQ","selection","change","4426704vOweuL","plugins","model","registerDescriptionCallback"];return(Cs=function(){return t})()}!function(t){const e=ks,n=t();for(;;)try{if(112079===-parseInt(e(423))/1*(parseInt(e(391))/2)+-parseInt(e(393))/3+-parseInt(e(383))/4+-parseInt(e(403))/5+parseInt(e(418))/6+parseInt(e(390))/7+parseInt(e(406))/8)break;n.push(n.shift())}catch(t){n.push(n.shift())}}(Cs);class Ls extends t.Plugin{[As(417)](){const t=As,e=this[t(414)];if(!e[t(407)][t(382)](t(427)))return;const n=e[t(407)][t(429)](t(396)),r=e[t(389)],s=e[t(388)][t(429)](t(425))[t(426)],o=e[t(422)][t(429)](t(425));n[t(419)](t(395)),n[t(419)](t(386)),n[t(419)](t(425),((r,i={})=>{const a=t,c=e[a(408)],u=e[a(408)][a(384)][a(404)],l=i&&void 0!==i[a(400)]?i[a(400)]:!o[a(424)];let f;i[a(387)]||(i[a(387)]=s[0][a(387)]),f=l?Array[a(399)](u[a(380)]())[a(410)]((t=>Ns(t)||function(t,e){const n=a;return!t.is(n(392))&&!e[n(415)](t)&&e[n(411)](t[n(398)],n(425))}(t,c[a(394)]))):Array[a(399)](u[a(380)]())[a(410)]((t=>Ns(t)));const h=C(f,c);c[a(405)]((()=>{const t=a;for(const e of h)n[t(433)](e,{commandName:t(425),commandParams:[{...i,forceValue:l}],formatGroupId:t(420)})}))})),n[t(428)][t(379)](t(425),(e=>Kr(r,t(402),e))),n[t(428)][t(409)]((e=>{const n=t;if(n(432)!=e[n(401)])return;const o=r.t,{data:i}=e;if(!i||n(425)!=i[n(430)])return;const a=i[n(413)][0][n(387)],c=o(s[n(397)]((t=>t[n(387)]===a))[n(412)])[n(431)]();return i[n(413)][0][n(400)]?{type:n(385),content:Kr(r,n(381),Kr(r,n(402),1)+" ("+c+")")}:{type:n(385),content:Kr(r,n(421),Kr(r,n(402),1))}}))}}function Ns(t){const e=As;return e(425)==t[e(416)]}function Rs(t,e){const n=Ms();return(Rs=function(t,e){return n[t-=277]})(t,e)}const Ss=Rs;function Ms(){const t=["40iqDxdl","get","editor","737844pbHFhI","681650cQHJHJ","946552HMMezM","CommentsEditing","3IxsyLG","17970RwzqEr","TrackChangesEditing","has","plugins","964663QddnXg","4951314buZrTk","242711VFsduf","4239mMlirN","enableCommand","afterInit","addCommentThread"];return(Ms=function(){return t})()}!function(t){const e=Rs,n=t();for(;;)try{if(691715===parseInt(e(280))/1+-parseInt(e(292))/2+parseInt(e(294))/3*(parseInt(e(290))/4)+-parseInt(e(291))/5+parseInt(e(281))/6+parseInt(e(282))/7*(parseInt(e(287))/8)+-parseInt(e(283))/9*(parseInt(e(295))/10))break;n.push(n.shift())}catch(t){n.push(n.shift())}}(Ms);class vs extends t.Plugin{[Ss(285)](){const t=Ss,e=this[t(289)];e[t(279)][t(278)](t(293))&&e[t(279)][t(288)](t(277))[t(284)](t(286))}}var ws=n(834);function Os(){const t=["bindElementToMarker","model","2360690wZiKKG","writer","addHighlight","includes","createRangeOn","parent","isLimit","hasAttribute","toViewPosition","995VHEAdQ","toViewElement","previousPosition","item","12mVlEHP","createUIElement","_splitMarkerName","plugins","consumable","getWalker","elementEnd","isAtEnd","ck-suggestion-marker--active","ck-suggestion-marker-","name","10412XAHbFU","start","schema","get","activeMarkers","push","isContent","mapper","getCustomProperty","1303284FeSrVp","18TLSdxJ","isBlock","type","4328819fEifGk","span","markerName","nextSibling","getItems","173117nwlWvq","1939899WDQRFC","128ocpZwo","addClass","84468ltXEFq","markerRange","TrackChangesEditing","insert","test"];return(Os=function(){return t})()}function Fs(t,e,n){const r=Ds,s=[];for(const o of e[r(310)]())o[r(329)](t)&&s[r(298)](n[r(326)](o));return s}function Ds(t,e){const n=Os();return(Ds=function(t,e){return n[t-=284]})(t,e)}function Ps(t,e,{showActiveMarker:n=!0}={}){const r=Ds,s=t[r(285)][r(296)](r(317));return(o,i,a)=>{const c=r;if(!a[c(286)][c(319)](i[c(316)],o[c(292)]))return;const u=i[c(316)][c(287)](),l=i[c(316)][c(294)],f=t[c(321)][c(295)];let h=null,g=null,d=!1,p=!1;for(const t of u){const e=t[c(334)];d=d||f[c(299)](e);const n=a[c(300)][c(332)](e);if(n&&n[c(301)](c(324)))return;c(288)==t[c(305)]&&f[c(304)](e)&&!f[c(328)](e)&&(e[c(309)]||l[c(289)]?h&&h[c(327)]==e||(h=e,m(t[c(333)]),p=!0):g=g||t[c(333)])}function m(t){const r=c,{authorId:o}=s[r(284)](i[r(308)]),u=a[r(323)][r(336)](r(307),{class:r(291)+e,"data-author-id":o}),l=a[r(300)][r(330)](t);n&&s[r(297)][r(325)](i[r(308)])&&a[r(323)][r(314)](r(290),u),a[r(323)][r(318)](l,u),a[r(300)][r(320)](u,i[r(308)])}d||p||!g||m(g)}}function xs(){const t=["308303svGNDv","forward","buffer","4028394cfbAbL","unlock","requires","document","start","editing","90932WuIMtH","isCollapsed","unbindElementFromMarkerName","rootName","showSuggestionHighlights","editor","data","getFirstRange","unit","commands","batch","createRange","createSelection","plugins","downcastDispatcher","detach","init","6968568gCPpRr","enqueueChange","2331954ugRlZL","setSelection","deleteForward","addMarker:suggestion:deletion","$graveyard","modifySelection","5041708oRruzC","model","selection","end","root","options","get","TrackChangesEditing","uiElement","delete","fromRange","writer","lock","85WBnkDu","bind","markerNameToElements","merge","1796020NUlDWz","markerName","enableCommand","remove","mapper","removeMarker:suggestion:deletion","high"];return(xs=function(){return t})()}!function(t){const e=Ds,n=t();for(;;)try{if(910579===-parseInt(e(315))/1*(parseInt(e(335))/2)+parseInt(e(312))/3+parseInt(e(293))/4*(parseInt(e(331))/5)+-parseInt(e(302))/6+parseInt(e(311))/7*(-parseInt(e(313))/8)+parseInt(e(303))/9*(parseInt(e(322))/10)+parseInt(e(306))/11)break;n.push(n.shift())}catch(t){n.push(n.shift())}}(Os);const Bs=Us;function Us(t,e){const n=xs();return(Us=function(t,e){return n[t-=132]})(t,e)}!function(t){const e=Us,n=t();for(;;)try{if(721066===parseInt(e(187))/1+-parseInt(e(180))/2+parseInt(e(157))/3+-parseInt(e(138))/4*(parseInt(e(176))/5)+-parseInt(e(132))/6+parseInt(e(163))/7+parseInt(e(155))/8)break;n.push(n.shift())}catch(t){n.push(n.shift())}}(xs);class js extends t.Plugin{static get[Bs(134)](){return[ws.Delete]}[Bs(154)](){const t=Bs,e=this[t(143)],n=e[t(151)][t(169)](t(170));n[t(182)](t(172));const r=e[t(147)][t(169)](t(159));n[t(182)](t(159),((n,s={})=>{const o=t,a=e[o(164)][o(150)](e[o(164)][o(135)][o(165)]);a[o(139)]&&e[o(164)][o(162)](a,{direction:o(188),unit:s[o(146)]});const c=a[o(145)](),u=i.LiveRange[o(173)](c);let l;n(s),l=o(161)==u[o(167)][o(141)]?e[o(164)][o(149)](c[o(136)]):e[o(164)][o(149)](u[o(136)],u[o(166)]),u[o(153)](),e[o(164)][o(156)](r[o(189)][o(148)],(t=>{const e=o;r[e(189)][e(175)](),t[e(158)](t[e(149)](l[e(166)])),r[e(189)][e(133)]()}))})),e[t(137)][t(152)].on(t(160),Ps(e,t(179)),{priority:t(186)}),e[t(144)][t(152)].on(t(160),((n,r,s)=>{const o=t;s[o(168)][o(142)]&&Ps(e,o(179),{showActiveMarker:!1})[o(177)](this)(n,r,s)}),{priority:t(186)}),e[t(137)][t(152)].on(t(185),((e,n,r)=>{const s=t,o=r[s(184)][s(178)](n[s(181)]);if(o)for(const t of o)t.is(s(171))&&(r[s(184)][s(140)](t,n[s(181)]),r[s(174)][s(183)](t))}),{priority:t(186)})}}function Gs(t,e){const n=Ws();return(Gs=function(t,e){return n[t-=354]})(t,e)}const Vs=Gs;!function(t){const e=Gs,n=t();for(;;)try{if(101792===-parseInt(e(477))/1+parseInt(e(356))/2*(parseInt(e(415))/3)+-parseInt(e(433))/4*(parseInt(e(397))/5)+parseInt(e(513))/6*(-parseInt(e(395))/7)+parseInt(e(380))/8+-parseInt(e(478))/9+parseInt(e(355))/10)break;n.push(n.shift())}catch(t){n.push(n.shift())}}(Ws);class Hs extends t.Plugin{[Vs(505)](){const t=Vs,e=this[t(500)];if(!e[t(359)][t(396)](t(378)))return;const n=e[t(443)],r=e[t(359)][t(407)](t(489)),s=e[t(359)][t(396)](t(410)),o=!!e[t(431)][t(407)](t(453));function i(e){const r=t;return{type:r(423),content:""+Kr(n,r(503),e)}}function a(e){const r=t;return{type:r(423),content:""+Kr(n,r(386),e)}}r[t(392)](t(514)),r[t(392)](t(362)),r[t(392)](t(442)),r[t(392)](t(483)),r[t(392)](t(464)),r[t(392)](t(504)),r[t(392)](t(467)),r[t(392)](t(403)),r[t(450)](t(354)),r[t(450)](t(427)),r[t(450)](t(406)),o&&(r[t(392)](t(408)),r[t(392)](t(383))),s&&(r[t(392)](t(498)),r[t(392)](t(451)),r[t(450)](t(437)),r[t(491)][t(501)]((e=>{const r=t,{data:s}=e;if(s&&r(437)==s[r(512)])return{type:r(423),content:s[r(452)]?Kr(n,r(388)):Kr(n,r(371))}})),this[t(500)][t(471)][t(425)][t(426)]((e=>{const n=t;if(e[n(455)][n(387)])return!1;let s=!1;const o=r[n(475)]({skipNotAttached:!0})[n(470)]((t=>n(437)===r[n(499)](t)));for(const t of o)n(360)!=t[n(381)]()[n(502)][n(461)][n(384)](n(427))&&(r[n(444)](t[n(381)](),n(394))[n(370)]((t=>n(427)===r[n(499)](t[n(462)])))||(e[n(468)](t[n(495)]()),s=!0));return s}))),r[t(491)][t(365)](t(406),Kr(n,t(494)));const c={type:t(423),content:""};r[t(491)][t(501)]((e=>{const r=t,{data:s}=e;if(!s||r(427)!=s[r(512)])return;let u=e[r(486)];for(;u;){if(u[r(474)]&&((r(456)==u[r(474)][r(512)]||r(511)==u[r(474)][r(512)])&&(u[r(474)][r(452)]&&r(435)!=u[r(474)][r(452)]||r(435)!=u[r(474)][r(357)]&&!s[r(452)])||!o&&u[r(474)][r(512)]==Lc))return c;u=u[r(446)]}if(null==s[r(452)])switch(s[r(357)]){case r(434):return a(Kr(n,r(361)));case r(432):return a(Kr(n,r(428)));case r(360):return a(Kr(n,r(466)))}switch(s[r(452)]){case r(434):return i(Kr(n,r(361)));case r(432):return i(Kr(n,r(428)));case r(360):return i(Kr(n,r(466)))}})),r[t(491)][t(501)]((e=>{const n=t,{data:r}=e;if(r&&n(406)==r[n(512)])return null==r[n(452)]||null==r[n(357)]&&0==r[n(452)]?c:void 0})),r[t(491)][t(501)]((e=>{const r=t;if(r(394)!=e[r(417)])return;const{data:s}=e;if(!s||r(354)!=s[r(512)])return;const o=zs(e);return r(452)==o?{type:r(423),content:Kr(n,r(449))}:r(357)==o?{type:r(423),content:Kr(n,r(430))}:c})),e[t(471)][t(425)][t(426)]((e=>this[t(398)](e))),e[t(471)][t(425)][t(426)]((e=>this[t(465)](e))),e[t(471)][t(425)].on(t(509),((e,n)=>{const r=t;if(n[r(387)]||!n[r(488)])return!1;this[r(460)]()}),{priority:t(482)}),this[t(492)]()}[Vs(398)](t){const e=Vs;if(t[e(455)][e(387)]||!t[e(455)][e(488)])return!1;let n=!1;const r=this[e(500)][e(359)][e(407)](e(489))[e(475)]({skipNotAttached:!0})[e(470)]((t=>t[e(474)]&&e(354)==t[e(474)][e(512)]))[e(470)]((t=>t[e(474)][e(452)]&&t[e(474)][e(357)]));for(const s of r)zs(s)||(t[e(468)](s[e(495)]()),n=!0);return n}[Vs(465)](t){const e=Vs;if(t[e(455)][e(387)]||!t[e(455)][e(488)])return!1;const n=this[e(500)][e(359)][e(407)](e(489));if(n[e(390)][e(508)])return!1;let r=!1;const s=[e(427),e(354),e(406),e(456),e(436),e(496),e(373),e(414),e(511)],o=this[e(500)][e(471)][e(425)][e(493)][e(515)]()[e(470)]((t=>e(394)==t[e(417)]))[e(470)]((t=>s[e(393)](t[e(366)])));if(0==o[e(375)])return r;for(const i of o){const o=n[e(444)](i[e(457)],e(394))[e(470)]((t=>!t[e(400)][e(448)]))[e(367)]((t=>t[e(462)]))[e(470)]((t=>{const r=e,o=n[r(499)](t);return s[r(393)](o)}));if(o[e(375)]){for(const n of o)t[e(468)](n[e(495)]());r=!0}}return r}[Vs(460)](){const t=Vs,e=this[t(500)][t(359)][t(407)](t(489)),n=[t(427),t(354),t(406),t(456),t(436),t(496),t(373),t(414),t(511)];let r;const s=new Set(this[t(500)][t(471)][t(425)][t(493)][t(439)]()[t(470)]((r=>{const s=t;if(r[s(474)][s(447)]||!r[s(474)][s(364)])return null;if(!r[s(485)][s(401)](s(479)))return null;const{id:o}=e[s(463)](r[s(485)]);if(!e[s(507)](o))return null;const i=e[s(377)](o);return n[s(393)](i[s(474)][s(512)])}))[t(367)]((n=>{const s=t,{id:o}=e[s(463)](n[s(485)]),i=e[s(377)](o);return r=i[s(358)][s(424)],i[s(381)]()[s(502)][s(461)]})));if(0==s[t(454)])return;const o=e[t(475)]({skipNotAttached:!0})[t(470)]((e=>t(394)==e[t(417)]&&e[t(474)]&&n[t(393)](e[t(474)][t(512)])&&e[t(358)][t(424)]!=r))[t(367)]((e=>({listItem:e[t(381)]()[t(502)][t(461)],groupId:e[t(358)][t(424)]}))),i=new Set;for(const{groupId:e,listItem:n}of o)s[t(396)](n)&&i[t(480)](e);for(const n of e[t(475)]())i[t(396)](n[t(358)][t(424)])&&n[t(490)](t(424),r)}[Vs(492)](){const t=Vs,e=this[t(500)],n=e[t(443)],r=e[t(359)][t(407)](t(489));this[t(421)](),r[t(441)][t(404)](t(411),t(376),t(372),(function(n,r){const s=t,o=[];for(let t of n)t[s(502)][s(461)]===t[s(422)][s(445)]&&(t=e[s(471)][s(458)](e[s(471)][s(409)](t[s(502)][s(461)],0))),o[s(473)](t);e[s(471)][s(382)]((t=>{const n=s,a=e[n(471)][n(425)][n(369)],c=Array[n(440)](a[n(429)]())[n(367)]((t=>i.LiveRange[n(487)](t)));t[n(419)](o),e[n(374)][n(407)](r[n(497)])[n(413)](),r[n(412)][n(473)]({forceDefaultExecution:!0}),e[n(363)](r[n(497)],...r[n(412)]),t[n(419)](c);for(const t of c)t[n(368)]()}))})),r[t(491)][t(472)]((function(n){const r=t,s=!e[r(471)][r(379)][r(481)](n),o=n[r(389)],i=n[r(510)],a=n[r(384)](r(354)),c=!o||o[r(384)](r(354))!==a,u=!i||i[r(384)](r(354))!==a;return s&&Boolean(a)&&c&&u}),(e=>Kr(n,t(399),e)))}[Vs(421)](){const t=Vs,e=this[t(500)],n=e[t(443)];function r(n){const r=t,s=e[r(374)][r(407)](r(362))[r(508)],o=e[r(374)][r(407)](r(514))[r(508)];return r(514)===n?s:o}e[t(359)][t(407)](t(489))[t(491)][t(501)]((function(s){const o=t;if(o(411)!=s[o(417)])return;const{data:i}=s;if(!i)return;let a,c,u,l;switch(i[o(497)]){case o(362):u=i[o(412)][0][o(476)],l=r(i[o(497)]),a=o(u?405:469),!l&&e[o(431)][o(407)](o(453))||(a=o(391)),c={type:o(423),content:Kr(n,a,Kr(n,o(361)))};break;case o(514):u=i[o(412)][0][o(476)],l=r(i[o(497)]),a=o(u?405:469),!l&&e[o(431)][o(407)](o(453))||(a=o(391)),c={type:o(423),content:Kr(n,a,Kr(n,o(428)))};break;case o(464):a=o(418),c={type:o(423),content:Kr(n,a,Kr(n,o(399)))};break;case o(504):a=function(t){const e=o,n=t[e(381)]();let r=n[e(502)][e(461)];for(;r&&n[e(420)](r);){if(r[e(384)](e(406))>0)return!1;r=r[e(510)]}return!0}(s)?Kr(n,o(469),Kr(n,function(t){const e=o;return e(459)+t[e(381)]()[e(502)][e(461)][e(384)](e(427))[e(484)]()+e(416)}(s))):Kr(n,o(402),Kr(n,o(399))),c={type:o(423),content:a};break;case o(408):case o(383):!1===i[o(506)]&&(a=o(438),c={type:o(385),content:Kr(n,a,Kr(n,o(399)))})}return c}))}}function zs(t){const e=Vs;let n=t[e(381)]()[e(502)][e(461)][e(389)];for(;n;){const r=n[e(384)](e(354));if(!r)return!1;if(r==t[e(474)][e(452)])return e(452);if(r==t[e(474)][e(357)])return e(357);n=n[e(389)]}return!1}function Ws(){const t=["30669ULvjaz","_LIST","type","*Indent:* %0","setSelection","containsItem","_registerLegacyDescription","end","format","groupId","document","registerPostFixer","listType","ELEMENT_NUMBERED_LIST","getRanges","*Split:* list item","config","numbered","1052aiQPkz","bulleted","default","listStart","todoListChecked","*Merge:* %0","getChangedMarkers","from","_suggestionFactory","customNumberedList","locale","_findSuggestions","parent","next","oldRange","isNextTo","*Merge:* list item","registerBlockAttribute","checkTodoList","newValue","list.multiBlock","size","batch","listStyle","range","createRange","ELEMENT_","assureChains","nodeAfter","suggestion","_splitMarkerName","indentList","noTrackChangesFixer","ELEMENT_TODO_LIST","splitListItemAfter","removeMarker","*Format:* remove from %0","filter","model","registerElementLabel","push","data","getSuggestions","forceValue","148554npFEWF","1216530tqwrYw","suggestion:attribute:","add","isObject","high","customBulletedList","toUpperCase","name","head","fromRange","isLocal","TrackChangesEditing","setAttribute","descriptionFactory","_supportLegacySuggestions","differ","FORMAT_INDENT","getFirstMarker","listReversed","commandName","todoList","_getAttributeKey","editor","registerDescriptionCallback","start","*Set format:* %0","outdentList","afterInit","multipleBlocks","hasSuggestion","value","change:data","nextSibling","listMarkerStyle","key","12QEAEXG","numberedList","getChanges","listItemId","2848080zUdGem","4YjYNGX","oldValue","attributes","plugins","todo","ELEMENT_BULLETED_LIST","bulletedList","execute","newRange","registerAttributeLabel","attributeKey","map","detach","selection","find","*Uncheck item*","accept","todoListCheck","commands","length","documentList","getSuggestion","ListEditing","schema","1081576aRxDuG","getFirstRange","change","mergeListItemForward","getAttribute","deletion","*Remove format:* %0","isUndo","*Check item*","previousSibling","trackChangesCommand","*Change to:* %0","enableDefaultAttributesIntegration","includes","attribute","9093pFrdGk","has","995RGapDR","listItemIdFixer","ELEMENT_LIST_ITEM","meta","startsWith","*Outdent:* %0","splitListItemBefore","registerCustomCallback","*Format:* insert into %0","listIndent","get","mergeListItemBackward","createPositionAt","TodoListEditing","formatBlock","commandParams","refresh","listMarker"];return(Ws=function(){return t})()}const Ks=Xs;function Xs(t,e){const n=Zs();return(Xs=function(t,e){return n[t-=158]})(t,e)}!function(t){const e=Xs,n=t();for(;;)try{if(881283===parseInt(e(201))/1*(parseInt(e(189))/2)+parseInt(e(160))/3+-parseInt(e(174))/4+parseInt(e(163))/5+-parseInt(e(173))/6*(-parseInt(e(232))/7)+parseInt(e(218))/8*(parseInt(e(199))/9)+-parseInt(e(248))/10)break;n.push(n.shift())}catch(t){n.push(n.shift())}}(Zs);class qs extends t.Plugin{[Ks(206)](){const t=Ks;if(!this[t(209)][t(207)][t(208)](t(178)))return;const e=this[t(209)][t(181)][t(230)](t(226)),n=this[t(209)][t(207)][t(230)](t(182));e[t(191)]&&(n[t(246)](t(170)),n[t(227)](t(170))),e[t(229)]&&(n[t(246)](t(247)),n[t(227)](t(247))),e[t(175)]&&(n[t(246)](t(240)),n[t(227)](t(240)));const r={type:t(179),content:""};n[t(198)][t(197)](this[t(183)][t(168)](this));const s=this[t(209)][t(200)];n[t(198)][t(221)](t(247),Kr(s,t(231))),n[t(198)][t(197)]((e=>{const n=t,{data:s}=e;if(s&&n(247)==s[n(213)])return null==s[n(185)]||0==s[n(185)]&&null==s[n(166)]?r:void 0})),n[t(198)][t(221)](t(240),Kr(s,t(161))),n[t(198)][t(197)]((e=>{const n=t,{data:s}=e;if(s&&n(240)==s[n(213)])return null==s[n(185)]||1==s[n(185)]&&null==s[n(166)]?r:void 0})),this[t(209)][t(202)][t(228)][t(235)]((e=>{const r=t;if(e[r(190)][r(159)])return!1;let s=!1;const o=n[r(177)]({skipNotAttached:!0})[r(219)]((t=>{const e=r,s=n[e(239)](t);return e(240)==s||e(247)==s}));for(const t of o){const o=t[r(236)]()[r(184)][r(171)][r(212)](r(214));r(244)!=o&&r(172)!=o&&(n[r(216)](t[r(236)](),r(237))[r(176)]((t=>r(214)==n[r(239)](t[r(223)])))||(e[r(249)](t[r(204)]()),s=!0))}return s})),this[t(215)]()}[Ks(183)](t){const e=Ks,n=this[e(209)][e(200)],{data:r}=t,s={type:e(179),content:""};if(!r||e(170)!=r[e(213)])return;if(!r[e(166)])return e(242)==r[e(185)]?s:{type:e(179),content:""+Kr(n,e(205),Kr(n,this[e(245)](r[e(185)])))};if(!r[e(185)]){if(e(242)==r[e(166)])return s;let o=t[e(238)];for(;o;){if(o[e(195)]&&e(214)==o[e(195)][e(213)]&&o[e(195)][e(185)])return s;o=o[e(167)]}return{type:e(179),content:""+Kr(n,e(169),Kr(n,this[e(245)](r[e(166)])))}}if(e(242)!=r[e(185)])return{type:e(179),content:""+Kr(n,e(205),Kr(n,this[e(245)](r[e(185)])))};let o=t[e(238)];for(;o;){if(o[e(195)]&&e(214)==o[e(195)][e(213)]&&o[e(195)][e(185)]&&o[e(195)][e(166)])return s;o=o[e(167)]}const i=t[e(236)]()[e(184)][e(171)][e(212)](e(214));return{type:e(179),content:Kr(n,e(205),Kr(n,e(165)+i[e(234)]()+e(196)))}}[Ks(215)](){const t=Ks,e=this[t(209)],n=e[t(200)];e[t(207)][t(230)](t(182))[t(198)][t(197)]((e=>{const r=t;if(r(194)!=e[r(158)])return;const{data:s}=e;if(!s)return;let o,i;switch(s[r(241)]){case r(170):o=r(186),i={type:r(179),content:Kr(n,o,Kr(n,this[r(245)](s[r(187)][0][r(158)])))};break;case r(247):o=s[r(187)][0][r(229)]?r(222):r(180),i={type:r(179),content:Kr(n,o)};break;case r(240):o=r(188),i={type:r(179),content:Kr(n,o,s[r(187)][0][r(175)])}}return i}))}[Ks(245)](t){const e=Ks;return e(165)+function(t){const n=e;return Js[n(220)](t)?n(164):Ys[n(220)](t)?n(244):null}(t)[e(234)]()+e(162)+t[e(234)]()[e(224)](/-/g,"_")}}function Zs(){const t=["listReversed","1306930hygTDQ","removeMarker","type","isUndo","230448AkLarN","FORMAT_LIST_START","_LIST_","1974765azdmpZ","bulleted","ELEMENT_","oldValue","next","bind","*Remove format:* %0","listStyle","nodeAfter","customNumbered","40764mMVxAR","197388fSNQiL","startIndex","find","getSuggestions","ListPropertiesEditing","format","*Format:* set order to regular","config","TrackChangesEditing","handleDescriptions","start","newValue","*Change to:* %0","commandParams","*Format:* set start index to %0","1354DzPpvc","batch","styles","decimal","lower-latin","formatBlock","data","_LIST_DEFAULT","registerDescriptionCallback","descriptionFactory","5202189Tgdtxz","locale","7qMRNeX","model","circle","getFirstMarker","*Set format:* %0","afterInit","plugins","has","editor","disc","lower-roman","getAttribute","key","listType","_registerLegacyDescription","_findSuggestions","upper-roman","8sPeAgF","filter","includes","registerAttributeLabel","*Format:* set order to reversed","suggestion","replace","upper-latin","list.properties","registerBlockAttribute","document","reversed","get","FORMAT_LIST_REVERSED","7PPFXFC","decimal-leading-zero","toUpperCase","registerPostFixer","getFirstRange","attribute","head","_getAttributeKey","listStart","commandName","default","square","numbered","_getTranslationKeyForListStyle","enableDefaultAttributesIntegration"];return(Zs=function(){return t})()}const Js=[Ks(210),Ks(203),Ks(243)],Ys=[Ks(192),Ks(233),Ks(211),Ks(217),Ks(193),Ks(225)];var Qs=n(507);const $s=eo;function to(){const t=["options","1883441XNqpZA","enableCommand","end","commands","5502dhuyPe","8jhwjcV","setSelection","enterBlock","createRange","markerName","unbindElementFromMarkerName","markerNameToElements","markInsertion","9DFpfvE","high","writer","190gmWqsS","TrackChangesEditing","getFirstRange","detach","change","model","data","requires","3786299VSTsbn","editing","editor","hasClass","removeMarker:suggestion:insertion","enter","plugins","split","afterExecute","document","parent","111257qTvJts","createPositionAt","12zevClc","addMarker:suggestion:insertion","ck-suggestion-marker-split","init","8SsIpqw","fromRange","bind","mapper","downcastDispatcher","remove","selection","123171NruEiV","get","fire","nextSibling","477010TWgYzS","454636YXcPBp","getFirstPosition","showSuggestionHighlights"];return(to=function(){return t})()}function eo(t,e){const n=to();return(eo=function(t,e){return n[t-=289]})(t,e)}!function(t){const e=eo,n=t();for(;;)try{if(141581===-parseInt(e(332))/1+-parseInt(e(302))/2*(parseInt(e(345))/3)+-parseInt(e(293))/4+parseInt(e(313))/5*(-parseInt(e(301))/6)+-parseInt(e(297))/7*(-parseInt(e(338))/8)+-parseInt(e(310))/9*(parseInt(e(292))/10)+parseInt(e(321))/11*(parseInt(e(334))/12))break;n.push(n.shift())}catch(t){n.push(n.shift())}}(to);class no extends t.Plugin{static get[$s(320)](){return[Qs.Enter]}[$s(337)](){const t=$s,e=this[t(323)],n=e[t(327)][t(289)](t(314)),r=e[t(300)][t(289)](t(326));n[t(298)](t(326),(()=>{const s=t;e[s(318)][s(317)]((t=>{const o=s,a=e[o(318)][o(330)][o(344)],c=a[o(294)](),u=i.LiveRange[o(339)](a[o(315)]());if(r[o(304)](t)){const r=e[o(318)][o(333)](c[o(331)][o(291)],0),s=t[o(305)](c,r);n[o(309)](s)}else t[o(303)](t[o(305)](u[o(299)]));u[o(316)](),r[o(290)](o(329),{writer:t})}))})),e[t(322)][t(342)].on(t(335),Ps(e,t(328)),{priority:t(311)}),e[t(322)][t(342)].on(t(325),((e,n,r)=>{const s=t,o=r[s(341)][s(308)](n[s(306)]);if(o)for(const t of o)t[s(324)](s(336))&&(r[s(341)][s(307)](t,n[s(306)]),r[s(312)][s(343)](t))}),{priority:t(311)}),e[t(319)][t(342)].on(t(335),((n,r,s)=>{const o=t;s[o(296)][o(295)]&&Ps(e,o(328),{showActiveMarker:!1})[o(340)](this)(n,r,s)}),{priority:t(311)})}}const ro=so;function so(t,e){const n=io();return(so=function(t,e){return n[t-=204]})(t,e)}!function(t){const e=so,n=t();for(;;)try{if(528630===parseInt(e(232))/1+-parseInt(e(233))/2*(-parseInt(e(228))/3)+parseInt(e(204))/4*(parseInt(e(222))/5)+parseInt(e(227))/6*(-parseInt(e(242))/7)+-parseInt(e(220))/8+parseInt(e(223))/9+-parseInt(e(224))/10*(parseInt(e(213))/11))break;n.push(n.shift())}catch(t){n.push(n.shift())}}(io);class oo extends t.Plugin{[ro(246)](){const t=ro;if(!this[t(234)][t(244)][t(206)](t(211)))return;const e=this[t(234)][t(244)][t(230)](t(208));e[t(226)](t(209),this[t(239)][t(225)](this)),e[t(226)](t(218)),e[t(226)](t(229)),e[t(226)](t(241)),e[t(226)](t(231))}[ro(239)](t,e,n={}){const r=ro,s=this[r(234)][r(244)][r(230)](r(205));return t((t=>{const o=r;let i=(o(214)==typeof e?s[o(207)](e,n):e)(t);Array[o(247)](i)&&(i={results:i,searchText:o(214)==typeof e?e:""});const a=i[o(221)][o(237)]((e=>!1===this[o(238)](e,t[o(215)])));return{...i,results:a}}),n)}[ro(238)](t,e){const n=ro,r=this[n(234)][n(217)][n(210)](this[n(234)][n(217)][n(216)](e,t[n(219)]),this[n(234)][n(217)][n(216)](e,t[n(235)]));for(const t of this[n(234)][n(217)][n(245)][n(212)](n(236)))if(null!==r[n(243)](t[n(240)]()))return!0;return!1}}function io(){const t=["5564808YRbCZj","10YCwXIt","bind","enableCommand","6ZGELFN","6063vWNELz","findPrevious","get","replaceAll","360937kQUdyG","974wFOPwg","editor","end","suggestion:deletion","filter","_isInDeletionRange","handleFindCommand","getRange","replace","271117TNWWXt","getIntersection","plugins","markers","afterInit","isArray","4QMiGxU","FindAndReplaceUtils","has","findByTextCallback","TrackChangesEditing","find","createRange","FindAndReplaceEditing","getMarkersGroup","15667377DFAXxY","string","item","createPositionAt","model","findNext","start","5057096kGvdJV","results","3301645ciVFwm"];return(io=function(){return t})()}const ao=co;function co(t,e){const n=uo();return(co=function(t,e){return n[t-=209]})(t,e)}function uo(){const t=["label","registerAttributeLabel","fontSize.options","locale","registerInlineAttribute","editor","find","404087jZgspl","*Reset font color*","14913DhzZel","toLowerCase","FORMAT_FONT_FAMILY","trim","fontColor","*Reset font background color*","has","*Set font color:* %0","FontSize","663860ehpdHS","2930499GmtFSe","title","value","8333336ARJIwk","format","formatInline","FontColorEditing","FORMAT_FONT_COLOR","commandParams","fontBackgroundColor.colors","enableDefaultAttributesIntegration","4093550NMuEQU","fontFamily","fontBackgroundColor","_registerLegacyDescription","model","afterInit","type","*Set font size:* %0","commandName","get","FontBackgroundColorEditing","101353apMzqr","TrackChangesEditing","fontColor.colors","FontFamilyEditing","config","*Set font background color:* %0","fontSize","plugins","descriptionFactory","FORMAT_FONT_BACKGROUND","registerDescriptionCallback","20RTwQVl","472FPLnNP","FORMAT_FONT_SIZE","*Reset font family*","6NpSsMT","*Set font family:* %0","FontSizeEditing","*Reset font size*","normalizeSizeOptions","480fFomgW"];return(uo=function(){return t})()}!function(t){const e=co,n=t();for(;;)try{if(617372===-parseInt(e(216))/1*(-parseInt(e(265))/2)+parseInt(e(228))/3+-parseInt(e(261))/4*(parseInt(e(227))/5)+parseInt(e(270))/6*(-parseInt(e(250))/7)+parseInt(e(262))/8*(-parseInt(e(218))/9)+-parseInt(e(239))/10+parseInt(e(231))/11)break;n.push(n.shift())}catch(t){n.push(n.shift())}}(uo);const lo=[{pluginName:ao(267),commandName:ao(256)},{pluginName:ao(253),commandName:ao(240)},{pluginName:ao(234),commandName:ao(222)},{pluginName:ao(249),commandName:ao(241)}];class fo extends t.Plugin{[ao(244)](){const t=ao,e=this[t(214)][t(212)],n=this[t(214)][t(257)][t(248)](t(251));for(const{pluginName:e,commandName:r}of lo)this[t(214)][t(257)][t(224)](e)&&(n[t(238)](r),n[t(213)](r));n[t(258)][t(210)](t(256),Kr(e,t(263))),n[t(258)][t(210)](t(240),Kr(e,t(220))),n[t(258)][t(210)](t(222),Kr(e,t(235))),n[t(258)][t(210)](t(241),Kr(e,t(259))),this[t(242)]()}[ao(242)](){const t=ao,e=this[t(214)],n=e[t(212)];e[t(257)][t(248)](t(251))[t(258)][t(260)]((e=>{const r=t,o=n.t;if(r(233)!=e[r(245)])return;const{data:i}=e;if(null!=i){if(r(256)==i[r(247)]){const t=i[r(236)][0][r(230)];if(t){const e=o(this[r(214)][r(257)][r(248)](r(226))[r(269)](this[r(214)][r(254)][r(248)](r(211)))[r(215)]((e=>e[r(243)]==t))[r(229)])[r(219)]();return{type:r(232),content:Kr(n,r(246),e)}}return{type:r(232),content:Kr(n,r(268))}}if(r(240)==i[r(247)]){const t=i[r(236)][0][r(230)];return t?{type:r(232),content:Kr(n,r(266),t)}:{type:r(232),content:Kr(n,r(264))}}if(r(222)==i[r(247)]){const t=i[r(236)][0][r(230)];if(t){const e=(0,s.normalizeColorOptions)(this[r(214)][r(254)][r(248)](r(252)))[r(215)]((e=>e[r(243)]==t));let i=t,a="";return e&&(i=e[r(209)],a=o(i)[r(219)]()),{type:r(232),content:Kr(n,r(225),a)[r(221)](),color:{value:t,title:a||i}}}return{type:r(232),content:Kr(n,r(217))}}if(r(241)==i[r(247)]){const t=i[r(236)][0][r(230)];if(t){const e=(0,s.normalizeColorOptions)(this[r(214)][r(254)][r(248)](r(237)))[r(215)]((e=>e[r(243)]==t));let i=t,a="";return e&&(i=e[r(209)],a=o(i)[r(219)]()),{type:r(232),content:Kr(n,r(255),a)[r(221)](),color:{value:t,title:a||i}}}return{type:r(232),content:Kr(n,r(223))}}}}))}}const ho=po;!function(t){const e=po,n=t();for(;;)try{if(767396===-parseInt(e(483))/1*(parseInt(e(522))/2)+-parseInt(e(492))/3*(parseInt(e(525))/4)+parseInt(e(536))/5*(parseInt(e(508))/6)+-parseInt(e(504))/7*(-parseInt(e(512))/8)+parseInt(e(500))/9+parseInt(e(526))/10+parseInt(e(497))/11)break;n.push(n.shift())}catch(t){n.push(n.shift())}}(mo);class go extends t.Plugin{[ho(496)](){const t=ho,e=this[t(513)],n=e[t(515)][t(494)](t(491)),r=e[t(537)][t(494)](t(486)),s=e[t(537)][t(494)](t(509));r&&s&&(n[t(519)](t(509)),n[t(524)](t(486)),this[t(487)]())}[ho(487)](){const t=ho,e=this[t(513)],n=e[t(528)];e[t(515)][t(494)](t(491))[t(535)][t(490)]((r=>{const s=t;if(s(529)!=r[s(532)]&&s(530)!=r[s(532)])return;const{data:o}=r;if(o&&s(509)===o[s(521)]){const t=[],r=o[s(516)][0];for(const[n,o]of Object[s(495)](r))t[s(534)](Io(e,n,o));return t[s(501)]?{type:s(514),content:Kr(n,s(484),t[s(520)](", "))}:{type:s(514),content:Kr(n,s(488))}}}))}}function po(t,e){const n=mo();return(po=function(t,e){return n[t-=483]})(t,e)}function mo(){const t=["normalizeSizeOptions","fontSize.options","14TYSkMq","slice","toLowerCase","boolean","567102JwGYvs","pasteFormat","fontColor","charAt","352432myVIAk","editor","format","plugins","commandParams","title","fontColor.colors","enableDefaultAttributesIntegration","join","commandName","14ukCxus","label","enableCommand","144188rFqLIi","2013090GhUdkm","fontBackgroundColor","locale","formatBlock","formatInline","model","type","FontSize","push","descriptionFactory","45ggpmsD","commands","119667dWEakG","*Set format to:* %0","find","copyFormat","_registerLegacyDescription","*Remove all formatting*","config","registerDescriptionCallback","TrackChangesEditing","33dvOTXY","toUpperCase","get","entries","afterInit","1714042UHJHch","split","fontSize","6351210IGFKoI","length"];return(mo=function(){return t})()}function Io(t,e,n){const r=ho,o=t[r(528)].t,i=e[r(498)](/(?=[A-Z])/)[r(520)](" "),a=o(i[r(511)](0)[r(493)]()+i[r(505)](1))[r(506)]();if(r(507)==typeof n)return a;if(r(510)===e||r(527)===e){const e=(0,s.normalizeColorOptions)(t[r(489)][r(494)](r(518)))[r(485)]((t=>t[r(531)]==n));return a+" ("+(e?o(e[r(523)])[r(506)]():n)+")"}if(r(499)===e&&isNaN(parseFloat(n))){const e=t[r(515)][r(494)](r(533))[r(502)](t[r(489)][r(494)](r(503)))[r(485)]((t=>t[r(531)]==n));return a+" ("+(e?o(e[r(517)])[r(506)]():n)+")"}return a+" ("+n+")"}function Eo(){const t=["locale","324DbYbaM","2329430aqDnTb","afterInit","registerDescriptionCallback","plugins","get","has","registerElementLabel","commandParams","format","heading","_registerLegacyDescription","3213MGEGMr","ELEMENT_HEADING","4151034BwrlKr","*Change to:* %0","editor","heading.options","model","match","HeadingEditing","224359bwRWVL","commandName","_headingOptions","1425999uGfqkx","value","2jfDsoP","descriptionFactory","formatBlock","TrackChangesEditing","_getHeadingLevel","3837224uOiKrh","type","config","view","title","ELEMENT_HEADING_CUSTOM","enableDefaultAttributesIntegration","name","find","742792hWYehl","paragraph","5nBljCh"];return(Eo=function(){return t})()}function bo(t,e){const n=Eo();return(bo=function(t,e){return n[t-=228]})(t,e)}const To=bo;!function(t){const e=bo,n=t();for(;;)try{if(263646===-parseInt(e(228))/1+-parseInt(e(233))/2*(parseInt(e(231))/3)+-parseInt(e(247))/4*(parseInt(e(249))/5)+-parseInt(e(251))/6*(parseInt(e(263))/7)+parseInt(e(238))/8+parseInt(e(265))/9+parseInt(e(252))/10)break;n.push(n.shift())}catch(t){n.push(n.shift())}}(Eo);class _o extends t.Plugin{[To(253)](){const t=To,e=this[t(267)];if(!e[t(255)][t(257)](t(271)))return;this[t(230)]=e[t(240)][t(256)](t(268));const n=e[t(250)],r=e[t(255)][t(256)](t(236));r[t(244)](t(261));for(const e of this[t(230)])t(248)!=e[t(269)]&&r[t(234)][t(258)](e[t(269)],(n=>{const r=t,i=this[r(237)](e[r(269)]);return null!==i?s(n,i):o(n,e[r(242)])}));function s(e,r){return Kr(n,t(264),[e,r])}function o(e,r){return Kr(n,t(243),[e,r])}this[t(262)]()}[To(262)](){const t=To,e=this[t(267)],n=e[t(250)];e[t(255)][t(256)](t(236))[t(234)][t(254)]((e=>{const r=t;if(r(235)!=e[r(239)])return;const{data:s}=e;if(s&&r(261)==s[r(229)]){const e=s[r(259)][0][r(232)],c=this[r(237)](e);if(null!==c)return{type:r(260),content:Kr(n,r(266),(a=c,Kr(n,r(264),[1,a])))};const u=this[r(230)][r(246)]((t=>t[r(269)]===e))[r(242)];return{type:r(260),content:Kr(n,r(266),(o=1,i=u,Kr(n,t(243),[o,i])))}}var o,i,a}))}[To(237)](t){const e=To;var n,r;const s=t[e(270)](/^heading(\d+)/);if(s)return s[1];const o=null===(n=this[e(230)])||void 0===n?void 0:n[e(246)]((n=>n[e(269)]==t));if(o&&o[e(241)]){const t=o[e(241)],n=(null!==(r=t[e(245)])&&void 0!==r?r:t)[e(270)](/^h(\d+)/);if(n)return n[1]}return null}}const yo=Ao;function Ao(t,e){const n=Co();return(Ao=function(t,e){return n[t-=360]})(t,e)}!function(t){const e=Ao,n=t();for(;;)try{if(668775===parseInt(e(394))/1*(parseInt(e(367))/2)+-parseInt(e(401))/3*(parseInt(e(363))/4)+-parseInt(e(372))/5+-parseInt(e(379))/6+parseInt(e(368))/7*(-parseInt(e(388))/8)+parseInt(e(384))/9*(-parseInt(e(386))/10)+parseInt(e(369))/11)break;n.push(n.shift())}catch(t){n.push(n.shift())}}(Co);class ko extends t.Plugin{[yo(391)](){const t=yo,e=this[t(375)];if(!e[t(378)][t(370)](t(365)))return;const n=e[t(378)][t(399)](t(383)),r=e[t(392)];n[t(373)](t(374)),n[t(362)](t(374)),n[t(366)][t(387)](t(374),Kr(r,t(380))),this[t(381)]()}[yo(381)](){const t=yo,e=this[t(375)],n=e[t(392)];e[t(378)][t(399)](t(383))[t(366)][t(371)]((r=>{const s=t;if(s(364)!=r[s(361)])return;const{data:o}=r;if(o&&s(374)==o[s(385)]){const t=n.t,r=o[s(396)][0][s(377)];if(r){const o=e[s(393)][s(399)](s(395))[s(376)]((t=>t[s(400)]==r)),i=t(o[s(390)])[s(398)]();return{type:s(389),content:Kr(n,s(360),i),color:{value:o[s(397)],title:o[s(390)]}}}return{type:s(389),content:Kr(n,s(382),Kr(n,s(380)))}}}))}}function Co(){const t=["FORMAT_HIGHLIGHT","_registerLegacyDescription","*Remove highlight*","TrackChangesEditing","265014GjNsVR","commandName","360KHCcNn","registerAttributeLabel","96IHpfdr","format","title","afterInit","locale","config","749132YPFtGp","highlight.options","commandParams","color","toLowerCase","get","model","687yoBQpQ","*Set highlight:* %0","type","registerInlineAttribute","56SkeHGk","formatInline","HighlightEditing","descriptionFactory","2rKjENF","26894AXoOYb","35265923lABVqn","has","registerDescriptionCallback","5490795cKIntC","enableDefaultAttributesIntegration","highlight","editor","find","value","plugins","6472950zTRhmf"];return(Co=function(){return t})()}function Lo(t,e){const n=No();return(Lo=function(t,e){return n[t-=345]})(t,e)}function No(){const t=["showSuggestionHighlights","18IItQIf","48LyoojU","enableCommand","conversion","horizontalLine","183894ontuhw","44503590CUgrVp","descriptionFactory","for","1443351riSXbL","addClass","dataDowncast","registerElementLabel","div","ELEMENT_HORIZONTAL_LINE","createEmptyElement","elementToStructure","TrackChangesEditing","ck-horizontal-line","editor","locale","643850hiqnOo","709288Mogfzg","afterInit","createPositionAt","6979545SnRVcA","get","createContainerElement","1524630THzJPB","high","has","insert","5uEvjuC","plugins","HorizontalLineEditing"];return(No=function(){return t})()}const Ro=Lo;!function(t){const e=Lo,n=t();for(;;)try{if(892072===-parseInt(e(374))/1+-parseInt(e(358))/2+parseInt(e(353))/3*(-parseInt(e(375))/4)+parseInt(e(349))/5*(parseInt(e(345))/6)+-parseInt(e(362))/7*(parseInt(e(354))/8)+-parseInt(e(378))/9+parseInt(e(359))/10)break;n.push(n.shift())}catch(t){n.push(n.shift())}}(No);class So extends t.Plugin{[Ro(376)](){const t=Ro,e=this[t(372)];if(!e[t(350)][t(347)](t(351)))return;e[t(350)][t(379)](t(370))[t(355)](t(357));const n=e[t(350)][t(379)](t(370)),r=e[t(373)];n[t(360)][t(365)](t(357),(e=>Kr(r,t(367),e))),e[t(356)][t(361)](t(364))[t(369)]({model:t(357),view:(e,{writer:n,options:r})=>{const s=t;if(!r[s(352)])return null;const o=n[s(380)](s(366)),i=n[s(368)]("hr");return n[s(363)](s(371),o),n[s(348)](n[s(377)](o,0),i),o},converterPriority:t(346)})}}const Mo=wo;function vo(){const t=["key","459436UUyLcr","registerElementLabel","attribute","htmlEmbed","566600XocIlm","ELEMENT_HTML_EMBED","registerDescriptionCallback","TrackChangesEditing","get","63urSmHH","_registerLegacyDescription","nodeAfter","descriptionFactory","locale","value","1096464oGUUgL","114EIpnuQ","formatBlock","element","type","HtmlEmbed","afterInit","commandName","enableDefaultAttributesIntegration","5796000KNNFvQ","623733jgYAAC","560448dpLAFa","89030bhFWrF","has","editor","*Change %0 content*","format","start","2FEGosC","plugins","registerBlockAttribute","rawHtml","getFirstRange"];return(vo=function(){return t})()}function wo(t,e){const n=vo();return(wo=function(t,e){return n[t-=152]})(t,e)}!function(t){const e=wo,n=t();for(;;)try{if(357144===-parseInt(e(181))/1+-parseInt(e(175))/2*(-parseInt(e(167))/3)+parseInt(e(157))/4+-parseInt(e(169))/5*(-parseInt(e(158))/6)+parseInt(e(168))/7+-parseInt(e(185))/8*(-parseInt(e(190))/9)+-parseInt(e(166))/10)break;n.push(n.shift())}catch(t){n.push(n.shift())}}(vo);class Oo extends t.Plugin{[Mo(163)](){const t=Mo,e=this[t(171)];if(!e[t(176)][t(170)](t(162)))return;const n=e[t(176)][t(189)](t(188)),r=e[t(155)];n[t(154)][t(182)](t(178),(e=>Kr(r,t(186),e))),n[t(165)](t(184)),n[t(177)](t(156)),n[t(154)][t(187)]((e=>{const n=t;if(n(183)!=e[n(161)])return;const{data:s}=e;if(s&&n(156)==s[n(180)]&&e[n(179)]()[n(174)][n(153)].is(n(160),n(178))){const t=Kr(r,n(186));return{type:n(173),content:Kr(r,n(172),t)}}})),this[t(152)]()}[Mo(152)](){const t=Mo,e=this[t(171)],n=e[t(155)];e[t(176)][t(189)](t(188))[t(154)][t(187)]((e=>{const r=t;if(r(159)!=e[r(161)])return;const{data:s}=e;if(s&&r(184)==s[r(164)]){const t=Kr(n,r(186));return{type:r(173),content:Kr(n,r(172),t)}}}))}}function Fo(t,e){const n=Po();return(Fo=function(t,e){return n[t-=472]})(t,e)}const Do=Fo;function Po(){const t=["registerBlockAttribute","locale","width","ELEMENT_INLINE_IMAGE","TrackChangesEditing","getClosestSelectedImageElement","_registerLegacyDescription","model","enableCommand","getContainedElement","findIndex","discard","ImageInlineEditing","registerAttributeLabel","type","commandParams","toPrevious","ImageUploadEditing","*Reset image width*","convertBlockImageToInline","change","isBlockImage","ImageResize","imageStylePreApply","find","insertion","forward","_suggestionFactory","*Set image width:* %0","addObject","toggleImageCaption","formatBlock","registerDescriptionCallback","descriptionFactory","element","1146012JIbJgz","document","editor","getFirstRange","createRange","574562DMvsTs","removeObject","toNext","resizedWidth","16zkFSnm","imageTypeInline","deletion","length","enableDefaultAttributesIntegration","*Remove image text alternative*","start","ELEMENT_CAPTION","Block image to inline image","_findSuggestions","ImageTextAlternativeEditing","join","ImageUtils","FORMAT_IMAGE_SIZE","nodeBefore","afterInit","markDeletion","plugins","fromPosition","commandName","chain","nodeAfter","newValue","createRangeOn","isOwn","Inline image to block image","registerElementLabel","imageBlock","getNearestSelectionRange","detach","850788gaPtTK","has","filter","ImageEditing","subType","isCollapsed","markInsertion","formatInline","2010868LFIMUw","accept","uploadImage","ImageBlockEditing","imageCaption","ELEMENT_IMAGE","ImageCaptionEditing","alt","4139849wRxBFY","get","resizeImage","caption","imageTypeBlock","backward","getSuggestionCallback","imageTextAlternative","schema","2346910PPryqj","*Set image text alternative:* %0","isEqual","previous","isBefore","end","convertInlineImageToBlock","attribute","233210cBkKnf","isIntersecting","registerCustomCallback","forceDefaultExecution","format","markBlockFormat","ImageCaptionUtils","insertImage","key","imageInline","selection","getCaptionFromImageModelElement"];return(Po=function(){return t})()}!function(t){const e=Fo,n=t();for(;;)try{if(388782===-parseInt(e(563))/1+-parseInt(e(496))/2+-parseInt(e(491))/3+-parseInt(e(538))/4+parseInt(e(555))/5+parseInt(e(530))/6+parseInt(e(546))/7*(parseInt(e(500))/8))break;n.push(n.shift())}catch(t){n.push(n.shift())}}(Po);class xo extends t.Plugin{[Do(515)](){const t=Do,e=this[t(493)];if(!e[t(517)][t(531)](t(533)))return;const n=e[t(517)][t(547)](t(579)),r=e[t(517)][t(547)](t(512)),s=e[t(576)];n[t(583)](t(570)),n[t(489)][t(526)](t(527),(e=>Kr(s,t(543),e))),n[t(489)][t(526)](t(572),(e=>Kr(s,t(578),e))),n[t(489)][t(526)](t(549),(()=>Kr(s,t(507)))),e[t(517)][t(531)](t(473))&&n[t(583)](t(540)),e[t(517)][t(531)](t(541))&&e[t(517)][t(531)](t(587))&&(n[t(583)](t(501),((s,o)=>{const i=t,a=r[i(580)](e[i(582)][i(492)][i(573)]);e[i(582)][i(476)]((()=>{const t=i;n[t(568)](a,{commandName:t(501),commandParams:[o]},[],t(475))}))})),n[t(583)](t(550),((s,o)=>{const a=t;e[a(582)][a(476)]((t=>{const c=a;let u=r[c(580)](e[c(582)][c(492)][c(573)]),l=t[c(523)](u);const f=i.LivePosition[c(518)](l[c(506)],c(472)),h=i.LivePosition[c(518)](l[c(560)],c(498));n[c(566)]((()=>s(o))),u=r[c(580)](e[c(582)][c(492)][c(573)]),l=t[c(523)](u);const g=t[c(495)](f,h);f[c(529)](),h[c(529)](),n[c(568)](u,{commandName:c(501),commandParams:[o]},[],c(561)),g[c(506)][c(559)](l[c(506)])&&n[c(536)](t[c(495)](g[c(506)],l[c(506)]),c(561)),l[c(560)][c(559)](g[c(560)])&&n[c(536)](t[c(495)](l[c(560)],g[c(560)]),c(561))}))})),n[t(483)][t(565)](t(487),t(561),t(511),(()=>!1)),n[t(483)][t(565)](t(487),t(561),t(539),(()=>!1)),n[t(483)][t(565)](t(487),t(561),t(586),n[t(483)][t(552)](t(487),"",t(539))),n[t(483)][t(565)](t(481),t(561),t(511),(()=>!1)),n[t(483)][t(565)](t(481),t(561),t(586),(([r])=>{const s=t,o=n[s(483)][s(552)](s(481),"",s(586));let i=r[s(506)],a=r[s(560)];const c=e[s(582)][s(554)][s(528)](i,s(551)),u=e[s(582)][s(554)][s(528)](a,s(482));c[s(535)]&&(i=c[s(506)]),u[s(535)]&&(a=u[s(560)]),o([e[s(582)][s(495)](i,a)])})),n[t(483)][t(565)](t(487),t(561),t(520),c),n[t(483)][t(565)](t(481),t(561),t(520),c)),e[t(517)][t(531)](t(544))&&(n[t(583)](t(486),((s,o)=>{const i=t,a=e[i(517)][i(547)](i(569));let c=r[i(580)](e[i(582)][i(492)][i(573)]),u=a[i(574)](c);e[i(582)][i(476)]((()=>{const t=i;if(u)return void n[t(516)](e[t(582)][t(523)](u));const l=r[t(477)](c);s(o),c=r[t(580)](e[t(582)][t(492)][t(573)]),u=a[t(574)](c),n[t(536)](e[t(582)][t(523)](u),l?null:t(542))}))})),n[t(483)][t(565)](t(481),t(542),t(520),c));const o=[{type:t(487),subType:t(479)},{type:t(481),subType:t(542)},{type:t(487),subType:t(561)},{type:t(481),subType:t(561)}];function a(e,s){const i=t,a=o[i(585)]((({type:t,subType:n})=>e[i(589)]==t&&e[i(534)]==n)),c=o[i(585)]((({type:t,subType:e})=>s[i(589)]==t&&s[i(534)]==e));if(a<0||c<0)return!1;const u=e[i(494)](),l=s[i(494)]();if((0==a||1==a)&&2==c&&u[i(564)](l))return!0;if(2==a&&3==c){const t=n[i(509)](u,i(481))[i(532)]((({suggestion:t,meta:e})=>e[i(524)]&&i(561)==t[i(534)]));if(t[i(503)]>1&&l[i(560)][i(557)](u[i(506)]))return!0;if(1==t[i(503)]&&(u[i(506)][i(557)](l[i(560)])||u[i(560)][i(557)](l[i(506)])))return!0}if(3==a&&3==c&&u[i(506)][i(559)](l[i(506)])){const t=u[i(560)][i(521)],e=l[i(506)][i(514)];return r[i(477)](t)&&t===e}return!1}function c(t,e){return a(t,e)?[t,e]:a(e,t)?[e,t]:null}e[t(517)][t(531)](t(478))&&(n[t(504)](t(548)),n[t(575)](t(499)),n[t(489)][t(588)](t(499),Kr(s,t(513)))),e[t(517)][t(531)](t(510))&&(n[t(504)](t(553)),n[t(575)](t(545))),n[t(489)][t(488)]((e=>{const n=t;if(o[n(480)]((({type:t,subType:r})=>e[n(589)]==t&&e[n(534)]==r)))return e[n(558)]?{}:void 0})),n[t(489)][t(488)]((e=>{const n=t;if(n(481)==e[n(589)]||n(502)==e[n(589)]){const t=e[n(584)]();if(t&&t.is(n(490),n(549)))return{type:n(481)==e[n(589)]?n(485):n(497),element:t,quantity:1}}})),n[t(489)][t(488)]((e=>t(487)==e[t(589)]&&t(561)==e[t(534)]?{type:t(567),content:t(525)}:t(487)==e[t(589)]&&t(475)==e[t(534)]?{type:t(567),content:t(508)}:void 0)),n[t(489)][t(488)]((e=>{const n=t;if(n(562)!=e[n(589)])return;const{data:r}=e;if(!r||n(545)!=r[n(571)])return;const o=r[n(522)];return o?{type:n(567),content:Kr(s,n(556),'"'+o+'"')}:{type:n(567),content:Kr(s,n(505))}})),this[t(581)]()}[Do(581)](){const t=Do,e=this[t(493)],n=e[t(576)];e[t(517)][t(547)](t(579))[t(489)][t(488)]((e=>{const r=t;if(r(487)!=e[r(589)]&&r(537)!=e[r(589)])return;const{data:s}=e;if(s){if(r(553)==s[r(519)]){const t=s[r(590)][0][r(522)];return t?{type:r(567),content:Kr(n,r(556),'"'+t+'"')}:{type:r(567),content:Kr(n,r(505))}}if(r(548)==s[r(519)]){const t=s[r(590)][0][r(577)];return t?{type:r(567),content:Kr(n,r(484),t)}:{type:r(567),content:Kr(n,r(474))}}}}))}}const Bo=jo;function Uo(){const t=["16qSlVGj","_suggestionFactory","attribute","TrackChangesEditing","getSuggestionCallback","newValue","23334tCXxGo","format","src","1370535UwHbgn","enableDefaultAttributesIntegration","8279524JYQjBS","type","formatInline","registerCustomCallback","*Format:* replace image URL","get","*Replace image URL*","plugins","36NQaCrI","commandName","formatBlock","descriptionFactory","243296BkfceB","oldValue","locale","discard","ImageEditing","replaceImageSource","_registerLegacyDescription","key","registerDescriptionCallback","editor","_handleLegacySuggestions","afterInit","registerBlockAttribute","2qYUTfh","10NNuKmD","accept","541794fAYJJX","3903081WBYDIT","has","577198YLWtVn"];return(Uo=function(){return t})()}function jo(t,e){const n=Uo();return(jo=function(t,e){return n[t-=138]})(t,e)}!function(t){const e=jo,n=t();for(;;)try{if(317357===-parseInt(e(165))/1*(-parseInt(e(171))/2)+parseInt(e(178))/3*(parseInt(e(172))/4)+-parseInt(e(138))/5+-parseInt(e(168))/6+-parseInt(e(169))/7+parseInt(e(152))/8*(-parseInt(e(148))/9)+parseInt(e(166))/10*(parseInt(e(140))/11))break;n.push(n.shift())}catch(t){n.push(n.shift())}}(Uo);class Go extends t.Plugin{[Bo(163)](){const t=Bo;if(!this[t(161)][t(147)][t(170)](t(156)))return;const e=this[t(161)][t(154)],n=this[t(161)][t(147)][t(145)](t(175));n[t(139)](t(157)),n[t(164)](t(180)),n[t(151)][t(160)]((n=>{const r=t;if(r(174)!=n[r(141)])return;const{data:s}=n;return s&&r(180)==s[r(159)]?s[r(177)]&&s[r(153)]?{type:r(179),content:Kr(e,r(146))}:{type:r(179),content:""}:void 0})),this[t(162)]()}[Bo(162)](){const t=Bo,e=this[t(161)][t(147)][t(145)](t(175));e[t(173)][t(143)](t(150),t(157),t(167),e[t(173)][t(176)](t(150),null,t(155))),e[t(173)][t(143)](t(150),t(157),t(155),e[t(173)][t(176)](t(150),null,t(167))),this[t(158)]()}[Bo(158)](){const t=Bo,e=this[t(161)],n=e[t(154)];e[t(147)][t(145)](t(175))[t(151)][t(160)]((e=>{const r=t;if(r(150)!=e[r(141)]&&r(142)!=e[r(141)])return;const{data:s}=e;return s&&r(157)==s[r(149)]?{type:r(179),content:Kr(n,r(144))}:void 0}))}}const Vo=zo;function Ho(){const t=["1065117ZSZfup","discardSuggestion","1240faygFq","insertion","descriptionFactory","894PuIqPE","getSuggestion","filter","markInlineFormat","model","commandParams","FORMAT_SIDE_IMAGE","isBefore","nodeAfter","shouldConvertImageType","locale","*Format:* %0","setImageNaturalSizeAttributes","isBlockImage","join","side","subType","isInlineImage","isEqual","isOwn","181SxhfFU","chain","author","type","head","markBlockFormat","plugins","toLowerCase","registerCustomCallback","discard","commandReversedParams","getSuggestions","title","selection","isIntersecting","get","newRange","_suggestionFactory","end","_registerLegacyDescription","getSuggestionCallback","value","Users","getClosestSelectedImageElement","852365zbsoIe","convertInlineImageToBlock","imageStyle","editor","name","normalizedStyles","getChangedMarkers","registerDescriptionCallback","_splitMarkerName","findIndex","ImageUtils","formatBlock","change","afterInit","imageTypeInline","commandName","suggestion","hasSuggestion","1010584xHIeqF","354ZzMuQJ","_findSuggestions","isInContent","imageStylePostApply","getContainedElement","forEach","createRangeOn","next","getFirstRange","27VWxBWD","format","differ","registerPostFixer","length","24703NercDY","document","enableCommand","imageStylePreApply","nodeBefore","accept","commands","start","ImageStyleEditing","has","8MXseMD","imageTypeBlock","refresh","64961NvSuex","TrackChangesEditing","43593kkhOrR","2052rtwltZ","from","imageCaption","formatInline"];return(Ho=function(){return t})()}function zo(t,e){const n=Ho();return(zo=function(t,e){return n[t-=178]})(t,e)}!function(t){const e=zo,n=t();for(;;)try{if(287317===-parseInt(e(229))/1*(-parseInt(e(209))/2)+parseInt(e(204))/3+-parseInt(e(194))/4*(parseInt(e(253))/5)+parseInt(e(272))/6*(parseInt(e(184))/7)+parseInt(e(271))/8*(-parseInt(e(179))/9)+-parseInt(e(206))/10*(parseInt(e(199))/11)+parseInt(e(200))/12*(parseInt(e(197))/13))break;n.push(n.shift())}catch(t){n.push(n.shift())}}(Ho);class Wo extends t.Plugin{[Vo(266)](){const t=Vo,n=this[t(256)];if(!n[t(235)][t(193)](t(192)))return;const r=n[t(235)][t(244)](t(198)),s=n[t(235)][t(244)](t(263)),o={};r[t(186)](t(255),((o,i)=>{const a=t,c=n[a(235)][a(244)](a(251)).me,u=n[a(190)][a(244)](a(255));let l=s[a(252)](n[a(213)][a(185)][a(242)]),f=n[a(213)][a(278)](l),h=u[a(250)];if(h==i[a(250)])return;const g={commandName:a(255),commandParams:[i],formatGroupId:(0,e.uid)()};n[a(213)][a(265)]((()=>{const t=a;if(r[t(240)]()[t(211)]((e=>e[t(274)]&&c==e[t(231)]&&(t(264)==e[t(232)]||t(203)==e[t(232)])&&(t(187)==e[t(225)]||t(275)==e[t(225)])&&e[t(178)]()[t(227)](f)))[t(277)]((e=>r[t(205)](e[t(233)]))),l=s[t(252)](n[t(213)][t(185)][t(242)]),f=n[t(213)][t(278)](l),u[t(196)](),n[t(190)][t(244)](t(267))[t(196)](),n[t(190)][t(244)](t(195))[t(196)](),h=u[t(250)],h!=i[t(250)])return s[t(226)](l)&&u[t(218)](i[t(250)],l)?(o({...i,setImageSizes:!1}),l=s[t(252)](n[t(213)][t(185)][t(242)]),void r[t(234)](l,{...g,commandReversedParams:[{value:h||null,setImageSizes:!1}]},[],t(187))):void(s[t(222)](l)?r[t(234)](l,g,[],t(275)):r[t(212)](f,g,t(275)))}))}));for(const e of n[t(235)][t(244)](t(192))[t(258)])o[e[t(257)]]=e[t(241)][t(236)]();r[t(246)][t(237)](t(264),t(187),t(223),(()=>!1)),r[t(246)][t(237)](t(264),t(275),t(223),(()=>!1)),r[t(246)][t(237)](t(203),t(275),t(223),(()=>!1)),r[t(246)][t(237)](t(264),t(187),t(189),(([e])=>{const n=t;s[n(221)](e[n(276)]())})),r[t(246)][t(237)](t(264),t(187),t(238),((e,n)=>{const s=t;r[s(246)][s(249)](s(264),"",s(189))(e,{commandName:n[s(268)],commandParams:n[s(239)]})})),r[t(246)][t(237)](t(264),t(187),t(230),(function(t,e){return a(t,e)?[t,e]:a(e,t)?[e,t]:null}));const i=[{type:t(264),subType:t(187)},{type:t(207),subType:t(202)},{type:t(264),subType:t(254)},{type:t(207),subType:t(254)}];function a(e,n){const o=t,a=i[o(262)]((({type:t,subType:n})=>e[o(232)]==t&&e[o(225)]==n)),c=i[o(262)]((({type:t,subType:e})=>n[o(232)]==t&&n[o(225)]==e));if(a<0||c<0)return!1;const u=e[o(178)](),l=n[o(178)]();if((0==a||1==a)&&2==c&&u[o(243)](l))return!0;if(2==a&&3==c){const t=r[o(273)](u,o(207))[o(211)]((({suggestion:t,meta:e})=>e[o(228)]&&o(254)==t[o(225)]));if(t[o(183)]>1&&l[o(247)][o(227)](u[o(191)]))return!0;if(1==t[o(183)]&&(u[o(191)][o(227)](l[o(247)])||u[o(247)][o(227)](l[o(191)])))return!0}if(3==a&&3==c&&u[o(191)][o(216)](l[o(191)])){const t=u[o(247)][o(217)],e=l[o(191)][o(188)];return s[o(222)](t)&&t===e}return!1}n[t(213)][t(185)][t(182)]((()=>{const e=t;let o=!1;const i=Array[e(201)](n[e(213)][e(185)][e(181)][e(259)]());for(const{name:t,data:n}of i){const{group:i,type:a,subType:c,id:u}=r[e(261)](t);if(e(269)==i&&r[e(270)](u)){if(e(264)==a&&(e(187)==c||e(275)==c)){const t=r[e(210)](u);if(n[e(245)]){const n=t[e(178)]()[e(276)]();if(s[e(222)](n))continue;r[e(205)](t),o=!0}}if(e(207)==a&&e(202)==c&&!n[e(245)]){const t=r[e(210)](u);t[e(279)]&&t[e(279)][e(274)]&&(r[e(205)](t[e(279)]),o=!0)}}}return o})),this[t(248)](o)}[Vo(248)](t){const e=Vo,n=this[e(256)],r=n[e(219)];n[e(235)][e(244)](e(198))[e(208)][e(260)]((n=>{const s=e;if(s(264)!=n[s(232)]&&s(203)!=n[s(232)])return;const{data:o}=n;if(!o||s(255)!=o[s(268)])return;const i=o[s(214)][0][s(250)];return function(t){const e=s;return{type:e(180),content:Kr(r,e(220),t)}}(s(224)===i?Kr(r,s(215)):t[i]||i)}))}}const Ko=Xo;function Xo(t,e){const n=qo();return(Xo=function(t,e){return n[t-=108]})(t,e)}function qo(){const t=["value","commands","bind","plugins","track_changes","_setSuggestionData","afterInit","195205rcezGL","forEach","importWord","1624635MzpALL","lowest","trackChanges","14704260avgCJy","_handleImportedData","424669qbLgNi","enableCommand","TrackChangesEditing","execute","_trackChangesValueDuringImport","60dxhnVh","279309XawTbE","3309300WKreQs","get","editor","_trackChangesExecuted","Users","16JHIbad","collaboration_features","dataInsert","high","listenTo","11juBjiH","4yDBkix","430389QYZRKP"];return(qo=function(){return t})()}!function(t){const e=Xo,n=t();for(;;)try{if(312583===parseInt(e(118))/1*(-parseInt(e(130))/2)+-parseInt(e(131))/3+parseInt(e(117))/4*(-parseInt(e(139))/5)+parseInt(e(119))/6+-parseInt(e(112))/7+parseInt(e(124))/8*(-parseInt(e(142))/9)+parseInt(e(110))/10*(parseInt(e(129))/11))break;n.push(n.shift())}catch(t){n.push(n.shift())}}(qo);class Zo extends t.Plugin{constructor(t){const e=Xo;super(t),this[e(116)]=!1,this[e(122)]=!1}[Ko(138)](){const t=Ko,e=this[t(121)],n=e[t(133)][t(120)](t(141)),r=e[t(133)][t(120)](t(109));n&&(n.on(t(115),((e,[,n])=>{const s=t;this[s(116)]=r[s(132)],n[s(125)][s(136)]=!this[s(116)]}),{priority:t(127)}),this[t(128)](n,t(126),this[t(111)][t(134)](this)),this[t(128)](n,t(126),(()=>{const e=t;this[e(122)]&&(r[e(115)](),this[e(122)]=!1)}),{priority:t(108)}),e[t(135)][t(120)](t(114))[t(113)](t(141)))}[Ko(111)](t,e){const n=Ko,{suggestions:r}=e,s=this[n(121)][n(133)][n(120)](n(109)),o=s[n(132)];this[n(116)]!==o&&(s[n(115)](),this[n(122)]=!0),r&&r[n(140)]((({id:t,type:e,author:r,created_at:s})=>{const o=n,i={id:t,type:e,authorId:this[o(121)][o(135)][o(120)](o(123)).me.id,createdAt:new Date,data:null,hasComments:!1,attributes:{"@external":{authorName:r,createdAt:s?new Date(s):new Date,source:o(141)}}};this[o(121)][o(135)][o(120)](o(114))[o(137)](i)}))}}const Jo=Yo;function Yo(t,e){const n=$o();return(Yo=function(t,e){return n[t-=117]})(t,e)}!function(t){const e=Yo,n=t();for(;;)try{if(503439===-parseInt(e(159))/1*(parseInt(e(129))/2)+parseInt(e(127))/3*(parseInt(e(154))/4)+parseInt(e(134))/5*(-parseInt(e(123))/6)+parseInt(e(117))/7*(-parseInt(e(122))/8)+-parseInt(e(118))/9*(parseInt(e(143))/10)+parseInt(e(121))/11*(parseInt(e(139))/12)+parseInt(e(144))/13)break;n.push(n.shift())}catch(t){n.push(n.shift())}}($o);class Qo extends t.Plugin{[Jo(124)](){const t=Jo,e=this[t(131)],n=e[t(133)][t(120)](t(156));if(e[t(133)][t(126)](t(142))&&(n[t(125)](t(140)),n[t(125)](t(148))),e[t(133)][t(126)](t(151)))for(const e of[t(130),t(146)])n[t(155)](e);const r=e[t(153)];n[t(132)](t(149)),n[t(152)][t(128)](t(149),Kr(r,t(137))),this[t(145)]()}[Jo(145)](){const t=Jo,e=this[t(131)],n=e[t(153)],r=e[t(133)][t(120)](t(156));r[t(152)][t(158)]((e=>{const s=t;if(s(135)!=e[s(150)])return;const{data:o}=e;if(!o)return;if(s(130)!=o[s(141)]&&s(146)!=o[s(141)])return;const i=e[s(138)]()[0],a=r[s(152)][s(136)](i);return s(130)==o[s(141)]?{type:s(147),content:Kr(n,s(119),a)}:s(146)==o[s(141)]?{type:s(147),content:Kr(n,s(157),a)}:void 0}))}}function $o(){const t=["157236dKuGit","indent","commandName","IndentEditing","70CSmDVl","35136764UMEtpq","_registerLegacyDescription","outdentBlock","format","outdent","blockIndent","type","IndentBlock","descriptionFactory","locale","168uZisbT","enableDefaultAttributesIntegration","TrackChangesEditing","*Outdent:* %0","registerDescriptionCallback","516377wjEWsx","864353iWxgVj","932157ifwVce","*Indent:* %0","get","11BlKwHs","48Poymhi","122316VTomQf","afterInit","enableCommand","has","24327RrIhVC","registerAttributeLabel","2oKtziB","indentBlock","editor","registerBlockAttribute","plugins","140tcDbkz","formatBlock","getItemLabel","FORMAT_INDENT","getItems"];return($o=function(){return t})()}var ti=ni;function ei(){var t=["init","TrackChangesEditing","186DZCUUP","input","72UGiygE","321HNBMvm","enableCommand","2716585lmbSuT","4350250cNvlpo","plugins","requires","434600jFLtPg","23652IQPiea","1365344tEKHjx","editor","46207DYZxBJ","get","206985uHYEBc"];return(ei=function(){return t})()}function ni(t,e){var n=ei();return(ni=function(t,e){return n[t-=389]})(t,e)}!function(t){for(var e=ni,n=t();;)try{if(378643===parseInt(e(394))/1+parseInt(e(390))/2+-parseInt(e(400))/3*(parseInt(e(389))/4)+-parseInt(e(402))/5+parseInt(e(397))/6*(-parseInt(e(392))/7)+-parseInt(e(406))/8*(-parseInt(e(399))/9)+parseInt(e(403))/10)break;n.push(n.shift())}catch(t){n.push(n.shift())}}(ei);class ri extends t.Plugin{static get[ti(405)](){return[ws.Input]}[ti(395)](){var t=ti;this[t(391)][t(404)][t(393)](t(396))[t(401)](t(398))}}const si=oi;function oi(t,e){const n=ii();return(oi=function(t,e){return n[t-=242]})(t,e)}function ii(){const t=["enableDefaultAttributesIntegration","afterInit","_registerLegacyDescription","3263334eJcauT","formatInline","3155690XMnCrY","99602zNIbAf","registerAttributeLabel","registerDescriptionCallback","plugins","364RBqVKq","40833QBRmDs","editor","get","newValue","label","commandName","*Set link:* %0","locale","40148581DRmXWh","unlink","12SGVrWI","format","attribute","commandParams","18WagRTJ","*Remove link*","TrackChangesEditing","key","linkHref","toLowerCase","type","registerInlineAttribute","link","manualDecorators","4989295TLIvel","4647976urKtXN","has","descriptionFactory","LinkEditing","commands","18KbRKyr","14bksJAA","link ("];return(ii=function(){return t})()}!function(t){const e=oi,n=t();for(;;)try{if(620926===-parseInt(e(254))/1*(-parseInt(e(245))/2)+parseInt(e(259))/3*(parseInt(e(258))/4)+parseInt(e(283))/5+parseInt(e(251))/6*(parseInt(e(246))/7)+-parseInt(e(284))/8+-parseInt(e(273))/9*(-parseInt(e(253))/10)+parseInt(e(267))/11*(-parseInt(e(269))/12))break;n.push(n.shift())}catch(t){n.push(n.shift())}}(ii);class ai extends t.Plugin{[si(249)](){const t=si,e=this[t(260)];if(!e[t(257)][t(285)](t(243)))return;const n=e[t(257)][t(261)](t(275)),r=e[t(244)][t(261)](t(281));n[t(248)](t(281)),n[t(248)](t(268)),n[t(280)](t(277));for(const e of r[t(282)])n[t(280)](e.id),n[t(242)][t(255)](e.id,t(247)+e[t(263)][t(278)]()+")");n[t(242)][t(256)]((n=>{const r=t;if(r(271)!=n[r(279)])return;const{data:s}=n;if(!s||r(277)!=s[r(276)])return;const o=s[r(262)],i=e[r(266)];return{type:r(270),content:null==o?Kr(i,r(274)):Kr(i,r(265),'"'+o+'"')}})),this[t(250)]()}[si(250)](){const t=si,e=this[t(260)],n=e[t(266)];e[t(257)][t(261)](t(275))[t(242)][t(256)]((e=>{const r=t;if(r(252)!=e[r(279)])return;const{data:s}=e;if(s){if(r(281)==s[r(264)]){const t=s[r(272)][0];return{type:r(270),content:Kr(n,r(265),'"'+t+'"')}}return r(268)==s[r(264)]?{type:r(270),content:Kr(n,r(274))}:void 0}}))}}const ci=ui;function ui(t,e){const n=li();return(ui=function(t,e){return n[t-=301]})(t,e)}function li(){const t=["getSelectedBlocks","formatInline","35XhvAHi","blockName","outdentList","listIndent","commandName","paragraph","*Check item*","selection","ELEMENT_TODO_LIST","value","2558560KVHVKg","document","createPositionAt","forceValue","todoList","parent","_selectedElements","*Indent:* %0","model","type","plugins","ELEMENT_BULLETED_LIST","length","execute","ELEMENT_NUMBERED_LIST","change","LegacyListEditing","listType","LegacyTodoListEditing","todo","commandParams","markBlockFormat","replace","3385236LDtQrr","filter","todoListChecked","registerDescriptionCallback","*Change to:* %0","findIndex","1180836oChMlS","locale","format","listItem","enableCommand","*Outdent:* %0","afterInit","indentList","createRange","slice","869261VGimVy","1598044dgoEWx","checkTodoList","end","descriptionFactory","5291850MZNsbB","name","push","List","from","commands","bulletedList","editor","element","add","nextSibling","formatBlock","getAttribute","*Uncheck item*","schema","isObject","ELEMENT_LIST_ITEM","numbered","1243384yHDAxM","before","TrackChangesEditing","registerElementLabel","checkChild","previousSibling","numberedList","get","3ZADIGf","has","bulleted"];return(li=function(){return t})()}!function(t){const e=ui,n=t();for(;;)try{if(500422===-parseInt(e(318))/1+parseInt(e(319))/2*(parseInt(e(349))/3)+parseInt(e(302))/4+-parseInt(e(364))/5+parseInt(e(323))/6+parseInt(e(354))/7*(-parseInt(e(341))/8)+parseInt(e(308))/9)break;n.push(n.shift())}catch(t){n.push(n.shift())}}(li);class fi extends t.Plugin{[ci(314)](){const t=ci,e=this[t(330)],n=e[t(309)];if(!e[t(374)][t(350)](t(380)))return;const r=e[t(374)][t(348)](t(343)),s=e[t(374)][t(350)](t(382));function o(t){return()=>{const n=ui,s=e[n(372)][n(365)][n(361)],o=e[n(328)][n(348)](t);if(o[n(363)])return void e[n(377)](n(359),{});const i=t[n(317)](0,-4),a=function(t,e,r){const s=n;let o=Array[s(327)](t)[s(303)]((t=>function(t,e){const n=s;return e[n(345)](t[n(369)],n(311))&&!e[n(338)](t)}(t,r)));o=o[s(303)]((t=>!t.is(s(331),s(311))||t[s(335)](s(381))!=e));const i=new Set;for(const t of o)t.is(s(331),s(311))?i[s(332)](hi(t)):i[s(332)](t);return Array[s(327)](i)}(s[n(352)](),i,e[n(372)][n(337)]);e[n(372)][n(379)]((()=>{const e=n;for(const n of a)r[e(385)](n,{commandName:t,commandParams:[{forceValue:!o[e(363)]}],formatGroupId:e(355)},gi(n))}))}}function i(t){return()=>{const n=ui,s=function(t){const e=ui;let n=Array[e(327)](t);const r=n[e(307)]((t=>e(311)!=t[e(324)]));return r>-1&&(n=n[e(317)](0,r)),n}(e[n(372)][n(365)][n(361)][n(352)]()),o=e[n(372)][n(316)](e[n(372)][n(366)](s[0],n(342)),e[n(372)][n(366)](s[s[n(376)]-1],n(321)));e[n(372)][n(379)]((()=>{const e=n;r[e(385)](o,{commandName:t,commandParams:[],formatGroupId:e(357)},function(t){const n=e,r=new Set;for(const e of t){let t=e[n(333)];for(;t&&t[n(335)](n(357))>e[n(335)](n(357));)r[n(332)](t),t=t[n(333)]}return Array[n(327)](r)}(s))}))}}r[t(312)](t(347),o(t(347))),r[t(312)](t(329),o(t(329))),s&&r[t(312)](t(368),o(t(368))),r[t(312)](t(315),i(t(315))),r[t(312)](t(356),i(t(356))),s&&r[t(312)](t(320),(()=>{const n=t,s=e[n(328)][n(348)](n(320)),o=Array[n(327)](s[n(370)]);o[n(303)]((t=>t[n(335)](n(304))!=s[n(363)])),e[n(372)][n(379)]((()=>{const t=n;for(const e of o)r[t(385)](e,{commandName:t(320),commandParams:[{forceValue:!s[t(363)]}]})}))})),r[t(322)][t(344)](t(311),(e=>Kr(n,t(339),e))),r[t(322)][t(305)]((e=>{const r=t;if(r(334)!=e[r(373)]&&r(353)!=e[r(373)])return;const{data:s}=e;if(s){if(r(347)==s[r(358)]||r(329)==s[r(358)]||r(368)==s[r(358)])switch(s[r(358)][r(301)](r(326),"")){case r(351):return o(Kr(n,r(375)));case r(340):return o(Kr(n,r(378)));case r(383):return o(Kr(n,r(362)))}if(r(315)==s[r(358)])return{type:r(310),content:Kr(n,r(371),Kr(n,r(339)))};if(r(356)==s[r(358)])return{type:r(310),content:Kr(n,r(313),Kr(n,r(339)))};if(r(320)==s[r(358)])return s[r(384)][0][r(367)]?{type:r(310),content:Kr(n,r(360))}:{type:r(310),content:Kr(n,r(336))}}function o(t){const e=r;return{type:e(310),content:Kr(n,e(306),t)}}}))}}function hi(t){const e=ci,n=t[e(335)](e(357));if(0==n)return t;let r=t;for(;t[e(346)]&&t[e(346)].is(e(331),e(311));){const s=t[e(346)][e(335)](e(357));if(s==n)r=t[e(346)];else if(s<n)break;t=t[e(346)]}return r}function gi(t){const e=ci,n=[];if(t.is(e(331),e(311))&&t[e(335)](e(357))>0){let r=t[e(333)];for(;r&&e(311)==r[e(324)]&&r[e(335)](e(357))==t[e(335)](e(357));)n[e(325)](r),r=r[e(333)]}return n}const di=pi;function pi(t,e){const n=Ii();return(pi=function(t,e){return n[t-=284]})(t,e)}!function(t){const e=pi,n=t();for(;;)try{if(201432===-parseInt(e(335))/1*(-parseInt(e(313))/2)+parseInt(e(360))/3*(parseInt(e(354))/4)+parseInt(e(290))/5+parseInt(e(304))/6*(-parseInt(e(285))/7)+-parseInt(e(348))/8+parseInt(e(329))/9+-parseInt(e(345))/10)break;n.push(n.shift())}catch(t){n.push(n.shift())}}(Ii);class mi extends t.Plugin{[di(305)](){const t=di;if(!this[t(334)][t(298)][t(349)](t(336)))return;const e=this[t(334)][t(316)][t(307)](t(326)),n=this[t(334)][t(298)][t(307)](t(288));e[t(297)]&&n[t(308)](t(331),this[t(303)][t(333)](this)),e[t(339)]&&n[t(308)](t(332),this[t(322)][t(333)](this)),e[t(325)]&&n[t(308)](t(323),this[t(364)][t(333)](this)),n[t(361)][t(289)](this[t(352)][t(333)](this))}[di(303)](t,e={}){const n=di,r=this[n(334)][n(298)][n(307)](n(288)),s=this[n(346)]();this[n(334)][n(340)][n(327)]((()=>{const t=n;r[t(342)](s,{commandName:t(331),commandParams:[{type:e[t(351)]}],formatGroupId:t(331)})}))}[di(322)](t,e={}){const n=di,r=this[n(334)][n(298)][n(307)](n(288)),s=this[n(318)]((t=>t.is(n(310),n(320))&&n(286)===t[n(301)](n(355))));if(s[n(363)]<1)return;const o=s[n(343)]((t=>this[n(334)][n(340)][n(341)](this[n(334)][n(340)][n(293)](t,n(294)),this[n(334)][n(340)][n(293)](t,0))));this[n(334)][n(340)][n(327)]((()=>{const t=n;r[t(342)](o,{commandName:t(332),commandParams:[{reversed:e[t(339)]}],formatGroupId:t(332)})}))}[di(364)](t,e={}){const n=di,r=this[n(334)][n(298)][n(307)](n(288)),s=this[n(318)]((t=>t.is(n(310),n(320))&&n(286)===t[n(301)](n(355))));if(s[n(363)]<1)return;const o=s[n(343)]((t=>this[n(334)][n(340)][n(341)](this[n(334)][n(340)][n(293)](t,n(294)),this[n(334)][n(340)][n(293)](t,0))));this[n(334)][n(340)][n(327)]((()=>{const t=n;r[t(342)](o,{commandName:t(323),commandParams:[{startIndex:e[t(325)]}],formatGroupId:t(323)})}))}[di(352)](t){const e=di;if(e(314)!=t[e(351)]&&e(330)!=t[e(351)])return;const n=this[e(334)][e(321)],{data:r}=t;if(!r)return;let s,o;switch(r[e(350)]){case e(331):s=e(287),o={type:e(302),content:Kr(n,s,Kr(n,this[e(362)](r[e(337)][0][e(351)])))};break;case e(332):s=r[e(337)][0][e(339)]?e(338):e(292),o={type:e(302),content:Kr(n,s)};break;case e(323):s=e(306),o={type:e(302),content:Kr(n,s,r[e(337)][0][e(325)])}}return o}[di(346)](){const t=di;var e,n,r,s;const o=this[t(334)][t(298)][t(307)](t(284));let i=Array[t(356)](this[t(334)][t(340)][t(359)][t(296)][t(357)]());return(null===(e=i[0])||void 0===e?void 0:e.is(t(310),t(320)))&&i[t(311)](...o[t(347)](this[t(334)][t(340)][t(359)][t(296)][t(312)](),t(315))),(null===(n=i[i[t(363)]-1])||void 0===n?void 0:n.is(t(310),t(320)))&&i[t(344)](...o[t(347)](this[t(334)][t(340)][t(359)][t(296)][t(353)](),t(358))),i=[...new Set(i)],(null===(s=null===(r=this[t(334)][t(340)][t(359)][t(296)][t(312)]())||void 0===r?void 0:r[t(295)])||void 0===s?void 0:s.is(t(310),t(320)))&&(i=i[t(309)]((e=>e.is(t(310),t(320))))),i}[di(318)](t){const e=di,n=this[e(334)][e(298)][e(307)](e(284));let r=Array[e(356)](this[e(334)][e(340)][e(359)][e(296)][e(357)]())[e(309)](t)[e(343)]((t=>{const r=e,s=this[r(334)][r(340)][r(293)](t,0);return[...n[r(347)](s,r(315)),...n[r(347)](s,r(358))]}))[e(328)]();return r=[...new Set(r)],r}[di(362)](t){const e=di;return e(324)+(this[e(334)][e(298)][e(307)](e(284))[e(319)](t)||e(291))[e(299)]()+e(317)+t[e(299)]()[e(300)](/-/g,"_")}}function Ii(){const t=["startIndex","list.properties","change","flat","1479600mhsRxX","formatInline","listStyle","listReversed","bind","editor","1qFrGFH","LegacyListPropertiesEditing","commandParams","*Format:* set order to reversed","reversed","model","createRange","markMultiRangeBlockFormat","map","push","4742260zWXMhn","_getSuggestionBlocksForListStyle","getSiblingNodes","1437000YahBKS","has","commandName","type","handleDescriptions","getLastPosition","8YPnXYD","listType","from","getSelectedBlocks","forward","document","132414aLRamA","descriptionFactory","_getTranslationKeyForListStyle","length","handleListStartCommand","LegacyListUtils","14525ASgUii","numbered","*Change to:* %0","TrackChangesEditing","registerDescriptionCallback","1796395owUPPE","default","*Format:* set order to regular","createPositionAt","before","parent","selection","styles","plugins","toUpperCase","replace","getAttribute","format","handleListStyleCommand","42varLwv","afterInit","*Format:* set start index to %0","get","enableCommand","filter","element","unshift","getFirstPosition","515706xAuhhu","formatBlock","backward","config","_LIST_","_getSuggestionBlocks","getListTypeFromListStyleType","listItem","locale","handleListReversedCommand","listStart","ELEMENT_"];return(Ii=function(){return t})()}const Ei=Ti;function bi(){const t=["11305OCnTnJ","ELEMENT_MEDIA","afterInit","options","descriptionFactory","editor","dataDowncast","455934jNzitK","div","createEmptyElement","data","for","172096SNaBLB","get","523839rxTefj","showSuggestionHighlights","elementToElement","conversion","media","16107363CcxPsH","730254MytKIK","locale","MediaEmbedEditing","TrackChangesEditing","plugins","1068138eatxIt","has","high","12ZgwnnM","stop","registerElementLabel","downcastDispatcher","attribute:url:media","mediaEmbed","1542xFBSDY","enableCommand"];return(bi=function(){return t})()}function Ti(t,e){const n=bi();return(Ti=function(t,e){return n[t-=317]})(t,e)}!function(t){const e=Ti,n=t();for(;;)try{if(480822===-parseInt(e(341))/1+-parseInt(e(352))/2+-parseInt(e(334))/3*(-parseInt(e(319))/4)+-parseInt(e(327))/5*(parseInt(e(325))/6)+-parseInt(e(347))/7+-parseInt(e(339))/8+parseInt(e(346))/9)break;n.push(n.shift())}catch(t){n.push(n.shift())}}(bi);class _i extends t.Plugin{[Ei(329)](){const t=Ei,e=this[t(332)];if(!e[t(351)][t(317)](t(349)))return;const n=e[t(351)][t(340)](t(350)),r=e[t(348)];n[t(326)](t(324)),n[t(331)][t(321)](t(345),(e=>Kr(r,t(328),e))),e[t(344)][t(338)](t(333))[t(343)]({model:t(345),view:(e,{writer:n,options:r})=>{const s=t;if(r[s(342)])return n[s(336)](s(335))},converterPriority:t(318)}),e[t(337)][t(322)].on(t(323),((e,n,r)=>{const s=t;r[s(330)][s(342)]&&e[s(320)]()}),{priority:t(318)})}}const yi=Ai;function Ai(t,e){const n=ki();return(Ai=function(t,e){return n[t-=172]})(t,e)}function ki(){const t=["MentionEditing","get","398098cizWOs","2037912qxoOeB","4482162ebqBxZ","editor","63RLYDpp","afterInit","TrackChangesEditing","enableCommand","has","770776VKDfHH","plugins","1781080zuxRZI","mention","433580UQmlga","420183zplMUc","5YVtrSr"];return(ki=function(){return t})()}!function(t){const e=Ai,n=t();for(;;)try{if(488751===parseInt(e(184))/1+-parseInt(e(179))/2+parseInt(e(185))/3+-parseInt(e(177))/4+parseInt(e(181))/5*(-parseInt(e(186))/6)+-parseInt(e(188))/7*(-parseInt(e(175))/8)+-parseInt(e(180))/9)break;n.push(n.shift())}catch(t){n.push(n.shift())}}(ki);class Ci extends t.Plugin{[yi(189)](){const t=yi,e=this[t(187)];e[t(176)][t(174)](t(182))&&e[t(176)][t(183)](t(172))[t(173)](t(178))}}const Li=Ri;function Ni(){const t=["descriptionFactory","afterInit","*Insert:* %0","*Remove:* %0","element","insertMergeFieldBlock","getLabel","insertMergeField","1604751kRgwMs","18596XgdVpx","25072982bHvRHg","TrackChangesEditing","12204RVaGvP","enableCommand","738189ZWKALl","type","mergeField","116LkhYdh","get","767706coNPeg","locale","ELEMENT_MERGE_FIELD","1410JQoHuD","editor","190EHbthX","registerElementLabel","deletion","has","getContainedElement","insertion","registerDescriptionCallback","plugins","getAttribute","mergeFieldBlock","MergeFieldsEditing","4976840ooGIVQ","7JSwWQt"];return(Ni=function(){return t})()}function Ri(t,e){const n=Ni();return(Ri=function(t,e){return n[t-=217]})(t,e)}!function(t){const e=Ri,n=t();for(;;)try{if(789840===-parseInt(e(252))/1*(parseInt(e(247))/2)+-parseInt(e(243))/3+parseInt(e(244))/4*(-parseInt(e(220))/5)+parseInt(e(217))/6+-parseInt(e(234))/7*(parseInt(e(233))/8)+parseInt(e(249))/9*(parseInt(e(222))/10)+parseInt(e(245))/11)break;n.push(n.shift())}catch(t){n.push(n.shift())}}(Ni);class Si extends t.Plugin{[Li(236)](){const t=Li,e=this[t(221)];if(!e[t(229)][t(225)](t(232)))return;e[t(229)][t(253)](t(246))[t(248)](t(242)),e[t(229)][t(253)](t(246))[t(248)](t(240));const n=e[t(229)][t(253)](t(246)),r=e[t(218)];n[t(235)][t(223)](t(251),(e=>Kr(r,t(219),e))),n[t(235)][t(223)](t(231),(e=>Kr(r,t(219),e))),n[t(235)][t(228)]((n=>{const s=t;if(s(227)!=n[s(250)]&&s(224)!=n[s(250)])return;const o=n[s(226)]();if(null==o)return;if(!o.is(s(239),s(251))&&!o.is(s(239),s(231)))return;const i=e[s(229)][s(253)](s(232))[s(241)](o[s(230)]("id"));return s(227)==n[s(250)]?{type:s(227),content:Kr(r,s(237),'"'+i+'" '+Kr(r,s(219)))}:{type:s(224),content:Kr(r,s(238),'"'+i+'" '+Kr(r,s(219)))}}))}}function Mi(){const t=["registerBlockAttribute","listType","2107496DsOtYi","MultiLevelList","9594BzhCJb","oldValue","*Set format:* %0","25240SfDZtu","multiLevelList","next","1327374jLhAgF","data","377890GOUrsT","ELEMENT_MULTI_LEVEL_LIST","1017dviMTw","has","descriptionFactory","plugins","afterInit","key","50piBmnb","locale","*Remove format:* %0","enableDefaultAttributesIntegration","newValue","handleDescriptions","558411NcepEt","editor","format","TrackChangesEditing","1211850BPvhcL","10VJRjSs","registerDescriptionCallback","get","listMarkerStyle","head"];return(Mi=function(){return t})()}const vi=wi;function wi(t,e){const n=Mi();return(wi=function(t,e){return n[t-=289]})(t,e)}!function(t){const e=wi,n=t();for(;;)try{if(273465===-parseInt(e(297))/1+-parseInt(e(305))/2*(-parseInt(e(289))/3)+parseInt(e(323))/4+parseInt(e(316))/5*(parseInt(e(295))/6)+parseInt(e(311))/7+-parseInt(e(292))/8*(parseInt(e(299))/9)+-parseInt(e(315))/10)break;n.push(n.shift())}catch(t){n.push(n.shift())}}(Mi);class Oi extends t.Plugin{[vi(303)](){const t=vi,e=this[t(312)],n=e[t(302)][t(318)](t(314));e[t(302)][t(300)](t(324))&&(n[t(308)](t(293)),n[t(321)](t(319)),n[t(301)][t(317)]((e=>this[t(310)](e))))}[vi(310)](t){const e=vi,n=this[e(312)][e(306)],{data:r}=t,s={type:e(313),content:""};if(r&&e(319)==r[e(304)]){if(!r[e(290)])return{type:e(313),content:Kr(n,e(291),Kr(n,e(298)))+" ("+r[e(309)]+")"};if(!r[e(309)]){let o=t[e(320)];for(;o;){if(o[e(296)]&&e(322)==o[e(296)][e(304)]&&o[e(296)][e(309)])return s;o=o[e(294)]}return{type:e(313),content:Kr(n,e(307),Kr(n,e(298)))+" ("+r[e(290)]+")"}}}}}function Fi(t,e){const n=Pi();return(Fi=function(t,e){return n[t-=374]})(t,e)}const Di=Fi;function Pi(){const t=["plugins","get","6324769gzAMuM","40aUxWFY","enableCommand","1173287beIxFD","5EbaTIB","106SBquhz","4680548ALjmgp","registerElementLabel","10352gSAjEZ","afterInit","has","locale","8754585oRjgIh","27777QFngjx","pageBreak","editor","descriptionFactory","PageBreakEditing","TrackChangesEditing","ELEMENT_PAGE_BREAK","6507LsgrIG","3060996NnWxKz"];return(Pi=function(){return t})()}!function(t){const e=Fi,n=t();for(;;)try{if(642292===-parseInt(e(387))/1+-parseInt(e(389))/2*(-parseInt(e(397))/3)+-parseInt(e(390))/4*(parseInt(e(388))/5)+parseInt(e(381))/6+-parseInt(e(396))/7+parseInt(e(392))/8*(parseInt(e(380))/9)+parseInt(e(385))/10*(parseInt(e(384))/11))break;n.push(n.shift())}catch(t){n.push(n.shift())}}(Pi);class xi extends t.Plugin{[Di(393)](){const t=Di,e=this[t(375)];if(!e[t(382)][t(394)](t(377)))return;e[t(382)][t(383)](t(378))[t(386)](t(374));const n=e[t(382)][t(383)](t(378)),r=e[t(395)];n[t(376)][t(391)](t(374),(e=>Kr(r,t(379),e)))}}const Bi=ji;function Ui(){const t=["$text","nodeAfter","has","editing","*Insert:* %0","showSuggestionHighlights","*Change to:* %0","markerRange","data","addClass","format","model","formatBlock","plugins","104Nwddso","1192575HlQGib","448984utwCYk","toViewPosition","registerDescriptionCallback","createUIElement","get","335704UkURyb","isLimit","options","insertion","enableDefaultAttributesIntegration","span","editor","activeMarkers","mapper","isBlock","58700qRsQHB","_registerLegacyDescription","insert","start","downcastDispatcher","ck-suggestion-marker-split","15LIdUfE","end","highest","consumable","1722322MerMeh","_splitMarkerName","afterInit","type","includes","ELEMENT_PARAGRAPH","schema","276870SXRKNE","Paragraph","markerName","registerElementLabel","ck-suggestion-marker--active","enableCommand","commandName","getItemLabel","TrackChangesEditing","checkChild","consume","getFirstRange","locale","paragraph","bindElementToMarker","name","isTouching","writer","694017lRvahy","insertParagraph","addMarker:suggestion:insertion","descriptionFactory"];return(Ui=function(){return t})()}function ji(t,e){const n=Ui();return(ji=function(t,e){return n[t-=382]})(t,e)}!function(t){const e=ji,n=t();for(;;)try{if(250537===parseInt(e(400))/1+parseInt(e(390))/2+parseInt(e(384))/3+-parseInt(e(385))/4*(-parseInt(e(406))/5)+parseInt(e(417))/6+parseInt(e(410))/7+-parseInt(e(383))/8*(parseInt(e(435))/9))break;n.push(n.shift())}catch(t){n.push(n.shift())}}(Ui);class Gi extends t.Plugin{[Bi(412)](){const t=Bi,e=this[t(396)];if(!e[t(382)][t(441)](t(418)))return;const n=e[t(429)],r=e[t(382)][t(389)](t(425));r[t(438)][t(420)](t(430),(e=>Kr(n,t(415),e))),r[t(394)](t(430)),r[t(422)](t(436)),e[t(442)][t(404)].on(t(437),Vi(e),{priority:t(408)}),e[t(447)][t(404)].on(t(437),((n,r,s)=>{const o=t;s[o(392)][o(444)]&&Vi(e,{showActiveMarker:!1})(n,r,s)}),{priority:t(408)});const s=r[t(438)];s[t(387)]((r=>{const o=t;if(o(393)!==r[o(413)])return;const{start:i,end:a}=r[o(428)]();if(!i[o(433)](a)||!i[o(440)])return;const c=e[o(450)][o(416)],u=i[o(440)];return c[o(399)](u)&&!c[o(391)](u)&&c[o(426)](u,o(439))?{type:o(393),content:Kr(n,o(443),s[o(424)](u,1))}:void 0})),this[t(401)]()}[Bi(401)](){const t=Bi,e=this[t(396)],n=e[t(429)];e[t(382)][t(389)](t(425))[t(438)][t(387)]((e=>{const r=t;if(r(451)!=e[r(413)])return;const{data:s}=e;return s&&r(430)==s[r(423)]?{type:r(449),content:Kr(n,r(445),Kr(n,r(415)))}:void 0}))}}function Vi(t,{showActiveMarker:e=!0}={}){return(n,r,s)=>{const o=ji,i=t[o(382)][o(389)](o(425)),a=r[o(446)][o(403)],c=r[o(446)][o(407)],u=t[o(450)][o(416)];if(!a[o(433)](c)||!a[o(440)])return;const l=a[o(440)];if(u[o(399)](l)&&!u[o(391)](l)&&u[o(426)](l,o(439))){if(!s[o(409)][o(427)](r[o(446)],n[o(432)]))return;const{authorId:t}=i[o(411)](r[o(419)]),a=s[o(434)][o(388)](o(395),{class:o(405),"data-author-id":t}),u=s[o(398)][o(386)](c);e&&i[o(397)][o(414)](r[o(419)])&&s[o(434)][o(448)](o(421),a),s[o(434)][o(402)](u,a),s[o(398)][o(431)](a,r[o(419)])}}}function Hi(t,e){const n=Wi();return(Hi=function(t,e){return n[t-=403]})(t,e)}const zi=Hi;function Wi(){const t=["descriptionFactory","901395DGZXEA","editor","3370MtNrRP","formatBlock","formatInline","locale","format","61141aTHRAQ","registerDescriptionCallback","commandName","90NMvdDz","534NtZWLk","get","removeFormat","_registerLegacyDescription","afterInit","has","*Remove all formatting*","type","578226BCmZId","4072866ZCxHff","TrackChangesEditing","RemoveFormatEditing","2223968xmxchr","plugins","459432fHSRSL","enableDefaultAttributesIntegration"];return(Wi=function(){return t})()}!function(t){const e=Hi,n=t();for(;;)try{if(538247===parseInt(e(416))/1+parseInt(e(428))/2+-parseInt(e(409))/3+parseInt(e(404))/4+-parseInt(e(411))/5*(parseInt(e(420))/6)+-parseInt(e(429))/7+parseInt(e(406))/8*(parseInt(e(419))/9))break;n.push(n.shift())}catch(t){n.push(n.shift())}}(Wi);class Ki extends t.Plugin{[zi(424)](){const t=zi,e=this[t(410)];e[t(405)][t(425)](t(403))&&(e[t(405)][t(421)](t(430))[t(407)](t(422)),this[t(423)]())}[zi(423)](){const t=zi,e=this[t(410)];e[t(405)][t(421)](t(430))[t(408)][t(417)]((n=>{const r=t;if(r(412)!=n[r(427)]&&r(413)!=n[r(427)])return;const{data:s}=n;return s&&r(422)==s[r(418)]?{type:r(415),content:Kr(e[r(414)],r(426))}:void 0}))}}const Xi=Zi;function qi(){const t=["375wPMOBv","editor","goToPreviousRestrictedEditingException","discardAllSuggestions","RestrictedEditingModeEditing","25384667IVxHvG","7QzXDiT","plugins","enableCommand","discardSuggestion","9bYCLcA","acceptSelectedSuggestions","204650iuaEtR","acceptSuggestion","trackChanges","has","2555360vBNOns","5KRZSBC","10225130JeZudp","discardSelectedSuggestions","goToNextRestrictedEditingException","2673156rzSPAg","acceptAllSuggestions","18116LmZAHd","get","TrackChangesEditing","afterInit","254728rkLXmX"];return(qi=function(){return t})()}function Zi(t,e){const n=qi();return(Zi=function(t,e){return n[t-=388]})(t,e)}!function(t){const e=Zi,n=t();for(;;)try{if(513151===-parseInt(e(410))/1+-parseInt(e(397))/2+parseInt(e(398))/3*(-parseInt(e(393))/4)+parseInt(e(415))/5*(parseInt(e(391))/6)+-parseInt(e(404))/7*(parseInt(e(414))/8)+parseInt(e(408))/9*(-parseInt(e(388))/10)+parseInt(e(403))/11)break;n.push(n.shift())}catch(t){n.push(n.shift())}}(qi);class Ji extends t.Plugin{[Xi(396)](){const t=Xi,e=this[t(399)];if(!e[t(405)][t(413)](t(402)))return;const n=e[t(405)][t(394)](t(395));n[t(406)](t(400)),n[t(406)](t(390));const r=e[t(405)][t(394)](t(402));r[t(406)](t(412)),r[t(406)](t(411)),r[t(406)](t(407)),r[t(406)](t(392)),r[t(406)](t(401)),r[t(406)](t(409)),r[t(406)](t(389))}}const Yi=$i;function Qi(){const t=["ELEMENT_LINE_BREAK","init","addMarker:suggestion","element","registerElementLabel","split","1679285ZITQaf","addMarker:suggestion:insertion","editing","createPositionBefore","activeMarkers","showSuggestionHighlights","markerName","15225363kLnYzO","mapper","bindElementToMarker","1128259TbptCr","data","locale","options","addClass","TrackChangesEditing","requires","markerRange","1276XJszXG","_splitMarkerName","plugins","consumable","high","ck-suggestion-marker--active","9777ZFuxAI","descriptionFactory","toViewPosition","203XwqIem","shiftEnter","editor","10324194nTJtqH","140408rjTMoo","includes","insert","softBreak","enableCommand","writer","createUIElement","span","2341062mPwlZL","30bBhtZV","deletion","downcastDispatcher","model","ck-suggestion-marker-","getItems","merge","addMarker:suggestion:deletion","name","test","get"];return(Qi=function(){return t})()}function $i(t,e){const n=Qi();return($i=function(t,e){return n[t-=334]})(t,e)}!function(t){const e=$i,n=t();for(;;)try{if(860847===-parseInt(e(337))/1+-parseInt(e(366))/2+-parseInt(e(351))/3*(parseInt(e(345))/4)+parseInt(e(384))/5+-parseInt(e(357))/6+parseInt(e(354))/7*(parseInt(e(358))/8)+parseInt(e(334))/9*(parseInt(e(367))/10))break;n.push(n.shift())}catch(t){n.push(n.shift())}}(Qi);class ta extends t.Plugin{static get[Yi(343)](){return[Qs.ShiftEnter]}[Yi(379)](){const t=Yi,e=this[t(356)],n=e[t(347)][t(377)](t(342));n[t(362)](t(355)),e[t(386)][t(369)].on(t(385),ea(e),{priority:t(349)}),e[t(386)][t(369)].on(t(374),ea(e),{priority:t(349)}),e[t(338)][t(369)].on(t(380),((n,r,s)=>{const o=t;s[o(340)][o(389)]&&ea(e,{showActiveMarker:!1})(n,r,s)})),n[t(352)][t(382)](t(361),(n=>Kr(e[t(339)],t(378),n)))}}function ea(t,{showActiveMarker:e=!0}={}){return(n,r,s)=>{const o=$i,i=t[o(347)][o(377)](o(342));if(!s[o(348)][o(376)](r[o(344)],n[o(375)]))return;const a=t[o(370)];for(const t of r[o(344)][o(372)]()){if(!t.is(o(381),o(361)))continue;const n=o(368)==r[o(390)][o(383)](":")[1]?o(373):o(383),{authorId:c}=i[o(346)](r[o(390)]),u=s[o(363)][o(364)](o(365),{class:o(371)+n,"data-author-id":c}),l=s[o(335)][o(353)](a[o(387)](t));e&&i[o(388)][o(359)](r[o(390)])&&s[o(363)][o(341)](o(350),u),s[o(363)][o(360)](l,u),s[o(335)][o(336)](u,r[o(390)])}}}const na=ra;function ra(t,e){const n=oa();return(ra=function(t,e){return n[t-=493]})(t,e)}!function(t){const e=ra,n=t();for(;;)try{if(224069===-parseInt(e(503))/1+-parseInt(e(521))/2+-parseInt(e(505))/3*(-parseInt(e(527))/4)+parseInt(e(517))/5*(parseInt(e(531))/6)+-parseInt(e(494))/7+-parseInt(e(496))/8+parseInt(e(507))/9*(parseInt(e(511))/10))break;n.push(n.shift())}catch(t){n.push(n.shift())}}(oa);class sa extends t.Plugin{[na(522)](){const t=na,e=this[t(528)],n=e[t(502)],r=e[t(526)];if(!e[t(529)][t(530)](t(513)))return;const s=e[t(529)][t(512)](t(493)),o=t(499),i=e[t(514)][t(512)](o);s[t(504)](o,((e,r={})=>{const a=t,c=n[a(516)][a(523)];if(c[a(498)])return void e(r);const u=void 0!==r[a(497)]?r[a(497)]:!i[a(506)];n[a(532)]((()=>{const t=a,e=Array[t(515)](c[t(495)]());for(const r of e){const e=u?[r]:Fs(o,r,n);for(const n of e)s[t(524)](n,{commandName:o,commandParams:[{forceValue:u}]})}}))})),s[t(500)][t(520)]((e=>{const n=t;if(n(519)!=e[n(533)]&&n(508)!=e[n(533)])return;const{data:s}=e;return s&&s[n(509)]==o?s[n(525)][0][n(497)]?{type:n(518),content:Kr(r,n(501))}:{type:n(518),content:Kr(r,n(510))}:void 0}))}}function oa(){const t=["change","type","TrackChangesEditing","2086399Isgjzl","getRanges","3245408MmryxU","forceValue","isCollapsed","restrictedEditingException","descriptionFactory","FORMAT_RESTRICTED_ENABLED","model","140913daPioq","enableCommand","3lNzfrA","value","282402OSBHAd","formatInline","commandName","FORMAT_RESTRICTED_DISABLED","290DyzwOK","get","StandardEditingModeEditing","commands","from","document","895aMmSIU","format","formatBlock","registerDescriptionCallback","710110gkKhUF","afterInit","selection","markInlineFormat","commandParams","locale","828724KLbgLI","editor","plugins","has","10278hfHzKq"];return(oa=function(){return t})()}function ia(t,e){const n=aa();return(ia=function(t,e){return n[t-=473]})(t,e)}function aa(){const t=["editor","commandParams","formatBlock","DataSchema","block","inline","getGhsAttributeNameForElement","ghsAttributes","FORMAT_STYLE","*Remove format:* %0","GeneralHtmlSupport","plugins","commandName","locale","33UlvMzh","532eYCPQQ","get","registerAttributeLabel","add","202392unEJcJ","registerBlockAttribute","registerInlineAttribute","registerDescriptionCallback","2454768RYvCXT","3033610nsRvqo","element","styleName","afterInit","descriptionFactory","Style","type","definitions","2eFJGJg","config","TrackChangesEditing","841890NMWDwQ","enableDefaultAttributesIntegration","formatInline","10645saxZsh","format","normalizeConfig","forceValue","5983352xpCWDe","has","toLowerCase","style","_registerLegacyDescription","244209ktEMtZ","StyleUtils","70JcsOgj","*Set format:* %0"];return(aa=function(){return t})()}const ca=ia;!function(t){const e=ia,n=t();for(;;)try{if(516120===-parseInt(e(504))/1+parseInt(e(501))/2*(-parseInt(e(516))/3)+-parseInt(e(484))/4*(parseInt(e(507))/5)+-parseInt(e(488))/6*(-parseInt(e(518))/7)+parseInt(e(511))/8+-parseInt(e(492))/9+-parseInt(e(493))/10*(-parseInt(e(483))/11))break;n.push(n.shift())}catch(t){n.push(n.shift())}}(aa);class ua extends t.Plugin{[ca(496)](){const t=ca,e=this[t(520)];if(!e[t(480)][t(512)](t(498))||!e[t(480)][t(512)](t(523)))return;const n=e[t(480)][t(485)](t(503)),r=e[t(482)],s=e[t(502)][t(485)](t(514))||{},o=e[t(480)][t(485)](t(479)),i=e[t(480)][t(485)](t(517))[t(509)](e[t(480)][t(485)](t(523)),s[t(500)]);n[t(505)](t(514));const a=new Set;for(const e of i[t(473)]){const n=o[t(475)](e[t(494)]);a[t(487)](n)}const c=new Set;for(const e of i[t(474)]){const n=o[t(475)](e[t(494)]);c[t(487)](n);for(const n of e[t(476)])c[t(487)](n)}for(const e of a)n[t(489)](e),n[t(497)][t(486)](e,Kr(r,t(477)));for(const e of c)n[t(490)](e),n[t(497)][t(486)](e,Kr(r,t(477)));this[t(515)]()}[ca(515)](){const t=ca,e=this[t(520)],n=e[t(482)];e[t(480)][t(485)](t(503))[t(497)][t(491)]((e=>{const r=t;if(r(522)!=e[r(499)]&&r(506)!=e[r(499)])return;const{data:s}=e;return s&&r(514)===s[r(481)]?s[r(521)][0][r(510)]?{type:r(508),content:Kr(n,r(519),s[r(521)][0][r(495)][r(513)]())}:{type:r(508),content:Kr(n,r(478),s[r(521)][0][r(495)][r(513)]())}:void 0}))}}const la=fa;function fa(t,e){const n=ha();return(fa=function(t,e){return n[t-=116]})(t,e)}function ha(){const t=["map","editor","isIntersecting","isInContent","model","insertTable","options","removeTableRow","TableUtils","insertTableRowAbove","get","data","maxRow","accept","subType","discard","span","getColumnIndexes","writer","rootName","type","root","insert","setSelection","batch","differ","position","hasAttribute","every","has","markMultiRangeInsertion","getFirstRange","tablePaste","descriptionFactory","item","ELEMENT_TABLE_ROW","nodeAfter","ELEMENT_TABLE_ROW_WITH_TEXT","getChildren","length","add","*Insert:* %0","_getSuggestionCoords","addMarker:suggestion","ELEMENT_TABLE_WITH_TEXT","insertion","createRangeOn","selectTableColumn","from","getChanges","filter","801bpwkti","ELEMENT_TABLE","_acceptFormatSuggestionCallbackFactory","cell","11yNaIwD","selection","21OCgCFX","document","downcastDispatcher","toLowerCase","insertTableColumnRight","left","getAttribute","toViewElement","max","enqueueChange","getSelectionAffectedTableCells","registerPostFixer","removeTableColumn","3aIqlMa","isArray","addClass","getRanges","name","getContainedElement","isEqual","isTouching","order","showSuggestionHighlights","ELEMENT_TABLE_COLUMN_WITH_TEXT","_tablePostFixingSubtypes","colspan","first","$graveyard","registerCustomCallback","1606590qTjdVa","afterInit","MAX_SAFE_INTEGER","ELEMENT_TABLE_COLUMN","push","nodeBefore","TrackChangesEditing","_setupColumnsRowsFixing","MIN_SAFE_INTEGER","getRowIndexes","refresh","markMultiRangeDeletion","locale","selectTableRow","insertTableRowBelow","insertTableColumnLeft","26EzACqU","startsWith","change:data","$textProxy","min","registerElementLabel","substr","fromRange","maxColumn","getChangedMarkers","_getCoordsForCells","some","mapper","enableCommand","createPositionAt","*Remove:* %0","createRangeIn","7964508ONLlbF","join","2395460trbFmI","findAncestor","1644956vcyQBt","forceValue","end","tableRow","table","includes","_tableSuggestions","change","highest","_suggestionFactory","addRange","start","removeClass","deletion","rowspan","createTableWalker","tableCell","values","above","oldRange","last","isIntersectingWithRange","45328teTuXH","minColumn","execute","detach","1022190JAveyT","suggestion","tableColumn","element","415235fCsGcx","_splitMarkerName","getItems","minRow","commands","low","registerDescriptionCallback","plugins","getSuggestion","2FnVIgM","getCellLocation","TableEditing","classes"];return(ha=function(){return t})()}!function(t){const e=fa,n=t();for(;;)try{if(323706===parseInt(e(139))/1*(-parseInt(e(148))/2)+parseInt(e(222))/3*(parseInt(e(275))/4)+parseInt(e(273))/5+-parseInt(e(135))/6*(-parseInt(e(209))/7)+parseInt(e(131))/8*(parseInt(e(203))/9)+-parseInt(e(238))/10*(-parseInt(e(207))/11)+-parseInt(e(271))/12*(parseInt(e(254))/13))break;n.push(n.shift())}catch(t){n.push(n.shift())}}(ha);class ga extends t.Plugin{constructor(t){const e=fa;super(t),this[e(233)]=[e(278),e(137)],this[e(281)]=new Set}[la(239)](){const t=la,e=this[t(153)],n=e[t(156)][t(210)][t(208)];if(!e[t(146)][t(181)](t(150)))return;const r=e[t(250)],s=e[t(146)][t(162)](t(244)),o=e[t(146)][t(162)](t(160));s[t(185)][t(259)](t(279),(e=>Kr(r,t(204),e))),this[t(245)](),s[t(267)](t(157)),s[t(267)](t(251)),s[t(267)](t(199));for(const r of[t(161),t(252)]){const i=e[t(143)][t(162)](r);s[t(267)](r,(r=>{const a=t;e[a(156)][a(116)]((t=>{const e=a;r();const c=e(127)===i[e(230)],u=o[e(219)](n),l=o[e(247)](u),f=c?l[e(235)]-1:l[e(129)]+1,h=u[0][e(274)](e(279)),g=o[e(124)](h,{startRow:f,endRow:f}),d=Array[e(200)](g)[e(152)]((n=>t[e(198)](n[e(206)])));s[e(182)](d,e(278))}))}))}for(const r of[t(253),t(213)]){const i=e[t(143)][t(162)](r);s[t(267)](r,(r=>{const a=t;e[a(156)][a(116)]((t=>{const e=a;r();const c=e(214)===i[e(230)],u=o[e(219)](n),l=o[e(169)](u),f=c?l[e(235)]-1:l[e(129)]+1,h=u[0][e(274)](e(279)),g=o[e(124)](h,{startRow:0,column:f,includeAllSlots:!1}),d=Array[e(200)](g)[e(152)]((n=>t[e(198)](n[e(206)])));s[e(182)](d,e(137))}))}))}for(const r of[t(159),t(221)]){const i=r[t(260)](11),a=i[t(212)](),c=a[t(260)](0,3)+t(168),u=t(279)+i,l=t(258)+i,f=t(217)+i;s[t(267)](r,(()=>{const i=t;e[i(156)][i(116)]((t=>{const e=i,h=o[e(219)](n),g=h[0][e(274)](e(279));let d;if(e(159)==r){const t=o[e(247)](h);d={startRow:t[e(235)],endRow:t[e(129)],includeAllSlots:!0}}else{const t=o[e(169)](h);d={startColumn:t[e(235)],endColumn:t[e(129)],includeAllSlots:!0}}const p=o[e(124)](g,d),m=Array[e(200)](p)[e(152)]((({cell:t})=>t)),I=da(m[e(202)]((t=>t[e(179)](c)))),E=da(m[e(202)]((t=>!t[e(179)](c))))[e(152)]((n=>t[e(198)](n))),b=s[e(249)](E,u);if(b&&(e(278)==b[e(166)]||e(137)==b[e(166)])){const n=this[e(194)](b);for(const r of I){const s=t[e(198)](r),i=o[e(149)](r),u=r[e(215)](c)-1,h=n[l],g=n[f];h<=i[a]&&i[a]+u<=g&&b[e(119)](s)}}}))}))}function c(r){const s=t,o=Array[s(200)](n[s(225)]())[s(152)]((t=>i.LiveRange[s(261)](t)));e[s(156)][s(116)]((t=>{const n=s,i=t[n(176)];r=r[n(202)]((t=>n(236)!=t[n(173)][n(171)])),t[n(175)](r),e[n(143)][n(162)](n(159))[n(248)](),e[n(133)](n(159),{forceDefaultExecution:!0}),e[n(156)][n(218)]((()=>{const t=n;e[t(156)][t(218)](i,(e=>{const n=t,r=o[n(202)]((t=>n(236)!=t[n(173)][n(171)]));r[n(191)]>0&&e[n(175)](r);for(const t of o)t[n(134)]()}))}))}))}function u(r){const s=t;e[s(156)][s(116)]((t=>{const o=s,a=Array[o(200)](n[o(225)]())[o(152)]((t=>i.LiveRange[o(261)](t))),c=[];for(const t of r)for(const e of t[o(141)]({shallow:!0}))c[o(242)](e);for(const n of c)o(236)!=n[o(173)][o(171)]&&(t[o(175)](t[o(268)](n,0)),e[o(143)][o(162)](o(221))[o(248)](),e[o(133)](o(221),{forceDefaultExecution:!0}));const u=a[o(202)]((t=>o(236)!=t[o(173)][o(171)]));u[o(191)]>0&&t[o(175)](u);for(const t of a)t[o(134)]()}))}function l(e,n){const r=t;return n[r(180)]((t=>e[r(265)]((e=>e[r(277)][r(228)](t[r(120)])||t[r(277)][r(228)](e[r(120)])))))}function f(e,n){const r=t;return!e[r(265)]((t=>n[r(265)]((e=>t[r(154)](e)))))&&e[r(265)]((t=>n[r(265)]((e=>t[r(277)][r(229)](e[r(120)])))))}e[t(163)][t(211)].on(t(195),((e,n,r)=>{const s=t;if(!r[s(158)][s(231)])return;const o=n[s(186)];if(!o)return;const i=r[s(266)][s(216)](o);function c(t){return Array[s(223)](t)?t:[t]}i&&s(125)===o[s(226)]&&(0,a.setHighlightHandling)(i,r[s(170)],((t,e,n)=>n[s(224)](c(e[s(151)]),t)),((t,e,n)=>n[s(121)](c(e[s(151)]),t)))}),{priority:t(117)}),s[t(185)][t(145)]((e=>{const n=t;if(n(197)!=e[n(172)]&&n(122)!=e[n(172)])return;const s=e[n(227)]();if(null!=s&&s.is(n(138),n(279))){if(n(197)==e[n(172)]){const t=e[n(141)]()[n(202)]((t=>t.is(n(257))))[n(152)]((t=>t[n(163)]));if(t[n(191)])return{type:n(197),content:Kr(r,n(193),Kr(r,n(196),'"'+t[n(272)](" ")+'"'))}}if(n(122)==e[n(172)]){const t=e[n(141)]()[n(202)]((t=>t.is(n(257))))[n(152)]((t=>t[n(163)]));if(t[n(191)])return{type:n(122),content:Kr(r,n(269),Kr(r,n(196),'"'+t[n(272)](" ")+'"'))}}}})),s[t(185)][t(145)]((e=>{const n=t;if(n(278)==e[n(166)]){const t=e[n(141)]()[n(202)]((t=>t.is(n(257))))[n(152)]((t=>t[n(163)])),s=this[n(194)](e),o=s[n(164)]-s[n(142)]+1;if(n(197)==e[n(172)])return t[n(191)]?{type:n(197),content:Kr(r,n(193),Kr(r,n(189),[o,'"'+t[n(272)](" ")+'"']))}:{type:n(197),content:Kr(r,n(193),Kr(r,n(187),o))};if(n(122)==e[n(172)])return t[n(191)]?{type:n(122),content:Kr(r,n(269),Kr(r,n(189),[o,'"'+t[n(272)](" ")+'"']))}:{type:n(122),content:Kr(r,n(269),Kr(r,n(187),o))}}if(n(137)==e[n(166)]){const t=e[n(141)]()[n(202)]((t=>t.is(n(257))))[n(152)]((t=>t[n(163)])),s=this[n(194)](e),o=s[n(262)]-s[n(132)]+1;if(n(197)==e[n(172)])return t[n(191)]?{type:n(197),content:Kr(r,n(193),Kr(r,n(232),[o,'"'+t[n(272)](" ")+'"']))}:{type:n(197),content:Kr(r,n(193),Kr(r,n(241),o))};if(n(122)==e[n(172)])return t[n(191)]?{type:n(122),content:Kr(r,n(269),Kr(r,n(232),[o,'"'+t[n(272)](" ")+'"']))}:{type:n(122),content:Kr(r,n(269),Kr(r,n(241),o))}}})),s[t(118)][t(237)](t(197),t(278),t(167),c),s[t(118)][t(237)](t(122),t(278),t(165),c),s[t(118)][t(237)](t(197),t(137),t(167),u),s[t(118)][t(237)](t(122),t(137),t(165),u),s[t(118)][t(237)](t(197),t(137),t(272),l),s[t(118)][t(237)](t(122),t(137),t(272),l),s[t(118)][t(237)](t(197),t(278),t(272),f),s[t(118)][t(237)](t(122),t(278),t(272),f)}[la(205)](){const t=la,e=this[t(153)],n=e[t(156)][t(210)][t(208)];return(r,s)=>{const o=t;e[o(156)][o(116)]((t=>{const a=o,{commandName:c,commandParams:u}=s;let l=r[0][a(277)][a(243)];u&&u[0]&&!1===u[0][a(276)]&&(l=r[0][a(120)][a(188)]);const f=t[a(270)](l);if(a(236)==f[a(173)][a(171)])return;const h=Array[a(200)](n[a(225)]())[a(152)]((t=>i.LiveRange[a(261)](t)));t[a(175)](f),e[a(143)][a(162)](c)[a(248)](),u[a(242)]({forceDefaultExecution:!0}),e[a(133)](c,...u);const g=h[a(202)]((t=>a(236)!=t[a(173)][a(171)]));g[a(191)]>0&&t[a(175)](g);for(const t of h)t[a(134)]()}))}}[la(264)](t){const e=la,n=this[e(153)][e(146)][e(162)](e(160));let r=Number[e(240)],s=Number[e(246)],o=Number[e(240)],i=Number[e(246)];for(const a of t){if(e(236)==a[e(173)][e(171)])continue;const{row:t,column:c}=n[e(149)](a),u=a[e(179)](e(123))?a[e(215)](e(123))-1:0,l=a[e(179)](e(234))?a[e(215)](e(234))-1:0;r=t<r?t:r,s=t+u>s?t+u:s,o=c<o?c:o,i=c+l>i?c+l:i}return{minRow:r,maxRow:s,minColumn:o,maxColumn:i}}[la(245)](){const t=la,e=this[t(153)],n=e[t(146)][t(162)](t(244)),r=e[t(146)][t(162)](t(160));e[t(156)][t(210)].on(t(256),(()=>{const r=t,s=Array[r(200)](e[r(156)][r(210)][r(177)][r(263)]());for(const{name:t,data:e}of s){const{group:s,id:o,subType:i}=n[r(140)](t);if(r(136)!=s)continue;if(null!=e[r(128)])continue;const a=n[r(147)](o);this[r(233)][r(280)](i)&&this[r(281)][r(192)](a)}}),{priority:t(144)});const s=(e,n)=>{const s=t;let o=!1;const i=n[s(198)](e),a=e[s(274)](s(279)),c=r[s(149)](e);for(const t of this[s(281)]){const n=t[s(166)],r=n[s(255)](s(184)),u=n[s(260)](r?10:5),l=u[s(212)](),f=l[s(260)](0,3)+s(168),h=s(258)+u,g=s(217)+u;if(!t[s(155)])continue;if(a!=t[s(183)]()[s(120)][s(274)](s(279)))continue;if(t[s(130)](i))continue;const d=e[s(179)](f)?e[s(215)](f)-1:0,p=this[s(194)](t),m=p[h],I=p[g];m<=c[l]&&c[l]+d<=I&&(t[s(119)](i),o=!0)}return o};e[t(156)][t(210)][t(220)]((n=>{const r=t;let o=!1;for(const t of e[r(156)][r(210)][r(177)][r(201)]())if(r(174)==t[r(172)])if(r(278)==t[r(226)])for(const e of t[r(178)][r(188)][r(190)]())o=o||s(e,n);else r(125)==t[r(226)]&&(o=o||s(t[r(178)][r(188)],n));return o}))}[la(194)](t){const e=la;return this[e(264)](t[e(225)]()[e(152)]((t=>t[e(120)][e(188)])))}}function da(t){const e=la;return Array[e(200)](new Set(t)[e(126)]())}function pa(t,e){const n=Ia();return(pa=function(t,e){return n[t-=256]})(t,e)}const ma=pa;function Ia(){const t=["detach","mergeTableCellDown","createRangeOn","splitTableCellHorizontally","tableCell","TrackChangesEditing","markMultiRangeBlockFormat","6863654EDdZfE","registerCustomCallback","model","*Merge cells*","3266216WfDwvD","registerDescriptionCallback","cell","1388vPKcTV","3225yUKrEg","low","getFirstPosition","mergeTableCells","has","_isForcedDefaultExecutionBlock","push","commands","return","4149Hfoyho","commandName","formatBlock","document","_areMergableCells","refresh","length","TableEditing","22768sJTtUL","filter","fromRange","getRanges","createTableWalker","editor","table","selection","TableUtils","markBlockFormat","element","findAncestor","formatInline","_areSelectedCellsMergable","_suggestionFactory","direction","getCellLocation","value","author","5958805ARmUNz","1290243kBfPoZ","map","horizontally","forceDefaultExecution","requires","afterInit","mergeTableCellLeft","mergeTableCellUp","find","plugins","setSelection","descriptionFactory","_acceptFormatSuggestionCallbackFactory","2527176qfjabE","deletion","rootName","splitTableCellVertically","isEnabled","isInContent","type","_tablePostFixingSubtypes","getSelectionAffectedTableCells","add","mergeTableCellRight","trackChanges","set:isEnabled","execute","format","accept","enableCommand","getAncestors","subType","*Split cell:* vertically","highest","stop","size","locale","getSuggestions","containsRange","from","insertion","*Split cell:* horizontally","get","root","$graveyard","change"];return(Ia=function(){return t})()}!function(t){const e=pa,n=t();for(;;)try{if(711442===-parseInt(e(322))/1+parseInt(e(284))/2*(parseInt(e(285))/3)+parseInt(e(281))/4+parseInt(e(321))/5+-parseInt(e(335))/6+parseInt(e(277))/7+-parseInt(e(302))/8*(parseInt(e(294))/9))break;n.push(n.shift())}catch(t){n.push(n.shift())}}(Ia);class Ea extends t.Plugin{static get[ma(326)](){return[ga]}[ma(327)](){const t=ma,e=this[t(307)],n=e[t(279)][t(297)][t(309)],r=e[t(260)];if(!e[t(331)][t(289)](t(301)))return;const s=e[t(331)][t(266)](t(275)),o=e[t(331)][t(266)](t(310)),a=e[t(331)][t(266)](ga);a[t(342)][t(291)](t(288)),s[t(351)](t(288),(()=>{const n=t,r=o[n(343)](e[n(279)][n(297)][n(309)]);e[n(279)][n(269)]((()=>{const t=n;s[t(276)](r,{commandName:t(288),commandParams:[]},[],t(288))}))})),e[t(292)][t(266)](t(288)).on(t(348),((n,r)=>{const o=t;e[o(292)][o(266)](o(346))[o(319)]&&(r[o(300)]>0&&r[r[o(300)]-1]&&r[r[o(300)]-1][o(325)]||s[o(290)]||this[o(315)]()||n[o(258)]())}),{priority:t(257)});for(const n of[t(329),t(345),t(271),t(328)]){const r=e[t(292)][t(266)](n);s[t(351)](n,(()=>{const n=t,o=e[n(279)][n(297)][n(309)][n(287)]()[n(352)]()[n(330)]((t=>t.is(n(312),n(274)))),i=r[n(319)];e[n(279)][n(269)]((()=>{const t=n;s[t(276)]([o,i],{commandName:t(288),commandParams:[]},[],t(288))}))}))}for(const n of[t(338),t(273)]){const r=e[t(292)][t(266)](n);s[t(351)](n,(()=>{const i=t,a=o[i(343)](e[i(279)][i(297)][i(309)])[0],c=a[i(313)](i(308)),{column:u,row:l}=o[i(318)](a);let f=[];if(i(324)==r[i(317)]){const t=o[i(306)](c,{startRow:l,endRow:l,includeAllSlots:!0});f=Array[i(263)](t)[i(323)]((t=>t[i(283)]))}else{const t=o[i(306)](c,{column:u,includeAllSlots:!0});f=Array[i(263)](t)[i(323)]((t=>t[i(283)]))}e[i(279)][i(269)]((t=>{const e=i;s[e(311)](t[e(272)](a),{commandName:n,commandParams:[]},f,n)}))}))}s[t(333)][t(282)]((e=>{const n=t;if(n(296)!=e[n(341)]&&n(314)!=e[n(341)])return;const{data:s}=e;return s&&n(288)==s[n(295)]?{type:n(349),content:Kr(r,n(280))}:void 0})),s[t(333)][t(282)]((e=>{const n=t;if(n(296)!=e[n(341)]&&n(314)!=e[n(341)])return;const{data:s}=e;return s?n(338)==s[n(295)]?{type:n(349),content:Kr(r,n(256))}:n(273)==s[n(295)]?{type:n(349),content:Kr(r,n(265))}:void 0:void 0}));const c=a[t(334)]();for(const e of[t(329),t(345),t(271),t(328)])s[t(316)][t(278)](t(296),e,t(350),c);for(const e of[t(338),t(273)])s[t(316)][t(278)](t(296),e,t(350),c);s[t(316)][t(278)](t(296),t(288),t(350),(r=>{const s=t;e[s(279)][s(269)]((t=>{const o=s,a=Array[o(263)](n[o(305)]())[o(323)]((t=>i.LiveRange[o(304)](t)));t[o(332)](r),e[o(292)][o(266)](o(288))[o(299)](),e[o(348)](o(288),{forceDefaultExecution:!0});const c=a[o(303)]((t=>o(268)!=t[o(267)][o(337)]));c[o(300)]>0&&t[o(332)](c);for(const t of a)t[o(270)]()}))}));for(const n of[t(329),t(271),t(328),t(345)]){const r=e[t(292)][t(266)](n);r.on(t(347),((n,s,o)=>{const i=t;if(o){const t=e[i(279)][i(297)][i(309)][i(287)]()[i(352)]()[i(330)]((t=>t.is(i(312),i(274))));this[i(298)](r[i(319)],t)||(n[i(293)]=!1,n[i(258)]())}}),{priority:t(286)})}}[ma(315)](){const t=ma,e=this[t(307)][t(292)][t(266)](t(288)),n=this[t(307)][t(331)][t(266)](t(310));if(!e[t(339)])return!1;const r=n[t(343)](this[t(307)][t(279)][t(297)][t(309)]);for(const e of r)for(const n of r)if(e!=n&&!this[t(298)](e,n))return!1;return!0}[ma(298)](t,e){const n=ma,r=this[n(307)][n(331)][n(266)](n(275)),s=this[n(307)][n(279)][n(272)](t),o=this[n(307)][n(279)][n(272)](e),i=new Set,a=new Set;for(const t of r[n(261)]())if((n(264)==t[n(341)]||n(336)==t[n(341)]||n(288)==t[n(353)])&&t[n(340)])for(const e of t[n(305)]())e[n(262)](s,!0)&&i[n(344)](t[n(341)]+":"+t[n(320)].id),e[n(262)](o,!0)&&a[n(344)](t[n(341)]+":"+t[n(320)].id);if(i[n(259)]!=a[n(259)])return!1;for(const t of i)if(!a[n(289)](t))return!1;return!0}}const ba=Ta;function Ta(t,e){const n=_a();return(Ta=function(t,e){return n[t-=172]})(t,e)}function _a(){const t=["consumable","unbindElementFromMarkerName","registerDescriptionCallback","activeMarkers","1558599FWvLVW","10pZhDzy","forceValue","registerBlockAttribute","_suggestionFactory","plugins","184NAFCpU","descriptionFactory","3217725IxbITh","registerAttributeLabel","removeMarker:suggestion","2807452yNPwxP","FORMAT_HEADER_ROW","highest","data","9120910XZltSv","get","setTableColumnHeader","options","nodeAfter","_splitMarkerName","writer","setAttribute","_acceptFormatSuggestionCallbackFactory","TableUtils","enableDefaultAttributesIntegration","mapper","format","downcastDispatcher","TableEditing","4999Zxjcix","includes","ck-suggestion-marker-","type","commandParams","markerName","getCellLocation","editor","editing","showSuggestionHighlights","start","commandName","_registerLegacyDescription","FORMAT_REGULAR_ROW","3659768CXKFOI","7qSniEc","cell","locale","stop","toViewElement","FORMAT_HEADER_COLUMN","accept","markerRange","requires","removeClass","headingRows","end","_handleLegacySuggestions","consume","*Format:* %0","headingColumns","has","setTableRowHeader","name","addClass","registerCustomCallback","data-suggestion","formatBlock","nodeBefore","removeAttribute","bindElementToMarker","afterInit","createTableWalker","TrackChangesEditing","addMarker:suggestion","item","parent","799104RZuKRb","markerNameToElements","getSuggestion","FORMAT_REGULAR_COLUMN","ck-suggestion-marker--active"];return(_a=function(){return t})()}!function(t){const e=Ta,n=t();for(;;)try{if(641041===parseInt(e(252))/1*(parseInt(e(228))/2)+parseInt(e(222))/3+-parseInt(e(233))/4+parseInt(e(223))/5*(parseInt(e(213))/6)+parseInt(e(181))/7*(-parseInt(e(180))/8)+-parseInt(e(230))/9+parseInt(e(237))/10)break;n.push(n.shift())}catch(t){n.push(n.shift())}}(_a);class ya extends t.Plugin{static get[ba(189)](){return[ga]}[ba(207)](){const t=ba,e=this[t(173)];if(!e[t(227)][t(197)](t(251)))return;const n=e[t(183)],r=e[t(227)][t(238)](t(209));r[t(247)](t(198)),r[t(247)](t(239)),r[t(225)](t(191)),r[t(225)](t(196)),r[t(229)][t(231)](t(191),Kr(n,t(234))),r[t(229)][t(231)](t(196),Kr(n,t(186))),this[t(193)]()}[ba(193)](){const t=ba,e=this[t(173)][t(227)][t(238)](t(209)),n=this[t(173)][t(227)][t(238)](t(246)),r=this[t(173)][t(227)][t(238)](ga)[t(245)]();function s({showActiveMarker:t=!0,setDataAttribute:r=!0}={}){return(s,o,i)=>{const a=Ta,{type:c,id:u}=e[a(242)](o[a(257)]),l=e[a(215)](u),f=l[a(236)];if(a(203)!=l[a(255)]||!f||a(239)!=f[a(177)])return;if(o[a(211)])return void s[a(184)]();if(!i[a(218)][a(194)](o[a(188)],s[a(199)]))return;const h=o[a(188)][a(176)][a(241)],g=o[a(188)][a(192)][a(204)],d=h[a(212)][a(212)],{column:p}=n[a(172)](h),{column:m}=n[a(172)](g);for(let s=p;s<=m;s++){const l=n[a(208)](d,{column:s,includeAllSlots:!1});for(const n of l){const s=n[a(182)],l=i[a(248)][a(185)](s);i[a(243)][a(200)](a(254)+c,l),r&&i[a(243)][a(244)](a(202),u,l),i[a(248)][a(206)](l,o[a(257)]),t&&(e[a(221)][a(253)](o[a(257)])?i[a(243)][a(200)](a(217),l):i[a(243)][a(190)](a(217),l))}}}}e[t(226)][t(201)](t(203),t(198),t(187),r),e[t(226)][t(201)](t(203),t(239),t(187),r),this[t(173)][t(174)][t(250)].on(t(210),s(),{priority:t(235)}),this[t(173)][t(236)][t(250)].on(t(210),((e,n,r)=>{const o=t;r[o(240)][o(175)]&&s({showActiveMarker:!1,setDataAttribute:!1})(e,n,r)}),{priority:t(235)}),this[t(173)][t(174)][t(250)].on(t(232),((n,r,s)=>{const o=t,{type:i,id:a}=e[o(242)](r[o(257)]),c=e[o(215)](a),u=c[o(236)];if(o(203)!=c[o(255)]||!u||o(239)!=u[o(177)])return;const l=s[o(248)][o(214)](r[o(257)]);if(l)for(const t of l)s[o(243)][o(190)](o(254)+i,t),s[o(243)][o(190)](o(217),t),s[o(243)][o(205)](o(202),t),s[o(248)][o(219)](t,r[o(257)])}),{priority:t(235)}),this[t(178)]()}[ba(178)](){const t=ba,e=this[t(173)],n=e[t(183)];function r(e){const r=t;return{type:r(249),content:Kr(n,r(195),e)}}e[t(227)][t(238)](t(209))[t(229)][t(220)]((e=>{const s=t;if(s(203)!=e[s(255)])return;const{data:o}=e;if(o){if(s(198)==o[s(177)]){const t=o[s(256)][0][s(224)];return r(Kr(n,s(t?234:179)))}if(s(239)==o[s(177)]){const t=o[s(256)][0][s(224)];return r(Kr(n,s(t?186:216)))}}}))}}const Aa=ka;function ka(t,e){const n=Ca();return(ka=function(t,e){return n[t-=266]})(t,e)}function Ca(){const t=["high","TrackChangesEditing","endRow","register","isInContent","every","getSelectionAffectedTableCells","ck-suggestion-marker-insertion","subType","insertContent","2eFJurt","nextSibling","getRanges","getAllAdjacentSuggestions","has","_suggestionFactory","hasSuggestion","cell","tablePasteCell","setAttribute","findAncestor","642glmDZd","suggestion:formatBlock:tablePasteCell","conversion","end","author","row","getColumns","TableClipboard","markerToHighlight","isEmpty","includes","options","commands","rowInsertionRanges","1930892kFtovu","removeRows","type","setAttributes","getSuggestions","2455749AYygEN","insertionRanges","getShiftedBy","keys","markers","elementToElement","entries","stop","call","removeColumns","move","unwrap","newRange","removeMarker","some","endColumn","getRows","element","insertRows","position","cells","forceDefaultExecution","23855LTVceR","locale","markMultiRangeDeletion","getRange","tableCellHorizontalAlignment","createElement","tableCellVerticalAlignment","dataDowncast","documentSelection","remove","registerDescriptionCallback","root","insert","schema","set","rootName","previousSibling","redo","getSuggestionCallback","createTableWalker","createRange","getItems","containsRange","9GXXdqI","selection","formatBlock","attributes","_isForcedDefaultExecutionBlock","plugins","wrap","next","start","afterInit","deletion","markMultiRangeBlockFormat","suggestion-td","tableCellBackgroundColor","showSuggestionHighlights","getChildren","tableCellPadding","markMultiRangeInsertion","insertColumns","isEqual","model","columnInsertionRanges","markerName","180AawCPs","_splitMarkerName","differ","TableUtils","1096678dvAtMC","find","_createdBatches","paragraph","tableCellBorderWidth","for","_tablePostFixingSubtypes","activeMarkers","tableCellBorderStyle","698707jCCrSe","getChanges","rows","_getCoordsForCells","requires","map","createPositionBefore","getAttributes","oldRange","rowInsertionIndexes","suggestionLoaded","columnInsertionIndexes","startsWith","discard","clipboardOutput","last","getRowIndexes","registerCustomCallback","batch","fromRange","editingDowncast","markerAttributes","trackChanges","low","createRangeIn","first","push","ck-suggestion-marker","2610580KUpgsX","tableCell","content","reduce","getChangedMarkers","suggestionUnloaded","tablePaste","getContainedElement","getColumnIndexes","table","getTableIfOnlyTableInContent","value","tableCellBorderColor","tablePasteChainId","view","change","getSuggestion","deletionRanges","editing","get","forEach","tableCellSuggestion","$graveyard","listenTo","filter","length","1572792PDENRa","name","ck-suggestion-marker--active","Users","updateMarker","from","add","join","detach","nodeAfter","_replaceTableSlotCell","getMarkers","tablePasteColumn","document","fill","accept","return","fromEntries","column","editor","registerPostFixer","columns","insertion","descriptionFactory","getChild","*Replace table cells*","suggestion","removeMarkers","previous","tablePasteRow","createRangeOn"];return(Ca=function(){return t})()}!function(t){const e=ka,n=t();for(;;)try{if(505127===parseInt(e(407))/1*(parseInt(e(296))/2)+-parseInt(e(326))/3+-parseInt(e(321))/4+-parseInt(e(348))/5*(parseInt(e(307))/6)+-parseInt(e(435))/7+-parseInt(e(461))/8*(-parseInt(e(371))/9)+parseInt(e(394))/10*(parseInt(e(398))/11))break;n.push(n.shift())}catch(t){n.push(n.shift())}}(Ca);const La=[Aa(402),Aa(447),Aa(406),Aa(352),Aa(354),Aa(384),Aa(387)],Na=Object[Aa(272)](La[Aa(412)]((t=>[t,null])));class Ra extends t.Plugin{static get[Aa(411)](){return[ga]}[Aa(380)](){const t=Aa,n=this[t(274)];if(!n[t(376)][t(300)](t(314)))return;const r=n[t(376)][t(454)](t(287)),s=n[t(376)][t(454)](t(397)),o=n[t(376)][t(454)](ga),a=n[t(376)][t(454)](t(314));o[t(404)][t(433)](t(284),t(267)),n[t(391)][t(361)][t(289)](t(456),{allowIn:t(436),allowContentOf:t(436),isLimit:!0}),n[t(309)][t(331)]({model:t(456),view:t(383)});let c=null;n[t(391)].on(t(295),((o,i)=>{const u=t,[l,f]=i,h=i[i[u(460)]-1];h&&h[u(347)]||r[u(375)]||this[u(274)][u(319)][u(454)](u(429))[u(446)]&&function(t,e,n,r,s){const o=u;if(e&&!e.is(o(356)))return!1;const i=s[o(445)](t,n);if(!i||!Ma(i,void 0,r))return!1;const a=r[o(292)](n[o(268)][o(372)]);if(!a[o(460)])return!1;const c=a[0][o(306)](o(444)),l=r[o(423)](a),f=r[o(443)](a),h={startRow:l[o(432)],endRow:l[o(422)],startColumn:f[o(432)],endColumn:f[o(422)]};return 1==a[o(460)]&&(h[o(288)]+=r[o(342)](i)-1,h[o(341)]+=r[o(313)](i)-1),Ma(c,h,r)}(l,f,n[u(391)],s,a)&&(o[u(333)](),c={cells:[],insertionRanges:[],deletionRanges:[],rowInsertionRanges:[],rowInsertionIndexes:[],columnInsertionRanges:[],columnInsertionIndexes:[]},n[u(391)][u(450)]((()=>{const t=u;n[t(391)][t(295)](i[0],i[1],i[2],{forceDefaultExecution:!0});const s=(0,e.uid)(),{rowInsertionRanges:o,columnInsertionRanges:a,insertionRanges:l,deletionRanges:f,cells:h}=c;o[t(460)]&&r[t(388)](o,t(284),{tablePasteChainId:s}),a[t(460)]&&r[t(388)](a,t(267),{tablePasteChainId:s}),l[t(460)]&&(r[t(388)](l,t(441),{tablePasteChainId:s,skipNestingCheck:!0}),l[t(455)]((e=>{const n=t;var r;return null===(r=e[n(469)])||void 0===r?void 0:r[n(334)](e)}))),f[t(460)]&&(r[t(350)](f,t(441),{tablePasteChainId:s,skipNestingCheck:!0}),f[t(455)]((e=>{const n=t;var r;return null===(r=e[n(469)])||void 0===r?void 0:r[n(334)](e)})));const g=r[t(382)](h[t(412)]((({element:t})=>t)),{formatGroupId:(0,e.uid)()},[],t(304),{tablePasteChainId:s});if(g){const e=g[t(266)](),r=[];for(const{element:s,attributes:o}of h){if(!o)continue;const i=n[t(391)][t(285)](s),a=e[t(399)]((e=>e[t(351)]()[t(390)](i)));a&&r[t(433)]([a[t(462)],o])}r[t(460)]&&g[t(305)](t(428),Object[t(272)](r))}c=null})))}),{priority:e.priorities[t(286)]+10}),n[t(376)][t(454)](t(314)).on(t(471),((e,n)=>{const r=t,[s,o,,a]=n;if(!c)return;e[r(333)]();const u=s[r(303)],l=o,f=Sa(u),h=Sa(l);e[r(271)]=u;let g=null,d=null;if(h||f)if(f&&!h){a[r(357)](u[r(279)](0));for(const t of Array[r(466)](l[r(386)]()))a[r(360)](t,u,r(310));const t=c[r(416)][r(317)](s[r(312)]),e=c[r(418)][r(317)](s[r(273)]);t||e||(g=i.LiveRange[r(426)](a[r(431)](u)))}else h&&!f&&(d=a[r(431)](u));else{const t=a[r(353)](r(456)),e=a[r(353)](r(456));a[r(377)](a[r(431)](u),e),a[r(360)](t,u,0);for(const e of Array[r(466)](l[r(386)]()))a[r(360)](e,t,r(310));g=i.LiveRange[r(426)](a[r(285)](t)),d=i.LiveRange[r(426)](a[r(285)](e))}const p=Array[r(466)](l[r(414)]())[r(459)]((([t])=>La[r(317)](t)));c[r(346)][r(433)]({element:u,attributes:p[r(460)]?Object[r(272)](p):null}),g&&c[r(327)][r(433)](g),d&&c[r(452)][r(433)](d)}),{priority:t(286)}),s.on(t(389),((e,r)=>{const o=t,[i,a={}]=r;if(!c)return;const u=a.at||0,l=a[o(276)]||1;c[o(418)]=new Array(l)[o(269)](u)[o(412)](((t,e)=>t+e));for(const{cell:t}of s[o(367)](i,{startColumn:u,endColumn:u+l-1}))c[o(392)][o(433)](n[o(391)][o(285)](t))}),{priority:t(430)}),s.on(t(344),((e,r)=>{const o=t,[i,a={}]=r;if(!c)return;const u=a.at||0,l=a[o(409)]||1;c[o(416)]=new Array(l)[o(269)](u)[o(412)](((t,e)=>t+e));for(const{cell:t}of s[o(367)](i,{startRow:u,endRow:u+l-1}))c[o(320)][o(433)](n[o(391)][o(285)](t))}),{priority:t(430)}),r[t(278)][t(358)]((e=>{const r=t;if(e[r(294)]&&e[r(294)][r(419)](r(441)))return e[r(283)]?{}:{type:r(277),content:Kr(n[r(349)],r(280))}}));const u=()=>!1;for(const e of[t(441),t(267),t(284),t(304)])r[t(301)][t(424)](t(277),e,t(468),u),r[t(301)][t(424)](t(381),e,t(468),u),r[t(301)][t(424)](t(373),e,t(468),u);r[t(301)][t(424)](t(373),t(304),t(420),u),r[t(301)][t(424)](t(373),t(304),t(270),((e,r,s)=>{const o=t,i=e[o(412)]((t=>t[o(442)]()))[o(459)]((t=>t)),a=new Map(i[o(412)]((t=>[t,null])));if(c)for(const{element:t,attributes:e}of c[o(346)])e&&a[o(362)](t,e);else if(s&&s[o(428)])for(const[t,e]of Object[o(332)](s[o(428)])){const r=n[o(391)][o(330)][o(454)](t),s=r?r[o(351)]()[o(442)]():null;s&&a[o(362)](s,e)}n[o(391)][o(450)]((t=>{const e=o;for(const[n,r]of a)t[e(324)]({...Na,...r},n)}))}));const l=(e,s)=>{const o=t;r[o(301)][o(424)](e,o(441),s,((t,i,a)=>{const c=o;n[c(391)][c(450)]((n=>{const o=c,u=[];for(const e of t){const t=e[o(379)][o(470)];t.is(o(343),o(456))&&u[o(433)](t)}r[o(301)][o(366)](e,null,s)(t,i,a);for(const t of u)o(457)!=t[o(359)][o(363)]&&n[o(337)](t)}))}))};l(t(277),t(270)),l(t(277),t(420)),l(t(381),t(270)),l(t(381),t(420)),r[t(301)][t(424)](t(277),t(284),t(420),(e=>{const n=t,r=e[n(412)]((t=>t[n(442)]())),i=r[0][n(306)](n(444)),{minRow:a,maxRow:c}=o[n(410)](r);s[n(322)](i,{at:a,rows:c-a+1})})),r[t(301)][t(424)](t(277),t(267),t(420),(e=>{const n=t,r=e[n(412)]((t=>t[n(442)]())),i=r[0][n(306)](n(444)),{minColumn:a,maxColumn:c}=o[n(410)](r);s[n(335)](i,{at:a,columns:c-a+1})}));const f=(e,n)=>{const s=t;if(!n[s(294)]||!n[s(294)][s(419)](s(441)))return;const o=n[s(374)][s(448)],i=r[s(325)]()[s(459)]((t=>t[s(290)]&&t[s(374)]&&t[s(374)][s(448)]==o));i[s(460)]&&n[s(299)]()[s(460)]!=i[s(460)]&&i[s(438)](((t,e)=>(t[s(378)]=e,e[s(283)]=t,e)))};function h(e,n=!0){const s=t,{id:o,authorId:i}=r[s(395)](e[s(393)]),a=[s(434),s(293)],c=r[s(405)][s(317)](e[s(393)]);return c&&a[s(433)](s(463)),{classes:a,attributes:{"data-suggestion":o,"data-author-id":i},priority:c&&n?3010:3e3}}r.on(t(417),f,{priority:t(286)}),r.on(t(440),f,{priority:t(286)}),n[t(391)][t(268)][t(275)]((()=>{const e=t;let s=!1;const o=Array[e(466)](n[e(391)][e(268)][e(396)][e(439)]());for(const{name:t,data:i}of o){const{group:o,type:a,id:c}=r[e(395)](t);if(e(281)!=o||e(381)!=a||i[e(415)])continue;if(!r[e(302)](c))continue;const u=r[e(451)](c)[e(298)](),l=n[e(376)][e(454)](e(464)).me;for(const t of r[e(325)]())if(t[e(290)]&&t[e(311)]==l&&e(373)==t[e(323)]&&e(304)==t[e(294)]&&t[e(298)]()[e(291)]((t=>u[e(340)]((n=>n[e(370)](t,!0))))))for(const n of t[e(299)]())n[e(290)]&&(n[e(420)](),s=!0)}return s})),n[t(391)][t(268)][t(275)]((e=>{const s=t,o=n[s(319)][s(454)](s(365));if(!o||!o[s(400)][s(300)](e[s(425)]))return!1;let i=!1;const a=n[s(376)][s(454)](s(464)).me,c=n[s(391)][s(268)][s(396)][s(408)](),u=Array[s(466)](n[s(391)][s(268)][s(396)][s(439)]())[s(459)]((({name:t,data:e})=>{const n=s,{group:o,subType:i,authorId:c}=r[n(395)](t);return n(281)==o&&n(441)==i&&c==a.id&&!e[n(415)]}));for(const t of c){if(s(360)!=t[s(323)]||s(456)!=t[s(462)]||1!=t[s(460)])continue;const n=e[s(368)](t[s(345)],t[s(345)][s(328)](1));if(!u[s(399)]((({data:t})=>t[s(338)][s(390)](n))))for(const{name:t,data:r}of u)if(n[s(370)](r[s(338)])){e[s(465)](t,{range:n}),i=!0;break}}return i})),n[t(391)][t(268)][t(275)]((e=>{const s=t;let o=!1;const i=n[s(376)][s(454)](s(464)).me,a=r[s(325)]()[s(459)]((t=>t[s(290)]&&t[s(311)]==i)),c=new Set,u=new Set;for(const t of a)if(s(441)==t[s(294)])for(const e of t[s(266)]()){const n=e[s(351)]()[s(442)]();if(n)if(n.is(s(343),s(456))&&Sa(n)){t[s(339)](e[s(462)]),c[s(467)](n),o=!0;const r=n[s(297)],i=n[s(364)],a=r&&r.is(s(343),s(456)),l=i&&i.is(s(343),s(456));a&&!c[s(300)](r)&&u[s(467)](r),l&&!c[s(300)](i)&&u[s(467)](i)}else n.is(s(343),s(401))&&n[s(316)]&&(t[s(339)](e[s(462)]),o=!0)}else if(s(304)==t[s(294)]){if(!t[s(374)]||!t[s(374)][s(448)])continue;const e=t[s(374)][s(428)];if(e&&Object[s(329)](e)[s(460)])continue;const n=t[s(374)][s(448)];let r=!0,i=!0;for(const e of a)if(e[s(294)]&&e[s(294)][s(419)](s(441))){if(!e[s(374)][s(448)]){i=!1;break}if(e.id!=t.id&&e[s(374)][s(448)]==n){r=!1;break}}i&&r&&(t[s(282)](),o=!0)}for(const t of c)e[s(357)](t);for(const t of u)e[s(337)](t);return o})),n[t(309)][t(403)](t(427))[t(315)]({model:t(308),view:t=>h(t),converterPriority:t(286)}),n[t(309)][t(403)](t(355))[t(315)]({model:t(308),view:(e,n)=>n[t(318)][t(385)]?h(e,!1):null,converterPriority:t(286)});const g=n[t(453)][t(449)];this[t(458)](g[t(268)],t(421),((e,n)=>{const r=t,s=[];for(const t of g[r(431)](n[r(437)])[r(369)]())t.is(r(343),r(383))&&s[r(433)](t);g[r(450)]((t=>{const e=r;for(const n of s)t[e(336)](t[e(431)](n),t[e(413)](n)),t[e(357)](n)}))}))}}function Sa(t){const e=Aa;if(t[e(316)])return!0;const n=t[e(279)](0);return n.is(e(343),e(401))&&n[e(316)]}function Ma(t,e={},n){const r=Aa;for(const{isAnchor:s,cellHeight:o,cellWidth:i}of n[r(367)](t,{includeAllSlots:!0,...e}))if(!s||1!=o||1!=i)return!1;return!0}const va=wa;function wa(t,e){const n=Oa();return(wa=function(t,e){return n[t-=130]})(t,e)}function Oa(){const t=["tableWidth","author","formatGroupId","has","locale","handleSuggestionDescription","registerCustomCallback","descriptionFactory","document","type","format","accept","formatBlock","formatInline","afterInit","853158iPrjAj","data","discard","Users","bind","getAttribute","TrackChangesEditing","commandParams","107570gnRpRT","enableCommand","6bXUyJy","resizeTableWidth","2058812MycnBv","resizeTable","handleResizeTableWidthCommand","*Format:* resize table","3245648ACcnha","subType","change","registerDescriptionCallback","columnWidths","_suggestionFactory","getSuggestions","markBlockFormat","getSelectedElement","getTableColumnsWidths","editor","723024dZZuJu","plugins","model","6146200bzoRPX","get","TableColumnResizeEditing","selection","table","getSuggestionCallback","475855SSRIIk","getContainedElement","getColumnGroupElement"];return(Oa=function(){return t})()}!function(t){const e=wa,n=t();for(;;)try{if(302614===parseInt(e(144))/1+parseInt(e(162))/2+parseInt(e(135))/3+-parseInt(e(174))/4+-parseInt(e(170))/5+-parseInt(e(172))/6*(-parseInt(e(178))/7)+-parseInt(e(138))/8)break;n.push(n.shift())}catch(t){n.push(n.shift())}}(Oa);class Fa extends t.Plugin{[va(161)](){const t=va;if(!this[t(134)][t(136)][t(150)](t(140)))return;const e=this[t(134)][t(136)][t(139)](t(168));e[t(171)](t(173),this[t(176)][t(166)](this)),e[t(183)][t(153)](t(159),t(175),t(158),e[t(183)][t(143)](t(159),null,t(164))),e[t(183)][t(153)](t(159),t(175),t(164),e[t(183)][t(143)](t(159),null,t(158))),e[t(154)][t(181)](this[t(152)][t(166)](this))}[va(176)](t,e){const n=va,r=this[n(134)][n(136)][n(139)](n(168)),s=this[n(134)][n(136)][n(139)](n(140)),o=e[n(142)]||this[n(134)][n(137)][n(155)][n(141)][n(132)]();this[n(134)][n(137)][n(180)]((()=>{const i=n,a=s[i(146)](o);let c=a?s[i(133)](a):null,u=o[i(167)](i(147))||null;const l=e[i(147)]||u,f=e[i(182)]||c,h=this[i(134)][i(136)][i(139)](i(165)).me;for(const t of r[i(130)]()){const e=t[i(145)]();if(i(175)===t[i(179)]&&e===o){t[i(148)]!==h&&t[i(164)]();const e=t[i(163)][i(169)];u=e[0][i(147)],c=e[0][i(182)];break}}t({table:o,tableWidth:l,columnWidths:f}),r[i(131)](o,{commandName:i(173),commandParams:[{tableWidth:u,columnWidths:c}],formatGroupId:i(175)},[],i(175))}))}[va(152)](t){const e=va;if(e(159)!=t[e(156)]&&e(160)!=t[e(156)])return;const{data:n}=t;if(n&&e(175)===n[e(149)]){const t=e(177);return{type:e(157),content:Kr(this[e(134)][e(151)],t)}}}}function Da(){const t=["734vZXWfm","607270LtrQll","1915116dPAmKs","has","get","37rlqEHF","insertTemplate","32336lAASIf","99csYgpH","Template","TrackChangesEditing","editor","1451616hxgcjn","afterInit","738624XFsgdH","497EGViHc","plugins","1236440mVXMgg","enableCommand"];return(Da=function(){return t})()}const Pa=xa;function xa(t,e){const n=Da();return(xa=function(t,e){return n[t-=222]})(t,e)}!function(t){const e=xa,n=t();for(;;)try{if(207028===parseInt(e(232))/1*(-parseInt(e(227))/2)+parseInt(e(222))/3+parseInt(e(239))/4+parseInt(e(225))/5+parseInt(e(229))/6+parseInt(e(223))/7*(-parseInt(e(234))/8)+-parseInt(e(235))/9*(parseInt(e(228))/10))break;n.push(n.shift())}catch(t){n.push(n.shift())}}(Da);class Ba extends t.Plugin{[Pa(240)](){const t=Pa,e=this[t(238)];e[t(224)][t(230)](t(236))&&e[t(224)][t(231)](t(237))[t(226)](t(233))}}const Ua=Ga;function ja(){const t=["ELEMENT_TABLE_OF_CONTENTS","317816cZbrWP","11357184MIzxKo","4334673VZbXhW","108535llFAsR","registerElementLabel","descriptionFactory","2580938RoLsNo","1BKSmPI","11189457BGtGoG","3091uNHsif","editor","TrackChangesEditing","locale","plugins","enableCommand","get","343KdXdoI","87310JFHeBa","commands","332tdnbHh","afterInit","tableOfContents","insertTableOfContents"];return(ja=function(){return t})()}function Ga(t,e){const n=ja();return(Ga=function(t,e){return n[t-=459]})(t,e)}!function(t){const e=Ga,n=t();for(;;)try{if(982090===parseInt(e(464))/1*(-parseInt(e(463))/2)+parseInt(e(459))/3+-parseInt(e(476))/4*(parseInt(e(460))/5)+parseInt(e(482))/6+-parseInt(e(473))/7*(-parseInt(e(481))/8)+parseInt(e(465))/9+-parseInt(e(474))/10*(parseInt(e(466))/11))break;n.push(n.shift())}catch(t){n.push(n.shift())}}(ja);class Va extends t.Plugin{[Ua(477)](){const t=Ua,e=this[t(467)];if(!e[t(475)][t(472)](t(479)))return;e[t(470)][t(472)](t(468))[t(471)](t(479));const n=e[t(470)][t(472)](t(468)),r=e[t(469)];n[t(462)][t(461)](t(478),(e=>Kr(r,t(480),e)))}}const Ha=za;function za(t,e){const n=Wa();return(za=function(t,e){return n[t-=334]})(t,e)}function Wa(){const t=["TrackChangesEditing","nodeBefore","end","plugins","differ","afterInit","suggestion","removeMarker","descriptionFactory","createRange","320149lwDuEv","Title","updateMarker","42518076dvMSRr","get","schema","has","forward","isEqual","6SCdslz","registerElementLabel","598527CYEBGU","ELEMENT_TITLE","738488FBZvjn","_splitMarkerName","start","model","12102046betBaA","locale","40iWnJaS","146250mrWjkM","1404116lJQdpv","getNearestSelectionRange","isCollapsed","isTouching","from","120hDryhQ","editor","8eHHaEx","getChangedMarkers","element","title-content","document","newRange","registerPostFixer","77bLkxVU"];return(Wa=function(){return t})()}!function(t){const e=za,n=t();for(;;)try{if(874076===-parseInt(e(376))/1*(-parseInt(e(358))/2)+parseInt(e(339))/3*(parseInt(e(351))/4)+parseInt(e(356))/5*(parseInt(e(350))/6)+-parseInt(e(365))/7*(-parseInt(e(343))/8)+-parseInt(e(341))/9*(parseInt(e(349))/10)+parseInt(e(347))/11+-parseInt(e(379))/12)break;n.push(n.shift())}catch(t){n.push(n.shift())}}(Wa);class Ka extends t.Plugin{[Ha(371)](){const t=Ha,e=this[t(357)];if(!e[t(369)][t(336)](t(377)))return;const n=e[t(369)][t(334)](t(366));n[t(374)][t(340)](t(361),(()=>Kr(e[t(348)],t(342)))),e[t(346)][t(362)][t(364)]((r=>{const s=t;let o=!1;const i=Array[s(355)](e[s(346)][s(362)][s(370)][s(359)]());for(const{name:t,data:a}of i){const{group:i}=n[s(344)](t);if(s(372)!==i||!a[s(363)])continue;const c=a[s(363)],u=c[s(368)][s(367)];if(!u||!u.is(s(360),s(361)))continue;if(!c[s(345)][s(354)](c[s(368)]))continue;const l=e[s(346)][s(335)][s(352)](c[s(368)],s(337));if(l&&l[s(353)]){const e=r[s(375)](c[s(345)],l[s(345)]);e[s(338)](c)||(r[s(378)](t,{range:e}),o=!0)}o||(r[s(373)](t),o=!0)}return o}))}}const Xa=qa;function qa(t,e){const n=Za();return(qa=function(t,e){return n[t-=478]})(t,e)}function Za(){const t=["5078502RwqCbP","72enJSjy","get","UndoEditing","6910043wVCqub","451350OvaQpy","665292qhIUiS","148380fQDVtC","plugins","undo","enableCommand","editor","has","8gRVgXI","afterInit","2124006uSkwQW","TrackChangesEditing","70xhauWp","213496mVnMNk","redo"];return(Za=function(){return t})()}!function(t){const e=qa,n=t();for(;;)try{if(608499===-parseInt(e(482))/1+parseInt(e(490))/2+parseInt(e(481))/3+parseInt(e(493))/4*(-parseInt(e(492))/5)+parseInt(e(495))/6+parseInt(e(479))/7*(-parseInt(e(488))/8)+parseInt(e(496))/9*(parseInt(e(480))/10))break;n.push(n.shift())}catch(t){n.push(n.shift())}}(Za);class Ja extends t.Plugin{[Xa(489)](){const t=Xa,e=this[t(486)],n=e[t(483)][t(497)](t(491));e[t(483)][t(487)](t(478))&&(n[t(485)](t(484)),n[t(485)](t(494)))}}const Ya=Qa;function Qa(t,e){const n=$a();return(Qa=function(t,e){return n[t-=499]})(t,e)}function $a(){const t=["9901608pOIsMP","1988rZvjVf","6663rfDCtF","enableCommand","afterInit","308ftwNRS","TableCaptionEditing","203990ndpShW","toggleTableCaption","2189015ZNrZQm","requires","5103822hAbUMm","plugins","7oExSAH","has","9Qxnexg","6922HEYuNh","287srGGBT","10308540rqollB","get","TrackChangesEditing","editor"];return($a=function(){return t})()}!function(t){const e=Qa,n=t();for(;;)try{if(715880===parseInt(e(511))/1*(-parseInt(e(510))/2)+-parseInt(e(518))/3*(-parseInt(e(517))/4)+-parseInt(e(503))/5+-parseInt(e(505))/6*(-parseInt(e(507))/7)+-parseInt(e(516))/8*(parseInt(e(509))/9)+-parseInt(e(501))/10*(-parseInt(e(499))/11)+parseInt(e(512))/12)break;n.push(n.shift())}catch(t){n.push(n.shift())}}($a);class tc extends t.Plugin{static get[Ya(504)](){return[ga]}[Ya(520)](){const t=Ya,e=this[t(515)];e[t(506)][t(508)](t(500))&&e[t(506)][t(513)](t(514))[t(519)](t(502))}}const ec=rc;function nc(){const t=["tableCellWidth","TableCellPropertiesEditing","findAncestor","tableCellVerticalAlignment","tableBackgroundColor","tableProperties","discard","removeAttribute","getAttribute","enqueueChange","tableAlignment","tableCellBorderWidth","has","start","tableHeight","TrackChangesTableProperties","handleSuggestionDescription","tableCellHorizontalAlignment","data","getFirstPosition","format","pluginName","getSuggestionCallback","change","_getSuggestion","formatBlock","get","getContainedElement","tableCellBorderStyle","afterInit","260218woLBUN","isPremiumPlugin","5ZbBinl","plugins","setAttribute","join","editor","4064980sdhiRN","tableCellBorderColor","batch","tableCellBackgroundColor","TableUtils","_handlePropertyChange","model","*Format:* change table cell properties","descriptionFactory","commandParams","accept","registerCustomCallback","1564764AZGbDM","tableCellProperties","getSuggestions","tableWidth","TablePropertiesEditing","tableBorderColor","890721IgBnPP","tableCellHeight","getSelectionAffectedTableCells","tableCellPadding","4515861HBYMJC","locale","registerDescriptionCallback","1571064KXACna","selection","TrackChangesEditing","isOfficialPlugin","912441GcsYwx","subType","tableBorderWidth","tableBorderStyle","enableCommand","_suggestionFactory","markBlockFormat","handleDiscardAction","document","9FHvAol","nodeAfter","table","*Format:* change table properties"];return(nc=function(){return t})()}function rc(t,e){const n=nc();return(rc=function(t,e){return n[t-=459]})(t,e)}!function(t){const e=rc,n=t();for(;;)try{if(573438===parseInt(e(529))/1+parseInt(e(493))/2*(parseInt(e(459))/3)+-parseInt(e(500))/4+-parseInt(e(495))/5*(parseInt(e(512))/6)+parseInt(e(522))/7+-parseInt(e(525))/8+parseInt(e(518))/9)break;n.push(n.shift())}catch(t){n.push(n.shift())}}(nc);class sc extends t.Plugin{constructor(t){const e=rc;super(t),this[e(468)]=[e(517),e(532),e(531),e(473),e(515),e(477),e(467)],this[e(513)]=[e(501),e(491),e(474),e(521),e(463),e(519),e(503),e(480),e(466)]}static get[ec(484)](){return ec(478)}static get[ec(528)](){return!0}static get[ec(494)](){return!0}[ec(492)](){const t=ec,e=this[t(499)][t(496)][t(489)](t(527));if(this[t(499)][t(496)][t(475)](t(516))){for(const n of this[t(468)])e[t(533)](n,((e,r)=>{const s=t,o=this[s(499)][s(506)][s(537)][s(526)][s(482)]()[s(465)](s(461));this[s(505)](n,[o],this[s(468)],s(468),e,r)}));e[t(534)][t(511)](t(488),t(468),t(510),e[t(534)][t(485)](t(488),null,t(469))),e[t(534)][t(511)](t(488),t(468),t(469),((e,n)=>this[t(536)](this[t(468)],e,n))),e[t(534)][t(511)](t(488),t(468),t(498),(()=>!1))}if(this[t(499)][t(496)][t(475)](t(464))){for(const n of this[t(513)])e[t(533)](n,((e,r)=>{const s=t,o=this[s(499)][s(496)][s(489)](s(504))[s(520)](this[s(499)][s(506)][s(537)][s(526)]);this[s(505)](n,o,this[s(513)],s(513),e,r)}));e[t(534)][t(511)](t(488),t(513),t(510),e[t(534)][t(485)](t(488),null,t(469))),e[t(534)][t(511)](t(488),t(513),t(469),((e,n)=>this[t(536)](this[t(513)],e,n))),e[t(534)][t(511)](t(488),t(513),t(498),(()=>!1))}e[t(508)][t(524)]((e=>this[t(479)](e)))}[ec(505)](t,e,n,r,s,o){const i=ec,a=this[i(499)][i(496)][i(489)](i(527));this[i(499)][i(506)][i(472)](o[i(502)],(()=>{const t=i;for(const i of e)if(this[t(487)](i,r))s(o);else{const e={};for(const r of n){const n=i[t(471)](r);void 0!==n&&(e[r]=n)}s(o),a[t(535)](i,{commandParams:[e]},[],r)}}))}[ec(536)](t,e,n){const r=ec,s=e[0][r(476)][r(460)],o=n[r(509)][0];this[r(499)][r(506)][r(486)]((e=>{const n=r;for(const r of t)void 0!==o[r]?e[n(497)](r,o[r],s):e[n(470)](r,s)}))}[ec(479)](t){const e=ec;if(t[e(481)])switch(t[e(530)]){case e(468):return{type:e(483),content:Kr(this[e(499)][e(523)],e(462))};case e(513):return{type:e(483),content:Kr(this[e(499)][e(523)],e(507))}}}[ec(487)](t,e){const n=ec,r=this[n(499)][n(496)][n(489)](n(527));for(const s of r[n(514)]({skipNotAttached:!0})){const r=s[n(490)]();if(s[n(530)]===e&&r===t)return s}return null}}var oc=Function.prototype,ic=Object.prototype,ac=oc.toString,cc=ic.hasOwnProperty,uc=ac.call(Object);const lc=function(t){if(!ne(t)||"[object Object]"!=ct(t))return!1;var e=en(t);if(null===e)return!0;var n=cc.call(e,"constructor")&&e.constructor;return"function"==typeof n&&n instanceof n&&ac.call(n)==uc};const fc=function(t){return lc(t)?void 0:t};var hc=$?$.isConcatSpreadable:void 0;const gc=function(t){return ce(t)||ae(t)||!!(hc&&t&&t[hc])};const dc=function t(e,n,r,s,o){var i=-1,a=e.length;for(r||(r=gc),o||(o=[]);++i<a;){var c=e[i];n>0&&r(c)?n>1?t(c,n-1,r,s,o):tn(o,c):s||(o[o.length]=c)}return o};const pc=function(t){return(null==t?0:t.length)?dc(t,1):[]};const mc=function(t,e,n){switch(n.length){case 0:return t.call(e);case 1:return t.call(e,n[0]);case 2:return t.call(e,n[0],n[1]);case 3:return t.call(e,n[0],n[1],n[2])}return t.apply(e,n)};var Ic=Math.max;const Ec=function(t,e,n){return e=Ic(void 0===e?t.length-1:e,0),function(){for(var r=arguments,s=-1,o=Ic(r.length-e,0),i=Array(o);++s<o;)i[s]=r[e+s];s=-1;for(var a=Array(e+1);++s<e;)a[s]=r[s];return a[e]=n(i),mc(t,this,a)}};const bc=function(t){return function(){return t}};const Tc=Jt?function(t,e){return Jt(t,"toString",{configurable:!0,enumerable:!1,value:bc(e),writable:!0})}:function(t){return t};var _c=Date.now;const yc=function(t){var e=0,n=0;return function(){var r=_c(),s=16-(r-n);if(n=r,s>0){if(++e>=800)return arguments[0]}else e=0;return t.apply(void 0,arguments)}}(Tc);const Ac=function(t){return yc(Ec(t,void 0,pc),t+"")}((function(t,e){var n={};if(null==t)return n;var r=!1;e=ir(e,(function(e){return e=fr(e,t),r||(r=e.length>1),e})),te(t,an(t),n),r&&(n=Zn(n,7,fc));for(var s=e.length;s--;)jr(n,e[s]);return n})),kc=Cc;function Cc(t,e){const n=Mc();return(Cc=function(t,e){return n[t-=203]})(t,e)}!function(t){const e=Cc,n=t();for(;;)try{if(783203===-parseInt(e(237))/1+parseInt(e(260))/2*(-parseInt(e(253))/3)+-parseInt(e(539))/4+parseInt(e(600))/5+-parseInt(e(285))/6*(parseInt(e(448))/7)+parseInt(e(621))/8*(-parseInt(e(343))/9)+parseInt(e(513))/10)break;n.push(n.shift())}catch(t){n.push(n.shift())}}(Mc);const Lc=kc(521);class Nc extends t.Plugin{static get[kc(273)](){return[kc(324),o.Users,t.PendingActions,ts,ss,us,gs,Ts,Is,Ls,vs,js,no,oo,fo,go,_o,ko,So,Oo,xo,Wo,Go,Zo,Qo,ri,fi,mi,Oi,ai,Hs,qs,_i,Ci,Si,xi,Gi,Ki,Ji,ta,sa,ua,ga,Ea,ya,tc,Ra,Fa,Va,sc,Ba,Ka,Ja]}static get[kc(559)](){return kc(250)}static get[kc(479)](){return!0}static get[kc(586)](){return!0}constructor(t){const e=kc;super(t),this[e(630)]=!1,this[e(275)](e(407),[]),this.on(e(405),((n,r,s,o)=>{const i=e;this[i(328)][i(352)]((()=>{const e=i;for(const n of[...o,...s])this[e(328)][e(517)][e(425)](n)&&t[e(308)][e(525)](n)}))})),this[e(214)]=new qr(this[e(286)][e(206)][e(374)],this[e(286)][e(355)]),this[e(581)]=null,this[e(563)]=new Rc(this[e(286)]),this[e(393)]=new Map,this[e(562)]=t[e(398)][e(397)](e(324)),this[e(594)]=new Set,this[e(328)]=this[e(286)][e(206)],this[e(385)]=new WeakMap,this[e(474)]=!1,this[e(477)]=new Set([e(521)]),this[e(419)]=new Set,t[e(561)][e(577)](e(332),e(256)),this[e(444)]=t[e(561)][e(397)](e(332)),t[e(561)][e(577)](e(424),!0),this[e(269)]=t[e(561)][e(397)](e(424)),this[e(315)]=new f(t,this[e(594)]),this[e(416)]()}[kc(266)](){const t=kc,n=this[t(286)],r=(e,n)=>{const r=t;if(r(314)!=e)return r(232)+e;const s=n[r(411)]("|")[0];return this[r(363)](s)?r(505):r(550)};n[t(254)][t(554)](t(303))[t(280)]({model:t(387),view:e=>{const n=t,{id:s,authorId:o,type:i,subType:a}=this[n(432)](e[n(453)]),c=[n(423),r(i,a)];let u=3e3;return this[n(407)][n(524)](e[n(453)])&&(c[n(377)](n(264)),u=3010),n(320)==i&&(u+=5),{classes:c,attributes:{"data-suggestion":s,"data-author-id":o},priority:u}}}),n[t(254)][t(554)](t(476))[t(364)]((e=>{const r=t;e.on(r(549),((t,e,s)=>{const o=r;if(!s[o(570)][o(245)])return;const i=e[o(299)];if(!i)return;const c=s[o(348)][o(219)](i);n[o(206)][o(374)][o(297)](i)&&c&&!c[o(601)](o(209))&&c.is(o(572))&&(0,a.toWidget)(c,s[o(439)])}),{priority:r(301)})})),n[t(254)][t(554)](t(476))[t(280)]({model:t(387),view:(e,n)=>{const s=t;if(!n[s(570)][s(245)])return null;const{type:o,subType:i}=this[s(432)](e[s(453)]);return{classes:[s(423),r(o,i)],priority:3e3}}});const s=({showActiveMarkers:e=!0,isAttributeSuggestion:r=!1}={})=>(s,o,i)=>{const a=t;if(!o[a(299)])return;const{id:c,authorId:u}=this[a(432)](o[a(453)]);if(r){const t=this[a(393)][a(397)](c),e=this[a(580)](t);if(!this[a(363)](e))return}if(o[a(299)].is(a(533)))return void i[a(575)][a(567)](o[a(299)],s[a(403)]);const l=i[a(348)][a(219)](o[a(299)]);if(o[a(299)].is(a(568))&&n[a(206)][a(374)][a(298)](o[a(299)])&&!l[a(601)](a(204))){i[a(439)][a(294)]([a(423),a(505)],l),i[a(439)][a(321)](a(558),c,l),i[a(439)][a(321)](a(366),u,l),i[a(348)][a(599)](l,o[a(453)]),e&&(this[a(407)][a(524)](o[a(453)])?i[a(439)][a(294)](a(264),l):i[a(439)][a(498)](a(264),l));for(const t of n[a(206)][a(501)](o[a(299)])[a(296)]())i[a(575)][a(567)](t,s[a(403)]);i[a(575)][a(567)](o[a(299)],s[a(403)])}};n[t(254)][t(554)](t(476))[t(364)]((e=>{const n=t;e.on(n(436),((t,e,r)=>{const o=n;r[o(570)][o(245)]&&s({showActiveMarkers:!1})(t,e,r)}),{priority:n(272)})})),n[t(254)][t(554)](t(476))[t(364)]((e=>{const n=t;e.on(n(268),((t,e,r)=>{const o=n;r[o(570)][o(245)]&&s({showActiveMarkers:!1,isAttributeSuggestion:!0})(t,e,r)}),{priority:n(272)})})),n[t(254)][t(554)](t(476))[t(333)]({model:t(387),view:(e,n)=>n[t(570)][t(245)]?null:{group:t(387),name:e[t(351)](11)}}),n[t(254)][t(554)](t(629))[t(485)]({view:{name:t(387),attributes:{id:/^\w/,"suggestion-type":/^\w/}},model:(e,{writer:n})=>{const r=t;let s=r(507)+e[r(456)](r(475))+":"+e[r(456)]("id");return e[r(456)](r(428))&&(s+=":"+e[r(456)](r(428))),n[r(217)](r(494),{"data-name":s})}}),n[t(254)][t(554)](t(629))[t(569)]({view:t(387)}),n[t(254)][t(554)](t(303))[t(364)]((e=>{const n=t;e.on(n(436),s(),{priority:n(301)})})),n[t(254)][t(554)](t(303))[t(364)]((e=>{const n=t;e.on(n(268),s({isAttributeSuggestion:!0}),{priority:n(301)})})),n[t(254)][t(554)](t(303))[t(364)]((e=>{const n=t;e.on(n(435),((t,e,r)=>{const s=n,o=r[s(348)][s(634)](e[s(453)]);if(o)for(const t of o)t[s(601)](s(204))||(r[s(439)][s(498)]([s(423),s(505),s(264)],t),r[s(439)][s(470)](s(558),t),r[s(439)][s(470)](s(366),t),r[s(348)][s(382)](t,e[s(453)]))}),{priority:n(301)})})),n[t(254)][t(554)](t(303))[t(364)]((e=>{const n=t;e.on(n(371),((t,e,r)=>{const s=n,o=r[s(348)][s(634)](e[s(453)]);if(!o)return;const{id:i}=this[s(432)](e[s(453)]),a=this[s(393)][s(397)](i),c=this[s(580)](a);if(this[s(363)](c))for(const t of o)t[s(601)](s(204))||(r[s(439)][s(498)]([s(423),s(505),s(264)],t),r[s(439)][s(470)](s(558),t),r[s(439)][s(470)](s(366),t),r[s(348)][s(382)](t,e[s(453)]))}),{priority:n(301)})})),n[t(206)][t(631)][t(347)]((e=>{const r=t;let s=!1;const o=Array[r(597)](n[r(206)][r(631)][r(373)][r(340)]()),i=new Set;for(const{name:t,data:c}of o){const{group:o,type:u,subType:l,id:f}=this[r(432)](t);if(r(387)!==o)continue;const h=this[r(393)][r(397)](f);if(null!=c[r(536)]){r(252)==u&&(s=s||wc(c[r(536)],t,e,n[r(206)][r(374)]));const o=r(314)==u&&this[r(363)](l[r(411)]("|")[0]);if(c[r(536)][r(361)]||r(240)==c[r(536)][r(402)][r(223)]||r(490)==u&&!Fc(c[r(536)])||o&&!Fc(c[r(536)])||r(320)==u&&(vc(a=c[r(536)])||function(t){const e=r;return t[e(312)][e(564)]==t[e(588)][e(472)]&&t[e(312)][e(585)]}(a)))e[r(404)](t),s=!0;else{if(!h||!h[r(441)])continue;if(c[r(536)]&&c[r(265)]&&c[r(536)][r(440)](c[r(265)]))continue;i[r(364)](h)}}}var a;return i[r(282)]>0&&(s=!!this[r(218)](i)||s),s})),n[t(206)][t(631)][t(347)]((e=>{const r=t;let s=!1;for(const t of n[r(206)][r(631)][r(373)][r(337)]())if(r(408)==t[r(302)])for(const t of this[r(393)][r(455)]()){if(t[r(238)]||!t[r(441)])continue;const o=r(490)==t[r(302)],i=this[r(580)](t),a=i&&this[r(363)](i);if(!o&&!a)continue;const c=t[r(628)]();if(c[r(312)][r(564)]!=c[r(588)][r(564)]&&!c[r(588)][r(585)]){const o=n[r(206)][r(466)](c[r(312)][r(409)],r(588)),i=n[r(206)][r(519)](c[r(312)],o);e[r(400)](t[r(445)](),{range:i}),s=!0}}return s})),n[t(206)][t(631)][t(347)]((e=>this[t(278)](e))),n[t(206)][t(631)][t(347)]((e=>!e[t(203)][t(595)]&&this[t(319)](e))),n[t(206)].on(t(438),(()=>{this[t(630)]=!1})),n[t(206)][t(631)].on(t(523),((r,s)=>{const o=t;if(!s[o(595)]||s[o(353)])return;if(!this[o(630)])return;const i=n[o(206)][o(631)][o(373)][o(337)]();if(0==i[o(234)])return;const a=[],c=i[o(619)]((t=>o(314)==t[o(302)])),u=i[o(619)]((t=>o(408)==t[o(302)]&&o(582)!=t[o(403)]));for(const t of c)this[o(358)](t[o(317)])&&a[o(377)]({key:t[o(317)],newValue:t[o(426)],oldValue:t[o(267)],range:Dc(t[o(231)],n[o(206)])});for(const t of u){if(o(459)!=t[o(464)]&&o(535)!=t[o(464)])continue;const e=Pc(t[o(491)][o(409)],n[o(206)]),r=t[o(528)];o(459)==t[o(464)]&&a[o(377)]({key:o(521),newValue:t[o(403)],oldValue:r[o(403)],range:e});for(const[n,s]of r[o(605)]){if(!this[o(358)](n))continue;const r=t[o(605)][o(397)](n);s!==r&&a[o(377)]({key:n,newValue:r,oldValue:s,range:e})}for(const[n,s]of t[o(605)])this[o(358)](n)&&(r[o(605)][o(425)](n)||a[o(377)]({key:n,newValue:s,oldValue:null,range:e}))}0!=a[o(234)]&&n[o(206)][o(489)](s,(t=>{const n=o,r=(0,e.uid)();for(const{range:t,key:e,oldValue:s,newValue:o}of a)this[n(635)](t,e,s,o,{groupId:r});this[n(587)](t,a)}))}),{priority:t(304)}),n[t(206)][t(517)].on(t(293),((e,n,r)=>{const s=t;if(null==r){const{id:t}=this[s(432)](n[s(403)]),e=this[s(393)][s(397)](t);e&&e[s(359)](n[s(403)])}})),n[t(206)][t(631)].on(t(523),(()=>{const e=t,r=Array[e(597)](n[e(206)][e(631)][e(373)][e(340)]())[e(619)]((t=>e(387)===this[e(432)](t[e(403)])[e(307)]));if(0===r[e(234)])return;r[e(437)](((t,n)=>{const r=e,s=t[r(277)][r(265)],o=n[r(277)][r(265)];return null===s&&null===o?0:null===s&&null!==o?-1:null!==s&&null===o?1:s[r(312)][r(537)](o[r(312)])?-1:1}));const s=new Set,o=new Set;for(const{name:t,data:n}of r){const{id:r}=this[e(432)](t);if(null===n[e(265)]){const n=this[e(341)](t);o[e(364)](n)}else{const t=this[e(393)][e(397)](r);null!==n[e(536)]||t[e(441)]?(s[e(364)](t[e(243)]),o[e(364)](t)):this[e(546)](t)}}o[e(282)]>0&&this[e(512)](o);for(const t of s)this[e(557)](e(615),t)})),n[t(206)].on(t(227),((e,r)=>{const s=t,o=r[0];if(!this[s(393)][s(282)])return;if(!o[s(508)])return;if(o[s(203)][s(353)]||!o[s(203)][s(595)])return;let i,a;switch(o[s(302)]){case s(408):i=n[s(206)][s(466)](o[s(491)]),a=i[s(543)](o[s(565)]);break;case s(411):i=n[s(206)][s(466)](o[s(306)]),a=n[s(206)][s(466)](o[s(360)]);break;case s(502):i=n[s(206)][s(466)](o[s(395)]),a=i[s(543)](o[s(565)]);break;default:return}const c=n[s(206)][s(519)](i,a);n[s(206)][s(352)]((()=>{const t=s;for(const{suggestion:e,meta:n}of this[t(372)](c)){if(e[t(238)])continue;if(t(252)==e[t(302)])continue;const r=this[t(580)](e);if(r&&this[t(363)](r)&&t(411)!=o[t(302)])continue;const s=e[t(277)]&&e[t(277)][t(263)];(t(490)!=e[t(302)]||t(411)==o[t(302)]&&!s)&&(n[t(375)]||t(450)==e[t(302)]&&n[t(625)]||e[t(628)]()[t(548)](c)&&this[t(287)](e,i,a))}}))}),{priority:t(304)}),n[t(206)].on(t(573),((e,r)=>{const s=t,o=r[0],i=r[1];if(i&&i[s(430)])return;if(this[s(474)])return;if(!this[s(315)][s(394)])return;if(o[s(361)])return;const a=n[s(206)][s(374)],{start:c,end:u}=o[s(628)](),l=c[s(409)]&&a[s(433)](c[s(409)])?null:a[s(560)](c,s(627)),f=u[s(472)]&&a[s(433)](u[s(472)])?null:a[s(560)](u,s(336)),h=n[s(206)][s(519)](l?l[s(312)]:c,f?f[s(588)]:u);n[s(206)][s(352)]((t=>{const e=s;this[e(370)](h);const r=n[e(206)][e(374)][e(560)](h[e(312)]);o.is(e(242))?t[e(291)](r):o[e(281)](r)})),e[s(427)]()}),{priority:e.priorities[t(469)]+10}),n[t(206)].on(t(257),((e,r)=>{const s=t,o=r[r[s(234)]-1];o&&o[s(430)]||this[s(474)]||this[s(315)][s(394)]&&(n[s(206)][s(352)]((()=>{const t=s;let o=n[t(206)][t(257)](r[0],r[1],r[2],{forceDefaultExecution:!0});if(!o)return;e[t(229)]=o[t(350)]();const i=o[t(588)][t(472)],a=n[t(206)][t(374)];i&&a[t(298)](i)&&!a[t(297)](i)&&(o=n[t(206)][t(519)](o[t(312)],n[t(206)][t(466)](i,t(588)))),this[t(468)](o)})),e[s(427)]())}),{priority:t(301)}),this[t(286)][t(620)][t(364)](t(414),this[t(315)]),this[t(249)](t(414));const o=new p(n,this[t(393)]);n[t(620)][t(364)](t(465),o),this[t(249)](t(465));const i=new b(n,this[t(393)]);n[t(620)][t(364)](t(542),i),this[t(249)](t(542)),n[t(620)][t(364)](t(357),new v(n,o,this[t(393)])),this[t(249)](t(357)),n[t(620)][t(364)](t(616),new v(n,i,this[t(393)])),this[t(249)](t(616)),n[t(620)][t(364)](t(614),new D(n,o,this[t(393)])),this[t(249)](t(614)),n[t(620)][t(364)](t(335),new D(n,i,this[t(393)])),this[t(249)](t(335));const c=n[t(398)][t(397)](t(324));this[t(603)](c,t(496),((e,{threadId:n})=>{const r=t,s=this[r(393)][r(397)](n);s&&s[r(636)]&&1===s[r(636)][r(234)]&&this[r(504)](n,{hasComments:!0})}),{priority:t(309)}),this[t(603)](c,t(493),((e,{threadId:n})=>{const r=t,s=this[r(393)][r(397)](n);s&&s[r(636)]&&!s[r(636)][r(234)]&&this[r(504)](n,{hasComments:!1})}),{priority:t(309)})}[kc(228)](){!async function(t){const n=p([50,48,107,108,78,77,79,105,110,65,84,113,116,85,54,76,90,97,120,117,103,118,104,71,121,74,101,56,83,86,52,111,100,99,87,81,75,88,115,82,80,114,119,67,57,68,106,89,66,70,49,53,102,55,112,73,122,98,51,69,109,72]),r=window[p([68,97,116,101])][p([110,111,119])](),s=t[p([101,100,105,116,111,114])],o=new(window[p([80,114,111,109,105,115,101])])((t=>{s[p([111,110,99,101])](p([114,101,97,100,121]),t)})),i={[p([107,116,121])]:p([69,67]),[p([117,115,101])]:p([115,105,103]),[p([99,114,118])]:p([80,45,50,53,54]),[p([120])]:p([105,67,106,79,67,118,68,70,73,54,108,81,72,72,84,49,56,106,86,119,82,102,107,102,72,81,50,97,95,77,121,109,84,51,53,76,81,86,111,70,83,65,73]),[p([121])]:p([107,88,73,121,74,52,101,118,116,67,69,70,82,109,120,75,83,85,112,75,57,102,68,87,52,53,57,118,88,79,118,86,114,104,102,54,117,81,65,101,79,105,111]),[p([97,108,103])]:p([69,83,50,53,54])},a=s[p([99,111,110,102,105,103])][p([103,101,116])](p([108,105,99,101,110,115,101,75,101,121]));function c(t){const e=[new(window[p([80,114,111,109,105,115,101])])((t=>setTimeout(t,605900))),o[p([116,104,101,110])]((()=>new(window[p([80,114,111,109,105,115,101])])((t=>{let e=0;s[p([109,111,100,101,108])][p([111,110])](p([97,112,112,108,121,79,112,101,114,97,116,105,111,110]),((n,r)=>{r[0][p([105,115,68,111,99,117,109,101,110,116,79,112,101,114,97,116,105,111,110])]&&e++,504==e&&(t(),n[p([111,102,102])]())}))}))))];return window[p([80,114,111,109,105,115,101])][p([114,97,99,101])](e)[p([116,104,101,110])]((()=>t))}function u(t){return t[p([115,116,97,114,116,115,87,105,116,104])](p([101,121]))?JSON[p([112,97,114,115,101])](l(t)):null}function l(t){return window[p([97,116,111,98])](t[p([114,101,112,108,97,99,101])](/-/g,p([43]))[p([114,101,112,108,97,99,101])](/_/g,p([47])))}function f(t){let e=5381;function n(t){for(let n=0;n<t[p([108,101,110,103,116,104])];n++){const r=t[p([99,104,97,114,67,111,100,101,65,116])](n);e=(e<<5)+e+r,e&=e}}return function t(e){Array[p([105,115,65,114,114,97,121])](e)?e[p([102,111,114,69,97,99,104])](t):e&&typeof e==p([111,98,106,101,99,116])?Object[p([101,110,116,114,105,101,115])](e)[p([115,111,114,116])]()[p([102,111,114,69,97,99,104])]((([e,r])=>{n(e),t(r)})):n(window[p([83,116,114,105,110,103])](e))}(t),e>>>0}function h(t){return t[p([116,111,83,116,114,105,110,103])](16)[p([112,97,100,83,116,97,114,116])](8,p([48]))}function g(t){return t[p([115,112,108,105,116])]("")[p([114,101,118,101,114,115,101])]()[p([106,111,105,110])]("")}function d(){}function p(t){const e=Cc;return t[e(213)]((t=>String[e(529)](t)))[e(399)]("")}!function(t){const e=function(){const t=window[p([83,116,114,105,110,103])](window[p([112,101,114,102,111,114,109,97,110,99,101])][p([110,111,119])]())[p([114,101,112,108,97,99,101])](p([46]),"");let e=p([107]);for(let r=0;r<t[p([108,101,110,103,116,104])];r+=2){let s=window[p([112,97,114,115,101,73,110,116])](t[p([115,117,98,115,116,114,105,110,103])](r,r+2));s>=n[p([108,101,110,103,116,104])]&&(s-=n[p([108,101,110,103,116,104])]),e+=n[s]}return e}();s[e]=p([116,114,97,99,107,67,104,97,110,103,101,115,76,105,99,101,110,115,101,75,101,121])+t,t!=p([86,97,108,105,100])&&async function(){await o,s[p([109,111,100,101,108])][p([99,104,97,110,103,101])]=d,s[p([109,111,100,101,108])][p([101,110,113,117,101,117,101,67,104,97,110,103,101])]=d,s[p([101,110,97,98,108,101,82,101,97,100,79,110,108,121,77,111,100,101])](p([109,111,100,101,108]))}()}(await async function(){let t,n=null,d=null;try{return a==p([71,80,76])?p([78,111,116,65,108,108,111,119,101,100]):(t=function(){const t=a[p([115,112,108,105,116])](p([46]));return 3!=t[p([108,101,110,103,116,104])]?null:e(t[1]);function e(t){const e=u(t);return e&&n()?e:null;function n(){const t=e[p([106,116,105])],n=window[p([112,97,114,115,101,73,110,116])](t[p([115,117,98,115,116,114,105,110,103])](t[p([108,101,110,103,116,104])]-8),16),r={...e,[p([106,116,105])]:t[p([115,117,98,115,116,114,105,110,103])](0,t[p([108,101,110,103,116,104])]-8)};return delete r[p([118,99])],f(r)==n}}}(),t?(t[p([117,115,97,103,101,69,110,100,112,111,105,110,116])]&&(d=function(t,n){return new(window[p([80,114,111,109,105,115,101])])((c=>{if(i())return c(p([86,97,108,105,100]));a(),s[p([100,101,99,111,114,97,116,101])](p([95,115,101,110,100,85,115,97,103,101,82,101,113,117,101,115,116]));let u=!1;const l=(0,e.uid)();function d(e){a(e)[p([116,104,101,110])]((t=>t&&t[p([115,116,97,116,117,115])]==p([111,107])?h(f(l+n))!=t[p([118,101,114,105,102,105,99,97,116,105,111,110])]?p([85,115,97,103,101,76,105,109,105,116]):p([86,97,108,105,100]):p([85,115,97,103,101,76,105,109,105,116])))[p([116,104,101,110])]((t=>(o(),t)),(()=>{const t=i();return null==t?(o(),p([86,97,108,105,100])):p(r-t>6048e5?[85,115,97,103,101,76,105,109,105,116]:[86,97,108,105,100])}))[p([116,104,101,110])](c)[p([99,97,116,99,104])]((()=>{c(p([85,115,97,103,101,76,105,109,105,116]))}));const s=36e5;function o(){const e=p([108,108,99,116,45])+h(f(t)),n=g(h(window[p([77,97,116,104])][p([99,101,105,108])](r/s)));window[p([108,111,99,97,108,83,116,111,114,97,103,101])][p([115,101,116,73,116,101,109])](e,n)}function i(){const e=p([108,108,99,116,45])+h(f(t)),n=window[p([108,111,99,97,108,83,116,111,114,97,103,101])][p([103,101,116,73,116,101,109])](e);return n?window[p([112,97,114,115,101,73,110,116])](g(n),16)*s:null}function a(t){return new(window[p([80,114,111,109,105,115,101])])(((e,n)=>{t[p([116,104,101,110])](e,n),window[p([115,101,116,84,105,109,101,111,117,116])](n,12e4)}))}}s[p([111,110])](p([95,115,101,110,100,85,115,97,103,101,82,101,113,117,101,115,116]),((e,n)=>{if(n[0]!=t)return c(p([85,115,97,103,101,76,105,109,105,116]));n[1]={...n[1],[p([114,101,113,117,101,115,116,73,100])]:l}}),{[p([112,114,105,111,114,105,116,121])]:p([104,105,103,104])}),s[p([111,110])](p([95,115,101,110,100,85,115,97,103,101,82,101,113,117,101,115,116]),(t=>{t[p([114,101,116,117,114,110])]instanceof window[p([80,114,111,109,105,115,101])]&&(u=!0,d(t[p([114,101,116,117,114,110])]))}),{[p([112,114,105,111,114,105,116,121])]:p([108,111,119])}),o[p([116,104,101,110])]((()=>{u||c(p([85,115,97,103,101,76,105,109,105,116]))}))}));function i(){return s[p([101,100,105,116,105,110,103])][p([118,105,101,119])][p([95,111,118,101,114,108,97,121,77,111,100,101,72,105,110,116])]==p([97,117,116,111])}function a(){s[p([101,100,105,116,105,110,103])][p([118,105,101,119])][p([95,111,118,101,114,108,97,121,77,111,100,101,72,105,110,116])]=p([97,117,116,111])}}(t[p([117,115,97,103,101,69,110,100,112,111,105,110,116])],t[p([106,116,105])])),await async function(){let t=!0;try{const r=a[p([115,112,108,105,116])](p([46])),[s,o,i]=r;return e(s),await n(s,o,i),t}catch(t){return!1}function e(e){const n=u(e);n&&n[p([97,108,103])]==p([69,83,50,53,54])||(t=!1)}async function n(e,n,r){const s=window[p([85,105,110,116,56,65,114,114,97,121])][p([102,114,111,109])](l(r),(t=>t[p([99,104,97,114,67,111,100,101,65,116])](0))),o=(new(window[p([84,101,120,116,69,110,99,111,100,101,114])]))[p([101,110,99,111,100,101])](e+p([46])+n),a=window[p([99,114,121,112,116,111])][p([115,117,98,116,108,101])];if(!a)return;const c=await a[p([105,109,112,111,114,116,75,101,121])](p([106,119,107]),i,{[p([110,97,109,101])]:p([69,67,68,83,65]),[p([110,97,109,101,100,67,117,114,118,101])]:p([80,45,50,53,54])},!1,[p([118,101,114,105,102,121])]);await a[p([118,101,114,105,102,121])]({[p([110,97,109,101])]:p([69,67,68,83,65]),[p([104,97,115,104])]:{[p([110,97,109,101])]:p([83,72,65,45,50,53,54])}},c,s,o)||(t=!1)}}()?function(){const e=t[p([102,101,97,116,117,114,101,115])];return!(!e||!e[p([105,110,99,108,117,100,101,115])](p([42]))&&!e[p([105,110,99,108,117,100,101,115])](p([84,67])))}()?function(){const e=[p([101,118,97,108,117,97,116,105,111,110]),p([116,114,105,97,108])][p([105,110,99,108,117,100,101,115])](t[p([108,105,99,101,110,115,101,84,121,112,101])])?r/1e3:1729123200;return t[p([101,120,112])]<e}()?p([69,120,112,105,114,101,100]):function(){const e=Cc,n=t[p([108,105,99,101,110,115,101,100,72,111,115,116,115])];if(!n||0==n[p([108,101,110,103,116,104])])return!0;const{hostname:r}=new URL(window[p([108,111,99,97,116,105,111,110])][e(211)]);if(n[p([105,110,99,108,117,100,101,115])](r))return!0;const s=r[p([115,112,108,105,116])](p([46]));return n[p([102,105,108,116,101,114])]((t=>t[p([105,110,99,108,117,100,101,115])](p([42]))))[p([109,97,112])]((t=>t[p([115,112,108,105,116])](p([46]))))[p([115,111,109,101])]((t=>s[p([101,118,101,114,121])](((e,n)=>t[n]===e||t[n]===p([42])))))}()?(t[p([108,105,99,101,110,115,101,84,121,112,101])]==p([101,118,97,108,117,97,116,105,111,110])&&(n=c(p([69,118,97,108,117,97,116,105,111,110,76,105,109,105,116]))),t[p([108,105,99,101,110,115,101,84,121,112,101])]==p([116,114,105,97,108])&&(n=c(p([84,114,105,97,108,76,105,109,105,116]))),t[p([108,105,99,101,110,115,101,84,121,112,101])]==p([100,101,118,101,108,111,112,109,101,110,116])&&(n=c(p([68,101,118,101,108,111,112,109,101,110,116,76,105,109,105,116]))),await(n&&d?new(window[p([80,114,111,109,105,115,101])])(((t,e)=>{n[p([116,104,101,110])](t,e),d[p([116,104,101,110])]((e=>{e!=p([86,97,108,105,100])&&t(e)}),e)})):n||d||p([86,97,108,105,100]))):p([68,111,109,97,105,110,76,105,109,105,116]):p([78,111,116,65,108,108,111,119,101,100]):p([73,110,118,97,108,105,100])):p([73,110,118,97,108,105,100]))}catch(t){return p([73,110,118,97,108,105,100])}}())}(this)}set[kc(230)](t){const n=kc;if(this[n(581)])throw new e.CKEditorError(n(443),this);this[n(581)]=t}get[kc(230)](){return this[kc(581)]}[kc(386)]({skipNotAttached:t=!1,toJSON:e=!1}={}){const n=kc,r=[];for(const e of this[n(393)][n(455)]())t&&!e[n(441)]||r[n(377)](e);return e?r[n(213)]((t=>t[n(632)]())):r}[kc(510)](t){const n=kc,r=this[n(393)][n(397)](t);if(!r)throw new e.CKEditorError(n(551),this);return r}[kc(342)](t){const e=kc;return this[e(393)][e(425)](t)}[kc(300)](t){const e=kc,{authorId:n,id:r,attributes:s}=t,[o,i]=t[e(302)][e(411)](":"),a=this[e(393)][e(397)](r)||this[e(384)](o,i,r,n,s);if(this[e(295)](a),this[e(446)](a,o,i||null,n),a[e(318)]=t[e(318)],a[e(327)]=!0,s&&s[e(401)]){const t=s[e(401)],n=this[e(378)](t[e(486)]);a[e(552)]=t[e(318)],a[e(259)]=n,a[e(429)]=!0}else a[e(552)]=t[e(318)];switch(t[e(277)]&&(a[e(277)]=t[e(277)]),t[e(605)]&&(a[e(605)]=t[e(605)]),this[e(581)]&&this[e(581)][e(270)]||(a[e(349)]=!0),this[e(385)][e(397)](a)){case e(271):this[e(385)][e(275)](a,e(447));break;case e(484):a[e(441)]?(this[e(218)](new Set([a])),this[e(512)](new Set([a])),this[e(385)][e(275)](a,e(420)),this[e(557)](e(547),a)):this[e(385)][e(275)](a,e(210))}return a}[kc(465)](t){const e=kc;this[e(430)]((()=>{const n=e;this[n(286)][n(206)][n(352)]((()=>{const e=n;for(const n of t[e(368)]())n[e(224)]()}))}))}[kc(542)](t){const e=kc;this[e(430)]((()=>{const n=e;this[n(286)][n(206)][n(352)]((()=>{const e=n;for(const n of t[e(368)]())n[e(283)]()}))}))}[kc(249)](t,n){const r=kc,s=this[r(286)][r(620)][r(397)](t);if(!s)throw new e.CKEditorError(r(362),this,{commandName:t});if(this[r(594)][r(425)](s))throw new e.CKEditorError(r(413),this,{commandName:t});this[r(594)][r(364)](s),n&&s.on(r(261),((t,e)=>{const o=r;this[o(315)][o(394)]&&(this[o(474)]||(e[o(234)]>0&&e[e[o(234)]-1]&&e[e[o(234)]-1][o(430)]?e[o(609)]():(t[o(229)]=n(((...t)=>s[o(261)](...t,{forceDefaultExecution:!0})),...e),t[o(427)]())))}),{priority:r(301)})}[kc(430)](t){const n=kc;let r,s;const o=this[n(474)];this[n(474)]=!0;try{r=t()}catch(t){s=t}return o||(this[n(474)]=!1),s&&e.CKEditorError[n(583)](s,this),r}[kc(468)](t,n=null,r={}){const s=kc;if(t[s(361)])return null;const o=this[s(286)][s(398)][s(397)](s(325)).me;for(const{suggestion:e,meta:o}of this[s(372)](t,s(450)))if(o[s(625)]){if(!o[s(379)]){if(o[s(375)]){if(!this[s(269)]||!Uc(e,r))continue;return e}if(Uc(e,r))return e;this[s(287)](e,t[s(312)],t[s(588)]);break}if(n==e[s(488)]&&Uc(e,r)){const n=e[s(628)]();return n[s(312)][s(440)](t[s(588)])?this[s(638)](e,this[s(328)][s(519)](t[s(312)],n[s(588)])):this[s(638)](e,this[s(328)][s(519)](n[s(312)],t[s(588)])),e}}const i=(0,e.uid)(),a=o.id,c=n?s(527)+n:s(450),u=this[s(514)]({id:i,type:c,createdAt:new Date,authorId:a,attributes:r});return this[s(354)](c,i,a,t),u}[kc(556)](t,n=kc(515),r={}){const s=kc,o=this[s(286)][s(398)][s(397)](s(325)).me,i=this[s(563)][s(460)](s(450),n,s(399));for(const e of this[s(386)]())if(e[s(259)].id==o.id&&s(450)==e[s(302)]&&e[s(488)]==n&&Uc(e,r)&&(i(e[s(590)](),t)||i(t,e[s(590)]()))){for(const n of t)e[s(623)](n);return e}for(const{suggestion:e,meta:n}of this[s(372)](t,s(450))){if(!n[s(625)])continue;if(!this[s(269)]&&n[s(375)])continue;if(!Uc(e,r))continue;let o=!0;for(const n of e[s(590)]())for(const e of t)if(!n[s(548)](e)){o=!1;break}if(o)return e}const a=(0,e.uid)(),c=o.id,u=s(527)+n,l=this[s(514)]({id:a,type:u,createdAt:new Date,authorId:c,attributes:r});for(const e of t)this[s(354)](u,a,c,e,Wr[s(555)]());return l}[kc(532)](t,n,r=null,s={}){const o=kc;if(r=r||Oc(n),t[o(361)])return null;if(o(346)===this[o(444)]){const e=this[o(563)][o(460)](o(252),r,o(224));return this[o(430)]((()=>e([t],n,s))),null}const i=this[o(286)][o(398)][o(397)](o(325)).me,a=[];if(o(604)!==this[o(444)])for(const{suggestion:e,meta:n}of this[o(372)](t,o(450)))n[o(625)]&&!n[o(639)]&&a[o(377)](...e[o(590)]());const c=function(t,e){const n=o,r=[];for(const s of e){const e=t[n(274)](s);e&&r[n(377)](e)}return r}(t,a),u=function(t,e){const n=o,r=[t];for(const t of e){let e=0;for(;e<r[n(234)];){const s=r[e][n(576)](t);r[n(422)](e,1,...s),e+=s[n(234)]}}return r}(t,a);c[o(234)]&&this[o(328)][o(352)]((()=>{const t=o;for(const e of c){const o=this[t(563)][t(460)](t(252),r,t(224));this[t(430)]((()=>o([e],n,s)))}}));for(const t of u){let a=null,c=t[o(312)],u=t[o(588)];for(const{suggestion:e,meta:n}of this[o(372)](t,o(252))){if(!n[o(625)])continue;if(e[o(488)]!=r)continue;if(!Uc(e,s))continue;const i=e[o(628)]();if(i[o(548)](t,!0))return null;c=c[o(537)](i[o(312)])?c:i[o(312)],u=u[o(388)](i[o(588)])?u:i[o(588)],a?i[o(312)][o(537)](a[o(628)]()[o(312)])?(a[o(208)](),a=e):e[o(208)]():a=e}const l=this[o(328)][o(519)](c,u);if(a)this[o(638)](a,l);else{const t=(0,e.uid)(),a=i.id;this[o(514)]({id:t,type:o(553)+r,data:n,createdAt:new Date,authorId:a,attributes:s}),this[o(354)](o(553)+r,t,a,l)}}return null}[kc(345)](t,n,r=[],s=null,o={}){const i=kc;n[i(589)]||(n[i(589)]=n[i(526)]),n[i(263)]=t.is(i(231)),s=s||Oc(n);const a=r[i(213)]((t=>Pc(t,this[i(328)]))),c=t.is(i(231))?t:Pc(t,this[i(328)]);if(i(346)===this[i(444)]){const t=this[i(563)][i(460)](i(490),s,i(224));return this[i(430)]((()=>t([c],n,o))),null}a[i(377)](c);let u=!0;for(const t of a)if(!this[i(471)](t)){u=!1;break}if(u&&i(604)!==this[i(444)]){const t=this[i(563)][i(460)](i(490),s,i(224));return this[i(430)]((()=>t([c],n,o))),null}let l=null,f=c[i(312)],h=c[i(588)];for(const{suggestion:t,meta:e}of this[i(372)](c,i(490))){if(!e[i(625)])continue;if(e[i(379)]||e[i(375)]||e[i(639)])continue;if(t[i(277)][i(589)]!=n[i(589)])continue;if(!Uc(t,o))continue;const r=t[i(628)]();if(t[i(488)]==s){if(r[i(548)](c,!0))return null;f=f[i(537)](r[i(312)])?f:r[i(312)],h=h[i(388)](r[i(588)])?h:r[i(588)],l?r[i(312)][i(537)](l[i(628)]()[i(312)])?(l[i(208)](),l=t):t[i(208)]():l=t}else{const e=c[i(274)](r);this[i(540)](t,e)}}const g=this[i(286)][i(398)][i(397)](i(325)).me,d=(0,e.uid)(),p=g.id;if(l)return this[i(638)](l,this[i(328)][i(519)](f,h)),l;{const t=this[i(514)]({id:d,type:i(415)+s,data:n,createdAt:new Date,authorId:p,attributes:o});return this[i(354)](i(415)+s,d,p,this[i(328)][i(519)](f,h)),t}}[kc(473)](t,n,r=[],s=null,o={}){const i=kc;n[i(589)]||(n[i(589)]=n[i(526)]);const a=t[0];n[i(263)]=a.is(i(231)),s=s||Oc(n);const c=r[i(213)]((t=>Pc(t,this[i(328)]))),u=a.is(i(231))?t:t[i(213)]((t=>Pc(t,this[i(328)])));if(i(346)===this[i(444)]){const t=this[i(563)][i(460)](i(490),s,i(224));return this[i(430)]((()=>t(u,n,o))),null}c[i(377)](...u);let l=!0;for(const t of c)if(!this[i(471)](t)){l=!1;break}if(l&&i(604)!==this[i(444)]){const t=this[i(563)][i(460)](i(490),s,i(224));return this[i(430)]((()=>t(u,n,o))),null}const f=this[i(286)][i(398)][i(397)](i(325)).me;for(const t of this[i(386)]()){if(t[i(259)].id!=f.id)continue;if(i(490)!=t[i(302)]||t[i(277)][i(589)]!=n[i(589)])continue;if(!Uc(t,o))continue;const e=t[i(488)]==s;for(let n=0;n<u[i(234)];n++){const r=u[n];for(const s of t[i(480)]()){const o=s[i(247)]();if(r[i(440)](o)){e?(u[i(422)](n,1),n--):t[i(404)](s[i(403)]);break}}}}if(0==u[i(234)])return null;const h=this[i(563)][i(460)](i(490),s,i(399));for(const t of this[i(386)]())if(t[i(259)].id==f.id&&i(490)==t[i(302)]&&t[i(277)][i(589)]==n[i(589)]&&t[i(488)]==s&&Uc(t,o)&&(h(t[i(590)](),u)||h(u,t[i(590)]()))){for(const e of u)t[i(623)](e);return t}const g=(0,e.uid)(),d=f.id,p=i(415)+s,m=this[i(514)]({id:g,type:p,data:n,createdAt:new Date,authorId:d,attributes:o});for(const t of u)this[i(354)](p,g,d,t,Wr[i(555)]());return m}[kc(370)](t,n=null,r={}){const s=kc;if(t[s(361)])return null;const o=this[s(286)][s(398)][s(397)](s(325)).me,a=new i.LiveRange(t[s(312)],t[s(588)]);for(const{suggestion:t,meta:e}of this[s(372)](a,s(450)))if(e[s(625)]&&!e[s(379)])if(t[s(238)]){const e=t[s(590)]()[s(619)]((t=>s(240)!=t[s(402)][s(223)]));if(e[s(389)]((t=>a[s(548)](t,!0)))&&t[s(283)](),e[s(220)]((t=>t[s(548)](a,!0)))){const t=this[s(563)][s(460)](s(320),n,s(224));return this[s(430)]((()=>t([a],null,r))),null}}else{const e=a[s(274)](t[s(628)]());null!==e&&t[s(239)]([e],null,r)}if(a[s(292)](),a[s(361)]||s(240)==a[s(402)][s(223)])return null;let c=null,u=a[s(312)],l=a[s(588)];const f=this[s(372)](a,s(320));for(const{suggestion:t,meta:e}of f){const n=this[s(328)][s(519)](u,l);if(e[s(625)]&&(this[s(269)]||!e[s(375)]&&!e[s(639)]))if(t[s(238)]){if(!Uc(t,r))continue;let e=!0;for(const r of t[s(590)]()){if(r[s(548)](n,!0))return t;n[s(548)](r)||(e=!1)}e&&t[s(283)]()}else{const e=t[s(628)]();if(e[s(548)](n,!0))return t;if(!Uc(t,r)){n[s(548)](e)?t[s(208)]():e[s(487)](u)?u=e[s(588)]:e[s(487)](l)&&(l=e[s(312)]);continue}u=u[s(537)](e[s(312)])?u:e[s(312)],l=l[s(388)](e[s(588)])?l:e[s(588)],r=Object[s(344)]({},t[s(605)]),c?e[s(312)][s(537)](c[s(628)]()[s(312)])?(c[s(208)](),c=t):t[s(208)]():c=t}}if(c)return this[s(638)](c,this[s(328)][s(519)](u,l)),c;{const t=(0,e.uid)(),i=this[s(328)][s(519)](u,l),a=o.id,c=n?s(451)+n:s(320),f=this[s(514)]({id:t,type:c,createdAt:new Date,authorId:a,attributes:r});return this[s(354)](c,t,a,i),f}}[kc(215)](t,n=kc(515),r={}){const s=kc,o=this[s(286)][s(398)][s(397)](s(325)).me,a=t[s(213)]((t=>new i.LiveRange(t[s(312)],t[s(588)]))),c=new Set;for(const{suggestion:t,meta:e}of this[s(372)](a,s(450)))e[s(625)]&&!e[s(379)]&&c[s(364)](t);for(const e of c)if(e[s(238)]){const o=e[s(590)]();if((!e[s(605)]||!e[s(605)][s(329)])&&o[s(389)]((t=>a[s(220)]((e=>e[s(548)](t,!0)))))&&e[s(283)](),a[s(389)]((t=>o[s(220)]((e=>e[s(548)](t,!0)))))){const e=this[s(563)][s(460)](s(320),n,s(224));return this[s(430)]((()=>e(t,null,r))),null}}else{const t=e[s(628)]();if(a[s(220)]((e=>e[s(548)](t,!0)))&&e[s(283)](),a[s(389)]((e=>t[s(548)](e,!0)))){const t=this[s(563)][s(460)](s(320),n,s(224));return this[s(430)]((()=>t(a,null,r))),null}}const u=this[s(563)][s(460)](s(320),n,s(399));let l=null;for(const t of this[s(386)]())if(t[s(259)].id==o.id&&t[s(441)]&&s(320)==t[s(302)]&&t[s(488)]==n&&Uc(t,r)&&(u(t[s(590)](),a)||u(a,t[s(590)]())))if(l){if(t[s(636)]&&t[s(636)][s(234)])continue;for(const e of t[s(590)]())l[s(216)](e)||l[s(623)](e);t[s(208)]()}else{l=t;for(const e of a)t[s(216)](e)||t[s(623)](e)}if(l)return l;c[s(380)]();for(const{suggestion:t,meta:e}of this[s(372)](a,s(320)))e[s(625)]&&(this[s(269)]||!e[s(375)]&&!e[s(639)])&&Uc(t,r)&&c[s(364)](t);for(const t of c){const e=t[s(590)]();if((!r||!r[s(329)])&&a[s(389)]((t=>e[s(220)]((e=>e[s(548)](t,!0))))))return t;(!t[s(605)]||!t[s(605)][s(329)])&&e[s(389)]((t=>a[s(220)]((e=>e[s(548)](t,!0)))))&&t[s(283)]()}const f=(0,e.uid)(),h=o.id,g=s(451)+n,d=this[s(514)]({id:f,type:g,createdAt:new Date,authorId:h,attributes:r});for(const t of a)t[s(292)](),t[s(361)]||s(240)==t[s(402)][s(223)]||this[s(354)](g,f,h,t,Wr[s(555)]());return d}[kc(635)](t,n,r,s,o){const i=kc;if(t[i(361)])return[];if(i(346)===this[i(444)])return[];const a=this[i(286)][i(398)][i(397)](i(325)).me.id,c=Array[i(597)](this[i(393)][i(455)]())[i(619)]((e=>i(314)==e[i(302)]&&e[i(277)][i(458)]==n&&e[i(216)](t)));if(i(256)===this[i(444)]){const e=this[i(372)](t,i(450))[i(619)]((({meta:t})=>t[i(625)]&&!t[i(639)]&&!t[i(379)]))[i(213)]((({suggestion:t})=>t));c[i(248)](...e)}const u=new Map([[t,r]]);for(const t of c){const e=i(314)==t[i(302)]?t[i(277)][i(544)]:void 0,o=t[i(628)](),a=Array[i(597)](u[i(406)]())[i(221)]((t=>t[i(579)](o)));if(!a)continue;const c=a[i(576)](o);this[i(363)](n)&&i(450)==t[i(302)]&&0!=c[i(234)]||(u[i(222)](a),c[i(598)]((t=>{u[i(275)](t,r)})),i(450)!=t[i(302)]&&e!=s&&u[i(275)](a[i(274)](o),e))}const l=[];for(const[t,r]of u){const c=(0,e.uid)(),u={key:n,oldValue:r,newValue:s};n[i(234)]>37&&console[i(516)](i(618),{key:n});const f=(i(212)+(n+"|")+Oc({newValue:s}))[i(530)](0,60),h=this[i(514)]({id:c,type:f,data:u,createdAt:new Date,authorId:a,attributes:o});l[i(377)](h),this[i(354)](f,c,a,t)}return l}[kc(246)](t){const e=kc;this[e(249)](t,((t,...n)=>{this[e(356)]((()=>{t(...n)}))}))}[kc(376)](t){const e=kc;this[e(477)][e(364)](t)}[kc(462)](t){const e=kc;this[e(419)][e(364)](t)}[kc(580)](t){const e=kc;return e(314)==t[e(302)]?t[e(488)][e(411)]("|")[0]:null}[kc(638)](t,e){const n=kc,r=t[n(445)]();this[n(328)][n(352)]((t=>{t[n(400)](r,{range:e})}))}[kc(295)](t){const e=kc,n=t.id,r=this[e(286)][e(561)][e(397)](e(522));this[e(562)][e(421)](n)||this[e(562)][e(225)]({channelId:r,threadId:n,isResolvable:!1,isSubmitted:!0});const s=this[e(562)][e(545)](n);s[e(434)](e(330)),s[e(330)]=!1,t[e(636)]=s}[kc(446)](t,n,r,s){const o=kc;if(t[o(302)]!=n||t[o(488)]!=r||t[o(610)].id!=s)throw this[o(286)][o(369)](o(467)),new e.CKEditorError(o(467),this)}[kc(540)](t,n){const r=kc,s=t[r(628)]();if(n[r(440)](s))t[r(208)]();else if(s[r(548)](n)){const o=this[r(328)][r(466)](n[r(312)][r(472)],r(588));this[r(638)](t,this[r(328)][r(519)](s[r(312)],o));const i=(0,e.uid)(),a=t[r(610)].id,c=t[r(302)]+":"+t[r(488)];this[r(514)]({id:i,type:c,createdAt:new Date,authorId:a,data:t[r(277)],attributes:t[r(605)]});const u=this[r(328)][r(466)](n[r(588)][r(564)],r(518)),l=this[r(328)][r(519)](u,s[r(588)]);this[r(354)](c,i,a,l)}else if(s[r(487)](n[r(312)])){const e=this[r(328)][r(466)](n[r(312)][r(472)],r(588));this[r(638)](t,this[r(328)][r(519)](s[r(312)],e))}else{const e=this[r(328)][r(466)](n[r(588)][r(564)],r(518));this[r(638)](t,this[r(328)][r(519)](e,s[r(588)]))}}[kc(471)](t){const e=kc;for(const{suggestion:n,meta:r}of this[e(372)](t,e(450))){if(!r[e(625)])continue;const s=n[e(590)]();for(const n of s)if(!t[e(576)](n)[e(234)])return!0}return!1}[kc(449)](t){const n=kc,r=this[n(286)][n(398)][n(397)](n(325))[n(381)](t);if(!r)throw new e.CKEditorError(n(412),this);return r}[kc(378)](t){const e=kc,n=this[e(286)][e(398)][e(397)](e(325)),r=(0,o.hashObject)(e(538)+t);return n[e(381)](r)||n[e(457)]({id:r,name:t})}[kc(384)](t,e,n,r,s){const o=kc,i=this[o(449)](r),a=this[o(563)][o(311)](t,e,n,i,s,(t=>{const e=o;this[e(504)](n,{attributes:t});const r=this[e(510)](n);this[e(218)](new Set([r])),this[e(512)](new Set([r]))}));return this[o(603)](a,o(224),(()=>{const t=o;this[t(504)](n,{state:t(339)})}),{priority:o(301)}),this[o(603)](a,o(283),(()=>{const t=o;this[t(504)](n,{state:t(483)})}),{priority:o(301)}),this[o(393)][o(275)](n,a),this[o(385)][o(275)](a,o(271)),a}[kc(432)](t){const e=kc,n=t[e(411)](":");return{group:n[0],type:n[1],subType:n[e(234)]>=5?n[2]:null,id:n[e(234)]<5?n[2]:n[3],authorId:n[e(234)]<5?n[3]:n[4],markerCount:6==n[e(234)]?n[5]:null}}[kc(287)](t,n,r){const s=kc,o=t[s(628)](),i=o[s(312)],a=o[s(588)];this[s(638)](t,this[s(328)][s(519)](i,n));const c=(0,e.uid)(),u=t[s(610)].id,l=t[s(302)]+(t[s(488)]?":"+t[s(488)]:"");this[s(514)]({id:c,type:l,createdAt:new Date,authorId:u,originalSuggestionId:t.id,attributes:t[s(605)],data:t[s(277)]});const f=this[s(580)](t);(s(490)==t[s(302)]||f&&this[s(363)](f))&&(r=this[s(328)][s(322)](r[s(564)])),this[s(354)](l,c,u,this[s(328)][s(519)](r,a))}[kc(372)](t,e=null){const n=kc,r=[],s=this[n(286)][n(398)][n(397)](n(325)).me;Array[n(591)](t)||(t=[t]);for(const o of this[n(386)]()){if(!o[n(441)])continue;if(e&&o[n(302)]!=e)continue;let i=!1;for(const e of o[n(590)]()){for(const a of t){const t=a[n(312)][n(440)](e[n(588)])||a[n(588)][n(440)](e[n(312)]);if(t||a[n(274)](e)){const c=a[n(548)](e)&&Sc(this[n(328)][n(374)],e[n(312)],a),u=e[n(548)](a)&&Sc(this[n(328)][n(374)],a[n(312)],e);r[n(377)]({suggestion:o,meta:{isOwn:s==o[n(259)],isNextTo:t,isInsideObject:c,containsRangeInObject:u}}),i=!0;break}}if(i)break}}return r}[kc(354)](t,e,n,r,s){const o=kc;this[o(328)][o(352)]((i=>{const a=o;let c=a(507)+t+":"+e+":"+n;s&&(c=c+":"+s),i[a(255)](c,{range:r,usingOperation:!0,affectsData:!0})}))}[kc(546)](t){const e=kc,n=t[e(276)],r=t[e(313)];t[e(276)]=null,t[e(313)]=null,null!=n&&n[e(313)]==t&&(n[e(313)]=r),null!=r&&r[e(276)]==t&&(r[e(276)]=n),e(420)==this[e(385)][e(397)](t)&&(this[e(385)][e(275)](t,e(210)),this[e(557)](e(596),t,n,r))}[kc(514)](t){const n=kc,r=t.id,s=this[n(300)](t);if(this[n(581)]&&this[n(581)][n(270)]){const o=this[n(286)][n(398)][n(397)](n(442)),i=s[n(492)],a=s[n(488)]?s[n(302)]+":"+s[n(488)]:s[n(302)],c=this[n(286)][n(355)],u=o[n(364)](Kr(c,n(410))),l={id:r,type:a,hasComments:i,data:t[n(277)]||null,originalSuggestionId:t[n(331)]||null,attributes:s[n(605)]};this[n(581)][n(270)](l)[n(417)]((t=>{const e=n;s[e(349)]=!0,o[e(244)](u),t&&t[e(318)]&&(this[e(393)][e(397)](r)[e(318)]=t[e(318)])}))[n(613)]((t=>{const r=n;throw(0,e.logWarning)(r(503)),this[r(286)][r(206)][r(489)]({isUndoable:!1},(()=>{s[r(283)]()})),s[r(607)](),this[r(393)][r(222)](s.id),this[r(385)][r(222)](s),t}))}return s}[kc(363)](t){const e=kc;return this[e(477)][e(425)](t)}[kc(504)](t,e){const n=kc,r=this[n(286)][n(398)][n(397)](n(442)),s=this[n(510)](t);if(this[n(581)]&&this[n(581)][n(316)])if(s[n(349)]){const s=r[n(364)](Kr(this[n(286)][n(355)],n(410)));this[n(581)][n(316)](t,e)[n(417)]((()=>{r[n(244)](s)}))}else s.on(n(506),(()=>{this[n(504)](t,e)}))}[kc(461)](t){const n=kc;if(!this[n(581)]||!this[n(581)][n(510)])throw new e.CKEditorError(n(205),this);return this[n(581)][n(510)](t)}[kc(341)](t){const e=kc,{id:n,type:r,subType:s,authorId:o}=this[e(432)](t),i=this[e(393)][e(397)](n)||this[e(384)](r,s,n,o,{});switch(this[e(446)](i,r,s,o),this[e(385)][e(397)](i)){case e(271):this[e(461)](n)[e(417)]((t=>{const r=e;let s=Promise[r(612)]();t[r(492)]&&(s=this[r(562)][r(499)]({channelId:this[r(286)][r(561)][r(397)](r(522)),threadId:n})),s[r(417)]((()=>{const e=r;this[e(300)](t)[e(349)]=!0}))})),this[e(385)][e(275)](i,e(484));break;case e(210):this[e(504)](n,{state:e(452)});case e(447):this[e(385)][e(275)](i,e(420)),this[e(557)](e(547),i);break;case e(420):this[e(557)](e(615),i)}return i[e(359)](t),i}[kc(512)](t){const e=kc,n=Array[e(597)](t),r=n[e(619)]((t=>e(314)==t[e(302)]));this[e(633)](r);const s=n[e(619)]((t=>!t[e(238)]&&e(314)!=t[e(302)])),o=this[e(386)]({skipNotAttached:!0})[e(619)]((t=>!t[e(238)]&&e(314)!=t[e(302)])),i=o[e(619)]((n=>!t[e(425)](n))),a=new Map(o[e(213)]((t=>[t,this[e(563)][e(460)](t[e(302)],t[e(488)],e(495))]))),c=new Map(o[e(213)]((t=>[t,t[e(628)]()]))),u=new Set,l=new Set;for(let t=0;t<s[e(234)];t++)h(s[t],s,t+1);for(let t=0;t<s[e(234)];t++)h(s[t],i,0);const f=new Set;for(let t=0;t<s[e(234)];t++){const n=s[t];!l[e(425)](n)&&n[e(276)]&&(f[e(364)](n[e(276)]),n[e(276)][e(313)]===n&&(n[e(276)][e(313)]=null),n[e(276)]=null),!u[e(425)](n)&&n[e(313)]&&(f[e(364)](n[e(313)]),n[e(313)][e(276)]===n&&(n[e(313)][e(276)]=null),n[e(313)]=null)}function h(t,n,r){const s=e;for(let e=r;e<n[s(234)];e++){const r=g(t,n[e]);r&&(r[0][s(313)]=r[1],r[1][s(276)]=r[0],u[s(364)](r[0]),l[s(364)](r[1]))}}function g(t,n){const r=e;if(t[r(259)].id!==n[r(259)].id)return null;const s=a[r(397)](t)(t,n,c[r(397)](t),c[r(397)](n));return s&&a[r(397)](n)(t,n,c[r(397)](t),c[r(397)](n))?s[1][r(636)]&&s[1][r(636)][r(234)]?null:s:null}f[e(282)]&&this[e(512)](f)}[kc(633)](t){const e=kc;if(0==t[e(234)])return;const n=this[e(386)]({skipNotAttached:!0})[e(619)]((t=>e(314)==t[e(302)]&&t[e(327)])),r=[],s=new Map;for(const t of n){const n=(0,o.hashObject)(t[e(605)]);s[e(425)](n)||(s[e(275)](n,r[e(234)]),r[e(377)]([]));const i=s[e(397)](n);r[i][e(377)](t)}!function(){const t=e;r[t(437)](((e,n)=>{const r=t,s=e[0][r(318)],o=n[0][r(318)];return s==o?e[0][r(605)][r(463)]<n[0][r(605)][r(463)]?-1:1:s<o?-1:1}));for(const e of r)e[t(437)](((t,e)=>t.id<e.id?-1:1))}();for(let t=0;t<r[e(234)];t++){if(0==r[t][e(234)])continue;const n=[];for(let s=t+1;s<r[e(234)];s++)0!=r[s][e(234)]&&i(r[t],r[s])&&n[e(377)](s);for(const s of n)r[t]=r[t][e(418)](r[s]),r[s]=[]}for(const t of r)for(let n=0;n<t[e(234)];n++){const r=t[n+1]||null;t[n][e(313)]!==r&&(t[n][e(313)]=r)}for(const t of r)for(let n=0;n<t[e(234)];n++){const r=t[n-1]||null;t[n][e(276)]!==r&&(t[n][e(276)]=r)}function i(t,n){const r=e;if(t[0][r(605)][r(463)]!==n[0][r(605)][r(463)]&&t[0][r(259)]!==n[0][r(259)])return!1;if(!function(t,e){const n=r;return!t[n(492)]&&!e[n(492)]||(!t[n(492)]||!e[n(492)])&&(!!(t[n(492)]&&e[n(318)]<t[n(636)][n(574)][n(397)](0)[n(318)])||!!(e[n(492)]&&t[n(318)]<e[n(636)][n(574)][n(397)](0)[n(318)]))}(t[0],n[0]))return!1;const s=Ac(t[0][r(605)],r(463)),o=Ac(n[0][r(605)],r(463));return!!Dr(s,o)&&(!!t[r(389)]((t=>n[r(220)]((e=>t[r(628)]()[r(440)](e[r(628)]())))))&&n[r(389)]((e=>t[r(220)]((t=>e[r(628)]()[r(440)](t[r(628)]()))))))}}[kc(218)](t){const e=kc,n=Array[e(597)](t),r=this[e(386)]({skipNotAttached:!0}),s=r[e(619)]((n=>!t[e(425)](n))),o=new Map(n[e(213)]((t=>[t,this[e(563)][e(460)](t[e(302)],t[e(488)],e(399))]))),i=new Map(r[e(213)]((t=>[t,t[e(590)]()])));for(let t=0;t<n[e(234)];t++)if(a(this,n[t],n,t+1))return!0;for(let t=0;t<n[e(234)];t++)if(a(this,n[t],s,0))return!0;return!1;function a(t,n,r,s){const a=e;for(let e=s;e<r[a(234)];e++){const s=r[e];if(s[a(302)]!==n[a(302)]||s[a(259)].id!==n[a(259)].id||s[a(488)]!==n[a(488)])continue;if(!Bc(n,s))continue;if(a(314)==n[a(302)]&&n[a(277)][a(544)]!=s[a(277)][a(544)])continue;if(a(314)==n[a(302)]&&t[a(363)](n[a(277)][a(458)]))continue;if(a(490)==n[a(302)]){const e=t[a(286)][a(206)],r=n[a(390)]();if(r&&(e[a(374)][a(297)](r)||e[a(374)][a(433)](r)))continue}const c=o[a(397)](n),u=i[a(397)](n),l=i[a(397)](s),f=n[a(636)]&&n[a(636)][a(234)],h=s[a(636)]&&s[a(636)][a(234)];if(!f&&c(l,u))return t[a(617)](s,n),i[a(222)](n),!0;if(!h&&c(u,l))return t[a(617)](n,s),i[a(222)](s),!0}return!1}}[kc(617)](t,e){const n=kc;if(t[n(238)])for(const r of e[n(590)]())t[n(623)](r);else{const r=e[n(628)]()[n(588)];this[n(638)](t,this[n(328)][n(519)](t[n(628)]()[n(312)],r))}e[n(208)]()}[kc(509)](t,e,n){const r=kc,s=t[r(235)](r(481))||t[r(235)](r(314))?r(611):t[r(338)]();return Kr(this[r(286)][r(355)],e+"_"+s+r(520),n)}[kc(416)](){const t=kc,n=this[t(286)];if(!n.ui)return;const{ariaLiveAnnouncer:r}=n.ui;(0,o.surroundingMarkersDetector)(this[t(328)],(({left:n,entered:s})=>{const i=t;for(const t of n){const{group:e,type:n}=this[i(432)](t[i(403)]);if(i(387)===e){r[i(383)](this[i(509)](n,i(497)));break}}for(const t of s){const{group:n,type:s}=this[i(432)](t[i(403)]);if(i(387)===n){r[i(383)](this[i(509)](s,i(478),(0,e.getEnvKeystrokeText)(o.FOCUS_ANNOTATION_KEYSTROKE)));break}}}))}[kc(278)](t){const e=kc;if(this[e(630)])return!1;const n=this[e(286)],r=n[e(206)][e(631)][e(373)][e(337)]();if(0==r[e(234)])return!1;const s=[],o=r[e(619)]((t=>e(314)==t[e(302)])),i=r[e(619)]((t=>e(408)==t[e(302)]&&e(582)!=t[e(403)])),a=r[e(619)]((t=>e(244)==t[e(302)]&&e(582)!=t[e(403)]));for(const t of o)s[e(377)]({key:t[e(317)],newValue:t[e(426)],oldValue:t[e(267)],range:Dc(t[e(231)],n[e(206)])});for(const t of i){const r=a[e(221)]((n=>n[e(491)][e(440)](t[e(491)])));r&&s[e(377)]({key:e(521),newValue:t[e(403)],oldValue:r[e(403)],range:n[e(206)][e(602)](t[e(491)][e(409)])})}return 0!=s[e(234)]&&this[e(587)](t,s)}[kc(319)](t){const e=kc;let n=!1;const r=this[e(286)][e(206)][e(631)][e(373)][e(340)]()[e(619)]((t=>t[e(277)][e(536)]&&t[e(403)][e(235)](e(262))));for(const s of r){const{subType:r,id:o}=this[e(432)](s[e(403)]),i=r[e(411)]("|")[0];for(const r of this[e(386)]({skipNotAttached:!0}))r.id!=o&&e(314)==r[e(302)]&&r[e(277)]&&r[e(277)][e(458)]==i&&r[e(628)]()[e(579)](s[e(277)][e(536)])&&(this[e(431)](r,s[e(277)][e(536)],t),n=!0)}return n}[kc(356)](t){this[kc(630)]=!0,t()}[kc(358)](t){const e=kc,n=this[e(363)](t),r=this[e(419)][e(425)](t);return n||r}[kc(587)](t,e){const n=kc;if(0==e[n(234)])return!1;let r=!1;for(const s of e){const e=this[n(372)](s[n(231)],n(314))[n(619)]((t=>!t[n(593)][n(379)]))[n(213)]((t=>t[n(387)])),i=(0,o.hashObject)({newValue:s[n(606)]});e[n(619)]((t=>{const e=n,[r,o]=t[e(488)][e(411)]("|");return r==s[e(458)]&&o!=i}))[n(598)]((e=>{const o=n;this[o(431)](e,s[o(231)],t),r=!0}))}return r}[kc(431)](t,e,n){const r=kc,s=t[r(628)]()[r(576)](e);0!==s[r(234)]?1!==s[r(234)]?this[r(287)](t,e[r(312)],e[r(588)]):this[r(638)](t,s[0]):n[r(404)](t[r(445)]())}}class Rc{constructor(t){const e=kc;this[e(241)]=t,this[e(328)]=t[e(206)],this[e(258)]=new Map,this[e(534)]=new Map,this[e(392)]()}[kc(311)](t,e,n,r,s,o){const i=kc;return new Wr(this[i(328)],{type:t,subType:e,id:n,author:r,creator:r,attributes:s,onAttributesChange:o,onAccept:(...n)=>this[i(460)](t,e,i(224))(...n),onDiscard:(...n)=>this[i(460)](t,e,i(283))(...n)})}[kc(236)](t,e,n,r){const s=kc,o=t+":"+e+":"+n;this[s(258)][s(275)](o,r)}[kc(460)](t,e,n){const r=kc,s=t+":"+e+":"+n;return this[r(258)][r(397)](s)||this[r(534)][r(397)](t+":"+n)}[kc(392)](){const t=kc,e=()=>!1,n=t=>{const e=Cc;t[e(437)](((t,n)=>t[e(312)][e(537)](n[e(312)])?1:-1)),this[e(328)][e(352)]((n=>{const r=e;for(const e of t){let t;t=e[r(588)][r(585)]&&e[r(588)][r(564)]==e[r(312)][r(409)]?n[r(571)](e[r(312)][r(409)],"on"):n[r(571)](e),this[r(328)][r(573)](t,{forceDefaultExecution:!0,doNotAutoparagraph:!0})}}))},r=(t,e)=>{const n=Cc;e&&this[n(328)][n(352)]((r=>{const s=n,{commandName:o,commandParams:a=[]}=e,c=t[s(213)]((t=>(vc(t)&&(t=this[s(328)][s(519)](t[s(588)])),t)))[s(619)]((t=>s(240)!==t[s(402)][s(223)]));if(c[s(234)]<1)return;const u=Array[s(597)](this[s(328)][s(631)][s(533)][s(590)]())[s(213)]((t=>i.LiveRange[s(310)](t)));r[s(291)](c);for(const t of this[s(241)][s(620)][s(620)]())t[s(535)]();a[s(377)]({forceDefaultExecution:!0}),this[s(241)][s(261)](o,...a);const l=u[s(619)]((t=>s(240)!=t[s(402)][s(223)]));l[s(234)]>0&&r[s(291)](l);for(const t of u)t[s(292)]()}))},s=(e,n)=>1==e[t(234)]&&1==n[t(234)]&&e[0][t(588)][t(440)](n[0][t(312)]),o=(e,n,r,s)=>xc(e,n,r,s,this[t(328)])?[e,n]:xc(n,e,s,r,this[t(328)])?[n,e]:null;this[t(534)][t(275)](t(279),e),this[t(534)][t(275)](t(323),n),this[t(534)][t(275)](t(226),s),this[t(534)][t(275)](t(566),o),this[t(534)][t(275)](t(592),n),this[t(534)][t(275)](t(365),e),this[t(534)][t(275)](t(624),s),this[t(534)][t(275)](t(396),o),this[t(534)][t(275)](t(284),r),this[t(534)][t(275)](t(326),e),this[t(534)][t(275)](t(334),s),this[t(534)][t(275)](t(288),e),this[t(534)][t(275)](t(290),r),this[t(534)][t(275)](t(541),e),this[t(534)][t(275)](t(305),s),this[t(534)][t(275)](t(531),e),this[t(534)][t(275)](t(367),e),this[t(534)][t(275)](t(251),((e,n)=>{const r=t;if(!n)return;const s=this[r(241)][r(398)][r(397)](Nc);this[r(328)][r(352)]((t=>{const o=r;if(o(521)==n[o(458)])for(const r of e){const e=r[o(312)][o(409)],s=n[o(544)];t[o(459)](e,s)}else if(s[o(363)](n[o(458)]))for(const r of e)void 0!==n[o(544)]?t[o(321)](n[o(458)],n[o(544)],r[o(312)][o(409)]):t[o(470)](n[o(458)],r[o(312)][o(409)]);else for(const r of e)n[o(544)]?t[o(321)](n[o(458)],n[o(544)],r):t[o(470)](n[o(458)],r)}))})),this[t(534)][t(275)](t(500),s)}}function Sc(t,e,n){const r=kc;for(const s of e[r(564)][r(511)]({includeSelf:!0,parentFirst:!0})){if(s[r(402)]==s)return!1;if(!n[r(482)](s))return!1;if(t[r(297)](s)||t[r(433)](s))return!0}return!1}function Mc(){const t=["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 a suggestion for attribute with too long attribute key. This may lead to errors. Change the attribute key to a value shorter than 37 characters.","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"];return(Mc=function(){return t})()}function vc(t){const e=kc;return t[e(588)][e(564)]==t[e(312)][e(409)]&&t[e(588)][e(454)]}function wc(t,e,n,r){const s=kc,o=t=>!t[s(299)].is(s(637))&&!r[s(297)](t[s(299)]),i=t[s(312)][s(626)](o),a=t[s(588)][s(626)](o,{direction:s(336)});return!(t[s(312)][s(440)](i)&&t[s(588)][s(440)](a)||(i[s(537)](a)?n[s(400)](e,{range:n[s(519)](i,a)}):n[s(404)](e),0))}function Oc(t){return(0,o.hashObject)(t)}function Fc(t){const e=kc,n=t[e(312)][e(409)];return n&&n.is(e(568))}function Dc(t,e){const n=kc;return null==t[n(588)][n(472)]&&t[n(588)][n(564)]==t[n(312)][n(409)]?Pc(t[n(312)][n(409)],e):t}function Pc(t,e){const n=kc,r=e[n(374)][n(297)](t)||e[n(374)][n(608)](t);return e[n(519)](e[n(466)](t,n(528)),r?e[n(289)](t):e[n(466)](t,n(588)))}function xc(t,e,n,r,s){const o=kc;if(t[o(313)])return!1;if(!Bc(t,e))return!1;if(n[o(588)][o(440)](r[o(312)]))return!0;if(t[o(302)]!=e[o(302)])return!1;if(!n[o(588)][o(391)](r[o(312)]))return!1;const i=s[o(519)](n[o(588)],r[o(312)])[o(578)]();for(const t of i)if([o(584),o(207)][o(524)](t[o(302)])&&s[o(374)][o(433)](t[o(299)]))return!1;return!0}function Bc(t,e){const n=kc;if(!t[n(327)]||!e[n(327)])return!1;const r=new Set(Object[n(406)](t[n(605)])),s=new Set(Object[n(406)](e[n(605)]));if(r[n(222)](n(463)),s[n(222)](n(463)),0==r[n(282)]&&0==s[n(282)])return!0;if(r[n(282)]!=s[n(282)])return!1;const o={...t[n(605)]},i={...e[n(605)]};return delete o[n(463)],delete i[n(463)],JSON[n(233)](o)==JSON[n(233)](i)}function Uc(t,e){const n=kc,r=jc(t[n(605)]),s=jc(e);if(!t[n(327)])return!1;for(const t of Object[n(406)](s))if(!Dr(r[t],s[t]))return!1;return!0}function jc(t){const e=kc,n=Object[e(344)]({},t);return delete n[e(329)],delete n[e(622)],n}const Gc=Vc;function Vc(t,e){const n=Hc();return(Vc=function(t,e){return n[t-=213]})(t,e)}function Hc(){const t=["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"];return(Hc=function(){return t})()}!function(t){const e=Vc,n=t();for(;;)try{if(525116===parseInt(e(227))/1+-parseInt(e(233))/2*(parseInt(e(222))/3)+-parseInt(e(243))/4+parseInt(e(223))/5+-parseInt(e(247))/6+-parseInt(e(244))/7*(-parseInt(e(224))/8)+parseInt(e(214))/9*(parseInt(e(238))/10))break;n.push(n.shift())}catch(t){n.push(n.shift())}}(Hc);class zc extends((0,e.ObservableMixin)()){constructor(t,e,n,r){const s=Vc;super(),this[s(231)]=e,this[s(232)]=n,this[s(241)]=r,this[s(249)]=t,this[s(215)]=t[s(218)][s(221)](s(251)),this[s(217)]=t[s(218)][s(221)](s(250)),this[s(232)][s(226)](s(246)).to(this[s(215)],this[s(217)],((t,e)=>t||e)),this[s(232)][s(226)](s(230)).to(this[s(215)],s(246),(t=>t&&this[s(249)][s(231)][s(242)](e[s(228)]()))),this[s(232)][s(226)](s(235)).to(this[s(217)],s(246),(t=>t&&this[s(249)][s(231)][s(242)](e[s(228)]()))),this[s(252)]=null,n[s(213)]&&this[s(245)](),this[s(236)](n,s(251),(()=>this[s(251)]())),this[s(236)](n,s(250),(()=>this[s(250)]())),this[s(236)](n,s(229),(()=>{const t=s;n[t(213)]?this[t(245)]():this[t(220)]()}))}[Gc(251)](){const t=Gc;this[t(215)][t(216)](this[t(231)].id)}[Gc(250)](){const t=Gc;this[t(217)][t(216)](this[t(231)].id)}[Gc(248)](){const t=Gc;this[t(232)][t(237)](t(246)),this[t(232)][t(237)](t(230)),this[t(232)][t(237)](t(235)),this[t(253)](),this[t(241)][t(248)](),this[t(252)]&&this[t(220)]()}[Gc(245)](){const t=Gc,e=Kr(this[t(249)][t(239)],t(254));this[t(252)]=this[t(249)][t(240)][t(221)](t(219))[t(225)](e)}[Gc(220)](){const t=Gc;null!==this[t(252)]&&this[t(249)][t(240)][t(221)](t(219))[t(234)](this[t(252)]),this[t(252)]=null}}const Wc=Kc;function Kc(t,e){const n=qc();return(Kc=function(t,e){return n[t-=220]})(t,e)}!function(t){const e=Kc,n=t();for(;;)try{if(895598===parseInt(e(264))/1+parseInt(e(234))/2+parseInt(e(226))/3*(-parseInt(e(272))/4)+parseInt(e(245))/5+parseInt(e(230))/6+parseInt(e(275))/7*(parseInt(e(282))/8)+parseInt(e(257))/9*(-parseInt(e(276))/10))break;n.push(n.shift())}catch(t){n.push(n.shift())}}(qc);class Xc extends s.View{constructor(t,n,r,i){const a=Kc;super(t),this[a(265)]=null,this[a(248)]=null,this[a(229)]=new o.AriaDescriptionView(t,Kr(t,a(288))),this[a(266)](a(246),!1),this[a(266)](a(243),n[a(243)]),this[a(287)](a(243)).to(n),this[a(266)](a(255),[]),this[a(266)](a(221),!1),this[a(266)](a(263),!1),this[a(266)](a(249),!1),this[a(266)](a(274),!1),this[a(287)](a(253)).to(this,a(270),n,a(243),this,a(255),((t,e,r)=>{const s=a,o=r[s(247)]((t=>_(t[s(250)])))[s(224)](". ")+".";return Kr(this[s(233)],s(252),[t-1,n[s(258)][s(261)],e?i[s(286)](e):"",(new DOMParser)[s(256)](o,s(290))[s(236)][s(281)]])})),this[a(260)]=new s.ViewCollection,this[a(259)]=new e.FocusTracker,this[a(232)]=new e.KeystrokeHandler,this[a(271)]=new s.FocusCycler({focusables:this[a(260)],focusTracker:this[a(259)],keystrokeHandler:this[a(232)],keystrokeHandlerOptions:{filter:t=>t[a(228)]!==this[a(268)]},actions:{focusPrevious:a(222),focusNext:a(244)}}),this[a(269)]=n,this[a(238)]=r,this[a(289)]=i,i[a(273)]?this[a(266)](a(270),1):this[a(262)]()}[Wc(235)](){const t=Wc;super[t(235)](),(0,o.setupThreadKeyboardNavigation)(this,this[t(260)])}[Wc(240)](){const t=Wc;this[t(268)][t(240)]()}[Wc(237)](){const t=Wc;this[t(265)]&&this[t(265)][t(237)](),this[t(248)]&&this[t(248)][t(237)](),super[t(237)]()}[Wc(262)](){const t=Wc,{CommentsListView:e}=this[t(289)];this[t(265)]=new e(this[t(233)],this[t(269)][t(279)],Object[t(285)]({CommentView:this[t(289)][t(292)]},this[t(289)])),this[t(265)][t(284)](t(220)).to(this),this[t(265)][t(284)](t(239)).to(this),this[t(265)][t(287)](t(246)).to(this),this[t(266)](t(270),this[t(265)][t(270)]+1),this[t(287)](t(270)).to(this[t(265)],t(270),(t=>t+1)),this[t(248)]=this[t(278)](),this.on(t(220),(()=>this[t(240)]())),this[t(287)](t(221)).to(this[t(265)],t(267),this[t(248)][t(242)],t(277),((t,e)=>t||!!e))}[Wc(278)](){const t=Wc,{CommentThreadInputView:e}=this[t(289)],n=new e(this[t(233)],this[t(238)],this[t(289)][t(225)]),r=n[t(242)];return n[t(287)](t(223)).to(this,t(246),this[t(269)][t(279)],t(251),r,t(277),((t,e,n)=>!!n||t&&!e)),r.on(t(254),((e,n)=>{const s=t;this[s(241)](s(227),n),r[s(283)][s(280)]("")})),r.on(t(291),(()=>this[t(240)]())),r[t(287)](t(231)).to(this[t(269)][t(279)],t(251)),n}}function qc(){const t=["14LhYifG","150IwfMKd","value","_createCommentThreadInputView","commentThread","setData","textContent","4042792DMEWID","editor","delegate","assign","formatDateTime","bind","SUGGESTION_THREAD_DESCRIPTION","_config","text/html","cancel","CommentView","removeComment","isDirty","shift+tab","showInput","join","editorConfig","57YmhuIY","addComment","target","ariaDescriptionView","1648200FuipLL","disabledSubmit","keystrokes","locale","3247472PZgYgD","render","body","destroy","_localUser","updateComment","focus","fire","commentInputView","authoredAt","tab","7095450TnxwcA","isActive","map","commentThreadInputView","canAccept","content","isReadOnly","SUGGESTION_THREAD_ARIA_LABEL","ariaLabel","submit","descriptionParts","parseFromString","2675061JcvkUS","author","focusTracker","focusables","name","_createCommentViews","isEnabled","1128998jAxulM","commentsListView","set","hasDirtyComment","element","_model","length","focusCycler","21724SaxRmq","disableComments","canDiscard"];return(qc=function(){return t})()}const Zc=Jc;function Jc(t,e){const n=Yc();return(Jc=function(t,e){return n[t-=112]})(t,e)}function Yc(){const t=["_config","50919WzhEHZ","isActive","set","5422501AnvlLl","ck-rounded-corners","ariaLabel","suggestionView","ck-suggestion-wrapper","disableComments","discardButton","commentThreadInputView","formatDateTime","ck-suggestion-","6793775rSPUaK","descriptionParts","<p>","getTemplate","ariaDescriptionView","1790NqGwjI","delegate","_descriptionElement","setTemplate","render","div","content","add","commentThread","_model","3785589jFgkeQ","author","6zYZEwH","6540384mkJvYK","2qCuLwT","bind","acceptSuggestion","editorDestroyed","canAccept","canDiscard","discardSuggestion","ck-suggestion-wrapper--active","</p>","bindTemplate","commentsListView","description","acceptButton","listitem","SuggestionView","focusables","color","type","404007pkjVRD","push","728381XqZvBC","4wWMkmB","isEnabled","ck-suggestion--disabled-comments","editorReady"];return(Yc=function(){return t})()}!function(t){const e=Jc,n=t();for(;;)try{if(946580===parseInt(e(126))/1*(-parseInt(e(164))/2)+parseInt(e(124))/3*(-parseInt(e(127))/4)+parseInt(e(145))/5+parseInt(e(162))/6*(-parseInt(e(135))/7)+parseInt(e(163))/8+-parseInt(e(160))/9+-parseInt(e(150))/10*(-parseInt(e(132))/11))break;n.push(n.shift())}catch(t){n.push(n.shift())}}(Yc);class Qc extends Xc{constructor(t,e,n,r){const s=Jc;super(t,e,n,r),this[s(134)](s(123),""),this[s(165)](s(123)).to(this,s(146),(t=>t&&t[0]?t[0][s(123)]:"")),this[s(165)](s(117)).to(this,s(146),this,s(133),((t,e)=>{const n=s;let r="";for(const e of t)r+=n(147)+_(e[n(156)],e[n(122)])+n(114);return e?r:(0,o.trimHtml)(r,{limit:140})})),this[s(152)]=null,this[s(138)]=new(r[s(120)])(t,e,{formatDateTime:r[s(143)]}),this[s(138)][s(165)](s(117)).to(this),this[s(138)][s(151)](s(166),s(112)).to(this),this[s(138)][s(118)][s(165)](s(128)).to(this,s(168)),this[s(138)][s(141)][s(165)](s(128)).to(this,s(169)),this[s(121)][s(157)](this[s(138)]),this[s(116)]&&this[s(121)][s(157)](this[s(116)]),this[s(142)]&&this[s(121)][s(157)](this[s(142)]),this[s(153)](this[s(148)]())}[Zc(148)](){const t=Zc,e=this[t(115)],n=[this[t(138)]];return this[t(116)]&&n[t(125)](this[t(116)]),this[t(142)]&&n[t(125)](this[t(142)]),n[t(125)](this[t(149)]),{tag:t(155),attributes:{class:["ck",t(136),t(139),e.if(t(133),t(113)),e.to(t(123),(e=>t(144)+e)),this[t(131)][t(140)]&&t(129)],"data-suggestion-id":this[t(159)].id,"data-thread-id":this[t(159)][t(158)].id,"data-author-id":this[t(159)][t(161)].id,tabindex:0,role:t(119),"aria-label":e.to(t(137)),"aria-describedby":this[t(149)].id},children:n}}[Zc(154)](){const t=Zc;super[t(154)](),this[t(116)]&&(this[t(116)][t(151)](t(130)).to(this),this[t(116)][t(151)](t(167)).to(this)),this[t(142)]&&(this[t(142)][t(151)](t(130)).to(this),this[t(142)][t(151)](t(167)).to(this))}}const $c=tu;function tu(t,e){const n=nu();return(tu=function(t,e){return n[t-=127]})(t,e)}!function(t){const e=tu,n=t();for(;;)try{if(221184===-parseInt(e(160))/1*(-parseInt(e(213))/2)+parseInt(e(199))/3*(parseInt(e(216))/4)+-parseInt(e(195))/5*(parseInt(e(156))/6)+parseInt(e(209))/7*(-parseInt(e(211))/8)+parseInt(e(167))/9*(-parseInt(e(201))/10)+parseInt(e(155))/11+parseInt(e(137))/12)break;n.push(n.shift())}catch(t){n.push(n.shift())}}(nu);class eu extends s.View{constructor(n,r,i){const a=tu;super(n),this[a(159)]=r,this[a(191)]=i,this[a(170)](a(161),""),this[a(163)](a(217)).to(r),this[a(139)]=this[a(174)](Kr(n,a(192)),t.icons[a(178)],a(190),a(194),"sw"),this[a(206)]=this[a(174)](Kr(n,a(175)),t.icons[a(204)],a(215),a(219),"sw"),this[a(132)]=new o.UserView(n,r[a(164)],this[a(147)]()),this[a(132)][a(168)]({attributes:{class:[a(141),a(130)],"aria-hidden":!0}}),this[a(214)]=new s.ViewCollection([this[a(139)],this[a(206)]]),this[a(187)]=new e.FocusTracker,this[a(186)]=new e.KeystrokeHandler,this[a(181)]=new s.FocusCycler({focusables:this[a(214)],focusTracker:this[a(187)],keystrokeHandler:this[a(186)],actions:{focusPrevious:a(208),focusNext:a(136)},keystrokeHandlerOptions:{filter:t=>t[a(135)]!==this[a(129)]}}),this[a(172)](this[a(144)]())}[$c(179)](){const t=$c;super[t(179)]();const e=this[t(129)][t(203)](t(185));e[t(212)]=this[t(161)],this.on(t(173),((n,r,s)=>{e[t(212)]=s})),this[t(196)]()}[$c(144)](){const t=$c,e=this[t(140)],n=[{tag:t(205),attributes:{class:[t(184),t(169)]},children:[{tag:t(189),children:[{text:this[t(132)][t(210)]}],attributes:{class:[t(131),t(146)]}},{tag:t(158),attributes:{datetime:e.to(t(217)),class:[t(182),t(180)]},children:[{text:e.to(t(217),(e=>this[t(191)][t(198)](e)))}]}]},{tag:t(205),attributes:{class:[t(183),t(148)]},children:[this[t(139)],this[t(206)]]},{tag:t(205),attributes:{class:[t(166)]}}];return this[t(159)][t(142)]&&n[t(151)]({tag:t(205),attributes:{class:[t(152)]},children:[{text:this[t(143)]()}]}),{tag:t(205),attributes:{class:[t(197),t(207)],tabindex:-1},children:[this[t(132)],{tag:t(205),attributes:{class:[t(127),t(171)],role:t(188)},children:n}]}}[$c(202)](){const t=$c;this[t(129)][t(202)]()}[$c(147)](){const t=$c;return this[t(159)][t(142)]?t(128)===this[t(159)][t(134)][t(218)][t(165)]?Kr(this[t(150)],t(154),this[t(159)][t(200)][t(210)]):Kr(this[t(150)],t(162),this[t(159)][t(200)][t(210)]):null}[$c(143)](){const t=$c;return t(128)===this[t(159)][t(134)][t(218)][t(165)]?Kr(this[t(150)],t(176)):Kr(this[t(150)],t(133))}[$c(174)](t,e,n,r,s){const i=$c,a=new o.LateFocusButtonView(this[i(150)]);return a[i(170)]({label:t,icon:e,tooltip:!0,tooltipPosition:s}),a[i(168)]({attributes:{class:n}}),a.on(i(157),(()=>{const t=i;this[t(153)](r,this[t(159)].id)})),a}[$c(196)](){const t=$c,e=this[t(129)];this[t(186)][t(138)](e);for(const e of this[t(214)])this[t(187)][t(145)](e[t(129)]),this[t(186)][t(138)](e[t(129)]);this[t(186)][t(170)](t(177),((n,r)=>{const s=t;e===n[s(135)]&&(this[s(181)][s(149)](),r())})),this[t(186)][t(170)](t(193),((n,r)=>{const s=t;e!==n[s(135)]&&(this[s(202)](),r())}))}}function nu(){const t=["span","ck-suggestion--accept","_config","Accept suggestion","esc","acceptSuggestion","485NfUrZJ","_setupKeyboardNavigation","ck-suggestion","formatDateTime","24yBWJPm","creator","951410ElXnAX","focus","querySelector","cancel","div","discardButton","ck-annotation","shift+tab","553CrTuEW","name","38392CdXlug","innerHTML","4FXCENe","focusables","ck-suggestion--discard","107356OyZVFe","authoredAt","@external","discardSuggestion","ck-suggestion__main","importWord","element","ck-annotation__user","ck-suggestion__info-name","userView","EXTERNAL_SUGGESTION","attributes","target","tab","6961944xZdQlQ","listenTo","acceptButton","bindTemplate","ck-suggestion__user","isExternal","getExternalSuggestionNote","getTemplate","add","ck-annotation__info-name","getUserViewNotificationText","ck-annotation__actions","focusFirst","locale","push","ck-comment__external","fire","EXTERNAL_IMPORT_WORD_AVATAR","1696453jCVsBk","16476tLflhY","execute","time","_model","149067ZeiZjw","description","EXTERNAL_AVATAR","bind","author","source","ck-annotation__content-wrapper","36GNaIyv","extendTemplate","ck-annotation__info","set","ck-annotation__main","setTemplate","change:description","_createButton","Discard suggestion","EXTERNAL_IMPORT_WORD_SUGGESTION","enter","check","render","ck-annotation__info-time","focusCycler","ck-comment__info-time","ck-suggestion__actions","ck-suggestion__info",".ck-annotation__content-wrapper","keystrokes","focusTracker","presentation"];return(nu=function(){return t})()}const ru='\x3c!--\n\n What you\'re currently looking at is the source code of a legally protected, proprietary software.\n CKEditor 5 Collaboration is licensed under a commercial license and protected by copyright law. Where not otherwise indicated,\n all CKEditor 5 Collaboration content is authored by CKSource engineers and consists of CKSource-owned intellectual property.\n\n Copyright (c) 2003-2024, CKSource Holding sp. z o.o. All rights reserved.\n\n!--\x3e\n\n<svg viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><path d="M6.182 5.514a.643.643 0 0 0-.636.64v-.001a.636.636 0 0 0 .636.639h5.682a.641.641 0 0 0 .636-.638.637.637 0 0 0-.636-.64H6.182Z"/><path d="M6.182 8.5a.642.642 0 0 0-.588.882.636.636 0 0 0 .588.395h5.682a.641.641 0 0 0 .636-.639.635.635 0 0 0-.636-.638H6.182Z"/><path d="M6.18 11.5a.64.64 0 0 0 0 1.278h3.133a.64.64 0 0 0 0-1.278H6.18Z"/><path d="m11.772 18.308.154-.23c-.195-.098-.304-.192-.328-.28-.024-.09 0-.274.076-.551.062-.166.099-.296.11-.393a2.934 2.934 0 0 0 0-.479c-.137-.41-.2-.685-.186-.83.013-.145.117-.335.313-.57l4.465-6.207c.356-.6 1.059-.56 2.11.118 1.05.68 1.443 1.272 1.177 1.772l-3.876 6.833c-.105.27-.22.444-.347.515-.128.07-.4.119-.813.139a2.954 2.954 0 0 0-.487.21c-.127.09-.244.193-.347.31-.193.174-.332.262-.416.262-.064 0-.178-.05-.346-.15l-.204.27-1.056-.739Zm-.184.274 1.039.727-.26.34h-1.496l.717-1.067Z"/><path clip-rule="evenodd" d="M3.272 1A1.28 1.28 0 0 0 2 2.28v14.439a1.276 1.276 0 0 0 1.272 1.28h6.838a2.13 2.13 0 0 1 .003-.61c.024-.18.066-.363.113-.534.012-.046.027-.092.043-.136.011-.029.02-.052.025-.069v-.008a7.395 7.395 0 0 1-.042-.142H3.5V2.46s11 .002 11 .005v6.341l.627-.872c.204-.32.49-.614.873-.819V2.281c0-.707-.569-1.28-1.272-1.28L3.272 1ZM16 9.29l-1.5 2.085V16.5h-2.708c.005.118.002.236-.007.354a.904.904 0 0 1-.013.075l-.001.005a3.108 3.108 0 0 1-.097.312c-.027.101-.048.19-.062.266a.734.734 0 0 0-.014.287.25.25 0 0 0 .068.105.65.65 0 0 0 .088.074l.017.011.016.01h.175L14.73 18c.697 0 1.271-.573 1.271-1.281v-7.43Z"/></svg>\n',su=iu;function ou(){const t=["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 all suggestions","Accept all selected suggestions","source","SuggestionView","clear","editor","trackChangesLicenseKeyDevelopmentLimit","_updateController","mainView","Annotations","trackChangesLicenseKeyEvaluationLimit","comments","getByInnerView","value","size","pluginName","discardSelectedSuggestions","CommentView","trackChangesLicenseKeyDomainLimit","hasSuggestion","CommentsUI","2002005wMczgs","refreshSelectedViews","Discard all selected suggestions","354316WGpczX","_bindAnnotationToEditors","TrackChangesUI","isDirty","stopListening","descriptionParts","trackChangesLicenseKeyNotAllowed","trackChangesLicenseKeyUsageLimit","buttonView","TrackChanges","getAllAdjacentSuggestions","previous","_showLicenseError","discardButton","Discard all suggestions","suggestion-","componentFactory","view","Track changes","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"];return(ou=function(){return t})()}function iu(t,e){const n=ou();return(iu=function(t,e){return n[t-=494]})(t,e)}!function(t){const e=iu,n=t();for(;;)try{if(787379===parseInt(e(646))/1+-parseInt(e(547))/2+parseInt(e(503))/3*(-parseInt(e(553))/4)+parseInt(e(617))/5*(parseInt(e(528))/6)+-parseInt(e(606))/7+parseInt(e(600))/8+-parseInt(e(643))/9)break;n.push(n.shift())}catch(t){n.push(n.shift())}}(ou);class au extends t.Plugin{static get[su(579)](){const t=su;return[Nc,o.Users,t(616),t(631),t(571)]}static get[su(637)](){return su(648)}static get[su(601)](){return!0}static get[su(563)](){return!0}constructor(t){const e=su;super(t),this[e(509)]=new Map,this[e(536)]=new Map,this[e(502)]=new Map,this[e(556)]=new Map;const n=this[e(627)][e(583)];n[e(564)](e(514),Qc),n[e(564)](e(496),eu),n[e(564)](e(586),!1),this[e(500)]=n[e(590)](e(586))}[su(560)](t,e){const n=su;0===this[n(556)][n(636)]&&setTimeout((()=>{const t=n;for(const[e,n]of this[t(556)]){const r=this[t(509)][t(615)](e);r||n?r&&n&&this[t(598)](e):this[t(516)](e)}this[t(556)][t(626)](),this[t(627)][t(559)][t(590)](t(571))[t(644)](),this[t(557)]()}),10),this[n(556)][n(497)](t,e)}[su(513)](){const t=su,e=this[t(627)],n=e[t(559)][t(590)](t(614)),r=e[t(559)][t(590)](t(631)),s=e[t(559)][t(590)](t(571)),o=e[t(559)][t(590)](t(616));this[t(607)](),s[t(506)]((()=>{const e=t,n=[];for(const[t,r]of Array[e(510)](this[e(509)])){const s=t[e(656)](),o=[];for(const t of s){if(!t[e(608)])continue;if(t[e(587)]){o[e(508)](...t[e(517)]());continue}const n=t[e(523)]();if(o[e(573)]>0){const t=o[0][e(592)](n);if(t){o[0]=t;continue}}o[e(508)](n)}n[e(508)]([r[e(663)],o])}return n})),this[t(511)](n,t(540),((e,n)=>{const r=t;this[r(511)](n,r(515),((t,e,s,o)=>{const i=r;n[i(608)]&&(null==s?(this[i(629)](o[i(545)]),this[i(560)](n,!1)):(this[i(629)](s[i(545)]),null==o&&this[i(560)](n,!0)))})),null!==n[r(657)]?this[r(629)](n[r(545)]):this[r(560)](n,!1)})),this[t(511)](n,t(549),((e,n,r)=>{const s=t;this[s(650)](n,s(515)),this[s(556)][s(584)](n),this[s(509)][s(615)](n)&&this[s(598)](n),r&&this[s(629)](r[s(545)])})),this[t(511)](n,t(666),((e,n)=>{this[t(629)](n)})),this[t(511)](r,t(609),(()=>{this[t(557)]()})),this[t(511)](o,t(621),((e,{threadId:r,isFromAdapter:s})=>{const o=t;if(s||!n[o(641)](r))return;const i=n[o(618)](r);this[o(509)][o(590)](i)[o(663)][o(505)][o(541)](-1)}),{priority:t(605)}),this[t(581)]=this[t(627)][t(583)][t(590)](t(581));const i=this[t(627)];this[t(526)]=setInterval((()=>{const e=t;let n;for(const t in i){const r=t,s=i[r];if(e(596)==s||e(504)==s||e(561)==s||e(640)==s||e(652)==s||e(632)==s||e(575)==s||e(628)==s||e(653)==s){delete i[r],n=s,clearInterval(this[e(526)]),this[e(526)]=void 0;break}}e(504)==n&&i[e(658)](e(521)),e(561)==n&&i[e(658)](e(537)),e(640)==n&&i[e(658)](e(611)),e(652)==n&&i[e(658)](e(566),e(655)),e(632)==n&&i[e(658)](e(572)),e(575)==n&&i[e(658)](e(543)),e(628)==n&&i[e(658)](e(495)),e(653)==n&&i[e(658)](e(531))}),1e3)}[su(557)](){const t=su,e=this[t(627)][t(559)][t(590)](t(631)),n=this[t(627)][t(559)][t(590)](t(614)),r=Array[t(510)](e[t(574)],(e=>e[t(554)]))[t(589)]((e=>this[t(536)][t(615)](e))),s=[];for(const e of r){const n=this[t(536)][t(590)](e)[t(548)][t(656)]();s[t(508)](...n[t(550)](((e,n)=>[...e,...n[t(533)]()]),[]))}n[t(522)]=s}[su(607)](){const t=su,n=this[t(627)],r=n[t(582)],o=Kr(r,t(664)),i=new e.Collection([{type:t(542),model:new s.ViewModel({withText:!0,isToggleable:!0,label:o,commandName:t(594),role:t(588)})},{type:t(501)},{type:t(520),model:new s.ViewModel({withText:!0,label:Kr(r,t(622)),commandName:t(530),role:t(551)})},{type:t(520),model:new s.ViewModel({withText:!0,label:Kr(r,t(623)),commandName:t(567),role:t(551)})},{type:t(520),model:new s.ViewModel({withText:!0,label:Kr(r,t(660)),commandName:t(498),role:t(551)})},{type:t(520),model:new s.ViewModel({withText:!0,label:Kr(r,t(645)),commandName:t(638),role:t(551)})}]);for(const e of i)if(cu(e)){const r=n[t(604)][t(590)](e[t(548)][t(591)]);e[t(548)][t(593)](t(580),t(524)).to(r,t(635),t(524))}n.ui[t(662)][t(562)](t(594),(e=>this[t(494)](e,i,o))),n.ui[t(662)][t(562)](t(568),(e=>this[t(507)](e,i,o)))}[su(494)](t,e,n){const r=su,o=(0,s.createDropdown)(t,s.SplitButtonView),i=this[r(627)][r(604)][r(590)](r(594));o[r(654)][r(497)]({tooltip:n,label:n,icon:ru}),o[r(654)][r(593)](r(580)).to(i,r(635)),o[r(654)].on(r(619),(()=>{const t=r;i[t(619)](),this[t(627)][t(519)][t(663)][t(541)]()})),(0,s.addListToDropdown)(o,e,{role:r(558)});const a=[];for(const t of e)cu(t)&&a[r(508)](this[r(627)][r(604)][r(590)](t[r(548)][r(591)]));const c=o[r(654)];return c[r(555)][r(532)](r(524)),c[r(518)][r(532)](r(524)),c[r(555)][r(593)](r(524)).to(i,r(524)),c[r(518)][r(593)](r(524))[r(512)](a,r(524),((...t)=>t[r(576)]((t=>t)))),o.on(r(619),(t=>{const e=r;this[e(627)][e(619)](t[e(624)][e(591)]),this[e(627)][e(519)][e(663)][e(541)]()})),o}[su(507)](t,e,n){const r=su,o=new s.MenuBarMenuView(t),i=this[r(627)][r(604)][r(590)](r(594));o[r(654)][r(497)]({label:n,icon:ru});const a=new s.MenuBarMenuListView(t);for(const n of e){if(r(501)==n[r(539)]){a[r(570)][r(562)](new s.ListSeparatorView(t));continue}const e=new s.MenuBarMenuListItemView(t,o),i=new s.MenuBarMenuListItemButtonView(t),c=n[r(548)];i[r(593)](...Object[r(538)](c)).to(c),i[r(529)](r(619)).to(o),i.on(r(619),(()=>{const t=r;this[t(627)][t(619)](c[t(591)]),this[t(627)][t(519)][t(663)][t(541)]()})),e[r(613)][r(562)](i),a[r(570)][r(562)](e)}return o[r(593)](r(524)).to(i,r(524)),o[r(535)][r(613)][r(562)](a),o}[su(516)](t){const e=su,n=this[e(627)],r=n[e(583)],s=n[e(559)][e(590)](e(631)),i=n[e(559)][e(590)](e(616)),a=n[e(559)][e(590)](e(571)),c=n[e(559)][e(590)](o.Users).me,u=r[e(590)](e(594))[e(578)],l=r[e(590)](e(594))[e(625)],{CommentsListView:f,CommentThreadInputView:h}=n[e(559)][e(590)](e(642));let g,d,p;this[e(502)][e(615)](t.id)?(d=this[e(502)][e(590)](t.id),g=d[e(630)]):(g=new u(n[e(582)],t,c,{disableComments:this[e(500)],editorConfig:r[e(590)](e(612)),maxCommentsWhenCollapsed:r[e(590)](e(569)),maxThreadTotalWeight:r[e(590)](e(525)),maxCommentCharsWhenCollapsed:r[e(590)](e(577)),formatDateTime:(0,o.getDateTimeFormatter)(r[e(590)](e(582))),CommentView:r[e(590)](e(633))[e(639)],CommentsListView:f,CommentThreadInputView:h,SuggestionView:l}),g[e(602)][e(665)].on(e(619),(()=>{const t=e;n[t(519)][t(663)][t(541)]()})),g[e(602)][e(659)].on(e(619),(()=>{const t=e;n[t(519)][t(663)][t(541)]()})),d=s[e(546)](this[e(627)][e(582)],g),d[e(593)](e(649)).to(g,e(649)),d[e(593)](e(573)).to(g),d[e(593)](e(539)).to(g,e(539),(t=>e(661)+t)),g.on(e(599),(()=>{const t=e;p[t(620)](t(599))})),this[e(502)][e(497)](t.id,d));const m=i[e(527)](t[e(544)],g),I=new zc(n,t,g,m),E=t[e(656)]()[e(589)]((t=>t[e(608)]));g[e(651)]=n[e(559)][e(590)](e(614))[e(565)][e(534)](E),this[e(509)][e(497)](t,I),this[e(536)][e(497)](g,I),p=s[e(499)]({view:d,target:()=>{const r=e,s=[],i=t[r(656)]()[r(589)]((t=>t[r(608)]));for(const t of i)s[r(508)](...t[r(595)]());return(0,o.getAllMarkersDomElementsSorted)(n[r(519)],s)},type:()=>e(661)+I[e(663)][e(539)]}),i[e(647)](g,p),s[e(562)](p),a[e(597)](p)}[su(598)](t){const e=su,n=this[e(627)][e(559)][e(590)](e(616)),r=this[e(627)][e(559)][e(590)](e(631)),s=this[e(509)][e(590)](t),o=s[e(663)],i=r[e(634)](o);n[e(552)](o),i&&r[e(585)](i),this[e(509)][e(584)](t),this[e(536)][e(584)](o),s[e(610)]()}[su(629)](t){const e=su;if(!t[e(608)]||!this[e(509)][e(615)](t))return;const n=this[e(627)][e(559)][e(590)](e(614)),r=this[e(509)][e(590)](t),s=t[e(656)]();r[e(663)][e(651)]=n[e(565)][e(534)](s)}[su(610)](){const t=su;for(const e of this[t(509)][t(538)]())this[t(598)](e);for(const e of this[t(502)][t(603)]())e[t(630)][t(610)]();super[t(610)](),this[t(526)]&&clearInterval(this[t(526)])}}function cu(t){return su(548)in t}function uu(){var t=["adapter","editor","pluginName","isPremiumPlugin","isOfficialPlugin","get","Comments","1222044bXaaPI","916429wkAwYx","4MZTdWK","4291686RpxGKI","addSuggestionData","plugins","6193776OJtiDJ","getSuggestions","4373885oJsnEp","TrackChanges","requires","1149tNCnmj","2074LZJtdO","addSuggestion","getSuggestion","3154653lqmiVl"];return(uu=function(){return t})()}var lu=fu;function fu(t,e){var n=uu();return(fu=function(t,e){return n[t-=186]})(t,e)}!function(t){for(var e=fu,n=t();;)try{if(748586===-parseInt(e(197))/1+parseInt(e(208))/2*(parseInt(e(207))/3)+-parseInt(e(198))/4*(-parseInt(e(204))/5)+parseInt(e(196))/6+parseInt(e(199))/7+-parseInt(e(202))/8+parseInt(e(188))/9)break;n.push(n.shift())}catch(t){n.push(n.shift())}}(uu);class hu extends t.Plugin{static get[lu(206)](){return[Nc,au,lu(195)]}static get[lu(191)](){return lu(205)}static get[lu(193)](){return!0}static get[lu(192)](){return!0}set[lu(189)](t){var e=lu;this[e(190)][e(201)][e(194)](Nc)[e(189)]=t}get[lu(189)](){var t=lu;return this[t(190)][t(201)][t(194)](Nc)[t(189)]}[lu(186)](t){var e=lu;return this[e(190)][e(201)][e(194)](Nc)[e(200)](t)}[lu(203)]({skipNotAttached:t=!1,toJSON:e=!1}={}){var n=lu;return this[n(190)][n(201)][n(194)](Nc)[n(203)]({skipNotAttached:t,toJSON:e})}[lu(187)](t){var e=lu;return this[e(190)][e(201)][e(194)](Nc)[e(187)](t)}}const gu=du;function du(t,e){const n=bu();return(du=function(t,e){return n[t-=193]})(t,e)}!function(t){const e=du,n=t();for(;;)try{if(807707===-parseInt(e(249))/1*(-parseInt(e(197))/2)+parseInt(e(253))/3+parseInt(e(237))/4+-parseInt(e(225))/5*(parseInt(e(230))/6)+-parseInt(e(260))/7+parseInt(e(245))/8+parseInt(e(201))/9)break;n.push(n.shift())}catch(t){n.push(n.shift())}}(bu);const pu=[gu(228)];class mu extends t.Plugin{static get[gu(205)](){return[Nc]}static get[gu(243)](){return gu(229)}static get[gu(236)](){return!0}static get[gu(244)](){return!0}[gu(235)](){const t=gu,n=this[t(219)];if(n[t(221)][t(209)](t(195),(e=>{const r=t,s=n[r(220)][r(247)][r(232)]()[r(240)](((t,e)=>(t[e]="",t)),{});return n[r(217)][r(254)](s,e)})),t(233)!=typeof n[t(221)][t(242)](t(248))[t(198)])throw new e.CKEditorError(t(251))}[gu(223)](t){return Tu(this[gu(219)],!0,t)}[gu(202)](t){return Tu(this[gu(219)],!1,t)}}class Iu extends t.Plugin{static get[gu(243)](){return gu(250)}static get[gu(236)](){return!0}static get[gu(244)](){return!0}constructor(t){const e=gu;function n(t){const e=du;return t[e(212)]((t=>String[e(215)](t)))[e(200)]("")}super(t),this[e(214)]=e(234),t[n([101,100,105,116,105,110,103])][n([118,105,101,119])][n([95,111,118,101,114,108,97,121,77,111,100,101,72,105,110,116])]=n([97,117,116,111]),t[n([95,115,101,110,100,85,115,97,103,101,82,101,113,117,101,115,116])]=()=>window[n([80,114,111,109,105,115,101])][n([114,101,115,111,108,118,101])]({[n([115,116,97,116,117,115])]:n([111,107])})}[gu(235)](){const t=gu;this[t(219)][t(208)][t(242)](t(256))[t(226)]={addCommentThread:()=>new Promise((()=>{})),getCommentThread:()=>new Promise((()=>{})),updateCommentThread:()=>new Promise((()=>{})),resolveCommentThread:()=>new Promise((()=>{})),reopenCommentThread:()=>new Promise((()=>{})),removeCommentThread:()=>new Promise((()=>{})),addComment:()=>new Promise((()=>{})),updateComment:()=>new Promise((()=>{})),removeComment:()=>new Promise((()=>{}))},this[t(219)][t(208)][t(242)](t(246))[t(226)]=null}}function Eu(t){return void 0!==t[gu(193)]}function bu(){const t=["addCommentThread","getDataWithAcceptedSuggestions","useAnonymousUser","5890565JKIljW","_adapter","remove","Pagination","TrackChangesData","6Euqhrw","getCommentThreads","getRootNames","function","end","init","isOfficialPlugin","2969560pRnaHl","div","execute","reduce","users","get","pluginName","isPremiumPlugin","435848aYUDIb","TrackChangesEditing","document","trackChangesData","469562GGNEZX","TrackChangesDataGetter","track-changes-data-invalid-editor-creator","rootsAttributes","251844fXOBaL","create","name","CommentsRepository","data","createElement","discardAllSuggestions","1663025RpOhUq","getRootsAttributes","push","trackChangesData.editorCreator","getSuggestions","4AviJBR","editorCreator","Users","join","3631068dnRJPP","getDataWithDiscardedSuggestions","addUser","appendChild","requires","addSuggestionData","acceptAllSuggestions","plugins","define","getUser","destroy","map","getFullData","result","fromCharCode","set","constructor","createDocumentFragment","editor","model","config"];return(bu=function(){return t})()}async function Tu(t,e,n){const r=gu,s=(0,o.sanitizeEditorConfig)(t,pu);s[r(208)][r(194)](Nc,Iu),s[r(252)]=Eu(t)?t[r(193)]():void 0;const i=document[r(218)](),a=t[r(221)][r(242)](r(248))[r(198)],c=await a(s,(()=>function(t){const e=r,n=document[e(258)](e(238));return t[e(204)](n),n}(i)));!function(t,e){const n=r,s=t[n(220)][n(247)][n(232)]()[n(240)](((e,r)=>(e[r]=t[n(257)][n(242)]({rootName:r}),e)),{}),o=t[n(208)][n(242)](n(199))[n(241)][n(212)]((t=>({id:t.id,name:t[n(255)]}))),i=t[n(208)][n(242)](n(246))[n(196)]({skipNotAttached:!0,toJSON:!0}),a=t[n(208)][n(242)](n(256))[n(231)]({skipNotAttached:!0,toJSON:!0}),c=e[n(208)][n(242)](n(199)),u=e[n(208)][n(242)](n(246)),l=e[n(208)][n(242)](n(256));for(const t of l[n(231)]())t[n(227)]();for(const t of o)c[n(210)](t.id)||c[n(203)](t);c.me||c[n(224)]();for(const t of a)l[n(222)](t);for(const t of i)u[n(206)](t);e[n(257)][n(216)](s)}(t,c),c[r(239)](r(e?207:259));const u=Eu(c)?c[r(213)](n):c[r(257)][r(242)](n);return await c[r(211)](),u}function _u(){var t=["16HcANIR","96222BEMoHL","167278MWlHOn","18550hOreXM","25EvNLOL","1397ZXUpZs","555748pgGJUC","1741995enJfxj","88764nNCCxG","119igRhSE","1651UzOgCU","14MJpFIp","57801MeblUk"];return(_u=function(){return t})()}function yu(t,e){var n=_u();return(yu=function(t,e){return n[t-=178]})(t,e)}!function(t){for(var e=yu,n=t();;)try{if(398247===parseInt(e(188))/1+-parseInt(e(184))/2*(parseInt(e(185))/3)+parseInt(e(179))/4*(-parseInt(e(190))/5)+-parseInt(e(187))/6*(-parseInt(e(182))/7)+parseInt(e(186))/8*(-parseInt(e(180))/9)+-parseInt(e(189))/10*(-parseInt(e(178))/11)+-parseInt(e(181))/12*(-parseInt(e(183))/13))break;n.push(n.shift())}catch(t){n.push(n.shift())}}(_u)})(),(window.CKEditor5=window.CKEditor5||{}).trackChanges=r})();