@univerjs-pro/collaboration 0.5.0-alpha.0 → 0.5.0-beta.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 (442) hide show
  1. package/lib/cjs/index.js +1 -1
  2. package/lib/es/index.js +1 -1
  3. package/lib/types/command/create-unit.mutation.d.ts +8 -0
  4. package/lib/types/command/revert-revision.mutation.d.ts +6 -0
  5. package/lib/types/controllers/config.schema.d.ts +5 -0
  6. package/lib/types/controllers/doc-transform/algorithms/doc-algo.d.ts +4 -0
  7. package/lib/types/controllers/doc-transform/doc-transform.controller.d.ts +9 -0
  8. package/lib/types/controllers/rev/rev.controller.d.ts +8 -0
  9. package/lib/types/controllers/sheet-transform/algorithms/__tests__/transform-test-bed.d.ts +17 -0
  10. package/lib/types/controllers/sheet-transform/algorithms/add-comment/__test__/add-comment.algo.spec.d.ts +1 -0
  11. package/lib/types/controllers/sheet-transform/algorithms/add-comment/__test__/util.d.ts +13 -0
  12. package/lib/types/controllers/sheet-transform/algorithms/add-comment/add-comment.algo.d.ts +3 -0
  13. package/lib/types/controllers/sheet-transform/algorithms/add-conditional-rule/__test__/add-conditional-rule.algo.spec.d.ts +1 -0
  14. package/lib/types/controllers/sheet-transform/algorithms/add-conditional-rule/add-conditional-formatting-rule.algo.d.ts +3 -0
  15. package/lib/types/controllers/sheet-transform/algorithms/add-data-validation/__test__/add-data-validation.algo.spec.d.ts +1 -0
  16. package/lib/types/controllers/sheet-transform/algorithms/add-data-validation/__test__/update-data-validation.algo.spec.d.ts +1 -0
  17. package/lib/types/controllers/sheet-transform/algorithms/add-data-validation/__test__/util.d.ts +13 -0
  18. package/lib/types/controllers/sheet-transform/algorithms/add-data-validation/add-data-validation.algo.d.ts +16 -0
  19. package/lib/types/controllers/sheet-transform/algorithms/add-data-validation/update-data-validation.algo.d.ts +3 -0
  20. package/lib/types/controllers/sheet-transform/algorithms/add-hyper-link/add-hyper-link.algo.d.ts +3 -0
  21. package/lib/types/controllers/sheet-transform/algorithms/add-range-protection/add-comment.algo.d.ts +4 -0
  22. package/lib/types/controllers/sheet-transform/algorithms/add-range-protection/add-conditional-rule.algo.d.ts +4 -0
  23. package/lib/types/controllers/sheet-transform/algorithms/add-range-protection/add-range-protection.algo.d.ts +3 -0
  24. package/lib/types/controllers/sheet-transform/algorithms/add-range-protection/add-worksheet-merge.algo.d.ts +3 -0
  25. package/lib/types/controllers/sheet-transform/algorithms/add-range-protection/add-worksheet-protection.algo.d.ts +3 -0
  26. package/lib/types/controllers/sheet-transform/algorithms/add-range-protection/delete-conditional-formatting-rule.algo.d.ts +4 -0
  27. package/lib/types/controllers/sheet-transform/algorithms/add-range-protection/insert-col.algo.d.ts +3 -0
  28. package/lib/types/controllers/sheet-transform/algorithms/add-range-protection/insert-row.algo.d.ts +3 -0
  29. package/lib/types/controllers/sheet-transform/algorithms/add-range-protection/move-col.algo.d.ts +3 -0
  30. package/lib/types/controllers/sheet-transform/algorithms/add-range-protection/move-range.algo.d.ts +3 -0
  31. package/lib/types/controllers/sheet-transform/algorithms/add-range-protection/move-row.algo.d.ts +3 -0
  32. package/lib/types/controllers/sheet-transform/algorithms/add-range-protection/remove-col.algo.d.ts +3 -0
  33. package/lib/types/controllers/sheet-transform/algorithms/add-range-protection/remove-data-validation-rule.algo.d.ts +4 -0
  34. package/lib/types/controllers/sheet-transform/algorithms/add-range-protection/remove-numfmt.algo.d.ts +3 -0
  35. package/lib/types/controllers/sheet-transform/algorithms/add-range-protection/remove-row.algo.d.ts +3 -0
  36. package/lib/types/controllers/sheet-transform/algorithms/add-range-protection/remove-sheet-filter.algo.d.ts +3 -0
  37. package/lib/types/controllers/sheet-transform/algorithms/add-range-protection/remove-worksheet-merge.algo.d.ts +3 -0
  38. package/lib/types/controllers/sheet-transform/algorithms/add-range-protection/set-conditional-formatting-rule.algo.d.ts +4 -0
  39. package/lib/types/controllers/sheet-transform/algorithms/add-range-protection/set-frozen.algo.d.ts +3 -0
  40. package/lib/types/controllers/sheet-transform/algorithms/add-range-protection/set-numfmt.algo.d.ts +3 -0
  41. package/lib/types/controllers/sheet-transform/algorithms/add-range-protection/set-range-protection.algo.d.ts +3 -0
  42. package/lib/types/controllers/sheet-transform/algorithms/add-range-protection/set-range-value.algo.d.ts +3 -0
  43. package/lib/types/controllers/sheet-transform/algorithms/add-range-protection/set-worksheet-col-width.algo.d.ts +3 -0
  44. package/lib/types/controllers/sheet-transform/algorithms/add-range-protection/update-comment.algo.d.ts +4 -0
  45. package/lib/types/controllers/sheet-transform/algorithms/add-range-protection/update-data-validation-rule.algo.d.ts +4 -0
  46. package/lib/types/controllers/sheet-transform/algorithms/add-worksheet-merge/__test__/add-worksheet-merge.algo.spec.d.ts +1 -0
  47. package/lib/types/controllers/sheet-transform/algorithms/add-worksheet-merge/__test__/insert-col.algo.spec.d.ts +1 -0
  48. package/lib/types/controllers/sheet-transform/algorithms/add-worksheet-merge/__test__/insert-row.algo.spec.d.ts +1 -0
  49. package/lib/types/controllers/sheet-transform/algorithms/add-worksheet-merge/__test__/move-col.algo.spec.d.ts +1 -0
  50. package/lib/types/controllers/sheet-transform/algorithms/add-worksheet-merge/__test__/move-row.algo.spec.d.ts +1 -0
  51. package/lib/types/controllers/sheet-transform/algorithms/add-worksheet-merge/__test__/remove-col.algo.spec.d.ts +1 -0
  52. package/lib/types/controllers/sheet-transform/algorithms/add-worksheet-merge/__test__/remove-row.algo.spec.d.ts +1 -0
  53. package/lib/types/controllers/sheet-transform/algorithms/add-worksheet-merge/__test__/remove-worksheet-merge.algo.spec.d.ts +1 -0
  54. package/lib/types/controllers/sheet-transform/algorithms/add-worksheet-merge/__test__/set-range-values.algo.spec.d.ts +1 -0
  55. package/lib/types/controllers/sheet-transform/algorithms/add-worksheet-merge/add-worksheet-merge.algo.d.ts +3 -0
  56. package/lib/types/controllers/sheet-transform/algorithms/add-worksheet-merge/insert-col.algo.d.ts +5 -0
  57. package/lib/types/controllers/sheet-transform/algorithms/add-worksheet-merge/insert-row.algo.d.ts +5 -0
  58. package/lib/types/controllers/sheet-transform/algorithms/add-worksheet-merge/move-col.algo.d.ts +3 -0
  59. package/lib/types/controllers/sheet-transform/algorithms/add-worksheet-merge/move-range.algo.d.ts +3 -0
  60. package/lib/types/controllers/sheet-transform/algorithms/add-worksheet-merge/move-row.algo.d.ts +3 -0
  61. package/lib/types/controllers/sheet-transform/algorithms/add-worksheet-merge/remove-col.algo.d.ts +3 -0
  62. package/lib/types/controllers/sheet-transform/algorithms/add-worksheet-merge/remove-row.algo.d.ts +3 -0
  63. package/lib/types/controllers/sheet-transform/algorithms/add-worksheet-merge/remove-worksheet-merge.algo.d.ts +3 -0
  64. package/lib/types/controllers/sheet-transform/algorithms/add-worksheet-merge/set-range-values.algo.d.ts +3 -0
  65. package/lib/types/controllers/sheet-transform/algorithms/add-worksheet-merge/set-selection.algo.d.ts +3 -0
  66. package/lib/types/controllers/sheet-transform/algorithms/add-worksheet-merge/utils/merge-tools.d.ts +2 -0
  67. package/lib/types/controllers/sheet-transform/algorithms/add-worksheet-protection/add-comment.algo.d.ts +4 -0
  68. package/lib/types/controllers/sheet-transform/algorithms/add-worksheet-protection/add-conditional-rule.algo.d.ts +4 -0
  69. package/lib/types/controllers/sheet-transform/algorithms/add-worksheet-protection/add-range-protection.algo.d.ts +3 -0
  70. package/lib/types/controllers/sheet-transform/algorithms/add-worksheet-protection/add-worksheet-merge.algo.d.ts +3 -0
  71. package/lib/types/controllers/sheet-transform/algorithms/add-worksheet-protection/add-worksheet-protection.algo.d.ts +3 -0
  72. package/lib/types/controllers/sheet-transform/algorithms/add-worksheet-protection/change-sheet-order.algo.d.ts +3 -0
  73. package/lib/types/controllers/sheet-transform/algorithms/add-worksheet-protection/delete-conditional-formatting-rule.algo.d.ts +4 -0
  74. package/lib/types/controllers/sheet-transform/algorithms/add-worksheet-protection/insert-col.algo.d.ts +3 -0
  75. package/lib/types/controllers/sheet-transform/algorithms/add-worksheet-protection/insert-row.algo.d.ts +3 -0
  76. package/lib/types/controllers/sheet-transform/algorithms/add-worksheet-protection/move-col.algo.d.ts +3 -0
  77. package/lib/types/controllers/sheet-transform/algorithms/add-worksheet-protection/move-range.algo.d.ts +3 -0
  78. package/lib/types/controllers/sheet-transform/algorithms/add-worksheet-protection/move-row.algo.d.ts +3 -0
  79. package/lib/types/controllers/sheet-transform/algorithms/add-worksheet-protection/remove-col.algo.d.ts +3 -0
  80. package/lib/types/controllers/sheet-transform/algorithms/add-worksheet-protection/remove-data-validation-rule.algo.d.ts +4 -0
  81. package/lib/types/controllers/sheet-transform/algorithms/add-worksheet-protection/remove-numfmt.algo.d.ts +3 -0
  82. package/lib/types/controllers/sheet-transform/algorithms/add-worksheet-protection/remove-row.algo.d.ts +3 -0
  83. package/lib/types/controllers/sheet-transform/algorithms/add-worksheet-protection/remove-sheet-filter.algo.d.ts +3 -0
  84. package/lib/types/controllers/sheet-transform/algorithms/add-worksheet-protection/remove-worksheet-merge.algo.d.ts +3 -0
  85. package/lib/types/controllers/sheet-transform/algorithms/add-worksheet-protection/remove-worksheet.algo.d.ts +3 -0
  86. package/lib/types/controllers/sheet-transform/algorithms/add-worksheet-protection/set-conditional-formatting-rule.algo.d.ts +4 -0
  87. package/lib/types/controllers/sheet-transform/algorithms/add-worksheet-protection/set-frozen.algo.d.ts +3 -0
  88. package/lib/types/controllers/sheet-transform/algorithms/add-worksheet-protection/set-numfmt.algo.d.ts +3 -0
  89. package/lib/types/controllers/sheet-transform/algorithms/add-worksheet-protection/set-range-protection.algo.d.ts +3 -0
  90. package/lib/types/controllers/sheet-transform/algorithms/add-worksheet-protection/set-range-value.algo.d.ts +3 -0
  91. package/lib/types/controllers/sheet-transform/algorithms/add-worksheet-protection/set-worksheet-col-width.algo.d.ts +3 -0
  92. package/lib/types/controllers/sheet-transform/algorithms/add-worksheet-protection/set-worksheet-name.algo.d.ts +3 -0
  93. package/lib/types/controllers/sheet-transform/algorithms/add-worksheet-protection/update-comment.algo.d.ts +4 -0
  94. package/lib/types/controllers/sheet-transform/algorithms/add-worksheet-protection/update-data-validation-rule.algo.d.ts +4 -0
  95. package/lib/types/controllers/sheet-transform/algorithms/delete-comment/add-comment.algo.d.ts +3 -0
  96. package/lib/types/controllers/sheet-transform/algorithms/delete-comment/delete-comment.algo.d.ts +3 -0
  97. package/lib/types/controllers/sheet-transform/algorithms/delete-conditional-formatting-rule/delete-conditional-formatting-rule.algo.d.ts +3 -0
  98. package/lib/types/controllers/sheet-transform/algorithms/gridlines/__tests__/gridlines.algo.spec.d.ts +1 -0
  99. package/lib/types/controllers/sheet-transform/algorithms/gridlines/gridlines.algo.d.ts +4 -0
  100. package/lib/types/controllers/sheet-transform/algorithms/insert-col/__tests__/add-worksheet-merge.algo.spec.d.ts +1 -0
  101. package/lib/types/controllers/sheet-transform/algorithms/insert-col/__tests__/insert-col.algo.spec.d.ts +1 -0
  102. package/lib/types/controllers/sheet-transform/algorithms/insert-col/__tests__/move-col.algo.spec.d.ts +1 -0
  103. package/lib/types/controllers/sheet-transform/algorithms/insert-col/__tests__/move-range.algo.spec.d.ts +1 -0
  104. package/lib/types/controllers/sheet-transform/algorithms/insert-col/__tests__/remove-col.algo.spec.d.ts +1 -0
  105. package/lib/types/controllers/sheet-transform/algorithms/insert-col/__tests__/remove-numfmt.algo.spec.d.ts +1 -0
  106. package/lib/types/controllers/sheet-transform/algorithms/insert-col/__tests__/remove-worksheet-merge.algo.spec.d.ts +1 -0
  107. package/lib/types/controllers/sheet-transform/algorithms/insert-col/__tests__/set-col-data.algo.spec.d.ts +1 -0
  108. package/lib/types/controllers/sheet-transform/algorithms/insert-col/__tests__/set-col-hidden.algo.spec.d.ts +1 -0
  109. package/lib/types/controllers/sheet-transform/algorithms/insert-col/__tests__/set-col-visible.algo.spec.d.ts +1 -0
  110. package/lib/types/controllers/sheet-transform/algorithms/insert-col/__tests__/set-numfmt.algo.spec.d.ts +1 -0
  111. package/lib/types/controllers/sheet-transform/algorithms/insert-col/__tests__/set-range-values.algo.spec.d.ts +1 -0
  112. package/lib/types/controllers/sheet-transform/algorithms/insert-col/__tests__/set-sheets-filter-criteria.algo.spec.d.ts +1 -0
  113. package/lib/types/controllers/sheet-transform/algorithms/insert-col/__tests__/set-sheets-filter-range.algo.spec.d.ts +1 -0
  114. package/lib/types/controllers/sheet-transform/algorithms/insert-col/__tests__/set-worksheet-col-width.algo.spec.d.ts +1 -0
  115. package/lib/types/controllers/sheet-transform/algorithms/insert-col/add-comment.algo.d.ts +18 -0
  116. package/lib/types/controllers/sheet-transform/algorithms/insert-col/add-data-validation.algo.d.ts +4 -0
  117. package/lib/types/controllers/sheet-transform/algorithms/insert-col/add-worksheet-merge.algo.d.ts +3 -0
  118. package/lib/types/controllers/sheet-transform/algorithms/insert-col/insert-col.algo.d.ts +3 -0
  119. package/lib/types/controllers/sheet-transform/algorithms/insert-col/move-col.algo.d.ts +3 -0
  120. package/lib/types/controllers/sheet-transform/algorithms/insert-col/move-range.algo.d.ts +3 -0
  121. package/lib/types/controllers/sheet-transform/algorithms/insert-col/remove-col.algo.d.ts +3 -0
  122. package/lib/types/controllers/sheet-transform/algorithms/insert-col/remove-numfmt.algo.d.ts +3 -0
  123. package/lib/types/controllers/sheet-transform/algorithms/insert-col/remove-worksheet-merge.algo.d.ts +3 -0
  124. package/lib/types/controllers/sheet-transform/algorithms/insert-col/reorder-range.algo.d.ts +3 -0
  125. package/lib/types/controllers/sheet-transform/algorithms/insert-col/set-col-data.algo.d.ts +3 -0
  126. package/lib/types/controllers/sheet-transform/algorithms/insert-col/set-col-hidden.algo.d.ts +3 -0
  127. package/lib/types/controllers/sheet-transform/algorithms/insert-col/set-col-visible.algo.d.ts +3 -0
  128. package/lib/types/controllers/sheet-transform/algorithms/insert-col/set-numfmt.algo.d.ts +3 -0
  129. package/lib/types/controllers/sheet-transform/algorithms/insert-col/set-range-values.algo.d.ts +3 -0
  130. package/lib/types/controllers/sheet-transform/algorithms/insert-col/set-selection.algo.d.ts +7 -0
  131. package/lib/types/controllers/sheet-transform/algorithms/insert-col/set-sheets-filter-criteria.algo.d.ts +4 -0
  132. package/lib/types/controllers/sheet-transform/algorithms/insert-col/set-sheets-filter-range.algo.d.ts +4 -0
  133. package/lib/types/controllers/sheet-transform/algorithms/insert-col/set-worksheet-col-width.algo.d.ts +3 -0
  134. package/lib/types/controllers/sheet-transform/algorithms/insert-col/update-comment-ref.algo.d.ts +19 -0
  135. package/lib/types/controllers/sheet-transform/algorithms/insert-col/update-data-validation.algo.d.ts +4 -0
  136. package/lib/types/controllers/sheet-transform/algorithms/insert-row/__test__/add-worksheet-merge.algo.spec.d.ts +1 -0
  137. package/lib/types/controllers/sheet-transform/algorithms/insert-row/__test__/insert-row.algo.spec.d.ts +1 -0
  138. package/lib/types/controllers/sheet-transform/algorithms/insert-row/__test__/move-range.algo.spec.d.ts +1 -0
  139. package/lib/types/controllers/sheet-transform/algorithms/insert-row/__test__/move-row.algo.spec.d.ts +1 -0
  140. package/lib/types/controllers/sheet-transform/algorithms/insert-row/__test__/remove-numfmt.algo.spec.d.ts +1 -0
  141. package/lib/types/controllers/sheet-transform/algorithms/insert-row/__test__/remove-row.algo.spec.d.ts +1 -0
  142. package/lib/types/controllers/sheet-transform/algorithms/insert-row/__test__/remove-worksheet-merge.algo.spec.d.ts +1 -0
  143. package/lib/types/controllers/sheet-transform/algorithms/insert-row/__test__/reorder-range.algo.spec.d.ts +1 -0
  144. package/lib/types/controllers/sheet-transform/algorithms/insert-row/__test__/set-numfmt.algo.spec.d.ts +1 -0
  145. package/lib/types/controllers/sheet-transform/algorithms/insert-row/__test__/set-range-values.algo.spec.d.ts +1 -0
  146. package/lib/types/controllers/sheet-transform/algorithms/insert-row/__test__/set-row-data.algo.spec.d.ts +1 -0
  147. package/lib/types/controllers/sheet-transform/algorithms/insert-row/__test__/set-row-hidden.algo.spec.d.ts +1 -0
  148. package/lib/types/controllers/sheet-transform/algorithms/insert-row/__test__/set-row-visible.algo.spec.d.ts +1 -0
  149. package/lib/types/controllers/sheet-transform/algorithms/insert-row/__test__/set-sheets-filter-range.algo.spec.d.ts +1 -0
  150. package/lib/types/controllers/sheet-transform/algorithms/insert-row/__test__/set-worksheet-row-auto-height.algo.spec.d.ts +1 -0
  151. package/lib/types/controllers/sheet-transform/algorithms/insert-row/__test__/set-worksheet-row-height.algo.spec.d.ts +1 -0
  152. package/lib/types/controllers/sheet-transform/algorithms/insert-row/__test__/set-worksheet-row-is-auto-height.algo.spec.d.ts +1 -0
  153. package/lib/types/controllers/sheet-transform/algorithms/insert-row/add-comment.algo.d.ts +4 -0
  154. package/lib/types/controllers/sheet-transform/algorithms/insert-row/add-data-validation.algo.d.ts +4 -0
  155. package/lib/types/controllers/sheet-transform/algorithms/insert-row/add-worksheet-merge.algo.d.ts +3 -0
  156. package/lib/types/controllers/sheet-transform/algorithms/insert-row/insert-row.algo.d.ts +3 -0
  157. package/lib/types/controllers/sheet-transform/algorithms/insert-row/move-range.algo.d.ts +3 -0
  158. package/lib/types/controllers/sheet-transform/algorithms/insert-row/move-row.algo.d.ts +3 -0
  159. package/lib/types/controllers/sheet-transform/algorithms/insert-row/remove-numfmt.algo.d.ts +3 -0
  160. package/lib/types/controllers/sheet-transform/algorithms/insert-row/remove-row.algo.d.ts +3 -0
  161. package/lib/types/controllers/sheet-transform/algorithms/insert-row/remove-worksheet-merge.algo.d.ts +3 -0
  162. package/lib/types/controllers/sheet-transform/algorithms/insert-row/reorder-range.algo.d.ts +3 -0
  163. package/lib/types/controllers/sheet-transform/algorithms/insert-row/set-numfmt.algo.d.ts +3 -0
  164. package/lib/types/controllers/sheet-transform/algorithms/insert-row/set-range-values.algo.d.ts +3 -0
  165. package/lib/types/controllers/sheet-transform/algorithms/insert-row/set-row-data.algo.d.ts +3 -0
  166. package/lib/types/controllers/sheet-transform/algorithms/insert-row/set-row-hidden.algo.d.ts +3 -0
  167. package/lib/types/controllers/sheet-transform/algorithms/insert-row/set-row-visible.algo.d.ts +3 -0
  168. package/lib/types/controllers/sheet-transform/algorithms/insert-row/set-selection.algo.d.ts +7 -0
  169. package/lib/types/controllers/sheet-transform/algorithms/insert-row/set-sheets-filter-range.algo.d.ts +4 -0
  170. package/lib/types/controllers/sheet-transform/algorithms/insert-row/set-worksheet-row-auto-height.algo.d.ts +3 -0
  171. package/lib/types/controllers/sheet-transform/algorithms/insert-row/set-worksheet-row-height.algo.d.ts +3 -0
  172. package/lib/types/controllers/sheet-transform/algorithms/insert-row/set-worksheet-row-is-auto-height.algo.d.ts +3 -0
  173. package/lib/types/controllers/sheet-transform/algorithms/insert-row/update-comment-ref.algo.d.ts +4 -0
  174. package/lib/types/controllers/sheet-transform/algorithms/insert-row/update-data-validation.algo.d.ts +4 -0
  175. package/lib/types/controllers/sheet-transform/algorithms/move-col/__test__/add-worksheet-merge.algo.spec.d.ts +1 -0
  176. package/lib/types/controllers/sheet-transform/algorithms/move-col/__test__/move-col.algo.spec.d.ts +1 -0
  177. package/lib/types/controllers/sheet-transform/algorithms/move-col/__test__/move-range.algo.spec.d.ts +1 -0
  178. package/lib/types/controllers/sheet-transform/algorithms/move-col/__test__/remove-numfmt.algo.spec.d.ts +1 -0
  179. package/lib/types/controllers/sheet-transform/algorithms/move-col/__test__/remove-worksheet-merge.algo.spec.d.ts +1 -0
  180. package/lib/types/controllers/sheet-transform/algorithms/move-col/__test__/set-col-custom.algo.spec.d.ts +1 -0
  181. package/lib/types/controllers/sheet-transform/algorithms/move-col/__test__/set-col-hidden.algo.spec.d.ts +1 -0
  182. package/lib/types/controllers/sheet-transform/algorithms/move-col/__test__/set-col-visible.algo.spec.d.ts +1 -0
  183. package/lib/types/controllers/sheet-transform/algorithms/move-col/__test__/set-numfmt.algo.spec.d.ts +1 -0
  184. package/lib/types/controllers/sheet-transform/algorithms/move-col/__test__/set-range-values.algo.spec.d.ts +1 -0
  185. package/lib/types/controllers/sheet-transform/algorithms/move-col/__test__/set-sheets-filter-criteria.algo.spec.d.ts +1 -0
  186. package/lib/types/controllers/sheet-transform/algorithms/move-col/__test__/set-sheets-filter-range.algo.spec.d.ts +1 -0
  187. package/lib/types/controllers/sheet-transform/algorithms/move-col/__test__/set-worksheet-col-width.algo.spec.d.ts +1 -0
  188. package/lib/types/controllers/sheet-transform/algorithms/move-col/add-comment.algo.d.ts +4 -0
  189. package/lib/types/controllers/sheet-transform/algorithms/move-col/add-data-validation.algo.d.ts +6 -0
  190. package/lib/types/controllers/sheet-transform/algorithms/move-col/add-worksheet-merge.algo.d.ts +3 -0
  191. package/lib/types/controllers/sheet-transform/algorithms/move-col/move-col.algo.d.ts +3 -0
  192. package/lib/types/controllers/sheet-transform/algorithms/move-col/move-range.algo.d.ts +3 -0
  193. package/lib/types/controllers/sheet-transform/algorithms/move-col/remove-numfmt.algo.d.ts +3 -0
  194. package/lib/types/controllers/sheet-transform/algorithms/move-col/remove-worksheet-merge.algo.d.ts +3 -0
  195. package/lib/types/controllers/sheet-transform/algorithms/move-col/reorder-range.algo.d.ts +3 -0
  196. package/lib/types/controllers/sheet-transform/algorithms/move-col/set-col-data.algo.d.ts +3 -0
  197. package/lib/types/controllers/sheet-transform/algorithms/move-col/set-col-hidden.algo.d.ts +3 -0
  198. package/lib/types/controllers/sheet-transform/algorithms/move-col/set-col-visible.algo.d.ts +3 -0
  199. package/lib/types/controllers/sheet-transform/algorithms/move-col/set-numfmt.algo.d.ts +3 -0
  200. package/lib/types/controllers/sheet-transform/algorithms/move-col/set-range-values.algo.d.ts +3 -0
  201. package/lib/types/controllers/sheet-transform/algorithms/move-col/set-selection.algo.d.ts +7 -0
  202. package/lib/types/controllers/sheet-transform/algorithms/move-col/set-sheets-filter-criteria.algo.d.ts +4 -0
  203. package/lib/types/controllers/sheet-transform/algorithms/move-col/set-sheets-filter-range.algo.d.ts +4 -0
  204. package/lib/types/controllers/sheet-transform/algorithms/move-col/set-worksheet-col-width.algo.d.ts +3 -0
  205. package/lib/types/controllers/sheet-transform/algorithms/move-col/update-comment-ref.algo.d.ts +4 -0
  206. package/lib/types/controllers/sheet-transform/algorithms/move-col/update-data-validation.algo.d.ts +9 -0
  207. package/lib/types/controllers/sheet-transform/algorithms/move-conditional-formatting-rule/__test__/move-conditional-formatting-rule.algo.algo.spec.d.ts +1 -0
  208. package/lib/types/controllers/sheet-transform/algorithms/move-conditional-formatting-rule/move-conditional-formatting-rule.algo.d.ts +3 -0
  209. package/lib/types/controllers/sheet-transform/algorithms/move-range/add-comment.algo.d.ts +4 -0
  210. package/lib/types/controllers/sheet-transform/algorithms/move-range/add-data-validation.algo.d.ts +4 -0
  211. package/lib/types/controllers/sheet-transform/algorithms/move-range/add-worksheet-merge.algo.d.ts +3 -0
  212. package/lib/types/controllers/sheet-transform/algorithms/move-range/move-range.algo.d.ts +3 -0
  213. package/lib/types/controllers/sheet-transform/algorithms/move-range/remove-numfmt.algo.d.ts +3 -0
  214. package/lib/types/controllers/sheet-transform/algorithms/move-range/reorder-range.algo.d.ts +3 -0
  215. package/lib/types/controllers/sheet-transform/algorithms/move-range/set-numfmt.algo.d.ts +3 -0
  216. package/lib/types/controllers/sheet-transform/algorithms/move-range/update-comment-ref.algo.d.ts +4 -0
  217. package/lib/types/controllers/sheet-transform/algorithms/move-row/__test__/add-worksheet-merge.algo.spec.d.ts +1 -0
  218. package/lib/types/controllers/sheet-transform/algorithms/move-row/__test__/move-range.algo.spec.d.ts +1 -0
  219. package/lib/types/controllers/sheet-transform/algorithms/move-row/__test__/move-row.algo.spec.d.ts +1 -0
  220. package/lib/types/controllers/sheet-transform/algorithms/move-row/__test__/remove-numfmt.algo.spec.d.ts +1 -0
  221. package/lib/types/controllers/sheet-transform/algorithms/move-row/__test__/remove-worksheet-merge.algo.spec.d.ts +1 -0
  222. package/lib/types/controllers/sheet-transform/algorithms/move-row/__test__/reorder-range.algo.spec.d.ts +1 -0
  223. package/lib/types/controllers/sheet-transform/algorithms/move-row/__test__/set-numfmt.algo.spec.d.ts +1 -0
  224. package/lib/types/controllers/sheet-transform/algorithms/move-row/__test__/set-range-values.algo.spec.d.ts +1 -0
  225. package/lib/types/controllers/sheet-transform/algorithms/move-row/__test__/set-row-data.algo.spec.d.ts +1 -0
  226. package/lib/types/controllers/sheet-transform/algorithms/move-row/__test__/set-row-hidden.algo.spec.d.ts +1 -0
  227. package/lib/types/controllers/sheet-transform/algorithms/move-row/__test__/set-row-visible.algo.spec.d.ts +1 -0
  228. package/lib/types/controllers/sheet-transform/algorithms/move-row/__test__/set-sheets-filter-range.algo.spec.d.ts +1 -0
  229. package/lib/types/controllers/sheet-transform/algorithms/move-row/__test__/set-worksheet-row-auto-height.algo.spec.d.ts +1 -0
  230. package/lib/types/controllers/sheet-transform/algorithms/move-row/__test__/set-worksheet-row-height.algo.spec.d.ts +1 -0
  231. package/lib/types/controllers/sheet-transform/algorithms/move-row/__test__/set-worksheet-row-is-auto-height.algo.spec.d.ts +1 -0
  232. package/lib/types/controllers/sheet-transform/algorithms/move-row/add-comment.algo.d.ts +4 -0
  233. package/lib/types/controllers/sheet-transform/algorithms/move-row/add-data-validation.algo.d.ts +4 -0
  234. package/lib/types/controllers/sheet-transform/algorithms/move-row/add-worksheet-merge.algo.d.ts +3 -0
  235. package/lib/types/controllers/sheet-transform/algorithms/move-row/move-range.algo.d.ts +3 -0
  236. package/lib/types/controllers/sheet-transform/algorithms/move-row/move-row.algo.d.ts +3 -0
  237. package/lib/types/controllers/sheet-transform/algorithms/move-row/remove-numfmt.algo.d.ts +3 -0
  238. package/lib/types/controllers/sheet-transform/algorithms/move-row/remove-worksheet-merge.algo.d.ts +3 -0
  239. package/lib/types/controllers/sheet-transform/algorithms/move-row/reorder-range.algo.d.ts +3 -0
  240. package/lib/types/controllers/sheet-transform/algorithms/move-row/set-numfmt.algo.d.ts +3 -0
  241. package/lib/types/controllers/sheet-transform/algorithms/move-row/set-range-values.algo.d.ts +3 -0
  242. package/lib/types/controllers/sheet-transform/algorithms/move-row/set-row-data.algo.d.ts +3 -0
  243. package/lib/types/controllers/sheet-transform/algorithms/move-row/set-row-hidden.algo.d.ts +3 -0
  244. package/lib/types/controllers/sheet-transform/algorithms/move-row/set-row-visible.algo.d.ts +3 -0
  245. package/lib/types/controllers/sheet-transform/algorithms/move-row/set-selection.algo.d.ts +7 -0
  246. package/lib/types/controllers/sheet-transform/algorithms/move-row/set-sheets-filter-range.algo.d.ts +4 -0
  247. package/lib/types/controllers/sheet-transform/algorithms/move-row/set-worksheet-row-auto-height.algo.d.ts +3 -0
  248. package/lib/types/controllers/sheet-transform/algorithms/move-row/set-worksheet-row-height.algo.d.ts +3 -0
  249. package/lib/types/controllers/sheet-transform/algorithms/move-row/set-worksheet-row-is-auto-height.algo.d.ts +3 -0
  250. package/lib/types/controllers/sheet-transform/algorithms/move-row/update-comment-ref.algo.d.ts +4 -0
  251. package/lib/types/controllers/sheet-transform/algorithms/move-row/update-data-validation.algo.d.ts +4 -0
  252. package/lib/types/controllers/sheet-transform/algorithms/remove-col/__tests__/move-col.algo.spec.d.ts +1 -0
  253. package/lib/types/controllers/sheet-transform/algorithms/remove-col/__tests__/move-range.algo.spec.d.ts +1 -0
  254. package/lib/types/controllers/sheet-transform/algorithms/remove-col/__tests__/remove-col.algo.spec.d.ts +1 -0
  255. package/lib/types/controllers/sheet-transform/algorithms/remove-col/__tests__/remove-numfmt.algo.spec.d.ts +1 -0
  256. package/lib/types/controllers/sheet-transform/algorithms/remove-col/__tests__/remove-worksheet-merge.algo.spec.d.ts +1 -0
  257. package/lib/types/controllers/sheet-transform/algorithms/remove-col/__tests__/set-col-data.algo.spec.d.ts +1 -0
  258. package/lib/types/controllers/sheet-transform/algorithms/remove-col/__tests__/set-col-hidden.algo.spec.d.ts +1 -0
  259. package/lib/types/controllers/sheet-transform/algorithms/remove-col/__tests__/set-col-visible.algo.spec.d.ts +1 -0
  260. package/lib/types/controllers/sheet-transform/algorithms/remove-col/__tests__/set-numfmt.algo.spec.d.ts +1 -0
  261. package/lib/types/controllers/sheet-transform/algorithms/remove-col/__tests__/set-range-values.algo.spec.d.ts +1 -0
  262. package/lib/types/controllers/sheet-transform/algorithms/remove-col/__tests__/set-sheets-filter-criteria.algo.spec.d.ts +1 -0
  263. package/lib/types/controllers/sheet-transform/algorithms/remove-col/__tests__/set-sheets-filter-range.algo.spec.d.ts +1 -0
  264. package/lib/types/controllers/sheet-transform/algorithms/remove-col/__tests__/set-worksheet-col-width.algo.spec.d.ts +1 -0
  265. package/lib/types/controllers/sheet-transform/algorithms/remove-col/add-comment.algo.d.ts +4 -0
  266. package/lib/types/controllers/sheet-transform/algorithms/remove-col/add-data-validation.algo.d.ts +4 -0
  267. package/lib/types/controllers/sheet-transform/algorithms/remove-col/add-worksheet-merge.algo.d.ts +3 -0
  268. package/lib/types/controllers/sheet-transform/algorithms/remove-col/move-col.algo.d.ts +3 -0
  269. package/lib/types/controllers/sheet-transform/algorithms/remove-col/move-range.algo.d.ts +3 -0
  270. package/lib/types/controllers/sheet-transform/algorithms/remove-col/remove-col.algo.d.ts +3 -0
  271. package/lib/types/controllers/sheet-transform/algorithms/remove-col/remove-numfmt.algo.d.ts +3 -0
  272. package/lib/types/controllers/sheet-transform/algorithms/remove-col/remove-worksheet-merge.algo.d.ts +3 -0
  273. package/lib/types/controllers/sheet-transform/algorithms/remove-col/reorder-range.algo.d.ts +3 -0
  274. package/lib/types/controllers/sheet-transform/algorithms/remove-col/set-col-data.algo.d.ts +3 -0
  275. package/lib/types/controllers/sheet-transform/algorithms/remove-col/set-col-hidden.algo.d.ts +3 -0
  276. package/lib/types/controllers/sheet-transform/algorithms/remove-col/set-col-visible.algo.d.ts +3 -0
  277. package/lib/types/controllers/sheet-transform/algorithms/remove-col/set-numfmt.algo.d.ts +3 -0
  278. package/lib/types/controllers/sheet-transform/algorithms/remove-col/set-range-values.algo.d.ts +3 -0
  279. package/lib/types/controllers/sheet-transform/algorithms/remove-col/set-selection.algo.d.ts +7 -0
  280. package/lib/types/controllers/sheet-transform/algorithms/remove-col/set-sheets-filter-criteria.algo.d.ts +4 -0
  281. package/lib/types/controllers/sheet-transform/algorithms/remove-col/set-sheets-filter-range.algo.d.ts +4 -0
  282. package/lib/types/controllers/sheet-transform/algorithms/remove-col/set-worksheet-col-width.algo.d.ts +3 -0
  283. package/lib/types/controllers/sheet-transform/algorithms/remove-col/update-comment-ref.algo.d.ts +4 -0
  284. package/lib/types/controllers/sheet-transform/algorithms/remove-col/update-data-validation.algo.d.ts +4 -0
  285. package/lib/types/controllers/sheet-transform/algorithms/remove-data-validation/__test__/remove-data-validation.algo.spec.d.ts +1 -0
  286. package/lib/types/controllers/sheet-transform/algorithms/remove-data-validation/remove-data-validation.algo.d.ts +3 -0
  287. package/lib/types/controllers/sheet-transform/algorithms/remove-hyper-link/remove-hyper-link.d.ts +3 -0
  288. package/lib/types/controllers/sheet-transform/algorithms/remove-numfmt/remove-numfmt.algo.d.ts +3 -0
  289. package/lib/types/controllers/sheet-transform/algorithms/remove-numfmt/set-numfmt.algo.d.ts +3 -0
  290. package/lib/types/controllers/sheet-transform/algorithms/remove-row/__tests__/move-range.algo.spec.d.ts +1 -0
  291. package/lib/types/controllers/sheet-transform/algorithms/remove-row/__tests__/move-row.algo.spec.d.ts +1 -0
  292. package/lib/types/controllers/sheet-transform/algorithms/remove-row/__tests__/remove-numfmt.algo.spec.d.ts +1 -0
  293. package/lib/types/controllers/sheet-transform/algorithms/remove-row/__tests__/remove-row.algo.spec.d.ts +1 -0
  294. package/lib/types/controllers/sheet-transform/algorithms/remove-row/__tests__/remove-worksheet-merge.algo.spec.d.ts +1 -0
  295. package/lib/types/controllers/sheet-transform/algorithms/remove-row/__tests__/reorder-range.algo.spec.d.ts +1 -0
  296. package/lib/types/controllers/sheet-transform/algorithms/remove-row/__tests__/set-numfmt.algo.spec.d.ts +1 -0
  297. package/lib/types/controllers/sheet-transform/algorithms/remove-row/__tests__/set-range-value.algo.spec.d.ts +1 -0
  298. package/lib/types/controllers/sheet-transform/algorithms/remove-row/__tests__/set-row-custom.algo.spec.d.ts +1 -0
  299. package/lib/types/controllers/sheet-transform/algorithms/remove-row/__tests__/set-row-hidden.algo.spec.d.ts +1 -0
  300. package/lib/types/controllers/sheet-transform/algorithms/remove-row/__tests__/set-row-visible.algo.spec.d.ts +1 -0
  301. package/lib/types/controllers/sheet-transform/algorithms/remove-row/__tests__/set-worksheet-row-auto-height.algo.spec.d.ts +1 -0
  302. package/lib/types/controllers/sheet-transform/algorithms/remove-row/__tests__/set-worksheet-row-height.algo.spec.d.ts +1 -0
  303. package/lib/types/controllers/sheet-transform/algorithms/remove-row/__tests__/set-worksheet-row-is-auto-height.algo.spec.d.ts +1 -0
  304. package/lib/types/controllers/sheet-transform/algorithms/remove-row/add-comment.algo.d.ts +4 -0
  305. package/lib/types/controllers/sheet-transform/algorithms/remove-row/add-data-validation.algo.d.ts +4 -0
  306. package/lib/types/controllers/sheet-transform/algorithms/remove-row/add-worksheet-merge.algo.d.ts +3 -0
  307. package/lib/types/controllers/sheet-transform/algorithms/remove-row/move-range.algo.d.ts +3 -0
  308. package/lib/types/controllers/sheet-transform/algorithms/remove-row/move-row.algo.d.ts +3 -0
  309. package/lib/types/controllers/sheet-transform/algorithms/remove-row/remove-numfmt.algo.d.ts +3 -0
  310. package/lib/types/controllers/sheet-transform/algorithms/remove-row/remove-row.algo.d.ts +3 -0
  311. package/lib/types/controllers/sheet-transform/algorithms/remove-row/remove-worksheet-merge.algo.d.ts +3 -0
  312. package/lib/types/controllers/sheet-transform/algorithms/remove-row/reorder-range.algo.d.ts +3 -0
  313. package/lib/types/controllers/sheet-transform/algorithms/remove-row/set-numfmt.algo.d.ts +3 -0
  314. package/lib/types/controllers/sheet-transform/algorithms/remove-row/set-range-values.algo.d.ts +3 -0
  315. package/lib/types/controllers/sheet-transform/algorithms/remove-row/set-row-data.algo.d.ts +3 -0
  316. package/lib/types/controllers/sheet-transform/algorithms/remove-row/set-row-hidden.algo.d.ts +3 -0
  317. package/lib/types/controllers/sheet-transform/algorithms/remove-row/set-row-visible.algo.d.ts +3 -0
  318. package/lib/types/controllers/sheet-transform/algorithms/remove-row/set-selection.algo.d.ts +7 -0
  319. package/lib/types/controllers/sheet-transform/algorithms/remove-row/set-sheets-filter-range.algo.d.ts +4 -0
  320. package/lib/types/controllers/sheet-transform/algorithms/remove-row/set-worksheet-row-auto-height.algo.d.ts +3 -0
  321. package/lib/types/controllers/sheet-transform/algorithms/remove-row/set-worksheet-row-height.algo.d.ts +3 -0
  322. package/lib/types/controllers/sheet-transform/algorithms/remove-row/set-worksheet-row-is-auto-height.algo.d.ts +3 -0
  323. package/lib/types/controllers/sheet-transform/algorithms/remove-row/update-comment-ref.algo.d.ts +4 -0
  324. package/lib/types/controllers/sheet-transform/algorithms/remove-row/update-data-validation.algo.d.ts +4 -0
  325. package/lib/types/controllers/sheet-transform/algorithms/remove-sheets-filter/remove-sheets-filter.algo.d.ts +3 -0
  326. package/lib/types/controllers/sheet-transform/algorithms/remove-sheets-filter/set-sheets-filter-range.algo.d.ts +4 -0
  327. package/lib/types/controllers/sheet-transform/algorithms/remove-worksheet-merge/__tests__/add-worksheet-merge.algo.spec.d.ts +1 -0
  328. package/lib/types/controllers/sheet-transform/algorithms/remove-worksheet-merge/__tests__/insert-col.algo.spec.d.ts +1 -0
  329. package/lib/types/controllers/sheet-transform/algorithms/remove-worksheet-merge/__tests__/insert-row.algo.spec.d.ts +1 -0
  330. package/lib/types/controllers/sheet-transform/algorithms/remove-worksheet-merge/add-worksheet-merge.algo.d.ts +3 -0
  331. package/lib/types/controllers/sheet-transform/algorithms/remove-worksheet-merge/insert-col.algo.d.ts +3 -0
  332. package/lib/types/controllers/sheet-transform/algorithms/remove-worksheet-merge/insert-row.algo.d.ts +3 -0
  333. package/lib/types/controllers/sheet-transform/algorithms/remove-worksheet-merge/move-col.algo.d.ts +3 -0
  334. package/lib/types/controllers/sheet-transform/algorithms/remove-worksheet-merge/move-row.algo.d.ts +3 -0
  335. package/lib/types/controllers/sheet-transform/algorithms/remove-worksheet-merge/remove-col.algo.d.ts +3 -0
  336. package/lib/types/controllers/sheet-transform/algorithms/remove-worksheet-merge/remove-row.algo.d.ts +3 -0
  337. package/lib/types/controllers/sheet-transform/algorithms/remove-worksheet-merge/set-selection.algo.d.ts +3 -0
  338. package/lib/types/controllers/sheet-transform/algorithms/reorder-range/reorder-range.algo.d.ts +3 -0
  339. package/lib/types/controllers/sheet-transform/algorithms/revert-revision/revert-revision.algo.d.ts +4 -0
  340. package/lib/types/controllers/sheet-transform/algorithms/set-col-data/__tests__/set-col-data.algo.spec.d.ts +1 -0
  341. package/lib/types/controllers/sheet-transform/algorithms/set-col-data/set-col-data.algo.d.ts +3 -0
  342. package/lib/types/controllers/sheet-transform/algorithms/set-conditional-formatting-rule/__test__/set-conditional-formatting-rule.algo.spec.d.ts +1 -0
  343. package/lib/types/controllers/sheet-transform/algorithms/set-conditional-formatting-rule/set-conditional-formatting-rule.algo.d.ts +3 -0
  344. package/lib/types/controllers/sheet-transform/algorithms/set-drawing/__tests__/set-drawing-apply.algo.spec.d.ts +1 -0
  345. package/lib/types/controllers/sheet-transform/algorithms/set-drawing/set-drawing-apply.algo.d.ts +3 -0
  346. package/lib/types/controllers/sheet-transform/algorithms/set-frozen/__test__/set-frozen.algo.spec.d.ts +1 -0
  347. package/lib/types/controllers/sheet-transform/algorithms/set-frozen/set-frozen.algo.d.ts +3 -0
  348. package/lib/types/controllers/sheet-transform/algorithms/set-numfmt/__test__/set-numfmt.algo.spec.d.ts +1 -0
  349. package/lib/types/controllers/sheet-transform/algorithms/set-numfmt/remove-numfmt.algo.d.ts +3 -0
  350. package/lib/types/controllers/sheet-transform/algorithms/set-numfmt/set-numfmt.algo.d.ts +3 -0
  351. package/lib/types/controllers/sheet-transform/algorithms/set-range-protection/add-comment.algo.d.ts +4 -0
  352. package/lib/types/controllers/sheet-transform/algorithms/set-range-protection/add-conditional-rule.algo.d.ts +4 -0
  353. package/lib/types/controllers/sheet-transform/algorithms/set-range-protection/add-worksheet-merge.algo.d.ts +3 -0
  354. package/lib/types/controllers/sheet-transform/algorithms/set-range-protection/add-worksheet-protection.algo.d.ts +3 -0
  355. package/lib/types/controllers/sheet-transform/algorithms/set-range-protection/delete-conditional-formatting-rule.algo.d.ts +4 -0
  356. package/lib/types/controllers/sheet-transform/algorithms/set-range-protection/insert-col.algo.d.ts +3 -0
  357. package/lib/types/controllers/sheet-transform/algorithms/set-range-protection/insert-row.algo.d.ts +3 -0
  358. package/lib/types/controllers/sheet-transform/algorithms/set-range-protection/move-col.algo.d.ts +3 -0
  359. package/lib/types/controllers/sheet-transform/algorithms/set-range-protection/move-range.algo.d.ts +3 -0
  360. package/lib/types/controllers/sheet-transform/algorithms/set-range-protection/move-row.algo.d.ts +3 -0
  361. package/lib/types/controllers/sheet-transform/algorithms/set-range-protection/remove-col.algo.d.ts +3 -0
  362. package/lib/types/controllers/sheet-transform/algorithms/set-range-protection/remove-data-validation-rule.algo.d.ts +4 -0
  363. package/lib/types/controllers/sheet-transform/algorithms/set-range-protection/remove-numfmt.algo.d.ts +3 -0
  364. package/lib/types/controllers/sheet-transform/algorithms/set-range-protection/remove-row.algo.d.ts +3 -0
  365. package/lib/types/controllers/sheet-transform/algorithms/set-range-protection/remove-sheet-filter.algo.d.ts +3 -0
  366. package/lib/types/controllers/sheet-transform/algorithms/set-range-protection/remove-worksheet-merge.algo.d.ts +3 -0
  367. package/lib/types/controllers/sheet-transform/algorithms/set-range-protection/set-conditional-formatting-rule.algo.d.ts +4 -0
  368. package/lib/types/controllers/sheet-transform/algorithms/set-range-protection/set-frozen.algo.d.ts +3 -0
  369. package/lib/types/controllers/sheet-transform/algorithms/set-range-protection/set-numfmt.algo.d.ts +3 -0
  370. package/lib/types/controllers/sheet-transform/algorithms/set-range-protection/set-range-protection.algo.d.ts +3 -0
  371. package/lib/types/controllers/sheet-transform/algorithms/set-range-protection/set-range-value.algo.d.ts +3 -0
  372. package/lib/types/controllers/sheet-transform/algorithms/set-range-protection/set-worksheet-col-width.algo.d.ts +3 -0
  373. package/lib/types/controllers/sheet-transform/algorithms/set-range-protection/update-comment.algo.d.ts +4 -0
  374. package/lib/types/controllers/sheet-transform/algorithms/set-range-protection/update-data-validation-rule.algo.d.ts +4 -0
  375. package/lib/types/controllers/sheet-transform/algorithms/set-range-values/__test__/reorder-range.algo.spec.d.ts +1 -0
  376. package/lib/types/controllers/sheet-transform/algorithms/set-range-values/__test__/set-range-valuea.algo.spec.d.ts +1 -0
  377. package/lib/types/controllers/sheet-transform/algorithms/set-range-values/add-worksheet-merge.algo.d.ts +3 -0
  378. package/lib/types/controllers/sheet-transform/algorithms/set-range-values/move-range.algo.d.ts +3 -0
  379. package/lib/types/controllers/sheet-transform/algorithms/set-range-values/reorder-range.algo.d.ts +3 -0
  380. package/lib/types/controllers/sheet-transform/algorithms/set-range-values/set-range-values.algo.d.ts +3 -0
  381. package/lib/types/controllers/sheet-transform/algorithms/set-row-data/__tests__/set-row-data.algo.spec.d.ts +1 -0
  382. package/lib/types/controllers/sheet-transform/algorithms/set-row-data/set-row-data.algo.d.ts +3 -0
  383. package/lib/types/controllers/sheet-transform/algorithms/set-sheets-filter-criteria/move-range.algo.d.ts +4 -0
  384. package/lib/types/controllers/sheet-transform/algorithms/set-sheets-filter-criteria/remove-sheets-filter.algo.d.ts +4 -0
  385. package/lib/types/controllers/sheet-transform/algorithms/set-sheets-filter-criteria/set-range-values.algo.d.ts +4 -0
  386. package/lib/types/controllers/sheet-transform/algorithms/set-sheets-filter-criteria/set-sheets-filter-criteria.algo.d.ts +3 -0
  387. package/lib/types/controllers/sheet-transform/algorithms/set-sheets-filter-range/remove-sheets-filter.algo.d.ts +4 -0
  388. package/lib/types/controllers/sheet-transform/algorithms/set-sheets-filter-range/set-sheets-filter-range.algo.d.ts +3 -0
  389. package/lib/types/controllers/sheet-transform/algorithms/set-tab-color/__test__/set-tab-color.algo.spec.d.ts +1 -0
  390. package/lib/types/controllers/sheet-transform/algorithms/set-tab-color/set-tab-color.algo.d.ts +3 -0
  391. package/lib/types/controllers/sheet-transform/algorithms/set-worksheet-col-width/__tests__/set-worksheet-col-width.algo.spec.d.ts +1 -0
  392. package/lib/types/controllers/sheet-transform/algorithms/set-worksheet-col-width/set-worksheet-col-width.algo.d.ts +3 -0
  393. package/lib/types/controllers/sheet-transform/algorithms/set-worksheet-name/set-worksheet-name.algo.d.ts +3 -0
  394. package/lib/types/controllers/sheet-transform/algorithms/set-worksheet-row-auto-height/__tests__/set-worksheet-row-auto-height.algo.spec.d.ts +1 -0
  395. package/lib/types/controllers/sheet-transform/algorithms/set-worksheet-row-auto-height/set-worksheet-row-auto-height.algo.d.ts +3 -0
  396. package/lib/types/controllers/sheet-transform/algorithms/set-worksheet-row-height/__tests__/set-worksheet-row-height.algo.spec.d.ts +1 -0
  397. package/lib/types/controllers/sheet-transform/algorithms/set-worksheet-row-height/set-worksheet-row-height.algo.d.ts +3 -0
  398. package/lib/types/controllers/sheet-transform/algorithms/set-worksheet-row-is-auto-height/__tests__/set-worksheet-row-is-auto-height.algo.spec.d.ts +1 -0
  399. package/lib/types/controllers/sheet-transform/algorithms/set-worksheet-row-is-auto-height/set-worksheet-row-is-auto-height.algo.d.ts +3 -0
  400. package/lib/types/controllers/sheet-transform/algorithms/update-comment/update-comment.algo.d.ts +3 -0
  401. package/lib/types/controllers/sheet-transform/algorithms/update-comment-ref/update-comment-ref.algo.d.ts +3 -0
  402. package/lib/types/controllers/sheet-transform/algorithms/update-data-validation/__test__/add-data-validation.algo.spec.d.ts +1 -0
  403. package/lib/types/controllers/sheet-transform/algorithms/update-data-validation/__test__/remove-data-validation.algo.spec.d.ts +1 -0
  404. package/lib/types/controllers/sheet-transform/algorithms/update-data-validation/__test__/update-data-validation.algo.spec.d.ts +1 -0
  405. package/lib/types/controllers/sheet-transform/algorithms/update-data-validation/add-data-validation.algo.d.ts +3 -0
  406. package/lib/types/controllers/sheet-transform/algorithms/update-data-validation/remove-data-validation.algo.d.ts +3 -0
  407. package/lib/types/controllers/sheet-transform/algorithms/update-data-validation/update-data-validation.algo.d.ts +3 -0
  408. package/lib/types/controllers/sheet-transform/algorithms/update-hyper-link/update-hyper-link.algo.d.ts +3 -0
  409. package/lib/types/controllers/sheet-transform/algorithms/update-hyper-link-ref/update-hyper-link-ref.d.ts +3 -0
  410. package/lib/types/controllers/sheet-transform/algorithms/utils.d.ts +33 -0
  411. package/lib/types/controllers/sheet-transform/algorithms/worksheet/__tests__/add-worksheet-merge.algo.spec.d.ts +1 -0
  412. package/lib/types/controllers/sheet-transform/algorithms/worksheet/__tests__/remove-worksheet-merge.algo.spec.d.ts +1 -0
  413. package/lib/types/controllers/sheet-transform/algorithms/worksheet/__tests__/worksheet.algo.spec.d.ts +1 -0
  414. package/lib/types/controllers/sheet-transform/algorithms/worksheet/add-worksheet-merge.algo.d.ts +2 -0
  415. package/lib/types/controllers/sheet-transform/algorithms/worksheet/remove-worksheet-merge.algo.d.ts +2 -0
  416. package/lib/types/controllers/sheet-transform/algorithms/worksheet/worksheet.algo.d.ts +8 -0
  417. package/lib/types/controllers/sheet-transform/sheet-transform.controller.d.ts +9 -0
  418. package/lib/types/index.d.ts +17 -716
  419. package/lib/types/models/changeset.d.ts +20 -0
  420. package/lib/types/models/collaboration-events.d.ts +235 -0
  421. package/lib/types/models/socket-events.d.ts +53 -0
  422. package/lib/types/plugin.d.ts +10 -0
  423. package/lib/types/services/compose-changesets/compose-changesets.service.d.ts +5 -0
  424. package/lib/types/services/compress-mutation/compress-mutation-service.d.ts +19 -0
  425. package/lib/types/services/compress-mutation/compress-mutations/__test__/set-range-values.spec.d.ts +1 -0
  426. package/lib/types/services/compress-mutation/compress-mutations/set-range-values.d.ts +13 -0
  427. package/lib/types/services/history/type.d.ts +6 -0
  428. package/lib/types/services/rev/__tests__/rev.service.spec.d.ts +18 -0
  429. package/lib/types/services/rev/rev.service.d.ts +23 -0
  430. package/lib/types/services/snapshot/__tests__/snapshot-mock.d.ts +27 -0
  431. package/lib/types/services/snapshot/__tests__/snapshot-transform.spec.d.ts +1 -0
  432. package/lib/types/services/snapshot/__tests__/snapshot.service.spec.d.ts +23 -0
  433. package/lib/types/services/snapshot/snapshot-transform.d.ts +30 -0
  434. package/lib/types/services/snapshot/snapshot-utils.d.ts +15 -0
  435. package/lib/types/services/snapshot/snapshot.service.d.ts +46 -0
  436. package/lib/types/services/transform/__tests__/doc.transform.service.spec.d.ts +1 -0
  437. package/lib/types/services/transform/__tests__/transform.service.spec.d.ts +1 -0
  438. package/lib/types/services/transform/transform.service.d.ts +114 -0
  439. package/lib/types/services/transform/types.d.ts +47 -0
  440. package/lib/types/utils.d.ts +8 -0
  441. package/lib/umd/index.js +1 -1
  442. package/package.json +21 -21
package/lib/es/index.js CHANGED
@@ -1 +1 @@
1
- const _0x572182=_0x2b5d;(function(_0x4b9b1d,_0x3e021a){const _0xff1461=_0x2b5d,_0x225327=_0x4b9b1d();while(!![]){try{const _0xb05c3d=parseInt(_0xff1461(0x117))/0x1*(parseInt(_0xff1461(0x1db))/0x2)+-parseInt(_0xff1461(0x18d))/0x3+parseInt(_0xff1461(0x1c1))/0x4+parseInt(_0xff1461(0x1d7))/0x5*(-parseInt(_0xff1461(0x98))/0x6)+-parseInt(_0xff1461(0x114))/0x7+-parseInt(_0xff1461(0xe3))/0x8*(-parseInt(_0xff1461(0x10d))/0x9)+parseInt(_0xff1461(0x1ee))/0xa;if(_0xb05c3d===_0x3e021a)break;else _0x225327['push'](_0x225327['shift']());}catch(_0xe7d836){_0x225327['push'](_0x225327['shift']());}}}(_0x1690,0x90b7e));var gr=Object['defineProperty'],Ir=(_0x14f62d,_0x25fbed,_0x4d5cbe)=>_0x25fbed in _0x14f62d?gr(_0x14f62d,_0x25fbed,{'enumerable':!0x0,'configurable':!0x0,'writable':!0x0,'value':_0x4d5cbe}):_0x14f62d[_0x25fbed]=_0x4d5cbe,se=(_0x1d2af1,_0x74cd29,_0x534357)=>Ir(_0x1d2af1,typeof _0x74cd29!=_0x572182(0x8e)?_0x74cd29+'':_0x74cd29,_0x534357);import{createIdentifier as _0x39c530,Disposable as _0x522e72,Tools as _0x570d2f,ObjectMatrix as _0x1f7bb9,Range as _0x563f2d,queryObjectMatrix as _0x2de447,isRangesEqual as _0x592f19,Rectangle as _0x5b3986,RANGE_TYPE as _0x3e1f4a,isFormulaString as _0x20a3db,insertMatrixArray as _0x4a2d3e,moveMatrixArray as _0x3d006d,spliceArray as _0x4aa10e,CommandType as _0x361ef7,JSON1 as _0x3dbcac,JSONX as _0x430aeb,ICommandService as _0x29be17,createInterceptorKey as _0xe27569,InterceptorManager as _0x17f18b,IUniverInstanceService as _0x2c40b4,UniverInstanceType as _0x2e0eae,SheetTypes as _0x527d41,LocaleType as _0x96e036,Inject as _0x55268a,Injector as _0x5cafd9,IResourceManagerService as _0x3dfe73,DependentOn as _0xd02a03,Plugin as _0x10409a,IConfigService as _0x70987}from'@univerjs/core';import{AddCommentMutation as _0x1b398d,DeleteCommentMutation as _0x5b7f88,UpdateCommentMutation as _0x2c3db1,UpdateCommentRefMutation as _0x2afd0c}from'@univerjs/thread-comment';import{AddConditionalRuleMutation as _0x4ae767,MoveConditionalRuleMutation as _0x396099,DeleteConditionalRuleMutation as _0x7e7ab0,SetConditionalRuleMutation as _0x36306e}from'@univerjs/sheets-conditional-formatting';import{AddDataValidationMutation as _0x3bedd8,RemoveDataValidationMutation as _0x13693a,UpdateRuleType as _0x4e3a21,UpdateDataValidationMutation as _0x4e1baf}from'@univerjs/data-validation';import{AddHyperLinkMutation as _0x3101d1,RemoveHyperLinkMutation as _0x336ff4,UpdateHyperLinkMutation as _0x4325f9,UpdateHyperLinkRefMutation as _0x3ece39}from'@univerjs/sheets-hyper-link';import{AddRangeProtectionMutation as _0x532e28,AddWorksheetMergeMutation as _0x4b0a3e,AddWorksheetProtectionMutation as _0xeba0d,InsertColMutation as _0x541ec4,InsertRowMutation as _0x224ab4,MoveColsMutation as _0x31c10b,MoveRangeMutation as _0x43f1cd,MoveRowsMutation as _0x454b7a,RemoveColMutation as _0xe5c4bd,RemoveNumfmtMutation as _0x3dcda7,RemoveWorksheetMergeMutation as _0x3c47fd,SetFrozenMutation as _0xe30a36,SetNumfmtMutation as _0x4075e,SetRangeProtectionMutation as _0x225790,SetRangeValuesMutation as _0x15eb0a,SetWorksheetColWidthMutation as _0x4cb95c,EmptyMutation as _0x1a62da,RemoveRowMutation as _0x1c90fa,SetSelectionsOperation as _0x23969e,SetWorksheetOrderMutation as _0xdfc809,RemoveSheetMutation as _0x2df765,SetWorksheetNameMutation as _0x5a5428,InsertColCommand as _0x172802,handleDefaultRangeChangeWithEffectRefCommands as _0x8e6890,RangeMergeUtil as _0x252072,handleBaseInsertRange as _0x44a143,handleBaseRemoveRange as _0x180da6,MoveColsCommand as _0x563de0,handleCommonDefaultRangeChangeWithEffectRefCommands as _0x44a031,ReorderRangeMutation as _0x587c63,SetColDataMutation as _0x35fae0,SetColHiddenMutation as _0x519e99,SetColVisibleMutation as _0x20806c,InsertRowCommand as _0x1bb87d,rotateRange as _0x48173f,SetRowDataMutation as _0x36a513,SetRowHiddenMutation as _0xce09a7,SetRowVisibleMutation as _0x2b245f,SetWorksheetRowAutoHeightMutation as _0x5357b7,SetWorksheetRowHeightMutation as _0xdb3bc1,SetWorksheetRowIsAutoHeightMutation as _0x386b55,handleBaseMoveRowsCols as _0x2e8050,MoveRowsCommand as _0x6ac3e3,RemoveColCommand as _0xf0fff1,RemoveRowCommand as _0x484aa2,SetTabColorMutation as _0x5a93b5,InsertSheetMutation as _0x4189f4,SetWorksheetProtectionMutation as _0x36d2a9}from'@univerjs/sheets';import{RemoveSheetsFilterMutation as _0x224fc7,SetSheetsFilterCriteriaMutation as _0x4112c4,SetSheetsFilterRangeMutation as _0x23aded,ReCalcSheetsFilterMutation as _0x581092}from'@univerjs/sheets-filter';import{singleReferenceToGrid as _0x426d2f,serializeRange as _0x572940,LexerTreeBuilder as _0x3ccc0f,sequenceNodeType as _0x329dfa,deserializeRangeWithSheetWithCache as _0x15fb8c,serializeRangeToRefString as _0x35dead,ErrorType as _0x5c62ee,generateStringWithSequence as _0x50f8e7}from'@univerjs/engine-formula';import{SetDrawingApplyMutation as _0x2c5cc6,DrawingApplyType as _0x2f30d6}from'@univerjs/sheets-drawing';import{RichTextEditingMutation as _0x5bfddc}from'@univerjs/docs';import{UniverLicensePlugin as _0x2a75a1}from'@univerjs-pro/license';function le(_0x4b71da){const _0x45bc55=_0x572182;return!!_0x4b71da[_0x45bc55(0x20c)];}function at(_0x2ff024){return!le(_0x2ff024);}function De(_0x1cdb86){return!!_0x1cdb86['error'];}function ce(_0x5d1bf8){const _0xbed45a=_0x572182;return!!_0x5d1bf8[_0xbed45a(0x20c)];}function qd(_0x1d431f){return!ce(_0x1d431f);}function Dr(_0x2fbb6e){return!!_0x2fbb6e['error'];}function Zd(_0x449a01){return!Dr(_0x449a01);}function Ar(_0xb2a207){const _0x38d38d=_0x572182;return!!_0xb2a207[_0x38d38d(0x20c)];}function Qd(_0x2488d){return!Ar(_0x2488d);}const Pe=_0x39c530(_0x572182(0xd4));class Tr extends _0x522e72{constructor(){const _0x2455d9=_0x572182;super(...arguments),se(this,_0x2455d9(0x123),new Map());}['dispose'](){this['_transformMap']['clear']();}[_0x572182(0x1e9)](_0x4b1b49){const _0x60cbd=_0x572182,{m1:_0x3d83a4,m2:_0x2784eb='any'}=_0x4b1b49;this['_transformMap'][_0x60cbd(0x110)](_0x3d83a4)||this[_0x60cbd(0x123)][_0x60cbd(0x1aa)](_0x3d83a4,new Map());const _0x1a1880=this['_transformMap']['get'](_0x3d83a4);if(_0x1a1880[_0x60cbd(0x110)](_0x2784eb))throw new Error('[TransformService]\x20Transform\x20algorithm\x20for\x20'+_0x3d83a4+_0x60cbd(0xb0)+_0x2784eb+'\x20already\x20exists.');_0x1a1880[_0x60cbd(0x1aa)](_0x2784eb,_0x4b1b49);}[_0x572182(0xb8)](_0x1b5f97,_0x4fb5b8,_0x59ee83){const _0x182b15=_0x572182;var _0x1d284e,_0x202747,_0x15e287,_0x2a4e75,_0x2d602c,_0x41911d;const _0x4be2a5=this[_0x182b15(0x123)],_0x157c1d=((_0x1d284e=_0x4be2a5[_0x182b15(0xc4)](_0x1b5f97['id']))==null?void 0x0:_0x1d284e[_0x182b15(0xc4)](_0x4fb5b8['id']))||((_0x202747=_0x4be2a5[_0x182b15(0xc4)](_0x1b5f97['id']))==null?void 0x0:_0x202747['get'](_0x182b15(0x131)))||((_0x15e287=_0x4be2a5[_0x182b15(0xc4)](_0x182b15(0x131)))==null?void 0x0:_0x15e287['get'](_0x4fb5b8['id']));if(_0x157c1d)return _0x59ee83?_0x157c1d[_0x182b15(0xcd)](_0x1b5f97,_0x4fb5b8,_0x59ee83):_0x157c1d[_0x182b15(0xcd)](_0x1b5f97,_0x4fb5b8);const _0x445cec=((_0x2a4e75=_0x4be2a5[_0x182b15(0xc4)](_0x4fb5b8['id']))==null?void 0x0:_0x2a4e75[_0x182b15(0xc4)](_0x1b5f97['id']))||((_0x2d602c=_0x4be2a5[_0x182b15(0xc4)](_0x4fb5b8['id']))==null?void 0x0:_0x2d602c[_0x182b15(0xc4)]('any'))||((_0x41911d=_0x4be2a5[_0x182b15(0xc4)](_0x182b15(0x131)))==null?void 0x0:_0x41911d[_0x182b15(0xc4)](_0x1b5f97['id']));if(_0x445cec){const _0x5b765b=_0x59ee83?_0x445cec[_0x182b15(0xcd)](_0x4fb5b8,_0x1b5f97,_0x59ee83):_0x445cec[_0x182b15(0xcd)](_0x4fb5b8,_0x1b5f97);return at(_0x5b765b)?_0x59ee83?{'m2Prime':_0x5b765b[_0x182b15(0x119)]}:{'m2Prime':_0x5b765b[_0x182b15(0x119)],'m1Prime':_0x5b765b[_0x182b15(0xcf)]}:_0x5b765b;}return{'m1Prime':_0x1b5f97,'m2Prime':_0x4fb5b8};}['transformMutations'](_0x4db820,_0x167e33,_0x29ed4f){const _0x2ee903=this['_rightInclineTransformMutations'](_0x4db820,_0x167e33);if(De(_0x2ee903))return _0x2ee903;if(_0x29ed4f)return{'m2Prime':_0x2ee903};const _0x218f46=this['_leftInclineTransformMutations'](_0x4db820,_0x167e33);return De(_0x218f46)?_0x218f46:{'m1Prime':_0x218f46,'m2Prime':_0x2ee903};}[_0x572182(0x1dd)](_0x2a6c75,_0x13bf6e){const _0x36353c=_0x572182,_0x519c74=_0x2a6c75[_0x36353c(0xf6)];let _0x741661;for(_0x741661=0x0;_0x741661<_0x519c74;_0x741661++){let _0x386778=[_0x2a6c75[_0x741661]],_0x40781c=[];for(let _0x203d89=0x0,_0x15a073=_0x13bf6e[_0x36353c(0xf6)];_0x203d89<_0x15a073;_0x203d89++){const _0x3e20bd=_0x13bf6e[_0x203d89];let _0x11c50b;if(_0x386778[_0x36353c(0xf6)]===0x0)_0x11c50b=[_0x3e20bd],_0x386778=[];else{if(_0x386778[_0x36353c(0xf6)]===0x1){const _0x86b10d=this[_0x36353c(0xb8)](_0x386778[0x0],_0x3e20bd);if(le(_0x86b10d))return _0x86b10d;if(_0x11c50b=Lt(_0x86b10d[_0x36353c(0xcf)]),!_0x86b10d[_0x36353c(0x119)])throw new Error(_0x36353c(0xdd));_0x386778=Lt(_0x86b10d[_0x36353c(0x119)]);}else{const _0x4c2124=this[_0x36353c(0x1dd)](_0x386778,[_0x3e20bd]);if(_0x4c2124[_0x36353c(0x20c)])return _0x4c2124;if(_0x11c50b=_0x4c2124,_0x203d89<_0x15a073-0x1){const _0x3dc5ae=this['_leftInclineTransformMutations'](_0x386778,[_0x3e20bd]);if(_0x3dc5ae[_0x36353c(0x20c)])return _0x3dc5ae;_0x386778=_0x3dc5ae;}}}_0x40781c=_0x40781c['concat'](_0x11c50b);}_0x13bf6e=_0x40781c;}return _0x13bf6e;}[_0x572182(0x14e)](_0x397685,_0x2c2d1a){const _0x40a97f=_0x572182,_0x493b32=_0x2c2d1a[_0x40a97f(0xf6)];let _0x55fa59;for(_0x55fa59=0x0;_0x55fa59<_0x493b32;_0x55fa59++){let _0x536860=[_0x2c2d1a[_0x55fa59]],_0x305afa=[];for(let _0x28d9a7=0x0,_0x69c033=_0x397685[_0x40a97f(0xf6)];_0x28d9a7<_0x69c033;_0x28d9a7++){const _0x3546da=_0x397685[_0x28d9a7];let _0x575351;if(_0x536860[_0x40a97f(0xf6)]===0x0)_0x575351=[_0x3546da],_0x536860=[];else{if(_0x536860['length']===0x1){const _0x2feb20=this['transformMutation'](_0x3546da,_0x536860[0x0]);if(le(_0x2feb20))return _0x2feb20;if(!_0x2feb20['m1Prime'])throw new Error(_0x40a97f(0xdd));_0x575351=Lt(_0x2feb20[_0x40a97f(0x119)]),_0x536860=Lt(_0x2feb20[_0x40a97f(0xcf)]);}else{const _0x261e76=this[_0x40a97f(0x14e)]([_0x3546da],_0x536860);if(_0x261e76['error'])return _0x261e76;if(_0x575351=_0x261e76,_0x28d9a7<_0x69c033-0x1){const _0x5239bc=this[_0x40a97f(0x1dd)]([_0x3546da],_0x536860);if(_0x5239bc[_0x40a97f(0x20c)])return _0x5239bc;_0x536860=_0x5239bc;}}}_0x305afa=_0x305afa[_0x40a97f(0x9a)](_0x575351);}_0x397685=_0x305afa;}return _0x397685;}[_0x572182(0xb1)](_0x2010e7,_0x42ee4b,_0xb802f9){const _0x7e555c=_0x572182;if(!Lr(_0x2010e7,_0x42ee4b))throw new Error('[TransformService]:\x20changesets\x20revisions\x20miss\x20match.\x20The\x20\x27baseRev\x27\x20of\x20c2\x20is\x20'+_0x42ee4b[0x0][_0x7e555c(0xe2)]+_0x7e555c(0xce)+_0x2010e7[0x0][_0x7e555c(0x10a)]+'.');const _0x337438=_0x2010e7[_0x7e555c(0xf6)],_0x109283=_0x42ee4b[_0x7e555c(0xf6)],_0x15d661=Ae(_0x337438,_0x109283+0x1),_0x544389=Ae(_0x337438+0x1,_0x109283);_0x2010e7[_0x7e555c(0xc5)]((_0x4b28c7,_0x172a2d)=>_0x15d661[_0x172a2d][0x0]=_0x4b28c7),_0x42ee4b['forEach']((_0x1d089b,_0x6987ba)=>_0x544389[0x0][_0x6987ba]=_0x1d089b);try{for(let _0x55e72d=0x0;_0x55e72d<_0x109283;_0x55e72d++)for(let _0xa96ba9=0x0;_0xa96ba9<_0x337438;_0xa96ba9++){const _0x61e001=_0x544389[_0xa96ba9][_0x55e72d],_0x5b994=_0x15d661[_0xa96ba9][_0x55e72d];if(!_0x61e001||!_0x5b994)throw new Error(_0x7e555c(0x1f8));const _0x5abde0=this[_0x7e555c(0x1d3)](_0x5b994[_0x7e555c(0x1d6)],_0x61e001[_0x7e555c(0x1d6)]);if(ce(_0x5abde0))return{'error':_0x5abde0[_0x7e555c(0x20c)]};_0x544389[_0xa96ba9+0x1][_0x55e72d]={..._0x61e001,'mutations':_0x5abde0[_0x7e555c(0xcf)]},_0x15d661[_0xa96ba9][_0x55e72d+0x1]={..._0x5b994,'mutations':_0x5abde0['m1Prime']};}return _0xb802f9?{'c2Prime':_0x544389[_0x337438]}:{'c1Prime':_0x15d661[_0x7e555c(0x1e0)](_0x290295=>_0x290295[_0x109283])[_0x7e555c(0x13b)](),'c2Prime':_0x544389[_0x337438]};}catch(_0x2aa032){throw console[_0x7e555c(0x20c)](_0x2aa032),_0x2aa032;}}[_0x572182(0x162)](_0x47dbbc,_0x172a45){const _0xd15100=_0x572182,_0x346ba9=_0x47dbbc['mutations'],_0x109572=this['transformMutations'](_0x346ba9,_0x172a45);return ce(_0x109572)?{'error':_0x109572[_0xd15100(0x20c)]}:{'m2Prime':_0x109572[_0xd15100(0xcf)],'c1Prime':{..._0x47dbbc,'mutations':_0x109572[_0xd15100(0x119)]}};}}function Lr(_0x527438,_0x2239e7){const _0x2e7d29=_0x572182;return _0x527438[0x0][_0x2e7d29(0x10a)]-0x1===_0x2239e7[0x0][_0x2e7d29(0xe2)];}function Ae(_0x2f5df0,_0x471a83){const _0x346c53=_0x572182;return new Array(_0x2f5df0)['fill'](void 0x0)[_0x346c53(0x1e0)](()=>new Array(_0x471a83));}function Lt(_0x293105){const _0x5a98cb=_0x572182;return Array[_0x5a98cb(0x16c)](_0x293105)?_0x293105:[_0x293105];}const kr={'m1':_0x1b398d['id'],'m2':_0x1b398d['id'],'handler':(_0x4d24b9,_0x565816)=>{const _0x30531b=_0x572182,_0x49533d=_0x4d24b9['params'],_0x305159=_0x565816[_0x30531b(0x8d)],_0x24680c={'m1Prime':_0x4d24b9,'m2Prime':_0x565816};if(_0x49533d[_0x30531b(0xdb)]!==_0x305159[_0x30531b(0xdb)]||_0x49533d[_0x30531b(0x20b)]!==_0x305159['subUnitId']||_0x49533d[_0x30531b(0x95)][_0x30531b(0x1c7)]!==_0x305159[_0x30531b(0x95)][_0x30531b(0x1c7)])return _0x24680c;if(!_0x49533d[_0x30531b(0x95)][_0x30531b(0x7c)]&&!_0x305159['comment']['parentId']){const _0x5e525f=_0x570d2f['deepClone'](_0x565816);return _0x5e525f[_0x30531b(0x8d)]['comment'][_0x30531b(0x7c)]=_0x4d24b9['params'][_0x30531b(0x95)]['id'],{'m1Prime':[{'id':_0x5b7f88['id'],'params':{'unitId':_0x49533d[_0x30531b(0xdb)],'subUnitId':_0x305159[_0x30531b(0x20b)],'commentId':_0x305159[_0x30531b(0x95)]['id']}},_0x4d24b9,_0x5e525f],'m2Prime':[_0x5e525f]};}return _0x24680c;}},xr={'m1':_0x4ae767['id'],'m2':_0x4ae767['id'],'handler'(_0x304b39,_0x16776f){const _0x133344=_0x572182;if(_0x304b39[_0x133344(0x8d)]['unitId']!==_0x16776f[_0x133344(0x8d)][_0x133344(0xdb)]||_0x304b39['params'][_0x133344(0x20b)]!==_0x16776f[_0x133344(0x8d)][_0x133344(0x20b)])return{'m1Prime':_0x304b39,'m2Prime':_0x16776f};const {unitId:_0x26a31f,subUnitId:_0x3406ad}=_0x304b39[_0x133344(0x8d)],_0x12f4eb=_0x570d2f['deepClone'](_0x304b39),_0x69743c=_0x570d2f[_0x133344(0xb4)](_0x16776f),_0x5c15c9=[_0x12f4eb],_0x34bcfe={'unitId':_0x26a31f,'subUnitId':_0x3406ad,'start':{'id':_0x69743c[_0x133344(0x8d)][_0x133344(0xea)][_0x133344(0x10b)],'type':_0x133344(0x12a)},'end':{'id':_0x69743c[_0x133344(0x8d)][_0x133344(0xea)]['cfId'],'type':_0x133344(0x18a)}};return _0x5c15c9['push']({'id':_0x396099['id'],'params':_0x34bcfe}),{'m1Prime':_0x5c15c9,'m2Prime':_0x69743c};}};function oe(_0xffa448,_0x5992f,_0x3218da,_0x3f034f){const _0x4f09c7=_0x572182,_0x18ba6f=new _0x1f7bb9();_0x3218da['forEach'](_0x1ca778=>{const _0x24d6e1=_0x2b5d;_0x1ca778[_0x24d6e1(0xd1)][_0x24d6e1(0xc5)](_0x407ef7=>{const _0x4cae6c=_0x24d6e1;_0x563f2d[_0x4cae6c(0x1f3)](_0x407ef7,(_0x5a2972,_0x512267)=>{_0x18ba6f['setValue'](_0x5a2972,_0x512267,_0x1ca778['uid']);});});}),_0x3f034f[_0x4f09c7(0xc5)](_0x49d059=>{const _0x567e19=_0x4f09c7;_0x49d059[_0x567e19(0xd1)][_0x567e19(0xc5)](_0x15bf5a=>{const _0x391095=_0x567e19;_0x563f2d[_0x391095(0x1f3)](_0x15bf5a,(_0x5d42cb,_0x2e6b4e)=>{const _0x491b6c=_0x391095;_0x18ba6f[_0x491b6c(0x134)](_0x5d42cb,_0x2e6b4e,_0x49d059[_0x491b6c(0x96)]);});});});const _0x127965=[];return _0x3218da[_0x4f09c7(0xc5)](_0x2406fe=>{const _0x3660ae=_0x4f09c7,_0x2dd987=_0x2de447(_0x18ba6f,_0x206b89=>_0x206b89===_0x2406fe[_0x3660ae(0x96)]);if(_0x2dd987[_0x3660ae(0xf6)]){if(!_0x592f19(_0x2dd987,_0x2406fe[_0x3660ae(0xd1)])){const _0x2592ca={'ruleId':_0x2406fe['uid'],'unitId':_0xffa448,'subUnitId':_0x5992f,'payload':{'type':_0x4e3a21[_0x3660ae(0x94)],'payload':_0x2dd987}};_0x127965['push']({'id':_0x4e1baf['id'],'params':_0x2592ca});}}else{const _0x36ebbc={'ruleId':_0x2406fe[_0x3660ae(0x96)],'unitId':_0xffa448,'subUnitId':_0x5992f};_0x127965[_0x3660ae(0x1ca)]({'id':_0x13693a['id'],'params':_0x36ebbc});}}),_0x127965;}function kt(_0x828021,_0xc41c4d){const _0x523d88=_0x572182,_0x4d8ca2=_0x570d2f['deepClone'](Array[_0x523d88(0x16c)](_0x828021['params'][_0x523d88(0xea)])?_0x828021[_0x523d88(0x8d)][_0x523d88(0xea)]:[_0x828021[_0x523d88(0x8d)][_0x523d88(0xea)]]);return _0xc41c4d['forEach'](_0x4e40d6=>{const _0x2514b9=_0x523d88;if(_0x4e40d6['id']===_0x4e1baf['id']){const _0x43cafe=_0x4e40d6,_0x3b631e=_0x4d8ca2[_0x2514b9(0xa1)](_0x55fa31=>_0x55fa31[_0x2514b9(0x96)]===_0x43cafe[_0x2514b9(0x8d)]['ruleId']);_0x3b631e['ranges']=_0x43cafe[_0x2514b9(0x8d)][_0x2514b9(0x176)]['payload'];}else{if(_0x4e40d6['id']===_0x13693a['id']){const _0x538bde=_0x4d8ca2[_0x2514b9(0x1c6)](_0x27db7e=>_0x27db7e[_0x2514b9(0x96)]===_0x4e40d6[_0x2514b9(0x8d)]['ruleId']);_0x4d8ca2[_0x538bde]=null;}}}),_0x4d8ca2['filter'](Boolean)[_0x523d88(0xf6)]?[{..._0x828021,'params':{..._0x828021[_0x523d88(0x8d)],'rule':_0x4d8ca2[_0x523d88(0x9f)](Boolean)}}]:[];}const Hr={'m1':_0x3bedd8['id'],'m2':_0x3bedd8['id'],'handler':(_0xc2b488,_0x4590d1)=>{const _0x533275=_0x572182,_0x35b031={'m1Prime':_0xc2b488,'m2Prime':_0x4590d1},_0x205c45=_0xc2b488['params'],_0x57cea1=_0x4590d1[_0x533275(0x8d)];if(_0x205c45['unitId']!==_0x57cea1['unitId']||_0x205c45['subUnitId']!==_0x57cea1[_0x533275(0x20b)])return _0x35b031;const _0x4ea139=_0x570d2f[_0x533275(0xb4)](_0xc2b488),_0x3e7ab3=_0x570d2f['deepClone'](_0x4590d1),_0x1d151a=_0x205c45[_0x533275(0xdb)],_0xdddd07=_0x57cea1['subUnitId'],_0x237a98=_0x4ea139[_0x533275(0x8d)][_0x533275(0xea)],_0x498cae=_0x3e7ab3['params'][_0x533275(0xea)];if(Array[_0x533275(0x16c)](_0x237a98)&&Array[_0x533275(0x16c)](_0x498cae))return{'m1Prime':[],'m2Prime':[]};if(Array['isArray'](_0x237a98)){_0x4ea139[_0x533275(0x8d)][_0x533275(0x17b)]=0x0;const _0x10a5cd=oe(_0x1d151a,_0xdddd07,_0x237a98,[_0x498cae]);return{'m1Prime':kt(_0x4ea139,_0x10a5cd),'m2Prime':[..._0x10a5cd,_0x3e7ab3]};}if(Array['isArray'](_0x498cae)){const _0x1ba151=oe(_0x1d151a,_0xdddd07,_0x498cae,[_0x237a98]);return _0x3e7ab3['params'][_0x533275(0x17b)]=0x0,{'m1Prime':kt(_0x4ea139,_0x1ba151),'m2Prime':[..._0x1ba151,_0x3e7ab3]};}const _0x28d538=oe(_0x1d151a,_0xdddd07,[_0x237a98],[_0x498cae]);return _0x3e7ab3[_0x533275(0x8d)][_0x533275(0x17b)]=-0x1,{'m1Prime':kt(_0x4ea139,_0x28d538),'m2Prime':[..._0x28d538,_0x3e7ab3]};}},Fr={'m1':_0x3bedd8['id'],'m2':_0x4e1baf['id'],'handler':(_0x1b0960,_0x2773c8)=>{const _0x55a5fb=_0x572182,_0x21f881={'m1Prime':_0x1b0960,'m2Prime':_0x2773c8},_0x350d02=_0x1b0960[_0x55a5fb(0x8d)],_0x247e28=_0x2773c8[_0x55a5fb(0x8d)];if(_0x350d02['unitId']!==_0x247e28[_0x55a5fb(0xdb)]||_0x350d02[_0x55a5fb(0x20b)]!==_0x247e28['subUnitId'])return _0x21f881;if(_0x2773c8[_0x55a5fb(0x8d)][_0x55a5fb(0x176)][_0x55a5fb(0x120)]===_0x4e3a21[_0x55a5fb(0x94)]){const {unitId:_0x1f98d4,subUnitId:_0x907f29}=_0x1b0960[_0x55a5fb(0x8d)],_0x192890=Array['isArray'](_0x1b0960[_0x55a5fb(0x8d)][_0x55a5fb(0xea)])?_0x1b0960['params']['rule']:[_0x1b0960[_0x55a5fb(0x8d)]['rule']],_0x49814e=[],_0x2170bd=new _0x1f7bb9();return _0x192890[_0x55a5fb(0xc5)](_0x554fce=>{const _0x7b8949=_0x55a5fb;_0x554fce['ranges'][_0x7b8949(0xc5)](_0x193158=>{const _0x14780c=_0x7b8949;_0x563f2d[_0x14780c(0x1f3)](_0x193158,(_0x1f597c,_0x3f2bc9)=>{const _0x3b58a6=_0x14780c;_0x2170bd[_0x3b58a6(0x134)](_0x1f597c,_0x3f2bc9,_0x554fce[_0x3b58a6(0x96)]);});});}),_0x2773c8[_0x55a5fb(0x8d)][_0x55a5fb(0x176)][_0x55a5fb(0x176)][_0x55a5fb(0xc5)](_0x311be2=>{_0x563f2d['foreach'](_0x311be2,(_0x557159,_0x449ffa)=>{const _0x3a46ef=_0x2b5d;_0x2170bd[_0x3a46ef(0x134)](_0x557159,_0x449ffa,_0x2773c8[_0x3a46ef(0x8d)]['ruleId']);});}),_0x192890[_0x55a5fb(0xc5)](_0x4eeedc=>{const _0x3d34bd=_0x55a5fb,_0x41cfb3=_0x2de447(_0x2170bd,_0xa88176=>_0xa88176===_0x4eeedc[_0x3d34bd(0x96)]);_0x592f19(_0x41cfb3,_0x4eeedc[_0x3d34bd(0xd1)])||(_0x41cfb3[_0x3d34bd(0xf6)]?_0x49814e[_0x3d34bd(0x1ca)]({'id':_0x4e1baf['id'],'params':{'unitId':_0x1f98d4,'subUnitId':_0x907f29,'ruleId':_0x4eeedc['uid'],'payload':{'type':_0x4e3a21[_0x3d34bd(0x94)],'payload':_0x41cfb3}}}):_0x49814e[_0x3d34bd(0x1ca)]({'id':_0x13693a['id'],'params':{'unitId':_0x1f98d4,'subUnitId':_0x907f29,'ruleId':_0x4eeedc[_0x3d34bd(0x96)]}}));}),{'m1Prime':kt(_0x1b0960,_0x49814e),'m2Prime':[..._0x49814e,_0x2773c8]};}return _0x21f881;}},Br={'m1':_0x3101d1['id'],'m2':_0x3101d1['id'],'handler':(_0xd7e287,_0x5c94d2)=>{const _0x5e83c1=_0x572182,_0x63b6c8=_0xd7e287[_0x5e83c1(0x8d)],_0x360777=_0x5c94d2[_0x5e83c1(0x8d)];return _0x63b6c8[_0x5e83c1(0xdb)]===_0x360777[_0x5e83c1(0xdb)]&&_0x63b6c8[_0x5e83c1(0x20b)]===_0x360777[_0x5e83c1(0x20b)]&&_0x63b6c8[_0x5e83c1(0x1b8)][_0x5e83c1(0x1cb)]===_0x360777['link'][_0x5e83c1(0x1cb)]&&_0x63b6c8[_0x5e83c1(0x1b8)][_0x5e83c1(0x14c)]===_0x360777[_0x5e83c1(0x1b8)][_0x5e83c1(0x14c)]?{'m2Prime':_0x5c94d2,'m1Prime':[]}:{'m1Prime':_0xd7e287,'m2Prime':_0x5c94d2};}},Gr={'m1':_0x532e28['id'],'m2':_0x1b398d['id'],'handler':(_0x5a6a81,_0x3282f2)=>{const _0x4131e8=_0x572182,_0xaf90e9={'m1Prime':_0x5a6a81,'m2Prime':_0x3282f2};return _0x5a6a81['params'][_0x4131e8(0xdb)]!==_0x3282f2['params']['unitId']||_0x5a6a81[_0x4131e8(0x8d)][_0x4131e8(0x20b)]!==_0x3282f2[_0x4131e8(0x8d)]['subUnitId']?_0xaf90e9:{'error':new Error(_0x4131e8(0x181))};}},jr={'m1':_0x532e28['id'],'m2':_0x4ae767['id'],'handler':(_0x4cacdc,_0x735bcc)=>{const _0x417410=_0x572182,_0x3d9e69={'m1Prime':_0x4cacdc,'m2Prime':_0x735bcc};if(_0x4cacdc[_0x417410(0x8d)][_0x417410(0xdb)]!==_0x735bcc[_0x417410(0x8d)]['unitId']||_0x4cacdc[_0x417410(0x8d)][_0x417410(0x20b)]!==_0x735bcc[_0x417410(0x8d)]['subUnitId'])return _0x3d9e69;const _0x4c1472=_0x4cacdc[_0x417410(0x8d)][_0x417410(0x1a2)][_0x417410(0x1e0)](_0x580271=>_0x580271[_0x417410(0xd1)])[_0x417410(0x13b)](),_0x4c305e=_0x735bcc[_0x417410(0x8d)][_0x417410(0xea)][_0x417410(0xd1)];return _0x4c1472[_0x417410(0xaf)](_0x2e0072=>_0x4c305e[_0x417410(0xaf)](_0x55cf92=>_0x5b3986['intersects'](_0x2e0072,_0x55cf92)))?{'error':new Error(_0x417410(0xae))}:_0x3d9e69;}},$r={'m1':_0x532e28['id'],'m2':_0x532e28['id'],'handler':(_0x349ac8,_0x8a7ec)=>{const _0x554dc2=_0x572182,_0x27ce1a={'m1Prime':_0x349ac8,'m2Prime':_0x8a7ec};if(_0x349ac8['params']['unitId']!==_0x8a7ec['params'][_0x554dc2(0xdb)]||_0x349ac8['params'][_0x554dc2(0x20b)]!==_0x8a7ec[_0x554dc2(0x8d)][_0x554dc2(0x20b)])return _0x27ce1a;const _0x18dce1=_0x349ac8[_0x554dc2(0x8d)][_0x554dc2(0x1a2)][_0x554dc2(0x1e0)](_0x9f360b=>_0x9f360b['ranges'])[_0x554dc2(0x13b)](),_0x523fd9=_0x8a7ec[_0x554dc2(0x8d)][_0x554dc2(0x1a2)][_0x554dc2(0x1e0)](_0x598e87=>_0x598e87['ranges'])[_0x554dc2(0x13b)]();return _0x18dce1[_0x554dc2(0xaf)](_0x4d7c4f=>_0x523fd9[_0x554dc2(0xaf)](_0x52cab3=>_0x5b3986['intersects'](_0x4d7c4f,_0x52cab3)))?{'error':new Error(_0x554dc2(0x141))}:_0x27ce1a;}},Yr={'m1':_0x532e28['id'],'m2':_0x4b0a3e['id'],'handler':(_0x52f751,_0x4e05d1)=>{const _0x3ea399=_0x572182,_0x2140bf={'m1Prime':_0x52f751,'m2Prime':_0x4e05d1};if(_0x52f751[_0x3ea399(0x8d)][_0x3ea399(0xdb)]!==_0x4e05d1[_0x3ea399(0x8d)][_0x3ea399(0xdb)]||_0x52f751[_0x3ea399(0x8d)]['subUnitId']!==_0x4e05d1[_0x3ea399(0x8d)][_0x3ea399(0x20b)])return _0x2140bf;const _0x59e21c=_0x52f751[_0x3ea399(0x8d)][_0x3ea399(0x1a2)][_0x3ea399(0x1e0)](_0x5495eb=>_0x5495eb[_0x3ea399(0xd1)])['flat'](),_0x4528f3=_0x4e05d1[_0x3ea399(0x8d)][_0x3ea399(0xd1)];return _0x59e21c[_0x3ea399(0xaf)](_0x1c518e=>_0x4528f3['some'](_0x2fb7e1=>_0x5b3986['intersects'](_0x1c518e,_0x2fb7e1)))?{'error':new Error(_0x3ea399(0x1d8))}:_0x2140bf;}},Jr={'m1':_0x532e28['id'],'m2':_0xeba0d['id'],'handler':(_0x4d0176,_0x1746fb)=>{const _0x4f49c6=_0x572182,_0x58517e={'m1Prime':_0x4d0176,'m2Prime':_0x1746fb};return _0x4d0176['params']['unitId']!==_0x1746fb[_0x4f49c6(0x8d)][_0x4f49c6(0xdb)]||_0x4d0176[_0x4f49c6(0x8d)]['subUnitId']!==_0x1746fb[_0x4f49c6(0x8d)][_0x4f49c6(0xea)][_0x4f49c6(0x20b)]?_0x58517e:{'error':new Error(_0x4f49c6(0xbf))};}},Xr={'m1':_0x532e28['id'],'m2':_0x7e7ab0['id'],'handler':(_0x599360,_0x9504bf)=>{const _0x470cb9=_0x572182,_0x27e1a2={'m1Prime':_0x599360,'m2Prime':_0x9504bf};return _0x599360['params'][_0x470cb9(0xdb)]!==_0x9504bf[_0x470cb9(0x8d)][_0x470cb9(0xdb)]||_0x599360[_0x470cb9(0x8d)][_0x470cb9(0x20b)]!==_0x9504bf['params'][_0x470cb9(0x20b)]?_0x27e1a2:{'error':new Error('add\x20range\x20protection\x20is\x20conflict\x20with\x20delete\x20conditional\x20formatting\x20rule')};}},Kr={'m1':_0x532e28['id'],'m2':_0x541ec4['id'],'handler':(_0x5389a5,_0x537b6f)=>{const _0x1ec535=_0x572182,_0x43708b={'m1Prime':_0x5389a5,'m2Prime':_0x537b6f};if(_0x5389a5[_0x1ec535(0x8d)][_0x1ec535(0xdb)]!==_0x537b6f[_0x1ec535(0x8d)][_0x1ec535(0xdb)]||_0x5389a5[_0x1ec535(0x8d)]['subUnitId']!==_0x537b6f[_0x1ec535(0x8d)][_0x1ec535(0x20b)])return _0x43708b;const _0x50c736=_0x5389a5[_0x1ec535(0x8d)][_0x1ec535(0x1a2)][_0x1ec535(0x1e0)](_0x4d8a39=>_0x4d8a39[_0x1ec535(0xd1)])[_0x1ec535(0x13b)](),_0x250e29=_0x537b6f[_0x1ec535(0x8d)][_0x1ec535(0x19f)];return _0x50c736[_0x1ec535(0xaf)](_0x4a44ca=>_0x5b3986['intersects'](_0x4a44ca,_0x250e29))?{'error':new Error(_0x1ec535(0x19a))}:_0x43708b;}},zr={'m1':_0x532e28['id'],'m2':_0x224ab4['id'],'handler':(_0x526b38,_0x287371)=>{const _0x10c4e0=_0x572182,_0x3f02ef={'m1Prime':_0x526b38,'m2Prime':_0x287371};if(_0x526b38['params'][_0x10c4e0(0xdb)]!==_0x287371[_0x10c4e0(0x8d)]['unitId']||_0x526b38[_0x10c4e0(0x8d)][_0x10c4e0(0x20b)]!==_0x287371[_0x10c4e0(0x8d)][_0x10c4e0(0x20b)])return _0x3f02ef;const _0xcac1b6=_0x526b38[_0x10c4e0(0x8d)][_0x10c4e0(0x1a2)][_0x10c4e0(0x1e0)](_0x197e1f=>_0x197e1f['ranges'])[_0x10c4e0(0x13b)](),_0x57b945=_0x287371[_0x10c4e0(0x8d)][_0x10c4e0(0x19f)];return _0xcac1b6[_0x10c4e0(0xaf)](_0x47b7e1=>_0x5b3986[_0x10c4e0(0x7a)](_0x47b7e1,_0x57b945))?{'error':new Error(_0x10c4e0(0x16d))}:_0x3f02ef;}},qr={'m1':_0x532e28['id'],'m2':_0x31c10b['id'],'handler':(_0x54f50f,_0x31ba5d)=>{const _0x21d3df=_0x572182,_0x5563a8={'m1Prime':_0x54f50f,'m2Prime':_0x31ba5d};if(_0x54f50f[_0x21d3df(0x8d)]['unitId']!==_0x31ba5d[_0x21d3df(0x8d)][_0x21d3df(0xdb)]||_0x54f50f[_0x21d3df(0x8d)][_0x21d3df(0x20b)]!==_0x31ba5d[_0x21d3df(0x8d)][_0x21d3df(0x20b)])return _0x5563a8;const _0x5b47cd=_0x54f50f['params']['rules'][_0x21d3df(0x1e0)](_0x67fce6=>_0x67fce6[_0x21d3df(0xd1)])[_0x21d3df(0x13b)](),_0x4323b2=[_0x31ba5d['params']['sourceRange'],_0x31ba5d[_0x21d3df(0x8d)][_0x21d3df(0x1d0)]];return _0x5b47cd[_0x21d3df(0xaf)](_0x788aa=>_0x4323b2[_0x21d3df(0xaf)](_0x502156=>_0x5b3986[_0x21d3df(0x7a)](_0x788aa,_0x502156)))?{'error':new Error(_0x21d3df(0x190))}:_0x5563a8;}},Zr={'m1':_0x532e28['id'],'m2':_0x43f1cd['id'],'handler':(_0x307799,_0x5c4057)=>{const _0x23577d=_0x572182,_0x3e99b8={'m1Prime':_0x307799,'m2Prime':_0x5c4057};if(_0x307799[_0x23577d(0x8d)]['unitId']!==_0x5c4057[_0x23577d(0x8d)][_0x23577d(0xdb)]||_0x307799['params']['subUnitId']!==_0x5c4057['params'][_0x23577d(0x1b0)][_0x23577d(0x20b)])return _0x3e99b8;const _0x5234d4=_0x307799[_0x23577d(0x8d)]['rules'][_0x23577d(0x1e0)](_0x261016=>_0x261016[_0x23577d(0xd1)])['flat'](),_0x4ef111=new _0x1f7bb9(_0x5c4057[_0x23577d(0x8d)][_0x23577d(0x1b0)]['value'])[_0x23577d(0x182)](),_0x113951=new _0x1f7bb9(_0x5c4057[_0x23577d(0x8d)]['to'][_0x23577d(0x17e)])[_0x23577d(0x182)](),_0x280997=[_0x4ef111,_0x113951];return _0x5234d4[_0x23577d(0xaf)](_0x2717a2=>_0x280997[_0x23577d(0xaf)](_0x238f3d=>_0x5b3986[_0x23577d(0x7a)](_0x2717a2,_0x238f3d)))?{'error':new Error(_0x23577d(0xb6))}:_0x3e99b8;}},Qr={'m1':_0x532e28['id'],'m2':_0x454b7a['id'],'handler':(_0x450808,_0x23f706)=>{const _0x507a6a=_0x572182,_0x5c23c5={'m1Prime':_0x450808,'m2Prime':_0x23f706};if(_0x450808[_0x507a6a(0x8d)][_0x507a6a(0xdb)]!==_0x23f706[_0x507a6a(0x8d)][_0x507a6a(0xdb)]||_0x450808[_0x507a6a(0x8d)]['subUnitId']!==_0x23f706['params'][_0x507a6a(0x20b)])return _0x5c23c5;const _0x42ff4c=_0x450808['params'][_0x507a6a(0x1a2)]['map'](_0x524cc9=>_0x524cc9['ranges'])[_0x507a6a(0x13b)](),_0x5c9d28=[_0x23f706['params'][_0x507a6a(0x11d)],_0x23f706[_0x507a6a(0x8d)][_0x507a6a(0x1d0)]];return _0x42ff4c[_0x507a6a(0xaf)](_0x3dc014=>_0x5c9d28[_0x507a6a(0xaf)](_0x3bdbd3=>_0x5b3986[_0x507a6a(0x7a)](_0x3dc014,_0x3bdbd3)))?{'error':new Error(_0x507a6a(0x107))}:_0x5c23c5;}},tn={'m1':_0x532e28['id'],'m2':_0xe5c4bd['id'],'handler':(_0x440ab3,_0x46f1a0)=>{const _0x208b97=_0x572182,_0x4a07ff={'m1Prime':_0x440ab3,'m2Prime':_0x46f1a0};if(_0x440ab3['params'][_0x208b97(0xdb)]!==_0x46f1a0[_0x208b97(0x8d)]['unitId']||_0x440ab3[_0x208b97(0x8d)][_0x208b97(0x20b)]!==_0x46f1a0['params'][_0x208b97(0x20b)])return _0x4a07ff;const _0x3efe46=_0x440ab3[_0x208b97(0x8d)]['rules']['map'](_0x5dbade=>_0x5dbade[_0x208b97(0xd1)])[_0x208b97(0x13b)](),_0x2cbd2e=_0x46f1a0[_0x208b97(0x8d)][_0x208b97(0x19f)];return _0x3efe46[_0x208b97(0xaf)](_0x17169d=>_0x5b3986['intersects'](_0x17169d,_0x2cbd2e))?{'error':new Error(_0x208b97(0x1d4))}:_0x4a07ff;}},en={'m1':_0x532e28['id'],'m2':_0x13693a['id'],'handler':(_0x4f519d,_0x1ea471)=>{const _0xa32c4d=_0x572182,_0x3eb830={'m1Prime':_0x4f519d,'m2Prime':_0x1ea471};return _0x4f519d[_0xa32c4d(0x8d)][_0xa32c4d(0xdb)]!==_0x1ea471[_0xa32c4d(0x8d)][_0xa32c4d(0xdb)]||_0x4f519d['params'][_0xa32c4d(0x20b)]!==_0x1ea471['params'][_0xa32c4d(0x20b)]?_0x3eb830:{'error':new Error(_0xa32c4d(0x20f))};}},rn={'m1':_0x532e28['id'],'m2':_0x3dcda7['id'],'handler':(_0x2c5f6b,_0x1aef9f)=>{const _0x5b2052=_0x572182,_0x2b9dfa={'m1Prime':_0x2c5f6b,'m2Prime':_0x1aef9f};if(_0x2c5f6b['params'][_0x5b2052(0xdb)]!==_0x1aef9f[_0x5b2052(0x8d)][_0x5b2052(0xdb)]||_0x2c5f6b[_0x5b2052(0x8d)][_0x5b2052(0x20b)]!==_0x1aef9f[_0x5b2052(0x8d)][_0x5b2052(0x20b)])return _0x2b9dfa;const _0x5662f9=_0x2c5f6b[_0x5b2052(0x8d)][_0x5b2052(0x1a2)][_0x5b2052(0x1e0)](_0x22a593=>_0x22a593[_0x5b2052(0xd1)])[_0x5b2052(0x13b)](),_0x19318d=_0x1aef9f[_0x5b2052(0x8d)][_0x5b2052(0xd1)];return _0x5662f9[_0x5b2052(0xaf)](_0x2f04f0=>_0x19318d[_0x5b2052(0xaf)](_0x312e3f=>_0x5b3986[_0x5b2052(0x7a)](_0x2f04f0,_0x312e3f)))?{'error':new Error('add\x20range\x20protection\x20is\x20conflict\x20with\x20remove\x20numfmt')}:_0x2b9dfa;}},nn={'m1':_0x532e28['id'],'m2':_0x224fc7['id'],'handler':(_0x34ab7e,_0x2c6f5b)=>{const _0x525b61=_0x572182,_0x2bc2e0={'m1Prime':_0x34ab7e,'m2Prime':_0x2c6f5b};return _0x34ab7e[_0x525b61(0x8d)][_0x525b61(0xdb)]!==_0x2c6f5b['params'][_0x525b61(0xdb)]||_0x34ab7e['params'][_0x525b61(0x20b)]!==_0x2c6f5b['params'][_0x525b61(0x20b)]?_0x2bc2e0:{'error':new Error(_0x525b61(0xa3))};}},an={'m1':_0x532e28['id'],'m2':_0x3c47fd['id'],'handler':(_0x488cf3,_0xef2c39)=>{const _0x1ff910=_0x572182,_0x31eaea={'m1Prime':_0x488cf3,'m2Prime':_0xef2c39};if(_0x488cf3[_0x1ff910(0x8d)][_0x1ff910(0xdb)]!==_0xef2c39[_0x1ff910(0x8d)][_0x1ff910(0xdb)]||_0x488cf3[_0x1ff910(0x8d)]['subUnitId']!==_0xef2c39[_0x1ff910(0x8d)][_0x1ff910(0x20b)])return _0x31eaea;const _0x2f17de=_0x488cf3['params']['rules']['map'](_0x4103f8=>_0x4103f8[_0x1ff910(0xd1)])['flat'](),_0x319203=_0xef2c39[_0x1ff910(0x8d)][_0x1ff910(0xd1)];return _0x2f17de[_0x1ff910(0xaf)](_0x3ebaff=>_0x319203[_0x1ff910(0xaf)](_0x54c91c=>_0x5b3986[_0x1ff910(0x7a)](_0x3ebaff,_0x54c91c)))?{'error':new Error(_0x1ff910(0x1e1))}:_0x31eaea;}},sn={'m1':_0x532e28['id'],'m2':_0x36306e['id'],'handler':(_0x5d222c,_0x5b7302)=>{const _0x528b4d=_0x572182,_0x2feb4c={'m1Prime':_0x5d222c,'m2Prime':_0x5b7302};if(_0x5d222c[_0x528b4d(0x8d)][_0x528b4d(0xdb)]!==_0x5b7302[_0x528b4d(0x8d)]['unitId']||_0x5d222c[_0x528b4d(0x8d)][_0x528b4d(0x20b)]!==_0x5b7302[_0x528b4d(0x8d)]['subUnitId'])return _0x2feb4c;const _0x500a4c=_0x5d222c[_0x528b4d(0x8d)][_0x528b4d(0x1a2)][_0x528b4d(0x1e0)](_0x12ff72=>_0x12ff72[_0x528b4d(0xd1)])[_0x528b4d(0x13b)](),_0x233a4f=_0x5b7302[_0x528b4d(0x8d)][_0x528b4d(0xea)][_0x528b4d(0xd1)];return _0x500a4c[_0x528b4d(0xaf)](_0x3ec76a=>_0x233a4f[_0x528b4d(0xaf)](_0x713ed7=>_0x5b3986[_0x528b4d(0x7a)](_0x3ec76a,_0x713ed7)))?{'error':new Error(_0x528b4d(0x1f5))}:_0x2feb4c;}},on={'m1':_0x532e28['id'],'m2':_0xe30a36['id'],'handler':(_0x498f30,_0x3f17d0)=>{const _0x1a8ba7=_0x572182,_0x2be1d1={'m1Prime':_0x498f30,'m2Prime':_0x3f17d0};if(_0x498f30[_0x1a8ba7(0x8d)][_0x1a8ba7(0xdb)]!==_0x3f17d0[_0x1a8ba7(0x8d)][_0x1a8ba7(0xdb)]||_0x498f30[_0x1a8ba7(0x8d)][_0x1a8ba7(0x20b)]!==_0x3f17d0['params'][_0x1a8ba7(0x20b)])return _0x2be1d1;const _0x484387=_0x498f30[_0x1a8ba7(0x8d)][_0x1a8ba7(0x1a2)][_0x1a8ba7(0x1e0)](_0x2b1f29=>_0x2b1f29['ranges'])['flat'](),_0x45501e=[{'startRow':_0x3f17d0[_0x1a8ba7(0x8d)][_0x1a8ba7(0x102)],'endRow':_0x3f17d0[_0x1a8ba7(0x8d)][_0x1a8ba7(0x102)],'startColumn':_0x3f17d0[_0x1a8ba7(0x8d)]['startColumn'],'endColumn':_0x3f17d0[_0x1a8ba7(0x8d)][_0x1a8ba7(0x15a)]}];return _0x484387['some'](_0x4afcc6=>_0x45501e[_0x1a8ba7(0xaf)](_0x3aee1b=>_0x5b3986[_0x1a8ba7(0x7a)](_0x4afcc6,_0x3aee1b)))?{'error':new Error(_0x1a8ba7(0x11c))}:_0x2be1d1;}},dn={'m1':_0x532e28['id'],'m2':_0x4075e['id'],'handler':(_0x31eee9,_0x12b0b9)=>{const _0x467542=_0x572182,_0x2b97f8={'m1Prime':_0x31eee9,'m2Prime':_0x12b0b9};return _0x31eee9['params'][_0x467542(0xdb)]!==_0x12b0b9['params'][_0x467542(0xdb)]||_0x31eee9['params']['subUnitId']!==_0x12b0b9[_0x467542(0x8d)][_0x467542(0x20b)]?_0x2b97f8:{'error':new Error(_0x467542(0x1dc))};}},mn={'m1':_0x532e28['id'],'m2':_0x225790['id'],'handler':(_0x3c9bfb,_0x2bc88d)=>{const _0x28ffbc=_0x572182,_0x49ff6a={'m1Prime':_0x3c9bfb,'m2Prime':_0x2bc88d};if(_0x3c9bfb[_0x28ffbc(0x8d)][_0x28ffbc(0xdb)]!==_0x2bc88d[_0x28ffbc(0x8d)]['unitId']||_0x3c9bfb[_0x28ffbc(0x8d)][_0x28ffbc(0x20b)]!==_0x2bc88d[_0x28ffbc(0x8d)][_0x28ffbc(0x20b)])return _0x49ff6a;const _0x372065=_0x3c9bfb[_0x28ffbc(0x8d)]['rules'][_0x28ffbc(0x1e0)](_0x196a40=>_0x196a40[_0x28ffbc(0xd1)])[_0x28ffbc(0x13b)](),_0x1e5a7e=_0x2bc88d['params'][_0x28ffbc(0xea)]['ranges'];return _0x372065[_0x28ffbc(0xaf)](_0x412877=>_0x1e5a7e[_0x28ffbc(0xaf)](_0x5ae8d5=>_0x5b3986[_0x28ffbc(0x7a)](_0x412877,_0x5ae8d5)))?{'error':new Error(_0x28ffbc(0x210))}:_0x49ff6a;}},un={'m1':_0x532e28['id'],'m2':_0x15eb0a['id'],'handler':(_0x16a585,_0x938595)=>{const _0x1fa475=_0x572182,_0x26c3fc={'m1Prime':_0x16a585,'m2Prime':_0x938595};if(_0x16a585[_0x1fa475(0x8d)][_0x1fa475(0xdb)]!==_0x938595[_0x1fa475(0x8d)]['unitId']||_0x16a585['params'][_0x1fa475(0x20b)]!==_0x938595[_0x1fa475(0x8d)][_0x1fa475(0x20b)])return _0x26c3fc;const _0x51656c=_0x16a585[_0x1fa475(0x8d)]['rules'][_0x1fa475(0x1e0)](_0x297cc7=>_0x297cc7[_0x1fa475(0xd1)])[_0x1fa475(0x13b)](),_0x5bfcd0=new _0x1f7bb9(_0x938595[_0x1fa475(0x8d)][_0x1fa475(0x208)])['getDataRange']();return _0x51656c[_0x1fa475(0xaf)](_0x143113=>_0x5b3986[_0x1fa475(0x7a)](_0x143113,_0x5bfcd0))?{'error':new Error(_0x1fa475(0x1a5))}:_0x26c3fc;}},ln={'m1':_0x532e28['id'],'m2':_0x4cb95c['id'],'handler':(_0x1ae796,_0x2f3be4)=>{const _0x86292d=_0x572182,_0x1c37d3={'m1Prime':_0x1ae796,'m2Prime':_0x2f3be4};if(_0x1ae796['params'][_0x86292d(0xdb)]!==_0x2f3be4[_0x86292d(0x8d)][_0x86292d(0xdb)]||_0x1ae796[_0x86292d(0x8d)]['subUnitId']!==_0x2f3be4[_0x86292d(0x8d)][_0x86292d(0x20b)])return _0x1c37d3;const _0x47089c=_0x1ae796[_0x86292d(0x8d)]['rules'][_0x86292d(0x1e0)](_0x5c1bd8=>_0x5c1bd8[_0x86292d(0xd1)])[_0x86292d(0x13b)](),_0x2f93b2=_0x2f3be4['params'][_0x86292d(0xd1)];return _0x47089c[_0x86292d(0xaf)](_0x3f3f00=>_0x2f93b2[_0x86292d(0xaf)](_0x20636f=>_0x5b3986['intersects'](_0x3f3f00,_0x20636f)))?{'error':new Error(_0x86292d(0xc2))}:_0x1c37d3;}},cn={'m1':_0x532e28['id'],'m2':_0x2c3db1['id'],'handler':(_0x5b2181,_0x3996f8)=>{const _0x467c26=_0x572182,_0x934201={'m1Prime':_0x5b2181,'m2Prime':_0x3996f8};return _0x5b2181[_0x467c26(0x8d)][_0x467c26(0xdb)]!==_0x3996f8[_0x467c26(0x8d)][_0x467c26(0xdb)]||_0x5b2181[_0x467c26(0x8d)][_0x467c26(0x20b)]!==_0x3996f8[_0x467c26(0x8d)]['subUnitId']?_0x934201:{'error':new Error(_0x467c26(0x1c5))};}},pn={'m1':_0x532e28['id'],'m2':_0x4e1baf['id'],'handler':(_0x4efd2a,_0x3b0ec7)=>{const _0x57a500=_0x572182,_0x2de419={'m1Prime':_0x4efd2a,'m2Prime':_0x3b0ec7};return _0x4efd2a[_0x57a500(0x8d)]['unitId']!==_0x3b0ec7[_0x57a500(0x8d)][_0x57a500(0xdb)]||_0x4efd2a[_0x57a500(0x8d)][_0x57a500(0x20b)]!==_0x3b0ec7[_0x57a500(0x8d)]['subUnitId']?_0x2de419:{'error':new Error(_0x57a500(0x83))};}},fn={'m1':_0x4b0a3e['id'],'m2':_0x4b0a3e['id'],'handler'(_0x588f1d,_0x1dceae){const _0xa49002=_0x572182,_0x2dc3c5=_0x570d2f[_0xa49002(0xb4)](_0x588f1d),_0xb0480b=_0x570d2f[_0xa49002(0xb4)](_0x1dceae);if(_0x588f1d[_0xa49002(0x8d)][_0xa49002(0xdb)]!==_0x1dceae[_0xa49002(0x8d)][_0xa49002(0xdb)]||_0x588f1d['params']['subUnitId']!==_0x1dceae[_0xa49002(0x8d)][_0xa49002(0x20b)])return{'m1Prime':_0x2dc3c5,'m2Prime':_0xb0480b};const _0x5bba1a=_0x2dc3c5[_0xa49002(0x8d)][_0xa49002(0xd1)],_0x541e0f=_0xb0480b[_0xa49002(0x8d)][_0xa49002(0xd1)],_0x5c44f0=[_0xb0480b],_0x11aaab=new Set();for(let _0x2f0855=0x0;_0x2f0855<_0x5bba1a['length'];_0x2f0855++)for(let _0x4b0b54=0x0;_0x4b0b54<_0x541e0f[_0xa49002(0xf6)];_0x4b0b54++)if(_0x5b3986['intersects'](_0x5bba1a[_0x2f0855],_0x541e0f[_0x4b0b54])){_0x11aaab[_0xa49002(0x12d)](_0x5bba1a[_0x2f0855]),_0x5bba1a[_0xa49002(0xf0)](_0x2f0855,0x1),_0x2f0855--;break;}return _0x11aaab['size']>0x0&&_0x5c44f0['unshift']({'id':_0x3c47fd['id'],'params':{'unitId':_0x588f1d[_0xa49002(0x8d)][_0xa49002(0xdb)],'subUnitId':_0x588f1d[_0xa49002(0x8d)][_0xa49002(0x20b)],'ranges':Array[_0xa49002(0x1b0)](_0x11aaab)}}),_0x5bba1a['length']===0x0&&(_0x2dc3c5['id']=_0x1a62da['id']),{'m1Prime':_0x2dc3c5,'m2Prime':_0x5c44f0[_0xa49002(0xf6)]>0x1?_0x5c44f0:_0xb0480b};}},rr={'m1':_0x4b0a3e['id'],'m2':_0x541ec4['id'],'handler'(_0x1b19a4,_0x1a4a02){const _0x4fb627=_0x572182,_0x1d136a=_0x570d2f[_0x4fb627(0xb4)](_0x1b19a4),_0x5fe499=_0x570d2f[_0x4fb627(0xb4)](_0x1a4a02);if(_0x1b19a4[_0x4fb627(0x8d)][_0x4fb627(0xdb)]!==_0x1a4a02[_0x4fb627(0x8d)][_0x4fb627(0xdb)]||_0x1b19a4[_0x4fb627(0x8d)][_0x4fb627(0x20b)]!==_0x1a4a02[_0x4fb627(0x8d)][_0x4fb627(0x20b)])return{'m1Prime':_0x1d136a,'m2Prime':_0x5fe499};const _0x4c9b35=_0x1b19a4[_0x4fb627(0x8d)][_0x4fb627(0xdb)],_0x30f34b=_0x1b19a4[_0x4fb627(0x8d)][_0x4fb627(0x20b)],_0x347c14=[_0x5fe499],_0x5a48c3=[],_0x113988=[];return _0x1d136a[_0x4fb627(0x8d)][_0x4fb627(0xd1)][_0x4fb627(0xc5)](_0x16fa80=>{const _0x4fa0b5=_0x4fb627,_0x44f0fb=_0x1a4a02[_0x4fa0b5(0x8d)][_0x4fa0b5(0x19f)],_0x55eee4=_0x44f0fb[_0x4fa0b5(0x9d)]-_0x44f0fb['startColumn']+0x1;_0x44f0fb[_0x4fa0b5(0x15a)]<=_0x16fa80[_0x4fa0b5(0x15a)]?(_0x5a48c3[_0x4fa0b5(0x1ca)]({..._0x16fa80}),_0x113988[_0x4fa0b5(0x1ca)]({..._0x16fa80,'startColumn':_0x16fa80[_0x4fa0b5(0x15a)]+_0x55eee4,'endColumn':_0x16fa80[_0x4fa0b5(0x9d)]+_0x55eee4}),_0x16fa80[_0x4fa0b5(0x15a)]=_0x16fa80[_0x4fa0b5(0x15a)]+_0x55eee4,_0x16fa80[_0x4fa0b5(0x9d)]=_0x16fa80['endColumn']+_0x55eee4):_0x44f0fb['startColumn']>_0x16fa80[_0x4fa0b5(0x15a)]&&_0x44f0fb[_0x4fa0b5(0x15a)]<=_0x16fa80['endColumn']&&(_0x5a48c3['push']({..._0x16fa80}),_0x113988[_0x4fa0b5(0x1ca)]({..._0x16fa80,'endColumn':_0x16fa80['endColumn']+_0x55eee4}),_0x16fa80[_0x4fa0b5(0x9d)]=_0x16fa80['endColumn']+_0x55eee4);}),_0x5a48c3[_0x4fb627(0xf6)]>0x0&&_0x347c14[_0x4fb627(0xb9)]({'id':_0x3c47fd['id'],'params':{'unitId':_0x4c9b35,'subUnitId':_0x30f34b,'ranges':_0x5a48c3}}),_0x113988[_0x4fb627(0xf6)]>0x0&&_0x347c14['push']({'id':_0x4b0a3e['id'],'params':{'unitId':_0x4c9b35,'subUnitId':_0x30f34b,'ranges':_0x113988}}),{'m1Prime':_0x1d136a,'m2Prime':_0x347c14[_0x4fb627(0xf6)]>0x1?_0x347c14:_0x347c14[0x0]};}},nr={'m1':_0x4b0a3e['id'],'m2':_0x224ab4['id'],'handler'(_0x118f75,_0x2034aa){const _0x18099a=_0x572182,_0x2e5859=_0x570d2f['deepClone'](_0x118f75),_0x2bc95a=_0x570d2f[_0x18099a(0xb4)](_0x2034aa);if(_0x118f75['params'][_0x18099a(0xdb)]!==_0x2034aa[_0x18099a(0x8d)]['unitId']||_0x118f75['params'][_0x18099a(0x20b)]!==_0x2034aa[_0x18099a(0x8d)][_0x18099a(0x20b)])return{'m1Prime':_0x2e5859,'m2Prime':_0x2bc95a};const _0x265d5c=_0x118f75[_0x18099a(0x8d)]['unitId'],_0x22710c=_0x118f75[_0x18099a(0x8d)][_0x18099a(0x20b)],_0x1c2701=[_0x2bc95a],_0x4f8ca8=[],_0x2bfa3b=[];return _0x2e5859[_0x18099a(0x8d)][_0x18099a(0xd1)][_0x18099a(0xc5)](_0x2c1e39=>{const _0x203cf8=_0x18099a,_0x16274f=_0x2034aa['params'][_0x203cf8(0x19f)],_0x484c43=_0x16274f[_0x203cf8(0x111)]-_0x16274f[_0x203cf8(0x102)]+0x1;_0x16274f[_0x203cf8(0x102)]<=_0x2c1e39[_0x203cf8(0x102)]?(_0x4f8ca8[_0x203cf8(0x1ca)]({..._0x2c1e39}),_0x2bfa3b[_0x203cf8(0x1ca)]({..._0x2c1e39,'startRow':_0x2c1e39['startRow']+_0x484c43,'endRow':_0x2c1e39['endRow']+_0x484c43}),_0x2c1e39[_0x203cf8(0x102)]=_0x2c1e39[_0x203cf8(0x102)]+_0x484c43,_0x2c1e39['endRow']=_0x2c1e39[_0x203cf8(0x111)]+_0x484c43):_0x16274f[_0x203cf8(0x102)]>_0x2c1e39[_0x203cf8(0x102)]&&_0x16274f['startRow']<=_0x2c1e39[_0x203cf8(0x111)]&&(_0x4f8ca8[_0x203cf8(0x1ca)]({..._0x2c1e39}),_0x2bfa3b['push']({..._0x2c1e39,'endRow':_0x2c1e39[_0x203cf8(0x111)]+_0x484c43}),_0x2c1e39[_0x203cf8(0x111)]=_0x2c1e39[_0x203cf8(0x111)]+_0x484c43);}),_0x4f8ca8['length']>0x0&&_0x1c2701['unshift']({'id':_0x3c47fd['id'],'params':{'unitId':_0x265d5c,'subUnitId':_0x22710c,'ranges':_0x4f8ca8}}),_0x2bfa3b['length']>0x0&&_0x1c2701['push']({'id':_0x4b0a3e['id'],'params':{'unitId':_0x265d5c,'subUnitId':_0x22710c,'ranges':_0x2bfa3b}}),{'m1Prime':_0x2e5859,'m2Prime':_0x1c2701['length']>0x1?_0x1c2701:_0x1c2701[0x0]};}},ar={'m1':_0x4b0a3e['id'],'m2':_0x31c10b['id'],'handler'(_0x685329,_0x1bb9c2){const _0x2dbe66=_0x572182,_0x527bad=_0x570d2f[_0x2dbe66(0xb4)](_0x685329),_0x28e7d4=_0x570d2f[_0x2dbe66(0xb4)](_0x1bb9c2);if(_0x685329[_0x2dbe66(0x8d)]['unitId']!==_0x1bb9c2[_0x2dbe66(0x8d)][_0x2dbe66(0xdb)]||_0x685329[_0x2dbe66(0x8d)][_0x2dbe66(0x20b)]!==_0x1bb9c2[_0x2dbe66(0x8d)][_0x2dbe66(0x20b)])return{'m1Prime':_0x527bad,'m2Prime':_0x28e7d4};const _0xd58ce0=[],_0x4a7909=[],_0x55802a=[_0x28e7d4];for(let _0xeff13d=0x0;_0xeff13d<_0x527bad[_0x2dbe66(0x8d)]['ranges']['length'];_0xeff13d++){const _0x3214cc=_0x527bad['params'][_0x2dbe66(0xd1)][_0xeff13d],{sourceRange:_0x19a28f,targetRange:_0x151e4a}=_0x1bb9c2[_0x2dbe66(0x8d)];_0x5b3986[_0x2dbe66(0x7a)](_0x3214cc,_0x19a28f)||_0x5b3986[_0x2dbe66(0x7a)](_0x3214cc,_0x151e4a)?(_0xd58ce0['push']({..._0x3214cc}),_0x527bad[_0x2dbe66(0x8d)][_0x2dbe66(0xd1)][_0x2dbe66(0xf0)](_0xeff13d,0x1),_0xeff13d--):_0x19a28f[_0x2dbe66(0x15a)]<_0x3214cc['startColumn']&&_0x151e4a[_0x2dbe66(0x15a)]>_0x3214cc[_0x2dbe66(0x9d)]?(_0xd58ce0[_0x2dbe66(0x1ca)]({..._0x3214cc}),_0x4a7909[_0x2dbe66(0x1ca)]({..._0x3214cc,'startColumn':_0x3214cc['startColumn']-(_0x19a28f['endColumn']-_0x19a28f[_0x2dbe66(0x15a)]+0x1),'endColumn':_0x3214cc[_0x2dbe66(0x9d)]-(_0x19a28f[_0x2dbe66(0x9d)]-_0x19a28f[_0x2dbe66(0x15a)]+0x1)}),_0x3214cc[_0x2dbe66(0x15a)]=_0x3214cc[_0x2dbe66(0x15a)]-(_0x19a28f[_0x2dbe66(0x9d)]-_0x19a28f['startColumn']+0x1),_0x3214cc[_0x2dbe66(0x9d)]=_0x3214cc[_0x2dbe66(0x9d)]-(_0x19a28f[_0x2dbe66(0x9d)]-_0x19a28f[_0x2dbe66(0x15a)]+0x1)):_0x19a28f['startColumn']>_0x3214cc['endColumn']&&_0x151e4a[_0x2dbe66(0x9d)]<_0x3214cc[_0x2dbe66(0x15a)]&&(_0xd58ce0[_0x2dbe66(0x1ca)]({..._0x3214cc}),_0x4a7909[_0x2dbe66(0x1ca)]({..._0x3214cc,'startColumn':_0x3214cc[_0x2dbe66(0x15a)]+(_0x19a28f['endColumn']-_0x19a28f[_0x2dbe66(0x15a)]+0x1),'endColumn':_0x3214cc['endColumn']+(_0x19a28f['endColumn']-_0x19a28f[_0x2dbe66(0x15a)]+0x1)}),_0x3214cc[_0x2dbe66(0x15a)]=_0x3214cc[_0x2dbe66(0x15a)]+(_0x19a28f[_0x2dbe66(0x9d)]-_0x19a28f['startColumn']+0x1),_0x3214cc[_0x2dbe66(0x9d)]=_0x3214cc[_0x2dbe66(0x9d)]+(_0x19a28f[_0x2dbe66(0x9d)]-_0x19a28f[_0x2dbe66(0x15a)]+0x1));}return _0xd58ce0[_0x2dbe66(0xf6)]>0x0&&_0x55802a[_0x2dbe66(0xb9)]({'id':_0x3c47fd['id'],'params':{'unitId':_0x685329['params'][_0x2dbe66(0xdb)],'subUnitId':_0x685329[_0x2dbe66(0x8d)][_0x2dbe66(0x20b)],'ranges':_0xd58ce0}}),_0x4a7909[_0x2dbe66(0xf6)]>0x0&&_0x55802a[_0x2dbe66(0x1ca)]({'id':_0x4b0a3e['id'],'params':{'unitId':_0x685329[_0x2dbe66(0x8d)][_0x2dbe66(0xdb)],'subUnitId':_0x685329[_0x2dbe66(0x8d)][_0x2dbe66(0x20b)],'ranges':_0x4a7909}}),_0x527bad[_0x2dbe66(0x8d)]['ranges'][_0x2dbe66(0xf6)]===0x0&&(_0x527bad['id']=_0x1a62da['id']),{'m1Prime':_0x527bad,'m2Prime':_0x55802a['length']>0x1?_0x55802a:_0x55802a[0x0]};}},sr={'m1':_0x4b0a3e['id'],'m2':_0x43f1cd['id'],'handler'(_0x315cf7,_0x3bbc23){const _0x3c57b9=_0x572182,_0x5c43d5=_0x570d2f['deepClone'](_0x315cf7),_0x53025f=_0x570d2f[_0x3c57b9(0xb4)](_0x3bbc23);if(_0x315cf7[_0x3c57b9(0x8d)][_0x3c57b9(0xdb)]!==_0x3bbc23['params'][_0x3c57b9(0xdb)])return{'m1Prime':_0x5c43d5,'m2Prime':_0x53025f};const _0x3b3ccd=[],_0x1c4cb2=[_0x53025f],_0x2c43dc=new _0x1f7bb9(_0x3bbc23[_0x3c57b9(0x8d)][_0x3c57b9(0x1b0)][_0x3c57b9(0x17e)])[_0x3c57b9(0x182)](),_0x518f4e=new _0x1f7bb9(_0x3bbc23[_0x3c57b9(0x8d)]['to'][_0x3c57b9(0x17e)])[_0x3c57b9(0x182)]();for(let _0x49e280=0x0;_0x49e280<_0x5c43d5[_0x3c57b9(0x8d)][_0x3c57b9(0xd1)]['length'];_0x49e280++){const _0x435d9d=_0x5c43d5[_0x3c57b9(0x8d)][_0x3c57b9(0xd1)][_0x49e280];(_0x5b3986[_0x3c57b9(0x7a)](_0x2c43dc,_0x435d9d)||_0x5b3986['intersects'](_0x518f4e,_0x435d9d))&&(_0x3b3ccd[_0x3c57b9(0x1ca)](_0x435d9d),_0x5c43d5[_0x3c57b9(0x8d)][_0x3c57b9(0xd1)][_0x3c57b9(0xf0)](_0x49e280,0x1),_0x49e280--);}return _0x3b3ccd['length']>0x0&&_0x1c4cb2[_0x3c57b9(0xb9)]({'id':_0x3c47fd['id'],'params':{'unitId':_0x315cf7[_0x3c57b9(0x8d)][_0x3c57b9(0xdb)],'subUnitId':_0x315cf7[_0x3c57b9(0x8d)][_0x3c57b9(0x20b)],'ranges':_0x3b3ccd}}),_0x5c43d5[_0x3c57b9(0x8d)]['ranges'][_0x3c57b9(0xf6)]===0x0&&(_0x5c43d5['id']=_0x1a62da['id']),{'m1Prime':_0x5c43d5,'m2Prime':_0x1c4cb2['length']>0x1?_0x1c4cb2:_0x1c4cb2[0x0]};}},or={'m1':_0x4b0a3e['id'],'m2':_0x454b7a['id'],'handler'(_0x378060,_0x1e4a27){const _0x11e2ce=_0x572182,_0x2ecf41=_0x570d2f[_0x11e2ce(0xb4)](_0x378060),_0x31c0f7=_0x570d2f[_0x11e2ce(0xb4)](_0x1e4a27);if(_0x378060[_0x11e2ce(0x8d)][_0x11e2ce(0xdb)]!==_0x1e4a27[_0x11e2ce(0x8d)][_0x11e2ce(0xdb)]||_0x378060[_0x11e2ce(0x8d)]['subUnitId']!==_0x1e4a27[_0x11e2ce(0x8d)][_0x11e2ce(0x20b)])return{'m1Prime':_0x2ecf41,'m2Prime':_0x31c0f7};const _0x48b790=[],_0x5ee518=[],_0xbee94b=[_0x31c0f7];for(let _0x34bd65=0x0;_0x34bd65<_0x2ecf41[_0x11e2ce(0x8d)][_0x11e2ce(0xd1)]['length'];_0x34bd65++){const _0x302315=_0x2ecf41[_0x11e2ce(0x8d)][_0x11e2ce(0xd1)][_0x34bd65],{sourceRange:_0x321156,targetRange:_0x474551}=_0x1e4a27['params'];_0x5b3986[_0x11e2ce(0x7a)](_0x302315,_0x321156)||_0x5b3986[_0x11e2ce(0x7a)](_0x302315,_0x474551)?(_0x48b790['push']({..._0x302315}),_0x2ecf41[_0x11e2ce(0x8d)][_0x11e2ce(0xd1)][_0x11e2ce(0xf0)](_0x34bd65,0x1),_0x34bd65--):_0x321156[_0x11e2ce(0x102)]<_0x302315[_0x11e2ce(0x102)]&&_0x474551[_0x11e2ce(0x102)]>_0x302315[_0x11e2ce(0x111)]?(_0x48b790[_0x11e2ce(0x1ca)]({..._0x302315}),_0x5ee518[_0x11e2ce(0x1ca)]({..._0x302315,'startRow':_0x302315[_0x11e2ce(0x102)]-(_0x321156[_0x11e2ce(0x111)]-_0x321156['startRow']+0x1),'endRow':_0x302315[_0x11e2ce(0x111)]-(_0x321156[_0x11e2ce(0x111)]-_0x321156['startRow']+0x1)}),_0x302315[_0x11e2ce(0x102)]=_0x302315['startRow']-(_0x321156[_0x11e2ce(0x111)]-_0x321156[_0x11e2ce(0x102)]+0x1),_0x302315[_0x11e2ce(0x111)]=_0x302315['endRow']-(_0x321156['endRow']-_0x321156[_0x11e2ce(0x102)]+0x1)):_0x321156[_0x11e2ce(0x102)]>_0x302315[_0x11e2ce(0x111)]&&_0x474551[_0x11e2ce(0x111)]<_0x302315['startRow']&&(_0x48b790['push']({..._0x302315}),_0x5ee518['push']({..._0x302315,'startRow':_0x302315['startRow']+(_0x321156[_0x11e2ce(0x111)]-_0x321156[_0x11e2ce(0x102)]+0x1),'endRow':_0x302315[_0x11e2ce(0x111)]+(_0x321156[_0x11e2ce(0x111)]-_0x321156[_0x11e2ce(0x102)]+0x1)}),_0x302315[_0x11e2ce(0x102)]=_0x302315[_0x11e2ce(0x102)]+(_0x321156[_0x11e2ce(0x111)]-_0x321156[_0x11e2ce(0x102)]+0x1),_0x302315[_0x11e2ce(0x111)]=_0x302315[_0x11e2ce(0x111)]+(_0x321156[_0x11e2ce(0x111)]-_0x321156[_0x11e2ce(0x102)]+0x1));}return _0x48b790[_0x11e2ce(0xf6)]>0x0&&_0xbee94b['unshift']({'id':_0x3c47fd['id'],'params':{'unitId':_0x378060[_0x11e2ce(0x8d)][_0x11e2ce(0xdb)],'subUnitId':_0x378060[_0x11e2ce(0x8d)][_0x11e2ce(0x20b)],'ranges':_0x48b790}}),_0x5ee518[_0x11e2ce(0xf6)]>0x0&&_0xbee94b[_0x11e2ce(0x1ca)]({'id':_0x4b0a3e['id'],'params':{'unitId':_0x378060[_0x11e2ce(0x8d)][_0x11e2ce(0xdb)],'subUnitId':_0x378060['params']['subUnitId'],'ranges':_0x5ee518}}),_0x2ecf41[_0x11e2ce(0x8d)]['ranges'][_0x11e2ce(0xf6)]===0x0&&(_0x2ecf41['id']=_0x1a62da['id']),{'m1Prime':_0x2ecf41,'m2Prime':_0xbee94b[_0x11e2ce(0xf6)]>0x1?_0xbee94b:_0xbee94b[0x0]};}};function K(_0x4dedbc){const _0x4ed937=_0x572182;return _0x4dedbc[_0x4ed937(0x15a)]>_0x4dedbc['endColumn']||_0x4dedbc[_0x4ed937(0x102)]>_0x4dedbc[_0x4ed937(0x111)]?!0x1:!(_0x4dedbc[_0x4ed937(0x102)]===_0x4dedbc[_0x4ed937(0x111)]&&_0x4dedbc['startColumn']===_0x4dedbc[_0x4ed937(0x9d)]);}const ir={'m1':_0x4b0a3e['id'],'m2':_0xe5c4bd['id'],'handler'(_0x6f8662,_0x23dd5b){const _0x1e60c6=_0x572182,_0x44530b=_0x570d2f[_0x1e60c6(0xb4)](_0x6f8662),_0x23e5a2=_0x570d2f[_0x1e60c6(0xb4)](_0x23dd5b);if(_0x6f8662[_0x1e60c6(0x8d)][_0x1e60c6(0xdb)]!==_0x23dd5b[_0x1e60c6(0x8d)][_0x1e60c6(0xdb)]||_0x6f8662[_0x1e60c6(0x8d)][_0x1e60c6(0x20b)]!==_0x23dd5b[_0x1e60c6(0x8d)][_0x1e60c6(0x20b)])return{'m1Prime':_0x44530b,'m2Prime':_0x23e5a2};const _0x350105=_0x6f8662['params'][_0x1e60c6(0xdb)],_0x55f48b=_0x6f8662[_0x1e60c6(0x8d)][_0x1e60c6(0x20b)],_0x193aa8=[_0x23e5a2],_0x4f1d22=[],_0x475721=[];for(let _0x539cca=0x0;_0x539cca<_0x44530b['params'][_0x1e60c6(0xd1)][_0x1e60c6(0xf6)];_0x539cca++){const _0x590e1f=_0x44530b[_0x1e60c6(0x8d)]['ranges'][_0x539cca],_0x557c59=_0x23dd5b['params']['range'],_0x2c4ab1=_0x557c59[_0x1e60c6(0x9d)]-_0x557c59[_0x1e60c6(0x15a)]+0x1;if(_0x557c59[_0x1e60c6(0x15a)]<_0x590e1f[_0x1e60c6(0x15a)]&&_0x557c59[_0x1e60c6(0x9d)]<_0x590e1f[_0x1e60c6(0x15a)])_0x4f1d22['push']({..._0x590e1f}),_0x475721['push']({..._0x590e1f,'startColumn':_0x590e1f[_0x1e60c6(0x15a)]-_0x2c4ab1,'endColumn':_0x590e1f[_0x1e60c6(0x9d)]-_0x2c4ab1}),_0x590e1f[_0x1e60c6(0x15a)]=_0x590e1f[_0x1e60c6(0x15a)]-_0x2c4ab1,_0x590e1f[_0x1e60c6(0x9d)]=_0x590e1f[_0x1e60c6(0x9d)]-_0x2c4ab1;else{if(_0x557c59[_0x1e60c6(0x15a)]<_0x590e1f[_0x1e60c6(0x15a)]&&_0x557c59[_0x1e60c6(0x9d)]>=_0x590e1f['startColumn']&&_0x557c59[_0x1e60c6(0x9d)]<=_0x590e1f[_0x1e60c6(0x9d)]){_0x4f1d22[_0x1e60c6(0x1ca)]({..._0x590e1f});const _0x37812f={..._0x590e1f,'startColumn':_0x557c59[_0x1e60c6(0x15a)],'endColumn':_0x590e1f[_0x1e60c6(0x9d)]-_0x2c4ab1};K(_0x37812f)&&_0x557c59['endColumn']<_0x590e1f[_0x1e60c6(0x9d)]?(_0x557c59[_0x1e60c6(0x9d)]<_0x590e1f[_0x1e60c6(0x9d)]&&_0x475721[_0x1e60c6(0x1ca)](_0x37812f),_0x590e1f[_0x1e60c6(0x15a)]=_0x557c59[_0x1e60c6(0x15a)],_0x590e1f[_0x1e60c6(0x9d)]=_0x590e1f[_0x1e60c6(0x9d)]-_0x2c4ab1):(_0x44530b[_0x1e60c6(0x8d)][_0x1e60c6(0xd1)]['splice'](_0x539cca,0x1),_0x539cca--);}else{if(_0x557c59['startColumn']>_0x590e1f[_0x1e60c6(0x15a)]&&_0x557c59[_0x1e60c6(0x9d)]<_0x590e1f[_0x1e60c6(0x9d)]){_0x4f1d22[_0x1e60c6(0x1ca)]({..._0x590e1f});const _0x2743e5={..._0x590e1f,'endColumn':_0x590e1f[_0x1e60c6(0x9d)]-_0x2c4ab1};K(_0x2743e5)?(_0x475721[_0x1e60c6(0x1ca)](_0x2743e5),_0x590e1f[_0x1e60c6(0x9d)]=_0x590e1f[_0x1e60c6(0x9d)]-_0x2c4ab1):(_0x44530b[_0x1e60c6(0x8d)][_0x1e60c6(0xd1)][_0x1e60c6(0xf0)](_0x539cca,0x1),_0x539cca--);}else{if(_0x557c59['startColumn']>=_0x590e1f[_0x1e60c6(0x15a)]&&_0x557c59[_0x1e60c6(0x15a)]<=_0x590e1f[_0x1e60c6(0x9d)]&&_0x557c59[_0x1e60c6(0x9d)]>_0x590e1f[_0x1e60c6(0x9d)]){_0x4f1d22[_0x1e60c6(0x1ca)]({..._0x590e1f});const _0x233883={..._0x590e1f,'endColumn':_0x557c59['startColumn']-0x1};K(_0x233883)&&_0x557c59[_0x1e60c6(0x15a)]>_0x590e1f[_0x1e60c6(0x15a)]?(_0x475721[_0x1e60c6(0x1ca)](_0x233883),_0x590e1f[_0x1e60c6(0x9d)]=_0x557c59[_0x1e60c6(0x15a)]-0x1):(_0x44530b[_0x1e60c6(0x8d)][_0x1e60c6(0xd1)]['splice'](_0x539cca,0x1),_0x539cca--);}else _0x557c59['startColumn']>_0x590e1f[_0x1e60c6(0x9d)]||_0x557c59[_0x1e60c6(0x15a)]<=_0x590e1f[_0x1e60c6(0x15a)]&&_0x557c59[_0x1e60c6(0x9d)]>=_0x590e1f['endColumn']&&(_0x4f1d22[_0x1e60c6(0x1ca)]({..._0x590e1f}),_0x44530b[_0x1e60c6(0x8d)][_0x1e60c6(0xd1)][_0x1e60c6(0xf0)](_0x539cca,0x1),_0x539cca--);}}}}return _0x4f1d22[_0x1e60c6(0xf6)]>0x0&&_0x193aa8[_0x1e60c6(0xb9)]({'id':_0x3c47fd['id'],'params':{'unitId':_0x350105,'subUnitId':_0x55f48b,'ranges':_0x4f1d22}}),_0x475721[_0x1e60c6(0xf6)]>0x0&&_0x193aa8['push']({'id':_0x4b0a3e['id'],'params':{'unitId':_0x350105,'subUnitId':_0x55f48b,'ranges':_0x475721}}),_0x44530b[_0x1e60c6(0x8d)][_0x1e60c6(0xd1)]['length']===0x0&&(_0x44530b['id']=_0x1a62da['id']),{'m1Prime':_0x44530b,'m2Prime':_0x193aa8[_0x1e60c6(0xf6)]>0x1?_0x193aa8:_0x193aa8[0x0]};}},dr={'m1':_0x4b0a3e['id'],'m2':_0x1c90fa['id'],'handler'(_0x1cf0ab,_0x5225ad){const _0x31bb2d=_0x572182,_0x581c5d=_0x570d2f['deepClone'](_0x1cf0ab),_0x174e9f=_0x570d2f['deepClone'](_0x5225ad);if(_0x1cf0ab[_0x31bb2d(0x8d)][_0x31bb2d(0xdb)]!==_0x5225ad[_0x31bb2d(0x8d)][_0x31bb2d(0xdb)]||_0x1cf0ab['params']['subUnitId']!==_0x5225ad['params'][_0x31bb2d(0x20b)])return{'m1Prime':_0x581c5d,'m2Prime':_0x174e9f};const _0x35fbca=_0x1cf0ab[_0x31bb2d(0x8d)][_0x31bb2d(0xdb)],_0x5b7e56=_0x1cf0ab['params'][_0x31bb2d(0x20b)],_0x57b036=[_0x174e9f],_0x510206=[],_0xa9fe25=[];for(let _0x1d842c=0x0;_0x1d842c<_0x581c5d[_0x31bb2d(0x8d)][_0x31bb2d(0xd1)][_0x31bb2d(0xf6)];_0x1d842c++){const _0x47e6bd=_0x581c5d[_0x31bb2d(0x8d)][_0x31bb2d(0xd1)][_0x1d842c],_0x27280d=_0x5225ad['params'][_0x31bb2d(0x19f)],_0x4b580b=_0x27280d[_0x31bb2d(0x111)]-_0x27280d[_0x31bb2d(0x102)]+0x1;if(_0x27280d[_0x31bb2d(0x102)]<_0x47e6bd[_0x31bb2d(0x102)]&&_0x27280d['endRow']<_0x47e6bd[_0x31bb2d(0x102)])_0x510206[_0x31bb2d(0x1ca)]({..._0x47e6bd}),_0xa9fe25[_0x31bb2d(0x1ca)]({..._0x47e6bd,'startRow':_0x47e6bd[_0x31bb2d(0x102)]-_0x4b580b,'endRow':_0x47e6bd['endRow']-_0x4b580b}),_0x47e6bd[_0x31bb2d(0x102)]=_0x47e6bd[_0x31bb2d(0x102)]-_0x4b580b,_0x47e6bd[_0x31bb2d(0x111)]=_0x47e6bd[_0x31bb2d(0x111)]-_0x4b580b;else{if(_0x27280d[_0x31bb2d(0x102)]<_0x47e6bd[_0x31bb2d(0x102)]&&_0x27280d['endRow']>=_0x47e6bd['startRow']&&_0x27280d['endRow']<=_0x47e6bd[_0x31bb2d(0x111)]){_0x510206['push']({..._0x47e6bd});const _0xa75778={..._0x47e6bd,'startRow':_0x27280d[_0x31bb2d(0x102)],'endRow':_0x47e6bd[_0x31bb2d(0x111)]-_0x4b580b};K(_0xa75778)&&_0x27280d[_0x31bb2d(0x111)]<_0x47e6bd['endRow']?(_0x27280d[_0x31bb2d(0x111)]<_0x47e6bd[_0x31bb2d(0x111)]&&_0xa9fe25[_0x31bb2d(0x1ca)](_0xa75778),_0x47e6bd[_0x31bb2d(0x102)]=_0x27280d[_0x31bb2d(0x102)],_0x47e6bd['endRow']=_0x47e6bd[_0x31bb2d(0x111)]-_0x4b580b):(_0x581c5d[_0x31bb2d(0x8d)][_0x31bb2d(0xd1)][_0x31bb2d(0xf0)](_0x1d842c,0x1),_0x1d842c--);}else{if(_0x27280d[_0x31bb2d(0x102)]>_0x47e6bd['startRow']&&_0x27280d[_0x31bb2d(0x111)]<_0x47e6bd['endRow']){_0x510206[_0x31bb2d(0x1ca)]({..._0x47e6bd});const _0x10fdee={..._0x47e6bd,'endRow':_0x47e6bd[_0x31bb2d(0x111)]-_0x4b580b};K(_0x10fdee)?(_0xa9fe25[_0x31bb2d(0x1ca)](_0x10fdee),_0x47e6bd[_0x31bb2d(0x111)]=_0x47e6bd[_0x31bb2d(0x111)]-_0x4b580b):(_0x581c5d['params'][_0x31bb2d(0xd1)]['splice'](_0x1d842c,0x1),_0x1d842c--);}else{if(_0x27280d[_0x31bb2d(0x102)]>=_0x47e6bd['startRow']&&_0x27280d[_0x31bb2d(0x102)]<=_0x47e6bd['endRow']&&_0x27280d[_0x31bb2d(0x111)]>_0x47e6bd['endRow']){_0x510206[_0x31bb2d(0x1ca)]({..._0x47e6bd});const _0x5c6d7a={..._0x47e6bd,'endRow':_0x27280d[_0x31bb2d(0x102)]-0x1};K(_0x5c6d7a)&&_0x27280d[_0x31bb2d(0x102)]>_0x47e6bd[_0x31bb2d(0x102)]?(_0xa9fe25[_0x31bb2d(0x1ca)](_0x5c6d7a),_0x47e6bd[_0x31bb2d(0x111)]=_0x27280d[_0x31bb2d(0x102)]-0x1):(_0x581c5d[_0x31bb2d(0x8d)][_0x31bb2d(0xd1)][_0x31bb2d(0xf0)](_0x1d842c,0x1),_0x1d842c--);}else _0x27280d[_0x31bb2d(0x102)]>_0x47e6bd[_0x31bb2d(0x111)]||_0x27280d[_0x31bb2d(0x102)]<=_0x47e6bd[_0x31bb2d(0x102)]&&_0x27280d[_0x31bb2d(0x111)]>=_0x47e6bd['endRow']&&(_0x510206['push']({..._0x47e6bd}),_0x581c5d['params']['ranges'][_0x31bb2d(0xf0)](_0x1d842c,0x1),_0x1d842c--);}}}}return _0x510206[_0x31bb2d(0xf6)]>0x0&&_0x57b036[_0x31bb2d(0xb9)]({'id':_0x3c47fd['id'],'params':{'unitId':_0x35fbca,'subUnitId':_0x5b7e56,'ranges':_0x510206}}),_0xa9fe25[_0x31bb2d(0xf6)]>0x0&&_0x57b036[_0x31bb2d(0x1ca)]({'id':_0x4b0a3e['id'],'params':{'unitId':_0x35fbca,'subUnitId':_0x5b7e56,'ranges':_0xa9fe25}}),_0x581c5d[_0x31bb2d(0x8d)][_0x31bb2d(0xd1)][_0x31bb2d(0xf6)]===0x0&&(_0x581c5d['id']=_0x1a62da['id']),{'m1Prime':_0x581c5d,'m2Prime':_0x57b036[_0x31bb2d(0xf6)]>0x1?_0x57b036:_0x57b036[0x0]};}},Rn={'m1':_0x4b0a3e['id'],'m2':_0x3c47fd['id'],'handler'(_0x2fa5be,_0x7170ff){const _0x4d3cc2=_0x572182,_0x1f4c48=_0x570d2f[_0x4d3cc2(0xb4)](_0x2fa5be),_0x287451=_0x570d2f[_0x4d3cc2(0xb4)](_0x7170ff);if(_0x2fa5be[_0x4d3cc2(0x8d)]['unitId']!==_0x7170ff['params'][_0x4d3cc2(0xdb)]||_0x2fa5be['params'][_0x4d3cc2(0x20b)]!==_0x7170ff[_0x4d3cc2(0x8d)][_0x4d3cc2(0x20b)])return{'m1Prime':_0x1f4c48,'m2Prime':_0x287451};const _0x16d7ae=[..._0x287451[_0x4d3cc2(0x8d)][_0x4d3cc2(0xd1)]];for(let _0x17b88f=0x0;_0x17b88f<_0x1f4c48[_0x4d3cc2(0x8d)][_0x4d3cc2(0xd1)][_0x4d3cc2(0xf6)];_0x17b88f++){let _0x333636=!0x1;for(let _0x192392=0x0;_0x192392<_0x287451[_0x4d3cc2(0x8d)][_0x4d3cc2(0xd1)][_0x4d3cc2(0xf6)];_0x192392++){const _0x475439=_0x1f4c48[_0x4d3cc2(0x8d)][_0x4d3cc2(0xd1)][_0x17b88f],_0x5e098a=_0x287451[_0x4d3cc2(0x8d)][_0x4d3cc2(0xd1)][_0x192392];if(_0x5b3986[_0x4d3cc2(0x7a)](_0x475439,_0x5e098a)){_0x333636=!0x0;break;}}_0x333636&&(_0x16d7ae['push'](_0x1f4c48['params'][_0x4d3cc2(0xd1)][_0x17b88f]),_0x1f4c48['params']['ranges'][_0x4d3cc2(0xf0)](_0x17b88f,0x1),_0x17b88f--);}return _0x287451[_0x4d3cc2(0x8d)][_0x4d3cc2(0xd1)]=_0x16d7ae,_0x1f4c48[_0x4d3cc2(0x8d)][_0x4d3cc2(0xd1)][_0x4d3cc2(0xf6)]===0x0&&(_0x1f4c48['id']=_0x1a62da['id']),{'m1Prime':_0x1f4c48,'m2Prime':_0x287451};}},mr={'m1':_0x4b0a3e['id'],'m2':_0x15eb0a['id'],'handler'(_0x5a0da3,_0xd5e2bb){const _0x20cf9e=_0x572182,_0x59a3c2=_0x570d2f[_0x20cf9e(0xb4)](_0x5a0da3),_0x17c9ff=_0x570d2f[_0x20cf9e(0xb4)](_0xd5e2bb);if(_0x5a0da3[_0x20cf9e(0x8d)]['unitId']!==_0xd5e2bb[_0x20cf9e(0x8d)][_0x20cf9e(0xdb)]||_0x5a0da3[_0x20cf9e(0x8d)]['subUnitId']!==_0xd5e2bb[_0x20cf9e(0x8d)][_0x20cf9e(0x20b)])return{'m1Prime':_0x59a3c2,'m2Prime':_0x17c9ff};const _0x5c132d=[_0x59a3c2],_0x522c9f=[_0x17c9ff],_0x41166b=new _0x1f7bb9(_0x570d2f[_0x20cf9e(0xb4)](_0xd5e2bb['params'][_0x20cf9e(0x208)])),_0x35df32=new Set(),_0x401ce4={};for(let _0x8af7c2=0x0;_0x8af7c2<_0x59a3c2[_0x20cf9e(0x8d)][_0x20cf9e(0xd1)][_0x20cf9e(0xf6)];_0x8af7c2++){const _0x3e97a6=_0x59a3c2[_0x20cf9e(0x8d)][_0x20cf9e(0xd1)][_0x8af7c2],{startRow:_0x275ff0,startColumn:_0x34dd96,endRow:_0x2b4485,endColumn:_0x546d45}=_0x3e97a6;let _0x43db8d=!0x1;_0x41166b[_0x20cf9e(0x86)]((_0x4c0e93,_0x22c39b,_0x1a5415)=>{const _0xc45517=_0x20cf9e;if(_0x4c0e93>=_0x275ff0&&_0x4c0e93<=_0x2b4485&&_0x22c39b>=_0x34dd96&&_0x22c39b<=_0x546d45){const _0x3d7b84=_0x41166b[_0xc45517(0xaa)](_0x4c0e93,_0x22c39b),_0x2e5e2c=_0x3d7b84===null?{'v':null,'s':null,'t':null,'si':null,'p':null,'f':null}:_0x3d7b84;_0x2e5e2c&&(_0x401ce4[_0x4c0e93]||(_0x401ce4[_0x4c0e93]={}),_0x401ce4[_0x4c0e93][_0x22c39b]={},(_0x1a5415==null?void 0x0:_0x1a5415['v'])!==void 0x0&&(_0x401ce4[_0x4c0e93][_0x22c39b]['v']=null,delete _0x2e5e2c['v']),(_0x1a5415==null?void 0x0:_0x1a5415['f'])!==void 0x0&&(_0x401ce4[_0x4c0e93][_0x22c39b]['f']=null,delete _0x2e5e2c['f']),(_0x1a5415==null?void 0x0:_0x1a5415['t'])!==void 0x0&&(_0x401ce4[_0x4c0e93][_0x22c39b]['t']=null,delete _0x2e5e2c['t']),(_0x1a5415==null?void 0x0:_0x1a5415['si'])!==void 0x0&&(_0x401ce4[_0x4c0e93][_0x22c39b]['si']=null,delete _0x2e5e2c['si']),(_0x1a5415==null?void 0x0:_0x1a5415['p'])!==void 0x0&&(_0x401ce4[_0x4c0e93][_0x22c39b]['p']=null,delete _0x2e5e2c['p']),(_0x1a5415==null?void 0x0:_0x1a5415['s'])!==void 0x0&&(_0x401ce4[_0x4c0e93][_0x22c39b]['s']=null,delete _0x2e5e2c['s']),_0x41166b[_0xc45517(0x134)](_0x4c0e93,_0x22c39b,_0x2e5e2c),_0x43db8d=!0x0);}}),_0x43db8d&&(_0x35df32[_0x20cf9e(0x12d)]({..._0x3e97a6}),_0x59a3c2[_0x20cf9e(0x8d)]['ranges']['splice'](_0x8af7c2,0x1),_0x8af7c2--);}return _0x17c9ff[_0x20cf9e(0x8d)]['cellValue']=_0x41166b[_0x20cf9e(0x16a)](),_0x35df32[_0x20cf9e(0xe5)]>0x0&&_0x522c9f['unshift']({'id':_0x3c47fd['id'],'params':{'unitId':_0x5a0da3['params'][_0x20cf9e(0xdb)],'subUnitId':_0x5a0da3[_0x20cf9e(0x8d)][_0x20cf9e(0x20b)],'ranges':Array[_0x20cf9e(0x1b0)](_0x35df32)}}),_0x59a3c2[_0x20cf9e(0x8d)][_0x20cf9e(0xd1)][_0x20cf9e(0xf6)]===0x0&&(_0x59a3c2['id']=_0x1a62da['id']),Object[_0x20cf9e(0xab)](_0x401ce4)[_0x20cf9e(0xf6)]>0x0&&_0x5c132d[_0x20cf9e(0xb9)]({'id':_0x15eb0a['id'],'params':{'unitId':_0x5a0da3[_0x20cf9e(0x8d)][_0x20cf9e(0xdb)],'subUnitId':_0x5a0da3['params']['subUnitId'],'cellValue':_0x401ce4}}),{'m1Prime':_0x5c132d[_0x20cf9e(0xf6)]>0x1?_0x5c132d:_0x5c132d[0x0],'m2Prime':_0x522c9f[_0x20cf9e(0xf6)]>0x1?_0x522c9f:_0x522c9f[0x0]};}},hn={'m1':_0x4b0a3e['id'],'m2':_0x23969e['id'],'handler'(_0x18fa1d,_0xba97c1){const _0x368e5d=_0x572182,_0x59c943={'m1Prime':[],'m2Prime':[]};if(_0x18fa1d[_0x368e5d(0x8d)]['unitId']!==_0xba97c1[_0x368e5d(0x8d)]['unitId']||_0x18fa1d['params']['subUnitId']!==_0xba97c1[_0x368e5d(0x8d)][_0x368e5d(0x20b)])return _0x59c943;const _0x1e500c=_0x570d2f[_0x368e5d(0xb4)](_0xba97c1),_0x43cecb=_0x1e500c[_0x368e5d(0x8d)][_0x368e5d(0x138)];_0x43cecb['forEach']((_0x8f07f9,_0x49cb54)=>{const _0x3976fd=_0x368e5d,{range:_0x556905,primary:_0x16bf23}=_0x8f07f9;_0x18fa1d[_0x3976fd(0x8d)][_0x3976fd(0xd1)]['forEach'](_0x45b26a=>{const _0x4d048a=_0x3976fd;_0x5b3986[_0x4d048a(0x7a)](_0x45b26a,_0x556905)&&(_0x556905[_0x4d048a(0x102)]=Math['min'](_0x45b26a['startRow'],_0x556905[_0x4d048a(0x102)]),_0x556905[_0x4d048a(0x15a)]=Math[_0x4d048a(0x126)](_0x45b26a['startColumn'],_0x556905[_0x4d048a(0x15a)]),_0x556905[_0x4d048a(0x111)]=Math[_0x4d048a(0xed)](_0x45b26a[_0x4d048a(0x111)],_0x556905[_0x4d048a(0x111)]),_0x556905['endColumn']=Math[_0x4d048a(0xed)](_0x45b26a[_0x4d048a(0x9d)],_0x556905['endColumn'])),_0x16bf23&&_0x5b3986['intersects'](_0x45b26a,_0x16bf23)&&_0x49cb54===_0x43cecb['length']-0x1&&(_0x16bf23[_0x4d048a(0x15a)]===_0x45b26a['startColumn']&&_0x16bf23['startRow']&&_0x45b26a[_0x4d048a(0x102)]&&(_0x16bf23[_0x4d048a(0x187)]=!0x0),_0x16bf23['startRow']=Math[_0x4d048a(0x126)](_0x45b26a[_0x4d048a(0x102)],_0x16bf23[_0x4d048a(0x102)]),_0x16bf23[_0x4d048a(0x15a)]=Math['min'](_0x45b26a[_0x4d048a(0x15a)],_0x16bf23[_0x4d048a(0x15a)]),_0x16bf23[_0x4d048a(0x111)]=Math[_0x4d048a(0xed)](_0x45b26a[_0x4d048a(0x111)],_0x16bf23[_0x4d048a(0x111)]),_0x16bf23['endColumn']=Math[_0x4d048a(0xed)](_0x45b26a[_0x4d048a(0x9d)],_0x16bf23[_0x4d048a(0x9d)]),_0x16bf23[_0x4d048a(0xd5)]=!0x0);});}),_0x43cecb[_0x368e5d(0x14f)]((_0x1ea9fe,_0x20ce8b)=>{const _0x5e3b89=_0x368e5d,_0x5a50f5=_0x1ea9fe[_0x5e3b89(0x19f)],_0x486278=_0x20ce8b[_0x5e3b89(0x19f)];return _0x5a50f5[_0x5e3b89(0x102)]===_0x486278[_0x5e3b89(0x102)]?_0x5a50f5[_0x5e3b89(0x15a)]-_0x486278[_0x5e3b89(0x15a)]:_0x5a50f5['startRow']-_0x486278[_0x5e3b89(0x102)];});const _0xda81a5=[];let _0xd8c8d5=null;for(const _0x285476 of _0x43cecb)_0xd8c8d5===null||!_0x5b3986[_0x368e5d(0x7a)](_0xd8c8d5['range'],_0x285476[_0x368e5d(0x19f)])?(_0xda81a5[_0x368e5d(0x1ca)](_0x285476),_0xd8c8d5=_0x285476):(_0xd8c8d5[_0x368e5d(0x19f)][_0x368e5d(0x102)]=Math[_0x368e5d(0x126)](_0xd8c8d5[_0x368e5d(0x19f)]['startRow'],_0x285476[_0x368e5d(0x19f)]['startRow']),_0xd8c8d5[_0x368e5d(0x19f)][_0x368e5d(0x15a)]=Math['min'](_0xd8c8d5[_0x368e5d(0x19f)]['startColumn'],_0x285476[_0x368e5d(0x19f)][_0x368e5d(0x15a)]),_0xd8c8d5[_0x368e5d(0x19f)][_0x368e5d(0x111)]=Math['max'](_0xd8c8d5[_0x368e5d(0x19f)][_0x368e5d(0x111)],_0x285476[_0x368e5d(0x19f)]['endRow']),_0xd8c8d5['range']['endColumn']=Math[_0x368e5d(0xed)](_0xd8c8d5['range'][_0x368e5d(0x9d)],_0x285476[_0x368e5d(0x19f)][_0x368e5d(0x9d)]),_0x285476['primary']&&(_0xd8c8d5[_0x368e5d(0x19d)]=_0x285476['primary']));return _0x1e500c[_0x368e5d(0x8d)][_0x368e5d(0x138)]=_0xda81a5,_0x59c943[_0x368e5d(0xcf)][_0x368e5d(0x1ca)](_0x1e500c),_0x59c943;}},gn={'m1':_0xeba0d['id'],'m2':_0x1b398d['id'],'handler':(_0x226242,_0x2baf5c)=>{const _0x134f08=_0x572182,_0x15f190={'m1Prime':_0x226242,'m2Prime':_0x2baf5c};return _0x226242[_0x134f08(0x8d)][_0x134f08(0xdb)]!==_0x2baf5c[_0x134f08(0x8d)][_0x134f08(0xdb)]||_0x226242[_0x134f08(0x8d)][_0x134f08(0x20b)]!==_0x2baf5c[_0x134f08(0x8d)][_0x134f08(0x20b)]?_0x15f190:{'error':new Error(_0x134f08(0x1be))};}},In={'m1':_0xeba0d['id'],'m2':_0x4ae767['id'],'handler':(_0xc8c0eb,_0x27d96c)=>{const _0x2a4d19=_0x572182,_0x1686f8={'m1Prime':_0xc8c0eb,'m2Prime':_0x27d96c};return _0xc8c0eb[_0x2a4d19(0x8d)][_0x2a4d19(0xdb)]!==_0x27d96c[_0x2a4d19(0x8d)]['unitId']||_0xc8c0eb['params'][_0x2a4d19(0x20b)]!==_0x27d96c[_0x2a4d19(0x8d)]['subUnitId']?_0x1686f8:{'error':new Error('add\x20worksheet\x20protection\x20is\x20conflict\x20with\x20add\x20conditional\x20rule')};}},wn={'m1':_0xeba0d['id'],'m2':_0x532e28['id'],'handler':(_0x5b9c7d,_0x3fd7b6)=>{const _0x5ba750=_0x572182,_0x39b8cc={'m1Prime':_0x5b9c7d,'m2Prime':_0x3fd7b6};return _0x5b9c7d[_0x5ba750(0x8d)][_0x5ba750(0xdb)]!==_0x3fd7b6[_0x5ba750(0x8d)][_0x5ba750(0xdb)]||_0x5b9c7d[_0x5ba750(0x8d)][_0x5ba750(0x20b)]!==_0x3fd7b6[_0x5ba750(0x8d)][_0x5ba750(0x20b)]?_0x39b8cc:{'error':new Error(_0x5ba750(0x12e))};}},Cn={'m1':_0xeba0d['id'],'m2':_0x4b0a3e['id'],'handler':(_0x17ab15,_0x4a876)=>{const _0x71a181=_0x572182,_0x257739={'m1Prime':_0x17ab15,'m2Prime':_0x4a876};return _0x17ab15[_0x71a181(0x8d)]['unitId']!==_0x4a876[_0x71a181(0x8d)]['unitId']||_0x17ab15[_0x71a181(0x8d)][_0x71a181(0x20b)]!==_0x4a876[_0x71a181(0x8d)][_0x71a181(0x20b)]?_0x257739:{'error':new Error(_0x71a181(0x172))};}},Pn={'m1':_0xeba0d['id'],'m2':_0xeba0d['id'],'handler':(_0x360b2c,_0x701d58)=>{const _0x32e7b7=_0x572182,_0x2b2116={'m1Prime':_0x360b2c,'m2Prime':_0x701d58};return _0x360b2c['params'][_0x32e7b7(0xdb)]!==_0x701d58[_0x32e7b7(0x8d)][_0x32e7b7(0xdb)]||_0x360b2c[_0x32e7b7(0x8d)]['subUnitId']!==_0x701d58[_0x32e7b7(0x8d)]['rule'][_0x32e7b7(0x20b)]?_0x2b2116:{'error':new Error(_0x32e7b7(0x202))};}},Un={'m1':_0xeba0d['id'],'m2':_0xdfc809['id'],'handler':(_0x165c0b,_0x594f18)=>{const _0x325719=_0x572182,_0xb4db8c={'m1Prime':_0x165c0b,'m2Prime':_0x594f18};return _0x165c0b[_0x325719(0x8d)]['unitId']!==_0x594f18[_0x325719(0x8d)][_0x325719(0xdb)]||_0x165c0b['params'][_0x325719(0x20b)]!==_0x594f18[_0x325719(0x8d)][_0x325719(0x20b)]?_0xb4db8c:{'error':new Error(_0x325719(0x1de))};}},bn={'m1':_0xeba0d['id'],'m2':_0x7e7ab0['id'],'handler':(_0xdfde85,_0x58bd56)=>{const _0x12ea76=_0x572182,_0x15b607={'m1Prime':_0xdfde85,'m2Prime':_0x58bd56};return _0xdfde85[_0x12ea76(0x8d)][_0x12ea76(0xdb)]!==_0x58bd56[_0x12ea76(0x8d)][_0x12ea76(0xdb)]||_0xdfde85[_0x12ea76(0x8d)]['subUnitId']!==_0x58bd56[_0x12ea76(0x8d)]['subUnitId']?_0x15b607:{'error':new Error(_0x12ea76(0x17f))};}},Mn={'m1':_0xeba0d['id'],'m2':_0x541ec4['id'],'handler':(_0x412a61,_0x231f36)=>{const _0x1e4d8d=_0x572182,_0x260593={'m1Prime':_0x412a61,'m2Prime':_0x231f36};return _0x412a61['params']['unitId']!==_0x231f36[_0x1e4d8d(0x8d)]['unitId']||_0x412a61[_0x1e4d8d(0x8d)][_0x1e4d8d(0x20b)]!==_0x231f36[_0x1e4d8d(0x8d)]['subUnitId']?_0x260593:{'error':new Error(_0x1e4d8d(0x180))};}},vn={'m1':_0xeba0d['id'],'m2':_0x224ab4['id'],'handler':(_0x452820,_0x40b07c)=>{const _0x2c5d7b=_0x572182,_0x1c92cc={'m1Prime':_0x452820,'m2Prime':_0x40b07c};return _0x452820['params'][_0x2c5d7b(0xdb)]!==_0x40b07c[_0x2c5d7b(0x8d)][_0x2c5d7b(0xdb)]||_0x452820[_0x2c5d7b(0x8d)][_0x2c5d7b(0x20b)]!==_0x40b07c['params']['subUnitId']?_0x1c92cc:{'error':new Error(_0x2c5d7b(0x1ce))};}},En={'m1':_0xeba0d['id'],'m2':_0x31c10b['id'],'handler':(_0xa34202,_0x28a721)=>{const _0x27d172=_0x572182,_0x9daeaf={'m1Prime':_0xa34202,'m2Prime':_0x28a721};return _0xa34202[_0x27d172(0x8d)][_0x27d172(0xdb)]!==_0x28a721[_0x27d172(0x8d)]['unitId']||_0xa34202[_0x27d172(0x8d)][_0x27d172(0x20b)]!==_0x28a721[_0x27d172(0x8d)][_0x27d172(0x20b)]?_0x9daeaf:{'error':new Error(_0x27d172(0x145))};}},Sn={'m1':_0xeba0d['id'],'m2':_0x43f1cd['id'],'handler':(_0xa00ee1,_0x5c9167)=>{const _0xe35a68=_0x572182,_0x17a7f7={'m1Prime':_0xa00ee1,'m2Prime':_0x5c9167};return _0xa00ee1[_0xe35a68(0x8d)][_0xe35a68(0xdb)]!==_0x5c9167[_0xe35a68(0x8d)][_0xe35a68(0xdb)]||_0xa00ee1[_0xe35a68(0x8d)][_0xe35a68(0x20b)]!==_0x5c9167[_0xe35a68(0x8d)][_0xe35a68(0x1b0)][_0xe35a68(0x20b)]?_0x17a7f7:{'error':new Error(_0xe35a68(0x1f7))};}},Wn={'m1':_0xeba0d['id'],'m2':_0x454b7a['id'],'handler':(_0x5033ec,_0x5a329f)=>{const _0x2dc085=_0x572182,_0x143b56={'m1Prime':_0x5033ec,'m2Prime':_0x5a329f};return _0x5033ec[_0x2dc085(0x8d)][_0x2dc085(0xdb)]!==_0x5a329f[_0x2dc085(0x8d)][_0x2dc085(0xdb)]||_0x5033ec[_0x2dc085(0x8d)][_0x2dc085(0x20b)]!==_0x5a329f[_0x2dc085(0x8d)][_0x2dc085(0x20b)]?_0x143b56:{'error':new Error(_0x2dc085(0x101))};}},Vn={'m1':_0xeba0d['id'],'m2':_0xe5c4bd['id'],'handler':(_0x2eefb6,_0xfb30cf)=>{const _0x3aee81=_0x572182,_0x4c4685={'m1Prime':_0x2eefb6,'m2Prime':_0xfb30cf};return _0x2eefb6['params'][_0x3aee81(0xdb)]!==_0xfb30cf[_0x3aee81(0x8d)][_0x3aee81(0xdb)]||_0x2eefb6[_0x3aee81(0x8d)][_0x3aee81(0x20b)]!==_0xfb30cf[_0x3aee81(0x8d)]['subUnitId']?_0x4c4685:{'error':new Error(_0x3aee81(0x156))};}},_n={'m1':_0xeba0d['id'],'m2':_0x13693a['id'],'handler':(_0x16e6c7,_0x529f23)=>{const _0x5c1347=_0x572182,_0x257303={'m1Prime':_0x16e6c7,'m2Prime':_0x529f23};return _0x16e6c7[_0x5c1347(0x8d)][_0x5c1347(0xdb)]!==_0x529f23[_0x5c1347(0x8d)][_0x5c1347(0xdb)]||_0x16e6c7['params'][_0x5c1347(0x20b)]!==_0x529f23[_0x5c1347(0x8d)][_0x5c1347(0x20b)]?_0x257303:{'error':new Error(_0x5c1347(0x10e))};}},On={'m1':_0xeba0d['id'],'m2':_0x3dcda7['id'],'handler':(_0x493f4a,_0x258a6e)=>{const _0xdfcfc1=_0x572182,_0x50caf6={'m1Prime':_0x493f4a,'m2Prime':_0x258a6e};return _0x493f4a[_0xdfcfc1(0x8d)][_0xdfcfc1(0xdb)]!==_0x258a6e[_0xdfcfc1(0x8d)][_0xdfcfc1(0xdb)]||_0x493f4a[_0xdfcfc1(0x8d)][_0xdfcfc1(0x20b)]!==_0x258a6e['params'][_0xdfcfc1(0x20b)]?_0x50caf6:{'error':new Error('add\x20worksheet\x20protection\x20is\x20conflict\x20with\x20remove\x20numfmt')};}},yn={'m1':_0xeba0d['id'],'m2':_0x1c90fa['id'],'handler':(_0x185b56,_0x52195a)=>{const _0xa4c8b7=_0x572182,_0x2b4332={'m1Prime':_0x185b56,'m2Prime':_0x52195a};return _0x185b56[_0xa4c8b7(0x8d)][_0xa4c8b7(0xdb)]!==_0x52195a[_0xa4c8b7(0x8d)][_0xa4c8b7(0xdb)]||_0x185b56[_0xa4c8b7(0x8d)][_0xa4c8b7(0x20b)]!==_0x52195a[_0xa4c8b7(0x8d)][_0xa4c8b7(0x20b)]?_0x2b4332:{'error':new Error(_0xa4c8b7(0x171))};}},Nn={'m1':_0xeba0d['id'],'m2':_0x224fc7['id'],'handler':(_0x9f81,_0x491ab6)=>{const _0x29ae28=_0x572182,_0x13e0fb={'m1Prime':_0x9f81,'m2Prime':_0x491ab6};return _0x9f81[_0x29ae28(0x8d)][_0x29ae28(0xdb)]!==_0x491ab6[_0x29ae28(0x8d)][_0x29ae28(0xdb)]||_0x9f81[_0x29ae28(0x8d)][_0x29ae28(0x20b)]!==_0x491ab6['params'][_0x29ae28(0x20b)]?_0x13e0fb:{'error':new Error(_0x29ae28(0x149))};}},Dn={'m1':_0xeba0d['id'],'m2':_0x2df765['id'],'handler':(_0x21b594,_0x7fb383)=>{const _0x38bf32=_0x572182,_0x5a2e00={'m1Prime':_0x21b594,'m2Prime':_0x7fb383};return _0x21b594[_0x38bf32(0x8d)][_0x38bf32(0xdb)]!==_0x7fb383[_0x38bf32(0x8d)][_0x38bf32(0xdb)]||_0x21b594['params']['subUnitId']!==_0x7fb383[_0x38bf32(0x8d)][_0x38bf32(0x20b)]?_0x5a2e00:{'error':new Error(_0x38bf32(0x148))};}},An={'m1':_0xeba0d['id'],'m2':_0x3c47fd['id'],'handler':(_0x5c0ceb,_0x19dab6)=>{const _0x6695ce=_0x572182,_0x47d7aa={'m1Prime':_0x5c0ceb,'m2Prime':_0x19dab6};return _0x5c0ceb[_0x6695ce(0x8d)]['unitId']!==_0x19dab6[_0x6695ce(0x8d)][_0x6695ce(0xdb)]||_0x5c0ceb[_0x6695ce(0x8d)][_0x6695ce(0x20b)]!==_0x19dab6[_0x6695ce(0x8d)][_0x6695ce(0x20b)]?_0x47d7aa:{'error':new Error(_0x6695ce(0x154))};}},Tn={'m1':_0xeba0d['id'],'m2':_0x36306e['id'],'handler':(_0x389efa,_0x4bafc1)=>{const _0x2b71e6=_0x572182,_0x473108={'m1Prime':_0x389efa,'m2Prime':_0x4bafc1};return _0x389efa[_0x2b71e6(0x8d)][_0x2b71e6(0xdb)]!==_0x4bafc1[_0x2b71e6(0x8d)][_0x2b71e6(0xdb)]||_0x389efa[_0x2b71e6(0x8d)][_0x2b71e6(0x20b)]!==_0x4bafc1[_0x2b71e6(0x8d)]['subUnitId']?_0x473108:{'error':new Error('add\x20worksheet\x20protection\x20is\x20conflict\x20with\x20set\x20conditional\x20formatting\x20rule')};}},Ln={'m1':_0xeba0d['id'],'m2':_0xe30a36['id'],'handler':(_0x32adc1,_0x3c10df)=>{const _0x47a113=_0x572182,_0x61f1a4={'m1Prime':_0x32adc1,'m2Prime':_0x3c10df};return _0x32adc1[_0x47a113(0x8d)][_0x47a113(0xdb)]!==_0x3c10df[_0x47a113(0x8d)][_0x47a113(0xdb)]||_0x32adc1['params'][_0x47a113(0x20b)]!==_0x3c10df['params']['subUnitId']?_0x61f1a4:{'error':new Error('add\x20worksheet\x20protection\x20is\x20conflict\x20with\x20set\x20frozen')};}},kn={'m1':_0xeba0d['id'],'m2':_0x4075e['id'],'handler':(_0x51a41b,_0x4add43)=>{const _0x219495=_0x572182,_0x365dd0={'m1Prime':_0x51a41b,'m2Prime':_0x4add43};return _0x51a41b[_0x219495(0x8d)]['unitId']!==_0x4add43[_0x219495(0x8d)]['unitId']||_0x51a41b[_0x219495(0x8d)][_0x219495(0x20b)]!==_0x4add43[_0x219495(0x8d)][_0x219495(0x20b)]?_0x365dd0:{'error':new Error(_0x219495(0x1c2))};}},xn={'m1':_0xeba0d['id'],'m2':_0x225790['id'],'handler':(_0x5e883b,_0x4a40e8)=>{const _0x1e7d4a=_0x572182,_0xb03e={'m1Prime':_0x5e883b,'m2Prime':_0x4a40e8};return _0x5e883b[_0x1e7d4a(0x8d)][_0x1e7d4a(0xdb)]!==_0x4a40e8[_0x1e7d4a(0x8d)][_0x1e7d4a(0xdb)]||_0x5e883b['params'][_0x1e7d4a(0x20b)]!==_0x4a40e8[_0x1e7d4a(0x8d)][_0x1e7d4a(0x20b)]?_0xb03e:{'error':new Error(_0x1e7d4a(0xbb))};}},Hn={'m1':_0xeba0d['id'],'m2':_0x4cb95c['id'],'handler':(_0x2b2d9d,_0x5b5431)=>{const _0x41d80f=_0x572182,_0x45937f={'m1Prime':_0x2b2d9d,'m2Prime':_0x5b5431};return _0x2b2d9d[_0x41d80f(0x8d)][_0x41d80f(0xdb)]!==_0x5b5431[_0x41d80f(0x8d)][_0x41d80f(0xdb)]||_0x2b2d9d[_0x41d80f(0x8d)][_0x41d80f(0x20b)]!==_0x5b5431[_0x41d80f(0x8d)]['subUnitId']?_0x45937f:{'error':new Error(_0x41d80f(0x15b))};}},Fn={'m1':_0xeba0d['id'],'m2':_0x5a5428['id'],'handler':(_0x4fc029,_0x12788a)=>{const _0x2e903b=_0x572182,_0x4ecaeb={'m1Prime':_0x4fc029,'m2Prime':_0x12788a};return _0x4fc029[_0x2e903b(0x8d)][_0x2e903b(0xdb)]!==_0x12788a[_0x2e903b(0x8d)][_0x2e903b(0xdb)]||_0x4fc029[_0x2e903b(0x8d)][_0x2e903b(0x20b)]!==_0x12788a[_0x2e903b(0x8d)][_0x2e903b(0x20b)]?_0x4ecaeb:{'error':new Error(_0x2e903b(0x153))};}},Bn={'m1':_0xeba0d['id'],'m2':_0x2c3db1['id'],'handler':(_0x564625,_0x404f4b)=>{const _0x999681=_0x572182,_0x3acd3b={'m1Prime':_0x564625,'m2Prime':_0x404f4b};return _0x564625[_0x999681(0x8d)][_0x999681(0xdb)]!==_0x404f4b[_0x999681(0x8d)][_0x999681(0xdb)]||_0x564625['params']['subUnitId']!==_0x404f4b[_0x999681(0x8d)][_0x999681(0x20b)]?_0x3acd3b:{'error':new Error(_0x999681(0x121))};}},Gn={'m1':_0xeba0d['id'],'m2':_0x4e1baf['id'],'handler':(_0x51883b,_0x8fc69e)=>{const _0x3aec59=_0x572182,_0x2e8c3a={'m1Prime':_0x51883b,'m2Prime':_0x8fc69e};return _0x51883b[_0x3aec59(0x8d)]['unitId']!==_0x8fc69e[_0x3aec59(0x8d)][_0x3aec59(0xdb)]||_0x51883b['params'][_0x3aec59(0x20b)]!==_0x8fc69e[_0x3aec59(0x8d)][_0x3aec59(0x20b)]?_0x2e8c3a:{'error':new Error(_0x3aec59(0x11e))};}},jn={'m1':_0x5b7f88['id'],'m2':_0x1b398d['id'],'handler':(_0x4d7cd4,_0x34628e)=>{const _0x3a5dc7=_0x572182,_0x22ee50=_0x4d7cd4[_0x3a5dc7(0x8d)],_0x32bfd5=_0x34628e[_0x3a5dc7(0x8d)];return _0x22ee50['unitId']===_0x32bfd5['unitId']&&_0x22ee50[_0x3a5dc7(0x20b)]===_0x32bfd5[_0x3a5dc7(0x20b)]&&_0x22ee50[_0x3a5dc7(0xf8)]===_0x32bfd5[_0x3a5dc7(0x95)][_0x3a5dc7(0x7c)]?{'m1Prime':_0x4d7cd4,'m2Prime':[]}:{'m1Prime':_0x4d7cd4,'m2Prime':_0x34628e};}},$n={'m1':_0x5b7f88['id'],'m2':_0x5b7f88['id'],'handler':(_0x5db964,_0x361633)=>{const _0x1859f9=_0x572182,_0x8eff79=_0x5db964[_0x1859f9(0x8d)],_0x2c53a0=_0x361633[_0x1859f9(0x8d)],_0x410d3c={'m1Prime':_0x5db964,'m2Prime':_0x361633};return _0x8eff79[_0x1859f9(0xdb)]!==_0x2c53a0[_0x1859f9(0xdb)]||_0x8eff79[_0x1859f9(0x20b)]!==_0x2c53a0['subUnitId']||_0x8eff79[_0x1859f9(0xf8)]!==_0x2c53a0[_0x1859f9(0xf8)]?_0x410d3c:{'m1Prime':[],'m2Prime':[]};}},Yn={'m1':_0x7e7ab0['id'],'m2':_0x7e7ab0['id'],'handler'(_0x44fd31,_0x19726f){return{'m1Prime':_0x44fd31,'m2Prime':_0x19726f};}},It=(_0x2ceaf9,_0x4264d3)=>{const _0x43ab4a=_0x572182,_0x5ddc8b=_0x426d2f(_0x2ceaf9[_0x43ab4a(0x8d)][_0x43ab4a(0x95)][_0x43ab4a(0x1c7)]),_0x2fdb1a={'startColumn':_0x5ddc8b[_0x43ab4a(0x14c)],'endColumn':_0x5ddc8b['column'],'startRow':_0x5ddc8b['row'],'endRow':_0x5ddc8b[_0x43ab4a(0x1cb)]},_0x33859c=_0x8e6890(_0x2fdb1a,_0x4264d3);if(!_0x33859c)return[{'id':_0x5b7f88['id'],'params':{..._0x2ceaf9['params'],'comment':void 0x0,'commentId':_0x2ceaf9[_0x43ab4a(0x8d)][_0x43ab4a(0x95)]['id']}}];const _0x25ab4d=_0x572940(_0x33859c);return _0x25ab4d===_0x2ceaf9[_0x43ab4a(0x8d)][_0x43ab4a(0x95)][_0x43ab4a(0x1c7)]?[]:[{'id':_0x2afd0c['id'],'params':{..._0x2ceaf9[_0x43ab4a(0x8d)],'comment':void 0x0,'payload':{'ref':_0x25ab4d,'commentId':_0x2ceaf9[_0x43ab4a(0x8d)]['comment']['id']}}}];},Jn={'m1':_0x541ec4['id'],'m2':_0x1b398d['id'],'handler':(_0x36ceae,_0x5ba9d7)=>{const _0x5ce49c=_0x572182,_0xe30955={'m1Prime':_0x36ceae,'m2Prime':_0x5ba9d7};if(_0x36ceae[_0x5ce49c(0x8d)][_0x5ce49c(0xdb)]!==_0x5ba9d7[_0x5ce49c(0x8d)][_0x5ce49c(0xdb)]||_0x36ceae[_0x5ce49c(0x8d)][_0x5ce49c(0x20b)]!==_0x5ba9d7[_0x5ce49c(0x8d)]['subUnitId'])return _0xe30955;const _0x1743f1={'id':_0x172802['id'],'params':{'unitId':_0x36ceae[_0x5ce49c(0x8d)][_0x5ce49c(0xdb)],'subUnitId':_0x36ceae[_0x5ce49c(0x8d)][_0x5ce49c(0x20b)],'range':_0x36ceae[_0x5ce49c(0x8d)][_0x5ce49c(0x19f)]}},_0x48fe51=It(_0x5ba9d7,_0x1743f1);return{'m1Prime':[_0x36ceae,..._0x48fe51],'m2Prime':[_0x5ba9d7,..._0x48fe51]};}};function h(_0x45fa83){const _0x2df25a=_0x572182;return{..._0x45fa83,'rangeType':_0x3e1f4a[_0x2df25a(0x1ff)]};}function ft(_0x1892db,_0x3f26ca,_0x1c46ac,_0x16a79d){const _0x5dfc5e=_0x572182;if(_0x16a79d<0x0){for(let _0x57aa3b=_0x3f26ca;_0x57aa3b<_0x3f26ca+_0x1c46ac;_0x57aa3b++)if(_0x1892db[_0x5dfc5e(0x185)](_0x57aa3b)){_0x1892db['hasOwnProperty'](_0x57aa3b+_0x16a79d)||(_0x1892db[_0x57aa3b+_0x16a79d]={});const _0x55828e=_0x1892db[_0x57aa3b],_0x1ec135=Object[_0x5dfc5e(0xab)](_0x55828e)['map'](Number)[_0x5dfc5e(0x14f)]((_0x7326a3,_0x5c4a84)=>_0x7326a3-_0x5c4a84);for(const _0x55d0bb of _0x1ec135)_0x1892db[_0x57aa3b+_0x16a79d][_0x55d0bb]=_0x55828e[_0x55d0bb];delete _0x1892db[_0x57aa3b];}else delete _0x1892db[_0x57aa3b+_0x16a79d];}else{for(let _0x505f31=_0x3f26ca+_0x1c46ac-0x1;_0x505f31>=_0x3f26ca;_0x505f31--)if(_0x1892db[_0x5dfc5e(0x185)](_0x505f31)){_0x1892db[_0x5dfc5e(0x185)](_0x505f31+_0x16a79d)||(_0x1892db[_0x505f31+_0x16a79d]={});const _0x3faa28=_0x1892db[_0x505f31],_0x5b19dc=Object[_0x5dfc5e(0xab)](_0x3faa28)[_0x5dfc5e(0x1e0)](Number)['sort']((_0x5ed1a0,_0x452a75)=>_0x5ed1a0-_0x452a75);for(const _0x36eac1 of _0x5b19dc)_0x1892db[_0x505f31+_0x16a79d][_0x36eac1]=_0x3faa28[_0x36eac1];delete _0x1892db[_0x505f31];}else delete _0x1892db[_0x505f31+_0x16a79d];}}function Rt(_0xe3de85,_0x5b124e,_0x4d0382,_0x1cd392){const _0x24d37f=_0x572182,_0x1cec0c=Object[_0x24d37f(0xab)](_0xe3de85)['map'](Number)[_0x24d37f(0x14f)]((_0x35c357,_0x5164b3)=>_0x35c357-_0x5164b3);if(_0x1cd392<0x0)for(const _0x50edff of _0x1cec0c){const _0x496243=_0xe3de85[_0x50edff];for(let _0x309d6f=_0x5b124e;_0x309d6f<_0x5b124e+_0x4d0382;_0x309d6f++)_0x496243[_0x24d37f(0x185)](_0x309d6f)?(_0x496243[_0x309d6f+_0x1cd392]=_0x496243[_0x309d6f],delete _0x496243[_0x309d6f]):delete _0x496243[_0x309d6f+_0x1cd392];}else for(const _0x5a2bda of _0x1cec0c){const _0x417199=_0xe3de85[_0x5a2bda];for(let _0x3810d2=_0x5b124e+_0x4d0382-0x1;_0x3810d2>=_0x5b124e;_0x3810d2--)_0x417199[_0x24d37f(0x185)](_0x3810d2)?(_0x417199[_0x3810d2+_0x1cd392]=_0x417199[_0x3810d2],delete _0x417199[_0x3810d2]):delete _0x417199[_0x3810d2+_0x1cd392];}}function ee(_0x581986,_0x567457){const _0x148541=_0x572182;return new _0x252072()['add'](_0x581986)['subtract'](..._0x567457)[_0x148541(0x127)]();}function dt(_0x314060,_0x521231,_0x4b254c,_0x2863de){const _0x2a6671=_0x572182,_0x550293=new _0x3ccc0f()[_0x2a6671(0x144)](_0x4b254c);if(_0x550293==null)return _0x4b254c;const _0xc165e5=[];for(let _0x1a6071=0x0,_0x2739b7=_0x550293['length'];_0x1a6071<_0x2739b7;_0x1a6071++){const _0x57247b=_0x550293[_0x1a6071];if(typeof _0x57247b==_0x2a6671(0xa6)||_0x57247b['nodeType']!==_0x329dfa['REFERENCE']){_0xc165e5[_0x2a6671(0x1ca)](_0x57247b);continue;}const {token:_0x115746}=_0x57247b,_0x5b0ce2=_0x15fb8c(_0x115746),{range:_0x3cbd3c,sheetName:_0x25cf3d,unitId:_0x2d89fe}=_0x5b0ce2;if((_0x314060===_0x2d89fe||_0x2d89fe==='')&&(_0x521231===_0x25cf3d||_0x25cf3d==='')){const _0x4f835b=_0x2863de(_0x3cbd3c),_0x54826f=_0x4f835b?_0x35dead({'range':_0x4f835b,'sheetName':_0x25cf3d,'unitId':_0x2d89fe}):_0x5c62ee['ERROR'];_0xc165e5[_0x2a6671(0x1ca)]({..._0x57247b,'token':_0x54826f});}else _0xc165e5[_0x2a6671(0x1ca)](_0x57247b);}return'='+_0x50f8e7(_0xc165e5);}function H(_0x59bd1b,_0x343a1e){const _0x14c682=_0x572182;return _0x59bd1b[_0x14c682(0xa5)]<=_0x343a1e['end']&&_0x59bd1b['end']>=_0x343a1e[_0x14c682(0xa5)];}function Te(_0x13ea45,_0xf8ff8a){const _0x5af745=_0x572182;return _0x13ea45[_0x5af745(0xa5)]<=_0xf8ff8a[_0x5af745(0xa5)]&&_0x13ea45[_0x5af745(0x1c4)]>=_0xf8ff8a['end'];}function Ue(_0x5edcbe,_0x4f1314){let _0x253ded=[_0x5edcbe];for(const _0x5c1fc0 of _0x4f1314){const _0xeee277=[];for(const _0x36365c of _0x253ded)_0xeee277['push'](...Xn(_0x36365c,_0x5c1fc0));_0x253ded=_0xeee277;}return _0x253ded;}function _0x2b5d(_0xd147b8,_0x1fb142){const _0x16907c=_0x1690();return _0x2b5d=function(_0x2b5da4,_0x352e56){_0x2b5da4=_0x2b5da4-0x7a;let _0xda4ce0=_0x16907c[_0x2b5da4];return _0xda4ce0;},_0x2b5d(_0xd147b8,_0x1fb142);}function Xn(_0x41c5d5,_0x5d120b){const _0x444505=_0x572182,_0x49ceed=[];if(Te(_0x5d120b,_0x41c5d5))return _0x49ceed;if(Te(_0x41c5d5,_0x5d120b)){const _0x2cfd1b=_0x41c5d5[_0x444505(0xa5)],_0x164990=_0x5d120b[_0x444505(0xa5)]-0x1,_0x5a8672=_0x5d120b[_0x444505(0x1c4)]+0x1,_0x4a2821=_0x41c5d5[_0x444505(0x1c4)];return _0x2cfd1b<=_0x164990&&_0x49ceed[_0x444505(0x1ca)]({'start':_0x2cfd1b,'end':_0x164990}),_0x5a8672<=_0x4a2821&&_0x49ceed[_0x444505(0x1ca)]({'start':_0x5a8672,'end':_0x4a2821}),_0x49ceed;}return H(_0x41c5d5,_0x5d120b)?(_0x41c5d5[_0x444505(0xa5)]<_0x5d120b[_0x444505(0xa5)]&&_0x49ceed[_0x444505(0x1ca)]({'start':_0x41c5d5['start'],'end':_0x5d120b[_0x444505(0xa5)]-0x1}),_0x41c5d5[_0x444505(0x1c4)]>_0x5d120b[_0x444505(0x1c4)]&&_0x49ceed[_0x444505(0x1ca)]({'start':_0x5d120b[_0x444505(0x1c4)]+0x1,'end':_0x41c5d5['end']}),_0x49ceed):[_0x41c5d5];}function be(_0x1f8d48,_0x50990e){const _0x57aca7=_0x572182,_0x2871a9={'startColumn':_0x1f8d48[_0x57aca7(0xa5)],'endColumn':_0x1f8d48[_0x57aca7(0x1c4)],'startRow':0x0,'endRow':0x1,'rangeType':_0x3e1f4a[_0x57aca7(0x1ff)]},_0x9178da={'startColumn':_0x50990e[_0x57aca7(0xa5)],'endColumn':_0x50990e[_0x57aca7(0x1c4)],'startRow':0x0,'endRow':0x1,'rangeType':_0x3e1f4a[_0x57aca7(0x1ff)]},_0xd56d3=_0x44a143(_0x2871a9,_0x9178da);return{'start':_0x50990e['start']+_0xd56d3[_0x57aca7(0xc3)],'end':_0x50990e[_0x57aca7(0x1c4)]+_0xd56d3[_0x57aca7(0xc3)]+_0xd56d3[_0x57aca7(0xf6)]};}function Me(_0xd0c35e,_0xa253af){const _0x3e1f5a=_0x572182,_0x186a8e={'startColumn':_0xd0c35e['start'],'endColumn':_0xd0c35e['end'],'startRow':0x0,'endRow':0x1,'rangeType':_0x3e1f4a[_0x3e1f5a(0x1ff)]},_0x3396ce={'startColumn':_0xa253af[_0x3e1f5a(0xa5)],'endColumn':_0xa253af['end'],'startRow':0x0,'endRow':0x1,'rangeType':_0x3e1f4a[_0x3e1f5a(0x1ff)]},_0x37a97a=_0x180da6(_0x186a8e,_0x3396ce);return _0x37a97a===null?null:{'start':_0xa253af['start']+_0x37a97a['step'],'end':_0xa253af[_0x3e1f5a(0x1c4)]+_0x37a97a[_0x3e1f5a(0xc3)]+_0x37a97a[_0x3e1f5a(0xf6)]};}function Tt(_0x1f4a59,_0x390361){const _0x53bf77=_0x572182,{unitId:_0xb39c95,subUnitId:_0x149d96}=_0x1f4a59[_0x53bf77(0x8d)],_0x4d796e=_0x186f21=>dt(_0xb39c95,_0x149d96,_0x186f21,_0x35c61b=>_0x8e6890(_0x35c61b,_0x390361)),_0x3aad8d=[],_0x5b72e9=_0x420b9c=>{const _0x4600b6=_0x53bf77;var _0x2fabee,_0x5432ed;const _0xd7d549=_0x420b9c['uid'],_0x4771a4=_0x420b9c[_0x4600b6(0xd1)][_0x4600b6(0x1e0)](_0x17a424=>_0x44a031(_0x17a424,_0x390361)),_0x23ed31=(_0x2fabee=_0x420b9c['formula1'])!=null?_0x2fabee:'',_0x58cd41=(_0x5432ed=_0x420b9c['formula2'])!=null?_0x5432ed:'';let _0x20a067=_0x23ed31,_0x417771=_0x58cd41;_0x20a3db(_0x23ed31)&&(_0x20a067=_0x4d796e(_0x23ed31)),_0x20a3db(_0x58cd41)&&(_0x417771=_0x4d796e(_0x58cd41)),(_0x20a067!==_0x23ed31||_0x417771!==_0x58cd41)&&_0x3aad8d['push']({'id':_0x4e1baf['id'],'params':{'unitId':_0xb39c95,'subUnitId':_0x149d96,'ruleId':_0xd7d549,'payload':{'type':_0x4e3a21[_0x4600b6(0xbe)],'payload':{'type':_0x420b9c[_0x4600b6(0x120)],'formula1':_0x20a067,'formula2':_0x417771}}}});const _0x130c25=_0x4771a4[_0x4600b6(0x13b)]()[_0x4600b6(0x9f)](Boolean);_0x592f19(_0x420b9c[_0x4600b6(0xd1)],_0x130c25)||_0x3aad8d['push']({'id':_0x4e1baf['id'],'params':{'unitId':_0xb39c95,'subUnitId':_0x149d96,'ruleId':_0xd7d549,'payload':{'type':_0x4e3a21[_0x4600b6(0x94)],'payload':_0x130c25}}});};return Array[_0x53bf77(0x16c)](_0x1f4a59[_0x53bf77(0x8d)][_0x53bf77(0xea)])?_0x1f4a59[_0x53bf77(0x8d)][_0x53bf77(0xea)][_0x53bf77(0xc5)](_0x41cc85=>_0x5b72e9(_0x41cc85)):_0x5b72e9(_0x1f4a59[_0x53bf77(0x8d)][_0x53bf77(0xea)]),_0x3aad8d;}const Kn={'m1':_0x31c10b['id'],'m2':_0x3bedd8['id'],'handler'(_0x219a72,_0x4b37bf){const _0x2f9e32=_0x572182,_0x2f2209={'m1Prime':_0x219a72,'m2Prime':_0x4b37bf};if(_0x219a72['params']['unitId']!==_0x4b37bf[_0x2f9e32(0x8d)][_0x2f9e32(0xdb)]||_0x219a72[_0x2f9e32(0x8d)]['subUnitId']!==_0x4b37bf[_0x2f9e32(0x8d)][_0x2f9e32(0x20b)])return _0x2f2209;const _0xf6bfa9={'id':_0x563de0['id'],'params':{'fromRange':_0x219a72[_0x2f9e32(0x8d)][_0x2f9e32(0x11d)],'toRange':_0x219a72[_0x2f9e32(0x8d)][_0x2f9e32(0x1d0)]}},_0x1b38bb=Tt(_0x4b37bf,_0xf6bfa9);return{'m1Prime':[_0x219a72,..._0x1b38bb],'m2Prime':[_0x4b37bf,..._0x1b38bb]};}},zn={'m1':_0x541ec4['id'],'m2':_0x3bedd8['id'],'handler'(_0x45ee04,_0x17452e){const _0x226ab9=_0x572182,_0x56b899={'m1Prime':_0x45ee04,'m2Prime':_0x17452e};if(_0x45ee04['params']['unitId']!==_0x17452e[_0x226ab9(0x8d)][_0x226ab9(0xdb)]||_0x45ee04[_0x226ab9(0x8d)][_0x226ab9(0x20b)]!==_0x17452e[_0x226ab9(0x8d)][_0x226ab9(0x20b)])return _0x56b899;const _0x3b6ba7={'id':_0x172802['id'],'params':{'unitId':_0x45ee04['params']['unitId'],'subUnitId':_0x45ee04['params'][_0x226ab9(0x20b)],'range':_0x45ee04[_0x226ab9(0x8d)]['range']}},_0x451a6b=Tt(_0x17452e,_0x3b6ba7);return{'m1Prime':[_0x45ee04,..._0x451a6b],'m2Prime':[_0x17452e,..._0x451a6b]};}},qn={'m1':_0x541ec4['id'],'m2':_0x4b0a3e['id'],'handler'(_0x26091a,_0x2c0f70){const _0x39748d=_0x572182,_0x30eae1=rr[_0x39748d(0xcd)](_0x2c0f70,_0x26091a);return at(_0x30eae1)?{'m1Prime':_0x30eae1[_0x39748d(0xcf)],'m2Prime':_0x30eae1[_0x39748d(0x119)]}:_0x30eae1;}},Zn={'m1':_0x541ec4['id'],'m2':_0x541ec4['id'],'handler'(_0x59e750,_0x4ee284){const _0x368d97=_0x572182,_0x1ff6e6={'m1Prime':_0x59e750,'m2Prime':_0x4ee284};if(_0x59e750['params'][_0x368d97(0xdb)]!==_0x4ee284[_0x368d97(0x8d)][_0x368d97(0xdb)]||_0x59e750['params']['subUnitId']!==_0x4ee284[_0x368d97(0x8d)]['subUnitId'])return _0x1ff6e6;const _0x525bc2=_0x570d2f['deepClone'](_0x59e750),_0x4a838c=_0x570d2f[_0x368d97(0xb4)](_0x4ee284),_0x2183e7=_0x44a143(h(_0x59e750[_0x368d97(0x8d)][_0x368d97(0x19f)]),h(_0x4ee284[_0x368d97(0x8d)][_0x368d97(0x19f)]));if(_0x2183e7?(_0x4a838c[_0x368d97(0x8d)][_0x368d97(0x19f)]['startColumn']+=_0x2183e7[_0x368d97(0xc3)],_0x4a838c[_0x368d97(0x8d)][_0x368d97(0x19f)][_0x368d97(0x9d)]+=_0x2183e7['step']+(_0x2183e7['length']||0x0)):_0x4a838c['id']=_0x1a62da['id'],_0x59e750['params'][_0x368d97(0x19f)][_0x368d97(0x15a)]!==_0x4ee284['params'][_0x368d97(0x19f)][_0x368d97(0x15a)]){const _0x214d61=_0x44a143(h(_0x4ee284[_0x368d97(0x8d)][_0x368d97(0x19f)]),h(_0x59e750[_0x368d97(0x8d)]['range']));_0x214d61?(_0x525bc2['params'][_0x368d97(0x19f)][_0x368d97(0x15a)]+=_0x214d61[_0x368d97(0xc3)],_0x525bc2[_0x368d97(0x8d)][_0x368d97(0x19f)][_0x368d97(0x9d)]+=_0x214d61['step']+(_0x214d61[_0x368d97(0xf6)]||0x0)):_0x525bc2['id']=_0x1a62da['id'];}return{'m1Prime':_0x525bc2,'m2Prime':_0x4a838c};}},Qn={'m1':_0x541ec4['id'],'m2':_0x31c10b['id'],'handler'(_0xa7102b,_0x18f546){const _0x1147fc=_0x572182,_0x29e2be={'m1Prime':_0xa7102b,'m2Prime':_0x18f546};if(_0xa7102b[_0x1147fc(0x8d)][_0x1147fc(0xdb)]!==_0x18f546['params']['unitId']||_0xa7102b[_0x1147fc(0x8d)][_0x1147fc(0x20b)]!==_0x18f546[_0x1147fc(0x8d)][_0x1147fc(0x20b)])return _0x29e2be;const _0xff9ad6=_0x570d2f[_0x1147fc(0xb4)](_0xa7102b),_0x6b27c3=_0x570d2f[_0x1147fc(0xb4)](_0x18f546),_0x20c2f4=_0x18f546[_0x1147fc(0x8d)][_0x1147fc(0x11d)],_0x2dd4fc=_0x18f546[_0x1147fc(0x8d)][_0x1147fc(0x1d0)];if(_0xa7102b[_0x1147fc(0x8d)]['range'][_0x1147fc(0x15a)]>_0x20c2f4[_0x1147fc(0x15a)]&&_0xa7102b[_0x1147fc(0x8d)]['range'][_0x1147fc(0x15a)]<=_0x20c2f4['endColumn']||_0xa7102b[_0x1147fc(0x8d)]['range'][_0x1147fc(0x15a)]>_0x2dd4fc[_0x1147fc(0x15a)]&&_0xa7102b[_0x1147fc(0x8d)][_0x1147fc(0x19f)][_0x1147fc(0x15a)]<=_0x2dd4fc['endColumn'])return{'error':new Error(_0x1147fc(0x1b6))};const _0x34984f=_0x44a143(h(_0xa7102b['params']['range']),h(_0x20c2f4)),_0x511868=_0x44a143(h(_0xa7102b['params'][_0x1147fc(0x19f)]),h(_0x2dd4fc));if(_0x6b27c3[_0x1147fc(0x8d)][_0x1147fc(0x11d)][_0x1147fc(0x15a)]+=_0x34984f[_0x1147fc(0xc3)],_0x6b27c3[_0x1147fc(0x8d)]['sourceRange'][_0x1147fc(0x9d)]+=_0x34984f[_0x1147fc(0xc3)]+(_0x34984f[_0x1147fc(0xf6)]||0x0),_0x6b27c3[_0x1147fc(0x8d)][_0x1147fc(0x1d0)]['startColumn']+=_0x511868[_0x1147fc(0xc3)],_0x6b27c3[_0x1147fc(0x8d)][_0x1147fc(0x1d0)][_0x1147fc(0x9d)]+=_0x511868[_0x1147fc(0xc3)]+(_0x511868[_0x1147fc(0xf6)]||0x0),_0x20c2f4[_0x1147fc(0x15a)]>=_0xa7102b[_0x1147fc(0x8d)][_0x1147fc(0x19f)][_0x1147fc(0x15a)]&&_0x2dd4fc['startColumn']<_0xa7102b[_0x1147fc(0x8d)]['range']['startColumn']){const _0x12b296=_0x2dd4fc['endColumn']-_0x2dd4fc[_0x1147fc(0x15a)]+0x1;_0xff9ad6[_0x1147fc(0x8d)][_0x1147fc(0x19f)][_0x1147fc(0x15a)]+=_0x12b296,_0xff9ad6[_0x1147fc(0x8d)][_0x1147fc(0x19f)][_0x1147fc(0x9d)]+=_0x12b296;}else{if(_0x20c2f4[_0x1147fc(0x9d)]<_0xa7102b[_0x1147fc(0x8d)][_0x1147fc(0x19f)][_0x1147fc(0x15a)]&&_0x2dd4fc[_0x1147fc(0x15a)]>=_0xa7102b[_0x1147fc(0x8d)][_0x1147fc(0x19f)][_0x1147fc(0x15a)]){const _0x2c85bc=_0x20c2f4[_0x1147fc(0x9d)]-_0x20c2f4[_0x1147fc(0x15a)]+0x1;_0xff9ad6[_0x1147fc(0x8d)][_0x1147fc(0x19f)][_0x1147fc(0x15a)]-=_0x2c85bc,_0xff9ad6[_0x1147fc(0x8d)][_0x1147fc(0x19f)][_0x1147fc(0x9d)]-=_0x2c85bc;}}return{'m1Prime':_0xff9ad6,'m2Prime':_0x6b27c3};}},ta={'m1':_0x541ec4['id'],'m2':_0x43f1cd['id'],'handler'(_0x127054,_0x3863e0){const _0x3c29fa=_0x572182,_0x2839cc={'m1Prime':_0x127054,'m2Prime':_0x3863e0};if(_0x127054[_0x3c29fa(0x8d)]['unitId']!==_0x3863e0['params']['unitId']||_0x127054[_0x3c29fa(0x8d)][_0x3c29fa(0x20b)]!==_0x3863e0['params'][_0x3c29fa(0x1b0)][_0x3c29fa(0x20b)]&&_0x127054[_0x3c29fa(0x8d)][_0x3c29fa(0x20b)]!==_0x3863e0[_0x3c29fa(0x8d)]['to']['subUnitId'])return _0x2839cc;const _0x3415b8=_0x570d2f[_0x3c29fa(0xb4)](_0x127054),_0x380bbc=_0x570d2f[_0x3c29fa(0xb4)](_0x3863e0);if(_0x127054[_0x3c29fa(0x8d)]['subUnitId']===_0x3863e0[_0x3c29fa(0x8d)]['from'][_0x3c29fa(0x20b)]){const _0x7f6e1f=new _0x1f7bb9(_0x380bbc[_0x3c29fa(0x8d)][_0x3c29fa(0x1b0)]['value'])[_0x3c29fa(0x182)](),{startColumn:_0x4f543d,endColumn:_0x3aa2da}=_0x7f6e1f,{startColumn:_0x2eaab1,endColumn:_0x450d35}=_0x127054['params'][_0x3c29fa(0x19f)],{step:_0x1773b2,length:_0x3a6c3b}=_0x44a143(_0x127054['params'][_0x3c29fa(0x19f)],_0x7f6e1f);_0x1773b2>0x0&&_0x3a6c3b===0x0&&Rt(_0x380bbc['params'][_0x3c29fa(0x1b0)][_0x3c29fa(0x17e)],_0x4f543d,_0x3aa2da-_0x4f543d+0x1,_0x1773b2),_0x1773b2===0x0&&_0x3a6c3b>0x0&&Rt(_0x380bbc[_0x3c29fa(0x8d)][_0x3c29fa(0x1b0)][_0x3c29fa(0x17e)],_0x2eaab1,_0x3aa2da-_0x2eaab1+0x1,_0x450d35-_0x2eaab1+0x1);}if(_0x127054[_0x3c29fa(0x8d)][_0x3c29fa(0x20b)]===_0x3863e0[_0x3c29fa(0x8d)]['to'][_0x3c29fa(0x20b)]){const _0x4d5c44=new _0x1f7bb9(_0x380bbc[_0x3c29fa(0x8d)]['to'][_0x3c29fa(0x17e)])['getDataRange'](),{startColumn:_0x40d890,endColumn:_0x3d64fe}=_0x4d5c44,{startColumn:_0x99ff15,endColumn:_0x329e77}=_0x127054[_0x3c29fa(0x8d)][_0x3c29fa(0x19f)],{step:_0x4900e9,length:_0x393b51}=_0x44a143(_0x127054['params']['range'],_0x4d5c44);_0x4900e9>0x0&&_0x393b51===0x0&&Rt(_0x380bbc['params']['to'][_0x3c29fa(0x17e)],_0x40d890,_0x3d64fe-_0x40d890+0x1,_0x4900e9),_0x4900e9===0x0&&_0x393b51>0x0&&Rt(_0x380bbc[_0x3c29fa(0x8d)]['to'][_0x3c29fa(0x17e)],_0x99ff15,_0x3d64fe-_0x99ff15+0x1,_0x329e77-_0x99ff15+0x1);}return{'m1Prime':_0x3415b8,'m2Prime':_0x380bbc};}},ea={'m1':_0x541ec4['id'],'m2':_0xe5c4bd['id'],'handler'(_0x5f41cb,_0x1a9b67){const _0x3db00d=_0x572182,_0x49c65d={'m1Prime':_0x5f41cb,'m2Prime':_0x1a9b67};if(_0x5f41cb[_0x3db00d(0x8d)][_0x3db00d(0xdb)]!==_0x1a9b67[_0x3db00d(0x8d)]['unitId']||_0x5f41cb[_0x3db00d(0x8d)][_0x3db00d(0x20b)]!==_0x1a9b67[_0x3db00d(0x8d)][_0x3db00d(0x20b)])return _0x49c65d;const _0x148a7e=_0x570d2f[_0x3db00d(0xb4)](_0x5f41cb),_0x111f7c=_0x570d2f[_0x3db00d(0xb4)](_0x1a9b67);if(_0x5f41cb[_0x3db00d(0x8d)][_0x3db00d(0x19f)][_0x3db00d(0x15a)]<=_0x1a9b67[_0x3db00d(0x8d)][_0x3db00d(0x19f)][_0x3db00d(0x9d)]&&_0x5f41cb['params'][_0x3db00d(0x19f)][_0x3db00d(0x15a)]>_0x1a9b67[_0x3db00d(0x8d)][_0x3db00d(0x19f)][_0x3db00d(0x15a)])return{'error':new Error(_0x3db00d(0x130))};const _0x2d9925=_0x44a143(h(_0x5f41cb[_0x3db00d(0x8d)]['range']),h(_0x1a9b67[_0x3db00d(0x8d)][_0x3db00d(0x19f)]));_0x2d9925?(_0x111f7c[_0x3db00d(0x8d)][_0x3db00d(0x19f)][_0x3db00d(0x15a)]+=_0x2d9925[_0x3db00d(0xc3)],_0x111f7c[_0x3db00d(0x8d)][_0x3db00d(0x19f)][_0x3db00d(0x9d)]+=_0x2d9925[_0x3db00d(0xc3)]+(_0x2d9925[_0x3db00d(0xf6)]||0x0)):_0x111f7c['id']=_0x1a62da['id'];const _0xa4c8a1=_0x180da6(h(_0x1a9b67['params']['range']),h(_0x5f41cb['params'][_0x3db00d(0x19f)]));return _0xa4c8a1&&(_0x148a7e[_0x3db00d(0x8d)]['range'][_0x3db00d(0x15a)]+=_0xa4c8a1[_0x3db00d(0xc3)],_0x148a7e['params'][_0x3db00d(0x19f)]['endColumn']+=_0xa4c8a1[_0x3db00d(0xc3)]+(_0xa4c8a1[_0x3db00d(0xf6)]||0x0)),{'m1Prime':_0x148a7e,'m2Prime':_0x111f7c};}},ra={'m1':_0x541ec4['id'],'m2':_0x3dcda7['id'],'handler'(_0x40d7b0,_0x4bffd0){const _0xc6e86a=_0x572182,_0xe039a7={'m1Prime':_0x40d7b0,'m2Prime':_0x4bffd0};if(_0x40d7b0[_0xc6e86a(0x8d)]['unitId']!==_0x4bffd0[_0xc6e86a(0x8d)][_0xc6e86a(0xdb)]||_0x40d7b0['params'][_0xc6e86a(0x20b)]!==_0x4bffd0[_0xc6e86a(0x8d)][_0xc6e86a(0x20b)])return _0xe039a7;const _0x4c346c=_0x570d2f[_0xc6e86a(0xb4)](_0x40d7b0),_0x4683a1=_0x570d2f[_0xc6e86a(0xb4)](_0x4bffd0),{ranges:_0x214202}=_0x4683a1[_0xc6e86a(0x8d)];return _0x214202[_0xc6e86a(0xaf)](_0x2d005e=>{const _0x181d05=_0xc6e86a,_0x35404a=_0x44a143(h(_0x40d7b0[_0x181d05(0x8d)][_0x181d05(0x19f)]),h(_0x2d005e));return _0x35404a['length']!==0x0?!0x0:(_0x2d005e[_0x181d05(0x15a)]+=_0x35404a[_0x181d05(0xc3)],_0x2d005e[_0x181d05(0x9d)]+=_0x35404a[_0x181d05(0xc3)],!0x1);})?{'error':new Error(_0xc6e86a(0xb3))}:{'m1Prime':_0x4c346c,'m2Prime':_0x4683a1};}},na={'m1':_0x541ec4['id'],'m2':_0x3c47fd['id'],'handler'(_0x2d5629,_0x4bfb00){const _0x37821d=_0x572182,_0x2d0f87=_0x570d2f[_0x37821d(0xb4)](_0x2d5629),_0x5e6897=_0x570d2f[_0x37821d(0xb4)](_0x4bfb00);if(_0x2d5629[_0x37821d(0x8d)][_0x37821d(0xdb)]!==_0x4bfb00[_0x37821d(0x8d)]['unitId']||_0x2d5629[_0x37821d(0x8d)][_0x37821d(0x20b)]!==_0x4bfb00[_0x37821d(0x8d)][_0x37821d(0x20b)])return{'m1Prime':_0x2d0f87,'m2Prime':_0x5e6897};const _0x3f4643=_0x5e6897['params'][_0x37821d(0xd1)][_0x37821d(0x1e0)](_0x1d7455=>{const _0x93b1bc=_0x37821d,_0x355189=_0x2d0f87[_0x93b1bc(0x8d)][_0x93b1bc(0x19f)],_0x175e5b=_0x355189[_0x93b1bc(0x9d)]-_0x355189[_0x93b1bc(0x15a)]+0x1;return _0x355189[_0x93b1bc(0x15a)]<=_0x1d7455['startColumn']?{..._0x1d7455,'startColumn':_0x1d7455[_0x93b1bc(0x15a)]+_0x175e5b,'endColumn':_0x1d7455[_0x93b1bc(0x9d)]+_0x175e5b}:_0x355189[_0x93b1bc(0x15a)]>_0x1d7455[_0x93b1bc(0x15a)]&&_0x355189[_0x93b1bc(0x15a)]<=_0x1d7455[_0x93b1bc(0x9d)]?{..._0x1d7455,'endColumn':_0x1d7455['endColumn']+_0x175e5b}:{..._0x1d7455};});return _0x5e6897[_0x37821d(0x8d)][_0x37821d(0xd1)]=_0x3f4643,{'m1Prime':_0x2d0f87,'m2Prime':_0x5e6897};}},aa={'m1':_0x541ec4['id'],'m2':_0x587c63['id'],'handler'(_0x15dd46,_0x439313){const _0x5bd50c=_0x572182,_0x1dc3e7={'m1Prime':_0x15dd46,'m2Prime':_0x439313};if(_0x15dd46[_0x5bd50c(0x8d)]['unitId']!==_0x439313['params']['unitId']||_0x15dd46[_0x5bd50c(0x8d)][_0x5bd50c(0x20b)]!==_0x439313['params'][_0x5bd50c(0x20b)])return _0x1dc3e7;const _0x34b500=_0x570d2f[_0x5bd50c(0xb4)](_0x439313),_0x36bffc=_0x44a143(h(_0x15dd46[_0x5bd50c(0x8d)]['range']),h(_0x439313[_0x5bd50c(0x8d)]['range']));return _0x34b500[_0x5bd50c(0x8d)][_0x5bd50c(0x19f)][_0x5bd50c(0x15a)]+=_0x36bffc['step'],_0x34b500['params'][_0x5bd50c(0x19f)][_0x5bd50c(0x9d)]+=_0x36bffc[_0x5bd50c(0xc3)]+(_0x36bffc[_0x5bd50c(0xf6)]||0x0),{'m1Prime':_0x15dd46,'m2Prime':_0x34b500};}},sa={'m1':_0x541ec4['id'],'m2':_0x35fae0['id'],'handler'(_0x534405,_0x5c54b5){const _0x8d1e99=_0x572182,_0x90d7d9={'m1Prime':_0x534405,'m2Prime':_0x5c54b5};if(_0x534405[_0x8d1e99(0x8d)]['unitId']!==_0x5c54b5[_0x8d1e99(0x8d)][_0x8d1e99(0xdb)]||_0x534405['params']['subUnitId']!==_0x5c54b5[_0x8d1e99(0x8d)][_0x8d1e99(0x20b)])return _0x90d7d9;const _0x1da115=_0x570d2f[_0x8d1e99(0xb4)](_0x534405),_0x3a5640=_0x570d2f[_0x8d1e99(0xb4)](_0x5c54b5),{columnData:_0x59a561}=_0x3a5640['params'];for(let _0x229746=_0x534405[_0x8d1e99(0x8d)]['range'][_0x8d1e99(0x15a)];_0x229746<=_0x534405['params'][_0x8d1e99(0x19f)]['endColumn'];_0x229746++)_0x4a2d3e(_0x229746,void 0x0,_0x59a561);return{'m1Prime':_0x1da115,'m2Prime':_0x3a5640};}},oa={'m1':_0x541ec4['id'],'m2':_0x519e99['id'],'handler'(_0x55ccae,_0x3ebc5b){const _0x2d46af=_0x572182,_0x52a1e7={'m1Prime':_0x55ccae,'m2Prime':_0x3ebc5b};if(_0x55ccae[_0x2d46af(0x8d)][_0x2d46af(0xdb)]!==_0x3ebc5b[_0x2d46af(0x8d)][_0x2d46af(0xdb)]||_0x55ccae['params']['subUnitId']!==_0x3ebc5b[_0x2d46af(0x8d)][_0x2d46af(0x20b)])return _0x52a1e7;const _0x3c8c88=_0x570d2f[_0x2d46af(0xb4)](_0x55ccae),_0x51059b=_0x570d2f[_0x2d46af(0xb4)](_0x3ebc5b),{ranges:_0x1b87c6}=_0x51059b[_0x2d46af(0x8d)];return _0x1b87c6[_0x2d46af(0xaf)](_0x505fad=>{const _0x428852=_0x2d46af,_0xd4ec67=_0x44a143(h(_0x55ccae['params'][_0x428852(0x19f)]),_0x505fad);return _0xd4ec67['length']!==0x0?!0x0:(_0x505fad[_0x428852(0x15a)]+=_0xd4ec67[_0x428852(0xc3)],_0x505fad['endColumn']+=_0xd4ec67[_0x428852(0xc3)],!0x1);})?{'error':new Error(_0x2d46af(0x1c8))}:{'m1Prime':_0x3c8c88,'m2Prime':_0x51059b};}},ia={'m1':_0x541ec4['id'],'m2':_0x20806c['id'],'handler'(_0x135571,_0x5931ad){const _0x19af56=_0x572182,_0x163ab5={'m1Prime':_0x135571,'m2Prime':_0x5931ad};if(_0x135571[_0x19af56(0x8d)][_0x19af56(0xdb)]!==_0x5931ad[_0x19af56(0x8d)][_0x19af56(0xdb)]||_0x135571[_0x19af56(0x8d)]['subUnitId']!==_0x5931ad['params']['subUnitId'])return _0x163ab5;const _0x37f4f4=_0x570d2f['deepClone'](_0x135571),_0x16f119=_0x570d2f[_0x19af56(0xb4)](_0x5931ad),{ranges:_0x79f0fc}=_0x16f119[_0x19af56(0x8d)];return _0x79f0fc[_0x19af56(0xaf)](_0x49fbf6=>{const _0x3bdc95=_0x19af56,_0x28623d=_0x44a143(h(_0x135571[_0x3bdc95(0x8d)][_0x3bdc95(0x19f)]),_0x49fbf6);return _0x28623d[_0x3bdc95(0xf6)]!==0x0?!0x0:(_0x49fbf6[_0x3bdc95(0x15a)]+=_0x28623d[_0x3bdc95(0xc3)],_0x49fbf6[_0x3bdc95(0x9d)]+=_0x28623d[_0x3bdc95(0xc3)],!0x1);})?{'error':new Error('insert\x20col\x20is\x20conflict\x20with\x20set\x20col\x20visible')}:{'m1Prime':_0x37f4f4,'m2Prime':_0x16f119};}},da={'m1':_0x541ec4['id'],'m2':_0x4075e['id'],'handler'(_0x40584b,_0xef2424){const _0x264458=_0x572182,_0x577b16={'m1Prime':_0x40584b,'m2Prime':_0xef2424};if(_0x40584b[_0x264458(0x8d)]['unitId']!==_0xef2424['params']['unitId']||_0x40584b[_0x264458(0x8d)]['subUnitId']!==_0xef2424[_0x264458(0x8d)][_0x264458(0x20b)])return _0x577b16;const _0x1415b1=[_0x570d2f[_0x264458(0xb4)](_0x40584b)],_0xaec688=_0x570d2f[_0x264458(0xb4)](_0xef2424),{values:_0xa7c09a}=_0xaec688[_0x264458(0x8d)],_0x123b22=[];let _0x5070d3=!0x1;for(const _0x4ead23 in _0xa7c09a){const _0x443716=_0xa7c09a[_0x4ead23];if(_0x123b22[_0x264458(0x1ca)](..._0x443716[_0x264458(0xd1)]),_0x443716[_0x264458(0xd1)][_0x264458(0xaf)](_0x586956=>{const _0x19c52a=_0x264458,_0x170f1b=_0x44a143(h(_0x40584b[_0x19c52a(0x8d)]['range']),h(_0x586956));return _0x170f1b[_0x19c52a(0xf6)]!==0x0?!0x0:(_0x170f1b[_0x19c52a(0xc3)]!==0x0&&(_0x5070d3=!0x0),_0x586956[_0x19c52a(0x15a)]+=_0x170f1b[_0x19c52a(0xc3)],_0x586956['endColumn']+=_0x170f1b[_0x19c52a(0xc3)],!0x1);}))return{'error':new Error(_0x264458(0x115))};}if(_0x5070d3){const _0x1980db={'id':_0x3dcda7['id'],'params':{'unitId':_0xef2424[_0x264458(0x8d)][_0x264458(0xdb)],'subUnitId':_0xef2424[_0x264458(0x8d)][_0x264458(0x20b)],'ranges':_0x123b22}};_0x1415b1['push'](_0x1980db,_0xaec688);}return{'m1Prime':_0x1415b1,'m2Prime':_0xaec688};}},ma={'m1':_0x541ec4['id'],'m2':_0x15eb0a['id'],'handler'(_0x2d58fb,_0x4bfc7d){const _0x14dd60=_0x572182,_0x52ea07={'m1Prime':_0x2d58fb,'m2Prime':_0x4bfc7d};if(_0x2d58fb[_0x14dd60(0x8d)][_0x14dd60(0xdb)]!==_0x4bfc7d[_0x14dd60(0x8d)][_0x14dd60(0xdb)]||_0x2d58fb[_0x14dd60(0x8d)][_0x14dd60(0x20b)]!==_0x4bfc7d['params'][_0x14dd60(0x20b)])return _0x52ea07;const _0x1a382d=[_0x570d2f[_0x14dd60(0xb4)](_0x2d58fb)],_0x490648=_0x570d2f[_0x14dd60(0xb4)](_0x4bfc7d),_0x1f764d=new _0x1f7bb9(_0x490648['params'][_0x14dd60(0x208)]),_0x45158a=_0x1f764d[_0x14dd60(0x182)](),_0x508760=_0x2d58fb[_0x14dd60(0x8d)]['range'],_0x4128bf=_0x508760['endColumn']-_0x508760[_0x14dd60(0x15a)]+0x1;if(_0x490648[_0x14dd60(0x8d)][_0x14dd60(0x208)]&&_0x508760[_0x14dd60(0x15a)]<=_0x45158a[_0x14dd60(0x9d)]){const _0x1b1778=Math[_0x14dd60(0xed)](_0x45158a[_0x14dd60(0x15a)],_0x508760[_0x14dd60(0x15a)]);Rt(_0x490648[_0x14dd60(0x8d)][_0x14dd60(0x208)],_0x1b1778,_0x45158a[_0x14dd60(0x9d)]-_0x1b1778+0x1,_0x4128bf);}const _0x9beb17=new _0x1f7bb9();let _0x3c0173=!0x1;if(_0x1f764d['forValue']((_0x4ba699,_0xbc4fa7,_0x1dd66b)=>{const _0x14acf0=_0x14dd60;if(_0x1dd66b&&_0x1dd66b['f']){const _0x3028d7=_0x1dd66b['f'];let _0x2bb7c6=!0x1;const _0x4a9e98=dt(_0x2d58fb[_0x14acf0(0x8d)][_0x14acf0(0xdb)],_0x2d58fb[_0x14acf0(0x8d)][_0x14acf0(0x20b)],_0x3028d7,_0x5d7587=>{const _0x518603=_0x14acf0,_0x3b5cf5=_0x44a143(h(_0x2d58fb[_0x518603(0x8d)][_0x518603(0x19f)]),h(_0x5d7587));return(_0x3b5cf5[_0x518603(0xc3)]!==0x0||_0x3b5cf5[_0x518603(0xf6)]!==0x0)&&(_0x2bb7c6=!0x0,_0x5d7587[_0x518603(0x15a)]+=_0x3b5cf5[_0x518603(0xc3)],_0x5d7587[_0x518603(0x9d)]+=_0x3b5cf5[_0x518603(0xc3)]+_0x3b5cf5[_0x518603(0xf6)]),_0x5d7587;});_0x2bb7c6&&(_0x3c0173=!0x0,_0x1dd66b['f']=_0x4a9e98,_0x9beb17['setValue'](_0x4ba699,_0xbc4fa7,{..._0x1dd66b}));}}),_0x3c0173){const _0x240399={'id':_0x15eb0a['id'],'params':{'unitId':_0x4bfc7d['params'][_0x14dd60(0xdb)],'subUnitId':_0x4bfc7d['params'][_0x14dd60(0x20b)],'cellValue':_0x9beb17[_0x14dd60(0x16a)]()}};_0x1a382d[_0x14dd60(0x1ca)](_0x240399);}return{'m1Prime':_0x1a382d,'m2Prime':_0x490648};}},ua={'m1':_0x541ec4['id'],'m2':_0x23969e['id'],'handler'(_0xdd95f,_0x53bc42){const _0x31cc54=_0x572182,_0x51a504={'m1Prime':[],'m2Prime':[]};if(_0xdd95f[_0x31cc54(0x8d)][_0x31cc54(0xdb)]!==_0x53bc42[_0x31cc54(0x8d)][_0x31cc54(0xdb)]||_0xdd95f[_0x31cc54(0x8d)][_0x31cc54(0x20b)]!==_0x53bc42[_0x31cc54(0x8d)]['subUnitId'])return _0x51a504;const _0x2e21da=_0x570d2f['deepClone'](_0x53bc42);let _0x5e1d2b=!0x1;return _0x2e21da[_0x31cc54(0x8d)]['selections']['forEach'](_0x2dda8c=>{const _0x348af9=_0x31cc54,{range:_0xb4f3a5,primary:_0x1a4395}=_0x2dda8c,_0x4ad137=_0x44a143(h(_0xdd95f[_0x348af9(0x8d)][_0x348af9(0x19f)]),h(_0xb4f3a5));if(_0x4ad137[_0x348af9(0xf6)]||_0x4ad137['step']){if(_0xb4f3a5[_0x348af9(0x15a)]+=_0x4ad137[_0x348af9(0xc3)],_0xb4f3a5[_0x348af9(0x9d)]+=_0x4ad137['step']+(_0x4ad137['length']||0x0),_0x1a4395){const _0x4330d0=_0x44a143(h(_0xdd95f[_0x348af9(0x8d)][_0x348af9(0x19f)]),h(_0x1a4395));(_0x4330d0['length']||_0x4330d0[_0x348af9(0xc3)])&&(_0x1a4395[_0x348af9(0x15a)]+=_0x4330d0[_0x348af9(0xc3)],_0x1a4395['endColumn']+=_0x4330d0['step'],_0x1a4395[_0x348af9(0x164)]+=_0x4330d0[_0x348af9(0xc3)]);}_0x5e1d2b=!0x0;}}),_0x5e1d2b&&_0x51a504[_0x31cc54(0xcf)]['push'](_0x2e21da),_0x51a504;}},la={'m1':_0x541ec4['id'],'m2':_0x4112c4['id'],'handler'(_0x3e8f0a,_0x3f2c68){const _0x1cde1d=_0x572182,_0x28083a={'m1Prime':_0x3e8f0a,'m2Prime':_0x3f2c68};if(_0x3e8f0a['params']['unitId']!==_0x3f2c68[_0x1cde1d(0x8d)][_0x1cde1d(0xdb)]||_0x3e8f0a[_0x1cde1d(0x8d)][_0x1cde1d(0x20b)]!==_0x3f2c68['params'][_0x1cde1d(0x20b)])return _0x28083a;const _0x5d2053=_0x570d2f[_0x1cde1d(0xb4)](_0x3e8f0a),_0xc9b82c=_0x570d2f[_0x1cde1d(0xb4)](_0x3f2c68),_0x5f4036=be({'start':_0x3e8f0a[_0x1cde1d(0x8d)][_0x1cde1d(0x19f)]['startColumn'],'end':_0x3e8f0a[_0x1cde1d(0x8d)][_0x1cde1d(0x19f)][_0x1cde1d(0x9d)]},{'start':_0x3f2c68[_0x1cde1d(0x8d)]['col'],'end':_0x3f2c68[_0x1cde1d(0x8d)][_0x1cde1d(0x80)]});if(_0xc9b82c['params'][_0x1cde1d(0x80)]===_0x5f4036['start'])return _0x28083a;_0xc9b82c[_0x1cde1d(0x8d)]['col']=_0x5f4036[_0x1cde1d(0xa5)],_0xc9b82c['params'][_0x1cde1d(0x211)]&&(_0xc9b82c[_0x1cde1d(0x8d)][_0x1cde1d(0x211)][_0x1cde1d(0x7f)]=_0x5f4036['start']);const _0x5aa5ac=_0x570d2f['deepClone'](_0x3f2c68);return _0x5aa5ac[_0x1cde1d(0x8d)][_0x1cde1d(0x211)]=null,{'m1Prime':[_0x5aa5ac,_0xc9b82c,_0x5d2053],'m2Prime':[_0xc9b82c]};}},ca={'m1':_0x541ec4['id'],'m2':_0x23aded['id'],'handler'(_0x50d9e7,_0x49b789){const _0x47b873=_0x572182,_0x255448={'m1Prime':_0x50d9e7,'m2Prime':_0x49b789};if(_0x50d9e7[_0x47b873(0x8d)][_0x47b873(0xdb)]!==_0x49b789[_0x47b873(0x8d)][_0x47b873(0xdb)]||_0x50d9e7['params'][_0x47b873(0x20b)]!==_0x49b789[_0x47b873(0x8d)][_0x47b873(0x20b)])return _0x255448;const _0x27214f=_0x570d2f['deepClone'](_0x50d9e7),_0x46f98b=_0x570d2f[_0x47b873(0xb4)](_0x49b789),_0x37ec7f=be({'start':_0x50d9e7[_0x47b873(0x8d)][_0x47b873(0x19f)][_0x47b873(0x15a)],'end':_0x50d9e7[_0x47b873(0x8d)]['range']['endColumn']},{'start':_0x49b789['params'][_0x47b873(0x19f)][_0x47b873(0x15a)],'end':_0x49b789[_0x47b873(0x8d)]['range'][_0x47b873(0x9d)]});return _0x46f98b[_0x47b873(0x8d)][_0x47b873(0x19f)][_0x47b873(0x15a)]===_0x37ec7f[_0x47b873(0xa5)]&&_0x46f98b[_0x47b873(0x8d)][_0x47b873(0x19f)]['endColumn']===_0x37ec7f[_0x47b873(0x1c4)]?_0x255448:(_0x46f98b[_0x47b873(0x8d)][_0x47b873(0x19f)][_0x47b873(0x15a)]=_0x37ec7f[_0x47b873(0xa5)],_0x46f98b[_0x47b873(0x8d)][_0x47b873(0x19f)][_0x47b873(0x9d)]=_0x37ec7f[_0x47b873(0x1c4)],{'m1Prime':[_0x46f98b,_0x27214f],'m2Prime':[_0x46f98b]});}},pa={'m1':_0x541ec4['id'],'m2':_0x4cb95c['id'],'handler'(_0x33992d,_0xfe3cb0){const _0x4aec0b=_0x572182,_0x1053f0={'m1Prime':_0x33992d,'m2Prime':_0xfe3cb0};if(_0x33992d[_0x4aec0b(0x8d)][_0x4aec0b(0xdb)]!==_0xfe3cb0[_0x4aec0b(0x8d)][_0x4aec0b(0xdb)]||_0x33992d[_0x4aec0b(0x8d)][_0x4aec0b(0x20b)]!==_0xfe3cb0[_0x4aec0b(0x8d)][_0x4aec0b(0x20b)])return _0x1053f0;const _0x2d22ea=_0x570d2f[_0x4aec0b(0xb4)](_0x33992d),_0x1862d0=_0x570d2f[_0x4aec0b(0xb4)](_0xfe3cb0),{ranges:_0x4228a9,colWidth:_0x50d4c0}=_0x1862d0[_0x4aec0b(0x8d)];if(_0x4228a9[_0x4aec0b(0xaf)](_0x31b9b4=>{const _0x4f71b6=_0x4aec0b,_0x183b39=_0x44a143(h(_0x33992d[_0x4f71b6(0x8d)][_0x4f71b6(0x19f)]),_0x31b9b4);return _0x183b39[_0x4f71b6(0xf6)]!==0x0?!0x0:(_0x31b9b4[_0x4f71b6(0x15a)]+=_0x183b39[_0x4f71b6(0xc3)],_0x31b9b4[_0x4f71b6(0x9d)]+=_0x183b39[_0x4f71b6(0xc3)],!0x1);}))return{'error':new Error(_0x4aec0b(0xa4))};if(typeof _0x50d4c0!=_0x4aec0b(0x1b5)){for(let _0x52ede1=_0x33992d['params'][_0x4aec0b(0x19f)][_0x4aec0b(0x15a)];_0x52ede1<=_0x33992d[_0x4aec0b(0x8d)]['range'][_0x4aec0b(0x9d)];_0x52ede1++)_0x4a2d3e(_0x52ede1,void 0x0,_0x50d4c0);}return{'m1Prime':_0x2d22ea,'m2Prime':_0x1862d0};}},wt=(_0x4bc0e3,_0x3b0d34)=>{const _0x43b2c2=_0x572182,_0x549815=_0x426d2f(_0x4bc0e3['params'][_0x43b2c2(0x176)]['ref']),_0x61c31f={'startColumn':_0x549815[_0x43b2c2(0x14c)],'endColumn':_0x549815[_0x43b2c2(0x14c)],'startRow':_0x549815[_0x43b2c2(0x1cb)],'endRow':_0x549815[_0x43b2c2(0x1cb)]},_0x33e125=_0x8e6890(_0x61c31f,_0x3b0d34);if(!_0x33e125)return[{'id':_0x5b7f88['id'],'params':{..._0x4bc0e3[_0x43b2c2(0x8d)],'comment':void 0x0,'commentId':_0x4bc0e3[_0x43b2c2(0x8d)][_0x43b2c2(0x176)]['commentId']}}];const _0x3f2a14=_0x572940(_0x33e125);return _0x3f2a14===_0x4bc0e3[_0x43b2c2(0x8d)][_0x43b2c2(0x176)][_0x43b2c2(0x1c7)]?[]:[{'id':_0x2afd0c['id'],'params':{..._0x4bc0e3[_0x43b2c2(0x8d)],'comment':void 0x0,'payload':{'ref':_0x3f2a14,'commentId':_0x4bc0e3[_0x43b2c2(0x8d)]['payload'][_0x43b2c2(0xf8)]}}}];},fa={'m1':_0x541ec4['id'],'m2':_0x2afd0c['id'],'handler':(_0x10123b,_0x205f08)=>{const _0x1fa656=_0x572182,_0x49b900={'m1Prime':_0x10123b,'m2Prime':_0x205f08};if(_0x10123b['params'][_0x1fa656(0xdb)]!==_0x205f08[_0x1fa656(0x8d)][_0x1fa656(0xdb)]||_0x10123b['params'][_0x1fa656(0x20b)]!==_0x205f08['params'][_0x1fa656(0x20b)])return _0x49b900;const _0x17f0e7={'id':_0x172802['id'],'params':{'unitId':_0x10123b[_0x1fa656(0x8d)][_0x1fa656(0xdb)],'subUnitId':_0x10123b[_0x1fa656(0x8d)][_0x1fa656(0x20b)],'range':_0x10123b[_0x1fa656(0x8d)][_0x1fa656(0x19f)]}},_0x9f3815=wt(_0x205f08,_0x17f0e7);return{'m1Prime':[_0x10123b,..._0x9f3815],'m2Prime':[_0x205f08,..._0x9f3815]};}};function Ct(_0x31efbd,_0x45dc93){const _0x14cd93=_0x572182;var _0x43f0dc,_0x3b8f9c;const {payload:_0x155b58,unitId:_0x56fdd0,subUnitId:_0x507730,ruleId:_0x4b3100}=_0x31efbd[_0x14cd93(0x8d)];switch(_0x155b58[_0x14cd93(0x120)]){case _0x4e3a21[_0x14cd93(0x94)]:{const _0x14eb6c=_0x155b58['payload'][_0x14cd93(0x1e0)](_0x282837=>_0x44a031(_0x282837,_0x45dc93))[_0x14cd93(0x9f)](Boolean)['flat']();if(!_0x592f19(_0x14eb6c,_0x155b58[_0x14cd93(0x176)]))return[{'id':_0x4e1baf['id'],'params':{'unitId':_0x56fdd0,'subUnitId':_0x507730,'ruleId':_0x4b3100,'payload':{'type':_0x4e3a21[_0x14cd93(0x94)],'payload':_0x14eb6c}}}];break;}case _0x4e3a21[_0x14cd93(0xbe)]:{const _0x40eaa1=_0x2b83f6=>dt(_0x56fdd0,_0x507730,_0x2b83f6,_0xf6cee5=>_0x8e6890(_0xf6cee5,_0x45dc93)),_0x3c31d5=(_0x43f0dc=_0x155b58[_0x14cd93(0x176)]['formula1'])!=null?_0x43f0dc:'',_0x4e80fc=(_0x3b8f9c=_0x155b58['payload']['formula2'])!=null?_0x3b8f9c:'';let _0x2bbd21=_0x3c31d5,_0x1ff6db=_0x4e80fc;if(_0x20a3db(_0x3c31d5)&&(_0x2bbd21=_0x40eaa1(_0x3c31d5)),_0x20a3db(_0x4e80fc)&&(_0x1ff6db=_0x40eaa1(_0x4e80fc)),_0x2bbd21!==_0x3c31d5||_0x1ff6db!==_0x4e80fc)return[{'id':_0x4e1baf['id'],'params':{'unitId':_0x56fdd0,'subUnitId':_0x507730,'ruleId':_0x4b3100,'payload':{'type':_0x4e3a21[_0x14cd93(0xbe)],'payload':{'type':_0x155b58[_0x14cd93(0x176)][_0x14cd93(0x120)],'formula1':_0x2bbd21,'formula2':_0x1ff6db}}}}];break;}}return[];}const Ra={'m1':_0x31c10b['id'],'m2':_0x4e1baf['id'],'handler':(_0xb00914,_0x30c898)=>{const _0x5a2942=_0x572182,_0x294d39={'m1Prime':_0xb00914,'m2Prime':_0x30c898};if(_0xb00914[_0x5a2942(0x8d)][_0x5a2942(0xdb)]!==_0x30c898[_0x5a2942(0x8d)][_0x5a2942(0xdb)]||_0x30c898[_0x5a2942(0x8d)][_0x5a2942(0x20b)]!==_0xb00914['params'][_0x5a2942(0x20b)])return _0x294d39;const _0xbd35b6={'id':_0x563de0['id'],'params':{'fromRange':_0xb00914['params'][_0x5a2942(0x11d)],'toRange':_0xb00914['params']['targetRange']}},_0x5cb0e8=Ct(_0x30c898,_0xbd35b6);return{'m1Prime':[_0xb00914,..._0x5cb0e8],'m2Prime':[_0x30c898,..._0x5cb0e8]};}},ha={'m1':_0x541ec4['id'],'m2':_0x4e1baf['id'],'handler':(_0x386078,_0x36812f)=>{const _0x3cc40e=_0x572182,_0xc0025b={'m1Prime':_0x386078,'m2Prime':_0x36812f};if(_0x386078[_0x3cc40e(0x8d)][_0x3cc40e(0xdb)]!==_0x36812f['params']['unitId']||_0x36812f['params']['subUnitId']!==_0x386078[_0x3cc40e(0x8d)][_0x3cc40e(0x20b)])return _0xc0025b;const _0x27d36b={'id':_0x172802['id'],'params':{'unitId':_0x386078['params'][_0x3cc40e(0xdb)],'subUnitId':_0x386078['params']['subUnitId'],'range':_0x386078[_0x3cc40e(0x8d)][_0x3cc40e(0x19f)]}},_0x5026de=Ct(_0x36812f,_0x27d36b);return{'m1Prime':[_0x386078,..._0x5026de],'m2Prime':[_0x36812f,..._0x5026de]};}},ga={'m1':_0x224ab4['id'],'m2':_0x1b398d['id'],'handler':(_0x4dfd43,_0x234493)=>{const _0x3d877e=_0x572182,_0x15f854={'m1Prime':_0x4dfd43,'m2Prime':_0x234493};if(_0x4dfd43[_0x3d877e(0x8d)][_0x3d877e(0xdb)]!==_0x234493[_0x3d877e(0x8d)][_0x3d877e(0xdb)]||_0x4dfd43[_0x3d877e(0x8d)][_0x3d877e(0x20b)]!==_0x234493[_0x3d877e(0x8d)]['subUnitId'])return _0x15f854;const _0x123dfd={'id':_0x1bb87d['id'],'params':{'unitId':_0x4dfd43[_0x3d877e(0x8d)][_0x3d877e(0xdb)],'subUnitId':_0x4dfd43[_0x3d877e(0x8d)][_0x3d877e(0x20b)],'range':_0x4dfd43[_0x3d877e(0x8d)]['range']}},_0x211576=It(_0x234493,_0x123dfd);return{'m1Prime':[_0x4dfd43,..._0x211576],'m2Prime':[_0x234493,..._0x211576]};}},Ia={'m1':_0x224ab4['id'],'m2':_0x4b0a3e['id'],'handler'(_0x249ae6,_0x3f3c80){const _0xf4f546=_0x572182,_0x1d30c6=nr[_0xf4f546(0xcd)](_0x3f3c80,_0x249ae6);return at(_0x1d30c6)?{'m1Prime':_0x1d30c6['m2Prime'],'m2Prime':_0x1d30c6['m1Prime']}:_0x1d30c6;}},wa={'m1':_0x224ab4['id'],'m2':_0x224ab4['id'],'handler'(_0x1dc740,_0x304236){const _0x22180d=_0x572182,_0x2be6a8={'m1Prime':_0x1dc740,'m2Prime':_0x304236};if(_0x1dc740['params'][_0x22180d(0xdb)]!==_0x304236[_0x22180d(0x8d)][_0x22180d(0xdb)]||_0x1dc740[_0x22180d(0x8d)][_0x22180d(0x20b)]!==_0x304236[_0x22180d(0x8d)][_0x22180d(0x20b)])return _0x2be6a8;const _0x41640b=_0x570d2f[_0x22180d(0xb4)](_0x1dc740),_0x1a36f1=_0x570d2f[_0x22180d(0xb4)](_0x304236),_0x433c1f=_0x44a143(h(_0x48173f(_0x1dc740[_0x22180d(0x8d)][_0x22180d(0x19f)])),h(_0x48173f(_0x304236[_0x22180d(0x8d)][_0x22180d(0x19f)])));if(_0x433c1f?(_0x1a36f1['params'][_0x22180d(0x19f)][_0x22180d(0x102)]+=_0x433c1f[_0x22180d(0xc3)],_0x1a36f1[_0x22180d(0x8d)][_0x22180d(0x19f)][_0x22180d(0x111)]+=_0x433c1f['step']+(_0x433c1f[_0x22180d(0xf6)]||0x0)):_0x1a36f1['id']=_0x1a62da['id'],_0x1dc740[_0x22180d(0x8d)][_0x22180d(0x19f)][_0x22180d(0x102)]!==_0x304236[_0x22180d(0x8d)]['range']['startRow']){const _0x2e0f91=_0x44a143(h(_0x48173f(_0x304236[_0x22180d(0x8d)][_0x22180d(0x19f)])),h(_0x48173f(_0x1dc740[_0x22180d(0x8d)][_0x22180d(0x19f)])));_0x2e0f91?(_0x41640b[_0x22180d(0x8d)][_0x22180d(0x19f)][_0x22180d(0x102)]+=_0x2e0f91[_0x22180d(0xc3)],_0x41640b['params']['range'][_0x22180d(0x111)]+=_0x2e0f91['step']+(_0x2e0f91[_0x22180d(0xf6)]||0x0)):_0x41640b['id']=_0x1a62da['id'];}return{'m1Prime':_0x41640b,'m2Prime':_0x1a36f1};}},Ca={'m1':_0x224ab4['id'],'m2':_0x43f1cd['id'],'handler'(_0x5756b4,_0x5ce807){const _0x5c8704=_0x572182,_0x485b3e={'m1Prime':_0x5756b4,'m2Prime':_0x5ce807};if(_0x5756b4[_0x5c8704(0x8d)][_0x5c8704(0xdb)]!==_0x5ce807['params'][_0x5c8704(0xdb)]||_0x5756b4['params']['subUnitId']!==_0x5ce807[_0x5c8704(0x8d)][_0x5c8704(0x1b0)][_0x5c8704(0x20b)]&&_0x5756b4['params'][_0x5c8704(0x20b)]!==_0x5ce807[_0x5c8704(0x8d)]['to'][_0x5c8704(0x20b)])return _0x485b3e;const _0xe3ab02=_0x570d2f[_0x5c8704(0xb4)](_0x5756b4),_0x58ee60=_0x570d2f[_0x5c8704(0xb4)](_0x5ce807);if(_0x5756b4[_0x5c8704(0x8d)][_0x5c8704(0x20b)]===_0x5ce807[_0x5c8704(0x8d)]['from']['subUnitId']){const _0x356f8c=new _0x1f7bb9(_0x58ee60[_0x5c8704(0x8d)]['from']['value'])['getDataRange'](),{startRow:_0x538743,endRow:_0x5a0251}=_0x356f8c,{startRow:_0x32a8a9,endRow:_0x47e8b2}=_0x5756b4['params']['range'],{step:_0x4d1f6a,length:_0x1b1aa2}=_0x44a143(_0x48173f(_0x5756b4[_0x5c8704(0x8d)][_0x5c8704(0x19f)]),_0x48173f(_0x356f8c));_0x4d1f6a>0x0&&_0x1b1aa2===0x0&&ft(_0x58ee60[_0x5c8704(0x8d)][_0x5c8704(0x1b0)][_0x5c8704(0x17e)],_0x538743,_0x5a0251-_0x538743+0x1,_0x4d1f6a),_0x4d1f6a===0x0&&_0x1b1aa2>0x0&&ft(_0x58ee60[_0x5c8704(0x8d)][_0x5c8704(0x1b0)][_0x5c8704(0x17e)],_0x32a8a9,_0x5a0251-_0x32a8a9+0x1,_0x47e8b2-_0x32a8a9+0x1);}if(_0x5756b4[_0x5c8704(0x8d)][_0x5c8704(0x20b)]===_0x5ce807['params']['to'][_0x5c8704(0x20b)]){const _0x516e99=new _0x1f7bb9(_0x5ce807['params']['to']['value'])[_0x5c8704(0x182)](),{startRow:_0x1b882f,endRow:_0x3bb46c}=_0x516e99,{startRow:_0x3a90b6,endRow:_0x1aa036}=_0x5756b4[_0x5c8704(0x8d)][_0x5c8704(0x19f)],{step:_0xf02eab,length:_0x14b2be}=_0x44a143(_0x48173f(_0x5756b4['params'][_0x5c8704(0x19f)]),_0x48173f(_0x516e99));_0xf02eab>0x0&&_0x14b2be===0x0&&ft(_0x58ee60[_0x5c8704(0x8d)]['to']['value'],_0x1b882f,_0x3bb46c-_0x1b882f+0x1,_0xf02eab),_0xf02eab===0x0&&_0x14b2be>0x0&&ft(_0x58ee60[_0x5c8704(0x8d)]['to']['value'],_0x3a90b6,_0x3bb46c-_0x3a90b6+0x1,_0x1aa036-_0x3a90b6+0x1);}return{'m1Prime':_0xe3ab02,'m2Prime':_0x58ee60};}},Pa={'m1':_0x224ab4['id'],'m2':_0x454b7a['id'],'handler'(_0x1cc851,_0xf7a50a){const _0x4aee78=_0x572182,_0x481b0e={'m1Prime':_0x1cc851,'m2Prime':_0xf7a50a};if(_0x1cc851['params'][_0x4aee78(0xdb)]!==_0xf7a50a['params']['unitId']||_0x1cc851['params'][_0x4aee78(0x20b)]!==_0xf7a50a[_0x4aee78(0x8d)][_0x4aee78(0x20b)])return _0x481b0e;const _0x11ad72=_0x570d2f[_0x4aee78(0xb4)](_0x1cc851),_0x10c803=_0x570d2f['deepClone'](_0xf7a50a),_0x4b0a5c=_0xf7a50a[_0x4aee78(0x8d)][_0x4aee78(0x11d)],_0x573ada=_0xf7a50a[_0x4aee78(0x8d)]['targetRange'];if(_0x1cc851[_0x4aee78(0x8d)][_0x4aee78(0x19f)][_0x4aee78(0x102)]>_0x4b0a5c[_0x4aee78(0x102)]&&_0x1cc851[_0x4aee78(0x8d)][_0x4aee78(0x19f)][_0x4aee78(0x102)]<=_0x4b0a5c[_0x4aee78(0x111)]||_0x1cc851[_0x4aee78(0x8d)][_0x4aee78(0x19f)][_0x4aee78(0x102)]>_0x573ada[_0x4aee78(0x102)]&&_0x1cc851[_0x4aee78(0x8d)][_0x4aee78(0x19f)][_0x4aee78(0x102)]<=_0x573ada['endRow'])return{'error':new Error(_0x4aee78(0x1b6))};const _0x2693f1=_0x44a143(h(_0x48173f(_0x1cc851[_0x4aee78(0x8d)]['range'])),h(_0x48173f(_0x4b0a5c))),_0xe7c791=_0x44a143(h(_0x48173f(_0x1cc851['params'][_0x4aee78(0x19f)])),h(_0x48173f(_0x573ada)));if(_0x10c803[_0x4aee78(0x8d)]['sourceRange'][_0x4aee78(0x102)]+=_0x2693f1['step'],_0x10c803[_0x4aee78(0x8d)][_0x4aee78(0x11d)][_0x4aee78(0x111)]+=_0x2693f1[_0x4aee78(0xc3)]+(_0x2693f1['length']||0x0),_0x10c803[_0x4aee78(0x8d)][_0x4aee78(0x1d0)][_0x4aee78(0x102)]+=_0xe7c791[_0x4aee78(0xc3)],_0x10c803[_0x4aee78(0x8d)][_0x4aee78(0x1d0)][_0x4aee78(0x111)]+=_0xe7c791[_0x4aee78(0xc3)]+(_0xe7c791['length']||0x0),_0x4b0a5c[_0x4aee78(0x102)]>=_0x1cc851[_0x4aee78(0x8d)][_0x4aee78(0x19f)][_0x4aee78(0x102)]&&_0x573ada[_0x4aee78(0x102)]<_0x1cc851[_0x4aee78(0x8d)][_0x4aee78(0x19f)]['startRow']){const _0x304b87=_0x573ada[_0x4aee78(0x111)]-_0x573ada['startRow']+0x1;_0x11ad72[_0x4aee78(0x8d)][_0x4aee78(0x19f)][_0x4aee78(0x102)]+=_0x304b87,_0x11ad72[_0x4aee78(0x8d)][_0x4aee78(0x19f)]['endRow']+=_0x304b87;}else{if(_0x4b0a5c[_0x4aee78(0x111)]<_0x1cc851[_0x4aee78(0x8d)][_0x4aee78(0x19f)][_0x4aee78(0x102)]&&_0x573ada[_0x4aee78(0x102)]>=_0x1cc851['params'][_0x4aee78(0x19f)][_0x4aee78(0x102)]){const _0x81d45e=_0x4b0a5c[_0x4aee78(0x111)]-_0x4b0a5c[_0x4aee78(0x102)]+0x1;_0x11ad72[_0x4aee78(0x8d)][_0x4aee78(0x19f)][_0x4aee78(0x102)]-=_0x81d45e,_0x11ad72[_0x4aee78(0x8d)][_0x4aee78(0x19f)]['endRow']-=_0x81d45e;}}return{'m1Prime':_0x11ad72,'m2Prime':_0x10c803};}},Ua={'m1':_0x224ab4['id'],'m2':_0x3dcda7['id'],'handler'(_0x460041,_0xe3097){const _0x4f87fb=_0x572182,_0x400b67={'m1Prime':_0x460041,'m2Prime':_0xe3097};if(_0x460041[_0x4f87fb(0x8d)][_0x4f87fb(0xdb)]!==_0xe3097[_0x4f87fb(0x8d)]['unitId']||_0x460041['params'][_0x4f87fb(0x20b)]!==_0xe3097[_0x4f87fb(0x8d)][_0x4f87fb(0x20b)])return _0x400b67;const _0x1bcc56=_0x570d2f[_0x4f87fb(0xb4)](_0x460041),_0x253c12=_0x570d2f['deepClone'](_0xe3097),{ranges:_0x4fccd7}=_0x253c12[_0x4f87fb(0x8d)];return _0x4fccd7[_0x4f87fb(0xaf)](_0x754ee=>{const _0xe7e939=_0x4f87fb,_0xcdbe12=_0x44a143(h(_0x48173f(_0x460041[_0xe7e939(0x8d)][_0xe7e939(0x19f)])),h(_0x48173f(_0x754ee)));return _0xcdbe12['length']!==0x0?!0x0:(_0x754ee[_0xe7e939(0x102)]+=_0xcdbe12[_0xe7e939(0xc3)],_0x754ee[_0xe7e939(0x111)]+=_0xcdbe12[_0xe7e939(0xc3)],!0x1);})?{'error':new Error('insert\x20row\x20is\x20conflict\x20with\x20remove\x20numfmt')}:{'m1Prime':_0x1bcc56,'m2Prime':_0x253c12};}},ba={'m1':_0x224ab4['id'],'m2':_0x1c90fa['id'],'handler'(_0x352b22,_0x4e859d){const _0x6c902e=_0x572182,_0x27e7b8={'m1Prime':_0x352b22,'m2Prime':_0x4e859d};if(_0x352b22['params'][_0x6c902e(0xdb)]!==_0x4e859d[_0x6c902e(0x8d)][_0x6c902e(0xdb)]||_0x352b22['params']['subUnitId']!==_0x4e859d['params'][_0x6c902e(0x20b)])return _0x27e7b8;const _0x587710=_0x570d2f[_0x6c902e(0xb4)](_0x352b22),_0x3b31d7=_0x570d2f[_0x6c902e(0xb4)](_0x4e859d);if(_0x352b22[_0x6c902e(0x8d)][_0x6c902e(0x19f)][_0x6c902e(0x102)]<=_0x4e859d[_0x6c902e(0x8d)][_0x6c902e(0x19f)][_0x6c902e(0x111)]&&_0x352b22[_0x6c902e(0x8d)][_0x6c902e(0x19f)][_0x6c902e(0x102)]>_0x4e859d[_0x6c902e(0x8d)][_0x6c902e(0x19f)][_0x6c902e(0x102)])return{'error':new Error(_0x6c902e(0x130))};const _0x2e9f76=_0x44a143(h(_0x48173f(_0x352b22[_0x6c902e(0x8d)][_0x6c902e(0x19f)])),h(_0x48173f(_0x4e859d[_0x6c902e(0x8d)][_0x6c902e(0x19f)])));_0x2e9f76?(_0x3b31d7['params'][_0x6c902e(0x19f)][_0x6c902e(0x102)]+=_0x2e9f76[_0x6c902e(0xc3)],_0x3b31d7[_0x6c902e(0x8d)][_0x6c902e(0x19f)]['endRow']+=_0x2e9f76[_0x6c902e(0xc3)]+(_0x2e9f76[_0x6c902e(0xf6)]||0x0)):_0x3b31d7['id']=_0x1a62da['id'];const _0x3f2e8d=_0x180da6(h(_0x48173f(_0x4e859d[_0x6c902e(0x8d)][_0x6c902e(0x19f)])),h(_0x48173f(_0x352b22[_0x6c902e(0x8d)][_0x6c902e(0x19f)])));return _0x3f2e8d&&(_0x587710[_0x6c902e(0x8d)][_0x6c902e(0x19f)][_0x6c902e(0x102)]+=_0x3f2e8d['step'],_0x587710[_0x6c902e(0x8d)][_0x6c902e(0x19f)][_0x6c902e(0x111)]+=_0x3f2e8d[_0x6c902e(0xc3)]+(_0x3f2e8d[_0x6c902e(0xf6)]||0x0)),{'m1Prime':_0x587710,'m2Prime':_0x3b31d7};}},Ma={'m1':_0x224ab4['id'],'m2':_0x3c47fd['id'],'handler'(_0x529677,_0x274a2c){const _0x311f09=_0x572182,_0x1d0eb8=_0x570d2f[_0x311f09(0xb4)](_0x529677),_0x2a64fd=_0x570d2f[_0x311f09(0xb4)](_0x274a2c);if(_0x529677[_0x311f09(0x8d)][_0x311f09(0xdb)]!==_0x274a2c[_0x311f09(0x8d)][_0x311f09(0xdb)]||_0x529677[_0x311f09(0x8d)][_0x311f09(0x20b)]!==_0x274a2c[_0x311f09(0x8d)]['subUnitId'])return{'m1Prime':_0x1d0eb8,'m2Prime':_0x2a64fd};const _0x1730b5=_0x2a64fd[_0x311f09(0x8d)][_0x311f09(0xd1)]['map'](_0xcb4bf8=>{const _0x4a687f=_0x311f09,_0x4270b9=_0x1d0eb8['params'][_0x4a687f(0x19f)],_0xc61c57=_0x4270b9['endRow']-_0x4270b9[_0x4a687f(0x102)]+0x1;return _0x4270b9[_0x4a687f(0x102)]<=_0xcb4bf8[_0x4a687f(0x102)]?{..._0xcb4bf8,'startRow':_0xcb4bf8[_0x4a687f(0x102)]+_0xc61c57,'endRow':_0xcb4bf8[_0x4a687f(0x111)]+_0xc61c57}:_0x4270b9[_0x4a687f(0x102)]>_0xcb4bf8['startRow']&&_0x4270b9[_0x4a687f(0x102)]<=_0xcb4bf8['endRow']?{..._0xcb4bf8,'endRow':_0xcb4bf8[_0x4a687f(0x111)]+_0xc61c57}:{..._0xcb4bf8};});return _0x2a64fd[_0x311f09(0x8d)][_0x311f09(0xd1)]=_0x1730b5,{'m1Prime':_0x1d0eb8,'m2Prime':_0x2a64fd};}},va={'m1':_0x224ab4['id'],'m2':_0x587c63['id'],'handler'(_0x19c5f8,_0x2cb743){const _0x42bf3c=_0x572182,_0x177c21={'m1Prime':_0x19c5f8,'m2Prime':_0x2cb743};if(_0x19c5f8[_0x42bf3c(0x8d)][_0x42bf3c(0xdb)]!==_0x2cb743[_0x42bf3c(0x8d)][_0x42bf3c(0xdb)]||_0x19c5f8['params']['subUnitId']!==_0x2cb743[_0x42bf3c(0x8d)]['subUnitId'])return _0x177c21;const _0x3e7f60=_0x570d2f[_0x42bf3c(0xb4)](_0x2cb743),_0x3478fe=_0x44a143(h(_0x48173f(_0x19c5f8[_0x42bf3c(0x8d)][_0x42bf3c(0x19f)])),h(_0x48173f(_0x2cb743[_0x42bf3c(0x8d)][_0x42bf3c(0x19f)])));_0x3e7f60['params'][_0x42bf3c(0x19f)]['startRow']+=_0x3478fe[_0x42bf3c(0xc3)],_0x3e7f60['params'][_0x42bf3c(0x19f)][_0x42bf3c(0x111)]+=_0x3478fe['step']+(_0x3478fe[_0x42bf3c(0xf6)]||0x0);const _0x48dd27=_0x19c5f8['params'][_0x42bf3c(0x19f)][_0x42bf3c(0x102)],_0x53a15c=_0x19c5f8[_0x42bf3c(0x8d)][_0x42bf3c(0x19f)][_0x42bf3c(0x111)]-_0x19c5f8['params'][_0x42bf3c(0x19f)][_0x42bf3c(0x102)]+0x1,_0x4453b5={};for(const _0x567ff4 in _0x2cb743[_0x42bf3c(0x8d)][_0x42bf3c(0x13f)]){let _0x454032=Number(_0x567ff4),_0x39404d=_0x2cb743['params'][_0x42bf3c(0x13f)][_0x567ff4];_0x454032=Le(_0x48dd27,_0x53a15c,_0x454032),_0x39404d=Le(_0x48dd27,_0x53a15c,_0x39404d),_0x4453b5[_0x454032]=_0x39404d;}return _0x3e7f60['params'][_0x42bf3c(0x13f)]=_0x4453b5,{'m1Prime':_0x19c5f8,'m2Prime':_0x3e7f60};}},Le=(_0x5834fd,_0x2d6efe,_0x399ed6)=>_0x399ed6>=_0x5834fd?_0x399ed6+_0x2d6efe:_0x399ed6,Ea={'m1':_0x224ab4['id'],'m2':_0x4075e['id'],'handler'(_0x262d19,_0x1b6381){const _0x108d87=_0x572182,_0x20aa4a={'m1Prime':_0x262d19,'m2Prime':_0x1b6381};if(_0x262d19[_0x108d87(0x8d)]['unitId']!==_0x1b6381[_0x108d87(0x8d)][_0x108d87(0xdb)]||_0x262d19[_0x108d87(0x8d)][_0x108d87(0x20b)]!==_0x1b6381[_0x108d87(0x8d)]['subUnitId'])return _0x20aa4a;const _0x3b7455=[_0x570d2f['deepClone'](_0x262d19)],_0x1c9f9f=_0x570d2f[_0x108d87(0xb4)](_0x1b6381),{values:_0x5f97a9}=_0x1c9f9f['params'],_0x54ebc1=[];let _0x41d4df=!0x1;for(const _0x5564dd in _0x5f97a9){const _0xd6a1a8=_0x5f97a9[_0x5564dd];if(_0x54ebc1[_0x108d87(0x1ca)](..._0xd6a1a8['ranges']),_0xd6a1a8[_0x108d87(0xd1)][_0x108d87(0xaf)](_0xbcd501=>{const _0x2a41ac=_0x108d87,_0xcd4070=_0x44a143(h(_0x48173f(_0x262d19[_0x2a41ac(0x8d)][_0x2a41ac(0x19f)])),_0x48173f(h(_0xbcd501)));return _0xcd4070[_0x2a41ac(0xf6)]!==0x0?!0x0:(_0xcd4070[_0x2a41ac(0xc3)]!==0x0&&(_0x41d4df=!0x0),_0xbcd501[_0x2a41ac(0x102)]+=_0xcd4070[_0x2a41ac(0xc3)],_0xbcd501['endRow']+=_0xcd4070[_0x2a41ac(0xc3)],!0x1);}))return{'error':new Error(_0x108d87(0xd3))};}if(_0x41d4df){const _0x15bc6c={'id':_0x3dcda7['id'],'params':{'unitId':_0x1b6381[_0x108d87(0x8d)]['unitId'],'subUnitId':_0x1b6381[_0x108d87(0x8d)][_0x108d87(0x20b)],'ranges':_0x54ebc1}};_0x3b7455[_0x108d87(0x1ca)](_0x15bc6c,_0x1c9f9f);}return{'m1Prime':_0x3b7455,'m2Prime':_0x1c9f9f};}},Sa={'m1':_0x224ab4['id'],'m2':_0x15eb0a['id'],'handler'(_0x2a5717,_0x4be173){const _0x4bb581=_0x572182,_0x23186d={'m1Prime':_0x2a5717,'m2Prime':_0x4be173};if(_0x2a5717['params']['unitId']!==_0x4be173[_0x4bb581(0x8d)]['unitId']||_0x2a5717['params'][_0x4bb581(0x20b)]!==_0x4be173[_0x4bb581(0x8d)][_0x4bb581(0x20b)])return _0x23186d;const _0x1bfa1c=[_0x570d2f[_0x4bb581(0xb4)](_0x2a5717)],_0x5852d7=_0x570d2f[_0x4bb581(0xb4)](_0x4be173),_0x40f981=new _0x1f7bb9(_0x5852d7[_0x4bb581(0x8d)][_0x4bb581(0x208)]),_0x1c845d=_0x40f981['getDataRange'](),_0x503087=_0x2a5717[_0x4bb581(0x8d)][_0x4bb581(0x19f)],_0x42bb54=_0x503087[_0x4bb581(0x111)]-_0x503087['startRow']+0x1;if(_0x5852d7['params'][_0x4bb581(0x208)]&&_0x503087[_0x4bb581(0x102)]<=_0x1c845d[_0x4bb581(0x111)]){const _0x1148bc=Math[_0x4bb581(0xed)](_0x1c845d[_0x4bb581(0x102)],_0x503087['startRow']);ft(_0x5852d7[_0x4bb581(0x8d)][_0x4bb581(0x208)],_0x1148bc,_0x1c845d[_0x4bb581(0x111)]-_0x1148bc+0x1,_0x42bb54);}const _0x5e7fc2=new _0x1f7bb9();let _0x94b39e=!0x1;if(_0x40f981[_0x4bb581(0x86)]((_0x23dee4,_0x2e67ef,_0x113034)=>{const _0x353a69=_0x4bb581;if(_0x113034&&_0x113034['f']){const _0x6a258e=_0x113034['f'];let _0x3479c4=!0x1;const _0x3a3d02=dt(_0x2a5717[_0x353a69(0x8d)][_0x353a69(0xdb)],_0x2a5717['params']['subUnitId'],_0x6a258e,_0x33782d=>{const _0x58e81b=_0x353a69,_0x3498ce=_0x44a143(h(_0x48173f(_0x2a5717[_0x58e81b(0x8d)][_0x58e81b(0x19f)])),h(_0x48173f(_0x33782d)));return(_0x3498ce[_0x58e81b(0xc3)]!==0x0||_0x3498ce[_0x58e81b(0xf6)]!==0x0)&&(_0x3479c4=!0x0,_0x33782d[_0x58e81b(0x102)]+=_0x3498ce['step'],_0x33782d['endRow']+=_0x3498ce[_0x58e81b(0xc3)]+_0x3498ce['length']),_0x33782d;});_0x3479c4&&(_0x94b39e=!0x0,_0x113034['f']=_0x3a3d02,_0x5e7fc2['setValue'](_0x23dee4,_0x2e67ef,{..._0x113034}));}}),_0x94b39e){const _0x23e14e={'id':_0x15eb0a['id'],'params':{'unitId':_0x4be173['params'][_0x4bb581(0xdb)],'subUnitId':_0x4be173[_0x4bb581(0x8d)]['subUnitId'],'cellValue':_0x5e7fc2[_0x4bb581(0x16a)]()}};_0x1bfa1c[_0x4bb581(0x1ca)](_0x23e14e);}return{'m1Prime':_0x1bfa1c,'m2Prime':_0x5852d7};}},Wa={'m1':_0x224ab4['id'],'m2':_0x36a513['id'],'handler'(_0x33d45b,_0x10e706){const _0x3bf185=_0x572182,_0x492fc6={'m1Prime':_0x33d45b,'m2Prime':_0x10e706};if(_0x33d45b[_0x3bf185(0x8d)][_0x3bf185(0xdb)]!==_0x10e706[_0x3bf185(0x8d)][_0x3bf185(0xdb)]||_0x33d45b[_0x3bf185(0x8d)][_0x3bf185(0x20b)]!==_0x10e706[_0x3bf185(0x8d)][_0x3bf185(0x20b)])return _0x492fc6;const _0x2b66b9=_0x570d2f['deepClone'](_0x33d45b),_0x2198e1=_0x570d2f[_0x3bf185(0xb4)](_0x10e706),{rowData:_0x10cd3b}=_0x2198e1[_0x3bf185(0x8d)];for(let _0x247b62=_0x33d45b['params'][_0x3bf185(0x19f)][_0x3bf185(0x102)];_0x247b62<=_0x33d45b[_0x3bf185(0x8d)]['range'][_0x3bf185(0x111)];_0x247b62++)_0x4a2d3e(_0x247b62,void 0x0,_0x10cd3b);return{'m1Prime':_0x2b66b9,'m2Prime':_0x2198e1};}},Va={'m1':_0x224ab4['id'],'m2':_0xce09a7['id'],'handler'(_0xd75c4b,_0x1d0c7a){const _0x1ccdb6=_0x572182,_0x2c7ece={'m1Prime':_0xd75c4b,'m2Prime':_0x1d0c7a};if(_0xd75c4b[_0x1ccdb6(0x8d)][_0x1ccdb6(0xdb)]!==_0x1d0c7a['params'][_0x1ccdb6(0xdb)]||_0xd75c4b[_0x1ccdb6(0x8d)]['subUnitId']!==_0x1d0c7a[_0x1ccdb6(0x8d)][_0x1ccdb6(0x20b)])return _0x2c7ece;const _0x21992c=_0x570d2f[_0x1ccdb6(0xb4)](_0xd75c4b),_0x3c146f=_0x570d2f[_0x1ccdb6(0xb4)](_0x1d0c7a),{ranges:_0x137226}=_0x3c146f[_0x1ccdb6(0x8d)];return _0x137226[_0x1ccdb6(0xaf)](_0xf4f348=>{const _0x1b49e4=_0x1ccdb6,_0xe60880=_0x44a143(h(_0x48173f(_0xd75c4b[_0x1b49e4(0x8d)][_0x1b49e4(0x19f)])),h(_0x48173f(_0xf4f348)));return _0xe60880[_0x1b49e4(0xf6)]!==0x0?!0x0:(_0xf4f348[_0x1b49e4(0x102)]+=_0xe60880[_0x1b49e4(0xc3)],_0xf4f348['endRow']+=_0xe60880[_0x1b49e4(0xc3)],!0x1);})?{'error':new Error(_0x1ccdb6(0x18c))}:{'m1Prime':_0x21992c,'m2Prime':_0x3c146f};}},_a={'m1':_0x224ab4['id'],'m2':_0x2b245f['id'],'handler'(_0x4deaea,_0x2003e8){const _0x4ce197=_0x572182,_0xe85a4d={'m1Prime':_0x4deaea,'m2Prime':_0x2003e8};if(_0x4deaea['params']['unitId']!==_0x2003e8[_0x4ce197(0x8d)][_0x4ce197(0xdb)]||_0x4deaea[_0x4ce197(0x8d)][_0x4ce197(0x20b)]!==_0x2003e8[_0x4ce197(0x8d)][_0x4ce197(0x20b)])return _0xe85a4d;const _0x5ee4dd=_0x570d2f[_0x4ce197(0xb4)](_0x4deaea),_0x35d870=_0x570d2f[_0x4ce197(0xb4)](_0x2003e8),{ranges:_0x4ba892}=_0x35d870[_0x4ce197(0x8d)];return _0x4ba892[_0x4ce197(0xaf)](_0x2b220c=>{const _0x25607a=_0x4ce197,_0x5aa5c1=_0x44a143(h(_0x48173f(_0x4deaea['params'][_0x25607a(0x19f)])),h(_0x48173f(_0x2b220c)));return _0x5aa5c1[_0x25607a(0xf6)]!==0x0?!0x0:(_0x2b220c['startRow']+=_0x5aa5c1[_0x25607a(0xc3)],_0x2b220c['endRow']+=_0x5aa5c1[_0x25607a(0xc3)],!0x1);})?{'error':new Error(_0x4ce197(0x82))}:{'m1Prime':_0x5ee4dd,'m2Prime':_0x35d870};}},Oa={'m1':_0x224ab4['id'],'m2':_0x23969e['id'],'handler'(_0x9a1bde,_0x52f96c){const _0x10a9e2=_0x572182,_0x50f928={'m1Prime':[],'m2Prime':[]};if(_0x9a1bde[_0x10a9e2(0x8d)][_0x10a9e2(0xdb)]!==_0x52f96c[_0x10a9e2(0x8d)][_0x10a9e2(0xdb)]||_0x9a1bde[_0x10a9e2(0x8d)][_0x10a9e2(0x20b)]!==_0x52f96c[_0x10a9e2(0x8d)]['subUnitId'])return _0x50f928;const _0x2d6271=_0x570d2f['deepClone'](_0x52f96c);let _0x7315e=!0x1;return _0x2d6271[_0x10a9e2(0x8d)][_0x10a9e2(0x138)][_0x10a9e2(0xc5)](_0x4eaf2f=>{const _0x383204=_0x10a9e2,{range:_0x4e3373,primary:_0x33ee4b}=_0x4eaf2f,_0xb735c9=_0x44a143(h(_0x48173f(_0x9a1bde['params'][_0x383204(0x19f)])),h(_0x48173f(_0x4e3373)));if(_0xb735c9['length']||_0xb735c9[_0x383204(0xc3)]){if(_0x4e3373[_0x383204(0x102)]+=_0xb735c9[_0x383204(0xc3)],_0x4e3373[_0x383204(0x111)]+=_0xb735c9[_0x383204(0xc3)]+(_0xb735c9['length']||0x0),_0x33ee4b){const _0xb1c9a7=_0x44a143(h(_0x48173f(_0x9a1bde['params']['range'])),h(_0x48173f(_0x33ee4b)));(_0xb1c9a7[_0x383204(0xf6)]||_0xb1c9a7['step'])&&(_0x33ee4b['startRow']+=_0xb1c9a7[_0x383204(0xc3)],_0x33ee4b['endRow']+=_0xb1c9a7[_0x383204(0xc3)],_0x33ee4b[_0x383204(0x1d9)]+=_0xb1c9a7[_0x383204(0xc3)]);}_0x7315e=!0x0;}}),_0x7315e&&_0x50f928[_0x10a9e2(0xcf)][_0x10a9e2(0x1ca)](_0x2d6271),_0x50f928;}},ya={'m1':_0x224ab4['id'],'m2':_0x23aded['id'],'handler'(_0x572aaa,_0x2cda6b){const _0x5938d8=_0x572182,_0x198d5c={'m1Prime':[_0x572aaa],'m2Prime':[_0x2cda6b]};if(_0x572aaa['params'][_0x5938d8(0xdb)]!==_0x2cda6b[_0x5938d8(0x8d)][_0x5938d8(0xdb)]||_0x572aaa[_0x5938d8(0x8d)][_0x5938d8(0x20b)]!==_0x2cda6b[_0x5938d8(0x8d)][_0x5938d8(0x20b)])return _0x198d5c;const _0x7bc5b1=_0x570d2f['deepClone'](_0x572aaa),_0xbece7e=_0x570d2f[_0x5938d8(0xb4)](_0x2cda6b),_0x2c1232=be({'start':_0x572aaa['params'][_0x5938d8(0x19f)]['startRow'],'end':_0x572aaa['params']['range'][_0x5938d8(0x111)]},{'start':_0x2cda6b[_0x5938d8(0x8d)][_0x5938d8(0x19f)][_0x5938d8(0x102)],'end':_0x2cda6b[_0x5938d8(0x8d)][_0x5938d8(0x19f)]['endRow']});return _0xbece7e[_0x5938d8(0x8d)][_0x5938d8(0x19f)][_0x5938d8(0x102)]===_0x2c1232[_0x5938d8(0xa5)]&&_0xbece7e['params'][_0x5938d8(0x19f)]['endRow']===_0x2c1232[_0x5938d8(0x1c4)]?_0x198d5c:(_0xbece7e[_0x5938d8(0x8d)][_0x5938d8(0x19f)][_0x5938d8(0x102)]=_0x2c1232[_0x5938d8(0xa5)],_0xbece7e[_0x5938d8(0x8d)][_0x5938d8(0x19f)][_0x5938d8(0x111)]=_0x2c1232[_0x5938d8(0x1c4)],{'m1Prime':[_0xbece7e,_0x7bc5b1],'m2Prime':[_0xbece7e]});}},Na={'m1':_0x224ab4['id'],'m2':_0x5357b7['id'],'handler'(_0x11fda2,_0x48d860){const _0x44b6fb=_0x572182,_0x2d65e5={'m1Prime':_0x11fda2,'m2Prime':_0x48d860};if(_0x11fda2[_0x44b6fb(0x8d)]['unitId']!==_0x48d860[_0x44b6fb(0x8d)][_0x44b6fb(0xdb)]||_0x11fda2['params']['subUnitId']!==_0x48d860[_0x44b6fb(0x8d)][_0x44b6fb(0x20b)])return _0x2d65e5;const _0x5afc89=_0x570d2f[_0x44b6fb(0xb4)](_0x11fda2),_0x51cb0=_0x570d2f[_0x44b6fb(0xb4)](_0x48d860),{rowsAutoHeightInfo:_0x52c50}=_0x51cb0[_0x44b6fb(0x8d)];return _0x52c50['some'](_0x39b71c=>{const _0x2ff9ce=_0x44b6fb,_0x57ba45={'startRow':_0x39b71c[_0x2ff9ce(0x1cb)],'endRow':_0x39b71c['row'],'startColumn':0x0,'endColumn':0x0},_0x26d655=_0x44a143(h(_0x48173f(_0x11fda2[_0x2ff9ce(0x8d)]['range'])),_0x48173f(_0x57ba45));return _0x26d655['length']!==0x0?!0x0:(_0x39b71c[_0x2ff9ce(0x1cb)]+=_0x26d655['step'],!0x1);})?{'error':new Error('insert\x20row\x20is\x20conflict\x20with\x20set\x20worksheet\x20row\x20auto\x20height')}:{'m1Prime':_0x5afc89,'m2Prime':_0x51cb0};}},Da={'m1':_0x224ab4['id'],'m2':_0xdb3bc1['id'],'handler'(_0x5ca5ce,_0x37ecc3){const _0x395a73=_0x572182,_0x26e2a4={'m1Prime':_0x5ca5ce,'m2Prime':_0x37ecc3};if(_0x5ca5ce[_0x395a73(0x8d)]['unitId']!==_0x37ecc3[_0x395a73(0x8d)][_0x395a73(0xdb)]||_0x5ca5ce[_0x395a73(0x8d)]['subUnitId']!==_0x37ecc3[_0x395a73(0x8d)][_0x395a73(0x20b)])return _0x26e2a4;const _0x13f783=_0x570d2f[_0x395a73(0xb4)](_0x5ca5ce),_0x301ed5=_0x570d2f['deepClone'](_0x37ecc3),{ranges:_0xa5f910,rowHeight:_0x5e671b}=_0x301ed5['params'];if(_0xa5f910['some'](_0x53bb31=>{const _0x2342b2=_0x395a73,_0x189b68=_0x44a143(h(_0x48173f(_0x5ca5ce[_0x2342b2(0x8d)]['range'])),_0x48173f(_0x53bb31));return _0x189b68[_0x2342b2(0xf6)]!==0x0?!0x0:(_0x53bb31['startRow']+=_0x189b68[_0x2342b2(0xc3)],_0x53bb31[_0x2342b2(0x111)]+=_0x189b68['step'],!0x1);}))return{'error':new Error(_0x395a73(0x1a1))};if(typeof _0x5e671b!=_0x395a73(0x1b5)){for(let _0x516afd=_0x5ca5ce[_0x395a73(0x8d)][_0x395a73(0x19f)][_0x395a73(0x102)];_0x516afd<=_0x5ca5ce['params'][_0x395a73(0x19f)]['endRow'];_0x516afd++)_0x4a2d3e(_0x516afd,void 0x0,_0x5e671b);}return{'m1Prime':_0x13f783,'m2Prime':_0x301ed5};}},Aa={'m1':_0x224ab4['id'],'m2':_0x386b55['id'],'handler'(_0x57086d,_0x14f44a){const _0x2c4847=_0x572182,_0x2e4227={'m1Prime':_0x57086d,'m2Prime':_0x14f44a};if(_0x57086d[_0x2c4847(0x8d)][_0x2c4847(0xdb)]!==_0x14f44a[_0x2c4847(0x8d)][_0x2c4847(0xdb)]||_0x57086d['params'][_0x2c4847(0x20b)]!==_0x14f44a[_0x2c4847(0x8d)][_0x2c4847(0x20b)])return _0x2e4227;const _0x2144ea=_0x570d2f['deepClone'](_0x57086d),_0x16acaa=_0x570d2f[_0x2c4847(0xb4)](_0x14f44a),{ranges:_0x36b237,autoHeightInfo:_0x53c0f5}=_0x16acaa['params'];if(_0x36b237[_0x2c4847(0xaf)](_0x53d191=>{const _0x54496e=_0x2c4847,_0x3fed14=_0x44a143(h(_0x48173f(_0x57086d[_0x54496e(0x8d)][_0x54496e(0x19f)])),_0x48173f(_0x53d191));return _0x3fed14[_0x54496e(0xf6)]!==0x0?!0x0:(_0x53d191[_0x54496e(0x102)]+=_0x3fed14[_0x54496e(0xc3)],_0x53d191[_0x54496e(0x111)]+=_0x3fed14['step'],!0x1);}))return{'error':new Error(_0x2c4847(0x1ab))};if(typeof _0x53c0f5!=_0x2c4847(0x1b5)){for(let _0x1635ce=_0x57086d[_0x2c4847(0x8d)]['range'][_0x2c4847(0x102)];_0x1635ce<=_0x57086d[_0x2c4847(0x8d)][_0x2c4847(0x19f)]['endRow'];_0x1635ce++)_0x4a2d3e(_0x1635ce,void 0x0,_0x53c0f5);}return{'m1Prime':_0x2144ea,'m2Prime':_0x16acaa};}},Ta={'m1':_0x224ab4['id'],'m2':_0x2afd0c['id'],'handler':(_0x57a4d4,_0x59c38f)=>{const _0x5880ff=_0x572182,_0x3e381b={'m1Prime':_0x57a4d4,'m2Prime':_0x59c38f};if(_0x57a4d4[_0x5880ff(0x8d)]['unitId']!==_0x59c38f[_0x5880ff(0x8d)][_0x5880ff(0xdb)]||_0x57a4d4[_0x5880ff(0x8d)][_0x5880ff(0x20b)]!==_0x59c38f[_0x5880ff(0x8d)][_0x5880ff(0x20b)])return _0x3e381b;const _0x5f0526={'id':_0x1bb87d['id'],'params':{'unitId':_0x57a4d4[_0x5880ff(0x8d)][_0x5880ff(0xdb)],'subUnitId':_0x57a4d4[_0x5880ff(0x8d)][_0x5880ff(0x20b)],'range':_0x57a4d4[_0x5880ff(0x8d)][_0x5880ff(0x19f)]}},_0x3c4028=wt(_0x59c38f,_0x5f0526);return{'m1Prime':[_0x57a4d4,..._0x3c4028],'m2Prime':[_0x59c38f,..._0x3c4028]};}},La={'m1':_0x224ab4['id'],'m2':_0x4e1baf['id'],'handler':(_0x551c04,_0x26a2ee)=>{const _0xa2c1b0=_0x572182,_0x292203={'m1Prime':_0x551c04,'m2Prime':_0x26a2ee};if(_0x551c04[_0xa2c1b0(0x8d)]['unitId']!==_0x26a2ee[_0xa2c1b0(0x8d)][_0xa2c1b0(0xdb)]||_0x26a2ee[_0xa2c1b0(0x8d)][_0xa2c1b0(0x20b)]!==_0x551c04[_0xa2c1b0(0x8d)][_0xa2c1b0(0x20b)])return _0x292203;const _0x51c705={'id':_0x1bb87d['id'],'params':{'unitId':_0x551c04[_0xa2c1b0(0x8d)][_0xa2c1b0(0xdb)],'subUnitId':_0x551c04['params'][_0xa2c1b0(0x20b)],'range':_0x551c04[_0xa2c1b0(0x8d)][_0xa2c1b0(0x19f)]}},_0x35bb26=Ct(_0x26a2ee,_0x51c705);return{'m1Prime':[_0x551c04,..._0x35bb26],'m2Prime':[_0x26a2ee,..._0x35bb26]};}},ka={'m1':_0x31c10b['id'],'m2':_0x1b398d['id'],'handler':(_0x4ecacb,_0x54505a)=>{const _0x2f38ed=_0x572182,_0x15acc1={'m1Prime':_0x4ecacb,'m2Prime':_0x54505a};if(_0x4ecacb[_0x2f38ed(0x8d)][_0x2f38ed(0xdb)]!==_0x54505a['params'][_0x2f38ed(0xdb)]||_0x4ecacb['params']['subUnitId']!==_0x54505a[_0x2f38ed(0x8d)][_0x2f38ed(0x20b)])return _0x15acc1;const _0x4a1c7a={'id':_0x563de0['id'],'params':{'unitId':_0x4ecacb[_0x2f38ed(0x8d)][_0x2f38ed(0xdb)],'subUnitId':_0x4ecacb[_0x2f38ed(0x8d)][_0x2f38ed(0x20b)],'fromRange':_0x4ecacb[_0x2f38ed(0x8d)][_0x2f38ed(0x11d)],'toRange':_0x4ecacb['params'][_0x2f38ed(0x1d0)]}},_0x1d5a08=It(_0x54505a,_0x4a1c7a);return{'m1Prime':[_0x4ecacb,..._0x1d5a08],'m2Prime':[_0x54505a,..._0x1d5a08]};}},xa={'m1':_0x31c10b['id'],'m2':_0x4b0a3e['id'],'handler'(_0xd98b37,_0x3672aa){const _0x51d122=_0x572182,_0x1bfa16=ar[_0x51d122(0xcd)](_0x3672aa,_0xd98b37);return at(_0x1bfa16)?{'m1Prime':_0x1bfa16[_0x51d122(0xcf)],'m2Prime':_0x1bfa16[_0x51d122(0x119)]}:_0x1bfa16;}},Ha={'m1':_0x31c10b['id'],'m2':_0x31c10b['id'],'handler'(_0xaaccd8,_0x2737ce){const _0x5bf558=_0x572182,_0x4a0ecc={'m1Prime':_0xaaccd8,'m2Prime':_0x2737ce};if(_0xaaccd8[_0x5bf558(0x8d)]['unitId']!==_0x2737ce[_0x5bf558(0x8d)]['unitId']||_0xaaccd8['params']['subUnitId']!==_0x2737ce[_0x5bf558(0x8d)][_0x5bf558(0x20b)])return _0x4a0ecc;const _0x41fcbf=_0x570d2f[_0x5bf558(0xb4)](_0xaaccd8),_0xf32705=_0x570d2f[_0x5bf558(0xb4)](_0x2737ce),_0x1b7783=_0x2737ce[_0x5bf558(0x8d)][_0x5bf558(0x11d)],_0x49708a=_0x2737ce[_0x5bf558(0x8d)]['targetRange'],_0x49926f=_0xaaccd8[_0x5bf558(0x8d)]['sourceRange'],_0xa96711=_0xaaccd8[_0x5bf558(0x8d)][_0x5bf558(0x1d0)];if(_0x49926f[_0x5bf558(0x9d)]>=_0x1b7783[_0x5bf558(0x15a)]&&_0x49926f[_0x5bf558(0x15a)]<=_0x1b7783[_0x5bf558(0x9d)])return{'error':new Error('move\x20col\x20is\x20conflict\x20with\x20move\x20col')};const _0x1582cf=_0x2e8050({'start':_0x49926f['startColumn'],'end':_0x49926f['endColumn']},{'start':_0xa96711[_0x5bf558(0x15a)],'end':_0xa96711[_0x5bf558(0x9d)]},{'start':_0x1b7783[_0x5bf558(0x15a)],'end':_0x1b7783[_0x5bf558(0x9d)]}),_0x4ac75d=_0x2e8050({'start':_0x49926f[_0x5bf558(0x15a)],'end':_0x49926f[_0x5bf558(0x9d)]},{'start':_0xa96711[_0x5bf558(0x15a)],'end':_0xa96711['endColumn']},{'start':_0x49708a[_0x5bf558(0x15a)],'end':_0x49708a[_0x5bf558(0x9d)]});_0x1582cf&&_0x4ac75d?(_0xf32705[_0x5bf558(0x8d)][_0x5bf558(0x11d)]['startColumn']+=_0x1582cf[_0x5bf558(0xc3)],_0xf32705[_0x5bf558(0x8d)][_0x5bf558(0x11d)][_0x5bf558(0x9d)]+=_0x1582cf[_0x5bf558(0xc3)]+(_0x1582cf[_0x5bf558(0xf6)]||0x0),_0xf32705[_0x5bf558(0x8d)][_0x5bf558(0x1d0)]['startColumn']+=_0x4ac75d['step'],_0xf32705[_0x5bf558(0x8d)][_0x5bf558(0x1d0)][_0x5bf558(0x9d)]+=_0x4ac75d[_0x5bf558(0xc3)]+(_0x4ac75d[_0x5bf558(0xf6)]||0x0)):_0xf32705['id']=_0x1a62da['id'];const _0x4cf6a6=_0x2e8050({'start':_0x1b7783['startColumn'],'end':_0x1b7783[_0x5bf558(0x9d)]},{'start':_0x49708a[_0x5bf558(0x15a)],'end':_0x49708a[_0x5bf558(0x9d)]},{'start':_0x49926f[_0x5bf558(0x15a)],'end':_0x49926f[_0x5bf558(0x9d)]}),_0x4cd525=_0x2e8050({'start':_0x1b7783[_0x5bf558(0x15a)],'end':_0x1b7783[_0x5bf558(0x9d)]},{'start':_0x49708a[_0x5bf558(0x15a)],'end':_0x49708a[_0x5bf558(0x9d)]},{'start':_0xa96711[_0x5bf558(0x15a)],'end':_0xa96711[_0x5bf558(0x9d)]});return _0x4cf6a6&&_0x4cd525?(_0x41fcbf[_0x5bf558(0x8d)][_0x5bf558(0x11d)]['startColumn']+=_0x4cf6a6['step'],_0x41fcbf[_0x5bf558(0x8d)][_0x5bf558(0x11d)][_0x5bf558(0x9d)]+=_0x4cf6a6[_0x5bf558(0xc3)]+(_0x4cf6a6['length']||0x0),_0x41fcbf['params'][_0x5bf558(0x1d0)][_0x5bf558(0x15a)]+=_0x4cd525[_0x5bf558(0xc3)],_0x41fcbf['params'][_0x5bf558(0x1d0)][_0x5bf558(0x9d)]+=_0x4cd525[_0x5bf558(0xc3)]+(_0x4cd525[_0x5bf558(0xf6)]||0x0)):_0x41fcbf['id']=_0x1a62da['id'],{'m1Prime':_0x41fcbf,'m2Prime':_0xf32705};}},Fa={'m1':_0x31c10b['id'],'m2':_0x43f1cd['id'],'handler'(_0x5f51d3,_0x4a54fe){const _0x2ef49c=_0x572182,_0x46ae67={'m1Prime':_0x5f51d3,'m2Prime':_0x4a54fe};if(_0x5f51d3['params'][_0x2ef49c(0xdb)]!==_0x4a54fe[_0x2ef49c(0x8d)][_0x2ef49c(0xdb)]||_0x5f51d3[_0x2ef49c(0x8d)][_0x2ef49c(0x20b)]!==_0x4a54fe[_0x2ef49c(0x8d)][_0x2ef49c(0x1b0)][_0x2ef49c(0x20b)]&&_0x5f51d3[_0x2ef49c(0x8d)][_0x2ef49c(0x20b)]!==_0x4a54fe[_0x2ef49c(0x8d)]['to']['subUnitId'])return _0x46ae67;const _0x3e1888=_0x570d2f[_0x2ef49c(0xb4)](_0x5f51d3),_0x387629=_0x570d2f[_0x2ef49c(0xb4)](_0x4a54fe),_0x2715c5=_0x5f51d3[_0x2ef49c(0x8d)][_0x2ef49c(0x11d)],_0x23218b=_0x5f51d3[_0x2ef49c(0x8d)][_0x2ef49c(0x1d0)];if(_0x5f51d3[_0x2ef49c(0x8d)]['subUnitId']===_0x4a54fe['params']['from'][_0x2ef49c(0x20b)]){const _0x4df43b=new _0x1f7bb9(_0x387629['params'][_0x2ef49c(0x1b0)]['value']),_0x51632f=_0x4df43b[_0x2ef49c(0x182)]();if(H({'start':_0x2715c5[_0x2ef49c(0x15a)],'end':_0x2715c5[_0x2ef49c(0x9d)]},{'start':_0x51632f['startColumn'],'end':_0x51632f[_0x2ef49c(0x9d)]})||H({'start':_0x23218b[_0x2ef49c(0x15a)],'end':_0x23218b[_0x2ef49c(0x9d)]},{'start':_0x51632f[_0x2ef49c(0x15a)],'end':_0x51632f[_0x2ef49c(0x9d)]}))return{'error':new Error(_0x2ef49c(0x13c))};const _0xf5d0a7=_0x2e8050({'start':_0x2715c5[_0x2ef49c(0x15a)],'end':_0x2715c5['endColumn']},{'start':_0x23218b[_0x2ef49c(0x15a)],'end':_0x23218b[_0x2ef49c(0x9d)]},{'start':_0x51632f[_0x2ef49c(0x15a)],'end':_0x51632f[_0x2ef49c(0x9d)]});if(_0xf5d0a7[_0x2ef49c(0xf6)]!==0x0)return{'error':new Error(_0x2ef49c(0x13c))};_0xf5d0a7[_0x2ef49c(0xc3)]!==0x0&&_0x4df43b['moveColumns'](_0x2715c5[_0x2ef49c(0x15a)],_0x2715c5[_0x2ef49c(0x9d)]-_0x2715c5[_0x2ef49c(0x15a)]+0x1,_0x23218b[_0x2ef49c(0x15a)]),_0x387629['params'][_0x2ef49c(0x1b0)][_0x2ef49c(0x17e)]=_0x4df43b[_0x2ef49c(0x16a)]();}if(_0x5f51d3[_0x2ef49c(0x8d)]['subUnitId']===_0x4a54fe[_0x2ef49c(0x8d)]['to'][_0x2ef49c(0x20b)]){const _0x1af94d=new _0x1f7bb9(_0x387629[_0x2ef49c(0x8d)]['to'][_0x2ef49c(0x17e)]),_0x580435=_0x1af94d[_0x2ef49c(0x182)]();if(H({'start':_0x2715c5[_0x2ef49c(0x15a)],'end':_0x2715c5[_0x2ef49c(0x9d)]},{'start':_0x580435['startColumn'],'end':_0x580435[_0x2ef49c(0x9d)]})||H({'start':_0x23218b['startColumn'],'end':_0x23218b[_0x2ef49c(0x9d)]},{'start':_0x580435[_0x2ef49c(0x15a)],'end':_0x580435['endColumn']}))return{'error':new Error('move\x20col\x20is\x20conflict\x20with\x20move\x20range')};const _0x3bb0e0=_0x2e8050({'start':_0x2715c5[_0x2ef49c(0x15a)],'end':_0x2715c5[_0x2ef49c(0x9d)]},{'start':_0x23218b[_0x2ef49c(0x15a)],'end':_0x23218b[_0x2ef49c(0x9d)]},{'start':_0x580435[_0x2ef49c(0x15a)],'end':_0x580435['endColumn']});if(_0x3bb0e0[_0x2ef49c(0xf6)]!==0x0)return{'error':new Error(_0x2ef49c(0x13c))};_0x3bb0e0[_0x2ef49c(0xc3)]!==0x0&&_0x1af94d[_0x2ef49c(0x7e)](_0x2715c5[_0x2ef49c(0x15a)],_0x2715c5[_0x2ef49c(0x9d)]-_0x2715c5[_0x2ef49c(0x15a)]+0x1,_0x23218b['startColumn']),_0x387629['params']['to'][_0x2ef49c(0x17e)]=_0x1af94d['getMatrix']();}return{'m1Prime':_0x3e1888,'m2Prime':_0x387629};}},Ba={'m1':_0x31c10b['id'],'m2':_0x3dcda7['id'],'handler'(_0x3ef2b2,_0x3c622f){const _0x2d5254=_0x572182,_0x54005a={'m1Prime':_0x3ef2b2,'m2Prime':_0x3c622f};if(_0x3ef2b2[_0x2d5254(0x8d)][_0x2d5254(0xdb)]!==_0x3c622f[_0x2d5254(0x8d)][_0x2d5254(0xdb)]||_0x3ef2b2[_0x2d5254(0x8d)]['subUnitId']!==_0x3c622f[_0x2d5254(0x8d)]['subUnitId'])return _0x54005a;const _0x2dff45=_0x570d2f['deepClone'](_0x3ef2b2),_0x1a84c6=_0x570d2f[_0x2d5254(0xb4)](_0x3c622f),{sourceRange:_0x2901b7,targetRange:_0x48e3fb}=_0x3ef2b2['params'],_0x57972d={'start':_0x2901b7['startColumn'],'end':_0x2901b7['endColumn']},_0x462c59={'start':_0x48e3fb[_0x2d5254(0x15a)],'end':_0x48e3fb['endColumn']};return _0x1a84c6[_0x2d5254(0x8d)][_0x2d5254(0xd1)][_0x2d5254(0xaf)](_0x1a88e4=>{const _0x18443b=_0x2d5254,_0x326bd0={'start':_0x1a88e4[_0x18443b(0x15a)],'end':_0x1a88e4[_0x18443b(0x9d)]},_0x4b88cb=H(_0x57972d,_0x326bd0),_0x5a535a=H(_0x462c59,_0x326bd0);if(_0x4b88cb||_0x5a535a)return!0x0;const _0x19cd26=_0x2e8050(_0x57972d,_0x462c59,_0x326bd0);return _0x19cd26[_0x18443b(0xf6)]!==0x0?!0x0:(_0x1a88e4[_0x18443b(0x15a)]+=_0x19cd26[_0x18443b(0xc3)],_0x1a88e4[_0x18443b(0x9d)]+=_0x19cd26[_0x18443b(0xc3)],!0x1);})?{'error':new Error('move\x20col\x20is\x20conflict\x20with\x20remove\x20numfmt')}:{'m1Prime':_0x2dff45,'m2Prime':_0x1a84c6};}},Ga={'m1':_0x31c10b['id'],'m2':_0x3c47fd['id'],'handler'(_0x4ab9e4,_0x21028b){const _0x45804b=_0x572182,_0x3e91f=_0x570d2f['deepClone'](_0x4ab9e4),_0x32fa36=_0x570d2f[_0x45804b(0xb4)](_0x21028b);if(_0x4ab9e4[_0x45804b(0x8d)][_0x45804b(0xdb)]!==_0x21028b[_0x45804b(0x8d)]['unitId']||_0x4ab9e4['params'][_0x45804b(0x20b)]!==_0x21028b[_0x45804b(0x8d)]['subUnitId'])return{'m1Prime':_0x3e91f,'m2Prime':_0x32fa36};const _0x587ffa=_0x32fa36['params'][_0x45804b(0xd1)][_0x45804b(0x146)]((_0x440bb4,_0x608bd4)=>{const _0x4807f9=_0x45804b,{sourceRange:_0x6574f8,targetRange:_0x57eea9}=_0x4ab9e4[_0x4807f9(0x8d)],_0x2b4ab0={..._0x608bd4};return _0x6574f8[_0x4807f9(0x9d)]<_0x2b4ab0['startColumn']&&_0x57eea9[_0x4807f9(0x15a)]>_0x2b4ab0[_0x4807f9(0x9d)]?(_0x2b4ab0[_0x4807f9(0x15a)]-=_0x6574f8[_0x4807f9(0x9d)]-_0x6574f8[_0x4807f9(0x15a)]+0x1,_0x2b4ab0[_0x4807f9(0x9d)]-=_0x6574f8[_0x4807f9(0x9d)]-_0x6574f8[_0x4807f9(0x15a)]+0x1,K(_0x2b4ab0)&&_0x440bb4[_0x4807f9(0x1ca)](_0x2b4ab0)):_0x6574f8[_0x4807f9(0x15a)]>_0x2b4ab0[_0x4807f9(0x9d)]&&_0x57eea9[_0x4807f9(0x9d)]<_0x2b4ab0['startColumn']?(_0x2b4ab0[_0x4807f9(0x15a)]+=_0x6574f8[_0x4807f9(0x9d)]-_0x6574f8[_0x4807f9(0x15a)]+0x1,_0x2b4ab0[_0x4807f9(0x9d)]+=_0x6574f8['endColumn']-_0x6574f8[_0x4807f9(0x15a)]+0x1,K(_0x2b4ab0)&&_0x440bb4['push'](_0x2b4ab0)):_0x5b3986[_0x4807f9(0x7a)](_0x2b4ab0,_0x6574f8)||_0x5b3986[_0x4807f9(0x7a)](_0x2b4ab0,_0x57eea9)||_0x440bb4[_0x4807f9(0x1ca)](_0x2b4ab0),_0x440bb4;},[]);return _0x32fa36[_0x45804b(0x8d)][_0x45804b(0xd1)]=_0x587ffa,_0x32fa36['params']['ranges'][_0x45804b(0xf6)]===0x0&&(_0x32fa36['id']=_0x1a62da['id']),{'m1Prime':_0x3e91f,'m2Prime':_0x32fa36};}},ja={'m1':_0x31c10b['id'],'m2':_0x587c63['id'],'handler'(_0x4bac8d,_0x23b38a){const _0x2d9cb5=_0x572182,_0x1fcb77={'m1Prime':_0x4bac8d,'m2Prime':_0x23b38a};if(_0x4bac8d[_0x2d9cb5(0x8d)][_0x2d9cb5(0xdb)]!==_0x23b38a[_0x2d9cb5(0x8d)][_0x2d9cb5(0xdb)]||_0x4bac8d[_0x2d9cb5(0x8d)]['subUnitId']!==_0x23b38a[_0x2d9cb5(0x8d)][_0x2d9cb5(0x20b)])return _0x1fcb77;const _0x4df21e=_0x4bac8d[_0x2d9cb5(0x8d)]['sourceRange'][_0x2d9cb5(0x15a)],_0x55e6b9=_0x4bac8d[_0x2d9cb5(0x8d)]['sourceRange'][_0x2d9cb5(0x9d)],_0x59b5fd=_0x4bac8d[_0x2d9cb5(0x8d)][_0x2d9cb5(0x1d0)]['startColumn'],_0x2b0c4b=_0x4bac8d['params'][_0x2d9cb5(0x1d0)][_0x2d9cb5(0x9d)],_0x1ca597=_0x23b38a[_0x2d9cb5(0x8d)][_0x2d9cb5(0x19f)][_0x2d9cb5(0x15a)],_0x44ef92=_0x23b38a[_0x2d9cb5(0x8d)]['range'][_0x2d9cb5(0x9d)];if(_0x4df21e<=_0x44ef92&&_0x55e6b9>=_0x1ca597||_0x59b5fd<=_0x44ef92&&_0x2b0c4b>=_0x1ca597)return{'error':new Error('move\x20range\x20is\x20conflict\x20with\x20reorder\x20range')};const _0x547279=_0x2e8050({'start':_0x4df21e,'end':_0x55e6b9},{'start':_0x59b5fd,'end':_0x2b0c4b},{'start':_0x1ca597,'end':_0x44ef92}),_0x371d5d=_0x570d2f[_0x2d9cb5(0xb4)](_0x23b38a);return _0x371d5d['params'][_0x2d9cb5(0x19f)]['startColumn']+=_0x547279[_0x2d9cb5(0xc3)],_0x371d5d['params']['range']['endColumn']+=_0x547279[_0x2d9cb5(0xc3)]+(_0x547279[_0x2d9cb5(0xf6)]||0x0),{'m1Prime':_0x4bac8d,'m2Prime':_0x371d5d};}},$a={'m1':_0x31c10b['id'],'m2':_0x35fae0['id'],'handler'(_0x43c197,_0x109e65){const _0x2951f8=_0x572182,_0xab9ad7={'m1Prime':_0x43c197,'m2Prime':_0x109e65};if(_0x43c197[_0x2951f8(0x8d)][_0x2951f8(0xdb)]!==_0x109e65[_0x2951f8(0x8d)][_0x2951f8(0xdb)]||_0x43c197[_0x2951f8(0x8d)][_0x2951f8(0x20b)]!==_0x109e65[_0x2951f8(0x8d)][_0x2951f8(0x20b)])return _0xab9ad7;const _0x290adc=_0x570d2f['deepClone'](_0x43c197),_0x3a5af4=_0x570d2f[_0x2951f8(0xb4)](_0x109e65),{columnData:_0x5cc05e}=_0x3a5af4['params'],{sourceRange:_0x29fb2f,targetRange:_0x5c4795}=_0x43c197[_0x2951f8(0x8d)];return _0x3d006d(_0x29fb2f[_0x2951f8(0x15a)],_0x29fb2f[_0x2951f8(0x9d)]-_0x29fb2f[_0x2951f8(0x15a)]+0x1,_0x5c4795[_0x2951f8(0x15a)],_0x5cc05e),{'m1Prime':_0x290adc,'m2Prime':_0x3a5af4};}},Ya={'m1':_0x31c10b['id'],'m2':_0x519e99['id'],'handler'(_0x216995,_0x3f5cb2){const _0x3d66be=_0x572182,_0x2fa185={'m1Prime':_0x216995,'m2Prime':_0x3f5cb2};if(_0x216995[_0x3d66be(0x8d)][_0x3d66be(0xdb)]!==_0x3f5cb2[_0x3d66be(0x8d)][_0x3d66be(0xdb)]||_0x216995[_0x3d66be(0x8d)][_0x3d66be(0x20b)]!==_0x3f5cb2['params'][_0x3d66be(0x20b)])return _0x2fa185;const _0x139066=_0x570d2f[_0x3d66be(0xb4)](_0x216995),_0x4b6c58=_0x570d2f[_0x3d66be(0xb4)](_0x3f5cb2),{ranges:_0x590b69}=_0x4b6c58[_0x3d66be(0x8d)],{sourceRange:_0x4de9a2,targetRange:_0x127e6a}=_0x216995[_0x3d66be(0x8d)],_0x371a9c={'start':_0x4de9a2[_0x3d66be(0x15a)],'end':_0x4de9a2[_0x3d66be(0x9d)]},_0x155c36={'start':_0x127e6a[_0x3d66be(0x15a)],'end':_0x127e6a['endColumn']};return _0x590b69['some'](_0xfb374=>{const _0x3c50ef=_0x3d66be,_0x517f1a={'start':_0xfb374[_0x3c50ef(0x15a)],'end':_0xfb374[_0x3c50ef(0x9d)]},_0x5071f=H(_0x371a9c,_0x517f1a),_0x395c22=H(_0x155c36,_0x517f1a);if(_0x5071f||_0x395c22)return!0x0;const _0xd42774=_0x2e8050(_0x371a9c,_0x155c36,_0x517f1a);return _0xd42774[_0x3c50ef(0xf6)]!==0x0?!0x0:(_0xfb374['startColumn']+=_0xd42774['step'],_0xfb374[_0x3c50ef(0x9d)]+=_0xd42774[_0x3c50ef(0xc3)],!0x1);})?{'error':new Error('move\x20col\x20is\x20conflict\x20with\x20set\x20col\x20hidden')}:{'m1Prime':_0x139066,'m2Prime':_0x4b6c58};}},Ja={'m1':_0x31c10b['id'],'m2':_0x20806c['id'],'handler'(_0x4a7e13,_0x50d490){const _0x45c9eb=_0x572182,_0x352517={'m1Prime':_0x4a7e13,'m2Prime':_0x50d490};if(_0x4a7e13[_0x45c9eb(0x8d)][_0x45c9eb(0xdb)]!==_0x50d490[_0x45c9eb(0x8d)][_0x45c9eb(0xdb)]||_0x4a7e13['params'][_0x45c9eb(0x20b)]!==_0x50d490[_0x45c9eb(0x8d)][_0x45c9eb(0x20b)])return _0x352517;const _0x420c8c=_0x570d2f[_0x45c9eb(0xb4)](_0x4a7e13),_0x4b1565=_0x570d2f[_0x45c9eb(0xb4)](_0x50d490),{ranges:_0x186e1a}=_0x4b1565[_0x45c9eb(0x8d)],{sourceRange:_0x1d5c95,targetRange:_0x3d4d2f}=_0x4a7e13['params'],_0x56f526={'start':_0x1d5c95[_0x45c9eb(0x15a)],'end':_0x1d5c95['endColumn']},_0x3b5e9a={'start':_0x3d4d2f[_0x45c9eb(0x15a)],'end':_0x3d4d2f[_0x45c9eb(0x9d)]};return _0x186e1a[_0x45c9eb(0xaf)](_0x44d164=>{const _0x12ab2d=_0x45c9eb,_0x136125={'start':_0x44d164[_0x12ab2d(0x15a)],'end':_0x44d164['endColumn']},_0x1db6af=H(_0x56f526,_0x136125),_0x4781b3=H(_0x3b5e9a,_0x136125);if(_0x1db6af||_0x4781b3)return!0x0;const _0x26abf1=_0x2e8050(_0x56f526,_0x3b5e9a,_0x136125);return _0x26abf1['length']!==0x0?!0x0:(_0x44d164['startColumn']+=_0x26abf1[_0x12ab2d(0xc3)],_0x44d164[_0x12ab2d(0x9d)]+=_0x26abf1['step'],!0x1);})?{'error':new Error(_0x45c9eb(0xc1))}:{'m1Prime':_0x420c8c,'m2Prime':_0x4b1565};}},Xa={'m1':_0x31c10b['id'],'m2':_0x4075e['id'],'handler'(_0x439454,_0x4d5b3e){const _0x5b4f81=_0x572182,_0x3e4d62={'m1Prime':_0x439454,'m2Prime':_0x4d5b3e};if(_0x439454['params'][_0x5b4f81(0xdb)]!==_0x4d5b3e[_0x5b4f81(0x8d)][_0x5b4f81(0xdb)]||_0x439454[_0x5b4f81(0x8d)][_0x5b4f81(0x20b)]!==_0x4d5b3e[_0x5b4f81(0x8d)]['subUnitId'])return _0x3e4d62;const _0x29fbff=[_0x570d2f['deepClone'](_0x439454)],_0xe1aa73=_0x570d2f[_0x5b4f81(0xb4)](_0x4d5b3e),{sourceRange:_0x3904e9,targetRange:_0xdd4824}=_0x439454['params'],_0x7fcbc3={'start':_0x3904e9[_0x5b4f81(0x15a)],'end':_0x3904e9[_0x5b4f81(0x9d)]},_0x4a3963={'start':_0xdd4824[_0x5b4f81(0x15a)],'end':_0xdd4824['endColumn']},{values:_0x507202}=_0xe1aa73[_0x5b4f81(0x8d)],_0x4c9c0d=[];let _0x5244e6=!0x1;for(const _0x16ee5b in _0x507202){const _0x35e247=_0x507202[_0x16ee5b];if(_0x4c9c0d['push'](..._0x35e247[_0x5b4f81(0xd1)]),_0x35e247[_0x5b4f81(0xd1)][_0x5b4f81(0xaf)](_0x105228=>{const _0x6e0e8=_0x5b4f81,_0x127edb={'start':_0x105228['startColumn'],'end':_0x105228[_0x6e0e8(0x9d)]},_0x24a239=H(_0x7fcbc3,_0x127edb),_0x18756f=H(_0x4a3963,_0x127edb);if(_0x24a239||_0x18756f)return!0x0;const _0x3bc6c6=_0x2e8050(_0x7fcbc3,_0x4a3963,_0x127edb);return _0x3bc6c6['length']!==0x0?!0x0:(_0x3bc6c6[_0x6e0e8(0xc3)]!==0x0&&(_0x5244e6=!0x0),_0x105228[_0x6e0e8(0x15a)]+=_0x3bc6c6['step'],_0x105228[_0x6e0e8(0x9d)]+=_0x3bc6c6[_0x6e0e8(0xc3)],!0x1);}))return{'error':new Error(_0x5b4f81(0xe7))};}if(_0x5244e6){const _0x2615cf={'id':_0x3dcda7['id'],'params':{'unitId':_0x4d5b3e[_0x5b4f81(0x8d)][_0x5b4f81(0xdb)],'subUnitId':_0x4d5b3e[_0x5b4f81(0x8d)][_0x5b4f81(0x20b)],'ranges':_0x4c9c0d}};_0x29fbff[_0x5b4f81(0x1ca)](_0x2615cf,_0xe1aa73);}return{'m1Prime':_0x29fbff,'m2Prime':_0xe1aa73};}},Ka={'m1':_0x31c10b['id'],'m2':_0x15eb0a['id'],'handler'(_0x4053ab,_0x241012){const _0x14ac7e=_0x572182,_0x43135b={'m1Prime':_0x4053ab,'m2Prime':_0x241012};if(_0x4053ab[_0x14ac7e(0x8d)]['unitId']!==_0x241012['params'][_0x14ac7e(0xdb)]||_0x4053ab[_0x14ac7e(0x8d)]['subUnitId']!==_0x241012[_0x14ac7e(0x8d)][_0x14ac7e(0x20b)])return _0x43135b;const _0x2c3463=[_0x570d2f[_0x14ac7e(0xb4)](_0x4053ab)],_0xa819b8=_0x570d2f[_0x14ac7e(0xb4)](_0x241012),_0x433a2c=new _0x1f7bb9(_0xa819b8['params'][_0x14ac7e(0x208)]),{sourceRange:_0x15c296,targetRange:_0x3bb3ac}=_0x4053ab[_0x14ac7e(0x8d)],_0x4e4efe=_0x15c296[_0x14ac7e(0x15a)],_0x2e7ae3=_0x15c296[_0x14ac7e(0x9d)]-_0x15c296[_0x14ac7e(0x15a)]+0x1,_0x2d52c0=_0x3bb3ac[_0x14ac7e(0x15a)];_0x433a2c[_0x14ac7e(0x7e)](_0x4e4efe,_0x2e7ae3,_0x2d52c0);const _0x3a05f1=new _0x1f7bb9();let _0x27cc8f=!0x1;if(_0x433a2c[_0x14ac7e(0x86)]((_0x37f6ee,_0x575243,_0x2290d4)=>{const _0x534872=_0x14ac7e;if(_0x2290d4&&_0x2290d4['f']){const _0x84af6=_0x2290d4['f'];let _0x4ef3ce=!0x1;const _0x1165e3=dt(_0x4053ab[_0x534872(0x8d)][_0x534872(0xdb)],_0x4053ab['params'][_0x534872(0x20b)],_0x84af6,_0x417150=>{const _0xe1d0ac=_0x534872,_0x18b03e=_0x2e8050({'start':_0x4053ab[_0xe1d0ac(0x8d)]['sourceRange'][_0xe1d0ac(0x15a)],'end':_0x4053ab[_0xe1d0ac(0x8d)]['sourceRange'][_0xe1d0ac(0x9d)]},{'start':_0x4053ab[_0xe1d0ac(0x8d)][_0xe1d0ac(0x1d0)][_0xe1d0ac(0x15a)],'end':_0x4053ab[_0xe1d0ac(0x8d)][_0xe1d0ac(0x1d0)][_0xe1d0ac(0x9d)]},{'start':_0x417150[_0xe1d0ac(0x15a)],'end':_0x417150[_0xe1d0ac(0x9d)]});return(_0x18b03e[_0xe1d0ac(0xc3)]!==0x0||_0x18b03e[_0xe1d0ac(0xf6)]!==0x0)&&(_0x4ef3ce=!0x0,_0x417150[_0xe1d0ac(0x15a)]+=_0x18b03e[_0xe1d0ac(0xc3)],_0x417150[_0xe1d0ac(0x9d)]+=_0x18b03e[_0xe1d0ac(0xc3)]+_0x18b03e[_0xe1d0ac(0xf6)]),_0x417150;});_0x4ef3ce&&(_0x27cc8f=!0x0,_0x2290d4['f']=_0x1165e3,_0x3a05f1[_0x534872(0x134)](_0x37f6ee,_0x575243,{..._0x2290d4}));}}),_0x27cc8f){const _0x29d3ab={'id':_0x15eb0a['id'],'params':{'unitId':_0x241012[_0x14ac7e(0x8d)]['unitId'],'subUnitId':_0x241012[_0x14ac7e(0x8d)][_0x14ac7e(0x20b)],'cellValue':_0x3a05f1['getMatrix']()}};_0x2c3463[_0x14ac7e(0x1ca)](_0x29d3ab);}return _0xa819b8[_0x14ac7e(0x8d)][_0x14ac7e(0x208)]=_0x433a2c[_0x14ac7e(0x16a)](),{'m1Prime':_0x2c3463,'m2Prime':_0xa819b8};}},za={'m1':_0x31c10b['id'],'m2':_0x23969e['id'],'handler'(_0x48109e,_0x26be90){const _0x49cb72=_0x572182,_0x2b1a4c={'m1Prime':[],'m2Prime':[]};if(_0x48109e[_0x49cb72(0x8d)][_0x49cb72(0xdb)]!==_0x26be90['params']['unitId']||_0x48109e['params'][_0x49cb72(0x20b)]!==_0x26be90[_0x49cb72(0x8d)][_0x49cb72(0x20b)])return _0x2b1a4c;const _0x4984f7=_0x570d2f[_0x49cb72(0xb4)](_0x26be90);let _0x31ff61=!0x1;return _0x4984f7[_0x49cb72(0x8d)][_0x49cb72(0x138)][_0x49cb72(0xc5)](_0x4aad85=>{const _0x23317b=_0x49cb72,{range:_0x32f243,primary:_0x305e00}=_0x4aad85,_0x511986=_0x2e8050({'start':_0x48109e[_0x23317b(0x8d)]['sourceRange'][_0x23317b(0x15a)],'end':_0x48109e['params'][_0x23317b(0x11d)][_0x23317b(0x9d)]},{'start':_0x48109e['params']['targetRange'][_0x23317b(0x15a)],'end':_0x48109e[_0x23317b(0x8d)][_0x23317b(0x1d0)][_0x23317b(0x9d)]},{'start':_0x32f243['startColumn'],'end':_0x32f243[_0x23317b(0x9d)]});if(_0x511986[_0x23317b(0xf6)]||_0x511986[_0x23317b(0xc3)]){if(_0x32f243['startColumn']+=_0x511986[_0x23317b(0xc3)],_0x32f243[_0x23317b(0x9d)]+=_0x511986['step']+(_0x511986[_0x23317b(0xf6)]||0x0),_0x305e00){const _0x603acb=_0x2e8050({'start':_0x48109e[_0x23317b(0x8d)]['sourceRange'][_0x23317b(0x15a)],'end':_0x48109e[_0x23317b(0x8d)][_0x23317b(0x11d)][_0x23317b(0x9d)]},{'start':_0x48109e[_0x23317b(0x8d)]['targetRange'][_0x23317b(0x15a)],'end':_0x48109e[_0x23317b(0x8d)][_0x23317b(0x1d0)][_0x23317b(0x9d)]},{'start':_0x305e00[_0x23317b(0x15a)],'end':_0x305e00[_0x23317b(0x9d)]});(_0x603acb[_0x23317b(0xf6)]||_0x603acb[_0x23317b(0xc3)])&&(_0x305e00[_0x23317b(0x15a)]+=_0x603acb[_0x23317b(0xc3)],_0x305e00[_0x23317b(0x9d)]+=_0x603acb[_0x23317b(0xc3)],_0x305e00['actualColumn']+=_0x603acb[_0x23317b(0xc3)]);}_0x31ff61=!0x0;}}),_0x31ff61&&_0x2b1a4c[_0x49cb72(0xcf)][_0x49cb72(0x1ca)](_0x4984f7),_0x2b1a4c;}},qa={'m1':_0x31c10b['id'],'m2':_0x4112c4['id'],'handler'(_0x13a420,_0x10c9ec){const _0x14fbc8=_0x572182,_0x16d591={'m1Prime':_0x13a420,'m2Prime':_0x10c9ec};if(_0x13a420['params'][_0x14fbc8(0xdb)]!==_0x10c9ec[_0x14fbc8(0x8d)][_0x14fbc8(0xdb)]||_0x13a420[_0x14fbc8(0x8d)][_0x14fbc8(0x20b)]!==_0x10c9ec[_0x14fbc8(0x8d)]['subUnitId'])return _0x16d591;const _0x46041a=_0x570d2f['deepClone'](_0x13a420),_0x3fad44=_0x570d2f[_0x14fbc8(0xb4)](_0x10c9ec),_0x122f2d=_0x2e8050({'start':_0x13a420['params']['sourceRange']['startColumn'],'end':_0x13a420[_0x14fbc8(0x8d)][_0x14fbc8(0x11d)][_0x14fbc8(0x9d)]},{'start':_0x13a420[_0x14fbc8(0x8d)]['targetRange'][_0x14fbc8(0x15a)],'end':_0x13a420['params'][_0x14fbc8(0x1d0)]['endColumn']},{'start':_0x10c9ec[_0x14fbc8(0x8d)][_0x14fbc8(0x80)],'end':_0x10c9ec[_0x14fbc8(0x8d)][_0x14fbc8(0x80)]});if(_0x122f2d[_0x14fbc8(0xc3)]===0x0)return _0x16d591;_0x3fad44[_0x14fbc8(0x8d)][_0x14fbc8(0x80)]+=_0x122f2d[_0x14fbc8(0xc3)],_0x3fad44[_0x14fbc8(0x8d)][_0x14fbc8(0x211)]&&(_0x3fad44[_0x14fbc8(0x8d)][_0x14fbc8(0x211)][_0x14fbc8(0x7f)]+=_0x122f2d[_0x14fbc8(0xc3)]);const _0x169dd5=_0x570d2f['deepClone'](_0x10c9ec);return _0x169dd5[_0x14fbc8(0x8d)]['criteria']=null,{'m1Prime':[_0x169dd5,_0x3fad44,_0x46041a],'m2Prime':[_0x3fad44]};}},Za={'m1':_0x31c10b['id'],'m2':_0x23aded['id'],'handler'(_0x500161,_0xfbdc2e){const _0x261eb2=_0x572182,_0x158689={'m1Prime':[_0x500161],'m2Prime':[_0xfbdc2e]};if(_0x500161['params'][_0x261eb2(0xdb)]!==_0xfbdc2e['params']['unitId']||_0x500161[_0x261eb2(0x8d)][_0x261eb2(0x20b)]!==_0xfbdc2e['params'][_0x261eb2(0x20b)])return _0x158689;const _0x575074=_0x570d2f['deepClone'](_0x500161),_0x466fad=_0x570d2f['deepClone'](_0xfbdc2e),_0x2f3888=_0x2e8050({'start':_0x500161['params'][_0x261eb2(0x11d)][_0x261eb2(0x15a)],'end':_0x500161['params'][_0x261eb2(0x11d)][_0x261eb2(0x9d)]},{'start':_0x500161['params'][_0x261eb2(0x1d0)][_0x261eb2(0x15a)],'end':_0x500161[_0x261eb2(0x8d)]['targetRange'][_0x261eb2(0x9d)]},{'start':_0xfbdc2e['params'][_0x261eb2(0x19f)][_0x261eb2(0x15a)],'end':_0xfbdc2e[_0x261eb2(0x8d)][_0x261eb2(0x19f)]['endColumn']});return _0x466fad[_0x261eb2(0x8d)][_0x261eb2(0x19f)][_0x261eb2(0x15a)]+=_0x2f3888[_0x261eb2(0xc3)],_0x466fad['params'][_0x261eb2(0x19f)]['endColumn']+=_0x2f3888[_0x261eb2(0xc3)]+_0x2f3888[_0x261eb2(0xf6)],{'m1Prime':[_0x466fad,_0x575074],'m2Prime':[_0x466fad]};}},Qa={'m1':_0x31c10b['id'],'m2':_0x4cb95c['id'],'handler'(_0x44763c,_0xb5c84e){const _0x1479b9=_0x572182,_0x5b0071={'m1Prime':_0x44763c,'m2Prime':_0xb5c84e};if(_0x44763c['params'][_0x1479b9(0xdb)]!==_0xb5c84e['params'][_0x1479b9(0xdb)]||_0x44763c[_0x1479b9(0x8d)]['subUnitId']!==_0xb5c84e[_0x1479b9(0x8d)]['subUnitId'])return _0x5b0071;const _0x197b6a=_0x570d2f[_0x1479b9(0xb4)](_0x44763c),_0x14a4cd=_0x570d2f['deepClone'](_0xb5c84e),{ranges:_0x4bb4df,colWidth:_0x2fc011}=_0x14a4cd[_0x1479b9(0x8d)],{sourceRange:_0x326a84,targetRange:_0x4ccea8}=_0x44763c['params'],_0x30dfa2={'start':_0x326a84[_0x1479b9(0x15a)],'end':_0x326a84[_0x1479b9(0x9d)]},_0x378a40={'start':_0x4ccea8[_0x1479b9(0x15a)],'end':_0x4ccea8[_0x1479b9(0x9d)]};return _0x4bb4df[_0x1479b9(0xaf)](_0x286ae1=>{const _0x32e04f=_0x1479b9,_0x43dadb={'start':_0x286ae1[_0x32e04f(0x15a)],'end':_0x286ae1[_0x32e04f(0x9d)]},_0x14036a=_0x2e8050(_0x30dfa2,_0x378a40,_0x43dadb);return _0x14036a[_0x32e04f(0xf6)]!==0x0?!0x0:(_0x286ae1['startColumn']+=_0x14036a['step'],_0x286ae1[_0x32e04f(0x9d)]+=_0x14036a[_0x32e04f(0xc3)],!0x1);})?{'error':new Error('move\x20col\x20is\x20conflict\x20with\x20set\x20worksheet\x20col\x20width')}:(typeof _0x2fc011!=_0x1479b9(0x1b5)&&_0x3d006d(_0x326a84[_0x1479b9(0x15a)],_0x326a84['endColumn']-_0x326a84[_0x1479b9(0x15a)]+0x1,_0x4ccea8[_0x1479b9(0x15a)],_0x2fc011),{'m1Prime':_0x197b6a,'m2Prime':_0x14a4cd});}},ts={'m1':_0x31c10b['id'],'m2':_0x2afd0c['id'],'handler':(_0xf63a3d,_0x2f42c7)=>{const _0x474b81=_0x572182,_0x18e94f={'m1Prime':_0xf63a3d,'m2Prime':_0x2f42c7};if(_0xf63a3d[_0x474b81(0x8d)][_0x474b81(0xdb)]!==_0x2f42c7['params']['unitId']||_0xf63a3d['params']['subUnitId']!==_0x2f42c7['params'][_0x474b81(0x20b)])return _0x18e94f;const _0x5aff45={'id':_0x563de0['id'],'params':{'unitId':_0xf63a3d[_0x474b81(0x8d)][_0x474b81(0xdb)],'subUnitId':_0xf63a3d[_0x474b81(0x8d)]['subUnitId'],'fromRange':_0xf63a3d[_0x474b81(0x8d)]['sourceRange'],'toRange':_0xf63a3d['params'][_0x474b81(0x1d0)]}},_0x86d01=wt(_0x2f42c7,_0x5aff45);return{'m1Prime':[_0xf63a3d,..._0x86d01],'m2Prime':[_0x2f42c7,..._0x86d01]};}},es={'m1':_0x396099['id'],'m2':_0x396099['id'],'handler'(_0x2a566c,_0x4b17fa){const _0x5b6d2d=_0x572182;return _0x2a566c[_0x5b6d2d(0x8d)][_0x5b6d2d(0xdb)]!==_0x4b17fa['params'][_0x5b6d2d(0xdb)]||_0x2a566c['params'][_0x5b6d2d(0x20b)]!==_0x4b17fa[_0x5b6d2d(0x8d)][_0x5b6d2d(0x20b)]?{'m1Prime':_0x2a566c,'m2Prime':_0x4b17fa}:{'error':new Error('Move\x20conditional\x20formatting\x20rule\x20\x20is\x20conflict\x20with\x20self')};}},rs={'m1':_0x43f1cd['id'],'m2':_0x4b0a3e['id'],'handler'(_0x359a33,_0x2ba00e){const _0x1838a1=_0x572182,_0x392780=sr[_0x1838a1(0xcd)](_0x2ba00e,_0x359a33);return at(_0x392780)?{'m1Prime':_0x392780['m2Prime'],'m2Prime':_0x392780[_0x1838a1(0x119)]}:_0x392780;}},ns={'m1':_0x43f1cd['id'],'m2':_0x43f1cd['id'],'handler'(_0x350ec0,_0x3a5048){const _0x32f427=_0x572182,_0x333c0f={'m1Prime':_0x350ec0,'m2Prime':_0x3a5048};if(_0x350ec0[_0x32f427(0x8d)][_0x32f427(0xdb)]!==_0x3a5048[_0x32f427(0x8d)][_0x32f427(0xdb)])return _0x333c0f;const _0x6cef4b=new _0x1f7bb9(_0x350ec0[_0x32f427(0x8d)][_0x32f427(0x1b0)][_0x32f427(0x17e)])['getDataRange'](),_0x157a16=new _0x1f7bb9(_0x3a5048['params'][_0x32f427(0x1b0)][_0x32f427(0x17e)])[_0x32f427(0x182)](),_0x3d4007=new _0x1f7bb9(_0x350ec0[_0x32f427(0x8d)]['to'][_0x32f427(0x17e)])['getDataRange'](),_0x4b3d56=new _0x1f7bb9(_0x3a5048['params']['to'][_0x32f427(0x17e)])[_0x32f427(0x182)]();return _0x350ec0[_0x32f427(0x8d)][_0x32f427(0x1b0)][_0x32f427(0x20b)]===_0x3a5048[_0x32f427(0x8d)][_0x32f427(0x1b0)][_0x32f427(0x20b)]&&_0x5b3986[_0x32f427(0x7a)](_0x6cef4b,_0x157a16)||_0x350ec0[_0x32f427(0x8d)]['to'][_0x32f427(0x20b)]===_0x3a5048[_0x32f427(0x8d)]['to'][_0x32f427(0x20b)]&&_0x5b3986[_0x32f427(0x7a)](_0x3d4007,_0x4b3d56)||_0x350ec0[_0x32f427(0x8d)][_0x32f427(0x1b0)][_0x32f427(0x20b)]===_0x3a5048[_0x32f427(0x8d)]['to'][_0x32f427(0x20b)]&&_0x5b3986['intersects'](_0x6cef4b,_0x4b3d56)||_0x350ec0[_0x32f427(0x8d)]['to'][_0x32f427(0x20b)]===_0x3a5048[_0x32f427(0x8d)][_0x32f427(0x1b0)][_0x32f427(0x20b)]&&_0x5b3986[_0x32f427(0x7a)](_0x3d4007,_0x157a16)?{'error':new Error('Two\x20move-range\x20mutations\x20have\x20an\x20overlapping\x20range.')}:_0x333c0f;}},as={'m1':_0x43f1cd['id'],'m2':_0x3dcda7['id'],'handler'(_0x3b17e8,_0x20b66e){const _0x18e732=_0x572182,_0x51ac9d={'m1Prime':_0x3b17e8,'m2Prime':_0x20b66e};if(_0x3b17e8['params'][_0x18e732(0xdb)]!==_0x20b66e[_0x18e732(0x8d)][_0x18e732(0xdb)]||_0x3b17e8[_0x18e732(0x8d)][_0x18e732(0x1b0)][_0x18e732(0x20b)]!==_0x20b66e['params'][_0x18e732(0x20b)]&&_0x3b17e8[_0x18e732(0x8d)]['to'][_0x18e732(0x20b)]!==_0x20b66e[_0x18e732(0x8d)][_0x18e732(0x20b)])return _0x51ac9d;const _0x1c8931=new _0x1f7bb9(_0x3b17e8['params'][_0x18e732(0x1b0)][_0x18e732(0x17e)])['getDataRange'](),_0x582526=new _0x1f7bb9(_0x3b17e8['params']['to']['value'])[_0x18e732(0x182)]();return _0x3b17e8[_0x18e732(0x8d)][_0x18e732(0x1b0)][_0x18e732(0x20b)]===_0x20b66e[_0x18e732(0x8d)][_0x18e732(0x20b)]&&_0x20b66e['params'][_0x18e732(0xd1)][_0x18e732(0xaf)](_0x810b6a=>_0x5b3986[_0x18e732(0x7a)](_0x810b6a,_0x1c8931))?{'error':new Error(_0x18e732(0xe1))}:_0x3b17e8[_0x18e732(0x8d)]['to'][_0x18e732(0x20b)]===_0x20b66e[_0x18e732(0x8d)][_0x18e732(0x20b)]&&_0x20b66e[_0x18e732(0x8d)][_0x18e732(0xd1)]['some'](_0x1613c8=>_0x5b3986[_0x18e732(0x7a)](_0x1613c8,_0x582526))?{'error':new Error(_0x18e732(0xe1))}:_0x51ac9d;}},ss={'m1':_0x43f1cd['id'],'m2':_0x587c63['id'],'handler'(_0x49ab78,_0x213dfc){const _0x2714c3=_0x572182,_0x36a7a6={'m1Prime':_0x49ab78,'m2Prime':_0x213dfc};if(_0x49ab78[_0x2714c3(0x8d)][_0x2714c3(0xdb)]!==_0x213dfc[_0x2714c3(0x8d)]['unitId']||_0x49ab78['params']['from'][_0x2714c3(0x20b)]!==_0x213dfc[_0x2714c3(0x8d)][_0x2714c3(0x20b)]&&_0x49ab78['params']['to']['subUnitId']!==_0x213dfc[_0x2714c3(0x8d)][_0x2714c3(0x20b)])return _0x36a7a6;if(_0x49ab78[_0x2714c3(0x8d)]['from'][_0x2714c3(0x20b)]===_0x213dfc[_0x2714c3(0x8d)][_0x2714c3(0x20b)]){const _0x1c637a=new _0x1f7bb9(_0x49ab78[_0x2714c3(0x8d)][_0x2714c3(0x1b0)][_0x2714c3(0x17e)])[_0x2714c3(0x182)]();if(_0x5b3986[_0x2714c3(0x7a)](_0x1c637a,_0x213dfc[_0x2714c3(0x8d)][_0x2714c3(0x19f)]))return{'error':new Error(_0x2714c3(0x8c))};}if(_0x49ab78[_0x2714c3(0x8d)]['to']['subUnitId']===_0x213dfc[_0x2714c3(0x8d)][_0x2714c3(0x20b)]){const _0x322ba0=new _0x1f7bb9(_0x49ab78[_0x2714c3(0x8d)]['to']['value'])[_0x2714c3(0x182)]();if(_0x5b3986['intersects'](_0x322ba0,_0x213dfc[_0x2714c3(0x8d)]['range']))return{'error':new Error(_0x2714c3(0x8c))};}return _0x36a7a6;}},os={'m1':_0x43f1cd['id'],'m2':_0x4075e['id'],'handler'(_0x220e84,_0x4b48ee){const _0x380acd=_0x572182,_0x5c6eae={'m1Prime':_0x220e84,'m2Prime':_0x4b48ee};if(_0x220e84[_0x380acd(0x8d)][_0x380acd(0xdb)]!==_0x4b48ee['params'][_0x380acd(0xdb)]||_0x220e84['params'][_0x380acd(0x1b0)][_0x380acd(0x20b)]!==_0x4b48ee[_0x380acd(0x8d)]['subUnitId']&&_0x220e84['params']['to'][_0x380acd(0x20b)]!==_0x4b48ee['params'][_0x380acd(0x20b)])return _0x5c6eae;const _0x394fbe=new _0x1f7bb9(_0x220e84[_0x380acd(0x8d)][_0x380acd(0x1b0)][_0x380acd(0x17e)])[_0x380acd(0x182)](),_0xdbd9f0=new _0x1f7bb9(_0x220e84[_0x380acd(0x8d)]['to'][_0x380acd(0x17e)])[_0x380acd(0x182)]();if(_0x220e84[_0x380acd(0x8d)][_0x380acd(0x1b0)]['subUnitId']===_0x4b48ee[_0x380acd(0x8d)][_0x380acd(0x20b)]){const {values:_0x34c2c3}=_0x4b48ee['params'];for(const _0x5a1af3 in _0x34c2c3)if(_0x34c2c3[_0x5a1af3][_0x380acd(0xd1)][_0x380acd(0xaf)](_0x139eb0=>_0x5b3986[_0x380acd(0x7a)](_0x139eb0,_0x394fbe)))return{'error':new Error('move\x20range\x20is\x20conflict\x20with\x20set\x20numfmt')};}if(_0x220e84[_0x380acd(0x8d)]['to'][_0x380acd(0x20b)]===_0x4b48ee[_0x380acd(0x8d)][_0x380acd(0x20b)]){const {values:_0x292a8b}=_0x4b48ee[_0x380acd(0x8d)];for(const _0x19a07a in _0x292a8b)if(_0x292a8b[_0x19a07a][_0x380acd(0xd1)][_0x380acd(0xaf)](_0x3d7f3f=>_0x5b3986['intersects'](_0x3d7f3f,_0xdbd9f0)))return{'error':new Error(_0x380acd(0xe1))};}return _0x5c6eae;}},is={'m1':_0x454b7a['id'],'m2':_0x1b398d['id'],'handler':(_0x4354c9,_0x1bdb5f)=>{const _0x23257e=_0x572182,_0x2eae1f={'m1Prime':_0x4354c9,'m2Prime':_0x1bdb5f};if(_0x4354c9[_0x23257e(0x8d)]['unitId']!==_0x1bdb5f['params'][_0x23257e(0xdb)]||_0x4354c9[_0x23257e(0x8d)][_0x23257e(0x20b)]!==_0x1bdb5f[_0x23257e(0x8d)][_0x23257e(0x20b)])return _0x2eae1f;const _0x188e44={'id':_0x6ac3e3['id'],'params':{'unitId':_0x4354c9[_0x23257e(0x8d)]['unitId'],'subUnitId':_0x4354c9['params']['subUnitId'],'fromRange':_0x4354c9[_0x23257e(0x8d)][_0x23257e(0x11d)],'toRange':_0x4354c9[_0x23257e(0x8d)][_0x23257e(0x1d0)]}},_0x1c0c87=It(_0x1bdb5f,_0x188e44);return{'m1Prime':[_0x4354c9,..._0x1c0c87],'m2Prime':[_0x1bdb5f,..._0x1c0c87]};}},ds={'m1':_0x454b7a['id'],'m2':_0x3bedd8['id'],'handler'(_0x350fd3,_0x48ff7f){const _0x4bc8c4=_0x572182,_0x12479b={'m1Prime':_0x350fd3,'m2Prime':_0x48ff7f};if(_0x350fd3[_0x4bc8c4(0x8d)][_0x4bc8c4(0xdb)]!==_0x48ff7f['params']['unitId']||_0x350fd3['params'][_0x4bc8c4(0x20b)]!==_0x48ff7f[_0x4bc8c4(0x8d)]['subUnitId'])return _0x12479b;const _0x499ccb={'id':_0x6ac3e3['id'],'params':{'fromRange':_0x350fd3['params']['sourceRange'],'toRange':_0x350fd3[_0x4bc8c4(0x8d)][_0x4bc8c4(0x1d0)]}},_0x24b58e=Tt(_0x48ff7f,_0x499ccb);return{'m1Prime':[_0x350fd3,..._0x24b58e],'m2Prime':[_0x48ff7f,..._0x24b58e]};}},ms={'m1':_0x454b7a['id'],'m2':_0x4b0a3e['id'],'handler'(_0x33d3c2,_0xdedbe5){const _0x19bd89=_0x572182,_0xfe7f1=or['handler'](_0xdedbe5,_0x33d3c2);return at(_0xfe7f1)?{'m1Prime':_0xfe7f1[_0x19bd89(0xcf)],'m2Prime':_0xfe7f1[_0x19bd89(0x119)]}:_0xfe7f1;}},us={'m1':_0x454b7a['id'],'m2':_0x43f1cd['id'],'handler'(_0x548abf,_0x21964c){const _0x8f04a3=_0x572182,_0x6cab0d={'m1Prime':_0x548abf,'m2Prime':_0x21964c};if(_0x548abf[_0x8f04a3(0x8d)][_0x8f04a3(0xdb)]!==_0x21964c['params'][_0x8f04a3(0xdb)]||_0x548abf[_0x8f04a3(0x8d)][_0x8f04a3(0x20b)]!==_0x21964c['params'][_0x8f04a3(0x1b0)][_0x8f04a3(0x20b)]&&_0x548abf[_0x8f04a3(0x8d)][_0x8f04a3(0x20b)]!==_0x21964c[_0x8f04a3(0x8d)]['to'][_0x8f04a3(0x20b)])return _0x6cab0d;const _0x569dd2=_0x570d2f['deepClone'](_0x548abf),_0x2b5214=_0x570d2f[_0x8f04a3(0xb4)](_0x21964c),_0x5e5141=_0x548abf[_0x8f04a3(0x8d)][_0x8f04a3(0x11d)],_0x26c0b8=_0x548abf['params'][_0x8f04a3(0x1d0)];if(_0x548abf[_0x8f04a3(0x8d)][_0x8f04a3(0x20b)]===_0x21964c[_0x8f04a3(0x8d)][_0x8f04a3(0x1b0)]['subUnitId']){const _0x1008ae=new _0x1f7bb9(_0x2b5214[_0x8f04a3(0x8d)][_0x8f04a3(0x1b0)][_0x8f04a3(0x17e)]),_0x1471ab=_0x1008ae[_0x8f04a3(0x182)]();if(H({'start':_0x5e5141[_0x8f04a3(0x102)],'end':_0x5e5141[_0x8f04a3(0x111)]},{'start':_0x1471ab[_0x8f04a3(0x102)],'end':_0x1471ab[_0x8f04a3(0x111)]})||H({'start':_0x26c0b8['startRow'],'end':_0x26c0b8['endRow']},{'start':_0x1471ab[_0x8f04a3(0x102)],'end':_0x1471ab['endRow']}))return{'error':new Error(_0x8f04a3(0x118))};const _0x16f04e=_0x2e8050({'start':_0x5e5141['startRow'],'end':_0x5e5141['endRow']},{'start':_0x26c0b8[_0x8f04a3(0x102)],'end':_0x26c0b8[_0x8f04a3(0x111)]},{'start':_0x1471ab['startRow'],'end':_0x1471ab['endRow']});if(_0x16f04e[_0x8f04a3(0xf6)]!==0x0)return{'error':new Error(_0x8f04a3(0x118))};_0x16f04e[_0x8f04a3(0xc3)]!==0x0&&_0x1008ae[_0x8f04a3(0x199)](_0x5e5141['startRow'],_0x5e5141[_0x8f04a3(0x111)]-_0x5e5141['startRow']+0x1,_0x26c0b8['startRow']),_0x2b5214[_0x8f04a3(0x8d)][_0x8f04a3(0x1b0)][_0x8f04a3(0x17e)]=_0x1008ae[_0x8f04a3(0x16a)]();}if(_0x548abf[_0x8f04a3(0x8d)][_0x8f04a3(0x20b)]===_0x21964c['params']['to'][_0x8f04a3(0x20b)]){const _0xfb4f0b=new _0x1f7bb9(_0x2b5214[_0x8f04a3(0x8d)]['to'][_0x8f04a3(0x17e)]),_0x216495=_0xfb4f0b[_0x8f04a3(0x182)]();if(H({'start':_0x5e5141[_0x8f04a3(0x102)],'end':_0x5e5141[_0x8f04a3(0x111)]},{'start':_0x216495[_0x8f04a3(0x102)],'end':_0x216495[_0x8f04a3(0x111)]})||H({'start':_0x26c0b8[_0x8f04a3(0x102)],'end':_0x26c0b8[_0x8f04a3(0x111)]},{'start':_0x216495[_0x8f04a3(0x102)],'end':_0x216495[_0x8f04a3(0x111)]}))return{'error':new Error(_0x8f04a3(0x118))};const _0x3f3e4a=_0x2e8050({'start':_0x5e5141[_0x8f04a3(0x102)],'end':_0x5e5141[_0x8f04a3(0x111)]},{'start':_0x26c0b8['startRow'],'end':_0x26c0b8[_0x8f04a3(0x111)]},{'start':_0x216495[_0x8f04a3(0x102)],'end':_0x216495[_0x8f04a3(0x111)]});if(_0x3f3e4a[_0x8f04a3(0xf6)]!==0x0)return{'error':new Error(_0x8f04a3(0x118))};_0x3f3e4a[_0x8f04a3(0xc3)]!==0x0&&_0xfb4f0b[_0x8f04a3(0x199)](_0x5e5141['startRow'],_0x5e5141[_0x8f04a3(0x111)]-_0x5e5141[_0x8f04a3(0x102)]+0x1,_0x26c0b8[_0x8f04a3(0x102)]),_0x2b5214[_0x8f04a3(0x8d)]['to'][_0x8f04a3(0x17e)]=_0xfb4f0b['getMatrix']();}return{'m1Prime':_0x569dd2,'m2Prime':_0x2b5214};}},ls={'m1':_0x454b7a['id'],'m2':_0x454b7a['id'],'handler'(_0x5add5b,_0x484ee0){const _0x4f5bbc=_0x572182,_0x2690c2={'m1Prime':_0x5add5b,'m2Prime':_0x484ee0};if(_0x5add5b[_0x4f5bbc(0x8d)][_0x4f5bbc(0xdb)]!==_0x484ee0[_0x4f5bbc(0x8d)][_0x4f5bbc(0xdb)]||_0x5add5b['params'][_0x4f5bbc(0x20b)]!==_0x484ee0[_0x4f5bbc(0x8d)][_0x4f5bbc(0x20b)])return _0x2690c2;const _0x22c360=_0x570d2f[_0x4f5bbc(0xb4)](_0x5add5b),_0x264c98=_0x570d2f[_0x4f5bbc(0xb4)](_0x484ee0),_0x4d5615=_0x484ee0['params'][_0x4f5bbc(0x11d)],_0x512ab4=_0x484ee0[_0x4f5bbc(0x8d)]['targetRange'],_0x53d8c5=_0x5add5b[_0x4f5bbc(0x8d)]['sourceRange'],_0x2a3106=_0x5add5b[_0x4f5bbc(0x8d)]['targetRange'];if(_0x53d8c5[_0x4f5bbc(0x111)]>=_0x4d5615[_0x4f5bbc(0x102)]&&_0x53d8c5[_0x4f5bbc(0x102)]<=_0x4d5615[_0x4f5bbc(0x111)])return{'error':new Error(_0x4f5bbc(0xb7))};const _0x4cc55d=_0x2e8050({'start':_0x53d8c5[_0x4f5bbc(0x102)],'end':_0x53d8c5[_0x4f5bbc(0x111)]},{'start':_0x2a3106['startRow'],'end':_0x2a3106[_0x4f5bbc(0x111)]},{'start':_0x4d5615[_0x4f5bbc(0x102)],'end':_0x4d5615[_0x4f5bbc(0x111)]}),_0x5374cb=_0x2e8050({'start':_0x53d8c5[_0x4f5bbc(0x102)],'end':_0x53d8c5['endRow']},{'start':_0x2a3106[_0x4f5bbc(0x102)],'end':_0x2a3106[_0x4f5bbc(0x111)]},{'start':_0x512ab4[_0x4f5bbc(0x102)],'end':_0x512ab4['endRow']});_0x4cc55d&&_0x5374cb?(_0x264c98['params'][_0x4f5bbc(0x11d)]['startRow']+=_0x4cc55d[_0x4f5bbc(0xc3)],_0x264c98[_0x4f5bbc(0x8d)][_0x4f5bbc(0x11d)]['endRow']+=_0x4cc55d['step']+(_0x4cc55d[_0x4f5bbc(0xf6)]||0x0),_0x264c98[_0x4f5bbc(0x8d)][_0x4f5bbc(0x1d0)]['startRow']+=_0x5374cb['step'],_0x264c98['params'][_0x4f5bbc(0x1d0)]['endRow']+=_0x5374cb[_0x4f5bbc(0xc3)]+(_0x5374cb['length']||0x0)):_0x264c98['id']=_0x1a62da['id'];const _0x38115b=_0x2e8050({'start':_0x4d5615[_0x4f5bbc(0x102)],'end':_0x4d5615['endRow']},{'start':_0x512ab4[_0x4f5bbc(0x102)],'end':_0x512ab4[_0x4f5bbc(0x111)]},{'start':_0x53d8c5['startRow'],'end':_0x53d8c5[_0x4f5bbc(0x111)]}),_0x37377c=_0x2e8050({'start':_0x4d5615['startRow'],'end':_0x4d5615[_0x4f5bbc(0x111)]},{'start':_0x512ab4['startRow'],'end':_0x512ab4['endRow']},{'start':_0x2a3106['startRow'],'end':_0x2a3106[_0x4f5bbc(0x111)]});return _0x38115b&&_0x37377c?(_0x22c360[_0x4f5bbc(0x8d)][_0x4f5bbc(0x11d)][_0x4f5bbc(0x102)]+=_0x38115b[_0x4f5bbc(0xc3)],_0x22c360[_0x4f5bbc(0x8d)][_0x4f5bbc(0x11d)]['endRow']+=_0x38115b[_0x4f5bbc(0xc3)]+(_0x38115b['length']||0x0),_0x22c360[_0x4f5bbc(0x8d)][_0x4f5bbc(0x1d0)][_0x4f5bbc(0x102)]+=_0x37377c['step'],_0x22c360[_0x4f5bbc(0x8d)]['targetRange']['endRow']+=_0x37377c['step']+(_0x37377c[_0x4f5bbc(0xf6)]||0x0)):_0x22c360['id']=_0x1a62da['id'],{'m1Prime':_0x22c360,'m2Prime':_0x264c98};}},cs={'m1':_0x454b7a['id'],'m2':_0x3dcda7['id'],'handler'(_0xe0f377,_0x552e5a){const _0x20704a=_0x572182,_0x7bb41d={'m1Prime':_0xe0f377,'m2Prime':_0x552e5a};if(_0xe0f377[_0x20704a(0x8d)][_0x20704a(0xdb)]!==_0x552e5a[_0x20704a(0x8d)][_0x20704a(0xdb)]||_0xe0f377['params'][_0x20704a(0x20b)]!==_0x552e5a[_0x20704a(0x8d)][_0x20704a(0x20b)])return _0x7bb41d;const _0x39203e=_0x570d2f[_0x20704a(0xb4)](_0xe0f377),_0x1f89ac=_0x570d2f['deepClone'](_0x552e5a),{sourceRange:_0x210de7,targetRange:_0x47f001}=_0xe0f377[_0x20704a(0x8d)],_0x46b364={'start':_0x210de7[_0x20704a(0x102)],'end':_0x210de7[_0x20704a(0x111)]},_0x1728dd={'start':_0x47f001[_0x20704a(0x102)],'end':_0x47f001[_0x20704a(0x111)]};return _0x1f89ac[_0x20704a(0x8d)][_0x20704a(0xd1)]['some'](_0x233d0e=>{const _0xf03949=_0x20704a,_0xcb9091={'start':_0x233d0e[_0xf03949(0x102)],'end':_0x233d0e['endRow']},_0x3e9b8b=H(_0x46b364,_0xcb9091),_0x874876=H(_0x1728dd,_0xcb9091);if(_0x3e9b8b||_0x874876)return!0x0;const _0x2d4aeb=_0x2e8050(_0x46b364,_0x1728dd,_0xcb9091);return _0x2d4aeb['length']!==0x0?!0x0:(_0x233d0e[_0xf03949(0x102)]+=_0x2d4aeb[_0xf03949(0xc3)],_0x233d0e['endRow']+=_0x2d4aeb[_0xf03949(0xc3)],!0x1);})?{'error':new Error(_0x20704a(0xa2))}:{'m1Prime':_0x39203e,'m2Prime':_0x1f89ac};}},ps={'m1':_0x454b7a['id'],'m2':_0x3c47fd['id'],'handler'(_0x2737b3,_0x323d49){const _0x101ca8=_0x572182,_0x41dc90=_0x570d2f['deepClone'](_0x2737b3),_0x949b90=_0x570d2f['deepClone'](_0x323d49);if(_0x2737b3['params']['unitId']!==_0x323d49[_0x101ca8(0x8d)]['unitId']||_0x2737b3[_0x101ca8(0x8d)][_0x101ca8(0x20b)]!==_0x323d49['params']['subUnitId'])return{'m1Prime':_0x41dc90,'m2Prime':_0x949b90};const _0x30dba1=_0x949b90['params'][_0x101ca8(0xd1)]['reduce']((_0xd1c5f4,_0x503bc9)=>{const _0xb743a9=_0x101ca8,{sourceRange:_0x35e097,targetRange:_0x401d35}=_0x2737b3['params'],_0x363777={..._0x503bc9};return _0x35e097['endRow']<_0x363777[_0xb743a9(0x102)]&&_0x401d35[_0xb743a9(0x102)]>_0x363777['endRow']?(_0x363777[_0xb743a9(0x102)]-=_0x35e097[_0xb743a9(0x111)]-_0x35e097[_0xb743a9(0x102)]+0x1,_0x363777[_0xb743a9(0x111)]-=_0x35e097[_0xb743a9(0x111)]-_0x35e097['startRow']+0x1,K(_0x363777)&&_0xd1c5f4[_0xb743a9(0x1ca)](_0x363777)):_0x35e097[_0xb743a9(0x102)]>_0x363777[_0xb743a9(0x111)]&&_0x401d35[_0xb743a9(0x111)]<_0x363777[_0xb743a9(0x102)]?(_0x363777[_0xb743a9(0x102)]+=_0x35e097['endRow']-_0x35e097[_0xb743a9(0x102)]+0x1,_0x363777[_0xb743a9(0x111)]+=_0x35e097[_0xb743a9(0x111)]-_0x35e097[_0xb743a9(0x102)]+0x1,K(_0x363777)&&_0xd1c5f4[_0xb743a9(0x1ca)](_0x363777)):_0x5b3986[_0xb743a9(0x7a)](_0x363777,_0x35e097)||_0x5b3986[_0xb743a9(0x7a)](_0x363777,_0x401d35)||_0xd1c5f4[_0xb743a9(0x1ca)](_0x363777),_0xd1c5f4;},[]);return _0x949b90[_0x101ca8(0x8d)][_0x101ca8(0xd1)]=_0x30dba1,_0x949b90[_0x101ca8(0x8d)]['ranges'][_0x101ca8(0xf6)]===0x0&&(_0x949b90['id']=_0x1a62da['id']),{'m1Prime':_0x41dc90,'m2Prime':_0x949b90};}},fs={'m1':_0x454b7a['id'],'m2':_0x587c63['id'],'handler'(_0x48bde9,_0x2fe993){const _0x30411b=_0x572182;var _0x47495a;const _0x25632f={'m1Prime':_0x48bde9,'m2Prime':_0x2fe993};if(_0x48bde9[_0x30411b(0x8d)]['unitId']!==_0x2fe993['params'][_0x30411b(0xdb)]||_0x48bde9['params']['subUnitId']!==_0x2fe993[_0x30411b(0x8d)]['subUnitId'])return _0x25632f;const _0x10b456=Rs(_0x48bde9['params']['sourceRange'],_0x48bde9[_0x30411b(0x8d)]['targetRange']),_0x4c9d9a=_0x570d2f['deepClone'](_0x2fe993),{range:_0x3ed865}=_0x4c9d9a[_0x30411b(0x8d)],_0x3227de=Array['from']({'length':_0x3ed865['endRow']-_0x3ed865[_0x30411b(0x102)]+0x1},(_0x51b851,_0x105aa4)=>_0x105aa4+_0x3ed865[_0x30411b(0x102)]),_0x2d294d={},_0x55c7c8={},_0x170615=Math['min'](_0x48bde9['params'][_0x30411b(0x11d)][_0x30411b(0x102)],_0x48bde9[_0x30411b(0x8d)][_0x30411b(0x1d0)]['startRow'],..._0x3227de),_0x1ddca1=Math[_0x30411b(0xed)](_0x48bde9['params'][_0x30411b(0x11d)]['endRow'],_0x48bde9[_0x30411b(0x8d)]['targetRange'][_0x30411b(0x111)],..._0x3227de);for(let _0x43f25f=_0x170615;_0x43f25f<=_0x1ddca1;_0x43f25f++){const _0x44993a=_0x43f25f,_0x4038ec=(_0x47495a=_0x2fe993[_0x30411b(0x8d)][_0x30411b(0x13f)][_0x43f25f])!=null?_0x47495a:_0x44993a,_0x4a85e2=_0x10b456(_0x4038ec);_0x44993a!==_0x4a85e2&&(_0x2d294d[_0x44993a]=_0x4a85e2),_0x4038ec!==_0x4a85e2&&(_0x55c7c8[_0x4038ec]=_0x4a85e2);}_0x4c9d9a['params'][_0x30411b(0x13f)]=_0x2d294d;const _0x17bb8d=Object[_0x30411b(0xab)](_0x2d294d)['map'](Number);_0x3ed865[_0x30411b(0x102)]=Math[_0x30411b(0x126)](..._0x17bb8d),_0x3ed865[_0x30411b(0x111)]=Math[_0x30411b(0xed)](..._0x17bb8d);const _0x3bbc50=[_0x48bde9],_0x126d3e=Object[_0x30411b(0xab)](_0x55c7c8)[_0x30411b(0x1e0)](Number);return _0x126d3e['length']>0x0&&_0x3bbc50['unshift']({'id':_0x587c63['id'],'params':{'unitId':_0x48bde9[_0x30411b(0x8d)][_0x30411b(0xdb)],'subUnitId':_0x48bde9['params'][_0x30411b(0x20b)],'range':{'startColumn':_0x2fe993[_0x30411b(0x8d)][_0x30411b(0x19f)][_0x30411b(0x15a)],'endColumn':_0x2fe993[_0x30411b(0x8d)][_0x30411b(0x19f)][_0x30411b(0x9d)],'startRow':Math[_0x30411b(0x126)](..._0x126d3e),'endRow':Math[_0x30411b(0xed)](..._0x126d3e)},'order':_0x55c7c8}}),{'m1Prime':_0x3bbc50,'m2Prime':_0x4c9d9a};}},Rs=(_0x3ec04b,_0x2045f8)=>{const _0x180b87=_0x572182,_0x3d35db=_0x3ec04b[_0x180b87(0x111)]-_0x3ec04b[_0x180b87(0x102)]+0x1,_0x1ceac5=_0x3ec04b['startRow'],_0x5cf1d4=_0x2045f8['startRow'];return _0x34699f=>{const _0xb8e56f=_0x180b87;if(_0x1ceac5<=_0x5cf1d4){const _0x33dc3e=_0x2045f8[_0xb8e56f(0x102)]-_0x3ec04b['endRow']-0x1;if(_0x34699f>=_0x3ec04b[_0xb8e56f(0x102)]&&_0x34699f<=_0x3ec04b[_0xb8e56f(0x111)])return _0x34699f+_0x33dc3e;if(_0x34699f>_0x3ec04b['endRow']&&_0x34699f<_0x2045f8['startRow'])return _0x34699f-_0x3d35db;}if(_0x1ceac5>_0x5cf1d4){const _0x762d7c=_0x3ec04b[_0xb8e56f(0x102)]-_0x2045f8[_0xb8e56f(0x102)];if(_0x34699f>=_0x2045f8[_0xb8e56f(0x102)]&&_0x34699f<_0x3ec04b['startRow'])return _0x34699f+_0x3d35db;if(_0x34699f>=_0x3ec04b[_0xb8e56f(0x102)]&&_0x34699f<=_0x3ec04b[_0xb8e56f(0x111)])return _0x34699f-_0x762d7c;}return _0x34699f;};},hs={'m1':_0x454b7a['id'],'m2':_0x4075e['id'],'handler'(_0x1212c8,_0x2a3183){const _0x286599=_0x572182,_0xe478d8={'m1Prime':_0x1212c8,'m2Prime':_0x2a3183};if(_0x1212c8['params'][_0x286599(0xdb)]!==_0x2a3183['params'][_0x286599(0xdb)]||_0x1212c8[_0x286599(0x8d)]['subUnitId']!==_0x2a3183[_0x286599(0x8d)][_0x286599(0x20b)])return _0xe478d8;const _0x1469bf=[_0x570d2f[_0x286599(0xb4)](_0x1212c8)],_0x7dc9ba=_0x570d2f[_0x286599(0xb4)](_0x2a3183),{sourceRange:_0xbd93ee,targetRange:_0xcb1b06}=_0x1212c8[_0x286599(0x8d)],_0x563b66={'start':_0xbd93ee['startRow'],'end':_0xbd93ee['endRow']},_0x5c6094={'start':_0xcb1b06[_0x286599(0x102)],'end':_0xcb1b06[_0x286599(0x111)]},{values:_0x5ea4e8}=_0x7dc9ba[_0x286599(0x8d)],_0x32fced=[];let _0x17a666=!0x1;for(const _0x53690f in _0x5ea4e8){const _0x28de98=_0x5ea4e8[_0x53690f];if(_0x32fced[_0x286599(0x1ca)](..._0x28de98[_0x286599(0xd1)]),_0x28de98[_0x286599(0xd1)]['some'](_0x412f01=>{const _0x27b898=_0x286599,_0x39dc18={'start':_0x412f01[_0x27b898(0x102)],'end':_0x412f01['endRow']},_0x1b8a16=H(_0x563b66,_0x39dc18),_0x422835=H(_0x5c6094,_0x39dc18);if(_0x1b8a16||_0x422835)return!0x0;const _0x13b4dc=_0x2e8050(_0x563b66,_0x5c6094,_0x39dc18);return _0x13b4dc[_0x27b898(0xf6)]!==0x0?!0x0:(_0x13b4dc[_0x27b898(0xc3)]!==0x0&&(_0x17a666=!0x0),_0x412f01[_0x27b898(0x102)]+=_0x13b4dc[_0x27b898(0xc3)],_0x412f01[_0x27b898(0x111)]+=_0x13b4dc[_0x27b898(0xc3)],!0x1);}))return{'error':new Error(_0x286599(0x129))};}if(_0x17a666){const _0x353d6d={'id':_0x3dcda7['id'],'params':{'unitId':_0x2a3183[_0x286599(0x8d)][_0x286599(0xdb)],'subUnitId':_0x2a3183[_0x286599(0x8d)][_0x286599(0x20b)],'ranges':_0x32fced}};_0x1469bf[_0x286599(0x1ca)](_0x353d6d,_0x7dc9ba);}return{'m1Prime':_0x1469bf,'m2Prime':_0x7dc9ba};}},gs={'m1':_0x454b7a['id'],'m2':_0x15eb0a['id'],'handler'(_0x6ebcf5,_0x12dd65){const _0x254b13=_0x572182,_0x4465fb={'m1Prime':_0x6ebcf5,'m2Prime':_0x12dd65};if(_0x6ebcf5[_0x254b13(0x8d)][_0x254b13(0xdb)]!==_0x12dd65['params'][_0x254b13(0xdb)]||_0x6ebcf5['params'][_0x254b13(0x20b)]!==_0x12dd65[_0x254b13(0x8d)]['subUnitId'])return _0x4465fb;const _0x179ad8=[_0x570d2f['deepClone'](_0x6ebcf5)],_0x35af72=_0x570d2f[_0x254b13(0xb4)](_0x12dd65),_0x2d036c=new _0x1f7bb9(_0x35af72[_0x254b13(0x8d)][_0x254b13(0x208)]),{sourceRange:_0x4fc5db,targetRange:_0x262165}=_0x6ebcf5['params'],_0x32ba1a=_0x4fc5db[_0x254b13(0x102)],_0x238780=_0x4fc5db['endRow']-_0x4fc5db['startRow']+0x1,_0x30b3f8=_0x262165['startRow'];_0x2d036c['moveRows'](_0x32ba1a,_0x238780,_0x30b3f8);const _0x4da554=new _0x1f7bb9();let _0x979248=!0x1;if(_0x2d036c[_0x254b13(0x86)]((_0x5c3c42,_0x225246,_0x29c6af)=>{const _0x3c140e=_0x254b13;if(_0x29c6af&&_0x29c6af['f']){const _0x3060a6=_0x29c6af['f'];let _0x30dfbb=!0x1;const _0x3f32d0=dt(_0x6ebcf5[_0x3c140e(0x8d)]['unitId'],_0x6ebcf5[_0x3c140e(0x8d)]['subUnitId'],_0x3060a6,_0xf1c5f9=>{const _0x59f6c2=_0x3c140e,_0x4bd0bb=_0x2e8050({'start':_0x6ebcf5['params'][_0x59f6c2(0x11d)][_0x59f6c2(0x102)],'end':_0x6ebcf5['params']['sourceRange'][_0x59f6c2(0x111)]},{'start':_0x6ebcf5[_0x59f6c2(0x8d)][_0x59f6c2(0x1d0)][_0x59f6c2(0x102)],'end':_0x6ebcf5[_0x59f6c2(0x8d)]['targetRange'][_0x59f6c2(0x111)]},{'start':_0xf1c5f9[_0x59f6c2(0x102)],'end':_0xf1c5f9[_0x59f6c2(0x111)]});return(_0x4bd0bb['step']!==0x0||_0x4bd0bb[_0x59f6c2(0xf6)]!==0x0)&&(_0x30dfbb=!0x0,_0xf1c5f9[_0x59f6c2(0x102)]+=_0x4bd0bb['step'],_0xf1c5f9[_0x59f6c2(0x111)]+=_0x4bd0bb[_0x59f6c2(0xc3)]+_0x4bd0bb[_0x59f6c2(0xf6)]),_0xf1c5f9;});_0x30dfbb&&(_0x979248=!0x0,_0x29c6af['f']=_0x3f32d0,_0x4da554[_0x3c140e(0x134)](_0x5c3c42,_0x225246,{..._0x29c6af}));}}),_0x979248){const _0x368f5b={'id':_0x15eb0a['id'],'params':{'unitId':_0x12dd65[_0x254b13(0x8d)][_0x254b13(0xdb)],'subUnitId':_0x12dd65[_0x254b13(0x8d)][_0x254b13(0x20b)],'cellValue':_0x4da554[_0x254b13(0x16a)]()}};_0x179ad8['push'](_0x368f5b);}return _0x35af72[_0x254b13(0x8d)][_0x254b13(0x208)]=_0x2d036c['getMatrix'](),{'m1Prime':_0x179ad8,'m2Prime':_0x35af72};}},Is={'m1':_0x454b7a['id'],'m2':_0x36a513['id'],'handler'(_0x49b6ac,_0x3326d0){const _0x3d71a4=_0x572182,_0x5acd46={'m1Prime':_0x49b6ac,'m2Prime':_0x3326d0};if(_0x49b6ac[_0x3d71a4(0x8d)][_0x3d71a4(0xdb)]!==_0x3326d0[_0x3d71a4(0x8d)][_0x3d71a4(0xdb)]||_0x49b6ac[_0x3d71a4(0x8d)][_0x3d71a4(0x20b)]!==_0x3326d0[_0x3d71a4(0x8d)]['subUnitId'])return _0x5acd46;const _0x3c3210=_0x570d2f[_0x3d71a4(0xb4)](_0x49b6ac),_0x5ee90e=_0x570d2f['deepClone'](_0x3326d0),{rowData:_0x2a42fe}=_0x5ee90e['params'],{sourceRange:_0x111f3f,targetRange:_0x21c138}=_0x49b6ac['params'];return _0x3d006d(_0x111f3f['startRow'],_0x111f3f[_0x3d71a4(0x111)]-_0x111f3f[_0x3d71a4(0x102)]+0x1,_0x21c138[_0x3d71a4(0x102)],_0x2a42fe),{'m1Prime':_0x3c3210,'m2Prime':_0x5ee90e};}},ws={'m1':_0x454b7a['id'],'m2':_0xce09a7['id'],'handler'(_0x12d015,_0x39e469){const _0x23a763=_0x572182,_0xeae86d={'m1Prime':_0x12d015,'m2Prime':_0x39e469};if(_0x12d015[_0x23a763(0x8d)]['unitId']!==_0x39e469[_0x23a763(0x8d)]['unitId']||_0x12d015['params']['subUnitId']!==_0x39e469['params']['subUnitId'])return _0xeae86d;const _0x18c9e7=_0x570d2f[_0x23a763(0xb4)](_0x12d015),_0x141da3=_0x570d2f[_0x23a763(0xb4)](_0x39e469),{ranges:_0x12f87e}=_0x141da3['params'],{sourceRange:_0x43ac4a,targetRange:_0x1ac9c3}=_0x12d015['params'],_0x3f3fe2={'start':_0x43ac4a[_0x23a763(0x102)],'end':_0x43ac4a[_0x23a763(0x111)]},_0x1e56e6={'start':_0x1ac9c3[_0x23a763(0x102)],'end':_0x1ac9c3[_0x23a763(0x111)]};return _0x12f87e[_0x23a763(0xaf)](_0xc8db9d=>{const _0x41f478=_0x23a763,_0x2f874c={'start':_0xc8db9d[_0x41f478(0x102)],'end':_0xc8db9d[_0x41f478(0x111)]},_0x596372=H(_0x3f3fe2,_0x2f874c),_0x641b4d=H(_0x1e56e6,_0x2f874c);if(_0x596372||_0x641b4d)return!0x0;const _0x3741b6=_0x2e8050(_0x3f3fe2,_0x1e56e6,_0x2f874c);return _0x3741b6[_0x41f478(0xf6)]!==0x0?!0x0:(_0xc8db9d['startRow']+=_0x3741b6[_0x41f478(0xc3)],_0xc8db9d[_0x41f478(0x111)]+=_0x3741b6[_0x41f478(0xc3)],!0x1);})?{'error':new Error(_0x23a763(0x1d5))}:{'m1Prime':_0x18c9e7,'m2Prime':_0x141da3};}},Cs={'m1':_0x454b7a['id'],'m2':_0x2b245f['id'],'handler'(_0xa249fc,_0x4bdf11){const _0x52a630=_0x572182,_0x15268b={'m1Prime':_0xa249fc,'m2Prime':_0x4bdf11};if(_0xa249fc[_0x52a630(0x8d)][_0x52a630(0xdb)]!==_0x4bdf11['params'][_0x52a630(0xdb)]||_0xa249fc[_0x52a630(0x8d)][_0x52a630(0x20b)]!==_0x4bdf11['params'][_0x52a630(0x20b)])return _0x15268b;const _0xae1a5e=_0x570d2f[_0x52a630(0xb4)](_0xa249fc),_0x18aa79=_0x570d2f['deepClone'](_0x4bdf11),{ranges:_0x1c7d39}=_0x18aa79['params'],{sourceRange:_0x1e2380,targetRange:_0xcce51b}=_0xa249fc[_0x52a630(0x8d)],_0x4f979a={'start':_0x1e2380[_0x52a630(0x102)],'end':_0x1e2380[_0x52a630(0x111)]},_0x5e51cd={'start':_0xcce51b[_0x52a630(0x102)],'end':_0xcce51b['endRow']};return _0x1c7d39[_0x52a630(0xaf)](_0x52bce5=>{const _0x411ad8=_0x52a630,_0x3584ed={'start':_0x52bce5[_0x411ad8(0x102)],'end':_0x52bce5[_0x411ad8(0x111)]},_0x2090b8=H(_0x4f979a,_0x3584ed),_0xa32dd3=H(_0x5e51cd,_0x3584ed);if(_0x2090b8||_0xa32dd3)return!0x0;const _0x5525cc=_0x2e8050(_0x4f979a,_0x5e51cd,_0x3584ed);return _0x5525cc[_0x411ad8(0xf6)]!==0x0?!0x0:(_0x52bce5[_0x411ad8(0x102)]+=_0x5525cc[_0x411ad8(0xc3)],_0x52bce5[_0x411ad8(0x111)]+=_0x5525cc[_0x411ad8(0xc3)],!0x1);})?{'error':new Error('move\x20row\x20is\x20conflict\x20with\x20set\x20row\x20visible')}:{'m1Prime':_0xae1a5e,'m2Prime':_0x18aa79};}},Ps={'m1':_0x454b7a['id'],'m2':_0x23969e['id'],'handler'(_0x1ac7a2,_0x42e890){const _0x11858e=_0x572182,_0x39a621={'m1Prime':[],'m2Prime':[]};if(_0x1ac7a2[_0x11858e(0x8d)][_0x11858e(0xdb)]!==_0x42e890[_0x11858e(0x8d)][_0x11858e(0xdb)]||_0x1ac7a2[_0x11858e(0x8d)][_0x11858e(0x20b)]!==_0x42e890[_0x11858e(0x8d)][_0x11858e(0x20b)])return _0x39a621;const _0x5c959d=_0x570d2f['deepClone'](_0x42e890);let _0x45a6a2=!0x1;return _0x5c959d['params'][_0x11858e(0x138)][_0x11858e(0xc5)](_0x2db7e2=>{const _0x2e3b54=_0x11858e,{range:_0x56868d,primary:_0x3ed969}=_0x2db7e2,_0x339452=_0x2e8050({'start':_0x1ac7a2['params'][_0x2e3b54(0x11d)][_0x2e3b54(0x102)],'end':_0x1ac7a2[_0x2e3b54(0x8d)][_0x2e3b54(0x11d)]['endRow']},{'start':_0x1ac7a2['params'][_0x2e3b54(0x1d0)][_0x2e3b54(0x102)],'end':_0x1ac7a2[_0x2e3b54(0x8d)][_0x2e3b54(0x1d0)][_0x2e3b54(0x111)]},{'start':_0x56868d[_0x2e3b54(0x102)],'end':_0x56868d[_0x2e3b54(0x111)]});if(_0x339452['length']||_0x339452[_0x2e3b54(0xc3)]){if(_0x56868d[_0x2e3b54(0x102)]+=_0x339452[_0x2e3b54(0xc3)],_0x56868d[_0x2e3b54(0x111)]+=_0x339452[_0x2e3b54(0xc3)]+(_0x339452[_0x2e3b54(0xf6)]||0x0),_0x3ed969){const _0x126513=_0x2e8050({'start':_0x1ac7a2[_0x2e3b54(0x8d)][_0x2e3b54(0x11d)][_0x2e3b54(0x102)],'end':_0x1ac7a2[_0x2e3b54(0x8d)][_0x2e3b54(0x11d)][_0x2e3b54(0x111)]},{'start':_0x1ac7a2[_0x2e3b54(0x8d)][_0x2e3b54(0x1d0)][_0x2e3b54(0x102)],'end':_0x1ac7a2[_0x2e3b54(0x8d)][_0x2e3b54(0x1d0)][_0x2e3b54(0x111)]},{'start':_0x3ed969[_0x2e3b54(0x102)],'end':_0x3ed969[_0x2e3b54(0x111)]});(_0x126513[_0x2e3b54(0xf6)]||_0x126513['step'])&&(_0x3ed969[_0x2e3b54(0x102)]+=_0x126513[_0x2e3b54(0xc3)],_0x3ed969[_0x2e3b54(0x111)]+=_0x126513[_0x2e3b54(0xc3)],_0x3ed969[_0x2e3b54(0x1d9)]+=_0x126513[_0x2e3b54(0xc3)]);}_0x45a6a2=!0x0;}}),_0x45a6a2&&_0x39a621[_0x11858e(0xcf)][_0x11858e(0x1ca)](_0x5c959d),_0x39a621;}},Us={'m1':_0x454b7a['id'],'m2':_0x23aded['id'],'handler'(_0x33637e,_0x2ce293){const _0x2a62cf=_0x572182,_0x374935={'m1Prime':[_0x33637e],'m2Prime':[_0x2ce293]};if(_0x33637e[_0x2a62cf(0x8d)][_0x2a62cf(0xdb)]!==_0x2ce293[_0x2a62cf(0x8d)][_0x2a62cf(0xdb)]||_0x33637e[_0x2a62cf(0x8d)][_0x2a62cf(0x20b)]!==_0x2ce293[_0x2a62cf(0x8d)]['subUnitId'])return _0x374935;const _0x4bcc84=_0x570d2f[_0x2a62cf(0xb4)](_0x33637e),_0x3fbffe=_0x570d2f[_0x2a62cf(0xb4)](_0x2ce293),_0x3a1650=_0x2e8050({'start':_0x33637e[_0x2a62cf(0x8d)]['sourceRange']['startRow'],'end':_0x33637e[_0x2a62cf(0x8d)][_0x2a62cf(0x11d)]['endRow']},{'start':_0x33637e[_0x2a62cf(0x8d)][_0x2a62cf(0x1d0)]['startRow'],'end':_0x33637e['params'][_0x2a62cf(0x1d0)]['endRow']},{'start':_0x2ce293[_0x2a62cf(0x8d)]['range'][_0x2a62cf(0x102)],'end':_0x2ce293[_0x2a62cf(0x8d)][_0x2a62cf(0x19f)][_0x2a62cf(0x111)]});return _0x3fbffe[_0x2a62cf(0x8d)][_0x2a62cf(0x19f)]['startRow']+=_0x3a1650[_0x2a62cf(0xc3)],_0x3fbffe[_0x2a62cf(0x8d)]['range'][_0x2a62cf(0x111)]+=_0x3a1650[_0x2a62cf(0xc3)]+_0x3a1650[_0x2a62cf(0xf6)],{'m1Prime':[_0x3fbffe,_0x4bcc84],'m2Prime':[_0x3fbffe]};}},bs={'m1':_0x454b7a['id'],'m2':_0x5357b7['id'],'handler'(_0x53c839,_0x32c451){const _0x2a445e=_0x572182,_0x28e492={'m1Prime':_0x53c839,'m2Prime':_0x32c451};if(_0x53c839['params'][_0x2a445e(0xdb)]!==_0x32c451[_0x2a445e(0x8d)]['unitId']||_0x53c839['params'][_0x2a445e(0x20b)]!==_0x32c451[_0x2a445e(0x8d)][_0x2a445e(0x20b)])return _0x28e492;const _0x4ec690=_0x570d2f[_0x2a445e(0xb4)](_0x53c839),_0x4ec3ff=_0x570d2f[_0x2a445e(0xb4)](_0x32c451),{rowsAutoHeightInfo:_0x2cf90e}=_0x4ec3ff[_0x2a445e(0x8d)],{sourceRange:_0x491825,targetRange:_0x1eab2c}=_0x53c839[_0x2a445e(0x8d)],_0x203e42={'start':_0x491825[_0x2a445e(0x102)],'end':_0x491825[_0x2a445e(0x111)]},_0x18ae12={'start':_0x1eab2c[_0x2a445e(0x102)],'end':_0x1eab2c[_0x2a445e(0x111)]};return _0x2cf90e['some'](_0x1233e5=>{const _0x4fa069=_0x2a445e,_0x86edd4={'start':_0x1233e5[_0x4fa069(0x1cb)],'end':_0x1233e5[_0x4fa069(0x1cb)]},_0x570c10=_0x2e8050(_0x203e42,_0x18ae12,_0x86edd4);return _0x570c10['length']!==0x0?!0x0:(_0x1233e5[_0x4fa069(0x1cb)]+=_0x570c10['step'],!0x1);})?{'error':new Error(_0x2a445e(0x1cd))}:{'m1Prime':_0x4ec690,'m2Prime':_0x4ec3ff};}},Ms={'m1':_0x454b7a['id'],'m2':_0xdb3bc1['id'],'handler'(_0x5a08c6,_0x517253){const _0x5d3f0a=_0x572182,_0x3f5ab1={'m1Prime':_0x5a08c6,'m2Prime':_0x517253};if(_0x5a08c6[_0x5d3f0a(0x8d)][_0x5d3f0a(0xdb)]!==_0x517253[_0x5d3f0a(0x8d)][_0x5d3f0a(0xdb)]||_0x5a08c6[_0x5d3f0a(0x8d)][_0x5d3f0a(0x20b)]!==_0x517253['params']['subUnitId'])return _0x3f5ab1;const _0xd7d8ba=_0x570d2f[_0x5d3f0a(0xb4)](_0x5a08c6),_0x332bcd=_0x570d2f[_0x5d3f0a(0xb4)](_0x517253),{ranges:_0x585ede,rowHeight:_0x4f9701}=_0x332bcd['params'],{sourceRange:_0x5ca9ed,targetRange:_0x576b88}=_0x5a08c6[_0x5d3f0a(0x8d)],_0x4fba51={'start':_0x5ca9ed['startRow'],'end':_0x5ca9ed[_0x5d3f0a(0x111)]},_0x391abe={'start':_0x576b88[_0x5d3f0a(0x102)],'end':_0x576b88['endRow']};return _0x585ede[_0x5d3f0a(0xaf)](_0x3ff7eb=>{const _0x86c299=_0x5d3f0a,_0x4c72f7={'start':_0x3ff7eb[_0x86c299(0x102)],'end':_0x3ff7eb['endRow']},_0x741605=_0x2e8050(_0x4fba51,_0x391abe,_0x4c72f7);return _0x741605[_0x86c299(0xf6)]!==0x0?!0x0:(_0x3ff7eb['startRow']+=_0x741605[_0x86c299(0xc3)],_0x3ff7eb[_0x86c299(0x111)]+=_0x741605[_0x86c299(0xc3)],!0x1);})?{'error':new Error('move\x20row\x20is\x20conflict\x20with\x20set\x20worksheet\x20row\x20height')}:(typeof _0x4f9701!=_0x5d3f0a(0x1b5)&&_0x3d006d(_0x5ca9ed['startRow'],_0x5ca9ed[_0x5d3f0a(0x111)]-_0x5ca9ed[_0x5d3f0a(0x102)]+0x1,_0x576b88['startRow'],_0x4f9701),{'m1Prime':_0xd7d8ba,'m2Prime':_0x332bcd});}},vs={'m1':_0x454b7a['id'],'m2':_0x386b55['id'],'handler'(_0x241f16,_0x401f1a){const _0x4064e3=_0x572182,_0x4ee270={'m1Prime':_0x241f16,'m2Prime':_0x401f1a};if(_0x241f16['params']['unitId']!==_0x401f1a[_0x4064e3(0x8d)][_0x4064e3(0xdb)]||_0x241f16[_0x4064e3(0x8d)][_0x4064e3(0x20b)]!==_0x401f1a[_0x4064e3(0x8d)][_0x4064e3(0x20b)])return _0x4ee270;const _0x3a81de=_0x570d2f[_0x4064e3(0xb4)](_0x241f16),_0x16ad71=_0x570d2f[_0x4064e3(0xb4)](_0x401f1a),{ranges:_0x53d715,autoHeightInfo:_0x2b7d40}=_0x16ad71[_0x4064e3(0x8d)],{sourceRange:_0xc55892,targetRange:_0x31c2f5}=_0x241f16[_0x4064e3(0x8d)],_0x482564={'start':_0xc55892[_0x4064e3(0x102)],'end':_0xc55892['endRow']},_0x12afe1={'start':_0x31c2f5[_0x4064e3(0x102)],'end':_0x31c2f5['endRow']};return _0x53d715[_0x4064e3(0xaf)](_0x57ac05=>{const _0x332ec3=_0x4064e3,_0x15741a={'start':_0x57ac05[_0x332ec3(0x102)],'end':_0x57ac05[_0x332ec3(0x111)]},_0x367254=_0x2e8050(_0x482564,_0x12afe1,_0x15741a);return _0x367254[_0x332ec3(0xf6)]!==0x0?!0x0:(_0x57ac05[_0x332ec3(0x102)]+=_0x367254[_0x332ec3(0xc3)],_0x57ac05[_0x332ec3(0x111)]+=_0x367254[_0x332ec3(0xc3)],!0x1);})?{'error':new Error(_0x4064e3(0x203))}:(typeof _0x2b7d40!=_0x4064e3(0x1b5)&&_0x3d006d(_0xc55892[_0x4064e3(0x102)],_0xc55892['endRow']-_0xc55892[_0x4064e3(0x102)]+0x1,_0x31c2f5[_0x4064e3(0x102)],_0x2b7d40),{'m1Prime':_0x3a81de,'m2Prime':_0x16ad71});}},Es={'m1':_0x454b7a['id'],'m2':_0x2afd0c['id'],'handler':(_0x41eea6,_0x45dbaf)=>{const _0x45c63c=_0x572182,_0x1a95e2={'m1Prime':_0x41eea6,'m2Prime':_0x45dbaf};if(_0x41eea6[_0x45c63c(0x8d)]['unitId']!==_0x45dbaf['params'][_0x45c63c(0xdb)]||_0x41eea6[_0x45c63c(0x8d)][_0x45c63c(0x20b)]!==_0x45dbaf[_0x45c63c(0x8d)][_0x45c63c(0x20b)])return _0x1a95e2;const _0x1934cc={'id':_0x6ac3e3['id'],'params':{'unitId':_0x41eea6[_0x45c63c(0x8d)][_0x45c63c(0xdb)],'subUnitId':_0x41eea6[_0x45c63c(0x8d)]['subUnitId'],'fromRange':_0x41eea6[_0x45c63c(0x8d)][_0x45c63c(0x11d)],'toRange':_0x41eea6[_0x45c63c(0x8d)][_0x45c63c(0x1d0)]}},_0x2fd3c7=wt(_0x45dbaf,_0x1934cc);return{'m1Prime':[_0x41eea6,..._0x2fd3c7],'m2Prime':[_0x45dbaf,..._0x2fd3c7]};}},Ss={'m1':_0x454b7a['id'],'m2':_0x4e1baf['id'],'handler':(_0x529a4a,_0x3b582b)=>{const _0x9d390=_0x572182,_0x1dbd5f={'m1Prime':_0x529a4a,'m2Prime':_0x3b582b};if(_0x529a4a[_0x9d390(0x8d)][_0x9d390(0xdb)]!==_0x3b582b[_0x9d390(0x8d)][_0x9d390(0xdb)]||_0x3b582b[_0x9d390(0x8d)][_0x9d390(0x20b)]!==_0x529a4a[_0x9d390(0x8d)][_0x9d390(0x20b)])return _0x1dbd5f;const _0x372c7b={'id':_0x6ac3e3['id'],'params':{'fromRange':_0x529a4a[_0x9d390(0x8d)]['sourceRange'],'toRange':_0x529a4a[_0x9d390(0x8d)]['targetRange']}},_0x156ca7=Ct(_0x3b582b,_0x372c7b);return{'m1Prime':[_0x529a4a,..._0x156ca7],'m2Prime':[_0x3b582b,..._0x156ca7]};}},Ws={'m1':_0xe5c4bd['id'],'m2':_0x1b398d['id'],'handler':(_0xc9d97b,_0x585032)=>{const _0x4fd764=_0x572182,_0x3cf6eb={'m1Prime':_0xc9d97b,'m2Prime':_0x585032};if(_0xc9d97b['params']['unitId']!==_0x585032[_0x4fd764(0x8d)][_0x4fd764(0xdb)]||_0xc9d97b[_0x4fd764(0x8d)]['subUnitId']!==_0x585032[_0x4fd764(0x8d)][_0x4fd764(0x20b)])return _0x3cf6eb;const _0x16e5c4={'id':_0xf0fff1['id'],'params':{'unitId':_0xc9d97b[_0x4fd764(0x8d)][_0x4fd764(0xdb)],'subUnitId':_0xc9d97b[_0x4fd764(0x8d)][_0x4fd764(0x20b)],'range':_0xc9d97b[_0x4fd764(0x8d)]['range']}},_0x22b677=It(_0x585032,_0x16e5c4);return{'m1Prime':[_0xc9d97b,..._0x22b677],'m2Prime':[_0x585032,..._0x22b677]};}},Vs={'m1':_0xe5c4bd['id'],'m2':_0x3bedd8['id'],'handler'(_0x3aa00b,_0x52d95d){const _0x2da310=_0x572182,_0xc87f6f={'m1Prime':_0x3aa00b,'m2Prime':_0x52d95d};if(_0x3aa00b['params'][_0x2da310(0xdb)]!==_0x52d95d['params'][_0x2da310(0xdb)]||_0x3aa00b[_0x2da310(0x8d)][_0x2da310(0x20b)]!==_0x52d95d[_0x2da310(0x8d)][_0x2da310(0x20b)])return _0xc87f6f;const _0x20399d={'id':_0xf0fff1['id'],'params':{'range':_0x3aa00b['params'][_0x2da310(0x19f)]}},_0x4dc56f=Tt(_0x52d95d,_0x20399d);return{'m1Prime':[_0x3aa00b,..._0x4dc56f],'m2Prime':[_0x52d95d,..._0x4dc56f]};}},_s={'m1':_0xe5c4bd['id'],'m2':_0x4b0a3e['id'],'handler'(_0x6ae3fb,_0x529a98){const _0x10ccf0=_0x572182,_0x2ae25d=ir[_0x10ccf0(0xcd)](_0x529a98,_0x6ae3fb);return at(_0x2ae25d)?{'m1Prime':_0x2ae25d[_0x10ccf0(0xcf)],'m2Prime':_0x2ae25d[_0x10ccf0(0x119)]}:_0x2ae25d;}},Os={'m1':_0xe5c4bd['id'],'m2':_0x31c10b['id'],'handler'(_0xc008b4,_0x535220){const _0x1b7821=_0x572182,_0x9daf66={'m1Prime':_0xc008b4,'m2Prime':_0x535220};if(_0xc008b4[_0x1b7821(0x8d)][_0x1b7821(0xdb)]!==_0x535220[_0x1b7821(0x8d)][_0x1b7821(0xdb)]||_0xc008b4[_0x1b7821(0x8d)][_0x1b7821(0x20b)]!==_0x535220[_0x1b7821(0x8d)][_0x1b7821(0x20b)])return _0x9daf66;const _0x18cc6c=_0x570d2f[_0x1b7821(0xb4)](_0xc008b4),_0x168729=_0x570d2f[_0x1b7821(0xb4)](_0x535220);if(_0xc008b4[_0x1b7821(0x8d)][_0x1b7821(0x19f)][_0x1b7821(0x15a)]<=_0x535220[_0x1b7821(0x8d)][_0x1b7821(0x11d)][_0x1b7821(0x9d)]&&_0xc008b4['params'][_0x1b7821(0x19f)][_0x1b7821(0x9d)]>=_0x535220[_0x1b7821(0x8d)][_0x1b7821(0x11d)][_0x1b7821(0x15a)]||_0xc008b4[_0x1b7821(0x8d)][_0x1b7821(0x19f)][_0x1b7821(0x15a)]<=_0x535220[_0x1b7821(0x8d)]['targetRange'][_0x1b7821(0x9d)]&&_0xc008b4[_0x1b7821(0x8d)][_0x1b7821(0x19f)]['endColumn']>=_0x535220[_0x1b7821(0x8d)][_0x1b7821(0x1d0)][_0x1b7821(0x15a)])return{'error':new Error(_0x1b7821(0xc9))};const _0x4cb1db=_0x180da6(h(_0xc008b4[_0x1b7821(0x8d)][_0x1b7821(0x19f)]),h(_0x535220[_0x1b7821(0x8d)]['sourceRange'])),_0x52c1cc=_0x180da6(h(_0xc008b4[_0x1b7821(0x8d)][_0x1b7821(0x19f)]),h(_0x535220[_0x1b7821(0x8d)][_0x1b7821(0x1d0)]));_0x4cb1db&&_0x52c1cc?(_0x168729[_0x1b7821(0x8d)][_0x1b7821(0x11d)]['startColumn']+=_0x4cb1db[_0x1b7821(0xc3)],_0x168729[_0x1b7821(0x8d)][_0x1b7821(0x11d)][_0x1b7821(0x9d)]+=_0x4cb1db[_0x1b7821(0xc3)]+(_0x4cb1db[_0x1b7821(0xf6)]||0x0),_0x168729['params'][_0x1b7821(0x1d0)][_0x1b7821(0x15a)]+=_0x52c1cc[_0x1b7821(0xc3)],_0x168729[_0x1b7821(0x8d)][_0x1b7821(0x1d0)][_0x1b7821(0x9d)]+=_0x52c1cc['step']+(_0x52c1cc[_0x1b7821(0xf6)]||0x0)):_0x168729['id']=_0x1a62da['id'];const _0x335e8a=_0x2e8050({'start':_0x535220[_0x1b7821(0x8d)][_0x1b7821(0x11d)]['startColumn'],'end':_0x535220[_0x1b7821(0x8d)][_0x1b7821(0x11d)][_0x1b7821(0x9d)]},{'start':_0x535220[_0x1b7821(0x8d)][_0x1b7821(0x1d0)][_0x1b7821(0x15a)],'end':_0x535220[_0x1b7821(0x8d)][_0x1b7821(0x1d0)][_0x1b7821(0x9d)]},{'start':_0xc008b4['params'][_0x1b7821(0x19f)]['startColumn'],'end':_0xc008b4[_0x1b7821(0x8d)][_0x1b7821(0x19f)]['endColumn']});if(_0x335e8a){const {step:_0x123f13,length:_0x4ea972}=_0x335e8a;_0x18cc6c['params']['range'][_0x1b7821(0x15a)]+=_0x123f13,_0x18cc6c[_0x1b7821(0x8d)][_0x1b7821(0x19f)][_0x1b7821(0x9d)]+=_0x123f13+(_0x4ea972||0x0);}else _0x18cc6c[_0x1b7821(0x8d)][_0x1b7821(0x19f)][_0x1b7821(0x15a)]=0x0,_0x18cc6c['params'][_0x1b7821(0x19f)]['endColumn']=-0x1;return{'m1Prime':_0x18cc6c,'m2Prime':_0x168729};}},ys={'m1':_0xe5c4bd['id'],'m2':_0x43f1cd['id'],'handler'(_0x42fb91,_0x3729d1){const _0x371f3a=_0x572182,_0x137b90={'m1Prime':_0x42fb91,'m2Prime':_0x3729d1};if(_0x42fb91[_0x371f3a(0x8d)][_0x371f3a(0xdb)]!==_0x3729d1[_0x371f3a(0x8d)][_0x371f3a(0xdb)]||_0x42fb91['params'][_0x371f3a(0x20b)]!==_0x3729d1[_0x371f3a(0x8d)][_0x371f3a(0x1b0)][_0x371f3a(0x20b)]&&_0x42fb91[_0x371f3a(0x8d)]['subUnitId']!==_0x3729d1[_0x371f3a(0x8d)]['to']['subUnitId'])return _0x137b90;const _0x33192d=_0x570d2f[_0x371f3a(0xb4)](_0x42fb91),_0x4a4cc8=_0x570d2f[_0x371f3a(0xb4)](_0x3729d1),{startColumn:_0x55c3a4,endColumn:_0x231457}=_0x42fb91[_0x371f3a(0x8d)][_0x371f3a(0x19f)];if(_0x42fb91[_0x371f3a(0x8d)][_0x371f3a(0x20b)]===_0x3729d1['params'][_0x371f3a(0x1b0)][_0x371f3a(0x20b)]){const _0x5a3675=new _0x1f7bb9(_0x4a4cc8[_0x371f3a(0x8d)][_0x371f3a(0x1b0)][_0x371f3a(0x17e)]),_0x4a7ad8=_0x5a3675['getDataRange'](),{startColumn:_0x1101f1,endColumn:_0x23d996}=_0x4a7ad8;if(_0x1101f1<=_0x231457&&_0x23d996>=_0x55c3a4)return{'error':new Error('Remove-cols\x20has\x20conflicts\x20with\x20move-range')};_0x231457<_0x1101f1&&_0x5a3675[_0x371f3a(0x16b)](_0x55c3a4,_0x231457-_0x55c3a4+0x1),_0x4a4cc8[_0x371f3a(0x8d)]['from'][_0x371f3a(0x17e)]=_0x5a3675[_0x371f3a(0x16a)]();}if(_0x42fb91[_0x371f3a(0x8d)][_0x371f3a(0x20b)]===_0x3729d1[_0x371f3a(0x8d)]['to'][_0x371f3a(0x20b)]){const _0x370c14=new _0x1f7bb9(_0x4a4cc8[_0x371f3a(0x8d)]['to']['value']),_0x4160c4=_0x370c14[_0x371f3a(0x182)](),{startColumn:_0x2805ab,endColumn:_0x16fa17}=_0x4160c4;if(_0x2805ab<=_0x231457&&_0x16fa17>=_0x55c3a4)return{'error':new Error(_0x371f3a(0x165))};_0x231457<_0x2805ab&&_0x370c14[_0x371f3a(0x16b)](_0x55c3a4,_0x231457-_0x55c3a4+0x1),_0x4a4cc8[_0x371f3a(0x8d)]['to'][_0x371f3a(0x17e)]=_0x370c14[_0x371f3a(0x16a)]();}return{'m1Prime':_0x33192d,'m2Prime':_0x4a4cc8};}},Ns={'m1':_0xe5c4bd['id'],'m2':_0xe5c4bd['id'],'handler'(_0xef20be,_0x1defa0){const _0x4c99c6=_0x572182,_0x2217f3={'m1Prime':_0xef20be,'m2Prime':_0x1defa0};if(_0xef20be[_0x4c99c6(0x8d)][_0x4c99c6(0xdb)]!==_0x1defa0[_0x4c99c6(0x8d)][_0x4c99c6(0xdb)]||_0xef20be[_0x4c99c6(0x8d)][_0x4c99c6(0x20b)]!==_0x1defa0[_0x4c99c6(0x8d)][_0x4c99c6(0x20b)])return _0x2217f3;const _0x1e12d2=_0x570d2f[_0x4c99c6(0xb4)](_0xef20be),_0x45bb32=_0x570d2f['deepClone'](_0x1defa0),_0xd158b8=_0x180da6(_0xef20be[_0x4c99c6(0x8d)]['range'],_0x1defa0['params'][_0x4c99c6(0x19f)]);if(_0xd158b8){const {step:_0x15b8d5,length:_0x29c91f}=_0xd158b8;_0x45bb32[_0x4c99c6(0x8d)][_0x4c99c6(0x19f)][_0x4c99c6(0x15a)]+=_0x15b8d5,_0x45bb32[_0x4c99c6(0x8d)][_0x4c99c6(0x19f)][_0x4c99c6(0x9d)]+=_0x15b8d5+(_0x29c91f||0x0);}else _0x45bb32['id']=_0x1a62da['id'];const _0x4f05a1=_0x180da6(_0x1defa0[_0x4c99c6(0x8d)][_0x4c99c6(0x19f)],_0xef20be[_0x4c99c6(0x8d)][_0x4c99c6(0x19f)]);if(_0x4f05a1){const {step:_0x38e76,length:_0x2f7e1f}=_0x4f05a1;_0x1e12d2['params'][_0x4c99c6(0x19f)][_0x4c99c6(0x15a)]+=_0x38e76,_0x1e12d2[_0x4c99c6(0x8d)][_0x4c99c6(0x19f)][_0x4c99c6(0x9d)]+=_0x38e76+(_0x2f7e1f||0x0);}else _0x1e12d2['id']=_0x1a62da['id'];return{'m1Prime':_0x1e12d2,'m2Prime':_0x45bb32};}},Ds={'m1':_0xe5c4bd['id'],'m2':_0x3dcda7['id'],'handler'(_0x29dd00,_0x147991){const _0x59e4db=_0x572182,_0x3eee08={'m1Prime':_0x29dd00,'m2Prime':_0x147991};if(_0x29dd00[_0x59e4db(0x8d)]['unitId']!==_0x147991[_0x59e4db(0x8d)][_0x59e4db(0xdb)]||_0x29dd00['params']['subUnitId']!==_0x147991[_0x59e4db(0x8d)][_0x59e4db(0x20b)])return _0x3eee08;const _0x2c7f54=_0x570d2f[_0x59e4db(0xb4)](_0x29dd00),_0x1e7882=_0x570d2f[_0x59e4db(0xb4)](_0x147991),{ranges:_0x1ef4ad}=_0x1e7882[_0x59e4db(0x8d)];return _0x1ef4ad[_0x59e4db(0xaf)](_0x457905=>{const _0x59d271=_0x59e4db,_0x156769=_0x180da6(h(_0x29dd00[_0x59d271(0x8d)][_0x59d271(0x19f)]),h(_0x457905));return _0x156769===null||_0x156769[_0x59d271(0xf6)]!==0x0?!0x0:(_0x457905[_0x59d271(0x15a)]+=_0x156769['step'],_0x457905[_0x59d271(0x9d)]+=_0x156769[_0x59d271(0xc3)],!0x1);})?{'error':new Error(_0x59e4db(0x89))}:{'m1Prime':_0x2c7f54,'m2Prime':_0x1e7882};}},As={'m1':_0xe5c4bd['id'],'m2':_0x3c47fd['id'],'handler'(_0x3bd40d,_0x166071){const _0x14eb42=_0x572182,_0x3f64e5=_0x570d2f[_0x14eb42(0xb4)](_0x3bd40d),_0xdb6afc=_0x570d2f['deepClone'](_0x166071);if(_0x3bd40d[_0x14eb42(0x8d)][_0x14eb42(0xdb)]!==_0x166071[_0x14eb42(0x8d)][_0x14eb42(0xdb)]||_0x3bd40d[_0x14eb42(0x8d)][_0x14eb42(0x20b)]!==_0x166071[_0x14eb42(0x8d)][_0x14eb42(0x20b)])return{'m1Prime':_0x3f64e5,'m2Prime':_0xdb6afc};const _0x2b751c=_0xdb6afc[_0x14eb42(0x8d)][_0x14eb42(0xd1)]['reduce']((_0x476945,_0x1a6b0a)=>{const _0x553ad9=_0x14eb42,_0x1929d3=_0x3f64e5[_0x553ad9(0x8d)][_0x553ad9(0x19f)],_0x368b3f=_0x1929d3[_0x553ad9(0x9d)]-_0x1929d3[_0x553ad9(0x15a)]+0x1;let _0x37576d={..._0x1a6b0a};return _0x1929d3['startColumn']>_0x1a6b0a['endColumn']?_0x37576d={..._0x1a6b0a}:_0x1929d3['startColumn']>=_0x1a6b0a[_0x553ad9(0x15a)]&&_0x1929d3[_0x553ad9(0x15a)]<=_0x1a6b0a[_0x553ad9(0x9d)]&&_0x1929d3[_0x553ad9(0x9d)]>_0x1a6b0a['endColumn']?(_0x37576d['endColumn']=_0x1929d3[_0x553ad9(0x15a)]-0x1,_0x1929d3['startColumn']===_0x1a6b0a[_0x553ad9(0x15a)]&&(_0x37576d=null)):_0x1929d3[_0x553ad9(0x15a)]>_0x1a6b0a[_0x553ad9(0x15a)]&&_0x1929d3[_0x553ad9(0x9d)]<_0x1a6b0a[_0x553ad9(0x9d)]?_0x37576d[_0x553ad9(0x9d)]=_0x1a6b0a['endColumn']-_0x368b3f:_0x1929d3[_0x553ad9(0x15a)]<_0x1a6b0a[_0x553ad9(0x15a)]&&_0x1929d3[_0x553ad9(0x9d)]>=_0x1a6b0a[_0x553ad9(0x15a)]&&_0x1929d3[_0x553ad9(0x9d)]<=_0x1a6b0a['endColumn']?(_0x37576d['startColumn']=_0x1929d3['startColumn'],_0x37576d[_0x553ad9(0x9d)]=_0x1a6b0a[_0x553ad9(0x9d)]-_0x368b3f,_0x1929d3[_0x553ad9(0x9d)]===_0x1a6b0a['endColumn']&&(_0x37576d=null)):_0x1929d3['startColumn']<=_0x1a6b0a['startColumn']&&_0x1929d3[_0x553ad9(0x9d)]>=_0x1a6b0a[_0x553ad9(0x9d)]?_0x37576d=null:_0x1929d3[_0x553ad9(0x9d)]<_0x1a6b0a[_0x553ad9(0x15a)]&&(_0x37576d[_0x553ad9(0x15a)]=_0x1a6b0a[_0x553ad9(0x15a)]-_0x368b3f,_0x37576d[_0x553ad9(0x9d)]=_0x1a6b0a[_0x553ad9(0x9d)]-_0x368b3f),_0x37576d&&!(_0x37576d[_0x553ad9(0x102)]===_0x37576d['endRow']&&_0x37576d[_0x553ad9(0x15a)]===_0x37576d['endColumn'])&&_0x476945[_0x553ad9(0x1ca)](_0x37576d),_0x476945;},[]);return _0xdb6afc[_0x14eb42(0x8d)][_0x14eb42(0xd1)]=_0x2b751c,{'m1Prime':_0x3f64e5,'m2Prime':_0xdb6afc};}},Ts={'m1':_0xe5c4bd['id'],'m2':_0x587c63['id'],'handler'(_0x2f3032,_0x56586f){const _0x4d5c15=_0x572182,_0xd50507={'m1Prime':_0x2f3032,'m2Prime':_0x56586f};if(_0x2f3032[_0x4d5c15(0x8d)]['unitId']!==_0x56586f[_0x4d5c15(0x8d)][_0x4d5c15(0xdb)]||_0x2f3032[_0x4d5c15(0x8d)][_0x4d5c15(0x20b)]!==_0x56586f[_0x4d5c15(0x8d)]['subUnitId'])return _0xd50507;const _0x17cd4e=_0x180da6(h(_0x2f3032['params'][_0x4d5c15(0x19f)]),h(_0x56586f['params'][_0x4d5c15(0x19f)]));if(!_0x17cd4e)return{'m1Prime':_0x2f3032,'m2Prime':[]};const _0x37bbc4=_0x570d2f[_0x4d5c15(0xb4)](_0x56586f);return _0x37bbc4['params'][_0x4d5c15(0x19f)][_0x4d5c15(0x15a)]+=_0x17cd4e['step'],_0x37bbc4[_0x4d5c15(0x8d)][_0x4d5c15(0x19f)]['endColumn']+=_0x17cd4e['step']+(_0x17cd4e[_0x4d5c15(0xf6)]||0x0),{'m1Prime':_0x2f3032,'m2Prime':_0x37bbc4};}},Ls={'m1':_0xe5c4bd['id'],'m2':_0x35fae0['id'],'handler'(_0x53478c,_0x3e3ad2){const _0x4efb90=_0x572182,_0x525b11={'m1Prime':_0x53478c,'m2Prime':_0x3e3ad2};if(_0x53478c[_0x4efb90(0x8d)]['unitId']!==_0x3e3ad2['params']['unitId']||_0x53478c[_0x4efb90(0x8d)][_0x4efb90(0x20b)]!==_0x3e3ad2[_0x4efb90(0x8d)]['subUnitId'])return _0x525b11;const _0x5b20eb=_0x570d2f[_0x4efb90(0xb4)](_0x53478c),_0x3bf07b=_0x570d2f[_0x4efb90(0xb4)](_0x3e3ad2),{columnData:_0x49a9bd}=_0x3bf07b[_0x4efb90(0x8d)];return _0x4aa10e(_0x53478c[_0x4efb90(0x8d)][_0x4efb90(0x19f)]['startColumn'],_0x53478c[_0x4efb90(0x8d)][_0x4efb90(0x19f)][_0x4efb90(0x9d)]-_0x53478c[_0x4efb90(0x8d)][_0x4efb90(0x19f)][_0x4efb90(0x15a)]+0x1,_0x49a9bd),{'m1Prime':_0x5b20eb,'m2Prime':_0x3bf07b};}},ks={'m1':_0xe5c4bd['id'],'m2':_0x519e99['id'],'handler'(_0x3c345e,_0x2c04f6){const _0x233571=_0x572182,_0x540073={'m1Prime':_0x3c345e,'m2Prime':_0x2c04f6};if(_0x3c345e['params']['unitId']!==_0x2c04f6[_0x233571(0x8d)][_0x233571(0xdb)]||_0x3c345e[_0x233571(0x8d)][_0x233571(0x20b)]!==_0x2c04f6['params'][_0x233571(0x20b)])return _0x540073;const _0x2378ec=_0x570d2f[_0x233571(0xb4)](_0x3c345e),_0x4f57bb=_0x570d2f[_0x233571(0xb4)](_0x2c04f6),{ranges:_0x986b4f}=_0x4f57bb['params'];return _0x986b4f[_0x233571(0xc5)](_0x197d04=>{const _0x16d7d1=_0x233571,_0x2a7f77=_0x180da6(h(_0x3c345e[_0x16d7d1(0x8d)][_0x16d7d1(0x19f)]),_0x197d04);_0x2a7f77==null?_0x4f57bb['id']=_0x1a62da['id']:(_0x197d04[_0x16d7d1(0x15a)]+=_0x2a7f77[_0x16d7d1(0xc3)],_0x197d04[_0x16d7d1(0x9d)]+=_0x2a7f77[_0x16d7d1(0xc3)]+_0x2a7f77[_0x16d7d1(0xf6)]);}),{'m1Prime':_0x2378ec,'m2Prime':_0x4f57bb};}},xs={'m1':_0xe5c4bd['id'],'m2':_0x20806c['id'],'handler'(_0x3ebda8,_0x29f4ab){const _0xf0cdc3=_0x572182,_0x32bef4={'m1Prime':_0x3ebda8,'m2Prime':_0x29f4ab};if(_0x3ebda8[_0xf0cdc3(0x8d)][_0xf0cdc3(0xdb)]!==_0x29f4ab[_0xf0cdc3(0x8d)][_0xf0cdc3(0xdb)]||_0x3ebda8[_0xf0cdc3(0x8d)][_0xf0cdc3(0x20b)]!==_0x29f4ab['params'][_0xf0cdc3(0x20b)])return _0x32bef4;const _0x2a855d=_0x570d2f[_0xf0cdc3(0xb4)](_0x3ebda8),_0x48bd93=_0x570d2f[_0xf0cdc3(0xb4)](_0x29f4ab),{ranges:_0x385345}=_0x48bd93[_0xf0cdc3(0x8d)];return _0x385345[_0xf0cdc3(0xc5)](_0x1a5b6d=>{const _0x3a0bbf=_0xf0cdc3,_0x583875=_0x180da6(h(_0x3ebda8[_0x3a0bbf(0x8d)][_0x3a0bbf(0x19f)]),_0x1a5b6d);_0x583875==null?_0x48bd93['id']=_0x1a62da['id']:(_0x1a5b6d[_0x3a0bbf(0x15a)]+=_0x583875['step'],_0x1a5b6d[_0x3a0bbf(0x9d)]+=_0x583875[_0x3a0bbf(0xc3)]+_0x583875[_0x3a0bbf(0xf6)]);}),{'m1Prime':_0x2a855d,'m2Prime':_0x48bd93};}},Hs={'m1':_0xe5c4bd['id'],'m2':_0x4075e['id'],'handler'(_0x1868cf,_0x3eaec0){const _0x39a65c=_0x572182,_0x32eb10={'m1Prime':_0x1868cf,'m2Prime':_0x3eaec0};if(_0x1868cf[_0x39a65c(0x8d)][_0x39a65c(0xdb)]!==_0x3eaec0['params']['unitId']||_0x1868cf[_0x39a65c(0x8d)][_0x39a65c(0x20b)]!==_0x3eaec0[_0x39a65c(0x8d)][_0x39a65c(0x20b)])return _0x32eb10;const _0x5d7975=[_0x570d2f[_0x39a65c(0xb4)](_0x1868cf)],_0x592316=_0x570d2f[_0x39a65c(0xb4)](_0x3eaec0),{values:_0x2d26d9}=_0x592316[_0x39a65c(0x8d)],_0x4eaf50=[];let _0x5a18d3=!0x1;for(const _0x427a08 in _0x2d26d9){const _0x24c5af=_0x2d26d9[_0x427a08];if(_0x4eaf50[_0x39a65c(0x1ca)](..._0x24c5af[_0x39a65c(0xd1)]),_0x24c5af[_0x39a65c(0xd1)]['some'](_0x51dcca=>{const _0xaa837c=_0x39a65c,_0x54fefa=_0x180da6(h(_0x1868cf['params'][_0xaa837c(0x19f)]),h(_0x51dcca));return _0x54fefa==null||_0x54fefa[_0xaa837c(0xf6)]!==0x0?!0x0:(_0x54fefa[_0xaa837c(0xc3)]!==0x0&&(_0x5a18d3=!0x0),_0x51dcca[_0xaa837c(0x15a)]+=_0x54fefa[_0xaa837c(0xc3)],_0x51dcca['endColumn']+=_0x54fefa[_0xaa837c(0xc3)],!0x1);}))return{'error':new Error(_0x39a65c(0x1f9))};}if(_0x5a18d3){const _0x5cb6b2={'id':_0x3dcda7['id'],'params':{'unitId':_0x3eaec0[_0x39a65c(0x8d)][_0x39a65c(0xdb)],'subUnitId':_0x3eaec0[_0x39a65c(0x8d)]['subUnitId'],'ranges':_0x4eaf50}};_0x5d7975[_0x39a65c(0x1ca)](_0x5cb6b2,_0x592316);}return{'m1Prime':_0x5d7975,'m2Prime':_0x592316};}},Fs={'m1':_0xe5c4bd['id'],'m2':_0x15eb0a['id'],'handler'(_0x1b1def,_0xe47e11){const _0x174820=_0x572182,_0x15bed1={'m1Prime':_0x1b1def,'m2Prime':_0xe47e11};if(_0x1b1def[_0x174820(0x8d)][_0x174820(0xdb)]!==_0xe47e11[_0x174820(0x8d)][_0x174820(0xdb)]||_0x1b1def[_0x174820(0x8d)]['subUnitId']!==_0xe47e11[_0x174820(0x8d)]['subUnitId'])return _0x15bed1;const _0x3839da=[_0x570d2f[_0x174820(0xb4)](_0x1b1def)],_0x4efd1f=_0x570d2f[_0x174820(0xb4)](_0xe47e11),_0x239ea3=new _0x1f7bb9(_0x4efd1f[_0x174820(0x8d)]['cellValue']),_0x5be25a=_0x239ea3[_0x174820(0x182)](),_0x19208c=_0x1b1def[_0x174820(0x8d)]['range'],_0x52e3b6=_0x19208c[_0x174820(0x9d)]-_0x19208c['startColumn']+0x1;if(_0x4efd1f['params'][_0x174820(0x208)]&&_0x19208c[_0x174820(0x9d)]<_0x5be25a[_0x174820(0x15a)])Rt(_0x4efd1f[_0x174820(0x8d)][_0x174820(0x208)],_0x5be25a[_0x174820(0x15a)],_0x5be25a[_0x174820(0x9d)]-_0x5be25a[_0x174820(0x15a)]+0x1,-_0x52e3b6);else{if(_0x19208c[_0x174820(0x15a)]<=_0x5be25a[_0x174820(0x9d)])return{'error':new Error(_0x174820(0xd6))};}const _0x5ee391=new _0x1f7bb9();let _0x200bd0=!0x1,_0x593875=!0x1;if(_0x239ea3[_0x174820(0x86)]((_0x3305a6,_0x4c1665,_0xabebd9)=>{const _0x10c80d=_0x174820;if(_0xabebd9&&_0xabebd9['f']){const _0x4f6c06=_0xabebd9['f'];let _0x29e6cc=!0x1;const _0x15a1db=dt(_0x1b1def[_0x10c80d(0x8d)]['unitId'],_0x1b1def['params'][_0x10c80d(0x20b)],_0x4f6c06,_0x116476=>{const _0x57dc5e=_0x10c80d,_0x1e89ad=_0x180da6(h(_0x1b1def[_0x57dc5e(0x8d)][_0x57dc5e(0x19f)]),h(_0x116476));return _0x1e89ad===null?(_0x200bd0=!0x0,_0x116476):((_0x1e89ad['step']!==0x0||_0x1e89ad[_0x57dc5e(0xf6)]!==0x0)&&(_0x29e6cc=!0x0,_0x116476[_0x57dc5e(0x15a)]+=_0x1e89ad['step'],_0x116476[_0x57dc5e(0x9d)]+=_0x1e89ad[_0x57dc5e(0xc3)]+_0x1e89ad[_0x57dc5e(0xf6)]),_0x116476);});_0x29e6cc&&(_0x593875=!0x0,_0xabebd9['f']=_0x15a1db,_0x5ee391[_0x10c80d(0x134)](_0x3305a6,_0x4c1665,{..._0xabebd9}));}}),_0x200bd0)return{'error':new Error(_0x174820(0x1ed))};if(_0x593875){const _0x4c74b6={'id':_0x15eb0a['id'],'params':{'unitId':_0xe47e11[_0x174820(0x8d)]['unitId'],'subUnitId':_0xe47e11[_0x174820(0x8d)]['subUnitId'],'cellValue':_0x5ee391[_0x174820(0x16a)]()}};_0x3839da['push'](_0x4c74b6);}return{'m1Prime':_0x3839da,'m2Prime':_0x4efd1f};}},Bs={'m1':_0xe5c4bd['id'],'m2':_0x23969e['id'],'handler'(_0x243d66,_0x532b86){const _0x239017=_0x572182,_0x49535f={'m1Prime':[],'m2Prime':[]};if(_0x243d66[_0x239017(0x8d)][_0x239017(0xdb)]!==_0x532b86[_0x239017(0x8d)][_0x239017(0xdb)]||_0x243d66[_0x239017(0x8d)][_0x239017(0x20b)]!==_0x532b86['params']['subUnitId'])return _0x49535f;const _0x479aa9=_0x570d2f[_0x239017(0xb4)](_0x532b86);let _0x32f1ba=!0x1;return _0x479aa9[_0x239017(0x8d)][_0x239017(0x138)][_0x239017(0xc5)](_0x426648=>{const _0x2ddd0b=_0x239017,{range:_0x7d83fc,primary:_0x2284b6}=_0x426648,_0x3c47d1=_0x180da6(h(_0x243d66['params'][_0x2ddd0b(0x19f)]),h(_0x7d83fc));if(_0x3c47d1!=null&&(_0x3c47d1[_0x2ddd0b(0xf6)]||_0x3c47d1[_0x2ddd0b(0xc3)])){if(_0x7d83fc[_0x2ddd0b(0x15a)]+=_0x3c47d1['step'],_0x7d83fc[_0x2ddd0b(0x9d)]+=_0x3c47d1['step']+(_0x3c47d1['length']||0x0),_0x2284b6){const _0x243d65=_0x180da6(h(_0x243d66[_0x2ddd0b(0x8d)][_0x2ddd0b(0x19f)]),h(_0x2284b6));if(_0x243d65==null){_0x2284b6['startColumn']=_0x7d83fc['startColumn'],_0x2284b6[_0x2ddd0b(0x9d)]=_0x7d83fc[_0x2ddd0b(0x15a)],_0x2284b6['actualColumn']=_0x7d83fc['startColumn'];return;}(_0x243d65[_0x2ddd0b(0xf6)]||_0x243d65[_0x2ddd0b(0xc3)])&&(_0x2284b6[_0x2ddd0b(0x15a)]+=_0x243d65[_0x2ddd0b(0xc3)],_0x2284b6[_0x2ddd0b(0x9d)]+=_0x243d65[_0x2ddd0b(0xc3)],_0x2284b6['actualColumn']+=_0x243d65['step']);}_0x32f1ba=!0x0;}}),_0x32f1ba&&_0x49535f[_0x239017(0xcf)][_0x239017(0x1ca)](_0x479aa9),_0x49535f;}},Gs={'m1':_0xe5c4bd['id'],'m2':_0x4112c4['id'],'handler'(_0x4b3d0b,_0x234cd2){const _0x2886f7=_0x572182,_0x4f05e4={'m1Prime':_0x4b3d0b,'m2Prime':_0x234cd2};if(_0x4b3d0b['params'][_0x2886f7(0xdb)]!==_0x234cd2[_0x2886f7(0x8d)][_0x2886f7(0xdb)]||_0x4b3d0b[_0x2886f7(0x8d)][_0x2886f7(0x20b)]!==_0x234cd2[_0x2886f7(0x8d)][_0x2886f7(0x20b)])return _0x4f05e4;const _0x51e2f8=_0x570d2f['deepClone'](_0x4b3d0b),_0x3fc878=_0x570d2f[_0x2886f7(0xb4)](_0x234cd2),_0x960183=Me({'start':_0x4b3d0b[_0x2886f7(0x8d)]['range']['startColumn'],'end':_0x4b3d0b['params'][_0x2886f7(0x19f)][_0x2886f7(0x9d)]},{'start':_0x234cd2['params'][_0x2886f7(0x80)],'end':_0x234cd2['params'][_0x2886f7(0x80)]}),_0x510a99=_0x570d2f['deepClone'](_0x234cd2);return _0x510a99[_0x2886f7(0x8d)][_0x2886f7(0x211)]=null,_0x960183===null?{'m1Prime':[_0x51e2f8,_0x510a99],'m2Prime':[]}:_0x3fc878[_0x2886f7(0x8d)][_0x2886f7(0x80)]===_0x960183[_0x2886f7(0xa5)]?_0x4f05e4:(_0x3fc878[_0x2886f7(0x8d)][_0x2886f7(0x80)]=_0x960183[_0x2886f7(0xa5)],_0x3fc878['params'][_0x2886f7(0x211)]&&(_0x3fc878[_0x2886f7(0x8d)][_0x2886f7(0x211)]['colId']=_0x960183['start']),{'m1Prime':[_0x510a99,_0x3fc878,_0x51e2f8],'m2Prime':[_0x3fc878]});}},js={'m1':_0xe5c4bd['id'],'m2':_0x23aded['id'],'handler'(_0x30048d,_0x205c00){const _0x4877fa=_0x572182,_0x3a9f80={'m1Prime':[_0x30048d],'m2Prime':[_0x205c00]};if(_0x30048d[_0x4877fa(0x8d)]['unitId']!==_0x205c00[_0x4877fa(0x8d)]['unitId']||_0x30048d['params'][_0x4877fa(0x20b)]!==_0x205c00[_0x4877fa(0x8d)][_0x4877fa(0x20b)])return _0x3a9f80;const _0x48b213=_0x570d2f[_0x4877fa(0xb4)](_0x30048d),_0x2bc5e6=_0x570d2f[_0x4877fa(0xb4)](_0x205c00),_0x476e25=Me({'start':_0x30048d[_0x4877fa(0x8d)][_0x4877fa(0x19f)][_0x4877fa(0x15a)],'end':_0x30048d[_0x4877fa(0x8d)][_0x4877fa(0x19f)][_0x4877fa(0x9d)]},{'start':_0x205c00[_0x4877fa(0x8d)][_0x4877fa(0x19f)][_0x4877fa(0x15a)],'end':_0x205c00['params']['range'][_0x4877fa(0x9d)]});return _0x476e25===null?{'m1Prime':[_0x48b213,{'id':_0x224fc7['id'],'params':{'unitId':_0x205c00[_0x4877fa(0x8d)][_0x4877fa(0xdb)],'subUnitId':_0x205c00['params'][_0x4877fa(0xdb)]}}],'m2Prime':[]}:(_0x2bc5e6['params'][_0x4877fa(0x19f)][_0x4877fa(0x15a)]=_0x476e25['start'],_0x2bc5e6[_0x4877fa(0x8d)]['range'][_0x4877fa(0x9d)]=_0x476e25[_0x4877fa(0x1c4)],{'m1Prime':[_0x2bc5e6,_0x48b213],'m2Prime':[_0x2bc5e6]});}},$s={'m1':_0xe5c4bd['id'],'m2':_0x4cb95c['id'],'handler'(_0x17b042,_0x4c7665){const _0x501df3=_0x572182,_0x2bd400={'m1Prime':_0x17b042,'m2Prime':_0x4c7665};if(_0x17b042['params'][_0x501df3(0xdb)]!==_0x4c7665[_0x501df3(0x8d)][_0x501df3(0xdb)]||_0x17b042[_0x501df3(0x8d)][_0x501df3(0x20b)]!==_0x4c7665[_0x501df3(0x8d)][_0x501df3(0x20b)])return _0x2bd400;const _0x38bb86=_0x570d2f[_0x501df3(0xb4)](_0x17b042),_0xfed4f6=_0x570d2f[_0x501df3(0xb4)](_0x4c7665),{ranges:_0xdb5bd5,colWidth:_0x255c6e}=_0xfed4f6[_0x501df3(0x8d)];return _0xdb5bd5['forEach'](_0x2df502=>{const _0x212519=_0x501df3,_0x132ea4=_0x180da6(h(_0x17b042['params']['range']),_0x2df502);_0x132ea4==null?_0xfed4f6['id']=_0x1a62da['id']:(_0x2df502[_0x212519(0x15a)]+=_0x132ea4[_0x212519(0xc3)],_0x2df502['endColumn']+=_0x132ea4[_0x212519(0xc3)]+_0x132ea4[_0x212519(0xf6)]);}),typeof _0x255c6e!=_0x501df3(0x1b5)&&_0x4aa10e(_0x17b042[_0x501df3(0x8d)]['range'][_0x501df3(0x15a)],_0x17b042[_0x501df3(0x8d)]['range'][_0x501df3(0x9d)]-_0x17b042[_0x501df3(0x8d)][_0x501df3(0x19f)][_0x501df3(0x15a)]+0x1,_0x255c6e),{'m1Prime':_0x38bb86,'m2Prime':_0xfed4f6};}},Ys={'m1':_0xe5c4bd['id'],'m2':_0x2afd0c['id'],'handler':(_0x47c4e7,_0x48c171)=>{const _0x431138=_0x572182,_0x2ad04e={'m1Prime':_0x47c4e7,'m2Prime':_0x48c171};if(_0x47c4e7[_0x431138(0x8d)][_0x431138(0xdb)]!==_0x48c171[_0x431138(0x8d)][_0x431138(0xdb)]||_0x47c4e7[_0x431138(0x8d)][_0x431138(0x20b)]!==_0x48c171[_0x431138(0x8d)][_0x431138(0x20b)])return _0x2ad04e;const _0x581448={'id':_0xf0fff1['id'],'params':{'unitId':_0x47c4e7['params']['unitId'],'subUnitId':_0x47c4e7[_0x431138(0x8d)]['subUnitId'],'range':_0x47c4e7['params'][_0x431138(0x19f)]}},_0x516be5=wt(_0x48c171,_0x581448);return{'m1Prime':[_0x47c4e7,..._0x516be5],'m2Prime':[_0x48c171,..._0x516be5]};}},Js={'m1':_0xe5c4bd['id'],'m2':_0x4e1baf['id'],'handler':(_0x36f5a2,_0x40ddbe)=>{const _0x4c5902=_0x572182,_0x2ea2dc={'m1Prime':_0x36f5a2,'m2Prime':_0x40ddbe};if(_0x36f5a2[_0x4c5902(0x8d)][_0x4c5902(0xdb)]!==_0x40ddbe[_0x4c5902(0x8d)]['unitId']||_0x40ddbe[_0x4c5902(0x8d)][_0x4c5902(0x20b)]!==_0x36f5a2[_0x4c5902(0x8d)][_0x4c5902(0x20b)])return _0x2ea2dc;const _0x49b173={'id':_0xf0fff1['id'],'params':{'range':_0x36f5a2[_0x4c5902(0x8d)]['range']}},_0x7ee780=Ct(_0x40ddbe,_0x49b173);return{'m1Prime':[_0x36f5a2,..._0x7ee780],'m2Prime':[_0x40ddbe,..._0x7ee780]};}},Xs={'m1':_0x13693a['id'],'m2':_0x13693a['id'],'handler':(_0x32f496,_0x389a74)=>{const _0x334e34=_0x572182,_0xb4d7db={'m1Prime':_0x32f496,'m2Prime':_0x389a74};return _0x32f496['params'][_0x334e34(0xdb)]===_0x389a74[_0x334e34(0x8d)][_0x334e34(0xdb)]&&_0x32f496['params'][_0x334e34(0x20b)]===_0x389a74[_0x334e34(0x8d)][_0x334e34(0x20b)]&&_0x32f496[_0x334e34(0x8d)]['ruleId']===_0x389a74[_0x334e34(0x8d)][_0x334e34(0x103)]?{'m1Prime':[],'m2Prime':[]}:_0xb4d7db;}},Ks={'m1':_0x336ff4['id'],'m2':_0x336ff4['id'],'handler':(_0x12d702,_0x2ae98e)=>{const _0x39e728=_0x572182,_0x3606d6=_0x12d702[_0x39e728(0x8d)],_0x2d15ae=_0x2ae98e[_0x39e728(0x8d)];return _0x3606d6[_0x39e728(0xdb)]===_0x2d15ae[_0x39e728(0xdb)]&&_0x3606d6[_0x39e728(0x20b)]===_0x2d15ae['subUnitId']&&_0x3606d6['id']===_0x2d15ae['id']?{'m2Prime':[],'m1Prime':[]}:{'m1Prime':_0x12d702,'m2Prime':_0x2ae98e};}},zs={'m1':_0x3dcda7['id'],'m2':_0x3dcda7['id'],'handler'(_0x29e4f6,_0x1d6a9e){const _0x47196f=_0x572182;if(_0x29e4f6[_0x47196f(0x8d)][_0x47196f(0xdb)]!==_0x1d6a9e[_0x47196f(0x8d)]['unitId']||_0x29e4f6[_0x47196f(0x8d)][_0x47196f(0x20b)]!==_0x1d6a9e[_0x47196f(0x8d)][_0x47196f(0x20b)])return{'m1Prime':_0x29e4f6,'m2Prime':_0x1d6a9e};const _0x1485bb=_0x570d2f[_0x47196f(0xb4)](_0x29e4f6),_0x221336=_0x570d2f[_0x47196f(0xb4)](_0x1d6a9e),_0x295d71=[],_0x261630=_0x221336[_0x47196f(0x8d)][_0x47196f(0xd1)];return _0x1485bb[_0x47196f(0x8d)]['ranges']['forEach'](_0x525841=>{const _0x4f3750=_0x47196f,_0xe39d74=ee(_0x525841,_0x261630);_0xe39d74[_0x4f3750(0xf6)]>0x0&&_0x295d71[_0x4f3750(0x1ca)](..._0xe39d74);}),_0x1485bb[_0x47196f(0x8d)]['ranges']=_0x295d71,{'m1Prime':_0x29e4f6,'m2Prime':_0x1d6a9e};}},qs={'m1':_0x3dcda7['id'],'m2':_0x4075e['id'],'handler'(_0x39ed59,_0x47a409){const _0x1dc113=_0x572182;if(_0x39ed59[_0x1dc113(0x8d)][_0x1dc113(0xdb)]!==_0x47a409[_0x1dc113(0x8d)]['unitId']||_0x39ed59[_0x1dc113(0x8d)][_0x1dc113(0x20b)]!==_0x47a409[_0x1dc113(0x8d)][_0x1dc113(0x20b)])return{'m1Prime':_0x39ed59,'m2Prime':_0x47a409};const _0x21ebd7=_0x570d2f[_0x1dc113(0xb4)](_0x39ed59),_0x146ff5=_0x570d2f[_0x1dc113(0xb4)](_0x47a409),_0x55d46c=[],_0x49f5c8=Object['values'](_0x146ff5[_0x1dc113(0x8d)][_0x1dc113(0xd2)])[_0x1dc113(0x1e0)](_0x3e443f=>_0x3e443f['ranges'])[_0x1dc113(0x13b)]();return _0x21ebd7[_0x1dc113(0x8d)][_0x1dc113(0xd1)][_0x1dc113(0xc5)](_0x5c7af4=>{const _0xf086df=_0x1dc113,_0x391d47=ee(_0x5c7af4,_0x49f5c8);_0x391d47['length']>0x0&&_0x55d46c[_0xf086df(0x1ca)](..._0x391d47);}),_0x21ebd7['params']['ranges']=_0x55d46c,{'m1Prime':_0x21ebd7,'m2Prime':_0x146ff5};}},Zs={'m1':_0x1c90fa['id'],'m2':_0x1b398d['id'],'handler':(_0x473f8f,_0x575663)=>{const _0x240562=_0x572182,_0x490179={'m1Prime':_0x473f8f,'m2Prime':_0x575663};if(_0x473f8f[_0x240562(0x8d)][_0x240562(0xdb)]!==_0x575663[_0x240562(0x8d)]['unitId']||_0x473f8f[_0x240562(0x8d)][_0x240562(0x20b)]!==_0x575663[_0x240562(0x8d)]['subUnitId'])return _0x490179;const _0x30b21e={'id':_0x484aa2['id'],'params':{'unitId':_0x473f8f[_0x240562(0x8d)]['unitId'],'subUnitId':_0x473f8f[_0x240562(0x8d)][_0x240562(0x20b)],'range':_0x473f8f['params'][_0x240562(0x19f)]}},_0x113420=It(_0x575663,_0x30b21e);return{'m1Prime':[_0x473f8f,..._0x113420],'m2Prime':[_0x575663,..._0x113420]};}},Qs={'m1':_0x1c90fa['id'],'m2':_0x3bedd8['id'],'handler'(_0x4fa379,_0x20ce91){const _0x2d6bc2=_0x572182,_0x41fcdf={'m1Prime':_0x4fa379,'m2Prime':_0x20ce91};if(_0x4fa379['params'][_0x2d6bc2(0xdb)]!==_0x20ce91['params'][_0x2d6bc2(0xdb)]||_0x4fa379[_0x2d6bc2(0x8d)][_0x2d6bc2(0x20b)]!==_0x20ce91[_0x2d6bc2(0x8d)][_0x2d6bc2(0x20b)])return _0x41fcdf;const _0x337263={'id':_0x484aa2['id'],'params':{'range':_0x4fa379[_0x2d6bc2(0x8d)][_0x2d6bc2(0x19f)]}},_0x261337=Tt(_0x20ce91,_0x337263);return{'m1Prime':[_0x4fa379,..._0x261337],'m2Prime':[_0x20ce91,..._0x261337]};}},to={'m1':_0x1c90fa['id'],'m2':_0x4b0a3e['id'],'handler'(_0xf86b18,_0x5e74bd){const _0x32854f=_0x572182,_0x298e45=dr[_0x32854f(0xcd)](_0x5e74bd,_0xf86b18);return at(_0x298e45)?{'m1Prime':_0x298e45[_0x32854f(0xcf)],'m2Prime':_0x298e45[_0x32854f(0x119)]}:_0x298e45;}},eo={'m1':_0x1c90fa['id'],'m2':_0x43f1cd['id'],'handler'(_0x1f53ab,_0x2b56e6){const _0x2102f8=_0x572182,_0x2f1f9c={'m1Prime':_0x1f53ab,'m2Prime':_0x2b56e6};if(_0x1f53ab[_0x2102f8(0x8d)][_0x2102f8(0xdb)]!==_0x2b56e6['params'][_0x2102f8(0xdb)]||_0x1f53ab[_0x2102f8(0x8d)]['subUnitId']!==_0x2b56e6[_0x2102f8(0x8d)]['from'][_0x2102f8(0x20b)]&&_0x1f53ab[_0x2102f8(0x8d)]['subUnitId']!==_0x2b56e6['params']['to']['subUnitId'])return _0x2f1f9c;const _0x1ab077=_0x570d2f[_0x2102f8(0xb4)](_0x1f53ab),_0x477602=_0x570d2f[_0x2102f8(0xb4)](_0x2b56e6),{startRow:_0x1c67bb,endRow:_0x33e6b0}=_0x1f53ab[_0x2102f8(0x8d)][_0x2102f8(0x19f)];if(_0x1f53ab[_0x2102f8(0x8d)][_0x2102f8(0x20b)]===_0x2b56e6[_0x2102f8(0x8d)][_0x2102f8(0x1b0)][_0x2102f8(0x20b)]){const _0x25a5fe=new _0x1f7bb9(_0x477602['params'][_0x2102f8(0x1b0)]['value']),_0x5739e8=_0x25a5fe['getDataRange'](),{startRow:_0x1eab8a,endRow:_0x56beda}=_0x5739e8;if(_0x1eab8a<=_0x33e6b0&&_0x56beda>=_0x1c67bb)return{'error':new Error('Remove-cols\x20has\x20conflicts\x20with\x20move-range')};_0x33e6b0<_0x1eab8a&&_0x25a5fe[_0x2102f8(0x13d)](_0x1c67bb,_0x33e6b0-_0x1c67bb+0x1),_0x477602['params'][_0x2102f8(0x1b0)][_0x2102f8(0x17e)]=_0x25a5fe[_0x2102f8(0x16a)]();}if(_0x1f53ab['params']['subUnitId']===_0x2b56e6[_0x2102f8(0x8d)]['to'][_0x2102f8(0x20b)]){const _0xf7a02c=new _0x1f7bb9(_0x477602['params']['to'][_0x2102f8(0x17e)]),_0x937a50=_0xf7a02c[_0x2102f8(0x182)](),{startRow:_0x2ee6e6,endRow:_0x59ee95}=_0x937a50;if(_0x2ee6e6<=_0x33e6b0&&_0x59ee95>=_0x1c67bb)return{'error':new Error('Remove-cols\x20has\x20conflicts\x20with\x20move-range')};_0x33e6b0<_0x2ee6e6&&_0xf7a02c[_0x2102f8(0x13d)](_0x1c67bb,_0x33e6b0-_0x1c67bb+0x1),_0x477602[_0x2102f8(0x8d)]['to']['value']=_0xf7a02c[_0x2102f8(0x16a)]();}return{'m1Prime':_0x1ab077,'m2Prime':_0x477602};}},ro={'m1':_0x1c90fa['id'],'m2':_0x454b7a['id'],'handler'(_0x5001b1,_0x527f25){const _0x353314=_0x572182,_0xcb8db0={'m1Prime':_0x5001b1,'m2Prime':_0x527f25};if(_0x5001b1[_0x353314(0x8d)]['unitId']!==_0x527f25[_0x353314(0x8d)][_0x353314(0xdb)]||_0x5001b1[_0x353314(0x8d)][_0x353314(0x20b)]!==_0x527f25[_0x353314(0x8d)]['subUnitId'])return _0xcb8db0;const _0x4cef78=_0x570d2f['deepClone'](_0x5001b1),_0x460a5d=_0x570d2f[_0x353314(0xb4)](_0x527f25);if(_0x5001b1[_0x353314(0x8d)][_0x353314(0x19f)]['startRow']<=_0x527f25[_0x353314(0x8d)][_0x353314(0x11d)][_0x353314(0x111)]&&_0x5001b1[_0x353314(0x8d)][_0x353314(0x19f)]['endRow']>=_0x527f25[_0x353314(0x8d)]['sourceRange'][_0x353314(0x102)]||_0x5001b1[_0x353314(0x8d)][_0x353314(0x19f)][_0x353314(0x102)]<=_0x527f25[_0x353314(0x8d)]['targetRange'][_0x353314(0x111)]&&_0x5001b1[_0x353314(0x8d)]['range']['endRow']>=_0x527f25[_0x353314(0x8d)]['targetRange'][_0x353314(0x102)])return{'error':new Error(_0x353314(0xfc))};const _0x2f5254=_0x180da6(h(_0x48173f(_0x5001b1[_0x353314(0x8d)][_0x353314(0x19f)])),h(_0x48173f(_0x527f25[_0x353314(0x8d)][_0x353314(0x11d)]))),_0x3aa303=_0x180da6(h(_0x48173f(_0x5001b1['params'][_0x353314(0x19f)])),h(_0x48173f(_0x527f25[_0x353314(0x8d)][_0x353314(0x1d0)])));_0x2f5254&&_0x3aa303?(_0x460a5d[_0x353314(0x8d)][_0x353314(0x11d)]['startRow']+=_0x2f5254[_0x353314(0xc3)],_0x460a5d['params'][_0x353314(0x11d)]['endRow']+=_0x2f5254[_0x353314(0xc3)]+(_0x2f5254[_0x353314(0xf6)]||0x0),_0x460a5d[_0x353314(0x8d)]['targetRange'][_0x353314(0x102)]+=_0x3aa303[_0x353314(0xc3)],_0x460a5d[_0x353314(0x8d)]['targetRange']['endRow']+=_0x3aa303[_0x353314(0xc3)]+(_0x3aa303[_0x353314(0xf6)]||0x0)):_0x460a5d['id']=_0x1a62da['id'];const _0xd7d2ea=_0x2e8050({'start':_0x527f25[_0x353314(0x8d)][_0x353314(0x11d)][_0x353314(0x102)],'end':_0x527f25[_0x353314(0x8d)][_0x353314(0x11d)][_0x353314(0x111)]},{'start':_0x527f25[_0x353314(0x8d)][_0x353314(0x1d0)][_0x353314(0x102)],'end':_0x527f25['params'][_0x353314(0x1d0)]['endRow']},{'start':_0x5001b1[_0x353314(0x8d)][_0x353314(0x19f)]['startRow'],'end':_0x5001b1['params'][_0x353314(0x19f)][_0x353314(0x111)]});if(_0xd7d2ea){const {step:_0x3193c1,length:_0x557ea2}=_0xd7d2ea;_0x4cef78['params'][_0x353314(0x19f)][_0x353314(0x102)]+=_0x3193c1,_0x4cef78['params']['range']['endRow']+=_0x3193c1+(_0x557ea2||0x0);}else _0x4cef78['id']=_0x1a62da['id'];return{'m1Prime':_0x4cef78,'m2Prime':_0x460a5d};}},no={'m1':_0x1c90fa['id'],'m2':_0x3dcda7['id'],'handler'(_0x36a562,_0x52d953){const _0x2ccc3c=_0x572182,_0x491754={'m1Prime':_0x36a562,'m2Prime':_0x52d953};if(_0x36a562[_0x2ccc3c(0x8d)][_0x2ccc3c(0xdb)]!==_0x52d953['params'][_0x2ccc3c(0xdb)]||_0x36a562['params'][_0x2ccc3c(0x20b)]!==_0x52d953[_0x2ccc3c(0x8d)][_0x2ccc3c(0x20b)])return _0x491754;const _0x219d29=_0x570d2f[_0x2ccc3c(0xb4)](_0x36a562),_0x126749=_0x570d2f[_0x2ccc3c(0xb4)](_0x52d953),{ranges:_0x55cf78}=_0x126749[_0x2ccc3c(0x8d)];return _0x55cf78['some'](_0x1eec19=>{const _0x5d5c48=_0x2ccc3c,_0x3ed18b=_0x180da6(h(_0x48173f(_0x36a562['params'][_0x5d5c48(0x19f)])),h(_0x48173f(_0x1eec19)));return _0x3ed18b===null||_0x3ed18b[_0x5d5c48(0xf6)]!==0x0?!0x0:(_0x1eec19[_0x5d5c48(0x102)]+=_0x3ed18b[_0x5d5c48(0xc3)],_0x1eec19['endRow']+=_0x3ed18b['step'],!0x1);})?{'error':new Error(_0x2ccc3c(0x1fa))}:{'m1Prime':_0x219d29,'m2Prime':_0x126749};}},ao={'m1':_0x1c90fa['id'],'m2':_0x1c90fa['id'],'handler'(_0x36bf28,_0x1ae19b){const _0x189b77=_0x572182,_0xe4a76f={'m1Prime':_0x36bf28,'m2Prime':_0x1ae19b};if(_0x36bf28['params'][_0x189b77(0xdb)]!==_0x1ae19b['params'][_0x189b77(0xdb)]||_0x36bf28[_0x189b77(0x8d)]['subUnitId']!==_0x1ae19b[_0x189b77(0x8d)][_0x189b77(0x20b)])return _0xe4a76f;const _0x1e8d1a=_0x570d2f[_0x189b77(0xb4)](_0x36bf28),_0x4c7006=_0x570d2f[_0x189b77(0xb4)](_0x1ae19b),_0x17a8a9=_0x180da6(h(_0x48173f(_0x36bf28['params'][_0x189b77(0x19f)])),h(_0x48173f(_0x1ae19b[_0x189b77(0x8d)][_0x189b77(0x19f)])));if(_0x17a8a9){const {step:_0xe7ce42,length:_0x14bd48}=_0x17a8a9;_0x4c7006[_0x189b77(0x8d)][_0x189b77(0x19f)][_0x189b77(0x102)]+=_0xe7ce42,_0x4c7006[_0x189b77(0x8d)][_0x189b77(0x19f)]['endRow']+=_0xe7ce42+(_0x14bd48||0x0);}else _0x4c7006['id']=_0x1a62da['id'];const _0x21875e=_0x180da6(h(_0x48173f(_0x1ae19b['params'][_0x189b77(0x19f)])),h(_0x48173f(_0x36bf28['params'][_0x189b77(0x19f)])));if(_0x21875e){const {step:_0x3bdd5b,length:_0xde45dc}=_0x21875e;_0x1e8d1a[_0x189b77(0x8d)][_0x189b77(0x19f)][_0x189b77(0x102)]+=_0x3bdd5b,_0x1e8d1a[_0x189b77(0x8d)][_0x189b77(0x19f)][_0x189b77(0x111)]+=_0x3bdd5b+(_0xde45dc||0x0);}else _0x1e8d1a['id']=_0x1a62da['id'];return{'m1Prime':_0x1e8d1a,'m2Prime':_0x4c7006};}},so={'m1':_0x1c90fa['id'],'m2':_0x3c47fd['id'],'handler'(_0x1c8177,_0x1d85f0){const _0x1d7e35=_0x572182,_0x35fc40=_0x570d2f[_0x1d7e35(0xb4)](_0x1c8177),_0xc9396=_0x570d2f[_0x1d7e35(0xb4)](_0x1d85f0);if(_0x1c8177['params'][_0x1d7e35(0xdb)]!==_0x1d85f0['params'][_0x1d7e35(0xdb)]||_0x1c8177['params'][_0x1d7e35(0x20b)]!==_0x1d85f0[_0x1d7e35(0x8d)]['subUnitId'])return{'m1Prime':_0x35fc40,'m2Prime':_0xc9396};const _0x14f416=_0xc9396[_0x1d7e35(0x8d)][_0x1d7e35(0xd1)][_0x1d7e35(0x146)]((_0x2bfe91,_0x1ce2e1)=>{const _0x4afb85=_0x1d7e35,_0x509fe5=_0x35fc40['params']['range'],_0x3851ec=_0x509fe5['endRow']-_0x509fe5[_0x4afb85(0x102)]+0x1;let _0xdde1ed={..._0x1ce2e1};return _0x509fe5[_0x4afb85(0x102)]>_0x1ce2e1[_0x4afb85(0x111)]?_0xdde1ed={..._0x1ce2e1}:_0x509fe5['startRow']>=_0x1ce2e1['startRow']&&_0x509fe5[_0x4afb85(0x102)]<=_0x1ce2e1[_0x4afb85(0x111)]&&_0x509fe5['endRow']>_0x1ce2e1[_0x4afb85(0x111)]?(_0xdde1ed[_0x4afb85(0x111)]=_0x509fe5[_0x4afb85(0x102)]-0x1,_0x509fe5[_0x4afb85(0x102)]===_0x1ce2e1[_0x4afb85(0x102)]&&(_0xdde1ed=null)):_0x509fe5[_0x4afb85(0x102)]>_0x1ce2e1[_0x4afb85(0x102)]&&_0x509fe5[_0x4afb85(0x111)]<_0x1ce2e1[_0x4afb85(0x111)]?_0xdde1ed[_0x4afb85(0x111)]=_0x1ce2e1[_0x4afb85(0x111)]-_0x3851ec:_0x509fe5[_0x4afb85(0x102)]<_0x1ce2e1[_0x4afb85(0x102)]&&_0x509fe5[_0x4afb85(0x111)]>=_0x1ce2e1[_0x4afb85(0x102)]&&_0x509fe5['endRow']<=_0x1ce2e1[_0x4afb85(0x111)]?(_0xdde1ed[_0x4afb85(0x102)]=_0x509fe5[_0x4afb85(0x102)],_0xdde1ed[_0x4afb85(0x111)]=_0x1ce2e1[_0x4afb85(0x111)]-_0x3851ec,_0x509fe5['endRow']===_0x1ce2e1[_0x4afb85(0x111)]&&(_0xdde1ed=null)):_0x509fe5['startRow']<=_0x1ce2e1[_0x4afb85(0x102)]&&_0x509fe5['endRow']>=_0x1ce2e1['endRow']?_0xdde1ed=null:_0x509fe5[_0x4afb85(0x111)]<_0x1ce2e1[_0x4afb85(0x102)]&&(_0xdde1ed[_0x4afb85(0x102)]=_0x1ce2e1[_0x4afb85(0x102)]-_0x3851ec,_0xdde1ed[_0x4afb85(0x111)]=_0x1ce2e1['endRow']-_0x3851ec),_0xdde1ed&&!(_0xdde1ed['startRow']===_0xdde1ed[_0x4afb85(0x111)]&&_0xdde1ed[_0x4afb85(0x15a)]===_0xdde1ed[_0x4afb85(0x9d)])&&_0x2bfe91[_0x4afb85(0x1ca)](_0xdde1ed),_0x2bfe91;},[]);return _0xc9396[_0x1d7e35(0x8d)][_0x1d7e35(0xd1)]=_0x14f416,{'m1Prime':_0x35fc40,'m2Prime':_0xc9396};}},oo={'m1':_0x1c90fa['id'],'m2':_0x587c63['id'],'handler'(_0x5e4c24,_0x3149a3){const _0x28dbf9=_0x572182,_0x594e77={'m1Prime':_0x5e4c24,'m2Prime':_0x3149a3};if(_0x5e4c24[_0x28dbf9(0x8d)]['unitId']!==_0x3149a3[_0x28dbf9(0x8d)][_0x28dbf9(0xdb)]||_0x5e4c24[_0x28dbf9(0x8d)][_0x28dbf9(0x20b)]!==_0x3149a3[_0x28dbf9(0x8d)][_0x28dbf9(0x20b)])return _0x594e77;const _0x27fca3=_0x570d2f['deepClone'](_0x3149a3),_0x35496b=_0x570d2f[_0x28dbf9(0xb4)](_0x5e4c24),_0x481005=_0x180da6(h(_0x48173f(_0x5e4c24['params'][_0x28dbf9(0x19f)])),h(_0x48173f(_0x3149a3[_0x28dbf9(0x8d)]['range'])));if(!_0x481005)return{'m1Prime':_0x5e4c24,'m2Prime':[]};if(_0x481005[_0x28dbf9(0xf6)]===0x0&&_0x481005['step']===0x0)return{'m1Prime':_0x5e4c24,'m2Prime':_0x3149a3};const {startRow:_0x529ed8,endRow:_0x159539}=_0x5e4c24[_0x28dbf9(0x8d)][_0x28dbf9(0x19f)];_0x27fca3[_0x28dbf9(0x8d)][_0x28dbf9(0x19f)]['startRow']+=_0x481005[_0x28dbf9(0xc3)],_0x27fca3[_0x28dbf9(0x8d)][_0x28dbf9(0x19f)][_0x28dbf9(0x111)]+=_0x481005[_0x28dbf9(0xc3)]+(_0x481005['length']||0x0);const _0x3ff548=Object[_0x28dbf9(0xab)](_0x3149a3[_0x28dbf9(0x8d)]['order'])['map'](_0x3e5c0b=>ke(_0x529ed8,_0x159539,Number(_0x3e5c0b)))[_0x28dbf9(0x9f)](_0x4e91ea=>_0x4e91ea!==null),_0x441d96={};for(const _0x14a72c in _0x3149a3[_0x28dbf9(0x8d)][_0x28dbf9(0x13f)]){let _0xb57706=_0x3149a3[_0x28dbf9(0x8d)][_0x28dbf9(0x13f)][_0x14a72c];_0xb57706=ke(_0x529ed8,_0x159539,_0xb57706),_0xb57706!==null&&(_0x441d96[_0x3ff548[_0x28dbf9(0x132)]()]=_0xb57706);}_0x27fca3[_0x28dbf9(0x8d)][_0x28dbf9(0x13f)]=_0x441d96;const _0x50d3b2=io(_0x3149a3['params'][_0x28dbf9(0x13f)],{'start':_0x5e4c24[_0x28dbf9(0x8d)][_0x28dbf9(0x19f)]['startRow'],'end':_0x5e4c24['params'][_0x28dbf9(0x19f)][_0x28dbf9(0x111)]}),_0xa70d9c=[_0x35496b];return _0x50d3b2&&_0xa70d9c[_0x28dbf9(0xb9)]({'id':_0x587c63['id'],'params':{..._0x5e4c24[_0x28dbf9(0x8d)],'order':_0x50d3b2['order'],'range':{..._0x3149a3['params'][_0x28dbf9(0x19f)],..._0x50d3b2[_0x28dbf9(0x19f)]}}}),{'m1Prime':_0xa70d9c,'m2Prime':_0x27fca3};}},io=(_0x2ad99f,_0x295de6)=>{const _0xbd63c8=_0x572182,_0x5e9c86=Object[_0xbd63c8(0xab)](_0x2ad99f)['map'](Number)[_0xbd63c8(0x14f)]((_0x343a30,_0x2c253a)=>_0x343a30-_0x2c253a);if(_0x5e9c86[_0xbd63c8(0xf6)]===0x0)return null;const _0x4ba9a9=_0x5e9c86[0x0],_0x1f5928=_0x5e9c86[_0x5e9c86[_0xbd63c8(0xf6)]-0x1];if(_0x4ba9a9>_0x295de6[_0xbd63c8(0x1c4)]||_0x1f5928<_0x295de6[_0xbd63c8(0xa5)])return null;const _0x4f343d=_0x5e9c86['filter'](_0x3a74f1=>_0x2ad99f[_0x3a74f1]>=_0x295de6[_0xbd63c8(0xa5)]&&_0x2ad99f[_0x3a74f1]<=_0x295de6['end']);if(_0x4f343d[_0xbd63c8(0xf6)]===0x0)return null;const _0x418134=_0x4f343d[_0xbd63c8(0x1e0)](_0x1f2b7e=>_0x2ad99f[_0x1f2b7e]),_0x2163de={},_0x24b823=Math['min'](_0x4f343d[0x0],_0x295de6[_0xbd63c8(0xa5)]),_0x5b25b4=Math[_0xbd63c8(0xed)](_0x4f343d[_0x4f343d[_0xbd63c8(0xf6)]-0x1],_0x295de6[_0xbd63c8(0x1c4)]),_0x7a1624=Array[_0xbd63c8(0x1b0)]({'length':_0x5b25b4-_0x24b823+0x1},(_0x5625af,_0x15990b)=>_0x15990b+_0x24b823)[_0xbd63c8(0x9f)](_0x1e9368=>!_0x4f343d[_0xbd63c8(0x152)](_0x1e9368));return Array['from']({'length':_0x5b25b4-_0x24b823+0x1},(_0x3706ea,_0x4ce304)=>_0x4ce304+_0x24b823)['filter'](_0x18a988=>!_0x418134[_0xbd63c8(0x152)](_0x18a988))[_0xbd63c8(0xc5)]((_0x5bf1b8,_0x1574f8)=>{_0x2163de[_0x5bf1b8]=_0x7a1624[_0x1574f8];}),_0x418134[_0xbd63c8(0xc5)]((_0x1f2301,_0x5adf22)=>{_0x2163de[_0x1f2301]=_0x4f343d[_0x5adf22];}),{'range':{'startRow':_0x24b823,'endRow':_0x5b25b4},'order':_0x2163de};},ke=(_0x1ff21a,_0x1f0d86,_0xd8a88c)=>_0xd8a88c>=_0x1ff21a&&_0xd8a88c<=_0x1f0d86?null:_0xd8a88c>_0x1f0d86?_0xd8a88c-(_0x1f0d86-_0x1ff21a+0x1):_0xd8a88c,mo={'m1':_0x1c90fa['id'],'m2':_0x4075e['id'],'handler'(_0x4d815f,_0x53ba77){const _0x1718f2=_0x572182,_0x4d1573={'m1Prime':_0x4d815f,'m2Prime':_0x53ba77};if(_0x4d815f[_0x1718f2(0x8d)][_0x1718f2(0xdb)]!==_0x53ba77[_0x1718f2(0x8d)][_0x1718f2(0xdb)]||_0x4d815f[_0x1718f2(0x8d)][_0x1718f2(0x20b)]!==_0x53ba77[_0x1718f2(0x8d)][_0x1718f2(0x20b)])return _0x4d1573;const _0x20a5b0=[_0x570d2f[_0x1718f2(0xb4)](_0x4d815f)],_0x38686a=_0x570d2f[_0x1718f2(0xb4)](_0x53ba77),{values:_0x4c6966}=_0x38686a[_0x1718f2(0x8d)],_0x3f6efc=[];let _0x4c5120=!0x1;for(const _0x2bcfb3 in _0x4c6966){const _0x551ab7=_0x4c6966[_0x2bcfb3];if(_0x3f6efc[_0x1718f2(0x1ca)](..._0x551ab7[_0x1718f2(0xd1)]),_0x551ab7['ranges'][_0x1718f2(0xaf)](_0x1088db=>{const _0x1718aa=_0x1718f2,_0xb517ba=_0x180da6(h(_0x48173f(_0x4d815f[_0x1718aa(0x8d)][_0x1718aa(0x19f)])),h(_0x48173f(_0x1088db)));return _0xb517ba==null||_0xb517ba[_0x1718aa(0xf6)]!==0x0?!0x0:(_0xb517ba[_0x1718aa(0xc3)]!==0x0&&(_0x4c5120=!0x0),_0x1088db[_0x1718aa(0x102)]+=_0xb517ba[_0x1718aa(0xc3)],_0x1088db['endRow']+=_0xb517ba['step'],!0x1);}))return{'error':new Error(_0x1718f2(0x15d))};}if(_0x4c5120){const _0x3c235f={'id':_0x3dcda7['id'],'params':{'unitId':_0x53ba77[_0x1718f2(0x8d)]['unitId'],'subUnitId':_0x53ba77[_0x1718f2(0x8d)][_0x1718f2(0x20b)],'ranges':_0x3f6efc}};_0x20a5b0[_0x1718f2(0x1ca)](_0x3c235f,_0x38686a);}return{'m1Prime':_0x20a5b0,'m2Prime':_0x38686a};}},uo={'m1':_0x1c90fa['id'],'m2':_0x15eb0a['id'],'handler'(_0x240293,_0x17e5d2){const _0x45fc5=_0x572182,_0x4742cc={'m1Prime':_0x240293,'m2Prime':_0x17e5d2};if(_0x240293[_0x45fc5(0x8d)]['unitId']!==_0x17e5d2[_0x45fc5(0x8d)][_0x45fc5(0xdb)]||_0x240293[_0x45fc5(0x8d)][_0x45fc5(0x20b)]!==_0x17e5d2[_0x45fc5(0x8d)][_0x45fc5(0x20b)])return _0x4742cc;const _0x3a08d0=[_0x570d2f[_0x45fc5(0xb4)](_0x240293)],_0x155022=_0x570d2f[_0x45fc5(0xb4)](_0x17e5d2),_0x5bfe84=new _0x1f7bb9(_0x155022[_0x45fc5(0x8d)]['cellValue']),_0x3bd8c7=_0x5bfe84[_0x45fc5(0x182)](),_0x202a73=_0x240293[_0x45fc5(0x8d)][_0x45fc5(0x19f)],_0x4f1541=_0x202a73[_0x45fc5(0x111)]-_0x202a73[_0x45fc5(0x102)]+0x1;if(_0x155022[_0x45fc5(0x8d)][_0x45fc5(0x208)]&&_0x202a73[_0x45fc5(0x111)]<_0x3bd8c7['startRow'])ft(_0x155022[_0x45fc5(0x8d)]['cellValue'],_0x3bd8c7[_0x45fc5(0x102)],_0x3bd8c7[_0x45fc5(0x111)]-_0x3bd8c7[_0x45fc5(0x102)]+0x1,-_0x4f1541);else{if(_0x202a73[_0x45fc5(0x102)]<=_0x3bd8c7[_0x45fc5(0x111)])return{'error':new Error('remove\x20rows\x20is\x20conflict\x20with\x20set\x20range\x20values\x20mutation')};}const _0x5ceb9c=new _0x1f7bb9();let _0x539a2c=!0x1,_0x48c933=!0x1;if(_0x5bfe84['forValue']((_0x1e0996,_0x2175d3,_0x59bb46)=>{const _0x5df07b=_0x45fc5;if(_0x59bb46&&_0x59bb46['f']){const _0x58b9bf=_0x59bb46['f'];let _0x1b98fc=!0x1;const _0x1b783c=dt(_0x240293['params'][_0x5df07b(0xdb)],_0x240293[_0x5df07b(0x8d)][_0x5df07b(0x20b)],_0x58b9bf,_0x24f6e9=>{const _0x380bf8=_0x5df07b,_0x4b3d59=_0x180da6(h(_0x48173f(_0x240293[_0x380bf8(0x8d)]['range'])),h(_0x48173f(_0x24f6e9)));return _0x4b3d59===null?(_0x539a2c=!0x0,_0x24f6e9):((_0x4b3d59[_0x380bf8(0xc3)]!==0x0||_0x4b3d59[_0x380bf8(0xf6)]!==0x0)&&(_0x1b98fc=!0x0,_0x24f6e9[_0x380bf8(0x102)]+=_0x4b3d59[_0x380bf8(0xc3)],_0x24f6e9[_0x380bf8(0x111)]+=_0x4b3d59[_0x380bf8(0xc3)]+_0x4b3d59['length']),_0x24f6e9);});_0x1b98fc&&(_0x48c933=!0x0,_0x59bb46['f']=_0x1b783c,_0x5ceb9c[_0x5df07b(0x134)](_0x1e0996,_0x2175d3,{..._0x59bb46}));}}),_0x539a2c)return{'error':new Error(_0x45fc5(0x1e5))};if(_0x48c933){const _0x13f564={'id':_0x15eb0a['id'],'params':{'unitId':_0x17e5d2['params'][_0x45fc5(0xdb)],'subUnitId':_0x17e5d2[_0x45fc5(0x8d)][_0x45fc5(0x20b)],'cellValue':_0x5ceb9c[_0x45fc5(0x16a)]()}};_0x3a08d0['push'](_0x13f564);}return{'m1Prime':_0x3a08d0,'m2Prime':_0x155022};}},lo={'m1':_0x1c90fa['id'],'m2':_0x36a513['id'],'handler'(_0x1e6a3f,_0x1f7cfc){const _0x2effd9=_0x572182,_0x1774d4={'m1Prime':_0x1e6a3f,'m2Prime':_0x1f7cfc};if(_0x1e6a3f[_0x2effd9(0x8d)]['unitId']!==_0x1f7cfc['params'][_0x2effd9(0xdb)]||_0x1e6a3f['params'][_0x2effd9(0x20b)]!==_0x1f7cfc[_0x2effd9(0x8d)][_0x2effd9(0x20b)])return _0x1774d4;const _0x5aea08=_0x570d2f[_0x2effd9(0xb4)](_0x1e6a3f),_0x1e7624=_0x570d2f['deepClone'](_0x1f7cfc),{rowData:_0xe56efa}=_0x1e7624[_0x2effd9(0x8d)];return _0x4aa10e(_0x1e6a3f[_0x2effd9(0x8d)][_0x2effd9(0x19f)]['startRow'],_0x1e6a3f[_0x2effd9(0x8d)][_0x2effd9(0x19f)][_0x2effd9(0x111)]-_0x1e6a3f[_0x2effd9(0x8d)][_0x2effd9(0x19f)]['startRow']+0x1,_0xe56efa),{'m1Prime':_0x5aea08,'m2Prime':_0x1e7624};}},co={'m1':_0x1c90fa['id'],'m2':_0xce09a7['id'],'handler'(_0x4287cf,_0x4d4ab9){const _0x4e7ab8=_0x572182,_0x4bf232={'m1Prime':_0x4287cf,'m2Prime':_0x4d4ab9};if(_0x4287cf[_0x4e7ab8(0x8d)]['unitId']!==_0x4d4ab9['params'][_0x4e7ab8(0xdb)]||_0x4287cf[_0x4e7ab8(0x8d)][_0x4e7ab8(0x20b)]!==_0x4d4ab9[_0x4e7ab8(0x8d)][_0x4e7ab8(0x20b)])return _0x4bf232;const _0x63ecc1=_0x570d2f[_0x4e7ab8(0xb4)](_0x4287cf),_0x2aa6b5=_0x570d2f[_0x4e7ab8(0xb4)](_0x4d4ab9),{ranges:_0xd81958}=_0x2aa6b5[_0x4e7ab8(0x8d)];return _0xd81958[_0x4e7ab8(0xc5)](_0x481590=>{const _0x182bf4=_0x4e7ab8,_0xd19f67=_0x180da6(h(_0x48173f(_0x4287cf[_0x182bf4(0x8d)]['range'])),h(_0x48173f(_0x481590)));_0xd19f67==null?_0x2aa6b5['id']=_0x1a62da['id']:(_0x481590[_0x182bf4(0x102)]+=_0xd19f67[_0x182bf4(0xc3)],_0x481590[_0x182bf4(0x111)]+=_0xd19f67[_0x182bf4(0xc3)]+_0xd19f67[_0x182bf4(0xf6)]);}),{'m1Prime':_0x63ecc1,'m2Prime':_0x2aa6b5};}},po={'m1':_0x1c90fa['id'],'m2':_0x2b245f['id'],'handler'(_0x250d11,_0x55329d){const _0x1ad8d9=_0x572182,_0x2b726c={'m1Prime':_0x250d11,'m2Prime':_0x55329d};if(_0x250d11['params'][_0x1ad8d9(0xdb)]!==_0x55329d[_0x1ad8d9(0x8d)][_0x1ad8d9(0xdb)]||_0x250d11['params'][_0x1ad8d9(0x20b)]!==_0x55329d['params'][_0x1ad8d9(0x20b)])return _0x2b726c;const _0x434000=_0x570d2f[_0x1ad8d9(0xb4)](_0x250d11),_0x474d74=_0x570d2f[_0x1ad8d9(0xb4)](_0x55329d),{ranges:_0x1d6470}=_0x474d74[_0x1ad8d9(0x8d)];return _0x1d6470['forEach'](_0x5af5f8=>{const _0x540850=_0x1ad8d9,_0x3df332=_0x180da6(h(_0x48173f(_0x250d11[_0x540850(0x8d)][_0x540850(0x19f)])),h(_0x48173f(_0x5af5f8)));_0x3df332==null?_0x474d74['id']=_0x1a62da['id']:(_0x5af5f8[_0x540850(0x102)]+=_0x3df332[_0x540850(0xc3)],_0x5af5f8[_0x540850(0x111)]+=_0x3df332[_0x540850(0xc3)]+_0x3df332[_0x540850(0xf6)]);}),{'m1Prime':_0x434000,'m2Prime':_0x474d74};}},fo={'m1':_0x1c90fa['id'],'m2':_0x23969e['id'],'handler'(_0x506987,_0x1691a7){const _0x4ea0d3=_0x572182,_0x3194b4={'m1Prime':[],'m2Prime':[]};if(_0x506987[_0x4ea0d3(0x8d)][_0x4ea0d3(0xdb)]!==_0x1691a7['params'][_0x4ea0d3(0xdb)]||_0x506987[_0x4ea0d3(0x8d)][_0x4ea0d3(0x20b)]!==_0x1691a7[_0x4ea0d3(0x8d)]['subUnitId'])return _0x3194b4;const _0x1f58e6=_0x570d2f[_0x4ea0d3(0xb4)](_0x1691a7);let _0x54f2d6=!0x1;return _0x1f58e6[_0x4ea0d3(0x8d)][_0x4ea0d3(0x138)]['forEach'](_0x22e74c=>{const _0x3c521a=_0x4ea0d3,{range:_0x567fe3,primary:_0x22af0e}=_0x22e74c,_0x185855=_0x180da6(h(_0x48173f(_0x506987[_0x3c521a(0x8d)][_0x3c521a(0x19f)])),h(_0x48173f(_0x567fe3)));if(_0x185855!=null&&(_0x185855[_0x3c521a(0xf6)]||_0x185855[_0x3c521a(0xc3)])){if(_0x567fe3[_0x3c521a(0x102)]+=_0x185855['step'],_0x567fe3['endRow']+=_0x185855[_0x3c521a(0xc3)]+(_0x185855[_0x3c521a(0xf6)]||0x0),_0x22af0e){const _0x5e3642=_0x180da6(h(_0x48173f(_0x506987[_0x3c521a(0x8d)][_0x3c521a(0x19f)])),h(_0x48173f(_0x22af0e)));if(_0x5e3642==null){_0x22af0e['startRow']=_0x567fe3[_0x3c521a(0x102)],_0x22af0e[_0x3c521a(0x111)]=_0x567fe3[_0x3c521a(0x102)],_0x22af0e['actualRow']=_0x567fe3['startRow'];return;}(_0x5e3642[_0x3c521a(0xf6)]||_0x5e3642[_0x3c521a(0xc3)])&&(_0x22af0e[_0x3c521a(0x102)]+=_0x5e3642['step'],_0x22af0e['endRow']+=_0x5e3642['step'],_0x22af0e[_0x3c521a(0x1d9)]+=_0x5e3642['step']);}_0x54f2d6=!0x0;}}),_0x54f2d6&&_0x3194b4['m2Prime'][_0x4ea0d3(0x1ca)](_0x1f58e6),_0x3194b4;}},Ro={'m1':_0x1c90fa['id'],'m2':_0x23aded['id'],'handler'(_0x13c59b,_0x22010b){const _0x332826=_0x572182,_0xe9a5f={'m1Prime':[_0x13c59b],'m2Prime':[_0x22010b]};if(_0x13c59b[_0x332826(0x8d)]['unitId']!==_0x22010b[_0x332826(0x8d)]['unitId']||_0x13c59b['params'][_0x332826(0x20b)]!==_0x22010b[_0x332826(0x8d)][_0x332826(0x20b)])return _0xe9a5f;const _0x1d18a4=_0x570d2f[_0x332826(0xb4)](_0x13c59b),_0x55d494=_0x570d2f['deepClone'](_0x22010b),_0x47f08d=Me({'start':_0x13c59b[_0x332826(0x8d)]['range'][_0x332826(0x102)],'end':_0x13c59b['params']['range'][_0x332826(0x111)]},{'start':_0x22010b[_0x332826(0x8d)]['range']['startRow'],'end':_0x22010b[_0x332826(0x8d)][_0x332826(0x19f)][_0x332826(0x111)]});return _0x47f08d===null?{'m1Prime':[_0x1d18a4,{'id':_0x224fc7['id'],'params':{'unitId':_0x22010b[_0x332826(0x8d)][_0x332826(0xdb)],'subUnitId':_0x22010b[_0x332826(0x8d)][_0x332826(0xdb)]}}],'m2Prime':[]}:(_0x55d494[_0x332826(0x8d)][_0x332826(0x19f)]['startRow']=_0x47f08d[_0x332826(0xa5)],_0x55d494['params'][_0x332826(0x19f)][_0x332826(0x111)]=_0x47f08d[_0x332826(0x1c4)],{'m1Prime':[_0x55d494,_0x1d18a4],'m2Prime':[_0x55d494]});}},ho={'m1':_0x1c90fa['id'],'m2':_0x5357b7['id'],'handler'(_0xc5338f,_0x3774e9){const _0x59df12=_0x572182,_0x2851d4={'m1Prime':_0xc5338f,'m2Prime':_0x3774e9};if(_0xc5338f[_0x59df12(0x8d)][_0x59df12(0xdb)]!==_0x3774e9['params'][_0x59df12(0xdb)]||_0xc5338f[_0x59df12(0x8d)][_0x59df12(0x20b)]!==_0x3774e9[_0x59df12(0x8d)][_0x59df12(0x20b)])return _0x2851d4;const _0xdfdd03=_0x570d2f['deepClone'](_0xc5338f),_0x9aa96a=_0x570d2f[_0x59df12(0xb4)](_0x3774e9),{rowsAutoHeightInfo:_0x55aee0}=_0x9aa96a['params'];for(let _0x17b4d3=_0x55aee0[_0x59df12(0xf6)]-0x1;_0x17b4d3>=0x0;_0x17b4d3--){const _0x1f0e70=_0x55aee0[_0x17b4d3],_0x11e7a1={'startRow':_0x1f0e70['row'],'endRow':_0x1f0e70['row'],'startColumn':0x0,'endColumn':0x0},_0x294998=_0x180da6(h(_0x48173f(_0xc5338f[_0x59df12(0x8d)]['range'])),_0x48173f(_0x11e7a1));_0x294998==null?_0x55aee0[_0x59df12(0xf0)](_0x17b4d3,0x1):_0x1f0e70['row']+=_0x294998[_0x59df12(0xc3)];}return{'m1Prime':_0xdfdd03,'m2Prime':_0x9aa96a};}},go={'m1':_0x1c90fa['id'],'m2':_0xdb3bc1['id'],'handler'(_0x55a7e2,_0x88ba1f){const _0x6e6fa9=_0x572182,_0x5c6c4a={'m1Prime':_0x55a7e2,'m2Prime':_0x88ba1f};if(_0x55a7e2[_0x6e6fa9(0x8d)][_0x6e6fa9(0xdb)]!==_0x88ba1f[_0x6e6fa9(0x8d)][_0x6e6fa9(0xdb)]||_0x55a7e2[_0x6e6fa9(0x8d)][_0x6e6fa9(0x20b)]!==_0x88ba1f['params'][_0x6e6fa9(0x20b)])return _0x5c6c4a;const _0x22de14=_0x570d2f[_0x6e6fa9(0xb4)](_0x55a7e2),_0x4f61a1=_0x570d2f[_0x6e6fa9(0xb4)](_0x88ba1f),{ranges:_0x4e72ec,rowHeight:_0x1a4179}=_0x4f61a1[_0x6e6fa9(0x8d)];return _0x4e72ec[_0x6e6fa9(0xc5)](_0x23e732=>{const _0x8a8f93=_0x6e6fa9,_0x4a0019=_0x180da6(h(_0x48173f(_0x55a7e2['params'][_0x8a8f93(0x19f)])),_0x48173f(_0x23e732));_0x4a0019==null?_0x4f61a1['id']=_0x1a62da['id']:(_0x23e732[_0x8a8f93(0x102)]+=_0x4a0019[_0x8a8f93(0xc3)],_0x23e732['endRow']+=_0x4a0019[_0x8a8f93(0xc3)]+_0x4a0019[_0x8a8f93(0xf6)]);}),typeof _0x1a4179!=_0x6e6fa9(0x1b5)&&_0x4aa10e(_0x55a7e2[_0x6e6fa9(0x8d)][_0x6e6fa9(0x19f)][_0x6e6fa9(0x102)],_0x55a7e2[_0x6e6fa9(0x8d)][_0x6e6fa9(0x19f)]['endRow']-_0x55a7e2[_0x6e6fa9(0x8d)][_0x6e6fa9(0x19f)][_0x6e6fa9(0x102)]+0x1,_0x1a4179),{'m1Prime':_0x22de14,'m2Prime':_0x4f61a1};}},Io={'m1':_0x1c90fa['id'],'m2':_0x386b55['id'],'handler'(_0x4cc19a,_0x49c2bc){const _0xfe8071=_0x572182,_0x291f34={'m1Prime':_0x4cc19a,'m2Prime':_0x49c2bc};if(_0x4cc19a[_0xfe8071(0x8d)][_0xfe8071(0xdb)]!==_0x49c2bc[_0xfe8071(0x8d)]['unitId']||_0x4cc19a[_0xfe8071(0x8d)][_0xfe8071(0x20b)]!==_0x49c2bc['params'][_0xfe8071(0x20b)])return _0x291f34;const _0x39c719=_0x570d2f[_0xfe8071(0xb4)](_0x4cc19a),_0x17c054=_0x570d2f[_0xfe8071(0xb4)](_0x49c2bc),{ranges:_0x1e1b48,autoHeightInfo:_0x5858de}=_0x17c054[_0xfe8071(0x8d)];return _0x1e1b48['forEach'](_0x1b7ebb=>{const _0x17f142=_0xfe8071,_0x19586d=_0x180da6(h(_0x48173f(_0x4cc19a[_0x17f142(0x8d)][_0x17f142(0x19f)])),_0x48173f(_0x1b7ebb));_0x19586d==null?_0x17c054['id']=_0x1a62da['id']:(_0x1b7ebb[_0x17f142(0x102)]+=_0x19586d[_0x17f142(0xc3)],_0x1b7ebb[_0x17f142(0x111)]+=_0x19586d[_0x17f142(0xc3)]+_0x19586d[_0x17f142(0xf6)]);}),typeof _0x5858de!=_0xfe8071(0x1b5)&&_0x4aa10e(_0x4cc19a[_0xfe8071(0x8d)][_0xfe8071(0x19f)]['startRow'],_0x4cc19a[_0xfe8071(0x8d)][_0xfe8071(0x19f)][_0xfe8071(0x111)]-_0x4cc19a[_0xfe8071(0x8d)][_0xfe8071(0x19f)][_0xfe8071(0x102)]+0x1,_0x5858de),{'m1Prime':_0x39c719,'m2Prime':_0x17c054};}},wo={'m1':_0x1c90fa['id'],'m2':_0x2afd0c['id'],'handler':(_0x2e64d4,_0x444e48)=>{const _0x5d94bc=_0x572182,_0x53fe28={'m1Prime':_0x2e64d4,'m2Prime':_0x444e48};if(_0x2e64d4[_0x5d94bc(0x8d)][_0x5d94bc(0xdb)]!==_0x444e48['params'][_0x5d94bc(0xdb)]||_0x2e64d4['params']['subUnitId']!==_0x444e48[_0x5d94bc(0x8d)][_0x5d94bc(0x20b)])return _0x53fe28;const _0x3fb0b9={'id':_0x484aa2['id'],'params':{'unitId':_0x2e64d4[_0x5d94bc(0x8d)][_0x5d94bc(0xdb)],'subUnitId':_0x2e64d4[_0x5d94bc(0x8d)][_0x5d94bc(0x20b)],'range':_0x2e64d4[_0x5d94bc(0x8d)][_0x5d94bc(0x19f)]}},_0x46cc8c=wt(_0x444e48,_0x3fb0b9);return{'m1Prime':[_0x2e64d4,..._0x46cc8c],'m2Prime':[_0x444e48,..._0x46cc8c]};}},Co={'m1':_0x1c90fa['id'],'m2':_0x4e1baf['id'],'handler':(_0x13b087,_0x23125f)=>{const _0x519bf9=_0x572182,_0x3d86e1={'m1Prime':_0x13b087,'m2Prime':_0x23125f};if(_0x13b087[_0x519bf9(0x8d)]['unitId']!==_0x23125f[_0x519bf9(0x8d)][_0x519bf9(0xdb)]||_0x23125f[_0x519bf9(0x8d)]['subUnitId']!==_0x13b087[_0x519bf9(0x8d)][_0x519bf9(0x20b)])return _0x3d86e1;const _0x15837d={'id':_0x484aa2['id'],'params':{'range':_0x13b087[_0x519bf9(0x8d)][_0x519bf9(0x19f)]}},_0x31effa=Ct(_0x23125f,_0x15837d);return{'m1Prime':[_0x13b087,..._0x31effa],'m2Prime':[_0x23125f,..._0x31effa]};}},Po={'m1':_0x3c47fd['id'],'m2':_0x4b0a3e['id'],'handler'(_0x156fbe,_0x5b4747){const _0x44d963=_0x572182,_0x5c6761=_0x570d2f['deepClone'](_0x156fbe),_0x4889cd=_0x570d2f['deepClone'](_0x5b4747);if(_0x156fbe[_0x44d963(0x8d)]['unitId']!==_0x5b4747['params'][_0x44d963(0xdb)]||_0x156fbe[_0x44d963(0x8d)][_0x44d963(0x20b)]!==_0x5b4747[_0x44d963(0x8d)][_0x44d963(0x20b)])return{'m1Prime':_0x5c6761,'m2Prime':_0x4889cd};for(let _0x584220=0x0;_0x584220<_0x5c6761[_0x44d963(0x8d)][_0x44d963(0xd1)][_0x44d963(0xf6)];_0x584220++){let _0x4f4a6d=!0x1;for(let _0x35c858=0x0;_0x35c858<_0x4889cd[_0x44d963(0x8d)]['ranges'][_0x44d963(0xf6)];_0x35c858++){const _0x430c49=_0x5c6761[_0x44d963(0x8d)][_0x44d963(0xd1)][_0x584220],_0x5839e9=_0x4889cd['params'][_0x44d963(0xd1)][_0x35c858];if(_0x5b3986['intersects'](_0x430c49,_0x5839e9)){_0x4f4a6d=!0x0;break;}}_0x4f4a6d&&(_0x5c6761[_0x44d963(0x8d)][_0x44d963(0xd1)][_0x44d963(0xf0)](_0x584220,0x1),_0x584220--);}return _0x5c6761['params'][_0x44d963(0xd1)][_0x44d963(0xf6)]===0x0&&(_0x5c6761['id']=_0x1a62da['id']),{'m1Prime':_0x5c6761,'m2Prime':_0x4889cd};}},Uo={'m1':_0x3c47fd['id'],'m2':_0x541ec4['id'],'handler'(_0x448ec2,_0x4dac04){const _0x47f027=_0x572182,_0x467f0b=_0x570d2f['deepClone'](_0x448ec2),_0x4de15d=_0x570d2f[_0x47f027(0xb4)](_0x4dac04);if(_0x448ec2[_0x47f027(0x8d)][_0x47f027(0xdb)]!==_0x4dac04[_0x47f027(0x8d)][_0x47f027(0xdb)]||_0x448ec2[_0x47f027(0x8d)][_0x47f027(0x20b)]!==_0x4dac04[_0x47f027(0x8d)][_0x47f027(0x20b)])return{'m1Prime':_0x467f0b,'m2Prime':_0x4de15d};const _0x5914b7=_0x467f0b[_0x47f027(0x8d)][_0x47f027(0xd1)][_0x47f027(0x1e0)](_0x3d72ae=>{const _0x167f8b=_0x47f027,_0x3081ef=_0x4de15d['params'][_0x167f8b(0x19f)],_0x223119=_0x3081ef[_0x167f8b(0x9d)]-_0x3081ef[_0x167f8b(0x15a)]+0x1;return _0x3081ef['startColumn']<=_0x3d72ae['startColumn']?{..._0x3d72ae,'startColumn':_0x3d72ae['startColumn']+_0x223119,'endColumn':_0x3d72ae[_0x167f8b(0x9d)]+_0x223119}:_0x3081ef[_0x167f8b(0x15a)]>_0x3d72ae[_0x167f8b(0x15a)]&&_0x3081ef[_0x167f8b(0x15a)]<=_0x3d72ae[_0x167f8b(0x9d)]?{..._0x3d72ae,'endColumn':_0x3d72ae['endColumn']+_0x223119}:{..._0x3d72ae};});return _0x467f0b[_0x47f027(0x8d)]['ranges']=_0x5914b7,{'m1Prime':_0x467f0b,'m2Prime':_0x4de15d};}},bo={'m1':_0x3c47fd['id'],'m2':_0x224ab4['id'],'handler'(_0x342231,_0x5696c6){const _0x439165=_0x572182,_0x290807=_0x570d2f[_0x439165(0xb4)](_0x342231),_0x8cf344=_0x570d2f['deepClone'](_0x5696c6);if(_0x342231['params']['unitId']!==_0x5696c6[_0x439165(0x8d)][_0x439165(0xdb)]||_0x342231[_0x439165(0x8d)][_0x439165(0x20b)]!==_0x5696c6['params']['subUnitId'])return{'m1Prime':_0x290807,'m2Prime':_0x8cf344};const _0x5da500=_0x290807['params']['ranges'][_0x439165(0x1e0)](_0x3df942=>{const _0x2da76f=_0x439165,_0x45dd86=_0x8cf344[_0x2da76f(0x8d)]['range'],_0x4c8d42=_0x45dd86['endRow']-_0x45dd86[_0x2da76f(0x102)]+0x1;return _0x45dd86[_0x2da76f(0x102)]<=_0x3df942[_0x2da76f(0x102)]?{..._0x3df942,'startRow':_0x3df942[_0x2da76f(0x102)]+_0x4c8d42,'endRow':_0x3df942[_0x2da76f(0x111)]+_0x4c8d42}:_0x45dd86['startRow']>_0x3df942[_0x2da76f(0x102)]&&_0x45dd86[_0x2da76f(0x102)]<=_0x3df942[_0x2da76f(0x111)]?{..._0x3df942,'endRow':_0x3df942[_0x2da76f(0x111)]+_0x4c8d42}:{..._0x3df942};});return _0x290807[_0x439165(0x8d)][_0x439165(0xd1)]=_0x5da500,{'m1Prime':_0x290807,'m2Prime':_0x8cf344};}},Mo={'m1':_0x3c47fd['id'],'m2':_0x31c10b['id'],'handler'(_0x3db3ee,_0x4f99bb){const _0x34c68f=_0x572182,_0x56021a=_0x570d2f[_0x34c68f(0xb4)](_0x3db3ee),_0x52a111=_0x570d2f[_0x34c68f(0xb4)](_0x4f99bb);if(_0x3db3ee[_0x34c68f(0x8d)][_0x34c68f(0xdb)]!==_0x4f99bb[_0x34c68f(0x8d)][_0x34c68f(0xdb)]||_0x3db3ee[_0x34c68f(0x8d)][_0x34c68f(0x20b)]!==_0x4f99bb[_0x34c68f(0x8d)][_0x34c68f(0x20b)])return{'m1Prime':_0x56021a,'m2Prime':_0x52a111};const _0x4b5eeb=_0x56021a[_0x34c68f(0x8d)][_0x34c68f(0xd1)][_0x34c68f(0x146)]((_0x10763b,_0x467e90)=>{const _0xfd4923=_0x34c68f,{sourceRange:_0xdace7,targetRange:_0x5dcb63}=_0x4f99bb[_0xfd4923(0x8d)],_0x5457a9={..._0x467e90};return _0xdace7['endColumn']<_0x5457a9[_0xfd4923(0x15a)]&&_0x5dcb63[_0xfd4923(0x15a)]>_0x5457a9[_0xfd4923(0x9d)]?(_0x5457a9[_0xfd4923(0x15a)]-=_0xdace7[_0xfd4923(0x9d)]-_0xdace7[_0xfd4923(0x15a)]+0x1,_0x5457a9[_0xfd4923(0x9d)]-=_0xdace7[_0xfd4923(0x9d)]-_0xdace7['startColumn']+0x1,K(_0x5457a9)&&_0x10763b[_0xfd4923(0x1ca)](_0x5457a9)):_0xdace7[_0xfd4923(0x15a)]>_0x5457a9[_0xfd4923(0x9d)]&&_0x5dcb63['endColumn']<_0x5457a9[_0xfd4923(0x15a)]?(_0x5457a9['startColumn']+=_0xdace7[_0xfd4923(0x9d)]-_0xdace7[_0xfd4923(0x15a)]+0x1,_0x5457a9[_0xfd4923(0x9d)]+=_0xdace7['endColumn']-_0xdace7[_0xfd4923(0x15a)]+0x1,K(_0x5457a9)&&_0x10763b[_0xfd4923(0x1ca)](_0x5457a9)):_0x5b3986['intersects'](_0x5457a9,_0xdace7)||_0x5b3986[_0xfd4923(0x7a)](_0x5457a9,_0x5dcb63)||_0x10763b['push'](_0x5457a9),_0x10763b;},[]);return _0x56021a[_0x34c68f(0x8d)][_0x34c68f(0xd1)]=_0x4b5eeb,_0x56021a[_0x34c68f(0x8d)][_0x34c68f(0xd1)][_0x34c68f(0xf6)]===0x0&&(_0x56021a['id']=_0x1a62da['id']),{'m1Prime':_0x56021a,'m2Prime':_0x52a111};}},vo={'m1':_0x3c47fd['id'],'m2':_0x454b7a['id'],'handler'(_0x4cb869,_0x73d809){const _0x2635a9=_0x572182,_0x67a57e=_0x570d2f[_0x2635a9(0xb4)](_0x4cb869),_0x12e4cc=_0x570d2f[_0x2635a9(0xb4)](_0x73d809);if(_0x4cb869[_0x2635a9(0x8d)][_0x2635a9(0xdb)]!==_0x73d809[_0x2635a9(0x8d)][_0x2635a9(0xdb)]||_0x4cb869[_0x2635a9(0x8d)][_0x2635a9(0x20b)]!==_0x73d809['params']['subUnitId'])return{'m1Prime':_0x67a57e,'m2Prime':_0x12e4cc};const _0x7bf865=_0x67a57e['params'][_0x2635a9(0xd1)][_0x2635a9(0x146)]((_0x5ea65b,_0x1c292a)=>{const _0x4991cf=_0x2635a9,{sourceRange:_0x4219f2,targetRange:_0xde90c0}=_0x73d809[_0x4991cf(0x8d)],_0x366932={..._0x1c292a};return _0x4219f2[_0x4991cf(0x111)]<_0x366932[_0x4991cf(0x102)]&&_0xde90c0['startRow']>_0x366932['endRow']?(_0x366932['startRow']-=_0x4219f2[_0x4991cf(0x111)]-_0x4219f2[_0x4991cf(0x102)]+0x1,_0x366932[_0x4991cf(0x111)]-=_0x4219f2['endRow']-_0x4219f2[_0x4991cf(0x102)]+0x1,K(_0x366932)&&_0x5ea65b['push'](_0x366932)):_0x4219f2[_0x4991cf(0x102)]>_0x366932[_0x4991cf(0x111)]&&_0xde90c0[_0x4991cf(0x111)]<_0x366932['startRow']?(_0x366932[_0x4991cf(0x102)]+=_0x4219f2[_0x4991cf(0x111)]-_0x4219f2[_0x4991cf(0x102)]+0x1,_0x366932[_0x4991cf(0x111)]+=_0x4219f2[_0x4991cf(0x111)]-_0x4219f2['startRow']+0x1,K(_0x366932)&&_0x5ea65b[_0x4991cf(0x1ca)](_0x366932)):_0x5b3986[_0x4991cf(0x7a)](_0x366932,_0x4219f2)||_0x5b3986[_0x4991cf(0x7a)](_0x366932,_0xde90c0)||_0x5ea65b[_0x4991cf(0x1ca)](_0x366932),_0x5ea65b;},[]);return _0x67a57e[_0x2635a9(0x8d)]['ranges']=_0x7bf865,_0x67a57e[_0x2635a9(0x8d)][_0x2635a9(0xd1)][_0x2635a9(0xf6)]===0x0&&(_0x67a57e['id']=_0x1a62da['id']),{'m1Prime':_0x67a57e,'m2Prime':_0x12e4cc};}},Eo={'m1':_0x3c47fd['id'],'m2':_0xe5c4bd['id'],'handler'(_0x5d7c5f,_0x1667da){const _0x309dc2=_0x572182,_0x5b5aa3=_0x570d2f[_0x309dc2(0xb4)](_0x5d7c5f),_0x3a03c5=_0x570d2f['deepClone'](_0x1667da);if(_0x5d7c5f[_0x309dc2(0x8d)][_0x309dc2(0xdb)]!==_0x1667da[_0x309dc2(0x8d)][_0x309dc2(0xdb)]||_0x5d7c5f[_0x309dc2(0x8d)][_0x309dc2(0x20b)]!==_0x1667da['params'][_0x309dc2(0x20b)])return{'m1Prime':_0x5b5aa3,'m2Prime':_0x3a03c5};const _0x48c55e=_0x5b5aa3['params'][_0x309dc2(0xd1)][_0x309dc2(0x146)]((_0x3c545a,_0x5c0428)=>{const _0x49402b=_0x309dc2,_0x497553=_0x3a03c5[_0x49402b(0x8d)][_0x49402b(0x19f)],_0x3c4249=_0x497553[_0x49402b(0x9d)]-_0x497553[_0x49402b(0x15a)]+0x1;let _0x2d7138={..._0x5c0428};return _0x497553[_0x49402b(0x15a)]>_0x5c0428[_0x49402b(0x9d)]?_0x2d7138={..._0x5c0428}:_0x497553[_0x49402b(0x15a)]>=_0x5c0428['startColumn']&&_0x497553[_0x49402b(0x15a)]<=_0x5c0428[_0x49402b(0x9d)]&&_0x497553[_0x49402b(0x9d)]>_0x5c0428[_0x49402b(0x9d)]?(_0x2d7138['endColumn']=_0x497553[_0x49402b(0x15a)]-0x1,_0x497553[_0x49402b(0x15a)]===_0x5c0428[_0x49402b(0x15a)]&&(_0x2d7138=null)):_0x497553[_0x49402b(0x15a)]>_0x5c0428[_0x49402b(0x15a)]&&_0x497553['endColumn']<_0x5c0428[_0x49402b(0x9d)]?_0x2d7138[_0x49402b(0x9d)]=_0x5c0428['endColumn']-_0x3c4249:_0x497553[_0x49402b(0x15a)]<_0x5c0428[_0x49402b(0x15a)]&&_0x497553[_0x49402b(0x9d)]>=_0x5c0428['startColumn']&&_0x497553['endColumn']<=_0x5c0428[_0x49402b(0x9d)]?(_0x2d7138['startColumn']=_0x497553['startColumn'],_0x2d7138[_0x49402b(0x9d)]=_0x5c0428[_0x49402b(0x9d)]-_0x3c4249,_0x497553['endColumn']===_0x5c0428[_0x49402b(0x9d)]&&(_0x2d7138=null)):_0x497553[_0x49402b(0x15a)]<=_0x5c0428['startColumn']&&_0x497553[_0x49402b(0x9d)]>=_0x5c0428[_0x49402b(0x9d)]?_0x2d7138=null:_0x497553['endColumn']<_0x5c0428['startColumn']&&(_0x2d7138['startColumn']=_0x5c0428[_0x49402b(0x15a)]-_0x3c4249,_0x2d7138[_0x49402b(0x9d)]=_0x5c0428[_0x49402b(0x9d)]-_0x3c4249),_0x2d7138&&!(_0x2d7138[_0x49402b(0x102)]===_0x2d7138[_0x49402b(0x111)]&&_0x2d7138[_0x49402b(0x15a)]===_0x2d7138[_0x49402b(0x9d)])&&_0x3c545a['push'](_0x2d7138),_0x3c545a;},[]);return _0x5b5aa3[_0x309dc2(0x8d)][_0x309dc2(0xd1)]=_0x48c55e,_0x5b5aa3['params'][_0x309dc2(0xd1)][_0x309dc2(0xf6)]===0x0&&(_0x5b5aa3['id']=_0x1a62da['id']),{'m1Prime':_0x5b5aa3,'m2Prime':_0x3a03c5};}},So={'m1':_0x3c47fd['id'],'m2':_0x1c90fa['id'],'handler'(_0x30719c,_0x29bff0){const _0x49363b=_0x572182,_0x8adbf9=_0x570d2f[_0x49363b(0xb4)](_0x30719c),_0x4468ed=_0x570d2f['deepClone'](_0x29bff0);if(_0x30719c[_0x49363b(0x8d)][_0x49363b(0xdb)]!==_0x29bff0[_0x49363b(0x8d)][_0x49363b(0xdb)]||_0x30719c[_0x49363b(0x8d)][_0x49363b(0x20b)]!==_0x29bff0['params'][_0x49363b(0x20b)])return{'m1Prime':_0x8adbf9,'m2Prime':_0x4468ed};const _0x3dac91=_0x8adbf9['params']['ranges'][_0x49363b(0x146)]((_0x4f62bd,_0x36863d)=>{const _0x14e2bc=_0x49363b,_0x227495=_0x4468ed[_0x14e2bc(0x8d)]['range'],_0x34cd08=_0x227495[_0x14e2bc(0x111)]-_0x227495[_0x14e2bc(0x102)]+0x1;let _0xe2fb46={..._0x36863d};return _0x227495[_0x14e2bc(0x102)]>_0x36863d[_0x14e2bc(0x111)]?_0xe2fb46={..._0x36863d}:_0x227495[_0x14e2bc(0x102)]>=_0x36863d['startRow']&&_0x227495['startRow']<=_0x36863d[_0x14e2bc(0x111)]&&_0x227495['endRow']>_0x36863d[_0x14e2bc(0x111)]?(_0xe2fb46[_0x14e2bc(0x111)]=_0x227495[_0x14e2bc(0x102)]-0x1,_0x227495[_0x14e2bc(0x102)]===_0x36863d['startRow']&&(_0xe2fb46=null)):_0x227495['startRow']>_0x36863d[_0x14e2bc(0x102)]&&_0x227495[_0x14e2bc(0x111)]<_0x36863d[_0x14e2bc(0x111)]?_0xe2fb46['endRow']=_0x36863d['endRow']-_0x34cd08:_0x227495[_0x14e2bc(0x102)]<_0x36863d[_0x14e2bc(0x102)]&&_0x227495[_0x14e2bc(0x111)]>=_0x36863d[_0x14e2bc(0x102)]&&_0x227495[_0x14e2bc(0x111)]<=_0x36863d[_0x14e2bc(0x111)]?(_0xe2fb46[_0x14e2bc(0x102)]=_0x227495[_0x14e2bc(0x102)],_0xe2fb46[_0x14e2bc(0x111)]=_0x36863d['endRow']-_0x34cd08,_0x227495[_0x14e2bc(0x111)]===_0x36863d[_0x14e2bc(0x111)]&&(_0xe2fb46=null)):_0x227495[_0x14e2bc(0x102)]<=_0x36863d[_0x14e2bc(0x102)]&&_0x227495[_0x14e2bc(0x111)]>=_0x36863d[_0x14e2bc(0x111)]?_0xe2fb46=null:_0x227495['endRow']<_0x36863d[_0x14e2bc(0x102)]&&(_0xe2fb46[_0x14e2bc(0x102)]=_0x36863d[_0x14e2bc(0x102)]-_0x34cd08,_0xe2fb46[_0x14e2bc(0x111)]=_0x36863d[_0x14e2bc(0x111)]-_0x34cd08),_0xe2fb46&&!(_0xe2fb46['startRow']===_0xe2fb46[_0x14e2bc(0x111)]&&_0xe2fb46[_0x14e2bc(0x15a)]===_0xe2fb46[_0x14e2bc(0x9d)])&&_0x4f62bd['push'](_0xe2fb46),_0x4f62bd;},[]);return _0x8adbf9[_0x49363b(0x8d)][_0x49363b(0xd1)]=_0x3dac91,_0x8adbf9[_0x49363b(0x8d)]['ranges']['length']===0x0&&(_0x8adbf9['id']=_0x1a62da['id']),{'m1Prime':_0x8adbf9,'m2Prime':_0x4468ed};}},Wo={'m1':_0x3c47fd['id'],'m2':_0x23969e['id'],'handler'(_0x136ccd,_0x2fef2e){const _0x3fb7df=_0x572182,_0x1e6231={'m1Prime':[],'m2Prime':[]};if(_0x136ccd[_0x3fb7df(0x8d)]['unitId']!==_0x2fef2e['params']['unitId']||_0x136ccd[_0x3fb7df(0x8d)][_0x3fb7df(0x20b)]!==_0x2fef2e[_0x3fb7df(0x8d)]['subUnitId'])return _0x1e6231;const _0x3e2c39=_0x570d2f[_0x3fb7df(0xb4)](_0x2fef2e),_0x3f63e1=_0x3e2c39[_0x3fb7df(0x8d)]['selections'],_0xbf68ac=_0x3f63e1[_0x3f63e1[_0x3fb7df(0xf6)]-0x1][_0x3fb7df(0x19d)];return _0x136ccd[_0x3fb7df(0x8d)]['ranges'][_0x3fb7df(0xc5)](_0x2b07f3=>{const _0x18e28f=_0x3fb7df;_0xbf68ac&&_0x5b3986[_0x18e28f(0x7a)](_0x2b07f3,_0xbf68ac)&&(_0xbf68ac[_0x18e28f(0xd5)]=!0x1,_0xbf68ac[_0x18e28f(0x187)]=!0x1,_0xbf68ac[_0x18e28f(0x102)]=_0x2b07f3[_0x18e28f(0x102)],_0xbf68ac[_0x18e28f(0x15a)]=_0x2b07f3[_0x18e28f(0x15a)],_0xbf68ac['endRow']=_0x2b07f3[_0x18e28f(0x102)],_0xbf68ac[_0x18e28f(0x9d)]=_0x2b07f3[_0x18e28f(0x15a)],_0xbf68ac[_0x18e28f(0x164)]=_0x2b07f3[_0x18e28f(0x15a)],_0xbf68ac['actualRow']=_0x2b07f3[_0x18e28f(0x102)]);}),_0x1e6231['m2Prime'][_0x3fb7df(0x1ca)](_0x3e2c39),_0x1e6231;}},Vo=_0x19bd1f=>{const _0x1654a5=_0x572182,{order:_0x4681f3}=_0x19bd1f,_0xd9176a={};return Object[_0x1654a5(0xab)](_0x4681f3)['forEach'](_0xd7699e=>{_0xd9176a[_0x4681f3[Number(_0xd7699e)]]=Number(_0xd7699e);}),{..._0x19bd1f,'order':_0xd9176a};},_o=(_0x28512c,_0x19b1a0)=>{const _0x3c8274=_0x572182,_0xb2b2ad={};return Array[_0x3c8274(0x1b0)](new Set(Object[_0x3c8274(0xab)](_0x28512c)['concat'](Object[_0x3c8274(0xab)](_0x19b1a0))[_0x3c8274(0x1e0)](Number)))[_0x3c8274(0xc5)](_0x41d4b9=>{let _0x16b82e;_0x41d4b9 in _0x19b1a0?(_0x16b82e=_0x19b1a0[_0x41d4b9],_0x16b82e in _0x28512c&&(_0x16b82e=_0x28512c[_0x16b82e])):_0x16b82e=_0x28512c[_0x41d4b9],_0xb2b2ad[_0x41d4b9]=_0x16b82e;}),_0xb2b2ad;},Oo={'m1':_0x587c63['id'],'m2':_0x587c63['id'],'handler'(_0x1733d9,_0x201185){const _0x5a4f0f=_0x572182,_0x3a36ab={'m1Prime':_0x1733d9,'m2Prime':_0x201185};if(_0x1733d9[_0x5a4f0f(0x8d)]['unitId']!==_0x201185[_0x5a4f0f(0x8d)][_0x5a4f0f(0xdb)])return _0x3a36ab;const {range:_0x108ec5}=_0x1733d9['params'],{range:_0x4a9d4a}=_0x201185[_0x5a4f0f(0x8d)];if(_0x4a9d4a['startColumn']===_0x108ec5[_0x5a4f0f(0x15a)]&&_0x4a9d4a[_0x5a4f0f(0x9d)]===_0x108ec5['endColumn']&&_0x4a9d4a[_0x5a4f0f(0x102)]<=_0x108ec5[_0x5a4f0f(0x102)]&&_0x4a9d4a[_0x5a4f0f(0x111)]>=_0x108ec5[_0x5a4f0f(0x111)]){const _0x25515d=Vo(_0x1733d9[_0x5a4f0f(0x8d)])['order'],_0x283bea={'id':_0x587c63['id'],'params':{..._0x201185['params'],'range':_0x4a9d4a,'order':_o(_0x25515d,_0x201185[_0x5a4f0f(0x8d)][_0x5a4f0f(0x13f)])}};return{'m1Prime':[],'m2Prime':_0x283bea};}return _0x5b3986[_0x5a4f0f(0x7a)](_0x108ec5,_0x4a9d4a)?{'error':new Error(_0x5a4f0f(0x137))}:_0x3a36ab;}},re={'id':_0x572182(0x20d),'type':_0x361ef7[_0x572182(0x1bf)],'handler':()=>!0x0},yo={'m1':re['id'],'m2':_0x572182(0x131),'handler'(_0x98d99d,_0x4107a4){const _0x4a427c=_0x572182;return{'error':new Error(_0x4a427c(0x1e3))};}},No={'m1':_0x572182(0x131),'m2':re['id'],'handler'(_0xfe0d1b,_0x2d4ab9){const _0x59b014=_0x572182;return _0xfe0d1b[_0x59b014(0x8d)][_0x59b014(0xdb)]===_0x2d4ab9[_0x59b014(0x8d)][_0x59b014(0xdb)]?{'m1Prime':[],'m2Prime':_0x2d4ab9}:{'m1Prime':_0xfe0d1b,'m2Prime':_0x2d4ab9};}},Do={'m1':_0x35fae0['id'],'m2':_0x35fae0['id'],'handler'(_0x32f904,_0x47da81){const _0x58e1e2=_0x572182,_0x332b9d={'m1Prime':_0x32f904,'m2Prime':_0x47da81};if(_0x32f904['params'][_0x58e1e2(0xdb)]!==_0x47da81['params'][_0x58e1e2(0xdb)]||_0x32f904[_0x58e1e2(0x8d)]['subUnitId']!==_0x47da81[_0x58e1e2(0x8d)][_0x58e1e2(0x20b)])return _0x332b9d;const _0x5593c6=_0x32f904['params'][_0x58e1e2(0x12c)],_0x4961d3=_0x47da81[_0x58e1e2(0x8d)][_0x58e1e2(0x12c)],_0x3c4c58={},_0x24e4d6=_0x570d2f[_0x58e1e2(0xb4)](_0x32f904),_0x3bf149=new Set([...Object[_0x58e1e2(0xab)](_0x5593c6)[_0x58e1e2(0x1e0)](Number),...Object[_0x58e1e2(0xab)](_0x4961d3)['map'](Number)]);for(const _0x3e3345 of _0x3bf149){const _0x32624d=_0x5593c6[_0x3e3345],_0x77ff30=_0x4961d3[_0x3e3345];if(_0x32624d&&_0x77ff30){const _0x173dfa={..._0x32624d,..._0x77ff30};_0x3c4c58[_0x3e3345]=_0x173dfa;}else _0x32624d?_0x3c4c58[_0x3e3345]=_0x32624d:_0x77ff30&&(_0x3c4c58[_0x3e3345]=_0x77ff30);}return _0x24e4d6['params'][_0x58e1e2(0x12c)]=_0x3c4c58,{'m1Prime':_0x24e4d6,'m2Prime':_0x47da81};}},Ao={'m1':_0x36306e['id'],'m2':_0x36306e['id'],'handler'(_0x406796,_0x3fddff){const _0x5b9022=_0x572182;if(_0x406796[_0x5b9022(0x8d)][_0x5b9022(0xdb)]!==_0x3fddff['params'][_0x5b9022(0xdb)]||_0x406796['params']['subUnitId']!==_0x3fddff[_0x5b9022(0x8d)][_0x5b9022(0x20b)])return{'m1Prime':_0x406796,'m2Prime':_0x3fddff};const _0x4e93a1=_0x406796[_0x5b9022(0x8d)]['cfId']||_0x406796[_0x5b9022(0x8d)][_0x5b9022(0xea)][_0x5b9022(0x10b)],_0x490527=_0x3fddff[_0x5b9022(0x8d)]['cfId']||_0x3fddff[_0x5b9022(0x8d)][_0x5b9022(0xea)]['cfId'];if(_0x4e93a1!==_0x490527)return{'m1Prime':_0x406796,'m2Prime':_0x3fddff};const _0x1a7c56=_0x570d2f[_0x5b9022(0xb4)](_0x3fddff);return{'m1Prime':[],'m2Prime':_0x1a7c56};}};function To(_0x43119b,_0xc5aa82){const _0x33d757=_0x572182,_0x2dc2c6=_0x43119b[_0x33d757(0x146)]((_0x16ca5c,_0x32f519)=>(_0x16ca5c[_0x33d757(0x1aa)](_0x32f519[_0x33d757(0x195)],!0x0),_0x16ca5c),new Map());return _0xc5aa82[_0x33d757(0xaf)](_0x3166be=>_0x2dc2c6[_0x33d757(0xc4)](_0x3166be['drawingId'])!==void 0x0);}function Lo(_0x3c34d0,_0x55f84b){const _0x3497d2=_0x572182,_0x47ae72=_0x3c34d0[_0x3497d2(0xca)];return _0x55f84b['drawingIds'][_0x3497d2(0xaf)](_0x23283e=>_0x47ae72[_0x3497d2(0xf1)](_0x23283e)!==-0x1);}const {UPDATE:ko,REMOVE:xo,ARRANGE:xe}=_0x2f30d6,Ho={'m1':_0x2c5cc6['id'],'m2':_0x2c5cc6['id'],'handler'(_0x17dfd0,_0x35d4d0){const _0x4633bb=_0x572182,_0x3c15cf=_0x17dfd0[_0x4633bb(0x8d)],_0x33809e=_0x35d4d0['params'];if(_0x3c15cf[_0x4633bb(0xdb)]!==_0x33809e[_0x4633bb(0xdb)]||_0x3c15cf[_0x4633bb(0x20b)]!==_0x33809e[_0x4633bb(0x20b)])return{'m1Prime':_0x17dfd0,'m2Prime':_0x35d4d0};const _0x2ed4b5=_0x3c15cf['type'],_0x5da6ee=_0x33809e['type'];if(_0x2ed4b5===xo&&_0x5da6ee===ko&&To(_0x3c15cf[_0x4633bb(0x19b)],_0x33809e[_0x4633bb(0x19b)]))return{'m1Prime':_0x570d2f[_0x4633bb(0xb4)](_0x17dfd0),'m2Prime':[]};if(_0x2ed4b5===xe&&_0x5da6ee===xe&&Lo(_0x3c15cf[_0x4633bb(0x19b)],_0x33809e[_0x4633bb(0x19b)])){const _0x14d2eb=_0x570d2f[_0x4633bb(0xb4)](_0x17dfd0),_0x4ad03b=_0x570d2f[_0x4633bb(0xb4)](_0x35d4d0);return{'m1Prime':{..._0x14d2eb,'params':{..._0x14d2eb[_0x4633bb(0x8d)],'op':_0x3dbcac[_0x4633bb(0x120)][_0x4633bb(0xf5)](_0x14d2eb[_0x4633bb(0x8d)]['op'],_0x4ad03b['params']['op'],_0x4633bb(0x161))}},'m2Prime':{..._0x4ad03b,'params':{..._0x4ad03b[_0x4633bb(0x8d)],'op':_0x3dbcac[_0x4633bb(0x120)][_0x4633bb(0xf5)](_0x4ad03b[_0x4633bb(0x8d)]['op'],_0x14d2eb[_0x4633bb(0x8d)]['op'],'right')}}};}return{'m1Prime':_0x17dfd0,'m2Prime':_0x35d4d0};}},Fo={'m1':_0xe30a36['id'],'m2':_0xe30a36['id'],'handler'(_0xce39d2,_0x95f96){const _0xafb221=_0x572182,_0x565c76={'m1Prime':_0xce39d2,'m2Prime':_0x95f96};return _0xce39d2[_0xafb221(0x8d)]['unitId']!==_0x95f96['params'][_0xafb221(0xdb)]||_0xce39d2[_0xafb221(0x8d)][_0xafb221(0x20b)]!==_0x95f96[_0xafb221(0x8d)][_0xafb221(0x20b)]?_0x565c76:{'error':new Error(_0xafb221(0x205))};}},Bo={'m1':_0x4075e['id'],'m2':_0x3dcda7['id'],'handler'(_0x93a4b4,_0x31d02e){const _0x5a6c15=_0x572182;if(_0x93a4b4['params'][_0x5a6c15(0xdb)]!==_0x31d02e[_0x5a6c15(0x8d)][_0x5a6c15(0xdb)]||_0x93a4b4[_0x5a6c15(0x8d)]['subUnitId']!==_0x31d02e[_0x5a6c15(0x8d)]['subUnitId'])return{'m1Prime':_0x93a4b4,'m2Prime':_0x31d02e};const _0x9b9732=_0x570d2f[_0x5a6c15(0xb4)](_0x93a4b4),_0x5b45ef=_0x570d2f['deepClone'](_0x31d02e),_0x316571=_0x9b9732['params']['values'],_0x33bd68=_0x5b45ef[_0x5a6c15(0x8d)][_0x5a6c15(0xd1)];for(const _0x44a0dc in _0x316571){const _0x42aa77=_0x316571[_0x44a0dc]['ranges'],_0x1694d0=[];_0x42aa77[_0x5a6c15(0xc5)](_0x2db7d1=>{const _0xc26b51=_0x5a6c15,_0x4f13b9=ee(_0x2db7d1,_0x33bd68);_0x4f13b9[_0xc26b51(0xf6)]>0x0&&_0x1694d0[_0xc26b51(0x1ca)](..._0x4f13b9);}),_0x316571[_0x44a0dc][_0x5a6c15(0xd1)]=_0x1694d0;}return{'m1Prime':_0x9b9732,'m2Prime':_0x5b45ef};}},Go={'m1':_0x4075e['id'],'m2':_0x4075e['id'],'handler'(_0x5dd582,_0xe70fd3){const _0x4f1cea=_0x572182;if(_0x5dd582['params'][_0x4f1cea(0xdb)]!==_0xe70fd3['params'][_0x4f1cea(0xdb)]||_0x5dd582[_0x4f1cea(0x8d)][_0x4f1cea(0x20b)]!==_0xe70fd3[_0x4f1cea(0x8d)]['subUnitId'])return{'m1Prime':_0x5dd582,'m2Prime':_0xe70fd3};const _0x4a338f=_0x570d2f['deepClone'](_0x5dd582),_0x3e0a79=_0x570d2f[_0x4f1cea(0xb4)](_0xe70fd3),_0x19bf6a=_0x4a338f[_0x4f1cea(0x8d)][_0x4f1cea(0xd2)],_0x240486=Object[_0x4f1cea(0xd2)](_0x3e0a79['params'][_0x4f1cea(0xd2)])[_0x4f1cea(0x1e0)](_0x3ce30f=>_0x3ce30f[_0x4f1cea(0xd1)])[_0x4f1cea(0x13b)]();for(const _0x43f1a4 in _0x19bf6a){const _0x2a2258=_0x19bf6a[_0x43f1a4][_0x4f1cea(0xd1)],_0x2bcfe0=[];_0x2a2258[_0x4f1cea(0xc5)](_0x25eb3b=>{const _0x3385f9=_0x4f1cea,_0x412964=ee(_0x25eb3b,_0x240486);_0x412964[_0x3385f9(0xf6)]>0x0&&_0x2bcfe0[_0x3385f9(0x1ca)](..._0x412964);}),_0x19bf6a[_0x43f1a4][_0x4f1cea(0xd1)]=_0x2bcfe0;}return{'m1Prime':_0x4a338f,'m2Prime':_0x3e0a79};}},jo={'m1':_0x225790['id'],'m2':_0x1b398d['id'],'handler':(_0x2b71e8,_0x2f0873)=>{const _0x1fbb98=_0x572182,_0x4e66dc={'m1Prime':_0x2b71e8,'m2Prime':_0x2f0873};return _0x2b71e8[_0x1fbb98(0x8d)][_0x1fbb98(0xdb)]!==_0x2f0873[_0x1fbb98(0x8d)][_0x1fbb98(0xdb)]||_0x2b71e8[_0x1fbb98(0x8d)][_0x1fbb98(0x20b)]!==_0x2f0873[_0x1fbb98(0x8d)][_0x1fbb98(0x20b)]?_0x4e66dc:{'error':new Error(_0x1fbb98(0xc6))};}},$o={'m1':_0x225790['id'],'m2':_0x4ae767['id'],'handler':(_0x25891a,_0x4a0f27)=>{const _0x2b9656=_0x572182,_0x268b9c={'m1Prime':_0x25891a,'m2Prime':_0x4a0f27};if(_0x25891a[_0x2b9656(0x8d)][_0x2b9656(0xdb)]!==_0x4a0f27[_0x2b9656(0x8d)][_0x2b9656(0xdb)]||_0x25891a[_0x2b9656(0x8d)][_0x2b9656(0x20b)]!==_0x4a0f27[_0x2b9656(0x8d)][_0x2b9656(0x20b)])return _0x268b9c;const _0x4a2657=_0x25891a[_0x2b9656(0x8d)][_0x2b9656(0xea)][_0x2b9656(0xd1)],_0x302e41=_0x4a0f27[_0x2b9656(0x8d)]['rule'][_0x2b9656(0xd1)];return _0x4a2657[_0x2b9656(0xaf)](_0x55ca78=>_0x302e41[_0x2b9656(0xaf)](_0xac959d=>_0x5b3986[_0x2b9656(0x7a)](_0x55ca78,_0xac959d)))?{'error':new Error(_0x2b9656(0x99))}:_0x268b9c;}},Yo={'m1':_0x225790['id'],'m2':_0x4b0a3e['id'],'handler':(_0x5d8eb5,_0x49b9f9)=>{const _0x3e9645=_0x572182,_0x8e1bf3={'m1Prime':_0x5d8eb5,'m2Prime':_0x49b9f9};if(_0x5d8eb5[_0x3e9645(0x8d)][_0x3e9645(0xdb)]!==_0x49b9f9[_0x3e9645(0x8d)][_0x3e9645(0xdb)]||_0x5d8eb5['params'][_0x3e9645(0x20b)]!==_0x49b9f9['params'][_0x3e9645(0x20b)])return _0x8e1bf3;const _0x56f17e=_0x5d8eb5[_0x3e9645(0x8d)][_0x3e9645(0xea)][_0x3e9645(0xd1)],_0x1b249e=_0x49b9f9[_0x3e9645(0x8d)][_0x3e9645(0xd1)];return _0x56f17e[_0x3e9645(0xaf)](_0x3d374b=>_0x1b249e['some'](_0x2cf079=>_0x5b3986[_0x3e9645(0x7a)](_0x3d374b,_0x2cf079)))?{'error':new Error(_0x3e9645(0xf3))}:_0x8e1bf3;}},Jo={'m1':_0x225790['id'],'m2':_0xeba0d['id'],'handler':(_0x5b9585,_0x57b62d)=>{const _0x5734d0=_0x572182,_0x2a74db={'m1Prime':_0x5b9585,'m2Prime':_0x57b62d};return _0x5b9585[_0x5734d0(0x8d)]['unitId']!==_0x57b62d['params']['unitId']||_0x5b9585[_0x5734d0(0x8d)][_0x5734d0(0x20b)]!==_0x57b62d[_0x5734d0(0x8d)][_0x5734d0(0xea)][_0x5734d0(0x20b)]?_0x2a74db:{'error':new Error(_0x5734d0(0x217))};}},Xo={'m1':_0x225790['id'],'m2':_0x7e7ab0['id'],'handler':(_0x2e990b,_0x4284d5)=>{const _0x452b97=_0x572182,_0x54f18a={'m1Prime':_0x2e990b,'m2Prime':_0x4284d5};return _0x2e990b['params'][_0x452b97(0xdb)]!==_0x4284d5[_0x452b97(0x8d)][_0x452b97(0xdb)]||_0x2e990b[_0x452b97(0x8d)][_0x452b97(0x20b)]!==_0x4284d5[_0x452b97(0x8d)]['subUnitId']?_0x54f18a:{'error':new Error(_0x452b97(0x9e))};}},Ko={'m1':_0x225790['id'],'m2':_0x541ec4['id'],'handler':(_0x1bcdf7,_0x5de585)=>{const _0x14ecb2=_0x572182,_0x427e32={'m1Prime':_0x1bcdf7,'m2Prime':_0x5de585};if(_0x1bcdf7[_0x14ecb2(0x8d)]['unitId']!==_0x5de585[_0x14ecb2(0x8d)]['unitId']||_0x1bcdf7[_0x14ecb2(0x8d)]['subUnitId']!==_0x5de585[_0x14ecb2(0x8d)][_0x14ecb2(0x20b)])return _0x427e32;const _0x5cb850=_0x1bcdf7[_0x14ecb2(0x8d)][_0x14ecb2(0xea)][_0x14ecb2(0xd1)],_0xd0b489=_0x5de585[_0x14ecb2(0x8d)]['range'];return _0x5cb850[_0x14ecb2(0xaf)](_0xd41394=>_0x5b3986[_0x14ecb2(0x7a)](_0xd41394,_0xd0b489))?{'error':new Error(_0x14ecb2(0xf9))}:_0x427e32;}},zo={'m1':_0x225790['id'],'m2':_0x224ab4['id'],'handler':(_0x15524b,_0x191f08)=>{const _0x4f9366=_0x572182,_0x139244={'m1Prime':_0x15524b,'m2Prime':_0x191f08};if(_0x15524b[_0x4f9366(0x8d)]['unitId']!==_0x191f08[_0x4f9366(0x8d)][_0x4f9366(0xdb)]||_0x15524b[_0x4f9366(0x8d)][_0x4f9366(0x20b)]!==_0x191f08[_0x4f9366(0x8d)]['subUnitId'])return _0x139244;const _0x229710=_0x15524b['params'][_0x4f9366(0xea)][_0x4f9366(0xd1)],_0x13eac8=_0x191f08[_0x4f9366(0x8d)][_0x4f9366(0x19f)];return _0x229710[_0x4f9366(0xaf)](_0x4f28aa=>_0x5b3986[_0x4f9366(0x7a)](_0x4f28aa,_0x13eac8))?{'error':new Error('set\x20range\x20protection\x20is\x20conflict\x20with\x20insert\x20row')}:_0x139244;}},qo={'m1':_0x225790['id'],'m2':_0x31c10b['id'],'handler':(_0x5489e5,_0x4a9788)=>{const _0xad30cc=_0x572182,_0xf2477e={'m1Prime':_0x5489e5,'m2Prime':_0x4a9788};if(_0x5489e5[_0xad30cc(0x8d)][_0xad30cc(0xdb)]!==_0x4a9788['params'][_0xad30cc(0xdb)]||_0x5489e5['params'][_0xad30cc(0x20b)]!==_0x4a9788['params']['subUnitId'])return _0xf2477e;const _0x26ba7e=_0x5489e5['params'][_0xad30cc(0xea)][_0xad30cc(0xd1)],_0x5a336e=[_0x4a9788[_0xad30cc(0x8d)]['sourceRange'],_0x4a9788[_0xad30cc(0x8d)]['targetRange']];return _0x26ba7e[_0xad30cc(0xaf)](_0xae6160=>_0x5a336e[_0xad30cc(0xaf)](_0x4c9df8=>_0x5b3986[_0xad30cc(0x7a)](_0xae6160,_0x4c9df8)))?{'error':new Error(_0xad30cc(0x1ad))}:_0xf2477e;}},Zo={'m1':_0x225790['id'],'m2':_0x43f1cd['id'],'handler':(_0x1ac097,_0x21c363)=>{const _0x10cb61=_0x572182,_0x687b6c={'m1Prime':_0x1ac097,'m2Prime':_0x21c363};if(_0x1ac097['params'][_0x10cb61(0xdb)]!==_0x21c363['params']['unitId']||_0x1ac097[_0x10cb61(0x8d)][_0x10cb61(0x20b)]!==_0x21c363['params'][_0x10cb61(0x1b0)][_0x10cb61(0x20b)])return _0x687b6c;const _0xd743a8=_0x1ac097[_0x10cb61(0x8d)]['rule'][_0x10cb61(0xd1)],_0x241072=new _0x1f7bb9(_0x21c363[_0x10cb61(0x8d)][_0x10cb61(0x1b0)]['value'])['getDataRange'](),_0x35e77f=new _0x1f7bb9(_0x21c363[_0x10cb61(0x8d)]['to'][_0x10cb61(0x17e)])[_0x10cb61(0x182)](),_0x617cc=[_0x241072,_0x35e77f];return _0xd743a8[_0x10cb61(0xaf)](_0x58c315=>_0x617cc[_0x10cb61(0xaf)](_0x537be0=>_0x5b3986[_0x10cb61(0x7a)](_0x58c315,_0x537be0)))?{'error':new Error(_0x10cb61(0x21a))}:_0x687b6c;}},Qo={'m1':_0x225790['id'],'m2':_0x454b7a['id'],'handler':(_0xad2984,_0x1618ba)=>{const _0x124fc3=_0x572182,_0x4952a2={'m1Prime':_0xad2984,'m2Prime':_0x1618ba};if(_0xad2984['params'][_0x124fc3(0xdb)]!==_0x1618ba[_0x124fc3(0x8d)][_0x124fc3(0xdb)]||_0xad2984[_0x124fc3(0x8d)][_0x124fc3(0x20b)]!==_0x1618ba[_0x124fc3(0x8d)][_0x124fc3(0x20b)])return _0x4952a2;const _0x3df288=_0xad2984[_0x124fc3(0x8d)]['rule'][_0x124fc3(0xd1)],_0x403736=[_0x1618ba[_0x124fc3(0x8d)][_0x124fc3(0x11d)],_0x1618ba[_0x124fc3(0x8d)][_0x124fc3(0x1d0)]];return _0x3df288[_0x124fc3(0xaf)](_0xed12ae=>_0x403736['some'](_0x478ef5=>_0x5b3986[_0x124fc3(0x7a)](_0xed12ae,_0x478ef5)))?{'error':new Error(_0x124fc3(0x1f2))}:_0x4952a2;}},ti={'m1':_0x225790['id'],'m2':_0xe5c4bd['id'],'handler':(_0x5a6ef2,_0x259c40)=>{const _0x2cc895=_0x572182,_0x394c32={'m1Prime':_0x5a6ef2,'m2Prime':_0x259c40};if(_0x5a6ef2[_0x2cc895(0x8d)]['unitId']!==_0x259c40[_0x2cc895(0x8d)][_0x2cc895(0xdb)]||_0x5a6ef2[_0x2cc895(0x8d)][_0x2cc895(0x20b)]!==_0x259c40[_0x2cc895(0x8d)][_0x2cc895(0x20b)])return _0x394c32;const _0x39caf6=_0x5a6ef2['params'][_0x2cc895(0xea)][_0x2cc895(0xd1)],_0x1bd1bf=_0x259c40[_0x2cc895(0x8d)][_0x2cc895(0x19f)];return _0x39caf6[_0x2cc895(0xaf)](_0x2b1d8f=>_0x5b3986['intersects'](_0x2b1d8f,_0x1bd1bf))?{'error':new Error(_0x2cc895(0x108))}:_0x394c32;}},ei={'m1':_0x225790['id'],'m2':_0x13693a['id'],'handler':(_0x466249,_0x5f0d0b)=>{const _0x57f971=_0x572182,_0x10a277={'m1Prime':_0x466249,'m2Prime':_0x5f0d0b};return _0x466249[_0x57f971(0x8d)][_0x57f971(0xdb)]!==_0x5f0d0b[_0x57f971(0x8d)][_0x57f971(0xdb)]||_0x466249[_0x57f971(0x8d)][_0x57f971(0x20b)]!==_0x5f0d0b[_0x57f971(0x8d)][_0x57f971(0x20b)]?_0x10a277:{'error':new Error(_0x57f971(0x218))};}},ri={'m1':_0x225790['id'],'m2':_0x1c90fa['id'],'handler':(_0x43fcff,_0x193f0d)=>{const _0x5de42c=_0x572182,_0xb6e665={'m1Prime':_0x43fcff,'m2Prime':_0x193f0d};if(_0x43fcff[_0x5de42c(0x8d)][_0x5de42c(0xdb)]!==_0x193f0d[_0x5de42c(0x8d)][_0x5de42c(0xdb)]||_0x43fcff[_0x5de42c(0x8d)]['subUnitId']!==_0x193f0d['params'][_0x5de42c(0x20b)])return _0xb6e665;const _0x46c3b1=_0x43fcff[_0x5de42c(0x8d)][_0x5de42c(0xea)][_0x5de42c(0xd1)],_0x4afe5d=_0x193f0d['params'][_0x5de42c(0x19f)];return _0x46c3b1[_0x5de42c(0xaf)](_0xb21430=>_0x5b3986[_0x5de42c(0x7a)](_0xb21430,_0x4afe5d))?{'error':new Error(_0x5de42c(0xa9))}:_0xb6e665;}},ni={'m1':_0x225790['id'],'m2':_0x224fc7['id'],'handler':(_0x287444,_0x3d897a)=>{const _0x42798a=_0x572182,_0x2f0be2={'m1Prime':_0x287444,'m2Prime':_0x3d897a};return _0x287444[_0x42798a(0x8d)][_0x42798a(0xdb)]!==_0x3d897a[_0x42798a(0x8d)][_0x42798a(0xdb)]||_0x287444['params'][_0x42798a(0x20b)]!==_0x3d897a[_0x42798a(0x8d)][_0x42798a(0x20b)]?_0x2f0be2:{'error':new Error('set\x20range\x20protection\x20is\x20conflict\x20with\x20remove\x20filter')};}},ai={'m1':_0x225790['id'],'m2':_0x3c47fd['id'],'handler':(_0xb4df44,_0xd8d1c3)=>{const _0x195125=_0x572182,_0x27bd9a={'m1Prime':_0xb4df44,'m2Prime':_0xd8d1c3};if(_0xb4df44[_0x195125(0x8d)][_0x195125(0xdb)]!==_0xd8d1c3[_0x195125(0x8d)]['unitId']||_0xb4df44[_0x195125(0x8d)][_0x195125(0x20b)]!==_0xd8d1c3[_0x195125(0x8d)]['subUnitId'])return _0x27bd9a;const _0x13d445=_0xb4df44[_0x195125(0x8d)][_0x195125(0xea)][_0x195125(0xd1)],_0x4c9290=_0xd8d1c3['params'][_0x195125(0xd1)];return _0x13d445[_0x195125(0xaf)](_0x189d5f=>_0x4c9290[_0x195125(0xaf)](_0x11097c=>_0x5b3986['intersects'](_0x189d5f,_0x11097c)))?{'error':new Error(_0x195125(0x1f6))}:_0x27bd9a;}},si={'m1':_0x225790['id'],'m2':_0x36306e['id'],'handler':(_0xec8df5,_0xf66bc0)=>{const _0x3806fc=_0x572182,_0x4ff3dc={'m1Prime':_0xec8df5,'m2Prime':_0xf66bc0};if(_0xec8df5[_0x3806fc(0x8d)][_0x3806fc(0xdb)]!==_0xf66bc0[_0x3806fc(0x8d)][_0x3806fc(0xdb)]||_0xec8df5[_0x3806fc(0x8d)][_0x3806fc(0x20b)]!==_0xf66bc0[_0x3806fc(0x8d)]['subUnitId'])return _0x4ff3dc;const _0x4bdae2=_0xec8df5[_0x3806fc(0x8d)][_0x3806fc(0xea)]['ranges'],_0x153d8c=_0xf66bc0[_0x3806fc(0x8d)]['rule'][_0x3806fc(0xd1)];return _0x4bdae2[_0x3806fc(0xaf)](_0x193a81=>_0x153d8c[_0x3806fc(0xaf)](_0x4dd24a=>_0x5b3986[_0x3806fc(0x7a)](_0x193a81,_0x4dd24a)))?{'error':new Error(_0x3806fc(0x11b))}:_0x4ff3dc;}},oi={'m1':_0x225790['id'],'m2':_0xe30a36['id'],'handler':(_0x3a62e1,_0x204eac)=>{const _0x3d9f4d=_0x572182,_0x4df922={'m1Prime':_0x3a62e1,'m2Prime':_0x204eac};if(_0x3a62e1['params'][_0x3d9f4d(0xdb)]!==_0x204eac['params']['unitId']||_0x3a62e1['params']['subUnitId']!==_0x204eac[_0x3d9f4d(0x8d)][_0x3d9f4d(0x20b)])return _0x4df922;const _0x55c7fd=_0x3a62e1[_0x3d9f4d(0x8d)][_0x3d9f4d(0xea)][_0x3d9f4d(0xd1)],_0x4b636e=[{'startRow':_0x204eac[_0x3d9f4d(0x8d)][_0x3d9f4d(0x102)],'endRow':_0x204eac[_0x3d9f4d(0x8d)][_0x3d9f4d(0x102)],'startColumn':_0x204eac[_0x3d9f4d(0x8d)]['startColumn'],'endColumn':_0x204eac['params'][_0x3d9f4d(0x15a)]}];return _0x55c7fd[_0x3d9f4d(0xaf)](_0x2578e9=>_0x4b636e[_0x3d9f4d(0xaf)](_0x2022da=>_0x5b3986[_0x3d9f4d(0x7a)](_0x2578e9,_0x2022da)))?{'error':new Error('set\x20range\x20protection\x20is\x20conflict\x20with\x20set\x20frozen')}:_0x4df922;}},ii={'m1':_0x225790['id'],'m2':_0x4075e['id'],'handler':(_0x36299e,_0x340720)=>{const _0x4276fa=_0x572182,_0x1dcfad={'m1Prime':_0x36299e,'m2Prime':_0x340720};return _0x36299e[_0x4276fa(0x8d)][_0x4276fa(0xdb)]!==_0x340720[_0x4276fa(0x8d)]['unitId']||_0x36299e[_0x4276fa(0x8d)][_0x4276fa(0x20b)]!==_0x340720['params'][_0x4276fa(0x20b)]?_0x1dcfad:{'error':new Error(_0x4276fa(0x1eb))};}},di={'m1':_0x225790['id'],'m2':_0x225790['id'],'handler':(_0x5bfd83,_0x276619)=>{const _0x33caf4=_0x572182,_0x46b9b4={'m1Prime':_0x5bfd83,'m2Prime':_0x276619};if(_0x5bfd83[_0x33caf4(0x8d)]['unitId']!==_0x276619['params'][_0x33caf4(0xdb)]||_0x5bfd83[_0x33caf4(0x8d)][_0x33caf4(0x20b)]!==_0x276619[_0x33caf4(0x8d)]['subUnitId'])return _0x46b9b4;const _0x2b986f=_0x5bfd83[_0x33caf4(0x8d)][_0x33caf4(0xea)][_0x33caf4(0xd1)],_0xd39210=_0x276619[_0x33caf4(0x8d)]['rule'][_0x33caf4(0xd1)];return _0x2b986f[_0x33caf4(0xaf)](_0x2a1313=>_0xd39210['some'](_0x2d389f=>_0x5b3986['intersects'](_0x2a1313,_0x2d389f)))?{'error':new Error(_0x33caf4(0x135))}:_0x46b9b4;}},mi={'m1':_0x225790['id'],'m2':_0x15eb0a['id'],'handler':(_0x28867c,_0xb95e39)=>{const _0x32066a=_0x572182,_0x4cf330={'m1Prime':_0x28867c,'m2Prime':_0xb95e39};if(_0x28867c[_0x32066a(0x8d)][_0x32066a(0xdb)]!==_0xb95e39['params'][_0x32066a(0xdb)]||_0x28867c[_0x32066a(0x8d)]['subUnitId']!==_0xb95e39[_0x32066a(0x8d)][_0x32066a(0x20b)])return _0x4cf330;const _0x8b1812=_0x28867c['params'][_0x32066a(0xea)]['ranges'],_0x41fcac=new _0x1f7bb9(_0xb95e39[_0x32066a(0x8d)][_0x32066a(0x208)])[_0x32066a(0x182)]();return _0x8b1812[_0x32066a(0xaf)](_0x9e153e=>_0x5b3986['intersects'](_0x9e153e,_0x41fcac))?{'error':new Error(_0x32066a(0x186))}:_0x4cf330;}},ui={'m1':_0x225790['id'],'m2':_0x4cb95c['id'],'handler':(_0x48bac9,_0x58f040)=>{const _0x1e6cbf=_0x572182,_0xd10e53={'m1Prime':_0x48bac9,'m2Prime':_0x58f040};if(_0x48bac9[_0x1e6cbf(0x8d)][_0x1e6cbf(0xdb)]!==_0x58f040['params'][_0x1e6cbf(0xdb)]||_0x48bac9[_0x1e6cbf(0x8d)]['subUnitId']!==_0x58f040[_0x1e6cbf(0x8d)]['subUnitId'])return _0xd10e53;const _0x1ce0ba=_0x48bac9[_0x1e6cbf(0x8d)][_0x1e6cbf(0xea)]['ranges'],_0x57d8f9=_0x58f040[_0x1e6cbf(0x8d)][_0x1e6cbf(0xd1)];return _0x1ce0ba['some'](_0x423143=>_0x57d8f9['some'](_0x5b3232=>_0x5b3986[_0x1e6cbf(0x7a)](_0x423143,_0x5b3232)))?{'error':new Error(_0x1e6cbf(0x92))}:_0xd10e53;}},li={'m1':_0x225790['id'],'m2':_0x2c3db1['id'],'handler':(_0x510b8d,_0x227d27)=>{const _0x2220b8=_0x572182,_0x51f62d={'m1Prime':_0x510b8d,'m2Prime':_0x227d27};return _0x510b8d[_0x2220b8(0x8d)][_0x2220b8(0xdb)]!==_0x227d27[_0x2220b8(0x8d)]['unitId']||_0x510b8d[_0x2220b8(0x8d)]['subUnitId']!==_0x227d27[_0x2220b8(0x8d)][_0x2220b8(0x20b)]?_0x51f62d:{'error':new Error(_0x2220b8(0x155))};}},ci={'m1':_0x225790['id'],'m2':_0x4e1baf['id'],'handler':(_0x5f2c5f,_0x4a87fa)=>{const _0x24b97b=_0x572182,_0x1ba5a4={'m1Prime':_0x5f2c5f,'m2Prime':_0x4a87fa};return _0x5f2c5f['params'][_0x24b97b(0xdb)]!==_0x4a87fa['params'][_0x24b97b(0xdb)]||_0x5f2c5f['params'][_0x24b97b(0x20b)]!==_0x4a87fa[_0x24b97b(0x8d)][_0x24b97b(0x20b)]?_0x1ba5a4:{'error':new Error(_0x24b97b(0x1fe))};}},pi={'m1':_0x15eb0a['id'],'m2':_0x4b0a3e['id'],'handler'(_0x478a5c,_0x504913){const _0x2321ac=_0x572182,_0x5da5f7=mr[_0x2321ac(0xcd)](_0x504913,_0x478a5c);return at(_0x5da5f7)?{'m1Prime':_0x5da5f7[_0x2321ac(0xcf)],'m2Prime':_0x5da5f7['m1Prime']}:_0x5da5f7;}},fi={'m1':_0x15eb0a['id'],'m2':_0x43f1cd['id'],'handler'(_0x26a40c,_0x3c8551){const _0xb06f7f=_0x572182,_0x15d329={'m1Prime':_0x26a40c,'m2Prime':_0x3c8551};if(_0x26a40c[_0xb06f7f(0x8d)][_0xb06f7f(0xdb)]!==_0x3c8551['params']['unitId'])return _0x15d329;const _0x4ac604=new _0x1f7bb9(_0x26a40c[_0xb06f7f(0x8d)][_0xb06f7f(0x208)])[_0xb06f7f(0x182)](),_0x3e1289=new _0x1f7bb9(_0x3c8551['params']['from'][_0xb06f7f(0x17e)])[_0xb06f7f(0x182)](),_0x41bbd6=new _0x1f7bb9(_0x3c8551[_0xb06f7f(0x8d)]['to'][_0xb06f7f(0x17e)])[_0xb06f7f(0x182)]();return _0x26a40c[_0xb06f7f(0x8d)]['subUnitId']===_0x3c8551[_0xb06f7f(0x8d)][_0xb06f7f(0x1b0)][_0xb06f7f(0x20b)]&&_0x5b3986[_0xb06f7f(0x7a)](_0x4ac604,_0x3e1289)||_0x26a40c[_0xb06f7f(0x8d)][_0xb06f7f(0x20b)]===_0x3c8551['params']['to'][_0xb06f7f(0x20b)]&&_0x5b3986[_0xb06f7f(0x7a)](_0x4ac604,_0x41bbd6)?{'error':new Error(_0xb06f7f(0x18f))}:_0x15d329;}},Ri={'m1':_0x15eb0a['id'],'m2':_0x587c63['id'],'handler'(_0x1cfd6b,_0x29770c){const _0x5448c6=_0x572182;var _0x374e6a,_0x14b6a2;const _0x4485d7={'m1Prime':_0x1cfd6b,'m2Prime':_0x29770c};if(_0x1cfd6b[_0x5448c6(0x8d)][_0x5448c6(0xdb)]!==_0x29770c[_0x5448c6(0x8d)][_0x5448c6(0xdb)]||_0x1cfd6b[_0x5448c6(0x8d)]['subUnitId']!==_0x29770c[_0x5448c6(0x8d)][_0x5448c6(0x20b)])return _0x4485d7;const _0x46963d=_0x570d2f[_0x5448c6(0xb4)](_0x1cfd6b),{cellValue:_0x4c0e00}=_0x46963d[_0x5448c6(0x8d)],_0x31d526=new _0x1f7bb9(_0x4c0e00),{range:_0x4d71db}=_0x29770c['params'],_0x4eaabc=new Map();for(let _0x54f5cc=_0x4d71db[_0x5448c6(0x15a)];_0x54f5cc<=_0x4d71db[_0x5448c6(0x9d)];_0x54f5cc++)for(let _0x586d02=_0x4d71db['startRow'];_0x586d02<=_0x4d71db[_0x5448c6(0x111)];_0x586d02++)if(((_0x374e6a=_0x4c0e00==null?void 0x0:_0x4c0e00[_0x586d02])==null?void 0x0:_0x374e6a[_0x54f5cc])!==void 0x0){const _0x84c6b7=(_0x14b6a2=_0x29770c[_0x5448c6(0x8d)]['order'][_0x586d02])!=null?_0x14b6a2:_0x586d02;_0x84c6b7!==_0x586d02&&(_0x4eaabc[_0x5448c6(0x110)](_0x84c6b7)||_0x4eaabc['set'](_0x84c6b7,new Map()),_0x4eaabc[_0x5448c6(0xc4)](_0x84c6b7)[_0x5448c6(0x1aa)](_0x54f5cc,_0x4c0e00[_0x586d02][_0x54f5cc]),_0x31d526[_0x5448c6(0x196)](_0x586d02,_0x54f5cc));}return _0x4eaabc[_0x5448c6(0xc5)]((_0x398849,_0x30e34b)=>{const _0x610295=_0x5448c6;_0x398849[_0x610295(0xc5)]((_0x455d7a,_0x810168)=>{const _0x5ddba1=_0x610295;_0x31d526[_0x5ddba1(0x134)](_0x30e34b,_0x810168,_0x455d7a);});}),{'m1Prime':_0x46963d,'m2Prime':_0x29770c};}},hi={'m1':_0x15eb0a['id'],'m2':_0x15eb0a['id'],'handler'(_0x579d49,_0x41c6fa){const _0x418628=_0x572182,_0x5e1538={'m1Prime':_0x579d49,'m2Prime':_0x41c6fa};if(_0x579d49[_0x418628(0x8d)][_0x418628(0xdb)]!==_0x41c6fa[_0x418628(0x8d)]['unitId']||_0x579d49[_0x418628(0x8d)][_0x418628(0x20b)]!==_0x41c6fa['params'][_0x418628(0x20b)])return _0x5e1538;const _0x4e2df7=_0x570d2f[_0x418628(0xb4)](_0x579d49),_0x4608a4=_0x570d2f[_0x418628(0xb4)](_0x41c6fa),_0x21a5e3=_0x570d2f[_0x418628(0xb4)](_0x41c6fa),_0x3ade32=new _0x1f7bb9(_0x4e2df7[_0x418628(0x8d)][_0x418628(0x208)]),_0x46070e=_0x3ade32['getDataRange'](),_0x11e001=new _0x1f7bb9(_0x41c6fa[_0x418628(0x8d)]['cellValue']),_0x269811=new _0x1f7bb9(),_0x162d65=_0x11e001['getDataRange']();return _0x5b3986[_0x418628(0x7a)](_0x46070e,_0x162d65)?(_0x3ade32[_0x418628(0x86)]((_0x40933c,_0x24fd9f,_0xb068cf)=>{const _0x277142=_0x418628;var _0xe72cad;const _0x1b57b3=_0x11e001['getValue'](_0x40933c,_0x24fd9f);_0x1b57b3===null&&_0x3ade32['realDeleteValue'](_0x40933c,_0x24fd9f),_0xb068cf&&_0x1b57b3&&(typeof(_0x1b57b3==null?void 0x0:_0x1b57b3['s'])==_0x277142(0xa6)&&(_0x1b57b3['s']=_0x570d2f[_0x277142(0xb4)]((_0xe72cad=_0x4608a4['params']['styleRefMap'])==null?void 0x0:_0xe72cad[_0x1b57b3['s']])||void 0x0),_0x269811['setValue'](_0x40933c,_0x24fd9f,_0x1b57b3));}),_0x4e2df7[_0x418628(0x8d)][_0x418628(0x208)]=_0x3ade32[_0x418628(0x16a)](),_0x4608a4['params']['cellValue']=_0x269811[_0x418628(0x16a)](),{'m1Prime':[_0x4e2df7,_0x4608a4],'m2Prime':_0x21a5e3}):_0x5e1538;}},gi={'m1':_0x36a513['id'],'m2':_0x36a513['id'],'handler'(_0xebc9f9,_0x3bd26e){const _0x429388=_0x572182,_0x309827={'m1Prime':_0xebc9f9,'m2Prime':_0x3bd26e};if(_0xebc9f9[_0x429388(0x8d)][_0x429388(0xdb)]!==_0x3bd26e[_0x429388(0x8d)]['unitId']||_0xebc9f9['params']['subUnitId']!==_0x3bd26e[_0x429388(0x8d)]['subUnitId'])return _0x309827;const _0x4146e1=_0xebc9f9[_0x429388(0x8d)][_0x429388(0xe8)],_0x3941d4=_0x3bd26e[_0x429388(0x8d)][_0x429388(0xe8)],_0x4190b8={},_0xd91f8e=_0x570d2f['deepClone'](_0xebc9f9),_0x49471d=new Set([...Object[_0x429388(0xab)](_0x4146e1)['map'](Number),...Object[_0x429388(0xab)](_0x3941d4)[_0x429388(0x1e0)](Number)]);for(const _0x363a8d of _0x49471d){const _0xd99c02=_0x4146e1[_0x363a8d],_0x50501f=_0x3941d4[_0x363a8d];if(_0xd99c02&&_0x50501f){const _0x3b97d4={..._0xd99c02,..._0x50501f};_0x4190b8[_0x363a8d]=_0x3b97d4;}else _0xd99c02?_0x4190b8[_0x363a8d]=_0xd99c02:_0x50501f&&(_0x4190b8[_0x363a8d]=_0x50501f);}return _0xd91f8e[_0x429388(0x8d)][_0x429388(0xe8)]=_0x4190b8,{'m1Prime':_0xd91f8e,'m2Prime':_0x3bd26e};}},Ii={'m1':_0x4112c4['id'],'m2':_0x43f1cd['id'],'handler'(_0x562741,_0x4aba78){const _0x2c14be=_0x572182,_0x370bc5={'m1Prime':_0x562741,'m2Prime':_0x4aba78};if(_0x562741[_0x2c14be(0x8d)][_0x2c14be(0xdb)]!==_0x4aba78[_0x2c14be(0x8d)]['unitId']||_0x562741[_0x2c14be(0x8d)][_0x2c14be(0x20b)]!==_0x4aba78[_0x2c14be(0x8d)][_0x2c14be(0x1b0)][_0x2c14be(0x20b)]&&_0x562741['params'][_0x2c14be(0x20b)]!==_0x4aba78[_0x2c14be(0x8d)]['to'][_0x2c14be(0x20b)])return _0x370bc5;let _0x2b6256=null;return _0x562741[_0x2c14be(0x8d)][_0x2c14be(0x20b)]===_0x4aba78['params'][_0x2c14be(0x1b0)][_0x2c14be(0x20b)]&&new _0x1f7bb9(_0x4aba78[_0x2c14be(0x8d)][_0x2c14be(0x1b0)][_0x2c14be(0x17e)])[_0x2c14be(0x86)]((_0xd281ba,_0x2f199e)=>{const _0x320b4d=_0x2c14be;_0x2f199e===_0x562741[_0x320b4d(0x8d)][_0x320b4d(0x80)]&&(_0x2b6256=_0x4aba78[_0x320b4d(0x8d)][_0x320b4d(0x1b0)][_0x320b4d(0x20b)]);}),_0x562741[_0x2c14be(0x8d)][_0x2c14be(0x20b)]===_0x4aba78[_0x2c14be(0x8d)]['to'][_0x2c14be(0x20b)]&&new _0x1f7bb9(_0x4aba78[_0x2c14be(0x8d)]['to'][_0x2c14be(0x17e)])[_0x2c14be(0x86)]((_0x577f01,_0x2f8875)=>{const _0x395721=_0x2c14be;_0x2f8875===_0x562741[_0x395721(0x8d)]['col']&&(_0x2b6256=_0x4aba78[_0x395721(0x8d)]['to'][_0x395721(0x20b)]);}),_0x2b6256?{'m1Prime':_0x562741,'m2Prime':[_0x4aba78,{'id':_0x581092['id'],'params':{'unitId':_0x4aba78[_0x2c14be(0x8d)][_0x2c14be(0xdb)],'subUnitId':_0x2b6256}}]}:_0x370bc5;}},wi={'m1':_0x4112c4['id'],'m2':_0x224fc7['id'],'handler'(_0x5b1440,_0xe08234){const _0x581a35=_0x572182,_0x181681={'m1Prime':_0x5b1440,'m2Prime':_0xe08234};return _0x5b1440['params'][_0x581a35(0xdb)]!==_0xe08234[_0x581a35(0x8d)]['unitId']||_0x5b1440[_0x581a35(0x8d)]['subUnitId']!==_0xe08234['params'][_0x581a35(0x20b)]?_0x181681:{'m1Prime':[],'m2Prime':[_0xe08234]};}},Ci={'m1':_0x4112c4['id'],'m2':_0x15eb0a['id'],'handler'(_0x3c4c41,_0x185563){const _0x497aba=_0x572182,_0x55a920={'m1Prime':_0x3c4c41,'m2Prime':_0x185563};if(_0x3c4c41[_0x497aba(0x8d)][_0x497aba(0xdb)]!==_0x185563['params']['unitId']||_0x3c4c41[_0x497aba(0x8d)][_0x497aba(0x20b)]!==_0x185563[_0x497aba(0x8d)][_0x497aba(0x20b)])return _0x55a920;let _0x49de93=!0x1;return new _0x1f7bb9(_0x185563[_0x497aba(0x8d)][_0x497aba(0x208)])[_0x497aba(0x86)]((_0x4be997,_0x519c1d)=>{const _0x42af1b=_0x497aba;_0x519c1d===_0x3c4c41[_0x42af1b(0x8d)][_0x42af1b(0x80)]&&(_0x49de93=!0x0);}),_0x49de93?{'m1Prime':_0x3c4c41,'m2Prime':[_0x185563,{'id':_0x581092['id'],'params':{'unitId':_0x185563[_0x497aba(0x8d)][_0x497aba(0xdb)],'subUnitId':_0x185563[_0x497aba(0x8d)][_0x497aba(0x20b)]}}]}:_0x55a920;}},Pi={'m1':_0x4112c4['id'],'m2':_0x4112c4['id'],'handler'(_0x3c0772,_0xab2777){const _0x3df095=_0x572182,_0x1dc136={'m1Prime':_0x3c0772,'m2Prime':_0xab2777};return _0x3c0772['params']['unitId']!==_0xab2777[_0x3df095(0x8d)]['unitId']||_0x3c0772[_0x3df095(0x8d)]['subUnitId']!==_0xab2777[_0x3df095(0x8d)][_0x3df095(0x20b)]||_0x3c0772[_0x3df095(0x8d)][_0x3df095(0x80)]!==_0xab2777[_0x3df095(0x8d)][_0x3df095(0x80)]?_0x1dc136:{'m1Prime':[],'m2Prime':[_0xab2777]};}},Ui={'m1':_0x23aded['id'],'m2':_0x224fc7['id'],'handler'(_0x49ec41,_0x6370ef){const _0x444b8a=_0x572182,_0x424e4c={'m1Prime':_0x49ec41,'m2Prime':_0x6370ef};return _0x49ec41[_0x444b8a(0x8d)][_0x444b8a(0xdb)]!==_0x6370ef[_0x444b8a(0x8d)][_0x444b8a(0xdb)]||_0x49ec41[_0x444b8a(0x8d)][_0x444b8a(0x20b)]!==_0x6370ef[_0x444b8a(0x8d)][_0x444b8a(0x20b)]?_0x424e4c:{'m1Prime':[],'m2Prime':[_0x6370ef]};}},bi={'m1':_0x23aded['id'],'m2':_0x23aded['id'],'handler'(_0x3eee81,_0x3f2910){const _0x31c092=_0x572182,_0x4b63db={'m1Prime':_0x3eee81,'m2Prime':_0x3f2910};return _0x3eee81['params'][_0x31c092(0xdb)]!==_0x3f2910[_0x31c092(0x8d)][_0x31c092(0xdb)]||_0x3eee81['params'][_0x31c092(0x20b)]!==_0x3f2910[_0x31c092(0x8d)]['subUnitId']?_0x4b63db:{'m1Prime':[],'m2Prime':[_0x3f2910]};}},Mi={'m1':_0x5a93b5['id'],'m2':_0x5a93b5['id'],'handler'(_0x19ab15,_0x362acd){const _0xb361d5=_0x572182;return _0x19ab15[_0xb361d5(0x8d)]['unitId']===_0x362acd[_0xb361d5(0x8d)]['unitId']&&_0x19ab15[_0xb361d5(0x8d)][_0xb361d5(0x20b)]===_0x362acd[_0xb361d5(0x8d)]['subUnitId']&&_0x19ab15[_0xb361d5(0x8d)][_0xb361d5(0xfe)]!==_0x362acd[_0xb361d5(0x8d)]['color']?{'error':new Error(_0xb361d5(0x11f))}:{'m1Prime':_0x19ab15,'m2Prime':_0x362acd};}},vi={'m1':_0x4cb95c['id'],'m2':_0x4cb95c['id'],'handler'(_0x2aecda,_0x3efd4f){const _0x109f0f=_0x572182,_0x43cd65={'m1Prime':_0x2aecda,'m2Prime':_0x3efd4f};if(_0x2aecda['params']['unitId']!==_0x3efd4f[_0x109f0f(0x8d)][_0x109f0f(0xdb)]||_0x2aecda[_0x109f0f(0x8d)][_0x109f0f(0x20b)]!==_0x3efd4f[_0x109f0f(0x8d)]['subUnitId'])return _0x43cd65;const _0x17b894=_0x2aecda[_0x109f0f(0x8d)]['ranges'],_0x135942=[],_0x28a037=_0x570d2f[_0x109f0f(0xb4)](_0x2aecda),_0x5e05c7=_0x3efd4f['params'][_0x109f0f(0xd1)];_0x17b894['forEach'](_0x16d828=>{const _0x21273e=_0x109f0f,_0x2dce1d={'start':_0x16d828[_0x21273e(0x15a)],'end':_0x16d828['endColumn']},_0x3fcdf7=_0x5e05c7[_0x21273e(0x1e0)](_0x325c45=>({'start':_0x325c45['startColumn'],'end':_0x325c45[_0x21273e(0x9d)]})),_0x41b38b=Ue(_0x2dce1d,_0x3fcdf7)[_0x21273e(0x1e0)](_0x2fb0a4=>({..._0x16d828,'startColumn':_0x2fb0a4[_0x21273e(0xa5)],'endColumn':_0x2fb0a4['end']}));_0x135942['push'](..._0x41b38b);}),_0x28a037[_0x109f0f(0x8d)][_0x109f0f(0xd1)]=_0x135942;const {colWidth:_0x165faf}=_0x28a037[_0x109f0f(0x8d)],{colWidth:_0x1dd745}=_0x3efd4f[_0x109f0f(0x8d)];return typeof _0x165faf!=_0x109f0f(0x1b5)&&(typeof _0x1dd745!=_0x109f0f(0x1b5)?Object['keys'](_0x1dd745)['map'](Number)[_0x109f0f(0xc5)](_0x5aaf23=>{_0x165faf[_0x5aaf23]!=null&&delete _0x165faf[_0x5aaf23];}):_0x5e05c7[_0x109f0f(0xc5)](_0x2e4039=>{const _0x2b793c=_0x109f0f;for(let _0x5f5700=_0x2e4039[_0x2b793c(0x15a)];_0x5f5700<=_0x2e4039[_0x2b793c(0x9d)];_0x5f5700++)delete _0x165faf[_0x5f5700];})),{'m1Prime':_0x28a037,'m2Prime':_0x3efd4f};}},Ei={'m1':_0x5a5428['id'],'m2':_0x5a5428['id'],'handler'(_0x304fe6,_0x2348e4){const _0x12af73=_0x572182,_0x2e0b99={'m1Prime':_0x304fe6,'m2Prime':_0x2348e4};return _0x304fe6[_0x12af73(0x8d)]['unitId']!==_0x2348e4[_0x12af73(0x8d)][_0x12af73(0xdb)]||_0x304fe6['params']['subUnitId']!==_0x2348e4[_0x12af73(0x8d)][_0x12af73(0x20b)]?_0x2e0b99:{'error':new Error('Two\x20set-worksheet-name\x20mutations\x20have\x20conflict.')};}},Si={'m1':_0x5357b7['id'],'m2':_0x5357b7['id'],'handler'(_0x38e47e,_0x4a9453){const _0xd42668=_0x572182,_0x13830b={'m1Prime':_0x38e47e,'m2Prime':_0x4a9453};if(_0x38e47e[_0xd42668(0x8d)][_0xd42668(0xdb)]!==_0x4a9453[_0xd42668(0x8d)][_0xd42668(0xdb)]||_0x38e47e['params'][_0xd42668(0x20b)]!==_0x4a9453[_0xd42668(0x8d)]['subUnitId'])return _0x13830b;const _0x2b8063=_0x38e47e[_0xd42668(0x8d)][_0xd42668(0x1a9)],_0x4d63c0=[],_0x57ba46=_0x570d2f['deepClone'](_0x38e47e),_0x2d00be=_0x4a9453[_0xd42668(0x8d)][_0xd42668(0x1a9)];return _0x2b8063[_0xd42668(0xc5)](_0x195980=>{const _0x26195b=_0xd42668;_0x2d00be['find'](_0x1f524a=>_0x1f524a[_0x26195b(0x1cb)]===_0x195980[_0x26195b(0x1cb)])||_0x4d63c0[_0x26195b(0x1ca)](_0x195980);}),_0x57ba46[_0xd42668(0x8d)]['rowsAutoHeightInfo']=_0x4d63c0,{'m1Prime':_0x57ba46,'m2Prime':_0x4a9453};}},Wi={'m1':_0xdb3bc1['id'],'m2':_0xdb3bc1['id'],'handler'(_0x4aae22,_0x52b398){const _0x4b9a67=_0x572182,_0x223e9b={'m1Prime':_0x4aae22,'m2Prime':_0x52b398};if(_0x4aae22[_0x4b9a67(0x8d)][_0x4b9a67(0xdb)]!==_0x52b398[_0x4b9a67(0x8d)][_0x4b9a67(0xdb)]||_0x4aae22['params']['subUnitId']!==_0x52b398[_0x4b9a67(0x8d)][_0x4b9a67(0x20b)])return _0x223e9b;const _0x47a9b9=_0x4aae22['params'][_0x4b9a67(0xd1)],_0xcd4677=[],_0x4f9a08=_0x570d2f[_0x4b9a67(0xb4)](_0x4aae22),_0x7e076c=_0x52b398['params'][_0x4b9a67(0xd1)];_0x47a9b9[_0x4b9a67(0xc5)](_0x493592=>{const _0x4ce219=_0x4b9a67,_0x5a1a86={'start':_0x493592[_0x4ce219(0x102)],'end':_0x493592['endRow']},_0xcd4c4d=_0x7e076c['map'](_0x4e84c6=>({'start':_0x4e84c6[_0x4ce219(0x102)],'end':_0x4e84c6[_0x4ce219(0x111)]})),_0x4c8f75=Ue(_0x5a1a86,_0xcd4c4d)['map'](_0x5f4467=>({..._0x493592,'startRow':_0x5f4467['start'],'endRow':_0x5f4467[_0x4ce219(0x1c4)]}));_0xcd4677['push'](..._0x4c8f75);}),_0x4f9a08[_0x4b9a67(0x8d)][_0x4b9a67(0xd1)]=_0xcd4677;const {rowHeight:_0x1aaca9}=_0x4f9a08[_0x4b9a67(0x8d)],{rowHeight:_0x309110}=_0x52b398[_0x4b9a67(0x8d)];return typeof _0x1aaca9!=_0x4b9a67(0x1b5)&&(typeof _0x309110!='number'?Object[_0x4b9a67(0xab)](_0x309110)[_0x4b9a67(0x1e0)](Number)[_0x4b9a67(0xc5)](_0x1fdd9f=>{_0x1aaca9[_0x1fdd9f]!=null&&delete _0x1aaca9[_0x1fdd9f];}):_0x7e076c['forEach'](_0x174dc4=>{const _0x177663=_0x4b9a67;for(let _0xf84a65=_0x174dc4[_0x177663(0x102)];_0xf84a65<=_0x174dc4[_0x177663(0x111)];_0xf84a65++)delete _0x1aaca9[_0xf84a65];})),{'m1Prime':_0x4f9a08,'m2Prime':_0x52b398};}},Vi={'m1':_0x386b55['id'],'m2':_0x386b55['id'],'handler'(_0x1e459f,_0x53d24a){const _0x4a592f=_0x572182,_0x1a878a={'m1Prime':_0x1e459f,'m2Prime':_0x53d24a};if(_0x1e459f[_0x4a592f(0x8d)][_0x4a592f(0xdb)]!==_0x53d24a['params'][_0x4a592f(0xdb)]||_0x1e459f[_0x4a592f(0x8d)]['subUnitId']!==_0x53d24a[_0x4a592f(0x8d)][_0x4a592f(0x20b)])return _0x1a878a;const _0x3e299c=_0x1e459f[_0x4a592f(0x8d)]['ranges'],_0x22a4e5=[],_0x4f22ff=_0x570d2f['deepClone'](_0x1e459f),_0x3d07d3=_0x53d24a['params'][_0x4a592f(0xd1)];_0x3e299c[_0x4a592f(0xc5)](_0x2c191e=>{const _0x537d29=_0x4a592f,_0xfc1b51={'start':_0x2c191e[_0x537d29(0x102)],'end':_0x2c191e[_0x537d29(0x111)]},_0x26fb61=_0x3d07d3[_0x537d29(0x1e0)](_0x9bef6a=>({'start':_0x9bef6a[_0x537d29(0x102)],'end':_0x9bef6a[_0x537d29(0x111)]})),_0x5cee13=Ue(_0xfc1b51,_0x26fb61)[_0x537d29(0x1e0)](_0x3afa20=>({..._0x2c191e,'startRow':_0x3afa20['start'],'endRow':_0x3afa20[_0x537d29(0x1c4)]}));_0x22a4e5[_0x537d29(0x1ca)](..._0x5cee13);}),_0x4f22ff[_0x4a592f(0x8d)][_0x4a592f(0xd1)]=_0x22a4e5;const {autoHeightInfo:_0x43185a}=_0x4f22ff['params'],{autoHeightInfo:_0x59ad5d}=_0x53d24a['params'];return typeof _0x43185a!=_0x4a592f(0x1b5)&&(typeof _0x59ad5d!=_0x4a592f(0x1b5)?Object[_0x4a592f(0xab)](_0x59ad5d)[_0x4a592f(0x1e0)](Number)['forEach'](_0x1a5f0c=>{_0x43185a[_0x1a5f0c]!=null&&delete _0x43185a[_0x1a5f0c];}):_0x3d07d3[_0x4a592f(0xc5)](_0x3a0483=>{const _0x35c8ee=_0x4a592f;for(let _0x61154c=_0x3a0483['startRow'];_0x61154c<=_0x3a0483[_0x35c8ee(0x111)];_0x61154c++)delete _0x43185a[_0x61154c];})),{'m1Prime':_0x4f22ff,'m2Prime':_0x53d24a};}},_i={'m1':_0x2c3db1['id'],'m2':_0x2c3db1['id'],'handler':(_0x1040c4,_0x24dd1d)=>{const _0xdea2e7=_0x572182,_0x7166c=_0x1040c4[_0xdea2e7(0x8d)],_0x44a99b=_0x24dd1d[_0xdea2e7(0x8d)];return _0x7166c[_0xdea2e7(0xdb)]===_0x44a99b[_0xdea2e7(0xdb)]&&_0x7166c[_0xdea2e7(0x20b)]===_0x44a99b[_0xdea2e7(0x20b)]&&_0x7166c[_0xdea2e7(0x176)][_0xdea2e7(0xf8)]===_0x44a99b['payload']['commentId']?{'m1Prime':[],'m2Prime':_0x24dd1d}:{'m1Prime':_0x1040c4,'m2Prime':_0x24dd1d};}},Oi={'m1':_0x2afd0c['id'],'m2':_0x2afd0c['id'],'handler':(_0x42c59b,_0x22dea8)=>{const _0x4df1b7=_0x572182,_0xbbc742=_0x42c59b['params'],_0x1d9210=_0x22dea8['params'];return _0xbbc742[_0x4df1b7(0xdb)]===_0x1d9210[_0x4df1b7(0xdb)]&&_0xbbc742[_0x4df1b7(0x20b)]===_0x1d9210[_0x4df1b7(0x20b)]&&_0xbbc742[_0x4df1b7(0x176)]['commentId']===_0x1d9210['payload'][_0x4df1b7(0xf8)]?{'m1Prime':[],'m2Prime':_0x22dea8}:{'m1Prime':_0x42c59b,'m2Prime':_0x22dea8};}},yi={'m1':_0x4e1baf['id'],'m2':_0x3bedd8['id'],'handler':(_0x4dea4d,_0x2c360c)=>{const _0x50f728=_0x572182,_0x1fb929={'m1Prime':_0x4dea4d,'m2Prime':_0x2c360c},_0x56cf56=_0x4dea4d[_0x50f728(0x8d)],_0x422f39=_0x2c360c['params'];if(_0x56cf56[_0x50f728(0xdb)]!==_0x422f39[_0x50f728(0xdb)]||_0x56cf56[_0x50f728(0x20b)]!==_0x422f39[_0x50f728(0x20b)])return _0x1fb929;if(_0x4dea4d[_0x50f728(0x8d)][_0x50f728(0x176)][_0x50f728(0x120)]===_0x4e3a21[_0x50f728(0x94)]){const {unitId:_0x365803,subUnitId:_0x21e016}=_0x4dea4d[_0x50f728(0x8d)],_0x5c50fc=Array['isArray'](_0x2c360c[_0x50f728(0x8d)]['rule'])?_0x2c360c['params'][_0x50f728(0xea)]:[_0x2c360c['params'][_0x50f728(0xea)]],_0x39f825=[],_0x114639=new _0x1f7bb9(),_0x35c292=_0x4dea4d[_0x50f728(0x8d)][_0x50f728(0x176)][_0x50f728(0x176)];_0x35c292['forEach'](_0x370bd2=>{const _0x1d92a3=_0x50f728;_0x563f2d[_0x1d92a3(0x1f3)](_0x370bd2,(_0x465429,_0x539830)=>{const _0x505848=_0x1d92a3;_0x114639[_0x505848(0x134)](_0x465429,_0x539830,_0x4dea4d[_0x505848(0x8d)][_0x505848(0x103)]);});}),_0x5c50fc[_0x50f728(0xc5)](_0xf0a44f=>{const _0x789ef8=_0x50f728;_0xf0a44f[_0x789ef8(0xd1)][_0x789ef8(0xc5)](_0x2b23b9=>{const _0x594ff9=_0x789ef8;_0x563f2d[_0x594ff9(0x1f3)](_0x2b23b9,(_0x2a28a0,_0x8302d8)=>{const _0x5c0101=_0x594ff9;_0x114639[_0x5c0101(0x134)](_0x2a28a0,_0x8302d8,_0xf0a44f[_0x5c0101(0x96)]);});});});const _0x183dd4=_0x4dea4d[_0x50f728(0x8d)]['ruleId'],_0x3dcc94=_0x2de447(_0x114639,_0x2597c9=>_0x2597c9===_0x183dd4);return _0x592f19(_0x3dcc94,_0x35c292)||(_0x3dcc94[_0x50f728(0xf6)]?_0x39f825[_0x50f728(0x1ca)]({'id':_0x4e1baf['id'],'params':{'unitId':_0x365803,'subUnitId':_0x21e016,'ruleId':_0x183dd4,'payload':{'type':_0x4e3a21[_0x50f728(0x94)],'payload':_0x3dcc94}}}):_0x39f825[_0x50f728(0x1ca)]({'id':_0x13693a['id'],'params':{'unitId':_0x365803,'subUnitId':_0x21e016,'ruleId':_0x183dd4}})),{'m1Prime':_0x39f825[_0x50f728(0xf6)]?_0x39f825:[_0x4dea4d],'m2Prime':[..._0x39f825,_0x2c360c]};}return _0x1fb929;}},Ni={'m1':_0x4e1baf['id'],'m2':_0x13693a['id'],'handler':(_0x35b82d,_0x327090)=>{const _0x277ccf=_0x572182,_0x496ea1={'m1Prime':_0x35b82d,'m2Prime':_0x327090};if(_0x35b82d[_0x277ccf(0x8d)][_0x277ccf(0xdb)]!==_0x327090[_0x277ccf(0x8d)][_0x277ccf(0xdb)]||_0x35b82d[_0x277ccf(0x8d)][_0x277ccf(0x20b)]!==_0x327090[_0x277ccf(0x8d)]['subUnitId'])return _0x496ea1;const _0x5919c6=_0x35b82d['params'][_0x277ccf(0x103)];return(Array[_0x277ccf(0x16c)](_0x327090[_0x277ccf(0x8d)][_0x277ccf(0x103)])?_0x327090[_0x277ccf(0x8d)][_0x277ccf(0x103)]:[_0x327090[_0x277ccf(0x8d)][_0x277ccf(0x103)]])[_0x277ccf(0xf1)](_0x5919c6)>-0x1?{'m1Prime':[],'m2Prime':_0x327090}:_0x496ea1;}},Di={'m1':_0x4e1baf['id'],'m2':_0x4e1baf['id'],'handler':(_0x44b5e2,_0x1c989f)=>{const _0x5def79=_0x572182,_0x5b2558={'m1Prime':_0x44b5e2,'m2Prime':_0x1c989f},_0x272b06=_0x44b5e2[_0x5def79(0x8d)],_0x20cddf=_0x1c989f[_0x5def79(0x8d)];if(_0x272b06['unitId']===_0x20cddf[_0x5def79(0xdb)]&&_0x272b06[_0x5def79(0x20b)]===_0x20cddf[_0x5def79(0x20b)]){const _0x31693c=_0x570d2f['deepClone'](_0x1c989f);if(_0x20cddf[_0x5def79(0x103)]===_0x272b06[_0x5def79(0x103)]&&_0x272b06[_0x5def79(0x176)][_0x5def79(0x120)]===_0x20cddf[_0x5def79(0x176)]['type'])return _0x272b06[_0x5def79(0x176)]['type']===_0x4e3a21[_0x5def79(0x94)]&&!_0x592f19(_0x272b06[_0x5def79(0x176)][_0x5def79(0x176)],_0x20cddf[_0x5def79(0x176)][_0x5def79(0x176)])?{'error':new Error(_0x5def79(0x19c))}:{'m1Prime':[],'m2Prime':_0x31693c};if(_0x272b06[_0x5def79(0x176)]['type']===_0x4e3a21[_0x5def79(0x94)]&&_0x20cddf[_0x5def79(0x176)][_0x5def79(0x120)]===_0x4e3a21['RANGE']&&_0x20cddf['ruleId']!==_0x272b06[_0x5def79(0x103)]){let _0x25e3ca=function(_0x1de243,_0x1ee321){const _0xf9acd1=_0x5def79;_0x1de243[_0xf9acd1(0xc5)](_0x114ef2=>{_0x563f2d['foreach'](_0x114ef2,(_0x4e3c0d,_0x3d4489)=>{_0x1ed9b1['setValue'](_0x4e3c0d,_0x3d4489,_0x1ee321);});});};const _0x1ed9b1=new _0x1f7bb9();_0x25e3ca(_0x272b06['payload'][_0x5def79(0x176)],_0x272b06[_0x5def79(0x103)]),_0x25e3ca(_0x20cddf[_0x5def79(0x176)][_0x5def79(0x176)],_0x20cddf[_0x5def79(0x103)]);const _0x9e033=_0x2de447(_0x1ed9b1,_0x1b2b87=>_0x1b2b87===_0x272b06[_0x5def79(0x103)]),_0x1a8def=!_0x592f19(_0x272b06[_0x5def79(0x176)][_0x5def79(0x176)],_0x9e033)?_0x9e033[_0x5def79(0xf6)]?[{'id':_0x4e1baf['id'],'params':{..._0x272b06,'payload':{'type':_0x4e3a21[_0x5def79(0x94)],'payload':_0x9e033}}}]:[{'id':_0x13693a['id'],'params':{..._0x272b06,'payload':void 0x0}}]:[];return{'m1Prime':[_0x44b5e2],'m2Prime':[..._0x1a8def,_0x1c989f]};}}return _0x5b2558;}},Ai={'m1':_0x4325f9['id'],'m2':_0x4325f9['id'],'handler':(_0x24858a,_0xf1fd5a)=>{const _0x286f29=_0x572182,_0x132a74=_0x24858a[_0x286f29(0x8d)],_0x762810=_0xf1fd5a[_0x286f29(0x8d)];return _0x132a74[_0x286f29(0xdb)]===_0x762810[_0x286f29(0xdb)]&&_0x132a74[_0x286f29(0x20b)]===_0x762810[_0x286f29(0x20b)]&&_0x132a74['id']===_0x762810['id']?{'m2Prime':_0xf1fd5a,'m1Prime':[]}:{'m1Prime':_0x24858a,'m2Prime':_0xf1fd5a};}},Ti={'m1':_0x3ece39['id'],'m2':_0x3ece39['id'],'handler':(_0x2e9dc5,_0x4e1ff1)=>{const _0x1a4d95=_0x572182,_0xc6a41b=_0x2e9dc5[_0x1a4d95(0x8d)],_0x34be52=_0x4e1ff1[_0x1a4d95(0x8d)];return _0xc6a41b[_0x1a4d95(0xdb)]===_0x34be52[_0x1a4d95(0xdb)]&&_0xc6a41b[_0x1a4d95(0x20b)]===_0x34be52[_0x1a4d95(0x20b)]&&_0xc6a41b['id']===_0x34be52['id']?{'m2Prime':_0x4e1ff1,'m1Prime':[]}:{'m1Prime':_0x2e9dc5,'m2Prime':_0x4e1ff1};}},Li={'m1':_0x2df765['id'],'m2':_0x4b0a3e['id'],'handler'(_0x2a221a,_0x1014fe){const _0x2d02d6=_0x572182,_0x46f62c=_0x570d2f[_0x2d02d6(0xb4)](_0x1014fe);return _0x2a221a[_0x2d02d6(0x8d)][_0x2d02d6(0x20b)]!==_0x1014fe[_0x2d02d6(0x8d)][_0x2d02d6(0x20b)]||_0x2a221a[_0x2d02d6(0x8d)]['unitId']!==_0x1014fe[_0x2d02d6(0x8d)]['unitId']?{'m1Prime':_0x2a221a,'m2Prime':_0x46f62c}:(_0x46f62c['id']=_0x1a62da['id'],{'m1Prime':_0x2a221a,'m2Prime':_0x46f62c});}},ki={'m1':_0x2df765['id'],'m2':_0x3c47fd['id'],'handler'(_0x3c1908,_0x149ce4){const _0x2becd2=_0x572182,_0x3ce4e=_0x570d2f[_0x2becd2(0xb4)](_0x149ce4);return _0x3c1908['params']['subUnitId']!==_0x149ce4['params'][_0x2becd2(0x20b)]||_0x3c1908[_0x2becd2(0x8d)][_0x2becd2(0xdb)]!==_0x149ce4[_0x2becd2(0x8d)][_0x2becd2(0xdb)]?{'m1Prime':_0x3c1908,'m2Prime':_0x3ce4e}:(_0x3ce4e['id']=_0x1a62da['id'],{'m1Prime':_0x3c1908,'m2Prime':_0x3ce4e});}},xi={'m1':_0x4189f4['id'],'m2':_0x4189f4['id'],'handler'(_0x4d3326,_0x59d6c4){const _0x4a42ba=_0x572182;if(_0x4d3326['params'][_0x4a42ba(0x168)]['id']===_0x59d6c4[_0x4a42ba(0x8d)][_0x4a42ba(0x168)]['id'])return{'error':new Error(_0x4a42ba(0x1ac))};const _0x4fc955=_0x570d2f[_0x4a42ba(0xb4)](_0x4d3326),_0x205236=_0x570d2f['deepClone'](_0x59d6c4);return _0x4fc955[_0x4a42ba(0x8d)][_0x4a42ba(0x17b)]<=_0x205236[_0x4a42ba(0x8d)]['index']?_0x205236[_0x4a42ba(0x8d)][_0x4a42ba(0x17b)]+=0x1:_0x4fc955['params'][_0x4a42ba(0x17b)]>_0x205236[_0x4a42ba(0x8d)][_0x4a42ba(0x17b)]&&(_0x4fc955[_0x4a42ba(0x8d)]['index']+=0x1),_0x4d3326['params'][_0x4a42ba(0x168)][_0x4a42ba(0x1a0)]===_0x59d6c4['params']['sheet'][_0x4a42ba(0x1a0)]?{'error':new Error('Two\x20mutation\x20have\x20the\x20same\x20worksheet\x20name!')}:{'m1Prime':_0x4fc955,'m2Prime':_0x205236};}},Hi={'m1':_0x2df765['id'],'m2':_0x572182(0x131),'handler'(_0x1aac5a,_0x4f5664){const _0x32e3da=_0x572182;var _0x29da8d;return _0x1aac5a['params'][_0x32e3da(0x20b)]===((_0x29da8d=_0x4f5664[_0x32e3da(0x8d)])==null?void 0x0:_0x29da8d[_0x32e3da(0x20b)])&&_0x1aac5a['id']!==_0x4f5664['id']?{'error':new Error(_0x32e3da(0x1e8))}:{'m1Prime':_0x1aac5a,'m2Prime':_0x4f5664};}},Fi={'m1':_0xdfc809['id'],'m2':_0xdfc809['id'],'handler'(_0x2a6279,_0x184a35){const _0x2f97a2=_0x572182,_0x3a730e=_0x570d2f['deepClone'](_0x2a6279),_0x4242d9=_0x570d2f[_0x2f97a2(0xb4)](_0x184a35),_0x20d70d={'error':new Error(_0x2f97a2(0x8a))};if(_0x2a6279[_0x2f97a2(0x8d)][_0x2f97a2(0xd8)]===_0x184a35[_0x2f97a2(0x8d)]['fromOrder'])_0x3a730e['id']=_0x1a62da['id'],_0x4242d9[_0x2f97a2(0x8d)]['fromOrder']=_0x2a6279[_0x2f97a2(0x8d)][_0x2f97a2(0x1d1)];else{_0x2a6279[_0x2f97a2(0x8d)][_0x2f97a2(0xd8)]===_0x2a6279['params']['toOrder']&&(_0x3a730e['id']=_0x1a62da['id']),_0x184a35[_0x2f97a2(0x8d)][_0x2f97a2(0xd8)]===_0x184a35[_0x2f97a2(0x8d)]['toOrder']&&(_0x4242d9['id']=_0x1a62da['id']);const _0x17a334=[Math[_0x2f97a2(0x126)](_0x2a6279[_0x2f97a2(0x8d)][_0x2f97a2(0xd8)],_0x2a6279[_0x2f97a2(0x8d)][_0x2f97a2(0x1d1)]),Math[_0x2f97a2(0xed)](_0x2a6279[_0x2f97a2(0x8d)][_0x2f97a2(0xd8)],_0x2a6279[_0x2f97a2(0x8d)]['toOrder'])],_0x3d25e7=[Math[_0x2f97a2(0x126)](_0x184a35[_0x2f97a2(0x8d)]['fromOrder'],_0x184a35[_0x2f97a2(0x8d)][_0x2f97a2(0x1d1)]),Math[_0x2f97a2(0xed)](_0x184a35[_0x2f97a2(0x8d)][_0x2f97a2(0xd8)],_0x184a35['params']['toOrder'])];if(_0x17a334[0x0]<=_0x3d25e7[0x1]&&_0x17a334[0x1]>=_0x3d25e7[0x0])return _0x20d70d;}return{'m1Prime':_0x3a730e,'m2Prime':_0x4242d9};}},Bi={'m1':_0x4189f4['id'],'m2':_0xdfc809['id'],'handler'(_0x37182b,_0x83a26){const _0x23b685=_0x572182,_0x3033ba=_0x570d2f[_0x23b685(0xb4)](_0x37182b),_0x566cf7=_0x570d2f[_0x23b685(0xb4)](_0x83a26);return _0x37182b['params'][_0x23b685(0x17b)]<=_0x83a26[_0x23b685(0x8d)][_0x23b685(0x13f)]&&(_0x566cf7[_0x23b685(0x8d)][_0x23b685(0x13f)]+=0x1),{'m1Prime':_0x3033ba,'m2Prime':_0x566cf7};}},Gi={'m1':_0x572182(0x131),'m2':_0x2df765['id'],'handler'(_0x605b6c,_0x35c68){return{'m1Prime':_0x605b6c,'m2Prime':_0x35c68};}},ji=[xi,Bi,Hi,Gi,Fi];var $i=Object[_0x572182(0x116)],Yi=Object[_0x572182(0x173)],Ji=(_0x53f6ac,_0x1e0a3a,_0x506ab3,_0x3e2494)=>{const _0x399105=_0x572182;for(var _0x109e2c=_0x3e2494>0x1?void 0x0:_0x3e2494?Yi(_0x1e0a3a,_0x506ab3):_0x1e0a3a,_0x31a0e3=_0x53f6ac[_0x399105(0xf6)]-0x1,_0x292de0;_0x31a0e3>=0x0;_0x31a0e3--)(_0x292de0=_0x53f6ac[_0x31a0e3])&&(_0x109e2c=(_0x3e2494?_0x292de0(_0x1e0a3a,_0x506ab3,_0x109e2c):_0x292de0(_0x109e2c))||_0x109e2c);return _0x3e2494&&_0x109e2c&&$i(_0x1e0a3a,_0x506ab3,_0x109e2c),_0x109e2c;},Xi=(_0x12ddb5,_0x3a4cec)=>(_0x156358,_0x922691)=>_0x3a4cec(_0x156358,_0x922691,_0x12ddb5);let Bt=class extends _0x522e72{constructor(_0x571e6f){const _0x306974=_0x572182;super(),this[_0x306974(0x1f4)]=_0x571e6f,[...ji,Zn,Qn,ta,ea,ma,sa,oa,ia,pa,da,ra,ua,wa,Ca,Pa,ba,Sa,Na,Da,Aa,Wa,Va,_a,Ea,Ua,Oa,Ha,Ka,Fa,$a,Ya,Ja,Qa,Xa,za,Ba,ls,gs,us,bs,Ms,vs,Is,ws,Cs,hs,cs,Ps,ns,os,as,Ns,Os,ys,Fs,Ls,ks,xs,$s,Hs,Ds,Bs,ao,ro,eo,uo,ho,go,Io,lo,co,po,mo,no,fo,hi,fi,Ei,Fo,Mi,vi,Si,Wi,Vi,gi,Do,Go,Bo,zs,qs,xr,Ao,es,Yn,Hr,Di,Xs,Kn,ds,zn,Vs,Qs,Ra,Ss,ha,La,Js,Co,Fr,yi,Ni,la,ca,ya,qa,Za,Us,Gs,js,Ro,Pi,wi,Ci,Ii,bi,Ui,fn,rr,qn,nr,Ia,ar,xa,or,ms,sr,rs,ir,_s,dr,to,mr,pi,Rn,Li,na,Ma,Ga,ps,As,so,ki,Po,bo,Uo,Mo,vo,Eo,So,hn,Wo,kr,jn,$n,Oi,_i,Jn,ga,ka,is,Ws,Zs,fa,Ta,ts,Es,Ys,wo,Br,Ks,Ai,Ti,Gr,jr,$r,Yr,Jr,Xr,Kr,zr,qr,Zr,Qr,tn,en,rn,nn,an,sn,on,dn,mn,un,ln,cn,pn,jo,$o,Yo,Jo,Xo,Ko,zo,qo,Zo,Qo,ti,ri,ei,ni,ai,si,oi,ii,di,mi,ui,li,ci,gn,In,wn,Cn,Pn,Un,bn,Mn,vn,En,Wn,Sn,Vn,yn,_n,On,An,Nn,Dn,Tn,Ln,kn,xn,Hn,Fn,Bn,Gn,va,aa,oo,Ts,fs,ja,ss,Ri,Oo,Ho,No,yo][_0x306974(0xc5)](_0x3490ab=>{const _0x3158d7=_0x306974;this['_transformService'][_0x3158d7(0x1e9)](_0x3490ab);});}};Bt=Ji([Xi(0x0,Pe)],Bt);function Ki(_0x58feb0,_0x33c8c5){const _0x3a8682=_0x572182;if(!Array[_0x3a8682(0x16c)](_0x58feb0))return;const _0x59d813=_0x58feb0['indexOf'](_0x3a8682(0x133))>-0x1?_0x58feb0:_0x58feb0[_0x3a8682(0xa1)](_0x20d1ed=>Array[_0x3a8682(0x16c)](_0x20d1ed)&&_0x20d1ed['indexOf']('body')>-0x1);if(!Array['isArray'](_0x59d813))return;const _0x40c2d3=_0x59d813[_0x3a8682(0xf1)]('body');if(!(_0x40c2d3===-0x1||(_0x40c2d3===0x0?'':_0x59d813[_0x40c2d3-0x1])!==_0x33c8c5))return _0x59d813[_0x3a8682(0x1a8)](_0x40c2d3);}function He(_0x230a7f,_0x6244ca,_0x592354=_0x572182(0x200)){const _0x5525cd=_0x572182;if(_0x6244ca['length']===0x0)return[];const {segmentId:_0x126824}=_0x6244ca[0x0];if(_0x126824==null)return _0x6244ca;const _0x153868=Ki(_0x230a7f,_0x126824);if(_0x153868==null)return _0x6244ca;const _0x233795=[];for(const _0x5d25ef of _0x6244ca){const _0x296b2=_0x430aeb[_0x5525cd(0x158)](_0x153868,_0x5d25ef[_0x5525cd(0x219)],_0x592354),_0x4f9708=_0x430aeb[_0x5525cd(0x158)](_0x153868,_0x5d25ef['endOffset'],_0x592354),_0x262850={..._0x5d25ef,'startOffset':_0x296b2,'endOffset':_0x4f9708,'collapsed':_0x296b2===_0x4f9708};_0x233795[_0x5525cd(0x1ca)](_0x262850);}return _0x233795;}const zi={'m1':_0x5bfddc['id'],'m2':_0x5bfddc['id'],'handler'(_0x23d266,_0xcc2ab1){const _0x18d5c5=_0x572182;if(_0x23d266[_0x18d5c5(0x8d)]['unitId']!==_0xcc2ab1[_0x18d5c5(0x8d)][_0x18d5c5(0xdb)])return{'error':new Error(_0x18d5c5(0x18b))};const _0x5234bd=_0x570d2f[_0x18d5c5(0xb4)](_0x23d266),_0xfad8f6=_0x570d2f[_0x18d5c5(0xb4)](_0xcc2ab1);return{'m1Prime':{..._0x5234bd,'params':{..._0x5234bd[_0x18d5c5(0x8d)],'actions':_0x430aeb[_0x18d5c5(0xf5)](_0x5234bd['params'][_0x18d5c5(0x109)],_0xfad8f6[_0x18d5c5(0x8d)]['actions'],_0x18d5c5(0x161)),'textRanges':_0x5234bd['params'][_0x18d5c5(0x142)]?He(_0xfad8f6['params'][_0x18d5c5(0x109)],_0x5234bd[_0x18d5c5(0x8d)][_0x18d5c5(0x142)],'right'):null}},'m2Prime':{..._0xfad8f6,'params':{..._0xfad8f6[_0x18d5c5(0x8d)],'actions':_0x430aeb[_0x18d5c5(0xf5)](_0xfad8f6[_0x18d5c5(0x8d)][_0x18d5c5(0x109)],_0x5234bd[_0x18d5c5(0x8d)][_0x18d5c5(0x109)],'right'),'textRanges':_0xfad8f6[_0x18d5c5(0x8d)]['textRanges']?He(_0x5234bd[_0x18d5c5(0x8d)][_0x18d5c5(0x109)],_0xfad8f6[_0x18d5c5(0x8d)][_0x18d5c5(0x142)],_0x18d5c5(0x200)):null}}};}},qi=[zi];var Zi=Object[_0x572182(0x116)],Qi=Object[_0x572182(0x173)],td=(_0x3b7ac4,_0x5ec69b,_0x880bf1,_0x3ab7b5)=>{for(var _0x62b3b2=_0x3ab7b5>0x1?void 0x0:_0x3ab7b5?Qi(_0x5ec69b,_0x880bf1):_0x5ec69b,_0x13255c=_0x3b7ac4['length']-0x1,_0x12415a;_0x13255c>=0x0;_0x13255c--)(_0x12415a=_0x3b7ac4[_0x13255c])&&(_0x62b3b2=(_0x3ab7b5?_0x12415a(_0x5ec69b,_0x880bf1,_0x62b3b2):_0x12415a(_0x62b3b2))||_0x62b3b2);return _0x3ab7b5&&_0x62b3b2&&Zi(_0x5ec69b,_0x880bf1,_0x62b3b2),_0x62b3b2;},ed=(_0x23d57c,_0x386831)=>(_0x20310c,_0x3a1e96)=>_0x386831(_0x20310c,_0x3a1e96,_0x23d57c);let Gt=class extends _0x522e72{constructor(_0x570f59){super(),this['_transformService']=_0x570f59,[...qi]['forEach'](_0x1e8d89=>{const _0x492eb3=_0x2b5d;this[_0x492eb3(0x1f4)]['registerTransformAlgorithm'](_0x1e8d89);});}};Gt=td([ed(0x0,Pe)],Gt);function tm(_0x2ac54d){return{..._0x2ac54d,'mutations':_0x2ac54d['mutations']['map'](rd)};}function em(_0x157f27){const _0x4128a5=_0x572182;return _0x157f27[_0x4128a5(0x1e0)](_0x4b64f5=>({'id':_0x4b64f5['id'],'params':JSON[_0x4128a5(0x1bb)](_0x4b64f5[_0x4128a5(0x8b)])}));}function rm(_0x3b62d6){const _0x5777ef=_0x572182;return{..._0x3b62d6,'mutations':_0x3b62d6[_0x5777ef(0x1d6)]['map'](nd)};}function rd(_0x41a58e){const _0x34c74d=_0x572182;return{'id':_0x41a58e['id'],'params':JSON[_0x34c74d(0x1bb)](_0x41a58e[_0x34c74d(0x8b)])};}function nd(_0x26aab1){const _0x323911=_0x572182;return{'id':_0x26aab1['id'],'data':JSON[_0x323911(0x7d)](_0x26aab1[_0x323911(0x8d)])};}var ad=(_0x3754eb=>(_0x3754eb[_0x572182(0xd0)]=_0x572182(0x170),_0x3754eb[_0x572182(0x91)]='pseudo_fetch_missing_result',_0x3754eb[_0x572182(0xdf)]=_0x572182(0xdc),_0x3754eb[_0x572182(0x85)]=_0x572182(0xfb),_0x3754eb[_0x572182(0x1f0)]=_0x572182(0x201),_0x3754eb['CHANGESET_SHOULD_RETRY']='changeset_should_retry',_0x3754eb[_0x572182(0x112)]=_0x572182(0x100),_0x3754eb[_0x572182(0x192)]=_0x572182(0x179),_0x3754eb[_0x572182(0x1a7)]=_0x572182(0x1b2),_0x3754eb[_0x572182(0x1a4)]=_0x572182(0xa7),_0x3754eb[_0x572182(0x12b)]='unit_delete',_0x3754eb['LIVESHARE_REQUEST_HOST']=_0x572182(0x81),_0x3754eb[_0x572182(0x16f)]='liveshare.new_host',_0x3754eb['LIVESHARE_OPERATION']=_0x572182(0x1cc),_0x3754eb[_0x572182(0x194)]=_0x572182(0x17c),_0x3754eb['LIVESHARE_TERMINATE']=_0x572182(0x18e),_0x3754eb[_0x572182(0xda)]=_0x572182(0x150),_0x3754eb[_0x572182(0x198)]=_0x572182(0x16e),_0x3754eb[_0x572182(0x209)]=_0x572182(0x163),_0x3754eb['UPDATE_PERMISSION_OBJ']=_0x572182(0x151),_0x3754eb[_0x572182(0xd9)]=_0x572182(0x183),_0x3754eb))(ad||{});const sd=_0x572182(0x113),od={};var id=Object['defineProperty'],dd=Object['getOwnPropertyDescriptor'],md=(_0x4e2317,_0x94f1f4,_0x52a32a,_0x13e6f7)=>{const _0x9f1cd6=_0x572182;for(var _0x4943bc=_0x13e6f7>0x1?void 0x0:_0x13e6f7?dd(_0x94f1f4,_0x52a32a):_0x94f1f4,_0x537068=_0x4e2317[_0x9f1cd6(0xf6)]-0x1,_0x47a9d0;_0x537068>=0x0;_0x537068--)(_0x47a9d0=_0x4e2317[_0x537068])&&(_0x4943bc=(_0x13e6f7?_0x47a9d0(_0x94f1f4,_0x52a32a,_0x4943bc):_0x47a9d0(_0x4943bc))||_0x4943bc);return _0x13e6f7&&_0x4943bc&&id(_0x94f1f4,_0x52a32a,_0x4943bc),_0x4943bc;},ud=(_0x102f9d,_0x209b11)=>(_0x100e38,_0x4eb618)=>_0x209b11(_0x100e38,_0x4eb618,_0x102f9d);let jt=class extends _0x522e72{constructor(_0x5c086c){const _0x2e45df=_0x572182;super(),this[_0x2e45df(0xc0)]=_0x5c086c,[re][_0x2e45df(0xc5)](_0x4f9480=>this[_0x2e45df(0xc0)][_0x2e45df(0x139)](_0x4f9480));}};jt=md([ud(0x0,_0x29be17)],jt);const ld=_0x2a5c88=>{const _0x350c58=_0x572182,_0x237c62={};if(!_0x2a5c88)return{'cellValue':_0x2a5c88,'styleRefMap':void 0x0};const _0x98b27e=[];return{'cellValue':new _0x1f7bb9(_0x570d2f[_0x350c58(0xb4)](_0x2a5c88))['forValue']((_0x3e366b,_0x2cc0b1,_0x4496da)=>{const _0x2f7065=_0x350c58,_0x529d62=_0x4496da&&_0x4496da['s'];if(_0x529d62&&typeof _0x529d62===_0x2f7065(0xde)){const _0x59770a=JSON[_0x2f7065(0x7d)](_0x529d62),_0x2b0db5=_0x98b27e[_0x2f7065(0x1c6)](_0x2990ef=>_0x2990ef===_0x59770a);if(_0x2b0db5>-0x1)_0x4496da['s']=''+_0x2b0db5;else{const _0x1957e3=_0x98b27e['push'](_0x59770a)-0x1;_0x237c62[_0x1957e3]=_0x529d62,_0x4496da['s']=''+_0x1957e3;}}})[_0x350c58(0x16a)](),'styleRefMap':_0x237c62};},cd=(_0x3968e0,_0x264fb0)=>!_0x3968e0||!_0x264fb0?_0x3968e0:new _0x1f7bb9(_0x570d2f[_0x572182(0xb4)](_0x3968e0))[_0x572182(0x86)]((_0x105914,_0x2f376b,_0x34da10)=>{const _0x51f33f=_0x572182,_0x3cc904=_0x34da10&&_0x34da10['s'];if(_0x3cc904&&typeof _0x3cc904===_0x51f33f(0xa6)){const _0x5dd650=_0x264fb0[_0x3cc904];_0x5dd650&&(_0x34da10['s']=_0x5dd650);}})[_0x572182(0x16a)](),pd=_0xe27569(_0x572182(0x216)),fd=_0xe27569(_0x572182(0x1c0));class ur{constructor(){const _0x4cf4f2=_0x572182;se(this,'interceptor',new _0x17f18b({'COMPRESS_MUTATION_APPLY':pd,'COMPRESS_MUTATION_SEND':fd})),this[_0x4cf4f2(0x19e)]();}['_init'](){const _0x1da2b9=_0x572182;this[_0x1da2b9(0x1da)]['intercept'](this[_0x1da2b9(0x1da)][_0x1da2b9(0xf7)]()[_0x1da2b9(0x216)],{'priority':-0x1,'handler':_0x1a55f5=>_0x1a55f5}),this['interceptor']['intercept'](this[_0x1da2b9(0x1da)][_0x1da2b9(0xf7)]()[_0x1da2b9(0x1c0)],{'priority':-0x1,'handler':_0x3e114c=>_0x3e114c}),this[_0x1da2b9(0xc8)]();}[_0x572182(0xc8)](){const _0x504c01=_0x572182;this[_0x504c01(0x1da)]['intercept'](this[_0x504c01(0x1da)][_0x504c01(0xf7)]()[_0x504c01(0x216)],{'handler':(_0x28d8aa,_0x24b952,_0xbebb11)=>{const _0x2c6849=_0x504c01;if(!_0x28d8aa)return _0xbebb11(_0x28d8aa);const _0x4853ff=_0x28d8aa[_0x2c6849(0x1e0)](_0x20545e=>{const _0xca30ae=_0x2c6849;if(_0x20545e['id']===_0x15eb0a['id']){const _0x17319e=_0x20545e['params'];if(!_0x17319e[_0xca30ae(0x1ae)])return _0x20545e;const _0x4ae376=cd(_0x17319e[_0xca30ae(0x208)],_0x17319e[_0xca30ae(0x1ae)]);return{..._0x20545e,'params':{..._0x17319e,'cellValue':_0x4ae376}};}return _0x20545e;});return _0xbebb11(_0x4853ff);}}),this[_0x504c01(0x1da)][_0x504c01(0x1fd)](this[_0x504c01(0x1da)][_0x504c01(0xf7)]()[_0x504c01(0x1c0)],{'handler':(_0x31194f,_0x28d3d1,_0x1a7472)=>{const _0x43b341=_0x504c01;if(!_0x31194f)return _0x1a7472(_0x31194f);const _0x1cb672=_0x31194f[_0x43b341(0x1e0)](_0x225554=>{const _0x160165=_0x43b341;if(_0x225554['id']===_0x15eb0a['id']){const _0x131974=_0x225554['params'];return _0x131974[_0x160165(0x1ae)]?_0x225554:{..._0x225554,'params':{..._0x131974,...ld(_0x131974['cellValue'])}};}return _0x225554;});return _0x1a7472(_0x1cb672);}});}}var Rd=Object['defineProperty'],hd=Object[_0x572182(0x173)],gd=(_0x1d2e05,_0x5e5446,_0x1b1878,_0x5d54de)=>{const _0x20f67f=_0x572182;for(var _0x1a5e50=_0x5d54de>0x1?void 0x0:_0x5d54de?hd(_0x5e5446,_0x1b1878):_0x5e5446,_0x204da3=_0x1d2e05[_0x20f67f(0xf6)]-0x1,_0x532837;_0x204da3>=0x0;_0x204da3--)(_0x532837=_0x1d2e05[_0x204da3])&&(_0x1a5e50=(_0x5d54de?_0x532837(_0x5e5446,_0x1b1878,_0x1a5e50):_0x532837(_0x1a5e50))||_0x1a5e50);return _0x5d54de&&_0x1a5e50&&Rd(_0x5e5446,_0x1b1878,_0x1a5e50),_0x1a5e50;},Id=(_0x26a43a,_0x1ffd37)=>(_0xf9a3f9,_0x4a5132)=>_0x1ffd37(_0xf9a3f9,_0x4a5132,_0x26a43a);const nm=new Set([_0x4189f4['id'],_0x2df765['id'],_0x532e28['id'],_0xeba0d['id'],_0x36d2a9['id']]),am=new Set([_0x4189f4['id'],_0x2df765['id'],re['id'],_0xe30a36['id']]);let $t=class{constructor(_0x8f6dc2){const _0x3e02a3=_0x572182;this[_0x3e02a3(0x1ba)]=_0x8f6dc2;}[_0x572182(0x1e4)](_0x5d2b39){const _0x40334e=_0x572182,_0x2a87bd=this[_0x40334e(0x1ba)][_0x40334e(0x147)](_0x5d2b39);if(!_0x2a87bd)throw new Error(_0x40334e(0x124)+_0x5d2b39+'.');return _0x2a87bd['getRev']();}[_0x572182(0xeb)](_0x3f99ae){const _0xe89997=_0x572182,_0x4fb296=this[_0xe89997(0x1ba)][_0xe89997(0x147)](_0x3f99ae);if(!_0x4fb296)throw new Error('[RevisionService]:\x20cannot\x20find\x20document\x20with\x20unitID:\x20'+_0x3f99ae+'.');return _0x4fb296[_0xe89997(0x1e7)](),_0x4fb296[_0xe89997(0x7b)]();}[_0x572182(0x17a)](_0x218c2a,_0x3bb0fe){const _0x157f0f=_0x572182,_0x558dd1=this[_0x157f0f(0x1ba)][_0x157f0f(0x147)](_0x218c2a);_0x558dd1&&_0x558dd1[_0x157f0f(0x122)](_0x3bb0fe);}};$t=gd([Id(0x0,_0x2c40b4)],$t);var ne=(_0x2eb397=>(_0x2eb397[_0x2eb397[_0x572182(0x215)]=0x0]=_0x572182(0x215),_0x2eb397[_0x2eb397['OK']=0x1]='OK',_0x2eb397[_0x2eb397[_0x572182(0x21b)]=0x2]=_0x572182(0x21b),_0x2eb397[_0x2eb397[_0x572182(0xbc)]=0x3]=_0x572182(0xbc),_0x2eb397[_0x2eb397[_0x572182(0x1c3)]=0x4]=_0x572182(0x1c3),_0x2eb397[_0x2eb397[_0x572182(0x174)]=0x5]=_0x572182(0x174),_0x2eb397[_0x2eb397['ALREADY_EXISTS']=0x6]='ALREADY_EXISTS',_0x2eb397[_0x2eb397[_0x572182(0x1bc)]=0x7]=_0x572182(0x1bc),_0x2eb397[_0x2eb397[_0x572182(0xf2)]=0x8]=_0x572182(0xf2),_0x2eb397[_0x2eb397[_0x572182(0x1ec)]=0x9]=_0x572182(0x1ec),_0x2eb397[_0x2eb397[_0x572182(0x13e)]=0x1389]=_0x572182(0x13e),_0x2eb397[_0x2eb397[_0x572182(0x9b)]=0x1771]=_0x572182(0x9b),_0x2eb397[_0x2eb397[_0x572182(0x193)]=0x1772]=_0x572182(0x193),_0x2eb397[_0x2eb397[_0x572182(0x1ea)]=0x1773]='ENSURE_SNAPSHOT_EXECUTION',_0x2eb397[_0x2eb397['APPLY_REJECT']=0x1b59]=_0x572182(0xef),_0x2eb397[_0x2eb397[_0x572182(0x204)]=0x1b5a]=_0x572182(0x204),_0x2eb397[_0x2eb397[_0x572182(0xfd)]=0x1b5b]=_0x572182(0xfd),_0x2eb397[_0x2eb397['APPLY_PERMISSION_DENIED']=0x1b5c]=_0x572182(0x212),_0x2eb397[_0x2eb397['APPLY_DUPLICATED']=0x1b5d]='APPLY_DUPLICATED',_0x2eb397[_0x2eb397['CONNECTOR_DATA_TOO_LARGE']=0x1f41]=_0x572182(0xa8),_0x2eb397[_0x2eb397['LICENSE_MAX_UNITS_EXCEEDED']=0x2329]=_0x572182(0x160),_0x2eb397[_0x2eb397[_0x572182(0x10c)]=0x232a]=_0x572182(0x10c),_0x2eb397[_0x2eb397['LICENSE_IMPORT_SIZE_EXCEEDED']=0x232b]=_0x572182(0x189),_0x2eb397[_0x2eb397[_0x572182(0x197)]=0x232c]=_0x572182(0x197),_0x2eb397[_0x2eb397[_0x572182(0x207)]=0x232d]=_0x572182(0x207),_0x2eb397[_0x2eb397['YUUMI_UNABLE_LOAD_URL']=0x2711]=_0x572182(0x15c),_0x2eb397[_0x2eb397[_0x572182(0x166)]=0x2712]=_0x572182(0x166),_0x2eb397[_0x2eb397[_0x572182(0x1fb)]=0x2713]=_0x572182(0x1fb),_0x2eb397[_0x2eb397['YUUMI_SUBSCRIPTION_NOT_FOUND']=0x2714]=_0x572182(0xb5),_0x2eb397[_0x2eb397['UNRECOGNIZED']=-0x1]=_0x572182(0xad),_0x2eb397))(ne||{}),j=(_0xf35899=>(_0xf35899[_0xf35899[_0x572182(0x97)]=0x0]=_0x572182(0x97),_0xf35899[_0xf35899[_0x572182(0x1cf)]=0x1]=_0x572182(0x1cf),_0xf35899[_0xf35899['UNIVER_SHEET']=0x2]=_0x572182(0x12f),_0xf35899[_0xf35899['UNIVER_SLIDE']=0x3]=_0x572182(0xd7),_0xf35899[_0xf35899[_0x572182(0xa0)]=0x4]='UNIVER_PROJECT',_0xf35899[_0xf35899[_0x572182(0xad)]=-0x1]=_0x572182(0xad),_0xf35899))(j||{});function Yt(_0x5a4d00){const _0x3a96fb=_0x572182;return!!(_0x5a4d00&&_0x5a4d00[_0x3a96fb(0x213)]&&_0x5a4d00[_0x3a96fb(0x213)]!==ne['OK']&&_0x5a4d00['code']!=='OK');}const J=[];for(let t=0x0;t<0x100;++t)J[_0x572182(0x1ca)]((t+0x100)[_0x572182(0x1df)](0x10)[_0x572182(0x1a8)](0x1));function wd(_0x535926,_0x9999b2=0x0){const _0x40a951=_0x572182;return(J[_0x535926[_0x9999b2+0x0]]+J[_0x535926[_0x9999b2+0x1]]+J[_0x535926[_0x9999b2+0x2]]+J[_0x535926[_0x9999b2+0x3]]+'-'+J[_0x535926[_0x9999b2+0x4]]+J[_0x535926[_0x9999b2+0x5]]+'-'+J[_0x535926[_0x9999b2+0x6]]+J[_0x535926[_0x9999b2+0x7]]+'-'+J[_0x535926[_0x9999b2+0x8]]+J[_0x535926[_0x9999b2+0x9]]+'-'+J[_0x535926[_0x9999b2+0xa]]+J[_0x535926[_0x9999b2+0xb]]+J[_0x535926[_0x9999b2+0xc]]+J[_0x535926[_0x9999b2+0xd]]+J[_0x535926[_0x9999b2+0xe]]+J[_0x535926[_0x9999b2+0xf]])[_0x40a951(0x90)]();}let ie;const Cd=new Uint8Array(0x10);function Pd(){const _0x20411b=_0x572182;if(!ie){if(typeof crypto>'u'||!crypto[_0x20411b(0x1b4)])throw new Error(_0x20411b(0x14b));ie=crypto['getRandomValues'][_0x20411b(0x17d)](crypto);}return ie(Cd);}const Ud=typeof crypto<'u'&&crypto[_0x572182(0xe9)]&&crypto[_0x572182(0xe9)][_0x572182(0x17d)](crypto),Fe={'randomUUID':Ud};function Be(_0x1a9735,_0x1ffba1,_0x360b94){const _0x47c57a=_0x572182;if(Fe[_0x47c57a(0xe9)]&&!_0x1ffba1&&!_0x1a9735)return Fe['randomUUID']();_0x1a9735=_0x1a9735||{};const _0x3b5ebf=_0x1a9735['random']||(_0x1a9735[_0x47c57a(0x1ef)]||Pd)();return _0x3b5ebf[0x6]=_0x3b5ebf[0x6]&0xf|0x40,_0x3b5ebf[0x8]=_0x3b5ebf[0x8]&0x3f|0x80,wd(_0x3b5ebf);}const bd={[_0x2e0eae[_0x572182(0x1cf)]]:j[_0x572182(0x1cf)],[_0x2e0eae[_0x572182(0x12f)]]:j[_0x572182(0x12f)],[_0x2e0eae[_0x572182(0xd7)]]:j[_0x572182(0xd7)],[_0x2e0eae[_0x572182(0x97)]]:j[_0x572182(0x97)],[_0x2e0eae[_0x572182(0xa0)]]:j[_0x572182(0x97)],[_0x2e0eae[_0x572182(0xad)]]:j[_0x572182(0xad)]};function sm(_0x435850){const _0x481e45=_0x572182;var _0x48a81d;return(_0x48a81d=bd[_0x435850])!=null?_0x48a81d:j[_0x481e45(0x97)];}function om(_0x21f678){const _0xd00346=_0x572182;return btoa(encodeURIComponent(_0x21f678)[_0xd00346(0x1bd)](/%([0-9A-F]{2})/g,(_0xb9df9f,_0x1ba469)=>String[_0xd00346(0x11a)](Number[_0xd00346(0x87)](_0x1ba469,0x10))));}const Md=new TextDecoder();function lr(_0x8446d4){const _0x524446=_0x572182,_0x4385b5=atob(_0x8446d4),_0x54b5c8=_0x4385b5['length'];let _0x1cd34c=new Uint8Array(_0x54b5c8);for(let _0x313d60=0x0;_0x313d60<_0x54b5c8;_0x313d60++)_0x1cd34c[_0x313d60]=_0x4385b5['charCodeAt'](_0x313d60);const _0x17d841=Md[_0x524446(0xe4)](_0x1cd34c);return _0x1cd34c=null,_0x17d841;}const ae=new TextEncoder(),ve=new TextDecoder();function cr(_0x2d3c68){const _0x2ececb=_0x572182,_0x900ea0=_0x570d2f['deepClone'](_0x2d3c68);return delete _0x900ea0['id'],delete _0x900ea0[_0x2ececb(0x1a0)],delete _0x900ea0[_0x2ececb(0x88)],delete _0x900ea0['columnCount'],delete _0x900ea0[_0x2ececb(0x20a)],ae[_0x2ececb(0x175)](JSON[_0x2ececb(0x7d)](_0x900ea0));}function pr(_0x1cba4e){const _0x3b7037=_0x572182,_0x3c3693=_0x570d2f[_0x3b7037(0xb4)](_0x1cba4e);return delete _0x3c3693['id'],delete _0x3c3693['rev'],delete _0x3c3693[_0x3b7037(0x1a0)],delete _0x3c3693[_0x3b7037(0x8f)],delete _0x3c3693[_0x3b7037(0x15f)],ae['encode'](JSON['stringify'](_0x3c3693));}function fr(_0x16f3a5){const _0x2be378=_0x572182,_0x135e38=_0x570d2f[_0x2be378(0xb4)](_0x16f3a5);return delete _0x135e38['id'],delete _0x135e38[_0x2be378(0xee)],delete _0x135e38['title'],delete _0x135e38[_0x2be378(0x1b9)],ae[_0x2be378(0x175)](JSON[_0x2be378(0x7d)](_0x135e38));}function Ge(_0x5220f7){const _0x3537db=_0x572182;return JSON[_0x3537db(0x1bb)](typeof _0x5220f7=='string'?lr(_0x5220f7):ve[_0x3537db(0xe4)](_0x5220f7));}function vd(_0x24c0f7){const _0x14e8b7=_0x572182;return _0x24c0f7 instanceof Uint8Array?JSON['parse'](ve[_0x14e8b7(0xe4)](_0x24c0f7)):_0x24c0f7;}function Ed(_0x335e1e){const _0xc456b3=_0x572182;return JSON['parse'](typeof _0x335e1e==_0xc456b3(0xa6)?lr(_0x335e1e):ve[_0xc456b3(0xe4)](_0x335e1e));}const de=0x100*0x14;function Rr(_0x300de8,_0x45ec90){const _0x3829e5=_0x572182,_0x1ab37c=new _0x1f7bb9(_0x300de8),_0x1dddd5=_0x1ab37c[_0x3829e5(0xe0)](),_0x3d877f=[];let _0x18a6c=0x0;for(;_0x18a6c<_0x1dddd5;){const _0x1f72a2=Math[_0x3829e5(0x126)](_0x18a6c+de,_0x1dddd5-0x1),_0x486d55=_0x1ab37c['getSlice'](_0x18a6c,Math[_0x3829e5(0x126)](_0x18a6c+de,_0x1dddd5-0x1),0x0,_0x45ec90),_0x54e0fa=Sd(_0x486d55);_0x3d877f[_0x3829e5(0x1ca)]({'id':_0x570d2f[_0x3829e5(0x1e6)](0x13,_0x3829e5(0x1d2)),'startRow':_0x18a6c,'endRow':_0x1f72a2,'data':_0x54e0fa}),_0x18a6c+=de;}return _0x3d877f;}function Sd(_0x196a26){const _0x63fd82=_0x572182,_0x56ced1=_0x196a26[_0x63fd82(0xcb)]();return ae[_0x63fd82(0x175)](JSON[_0x63fd82(0x7d)](_0x56ced1));}async function im(_0x166e3f,_0x210ffb,_0xb89771,_0x5da8e5){const _0x465750=_0x572182;var _0x6678b2;const _0x35385f={'unitID':_0x210ffb['id'],'rev':_0x5da8e5,'creator':'','name':(_0x6678b2=_0x210ffb[_0x465750(0xbd)])!=null?_0x6678b2:'','resources':_0x210ffb[_0x465750(0x1b9)]||[],'originalMeta':fr(_0x210ffb)};return{'snapshot':{'unitID':_0xb89771,'rev':_0x35385f[_0x465750(0xee)],'type':j[_0x465750(0x1cf)],'workbook':void 0x0,'doc':_0x35385f}};}async function dm(_0x5ed66c,_0x3a0f2f,_0x244926,_0x716dd3,_0x190f65){const _0x41dc70=_0x572182,_0x2aad85={},_0x357d1e={};if(!await Promise['all'](Object[_0x41dc70(0x214)](_0x3a0f2f['sheets'])[_0x41dc70(0x1e0)](async([_0x31b818,_0x4d8992])=>{const _0x45c2b2=_0x41dc70,_0x5b6a14={'id':_0x4d8992['id'],'type':_0x527d41['GRID'],'name':_0x4d8992[_0x45c2b2(0x1a0)],'rowCount':_0x4d8992[_0x45c2b2(0x88)],'columnCount':_0x4d8992['columnCount'],'originalMeta':cr(_0x4d8992)};if(_0x357d1e[_0x31b818]=_0x5b6a14,_0x4d8992[_0x45c2b2(0x20a)]){const _0x55e141=Rr(_0x4d8992[_0x45c2b2(0x20a)],_0x4d8992[_0x45c2b2(0x1f1)]),_0x382b50=await Promise[_0x45c2b2(0x206)](_0x55e141[_0x45c2b2(0x1e0)](_0x221e93=>_0x190f65[_0x45c2b2(0x177)](_0x5ed66c,{'unitID':_0x244926,'type':j['UNIVER_SHEET'],'block':_0x221e93})));if(_0x382b50[_0x45c2b2(0xaf)](_0x23c04e=>{const _0x29cae0=_0x45c2b2;var _0x3724fc;return((_0x3724fc=_0x23c04e[_0x29cae0(0x20c)])==null?void 0x0:_0x3724fc[_0x29cae0(0x213)])!==ne['OK'];}))return!0x1;_0x2aad85[_0x31b818]={'sheetID':_0x31b818,'blocks':_0x382b50[_0x45c2b2(0x1e0)](_0xd9984e=>_0xd9984e['blockID'])};}return!0x0;})))throw new Error('[transformWorkbookDataToSnapshot()]:\x20Failed\x20to\x20save\x20sheet\x20blocks.');const _0x301a58=pr(_0x3a0f2f),_0x1239e1={'unitID':_0x3a0f2f['id'],'rev':_0x716dd3,'creator':'','name':_0x3a0f2f[_0x41dc70(0x1a0)],'sheetOrder':_0x3a0f2f[_0x41dc70(0x8f)],'sheets':_0x357d1e,'blockMeta':_0x2aad85,'resources':_0x3a0f2f[_0x41dc70(0x1b9)]||[],'originalMeta':_0x301a58};return{'snapshot':{'unitID':_0x244926,'rev':_0x1239e1[_0x41dc70(0xee)],'type':j[_0x41dc70(0x12f)],'workbook':_0x1239e1,'doc':void 0x0}};}async function mm(_0x12f06a,_0x37421e,_0x3bf230,_0x7d7634,_0x57280e){const _0x28e3fb=_0x572182;var _0x27893c,_0x122b22;const _0x2402fd={},_0x157375={};if(!await Promise[_0x28e3fb(0x206)](Object[_0x28e3fb(0x214)](_0x37421e[_0x28e3fb(0x15f)])[_0x28e3fb(0x1e0)](async([_0x4b0430,_0x54ce1b])=>{const _0x2ce902=_0x28e3fb,_0xebfe0f={'id':_0x54ce1b['id'],'type':_0x527d41[_0x2ce902(0xba)],'name':_0x54ce1b['name'],'rowCount':_0x54ce1b[_0x2ce902(0x88)],'columnCount':_0x54ce1b[_0x2ce902(0x1f1)],'originalMeta':cr(_0x54ce1b)};if(_0x157375[_0x4b0430]=_0xebfe0f,_0x54ce1b[_0x2ce902(0x20a)]){const _0x14d1c6=Rr(_0x54ce1b[_0x2ce902(0x20a)],_0x54ce1b[_0x2ce902(0x1f1)]),_0x1ee31c=await Promise[_0x2ce902(0x206)](_0x14d1c6[_0x2ce902(0x1e0)](_0x457dd1=>_0x57280e[_0x2ce902(0x177)](_0x12f06a,{'unitID':_0x3bf230,'type':j[_0x2ce902(0x12f)],'block':_0x457dd1})));if(_0x1ee31c['some'](_0x446419=>{const _0x1677bf=_0x2ce902;var _0x3bc2f3;return((_0x3bc2f3=_0x446419[_0x1677bf(0x20c)])==null?void 0x0:_0x3bc2f3[_0x1677bf(0x213)])!==ne['OK'];}))return!0x1;_0x2402fd[_0x4b0430]={'sheetID':_0x4b0430,'blocks':_0x1ee31c[_0x2ce902(0x1e0)](_0xacc3f6=>_0xacc3f6['blockID'])};}return!0x0;})))throw new Error('[transformWorkbookDataToSnapshot()]:\x20Failed\x20to\x20save\x20sheet\x20blocks.');const _0x522f87=pr(_0x37421e),_0x56ac74={'unitID':_0x37421e['id'],'rev':_0x7d7634,'creator':'','name':_0x37421e['name'],'sheetOrder':_0x37421e[_0x28e3fb(0x8f)],'sheets':_0x157375,'blockMeta':_0x2402fd,'resources':_0x37421e[_0x28e3fb(0x1b9)]||[],'originalMeta':_0x522f87},_0x5340f5={'unitID':_0x3bf230,'rev':_0x56ac74[_0x28e3fb(0xee)],'type':j[_0x28e3fb(0x12f)],'workbook':_0x56ac74,'doc':void 0x0},_0x653639=await _0x57280e[_0x28e3fb(0x1a3)](_0x12f06a,{'unitID':_0x3bf230,'type':j[_0x28e3fb(0x12f)],'snapshot':_0x5340f5});if(Yt(_0x653639[_0x28e3fb(0x20c)]))throw new Error(_0x28e3fb(0x191)+((_0x27893c=_0x653639[_0x28e3fb(0x20c)])==null?void 0x0:_0x27893c[_0x28e3fb(0x213)])+':'+((_0x122b22=_0x653639['error'])==null?void 0x0:_0x122b22[_0x28e3fb(0x143)]));return{'snapshot':_0x5340f5};}function Wd(_0x55a139,_0x34a596,_0x4a992e){const _0x4546a3=_0x572182,_0x1a30a7=_0x55a139[_0x4546a3(0x159)];if(!_0x1a30a7)throw new Error('');const _0x3e2b58={};Object[_0x4546a3(0x214)](_0x1a30a7[_0x4546a3(0x15f)])[_0x4546a3(0xc5)](([_0x54d594,_0x100664])=>{const _0xb40de8=_0x4546a3,_0x3d18f3=Ge(_0x100664[_0xb40de8(0x1e2)]);_0x3e2b58[_0x54d594]={'id':_0x100664['id'],'name':_0x100664['name'],'rowCount':_0x100664[_0xb40de8(0x88)],'columnCount':_0x100664[_0xb40de8(0x1f1)],..._0x3d18f3};});const _0x4c61fb=new Map();_0x34a596[_0x4546a3(0xc5)](_0x257594=>{_0x4c61fb['set'](_0x257594['id'],_0x257594);}),_0x1a30a7[_0x4546a3(0x1af)]&&Object[_0x4546a3(0x214)](_0x1a30a7[_0x4546a3(0x1af)])['forEach'](([_0x45a162,_0x3e5322])=>{const _0x54ad8c=_0x4546a3;var _0xfd6fb3;const _0xdd0fbe=_0x3e2b58[_0x45a162];_0xdd0fbe[_0x54ad8c(0x20a)]={};const _0x384cde=[];(_0xfd6fb3=_0x3e5322[_0x54ad8c(0x125)])==null||_0xfd6fb3['forEach'](_0x461479=>{const _0x43c2db=_0x54ad8c,_0x5d6993=_0x4c61fb[_0x43c2db(0xc4)](_0x461479);if(_0x5d6993)_0x384cde[_0x43c2db(0x1ca)](_0x5d6993);else throw new Error('');}),_0x384cde[_0x54ad8c(0xc5)](_0x2a0948=>{const _0x4ece3f=_0x54ad8c,_0x206e9b=vd(_0x2a0948[_0x4ece3f(0x8b)]);Object[_0x4ece3f(0x214)](_0x206e9b)['forEach'](([_0xc8b641,_0x4d866d])=>{const _0x493543=_0x4ece3f,_0x952fba=_0xdd0fbe['cellData'][+_0xc8b641]={};Object[_0x493543(0x214)](_0x4d866d)[_0x493543(0xc5)](([_0x7ce57e,_0x54c7a5])=>{_0x952fba[+_0x7ce57e]=_0x54c7a5;});});});});const _0xb00105=Ge(_0x1a30a7['originalMeta']);return{'id':_0x55a139[_0x4546a3(0xf4)]||_0x1a30a7[_0x4546a3(0xf4)],'rev':_0x55a139['rev']||_0x1a30a7[_0x4546a3(0xee)],'name':_0x1a30a7[_0x4546a3(0x1a0)],'sheetOrder':_0x1a30a7[_0x4546a3(0x8f)],'appVersion':'','locale':_0x96e036[_0x4546a3(0x188)],'sheets':_0x3e2b58,'styles':{},'resources':_0x1a30a7[_0x4546a3(0x1b9)]||[],..._0xb00105};}function Vd(_0xcc33c8){const _0x26ab1c=_0x572182,_0x12570b=_0xcc33c8[_0x26ab1c(0x1a6)];if(_0x12570b==null)throw new Error('transformSnapshotToDocumentData():\x20snapshot.doc\x20is\x20undefined.');const {unitID:_0x136d33,rev:_0x2eea8f,name:_0x332fbf,originalMeta:_0x1ded9f,resources:_0x456e79=[]}=_0x12570b,{body:_0x2cf058,documentStyle:_0x4399a6={},settings:_0x3b2acc={},drawings:_0x24d6f1={},drawingsOrder:_0x312793=[],tableSource:_0x41419f={},headers:_0x46a4ae={},footers:_0x5cf151={},lists:_0x3b9a3b={}}=Ed(_0x1ded9f);return{'id':_0x136d33,'rev':_0x2eea8f,'locale':_0x96e036[_0x26ab1c(0x188)],'title':_0x332fbf,'body':_0x2cf058,'documentStyle':_0x4399a6,'settings':_0x3b2acc,'drawings':_0x24d6f1,'drawingsOrder':_0x312793,'resources':_0x456e79,'tableSource':_0x41419f,'headers':_0x46a4ae,'footers':_0x5cf151,'lists':_0x3b9a3b};}async function um(_0x3ea0d3,_0x42fd81,_0x5ccb3b,_0xcfa12d,_0x586212){const _0x3e8934=_0x572182;var _0x3d32df,_0x394d76,_0x2e7ab5;const _0x5cdb8a={'unitID':_0x42fd81['id'],'rev':_0xcfa12d,'creator':'','name':(_0x3d32df=_0x42fd81[_0x3e8934(0xbd)])!=null?_0x3d32df:'','resources':_0x42fd81[_0x3e8934(0x1b9)]||[],'originalMeta':fr(_0x42fd81)},_0x4267e5={'unitID':_0x5ccb3b,'rev':_0x5cdb8a[_0x3e8934(0xee)],'type':j[_0x3e8934(0x1cf)],'workbook':void 0x0,'doc':_0x5cdb8a},_0x40ba01=await _0x586212[_0x3e8934(0x1a3)](_0x3ea0d3,{'unitID':_0x5ccb3b,'type':j['UNIVER_DOC'],'snapshot':_0x4267e5});if(Yt(_0x40ba01[_0x3e8934(0x20c)]))throw new Error(_0x3e8934(0xe6)+((_0x394d76=_0x40ba01[_0x3e8934(0x20c)])==null?void 0x0:_0x394d76['code'])+':'+((_0x2e7ab5=_0x40ba01[_0x3e8934(0x20c)])==null?void 0x0:_0x2e7ab5[_0x3e8934(0x143)]));return{'snapshot':_0x4267e5};}async function lm(_0x5a7e82,_0x53171e){const _0x31f20c=_0x572182,_0x5f5adb=_0x5a7e82['workbook'];if(!_0x5f5adb)throw new Error(_0x31f20c(0x1c9));const _0x252e5f=[],_0x580eae=[];return Object[_0x31f20c(0x214)](_0x5f5adb['blockMeta'])[_0x31f20c(0xc5)](([_0x3f16ad,_0x49a276])=>{const _0x5a2404=_0x49a276['blocks']['map'](async _0x3038f3=>{const _0x4ec172=_0x2b5d,_0x426366={'unitID':_0x5f5adb[_0x4ec172(0xf4)],'type':j[_0x4ec172(0x12f)],'blockID':_0x3038f3},{block:_0x744fdf}=await _0x53171e[_0x4ec172(0x14a)]({},_0x426366);if(_0x744fdf)_0x252e5f[_0x4ec172(0x1ca)](_0x744fdf);else throw new Error(_0x4ec172(0x178));});_0x580eae['push'](..._0x5a2404);}),await Promise[_0x31f20c(0x206)](_0x580eae),_0x252e5f;}var _d=Object[_0x572182(0x116)],Od=Object['getOwnPropertyDescriptor'],yd=(_0x4dea82,_0x477b74,_0x3acd33,_0x232f2c)=>{const _0x297f0d=_0x572182;for(var _0x532760=_0x232f2c>0x1?void 0x0:_0x232f2c?Od(_0x477b74,_0x3acd33):_0x477b74,_0x24b632=_0x4dea82[_0x297f0d(0xf6)]-0x1,_0x312e40;_0x24b632>=0x0;_0x24b632--)(_0x312e40=_0x4dea82[_0x24b632])&&(_0x532760=(_0x232f2c?_0x312e40(_0x477b74,_0x3acd33,_0x532760):_0x312e40(_0x532760))||_0x532760);return _0x232f2c&&_0x532760&&_d(_0x477b74,_0x3acd33,_0x532760),_0x532760;},mt=(_0x2c8df6,_0x382e32)=>(_0x3faf96,_0x115acc)=>_0x382e32(_0x3faf96,_0x115acc,_0x2c8df6);const Nd=_0x39c530(_0x572182(0xec));let pe=class{constructor(_0x55a61a,_0x1f64b5,_0x6e81c2,_0xdfc43c,_0x341b0e,_0x4ffc89,_0x1dc04c){const _0x1ef831=_0x572182;this['_revisionService']=_0x55a61a,this[_0x1ef831(0x1ba)]=_0x1f64b5,this[_0x1ef831(0xb2)]=_0x6e81c2,this[_0x1ef831(0xc0)]=_0xdfc43c,this[_0x1ef831(0x140)]=_0x341b0e,this[_0x1ef831(0x93)]=_0x4ffc89,this[_0x1ef831(0x136)]=_0x1dc04c;}async[_0x572182(0x14d)](_0x3f9aa5,_0x1eaf0b,_0x4f2fce){const _0x31d267=_0x572182;var _0x34ae95;_0x4f2fce===void 0x0&&(_0x4f2fce={'metadata':{'x-feature-id':Be()}});const {snapshot:_0x5aa223,changesets:_0x39b141,error:_0x589c11}=await this[_0x31d267(0xb2)][_0x31d267(0x1b1)](_0x4f2fce,{'unitID':_0x3f9aa5,'type':j['UNIVER_SHEET'],'revision':_0x1eaf0b});if(Yt(_0x589c11)||!_0x5aa223||!_0x5aa223[_0x31d267(0x159)])throw new Error(_0x31d267(0x106));const _0x4bd52d=(_0x34ae95=_0x39b141==null?void 0x0:_0x39b141[_0x31d267(0xf6)])!=null?_0x34ae95:0x0;if(_0x1eaf0b!==0x0&&_0x5aa223[_0x31d267(0xee)]+_0x4bd52d!==_0x1eaf0b)throw new Error(_0x31d267(0x167));const {workbook:_0x356656}=_0x5aa223,_0x11a8b9=_0x356656[_0x31d267(0x1af)]?Object[_0x31d267(0x214)](_0x356656['blockMeta'])[_0x31d267(0x1e0)](([_0x527c2f,_0x31d47])=>{const _0x37f61d=_0x31d267;var _0x40f4c2,_0x42af03;return(_0x42af03=(_0x40f4c2=_0x31d47[_0x37f61d(0x125)])==null?void 0x0:_0x40f4c2[_0x37f61d(0x1e0)](_0x143f8c=>_0x143f8c))!=null?_0x42af03:[];})[_0x31d267(0x13b)]():[],_0x2cef74=(await Promise[_0x31d267(0x206)](_0x11a8b9['map'](_0x2b66c6=>this[_0x31d267(0xb2)][_0x31d267(0x157)](_0x4f2fce,{'unitID':_0x3f9aa5,'type':j[_0x31d267(0x12f)],'blockID':_0x2b66c6})[_0x31d267(0x1b7)](_0x52647f=>_0x52647f['block']))))[_0x31d267(0x9f)](_0x45b52a=>!!_0x45b52a),_0xf06faa=Wd(_0x5aa223,_0x2cef74),_0x20a245=this[_0x31d267(0x1ba)][_0x31d267(0x105)](_0x2e0eae[_0x31d267(0x12f)],_0xf06faa),_0x52418c=this[_0x31d267(0x93)][_0x31d267(0x1da)][_0x31d267(0x1b3)](this[_0x31d267(0x93)][_0x31d267(0x1da)]['getInterceptPoints']()['COMPRESS_MUTATION_APPLY']);return _0x39b141==null||_0x39b141[_0x31d267(0xc5)](_0x4ddc46=>{const _0x1b5b1d=_0x31d267,_0x249bc2=_0x4ddc46[_0x1b5b1d(0x1d6)][_0x1b5b1d(0x1e0)](_0x6ce0e8=>({'id':_0x6ce0e8['id'],'params':JSON[_0x1b5b1d(0x1bb)](_0x6ce0e8[_0x1b5b1d(0x8b)])}));({..._0x4ddc46,'mutations':_0x52418c(_0x249bc2,null)||_0x249bc2}['mutations'][_0x1b5b1d(0xc5)](_0x57e09c=>this[_0x1b5b1d(0xc0)][_0x1b5b1d(0x84)](_0x57e09c['id'],_0x57e09c[_0x1b5b1d(0x8d)],{'fromChangeset':!0x0})),this[_0x1b5b1d(0x10f)]['incrementRevOfUnit'](_0x3f9aa5));}),_0x20a245;}async[_0x572182(0xff)](_0xa78dcb,_0x1a0cc8,_0x31d213){const _0x570e65=_0x572182;var _0x3554ac;_0x31d213===void 0x0&&(_0x31d213={'metadata':{'x-feature-id':Be()}});const {snapshot:_0x371962,changesets:_0x4bae3c,error:_0x232343}=await this[_0x570e65(0xb2)][_0x570e65(0x1b1)](_0x31d213,{'unitID':_0xa78dcb,'type':j[_0x570e65(0x1cf)],'revision':_0x1a0cc8});if(Yt(_0x232343)||!_0x371962||!_0x371962[_0x570e65(0x1a6)])throw new Error(_0x570e65(0x106));const _0xbc5a56=(_0x3554ac=_0x4bae3c==null?void 0x0:_0x4bae3c[_0x570e65(0xf6)])!=null?_0x3554ac:0x0;if(_0x1a0cc8!==0x0&&_0x371962[_0x570e65(0xee)]+_0xbc5a56!==_0x1a0cc8)throw new Error('[SnapshotService]:\x20wrong\x20rev\x20from\x20the\x20server!');const _0x4d2750=Vd(_0x371962),_0x15d742=this['_univerInstanceService'][_0x570e65(0x105)](_0x2e0eae[_0x570e65(0x1cf)],_0x4d2750);return _0x4bae3c==null||_0x4bae3c[_0x570e65(0xc5)](_0x103cf1=>{const _0x168bfb=_0x570e65;_0x103cf1[_0x168bfb(0x1d6)][_0x168bfb(0x1e0)](_0x33a508=>({'id':_0x33a508['id'],'params':JSON[_0x168bfb(0x1bb)](_0x33a508['data'])}))[_0x168bfb(0xc5)](_0x2e03d9=>this[_0x168bfb(0xc0)][_0x168bfb(0x84)](_0x2e03d9['id'],_0x2e03d9[_0x168bfb(0x8d)],{'fromChangeset':!0x0})),this[_0x168bfb(0x10f)][_0x168bfb(0xeb)](_0xa78dcb);}),_0x15d742;}[_0x572182(0x20e)](_0x143f79,_0x3e1539){const _0x4f9985=_0x572182,_0x4e908e={..._0x3e1539[_0x4f9985(0x184)]()};_0x3e1539[_0x4f9985(0xcc)]()['forEach'](_0x29ac57=>{const _0x7ebb47=_0x4f9985;_0x4e908e[_0x7ebb47(0x15f)][_0x29ac57['getSheetId']()]=_0x570d2f[_0x7ebb47(0xb4)](_0x29ac57[_0x7ebb47(0x184)]());});const _0x44b721=this[_0x4f9985(0x136)][_0x4f9985(0x9c)](_0x3e1539['getUnitId'](),_0x2e0eae[_0x4f9985(0x12f)]);return _0x4e908e[_0x4f9985(0x1b9)]=_0x44b721,_0x4e908e;}[_0x572182(0x104)](_0x152072,_0xbbd226){const _0x27116c=_0x572182,_0x2e2448={..._0xbbd226[_0x27116c(0x184)]()},_0x58955e=this['_resourceManagerService']['getResources'](_0xbbd226['getUnitId'](),_0x2e0eae[_0x27116c(0x1cf)]);return _0x2e2448[_0x27116c(0x1b9)]=_0x58955e,_0x2e2448;}};pe=yd([mt(0x0,_0x55268a($t)),mt(0x1,_0x2c40b4),mt(0x2,Nd),mt(0x3,_0x29be17),mt(0x4,_0x55268a(_0x5cafd9)),mt(0x5,_0x55268a(ur)),mt(0x6,_0x55268a(_0x3dfe73))],pe);var hr=Object[_0x572182(0x116)],Dd=Object[_0x572182(0x173)],Ad=(_0x41b172,_0x27a75a,_0x4ba9ca)=>_0x27a75a in _0x41b172?hr(_0x41b172,_0x27a75a,{'enumerable':!0x0,'configurable':!0x0,'writable':!0x0,'value':_0x4ba9ca}):_0x41b172[_0x27a75a]=_0x4ba9ca,Td=(_0x4f16ef,_0x35dc72,_0x345e50,_0x51402f)=>{const _0xa50d0a=_0x572182;for(var _0x58ed9d=_0x51402f>0x1?void 0x0:_0x51402f?Dd(_0x35dc72,_0x345e50):_0x35dc72,_0x33cdd7=_0x4f16ef[_0xa50d0a(0xf6)]-0x1,_0x56a583;_0x33cdd7>=0x0;_0x33cdd7--)(_0x56a583=_0x4f16ef[_0x33cdd7])&&(_0x58ed9d=(_0x51402f?_0x56a583(_0x35dc72,_0x345e50,_0x58ed9d):_0x56a583(_0x58ed9d))||_0x58ed9d);return _0x51402f&&_0x58ed9d&&hr(_0x35dc72,_0x345e50,_0x58ed9d),_0x58ed9d;},je=(_0x27510a,_0x1cc075)=>(_0x19760e,_0x35f626)=>_0x1cc075(_0x19760e,_0x35f626,_0x27510a),Ld=(_0x20cf1d,_0x5c05b3,_0x106a17)=>Ad(_0x20cf1d,_0x5c05b3+'',_0x106a17);const kd=_0x572182(0x1fc);let fe=class extends _0x10409a{constructor(_0xb96edf=od,_0x15fa85,_0x39e44b){const _0x8cee50=_0x572182;super(),this['_config']=_0xb96edf,this[_0x8cee50(0x140)]=_0x15fa85,this[_0x8cee50(0x128)]=_0x39e44b;const {..._0x32c9a3}=this[_0x8cee50(0xfa)];this['_configService'][_0x8cee50(0x15e)](sd,_0x32c9a3);}[_0x572182(0x169)](){const _0x21aebe=_0x572182;[[$t],[jt],[Bt],[Gt],[pe],[Pe,{'useClass':Tr}],[ur]][_0x21aebe(0xc5)](_0x1ae09d=>this[_0x21aebe(0x140)][_0x21aebe(0x12d)](_0x1ae09d)),this[_0x21aebe(0x140)][_0x21aebe(0xc4)](Gt),this[_0x21aebe(0x140)][_0x21aebe(0xc4)](jt),this['_injector']['get'](Bt);}};Ld(fe,_0x572182(0xc7),kd),fe=Td([_0xd02a03(_0x2a75a1),je(0x1,_0x55268a(_0x5cafd9)),je(0x2,_0x70987)],fe);const cm=_0x39c530(_0x572182(0x13a)),pm={'id':_0x572182(0xac),'type':_0x361ef7[_0x572182(0x1bf)],'handler':()=>!0x0};function _0x1690(){const _0x5bbf8c=['add\x20range\x20protection\x20is\x20conflict\x20with\x20set\x20range\x20protection','criteria','APPLY_PERMISSION_DENIED','code','entries','UNDEFINED','COMPRESS_MUTATION_APPLY','set\x20range\x20protection\x20is\x20conflict\x20with\x20add\x20worksheet\x20protection','set\x20range\x20protection\x20is\x20conflict\x20with\x20remove\x20data\x20validation\x20rule','startOffset','set\x20range\x20protection\x20is\x20conflict\x20with\x20move\x20range','INTERNAL_ERROR','intersects','getRev','parentId','stringify','moveColumns','colId','col','liveshare.request_host','insert\x20row\x20is\x20conflict\x20with\x20set\x20row\x20visible','add\x20range\x20protection\x20is\x20conflict\x20with\x20update\x20data\x20validation\x20rule','syncExecuteCommand','CHANGESET_ACK','forValue','parseInt','rowCount','remove\x20col\x20is\x20conflict\x20with\x20remove\x20numfmt','Two\x20SetWorksheetOrderMutation\x20have\x20conflicts!','data','move\x20range\x20is\x20conflict\x20with\x20reorder\x20range','params','symbol','sheetOrder','toLowerCase','PSEUDO_FETCH_MISSING_RESULT','set\x20range\x20protection\x20is\x20conflict\x20with\x20set\x20worksheet\x20col\x20width','_compressMutationService','RANGE','comment','uid','UNIVER_UNKNOWN','426bRCFsf','set\x20range\x20protection\x20is\x20conflict\x20with\x20add\x20conditional\x20rule','concat','SNAPSHOT_INVALID_SNAPSHOT','getResources','endColumn','set\x20range\x20protection\x20is\x20conflict\x20with\x20delete\x20conditional\x20formatting\x20rule','filter','UNIVER_PROJECT','find','move\x20row\x20is\x20conflict\x20with\x20remove\x20numfmt','add\x20range\x20protection\x20is\x20conflict\x20with\x20remove\x20filter','insert\x20col\x20is\x20conflict\x20with\x20set\x20worksheet\x20col\x20width','start','string','users_leave','CONNECTOR_DATA_TOO_LARGE','set\x20range\x20protection\x20is\x20conflict\x20with\x20remove\x20row','getValue','keys','univer.mutation.create-unit','UNRECOGNIZED','add\x20range\x20protection\x20is\x20conflict\x20with\x20add\x20conditional\x20rule','some','\x20and\x20','transformChangesets','_snapshotServerService','insert\x20col\x20is\x20conflict\x20with\x20remove\x20numfmt','deepClone','YUUMI_SUBSCRIPTION_NOT_FOUND','add\x20range\x20protection\x20is\x20conflict\x20with\x20move\x20range','move\x20row\x20is\x20conflict\x20with\x20move\x20row','transformMutation','unshift','GRID','add\x20worksheet\x20protection\x20is\x20conflict\x20with\x20set\x20range\x20protection','PERMISSION_DENIED','title','SETTING','add\x20range\x20protection\x20is\x20conflict\x20with\x20add\x20worksheet\x20protection','_commandService','move\x20col\x20is\x20conflict\x20with\x20set\x20col\x20visible','add\x20range\x20protection\x20is\x20conflict\x20with\x20set\x20worksheet\x20col\x20width','step','get','forEach','set\x20range\x20protection\x20is\x20conflict\x20with\x20add\x20comment','pluginName','_initSetRangeValues','remove\x20col\x20is\x20conflict\x20with\x20move\x20col','drawingIds','getData','getSheets','handler','\x20and\x20the\x20\x27revision\x27\x20of\x20c1\x20is\x20','m2Prime','FETCH_MISSING','ranges','values','insert\x20row\x20is\x20conflict\x20with\x20set\x20numfmt','univer-pro.collaboration.transform-service','isMerged','remove\x20cols\x20is\x20conflict\x20with\x20set\x20range\x20values\x20mutation','UNIVER_SLIDE','fromOrder','SHOULD_CLOSE_CONN','MSG_FOR_ERROR','unitId','submit_changeset','Algorithm\x20error,\x20m1Prime\x20should\x20not\x20be\x20undefined.','object','SUBMIT_CHANGESET','getLength','move\x20range\x20is\x20conflict\x20with\x20set\x20numfmt','baseRev','287768lqsgVJ','decode','size','transformDocumentDataToSnapshot():\x20Failed\x20to\x20save\x20snapshot.\x0aErrorCode:\x20','move\x20col\x20is\x20conflict\x20with\x20set\x20numfmt','rowData','randomUUID','rule','incrementRevOfUnit','univer.snapshot-server-service','max','rev','APPLY_REJECT','splice','indexOf','TOO_MANY_REQUESTS','set\x20range\x20protection\x20is\x20conflict\x20with\x20add\x20worksheet\x20merge','unitID','transform','length','getInterceptPoints','commentId','set\x20range\x20protection\x20is\x20conflict\x20with\x20insert\x20col','_config','changeset_ack','remove\x20row\x20is\x20conflict\x20with\x20move\x20row','APPLY_REVISION_CONFILICT','color','loadDoc','new_changesets','add\x20worksheet\x20protection\x20is\x20conflict\x20with\x20move\x20row','startRow','ruleId','saveDoc','createUnit','[SnapshotService]:\x20request\x20snapshot\x20error!','add\x20range\x20protection\x20is\x20conflict\x20with\x20move\x20row','set\x20range\x20protection\x20is\x20conflict\x20with\x20remove\x20col','actions','revision','cfId','LICENSE_MAX_MEMBERS_PER_UNIT_EXCEEDED','63QJCzZP','add\x20worksheet\x20protection\x20is\x20conflict\x20with\x20remove\x20data\x20validation\x20rule','_revisionService','has','endRow','NEW_CHANGESETS','collaboration.config','6865278bGpdIl','insert\x20col\x20is\x20conflict\x20with\x20set\x20numfmt','defineProperty','177369YYwIwS','move\x20row\x20is\x20conflict\x20with\x20move\x20range','m1Prime','fromCharCode','set\x20range\x20protection\x20is\x20conflict\x20with\x20set\x20conditional\x20formatting\x20rule','add\x20range\x20protection\x20is\x20conflict\x20with\x20set\x20frozen','sourceRange','add\x20worksheet\x20protection\x20is\x20conflict\x20with\x20update\x20data\x20validation\x20rule','Two\x20set-tab-color\x20mutations\x20have\x20the\x20same\x20unitId\x20and\x20subUnitId.','type','add\x20worksheet\x20protection\x20is\x20conflict\x20with\x20update\x20comment','setRev','_transformMap','[RevisionService]:\x20cannot\x20find\x20document\x20with\x20unitId:\x20','blocks','min','merge','_configService','move\x20col\x20is\x20conflict\x20with\x20set\x20numfmft','before','UNIT_DELETE','columnData','add','add\x20worksheet\x20protection\x20is\x20conflict\x20with\x20add\x20range\x20protection','UNIVER_SHEET','insert\x20row\x20is\x20conflict\x20with\x20remove\x20row','any','shift','body','setValue','set\x20range\x20protection\x20is\x20conflict\x20with\x20set\x20range\x20protection','_resourceManagerService','reorder\x20range\x20is\x20conflict\x20with\x20reorder\x20range','selections','registerCommand','IHistoryIoService','flat','move\x20col\x20is\x20conflict\x20with\x20move\x20range','removeRows','CHANGESET_REVISION_CONFILICT','order','_injector','add\x20range\x20protection\x20is\x20conflict\x20with\x20add\x20range\x20protection','textRanges','message','sequenceNodesBuilder','add\x20worksheet\x20protection\x20is\x20conflict\x20with\x20move\x20col','reduce','getUnit','add\x20worksheet\x20protection\x20is\x20conflict\x20with\x20remove\x20sheet','add\x20worksheet\x20protection\x20is\x20conflict\x20with\x20remove\x20filter','getSheetBlock','crypto.getRandomValues()\x20not\x20supported.\x20See\x20https://github.com/uuidjs/uuid#getrandomvalues-not-supported','column','loadSheet','_leftInclineTransformMutations','sort','error_msg','update_permission_obj','includes','add\x20worksheet\x20protection\x20is\x20conflict\x20with\x20set\x20worksheet\x20name','add\x20worksheet\x20protection\x20is\x20conflict\x20with\x20remove\x20worksheet\x20merge','set\x20range\x20protection\x20is\x20conflict\x20with\x20update\x20comment','add\x20worksheet\x20protection\x20is\x20conflict\x20with\x20remove\x20col','getDeserializedSheetBlock','transformPosition','workbook','startColumn','add\x20worksheet\x20protection\x20is\x20conflict\x20with\x20set\x20worksheet\x20col\x20width','YUUMI_UNABLE_LOAD_URL','remove\x20row\x20is\x20conflict\x20with\x20set\x20numfmt','setConfig','sheets','LICENSE_MAX_UNITS_EXCEEDED','left','transformMutationsWithChangeset','comment_update','actualColumn','Remove-cols\x20has\x20conflicts\x20with\x20move-range','YUUMI_URL_COL_OUT_OF_RANGE','[SnapshotService]:\x20wrong\x20rev\x20from\x20the\x20server!','sheet','onStarting','getMatrix','removeColumns','isArray','add\x20range\x20protection\x20is\x20conflict\x20with\x20insert\x20row','permission_rej','LIVESHARE_NEW_HOST','fetch_missing','add\x20worksheet\x20protection\x20is\x20conflict\x20with\x20remove\x20row','add\x20worksheet\x20protection\x20is\x20conflict\x20with\x20add\x20worksheet\x20merge','getOwnPropertyDescriptor','UNAUTHENTICATED','encode','payload','saveSheetBlock','Block\x20not\x20found','update_cursor','setRevOfUnit','index','liveshare.fetch_operations','bind','value','add\x20worksheet\x20protection\x20is\x20conflict\x20with\x20delete\x20conditional\x20formatting\x20rule','add\x20worksheet\x20protection\x20is\x20conflict\x20with\x20insert\x20col','add\x20range\x20protection\x20is\x20conflict\x20with\x20add\x20comment','getDataRange','should_close_conn','getSnapshot','hasOwnProperty','set\x20range\x20protection\x20is\x20conflict\x20with\x20set\x20range\x20value','isMergedMainCell','EN_US','LICENSE_IMPORT_SIZE_EXCEEDED','after','Two\x20mutation\x20need\x20have\x20the\x20same\x20unitId!','insert\x20row\x20is\x20conflict\x20with\x20set\x20row\x20hidden','1111479rtPWkW','liveshare.terminate','Set-range-values\x20mutation\x20and\x20move-range\x20mutation\x20have\x20an\x20overlapping\x20range.','add\x20range\x20protection\x20is\x20conflict\x20with\x20move\x20col','transformWorkbookDataToSnapshot():\x20Failed\x20to\x20save\x20snapshot.\x0aErrorCode:\x20','UPDATE_CURSOR','SNAPSHOT_HAS_BEEN_REMOVED','LIVESHARE_FETCH_OPERATIONS','drawingId','realDeleteValue','LICENSE_EXPORT_SIZE_EXCEEDED','PERMISSION_REJ','moveRows','add\x20range\x20protection\x20is\x20conflict\x20with\x20insert\x20col','objects','edit\x20range\x20of\x20same\x20data-validation\x20rule\x20is\x20not\x20allowed','primary','_init','range','name','insert\x20row\x20is\x20conflict\x20with\x20set\x20worksheet\x20row\x20height','rules','saveSnapshot','USERS_LEAVE','add\x20range\x20protection\x20is\x20conflict\x20with\x20set\x20range\x20value','doc','USERS_ENTER','slice','rowsAutoHeightInfo','set','insert\x20row\x20is\x20conflict\x20with\x20set\x20worksheet\x20row\x20is\x20auto\x20height','Two\x20mutation\x20have\x20the\x20same\x20worksheetId!','set\x20range\x20protection\x20is\x20conflict\x20with\x20move\x20col','styleRefMap','blockMeta','from','getUnitOnRev','users_enter','fetchThroughInterceptors','getRandomValues','number','insert\x20col\x20is\x20conflict\x20with\x20move\x20col','then','link','resources','_univerInstanceService','parse','INVALID_ARGUMENT','replace','add\x20worksheet\x20protection\x20is\x20conflict\x20with\x20add\x20comment','MUTATION','COMPRESS_MUTATION_SEND','352472RNSYER','add\x20worksheet\x20protection\x20is\x20conflict\x20with\x20set\x20numfmt','NOT_FOUND','end','add\x20range\x20protection\x20is\x20conflict\x20with\x20update\x20comment','findIndex','ref','insert\x20col\x20is\x20conflict\x20with\x20set\x20col\x20hidden','Workbook\x20metadata\x20is\x20not\x20available','push','row','liveshare.operation','move\x20row\x20is\x20conflict\x20with\x20set\x20worksheet\x20row\x20auto\x20height','add\x20worksheet\x20protection\x20is\x20conflict\x20with\x20insert\x20row','UNIVER_DOC','targetRange','toOrder','0123456789','transformMutations','add\x20range\x20protection\x20is\x20conflict\x20with\x20remove\x20col','move\x20row\x20is\x20conflict\x20with\x20set\x20row\x20hidden','mutations','83155XEcXdv','add\x20range\x20protection\x20is\x20conflict\x20with\x20add\x20worksheet\x20merge','actualRow','interceptor','2TABuml','add\x20range\x20protection\x20is\x20conflict\x20with\x20set\x20numfmt','_rightInclineTransformMutations','add\x20worksheet\x20protection\x20is\x20conflict\x20with\x20set\x20worksheet\x20order','toString','map','add\x20range\x20protection\x20is\x20conflict\x20with\x20remove\x20worksheet\x20merge','originalMeta','RevertRevisionMutation\x20conflicts\x20with\x20other\x20mutations!','getCurrentRevOfUnit','remove\x20rows\x20is\x20conflict\x20with\x20set\x20range\x20values\x20mutation,\x20trying\x20to\x20write\x20a\x20formula\x20reference\x20to\x20a\x20removed\x20row','generateRandomId','incrementRev','Trying\x20to\x20mutate\x20a\x20deleted\x20worksheet!','registerTransformAlgorithm','ENSURE_SNAPSHOT_EXECUTION','set\x20range\x20protection\x20is\x20conflict\x20with\x20set\x20numfmt','COMPLETION_FINISHED','remove\x20cols\x20is\x20conflict\x20with\x20set\x20range\x20values\x20mutation,\x20trying\x20to\x20write\x20a\x20formula\x20reference\x20to\x20a\x20removed\x20column','26075300hGJDrc','rng','CHANGESET_REJ','columnCount','set\x20range\x20protection\x20is\x20conflict\x20with\x20move\x20row','foreach','_transformService','add\x20range\x20protection\x20is\x20conflict\x20with\x20set\x20conditional\x20formatting\x20rule','set\x20range\x20protection\x20is\x20conflict\x20with\x20remove\x20worksheet\x20merge','add\x20worksheet\x20protection\x20is\x20conflict\x20with\x20move\x20range','Algorithm\x20error,\x20the\x20changeset\x20does\x20not\x20exist!','remove\x20col\x20is\x20conflict\x20with\x20set\x20numfmt','remove\x20row\x20is\x20conflict\x20with\x20remove\x20numfmt','YUUMI_RATE_OVER_LIMIT','UNIVER_COLLABORATION_PLUGIN','intercept','set\x20range\x20protection\x20is\x20conflict\x20with\x20update\x20data\x20validation\x20rule','COLUMN','right','changeset_rej','add\x20worksheet\x20protection\x20is\x20conflict\x20with\x20add\x20worksheet\x20protection','move\x20row\x20is\x20conflict\x20with\x20set\x20worksheet\x20row\x20is\x20auto\x20height','APPLY_NON_SEQUENTIAL_REVISION','Two\x20set-frozen\x20mutations\x20have\x20the\x20same\x20unitId\x20and\x20subUnitId.','all','LICENSE_DISTRO_REJECTED','cellValue','COMMENT_UPDATE','cellData','subUnitId','error','univer.mutation.revert-version','save','add\x20range\x20protection\x20is\x20conflict\x20with\x20remove\x20data\x20validation\x20rule'];_0x1690=function(){return _0x5bbf8c;};return _0x1690();}export{ad as CollaborationEvent,ur as CompressMutationService,pm as CreateUnitMutation,Gt as DocTransformController,cm as IHistoryIoService,Nd as ISnapshotServerService,Pe as ITransformService,re as RevertRevisionMutation,$t as RevisionService,am as SINGLE_HISTORY_MUTATIONS,nm as SINGLE_SNAPSHOT_MUTATIONS,Bt as SheetTransformController,pe as SnapshotService,Tr as TransformService,fe as UniverCollaborationPlugin,lr as b64DecodeUnicode,om as b64EncodeUnicode,im as generateTempDocumentSnapshot,dm as generateTemporarySnap,lm as getSheetBlocksFromSnapshot,Dr as isTransformChangesetsFailure,Zd as isTransformChangesetsSuccess,le as isTransformMutationFailure,at as isTransformMutationSuccess,ce as isTransformMutationsFailure,qd as isTransformMutationsSuccess,Ar as isTransformMutationsWithChangesetFailure,Qd as isTransformMutationsWithChangesetSuccess,Lt as makeArray,sm as mapDocumentTypeToUniverType,rm as parseChangesetToProtocol,nd as parseMutationToProtocol,tm as parseProtocolChangeset,em as parseProtocolCommand,rd as parseProtocolMutation,ve as textDecoder,ae as textEncoder,um as transformDocumentDataToSnapshot,Vd as transformSnapshotToDocumentData,Wd as transformSnapshotToWorkbookData,mm as transformWorkbookDataToSnapshot};
1
+ const _0x59a5e=_0x29e8;(function(_0x419166,_0x2f0abf){const _0x132a7b=_0x29e8,_0x7047e0=_0x419166();while(!![]){try{const _0x3c098c=-parseInt(_0x132a7b(0x110))/0x1+parseInt(_0x132a7b(0xc5))/0x2*(-parseInt(_0x132a7b(0xc9))/0x3)+-parseInt(_0x132a7b(0x20c))/0x4+parseInt(_0x132a7b(0x1ab))/0x5*(parseInt(_0x132a7b(0x1ba))/0x6)+-parseInt(_0x132a7b(0x229))/0x7*(parseInt(_0x132a7b(0x181))/0x8)+parseInt(_0x132a7b(0x1a2))/0x9+parseInt(_0x132a7b(0x1f4))/0xa;if(_0x3c098c===_0x2f0abf)break;else _0x7047e0['push'](_0x7047e0['shift']());}catch(_0x5754ef){_0x7047e0['push'](_0x7047e0['shift']());}}}(_0x13d7,0x3638d));function _0x29e8(_0x533441,_0x1be217){const _0x13d792=_0x13d7();return _0x29e8=function(_0x29e869,_0x53e87a){_0x29e869=_0x29e869-0xaf;let _0x54bfd2=_0x13d792[_0x29e869];return _0x54bfd2;},_0x29e8(_0x533441,_0x1be217);}var gr=Object['defineProperty'],Ir=(_0x1e57d5,_0x93467c,_0xbc1fa9)=>_0x93467c in _0x1e57d5?gr(_0x1e57d5,_0x93467c,{'enumerable':!0x0,'configurable':!0x0,'writable':!0x0,'value':_0xbc1fa9}):_0x1e57d5[_0x93467c]=_0xbc1fa9,se=(_0x2ac57f,_0x295904,_0x42e04a)=>Ir(_0x2ac57f,typeof _0x295904!=_0x59a5e(0x162)?_0x295904+'':_0x295904,_0x42e04a);import{createIdentifier as _0x23b0f4,Disposable as _0x3283b2,Tools as _0x589265,ObjectMatrix as _0x33d61f,Range as _0x1070fe,queryObjectMatrix as _0x35f568,isRangesEqual as _0x205d2e,Rectangle as _0xff1ead,RANGE_TYPE as _0x22e4d9,isFormulaString as _0x40aee0,insertMatrixArray as _0x51e3a7,moveMatrixArray as _0x5cdb19,spliceArray as _0xaec4eb,CommandType as _0x3f7989,JSON1 as _0xc3339f,JSONX as _0x3734bf,ICommandService as _0x457040,createInterceptorKey as _0x424605,InterceptorManager as _0xf74a7,IUniverInstanceService as _0x499fa1,UniverInstanceType as _0x2552df,SheetTypes as _0x192b35,LocaleType as _0x4c3dec,Inject as _0x4676bb,Injector as _0x5d03cf,IResourceManagerService as _0x1c073d,DependentOn as _0x5165cb,Plugin as _0x57b4dd,IConfigService as _0x523a5a}from'@univerjs/core';import{AddCommentMutation as _0x58b473,DeleteCommentMutation as _0x476949,UpdateCommentMutation as _0x49a7a8,UpdateCommentRefMutation as _0x164c55}from'@univerjs/thread-comment';import{AddConditionalRuleMutation as _0xa12b,MoveConditionalRuleMutation as _0x3e5fad,DeleteConditionalRuleMutation as _0x2e6ec9,SetConditionalRuleMutation as _0x1ef265}from'@univerjs/sheets-conditional-formatting';import{AddDataValidationMutation as _0x34b1dc,RemoveDataValidationMutation as _0x46530b,UpdateRuleType as _0x7ea4bb,UpdateDataValidationMutation as _0x2bcc50}from'@univerjs/data-validation';import{AddHyperLinkMutation as _0x47ed6f,RemoveHyperLinkMutation as _0x1bb828,UpdateHyperLinkMutation as _0x3898ec,UpdateHyperLinkRefMutation as _0x3d7248}from'@univerjs/sheets-hyper-link';import{AddRangeProtectionMutation as _0x346d54,AddWorksheetMergeMutation as _0x223d91,AddWorksheetProtectionMutation as _0x921352,InsertColMutation as _0x55baf7,InsertRowMutation as _0x5694af,MoveColsMutation as _0x4d7dbd,MoveRangeMutation as _0x442c2d,MoveRowsMutation as _0x79cdbf,RemoveColMutation as _0x3f9ab9,RemoveNumfmtMutation as _0x5775f8,RemoveWorksheetMergeMutation as _0x49900b,SetFrozenMutation as _0x491dee,SetNumfmtMutation as _0x432da8,SetRangeProtectionMutation as _0x38d13b,SetRangeValuesMutation as _0x36f561,SetWorksheetColWidthMutation as _0x8fd627,EmptyMutation as _0x44f38d,RemoveRowMutation as _0x361204,SetSelectionsOperation as _0x53e0ba,SetWorksheetOrderMutation as _0x2948b9,RemoveSheetMutation as _0x2a1c35,SetWorksheetNameMutation as _0x420cb8,InsertColCommand as _0x1e9259,handleDefaultRangeChangeWithEffectRefCommands as _0x29cd02,RangeMergeUtil as _0x32b4e3,handleBaseInsertRange as _0x1d0168,handleBaseRemoveRange as _0x1465b8,MoveColsCommand as _0x2d91e5,handleCommonDefaultRangeChangeWithEffectRefCommands as _0x27f154,ReorderRangeMutation as _0x2a2d75,SetColDataMutation as _0xac87f6,SetColHiddenMutation as _0x1b9d87,SetColVisibleMutation as _0x59769e,InsertRowCommand as _0x1cd52b,rotateRange as _0x2690fd,SetRowDataMutation as _0x1932a5,SetRowHiddenMutation as _0xe65e5c,SetRowVisibleMutation as _0x19e155,SetWorksheetRowAutoHeightMutation as _0x264207,SetWorksheetRowHeightMutation as _0x47c35c,SetWorksheetRowIsAutoHeightMutation as _0x5392a6,handleBaseMoveRowsCols as _0x2a97ff,MoveRowsCommand as _0xe7e83c,RemoveColCommand as _0x4fb42e,RemoveRowCommand as _0x564f63,SetTabColorMutation as _0x31f5bf,InsertSheetMutation as _0x3c374e,SetWorksheetProtectionMutation as _0x333e37}from'@univerjs/sheets';import{RemoveSheetsFilterMutation as _0x26442d,SetSheetsFilterCriteriaMutation as _0x1b64c2,SetSheetsFilterRangeMutation as _0xa0b953,ReCalcSheetsFilterMutation as _0xb3d859}from'@univerjs/sheets-filter';import{singleReferenceToGrid as _0x579299,serializeRange as _0x424cfe,LexerTreeBuilder as _0x4385b6,sequenceNodeType as _0x165eb3,deserializeRangeWithSheetWithCache as _0x275666,serializeRangeToRefString as _0xaaa234,ErrorType as _0x5c18f6,generateStringWithSequence as _0x5605dd}from'@univerjs/engine-formula';import{SetDrawingApplyMutation as _0x269484,DrawingApplyType as _0x2e9598}from'@univerjs/sheets-drawing';import{RichTextEditingMutation as _0x5d789c}from'@univerjs/docs';import{UniverLicensePlugin as _0x2b7e48}from'@univerjs-pro/license';function le(_0x3e0553){const _0x4a00da=_0x59a5e;return!!_0x3e0553[_0x4a00da(0xb7)];}function at(_0x36a83e){return!le(_0x36a83e);}function De(_0x180ffb){return!!_0x180ffb['error'];}function ce(_0x3c3703){const _0x4b5ebc=_0x59a5e;return!!_0x3c3703[_0x4b5ebc(0xb7)];}function qd(_0x1145d2){return!ce(_0x1145d2);}function Dr(_0x39a654){const _0x37483e=_0x59a5e;return!!_0x39a654[_0x37483e(0xb7)];}function Zd(_0x4a9735){return!Dr(_0x4a9735);}function Ar(_0x2e79a4){const _0x2ab813=_0x59a5e;return!!_0x2e79a4[_0x2ab813(0xb7)];}function Qd(_0x29dafb){return!Ar(_0x29dafb);}const Pe=_0x23b0f4(_0x59a5e(0x127));class Tr extends _0x3283b2{constructor(){const _0x399e77=_0x59a5e;super(...arguments),se(this,_0x399e77(0x1d7),new Map());}[_0x59a5e(0xde)](){const _0x4ad551=_0x59a5e;this[_0x4ad551(0x1d7)][_0x4ad551(0xe0)]();}[_0x59a5e(0x228)](_0x5654e6){const _0x280fd0=_0x59a5e,{m1:_0x54b73e,m2:_0x18d6a4=_0x280fd0(0x227)}=_0x5654e6;this['_transformMap'][_0x280fd0(0x130)](_0x54b73e)||this[_0x280fd0(0x1d7)][_0x280fd0(0x226)](_0x54b73e,new Map());const _0x495e2a=this[_0x280fd0(0x1d7)]['get'](_0x54b73e);if(_0x495e2a['has'](_0x18d6a4))throw new Error(_0x280fd0(0x19d)+_0x54b73e+_0x280fd0(0x1ea)+_0x18d6a4+'\x20already\x20exists.');_0x495e2a['set'](_0x18d6a4,_0x5654e6);}[_0x59a5e(0xf9)](_0x45193a,_0x6835c0,_0x4d2bb0){const _0x1873cb=_0x59a5e;var _0x5fab02,_0x54d68f,_0x2ec987,_0x499e1b,_0x596133,_0x11d740;const _0xac426a=this[_0x1873cb(0x1d7)],_0x1af26e=((_0x5fab02=_0xac426a['get'](_0x45193a['id']))==null?void 0x0:_0x5fab02[_0x1873cb(0x175)](_0x6835c0['id']))||((_0x54d68f=_0xac426a['get'](_0x45193a['id']))==null?void 0x0:_0x54d68f[_0x1873cb(0x175)]('any'))||((_0x2ec987=_0xac426a['get'](_0x1873cb(0x227)))==null?void 0x0:_0x2ec987[_0x1873cb(0x175)](_0x6835c0['id']));if(_0x1af26e)return _0x4d2bb0?_0x1af26e[_0x1873cb(0x1ce)](_0x45193a,_0x6835c0,_0x4d2bb0):_0x1af26e[_0x1873cb(0x1ce)](_0x45193a,_0x6835c0);const _0x562641=((_0x499e1b=_0xac426a[_0x1873cb(0x175)](_0x6835c0['id']))==null?void 0x0:_0x499e1b[_0x1873cb(0x175)](_0x45193a['id']))||((_0x596133=_0xac426a['get'](_0x6835c0['id']))==null?void 0x0:_0x596133[_0x1873cb(0x175)]('any'))||((_0x11d740=_0xac426a[_0x1873cb(0x175)](_0x1873cb(0x227)))==null?void 0x0:_0x11d740[_0x1873cb(0x175)](_0x45193a['id']));if(_0x562641){const _0x841b0e=_0x4d2bb0?_0x562641['handler'](_0x6835c0,_0x45193a,_0x4d2bb0):_0x562641['handler'](_0x6835c0,_0x45193a);return at(_0x841b0e)?_0x4d2bb0?{'m2Prime':_0x841b0e[_0x1873cb(0x1da)]}:{'m2Prime':_0x841b0e[_0x1873cb(0x1da)],'m1Prime':_0x841b0e[_0x1873cb(0x111)]}:_0x841b0e;}return{'m1Prime':_0x45193a,'m2Prime':_0x6835c0};}[_0x59a5e(0x189)](_0x585264,_0x590320,_0x204a62){const _0x504a19=_0x59a5e,_0x5cdea8=this[_0x504a19(0x1f9)](_0x585264,_0x590320);if(De(_0x5cdea8))return _0x5cdea8;if(_0x204a62)return{'m2Prime':_0x5cdea8};const _0x42eb0c=this[_0x504a19(0xe2)](_0x585264,_0x590320);return De(_0x42eb0c)?_0x42eb0c:{'m1Prime':_0x42eb0c,'m2Prime':_0x5cdea8};}[_0x59a5e(0x1f9)](_0x538da7,_0x569799){const _0x79304b=_0x59a5e,_0x26999=_0x538da7[_0x79304b(0x210)];let _0x3c03b3;for(_0x3c03b3=0x0;_0x3c03b3<_0x26999;_0x3c03b3++){let _0x3e921a=[_0x538da7[_0x3c03b3]],_0x23f66d=[];for(let _0xdbaaf9=0x0,_0x5ef1e9=_0x569799[_0x79304b(0x210)];_0xdbaaf9<_0x5ef1e9;_0xdbaaf9++){const _0x3b847b=_0x569799[_0xdbaaf9];let _0x2cbb6d;if(_0x3e921a['length']===0x0)_0x2cbb6d=[_0x3b847b],_0x3e921a=[];else{if(_0x3e921a[_0x79304b(0x210)]===0x1){const _0x43b762=this[_0x79304b(0xf9)](_0x3e921a[0x0],_0x3b847b);if(le(_0x43b762))return _0x43b762;if(_0x2cbb6d=Lt(_0x43b762['m2Prime']),!_0x43b762[_0x79304b(0x1da)])throw new Error('Algorithm\x20error,\x20m1Prime\x20should\x20not\x20be\x20undefined.');_0x3e921a=Lt(_0x43b762[_0x79304b(0x1da)]);}else{const _0x584842=this['_rightInclineTransformMutations'](_0x3e921a,[_0x3b847b]);if(_0x584842[_0x79304b(0xb7)])return _0x584842;if(_0x2cbb6d=_0x584842,_0xdbaaf9<_0x5ef1e9-0x1){const _0x2f85b5=this['_leftInclineTransformMutations'](_0x3e921a,[_0x3b847b]);if(_0x2f85b5['error'])return _0x2f85b5;_0x3e921a=_0x2f85b5;}}}_0x23f66d=_0x23f66d[_0x79304b(0xff)](_0x2cbb6d);}_0x569799=_0x23f66d;}return _0x569799;}[_0x59a5e(0xe2)](_0x1a5856,_0x1457e6){const _0x140658=_0x59a5e,_0x29da7d=_0x1457e6[_0x140658(0x210)];let _0x49d74d;for(_0x49d74d=0x0;_0x49d74d<_0x29da7d;_0x49d74d++){let _0x1b204b=[_0x1457e6[_0x49d74d]],_0x317bdb=[];for(let _0x186c56=0x0,_0x19e259=_0x1a5856[_0x140658(0x210)];_0x186c56<_0x19e259;_0x186c56++){const _0x4f8445=_0x1a5856[_0x186c56];let _0x1bab84;if(_0x1b204b[_0x140658(0x210)]===0x0)_0x1bab84=[_0x4f8445],_0x1b204b=[];else{if(_0x1b204b[_0x140658(0x210)]===0x1){const _0x499af5=this[_0x140658(0xf9)](_0x4f8445,_0x1b204b[0x0]);if(le(_0x499af5))return _0x499af5;if(!_0x499af5['m1Prime'])throw new Error(_0x140658(0x1fa));_0x1bab84=Lt(_0x499af5[_0x140658(0x1da)]),_0x1b204b=Lt(_0x499af5[_0x140658(0x111)]);}else{const _0x4bb687=this[_0x140658(0xe2)]([_0x4f8445],_0x1b204b);if(_0x4bb687[_0x140658(0xb7)])return _0x4bb687;if(_0x1bab84=_0x4bb687,_0x186c56<_0x19e259-0x1){const _0x439898=this[_0x140658(0x1f9)]([_0x4f8445],_0x1b204b);if(_0x439898[_0x140658(0xb7)])return _0x439898;_0x1b204b=_0x439898;}}}_0x317bdb=_0x317bdb[_0x140658(0xff)](_0x1bab84);}_0x1a5856=_0x317bdb;}return _0x1a5856;}[_0x59a5e(0x1dc)](_0x39a4ef,_0x2ad2ef,_0xee3114){const _0x18b497=_0x59a5e;if(!Lr(_0x39a4ef,_0x2ad2ef))throw new Error(_0x18b497(0x1c8)+_0x2ad2ef[0x0][_0x18b497(0x10e)]+'\x20and\x20the\x20\x27revision\x27\x20of\x20c1\x20is\x20'+_0x39a4ef[0x0]['revision']+'.');const _0x349e22=_0x39a4ef[_0x18b497(0x210)],_0x304432=_0x2ad2ef[_0x18b497(0x210)],_0x46b18d=Ae(_0x349e22,_0x304432+0x1),_0x1825d8=Ae(_0x349e22+0x1,_0x304432);_0x39a4ef['forEach']((_0x3daa44,_0x5aa330)=>_0x46b18d[_0x5aa330][0x0]=_0x3daa44),_0x2ad2ef[_0x18b497(0x233)]((_0x125be2,_0x36f5f2)=>_0x1825d8[0x0][_0x36f5f2]=_0x125be2);try{for(let _0x265980=0x0;_0x265980<_0x304432;_0x265980++)for(let _0x8dbd96=0x0;_0x8dbd96<_0x349e22;_0x8dbd96++){const _0x3019fd=_0x1825d8[_0x8dbd96][_0x265980],_0x20bd9e=_0x46b18d[_0x8dbd96][_0x265980];if(!_0x3019fd||!_0x20bd9e)throw new Error(_0x18b497(0x15d));const _0x3091d4=this['transformMutations'](_0x20bd9e[_0x18b497(0x164)],_0x3019fd[_0x18b497(0x164)]);if(ce(_0x3091d4))return{'error':_0x3091d4['error']};_0x1825d8[_0x8dbd96+0x1][_0x265980]={..._0x3019fd,'mutations':_0x3091d4[_0x18b497(0x111)]},_0x46b18d[_0x8dbd96][_0x265980+0x1]={..._0x20bd9e,'mutations':_0x3091d4['m1Prime']};}return _0xee3114?{'c2Prime':_0x1825d8[_0x349e22]}:{'c1Prime':_0x46b18d[_0x18b497(0xea)](_0x43addd=>_0x43addd[_0x304432])['flat'](),'c2Prime':_0x1825d8[_0x349e22]};}catch(_0x4bbb76){throw console['error'](_0x4bbb76),_0x4bbb76;}}[_0x59a5e(0x1d6)](_0x217bf2,_0x1b6638){const _0x568c0c=_0x59a5e,_0xc9e78b=_0x217bf2[_0x568c0c(0x164)],_0x55ad40=this[_0x568c0c(0x189)](_0xc9e78b,_0x1b6638);return ce(_0x55ad40)?{'error':_0x55ad40[_0x568c0c(0xb7)]}:{'m2Prime':_0x55ad40['m2Prime'],'c1Prime':{..._0x217bf2,'mutations':_0x55ad40['m1Prime']}};}}function Lr(_0x4af56e,_0x7416c3){const _0x2c9953=_0x59a5e;return _0x4af56e[0x0][_0x2c9953(0x22a)]-0x1===_0x7416c3[0x0]['baseRev'];}function Ae(_0x4c164c,_0x4ff6bb){return new Array(_0x4c164c)['fill'](void 0x0)['map'](()=>new Array(_0x4ff6bb));}function Lt(_0x440851){return Array['isArray'](_0x440851)?_0x440851:[_0x440851];}const kr={'m1':_0x58b473['id'],'m2':_0x58b473['id'],'handler':(_0x161e34,_0x3d90a2)=>{const _0x23dd40=_0x59a5e,_0x2514f0=_0x161e34[_0x23dd40(0x126)],_0x17d2a1=_0x3d90a2[_0x23dd40(0x126)],_0x49736a={'m1Prime':_0x161e34,'m2Prime':_0x3d90a2};if(_0x2514f0[_0x23dd40(0x10f)]!==_0x17d2a1[_0x23dd40(0x10f)]||_0x2514f0[_0x23dd40(0x18c)]!==_0x17d2a1[_0x23dd40(0x18c)]||_0x2514f0['comment'][_0x23dd40(0x180)]!==_0x17d2a1[_0x23dd40(0x1a1)]['ref'])return _0x49736a;if(!_0x2514f0[_0x23dd40(0x1a1)][_0x23dd40(0x241)]&&!_0x17d2a1[_0x23dd40(0x1a1)][_0x23dd40(0x241)]){const _0xec1493=_0x589265[_0x23dd40(0x1cb)](_0x3d90a2);return _0xec1493[_0x23dd40(0x126)][_0x23dd40(0x1a1)][_0x23dd40(0x241)]=_0x161e34[_0x23dd40(0x126)][_0x23dd40(0x1a1)]['id'],{'m1Prime':[{'id':_0x476949['id'],'params':{'unitId':_0x2514f0[_0x23dd40(0x10f)],'subUnitId':_0x17d2a1[_0x23dd40(0x18c)],'commentId':_0x17d2a1[_0x23dd40(0x1a1)]['id']}},_0x161e34,_0xec1493],'m2Prime':[_0xec1493]};}return _0x49736a;}},xr={'m1':_0xa12b['id'],'m2':_0xa12b['id'],'handler'(_0x3669a0,_0x1ed3ea){const _0x4f254=_0x59a5e;if(_0x3669a0[_0x4f254(0x126)][_0x4f254(0x10f)]!==_0x1ed3ea[_0x4f254(0x126)][_0x4f254(0x10f)]||_0x3669a0[_0x4f254(0x126)][_0x4f254(0x18c)]!==_0x1ed3ea[_0x4f254(0x126)][_0x4f254(0x18c)])return{'m1Prime':_0x3669a0,'m2Prime':_0x1ed3ea};const {unitId:_0x30e261,subUnitId:_0x126af4}=_0x3669a0[_0x4f254(0x126)],_0x3507ac=_0x589265[_0x4f254(0x1cb)](_0x3669a0),_0x5817da=_0x589265[_0x4f254(0x1cb)](_0x1ed3ea),_0x22f507=[_0x3507ac],_0x2b9f79={'unitId':_0x30e261,'subUnitId':_0x126af4,'start':{'id':_0x5817da[_0x4f254(0x126)][_0x4f254(0xbc)][_0x4f254(0x20d)],'type':'before'},'end':{'id':_0x5817da[_0x4f254(0x126)][_0x4f254(0xbc)][_0x4f254(0x20d)],'type':_0x4f254(0xaf)}};return _0x22f507[_0x4f254(0x112)]({'id':_0x3e5fad['id'],'params':_0x2b9f79}),{'m1Prime':_0x22f507,'m2Prime':_0x5817da};}};function oe(_0x12bfd5,_0x42123b,_0x34dba0,_0x56e208){const _0x10eed0=_0x59a5e,_0x40b1d1=new _0x33d61f();_0x34dba0[_0x10eed0(0x233)](_0x710177=>{const _0x291da7=_0x10eed0;_0x710177[_0x291da7(0x238)][_0x291da7(0x233)](_0x4ba44b=>{const _0x274c9d=_0x291da7;_0x1070fe[_0x274c9d(0x21c)](_0x4ba44b,(_0x20cf27,_0x12c252)=>{const _0x2216bd=_0x274c9d;_0x40b1d1[_0x2216bd(0xef)](_0x20cf27,_0x12c252,_0x710177[_0x2216bd(0x1db)]);});});}),_0x56e208[_0x10eed0(0x233)](_0x5ab427=>{const _0x37c4cf=_0x10eed0;_0x5ab427[_0x37c4cf(0x238)][_0x37c4cf(0x233)](_0x4083a5=>{const _0x4eb3d6=_0x37c4cf;_0x1070fe[_0x4eb3d6(0x21c)](_0x4083a5,(_0x83efe3,_0x75cf83)=>{const _0x56fe1c=_0x4eb3d6;_0x40b1d1[_0x56fe1c(0xef)](_0x83efe3,_0x75cf83,_0x5ab427[_0x56fe1c(0x1db)]);});});});const _0x3f79ce=[];return _0x34dba0[_0x10eed0(0x233)](_0x468b24=>{const _0xae76f2=_0x10eed0,_0x499de9=_0x35f568(_0x40b1d1,_0x40e277=>_0x40e277===_0x468b24[_0xae76f2(0x1db)]);if(_0x499de9['length']){if(!_0x205d2e(_0x499de9,_0x468b24['ranges'])){const _0x314151={'ruleId':_0x468b24[_0xae76f2(0x1db)],'unitId':_0x12bfd5,'subUnitId':_0x42123b,'payload':{'type':_0x7ea4bb[_0xae76f2(0x244)],'payload':_0x499de9}};_0x3f79ce[_0xae76f2(0x112)]({'id':_0x2bcc50['id'],'params':_0x314151});}}else{const _0x44e8cd={'ruleId':_0x468b24['uid'],'unitId':_0x12bfd5,'subUnitId':_0x42123b};_0x3f79ce['push']({'id':_0x46530b['id'],'params':_0x44e8cd});}}),_0x3f79ce;}function kt(_0x44f07a,_0x549c2f){const _0x2f1493=_0x59a5e,_0x4b7bf2=_0x589265[_0x2f1493(0x1cb)](Array[_0x2f1493(0xf2)](_0x44f07a[_0x2f1493(0x126)][_0x2f1493(0xbc)])?_0x44f07a[_0x2f1493(0x126)][_0x2f1493(0xbc)]:[_0x44f07a['params'][_0x2f1493(0xbc)]]);return _0x549c2f['forEach'](_0x2d004d=>{const _0x9e16b0=_0x2f1493;if(_0x2d004d['id']===_0x2bcc50['id']){const _0x5b26b1=_0x2d004d,_0x36c9b2=_0x4b7bf2[_0x9e16b0(0x160)](_0x3b2169=>_0x3b2169[_0x9e16b0(0x1db)]===_0x5b26b1[_0x9e16b0(0x126)][_0x9e16b0(0x197)]);_0x36c9b2[_0x9e16b0(0x238)]=_0x5b26b1[_0x9e16b0(0x126)][_0x9e16b0(0x218)]['payload'];}else{if(_0x2d004d['id']===_0x46530b['id']){const _0x42acad=_0x4b7bf2[_0x9e16b0(0x1df)](_0x2bf110=>_0x2bf110['uid']===_0x2d004d[_0x9e16b0(0x126)][_0x9e16b0(0x197)]);_0x4b7bf2[_0x42acad]=null;}}}),_0x4b7bf2[_0x2f1493(0x12d)](Boolean)['length']?[{..._0x44f07a,'params':{..._0x44f07a['params'],'rule':_0x4b7bf2['filter'](Boolean)}}]:[];}const Hr={'m1':_0x34b1dc['id'],'m2':_0x34b1dc['id'],'handler':(_0x92c8a7,_0x7d2376)=>{const _0xc263a=_0x59a5e,_0x4bdbf4={'m1Prime':_0x92c8a7,'m2Prime':_0x7d2376},_0x35f0f6=_0x92c8a7[_0xc263a(0x126)],_0x15fce6=_0x7d2376[_0xc263a(0x126)];if(_0x35f0f6[_0xc263a(0x10f)]!==_0x15fce6[_0xc263a(0x10f)]||_0x35f0f6[_0xc263a(0x18c)]!==_0x15fce6['subUnitId'])return _0x4bdbf4;const _0x4c029e=_0x589265['deepClone'](_0x92c8a7),_0x3dda93=_0x589265['deepClone'](_0x7d2376),_0x151d62=_0x35f0f6[_0xc263a(0x10f)],_0x43fa29=_0x15fce6[_0xc263a(0x18c)],_0x1cece1=_0x4c029e[_0xc263a(0x126)][_0xc263a(0xbc)],_0x4f308a=_0x3dda93[_0xc263a(0x126)][_0xc263a(0xbc)];if(Array[_0xc263a(0xf2)](_0x1cece1)&&Array['isArray'](_0x4f308a))return{'m1Prime':[],'m2Prime':[]};if(Array[_0xc263a(0xf2)](_0x1cece1)){_0x4c029e[_0xc263a(0x126)][_0xc263a(0x206)]=0x0;const _0x5037a=oe(_0x151d62,_0x43fa29,_0x1cece1,[_0x4f308a]);return{'m1Prime':kt(_0x4c029e,_0x5037a),'m2Prime':[..._0x5037a,_0x3dda93]};}if(Array['isArray'](_0x4f308a)){const _0x37198e=oe(_0x151d62,_0x43fa29,_0x4f308a,[_0x1cece1]);return _0x3dda93[_0xc263a(0x126)][_0xc263a(0x206)]=0x0,{'m1Prime':kt(_0x4c029e,_0x37198e),'m2Prime':[..._0x37198e,_0x3dda93]};}const _0x1ccaf5=oe(_0x151d62,_0x43fa29,[_0x1cece1],[_0x4f308a]);return _0x3dda93[_0xc263a(0x126)][_0xc263a(0x206)]=-0x1,{'m1Prime':kt(_0x4c029e,_0x1ccaf5),'m2Prime':[..._0x1ccaf5,_0x3dda93]};}},Fr={'m1':_0x34b1dc['id'],'m2':_0x2bcc50['id'],'handler':(_0x1fc02c,_0xeae459)=>{const _0x6ae9e5=_0x59a5e,_0x5b5422={'m1Prime':_0x1fc02c,'m2Prime':_0xeae459},_0x975712=_0x1fc02c[_0x6ae9e5(0x126)],_0xb2bbc9=_0xeae459['params'];if(_0x975712[_0x6ae9e5(0x10f)]!==_0xb2bbc9['unitId']||_0x975712[_0x6ae9e5(0x18c)]!==_0xb2bbc9[_0x6ae9e5(0x18c)])return _0x5b5422;if(_0xeae459[_0x6ae9e5(0x126)]['payload']['type']===_0x7ea4bb[_0x6ae9e5(0x244)]){const {unitId:_0xcc15c4,subUnitId:_0x1e7e06}=_0x1fc02c['params'],_0x4edcea=Array['isArray'](_0x1fc02c['params']['rule'])?_0x1fc02c[_0x6ae9e5(0x126)][_0x6ae9e5(0xbc)]:[_0x1fc02c[_0x6ae9e5(0x126)][_0x6ae9e5(0xbc)]],_0xf2813e=[],_0x5f25f7=new _0x33d61f();return _0x4edcea[_0x6ae9e5(0x233)](_0x3cd19d=>{const _0x35299b=_0x6ae9e5;_0x3cd19d['ranges'][_0x35299b(0x233)](_0x12da2e=>{const _0x492a15=_0x35299b;_0x1070fe[_0x492a15(0x21c)](_0x12da2e,(_0x3dd652,_0x32fd14)=>{const _0x1cbe7a=_0x492a15;_0x5f25f7[_0x1cbe7a(0xef)](_0x3dd652,_0x32fd14,_0x3cd19d[_0x1cbe7a(0x1db)]);});});}),_0xeae459[_0x6ae9e5(0x126)][_0x6ae9e5(0x218)][_0x6ae9e5(0x218)]['forEach'](_0xae719b=>{_0x1070fe['foreach'](_0xae719b,(_0x5ed6cb,_0x25cb9c)=>{const _0x393e83=_0x29e8;_0x5f25f7[_0x393e83(0xef)](_0x5ed6cb,_0x25cb9c,_0xeae459[_0x393e83(0x126)][_0x393e83(0x197)]);});}),_0x4edcea['forEach'](_0x1ec8a1=>{const _0x478669=_0x6ae9e5,_0x4d4c5d=_0x35f568(_0x5f25f7,_0x3b14a5=>_0x3b14a5===_0x1ec8a1[_0x478669(0x1db)]);_0x205d2e(_0x4d4c5d,_0x1ec8a1[_0x478669(0x238)])||(_0x4d4c5d[_0x478669(0x210)]?_0xf2813e['push']({'id':_0x2bcc50['id'],'params':{'unitId':_0xcc15c4,'subUnitId':_0x1e7e06,'ruleId':_0x1ec8a1[_0x478669(0x1db)],'payload':{'type':_0x7ea4bb[_0x478669(0x244)],'payload':_0x4d4c5d}}}):_0xf2813e[_0x478669(0x112)]({'id':_0x46530b['id'],'params':{'unitId':_0xcc15c4,'subUnitId':_0x1e7e06,'ruleId':_0x1ec8a1[_0x478669(0x1db)]}}));}),{'m1Prime':kt(_0x1fc02c,_0xf2813e),'m2Prime':[..._0xf2813e,_0xeae459]};}return _0x5b5422;}},Br={'m1':_0x47ed6f['id'],'m2':_0x47ed6f['id'],'handler':(_0x40fa03,_0x367f3c)=>{const _0x359f79=_0x59a5e,_0xe6d330=_0x40fa03[_0x359f79(0x126)],_0x9ea38a=_0x367f3c['params'];return _0xe6d330['unitId']===_0x9ea38a[_0x359f79(0x10f)]&&_0xe6d330[_0x359f79(0x18c)]===_0x9ea38a[_0x359f79(0x18c)]&&_0xe6d330[_0x359f79(0xd4)][_0x359f79(0x204)]===_0x9ea38a['link'][_0x359f79(0x204)]&&_0xe6d330['link'][_0x359f79(0x142)]===_0x9ea38a[_0x359f79(0xd4)]['column']?{'m2Prime':_0x367f3c,'m1Prime':[]}:{'m1Prime':_0x40fa03,'m2Prime':_0x367f3c};}},Gr={'m1':_0x346d54['id'],'m2':_0x58b473['id'],'handler':(_0x2ab2fd,_0x27fffe)=>{const _0x538d10=_0x59a5e,_0x2d888c={'m1Prime':_0x2ab2fd,'m2Prime':_0x27fffe};return _0x2ab2fd[_0x538d10(0x126)][_0x538d10(0x10f)]!==_0x27fffe[_0x538d10(0x126)][_0x538d10(0x10f)]||_0x2ab2fd['params'][_0x538d10(0x18c)]!==_0x27fffe['params']['subUnitId']?_0x2d888c:{'error':new Error('add\x20range\x20protection\x20is\x20conflict\x20with\x20add\x20comment')};}},jr={'m1':_0x346d54['id'],'m2':_0xa12b['id'],'handler':(_0x1174db,_0xd4ac7f)=>{const _0x2f4828=_0x59a5e,_0x52eb50={'m1Prime':_0x1174db,'m2Prime':_0xd4ac7f};if(_0x1174db['params']['unitId']!==_0xd4ac7f[_0x2f4828(0x126)][_0x2f4828(0x10f)]||_0x1174db['params'][_0x2f4828(0x18c)]!==_0xd4ac7f[_0x2f4828(0x126)][_0x2f4828(0x18c)])return _0x52eb50;const _0x1cb543=_0x1174db[_0x2f4828(0x126)][_0x2f4828(0x216)][_0x2f4828(0xea)](_0xea2df4=>_0xea2df4[_0x2f4828(0x238)])[_0x2f4828(0x1c0)](),_0x467b=_0xd4ac7f[_0x2f4828(0x126)][_0x2f4828(0xbc)]['ranges'];return _0x1cb543[_0x2f4828(0x221)](_0xb940e7=>_0x467b['some'](_0x54479b=>_0xff1ead[_0x2f4828(0x1fd)](_0xb940e7,_0x54479b)))?{'error':new Error(_0x2f4828(0x1e7))}:_0x52eb50;}},$r={'m1':_0x346d54['id'],'m2':_0x346d54['id'],'handler':(_0x137478,_0x4eafdb)=>{const _0x2434b2=_0x59a5e,_0x1636c5={'m1Prime':_0x137478,'m2Prime':_0x4eafdb};if(_0x137478['params'][_0x2434b2(0x10f)]!==_0x4eafdb[_0x2434b2(0x126)][_0x2434b2(0x10f)]||_0x137478['params'][_0x2434b2(0x18c)]!==_0x4eafdb[_0x2434b2(0x126)][_0x2434b2(0x18c)])return _0x1636c5;const _0x414684=_0x137478[_0x2434b2(0x126)][_0x2434b2(0x216)][_0x2434b2(0xea)](_0x2c625f=>_0x2c625f['ranges'])['flat'](),_0x487ad2=_0x4eafdb[_0x2434b2(0x126)][_0x2434b2(0x216)]['map'](_0x180f35=>_0x180f35[_0x2434b2(0x238)])[_0x2434b2(0x1c0)]();return _0x414684['some'](_0x9d82a2=>_0x487ad2['some'](_0x59158d=>_0xff1ead[_0x2434b2(0x1fd)](_0x9d82a2,_0x59158d)))?{'error':new Error(_0x2434b2(0x1b7))}:_0x1636c5;}},Yr={'m1':_0x346d54['id'],'m2':_0x223d91['id'],'handler':(_0x2da510,_0x7cf643)=>{const _0x300a79=_0x59a5e,_0x2b05f0={'m1Prime':_0x2da510,'m2Prime':_0x7cf643};if(_0x2da510['params'][_0x300a79(0x10f)]!==_0x7cf643[_0x300a79(0x126)]['unitId']||_0x2da510['params'][_0x300a79(0x18c)]!==_0x7cf643[_0x300a79(0x126)][_0x300a79(0x18c)])return _0x2b05f0;const _0x17e289=_0x2da510[_0x300a79(0x126)]['rules']['map'](_0x49ad19=>_0x49ad19['ranges'])['flat'](),_0x52c01d=_0x7cf643[_0x300a79(0x126)][_0x300a79(0x238)];return _0x17e289[_0x300a79(0x221)](_0x16bc3f=>_0x52c01d[_0x300a79(0x221)](_0x54e39a=>_0xff1ead[_0x300a79(0x1fd)](_0x16bc3f,_0x54e39a)))?{'error':new Error(_0x300a79(0x211))}:_0x2b05f0;}},Jr={'m1':_0x346d54['id'],'m2':_0x921352['id'],'handler':(_0x21b383,_0xcee02a)=>{const _0xc5d895=_0x59a5e,_0x3bfbd8={'m1Prime':_0x21b383,'m2Prime':_0xcee02a};return _0x21b383[_0xc5d895(0x126)]['unitId']!==_0xcee02a[_0xc5d895(0x126)][_0xc5d895(0x10f)]||_0x21b383['params'][_0xc5d895(0x18c)]!==_0xcee02a[_0xc5d895(0x126)][_0xc5d895(0xbc)][_0xc5d895(0x18c)]?_0x3bfbd8:{'error':new Error(_0xc5d895(0x1f6))};}},Xr={'m1':_0x346d54['id'],'m2':_0x2e6ec9['id'],'handler':(_0x2f54d2,_0x450de3)=>{const _0x23a192=_0x59a5e,_0x2b6d8b={'m1Prime':_0x2f54d2,'m2Prime':_0x450de3};return _0x2f54d2['params']['unitId']!==_0x450de3[_0x23a192(0x126)]['unitId']||_0x2f54d2['params']['subUnitId']!==_0x450de3['params'][_0x23a192(0x18c)]?_0x2b6d8b:{'error':new Error(_0x23a192(0x23d))};}},Kr={'m1':_0x346d54['id'],'m2':_0x55baf7['id'],'handler':(_0x5cc6c2,_0x5f792f)=>{const _0x893d15=_0x59a5e,_0x4d8e1d={'m1Prime':_0x5cc6c2,'m2Prime':_0x5f792f};if(_0x5cc6c2[_0x893d15(0x126)]['unitId']!==_0x5f792f['params']['unitId']||_0x5cc6c2[_0x893d15(0x126)][_0x893d15(0x18c)]!==_0x5f792f[_0x893d15(0x126)][_0x893d15(0x18c)])return _0x4d8e1d;const _0x46eee1=_0x5cc6c2[_0x893d15(0x126)][_0x893d15(0x216)][_0x893d15(0xea)](_0x37e538=>_0x37e538[_0x893d15(0x238)])[_0x893d15(0x1c0)](),_0x229918=_0x5f792f[_0x893d15(0x126)][_0x893d15(0x114)];return _0x46eee1[_0x893d15(0x221)](_0x4e43a7=>_0xff1ead[_0x893d15(0x1fd)](_0x4e43a7,_0x229918))?{'error':new Error(_0x893d15(0x245))}:_0x4d8e1d;}},zr={'m1':_0x346d54['id'],'m2':_0x5694af['id'],'handler':(_0x575a88,_0x568d06)=>{const _0x11578b=_0x59a5e,_0x432f3c={'m1Prime':_0x575a88,'m2Prime':_0x568d06};if(_0x575a88['params']['unitId']!==_0x568d06[_0x11578b(0x126)][_0x11578b(0x10f)]||_0x575a88[_0x11578b(0x126)][_0x11578b(0x18c)]!==_0x568d06[_0x11578b(0x126)][_0x11578b(0x18c)])return _0x432f3c;const _0x37da5d=_0x575a88['params'][_0x11578b(0x216)][_0x11578b(0xea)](_0x5ad33c=>_0x5ad33c[_0x11578b(0x238)])[_0x11578b(0x1c0)](),_0x46b9b2=_0x568d06[_0x11578b(0x126)][_0x11578b(0x114)];return _0x37da5d['some'](_0x322d54=>_0xff1ead['intersects'](_0x322d54,_0x46b9b2))?{'error':new Error(_0x11578b(0x1fe))}:_0x432f3c;}},qr={'m1':_0x346d54['id'],'m2':_0x4d7dbd['id'],'handler':(_0x89b8a1,_0x56dd14)=>{const _0x2d9b47=_0x59a5e,_0x102d3a={'m1Prime':_0x89b8a1,'m2Prime':_0x56dd14};if(_0x89b8a1[_0x2d9b47(0x126)][_0x2d9b47(0x10f)]!==_0x56dd14[_0x2d9b47(0x126)][_0x2d9b47(0x10f)]||_0x89b8a1[_0x2d9b47(0x126)][_0x2d9b47(0x18c)]!==_0x56dd14['params'][_0x2d9b47(0x18c)])return _0x102d3a;const _0x1869af=_0x89b8a1[_0x2d9b47(0x126)][_0x2d9b47(0x216)]['map'](_0x2f6331=>_0x2f6331[_0x2d9b47(0x238)])[_0x2d9b47(0x1c0)](),_0xf85e43=[_0x56dd14[_0x2d9b47(0x126)][_0x2d9b47(0x1ad)],_0x56dd14['params'][_0x2d9b47(0x1d3)]];return _0x1869af[_0x2d9b47(0x221)](_0x2f557f=>_0xf85e43[_0x2d9b47(0x221)](_0x3ff52d=>_0xff1ead[_0x2d9b47(0x1fd)](_0x2f557f,_0x3ff52d)))?{'error':new Error(_0x2d9b47(0x24c))}:_0x102d3a;}},Zr={'m1':_0x346d54['id'],'m2':_0x442c2d['id'],'handler':(_0x50aa7b,_0x457f49)=>{const _0x5d1278=_0x59a5e,_0x394de8={'m1Prime':_0x50aa7b,'m2Prime':_0x457f49};if(_0x50aa7b['params'][_0x5d1278(0x10f)]!==_0x457f49[_0x5d1278(0x126)][_0x5d1278(0x10f)]||_0x50aa7b['params']['subUnitId']!==_0x457f49[_0x5d1278(0x126)]['from']['subUnitId'])return _0x394de8;const _0x52e906=_0x50aa7b[_0x5d1278(0x126)][_0x5d1278(0x216)][_0x5d1278(0xea)](_0x3ba986=>_0x3ba986[_0x5d1278(0x238)])[_0x5d1278(0x1c0)](),_0x39904d=new _0x33d61f(_0x457f49['params'][_0x5d1278(0x16d)][_0x5d1278(0x18f)])[_0x5d1278(0x1a7)](),_0x22c80d=new _0x33d61f(_0x457f49[_0x5d1278(0x126)]['to']['value'])[_0x5d1278(0x1a7)](),_0x764c62=[_0x39904d,_0x22c80d];return _0x52e906[_0x5d1278(0x221)](_0x534834=>_0x764c62[_0x5d1278(0x221)](_0x2646f1=>_0xff1ead[_0x5d1278(0x1fd)](_0x534834,_0x2646f1)))?{'error':new Error(_0x5d1278(0x13c))}:_0x394de8;}},Qr={'m1':_0x346d54['id'],'m2':_0x79cdbf['id'],'handler':(_0x3eb3a5,_0x22dd1f)=>{const _0x39355b=_0x59a5e,_0x3dd90c={'m1Prime':_0x3eb3a5,'m2Prime':_0x22dd1f};if(_0x3eb3a5[_0x39355b(0x126)]['unitId']!==_0x22dd1f[_0x39355b(0x126)][_0x39355b(0x10f)]||_0x3eb3a5[_0x39355b(0x126)]['subUnitId']!==_0x22dd1f[_0x39355b(0x126)]['subUnitId'])return _0x3dd90c;const _0x30bab1=_0x3eb3a5['params']['rules'][_0x39355b(0xea)](_0x485a80=>_0x485a80['ranges'])[_0x39355b(0x1c0)](),_0x507960=[_0x22dd1f[_0x39355b(0x126)][_0x39355b(0x1ad)],_0x22dd1f['params'][_0x39355b(0x1d3)]];return _0x30bab1[_0x39355b(0x221)](_0x158d7e=>_0x507960['some'](_0x2f2221=>_0xff1ead[_0x39355b(0x1fd)](_0x158d7e,_0x2f2221)))?{'error':new Error('add\x20range\x20protection\x20is\x20conflict\x20with\x20move\x20row')}:_0x3dd90c;}},tn={'m1':_0x346d54['id'],'m2':_0x3f9ab9['id'],'handler':(_0x5674c8,_0x15c622)=>{const _0x5eb845=_0x59a5e,_0x2a9d0c={'m1Prime':_0x5674c8,'m2Prime':_0x15c622};if(_0x5674c8[_0x5eb845(0x126)][_0x5eb845(0x10f)]!==_0x15c622[_0x5eb845(0x126)][_0x5eb845(0x10f)]||_0x5674c8['params']['subUnitId']!==_0x15c622['params']['subUnitId'])return _0x2a9d0c;const _0x103e44=_0x5674c8[_0x5eb845(0x126)]['rules']['map'](_0x8dc897=>_0x8dc897[_0x5eb845(0x238)])[_0x5eb845(0x1c0)](),_0x23bd4c=_0x15c622['params']['range'];return _0x103e44[_0x5eb845(0x221)](_0x83db4f=>_0xff1ead[_0x5eb845(0x1fd)](_0x83db4f,_0x23bd4c))?{'error':new Error('add\x20range\x20protection\x20is\x20conflict\x20with\x20remove\x20col')}:_0x2a9d0c;}},en={'m1':_0x346d54['id'],'m2':_0x46530b['id'],'handler':(_0xdbaaa9,_0x39d391)=>{const _0x246dda=_0x59a5e,_0x45cfdf={'m1Prime':_0xdbaaa9,'m2Prime':_0x39d391};return _0xdbaaa9[_0x246dda(0x126)][_0x246dda(0x10f)]!==_0x39d391[_0x246dda(0x126)][_0x246dda(0x10f)]||_0xdbaaa9[_0x246dda(0x126)][_0x246dda(0x18c)]!==_0x39d391[_0x246dda(0x126)][_0x246dda(0x18c)]?_0x45cfdf:{'error':new Error(_0x246dda(0xf7))};}},rn={'m1':_0x346d54['id'],'m2':_0x5775f8['id'],'handler':(_0x17ef83,_0x55def5)=>{const _0x1a3296=_0x59a5e,_0xba9304={'m1Prime':_0x17ef83,'m2Prime':_0x55def5};if(_0x17ef83[_0x1a3296(0x126)]['unitId']!==_0x55def5[_0x1a3296(0x126)][_0x1a3296(0x10f)]||_0x17ef83[_0x1a3296(0x126)][_0x1a3296(0x18c)]!==_0x55def5['params']['subUnitId'])return _0xba9304;const _0x3baa30=_0x17ef83['params']['rules'][_0x1a3296(0xea)](_0xcfa936=>_0xcfa936[_0x1a3296(0x238)])['flat'](),_0x332a75=_0x55def5[_0x1a3296(0x126)]['ranges'];return _0x3baa30[_0x1a3296(0x221)](_0x237e0f=>_0x332a75[_0x1a3296(0x221)](_0x563149=>_0xff1ead['intersects'](_0x237e0f,_0x563149)))?{'error':new Error('add\x20range\x20protection\x20is\x20conflict\x20with\x20remove\x20numfmt')}:_0xba9304;}},nn={'m1':_0x346d54['id'],'m2':_0x26442d['id'],'handler':(_0x26278c,_0x415f93)=>{const _0x306fad=_0x59a5e,_0x3fc3da={'m1Prime':_0x26278c,'m2Prime':_0x415f93};return _0x26278c['params']['unitId']!==_0x415f93[_0x306fad(0x126)][_0x306fad(0x10f)]||_0x26278c[_0x306fad(0x126)][_0x306fad(0x18c)]!==_0x415f93[_0x306fad(0x126)]['subUnitId']?_0x3fc3da:{'error':new Error(_0x306fad(0x11c))};}},an={'m1':_0x346d54['id'],'m2':_0x49900b['id'],'handler':(_0x28719b,_0xb403e5)=>{const _0x3a4254=_0x59a5e,_0x1b9a41={'m1Prime':_0x28719b,'m2Prime':_0xb403e5};if(_0x28719b[_0x3a4254(0x126)][_0x3a4254(0x10f)]!==_0xb403e5[_0x3a4254(0x126)]['unitId']||_0x28719b[_0x3a4254(0x126)][_0x3a4254(0x18c)]!==_0xb403e5['params'][_0x3a4254(0x18c)])return _0x1b9a41;const _0x54004f=_0x28719b[_0x3a4254(0x126)][_0x3a4254(0x216)][_0x3a4254(0xea)](_0x180e0d=>_0x180e0d['ranges'])['flat'](),_0x551793=_0xb403e5[_0x3a4254(0x126)][_0x3a4254(0x238)];return _0x54004f['some'](_0x31b072=>_0x551793[_0x3a4254(0x221)](_0x22fb14=>_0xff1ead[_0x3a4254(0x1fd)](_0x31b072,_0x22fb14)))?{'error':new Error(_0x3a4254(0xf6))}:_0x1b9a41;}},sn={'m1':_0x346d54['id'],'m2':_0x1ef265['id'],'handler':(_0x3a1232,_0x3ab162)=>{const _0x25724d=_0x59a5e,_0x1946e2={'m1Prime':_0x3a1232,'m2Prime':_0x3ab162};if(_0x3a1232[_0x25724d(0x126)][_0x25724d(0x10f)]!==_0x3ab162[_0x25724d(0x126)][_0x25724d(0x10f)]||_0x3a1232[_0x25724d(0x126)]['subUnitId']!==_0x3ab162[_0x25724d(0x126)]['subUnitId'])return _0x1946e2;const _0x1fbd7a=_0x3a1232[_0x25724d(0x126)]['rules'][_0x25724d(0xea)](_0x5d3fd5=>_0x5d3fd5[_0x25724d(0x238)])[_0x25724d(0x1c0)](),_0x2cbdfe=_0x3ab162[_0x25724d(0x126)][_0x25724d(0xbc)][_0x25724d(0x238)];return _0x1fbd7a[_0x25724d(0x221)](_0x5274ae=>_0x2cbdfe[_0x25724d(0x221)](_0x3ce99c=>_0xff1ead['intersects'](_0x5274ae,_0x3ce99c)))?{'error':new Error(_0x25724d(0x195))}:_0x1946e2;}},on={'m1':_0x346d54['id'],'m2':_0x491dee['id'],'handler':(_0x4476bd,_0x411a87)=>{const _0x17be17=_0x59a5e,_0x5e15f6={'m1Prime':_0x4476bd,'m2Prime':_0x411a87};if(_0x4476bd[_0x17be17(0x126)][_0x17be17(0x10f)]!==_0x411a87['params'][_0x17be17(0x10f)]||_0x4476bd[_0x17be17(0x126)][_0x17be17(0x18c)]!==_0x411a87[_0x17be17(0x126)][_0x17be17(0x18c)])return _0x5e15f6;const _0x330caf=_0x4476bd['params']['rules']['map'](_0x1af891=>_0x1af891[_0x17be17(0x238)])['flat'](),_0x116410=[{'startRow':_0x411a87[_0x17be17(0x126)][_0x17be17(0xcd)],'endRow':_0x411a87['params'][_0x17be17(0xcd)],'startColumn':_0x411a87[_0x17be17(0x126)][_0x17be17(0x11d)],'endColumn':_0x411a87[_0x17be17(0x126)][_0x17be17(0x11d)]}];return _0x330caf[_0x17be17(0x221)](_0x585df4=>_0x116410[_0x17be17(0x221)](_0x13db71=>_0xff1ead['intersects'](_0x585df4,_0x13db71)))?{'error':new Error(_0x17be17(0x136))}:_0x5e15f6;}},dn={'m1':_0x346d54['id'],'m2':_0x432da8['id'],'handler':(_0x8d772f,_0x3cf9c7)=>{const _0x3cffca=_0x59a5e,_0x5de1f5={'m1Prime':_0x8d772f,'m2Prime':_0x3cf9c7};return _0x8d772f[_0x3cffca(0x126)][_0x3cffca(0x10f)]!==_0x3cf9c7[_0x3cffca(0x126)][_0x3cffca(0x10f)]||_0x8d772f[_0x3cffca(0x126)][_0x3cffca(0x18c)]!==_0x3cf9c7[_0x3cffca(0x126)][_0x3cffca(0x18c)]?_0x5de1f5:{'error':new Error(_0x3cffca(0xb8))};}},mn={'m1':_0x346d54['id'],'m2':_0x38d13b['id'],'handler':(_0x4ea525,_0xd7da12)=>{const _0x39440b=_0x59a5e,_0x372c05={'m1Prime':_0x4ea525,'m2Prime':_0xd7da12};if(_0x4ea525[_0x39440b(0x126)][_0x39440b(0x10f)]!==_0xd7da12['params'][_0x39440b(0x10f)]||_0x4ea525[_0x39440b(0x126)][_0x39440b(0x18c)]!==_0xd7da12['params']['subUnitId'])return _0x372c05;const _0x56979c=_0x4ea525['params'][_0x39440b(0x216)][_0x39440b(0xea)](_0x464c22=>_0x464c22[_0x39440b(0x238)])[_0x39440b(0x1c0)](),_0x41d820=_0xd7da12['params'][_0x39440b(0xbc)][_0x39440b(0x238)];return _0x56979c[_0x39440b(0x221)](_0x24103c=>_0x41d820['some'](_0x57580d=>_0xff1ead[_0x39440b(0x1fd)](_0x24103c,_0x57580d)))?{'error':new Error(_0x39440b(0x165))}:_0x372c05;}},un={'m1':_0x346d54['id'],'m2':_0x36f561['id'],'handler':(_0x25e18a,_0x5ebfe1)=>{const _0x3e0d00=_0x59a5e,_0x44b82b={'m1Prime':_0x25e18a,'m2Prime':_0x5ebfe1};if(_0x25e18a[_0x3e0d00(0x126)][_0x3e0d00(0x10f)]!==_0x5ebfe1[_0x3e0d00(0x126)]['unitId']||_0x25e18a[_0x3e0d00(0x126)]['subUnitId']!==_0x5ebfe1[_0x3e0d00(0x126)]['subUnitId'])return _0x44b82b;const _0x2d4418=_0x25e18a['params'][_0x3e0d00(0x216)][_0x3e0d00(0xea)](_0x4c3416=>_0x4c3416[_0x3e0d00(0x238)])[_0x3e0d00(0x1c0)](),_0x47d603=new _0x33d61f(_0x5ebfe1[_0x3e0d00(0x126)][_0x3e0d00(0x153)])[_0x3e0d00(0x1a7)]();return _0x2d4418[_0x3e0d00(0x221)](_0x46a8b2=>_0xff1ead[_0x3e0d00(0x1fd)](_0x46a8b2,_0x47d603))?{'error':new Error(_0x3e0d00(0x171))}:_0x44b82b;}},ln={'m1':_0x346d54['id'],'m2':_0x8fd627['id'],'handler':(_0x399120,_0x3b7df1)=>{const _0x438cfb=_0x59a5e,_0x10cb89={'m1Prime':_0x399120,'m2Prime':_0x3b7df1};if(_0x399120[_0x438cfb(0x126)]['unitId']!==_0x3b7df1[_0x438cfb(0x126)][_0x438cfb(0x10f)]||_0x399120[_0x438cfb(0x126)][_0x438cfb(0x18c)]!==_0x3b7df1[_0x438cfb(0x126)][_0x438cfb(0x18c)])return _0x10cb89;const _0x7d57bb=_0x399120[_0x438cfb(0x126)][_0x438cfb(0x216)][_0x438cfb(0xea)](_0x168e40=>_0x168e40[_0x438cfb(0x238)])[_0x438cfb(0x1c0)](),_0x3a9148=_0x3b7df1['params'][_0x438cfb(0x238)];return _0x7d57bb[_0x438cfb(0x221)](_0x3fa99b=>_0x3a9148[_0x438cfb(0x221)](_0x24a559=>_0xff1ead[_0x438cfb(0x1fd)](_0x3fa99b,_0x24a559)))?{'error':new Error(_0x438cfb(0x236))}:_0x10cb89;}},cn={'m1':_0x346d54['id'],'m2':_0x49a7a8['id'],'handler':(_0x3f54dd,_0x3e845d)=>{const _0x55c8f1=_0x59a5e,_0x24537c={'m1Prime':_0x3f54dd,'m2Prime':_0x3e845d};return _0x3f54dd[_0x55c8f1(0x126)][_0x55c8f1(0x10f)]!==_0x3e845d[_0x55c8f1(0x126)][_0x55c8f1(0x10f)]||_0x3f54dd['params'][_0x55c8f1(0x18c)]!==_0x3e845d[_0x55c8f1(0x126)][_0x55c8f1(0x18c)]?_0x24537c:{'error':new Error(_0x55c8f1(0x1f1))};}},pn={'m1':_0x346d54['id'],'m2':_0x2bcc50['id'],'handler':(_0x55c354,_0x3db573)=>{const _0x2df859=_0x59a5e,_0x22b544={'m1Prime':_0x55c354,'m2Prime':_0x3db573};return _0x55c354[_0x2df859(0x126)][_0x2df859(0x10f)]!==_0x3db573[_0x2df859(0x126)]['unitId']||_0x55c354['params'][_0x2df859(0x18c)]!==_0x3db573['params'][_0x2df859(0x18c)]?_0x22b544:{'error':new Error(_0x2df859(0x1bc))};}},fn={'m1':_0x223d91['id'],'m2':_0x223d91['id'],'handler'(_0x3f0b32,_0x1a98e5){const _0x30cd86=_0x59a5e,_0x1f58a0=_0x589265['deepClone'](_0x3f0b32),_0x5d12e1=_0x589265[_0x30cd86(0x1cb)](_0x1a98e5);if(_0x3f0b32['params'][_0x30cd86(0x10f)]!==_0x1a98e5[_0x30cd86(0x126)]['unitId']||_0x3f0b32[_0x30cd86(0x126)][_0x30cd86(0x18c)]!==_0x1a98e5[_0x30cd86(0x126)][_0x30cd86(0x18c)])return{'m1Prime':_0x1f58a0,'m2Prime':_0x5d12e1};const _0x3253b4=_0x1f58a0[_0x30cd86(0x126)][_0x30cd86(0x238)],_0x43fbd7=_0x5d12e1[_0x30cd86(0x126)][_0x30cd86(0x238)],_0x35f0a5=[_0x5d12e1],_0x1bf4f3=new Set();for(let _0x2b6583=0x0;_0x2b6583<_0x3253b4[_0x30cd86(0x210)];_0x2b6583++)for(let _0x43b433=0x0;_0x43b433<_0x43fbd7[_0x30cd86(0x210)];_0x43b433++)if(_0xff1ead[_0x30cd86(0x1fd)](_0x3253b4[_0x2b6583],_0x43fbd7[_0x43b433])){_0x1bf4f3[_0x30cd86(0xe3)](_0x3253b4[_0x2b6583]),_0x3253b4[_0x30cd86(0xc2)](_0x2b6583,0x1),_0x2b6583--;break;}return _0x1bf4f3[_0x30cd86(0x23a)]>0x0&&_0x35f0a5[_0x30cd86(0x149)]({'id':_0x49900b['id'],'params':{'unitId':_0x3f0b32['params'][_0x30cd86(0x10f)],'subUnitId':_0x3f0b32[_0x30cd86(0x126)][_0x30cd86(0x18c)],'ranges':Array[_0x30cd86(0x16d)](_0x1bf4f3)}}),_0x3253b4[_0x30cd86(0x210)]===0x0&&(_0x1f58a0['id']=_0x44f38d['id']),{'m1Prime':_0x1f58a0,'m2Prime':_0x35f0a5[_0x30cd86(0x210)]>0x1?_0x35f0a5:_0x5d12e1};}},rr={'m1':_0x223d91['id'],'m2':_0x55baf7['id'],'handler'(_0x57e326,_0x360a85){const _0x28216f=_0x59a5e,_0x778de9=_0x589265[_0x28216f(0x1cb)](_0x57e326),_0x44abfb=_0x589265[_0x28216f(0x1cb)](_0x360a85);if(_0x57e326['params'][_0x28216f(0x10f)]!==_0x360a85[_0x28216f(0x126)][_0x28216f(0x10f)]||_0x57e326[_0x28216f(0x126)][_0x28216f(0x18c)]!==_0x360a85['params'][_0x28216f(0x18c)])return{'m1Prime':_0x778de9,'m2Prime':_0x44abfb};const _0x5ebb02=_0x57e326[_0x28216f(0x126)]['unitId'],_0x1746e4=_0x57e326['params'][_0x28216f(0x18c)],_0xb4db27=[_0x44abfb],_0x701468=[],_0x4e7ee4=[];return _0x778de9[_0x28216f(0x126)][_0x28216f(0x238)][_0x28216f(0x233)](_0x459ab4=>{const _0x6c68a2=_0x28216f,_0x4239ca=_0x360a85[_0x6c68a2(0x126)][_0x6c68a2(0x114)],_0x283a36=_0x4239ca[_0x6c68a2(0x104)]-_0x4239ca[_0x6c68a2(0x11d)]+0x1;_0x4239ca[_0x6c68a2(0x11d)]<=_0x459ab4['startColumn']?(_0x701468['push']({..._0x459ab4}),_0x4e7ee4['push']({..._0x459ab4,'startColumn':_0x459ab4[_0x6c68a2(0x11d)]+_0x283a36,'endColumn':_0x459ab4[_0x6c68a2(0x104)]+_0x283a36}),_0x459ab4[_0x6c68a2(0x11d)]=_0x459ab4[_0x6c68a2(0x11d)]+_0x283a36,_0x459ab4[_0x6c68a2(0x104)]=_0x459ab4[_0x6c68a2(0x104)]+_0x283a36):_0x4239ca['startColumn']>_0x459ab4[_0x6c68a2(0x11d)]&&_0x4239ca[_0x6c68a2(0x11d)]<=_0x459ab4[_0x6c68a2(0x104)]&&(_0x701468[_0x6c68a2(0x112)]({..._0x459ab4}),_0x4e7ee4['push']({..._0x459ab4,'endColumn':_0x459ab4[_0x6c68a2(0x104)]+_0x283a36}),_0x459ab4[_0x6c68a2(0x104)]=_0x459ab4[_0x6c68a2(0x104)]+_0x283a36);}),_0x701468[_0x28216f(0x210)]>0x0&&_0xb4db27['unshift']({'id':_0x49900b['id'],'params':{'unitId':_0x5ebb02,'subUnitId':_0x1746e4,'ranges':_0x701468}}),_0x4e7ee4['length']>0x0&&_0xb4db27[_0x28216f(0x112)]({'id':_0x223d91['id'],'params':{'unitId':_0x5ebb02,'subUnitId':_0x1746e4,'ranges':_0x4e7ee4}}),{'m1Prime':_0x778de9,'m2Prime':_0xb4db27[_0x28216f(0x210)]>0x1?_0xb4db27:_0xb4db27[0x0]};}},nr={'m1':_0x223d91['id'],'m2':_0x5694af['id'],'handler'(_0x5b8153,_0x50e788){const _0x3bd5b3=_0x59a5e,_0x1fc09d=_0x589265['deepClone'](_0x5b8153),_0x548089=_0x589265[_0x3bd5b3(0x1cb)](_0x50e788);if(_0x5b8153[_0x3bd5b3(0x126)]['unitId']!==_0x50e788['params'][_0x3bd5b3(0x10f)]||_0x5b8153[_0x3bd5b3(0x126)][_0x3bd5b3(0x18c)]!==_0x50e788['params'][_0x3bd5b3(0x18c)])return{'m1Prime':_0x1fc09d,'m2Prime':_0x548089};const _0x14c565=_0x5b8153[_0x3bd5b3(0x126)][_0x3bd5b3(0x10f)],_0x1a4285=_0x5b8153[_0x3bd5b3(0x126)]['subUnitId'],_0x8e3d1c=[_0x548089],_0x3478cc=[],_0xec7e43=[];return _0x1fc09d['params']['ranges'][_0x3bd5b3(0x233)](_0x319110=>{const _0x334a53=_0x3bd5b3,_0x530ca3=_0x50e788[_0x334a53(0x126)]['range'],_0x406659=_0x530ca3[_0x334a53(0xf0)]-_0x530ca3[_0x334a53(0xcd)]+0x1;_0x530ca3[_0x334a53(0xcd)]<=_0x319110[_0x334a53(0xcd)]?(_0x3478cc[_0x334a53(0x112)]({..._0x319110}),_0xec7e43[_0x334a53(0x112)]({..._0x319110,'startRow':_0x319110[_0x334a53(0xcd)]+_0x406659,'endRow':_0x319110[_0x334a53(0xf0)]+_0x406659}),_0x319110['startRow']=_0x319110[_0x334a53(0xcd)]+_0x406659,_0x319110[_0x334a53(0xf0)]=_0x319110[_0x334a53(0xf0)]+_0x406659):_0x530ca3[_0x334a53(0xcd)]>_0x319110[_0x334a53(0xcd)]&&_0x530ca3['startRow']<=_0x319110['endRow']&&(_0x3478cc['push']({..._0x319110}),_0xec7e43[_0x334a53(0x112)]({..._0x319110,'endRow':_0x319110[_0x334a53(0xf0)]+_0x406659}),_0x319110['endRow']=_0x319110[_0x334a53(0xf0)]+_0x406659);}),_0x3478cc[_0x3bd5b3(0x210)]>0x0&&_0x8e3d1c[_0x3bd5b3(0x149)]({'id':_0x49900b['id'],'params':{'unitId':_0x14c565,'subUnitId':_0x1a4285,'ranges':_0x3478cc}}),_0xec7e43[_0x3bd5b3(0x210)]>0x0&&_0x8e3d1c[_0x3bd5b3(0x112)]({'id':_0x223d91['id'],'params':{'unitId':_0x14c565,'subUnitId':_0x1a4285,'ranges':_0xec7e43}}),{'m1Prime':_0x1fc09d,'m2Prime':_0x8e3d1c[_0x3bd5b3(0x210)]>0x1?_0x8e3d1c:_0x8e3d1c[0x0]};}},ar={'m1':_0x223d91['id'],'m2':_0x4d7dbd['id'],'handler'(_0x149541,_0x175d80){const _0x8d4aca=_0x59a5e,_0x52c8ed=_0x589265['deepClone'](_0x149541),_0x291ab3=_0x589265[_0x8d4aca(0x1cb)](_0x175d80);if(_0x149541[_0x8d4aca(0x126)]['unitId']!==_0x175d80['params'][_0x8d4aca(0x10f)]||_0x149541['params']['subUnitId']!==_0x175d80[_0x8d4aca(0x126)][_0x8d4aca(0x18c)])return{'m1Prime':_0x52c8ed,'m2Prime':_0x291ab3};const _0xa16e2b=[],_0x39836e=[],_0x135f2f=[_0x291ab3];for(let _0xa164aa=0x0;_0xa164aa<_0x52c8ed[_0x8d4aca(0x126)][_0x8d4aca(0x238)]['length'];_0xa164aa++){const _0x1fadf0=_0x52c8ed['params'][_0x8d4aca(0x238)][_0xa164aa],{sourceRange:_0x1fa54f,targetRange:_0x3f9fae}=_0x175d80[_0x8d4aca(0x126)];_0xff1ead[_0x8d4aca(0x1fd)](_0x1fadf0,_0x1fa54f)||_0xff1ead['intersects'](_0x1fadf0,_0x3f9fae)?(_0xa16e2b[_0x8d4aca(0x112)]({..._0x1fadf0}),_0x52c8ed[_0x8d4aca(0x126)][_0x8d4aca(0x238)]['splice'](_0xa164aa,0x1),_0xa164aa--):_0x1fa54f[_0x8d4aca(0x11d)]<_0x1fadf0[_0x8d4aca(0x11d)]&&_0x3f9fae[_0x8d4aca(0x11d)]>_0x1fadf0[_0x8d4aca(0x104)]?(_0xa16e2b[_0x8d4aca(0x112)]({..._0x1fadf0}),_0x39836e[_0x8d4aca(0x112)]({..._0x1fadf0,'startColumn':_0x1fadf0[_0x8d4aca(0x11d)]-(_0x1fa54f[_0x8d4aca(0x104)]-_0x1fa54f['startColumn']+0x1),'endColumn':_0x1fadf0['endColumn']-(_0x1fa54f['endColumn']-_0x1fa54f[_0x8d4aca(0x11d)]+0x1)}),_0x1fadf0[_0x8d4aca(0x11d)]=_0x1fadf0[_0x8d4aca(0x11d)]-(_0x1fa54f[_0x8d4aca(0x104)]-_0x1fa54f[_0x8d4aca(0x11d)]+0x1),_0x1fadf0[_0x8d4aca(0x104)]=_0x1fadf0['endColumn']-(_0x1fa54f[_0x8d4aca(0x104)]-_0x1fa54f[_0x8d4aca(0x11d)]+0x1)):_0x1fa54f[_0x8d4aca(0x11d)]>_0x1fadf0[_0x8d4aca(0x104)]&&_0x3f9fae['endColumn']<_0x1fadf0[_0x8d4aca(0x11d)]&&(_0xa16e2b[_0x8d4aca(0x112)]({..._0x1fadf0}),_0x39836e[_0x8d4aca(0x112)]({..._0x1fadf0,'startColumn':_0x1fadf0[_0x8d4aca(0x11d)]+(_0x1fa54f[_0x8d4aca(0x104)]-_0x1fa54f[_0x8d4aca(0x11d)]+0x1),'endColumn':_0x1fadf0[_0x8d4aca(0x104)]+(_0x1fa54f[_0x8d4aca(0x104)]-_0x1fa54f[_0x8d4aca(0x11d)]+0x1)}),_0x1fadf0[_0x8d4aca(0x11d)]=_0x1fadf0[_0x8d4aca(0x11d)]+(_0x1fa54f[_0x8d4aca(0x104)]-_0x1fa54f[_0x8d4aca(0x11d)]+0x1),_0x1fadf0[_0x8d4aca(0x104)]=_0x1fadf0[_0x8d4aca(0x104)]+(_0x1fa54f[_0x8d4aca(0x104)]-_0x1fa54f[_0x8d4aca(0x11d)]+0x1));}return _0xa16e2b[_0x8d4aca(0x210)]>0x0&&_0x135f2f[_0x8d4aca(0x149)]({'id':_0x49900b['id'],'params':{'unitId':_0x149541[_0x8d4aca(0x126)][_0x8d4aca(0x10f)],'subUnitId':_0x149541[_0x8d4aca(0x126)][_0x8d4aca(0x18c)],'ranges':_0xa16e2b}}),_0x39836e['length']>0x0&&_0x135f2f[_0x8d4aca(0x112)]({'id':_0x223d91['id'],'params':{'unitId':_0x149541[_0x8d4aca(0x126)][_0x8d4aca(0x10f)],'subUnitId':_0x149541[_0x8d4aca(0x126)][_0x8d4aca(0x18c)],'ranges':_0x39836e}}),_0x52c8ed['params']['ranges'][_0x8d4aca(0x210)]===0x0&&(_0x52c8ed['id']=_0x44f38d['id']),{'m1Prime':_0x52c8ed,'m2Prime':_0x135f2f[_0x8d4aca(0x210)]>0x1?_0x135f2f:_0x135f2f[0x0]};}},sr={'m1':_0x223d91['id'],'m2':_0x442c2d['id'],'handler'(_0x5b3f10,_0x3c9232){const _0x49f6ef=_0x59a5e,_0x27f10c=_0x589265[_0x49f6ef(0x1cb)](_0x5b3f10),_0x9c1b35=_0x589265[_0x49f6ef(0x1cb)](_0x3c9232);if(_0x5b3f10['params'][_0x49f6ef(0x10f)]!==_0x3c9232['params'][_0x49f6ef(0x10f)])return{'m1Prime':_0x27f10c,'m2Prime':_0x9c1b35};const _0x13a0ee=[],_0x414148=[_0x9c1b35],_0x4b1fa3=new _0x33d61f(_0x3c9232['params'][_0x49f6ef(0x16d)][_0x49f6ef(0x18f)])[_0x49f6ef(0x1a7)](),_0x58dc3f=new _0x33d61f(_0x3c9232['params']['to'][_0x49f6ef(0x18f)])[_0x49f6ef(0x1a7)]();for(let _0x450ada=0x0;_0x450ada<_0x27f10c['params']['ranges']['length'];_0x450ada++){const _0x1d1d0c=_0x27f10c[_0x49f6ef(0x126)][_0x49f6ef(0x238)][_0x450ada];(_0xff1ead['intersects'](_0x4b1fa3,_0x1d1d0c)||_0xff1ead[_0x49f6ef(0x1fd)](_0x58dc3f,_0x1d1d0c))&&(_0x13a0ee['push'](_0x1d1d0c),_0x27f10c['params'][_0x49f6ef(0x238)][_0x49f6ef(0xc2)](_0x450ada,0x1),_0x450ada--);}return _0x13a0ee[_0x49f6ef(0x210)]>0x0&&_0x414148[_0x49f6ef(0x149)]({'id':_0x49900b['id'],'params':{'unitId':_0x5b3f10['params']['unitId'],'subUnitId':_0x5b3f10['params'][_0x49f6ef(0x18c)],'ranges':_0x13a0ee}}),_0x27f10c[_0x49f6ef(0x126)]['ranges']['length']===0x0&&(_0x27f10c['id']=_0x44f38d['id']),{'m1Prime':_0x27f10c,'m2Prime':_0x414148['length']>0x1?_0x414148:_0x414148[0x0]};}},or={'m1':_0x223d91['id'],'m2':_0x79cdbf['id'],'handler'(_0x21631e,_0x51db63){const _0x2650b3=_0x59a5e,_0x48b40c=_0x589265['deepClone'](_0x21631e),_0x57c378=_0x589265[_0x2650b3(0x1cb)](_0x51db63);if(_0x21631e['params']['unitId']!==_0x51db63[_0x2650b3(0x126)][_0x2650b3(0x10f)]||_0x21631e[_0x2650b3(0x126)]['subUnitId']!==_0x51db63[_0x2650b3(0x126)][_0x2650b3(0x18c)])return{'m1Prime':_0x48b40c,'m2Prime':_0x57c378};const _0x3cf7a7=[],_0x2f02eb=[],_0x31ceb9=[_0x57c378];for(let _0x738a29=0x0;_0x738a29<_0x48b40c[_0x2650b3(0x126)][_0x2650b3(0x238)][_0x2650b3(0x210)];_0x738a29++){const _0x2b897b=_0x48b40c[_0x2650b3(0x126)][_0x2650b3(0x238)][_0x738a29],{sourceRange:_0x113b9f,targetRange:_0x26b06c}=_0x51db63[_0x2650b3(0x126)];_0xff1ead[_0x2650b3(0x1fd)](_0x2b897b,_0x113b9f)||_0xff1ead[_0x2650b3(0x1fd)](_0x2b897b,_0x26b06c)?(_0x3cf7a7[_0x2650b3(0x112)]({..._0x2b897b}),_0x48b40c[_0x2650b3(0x126)][_0x2650b3(0x238)]['splice'](_0x738a29,0x1),_0x738a29--):_0x113b9f[_0x2650b3(0xcd)]<_0x2b897b[_0x2650b3(0xcd)]&&_0x26b06c['startRow']>_0x2b897b[_0x2650b3(0xf0)]?(_0x3cf7a7[_0x2650b3(0x112)]({..._0x2b897b}),_0x2f02eb[_0x2650b3(0x112)]({..._0x2b897b,'startRow':_0x2b897b[_0x2650b3(0xcd)]-(_0x113b9f['endRow']-_0x113b9f['startRow']+0x1),'endRow':_0x2b897b[_0x2650b3(0xf0)]-(_0x113b9f[_0x2650b3(0xf0)]-_0x113b9f[_0x2650b3(0xcd)]+0x1)}),_0x2b897b[_0x2650b3(0xcd)]=_0x2b897b[_0x2650b3(0xcd)]-(_0x113b9f['endRow']-_0x113b9f[_0x2650b3(0xcd)]+0x1),_0x2b897b[_0x2650b3(0xf0)]=_0x2b897b[_0x2650b3(0xf0)]-(_0x113b9f['endRow']-_0x113b9f[_0x2650b3(0xcd)]+0x1)):_0x113b9f[_0x2650b3(0xcd)]>_0x2b897b['endRow']&&_0x26b06c[_0x2650b3(0xf0)]<_0x2b897b[_0x2650b3(0xcd)]&&(_0x3cf7a7[_0x2650b3(0x112)]({..._0x2b897b}),_0x2f02eb[_0x2650b3(0x112)]({..._0x2b897b,'startRow':_0x2b897b[_0x2650b3(0xcd)]+(_0x113b9f[_0x2650b3(0xf0)]-_0x113b9f[_0x2650b3(0xcd)]+0x1),'endRow':_0x2b897b['endRow']+(_0x113b9f[_0x2650b3(0xf0)]-_0x113b9f['startRow']+0x1)}),_0x2b897b['startRow']=_0x2b897b[_0x2650b3(0xcd)]+(_0x113b9f[_0x2650b3(0xf0)]-_0x113b9f['startRow']+0x1),_0x2b897b[_0x2650b3(0xf0)]=_0x2b897b[_0x2650b3(0xf0)]+(_0x113b9f['endRow']-_0x113b9f['startRow']+0x1));}return _0x3cf7a7[_0x2650b3(0x210)]>0x0&&_0x31ceb9[_0x2650b3(0x149)]({'id':_0x49900b['id'],'params':{'unitId':_0x21631e[_0x2650b3(0x126)][_0x2650b3(0x10f)],'subUnitId':_0x21631e[_0x2650b3(0x126)][_0x2650b3(0x18c)],'ranges':_0x3cf7a7}}),_0x2f02eb[_0x2650b3(0x210)]>0x0&&_0x31ceb9[_0x2650b3(0x112)]({'id':_0x223d91['id'],'params':{'unitId':_0x21631e[_0x2650b3(0x126)][_0x2650b3(0x10f)],'subUnitId':_0x21631e[_0x2650b3(0x126)][_0x2650b3(0x18c)],'ranges':_0x2f02eb}}),_0x48b40c[_0x2650b3(0x126)][_0x2650b3(0x238)][_0x2650b3(0x210)]===0x0&&(_0x48b40c['id']=_0x44f38d['id']),{'m1Prime':_0x48b40c,'m2Prime':_0x31ceb9['length']>0x1?_0x31ceb9:_0x31ceb9[0x0]};}};function K(_0x279592){const _0x3ed289=_0x59a5e;return _0x279592[_0x3ed289(0x11d)]>_0x279592['endColumn']||_0x279592[_0x3ed289(0xcd)]>_0x279592[_0x3ed289(0xf0)]?!0x1:!(_0x279592['startRow']===_0x279592[_0x3ed289(0xf0)]&&_0x279592[_0x3ed289(0x11d)]===_0x279592[_0x3ed289(0x104)]);}const ir={'m1':_0x223d91['id'],'m2':_0x3f9ab9['id'],'handler'(_0xaad7b2,_0x4bb68d){const _0x387c12=_0x59a5e,_0x25d9bf=_0x589265[_0x387c12(0x1cb)](_0xaad7b2),_0x266205=_0x589265[_0x387c12(0x1cb)](_0x4bb68d);if(_0xaad7b2[_0x387c12(0x126)]['unitId']!==_0x4bb68d[_0x387c12(0x126)][_0x387c12(0x10f)]||_0xaad7b2[_0x387c12(0x126)][_0x387c12(0x18c)]!==_0x4bb68d['params']['subUnitId'])return{'m1Prime':_0x25d9bf,'m2Prime':_0x266205};const _0x2b8deb=_0xaad7b2['params'][_0x387c12(0x10f)],_0x4985cd=_0xaad7b2[_0x387c12(0x126)][_0x387c12(0x18c)],_0x5ede97=[_0x266205],_0x159f6c=[],_0x169118=[];for(let _0x3c0757=0x0;_0x3c0757<_0x25d9bf['params'][_0x387c12(0x238)][_0x387c12(0x210)];_0x3c0757++){const _0x377a86=_0x25d9bf[_0x387c12(0x126)][_0x387c12(0x238)][_0x3c0757],_0x5c8f9d=_0x4bb68d['params'][_0x387c12(0x114)],_0x5bfad3=_0x5c8f9d['endColumn']-_0x5c8f9d['startColumn']+0x1;if(_0x5c8f9d[_0x387c12(0x11d)]<_0x377a86[_0x387c12(0x11d)]&&_0x5c8f9d['endColumn']<_0x377a86[_0x387c12(0x11d)])_0x159f6c[_0x387c12(0x112)]({..._0x377a86}),_0x169118['push']({..._0x377a86,'startColumn':_0x377a86[_0x387c12(0x11d)]-_0x5bfad3,'endColumn':_0x377a86[_0x387c12(0x104)]-_0x5bfad3}),_0x377a86['startColumn']=_0x377a86[_0x387c12(0x11d)]-_0x5bfad3,_0x377a86[_0x387c12(0x104)]=_0x377a86['endColumn']-_0x5bfad3;else{if(_0x5c8f9d[_0x387c12(0x11d)]<_0x377a86[_0x387c12(0x11d)]&&_0x5c8f9d[_0x387c12(0x104)]>=_0x377a86[_0x387c12(0x11d)]&&_0x5c8f9d[_0x387c12(0x104)]<=_0x377a86[_0x387c12(0x104)]){_0x159f6c[_0x387c12(0x112)]({..._0x377a86});const _0x168ec2={..._0x377a86,'startColumn':_0x5c8f9d[_0x387c12(0x11d)],'endColumn':_0x377a86[_0x387c12(0x104)]-_0x5bfad3};K(_0x168ec2)&&_0x5c8f9d[_0x387c12(0x104)]<_0x377a86[_0x387c12(0x104)]?(_0x5c8f9d['endColumn']<_0x377a86[_0x387c12(0x104)]&&_0x169118[_0x387c12(0x112)](_0x168ec2),_0x377a86[_0x387c12(0x11d)]=_0x5c8f9d[_0x387c12(0x11d)],_0x377a86[_0x387c12(0x104)]=_0x377a86['endColumn']-_0x5bfad3):(_0x25d9bf[_0x387c12(0x126)][_0x387c12(0x238)][_0x387c12(0xc2)](_0x3c0757,0x1),_0x3c0757--);}else{if(_0x5c8f9d[_0x387c12(0x11d)]>_0x377a86[_0x387c12(0x11d)]&&_0x5c8f9d['endColumn']<_0x377a86[_0x387c12(0x104)]){_0x159f6c['push']({..._0x377a86});const _0x6803ed={..._0x377a86,'endColumn':_0x377a86['endColumn']-_0x5bfad3};K(_0x6803ed)?(_0x169118[_0x387c12(0x112)](_0x6803ed),_0x377a86[_0x387c12(0x104)]=_0x377a86['endColumn']-_0x5bfad3):(_0x25d9bf[_0x387c12(0x126)][_0x387c12(0x238)][_0x387c12(0xc2)](_0x3c0757,0x1),_0x3c0757--);}else{if(_0x5c8f9d[_0x387c12(0x11d)]>=_0x377a86[_0x387c12(0x11d)]&&_0x5c8f9d[_0x387c12(0x11d)]<=_0x377a86['endColumn']&&_0x5c8f9d[_0x387c12(0x104)]>_0x377a86[_0x387c12(0x104)]){_0x159f6c['push']({..._0x377a86});const _0x5dabe2={..._0x377a86,'endColumn':_0x5c8f9d[_0x387c12(0x11d)]-0x1};K(_0x5dabe2)&&_0x5c8f9d[_0x387c12(0x11d)]>_0x377a86['startColumn']?(_0x169118[_0x387c12(0x112)](_0x5dabe2),_0x377a86[_0x387c12(0x104)]=_0x5c8f9d[_0x387c12(0x11d)]-0x1):(_0x25d9bf[_0x387c12(0x126)][_0x387c12(0x238)][_0x387c12(0xc2)](_0x3c0757,0x1),_0x3c0757--);}else _0x5c8f9d[_0x387c12(0x11d)]>_0x377a86[_0x387c12(0x104)]||_0x5c8f9d[_0x387c12(0x11d)]<=_0x377a86[_0x387c12(0x11d)]&&_0x5c8f9d['endColumn']>=_0x377a86[_0x387c12(0x104)]&&(_0x159f6c[_0x387c12(0x112)]({..._0x377a86}),_0x25d9bf[_0x387c12(0x126)][_0x387c12(0x238)][_0x387c12(0xc2)](_0x3c0757,0x1),_0x3c0757--);}}}}return _0x159f6c[_0x387c12(0x210)]>0x0&&_0x5ede97[_0x387c12(0x149)]({'id':_0x49900b['id'],'params':{'unitId':_0x2b8deb,'subUnitId':_0x4985cd,'ranges':_0x159f6c}}),_0x169118[_0x387c12(0x210)]>0x0&&_0x5ede97[_0x387c12(0x112)]({'id':_0x223d91['id'],'params':{'unitId':_0x2b8deb,'subUnitId':_0x4985cd,'ranges':_0x169118}}),_0x25d9bf[_0x387c12(0x126)][_0x387c12(0x238)][_0x387c12(0x210)]===0x0&&(_0x25d9bf['id']=_0x44f38d['id']),{'m1Prime':_0x25d9bf,'m2Prime':_0x5ede97['length']>0x1?_0x5ede97:_0x5ede97[0x0]};}},dr={'m1':_0x223d91['id'],'m2':_0x361204['id'],'handler'(_0x3656cb,_0x5b742a){const _0x42029c=_0x59a5e,_0xb4c85c=_0x589265[_0x42029c(0x1cb)](_0x3656cb),_0x5d943e=_0x589265[_0x42029c(0x1cb)](_0x5b742a);if(_0x3656cb[_0x42029c(0x126)]['unitId']!==_0x5b742a[_0x42029c(0x126)][_0x42029c(0x10f)]||_0x3656cb[_0x42029c(0x126)][_0x42029c(0x18c)]!==_0x5b742a[_0x42029c(0x126)][_0x42029c(0x18c)])return{'m1Prime':_0xb4c85c,'m2Prime':_0x5d943e};const _0x27ce56=_0x3656cb['params']['unitId'],_0x3dc384=_0x3656cb[_0x42029c(0x126)][_0x42029c(0x18c)],_0x4698a0=[_0x5d943e],_0x213896=[],_0x146fca=[];for(let _0x2dc80f=0x0;_0x2dc80f<_0xb4c85c[_0x42029c(0x126)]['ranges']['length'];_0x2dc80f++){const _0x40a152=_0xb4c85c[_0x42029c(0x126)][_0x42029c(0x238)][_0x2dc80f],_0x599856=_0x5b742a[_0x42029c(0x126)][_0x42029c(0x114)],_0x1228b4=_0x599856[_0x42029c(0xf0)]-_0x599856[_0x42029c(0xcd)]+0x1;if(_0x599856['startRow']<_0x40a152[_0x42029c(0xcd)]&&_0x599856[_0x42029c(0xf0)]<_0x40a152[_0x42029c(0xcd)])_0x213896[_0x42029c(0x112)]({..._0x40a152}),_0x146fca[_0x42029c(0x112)]({..._0x40a152,'startRow':_0x40a152[_0x42029c(0xcd)]-_0x1228b4,'endRow':_0x40a152['endRow']-_0x1228b4}),_0x40a152[_0x42029c(0xcd)]=_0x40a152[_0x42029c(0xcd)]-_0x1228b4,_0x40a152[_0x42029c(0xf0)]=_0x40a152[_0x42029c(0xf0)]-_0x1228b4;else{if(_0x599856['startRow']<_0x40a152[_0x42029c(0xcd)]&&_0x599856[_0x42029c(0xf0)]>=_0x40a152['startRow']&&_0x599856[_0x42029c(0xf0)]<=_0x40a152['endRow']){_0x213896['push']({..._0x40a152});const _0x2cc936={..._0x40a152,'startRow':_0x599856[_0x42029c(0xcd)],'endRow':_0x40a152[_0x42029c(0xf0)]-_0x1228b4};K(_0x2cc936)&&_0x599856[_0x42029c(0xf0)]<_0x40a152['endRow']?(_0x599856[_0x42029c(0xf0)]<_0x40a152[_0x42029c(0xf0)]&&_0x146fca['push'](_0x2cc936),_0x40a152[_0x42029c(0xcd)]=_0x599856['startRow'],_0x40a152[_0x42029c(0xf0)]=_0x40a152[_0x42029c(0xf0)]-_0x1228b4):(_0xb4c85c['params'][_0x42029c(0x238)][_0x42029c(0xc2)](_0x2dc80f,0x1),_0x2dc80f--);}else{if(_0x599856[_0x42029c(0xcd)]>_0x40a152[_0x42029c(0xcd)]&&_0x599856['endRow']<_0x40a152[_0x42029c(0xf0)]){_0x213896[_0x42029c(0x112)]({..._0x40a152});const _0x106ec4={..._0x40a152,'endRow':_0x40a152[_0x42029c(0xf0)]-_0x1228b4};K(_0x106ec4)?(_0x146fca['push'](_0x106ec4),_0x40a152[_0x42029c(0xf0)]=_0x40a152['endRow']-_0x1228b4):(_0xb4c85c[_0x42029c(0x126)][_0x42029c(0x238)][_0x42029c(0xc2)](_0x2dc80f,0x1),_0x2dc80f--);}else{if(_0x599856[_0x42029c(0xcd)]>=_0x40a152[_0x42029c(0xcd)]&&_0x599856[_0x42029c(0xcd)]<=_0x40a152['endRow']&&_0x599856[_0x42029c(0xf0)]>_0x40a152['endRow']){_0x213896[_0x42029c(0x112)]({..._0x40a152});const _0x11425a={..._0x40a152,'endRow':_0x599856[_0x42029c(0xcd)]-0x1};K(_0x11425a)&&_0x599856['startRow']>_0x40a152[_0x42029c(0xcd)]?(_0x146fca[_0x42029c(0x112)](_0x11425a),_0x40a152[_0x42029c(0xf0)]=_0x599856[_0x42029c(0xcd)]-0x1):(_0xb4c85c[_0x42029c(0x126)]['ranges'][_0x42029c(0xc2)](_0x2dc80f,0x1),_0x2dc80f--);}else _0x599856[_0x42029c(0xcd)]>_0x40a152[_0x42029c(0xf0)]||_0x599856['startRow']<=_0x40a152[_0x42029c(0xcd)]&&_0x599856[_0x42029c(0xf0)]>=_0x40a152['endRow']&&(_0x213896[_0x42029c(0x112)]({..._0x40a152}),_0xb4c85c[_0x42029c(0x126)]['ranges'][_0x42029c(0xc2)](_0x2dc80f,0x1),_0x2dc80f--);}}}}return _0x213896[_0x42029c(0x210)]>0x0&&_0x4698a0[_0x42029c(0x149)]({'id':_0x49900b['id'],'params':{'unitId':_0x27ce56,'subUnitId':_0x3dc384,'ranges':_0x213896}}),_0x146fca[_0x42029c(0x210)]>0x0&&_0x4698a0[_0x42029c(0x112)]({'id':_0x223d91['id'],'params':{'unitId':_0x27ce56,'subUnitId':_0x3dc384,'ranges':_0x146fca}}),_0xb4c85c[_0x42029c(0x126)][_0x42029c(0x238)][_0x42029c(0x210)]===0x0&&(_0xb4c85c['id']=_0x44f38d['id']),{'m1Prime':_0xb4c85c,'m2Prime':_0x4698a0[_0x42029c(0x210)]>0x1?_0x4698a0:_0x4698a0[0x0]};}},Rn={'m1':_0x223d91['id'],'m2':_0x49900b['id'],'handler'(_0x4be01c,_0x3b7d5e){const _0xbc3f2c=_0x59a5e,_0xf5d419=_0x589265[_0xbc3f2c(0x1cb)](_0x4be01c),_0x55a141=_0x589265[_0xbc3f2c(0x1cb)](_0x3b7d5e);if(_0x4be01c[_0xbc3f2c(0x126)][_0xbc3f2c(0x10f)]!==_0x3b7d5e[_0xbc3f2c(0x126)][_0xbc3f2c(0x10f)]||_0x4be01c[_0xbc3f2c(0x126)]['subUnitId']!==_0x3b7d5e[_0xbc3f2c(0x126)][_0xbc3f2c(0x18c)])return{'m1Prime':_0xf5d419,'m2Prime':_0x55a141};const _0x3e3580=[..._0x55a141[_0xbc3f2c(0x126)][_0xbc3f2c(0x238)]];for(let _0x415bd1=0x0;_0x415bd1<_0xf5d419['params'][_0xbc3f2c(0x238)][_0xbc3f2c(0x210)];_0x415bd1++){let _0xee4f95=!0x1;for(let _0x540218=0x0;_0x540218<_0x55a141['params'][_0xbc3f2c(0x238)][_0xbc3f2c(0x210)];_0x540218++){const _0x1c84f3=_0xf5d419[_0xbc3f2c(0x126)][_0xbc3f2c(0x238)][_0x415bd1],_0x37e425=_0x55a141[_0xbc3f2c(0x126)][_0xbc3f2c(0x238)][_0x540218];if(_0xff1ead[_0xbc3f2c(0x1fd)](_0x1c84f3,_0x37e425)){_0xee4f95=!0x0;break;}}_0xee4f95&&(_0x3e3580[_0xbc3f2c(0x112)](_0xf5d419[_0xbc3f2c(0x126)][_0xbc3f2c(0x238)][_0x415bd1]),_0xf5d419[_0xbc3f2c(0x126)]['ranges']['splice'](_0x415bd1,0x1),_0x415bd1--);}return _0x55a141['params'][_0xbc3f2c(0x238)]=_0x3e3580,_0xf5d419['params'][_0xbc3f2c(0x238)][_0xbc3f2c(0x210)]===0x0&&(_0xf5d419['id']=_0x44f38d['id']),{'m1Prime':_0xf5d419,'m2Prime':_0x55a141};}},mr={'m1':_0x223d91['id'],'m2':_0x36f561['id'],'handler'(_0x514b3a,_0x3cb0bb){const _0x360305=_0x59a5e,_0x4dc3cf=_0x589265[_0x360305(0x1cb)](_0x514b3a),_0x53b2d9=_0x589265['deepClone'](_0x3cb0bb);if(_0x514b3a[_0x360305(0x126)][_0x360305(0x10f)]!==_0x3cb0bb[_0x360305(0x126)][_0x360305(0x10f)]||_0x514b3a[_0x360305(0x126)][_0x360305(0x18c)]!==_0x3cb0bb[_0x360305(0x126)][_0x360305(0x18c)])return{'m1Prime':_0x4dc3cf,'m2Prime':_0x53b2d9};const _0x5a72f2=[_0x4dc3cf],_0x39fb11=[_0x53b2d9],_0x21697e=new _0x33d61f(_0x589265[_0x360305(0x1cb)](_0x3cb0bb[_0x360305(0x126)][_0x360305(0x153)])),_0x22c5d2=new Set(),_0xdf7007={};for(let _0x54f5a6=0x0;_0x54f5a6<_0x4dc3cf[_0x360305(0x126)][_0x360305(0x238)][_0x360305(0x210)];_0x54f5a6++){const _0x11ab33=_0x4dc3cf[_0x360305(0x126)]['ranges'][_0x54f5a6],{startRow:_0x10cba5,startColumn:_0x409586,endRow:_0x4f047a,endColumn:_0x264535}=_0x11ab33;let _0x53ce88=!0x1;_0x21697e[_0x360305(0x1d9)]((_0x1d2e5d,_0x3b8791,_0x166662)=>{const _0x129af2=_0x360305;if(_0x1d2e5d>=_0x10cba5&&_0x1d2e5d<=_0x4f047a&&_0x3b8791>=_0x409586&&_0x3b8791<=_0x264535){const _0x10c3dd=_0x21697e[_0x129af2(0xbb)](_0x1d2e5d,_0x3b8791),_0x4882fe=_0x10c3dd===null?{'v':null,'s':null,'t':null,'si':null,'p':null,'f':null}:_0x10c3dd;_0x4882fe&&(_0xdf7007[_0x1d2e5d]||(_0xdf7007[_0x1d2e5d]={}),_0xdf7007[_0x1d2e5d][_0x3b8791]={},(_0x166662==null?void 0x0:_0x166662['v'])!==void 0x0&&(_0xdf7007[_0x1d2e5d][_0x3b8791]['v']=null,delete _0x4882fe['v']),(_0x166662==null?void 0x0:_0x166662['f'])!==void 0x0&&(_0xdf7007[_0x1d2e5d][_0x3b8791]['f']=null,delete _0x4882fe['f']),(_0x166662==null?void 0x0:_0x166662['t'])!==void 0x0&&(_0xdf7007[_0x1d2e5d][_0x3b8791]['t']=null,delete _0x4882fe['t']),(_0x166662==null?void 0x0:_0x166662['si'])!==void 0x0&&(_0xdf7007[_0x1d2e5d][_0x3b8791]['si']=null,delete _0x4882fe['si']),(_0x166662==null?void 0x0:_0x166662['p'])!==void 0x0&&(_0xdf7007[_0x1d2e5d][_0x3b8791]['p']=null,delete _0x4882fe['p']),(_0x166662==null?void 0x0:_0x166662['s'])!==void 0x0&&(_0xdf7007[_0x1d2e5d][_0x3b8791]['s']=null,delete _0x4882fe['s']),_0x21697e[_0x129af2(0xef)](_0x1d2e5d,_0x3b8791,_0x4882fe),_0x53ce88=!0x0);}}),_0x53ce88&&(_0x22c5d2[_0x360305(0xe3)]({..._0x11ab33}),_0x4dc3cf['params'][_0x360305(0x238)][_0x360305(0xc2)](_0x54f5a6,0x1),_0x54f5a6--);}return _0x53b2d9[_0x360305(0x126)][_0x360305(0x153)]=_0x21697e['getMatrix'](),_0x22c5d2['size']>0x0&&_0x39fb11[_0x360305(0x149)]({'id':_0x49900b['id'],'params':{'unitId':_0x514b3a['params']['unitId'],'subUnitId':_0x514b3a[_0x360305(0x126)][_0x360305(0x18c)],'ranges':Array[_0x360305(0x16d)](_0x22c5d2)}}),_0x4dc3cf[_0x360305(0x126)][_0x360305(0x238)][_0x360305(0x210)]===0x0&&(_0x4dc3cf['id']=_0x44f38d['id']),Object[_0x360305(0x10b)](_0xdf7007)['length']>0x0&&_0x5a72f2[_0x360305(0x149)]({'id':_0x36f561['id'],'params':{'unitId':_0x514b3a['params'][_0x360305(0x10f)],'subUnitId':_0x514b3a['params'][_0x360305(0x18c)],'cellValue':_0xdf7007}}),{'m1Prime':_0x5a72f2['length']>0x1?_0x5a72f2:_0x5a72f2[0x0],'m2Prime':_0x39fb11['length']>0x1?_0x39fb11:_0x39fb11[0x0]};}},hn={'m1':_0x223d91['id'],'m2':_0x53e0ba['id'],'handler'(_0x51d741,_0x1eb653){const _0x4acdd7=_0x59a5e,_0xa9863b={'m1Prime':[],'m2Prime':[]};if(_0x51d741[_0x4acdd7(0x126)][_0x4acdd7(0x10f)]!==_0x1eb653[_0x4acdd7(0x126)][_0x4acdd7(0x10f)]||_0x51d741['params'][_0x4acdd7(0x18c)]!==_0x1eb653[_0x4acdd7(0x126)][_0x4acdd7(0x18c)])return _0xa9863b;const _0x3035fd=_0x589265['deepClone'](_0x1eb653),_0x1cca0d=_0x3035fd[_0x4acdd7(0x126)][_0x4acdd7(0x14a)];_0x1cca0d[_0x4acdd7(0x233)]((_0x3e70b5,_0x14a868)=>{const {range:_0xfbc1b0,primary:_0x5bc54c}=_0x3e70b5;_0x51d741['params']['ranges']['forEach'](_0x4fe8be=>{const _0x55ae9e=_0x29e8;_0xff1ead[_0x55ae9e(0x1fd)](_0x4fe8be,_0xfbc1b0)&&(_0xfbc1b0['startRow']=Math['min'](_0x4fe8be[_0x55ae9e(0xcd)],_0xfbc1b0[_0x55ae9e(0xcd)]),_0xfbc1b0[_0x55ae9e(0x11d)]=Math['min'](_0x4fe8be['startColumn'],_0xfbc1b0[_0x55ae9e(0x11d)]),_0xfbc1b0['endRow']=Math[_0x55ae9e(0x14b)](_0x4fe8be[_0x55ae9e(0xf0)],_0xfbc1b0[_0x55ae9e(0xf0)]),_0xfbc1b0[_0x55ae9e(0x104)]=Math[_0x55ae9e(0x14b)](_0x4fe8be[_0x55ae9e(0x104)],_0xfbc1b0[_0x55ae9e(0x104)])),_0x5bc54c&&_0xff1ead['intersects'](_0x4fe8be,_0x5bc54c)&&_0x14a868===_0x1cca0d['length']-0x1&&(_0x5bc54c[_0x55ae9e(0x11d)]===_0x4fe8be[_0x55ae9e(0x11d)]&&_0x5bc54c[_0x55ae9e(0xcd)]&&_0x4fe8be[_0x55ae9e(0xcd)]&&(_0x5bc54c['isMergedMainCell']=!0x0),_0x5bc54c[_0x55ae9e(0xcd)]=Math['min'](_0x4fe8be['startRow'],_0x5bc54c[_0x55ae9e(0xcd)]),_0x5bc54c[_0x55ae9e(0x11d)]=Math[_0x55ae9e(0x19c)](_0x4fe8be['startColumn'],_0x5bc54c[_0x55ae9e(0x11d)]),_0x5bc54c[_0x55ae9e(0xf0)]=Math[_0x55ae9e(0x14b)](_0x4fe8be[_0x55ae9e(0xf0)],_0x5bc54c[_0x55ae9e(0xf0)]),_0x5bc54c[_0x55ae9e(0x104)]=Math[_0x55ae9e(0x14b)](_0x4fe8be['endColumn'],_0x5bc54c[_0x55ae9e(0x104)]),_0x5bc54c[_0x55ae9e(0x19e)]=!0x0);});}),_0x1cca0d[_0x4acdd7(0xd3)]((_0x513b85,_0x5e818b)=>{const _0x253f8c=_0x4acdd7,_0x3efaa6=_0x513b85[_0x253f8c(0x114)],_0x5f1d6b=_0x5e818b[_0x253f8c(0x114)];return _0x3efaa6[_0x253f8c(0xcd)]===_0x5f1d6b[_0x253f8c(0xcd)]?_0x3efaa6[_0x253f8c(0x11d)]-_0x5f1d6b[_0x253f8c(0x11d)]:_0x3efaa6['startRow']-_0x5f1d6b[_0x253f8c(0xcd)];});const _0x3b9616=[];let _0x1688d1=null;for(const _0x54d3ea of _0x1cca0d)_0x1688d1===null||!_0xff1ead['intersects'](_0x1688d1[_0x4acdd7(0x114)],_0x54d3ea['range'])?(_0x3b9616[_0x4acdd7(0x112)](_0x54d3ea),_0x1688d1=_0x54d3ea):(_0x1688d1['range'][_0x4acdd7(0xcd)]=Math[_0x4acdd7(0x19c)](_0x1688d1[_0x4acdd7(0x114)]['startRow'],_0x54d3ea[_0x4acdd7(0x114)][_0x4acdd7(0xcd)]),_0x1688d1['range']['startColumn']=Math[_0x4acdd7(0x19c)](_0x1688d1['range']['startColumn'],_0x54d3ea[_0x4acdd7(0x114)]['startColumn']),_0x1688d1[_0x4acdd7(0x114)][_0x4acdd7(0xf0)]=Math[_0x4acdd7(0x14b)](_0x1688d1['range'][_0x4acdd7(0xf0)],_0x54d3ea[_0x4acdd7(0x114)][_0x4acdd7(0xf0)]),_0x1688d1[_0x4acdd7(0x114)][_0x4acdd7(0x104)]=Math['max'](_0x1688d1[_0x4acdd7(0x114)][_0x4acdd7(0x104)],_0x54d3ea[_0x4acdd7(0x114)][_0x4acdd7(0x104)]),_0x54d3ea['primary']&&(_0x1688d1[_0x4acdd7(0x15c)]=_0x54d3ea[_0x4acdd7(0x15c)]));return _0x3035fd[_0x4acdd7(0x126)][_0x4acdd7(0x14a)]=_0x3b9616,_0xa9863b[_0x4acdd7(0x111)][_0x4acdd7(0x112)](_0x3035fd),_0xa9863b;}},gn={'m1':_0x921352['id'],'m2':_0x58b473['id'],'handler':(_0x341123,_0x3ce4e2)=>{const _0x2c1010=_0x59a5e,_0xc857b8={'m1Prime':_0x341123,'m2Prime':_0x3ce4e2};return _0x341123[_0x2c1010(0x126)][_0x2c1010(0x10f)]!==_0x3ce4e2[_0x2c1010(0x126)][_0x2c1010(0x10f)]||_0x341123[_0x2c1010(0x126)][_0x2c1010(0x18c)]!==_0x3ce4e2[_0x2c1010(0x126)]['subUnitId']?_0xc857b8:{'error':new Error('add\x20worksheet\x20protection\x20is\x20conflict\x20with\x20add\x20comment')};}},In={'m1':_0x921352['id'],'m2':_0xa12b['id'],'handler':(_0x2a86a4,_0x18460c)=>{const _0x1fce39=_0x59a5e,_0x200b75={'m1Prime':_0x2a86a4,'m2Prime':_0x18460c};return _0x2a86a4[_0x1fce39(0x126)][_0x1fce39(0x10f)]!==_0x18460c[_0x1fce39(0x126)][_0x1fce39(0x10f)]||_0x2a86a4[_0x1fce39(0x126)][_0x1fce39(0x18c)]!==_0x18460c[_0x1fce39(0x126)]['subUnitId']?_0x200b75:{'error':new Error('add\x20worksheet\x20protection\x20is\x20conflict\x20with\x20add\x20conditional\x20rule')};}},wn={'m1':_0x921352['id'],'m2':_0x346d54['id'],'handler':(_0x264e9d,_0x252c6e)=>{const _0x40a03b=_0x59a5e,_0x38a63f={'m1Prime':_0x264e9d,'m2Prime':_0x252c6e};return _0x264e9d[_0x40a03b(0x126)][_0x40a03b(0x10f)]!==_0x252c6e[_0x40a03b(0x126)][_0x40a03b(0x10f)]||_0x264e9d['params'][_0x40a03b(0x18c)]!==_0x252c6e['params'][_0x40a03b(0x18c)]?_0x38a63f:{'error':new Error('add\x20worksheet\x20protection\x20is\x20conflict\x20with\x20add\x20range\x20protection')};}},Cn={'m1':_0x921352['id'],'m2':_0x223d91['id'],'handler':(_0x1b91e8,_0x221b00)=>{const _0x7e673f=_0x59a5e,_0x415c8f={'m1Prime':_0x1b91e8,'m2Prime':_0x221b00};return _0x1b91e8[_0x7e673f(0x126)][_0x7e673f(0x10f)]!==_0x221b00[_0x7e673f(0x126)][_0x7e673f(0x10f)]||_0x1b91e8['params'][_0x7e673f(0x18c)]!==_0x221b00['params'][_0x7e673f(0x18c)]?_0x415c8f:{'error':new Error(_0x7e673f(0x1a0))};}},Pn={'m1':_0x921352['id'],'m2':_0x921352['id'],'handler':(_0x340cda,_0x30b69d)=>{const _0x59cc64=_0x59a5e,_0x114d19={'m1Prime':_0x340cda,'m2Prime':_0x30b69d};return _0x340cda[_0x59cc64(0x126)][_0x59cc64(0x10f)]!==_0x30b69d[_0x59cc64(0x126)][_0x59cc64(0x10f)]||_0x340cda['params']['subUnitId']!==_0x30b69d[_0x59cc64(0x126)][_0x59cc64(0xbc)]['subUnitId']?_0x114d19:{'error':new Error(_0x59cc64(0x1d4))};}},Un={'m1':_0x921352['id'],'m2':_0x2948b9['id'],'handler':(_0x5d8736,_0x25fb6b)=>{const _0x280890=_0x59a5e,_0x468b4b={'m1Prime':_0x5d8736,'m2Prime':_0x25fb6b};return _0x5d8736[_0x280890(0x126)]['unitId']!==_0x25fb6b[_0x280890(0x126)][_0x280890(0x10f)]||_0x5d8736[_0x280890(0x126)][_0x280890(0x18c)]!==_0x25fb6b[_0x280890(0x126)][_0x280890(0x18c)]?_0x468b4b:{'error':new Error(_0x280890(0x13e))};}},bn={'m1':_0x921352['id'],'m2':_0x2e6ec9['id'],'handler':(_0x136103,_0x4d4b10)=>{const _0x125f90=_0x59a5e,_0x37b5e4={'m1Prime':_0x136103,'m2Prime':_0x4d4b10};return _0x136103['params'][_0x125f90(0x10f)]!==_0x4d4b10['params'][_0x125f90(0x10f)]||_0x136103['params'][_0x125f90(0x18c)]!==_0x4d4b10['params'][_0x125f90(0x18c)]?_0x37b5e4:{'error':new Error(_0x125f90(0x168))};}},Mn={'m1':_0x921352['id'],'m2':_0x55baf7['id'],'handler':(_0x30500a,_0x172563)=>{const _0x679ae4=_0x59a5e,_0x22fb56={'m1Prime':_0x30500a,'m2Prime':_0x172563};return _0x30500a[_0x679ae4(0x126)][_0x679ae4(0x10f)]!==_0x172563[_0x679ae4(0x126)][_0x679ae4(0x10f)]||_0x30500a[_0x679ae4(0x126)]['subUnitId']!==_0x172563[_0x679ae4(0x126)][_0x679ae4(0x18c)]?_0x22fb56:{'error':new Error(_0x679ae4(0x1b6))};}},vn={'m1':_0x921352['id'],'m2':_0x5694af['id'],'handler':(_0x3e5f3e,_0x15d57e)=>{const _0x2cd4a0=_0x59a5e,_0x100b01={'m1Prime':_0x3e5f3e,'m2Prime':_0x15d57e};return _0x3e5f3e[_0x2cd4a0(0x126)][_0x2cd4a0(0x10f)]!==_0x15d57e[_0x2cd4a0(0x126)][_0x2cd4a0(0x10f)]||_0x3e5f3e[_0x2cd4a0(0x126)][_0x2cd4a0(0x18c)]!==_0x15d57e[_0x2cd4a0(0x126)][_0x2cd4a0(0x18c)]?_0x100b01:{'error':new Error(_0x2cd4a0(0x155))};}},En={'m1':_0x921352['id'],'m2':_0x4d7dbd['id'],'handler':(_0x10f320,_0x3ed259)=>{const _0x46b37d=_0x59a5e,_0x2182ed={'m1Prime':_0x10f320,'m2Prime':_0x3ed259};return _0x10f320[_0x46b37d(0x126)][_0x46b37d(0x10f)]!==_0x3ed259[_0x46b37d(0x126)]['unitId']||_0x10f320[_0x46b37d(0x126)][_0x46b37d(0x18c)]!==_0x3ed259[_0x46b37d(0x126)]['subUnitId']?_0x2182ed:{'error':new Error(_0x46b37d(0x17f))};}},Sn={'m1':_0x921352['id'],'m2':_0x442c2d['id'],'handler':(_0x51cad6,_0x36d705)=>{const _0x565232=_0x59a5e,_0x5ca1b2={'m1Prime':_0x51cad6,'m2Prime':_0x36d705};return _0x51cad6[_0x565232(0x126)][_0x565232(0x10f)]!==_0x36d705[_0x565232(0x126)][_0x565232(0x10f)]||_0x51cad6['params']['subUnitId']!==_0x36d705[_0x565232(0x126)][_0x565232(0x16d)][_0x565232(0x18c)]?_0x5ca1b2:{'error':new Error(_0x565232(0x11f))};}},Wn={'m1':_0x921352['id'],'m2':_0x79cdbf['id'],'handler':(_0x47be42,_0x1a6fb4)=>{const _0x30661e=_0x59a5e,_0x66369b={'m1Prime':_0x47be42,'m2Prime':_0x1a6fb4};return _0x47be42[_0x30661e(0x126)][_0x30661e(0x10f)]!==_0x1a6fb4[_0x30661e(0x126)]['unitId']||_0x47be42[_0x30661e(0x126)][_0x30661e(0x18c)]!==_0x1a6fb4[_0x30661e(0x126)][_0x30661e(0x18c)]?_0x66369b:{'error':new Error(_0x30661e(0x157))};}},Vn={'m1':_0x921352['id'],'m2':_0x3f9ab9['id'],'handler':(_0x5d5d81,_0x386859)=>{const _0x23aed9=_0x59a5e,_0x5d7b09={'m1Prime':_0x5d5d81,'m2Prime':_0x386859};return _0x5d5d81['params'][_0x23aed9(0x10f)]!==_0x386859['params']['unitId']||_0x5d5d81[_0x23aed9(0x126)]['subUnitId']!==_0x386859['params']['subUnitId']?_0x5d7b09:{'error':new Error(_0x23aed9(0x14f))};}},_n={'m1':_0x921352['id'],'m2':_0x46530b['id'],'handler':(_0xe01065,_0x3be5d2)=>{const _0x37f4a7=_0x59a5e,_0x256a19={'m1Prime':_0xe01065,'m2Prime':_0x3be5d2};return _0xe01065[_0x37f4a7(0x126)][_0x37f4a7(0x10f)]!==_0x3be5d2['params'][_0x37f4a7(0x10f)]||_0xe01065['params']['subUnitId']!==_0x3be5d2[_0x37f4a7(0x126)][_0x37f4a7(0x18c)]?_0x256a19:{'error':new Error(_0x37f4a7(0x143))};}},On={'m1':_0x921352['id'],'m2':_0x5775f8['id'],'handler':(_0x55e0ff,_0x45a47a)=>{const _0x5f0c4e=_0x59a5e,_0x3e7d5e={'m1Prime':_0x55e0ff,'m2Prime':_0x45a47a};return _0x55e0ff[_0x5f0c4e(0x126)][_0x5f0c4e(0x10f)]!==_0x45a47a[_0x5f0c4e(0x126)]['unitId']||_0x55e0ff[_0x5f0c4e(0x126)][_0x5f0c4e(0x18c)]!==_0x45a47a[_0x5f0c4e(0x126)][_0x5f0c4e(0x18c)]?_0x3e7d5e:{'error':new Error('add\x20worksheet\x20protection\x20is\x20conflict\x20with\x20remove\x20numfmt')};}},yn={'m1':_0x921352['id'],'m2':_0x361204['id'],'handler':(_0x5dcf28,_0x41528c)=>{const _0x15b54d=_0x59a5e,_0x4955d0={'m1Prime':_0x5dcf28,'m2Prime':_0x41528c};return _0x5dcf28[_0x15b54d(0x126)][_0x15b54d(0x10f)]!==_0x41528c[_0x15b54d(0x126)][_0x15b54d(0x10f)]||_0x5dcf28[_0x15b54d(0x126)][_0x15b54d(0x18c)]!==_0x41528c[_0x15b54d(0x126)][_0x15b54d(0x18c)]?_0x4955d0:{'error':new Error(_0x15b54d(0x124))};}},Nn={'m1':_0x921352['id'],'m2':_0x26442d['id'],'handler':(_0x1b20e3,_0x6ece34)=>{const _0xcacc30=_0x59a5e,_0x59c3a4={'m1Prime':_0x1b20e3,'m2Prime':_0x6ece34};return _0x1b20e3[_0xcacc30(0x126)]['unitId']!==_0x6ece34['params'][_0xcacc30(0x10f)]||_0x1b20e3[_0xcacc30(0x126)]['subUnitId']!==_0x6ece34[_0xcacc30(0x126)][_0xcacc30(0x18c)]?_0x59c3a4:{'error':new Error(_0xcacc30(0x1ca))};}},Dn={'m1':_0x921352['id'],'m2':_0x2a1c35['id'],'handler':(_0x361e5e,_0x358102)=>{const _0x1d8138=_0x59a5e,_0x19e0be={'m1Prime':_0x361e5e,'m2Prime':_0x358102};return _0x361e5e[_0x1d8138(0x126)]['unitId']!==_0x358102[_0x1d8138(0x126)]['unitId']||_0x361e5e['params']['subUnitId']!==_0x358102[_0x1d8138(0x126)][_0x1d8138(0x18c)]?_0x19e0be:{'error':new Error(_0x1d8138(0x235))};}},An={'m1':_0x921352['id'],'m2':_0x49900b['id'],'handler':(_0x39e35c,_0x477a7c)=>{const _0x2f6842=_0x59a5e,_0x202b0f={'m1Prime':_0x39e35c,'m2Prime':_0x477a7c};return _0x39e35c[_0x2f6842(0x126)]['unitId']!==_0x477a7c['params'][_0x2f6842(0x10f)]||_0x39e35c['params'][_0x2f6842(0x18c)]!==_0x477a7c['params']['subUnitId']?_0x202b0f:{'error':new Error(_0x2f6842(0x118))};}},Tn={'m1':_0x921352['id'],'m2':_0x1ef265['id'],'handler':(_0x19a05b,_0xe475fc)=>{const _0x4aeab7=_0x59a5e,_0x4ffc84={'m1Prime':_0x19a05b,'m2Prime':_0xe475fc};return _0x19a05b[_0x4aeab7(0x126)]['unitId']!==_0xe475fc[_0x4aeab7(0x126)][_0x4aeab7(0x10f)]||_0x19a05b[_0x4aeab7(0x126)][_0x4aeab7(0x18c)]!==_0xe475fc[_0x4aeab7(0x126)]['subUnitId']?_0x4ffc84:{'error':new Error(_0x4aeab7(0x1c9))};}},Ln={'m1':_0x921352['id'],'m2':_0x491dee['id'],'handler':(_0x19179f,_0x2291b1)=>{const _0x1b859c=_0x59a5e,_0x37c8f9={'m1Prime':_0x19179f,'m2Prime':_0x2291b1};return _0x19179f[_0x1b859c(0x126)][_0x1b859c(0x10f)]!==_0x2291b1[_0x1b859c(0x126)]['unitId']||_0x19179f['params'][_0x1b859c(0x18c)]!==_0x2291b1[_0x1b859c(0x126)][_0x1b859c(0x18c)]?_0x37c8f9:{'error':new Error(_0x1b859c(0x1fc))};}},kn={'m1':_0x921352['id'],'m2':_0x432da8['id'],'handler':(_0x340ff1,_0x4824b2)=>{const _0x59229c=_0x59a5e,_0x4202ff={'m1Prime':_0x340ff1,'m2Prime':_0x4824b2};return _0x340ff1['params']['unitId']!==_0x4824b2[_0x59229c(0x126)][_0x59229c(0x10f)]||_0x340ff1[_0x59229c(0x126)][_0x59229c(0x18c)]!==_0x4824b2[_0x59229c(0x126)][_0x59229c(0x18c)]?_0x4202ff:{'error':new Error(_0x59229c(0x1e3))};}},xn={'m1':_0x921352['id'],'m2':_0x38d13b['id'],'handler':(_0x67b01e,_0x3aa47d)=>{const _0x407ed0=_0x59a5e,_0x445220={'m1Prime':_0x67b01e,'m2Prime':_0x3aa47d};return _0x67b01e[_0x407ed0(0x126)]['unitId']!==_0x3aa47d[_0x407ed0(0x126)][_0x407ed0(0x10f)]||_0x67b01e['params'][_0x407ed0(0x18c)]!==_0x3aa47d[_0x407ed0(0x126)][_0x407ed0(0x18c)]?_0x445220:{'error':new Error(_0x407ed0(0x144))};}},Hn={'m1':_0x921352['id'],'m2':_0x8fd627['id'],'handler':(_0x39634f,_0x40997a)=>{const _0x11f91f=_0x59a5e,_0x2a1219={'m1Prime':_0x39634f,'m2Prime':_0x40997a};return _0x39634f['params'][_0x11f91f(0x10f)]!==_0x40997a[_0x11f91f(0x126)][_0x11f91f(0x10f)]||_0x39634f[_0x11f91f(0x126)]['subUnitId']!==_0x40997a['params']['subUnitId']?_0x2a1219:{'error':new Error('add\x20worksheet\x20protection\x20is\x20conflict\x20with\x20set\x20worksheet\x20col\x20width')};}},Fn={'m1':_0x921352['id'],'m2':_0x420cb8['id'],'handler':(_0x2ef233,_0x13b5c8)=>{const _0x26e6b6=_0x59a5e,_0x5b8670={'m1Prime':_0x2ef233,'m2Prime':_0x13b5c8};return _0x2ef233['params'][_0x26e6b6(0x10f)]!==_0x13b5c8[_0x26e6b6(0x126)]['unitId']||_0x2ef233[_0x26e6b6(0x126)][_0x26e6b6(0x18c)]!==_0x13b5c8['params'][_0x26e6b6(0x18c)]?_0x5b8670:{'error':new Error(_0x26e6b6(0x1ee))};}},Bn={'m1':_0x921352['id'],'m2':_0x49a7a8['id'],'handler':(_0x30cc87,_0xec76da)=>{const _0x1aeea9=_0x59a5e,_0x1b49ae={'m1Prime':_0x30cc87,'m2Prime':_0xec76da};return _0x30cc87[_0x1aeea9(0x126)][_0x1aeea9(0x10f)]!==_0xec76da['params'][_0x1aeea9(0x10f)]||_0x30cc87[_0x1aeea9(0x126)][_0x1aeea9(0x18c)]!==_0xec76da['params']['subUnitId']?_0x1b49ae:{'error':new Error('add\x20worksheet\x20protection\x20is\x20conflict\x20with\x20update\x20comment')};}},Gn={'m1':_0x921352['id'],'m2':_0x2bcc50['id'],'handler':(_0xe50252,_0x1668e3)=>{const _0x3ea2f7=_0x59a5e,_0x1782a4={'m1Prime':_0xe50252,'m2Prime':_0x1668e3};return _0xe50252['params'][_0x3ea2f7(0x10f)]!==_0x1668e3[_0x3ea2f7(0x126)][_0x3ea2f7(0x10f)]||_0xe50252[_0x3ea2f7(0x126)][_0x3ea2f7(0x18c)]!==_0x1668e3[_0x3ea2f7(0x126)]['subUnitId']?_0x1782a4:{'error':new Error(_0x3ea2f7(0xb3))};}},jn={'m1':_0x476949['id'],'m2':_0x58b473['id'],'handler':(_0x68e03b,_0x5c3373)=>{const _0x1834a4=_0x59a5e,_0x34f69d=_0x68e03b[_0x1834a4(0x126)],_0x35cbb6=_0x5c3373[_0x1834a4(0x126)];return _0x34f69d[_0x1834a4(0x10f)]===_0x35cbb6[_0x1834a4(0x10f)]&&_0x34f69d['subUnitId']===_0x35cbb6['subUnitId']&&_0x34f69d[_0x1834a4(0x1c7)]===_0x35cbb6[_0x1834a4(0x1a1)][_0x1834a4(0x241)]?{'m1Prime':_0x68e03b,'m2Prime':[]}:{'m1Prime':_0x68e03b,'m2Prime':_0x5c3373};}},$n={'m1':_0x476949['id'],'m2':_0x476949['id'],'handler':(_0x3c40d2,_0x2c5b6a)=>{const _0x28908f=_0x59a5e,_0x2cf6e1=_0x3c40d2['params'],_0x412660=_0x2c5b6a['params'],_0x1ba4c2={'m1Prime':_0x3c40d2,'m2Prime':_0x2c5b6a};return _0x2cf6e1[_0x28908f(0x10f)]!==_0x412660[_0x28908f(0x10f)]||_0x2cf6e1[_0x28908f(0x18c)]!==_0x412660[_0x28908f(0x18c)]||_0x2cf6e1[_0x28908f(0x1c7)]!==_0x412660['commentId']?_0x1ba4c2:{'m1Prime':[],'m2Prime':[]};}},Yn={'m1':_0x2e6ec9['id'],'m2':_0x2e6ec9['id'],'handler'(_0x1e16a0,_0x2ab722){return{'m1Prime':_0x1e16a0,'m2Prime':_0x2ab722};}},It=(_0x1d658a,_0x11205d)=>{const _0x29426c=_0x59a5e,_0x3a597c=_0x579299(_0x1d658a[_0x29426c(0x126)][_0x29426c(0x1a1)][_0x29426c(0x180)]),_0x214a72={'startColumn':_0x3a597c['column'],'endColumn':_0x3a597c[_0x29426c(0x142)],'startRow':_0x3a597c[_0x29426c(0x204)],'endRow':_0x3a597c[_0x29426c(0x204)]},_0x3d9fcd=_0x29cd02(_0x214a72,_0x11205d);if(!_0x3d9fcd)return[{'id':_0x476949['id'],'params':{..._0x1d658a[_0x29426c(0x126)],'comment':void 0x0,'commentId':_0x1d658a['params'][_0x29426c(0x1a1)]['id']}}];const _0x530ec0=_0x424cfe(_0x3d9fcd);return _0x530ec0===_0x1d658a[_0x29426c(0x126)]['comment'][_0x29426c(0x180)]?[]:[{'id':_0x164c55['id'],'params':{..._0x1d658a[_0x29426c(0x126)],'comment':void 0x0,'payload':{'ref':_0x530ec0,'commentId':_0x1d658a[_0x29426c(0x126)][_0x29426c(0x1a1)]['id']}}}];},Jn={'m1':_0x55baf7['id'],'m2':_0x58b473['id'],'handler':(_0xe9a660,_0x105a52)=>{const _0x48e67a=_0x59a5e,_0x51d729={'m1Prime':_0xe9a660,'m2Prime':_0x105a52};if(_0xe9a660[_0x48e67a(0x126)][_0x48e67a(0x10f)]!==_0x105a52[_0x48e67a(0x126)][_0x48e67a(0x10f)]||_0xe9a660[_0x48e67a(0x126)][_0x48e67a(0x18c)]!==_0x105a52[_0x48e67a(0x126)]['subUnitId'])return _0x51d729;const _0x3f9883={'id':_0x1e9259['id'],'params':{'unitId':_0xe9a660[_0x48e67a(0x126)][_0x48e67a(0x10f)],'subUnitId':_0xe9a660['params'][_0x48e67a(0x18c)],'range':_0xe9a660[_0x48e67a(0x126)][_0x48e67a(0x114)]}},_0x30e13b=It(_0x105a52,_0x3f9883);return{'m1Prime':[_0xe9a660,..._0x30e13b],'m2Prime':[_0x105a52,..._0x30e13b]};}};function h(_0xf081d7){return{..._0xf081d7,'rangeType':_0x22e4d9['COLUMN']};}function ft(_0x44e853,_0xf45cb5,_0x1ee2db,_0x2ca39e){const _0xb5f15=_0x59a5e;if(_0x2ca39e<0x0){for(let _0x4f599a=_0xf45cb5;_0x4f599a<_0xf45cb5+_0x1ee2db;_0x4f599a++)if(_0x44e853[_0xb5f15(0xbf)](_0x4f599a)){_0x44e853['hasOwnProperty'](_0x4f599a+_0x2ca39e)||(_0x44e853[_0x4f599a+_0x2ca39e]={});const _0x411e5d=_0x44e853[_0x4f599a],_0x3957da=Object[_0xb5f15(0x10b)](_0x411e5d)[_0xb5f15(0xea)](Number)['sort']((_0x4733f3,_0x1c23da)=>_0x4733f3-_0x1c23da);for(const _0x1c8da8 of _0x3957da)_0x44e853[_0x4f599a+_0x2ca39e][_0x1c8da8]=_0x411e5d[_0x1c8da8];delete _0x44e853[_0x4f599a];}else delete _0x44e853[_0x4f599a+_0x2ca39e];}else{for(let _0x31248a=_0xf45cb5+_0x1ee2db-0x1;_0x31248a>=_0xf45cb5;_0x31248a--)if(_0x44e853[_0xb5f15(0xbf)](_0x31248a)){_0x44e853['hasOwnProperty'](_0x31248a+_0x2ca39e)||(_0x44e853[_0x31248a+_0x2ca39e]={});const _0x48f9f2=_0x44e853[_0x31248a],_0x7af768=Object[_0xb5f15(0x10b)](_0x48f9f2)[_0xb5f15(0xea)](Number)[_0xb5f15(0xd3)]((_0x12a548,_0x2555ca)=>_0x12a548-_0x2555ca);for(const _0x4d36b8 of _0x7af768)_0x44e853[_0x31248a+_0x2ca39e][_0x4d36b8]=_0x48f9f2[_0x4d36b8];delete _0x44e853[_0x31248a];}else delete _0x44e853[_0x31248a+_0x2ca39e];}}function Rt(_0x240840,_0x368f70,_0x743bec,_0x215308){const _0x2f7aac=_0x59a5e,_0x5c48f7=Object[_0x2f7aac(0x10b)](_0x240840)['map'](Number)[_0x2f7aac(0xd3)]((_0x5c4a7d,_0x5aadc3)=>_0x5c4a7d-_0x5aadc3);if(_0x215308<0x0)for(const _0x48e540 of _0x5c48f7){const _0x426404=_0x240840[_0x48e540];for(let _0x12dddc=_0x368f70;_0x12dddc<_0x368f70+_0x743bec;_0x12dddc++)_0x426404[_0x2f7aac(0xbf)](_0x12dddc)?(_0x426404[_0x12dddc+_0x215308]=_0x426404[_0x12dddc],delete _0x426404[_0x12dddc]):delete _0x426404[_0x12dddc+_0x215308];}else for(const _0x3f4cee of _0x5c48f7){const _0x5b0d9d=_0x240840[_0x3f4cee];for(let _0x4c8b45=_0x368f70+_0x743bec-0x1;_0x4c8b45>=_0x368f70;_0x4c8b45--)_0x5b0d9d['hasOwnProperty'](_0x4c8b45)?(_0x5b0d9d[_0x4c8b45+_0x215308]=_0x5b0d9d[_0x4c8b45],delete _0x5b0d9d[_0x4c8b45]):delete _0x5b0d9d[_0x4c8b45+_0x215308];}}function ee(_0x218bb1,_0x19df38){const _0x104d84=_0x59a5e;return new _0x32b4e3()['add'](_0x218bb1)[_0x104d84(0x119)](..._0x19df38)[_0x104d84(0x1e0)]();}function dt(_0x1facf5,_0x156c54,_0x2f4ce6,_0x1d8d6b){const _0x1e0f7a=_0x59a5e,_0x810cc0=new _0x4385b6()[_0x1e0f7a(0x17b)](_0x2f4ce6);if(_0x810cc0==null)return _0x2f4ce6;const _0x38aecd=[];for(let _0x37c402=0x0,_0x1b69c6=_0x810cc0['length'];_0x37c402<_0x1b69c6;_0x37c402++){const _0x448987=_0x810cc0[_0x37c402];if(typeof _0x448987==_0x1e0f7a(0x138)||_0x448987['nodeType']!==_0x165eb3[_0x1e0f7a(0x146)]){_0x38aecd['push'](_0x448987);continue;}const {token:_0x2ccbc8}=_0x448987,_0x42c6b3=_0x275666(_0x2ccbc8),{range:_0x528872,sheetName:_0x13f098,unitId:_0x2a0a5e}=_0x42c6b3;if((_0x1facf5===_0x2a0a5e||_0x2a0a5e==='')&&(_0x156c54===_0x13f098||_0x13f098==='')){const _0x245fa9=_0x1d8d6b(_0x528872),_0x3f8734=_0x245fa9?_0xaaa234({'range':_0x245fa9,'sheetName':_0x13f098,'unitId':_0x2a0a5e}):_0x5c18f6['ERROR'];_0x38aecd[_0x1e0f7a(0x112)]({..._0x448987,'token':_0x3f8734});}else _0x38aecd[_0x1e0f7a(0x112)](_0x448987);}return'='+_0x5605dd(_0x38aecd);}function H(_0x5cb192,_0xbe7042){const _0x3bcd30=_0x59a5e;return _0x5cb192[_0x3bcd30(0x13a)]<=_0xbe7042['end']&&_0x5cb192[_0x3bcd30(0x103)]>=_0xbe7042['start'];}function Te(_0x568964,_0x2bbf07){const _0x1322dd=_0x59a5e;return _0x568964[_0x1322dd(0x13a)]<=_0x2bbf07[_0x1322dd(0x13a)]&&_0x568964['end']>=_0x2bbf07[_0x1322dd(0x103)];}function Ue(_0x2d30dd,_0x15f893){let _0x10f253=[_0x2d30dd];for(const _0x38a13c of _0x15f893){const _0x31cc53=[];for(const _0x3f5f78 of _0x10f253)_0x31cc53['push'](...Xn(_0x3f5f78,_0x38a13c));_0x10f253=_0x31cc53;}return _0x10f253;}function Xn(_0xec0395,_0x370d70){const _0x2e63fc=_0x59a5e,_0x336043=[];if(Te(_0x370d70,_0xec0395))return _0x336043;if(Te(_0xec0395,_0x370d70)){const _0x3dbd67=_0xec0395[_0x2e63fc(0x13a)],_0x20b13e=_0x370d70[_0x2e63fc(0x13a)]-0x1,_0x3a0c77=_0x370d70[_0x2e63fc(0x103)]+0x1,_0x1782d8=_0xec0395[_0x2e63fc(0x103)];return _0x3dbd67<=_0x20b13e&&_0x336043[_0x2e63fc(0x112)]({'start':_0x3dbd67,'end':_0x20b13e}),_0x3a0c77<=_0x1782d8&&_0x336043['push']({'start':_0x3a0c77,'end':_0x1782d8}),_0x336043;}return H(_0xec0395,_0x370d70)?(_0xec0395[_0x2e63fc(0x13a)]<_0x370d70[_0x2e63fc(0x13a)]&&_0x336043[_0x2e63fc(0x112)]({'start':_0xec0395[_0x2e63fc(0x13a)],'end':_0x370d70[_0x2e63fc(0x13a)]-0x1}),_0xec0395['end']>_0x370d70[_0x2e63fc(0x103)]&&_0x336043[_0x2e63fc(0x112)]({'start':_0x370d70[_0x2e63fc(0x103)]+0x1,'end':_0xec0395[_0x2e63fc(0x103)]}),_0x336043):[_0xec0395];}function be(_0x1193ba,_0xb1460c){const _0x175656=_0x59a5e,_0x28bf62={'startColumn':_0x1193ba['start'],'endColumn':_0x1193ba['end'],'startRow':0x0,'endRow':0x1,'rangeType':_0x22e4d9[_0x175656(0x242)]},_0x1aee15={'startColumn':_0xb1460c['start'],'endColumn':_0xb1460c[_0x175656(0x103)],'startRow':0x0,'endRow':0x1,'rangeType':_0x22e4d9[_0x175656(0x242)]},_0x1d67fd=_0x1d0168(_0x28bf62,_0x1aee15);return{'start':_0xb1460c[_0x175656(0x13a)]+_0x1d67fd[_0x175656(0xcc)],'end':_0xb1460c[_0x175656(0x103)]+_0x1d67fd[_0x175656(0xcc)]+_0x1d67fd['length']};}function Me(_0x5b9d59,_0x5ed991){const _0x599e41=_0x59a5e,_0x2b31ae={'startColumn':_0x5b9d59[_0x599e41(0x13a)],'endColumn':_0x5b9d59[_0x599e41(0x103)],'startRow':0x0,'endRow':0x1,'rangeType':_0x22e4d9[_0x599e41(0x242)]},_0xa7413a={'startColumn':_0x5ed991[_0x599e41(0x13a)],'endColumn':_0x5ed991[_0x599e41(0x103)],'startRow':0x0,'endRow':0x1,'rangeType':_0x22e4d9[_0x599e41(0x242)]},_0x5ad2c6=_0x1465b8(_0x2b31ae,_0xa7413a);return _0x5ad2c6===null?null:{'start':_0x5ed991['start']+_0x5ad2c6['step'],'end':_0x5ed991[_0x599e41(0x103)]+_0x5ad2c6[_0x599e41(0xcc)]+_0x5ad2c6[_0x599e41(0x210)]};}function Tt(_0x5bc21f,_0x211e89){const _0x3a8a8c=_0x59a5e,{unitId:_0x141dab,subUnitId:_0x150985}=_0x5bc21f['params'],_0x413345=_0x21a1b7=>dt(_0x141dab,_0x150985,_0x21a1b7,_0xe83e4f=>_0x29cd02(_0xe83e4f,_0x211e89)),_0x4738a3=[],_0x5e9ce0=_0x55c1e2=>{const _0x1ef993=_0x29e8;var _0x3a7172,_0x29766c;const _0x5f423a=_0x55c1e2[_0x1ef993(0x1db)],_0x5661fd=_0x55c1e2[_0x1ef993(0x238)]['map'](_0x3efa8a=>_0x27f154(_0x3efa8a,_0x211e89)),_0x1fe831=(_0x3a7172=_0x55c1e2['formula1'])!=null?_0x3a7172:'',_0x4af9ee=(_0x29766c=_0x55c1e2['formula2'])!=null?_0x29766c:'';let _0x428ad5=_0x1fe831,_0x487e09=_0x4af9ee;_0x40aee0(_0x1fe831)&&(_0x428ad5=_0x413345(_0x1fe831)),_0x40aee0(_0x4af9ee)&&(_0x487e09=_0x413345(_0x4af9ee)),(_0x428ad5!==_0x1fe831||_0x487e09!==_0x4af9ee)&&_0x4738a3[_0x1ef993(0x112)]({'id':_0x2bcc50['id'],'params':{'unitId':_0x141dab,'subUnitId':_0x150985,'ruleId':_0x5f423a,'payload':{'type':_0x7ea4bb[_0x1ef993(0x212)],'payload':{'type':_0x55c1e2[_0x1ef993(0x173)],'formula1':_0x428ad5,'formula2':_0x487e09}}}});const _0x1a7124=_0x5661fd[_0x1ef993(0x1c0)]()['filter'](Boolean);_0x205d2e(_0x55c1e2['ranges'],_0x1a7124)||_0x4738a3['push']({'id':_0x2bcc50['id'],'params':{'unitId':_0x141dab,'subUnitId':_0x150985,'ruleId':_0x5f423a,'payload':{'type':_0x7ea4bb[_0x1ef993(0x244)],'payload':_0x1a7124}}});};return Array['isArray'](_0x5bc21f[_0x3a8a8c(0x126)][_0x3a8a8c(0xbc)])?_0x5bc21f[_0x3a8a8c(0x126)][_0x3a8a8c(0xbc)][_0x3a8a8c(0x233)](_0x451fdf=>_0x5e9ce0(_0x451fdf)):_0x5e9ce0(_0x5bc21f[_0x3a8a8c(0x126)][_0x3a8a8c(0xbc)]),_0x4738a3;}const Kn={'m1':_0x4d7dbd['id'],'m2':_0x34b1dc['id'],'handler'(_0x416160,_0x413f1d){const _0x3ce07d=_0x59a5e,_0x3e37f2={'m1Prime':_0x416160,'m2Prime':_0x413f1d};if(_0x416160[_0x3ce07d(0x126)][_0x3ce07d(0x10f)]!==_0x413f1d[_0x3ce07d(0x126)][_0x3ce07d(0x10f)]||_0x416160[_0x3ce07d(0x126)][_0x3ce07d(0x18c)]!==_0x413f1d[_0x3ce07d(0x126)][_0x3ce07d(0x18c)])return _0x3e37f2;const _0x3653bb={'id':_0x2d91e5['id'],'params':{'fromRange':_0x416160[_0x3ce07d(0x126)][_0x3ce07d(0x1ad)],'toRange':_0x416160[_0x3ce07d(0x126)][_0x3ce07d(0x1d3)]}},_0x5cbd91=Tt(_0x413f1d,_0x3653bb);return{'m1Prime':[_0x416160,..._0x5cbd91],'m2Prime':[_0x413f1d,..._0x5cbd91]};}},zn={'m1':_0x55baf7['id'],'m2':_0x34b1dc['id'],'handler'(_0xd14329,_0x11fdbc){const _0x268e45=_0x59a5e,_0x1d43e2={'m1Prime':_0xd14329,'m2Prime':_0x11fdbc};if(_0xd14329[_0x268e45(0x126)][_0x268e45(0x10f)]!==_0x11fdbc[_0x268e45(0x126)][_0x268e45(0x10f)]||_0xd14329[_0x268e45(0x126)][_0x268e45(0x18c)]!==_0x11fdbc['params'][_0x268e45(0x18c)])return _0x1d43e2;const _0x414de6={'id':_0x1e9259['id'],'params':{'unitId':_0xd14329[_0x268e45(0x126)][_0x268e45(0x10f)],'subUnitId':_0xd14329[_0x268e45(0x126)][_0x268e45(0x18c)],'range':_0xd14329[_0x268e45(0x126)][_0x268e45(0x114)]}},_0x36bfae=Tt(_0x11fdbc,_0x414de6);return{'m1Prime':[_0xd14329,..._0x36bfae],'m2Prime':[_0x11fdbc,..._0x36bfae]};}},qn={'m1':_0x55baf7['id'],'m2':_0x223d91['id'],'handler'(_0x51e641,_0x2c6d11){const _0x6b1d1a=_0x59a5e,_0x154355=rr['handler'](_0x2c6d11,_0x51e641);return at(_0x154355)?{'m1Prime':_0x154355[_0x6b1d1a(0x111)],'m2Prime':_0x154355[_0x6b1d1a(0x1da)]}:_0x154355;}},Zn={'m1':_0x55baf7['id'],'m2':_0x55baf7['id'],'handler'(_0x8757dc,_0x516d5f){const _0x572351=_0x59a5e,_0x3354c0={'m1Prime':_0x8757dc,'m2Prime':_0x516d5f};if(_0x8757dc[_0x572351(0x126)][_0x572351(0x10f)]!==_0x516d5f[_0x572351(0x126)][_0x572351(0x10f)]||_0x8757dc[_0x572351(0x126)]['subUnitId']!==_0x516d5f[_0x572351(0x126)][_0x572351(0x18c)])return _0x3354c0;const _0x2584a5=_0x589265[_0x572351(0x1cb)](_0x8757dc),_0x453b7e=_0x589265[_0x572351(0x1cb)](_0x516d5f),_0xed813=_0x1d0168(h(_0x8757dc['params']['range']),h(_0x516d5f[_0x572351(0x126)][_0x572351(0x114)]));if(_0xed813?(_0x453b7e[_0x572351(0x126)][_0x572351(0x114)][_0x572351(0x11d)]+=_0xed813[_0x572351(0xcc)],_0x453b7e[_0x572351(0x126)][_0x572351(0x114)][_0x572351(0x104)]+=_0xed813[_0x572351(0xcc)]+(_0xed813[_0x572351(0x210)]||0x0)):_0x453b7e['id']=_0x44f38d['id'],_0x8757dc[_0x572351(0x126)][_0x572351(0x114)][_0x572351(0x11d)]!==_0x516d5f[_0x572351(0x126)][_0x572351(0x114)][_0x572351(0x11d)]){const _0x1923fa=_0x1d0168(h(_0x516d5f[_0x572351(0x126)][_0x572351(0x114)]),h(_0x8757dc[_0x572351(0x126)][_0x572351(0x114)]));_0x1923fa?(_0x2584a5[_0x572351(0x126)][_0x572351(0x114)][_0x572351(0x11d)]+=_0x1923fa[_0x572351(0xcc)],_0x2584a5['params'][_0x572351(0x114)][_0x572351(0x104)]+=_0x1923fa['step']+(_0x1923fa[_0x572351(0x210)]||0x0)):_0x2584a5['id']=_0x44f38d['id'];}return{'m1Prime':_0x2584a5,'m2Prime':_0x453b7e};}},Qn={'m1':_0x55baf7['id'],'m2':_0x4d7dbd['id'],'handler'(_0x36f2eb,_0x374ffe){const _0x29ca4d=_0x59a5e,_0x2fda97={'m1Prime':_0x36f2eb,'m2Prime':_0x374ffe};if(_0x36f2eb[_0x29ca4d(0x126)]['unitId']!==_0x374ffe[_0x29ca4d(0x126)][_0x29ca4d(0x10f)]||_0x36f2eb['params'][_0x29ca4d(0x18c)]!==_0x374ffe['params'][_0x29ca4d(0x18c)])return _0x2fda97;const _0x25574f=_0x589265[_0x29ca4d(0x1cb)](_0x36f2eb),_0x2b6ec3=_0x589265[_0x29ca4d(0x1cb)](_0x374ffe),_0x41f17c=_0x374ffe[_0x29ca4d(0x126)][_0x29ca4d(0x1ad)],_0xe66fe6=_0x374ffe[_0x29ca4d(0x126)][_0x29ca4d(0x1d3)];if(_0x36f2eb[_0x29ca4d(0x126)]['range'][_0x29ca4d(0x11d)]>_0x41f17c[_0x29ca4d(0x11d)]&&_0x36f2eb[_0x29ca4d(0x126)][_0x29ca4d(0x114)]['startColumn']<=_0x41f17c[_0x29ca4d(0x104)]||_0x36f2eb[_0x29ca4d(0x126)][_0x29ca4d(0x114)]['startColumn']>_0xe66fe6[_0x29ca4d(0x11d)]&&_0x36f2eb[_0x29ca4d(0x126)][_0x29ca4d(0x114)]['startColumn']<=_0xe66fe6['endColumn'])return{'error':new Error(_0x29ca4d(0xeb))};const _0x416944=_0x1d0168(h(_0x36f2eb['params'][_0x29ca4d(0x114)]),h(_0x41f17c)),_0x39757b=_0x1d0168(h(_0x36f2eb[_0x29ca4d(0x126)][_0x29ca4d(0x114)]),h(_0xe66fe6));if(_0x2b6ec3[_0x29ca4d(0x126)][_0x29ca4d(0x1ad)]['startColumn']+=_0x416944[_0x29ca4d(0xcc)],_0x2b6ec3['params'][_0x29ca4d(0x1ad)]['endColumn']+=_0x416944[_0x29ca4d(0xcc)]+(_0x416944[_0x29ca4d(0x210)]||0x0),_0x2b6ec3[_0x29ca4d(0x126)][_0x29ca4d(0x1d3)][_0x29ca4d(0x11d)]+=_0x39757b[_0x29ca4d(0xcc)],_0x2b6ec3[_0x29ca4d(0x126)][_0x29ca4d(0x1d3)][_0x29ca4d(0x104)]+=_0x39757b[_0x29ca4d(0xcc)]+(_0x39757b[_0x29ca4d(0x210)]||0x0),_0x41f17c[_0x29ca4d(0x11d)]>=_0x36f2eb[_0x29ca4d(0x126)][_0x29ca4d(0x114)][_0x29ca4d(0x11d)]&&_0xe66fe6[_0x29ca4d(0x11d)]<_0x36f2eb['params'][_0x29ca4d(0x114)]['startColumn']){const _0x2a3ab9=_0xe66fe6[_0x29ca4d(0x104)]-_0xe66fe6[_0x29ca4d(0x11d)]+0x1;_0x25574f[_0x29ca4d(0x126)][_0x29ca4d(0x114)][_0x29ca4d(0x11d)]+=_0x2a3ab9,_0x25574f[_0x29ca4d(0x126)][_0x29ca4d(0x114)][_0x29ca4d(0x104)]+=_0x2a3ab9;}else{if(_0x41f17c['endColumn']<_0x36f2eb['params']['range'][_0x29ca4d(0x11d)]&&_0xe66fe6[_0x29ca4d(0x11d)]>=_0x36f2eb[_0x29ca4d(0x126)]['range'][_0x29ca4d(0x11d)]){const _0xfa39b4=_0x41f17c[_0x29ca4d(0x104)]-_0x41f17c[_0x29ca4d(0x11d)]+0x1;_0x25574f[_0x29ca4d(0x126)]['range'][_0x29ca4d(0x11d)]-=_0xfa39b4,_0x25574f[_0x29ca4d(0x126)][_0x29ca4d(0x114)][_0x29ca4d(0x104)]-=_0xfa39b4;}}return{'m1Prime':_0x25574f,'m2Prime':_0x2b6ec3};}},ta={'m1':_0x55baf7['id'],'m2':_0x442c2d['id'],'handler'(_0x21b95c,_0x30c179){const _0x4e1786=_0x59a5e,_0x4f22a3={'m1Prime':_0x21b95c,'m2Prime':_0x30c179};if(_0x21b95c[_0x4e1786(0x126)][_0x4e1786(0x10f)]!==_0x30c179[_0x4e1786(0x126)][_0x4e1786(0x10f)]||_0x21b95c['params'][_0x4e1786(0x18c)]!==_0x30c179['params'][_0x4e1786(0x16d)]['subUnitId']&&_0x21b95c['params']['subUnitId']!==_0x30c179['params']['to']['subUnitId'])return _0x4f22a3;const _0x461fdd=_0x589265[_0x4e1786(0x1cb)](_0x21b95c),_0x32c173=_0x589265[_0x4e1786(0x1cb)](_0x30c179);if(_0x21b95c[_0x4e1786(0x126)][_0x4e1786(0x18c)]===_0x30c179[_0x4e1786(0x126)][_0x4e1786(0x16d)][_0x4e1786(0x18c)]){const _0x5ecb15=new _0x33d61f(_0x32c173[_0x4e1786(0x126)][_0x4e1786(0x16d)][_0x4e1786(0x18f)])[_0x4e1786(0x1a7)](),{startColumn:_0x4f9e41,endColumn:_0x464be9}=_0x5ecb15,{startColumn:_0x7a2986,endColumn:_0xa30123}=_0x21b95c['params'][_0x4e1786(0x114)],{step:_0x16fc65,length:_0x316c34}=_0x1d0168(_0x21b95c[_0x4e1786(0x126)][_0x4e1786(0x114)],_0x5ecb15);_0x16fc65>0x0&&_0x316c34===0x0&&Rt(_0x32c173[_0x4e1786(0x126)][_0x4e1786(0x16d)][_0x4e1786(0x18f)],_0x4f9e41,_0x464be9-_0x4f9e41+0x1,_0x16fc65),_0x16fc65===0x0&&_0x316c34>0x0&&Rt(_0x32c173[_0x4e1786(0x126)]['from'][_0x4e1786(0x18f)],_0x7a2986,_0x464be9-_0x7a2986+0x1,_0xa30123-_0x7a2986+0x1);}if(_0x21b95c[_0x4e1786(0x126)][_0x4e1786(0x18c)]===_0x30c179['params']['to']['subUnitId']){const _0x50452d=new _0x33d61f(_0x32c173[_0x4e1786(0x126)]['to'][_0x4e1786(0x18f)])['getDataRange'](),{startColumn:_0x555765,endColumn:_0x192036}=_0x50452d,{startColumn:_0x4a58ee,endColumn:_0x446e67}=_0x21b95c['params']['range'],{step:_0x19b4b0,length:_0x30b917}=_0x1d0168(_0x21b95c[_0x4e1786(0x126)][_0x4e1786(0x114)],_0x50452d);_0x19b4b0>0x0&&_0x30b917===0x0&&Rt(_0x32c173[_0x4e1786(0x126)]['to'][_0x4e1786(0x18f)],_0x555765,_0x192036-_0x555765+0x1,_0x19b4b0),_0x19b4b0===0x0&&_0x30b917>0x0&&Rt(_0x32c173[_0x4e1786(0x126)]['to'][_0x4e1786(0x18f)],_0x4a58ee,_0x192036-_0x4a58ee+0x1,_0x446e67-_0x4a58ee+0x1);}return{'m1Prime':_0x461fdd,'m2Prime':_0x32c173};}},ea={'m1':_0x55baf7['id'],'m2':_0x3f9ab9['id'],'handler'(_0x5ad409,_0x3e6e56){const _0x21d552=_0x59a5e,_0x4b1e70={'m1Prime':_0x5ad409,'m2Prime':_0x3e6e56};if(_0x5ad409[_0x21d552(0x126)][_0x21d552(0x10f)]!==_0x3e6e56['params']['unitId']||_0x5ad409[_0x21d552(0x126)][_0x21d552(0x18c)]!==_0x3e6e56[_0x21d552(0x126)][_0x21d552(0x18c)])return _0x4b1e70;const _0x45ee42=_0x589265[_0x21d552(0x1cb)](_0x5ad409),_0x105e0c=_0x589265['deepClone'](_0x3e6e56);if(_0x5ad409[_0x21d552(0x126)][_0x21d552(0x114)][_0x21d552(0x11d)]<=_0x3e6e56['params'][_0x21d552(0x114)][_0x21d552(0x104)]&&_0x5ad409[_0x21d552(0x126)][_0x21d552(0x114)][_0x21d552(0x11d)]>_0x3e6e56[_0x21d552(0x126)][_0x21d552(0x114)][_0x21d552(0x11d)])return{'error':new Error(_0x21d552(0x1c1))};const _0x3b626d=_0x1d0168(h(_0x5ad409[_0x21d552(0x126)][_0x21d552(0x114)]),h(_0x3e6e56[_0x21d552(0x126)][_0x21d552(0x114)]));_0x3b626d?(_0x105e0c[_0x21d552(0x126)][_0x21d552(0x114)][_0x21d552(0x11d)]+=_0x3b626d['step'],_0x105e0c[_0x21d552(0x126)]['range'][_0x21d552(0x104)]+=_0x3b626d[_0x21d552(0xcc)]+(_0x3b626d['length']||0x0)):_0x105e0c['id']=_0x44f38d['id'];const _0x5dcc42=_0x1465b8(h(_0x3e6e56['params'][_0x21d552(0x114)]),h(_0x5ad409[_0x21d552(0x126)][_0x21d552(0x114)]));return _0x5dcc42&&(_0x45ee42[_0x21d552(0x126)][_0x21d552(0x114)][_0x21d552(0x11d)]+=_0x5dcc42['step'],_0x45ee42[_0x21d552(0x126)][_0x21d552(0x114)]['endColumn']+=_0x5dcc42[_0x21d552(0xcc)]+(_0x5dcc42[_0x21d552(0x210)]||0x0)),{'m1Prime':_0x45ee42,'m2Prime':_0x105e0c};}},ra={'m1':_0x55baf7['id'],'m2':_0x5775f8['id'],'handler'(_0x1b87a8,_0x4df1d6){const _0x1a5031=_0x59a5e,_0x549857={'m1Prime':_0x1b87a8,'m2Prime':_0x4df1d6};if(_0x1b87a8[_0x1a5031(0x126)][_0x1a5031(0x10f)]!==_0x4df1d6[_0x1a5031(0x126)][_0x1a5031(0x10f)]||_0x1b87a8[_0x1a5031(0x126)]['subUnitId']!==_0x4df1d6[_0x1a5031(0x126)][_0x1a5031(0x18c)])return _0x549857;const _0x1880e4=_0x589265[_0x1a5031(0x1cb)](_0x1b87a8),_0xe6a497=_0x589265[_0x1a5031(0x1cb)](_0x4df1d6),{ranges:_0x48c435}=_0xe6a497[_0x1a5031(0x126)];return _0x48c435['some'](_0xc79af7=>{const _0x27f564=_0x1a5031,_0x3a6dac=_0x1d0168(h(_0x1b87a8['params'][_0x27f564(0x114)]),h(_0xc79af7));return _0x3a6dac['length']!==0x0?!0x0:(_0xc79af7['startColumn']+=_0x3a6dac[_0x27f564(0xcc)],_0xc79af7[_0x27f564(0x104)]+=_0x3a6dac['step'],!0x1);})?{'error':new Error('insert\x20col\x20is\x20conflict\x20with\x20remove\x20numfmt')}:{'m1Prime':_0x1880e4,'m2Prime':_0xe6a497};}},na={'m1':_0x55baf7['id'],'m2':_0x49900b['id'],'handler'(_0x47d241,_0x151513){const _0x56307a=_0x59a5e,_0x1eac18=_0x589265['deepClone'](_0x47d241),_0x50e46f=_0x589265[_0x56307a(0x1cb)](_0x151513);if(_0x47d241[_0x56307a(0x126)][_0x56307a(0x10f)]!==_0x151513[_0x56307a(0x126)][_0x56307a(0x10f)]||_0x47d241[_0x56307a(0x126)][_0x56307a(0x18c)]!==_0x151513[_0x56307a(0x126)][_0x56307a(0x18c)])return{'m1Prime':_0x1eac18,'m2Prime':_0x50e46f};const _0x242de2=_0x50e46f[_0x56307a(0x126)][_0x56307a(0x238)][_0x56307a(0xea)](_0x3402b5=>{const _0x3ed10c=_0x56307a,_0x378ce9=_0x1eac18[_0x3ed10c(0x126)][_0x3ed10c(0x114)],_0x41b03a=_0x378ce9['endColumn']-_0x378ce9[_0x3ed10c(0x11d)]+0x1;return _0x378ce9[_0x3ed10c(0x11d)]<=_0x3402b5[_0x3ed10c(0x11d)]?{..._0x3402b5,'startColumn':_0x3402b5[_0x3ed10c(0x11d)]+_0x41b03a,'endColumn':_0x3402b5[_0x3ed10c(0x104)]+_0x41b03a}:_0x378ce9['startColumn']>_0x3402b5[_0x3ed10c(0x11d)]&&_0x378ce9[_0x3ed10c(0x11d)]<=_0x3402b5['endColumn']?{..._0x3402b5,'endColumn':_0x3402b5[_0x3ed10c(0x104)]+_0x41b03a}:{..._0x3402b5};});return _0x50e46f[_0x56307a(0x126)][_0x56307a(0x238)]=_0x242de2,{'m1Prime':_0x1eac18,'m2Prime':_0x50e46f};}},aa={'m1':_0x55baf7['id'],'m2':_0x2a2d75['id'],'handler'(_0x51c549,_0x38219a){const _0x4e2a64=_0x59a5e,_0x1ec6a9={'m1Prime':_0x51c549,'m2Prime':_0x38219a};if(_0x51c549[_0x4e2a64(0x126)][_0x4e2a64(0x10f)]!==_0x38219a[_0x4e2a64(0x126)][_0x4e2a64(0x10f)]||_0x51c549[_0x4e2a64(0x126)][_0x4e2a64(0x18c)]!==_0x38219a[_0x4e2a64(0x126)][_0x4e2a64(0x18c)])return _0x1ec6a9;const _0x5d1303=_0x589265[_0x4e2a64(0x1cb)](_0x38219a),_0x2d8421=_0x1d0168(h(_0x51c549['params']['range']),h(_0x38219a['params'][_0x4e2a64(0x114)]));return _0x5d1303['params']['range'][_0x4e2a64(0x11d)]+=_0x2d8421[_0x4e2a64(0xcc)],_0x5d1303[_0x4e2a64(0x126)][_0x4e2a64(0x114)][_0x4e2a64(0x104)]+=_0x2d8421[_0x4e2a64(0xcc)]+(_0x2d8421[_0x4e2a64(0x210)]||0x0),{'m1Prime':_0x51c549,'m2Prime':_0x5d1303};}},sa={'m1':_0x55baf7['id'],'m2':_0xac87f6['id'],'handler'(_0x38a8c0,_0x30aacc){const _0x1c8c3a=_0x59a5e,_0x1aca4c={'m1Prime':_0x38a8c0,'m2Prime':_0x30aacc};if(_0x38a8c0[_0x1c8c3a(0x126)]['unitId']!==_0x30aacc['params'][_0x1c8c3a(0x10f)]||_0x38a8c0['params']['subUnitId']!==_0x30aacc[_0x1c8c3a(0x126)][_0x1c8c3a(0x18c)])return _0x1aca4c;const _0x241b67=_0x589265[_0x1c8c3a(0x1cb)](_0x38a8c0),_0x4dd625=_0x589265['deepClone'](_0x30aacc),{columnData:_0x17f51a}=_0x4dd625[_0x1c8c3a(0x126)];for(let _0x51d74d=_0x38a8c0[_0x1c8c3a(0x126)]['range'][_0x1c8c3a(0x11d)];_0x51d74d<=_0x38a8c0[_0x1c8c3a(0x126)]['range'][_0x1c8c3a(0x104)];_0x51d74d++)_0x51e3a7(_0x51d74d,void 0x0,_0x17f51a);return{'m1Prime':_0x241b67,'m2Prime':_0x4dd625};}},oa={'m1':_0x55baf7['id'],'m2':_0x1b9d87['id'],'handler'(_0x41fc0f,_0x3b265e){const _0x2a5c8f=_0x59a5e,_0x33eedb={'m1Prime':_0x41fc0f,'m2Prime':_0x3b265e};if(_0x41fc0f[_0x2a5c8f(0x126)]['unitId']!==_0x3b265e[_0x2a5c8f(0x126)]['unitId']||_0x41fc0f[_0x2a5c8f(0x126)][_0x2a5c8f(0x18c)]!==_0x3b265e[_0x2a5c8f(0x126)]['subUnitId'])return _0x33eedb;const _0x473083=_0x589265[_0x2a5c8f(0x1cb)](_0x41fc0f),_0x469862=_0x589265[_0x2a5c8f(0x1cb)](_0x3b265e),{ranges:_0x3aec11}=_0x469862[_0x2a5c8f(0x126)];return _0x3aec11[_0x2a5c8f(0x221)](_0x864c7f=>{const _0x20f1be=_0x2a5c8f,_0x4a5162=_0x1d0168(h(_0x41fc0f[_0x20f1be(0x126)]['range']),_0x864c7f);return _0x4a5162[_0x20f1be(0x210)]!==0x0?!0x0:(_0x864c7f[_0x20f1be(0x11d)]+=_0x4a5162['step'],_0x864c7f[_0x20f1be(0x104)]+=_0x4a5162[_0x20f1be(0xcc)],!0x1);})?{'error':new Error(_0x2a5c8f(0x15e))}:{'m1Prime':_0x473083,'m2Prime':_0x469862};}},ia={'m1':_0x55baf7['id'],'m2':_0x59769e['id'],'handler'(_0x2fe94b,_0xe6f460){const _0x565b9c=_0x59a5e,_0x44d11e={'m1Prime':_0x2fe94b,'m2Prime':_0xe6f460};if(_0x2fe94b['params'][_0x565b9c(0x10f)]!==_0xe6f460[_0x565b9c(0x126)][_0x565b9c(0x10f)]||_0x2fe94b[_0x565b9c(0x126)][_0x565b9c(0x18c)]!==_0xe6f460['params']['subUnitId'])return _0x44d11e;const _0x11ce4d=_0x589265['deepClone'](_0x2fe94b),_0x2662e1=_0x589265[_0x565b9c(0x1cb)](_0xe6f460),{ranges:_0x58d431}=_0x2662e1[_0x565b9c(0x126)];return _0x58d431[_0x565b9c(0x221)](_0x559edd=>{const _0x51e221=_0x565b9c,_0x41817a=_0x1d0168(h(_0x2fe94b['params'][_0x51e221(0x114)]),_0x559edd);return _0x41817a[_0x51e221(0x210)]!==0x0?!0x0:(_0x559edd['startColumn']+=_0x41817a['step'],_0x559edd['endColumn']+=_0x41817a['step'],!0x1);})?{'error':new Error(_0x565b9c(0x1ec))}:{'m1Prime':_0x11ce4d,'m2Prime':_0x2662e1};}},da={'m1':_0x55baf7['id'],'m2':_0x432da8['id'],'handler'(_0x4ca35e,_0x13b24d){const _0x162898=_0x59a5e,_0x5251ed={'m1Prime':_0x4ca35e,'m2Prime':_0x13b24d};if(_0x4ca35e[_0x162898(0x126)][_0x162898(0x10f)]!==_0x13b24d[_0x162898(0x126)][_0x162898(0x10f)]||_0x4ca35e[_0x162898(0x126)][_0x162898(0x18c)]!==_0x13b24d[_0x162898(0x126)][_0x162898(0x18c)])return _0x5251ed;const _0x36d018=[_0x589265['deepClone'](_0x4ca35e)],_0x2af210=_0x589265[_0x162898(0x1cb)](_0x13b24d),{values:_0x1dc8b4}=_0x2af210['params'],_0x2cdc7a=[];let _0x2afac6=!0x1;for(const _0x558a93 in _0x1dc8b4){const _0x12866c=_0x1dc8b4[_0x558a93];if(_0x2cdc7a[_0x162898(0x112)](..._0x12866c[_0x162898(0x238)]),_0x12866c['ranges'][_0x162898(0x221)](_0x5c934e=>{const _0x45c49b=_0x162898,_0x439198=_0x1d0168(h(_0x4ca35e[_0x45c49b(0x126)][_0x45c49b(0x114)]),h(_0x5c934e));return _0x439198['length']!==0x0?!0x0:(_0x439198[_0x45c49b(0xcc)]!==0x0&&(_0x2afac6=!0x0),_0x5c934e[_0x45c49b(0x11d)]+=_0x439198['step'],_0x5c934e['endColumn']+=_0x439198[_0x45c49b(0xcc)],!0x1);}))return{'error':new Error('insert\x20col\x20is\x20conflict\x20with\x20set\x20numfmt')};}if(_0x2afac6){const _0x2cb2fd={'id':_0x5775f8['id'],'params':{'unitId':_0x13b24d['params'][_0x162898(0x10f)],'subUnitId':_0x13b24d[_0x162898(0x126)][_0x162898(0x18c)],'ranges':_0x2cdc7a}};_0x36d018[_0x162898(0x112)](_0x2cb2fd,_0x2af210);}return{'m1Prime':_0x36d018,'m2Prime':_0x2af210};}},ma={'m1':_0x55baf7['id'],'m2':_0x36f561['id'],'handler'(_0x77ade6,_0x1cb8e0){const _0x584030=_0x59a5e,_0x141ca0={'m1Prime':_0x77ade6,'m2Prime':_0x1cb8e0};if(_0x77ade6[_0x584030(0x126)][_0x584030(0x10f)]!==_0x1cb8e0[_0x584030(0x126)]['unitId']||_0x77ade6[_0x584030(0x126)]['subUnitId']!==_0x1cb8e0[_0x584030(0x126)][_0x584030(0x18c)])return _0x141ca0;const _0x25db37=[_0x589265[_0x584030(0x1cb)](_0x77ade6)],_0x4e2f1f=_0x589265[_0x584030(0x1cb)](_0x1cb8e0),_0x49b36f=new _0x33d61f(_0x4e2f1f['params'][_0x584030(0x153)]),_0x46cb67=_0x49b36f[_0x584030(0x1a7)](),_0x46d8ac=_0x77ade6[_0x584030(0x126)][_0x584030(0x114)],_0xc4a2ba=_0x46d8ac[_0x584030(0x104)]-_0x46d8ac[_0x584030(0x11d)]+0x1;if(_0x4e2f1f[_0x584030(0x126)][_0x584030(0x153)]&&_0x46d8ac['startColumn']<=_0x46cb67[_0x584030(0x104)]){const _0x517ed8=Math[_0x584030(0x14b)](_0x46cb67[_0x584030(0x11d)],_0x46d8ac[_0x584030(0x11d)]);Rt(_0x4e2f1f[_0x584030(0x126)][_0x584030(0x153)],_0x517ed8,_0x46cb67[_0x584030(0x104)]-_0x517ed8+0x1,_0xc4a2ba);}const _0x4c2ec3=new _0x33d61f();let _0x236cc7=!0x1;if(_0x49b36f['forValue']((_0x1f803b,_0x446868,_0x509e2d)=>{const _0x295d3e=_0x584030;if(_0x509e2d&&_0x509e2d['f']){const _0x175c67=_0x509e2d['f'];let _0x212555=!0x1;const _0x3d4e85=dt(_0x77ade6[_0x295d3e(0x126)][_0x295d3e(0x10f)],_0x77ade6[_0x295d3e(0x126)][_0x295d3e(0x18c)],_0x175c67,_0x227c2e=>{const _0x21b01e=_0x295d3e,_0xe160f3=_0x1d0168(h(_0x77ade6[_0x21b01e(0x126)][_0x21b01e(0x114)]),h(_0x227c2e));return(_0xe160f3[_0x21b01e(0xcc)]!==0x0||_0xe160f3[_0x21b01e(0x210)]!==0x0)&&(_0x212555=!0x0,_0x227c2e[_0x21b01e(0x11d)]+=_0xe160f3[_0x21b01e(0xcc)],_0x227c2e[_0x21b01e(0x104)]+=_0xe160f3[_0x21b01e(0xcc)]+_0xe160f3[_0x21b01e(0x210)]),_0x227c2e;});_0x212555&&(_0x236cc7=!0x0,_0x509e2d['f']=_0x3d4e85,_0x4c2ec3['setValue'](_0x1f803b,_0x446868,{..._0x509e2d}));}}),_0x236cc7){const _0x438e3b={'id':_0x36f561['id'],'params':{'unitId':_0x1cb8e0[_0x584030(0x126)][_0x584030(0x10f)],'subUnitId':_0x1cb8e0[_0x584030(0x126)][_0x584030(0x18c)],'cellValue':_0x4c2ec3[_0x584030(0x131)]()}};_0x25db37[_0x584030(0x112)](_0x438e3b);}return{'m1Prime':_0x25db37,'m2Prime':_0x4e2f1f};}},ua={'m1':_0x55baf7['id'],'m2':_0x53e0ba['id'],'handler'(_0x1329de,_0x479033){const _0x2118a8=_0x59a5e,_0x4ae4cf={'m1Prime':[],'m2Prime':[]};if(_0x1329de[_0x2118a8(0x126)][_0x2118a8(0x10f)]!==_0x479033[_0x2118a8(0x126)]['unitId']||_0x1329de[_0x2118a8(0x126)][_0x2118a8(0x18c)]!==_0x479033[_0x2118a8(0x126)][_0x2118a8(0x18c)])return _0x4ae4cf;const _0x202fd0=_0x589265[_0x2118a8(0x1cb)](_0x479033);let _0xf83174=!0x1;return _0x202fd0[_0x2118a8(0x126)][_0x2118a8(0x14a)]['forEach'](_0x3ca553=>{const _0x26a3b5=_0x2118a8,{range:_0x331002,primary:_0x124015}=_0x3ca553,_0x4e7b78=_0x1d0168(h(_0x1329de[_0x26a3b5(0x126)][_0x26a3b5(0x114)]),h(_0x331002));if(_0x4e7b78[_0x26a3b5(0x210)]||_0x4e7b78[_0x26a3b5(0xcc)]){if(_0x331002[_0x26a3b5(0x11d)]+=_0x4e7b78['step'],_0x331002[_0x26a3b5(0x104)]+=_0x4e7b78[_0x26a3b5(0xcc)]+(_0x4e7b78[_0x26a3b5(0x210)]||0x0),_0x124015){const _0xf8601c=_0x1d0168(h(_0x1329de[_0x26a3b5(0x126)][_0x26a3b5(0x114)]),h(_0x124015));(_0xf8601c[_0x26a3b5(0x210)]||_0xf8601c['step'])&&(_0x124015[_0x26a3b5(0x11d)]+=_0xf8601c[_0x26a3b5(0xcc)],_0x124015[_0x26a3b5(0x104)]+=_0xf8601c[_0x26a3b5(0xcc)],_0x124015[_0x26a3b5(0x100)]+=_0xf8601c[_0x26a3b5(0xcc)]);}_0xf83174=!0x0;}}),_0xf83174&&_0x4ae4cf[_0x2118a8(0x111)][_0x2118a8(0x112)](_0x202fd0),_0x4ae4cf;}},la={'m1':_0x55baf7['id'],'m2':_0x1b64c2['id'],'handler'(_0x34eb55,_0x73070){const _0x4ac5dc=_0x59a5e,_0x298306={'m1Prime':_0x34eb55,'m2Prime':_0x73070};if(_0x34eb55['params'][_0x4ac5dc(0x10f)]!==_0x73070['params'][_0x4ac5dc(0x10f)]||_0x34eb55[_0x4ac5dc(0x126)][_0x4ac5dc(0x18c)]!==_0x73070[_0x4ac5dc(0x126)]['subUnitId'])return _0x298306;const _0x4d06e9=_0x589265[_0x4ac5dc(0x1cb)](_0x34eb55),_0x548770=_0x589265[_0x4ac5dc(0x1cb)](_0x73070),_0x1e80ec=be({'start':_0x34eb55[_0x4ac5dc(0x126)]['range'][_0x4ac5dc(0x11d)],'end':_0x34eb55['params'][_0x4ac5dc(0x114)][_0x4ac5dc(0x104)]},{'start':_0x73070[_0x4ac5dc(0x126)][_0x4ac5dc(0x22b)],'end':_0x73070[_0x4ac5dc(0x126)][_0x4ac5dc(0x22b)]});if(_0x548770['params'][_0x4ac5dc(0x22b)]===_0x1e80ec[_0x4ac5dc(0x13a)])return _0x298306;_0x548770['params'][_0x4ac5dc(0x22b)]=_0x1e80ec[_0x4ac5dc(0x13a)],_0x548770[_0x4ac5dc(0x126)][_0x4ac5dc(0x105)]&&(_0x548770['params'][_0x4ac5dc(0x105)][_0x4ac5dc(0x109)]=_0x1e80ec['start']);const _0x3030ec=_0x589265[_0x4ac5dc(0x1cb)](_0x73070);return _0x3030ec[_0x4ac5dc(0x126)]['criteria']=null,{'m1Prime':[_0x3030ec,_0x548770,_0x4d06e9],'m2Prime':[_0x548770]};}},ca={'m1':_0x55baf7['id'],'m2':_0xa0b953['id'],'handler'(_0x22fb32,_0x3ffc28){const _0xe4fac1=_0x59a5e,_0x25098a={'m1Prime':_0x22fb32,'m2Prime':_0x3ffc28};if(_0x22fb32['params'][_0xe4fac1(0x10f)]!==_0x3ffc28[_0xe4fac1(0x126)]['unitId']||_0x22fb32[_0xe4fac1(0x126)][_0xe4fac1(0x18c)]!==_0x3ffc28[_0xe4fac1(0x126)][_0xe4fac1(0x18c)])return _0x25098a;const _0xe47637=_0x589265[_0xe4fac1(0x1cb)](_0x22fb32),_0x4f3e67=_0x589265['deepClone'](_0x3ffc28),_0x1b84e3=be({'start':_0x22fb32[_0xe4fac1(0x126)][_0xe4fac1(0x114)][_0xe4fac1(0x11d)],'end':_0x22fb32[_0xe4fac1(0x126)]['range']['endColumn']},{'start':_0x3ffc28[_0xe4fac1(0x126)][_0xe4fac1(0x114)][_0xe4fac1(0x11d)],'end':_0x3ffc28[_0xe4fac1(0x126)][_0xe4fac1(0x114)][_0xe4fac1(0x104)]});return _0x4f3e67['params'][_0xe4fac1(0x114)][_0xe4fac1(0x11d)]===_0x1b84e3[_0xe4fac1(0x13a)]&&_0x4f3e67[_0xe4fac1(0x126)][_0xe4fac1(0x114)][_0xe4fac1(0x104)]===_0x1b84e3[_0xe4fac1(0x103)]?_0x25098a:(_0x4f3e67[_0xe4fac1(0x126)][_0xe4fac1(0x114)][_0xe4fac1(0x11d)]=_0x1b84e3[_0xe4fac1(0x13a)],_0x4f3e67[_0xe4fac1(0x126)]['range'][_0xe4fac1(0x104)]=_0x1b84e3[_0xe4fac1(0x103)],{'m1Prime':[_0x4f3e67,_0xe47637],'m2Prime':[_0x4f3e67]});}},pa={'m1':_0x55baf7['id'],'m2':_0x8fd627['id'],'handler'(_0x29f365,_0x4a2245){const _0x4f6e61=_0x59a5e,_0x467d42={'m1Prime':_0x29f365,'m2Prime':_0x4a2245};if(_0x29f365[_0x4f6e61(0x126)][_0x4f6e61(0x10f)]!==_0x4a2245[_0x4f6e61(0x126)][_0x4f6e61(0x10f)]||_0x29f365[_0x4f6e61(0x126)][_0x4f6e61(0x18c)]!==_0x4a2245[_0x4f6e61(0x126)][_0x4f6e61(0x18c)])return _0x467d42;const _0x2b54e0=_0x589265[_0x4f6e61(0x1cb)](_0x29f365),_0x6b1f7e=_0x589265[_0x4f6e61(0x1cb)](_0x4a2245),{ranges:_0x5d66a0,colWidth:_0x11ef74}=_0x6b1f7e['params'];if(_0x5d66a0['some'](_0x5069d4=>{const _0x5164c7=_0x4f6e61,_0x5e79cb=_0x1d0168(h(_0x29f365[_0x5164c7(0x126)][_0x5164c7(0x114)]),_0x5069d4);return _0x5e79cb[_0x5164c7(0x210)]!==0x0?!0x0:(_0x5069d4[_0x5164c7(0x11d)]+=_0x5e79cb['step'],_0x5069d4[_0x5164c7(0x104)]+=_0x5e79cb[_0x5164c7(0xcc)],!0x1);}))return{'error':new Error(_0x4f6e61(0xd8))};if(typeof _0x11ef74!=_0x4f6e61(0x1e1)){for(let _0x2b493a=_0x29f365[_0x4f6e61(0x126)][_0x4f6e61(0x114)][_0x4f6e61(0x11d)];_0x2b493a<=_0x29f365[_0x4f6e61(0x126)]['range']['endColumn'];_0x2b493a++)_0x51e3a7(_0x2b493a,void 0x0,_0x11ef74);}return{'m1Prime':_0x2b54e0,'m2Prime':_0x6b1f7e};}},wt=(_0x7fad71,_0xf5e40f)=>{const _0x432d28=_0x59a5e,_0x28ba8e=_0x579299(_0x7fad71['params'][_0x432d28(0x218)]['ref']),_0x1db949={'startColumn':_0x28ba8e[_0x432d28(0x142)],'endColumn':_0x28ba8e[_0x432d28(0x142)],'startRow':_0x28ba8e['row'],'endRow':_0x28ba8e['row']},_0x3a22ca=_0x29cd02(_0x1db949,_0xf5e40f);if(!_0x3a22ca)return[{'id':_0x476949['id'],'params':{..._0x7fad71['params'],'comment':void 0x0,'commentId':_0x7fad71['params'][_0x432d28(0x218)]['commentId']}}];const _0x4b8b20=_0x424cfe(_0x3a22ca);return _0x4b8b20===_0x7fad71['params']['payload'][_0x432d28(0x180)]?[]:[{'id':_0x164c55['id'],'params':{..._0x7fad71[_0x432d28(0x126)],'comment':void 0x0,'payload':{'ref':_0x4b8b20,'commentId':_0x7fad71[_0x432d28(0x126)][_0x432d28(0x218)][_0x432d28(0x1c7)]}}}];},fa={'m1':_0x55baf7['id'],'m2':_0x164c55['id'],'handler':(_0xca0e75,_0x1aeb4e)=>{const _0x39d456=_0x59a5e,_0x52f6cf={'m1Prime':_0xca0e75,'m2Prime':_0x1aeb4e};if(_0xca0e75[_0x39d456(0x126)][_0x39d456(0x10f)]!==_0x1aeb4e[_0x39d456(0x126)]['unitId']||_0xca0e75[_0x39d456(0x126)][_0x39d456(0x18c)]!==_0x1aeb4e[_0x39d456(0x126)]['subUnitId'])return _0x52f6cf;const _0x5f04d2={'id':_0x1e9259['id'],'params':{'unitId':_0xca0e75[_0x39d456(0x126)][_0x39d456(0x10f)],'subUnitId':_0xca0e75['params'][_0x39d456(0x18c)],'range':_0xca0e75['params'][_0x39d456(0x114)]}},_0x358eee=wt(_0x1aeb4e,_0x5f04d2);return{'m1Prime':[_0xca0e75,..._0x358eee],'m2Prime':[_0x1aeb4e,..._0x358eee]};}};function Ct(_0x3643e8,_0x197613){const _0x2813ec=_0x59a5e;var _0x4a23c2,_0x1acf1c;const {payload:_0x33b17c,unitId:_0x5dc61e,subUnitId:_0x518931,ruleId:_0x2d550f}=_0x3643e8[_0x2813ec(0x126)];switch(_0x33b17c[_0x2813ec(0x173)]){case _0x7ea4bb['RANGE']:{const _0x4a8afd=_0x33b17c[_0x2813ec(0x218)][_0x2813ec(0xea)](_0x41f173=>_0x27f154(_0x41f173,_0x197613))[_0x2813ec(0x12d)](Boolean)['flat']();if(!_0x205d2e(_0x4a8afd,_0x33b17c['payload']))return[{'id':_0x2bcc50['id'],'params':{'unitId':_0x5dc61e,'subUnitId':_0x518931,'ruleId':_0x2d550f,'payload':{'type':_0x7ea4bb[_0x2813ec(0x244)],'payload':_0x4a8afd}}}];break;}case _0x7ea4bb[_0x2813ec(0x212)]:{const _0x4abb09=_0x4fa61c=>dt(_0x5dc61e,_0x518931,_0x4fa61c,_0x318a2a=>_0x29cd02(_0x318a2a,_0x197613)),_0x3c50d9=(_0x4a23c2=_0x33b17c[_0x2813ec(0x218)]['formula1'])!=null?_0x4a23c2:'',_0x1509bb=(_0x1acf1c=_0x33b17c['payload'][_0x2813ec(0x17e)])!=null?_0x1acf1c:'';let _0x576c16=_0x3c50d9,_0x4f9581=_0x1509bb;if(_0x40aee0(_0x3c50d9)&&(_0x576c16=_0x4abb09(_0x3c50d9)),_0x40aee0(_0x1509bb)&&(_0x4f9581=_0x4abb09(_0x1509bb)),_0x576c16!==_0x3c50d9||_0x4f9581!==_0x1509bb)return[{'id':_0x2bcc50['id'],'params':{'unitId':_0x5dc61e,'subUnitId':_0x518931,'ruleId':_0x2d550f,'payload':{'type':_0x7ea4bb['SETTING'],'payload':{'type':_0x33b17c[_0x2813ec(0x218)]['type'],'formula1':_0x576c16,'formula2':_0x4f9581}}}}];break;}}return[];}const Ra={'m1':_0x4d7dbd['id'],'m2':_0x2bcc50['id'],'handler':(_0x19c53b,_0x2e9269)=>{const _0x1f06aa=_0x59a5e,_0x542547={'m1Prime':_0x19c53b,'m2Prime':_0x2e9269};if(_0x19c53b['params'][_0x1f06aa(0x10f)]!==_0x2e9269[_0x1f06aa(0x126)][_0x1f06aa(0x10f)]||_0x2e9269[_0x1f06aa(0x126)][_0x1f06aa(0x18c)]!==_0x19c53b[_0x1f06aa(0x126)][_0x1f06aa(0x18c)])return _0x542547;const _0x4e36b9={'id':_0x2d91e5['id'],'params':{'fromRange':_0x19c53b['params'][_0x1f06aa(0x1ad)],'toRange':_0x19c53b[_0x1f06aa(0x126)]['targetRange']}},_0x249106=Ct(_0x2e9269,_0x4e36b9);return{'m1Prime':[_0x19c53b,..._0x249106],'m2Prime':[_0x2e9269,..._0x249106]};}},ha={'m1':_0x55baf7['id'],'m2':_0x2bcc50['id'],'handler':(_0x4d03c2,_0x187fcd)=>{const _0x268b8e=_0x59a5e,_0x2625e8={'m1Prime':_0x4d03c2,'m2Prime':_0x187fcd};if(_0x4d03c2[_0x268b8e(0x126)][_0x268b8e(0x10f)]!==_0x187fcd['params'][_0x268b8e(0x10f)]||_0x187fcd[_0x268b8e(0x126)]['subUnitId']!==_0x4d03c2[_0x268b8e(0x126)][_0x268b8e(0x18c)])return _0x2625e8;const _0x1fdbd7={'id':_0x1e9259['id'],'params':{'unitId':_0x4d03c2[_0x268b8e(0x126)][_0x268b8e(0x10f)],'subUnitId':_0x4d03c2[_0x268b8e(0x126)][_0x268b8e(0x18c)],'range':_0x4d03c2[_0x268b8e(0x126)][_0x268b8e(0x114)]}},_0x6ebbde=Ct(_0x187fcd,_0x1fdbd7);return{'m1Prime':[_0x4d03c2,..._0x6ebbde],'m2Prime':[_0x187fcd,..._0x6ebbde]};}},ga={'m1':_0x5694af['id'],'m2':_0x58b473['id'],'handler':(_0x2a8762,_0x332324)=>{const _0x4d25ef=_0x59a5e,_0x47c4ef={'m1Prime':_0x2a8762,'m2Prime':_0x332324};if(_0x2a8762[_0x4d25ef(0x126)][_0x4d25ef(0x10f)]!==_0x332324[_0x4d25ef(0x126)][_0x4d25ef(0x10f)]||_0x2a8762[_0x4d25ef(0x126)][_0x4d25ef(0x18c)]!==_0x332324[_0x4d25ef(0x126)]['subUnitId'])return _0x47c4ef;const _0x4358b0={'id':_0x1cd52b['id'],'params':{'unitId':_0x2a8762[_0x4d25ef(0x126)]['unitId'],'subUnitId':_0x2a8762[_0x4d25ef(0x126)]['subUnitId'],'range':_0x2a8762['params']['range']}},_0x533c19=It(_0x332324,_0x4358b0);return{'m1Prime':[_0x2a8762,..._0x533c19],'m2Prime':[_0x332324,..._0x533c19]};}},Ia={'m1':_0x5694af['id'],'m2':_0x223d91['id'],'handler'(_0x4c93be,_0x24321e){const _0x23ee41=_0x59a5e,_0xdca461=nr['handler'](_0x24321e,_0x4c93be);return at(_0xdca461)?{'m1Prime':_0xdca461[_0x23ee41(0x111)],'m2Prime':_0xdca461['m1Prime']}:_0xdca461;}},wa={'m1':_0x5694af['id'],'m2':_0x5694af['id'],'handler'(_0x5f116a,_0x2fe338){const _0x2c28cd=_0x59a5e,_0x332b1e={'m1Prime':_0x5f116a,'m2Prime':_0x2fe338};if(_0x5f116a[_0x2c28cd(0x126)]['unitId']!==_0x2fe338[_0x2c28cd(0x126)][_0x2c28cd(0x10f)]||_0x5f116a[_0x2c28cd(0x126)][_0x2c28cd(0x18c)]!==_0x2fe338[_0x2c28cd(0x126)][_0x2c28cd(0x18c)])return _0x332b1e;const _0x2fc4e6=_0x589265[_0x2c28cd(0x1cb)](_0x5f116a),_0x475d9c=_0x589265[_0x2c28cd(0x1cb)](_0x2fe338),_0x5a96e4=_0x1d0168(h(_0x2690fd(_0x5f116a[_0x2c28cd(0x126)][_0x2c28cd(0x114)])),h(_0x2690fd(_0x2fe338[_0x2c28cd(0x126)][_0x2c28cd(0x114)])));if(_0x5a96e4?(_0x475d9c[_0x2c28cd(0x126)][_0x2c28cd(0x114)][_0x2c28cd(0xcd)]+=_0x5a96e4[_0x2c28cd(0xcc)],_0x475d9c[_0x2c28cd(0x126)][_0x2c28cd(0x114)]['endRow']+=_0x5a96e4[_0x2c28cd(0xcc)]+(_0x5a96e4[_0x2c28cd(0x210)]||0x0)):_0x475d9c['id']=_0x44f38d['id'],_0x5f116a['params'][_0x2c28cd(0x114)][_0x2c28cd(0xcd)]!==_0x2fe338[_0x2c28cd(0x126)][_0x2c28cd(0x114)]['startRow']){const _0x3f7794=_0x1d0168(h(_0x2690fd(_0x2fe338[_0x2c28cd(0x126)][_0x2c28cd(0x114)])),h(_0x2690fd(_0x5f116a[_0x2c28cd(0x126)]['range'])));_0x3f7794?(_0x2fc4e6[_0x2c28cd(0x126)][_0x2c28cd(0x114)][_0x2c28cd(0xcd)]+=_0x3f7794[_0x2c28cd(0xcc)],_0x2fc4e6[_0x2c28cd(0x126)][_0x2c28cd(0x114)][_0x2c28cd(0xf0)]+=_0x3f7794[_0x2c28cd(0xcc)]+(_0x3f7794['length']||0x0)):_0x2fc4e6['id']=_0x44f38d['id'];}return{'m1Prime':_0x2fc4e6,'m2Prime':_0x475d9c};}},Ca={'m1':_0x5694af['id'],'m2':_0x442c2d['id'],'handler'(_0x4e86b6,_0x4b7ffb){const _0x14a498=_0x59a5e,_0x52ff37={'m1Prime':_0x4e86b6,'m2Prime':_0x4b7ffb};if(_0x4e86b6[_0x14a498(0x126)][_0x14a498(0x10f)]!==_0x4b7ffb['params'][_0x14a498(0x10f)]||_0x4e86b6[_0x14a498(0x126)]['subUnitId']!==_0x4b7ffb[_0x14a498(0x126)]['from'][_0x14a498(0x18c)]&&_0x4e86b6[_0x14a498(0x126)][_0x14a498(0x18c)]!==_0x4b7ffb[_0x14a498(0x126)]['to'][_0x14a498(0x18c)])return _0x52ff37;const _0x179f41=_0x589265[_0x14a498(0x1cb)](_0x4e86b6),_0x13135f=_0x589265[_0x14a498(0x1cb)](_0x4b7ffb);if(_0x4e86b6[_0x14a498(0x126)][_0x14a498(0x18c)]===_0x4b7ffb[_0x14a498(0x126)]['from'][_0x14a498(0x18c)]){const _0x14a825=new _0x33d61f(_0x13135f[_0x14a498(0x126)][_0x14a498(0x16d)][_0x14a498(0x18f)])['getDataRange'](),{startRow:_0x1788b4,endRow:_0x5eba85}=_0x14a825,{startRow:_0x25e5c7,endRow:_0x4e092e}=_0x4e86b6[_0x14a498(0x126)][_0x14a498(0x114)],{step:_0x5977f6,length:_0x4c227a}=_0x1d0168(_0x2690fd(_0x4e86b6[_0x14a498(0x126)][_0x14a498(0x114)]),_0x2690fd(_0x14a825));_0x5977f6>0x0&&_0x4c227a===0x0&&ft(_0x13135f['params']['from']['value'],_0x1788b4,_0x5eba85-_0x1788b4+0x1,_0x5977f6),_0x5977f6===0x0&&_0x4c227a>0x0&&ft(_0x13135f[_0x14a498(0x126)][_0x14a498(0x16d)]['value'],_0x25e5c7,_0x5eba85-_0x25e5c7+0x1,_0x4e092e-_0x25e5c7+0x1);}if(_0x4e86b6[_0x14a498(0x126)][_0x14a498(0x18c)]===_0x4b7ffb[_0x14a498(0x126)]['to'][_0x14a498(0x18c)]){const _0x1e4c50=new _0x33d61f(_0x4b7ffb[_0x14a498(0x126)]['to'][_0x14a498(0x18f)])['getDataRange'](),{startRow:_0x508d37,endRow:_0x58ff42}=_0x1e4c50,{startRow:_0x2683e1,endRow:_0x4a9862}=_0x4e86b6['params'][_0x14a498(0x114)],{step:_0x288447,length:_0x5c18a3}=_0x1d0168(_0x2690fd(_0x4e86b6['params']['range']),_0x2690fd(_0x1e4c50));_0x288447>0x0&&_0x5c18a3===0x0&&ft(_0x13135f[_0x14a498(0x126)]['to'][_0x14a498(0x18f)],_0x508d37,_0x58ff42-_0x508d37+0x1,_0x288447),_0x288447===0x0&&_0x5c18a3>0x0&&ft(_0x13135f['params']['to']['value'],_0x2683e1,_0x58ff42-_0x2683e1+0x1,_0x4a9862-_0x2683e1+0x1);}return{'m1Prime':_0x179f41,'m2Prime':_0x13135f};}},Pa={'m1':_0x5694af['id'],'m2':_0x79cdbf['id'],'handler'(_0x349644,_0x241161){const _0x396808=_0x59a5e,_0x3cd023={'m1Prime':_0x349644,'m2Prime':_0x241161};if(_0x349644[_0x396808(0x126)]['unitId']!==_0x241161[_0x396808(0x126)][_0x396808(0x10f)]||_0x349644[_0x396808(0x126)][_0x396808(0x18c)]!==_0x241161[_0x396808(0x126)][_0x396808(0x18c)])return _0x3cd023;const _0x1cc3e1=_0x589265[_0x396808(0x1cb)](_0x349644),_0x11bf2e=_0x589265[_0x396808(0x1cb)](_0x241161),_0x302ca0=_0x241161[_0x396808(0x126)][_0x396808(0x1ad)],_0x48fd83=_0x241161['params'][_0x396808(0x1d3)];if(_0x349644[_0x396808(0x126)][_0x396808(0x114)][_0x396808(0xcd)]>_0x302ca0[_0x396808(0xcd)]&&_0x349644[_0x396808(0x126)][_0x396808(0x114)][_0x396808(0xcd)]<=_0x302ca0['endRow']||_0x349644['params'][_0x396808(0x114)][_0x396808(0xcd)]>_0x48fd83[_0x396808(0xcd)]&&_0x349644['params'][_0x396808(0x114)]['startRow']<=_0x48fd83[_0x396808(0xf0)])return{'error':new Error(_0x396808(0xeb))};const _0x5ee19c=_0x1d0168(h(_0x2690fd(_0x349644[_0x396808(0x126)]['range'])),h(_0x2690fd(_0x302ca0))),_0xc83eb1=_0x1d0168(h(_0x2690fd(_0x349644[_0x396808(0x126)][_0x396808(0x114)])),h(_0x2690fd(_0x48fd83)));if(_0x11bf2e['params'][_0x396808(0x1ad)][_0x396808(0xcd)]+=_0x5ee19c['step'],_0x11bf2e[_0x396808(0x126)]['sourceRange'][_0x396808(0xf0)]+=_0x5ee19c[_0x396808(0xcc)]+(_0x5ee19c[_0x396808(0x210)]||0x0),_0x11bf2e[_0x396808(0x126)][_0x396808(0x1d3)][_0x396808(0xcd)]+=_0xc83eb1['step'],_0x11bf2e['params'][_0x396808(0x1d3)]['endRow']+=_0xc83eb1['step']+(_0xc83eb1['length']||0x0),_0x302ca0[_0x396808(0xcd)]>=_0x349644['params']['range'][_0x396808(0xcd)]&&_0x48fd83[_0x396808(0xcd)]<_0x349644[_0x396808(0x126)][_0x396808(0x114)][_0x396808(0xcd)]){const _0x1d63e3=_0x48fd83[_0x396808(0xf0)]-_0x48fd83[_0x396808(0xcd)]+0x1;_0x1cc3e1[_0x396808(0x126)][_0x396808(0x114)]['startRow']+=_0x1d63e3,_0x1cc3e1[_0x396808(0x126)][_0x396808(0x114)]['endRow']+=_0x1d63e3;}else{if(_0x302ca0[_0x396808(0xf0)]<_0x349644[_0x396808(0x126)][_0x396808(0x114)][_0x396808(0xcd)]&&_0x48fd83[_0x396808(0xcd)]>=_0x349644[_0x396808(0x126)]['range']['startRow']){const _0x2f80ea=_0x302ca0[_0x396808(0xf0)]-_0x302ca0['startRow']+0x1;_0x1cc3e1[_0x396808(0x126)]['range']['startRow']-=_0x2f80ea,_0x1cc3e1[_0x396808(0x126)][_0x396808(0x114)][_0x396808(0xf0)]-=_0x2f80ea;}}return{'m1Prime':_0x1cc3e1,'m2Prime':_0x11bf2e};}},Ua={'m1':_0x5694af['id'],'m2':_0x5775f8['id'],'handler'(_0x4548c3,_0x21167c){const _0x407544=_0x59a5e,_0x26f01a={'m1Prime':_0x4548c3,'m2Prime':_0x21167c};if(_0x4548c3[_0x407544(0x126)][_0x407544(0x10f)]!==_0x21167c[_0x407544(0x126)][_0x407544(0x10f)]||_0x4548c3[_0x407544(0x126)]['subUnitId']!==_0x21167c[_0x407544(0x126)]['subUnitId'])return _0x26f01a;const _0x55f261=_0x589265[_0x407544(0x1cb)](_0x4548c3),_0xffc9d2=_0x589265[_0x407544(0x1cb)](_0x21167c),{ranges:_0x5ec3f6}=_0xffc9d2[_0x407544(0x126)];return _0x5ec3f6['some'](_0x4aa7db=>{const _0x50eb0f=_0x407544,_0x40fc65=_0x1d0168(h(_0x2690fd(_0x4548c3[_0x50eb0f(0x126)][_0x50eb0f(0x114)])),h(_0x2690fd(_0x4aa7db)));return _0x40fc65[_0x50eb0f(0x210)]!==0x0?!0x0:(_0x4aa7db['startRow']+=_0x40fc65[_0x50eb0f(0xcc)],_0x4aa7db[_0x50eb0f(0xf0)]+=_0x40fc65[_0x50eb0f(0xcc)],!0x1);})?{'error':new Error(_0x407544(0x106))}:{'m1Prime':_0x55f261,'m2Prime':_0xffc9d2};}},ba={'m1':_0x5694af['id'],'m2':_0x361204['id'],'handler'(_0x4ab59a,_0x222760){const _0x225c41=_0x59a5e,_0x3fe720={'m1Prime':_0x4ab59a,'m2Prime':_0x222760};if(_0x4ab59a[_0x225c41(0x126)]['unitId']!==_0x222760[_0x225c41(0x126)][_0x225c41(0x10f)]||_0x4ab59a['params']['subUnitId']!==_0x222760['params'][_0x225c41(0x18c)])return _0x3fe720;const _0x49b2d4=_0x589265[_0x225c41(0x1cb)](_0x4ab59a),_0x1eab38=_0x589265['deepClone'](_0x222760);if(_0x4ab59a[_0x225c41(0x126)]['range']['startRow']<=_0x222760[_0x225c41(0x126)]['range'][_0x225c41(0xf0)]&&_0x4ab59a[_0x225c41(0x126)][_0x225c41(0x114)][_0x225c41(0xcd)]>_0x222760[_0x225c41(0x126)][_0x225c41(0x114)][_0x225c41(0xcd)])return{'error':new Error('insert\x20row\x20is\x20conflict\x20with\x20remove\x20row')};const _0x36b8b4=_0x1d0168(h(_0x2690fd(_0x4ab59a[_0x225c41(0x126)][_0x225c41(0x114)])),h(_0x2690fd(_0x222760[_0x225c41(0x126)][_0x225c41(0x114)])));_0x36b8b4?(_0x1eab38[_0x225c41(0x126)][_0x225c41(0x114)]['startRow']+=_0x36b8b4[_0x225c41(0xcc)],_0x1eab38['params'][_0x225c41(0x114)][_0x225c41(0xf0)]+=_0x36b8b4[_0x225c41(0xcc)]+(_0x36b8b4['length']||0x0)):_0x1eab38['id']=_0x44f38d['id'];const _0x378019=_0x1465b8(h(_0x2690fd(_0x222760[_0x225c41(0x126)][_0x225c41(0x114)])),h(_0x2690fd(_0x4ab59a['params']['range'])));return _0x378019&&(_0x49b2d4[_0x225c41(0x126)][_0x225c41(0x114)][_0x225c41(0xcd)]+=_0x378019[_0x225c41(0xcc)],_0x49b2d4[_0x225c41(0x126)][_0x225c41(0x114)][_0x225c41(0xf0)]+=_0x378019[_0x225c41(0xcc)]+(_0x378019[_0x225c41(0x210)]||0x0)),{'m1Prime':_0x49b2d4,'m2Prime':_0x1eab38};}},Ma={'m1':_0x5694af['id'],'m2':_0x49900b['id'],'handler'(_0x1ae977,_0x221a91){const _0x4908e3=_0x59a5e,_0x3aa496=_0x589265[_0x4908e3(0x1cb)](_0x1ae977),_0x46dde8=_0x589265[_0x4908e3(0x1cb)](_0x221a91);if(_0x1ae977[_0x4908e3(0x126)][_0x4908e3(0x10f)]!==_0x221a91[_0x4908e3(0x126)]['unitId']||_0x1ae977[_0x4908e3(0x126)][_0x4908e3(0x18c)]!==_0x221a91['params'][_0x4908e3(0x18c)])return{'m1Prime':_0x3aa496,'m2Prime':_0x46dde8};const _0x2cdf93=_0x46dde8[_0x4908e3(0x126)][_0x4908e3(0x238)][_0x4908e3(0xea)](_0x5c417a=>{const _0x278776=_0x4908e3,_0x2c8a60=_0x3aa496[_0x278776(0x126)][_0x278776(0x114)],_0x218cf0=_0x2c8a60['endRow']-_0x2c8a60[_0x278776(0xcd)]+0x1;return _0x2c8a60[_0x278776(0xcd)]<=_0x5c417a['startRow']?{..._0x5c417a,'startRow':_0x5c417a['startRow']+_0x218cf0,'endRow':_0x5c417a[_0x278776(0xf0)]+_0x218cf0}:_0x2c8a60[_0x278776(0xcd)]>_0x5c417a[_0x278776(0xcd)]&&_0x2c8a60[_0x278776(0xcd)]<=_0x5c417a['endRow']?{..._0x5c417a,'endRow':_0x5c417a['endRow']+_0x218cf0}:{..._0x5c417a};});return _0x46dde8[_0x4908e3(0x126)]['ranges']=_0x2cdf93,{'m1Prime':_0x3aa496,'m2Prime':_0x46dde8};}},va={'m1':_0x5694af['id'],'m2':_0x2a2d75['id'],'handler'(_0x2f0f36,_0x2460ba){const _0x5e7c41=_0x59a5e,_0xb746a7={'m1Prime':_0x2f0f36,'m2Prime':_0x2460ba};if(_0x2f0f36['params'][_0x5e7c41(0x10f)]!==_0x2460ba['params'][_0x5e7c41(0x10f)]||_0x2f0f36[_0x5e7c41(0x126)][_0x5e7c41(0x18c)]!==_0x2460ba[_0x5e7c41(0x126)][_0x5e7c41(0x18c)])return _0xb746a7;const _0x1f2b99=_0x589265[_0x5e7c41(0x1cb)](_0x2460ba),_0x2880da=_0x1d0168(h(_0x2690fd(_0x2f0f36[_0x5e7c41(0x126)][_0x5e7c41(0x114)])),h(_0x2690fd(_0x2460ba[_0x5e7c41(0x126)]['range'])));_0x1f2b99[_0x5e7c41(0x126)][_0x5e7c41(0x114)]['startRow']+=_0x2880da[_0x5e7c41(0xcc)],_0x1f2b99[_0x5e7c41(0x126)][_0x5e7c41(0x114)][_0x5e7c41(0xf0)]+=_0x2880da['step']+(_0x2880da[_0x5e7c41(0x210)]||0x0);const _0xfc16ab=_0x2f0f36[_0x5e7c41(0x126)][_0x5e7c41(0x114)][_0x5e7c41(0xcd)],_0x2d1570=_0x2f0f36['params'][_0x5e7c41(0x114)][_0x5e7c41(0xf0)]-_0x2f0f36[_0x5e7c41(0x126)]['range'][_0x5e7c41(0xcd)]+0x1,_0x53fbf3={};for(const _0x2d540d in _0x2460ba[_0x5e7c41(0x126)]['order']){let _0x227dac=Number(_0x2d540d),_0x2f5fc4=_0x2460ba[_0x5e7c41(0x126)][_0x5e7c41(0x135)][_0x2d540d];_0x227dac=Le(_0xfc16ab,_0x2d1570,_0x227dac),_0x2f5fc4=Le(_0xfc16ab,_0x2d1570,_0x2f5fc4),_0x53fbf3[_0x227dac]=_0x2f5fc4;}return _0x1f2b99[_0x5e7c41(0x126)][_0x5e7c41(0x135)]=_0x53fbf3,{'m1Prime':_0x2f0f36,'m2Prime':_0x1f2b99};}},Le=(_0x247722,_0xa90256,_0x2fb051)=>_0x2fb051>=_0x247722?_0x2fb051+_0xa90256:_0x2fb051,Ea={'m1':_0x5694af['id'],'m2':_0x432da8['id'],'handler'(_0x4f26f2,_0x7d2657){const _0x1f67fd=_0x59a5e,_0x36381d={'m1Prime':_0x4f26f2,'m2Prime':_0x7d2657};if(_0x4f26f2[_0x1f67fd(0x126)][_0x1f67fd(0x10f)]!==_0x7d2657[_0x1f67fd(0x126)][_0x1f67fd(0x10f)]||_0x4f26f2[_0x1f67fd(0x126)][_0x1f67fd(0x18c)]!==_0x7d2657[_0x1f67fd(0x126)][_0x1f67fd(0x18c)])return _0x36381d;const _0x4d797f=[_0x589265[_0x1f67fd(0x1cb)](_0x4f26f2)],_0x20a2e1=_0x589265[_0x1f67fd(0x1cb)](_0x7d2657),{values:_0x233899}=_0x20a2e1[_0x1f67fd(0x126)],_0x2b8e0b=[];let _0x299601=!0x1;for(const _0x7367e0 in _0x233899){const _0xa8cd5=_0x233899[_0x7367e0];if(_0x2b8e0b['push'](..._0xa8cd5['ranges']),_0xa8cd5['ranges']['some'](_0x1104a8=>{const _0x3a5bd9=_0x1f67fd,_0x392d54=_0x1d0168(h(_0x2690fd(_0x4f26f2['params'][_0x3a5bd9(0x114)])),_0x2690fd(h(_0x1104a8)));return _0x392d54[_0x3a5bd9(0x210)]!==0x0?!0x0:(_0x392d54[_0x3a5bd9(0xcc)]!==0x0&&(_0x299601=!0x0),_0x1104a8['startRow']+=_0x392d54[_0x3a5bd9(0xcc)],_0x1104a8['endRow']+=_0x392d54['step'],!0x1);}))return{'error':new Error('insert\x20row\x20is\x20conflict\x20with\x20set\x20numfmt')};}if(_0x299601){const _0x175a01={'id':_0x5775f8['id'],'params':{'unitId':_0x7d2657[_0x1f67fd(0x126)][_0x1f67fd(0x10f)],'subUnitId':_0x7d2657[_0x1f67fd(0x126)][_0x1f67fd(0x18c)],'ranges':_0x2b8e0b}};_0x4d797f[_0x1f67fd(0x112)](_0x175a01,_0x20a2e1);}return{'m1Prime':_0x4d797f,'m2Prime':_0x20a2e1};}},Sa={'m1':_0x5694af['id'],'m2':_0x36f561['id'],'handler'(_0x29aa32,_0x6181d4){const _0x356395=_0x59a5e,_0x5f48d1={'m1Prime':_0x29aa32,'m2Prime':_0x6181d4};if(_0x29aa32[_0x356395(0x126)]['unitId']!==_0x6181d4[_0x356395(0x126)][_0x356395(0x10f)]||_0x29aa32[_0x356395(0x126)][_0x356395(0x18c)]!==_0x6181d4[_0x356395(0x126)][_0x356395(0x18c)])return _0x5f48d1;const _0xc0a0cf=[_0x589265[_0x356395(0x1cb)](_0x29aa32)],_0x5195b2=_0x589265['deepClone'](_0x6181d4),_0x58816f=new _0x33d61f(_0x5195b2[_0x356395(0x126)][_0x356395(0x153)]),_0x285e02=_0x58816f['getDataRange'](),_0x4dbf87=_0x29aa32[_0x356395(0x126)][_0x356395(0x114)],_0x37b81e=_0x4dbf87[_0x356395(0xf0)]-_0x4dbf87[_0x356395(0xcd)]+0x1;if(_0x5195b2[_0x356395(0x126)][_0x356395(0x153)]&&_0x4dbf87[_0x356395(0xcd)]<=_0x285e02['endRow']){const _0x3c1b8d=Math['max'](_0x285e02[_0x356395(0xcd)],_0x4dbf87['startRow']);ft(_0x5195b2[_0x356395(0x126)][_0x356395(0x153)],_0x3c1b8d,_0x285e02[_0x356395(0xf0)]-_0x3c1b8d+0x1,_0x37b81e);}const _0x3f5804=new _0x33d61f();let _0x1df7b1=!0x1;if(_0x58816f[_0x356395(0x1d9)]((_0x52fdbf,_0x1d54a6,_0x49607c)=>{const _0x1db68f=_0x356395;if(_0x49607c&&_0x49607c['f']){const _0x309f24=_0x49607c['f'];let _0x136374=!0x1;const _0x48c1d1=dt(_0x29aa32[_0x1db68f(0x126)][_0x1db68f(0x10f)],_0x29aa32[_0x1db68f(0x126)][_0x1db68f(0x18c)],_0x309f24,_0x316353=>{const _0xbbe8a1=_0x1db68f,_0x723a0b=_0x1d0168(h(_0x2690fd(_0x29aa32['params'][_0xbbe8a1(0x114)])),h(_0x2690fd(_0x316353)));return(_0x723a0b[_0xbbe8a1(0xcc)]!==0x0||_0x723a0b[_0xbbe8a1(0x210)]!==0x0)&&(_0x136374=!0x0,_0x316353[_0xbbe8a1(0xcd)]+=_0x723a0b['step'],_0x316353[_0xbbe8a1(0xf0)]+=_0x723a0b[_0xbbe8a1(0xcc)]+_0x723a0b[_0xbbe8a1(0x210)]),_0x316353;});_0x136374&&(_0x1df7b1=!0x0,_0x49607c['f']=_0x48c1d1,_0x3f5804[_0x1db68f(0xef)](_0x52fdbf,_0x1d54a6,{..._0x49607c}));}}),_0x1df7b1){const _0x18c419={'id':_0x36f561['id'],'params':{'unitId':_0x6181d4[_0x356395(0x126)][_0x356395(0x10f)],'subUnitId':_0x6181d4[_0x356395(0x126)][_0x356395(0x18c)],'cellValue':_0x3f5804[_0x356395(0x131)]()}};_0xc0a0cf[_0x356395(0x112)](_0x18c419);}return{'m1Prime':_0xc0a0cf,'m2Prime':_0x5195b2};}},Wa={'m1':_0x5694af['id'],'m2':_0x1932a5['id'],'handler'(_0x274dcf,_0x1b1e6c){const _0x16a1b5=_0x59a5e,_0x38a0f6={'m1Prime':_0x274dcf,'m2Prime':_0x1b1e6c};if(_0x274dcf[_0x16a1b5(0x126)][_0x16a1b5(0x10f)]!==_0x1b1e6c[_0x16a1b5(0x126)][_0x16a1b5(0x10f)]||_0x274dcf['params']['subUnitId']!==_0x1b1e6c['params'][_0x16a1b5(0x18c)])return _0x38a0f6;const _0x231ce2=_0x589265['deepClone'](_0x274dcf),_0x1a3a29=_0x589265[_0x16a1b5(0x1cb)](_0x1b1e6c),{rowData:_0x31d592}=_0x1a3a29[_0x16a1b5(0x126)];for(let _0x2c7dd1=_0x274dcf[_0x16a1b5(0x126)][_0x16a1b5(0x114)]['startRow'];_0x2c7dd1<=_0x274dcf[_0x16a1b5(0x126)]['range'][_0x16a1b5(0xf0)];_0x2c7dd1++)_0x51e3a7(_0x2c7dd1,void 0x0,_0x31d592);return{'m1Prime':_0x231ce2,'m2Prime':_0x1a3a29};}},Va={'m1':_0x5694af['id'],'m2':_0xe65e5c['id'],'handler'(_0x5cdb44,_0x4ae202){const _0x45d1fd=_0x59a5e,_0x3c0217={'m1Prime':_0x5cdb44,'m2Prime':_0x4ae202};if(_0x5cdb44[_0x45d1fd(0x126)][_0x45d1fd(0x10f)]!==_0x4ae202[_0x45d1fd(0x126)]['unitId']||_0x5cdb44[_0x45d1fd(0x126)][_0x45d1fd(0x18c)]!==_0x4ae202['params'][_0x45d1fd(0x18c)])return _0x3c0217;const _0x6d1cb2=_0x589265[_0x45d1fd(0x1cb)](_0x5cdb44),_0x22763a=_0x589265[_0x45d1fd(0x1cb)](_0x4ae202),{ranges:_0xeb3b75}=_0x22763a[_0x45d1fd(0x126)];return _0xeb3b75[_0x45d1fd(0x221)](_0x49456b=>{const _0xb3358d=_0x45d1fd,_0x31cc71=_0x1d0168(h(_0x2690fd(_0x5cdb44[_0xb3358d(0x126)][_0xb3358d(0x114)])),h(_0x2690fd(_0x49456b)));return _0x31cc71[_0xb3358d(0x210)]!==0x0?!0x0:(_0x49456b[_0xb3358d(0xcd)]+=_0x31cc71[_0xb3358d(0xcc)],_0x49456b[_0xb3358d(0xf0)]+=_0x31cc71[_0xb3358d(0xcc)],!0x1);})?{'error':new Error(_0x45d1fd(0x11e))}:{'m1Prime':_0x6d1cb2,'m2Prime':_0x22763a};}},_a={'m1':_0x5694af['id'],'m2':_0x19e155['id'],'handler'(_0xdbcbe4,_0x3cae16){const _0x458897=_0x59a5e,_0x124def={'m1Prime':_0xdbcbe4,'m2Prime':_0x3cae16};if(_0xdbcbe4[_0x458897(0x126)][_0x458897(0x10f)]!==_0x3cae16[_0x458897(0x126)][_0x458897(0x10f)]||_0xdbcbe4[_0x458897(0x126)][_0x458897(0x18c)]!==_0x3cae16['params']['subUnitId'])return _0x124def;const _0x2e23df=_0x589265[_0x458897(0x1cb)](_0xdbcbe4),_0x37ca48=_0x589265[_0x458897(0x1cb)](_0x3cae16),{ranges:_0x4a4c01}=_0x37ca48[_0x458897(0x126)];return _0x4a4c01[_0x458897(0x221)](_0x12b037=>{const _0x443316=_0x458897,_0x615d5a=_0x1d0168(h(_0x2690fd(_0xdbcbe4['params'][_0x443316(0x114)])),h(_0x2690fd(_0x12b037)));return _0x615d5a['length']!==0x0?!0x0:(_0x12b037['startRow']+=_0x615d5a[_0x443316(0xcc)],_0x12b037[_0x443316(0xf0)]+=_0x615d5a['step'],!0x1);})?{'error':new Error(_0x458897(0x1b9))}:{'m1Prime':_0x2e23df,'m2Prime':_0x37ca48};}},Oa={'m1':_0x5694af['id'],'m2':_0x53e0ba['id'],'handler'(_0x5aa63b,_0x4cbb7d){const _0x5bac35=_0x59a5e,_0x4c33e0={'m1Prime':[],'m2Prime':[]};if(_0x5aa63b[_0x5bac35(0x126)][_0x5bac35(0x10f)]!==_0x4cbb7d[_0x5bac35(0x126)][_0x5bac35(0x10f)]||_0x5aa63b['params'][_0x5bac35(0x18c)]!==_0x4cbb7d[_0x5bac35(0x126)][_0x5bac35(0x18c)])return _0x4c33e0;const _0x14ebc7=_0x589265['deepClone'](_0x4cbb7d);let _0x4f591a=!0x1;return _0x14ebc7[_0x5bac35(0x126)][_0x5bac35(0x14a)][_0x5bac35(0x233)](_0x414a89=>{const _0x1a4c3c=_0x5bac35,{range:_0x2e8f0f,primary:_0x4ca30f}=_0x414a89,_0x28db20=_0x1d0168(h(_0x2690fd(_0x5aa63b[_0x1a4c3c(0x126)]['range'])),h(_0x2690fd(_0x2e8f0f)));if(_0x28db20[_0x1a4c3c(0x210)]||_0x28db20[_0x1a4c3c(0xcc)]){if(_0x2e8f0f['startRow']+=_0x28db20['step'],_0x2e8f0f[_0x1a4c3c(0xf0)]+=_0x28db20[_0x1a4c3c(0xcc)]+(_0x28db20[_0x1a4c3c(0x210)]||0x0),_0x4ca30f){const _0x520b6e=_0x1d0168(h(_0x2690fd(_0x5aa63b[_0x1a4c3c(0x126)][_0x1a4c3c(0x114)])),h(_0x2690fd(_0x4ca30f)));(_0x520b6e[_0x1a4c3c(0x210)]||_0x520b6e['step'])&&(_0x4ca30f[_0x1a4c3c(0xcd)]+=_0x520b6e['step'],_0x4ca30f[_0x1a4c3c(0xf0)]+=_0x520b6e[_0x1a4c3c(0xcc)],_0x4ca30f[_0x1a4c3c(0x14c)]+=_0x520b6e[_0x1a4c3c(0xcc)]);}_0x4f591a=!0x0;}}),_0x4f591a&&_0x4c33e0[_0x5bac35(0x111)][_0x5bac35(0x112)](_0x14ebc7),_0x4c33e0;}},ya={'m1':_0x5694af['id'],'m2':_0xa0b953['id'],'handler'(_0x412860,_0x335248){const _0x3c4cb4=_0x59a5e,_0x55d387={'m1Prime':[_0x412860],'m2Prime':[_0x335248]};if(_0x412860[_0x3c4cb4(0x126)][_0x3c4cb4(0x10f)]!==_0x335248[_0x3c4cb4(0x126)][_0x3c4cb4(0x10f)]||_0x412860[_0x3c4cb4(0x126)][_0x3c4cb4(0x18c)]!==_0x335248['params'][_0x3c4cb4(0x18c)])return _0x55d387;const _0x4a4c9b=_0x589265['deepClone'](_0x412860),_0x20d763=_0x589265['deepClone'](_0x335248),_0x120cd4=be({'start':_0x412860[_0x3c4cb4(0x126)][_0x3c4cb4(0x114)]['startRow'],'end':_0x412860[_0x3c4cb4(0x126)][_0x3c4cb4(0x114)][_0x3c4cb4(0xf0)]},{'start':_0x335248[_0x3c4cb4(0x126)]['range'][_0x3c4cb4(0xcd)],'end':_0x335248['params']['range'][_0x3c4cb4(0xf0)]});return _0x20d763['params'][_0x3c4cb4(0x114)][_0x3c4cb4(0xcd)]===_0x120cd4[_0x3c4cb4(0x13a)]&&_0x20d763[_0x3c4cb4(0x126)][_0x3c4cb4(0x114)][_0x3c4cb4(0xf0)]===_0x120cd4[_0x3c4cb4(0x103)]?_0x55d387:(_0x20d763[_0x3c4cb4(0x126)][_0x3c4cb4(0x114)][_0x3c4cb4(0xcd)]=_0x120cd4[_0x3c4cb4(0x13a)],_0x20d763[_0x3c4cb4(0x126)][_0x3c4cb4(0x114)]['endRow']=_0x120cd4[_0x3c4cb4(0x103)],{'m1Prime':[_0x20d763,_0x4a4c9b],'m2Prime':[_0x20d763]});}},Na={'m1':_0x5694af['id'],'m2':_0x264207['id'],'handler'(_0x1aa80e,_0x38bce6){const _0x1e06ed=_0x59a5e,_0x1b0c6c={'m1Prime':_0x1aa80e,'m2Prime':_0x38bce6};if(_0x1aa80e['params'][_0x1e06ed(0x10f)]!==_0x38bce6['params'][_0x1e06ed(0x10f)]||_0x1aa80e[_0x1e06ed(0x126)]['subUnitId']!==_0x38bce6['params'][_0x1e06ed(0x18c)])return _0x1b0c6c;const _0x2011c1=_0x589265[_0x1e06ed(0x1cb)](_0x1aa80e),_0x36a199=_0x589265['deepClone'](_0x38bce6),{rowsAutoHeightInfo:_0x4e33bf}=_0x36a199['params'];return _0x4e33bf[_0x1e06ed(0x221)](_0x29c8db=>{const _0x4e1852=_0x1e06ed,_0x2b2b95={'startRow':_0x29c8db[_0x4e1852(0x204)],'endRow':_0x29c8db['row'],'startColumn':0x0,'endColumn':0x0},_0x1d4b67=_0x1d0168(h(_0x2690fd(_0x1aa80e[_0x4e1852(0x126)]['range'])),_0x2690fd(_0x2b2b95));return _0x1d4b67['length']!==0x0?!0x0:(_0x29c8db[_0x4e1852(0x204)]+=_0x1d4b67[_0x4e1852(0xcc)],!0x1);})?{'error':new Error(_0x1e06ed(0xed))}:{'m1Prime':_0x2011c1,'m2Prime':_0x36a199};}},Da={'m1':_0x5694af['id'],'m2':_0x47c35c['id'],'handler'(_0x4b888a,_0x6b9015){const _0x15e191=_0x59a5e,_0x346b29={'m1Prime':_0x4b888a,'m2Prime':_0x6b9015};if(_0x4b888a[_0x15e191(0x126)]['unitId']!==_0x6b9015[_0x15e191(0x126)][_0x15e191(0x10f)]||_0x4b888a[_0x15e191(0x126)]['subUnitId']!==_0x6b9015[_0x15e191(0x126)][_0x15e191(0x18c)])return _0x346b29;const _0x34ea13=_0x589265[_0x15e191(0x1cb)](_0x4b888a),_0x5634d1=_0x589265[_0x15e191(0x1cb)](_0x6b9015),{ranges:_0x287802,rowHeight:_0x4d184c}=_0x5634d1[_0x15e191(0x126)];if(_0x287802['some'](_0x9d2052=>{const _0x1e4eb6=_0x15e191,_0x15d233=_0x1d0168(h(_0x2690fd(_0x4b888a[_0x1e4eb6(0x126)][_0x1e4eb6(0x114)])),_0x2690fd(_0x9d2052));return _0x15d233[_0x1e4eb6(0x210)]!==0x0?!0x0:(_0x9d2052['startRow']+=_0x15d233[_0x1e4eb6(0xcc)],_0x9d2052[_0x1e4eb6(0xf0)]+=_0x15d233[_0x1e4eb6(0xcc)],!0x1);}))return{'error':new Error(_0x15e191(0x163))};if(typeof _0x4d184c!=_0x15e191(0x1e1)){for(let _0x2fb7ab=_0x4b888a['params']['range'][_0x15e191(0xcd)];_0x2fb7ab<=_0x4b888a[_0x15e191(0x126)][_0x15e191(0x114)][_0x15e191(0xf0)];_0x2fb7ab++)_0x51e3a7(_0x2fb7ab,void 0x0,_0x4d184c);}return{'m1Prime':_0x34ea13,'m2Prime':_0x5634d1};}},Aa={'m1':_0x5694af['id'],'m2':_0x5392a6['id'],'handler'(_0xcbe366,_0x1a6625){const _0x3eb653=_0x59a5e,_0x1274f4={'m1Prime':_0xcbe366,'m2Prime':_0x1a6625};if(_0xcbe366[_0x3eb653(0x126)][_0x3eb653(0x10f)]!==_0x1a6625['params'][_0x3eb653(0x10f)]||_0xcbe366[_0x3eb653(0x126)][_0x3eb653(0x18c)]!==_0x1a6625[_0x3eb653(0x126)][_0x3eb653(0x18c)])return _0x1274f4;const _0x2bdc5d=_0x589265[_0x3eb653(0x1cb)](_0xcbe366),_0x573d05=_0x589265['deepClone'](_0x1a6625),{ranges:_0xb13695,autoHeightInfo:_0x24a517}=_0x573d05['params'];if(_0xb13695[_0x3eb653(0x221)](_0x4ef3dc=>{const _0x4f5ecd=_0x3eb653,_0x3ac441=_0x1d0168(h(_0x2690fd(_0xcbe366[_0x4f5ecd(0x126)]['range'])),_0x2690fd(_0x4ef3dc));return _0x3ac441['length']!==0x0?!0x0:(_0x4ef3dc[_0x4f5ecd(0xcd)]+=_0x3ac441[_0x4f5ecd(0xcc)],_0x4ef3dc['endRow']+=_0x3ac441[_0x4f5ecd(0xcc)],!0x1);}))return{'error':new Error(_0x3eb653(0x1cf))};if(typeof _0x24a517!=_0x3eb653(0x1e1)){for(let _0x3c8cab=_0xcbe366[_0x3eb653(0x126)]['range']['startRow'];_0x3c8cab<=_0xcbe366[_0x3eb653(0x126)]['range'][_0x3eb653(0xf0)];_0x3c8cab++)_0x51e3a7(_0x3c8cab,void 0x0,_0x24a517);}return{'m1Prime':_0x2bdc5d,'m2Prime':_0x573d05};}},Ta={'m1':_0x5694af['id'],'m2':_0x164c55['id'],'handler':(_0x26583e,_0x4ace79)=>{const _0x338fd2=_0x59a5e,_0x17075a={'m1Prime':_0x26583e,'m2Prime':_0x4ace79};if(_0x26583e[_0x338fd2(0x126)][_0x338fd2(0x10f)]!==_0x4ace79[_0x338fd2(0x126)][_0x338fd2(0x10f)]||_0x26583e[_0x338fd2(0x126)][_0x338fd2(0x18c)]!==_0x4ace79[_0x338fd2(0x126)]['subUnitId'])return _0x17075a;const _0x46a67a={'id':_0x1cd52b['id'],'params':{'unitId':_0x26583e[_0x338fd2(0x126)][_0x338fd2(0x10f)],'subUnitId':_0x26583e[_0x338fd2(0x126)]['subUnitId'],'range':_0x26583e[_0x338fd2(0x126)]['range']}},_0x5c46bb=wt(_0x4ace79,_0x46a67a);return{'m1Prime':[_0x26583e,..._0x5c46bb],'m2Prime':[_0x4ace79,..._0x5c46bb]};}},La={'m1':_0x5694af['id'],'m2':_0x2bcc50['id'],'handler':(_0x386a71,_0x39f5d2)=>{const _0x210948=_0x59a5e,_0x14756e={'m1Prime':_0x386a71,'m2Prime':_0x39f5d2};if(_0x386a71[_0x210948(0x126)][_0x210948(0x10f)]!==_0x39f5d2[_0x210948(0x126)][_0x210948(0x10f)]||_0x39f5d2[_0x210948(0x126)][_0x210948(0x18c)]!==_0x386a71['params'][_0x210948(0x18c)])return _0x14756e;const _0x95c9cc={'id':_0x1cd52b['id'],'params':{'unitId':_0x386a71[_0x210948(0x126)]['unitId'],'subUnitId':_0x386a71[_0x210948(0x126)][_0x210948(0x18c)],'range':_0x386a71[_0x210948(0x126)][_0x210948(0x114)]}},_0x20e665=Ct(_0x39f5d2,_0x95c9cc);return{'m1Prime':[_0x386a71,..._0x20e665],'m2Prime':[_0x39f5d2,..._0x20e665]};}},ka={'m1':_0x4d7dbd['id'],'m2':_0x58b473['id'],'handler':(_0x53470d,_0x8a996c)=>{const _0x4efbdd=_0x59a5e,_0x51494e={'m1Prime':_0x53470d,'m2Prime':_0x8a996c};if(_0x53470d[_0x4efbdd(0x126)]['unitId']!==_0x8a996c['params']['unitId']||_0x53470d[_0x4efbdd(0x126)][_0x4efbdd(0x18c)]!==_0x8a996c[_0x4efbdd(0x126)][_0x4efbdd(0x18c)])return _0x51494e;const _0x3713b3={'id':_0x2d91e5['id'],'params':{'unitId':_0x53470d['params'][_0x4efbdd(0x10f)],'subUnitId':_0x53470d[_0x4efbdd(0x126)][_0x4efbdd(0x18c)],'fromRange':_0x53470d[_0x4efbdd(0x126)][_0x4efbdd(0x1ad)],'toRange':_0x53470d[_0x4efbdd(0x126)][_0x4efbdd(0x1d3)]}},_0x36345c=It(_0x8a996c,_0x3713b3);return{'m1Prime':[_0x53470d,..._0x36345c],'m2Prime':[_0x8a996c,..._0x36345c]};}},xa={'m1':_0x4d7dbd['id'],'m2':_0x223d91['id'],'handler'(_0x293d79,_0x54d9d5){const _0x235570=_0x59a5e,_0x18d074=ar[_0x235570(0x1ce)](_0x54d9d5,_0x293d79);return at(_0x18d074)?{'m1Prime':_0x18d074['m2Prime'],'m2Prime':_0x18d074[_0x235570(0x1da)]}:_0x18d074;}},Ha={'m1':_0x4d7dbd['id'],'m2':_0x4d7dbd['id'],'handler'(_0x43e019,_0x21558d){const _0x57f030=_0x59a5e,_0x4edfd0={'m1Prime':_0x43e019,'m2Prime':_0x21558d};if(_0x43e019[_0x57f030(0x126)][_0x57f030(0x10f)]!==_0x21558d['params'][_0x57f030(0x10f)]||_0x43e019['params']['subUnitId']!==_0x21558d[_0x57f030(0x126)][_0x57f030(0x18c)])return _0x4edfd0;const _0x2ce4ec=_0x589265[_0x57f030(0x1cb)](_0x43e019),_0x5a466e=_0x589265[_0x57f030(0x1cb)](_0x21558d),_0x2f902a=_0x21558d[_0x57f030(0x126)][_0x57f030(0x1ad)],_0x445259=_0x21558d[_0x57f030(0x126)]['targetRange'],_0x1e607f=_0x43e019[_0x57f030(0x126)][_0x57f030(0x1ad)],_0x67b8ae=_0x43e019['params'][_0x57f030(0x1d3)];if(_0x1e607f[_0x57f030(0x104)]>=_0x2f902a['startColumn']&&_0x1e607f[_0x57f030(0x11d)]<=_0x2f902a[_0x57f030(0x104)])return{'error':new Error(_0x57f030(0x203))};const _0x187409=_0x2a97ff({'start':_0x1e607f[_0x57f030(0x11d)],'end':_0x1e607f[_0x57f030(0x104)]},{'start':_0x67b8ae[_0x57f030(0x11d)],'end':_0x67b8ae['endColumn']},{'start':_0x2f902a['startColumn'],'end':_0x2f902a['endColumn']}),_0x2dc60a=_0x2a97ff({'start':_0x1e607f[_0x57f030(0x11d)],'end':_0x1e607f[_0x57f030(0x104)]},{'start':_0x67b8ae['startColumn'],'end':_0x67b8ae[_0x57f030(0x104)]},{'start':_0x445259[_0x57f030(0x11d)],'end':_0x445259[_0x57f030(0x104)]});_0x187409&&_0x2dc60a?(_0x5a466e[_0x57f030(0x126)][_0x57f030(0x1ad)][_0x57f030(0x11d)]+=_0x187409[_0x57f030(0xcc)],_0x5a466e[_0x57f030(0x126)][_0x57f030(0x1ad)]['endColumn']+=_0x187409[_0x57f030(0xcc)]+(_0x187409[_0x57f030(0x210)]||0x0),_0x5a466e[_0x57f030(0x126)]['targetRange'][_0x57f030(0x11d)]+=_0x2dc60a[_0x57f030(0xcc)],_0x5a466e[_0x57f030(0x126)][_0x57f030(0x1d3)]['endColumn']+=_0x2dc60a[_0x57f030(0xcc)]+(_0x2dc60a[_0x57f030(0x210)]||0x0)):_0x5a466e['id']=_0x44f38d['id'];const _0x94b75d=_0x2a97ff({'start':_0x2f902a[_0x57f030(0x11d)],'end':_0x2f902a['endColumn']},{'start':_0x445259[_0x57f030(0x11d)],'end':_0x445259[_0x57f030(0x104)]},{'start':_0x1e607f['startColumn'],'end':_0x1e607f[_0x57f030(0x104)]}),_0x113d73=_0x2a97ff({'start':_0x2f902a[_0x57f030(0x11d)],'end':_0x2f902a['endColumn']},{'start':_0x445259[_0x57f030(0x11d)],'end':_0x445259[_0x57f030(0x104)]},{'start':_0x67b8ae[_0x57f030(0x11d)],'end':_0x67b8ae[_0x57f030(0x104)]});return _0x94b75d&&_0x113d73?(_0x2ce4ec[_0x57f030(0x126)][_0x57f030(0x1ad)][_0x57f030(0x11d)]+=_0x94b75d[_0x57f030(0xcc)],_0x2ce4ec[_0x57f030(0x126)][_0x57f030(0x1ad)][_0x57f030(0x104)]+=_0x94b75d[_0x57f030(0xcc)]+(_0x94b75d['length']||0x0),_0x2ce4ec[_0x57f030(0x126)][_0x57f030(0x1d3)][_0x57f030(0x11d)]+=_0x113d73['step'],_0x2ce4ec['params'][_0x57f030(0x1d3)]['endColumn']+=_0x113d73[_0x57f030(0xcc)]+(_0x113d73[_0x57f030(0x210)]||0x0)):_0x2ce4ec['id']=_0x44f38d['id'],{'m1Prime':_0x2ce4ec,'m2Prime':_0x5a466e};}},Fa={'m1':_0x4d7dbd['id'],'m2':_0x442c2d['id'],'handler'(_0x146fec,_0xb781e){const _0x28080c=_0x59a5e,_0x3f7088={'m1Prime':_0x146fec,'m2Prime':_0xb781e};if(_0x146fec[_0x28080c(0x126)][_0x28080c(0x10f)]!==_0xb781e[_0x28080c(0x126)][_0x28080c(0x10f)]||_0x146fec[_0x28080c(0x126)][_0x28080c(0x18c)]!==_0xb781e[_0x28080c(0x126)][_0x28080c(0x16d)][_0x28080c(0x18c)]&&_0x146fec[_0x28080c(0x126)][_0x28080c(0x18c)]!==_0xb781e[_0x28080c(0x126)]['to'][_0x28080c(0x18c)])return _0x3f7088;const _0x4a639d=_0x589265[_0x28080c(0x1cb)](_0x146fec),_0x5ec07b=_0x589265[_0x28080c(0x1cb)](_0xb781e),_0x48ad13=_0x146fec[_0x28080c(0x126)][_0x28080c(0x1ad)],_0x119585=_0x146fec[_0x28080c(0x126)][_0x28080c(0x1d3)];if(_0x146fec[_0x28080c(0x126)][_0x28080c(0x18c)]===_0xb781e[_0x28080c(0x126)][_0x28080c(0x16d)][_0x28080c(0x18c)]){const _0x161208=new _0x33d61f(_0x5ec07b['params'][_0x28080c(0x16d)][_0x28080c(0x18f)]),_0x267715=_0x161208[_0x28080c(0x1a7)]();if(H({'start':_0x48ad13['startColumn'],'end':_0x48ad13[_0x28080c(0x104)]},{'start':_0x267715[_0x28080c(0x11d)],'end':_0x267715['endColumn']})||H({'start':_0x119585[_0x28080c(0x11d)],'end':_0x119585[_0x28080c(0x104)]},{'start':_0x267715[_0x28080c(0x11d)],'end':_0x267715[_0x28080c(0x104)]}))return{'error':new Error(_0x28080c(0x207))};const _0x3b1e88=_0x2a97ff({'start':_0x48ad13[_0x28080c(0x11d)],'end':_0x48ad13[_0x28080c(0x104)]},{'start':_0x119585[_0x28080c(0x11d)],'end':_0x119585['endColumn']},{'start':_0x267715[_0x28080c(0x11d)],'end':_0x267715[_0x28080c(0x104)]});if(_0x3b1e88['length']!==0x0)return{'error':new Error('move\x20col\x20is\x20conflict\x20with\x20move\x20range')};_0x3b1e88[_0x28080c(0xcc)]!==0x0&&_0x161208[_0x28080c(0x19f)](_0x48ad13[_0x28080c(0x11d)],_0x48ad13[_0x28080c(0x104)]-_0x48ad13[_0x28080c(0x11d)]+0x1,_0x119585[_0x28080c(0x11d)]),_0x5ec07b[_0x28080c(0x126)]['from']['value']=_0x161208[_0x28080c(0x131)]();}if(_0x146fec['params'][_0x28080c(0x18c)]===_0xb781e[_0x28080c(0x126)]['to'][_0x28080c(0x18c)]){const _0x35ab43=new _0x33d61f(_0x5ec07b[_0x28080c(0x126)]['to'][_0x28080c(0x18f)]),_0x1f872b=_0x35ab43[_0x28080c(0x1a7)]();if(H({'start':_0x48ad13[_0x28080c(0x11d)],'end':_0x48ad13['endColumn']},{'start':_0x1f872b[_0x28080c(0x11d)],'end':_0x1f872b[_0x28080c(0x104)]})||H({'start':_0x119585['startColumn'],'end':_0x119585[_0x28080c(0x104)]},{'start':_0x1f872b['startColumn'],'end':_0x1f872b[_0x28080c(0x104)]}))return{'error':new Error(_0x28080c(0x207))};const _0x1c4198=_0x2a97ff({'start':_0x48ad13[_0x28080c(0x11d)],'end':_0x48ad13[_0x28080c(0x104)]},{'start':_0x119585[_0x28080c(0x11d)],'end':_0x119585[_0x28080c(0x104)]},{'start':_0x1f872b[_0x28080c(0x11d)],'end':_0x1f872b[_0x28080c(0x104)]});if(_0x1c4198['length']!==0x0)return{'error':new Error(_0x28080c(0x207))};_0x1c4198[_0x28080c(0xcc)]!==0x0&&_0x35ab43[_0x28080c(0x19f)](_0x48ad13[_0x28080c(0x11d)],_0x48ad13[_0x28080c(0x104)]-_0x48ad13[_0x28080c(0x11d)]+0x1,_0x119585[_0x28080c(0x11d)]),_0x5ec07b[_0x28080c(0x126)]['to'][_0x28080c(0x18f)]=_0x35ab43[_0x28080c(0x131)]();}return{'m1Prime':_0x4a639d,'m2Prime':_0x5ec07b};}},Ba={'m1':_0x4d7dbd['id'],'m2':_0x5775f8['id'],'handler'(_0x466455,_0x55615a){const _0x19c590=_0x59a5e,_0x113dd2={'m1Prime':_0x466455,'m2Prime':_0x55615a};if(_0x466455[_0x19c590(0x126)]['unitId']!==_0x55615a[_0x19c590(0x126)][_0x19c590(0x10f)]||_0x466455['params'][_0x19c590(0x18c)]!==_0x55615a[_0x19c590(0x126)][_0x19c590(0x18c)])return _0x113dd2;const _0x3d0bde=_0x589265[_0x19c590(0x1cb)](_0x466455),_0x1cc6f7=_0x589265['deepClone'](_0x55615a),{sourceRange:_0x32c329,targetRange:_0x6a9cda}=_0x466455[_0x19c590(0x126)],_0x5191bb={'start':_0x32c329[_0x19c590(0x11d)],'end':_0x32c329[_0x19c590(0x104)]},_0x1068c7={'start':_0x6a9cda[_0x19c590(0x11d)],'end':_0x6a9cda[_0x19c590(0x104)]};return _0x1cc6f7[_0x19c590(0x126)][_0x19c590(0x238)][_0x19c590(0x221)](_0x236b56=>{const _0x50099a=_0x19c590,_0x3841a5={'start':_0x236b56[_0x50099a(0x11d)],'end':_0x236b56[_0x50099a(0x104)]},_0x6ac69b=H(_0x5191bb,_0x3841a5),_0x20648d=H(_0x1068c7,_0x3841a5);if(_0x6ac69b||_0x20648d)return!0x0;const _0x4b961d=_0x2a97ff(_0x5191bb,_0x1068c7,_0x3841a5);return _0x4b961d[_0x50099a(0x210)]!==0x0?!0x0:(_0x236b56[_0x50099a(0x11d)]+=_0x4b961d[_0x50099a(0xcc)],_0x236b56[_0x50099a(0x104)]+=_0x4b961d[_0x50099a(0xcc)],!0x1);})?{'error':new Error(_0x19c590(0x15b))}:{'m1Prime':_0x3d0bde,'m2Prime':_0x1cc6f7};}},Ga={'m1':_0x4d7dbd['id'],'m2':_0x49900b['id'],'handler'(_0x518584,_0xd892b7){const _0xe1b7e4=_0x59a5e,_0x41faa5=_0x589265[_0xe1b7e4(0x1cb)](_0x518584),_0x13d2b1=_0x589265[_0xe1b7e4(0x1cb)](_0xd892b7);if(_0x518584[_0xe1b7e4(0x126)]['unitId']!==_0xd892b7[_0xe1b7e4(0x126)][_0xe1b7e4(0x10f)]||_0x518584['params'][_0xe1b7e4(0x18c)]!==_0xd892b7[_0xe1b7e4(0x126)]['subUnitId'])return{'m1Prime':_0x41faa5,'m2Prime':_0x13d2b1};const _0x46599e=_0x13d2b1[_0xe1b7e4(0x126)][_0xe1b7e4(0x238)][_0xe1b7e4(0x247)]((_0x32e79c,_0xc40b13)=>{const _0x408c0c=_0xe1b7e4,{sourceRange:_0x1dbed3,targetRange:_0x3d15de}=_0x518584[_0x408c0c(0x126)],_0x54a4b8={..._0xc40b13};return _0x1dbed3[_0x408c0c(0x104)]<_0x54a4b8['startColumn']&&_0x3d15de['startColumn']>_0x54a4b8[_0x408c0c(0x104)]?(_0x54a4b8[_0x408c0c(0x11d)]-=_0x1dbed3['endColumn']-_0x1dbed3[_0x408c0c(0x11d)]+0x1,_0x54a4b8['endColumn']-=_0x1dbed3[_0x408c0c(0x104)]-_0x1dbed3['startColumn']+0x1,K(_0x54a4b8)&&_0x32e79c[_0x408c0c(0x112)](_0x54a4b8)):_0x1dbed3[_0x408c0c(0x11d)]>_0x54a4b8[_0x408c0c(0x104)]&&_0x3d15de['endColumn']<_0x54a4b8[_0x408c0c(0x11d)]?(_0x54a4b8[_0x408c0c(0x11d)]+=_0x1dbed3['endColumn']-_0x1dbed3[_0x408c0c(0x11d)]+0x1,_0x54a4b8[_0x408c0c(0x104)]+=_0x1dbed3[_0x408c0c(0x104)]-_0x1dbed3[_0x408c0c(0x11d)]+0x1,K(_0x54a4b8)&&_0x32e79c[_0x408c0c(0x112)](_0x54a4b8)):_0xff1ead[_0x408c0c(0x1fd)](_0x54a4b8,_0x1dbed3)||_0xff1ead[_0x408c0c(0x1fd)](_0x54a4b8,_0x3d15de)||_0x32e79c['push'](_0x54a4b8),_0x32e79c;},[]);return _0x13d2b1['params'][_0xe1b7e4(0x238)]=_0x46599e,_0x13d2b1[_0xe1b7e4(0x126)]['ranges'][_0xe1b7e4(0x210)]===0x0&&(_0x13d2b1['id']=_0x44f38d['id']),{'m1Prime':_0x41faa5,'m2Prime':_0x13d2b1};}},ja={'m1':_0x4d7dbd['id'],'m2':_0x2a2d75['id'],'handler'(_0x372cd2,_0xc6f0d4){const _0x4a87cc=_0x59a5e,_0x4e9fd0={'m1Prime':_0x372cd2,'m2Prime':_0xc6f0d4};if(_0x372cd2['params'][_0x4a87cc(0x10f)]!==_0xc6f0d4[_0x4a87cc(0x126)][_0x4a87cc(0x10f)]||_0x372cd2[_0x4a87cc(0x126)][_0x4a87cc(0x18c)]!==_0xc6f0d4[_0x4a87cc(0x126)][_0x4a87cc(0x18c)])return _0x4e9fd0;const _0x20b725=_0x372cd2[_0x4a87cc(0x126)][_0x4a87cc(0x1ad)][_0x4a87cc(0x11d)],_0x1414d0=_0x372cd2[_0x4a87cc(0x126)][_0x4a87cc(0x1ad)][_0x4a87cc(0x104)],_0x26e368=_0x372cd2['params'][_0x4a87cc(0x1d3)][_0x4a87cc(0x11d)],_0x20aeea=_0x372cd2[_0x4a87cc(0x126)][_0x4a87cc(0x1d3)][_0x4a87cc(0x104)],_0x22be76=_0xc6f0d4['params'][_0x4a87cc(0x114)][_0x4a87cc(0x11d)],_0x2c0d86=_0xc6f0d4[_0x4a87cc(0x126)][_0x4a87cc(0x114)][_0x4a87cc(0x104)];if(_0x20b725<=_0x2c0d86&&_0x1414d0>=_0x22be76||_0x26e368<=_0x2c0d86&&_0x20aeea>=_0x22be76)return{'error':new Error(_0x4a87cc(0x18b))};const _0x1db817=_0x2a97ff({'start':_0x20b725,'end':_0x1414d0},{'start':_0x26e368,'end':_0x20aeea},{'start':_0x22be76,'end':_0x2c0d86}),_0x145271=_0x589265['deepClone'](_0xc6f0d4);return _0x145271['params'][_0x4a87cc(0x114)][_0x4a87cc(0x11d)]+=_0x1db817[_0x4a87cc(0xcc)],_0x145271[_0x4a87cc(0x126)][_0x4a87cc(0x114)][_0x4a87cc(0x104)]+=_0x1db817[_0x4a87cc(0xcc)]+(_0x1db817[_0x4a87cc(0x210)]||0x0),{'m1Prime':_0x372cd2,'m2Prime':_0x145271};}},$a={'m1':_0x4d7dbd['id'],'m2':_0xac87f6['id'],'handler'(_0x5d67e2,_0x193c87){const _0x182e4b=_0x59a5e,_0x528b32={'m1Prime':_0x5d67e2,'m2Prime':_0x193c87};if(_0x5d67e2['params']['unitId']!==_0x193c87[_0x182e4b(0x126)][_0x182e4b(0x10f)]||_0x5d67e2[_0x182e4b(0x126)][_0x182e4b(0x18c)]!==_0x193c87[_0x182e4b(0x126)][_0x182e4b(0x18c)])return _0x528b32;const _0x3c0461=_0x589265[_0x182e4b(0x1cb)](_0x5d67e2),_0x4f6653=_0x589265['deepClone'](_0x193c87),{columnData:_0x26da5e}=_0x4f6653['params'],{sourceRange:_0x2f0e86,targetRange:_0x464b7b}=_0x5d67e2[_0x182e4b(0x126)];return _0x5cdb19(_0x2f0e86['startColumn'],_0x2f0e86[_0x182e4b(0x104)]-_0x2f0e86[_0x182e4b(0x11d)]+0x1,_0x464b7b[_0x182e4b(0x11d)],_0x26da5e),{'m1Prime':_0x3c0461,'m2Prime':_0x4f6653};}},Ya={'m1':_0x4d7dbd['id'],'m2':_0x1b9d87['id'],'handler'(_0x19eda2,_0x5f3fd5){const _0x16eb8d=_0x59a5e,_0xbf321f={'m1Prime':_0x19eda2,'m2Prime':_0x5f3fd5};if(_0x19eda2[_0x16eb8d(0x126)][_0x16eb8d(0x10f)]!==_0x5f3fd5['params'][_0x16eb8d(0x10f)]||_0x19eda2['params'][_0x16eb8d(0x18c)]!==_0x5f3fd5[_0x16eb8d(0x126)][_0x16eb8d(0x18c)])return _0xbf321f;const _0x319671=_0x589265[_0x16eb8d(0x1cb)](_0x19eda2),_0x4bccc9=_0x589265[_0x16eb8d(0x1cb)](_0x5f3fd5),{ranges:_0x132092}=_0x4bccc9[_0x16eb8d(0x126)],{sourceRange:_0x7018fc,targetRange:_0xe8d64f}=_0x19eda2[_0x16eb8d(0x126)],_0x4cf5ad={'start':_0x7018fc['startColumn'],'end':_0x7018fc[_0x16eb8d(0x104)]},_0x51efe3={'start':_0xe8d64f['startColumn'],'end':_0xe8d64f['endColumn']};return _0x132092[_0x16eb8d(0x221)](_0x4f1eb9=>{const _0x100be6=_0x16eb8d,_0x5472b5={'start':_0x4f1eb9[_0x100be6(0x11d)],'end':_0x4f1eb9[_0x100be6(0x104)]},_0x33eea8=H(_0x4cf5ad,_0x5472b5),_0x44f850=H(_0x51efe3,_0x5472b5);if(_0x33eea8||_0x44f850)return!0x0;const _0x2c3976=_0x2a97ff(_0x4cf5ad,_0x51efe3,_0x5472b5);return _0x2c3976[_0x100be6(0x210)]!==0x0?!0x0:(_0x4f1eb9['startColumn']+=_0x2c3976['step'],_0x4f1eb9[_0x100be6(0x104)]+=_0x2c3976[_0x100be6(0xcc)],!0x1);})?{'error':new Error(_0x16eb8d(0x1b1))}:{'m1Prime':_0x319671,'m2Prime':_0x4bccc9};}},Ja={'m1':_0x4d7dbd['id'],'m2':_0x59769e['id'],'handler'(_0x267e78,_0x44c693){const _0x3bb30d=_0x59a5e,_0x1250e8={'m1Prime':_0x267e78,'m2Prime':_0x44c693};if(_0x267e78['params'][_0x3bb30d(0x10f)]!==_0x44c693[_0x3bb30d(0x126)]['unitId']||_0x267e78[_0x3bb30d(0x126)]['subUnitId']!==_0x44c693[_0x3bb30d(0x126)]['subUnitId'])return _0x1250e8;const _0x1ca6b3=_0x589265[_0x3bb30d(0x1cb)](_0x267e78),_0x36cc66=_0x589265[_0x3bb30d(0x1cb)](_0x44c693),{ranges:_0x490aa8}=_0x36cc66[_0x3bb30d(0x126)],{sourceRange:_0x19a903,targetRange:_0x1b8d80}=_0x267e78[_0x3bb30d(0x126)],_0x2e5f16={'start':_0x19a903[_0x3bb30d(0x11d)],'end':_0x19a903['endColumn']},_0x2a483d={'start':_0x1b8d80['startColumn'],'end':_0x1b8d80[_0x3bb30d(0x104)]};return _0x490aa8['some'](_0x26d39c=>{const _0x3c891e=_0x3bb30d,_0x3a3a0d={'start':_0x26d39c[_0x3c891e(0x11d)],'end':_0x26d39c[_0x3c891e(0x104)]},_0x2543ae=H(_0x2e5f16,_0x3a3a0d),_0x2fdee6=H(_0x2a483d,_0x3a3a0d);if(_0x2543ae||_0x2fdee6)return!0x0;const _0xac6de8=_0x2a97ff(_0x2e5f16,_0x2a483d,_0x3a3a0d);return _0xac6de8['length']!==0x0?!0x0:(_0x26d39c[_0x3c891e(0x11d)]+=_0xac6de8['step'],_0x26d39c[_0x3c891e(0x104)]+=_0xac6de8[_0x3c891e(0xcc)],!0x1);})?{'error':new Error('move\x20col\x20is\x20conflict\x20with\x20set\x20col\x20visible')}:{'m1Prime':_0x1ca6b3,'m2Prime':_0x36cc66};}},Xa={'m1':_0x4d7dbd['id'],'m2':_0x432da8['id'],'handler'(_0x65f60c,_0x42d944){const _0x36dc67=_0x59a5e,_0x3b5f3c={'m1Prime':_0x65f60c,'m2Prime':_0x42d944};if(_0x65f60c['params']['unitId']!==_0x42d944[_0x36dc67(0x126)][_0x36dc67(0x10f)]||_0x65f60c['params']['subUnitId']!==_0x42d944[_0x36dc67(0x126)][_0x36dc67(0x18c)])return _0x3b5f3c;const _0x43c0e5=[_0x589265['deepClone'](_0x65f60c)],_0x3d9b7c=_0x589265[_0x36dc67(0x1cb)](_0x42d944),{sourceRange:_0x54c8c0,targetRange:_0x4d040c}=_0x65f60c['params'],_0x1a5467={'start':_0x54c8c0['startColumn'],'end':_0x54c8c0[_0x36dc67(0x104)]},_0x4e042a={'start':_0x4d040c[_0x36dc67(0x11d)],'end':_0x4d040c[_0x36dc67(0x104)]},{values:_0x3c6407}=_0x3d9b7c[_0x36dc67(0x126)],_0x12a5df=[];let _0x5f530e=!0x1;for(const _0x2108aa in _0x3c6407){const _0x4edf68=_0x3c6407[_0x2108aa];if(_0x12a5df['push'](..._0x4edf68[_0x36dc67(0x238)]),_0x4edf68[_0x36dc67(0x238)][_0x36dc67(0x221)](_0x61945=>{const _0x10d464=_0x36dc67,_0x37982c={'start':_0x61945[_0x10d464(0x11d)],'end':_0x61945['endColumn']},_0x1940a0=H(_0x1a5467,_0x37982c),_0x54c489=H(_0x4e042a,_0x37982c);if(_0x1940a0||_0x54c489)return!0x0;const _0xedaa2f=_0x2a97ff(_0x1a5467,_0x4e042a,_0x37982c);return _0xedaa2f[_0x10d464(0x210)]!==0x0?!0x0:(_0xedaa2f[_0x10d464(0xcc)]!==0x0&&(_0x5f530e=!0x0),_0x61945['startColumn']+=_0xedaa2f[_0x10d464(0xcc)],_0x61945['endColumn']+=_0xedaa2f[_0x10d464(0xcc)],!0x1);}))return{'error':new Error('move\x20col\x20is\x20conflict\x20with\x20set\x20numfmt')};}if(_0x5f530e){const _0x344aee={'id':_0x5775f8['id'],'params':{'unitId':_0x42d944['params'][_0x36dc67(0x10f)],'subUnitId':_0x42d944[_0x36dc67(0x126)]['subUnitId'],'ranges':_0x12a5df}};_0x43c0e5['push'](_0x344aee,_0x3d9b7c);}return{'m1Prime':_0x43c0e5,'m2Prime':_0x3d9b7c};}},Ka={'m1':_0x4d7dbd['id'],'m2':_0x36f561['id'],'handler'(_0x56d53c,_0xd9f23f){const _0x44a2ef=_0x59a5e,_0x3d74bd={'m1Prime':_0x56d53c,'m2Prime':_0xd9f23f};if(_0x56d53c[_0x44a2ef(0x126)][_0x44a2ef(0x10f)]!==_0xd9f23f[_0x44a2ef(0x126)]['unitId']||_0x56d53c[_0x44a2ef(0x126)][_0x44a2ef(0x18c)]!==_0xd9f23f[_0x44a2ef(0x126)][_0x44a2ef(0x18c)])return _0x3d74bd;const _0x1d20d7=[_0x589265['deepClone'](_0x56d53c)],_0x10396f=_0x589265[_0x44a2ef(0x1cb)](_0xd9f23f),_0x5eeae5=new _0x33d61f(_0x10396f[_0x44a2ef(0x126)][_0x44a2ef(0x153)]),{sourceRange:_0xddf701,targetRange:_0x34d32d}=_0x56d53c['params'],_0x4cbf89=_0xddf701['startColumn'],_0x2052d3=_0xddf701['endColumn']-_0xddf701[_0x44a2ef(0x11d)]+0x1,_0xf3ee08=_0x34d32d[_0x44a2ef(0x11d)];_0x5eeae5['moveColumns'](_0x4cbf89,_0x2052d3,_0xf3ee08);const _0x481c2a=new _0x33d61f();let _0x4e7e54=!0x1;if(_0x5eeae5[_0x44a2ef(0x1d9)]((_0x10a82a,_0x44d9ef,_0x7c40f8)=>{const _0x3929be=_0x44a2ef;if(_0x7c40f8&&_0x7c40f8['f']){const _0x58e86b=_0x7c40f8['f'];let _0x9c38af=!0x1;const _0x3b39b3=dt(_0x56d53c[_0x3929be(0x126)][_0x3929be(0x10f)],_0x56d53c[_0x3929be(0x126)]['subUnitId'],_0x58e86b,_0x610992=>{const _0x111a27=_0x3929be,_0x192e70=_0x2a97ff({'start':_0x56d53c[_0x111a27(0x126)][_0x111a27(0x1ad)][_0x111a27(0x11d)],'end':_0x56d53c[_0x111a27(0x126)][_0x111a27(0x1ad)][_0x111a27(0x104)]},{'start':_0x56d53c[_0x111a27(0x126)][_0x111a27(0x1d3)]['startColumn'],'end':_0x56d53c[_0x111a27(0x126)]['targetRange'][_0x111a27(0x104)]},{'start':_0x610992[_0x111a27(0x11d)],'end':_0x610992['endColumn']});return(_0x192e70['step']!==0x0||_0x192e70[_0x111a27(0x210)]!==0x0)&&(_0x9c38af=!0x0,_0x610992[_0x111a27(0x11d)]+=_0x192e70[_0x111a27(0xcc)],_0x610992[_0x111a27(0x104)]+=_0x192e70[_0x111a27(0xcc)]+_0x192e70[_0x111a27(0x210)]),_0x610992;});_0x9c38af&&(_0x4e7e54=!0x0,_0x7c40f8['f']=_0x3b39b3,_0x481c2a['setValue'](_0x10a82a,_0x44d9ef,{..._0x7c40f8}));}}),_0x4e7e54){const _0x2e6070={'id':_0x36f561['id'],'params':{'unitId':_0xd9f23f[_0x44a2ef(0x126)]['unitId'],'subUnitId':_0xd9f23f['params'][_0x44a2ef(0x18c)],'cellValue':_0x481c2a[_0x44a2ef(0x131)]()}};_0x1d20d7[_0x44a2ef(0x112)](_0x2e6070);}return _0x10396f[_0x44a2ef(0x126)]['cellValue']=_0x5eeae5[_0x44a2ef(0x131)](),{'m1Prime':_0x1d20d7,'m2Prime':_0x10396f};}},za={'m1':_0x4d7dbd['id'],'m2':_0x53e0ba['id'],'handler'(_0x247bbc,_0x33ea90){const _0x2abe9f=_0x59a5e,_0x1152fb={'m1Prime':[],'m2Prime':[]};if(_0x247bbc[_0x2abe9f(0x126)][_0x2abe9f(0x10f)]!==_0x33ea90['params'][_0x2abe9f(0x10f)]||_0x247bbc[_0x2abe9f(0x126)][_0x2abe9f(0x18c)]!==_0x33ea90['params'][_0x2abe9f(0x18c)])return _0x1152fb;const _0x359b43=_0x589265[_0x2abe9f(0x1cb)](_0x33ea90);let _0x7bc37c=!0x1;return _0x359b43[_0x2abe9f(0x126)][_0x2abe9f(0x14a)][_0x2abe9f(0x233)](_0x1977a8=>{const _0x140ad1=_0x2abe9f,{range:_0x4d1371,primary:_0x544c04}=_0x1977a8,_0x178fdb=_0x2a97ff({'start':_0x247bbc['params'][_0x140ad1(0x1ad)][_0x140ad1(0x11d)],'end':_0x247bbc[_0x140ad1(0x126)][_0x140ad1(0x1ad)]['endColumn']},{'start':_0x247bbc[_0x140ad1(0x126)][_0x140ad1(0x1d3)]['startColumn'],'end':_0x247bbc[_0x140ad1(0x126)]['targetRange']['endColumn']},{'start':_0x4d1371['startColumn'],'end':_0x4d1371[_0x140ad1(0x104)]});if(_0x178fdb['length']||_0x178fdb[_0x140ad1(0xcc)]){if(_0x4d1371[_0x140ad1(0x11d)]+=_0x178fdb[_0x140ad1(0xcc)],_0x4d1371[_0x140ad1(0x104)]+=_0x178fdb[_0x140ad1(0xcc)]+(_0x178fdb['length']||0x0),_0x544c04){const _0x5a30f3=_0x2a97ff({'start':_0x247bbc['params'][_0x140ad1(0x1ad)][_0x140ad1(0x11d)],'end':_0x247bbc['params'][_0x140ad1(0x1ad)][_0x140ad1(0x104)]},{'start':_0x247bbc[_0x140ad1(0x126)][_0x140ad1(0x1d3)][_0x140ad1(0x11d)],'end':_0x247bbc['params'][_0x140ad1(0x1d3)][_0x140ad1(0x104)]},{'start':_0x544c04[_0x140ad1(0x11d)],'end':_0x544c04[_0x140ad1(0x104)]});(_0x5a30f3[_0x140ad1(0x210)]||_0x5a30f3[_0x140ad1(0xcc)])&&(_0x544c04[_0x140ad1(0x11d)]+=_0x5a30f3[_0x140ad1(0xcc)],_0x544c04[_0x140ad1(0x104)]+=_0x5a30f3[_0x140ad1(0xcc)],_0x544c04[_0x140ad1(0x100)]+=_0x5a30f3[_0x140ad1(0xcc)]);}_0x7bc37c=!0x0;}}),_0x7bc37c&&_0x1152fb[_0x2abe9f(0x111)][_0x2abe9f(0x112)](_0x359b43),_0x1152fb;}},qa={'m1':_0x4d7dbd['id'],'m2':_0x1b64c2['id'],'handler'(_0x3f244c,_0x37cfc5){const _0x4d85fa=_0x59a5e,_0xc9d3fa={'m1Prime':_0x3f244c,'m2Prime':_0x37cfc5};if(_0x3f244c[_0x4d85fa(0x126)][_0x4d85fa(0x10f)]!==_0x37cfc5[_0x4d85fa(0x126)][_0x4d85fa(0x10f)]||_0x3f244c[_0x4d85fa(0x126)][_0x4d85fa(0x18c)]!==_0x37cfc5['params'][_0x4d85fa(0x18c)])return _0xc9d3fa;const _0x18c356=_0x589265[_0x4d85fa(0x1cb)](_0x3f244c),_0xd06a1e=_0x589265['deepClone'](_0x37cfc5),_0x5929bc=_0x2a97ff({'start':_0x3f244c['params'][_0x4d85fa(0x1ad)][_0x4d85fa(0x11d)],'end':_0x3f244c[_0x4d85fa(0x126)][_0x4d85fa(0x1ad)][_0x4d85fa(0x104)]},{'start':_0x3f244c[_0x4d85fa(0x126)][_0x4d85fa(0x1d3)]['startColumn'],'end':_0x3f244c[_0x4d85fa(0x126)]['targetRange'][_0x4d85fa(0x104)]},{'start':_0x37cfc5[_0x4d85fa(0x126)][_0x4d85fa(0x22b)],'end':_0x37cfc5[_0x4d85fa(0x126)][_0x4d85fa(0x22b)]});if(_0x5929bc[_0x4d85fa(0xcc)]===0x0)return _0xc9d3fa;_0xd06a1e[_0x4d85fa(0x126)][_0x4d85fa(0x22b)]+=_0x5929bc[_0x4d85fa(0xcc)],_0xd06a1e[_0x4d85fa(0x126)][_0x4d85fa(0x105)]&&(_0xd06a1e[_0x4d85fa(0x126)]['criteria']['colId']+=_0x5929bc[_0x4d85fa(0xcc)]);const _0x14108b=_0x589265[_0x4d85fa(0x1cb)](_0x37cfc5);return _0x14108b[_0x4d85fa(0x126)][_0x4d85fa(0x105)]=null,{'m1Prime':[_0x14108b,_0xd06a1e,_0x18c356],'m2Prime':[_0xd06a1e]};}},Za={'m1':_0x4d7dbd['id'],'m2':_0xa0b953['id'],'handler'(_0x400746,_0x4912ac){const _0x51e7cf=_0x59a5e,_0x2e71f4={'m1Prime':[_0x400746],'m2Prime':[_0x4912ac]};if(_0x400746[_0x51e7cf(0x126)][_0x51e7cf(0x10f)]!==_0x4912ac[_0x51e7cf(0x126)][_0x51e7cf(0x10f)]||_0x400746['params']['subUnitId']!==_0x4912ac['params'][_0x51e7cf(0x18c)])return _0x2e71f4;const _0x45a4cc=_0x589265['deepClone'](_0x400746),_0x505417=_0x589265[_0x51e7cf(0x1cb)](_0x4912ac),_0x4f4a17=_0x2a97ff({'start':_0x400746[_0x51e7cf(0x126)][_0x51e7cf(0x1ad)][_0x51e7cf(0x11d)],'end':_0x400746[_0x51e7cf(0x126)][_0x51e7cf(0x1ad)]['endColumn']},{'start':_0x400746[_0x51e7cf(0x126)][_0x51e7cf(0x1d3)][_0x51e7cf(0x11d)],'end':_0x400746['params'][_0x51e7cf(0x1d3)][_0x51e7cf(0x104)]},{'start':_0x4912ac[_0x51e7cf(0x126)][_0x51e7cf(0x114)][_0x51e7cf(0x11d)],'end':_0x4912ac['params'][_0x51e7cf(0x114)][_0x51e7cf(0x104)]});return _0x505417[_0x51e7cf(0x126)][_0x51e7cf(0x114)][_0x51e7cf(0x11d)]+=_0x4f4a17['step'],_0x505417['params'][_0x51e7cf(0x114)][_0x51e7cf(0x104)]+=_0x4f4a17['step']+_0x4f4a17[_0x51e7cf(0x210)],{'m1Prime':[_0x505417,_0x45a4cc],'m2Prime':[_0x505417]};}},Qa={'m1':_0x4d7dbd['id'],'m2':_0x8fd627['id'],'handler'(_0x334e71,_0x45f50e){const _0x2ea333=_0x59a5e,_0x5ec199={'m1Prime':_0x334e71,'m2Prime':_0x45f50e};if(_0x334e71[_0x2ea333(0x126)]['unitId']!==_0x45f50e[_0x2ea333(0x126)][_0x2ea333(0x10f)]||_0x334e71[_0x2ea333(0x126)][_0x2ea333(0x18c)]!==_0x45f50e[_0x2ea333(0x126)][_0x2ea333(0x18c)])return _0x5ec199;const _0x1739b5=_0x589265[_0x2ea333(0x1cb)](_0x334e71),_0x850790=_0x589265[_0x2ea333(0x1cb)](_0x45f50e),{ranges:_0x5b588f,colWidth:_0x392291}=_0x850790[_0x2ea333(0x126)],{sourceRange:_0x5bf357,targetRange:_0x502579}=_0x334e71['params'],_0x368ab6={'start':_0x5bf357[_0x2ea333(0x11d)],'end':_0x5bf357['endColumn']},_0x233004={'start':_0x502579['startColumn'],'end':_0x502579['endColumn']};return _0x5b588f[_0x2ea333(0x221)](_0x4e4e52=>{const _0x42657b=_0x2ea333,_0x1e9ff9={'start':_0x4e4e52[_0x42657b(0x11d)],'end':_0x4e4e52[_0x42657b(0x104)]},_0x178de5=_0x2a97ff(_0x368ab6,_0x233004,_0x1e9ff9);return _0x178de5[_0x42657b(0x210)]!==0x0?!0x0:(_0x4e4e52['startColumn']+=_0x178de5[_0x42657b(0xcc)],_0x4e4e52[_0x42657b(0x104)]+=_0x178de5[_0x42657b(0xcc)],!0x1);})?{'error':new Error(_0x2ea333(0x12f))}:(typeof _0x392291!=_0x2ea333(0x1e1)&&_0x5cdb19(_0x5bf357[_0x2ea333(0x11d)],_0x5bf357[_0x2ea333(0x104)]-_0x5bf357[_0x2ea333(0x11d)]+0x1,_0x502579[_0x2ea333(0x11d)],_0x392291),{'m1Prime':_0x1739b5,'m2Prime':_0x850790});}},ts={'m1':_0x4d7dbd['id'],'m2':_0x164c55['id'],'handler':(_0x365fab,_0x2495a7)=>{const _0xd7cb09=_0x59a5e,_0x143c2e={'m1Prime':_0x365fab,'m2Prime':_0x2495a7};if(_0x365fab[_0xd7cb09(0x126)][_0xd7cb09(0x10f)]!==_0x2495a7[_0xd7cb09(0x126)][_0xd7cb09(0x10f)]||_0x365fab[_0xd7cb09(0x126)][_0xd7cb09(0x18c)]!==_0x2495a7[_0xd7cb09(0x126)]['subUnitId'])return _0x143c2e;const _0x228ca4={'id':_0x2d91e5['id'],'params':{'unitId':_0x365fab[_0xd7cb09(0x126)]['unitId'],'subUnitId':_0x365fab[_0xd7cb09(0x126)][_0xd7cb09(0x18c)],'fromRange':_0x365fab[_0xd7cb09(0x126)][_0xd7cb09(0x1ad)],'toRange':_0x365fab['params'][_0xd7cb09(0x1d3)]}},_0x27e1ad=wt(_0x2495a7,_0x228ca4);return{'m1Prime':[_0x365fab,..._0x27e1ad],'m2Prime':[_0x2495a7,..._0x27e1ad]};}},es={'m1':_0x3e5fad['id'],'m2':_0x3e5fad['id'],'handler'(_0x33ec02,_0x33c02e){const _0xd38cb2=_0x59a5e;return _0x33ec02['params'][_0xd38cb2(0x10f)]!==_0x33c02e[_0xd38cb2(0x126)][_0xd38cb2(0x10f)]||_0x33ec02['params'][_0xd38cb2(0x18c)]!==_0x33c02e[_0xd38cb2(0x126)][_0xd38cb2(0x18c)]?{'m1Prime':_0x33ec02,'m2Prime':_0x33c02e}:{'error':new Error(_0xd38cb2(0x10d))};}},rs={'m1':_0x442c2d['id'],'m2':_0x223d91['id'],'handler'(_0xf26fce,_0x48bfc0){const _0x1cfef4=_0x59a5e,_0xe55274=sr['handler'](_0x48bfc0,_0xf26fce);return at(_0xe55274)?{'m1Prime':_0xe55274[_0x1cfef4(0x111)],'m2Prime':_0xe55274[_0x1cfef4(0x1da)]}:_0xe55274;}},ns={'m1':_0x442c2d['id'],'m2':_0x442c2d['id'],'handler'(_0xf94bed,_0x4f3de3){const _0x1675bc=_0x59a5e,_0x3dec93={'m1Prime':_0xf94bed,'m2Prime':_0x4f3de3};if(_0xf94bed[_0x1675bc(0x126)][_0x1675bc(0x10f)]!==_0x4f3de3[_0x1675bc(0x126)][_0x1675bc(0x10f)])return _0x3dec93;const _0x2c520a=new _0x33d61f(_0xf94bed[_0x1675bc(0x126)]['from'][_0x1675bc(0x18f)])[_0x1675bc(0x1a7)](),_0x77b591=new _0x33d61f(_0x4f3de3[_0x1675bc(0x126)][_0x1675bc(0x16d)][_0x1675bc(0x18f)])[_0x1675bc(0x1a7)](),_0x18cd13=new _0x33d61f(_0xf94bed[_0x1675bc(0x126)]['to'][_0x1675bc(0x18f)])['getDataRange'](),_0xbc8bfb=new _0x33d61f(_0x4f3de3[_0x1675bc(0x126)]['to'][_0x1675bc(0x18f)])[_0x1675bc(0x1a7)]();return _0xf94bed['params'][_0x1675bc(0x16d)]['subUnitId']===_0x4f3de3[_0x1675bc(0x126)]['from'][_0x1675bc(0x18c)]&&_0xff1ead[_0x1675bc(0x1fd)](_0x2c520a,_0x77b591)||_0xf94bed[_0x1675bc(0x126)]['to'][_0x1675bc(0x18c)]===_0x4f3de3[_0x1675bc(0x126)]['to'][_0x1675bc(0x18c)]&&_0xff1ead[_0x1675bc(0x1fd)](_0x18cd13,_0xbc8bfb)||_0xf94bed[_0x1675bc(0x126)][_0x1675bc(0x16d)]['subUnitId']===_0x4f3de3[_0x1675bc(0x126)]['to'][_0x1675bc(0x18c)]&&_0xff1ead[_0x1675bc(0x1fd)](_0x2c520a,_0xbc8bfb)||_0xf94bed[_0x1675bc(0x126)]['to'][_0x1675bc(0x18c)]===_0x4f3de3[_0x1675bc(0x126)][_0x1675bc(0x16d)][_0x1675bc(0x18c)]&&_0xff1ead['intersects'](_0x18cd13,_0x77b591)?{'error':new Error('Two\x20move-range\x20mutations\x20have\x20an\x20overlapping\x20range.')}:_0x3dec93;}},as={'m1':_0x442c2d['id'],'m2':_0x5775f8['id'],'handler'(_0x3d2ac9,_0x428f42){const _0x53c0af=_0x59a5e,_0x204700={'m1Prime':_0x3d2ac9,'m2Prime':_0x428f42};if(_0x3d2ac9['params']['unitId']!==_0x428f42[_0x53c0af(0x126)][_0x53c0af(0x10f)]||_0x3d2ac9['params'][_0x53c0af(0x16d)]['subUnitId']!==_0x428f42['params'][_0x53c0af(0x18c)]&&_0x3d2ac9[_0x53c0af(0x126)]['to'][_0x53c0af(0x18c)]!==_0x428f42[_0x53c0af(0x126)][_0x53c0af(0x18c)])return _0x204700;const _0x14f963=new _0x33d61f(_0x3d2ac9[_0x53c0af(0x126)]['from']['value'])['getDataRange'](),_0x3139af=new _0x33d61f(_0x3d2ac9['params']['to']['value'])[_0x53c0af(0x1a7)]();return _0x3d2ac9['params']['from']['subUnitId']===_0x428f42['params'][_0x53c0af(0x18c)]&&_0x428f42[_0x53c0af(0x126)][_0x53c0af(0x238)][_0x53c0af(0x221)](_0x7d4dae=>_0xff1ead['intersects'](_0x7d4dae,_0x14f963))?{'error':new Error('move\x20range\x20is\x20conflict\x20with\x20set\x20numfmt')}:_0x3d2ac9[_0x53c0af(0x126)]['to'][_0x53c0af(0x18c)]===_0x428f42[_0x53c0af(0x126)][_0x53c0af(0x18c)]&&_0x428f42['params'][_0x53c0af(0x238)][_0x53c0af(0x221)](_0x50c662=>_0xff1ead['intersects'](_0x50c662,_0x3139af))?{'error':new Error(_0x53c0af(0x1dd))}:_0x204700;}},ss={'m1':_0x442c2d['id'],'m2':_0x2a2d75['id'],'handler'(_0x2176fc,_0x5219c1){const _0x4bba0d=_0x59a5e,_0x30dfcf={'m1Prime':_0x2176fc,'m2Prime':_0x5219c1};if(_0x2176fc['params']['unitId']!==_0x5219c1[_0x4bba0d(0x126)]['unitId']||_0x2176fc['params']['from']['subUnitId']!==_0x5219c1[_0x4bba0d(0x126)]['subUnitId']&&_0x2176fc['params']['to'][_0x4bba0d(0x18c)]!==_0x5219c1['params'][_0x4bba0d(0x18c)])return _0x30dfcf;if(_0x2176fc[_0x4bba0d(0x126)]['from']['subUnitId']===_0x5219c1[_0x4bba0d(0x126)][_0x4bba0d(0x18c)]){const _0x3755f5=new _0x33d61f(_0x2176fc[_0x4bba0d(0x126)][_0x4bba0d(0x16d)]['value'])[_0x4bba0d(0x1a7)]();if(_0xff1ead[_0x4bba0d(0x1fd)](_0x3755f5,_0x5219c1[_0x4bba0d(0x126)][_0x4bba0d(0x114)]))return{'error':new Error(_0x4bba0d(0x18b))};}if(_0x2176fc['params']['to'][_0x4bba0d(0x18c)]===_0x5219c1['params']['subUnitId']){const _0x53ce16=new _0x33d61f(_0x2176fc[_0x4bba0d(0x126)]['to'][_0x4bba0d(0x18f)])[_0x4bba0d(0x1a7)]();if(_0xff1ead[_0x4bba0d(0x1fd)](_0x53ce16,_0x5219c1['params'][_0x4bba0d(0x114)]))return{'error':new Error('move\x20range\x20is\x20conflict\x20with\x20reorder\x20range')};}return _0x30dfcf;}},os={'m1':_0x442c2d['id'],'m2':_0x432da8['id'],'handler'(_0x5957c5,_0x4284a9){const _0x13b55c=_0x59a5e,_0x21cc76={'m1Prime':_0x5957c5,'m2Prime':_0x4284a9};if(_0x5957c5[_0x13b55c(0x126)][_0x13b55c(0x10f)]!==_0x4284a9[_0x13b55c(0x126)]['unitId']||_0x5957c5[_0x13b55c(0x126)][_0x13b55c(0x16d)]['subUnitId']!==_0x4284a9[_0x13b55c(0x126)]['subUnitId']&&_0x5957c5['params']['to'][_0x13b55c(0x18c)]!==_0x4284a9[_0x13b55c(0x126)]['subUnitId'])return _0x21cc76;const _0x4a6b4b=new _0x33d61f(_0x5957c5[_0x13b55c(0x126)][_0x13b55c(0x16d)][_0x13b55c(0x18f)])[_0x13b55c(0x1a7)](),_0x29f8f4=new _0x33d61f(_0x5957c5[_0x13b55c(0x126)]['to']['value'])['getDataRange']();if(_0x5957c5['params'][_0x13b55c(0x16d)][_0x13b55c(0x18c)]===_0x4284a9[_0x13b55c(0x126)]['subUnitId']){const {values:_0xd083e4}=_0x4284a9[_0x13b55c(0x126)];for(const _0xd4f089 in _0xd083e4)if(_0xd083e4[_0xd4f089][_0x13b55c(0x238)][_0x13b55c(0x221)](_0x47eee3=>_0xff1ead['intersects'](_0x47eee3,_0x4a6b4b)))return{'error':new Error(_0x13b55c(0x1dd))};}if(_0x5957c5[_0x13b55c(0x126)]['to']['subUnitId']===_0x4284a9[_0x13b55c(0x126)]['subUnitId']){const {values:_0x5ada5c}=_0x4284a9[_0x13b55c(0x126)];for(const _0x275ff7 in _0x5ada5c)if(_0x5ada5c[_0x275ff7][_0x13b55c(0x238)][_0x13b55c(0x221)](_0x25139e=>_0xff1ead[_0x13b55c(0x1fd)](_0x25139e,_0x29f8f4)))return{'error':new Error(_0x13b55c(0x1dd))};}return _0x21cc76;}},is={'m1':_0x79cdbf['id'],'m2':_0x58b473['id'],'handler':(_0x2569ba,_0x193f93)=>{const _0x4dbf14=_0x59a5e,_0x3afe1a={'m1Prime':_0x2569ba,'m2Prime':_0x193f93};if(_0x2569ba[_0x4dbf14(0x126)][_0x4dbf14(0x10f)]!==_0x193f93[_0x4dbf14(0x126)]['unitId']||_0x2569ba[_0x4dbf14(0x126)][_0x4dbf14(0x18c)]!==_0x193f93[_0x4dbf14(0x126)][_0x4dbf14(0x18c)])return _0x3afe1a;const _0x3e3078={'id':_0xe7e83c['id'],'params':{'unitId':_0x2569ba[_0x4dbf14(0x126)][_0x4dbf14(0x10f)],'subUnitId':_0x2569ba[_0x4dbf14(0x126)]['subUnitId'],'fromRange':_0x2569ba[_0x4dbf14(0x126)][_0x4dbf14(0x1ad)],'toRange':_0x2569ba[_0x4dbf14(0x126)][_0x4dbf14(0x1d3)]}},_0x2895ee=It(_0x193f93,_0x3e3078);return{'m1Prime':[_0x2569ba,..._0x2895ee],'m2Prime':[_0x193f93,..._0x2895ee]};}},ds={'m1':_0x79cdbf['id'],'m2':_0x34b1dc['id'],'handler'(_0xa4b2c0,_0x28a8b9){const _0x2305bf=_0x59a5e,_0x5bf98b={'m1Prime':_0xa4b2c0,'m2Prime':_0x28a8b9};if(_0xa4b2c0[_0x2305bf(0x126)][_0x2305bf(0x10f)]!==_0x28a8b9[_0x2305bf(0x126)][_0x2305bf(0x10f)]||_0xa4b2c0['params']['subUnitId']!==_0x28a8b9['params']['subUnitId'])return _0x5bf98b;const _0x1e72c5={'id':_0xe7e83c['id'],'params':{'fromRange':_0xa4b2c0[_0x2305bf(0x126)][_0x2305bf(0x1ad)],'toRange':_0xa4b2c0['params'][_0x2305bf(0x1d3)]}},_0x176cbe=Tt(_0x28a8b9,_0x1e72c5);return{'m1Prime':[_0xa4b2c0,..._0x176cbe],'m2Prime':[_0x28a8b9,..._0x176cbe]};}},ms={'m1':_0x79cdbf['id'],'m2':_0x223d91['id'],'handler'(_0x4bbaff,_0x557e6e){const _0x201206=_0x59a5e,_0x3c005c=or[_0x201206(0x1ce)](_0x557e6e,_0x4bbaff);return at(_0x3c005c)?{'m1Prime':_0x3c005c[_0x201206(0x111)],'m2Prime':_0x3c005c[_0x201206(0x1da)]}:_0x3c005c;}},us={'m1':_0x79cdbf['id'],'m2':_0x442c2d['id'],'handler'(_0x4760ec,_0x32979b){const _0x37b1b0=_0x59a5e,_0x232694={'m1Prime':_0x4760ec,'m2Prime':_0x32979b};if(_0x4760ec[_0x37b1b0(0x126)]['unitId']!==_0x32979b[_0x37b1b0(0x126)][_0x37b1b0(0x10f)]||_0x4760ec[_0x37b1b0(0x126)][_0x37b1b0(0x18c)]!==_0x32979b['params'][_0x37b1b0(0x16d)][_0x37b1b0(0x18c)]&&_0x4760ec[_0x37b1b0(0x126)][_0x37b1b0(0x18c)]!==_0x32979b[_0x37b1b0(0x126)]['to'][_0x37b1b0(0x18c)])return _0x232694;const _0x268d03=_0x589265[_0x37b1b0(0x1cb)](_0x4760ec),_0x420f37=_0x589265[_0x37b1b0(0x1cb)](_0x32979b),_0x3153eb=_0x4760ec['params'][_0x37b1b0(0x1ad)],_0x53f6b9=_0x4760ec['params'][_0x37b1b0(0x1d3)];if(_0x4760ec['params'][_0x37b1b0(0x18c)]===_0x32979b['params'][_0x37b1b0(0x16d)]['subUnitId']){const _0x41d2b2=new _0x33d61f(_0x420f37[_0x37b1b0(0x126)][_0x37b1b0(0x16d)]['value']),_0x5850c9=_0x41d2b2[_0x37b1b0(0x1a7)]();if(H({'start':_0x3153eb[_0x37b1b0(0xcd)],'end':_0x3153eb[_0x37b1b0(0xf0)]},{'start':_0x5850c9[_0x37b1b0(0xcd)],'end':_0x5850c9['endRow']})||H({'start':_0x53f6b9[_0x37b1b0(0xcd)],'end':_0x53f6b9[_0x37b1b0(0xf0)]},{'start':_0x5850c9[_0x37b1b0(0xcd)],'end':_0x5850c9[_0x37b1b0(0xf0)]}))return{'error':new Error(_0x37b1b0(0x107))};const _0x306285=_0x2a97ff({'start':_0x3153eb[_0x37b1b0(0xcd)],'end':_0x3153eb[_0x37b1b0(0xf0)]},{'start':_0x53f6b9[_0x37b1b0(0xcd)],'end':_0x53f6b9['endRow']},{'start':_0x5850c9[_0x37b1b0(0xcd)],'end':_0x5850c9[_0x37b1b0(0xf0)]});if(_0x306285[_0x37b1b0(0x210)]!==0x0)return{'error':new Error(_0x37b1b0(0x107))};_0x306285[_0x37b1b0(0xcc)]!==0x0&&_0x41d2b2[_0x37b1b0(0x12b)](_0x3153eb[_0x37b1b0(0xcd)],_0x3153eb[_0x37b1b0(0xf0)]-_0x3153eb[_0x37b1b0(0xcd)]+0x1,_0x53f6b9[_0x37b1b0(0xcd)]),_0x420f37[_0x37b1b0(0x126)][_0x37b1b0(0x16d)]['value']=_0x41d2b2[_0x37b1b0(0x131)]();}if(_0x4760ec['params'][_0x37b1b0(0x18c)]===_0x32979b[_0x37b1b0(0x126)]['to'][_0x37b1b0(0x18c)]){const _0x3c208a=new _0x33d61f(_0x420f37['params']['to'][_0x37b1b0(0x18f)]),_0x2151e1=_0x3c208a[_0x37b1b0(0x1a7)]();if(H({'start':_0x3153eb[_0x37b1b0(0xcd)],'end':_0x3153eb[_0x37b1b0(0xf0)]},{'start':_0x2151e1[_0x37b1b0(0xcd)],'end':_0x2151e1[_0x37b1b0(0xf0)]})||H({'start':_0x53f6b9[_0x37b1b0(0xcd)],'end':_0x53f6b9[_0x37b1b0(0xf0)]},{'start':_0x2151e1[_0x37b1b0(0xcd)],'end':_0x2151e1[_0x37b1b0(0xf0)]}))return{'error':new Error(_0x37b1b0(0x107))};const _0x5646b2=_0x2a97ff({'start':_0x3153eb[_0x37b1b0(0xcd)],'end':_0x3153eb['endRow']},{'start':_0x53f6b9['startRow'],'end':_0x53f6b9['endRow']},{'start':_0x2151e1[_0x37b1b0(0xcd)],'end':_0x2151e1['endRow']});if(_0x5646b2['length']!==0x0)return{'error':new Error(_0x37b1b0(0x107))};_0x5646b2[_0x37b1b0(0xcc)]!==0x0&&_0x3c208a[_0x37b1b0(0x12b)](_0x3153eb[_0x37b1b0(0xcd)],_0x3153eb['endRow']-_0x3153eb[_0x37b1b0(0xcd)]+0x1,_0x53f6b9[_0x37b1b0(0xcd)]),_0x420f37[_0x37b1b0(0x126)]['to'][_0x37b1b0(0x18f)]=_0x3c208a[_0x37b1b0(0x131)]();}return{'m1Prime':_0x268d03,'m2Prime':_0x420f37};}},ls={'m1':_0x79cdbf['id'],'m2':_0x79cdbf['id'],'handler'(_0x4ed8ba,_0x3d4463){const _0x1be8f7=_0x59a5e,_0x11cb2f={'m1Prime':_0x4ed8ba,'m2Prime':_0x3d4463};if(_0x4ed8ba[_0x1be8f7(0x126)][_0x1be8f7(0x10f)]!==_0x3d4463[_0x1be8f7(0x126)][_0x1be8f7(0x10f)]||_0x4ed8ba['params'][_0x1be8f7(0x18c)]!==_0x3d4463[_0x1be8f7(0x126)]['subUnitId'])return _0x11cb2f;const _0x4a4691=_0x589265[_0x1be8f7(0x1cb)](_0x4ed8ba),_0x289d5b=_0x589265[_0x1be8f7(0x1cb)](_0x3d4463),_0x23e774=_0x3d4463['params'][_0x1be8f7(0x1ad)],_0x4f80f1=_0x3d4463[_0x1be8f7(0x126)][_0x1be8f7(0x1d3)],_0x1ece9e=_0x4ed8ba['params']['sourceRange'],_0x57339d=_0x4ed8ba[_0x1be8f7(0x126)][_0x1be8f7(0x1d3)];if(_0x1ece9e[_0x1be8f7(0xf0)]>=_0x23e774[_0x1be8f7(0xcd)]&&_0x1ece9e[_0x1be8f7(0xcd)]<=_0x23e774[_0x1be8f7(0xf0)])return{'error':new Error('move\x20row\x20is\x20conflict\x20with\x20move\x20row')};const _0x1be112=_0x2a97ff({'start':_0x1ece9e[_0x1be8f7(0xcd)],'end':_0x1ece9e[_0x1be8f7(0xf0)]},{'start':_0x57339d[_0x1be8f7(0xcd)],'end':_0x57339d[_0x1be8f7(0xf0)]},{'start':_0x23e774[_0x1be8f7(0xcd)],'end':_0x23e774[_0x1be8f7(0xf0)]}),_0x5a83c4=_0x2a97ff({'start':_0x1ece9e['startRow'],'end':_0x1ece9e[_0x1be8f7(0xf0)]},{'start':_0x57339d['startRow'],'end':_0x57339d[_0x1be8f7(0xf0)]},{'start':_0x4f80f1[_0x1be8f7(0xcd)],'end':_0x4f80f1[_0x1be8f7(0xf0)]});_0x1be112&&_0x5a83c4?(_0x289d5b['params'][_0x1be8f7(0x1ad)]['startRow']+=_0x1be112[_0x1be8f7(0xcc)],_0x289d5b[_0x1be8f7(0x126)][_0x1be8f7(0x1ad)][_0x1be8f7(0xf0)]+=_0x1be112[_0x1be8f7(0xcc)]+(_0x1be112[_0x1be8f7(0x210)]||0x0),_0x289d5b[_0x1be8f7(0x126)][_0x1be8f7(0x1d3)][_0x1be8f7(0xcd)]+=_0x5a83c4['step'],_0x289d5b['params'][_0x1be8f7(0x1d3)][_0x1be8f7(0xf0)]+=_0x5a83c4[_0x1be8f7(0xcc)]+(_0x5a83c4[_0x1be8f7(0x210)]||0x0)):_0x289d5b['id']=_0x44f38d['id'];const _0x534dee=_0x2a97ff({'start':_0x23e774[_0x1be8f7(0xcd)],'end':_0x23e774['endRow']},{'start':_0x4f80f1['startRow'],'end':_0x4f80f1[_0x1be8f7(0xf0)]},{'start':_0x1ece9e[_0x1be8f7(0xcd)],'end':_0x1ece9e[_0x1be8f7(0xf0)]}),_0x2e4020=_0x2a97ff({'start':_0x23e774[_0x1be8f7(0xcd)],'end':_0x23e774[_0x1be8f7(0xf0)]},{'start':_0x4f80f1[_0x1be8f7(0xcd)],'end':_0x4f80f1[_0x1be8f7(0xf0)]},{'start':_0x57339d['startRow'],'end':_0x57339d[_0x1be8f7(0xf0)]});return _0x534dee&&_0x2e4020?(_0x4a4691[_0x1be8f7(0x126)][_0x1be8f7(0x1ad)][_0x1be8f7(0xcd)]+=_0x534dee[_0x1be8f7(0xcc)],_0x4a4691['params'][_0x1be8f7(0x1ad)][_0x1be8f7(0xf0)]+=_0x534dee['step']+(_0x534dee[_0x1be8f7(0x210)]||0x0),_0x4a4691[_0x1be8f7(0x126)][_0x1be8f7(0x1d3)][_0x1be8f7(0xcd)]+=_0x2e4020[_0x1be8f7(0xcc)],_0x4a4691['params']['targetRange'][_0x1be8f7(0xf0)]+=_0x2e4020[_0x1be8f7(0xcc)]+(_0x2e4020[_0x1be8f7(0x210)]||0x0)):_0x4a4691['id']=_0x44f38d['id'],{'m1Prime':_0x4a4691,'m2Prime':_0x289d5b};}},cs={'m1':_0x79cdbf['id'],'m2':_0x5775f8['id'],'handler'(_0x4ac044,_0x415dbd){const _0x44f99e=_0x59a5e,_0x5b00ac={'m1Prime':_0x4ac044,'m2Prime':_0x415dbd};if(_0x4ac044['params']['unitId']!==_0x415dbd[_0x44f99e(0x126)]['unitId']||_0x4ac044[_0x44f99e(0x126)][_0x44f99e(0x18c)]!==_0x415dbd[_0x44f99e(0x126)][_0x44f99e(0x18c)])return _0x5b00ac;const _0x59e995=_0x589265[_0x44f99e(0x1cb)](_0x4ac044),_0x196c23=_0x589265[_0x44f99e(0x1cb)](_0x415dbd),{sourceRange:_0x2b646a,targetRange:_0x4a189c}=_0x4ac044['params'],_0x4d25f4={'start':_0x2b646a['startRow'],'end':_0x2b646a['endRow']},_0x2c079e={'start':_0x4a189c[_0x44f99e(0xcd)],'end':_0x4a189c['endRow']};return _0x196c23[_0x44f99e(0x126)][_0x44f99e(0x238)]['some'](_0x111342=>{const _0x21ba18=_0x44f99e,_0x49ba3a={'start':_0x111342[_0x21ba18(0xcd)],'end':_0x111342['endRow']},_0x1ad8cb=H(_0x4d25f4,_0x49ba3a),_0x4217b2=H(_0x2c079e,_0x49ba3a);if(_0x1ad8cb||_0x4217b2)return!0x0;const _0x238dc5=_0x2a97ff(_0x4d25f4,_0x2c079e,_0x49ba3a);return _0x238dc5['length']!==0x0?!0x0:(_0x111342[_0x21ba18(0xcd)]+=_0x238dc5[_0x21ba18(0xcc)],_0x111342['endRow']+=_0x238dc5['step'],!0x1);})?{'error':new Error(_0x44f99e(0x20a))}:{'m1Prime':_0x59e995,'m2Prime':_0x196c23};}},ps={'m1':_0x79cdbf['id'],'m2':_0x49900b['id'],'handler'(_0x47744b,_0x5937dd){const _0x93dd8e=_0x59a5e,_0x19f464=_0x589265[_0x93dd8e(0x1cb)](_0x47744b),_0x2f422f=_0x589265[_0x93dd8e(0x1cb)](_0x5937dd);if(_0x47744b['params'][_0x93dd8e(0x10f)]!==_0x5937dd['params'][_0x93dd8e(0x10f)]||_0x47744b[_0x93dd8e(0x126)][_0x93dd8e(0x18c)]!==_0x5937dd[_0x93dd8e(0x126)][_0x93dd8e(0x18c)])return{'m1Prime':_0x19f464,'m2Prime':_0x2f422f};const _0x498c79=_0x2f422f[_0x93dd8e(0x126)]['ranges'][_0x93dd8e(0x247)]((_0x1f49f4,_0x130c14)=>{const _0x1d265d=_0x93dd8e,{sourceRange:_0x3f345e,targetRange:_0xc762e2}=_0x47744b['params'],_0x4b8736={..._0x130c14};return _0x3f345e[_0x1d265d(0xf0)]<_0x4b8736['startRow']&&_0xc762e2[_0x1d265d(0xcd)]>_0x4b8736[_0x1d265d(0xf0)]?(_0x4b8736[_0x1d265d(0xcd)]-=_0x3f345e[_0x1d265d(0xf0)]-_0x3f345e['startRow']+0x1,_0x4b8736[_0x1d265d(0xf0)]-=_0x3f345e['endRow']-_0x3f345e[_0x1d265d(0xcd)]+0x1,K(_0x4b8736)&&_0x1f49f4[_0x1d265d(0x112)](_0x4b8736)):_0x3f345e[_0x1d265d(0xcd)]>_0x4b8736[_0x1d265d(0xf0)]&&_0xc762e2[_0x1d265d(0xf0)]<_0x4b8736[_0x1d265d(0xcd)]?(_0x4b8736[_0x1d265d(0xcd)]+=_0x3f345e[_0x1d265d(0xf0)]-_0x3f345e['startRow']+0x1,_0x4b8736[_0x1d265d(0xf0)]+=_0x3f345e['endRow']-_0x3f345e[_0x1d265d(0xcd)]+0x1,K(_0x4b8736)&&_0x1f49f4[_0x1d265d(0x112)](_0x4b8736)):_0xff1ead['intersects'](_0x4b8736,_0x3f345e)||_0xff1ead[_0x1d265d(0x1fd)](_0x4b8736,_0xc762e2)||_0x1f49f4[_0x1d265d(0x112)](_0x4b8736),_0x1f49f4;},[]);return _0x2f422f[_0x93dd8e(0x126)]['ranges']=_0x498c79,_0x2f422f[_0x93dd8e(0x126)][_0x93dd8e(0x238)][_0x93dd8e(0x210)]===0x0&&(_0x2f422f['id']=_0x44f38d['id']),{'m1Prime':_0x19f464,'m2Prime':_0x2f422f};}},fs={'m1':_0x79cdbf['id'],'m2':_0x2a2d75['id'],'handler'(_0x49634a,_0x4d225c){const _0x4d7f7f=_0x59a5e;var _0x1b5b2b;const _0x4ea54f={'m1Prime':_0x49634a,'m2Prime':_0x4d225c};if(_0x49634a[_0x4d7f7f(0x126)]['unitId']!==_0x4d225c['params']['unitId']||_0x49634a[_0x4d7f7f(0x126)][_0x4d7f7f(0x18c)]!==_0x4d225c[_0x4d7f7f(0x126)][_0x4d7f7f(0x18c)])return _0x4ea54f;const _0x3397bb=Rs(_0x49634a[_0x4d7f7f(0x126)][_0x4d7f7f(0x1ad)],_0x49634a[_0x4d7f7f(0x126)][_0x4d7f7f(0x1d3)]),_0x1dc580=_0x589265['deepClone'](_0x4d225c),{range:_0x20d471}=_0x1dc580[_0x4d7f7f(0x126)],_0x5c9194=Array[_0x4d7f7f(0x16d)]({'length':_0x20d471[_0x4d7f7f(0xf0)]-_0x20d471[_0x4d7f7f(0xcd)]+0x1},(_0x316208,_0x554e2e)=>_0x554e2e+_0x20d471['startRow']),_0x11f3ee={},_0x3fe7fe={},_0x292986=Math[_0x4d7f7f(0x19c)](_0x49634a[_0x4d7f7f(0x126)][_0x4d7f7f(0x1ad)][_0x4d7f7f(0xcd)],_0x49634a[_0x4d7f7f(0x126)]['targetRange'][_0x4d7f7f(0xcd)],..._0x5c9194),_0x2879fc=Math[_0x4d7f7f(0x14b)](_0x49634a[_0x4d7f7f(0x126)][_0x4d7f7f(0x1ad)][_0x4d7f7f(0xf0)],_0x49634a[_0x4d7f7f(0x126)][_0x4d7f7f(0x1d3)][_0x4d7f7f(0xf0)],..._0x5c9194);for(let _0x18b982=_0x292986;_0x18b982<=_0x2879fc;_0x18b982++){const _0x1aedba=_0x18b982,_0x395cb7=(_0x1b5b2b=_0x4d225c['params'][_0x4d7f7f(0x135)][_0x18b982])!=null?_0x1b5b2b:_0x1aedba,_0x150bd7=_0x3397bb(_0x395cb7);_0x1aedba!==_0x150bd7&&(_0x11f3ee[_0x1aedba]=_0x150bd7),_0x395cb7!==_0x150bd7&&(_0x3fe7fe[_0x395cb7]=_0x150bd7);}_0x1dc580[_0x4d7f7f(0x126)]['order']=_0x11f3ee;const _0x43c0ba=Object[_0x4d7f7f(0x10b)](_0x11f3ee)['map'](Number);_0x20d471[_0x4d7f7f(0xcd)]=Math[_0x4d7f7f(0x19c)](..._0x43c0ba),_0x20d471[_0x4d7f7f(0xf0)]=Math[_0x4d7f7f(0x14b)](..._0x43c0ba);const _0x3731e0=[_0x49634a],_0x51d625=Object[_0x4d7f7f(0x10b)](_0x3fe7fe)[_0x4d7f7f(0xea)](Number);return _0x51d625[_0x4d7f7f(0x210)]>0x0&&_0x3731e0['unshift']({'id':_0x2a2d75['id'],'params':{'unitId':_0x49634a[_0x4d7f7f(0x126)][_0x4d7f7f(0x10f)],'subUnitId':_0x49634a[_0x4d7f7f(0x126)][_0x4d7f7f(0x18c)],'range':{'startColumn':_0x4d225c['params'][_0x4d7f7f(0x114)]['startColumn'],'endColumn':_0x4d225c[_0x4d7f7f(0x126)][_0x4d7f7f(0x114)][_0x4d7f7f(0x104)],'startRow':Math[_0x4d7f7f(0x19c)](..._0x51d625),'endRow':Math[_0x4d7f7f(0x14b)](..._0x51d625)},'order':_0x3fe7fe}}),{'m1Prime':_0x3731e0,'m2Prime':_0x1dc580};}},Rs=(_0x126286,_0x582b35)=>{const _0x21a453=_0x59a5e,_0x523df1=_0x126286['endRow']-_0x126286[_0x21a453(0xcd)]+0x1,_0x4a852d=_0x126286['startRow'],_0x337d56=_0x582b35[_0x21a453(0xcd)];return _0x97b611=>{const _0x55a381=_0x21a453;if(_0x4a852d<=_0x337d56){const _0x5fa18c=_0x582b35[_0x55a381(0xcd)]-_0x126286['endRow']-0x1;if(_0x97b611>=_0x126286['startRow']&&_0x97b611<=_0x126286[_0x55a381(0xf0)])return _0x97b611+_0x5fa18c;if(_0x97b611>_0x126286['endRow']&&_0x97b611<_0x582b35['startRow'])return _0x97b611-_0x523df1;}if(_0x4a852d>_0x337d56){const _0x520d7f=_0x126286['startRow']-_0x582b35[_0x55a381(0xcd)];if(_0x97b611>=_0x582b35['startRow']&&_0x97b611<_0x126286[_0x55a381(0xcd)])return _0x97b611+_0x523df1;if(_0x97b611>=_0x126286[_0x55a381(0xcd)]&&_0x97b611<=_0x126286[_0x55a381(0xf0)])return _0x97b611-_0x520d7f;}return _0x97b611;};},hs={'m1':_0x79cdbf['id'],'m2':_0x432da8['id'],'handler'(_0x359bbb,_0x32cf99){const _0xd7dbf9=_0x59a5e,_0x1eceb0={'m1Prime':_0x359bbb,'m2Prime':_0x32cf99};if(_0x359bbb[_0xd7dbf9(0x126)]['unitId']!==_0x32cf99[_0xd7dbf9(0x126)][_0xd7dbf9(0x10f)]||_0x359bbb[_0xd7dbf9(0x126)][_0xd7dbf9(0x18c)]!==_0x32cf99['params']['subUnitId'])return _0x1eceb0;const _0x1fcb12=[_0x589265[_0xd7dbf9(0x1cb)](_0x359bbb)],_0x3d6907=_0x589265[_0xd7dbf9(0x1cb)](_0x32cf99),{sourceRange:_0x389711,targetRange:_0x4abd54}=_0x359bbb['params'],_0x5b8b2e={'start':_0x389711[_0xd7dbf9(0xcd)],'end':_0x389711[_0xd7dbf9(0xf0)]},_0x2a5de7={'start':_0x4abd54[_0xd7dbf9(0xcd)],'end':_0x4abd54[_0xd7dbf9(0xf0)]},{values:_0x15f193}=_0x3d6907[_0xd7dbf9(0x126)],_0x35c71b=[];let _0x993041=!0x1;for(const _0x19ae71 in _0x15f193){const _0x3ad97a=_0x15f193[_0x19ae71];if(_0x35c71b['push'](..._0x3ad97a['ranges']),_0x3ad97a[_0xd7dbf9(0x238)]['some'](_0x2da776=>{const _0x4da042=_0xd7dbf9,_0x1b4629={'start':_0x2da776[_0x4da042(0xcd)],'end':_0x2da776[_0x4da042(0xf0)]},_0x18b5db=H(_0x5b8b2e,_0x1b4629),_0xc815dd=H(_0x2a5de7,_0x1b4629);if(_0x18b5db||_0xc815dd)return!0x0;const _0x234ed0=_0x2a97ff(_0x5b8b2e,_0x2a5de7,_0x1b4629);return _0x234ed0['length']!==0x0?!0x0:(_0x234ed0[_0x4da042(0xcc)]!==0x0&&(_0x993041=!0x0),_0x2da776[_0x4da042(0xcd)]+=_0x234ed0['step'],_0x2da776[_0x4da042(0xf0)]+=_0x234ed0[_0x4da042(0xcc)],!0x1);}))return{'error':new Error(_0xd7dbf9(0x16b))};}if(_0x993041){const _0x2d1d3c={'id':_0x5775f8['id'],'params':{'unitId':_0x32cf99[_0xd7dbf9(0x126)]['unitId'],'subUnitId':_0x32cf99[_0xd7dbf9(0x126)][_0xd7dbf9(0x18c)],'ranges':_0x35c71b}};_0x1fcb12[_0xd7dbf9(0x112)](_0x2d1d3c,_0x3d6907);}return{'m1Prime':_0x1fcb12,'m2Prime':_0x3d6907};}},gs={'m1':_0x79cdbf['id'],'m2':_0x36f561['id'],'handler'(_0x208c0f,_0x19e6a3){const _0x83bd37=_0x59a5e,_0xf04d57={'m1Prime':_0x208c0f,'m2Prime':_0x19e6a3};if(_0x208c0f['params'][_0x83bd37(0x10f)]!==_0x19e6a3[_0x83bd37(0x126)][_0x83bd37(0x10f)]||_0x208c0f[_0x83bd37(0x126)][_0x83bd37(0x18c)]!==_0x19e6a3[_0x83bd37(0x126)][_0x83bd37(0x18c)])return _0xf04d57;const _0x3f6735=[_0x589265['deepClone'](_0x208c0f)],_0x21d3d8=_0x589265[_0x83bd37(0x1cb)](_0x19e6a3),_0x2b0e4b=new _0x33d61f(_0x21d3d8[_0x83bd37(0x126)][_0x83bd37(0x153)]),{sourceRange:_0x519b89,targetRange:_0x48e4b6}=_0x208c0f[_0x83bd37(0x126)],_0x3c38a1=_0x519b89[_0x83bd37(0xcd)],_0x317192=_0x519b89[_0x83bd37(0xf0)]-_0x519b89[_0x83bd37(0xcd)]+0x1,_0x505141=_0x48e4b6['startRow'];_0x2b0e4b[_0x83bd37(0x12b)](_0x3c38a1,_0x317192,_0x505141);const _0x2c99da=new _0x33d61f();let _0x53809d=!0x1;if(_0x2b0e4b[_0x83bd37(0x1d9)]((_0x47000d,_0x26d76d,_0x222c3b)=>{const _0x222322=_0x83bd37;if(_0x222c3b&&_0x222c3b['f']){const _0x4e7f81=_0x222c3b['f'];let _0x731356=!0x1;const _0x45fa14=dt(_0x208c0f[_0x222322(0x126)]['unitId'],_0x208c0f[_0x222322(0x126)][_0x222322(0x18c)],_0x4e7f81,_0x372224=>{const _0x2115d7=_0x222322,_0x25ab26=_0x2a97ff({'start':_0x208c0f[_0x2115d7(0x126)]['sourceRange'][_0x2115d7(0xcd)],'end':_0x208c0f['params'][_0x2115d7(0x1ad)][_0x2115d7(0xf0)]},{'start':_0x208c0f[_0x2115d7(0x126)][_0x2115d7(0x1d3)]['startRow'],'end':_0x208c0f[_0x2115d7(0x126)][_0x2115d7(0x1d3)]['endRow']},{'start':_0x372224[_0x2115d7(0xcd)],'end':_0x372224[_0x2115d7(0xf0)]});return(_0x25ab26[_0x2115d7(0xcc)]!==0x0||_0x25ab26[_0x2115d7(0x210)]!==0x0)&&(_0x731356=!0x0,_0x372224[_0x2115d7(0xcd)]+=_0x25ab26[_0x2115d7(0xcc)],_0x372224[_0x2115d7(0xf0)]+=_0x25ab26['step']+_0x25ab26[_0x2115d7(0x210)]),_0x372224;});_0x731356&&(_0x53809d=!0x0,_0x222c3b['f']=_0x45fa14,_0x2c99da[_0x222322(0xef)](_0x47000d,_0x26d76d,{..._0x222c3b}));}}),_0x53809d){const _0x5be766={'id':_0x36f561['id'],'params':{'unitId':_0x19e6a3['params'][_0x83bd37(0x10f)],'subUnitId':_0x19e6a3[_0x83bd37(0x126)][_0x83bd37(0x18c)],'cellValue':_0x2c99da[_0x83bd37(0x131)]()}};_0x3f6735['push'](_0x5be766);}return _0x21d3d8[_0x83bd37(0x126)][_0x83bd37(0x153)]=_0x2b0e4b['getMatrix'](),{'m1Prime':_0x3f6735,'m2Prime':_0x21d3d8};}},Is={'m1':_0x79cdbf['id'],'m2':_0x1932a5['id'],'handler'(_0x15eb90,_0x1af231){const _0x444f29=_0x59a5e,_0x489b33={'m1Prime':_0x15eb90,'m2Prime':_0x1af231};if(_0x15eb90[_0x444f29(0x126)][_0x444f29(0x10f)]!==_0x1af231[_0x444f29(0x126)][_0x444f29(0x10f)]||_0x15eb90[_0x444f29(0x126)]['subUnitId']!==_0x1af231['params']['subUnitId'])return _0x489b33;const _0x2cd75f=_0x589265[_0x444f29(0x1cb)](_0x15eb90),_0x13949c=_0x589265['deepClone'](_0x1af231),{rowData:_0x425562}=_0x13949c['params'],{sourceRange:_0x58731d,targetRange:_0x197cb0}=_0x15eb90['params'];return _0x5cdb19(_0x58731d['startRow'],_0x58731d['endRow']-_0x58731d[_0x444f29(0xcd)]+0x1,_0x197cb0['startRow'],_0x425562),{'m1Prime':_0x2cd75f,'m2Prime':_0x13949c};}},ws={'m1':_0x79cdbf['id'],'m2':_0xe65e5c['id'],'handler'(_0x4979b8,_0x329b57){const _0x17c66e=_0x59a5e,_0xc1bbca={'m1Prime':_0x4979b8,'m2Prime':_0x329b57};if(_0x4979b8[_0x17c66e(0x126)][_0x17c66e(0x10f)]!==_0x329b57[_0x17c66e(0x126)][_0x17c66e(0x10f)]||_0x4979b8[_0x17c66e(0x126)]['subUnitId']!==_0x329b57[_0x17c66e(0x126)][_0x17c66e(0x18c)])return _0xc1bbca;const _0x4c0848=_0x589265['deepClone'](_0x4979b8),_0x3906ec=_0x589265[_0x17c66e(0x1cb)](_0x329b57),{ranges:_0x38a41f}=_0x3906ec['params'],{sourceRange:_0x36a746,targetRange:_0x37cc65}=_0x4979b8['params'],_0x30f2e3={'start':_0x36a746['startRow'],'end':_0x36a746[_0x17c66e(0xf0)]},_0x24ccd8={'start':_0x37cc65[_0x17c66e(0xcd)],'end':_0x37cc65[_0x17c66e(0xf0)]};return _0x38a41f[_0x17c66e(0x221)](_0x1f6f8c=>{const _0x3ff417=_0x17c66e,_0x4029c0={'start':_0x1f6f8c[_0x3ff417(0xcd)],'end':_0x1f6f8c[_0x3ff417(0xf0)]},_0x1a7286=H(_0x30f2e3,_0x4029c0),_0x328eba=H(_0x24ccd8,_0x4029c0);if(_0x1a7286||_0x328eba)return!0x0;const _0x7634d=_0x2a97ff(_0x30f2e3,_0x24ccd8,_0x4029c0);return _0x7634d[_0x3ff417(0x210)]!==0x0?!0x0:(_0x1f6f8c['startRow']+=_0x7634d[_0x3ff417(0xcc)],_0x1f6f8c['endRow']+=_0x7634d[_0x3ff417(0xcc)],!0x1);})?{'error':new Error('move\x20row\x20is\x20conflict\x20with\x20set\x20row\x20hidden')}:{'m1Prime':_0x4c0848,'m2Prime':_0x3906ec};}},Cs={'m1':_0x79cdbf['id'],'m2':_0x19e155['id'],'handler'(_0x329a15,_0x20bbb1){const _0x19258a=_0x59a5e,_0x1c04c4={'m1Prime':_0x329a15,'m2Prime':_0x20bbb1};if(_0x329a15[_0x19258a(0x126)]['unitId']!==_0x20bbb1[_0x19258a(0x126)][_0x19258a(0x10f)]||_0x329a15['params']['subUnitId']!==_0x20bbb1['params'][_0x19258a(0x18c)])return _0x1c04c4;const _0x9d30a5=_0x589265[_0x19258a(0x1cb)](_0x329a15),_0x785b7e=_0x589265[_0x19258a(0x1cb)](_0x20bbb1),{ranges:_0x174b67}=_0x785b7e[_0x19258a(0x126)],{sourceRange:_0x4264d7,targetRange:_0xfbdbc0}=_0x329a15[_0x19258a(0x126)],_0x13d15b={'start':_0x4264d7[_0x19258a(0xcd)],'end':_0x4264d7['endRow']},_0x10cd12={'start':_0xfbdbc0[_0x19258a(0xcd)],'end':_0xfbdbc0[_0x19258a(0xf0)]};return _0x174b67[_0x19258a(0x221)](_0x2691a5=>{const _0xc7e366=_0x19258a,_0x557b2f={'start':_0x2691a5['startRow'],'end':_0x2691a5[_0xc7e366(0xf0)]},_0x1e8729=H(_0x13d15b,_0x557b2f),_0x49ecfe=H(_0x10cd12,_0x557b2f);if(_0x1e8729||_0x49ecfe)return!0x0;const _0x32557a=_0x2a97ff(_0x13d15b,_0x10cd12,_0x557b2f);return _0x32557a[_0xc7e366(0x210)]!==0x0?!0x0:(_0x2691a5[_0xc7e366(0xcd)]+=_0x32557a['step'],_0x2691a5[_0xc7e366(0xf0)]+=_0x32557a[_0xc7e366(0xcc)],!0x1);})?{'error':new Error(_0x19258a(0x21d))}:{'m1Prime':_0x9d30a5,'m2Prime':_0x785b7e};}},Ps={'m1':_0x79cdbf['id'],'m2':_0x53e0ba['id'],'handler'(_0x2baf92,_0x93f2b0){const _0x39644c=_0x59a5e,_0x350bd8={'m1Prime':[],'m2Prime':[]};if(_0x2baf92[_0x39644c(0x126)]['unitId']!==_0x93f2b0[_0x39644c(0x126)][_0x39644c(0x10f)]||_0x2baf92[_0x39644c(0x126)][_0x39644c(0x18c)]!==_0x93f2b0[_0x39644c(0x126)][_0x39644c(0x18c)])return _0x350bd8;const _0x21ce02=_0x589265['deepClone'](_0x93f2b0);let _0x25b35d=!0x1;return _0x21ce02['params'][_0x39644c(0x14a)][_0x39644c(0x233)](_0x454937=>{const _0x13b725=_0x39644c,{range:_0xf3d262,primary:_0x1acede}=_0x454937,_0x2a58bc=_0x2a97ff({'start':_0x2baf92[_0x13b725(0x126)][_0x13b725(0x1ad)][_0x13b725(0xcd)],'end':_0x2baf92[_0x13b725(0x126)][_0x13b725(0x1ad)][_0x13b725(0xf0)]},{'start':_0x2baf92[_0x13b725(0x126)][_0x13b725(0x1d3)][_0x13b725(0xcd)],'end':_0x2baf92['params']['targetRange'][_0x13b725(0xf0)]},{'start':_0xf3d262['startRow'],'end':_0xf3d262[_0x13b725(0xf0)]});if(_0x2a58bc[_0x13b725(0x210)]||_0x2a58bc[_0x13b725(0xcc)]){if(_0xf3d262[_0x13b725(0xcd)]+=_0x2a58bc[_0x13b725(0xcc)],_0xf3d262['endRow']+=_0x2a58bc[_0x13b725(0xcc)]+(_0x2a58bc['length']||0x0),_0x1acede){const _0x3692b3=_0x2a97ff({'start':_0x2baf92[_0x13b725(0x126)][_0x13b725(0x1ad)][_0x13b725(0xcd)],'end':_0x2baf92['params'][_0x13b725(0x1ad)]['endRow']},{'start':_0x2baf92['params']['targetRange']['startRow'],'end':_0x2baf92[_0x13b725(0x126)][_0x13b725(0x1d3)][_0x13b725(0xf0)]},{'start':_0x1acede[_0x13b725(0xcd)],'end':_0x1acede['endRow']});(_0x3692b3[_0x13b725(0x210)]||_0x3692b3[_0x13b725(0xcc)])&&(_0x1acede[_0x13b725(0xcd)]+=_0x3692b3[_0x13b725(0xcc)],_0x1acede[_0x13b725(0xf0)]+=_0x3692b3[_0x13b725(0xcc)],_0x1acede['actualRow']+=_0x3692b3['step']);}_0x25b35d=!0x0;}}),_0x25b35d&&_0x350bd8[_0x39644c(0x111)]['push'](_0x21ce02),_0x350bd8;}},Us={'m1':_0x79cdbf['id'],'m2':_0xa0b953['id'],'handler'(_0x4f9623,_0x2c74b4){const _0x88ae72=_0x59a5e,_0x323018={'m1Prime':[_0x4f9623],'m2Prime':[_0x2c74b4]};if(_0x4f9623['params']['unitId']!==_0x2c74b4[_0x88ae72(0x126)][_0x88ae72(0x10f)]||_0x4f9623[_0x88ae72(0x126)][_0x88ae72(0x18c)]!==_0x2c74b4[_0x88ae72(0x126)][_0x88ae72(0x18c)])return _0x323018;const _0x13b261=_0x589265[_0x88ae72(0x1cb)](_0x4f9623),_0x47eccc=_0x589265[_0x88ae72(0x1cb)](_0x2c74b4),_0x147683=_0x2a97ff({'start':_0x4f9623[_0x88ae72(0x126)][_0x88ae72(0x1ad)][_0x88ae72(0xcd)],'end':_0x4f9623[_0x88ae72(0x126)][_0x88ae72(0x1ad)][_0x88ae72(0xf0)]},{'start':_0x4f9623['params'][_0x88ae72(0x1d3)]['startRow'],'end':_0x4f9623['params']['targetRange'][_0x88ae72(0xf0)]},{'start':_0x2c74b4[_0x88ae72(0x126)][_0x88ae72(0x114)][_0x88ae72(0xcd)],'end':_0x2c74b4[_0x88ae72(0x126)][_0x88ae72(0x114)]['endRow']});return _0x47eccc[_0x88ae72(0x126)][_0x88ae72(0x114)][_0x88ae72(0xcd)]+=_0x147683[_0x88ae72(0xcc)],_0x47eccc[_0x88ae72(0x126)][_0x88ae72(0x114)][_0x88ae72(0xf0)]+=_0x147683[_0x88ae72(0xcc)]+_0x147683[_0x88ae72(0x210)],{'m1Prime':[_0x47eccc,_0x13b261],'m2Prime':[_0x47eccc]};}},bs={'m1':_0x79cdbf['id'],'m2':_0x264207['id'],'handler'(_0x43bbbd,_0x1c5bc1){const _0x26d9cf=_0x59a5e,_0x3b21a9={'m1Prime':_0x43bbbd,'m2Prime':_0x1c5bc1};if(_0x43bbbd['params'][_0x26d9cf(0x10f)]!==_0x1c5bc1[_0x26d9cf(0x126)][_0x26d9cf(0x10f)]||_0x43bbbd[_0x26d9cf(0x126)][_0x26d9cf(0x18c)]!==_0x1c5bc1[_0x26d9cf(0x126)][_0x26d9cf(0x18c)])return _0x3b21a9;const _0x1b24ba=_0x589265[_0x26d9cf(0x1cb)](_0x43bbbd),_0x2eeb2f=_0x589265['deepClone'](_0x1c5bc1),{rowsAutoHeightInfo:_0x4b6111}=_0x2eeb2f[_0x26d9cf(0x126)],{sourceRange:_0x502050,targetRange:_0x2819db}=_0x43bbbd[_0x26d9cf(0x126)],_0x33a531={'start':_0x502050[_0x26d9cf(0xcd)],'end':_0x502050['endRow']},_0x24d1ba={'start':_0x2819db[_0x26d9cf(0xcd)],'end':_0x2819db[_0x26d9cf(0xf0)]};return _0x4b6111[_0x26d9cf(0x221)](_0x4affaf=>{const _0x571b43=_0x26d9cf,_0x397a00={'start':_0x4affaf[_0x571b43(0x204)],'end':_0x4affaf[_0x571b43(0x204)]},_0x3aaff0=_0x2a97ff(_0x33a531,_0x24d1ba,_0x397a00);return _0x3aaff0[_0x571b43(0x210)]!==0x0?!0x0:(_0x4affaf[_0x571b43(0x204)]+=_0x3aaff0[_0x571b43(0xcc)],!0x1);})?{'error':new Error(_0x26d9cf(0x182))}:{'m1Prime':_0x1b24ba,'m2Prime':_0x2eeb2f};}},Ms={'m1':_0x79cdbf['id'],'m2':_0x47c35c['id'],'handler'(_0x1b3977,_0x4d4b0d){const _0x14f36a=_0x59a5e,_0x190c6a={'m1Prime':_0x1b3977,'m2Prime':_0x4d4b0d};if(_0x1b3977['params']['unitId']!==_0x4d4b0d['params'][_0x14f36a(0x10f)]||_0x1b3977[_0x14f36a(0x126)][_0x14f36a(0x18c)]!==_0x4d4b0d[_0x14f36a(0x126)][_0x14f36a(0x18c)])return _0x190c6a;const _0x6d3329=_0x589265[_0x14f36a(0x1cb)](_0x1b3977),_0x20c5b2=_0x589265[_0x14f36a(0x1cb)](_0x4d4b0d),{ranges:_0x10b32b,rowHeight:_0x5ea7fe}=_0x20c5b2['params'],{sourceRange:_0x33de26,targetRange:_0x401376}=_0x1b3977['params'],_0xfae8ef={'start':_0x33de26[_0x14f36a(0xcd)],'end':_0x33de26['endRow']},_0x244d96={'start':_0x401376[_0x14f36a(0xcd)],'end':_0x401376[_0x14f36a(0xf0)]};return _0x10b32b[_0x14f36a(0x221)](_0x187aeb=>{const _0x4a09a3=_0x14f36a,_0x25048b={'start':_0x187aeb[_0x4a09a3(0xcd)],'end':_0x187aeb['endRow']},_0x9e110d=_0x2a97ff(_0xfae8ef,_0x244d96,_0x25048b);return _0x9e110d[_0x4a09a3(0x210)]!==0x0?!0x0:(_0x187aeb[_0x4a09a3(0xcd)]+=_0x9e110d[_0x4a09a3(0xcc)],_0x187aeb[_0x4a09a3(0xf0)]+=_0x9e110d[_0x4a09a3(0xcc)],!0x1);})?{'error':new Error('move\x20row\x20is\x20conflict\x20with\x20set\x20worksheet\x20row\x20height')}:(typeof _0x5ea7fe!=_0x14f36a(0x1e1)&&_0x5cdb19(_0x33de26[_0x14f36a(0xcd)],_0x33de26['endRow']-_0x33de26[_0x14f36a(0xcd)]+0x1,_0x401376[_0x14f36a(0xcd)],_0x5ea7fe),{'m1Prime':_0x6d3329,'m2Prime':_0x20c5b2});}},vs={'m1':_0x79cdbf['id'],'m2':_0x5392a6['id'],'handler'(_0x206992,_0x1c2de8){const _0x120b9b=_0x59a5e,_0x28c29d={'m1Prime':_0x206992,'m2Prime':_0x1c2de8};if(_0x206992['params']['unitId']!==_0x1c2de8[_0x120b9b(0x126)][_0x120b9b(0x10f)]||_0x206992[_0x120b9b(0x126)][_0x120b9b(0x18c)]!==_0x1c2de8[_0x120b9b(0x126)][_0x120b9b(0x18c)])return _0x28c29d;const _0x344a77=_0x589265[_0x120b9b(0x1cb)](_0x206992),_0x1a9fae=_0x589265[_0x120b9b(0x1cb)](_0x1c2de8),{ranges:_0xae72b3,autoHeightInfo:_0x3b4e55}=_0x1a9fae[_0x120b9b(0x126)],{sourceRange:_0x3d2bde,targetRange:_0x206ec5}=_0x206992[_0x120b9b(0x126)],_0x2a7b7f={'start':_0x3d2bde[_0x120b9b(0xcd)],'end':_0x3d2bde[_0x120b9b(0xf0)]},_0x32b578={'start':_0x206ec5[_0x120b9b(0xcd)],'end':_0x206ec5[_0x120b9b(0xf0)]};return _0xae72b3[_0x120b9b(0x221)](_0x4da5d8=>{const _0x366a43=_0x120b9b,_0x20d86f={'start':_0x4da5d8['startRow'],'end':_0x4da5d8['endRow']},_0x4f9071=_0x2a97ff(_0x2a7b7f,_0x32b578,_0x20d86f);return _0x4f9071[_0x366a43(0x210)]!==0x0?!0x0:(_0x4da5d8[_0x366a43(0xcd)]+=_0x4f9071[_0x366a43(0xcc)],_0x4da5d8[_0x366a43(0xf0)]+=_0x4f9071['step'],!0x1);})?{'error':new Error(_0x120b9b(0xdf))}:(typeof _0x3b4e55!='number'&&_0x5cdb19(_0x3d2bde['startRow'],_0x3d2bde[_0x120b9b(0xf0)]-_0x3d2bde['startRow']+0x1,_0x206ec5['startRow'],_0x3b4e55),{'m1Prime':_0x344a77,'m2Prime':_0x1a9fae});}},Es={'m1':_0x79cdbf['id'],'m2':_0x164c55['id'],'handler':(_0x5f34b3,_0x21686c)=>{const _0xfd41e=_0x59a5e,_0x377f9c={'m1Prime':_0x5f34b3,'m2Prime':_0x21686c};if(_0x5f34b3['params'][_0xfd41e(0x10f)]!==_0x21686c[_0xfd41e(0x126)][_0xfd41e(0x10f)]||_0x5f34b3[_0xfd41e(0x126)][_0xfd41e(0x18c)]!==_0x21686c[_0xfd41e(0x126)][_0xfd41e(0x18c)])return _0x377f9c;const _0x1d4333={'id':_0xe7e83c['id'],'params':{'unitId':_0x5f34b3[_0xfd41e(0x126)][_0xfd41e(0x10f)],'subUnitId':_0x5f34b3[_0xfd41e(0x126)]['subUnitId'],'fromRange':_0x5f34b3[_0xfd41e(0x126)][_0xfd41e(0x1ad)],'toRange':_0x5f34b3['params'][_0xfd41e(0x1d3)]}},_0x2f90e7=wt(_0x21686c,_0x1d4333);return{'m1Prime':[_0x5f34b3,..._0x2f90e7],'m2Prime':[_0x21686c,..._0x2f90e7]};}},Ss={'m1':_0x79cdbf['id'],'m2':_0x2bcc50['id'],'handler':(_0x4bec3a,_0x261214)=>{const _0x2ee984=_0x59a5e,_0xfd7db9={'m1Prime':_0x4bec3a,'m2Prime':_0x261214};if(_0x4bec3a[_0x2ee984(0x126)][_0x2ee984(0x10f)]!==_0x261214[_0x2ee984(0x126)]['unitId']||_0x261214[_0x2ee984(0x126)][_0x2ee984(0x18c)]!==_0x4bec3a[_0x2ee984(0x126)]['subUnitId'])return _0xfd7db9;const _0x2ad8a8={'id':_0xe7e83c['id'],'params':{'fromRange':_0x4bec3a['params'][_0x2ee984(0x1ad)],'toRange':_0x4bec3a['params'][_0x2ee984(0x1d3)]}},_0x487eee=Ct(_0x261214,_0x2ad8a8);return{'m1Prime':[_0x4bec3a,..._0x487eee],'m2Prime':[_0x261214,..._0x487eee]};}},Ws={'m1':_0x3f9ab9['id'],'m2':_0x58b473['id'],'handler':(_0x1fbed4,_0xf551a7)=>{const _0x1ff3d7=_0x59a5e,_0x232f1c={'m1Prime':_0x1fbed4,'m2Prime':_0xf551a7};if(_0x1fbed4[_0x1ff3d7(0x126)]['unitId']!==_0xf551a7[_0x1ff3d7(0x126)][_0x1ff3d7(0x10f)]||_0x1fbed4[_0x1ff3d7(0x126)]['subUnitId']!==_0xf551a7[_0x1ff3d7(0x126)][_0x1ff3d7(0x18c)])return _0x232f1c;const _0x3bdf5a={'id':_0x4fb42e['id'],'params':{'unitId':_0x1fbed4['params'][_0x1ff3d7(0x10f)],'subUnitId':_0x1fbed4[_0x1ff3d7(0x126)]['subUnitId'],'range':_0x1fbed4[_0x1ff3d7(0x126)]['range']}},_0x484d60=It(_0xf551a7,_0x3bdf5a);return{'m1Prime':[_0x1fbed4,..._0x484d60],'m2Prime':[_0xf551a7,..._0x484d60]};}},Vs={'m1':_0x3f9ab9['id'],'m2':_0x34b1dc['id'],'handler'(_0x746a58,_0x19146b){const _0x58f0be=_0x59a5e,_0x2ed685={'m1Prime':_0x746a58,'m2Prime':_0x19146b};if(_0x746a58[_0x58f0be(0x126)]['unitId']!==_0x19146b[_0x58f0be(0x126)][_0x58f0be(0x10f)]||_0x746a58['params']['subUnitId']!==_0x19146b['params'][_0x58f0be(0x18c)])return _0x2ed685;const _0xf13ab6={'id':_0x4fb42e['id'],'params':{'range':_0x746a58[_0x58f0be(0x126)][_0x58f0be(0x114)]}},_0x3b8aff=Tt(_0x19146b,_0xf13ab6);return{'m1Prime':[_0x746a58,..._0x3b8aff],'m2Prime':[_0x19146b,..._0x3b8aff]};}},_s={'m1':_0x3f9ab9['id'],'m2':_0x223d91['id'],'handler'(_0x105d63,_0x2cf336){const _0x106784=_0x59a5e,_0x57f4a1=ir[_0x106784(0x1ce)](_0x2cf336,_0x105d63);return at(_0x57f4a1)?{'m1Prime':_0x57f4a1['m2Prime'],'m2Prime':_0x57f4a1[_0x106784(0x1da)]}:_0x57f4a1;}},Os={'m1':_0x3f9ab9['id'],'m2':_0x4d7dbd['id'],'handler'(_0x465e24,_0x5b937d){const _0x215c4c=_0x59a5e,_0x1b3a96={'m1Prime':_0x465e24,'m2Prime':_0x5b937d};if(_0x465e24[_0x215c4c(0x126)][_0x215c4c(0x10f)]!==_0x5b937d['params'][_0x215c4c(0x10f)]||_0x465e24[_0x215c4c(0x126)][_0x215c4c(0x18c)]!==_0x5b937d[_0x215c4c(0x126)][_0x215c4c(0x18c)])return _0x1b3a96;const _0x413ddf=_0x589265[_0x215c4c(0x1cb)](_0x465e24),_0x317608=_0x589265[_0x215c4c(0x1cb)](_0x5b937d);if(_0x465e24[_0x215c4c(0x126)][_0x215c4c(0x114)][_0x215c4c(0x11d)]<=_0x5b937d[_0x215c4c(0x126)][_0x215c4c(0x1ad)]['endColumn']&&_0x465e24[_0x215c4c(0x126)]['range']['endColumn']>=_0x5b937d[_0x215c4c(0x126)][_0x215c4c(0x1ad)][_0x215c4c(0x11d)]||_0x465e24[_0x215c4c(0x126)]['range'][_0x215c4c(0x11d)]<=_0x5b937d[_0x215c4c(0x126)]['targetRange'][_0x215c4c(0x104)]&&_0x465e24['params'][_0x215c4c(0x114)][_0x215c4c(0x104)]>=_0x5b937d[_0x215c4c(0x126)][_0x215c4c(0x1d3)][_0x215c4c(0x11d)])return{'error':new Error(_0x215c4c(0x183))};const _0x516734=_0x1465b8(h(_0x465e24[_0x215c4c(0x126)][_0x215c4c(0x114)]),h(_0x5b937d[_0x215c4c(0x126)][_0x215c4c(0x1ad)])),_0xbdf0b9=_0x1465b8(h(_0x465e24[_0x215c4c(0x126)][_0x215c4c(0x114)]),h(_0x5b937d['params'][_0x215c4c(0x1d3)]));_0x516734&&_0xbdf0b9?(_0x317608[_0x215c4c(0x126)][_0x215c4c(0x1ad)][_0x215c4c(0x11d)]+=_0x516734[_0x215c4c(0xcc)],_0x317608[_0x215c4c(0x126)][_0x215c4c(0x1ad)][_0x215c4c(0x104)]+=_0x516734[_0x215c4c(0xcc)]+(_0x516734[_0x215c4c(0x210)]||0x0),_0x317608['params'][_0x215c4c(0x1d3)]['startColumn']+=_0xbdf0b9[_0x215c4c(0xcc)],_0x317608[_0x215c4c(0x126)][_0x215c4c(0x1d3)][_0x215c4c(0x104)]+=_0xbdf0b9[_0x215c4c(0xcc)]+(_0xbdf0b9[_0x215c4c(0x210)]||0x0)):_0x317608['id']=_0x44f38d['id'];const _0x2fb09b=_0x2a97ff({'start':_0x5b937d[_0x215c4c(0x126)][_0x215c4c(0x1ad)]['startColumn'],'end':_0x5b937d[_0x215c4c(0x126)][_0x215c4c(0x1ad)]['endColumn']},{'start':_0x5b937d['params'][_0x215c4c(0x1d3)][_0x215c4c(0x11d)],'end':_0x5b937d[_0x215c4c(0x126)][_0x215c4c(0x1d3)][_0x215c4c(0x104)]},{'start':_0x465e24[_0x215c4c(0x126)][_0x215c4c(0x114)][_0x215c4c(0x11d)],'end':_0x465e24['params']['range'][_0x215c4c(0x104)]});if(_0x2fb09b){const {step:_0x2d273b,length:_0x4c4860}=_0x2fb09b;_0x413ddf['params'][_0x215c4c(0x114)][_0x215c4c(0x11d)]+=_0x2d273b,_0x413ddf[_0x215c4c(0x126)][_0x215c4c(0x114)][_0x215c4c(0x104)]+=_0x2d273b+(_0x4c4860||0x0);}else _0x413ddf['params'][_0x215c4c(0x114)]['startColumn']=0x0,_0x413ddf[_0x215c4c(0x126)][_0x215c4c(0x114)][_0x215c4c(0x104)]=-0x1;return{'m1Prime':_0x413ddf,'m2Prime':_0x317608};}},ys={'m1':_0x3f9ab9['id'],'m2':_0x442c2d['id'],'handler'(_0x2689cb,_0x26ce72){const _0x4a88fd=_0x59a5e,_0x27ef3d={'m1Prime':_0x2689cb,'m2Prime':_0x26ce72};if(_0x2689cb[_0x4a88fd(0x126)][_0x4a88fd(0x10f)]!==_0x26ce72['params'][_0x4a88fd(0x10f)]||_0x2689cb[_0x4a88fd(0x126)]['subUnitId']!==_0x26ce72['params'][_0x4a88fd(0x16d)][_0x4a88fd(0x18c)]&&_0x2689cb[_0x4a88fd(0x126)][_0x4a88fd(0x18c)]!==_0x26ce72[_0x4a88fd(0x126)]['to']['subUnitId'])return _0x27ef3d;const _0x36b1ac=_0x589265[_0x4a88fd(0x1cb)](_0x2689cb),_0x5949a7=_0x589265['deepClone'](_0x26ce72),{startColumn:_0x28249c,endColumn:_0x1993bf}=_0x2689cb['params'][_0x4a88fd(0x114)];if(_0x2689cb[_0x4a88fd(0x126)][_0x4a88fd(0x18c)]===_0x26ce72['params']['from']['subUnitId']){const _0x141023=new _0x33d61f(_0x5949a7[_0x4a88fd(0x126)][_0x4a88fd(0x16d)][_0x4a88fd(0x18f)]),_0x45c8ec=_0x141023[_0x4a88fd(0x1a7)](),{startColumn:_0x3ca59a,endColumn:_0x167050}=_0x45c8ec;if(_0x3ca59a<=_0x1993bf&&_0x167050>=_0x28249c)return{'error':new Error(_0x4a88fd(0x1d8))};_0x1993bf<_0x3ca59a&&_0x141023['removeColumns'](_0x28249c,_0x1993bf-_0x28249c+0x1),_0x5949a7[_0x4a88fd(0x126)][_0x4a88fd(0x16d)][_0x4a88fd(0x18f)]=_0x141023['getMatrix']();}if(_0x2689cb[_0x4a88fd(0x126)][_0x4a88fd(0x18c)]===_0x26ce72[_0x4a88fd(0x126)]['to'][_0x4a88fd(0x18c)]){const _0x3c1b23=new _0x33d61f(_0x5949a7['params']['to'][_0x4a88fd(0x18f)]),_0xacf594=_0x3c1b23['getDataRange'](),{startColumn:_0x39a8ab,endColumn:_0x3ef7ff}=_0xacf594;if(_0x39a8ab<=_0x1993bf&&_0x3ef7ff>=_0x28249c)return{'error':new Error(_0x4a88fd(0x1d8))};_0x1993bf<_0x39a8ab&&_0x3c1b23[_0x4a88fd(0x1ae)](_0x28249c,_0x1993bf-_0x28249c+0x1),_0x5949a7[_0x4a88fd(0x126)]['to'][_0x4a88fd(0x18f)]=_0x3c1b23[_0x4a88fd(0x131)]();}return{'m1Prime':_0x36b1ac,'m2Prime':_0x5949a7};}},Ns={'m1':_0x3f9ab9['id'],'m2':_0x3f9ab9['id'],'handler'(_0x1dfe1d,_0x5cf331){const _0x38ee9c=_0x59a5e,_0xe28094={'m1Prime':_0x1dfe1d,'m2Prime':_0x5cf331};if(_0x1dfe1d[_0x38ee9c(0x126)]['unitId']!==_0x5cf331['params']['unitId']||_0x1dfe1d[_0x38ee9c(0x126)][_0x38ee9c(0x18c)]!==_0x5cf331[_0x38ee9c(0x126)][_0x38ee9c(0x18c)])return _0xe28094;const _0x21389a=_0x589265[_0x38ee9c(0x1cb)](_0x1dfe1d),_0xb46af0=_0x589265['deepClone'](_0x5cf331),_0x4bca67=_0x1465b8(_0x1dfe1d[_0x38ee9c(0x126)][_0x38ee9c(0x114)],_0x5cf331['params'][_0x38ee9c(0x114)]);if(_0x4bca67){const {step:_0x2ffe3a,length:_0xbd619c}=_0x4bca67;_0xb46af0[_0x38ee9c(0x126)]['range'][_0x38ee9c(0x11d)]+=_0x2ffe3a,_0xb46af0[_0x38ee9c(0x126)][_0x38ee9c(0x114)]['endColumn']+=_0x2ffe3a+(_0xbd619c||0x0);}else _0xb46af0['id']=_0x44f38d['id'];const _0x23e515=_0x1465b8(_0x5cf331['params'][_0x38ee9c(0x114)],_0x1dfe1d[_0x38ee9c(0x126)][_0x38ee9c(0x114)]);if(_0x23e515){const {step:_0x175c88,length:_0x4a8a83}=_0x23e515;_0x21389a[_0x38ee9c(0x126)][_0x38ee9c(0x114)][_0x38ee9c(0x11d)]+=_0x175c88,_0x21389a[_0x38ee9c(0x126)][_0x38ee9c(0x114)][_0x38ee9c(0x104)]+=_0x175c88+(_0x4a8a83||0x0);}else _0x21389a['id']=_0x44f38d['id'];return{'m1Prime':_0x21389a,'m2Prime':_0xb46af0};}},Ds={'m1':_0x3f9ab9['id'],'m2':_0x5775f8['id'],'handler'(_0xb473c7,_0x5149f2){const _0x2b05d2=_0x59a5e,_0x49c799={'m1Prime':_0xb473c7,'m2Prime':_0x5149f2};if(_0xb473c7['params'][_0x2b05d2(0x10f)]!==_0x5149f2[_0x2b05d2(0x126)][_0x2b05d2(0x10f)]||_0xb473c7[_0x2b05d2(0x126)][_0x2b05d2(0x18c)]!==_0x5149f2[_0x2b05d2(0x126)][_0x2b05d2(0x18c)])return _0x49c799;const _0x13709d=_0x589265['deepClone'](_0xb473c7),_0x180d0b=_0x589265[_0x2b05d2(0x1cb)](_0x5149f2),{ranges:_0x494a8d}=_0x180d0b[_0x2b05d2(0x126)];return _0x494a8d[_0x2b05d2(0x221)](_0x33065f=>{const _0xf4a37f=_0x2b05d2,_0x405e92=_0x1465b8(h(_0xb473c7['params'][_0xf4a37f(0x114)]),h(_0x33065f));return _0x405e92===null||_0x405e92[_0xf4a37f(0x210)]!==0x0?!0x0:(_0x33065f['startColumn']+=_0x405e92[_0xf4a37f(0xcc)],_0x33065f[_0xf4a37f(0x104)]+=_0x405e92[_0xf4a37f(0xcc)],!0x1);})?{'error':new Error(_0x2b05d2(0xf1))}:{'m1Prime':_0x13709d,'m2Prime':_0x180d0b};}},As={'m1':_0x3f9ab9['id'],'m2':_0x49900b['id'],'handler'(_0x157843,_0x399abf){const _0x4f0691=_0x59a5e,_0x464175=_0x589265[_0x4f0691(0x1cb)](_0x157843),_0xb6f059=_0x589265['deepClone'](_0x399abf);if(_0x157843[_0x4f0691(0x126)][_0x4f0691(0x10f)]!==_0x399abf['params'][_0x4f0691(0x10f)]||_0x157843[_0x4f0691(0x126)][_0x4f0691(0x18c)]!==_0x399abf['params'][_0x4f0691(0x18c)])return{'m1Prime':_0x464175,'m2Prime':_0xb6f059};const _0x306a44=_0xb6f059[_0x4f0691(0x126)]['ranges'][_0x4f0691(0x247)]((_0x41e78c,_0x5b0cd0)=>{const _0x382ece=_0x4f0691,_0x55eb04=_0x464175[_0x382ece(0x126)][_0x382ece(0x114)],_0x4a47f=_0x55eb04[_0x382ece(0x104)]-_0x55eb04['startColumn']+0x1;let _0x2af009={..._0x5b0cd0};return _0x55eb04[_0x382ece(0x11d)]>_0x5b0cd0['endColumn']?_0x2af009={..._0x5b0cd0}:_0x55eb04['startColumn']>=_0x5b0cd0['startColumn']&&_0x55eb04['startColumn']<=_0x5b0cd0[_0x382ece(0x104)]&&_0x55eb04[_0x382ece(0x104)]>_0x5b0cd0[_0x382ece(0x104)]?(_0x2af009[_0x382ece(0x104)]=_0x55eb04['startColumn']-0x1,_0x55eb04['startColumn']===_0x5b0cd0[_0x382ece(0x11d)]&&(_0x2af009=null)):_0x55eb04[_0x382ece(0x11d)]>_0x5b0cd0[_0x382ece(0x11d)]&&_0x55eb04['endColumn']<_0x5b0cd0['endColumn']?_0x2af009[_0x382ece(0x104)]=_0x5b0cd0['endColumn']-_0x4a47f:_0x55eb04[_0x382ece(0x11d)]<_0x5b0cd0['startColumn']&&_0x55eb04[_0x382ece(0x104)]>=_0x5b0cd0['startColumn']&&_0x55eb04[_0x382ece(0x104)]<=_0x5b0cd0[_0x382ece(0x104)]?(_0x2af009[_0x382ece(0x11d)]=_0x55eb04[_0x382ece(0x11d)],_0x2af009['endColumn']=_0x5b0cd0[_0x382ece(0x104)]-_0x4a47f,_0x55eb04[_0x382ece(0x104)]===_0x5b0cd0['endColumn']&&(_0x2af009=null)):_0x55eb04[_0x382ece(0x11d)]<=_0x5b0cd0[_0x382ece(0x11d)]&&_0x55eb04[_0x382ece(0x104)]>=_0x5b0cd0[_0x382ece(0x104)]?_0x2af009=null:_0x55eb04[_0x382ece(0x104)]<_0x5b0cd0['startColumn']&&(_0x2af009[_0x382ece(0x11d)]=_0x5b0cd0[_0x382ece(0x11d)]-_0x4a47f,_0x2af009['endColumn']=_0x5b0cd0[_0x382ece(0x104)]-_0x4a47f),_0x2af009&&!(_0x2af009['startRow']===_0x2af009['endRow']&&_0x2af009[_0x382ece(0x11d)]===_0x2af009[_0x382ece(0x104)])&&_0x41e78c['push'](_0x2af009),_0x41e78c;},[]);return _0xb6f059[_0x4f0691(0x126)][_0x4f0691(0x238)]=_0x306a44,{'m1Prime':_0x464175,'m2Prime':_0xb6f059};}},Ts={'m1':_0x3f9ab9['id'],'m2':_0x2a2d75['id'],'handler'(_0x5f2852,_0x3dae38){const _0x375bcd=_0x59a5e,_0x2f29ad={'m1Prime':_0x5f2852,'m2Prime':_0x3dae38};if(_0x5f2852['params'][_0x375bcd(0x10f)]!==_0x3dae38['params'][_0x375bcd(0x10f)]||_0x5f2852[_0x375bcd(0x126)][_0x375bcd(0x18c)]!==_0x3dae38[_0x375bcd(0x126)]['subUnitId'])return _0x2f29ad;const _0x1e6287=_0x1465b8(h(_0x5f2852[_0x375bcd(0x126)][_0x375bcd(0x114)]),h(_0x3dae38[_0x375bcd(0x126)][_0x375bcd(0x114)]));if(!_0x1e6287)return{'m1Prime':_0x5f2852,'m2Prime':[]};const _0x887f4c=_0x589265[_0x375bcd(0x1cb)](_0x3dae38);return _0x887f4c[_0x375bcd(0x126)][_0x375bcd(0x114)][_0x375bcd(0x11d)]+=_0x1e6287[_0x375bcd(0xcc)],_0x887f4c[_0x375bcd(0x126)][_0x375bcd(0x114)][_0x375bcd(0x104)]+=_0x1e6287[_0x375bcd(0xcc)]+(_0x1e6287[_0x375bcd(0x210)]||0x0),{'m1Prime':_0x5f2852,'m2Prime':_0x887f4c};}},Ls={'m1':_0x3f9ab9['id'],'m2':_0xac87f6['id'],'handler'(_0xec5385,_0x20926a){const _0x3a5057=_0x59a5e,_0x53aaba={'m1Prime':_0xec5385,'m2Prime':_0x20926a};if(_0xec5385[_0x3a5057(0x126)][_0x3a5057(0x10f)]!==_0x20926a['params'][_0x3a5057(0x10f)]||_0xec5385[_0x3a5057(0x126)][_0x3a5057(0x18c)]!==_0x20926a['params'][_0x3a5057(0x18c)])return _0x53aaba;const _0x1f2bdb=_0x589265[_0x3a5057(0x1cb)](_0xec5385),_0x343fff=_0x589265[_0x3a5057(0x1cb)](_0x20926a),{columnData:_0x55a4ff}=_0x343fff[_0x3a5057(0x126)];return _0xaec4eb(_0xec5385['params'][_0x3a5057(0x114)][_0x3a5057(0x11d)],_0xec5385['params'][_0x3a5057(0x114)][_0x3a5057(0x104)]-_0xec5385[_0x3a5057(0x126)][_0x3a5057(0x114)]['startColumn']+0x1,_0x55a4ff),{'m1Prime':_0x1f2bdb,'m2Prime':_0x343fff};}},ks={'m1':_0x3f9ab9['id'],'m2':_0x1b9d87['id'],'handler'(_0x536ead,_0x12c96a){const _0xefa3b3=_0x59a5e,_0xdef6da={'m1Prime':_0x536ead,'m2Prime':_0x12c96a};if(_0x536ead['params'][_0xefa3b3(0x10f)]!==_0x12c96a[_0xefa3b3(0x126)][_0xefa3b3(0x10f)]||_0x536ead[_0xefa3b3(0x126)][_0xefa3b3(0x18c)]!==_0x12c96a[_0xefa3b3(0x126)][_0xefa3b3(0x18c)])return _0xdef6da;const _0xadd1e2=_0x589265[_0xefa3b3(0x1cb)](_0x536ead),_0x2cc921=_0x589265[_0xefa3b3(0x1cb)](_0x12c96a),{ranges:_0x4721c8}=_0x2cc921[_0xefa3b3(0x126)];return _0x4721c8[_0xefa3b3(0x233)](_0x26a990=>{const _0x754215=_0xefa3b3,_0x59a14f=_0x1465b8(h(_0x536ead[_0x754215(0x126)][_0x754215(0x114)]),_0x26a990);_0x59a14f==null?_0x2cc921['id']=_0x44f38d['id']:(_0x26a990[_0x754215(0x11d)]+=_0x59a14f['step'],_0x26a990[_0x754215(0x104)]+=_0x59a14f[_0x754215(0xcc)]+_0x59a14f[_0x754215(0x210)]);}),{'m1Prime':_0xadd1e2,'m2Prime':_0x2cc921};}},xs={'m1':_0x3f9ab9['id'],'m2':_0x59769e['id'],'handler'(_0xf4f21d,_0x4913af){const _0x25047d=_0x59a5e,_0x5ba397={'m1Prime':_0xf4f21d,'m2Prime':_0x4913af};if(_0xf4f21d['params']['unitId']!==_0x4913af[_0x25047d(0x126)][_0x25047d(0x10f)]||_0xf4f21d[_0x25047d(0x126)][_0x25047d(0x18c)]!==_0x4913af['params'][_0x25047d(0x18c)])return _0x5ba397;const _0x29ea7f=_0x589265['deepClone'](_0xf4f21d),_0x384a62=_0x589265[_0x25047d(0x1cb)](_0x4913af),{ranges:_0x3d2a4e}=_0x384a62[_0x25047d(0x126)];return _0x3d2a4e[_0x25047d(0x233)](_0x3be4c1=>{const _0x3b66ca=_0x25047d,_0x422ae5=_0x1465b8(h(_0xf4f21d['params'][_0x3b66ca(0x114)]),_0x3be4c1);_0x422ae5==null?_0x384a62['id']=_0x44f38d['id']:(_0x3be4c1[_0x3b66ca(0x11d)]+=_0x422ae5[_0x3b66ca(0xcc)],_0x3be4c1[_0x3b66ca(0x104)]+=_0x422ae5[_0x3b66ca(0xcc)]+_0x422ae5[_0x3b66ca(0x210)]);}),{'m1Prime':_0x29ea7f,'m2Prime':_0x384a62};}},Hs={'m1':_0x3f9ab9['id'],'m2':_0x432da8['id'],'handler'(_0x53411b,_0x1aed12){const _0x20b4fb=_0x59a5e,_0x3c1d5f={'m1Prime':_0x53411b,'m2Prime':_0x1aed12};if(_0x53411b[_0x20b4fb(0x126)][_0x20b4fb(0x10f)]!==_0x1aed12['params'][_0x20b4fb(0x10f)]||_0x53411b[_0x20b4fb(0x126)][_0x20b4fb(0x18c)]!==_0x1aed12['params'][_0x20b4fb(0x18c)])return _0x3c1d5f;const _0x237a56=[_0x589265[_0x20b4fb(0x1cb)](_0x53411b)],_0x2653fa=_0x589265[_0x20b4fb(0x1cb)](_0x1aed12),{values:_0x61f32f}=_0x2653fa[_0x20b4fb(0x126)],_0x3f68e6=[];let _0x5baa98=!0x1;for(const _0x9c4e8a in _0x61f32f){const _0x3d080b=_0x61f32f[_0x9c4e8a];if(_0x3f68e6[_0x20b4fb(0x112)](..._0x3d080b[_0x20b4fb(0x238)]),_0x3d080b['ranges'][_0x20b4fb(0x221)](_0x6de068=>{const _0x3a1f13=_0x20b4fb,_0x5bfd7b=_0x1465b8(h(_0x53411b['params'][_0x3a1f13(0x114)]),h(_0x6de068));return _0x5bfd7b==null||_0x5bfd7b[_0x3a1f13(0x210)]!==0x0?!0x0:(_0x5bfd7b[_0x3a1f13(0xcc)]!==0x0&&(_0x5baa98=!0x0),_0x6de068['startColumn']+=_0x5bfd7b[_0x3a1f13(0xcc)],_0x6de068[_0x3a1f13(0x104)]+=_0x5bfd7b[_0x3a1f13(0xcc)],!0x1);}))return{'error':new Error(_0x20b4fb(0x115))};}if(_0x5baa98){const _0x2ae86c={'id':_0x5775f8['id'],'params':{'unitId':_0x1aed12[_0x20b4fb(0x126)][_0x20b4fb(0x10f)],'subUnitId':_0x1aed12[_0x20b4fb(0x126)][_0x20b4fb(0x18c)],'ranges':_0x3f68e6}};_0x237a56[_0x20b4fb(0x112)](_0x2ae86c,_0x2653fa);}return{'m1Prime':_0x237a56,'m2Prime':_0x2653fa};}},Fs={'m1':_0x3f9ab9['id'],'m2':_0x36f561['id'],'handler'(_0x408a56,_0x36a252){const _0x1c9fff=_0x59a5e,_0x4be4e3={'m1Prime':_0x408a56,'m2Prime':_0x36a252};if(_0x408a56[_0x1c9fff(0x126)][_0x1c9fff(0x10f)]!==_0x36a252[_0x1c9fff(0x126)][_0x1c9fff(0x10f)]||_0x408a56[_0x1c9fff(0x126)][_0x1c9fff(0x18c)]!==_0x36a252[_0x1c9fff(0x126)]['subUnitId'])return _0x4be4e3;const _0x14cab4=[_0x589265['deepClone'](_0x408a56)],_0x264300=_0x589265['deepClone'](_0x36a252),_0x5d7d6f=new _0x33d61f(_0x264300['params']['cellValue']),_0x59b011=_0x5d7d6f[_0x1c9fff(0x1a7)](),_0x42e74a=_0x408a56[_0x1c9fff(0x126)][_0x1c9fff(0x114)],_0x59c98f=_0x42e74a[_0x1c9fff(0x104)]-_0x42e74a[_0x1c9fff(0x11d)]+0x1;if(_0x264300[_0x1c9fff(0x126)]['cellValue']&&_0x42e74a['endColumn']<_0x59b011[_0x1c9fff(0x11d)])Rt(_0x264300['params'][_0x1c9fff(0x153)],_0x59b011[_0x1c9fff(0x11d)],_0x59b011['endColumn']-_0x59b011[_0x1c9fff(0x11d)]+0x1,-_0x59c98f);else{if(_0x42e74a['startColumn']<=_0x59b011[_0x1c9fff(0x104)])return{'error':new Error('remove\x20cols\x20is\x20conflict\x20with\x20set\x20range\x20values\x20mutation')};}const _0x113269=new _0x33d61f();let _0x32e01d=!0x1,_0x89094=!0x1;if(_0x5d7d6f[_0x1c9fff(0x1d9)]((_0xece5e2,_0xba5eb5,_0x2bd634)=>{const _0x577ce0=_0x1c9fff;if(_0x2bd634&&_0x2bd634['f']){const _0x6a0c6d=_0x2bd634['f'];let _0x1912dd=!0x1;const _0x522e37=dt(_0x408a56[_0x577ce0(0x126)][_0x577ce0(0x10f)],_0x408a56[_0x577ce0(0x126)][_0x577ce0(0x18c)],_0x6a0c6d,_0x5dde8f=>{const _0x43388a=_0x577ce0,_0xaa9595=_0x1465b8(h(_0x408a56[_0x43388a(0x126)]['range']),h(_0x5dde8f));return _0xaa9595===null?(_0x32e01d=!0x0,_0x5dde8f):((_0xaa9595[_0x43388a(0xcc)]!==0x0||_0xaa9595[_0x43388a(0x210)]!==0x0)&&(_0x1912dd=!0x0,_0x5dde8f[_0x43388a(0x11d)]+=_0xaa9595[_0x43388a(0xcc)],_0x5dde8f[_0x43388a(0x104)]+=_0xaa9595['step']+_0xaa9595[_0x43388a(0x210)]),_0x5dde8f);});_0x1912dd&&(_0x89094=!0x0,_0x2bd634['f']=_0x522e37,_0x113269[_0x577ce0(0xef)](_0xece5e2,_0xba5eb5,{..._0x2bd634}));}}),_0x32e01d)return{'error':new Error(_0x1c9fff(0x137))};if(_0x89094){const _0x4253c0={'id':_0x36f561['id'],'params':{'unitId':_0x36a252[_0x1c9fff(0x126)][_0x1c9fff(0x10f)],'subUnitId':_0x36a252[_0x1c9fff(0x126)][_0x1c9fff(0x18c)],'cellValue':_0x113269[_0x1c9fff(0x131)]()}};_0x14cab4[_0x1c9fff(0x112)](_0x4253c0);}return{'m1Prime':_0x14cab4,'m2Prime':_0x264300};}},Bs={'m1':_0x3f9ab9['id'],'m2':_0x53e0ba['id'],'handler'(_0x3790f8,_0x25c2ae){const _0x571a49=_0x59a5e,_0x4191ce={'m1Prime':[],'m2Prime':[]};if(_0x3790f8[_0x571a49(0x126)][_0x571a49(0x10f)]!==_0x25c2ae[_0x571a49(0x126)][_0x571a49(0x10f)]||_0x3790f8[_0x571a49(0x126)][_0x571a49(0x18c)]!==_0x25c2ae[_0x571a49(0x126)]['subUnitId'])return _0x4191ce;const _0x382f59=_0x589265[_0x571a49(0x1cb)](_0x25c2ae);let _0x28375a=!0x1;return _0x382f59[_0x571a49(0x126)][_0x571a49(0x14a)][_0x571a49(0x233)](_0x15e29f=>{const _0x56f8a5=_0x571a49,{range:_0x27acbe,primary:_0x2fb072}=_0x15e29f,_0x5dfe1d=_0x1465b8(h(_0x3790f8[_0x56f8a5(0x126)]['range']),h(_0x27acbe));if(_0x5dfe1d!=null&&(_0x5dfe1d[_0x56f8a5(0x210)]||_0x5dfe1d[_0x56f8a5(0xcc)])){if(_0x27acbe[_0x56f8a5(0x11d)]+=_0x5dfe1d['step'],_0x27acbe[_0x56f8a5(0x104)]+=_0x5dfe1d['step']+(_0x5dfe1d[_0x56f8a5(0x210)]||0x0),_0x2fb072){const _0x248198=_0x1465b8(h(_0x3790f8[_0x56f8a5(0x126)][_0x56f8a5(0x114)]),h(_0x2fb072));if(_0x248198==null){_0x2fb072[_0x56f8a5(0x11d)]=_0x27acbe['startColumn'],_0x2fb072[_0x56f8a5(0x104)]=_0x27acbe[_0x56f8a5(0x11d)],_0x2fb072['actualColumn']=_0x27acbe['startColumn'];return;}(_0x248198[_0x56f8a5(0x210)]||_0x248198[_0x56f8a5(0xcc)])&&(_0x2fb072[_0x56f8a5(0x11d)]+=_0x248198[_0x56f8a5(0xcc)],_0x2fb072['endColumn']+=_0x248198['step'],_0x2fb072[_0x56f8a5(0x100)]+=_0x248198[_0x56f8a5(0xcc)]);}_0x28375a=!0x0;}}),_0x28375a&&_0x4191ce[_0x571a49(0x111)][_0x571a49(0x112)](_0x382f59),_0x4191ce;}},Gs={'m1':_0x3f9ab9['id'],'m2':_0x1b64c2['id'],'handler'(_0xbcec6,_0x5a99ee){const _0x10ae4d=_0x59a5e,_0xadca6e={'m1Prime':_0xbcec6,'m2Prime':_0x5a99ee};if(_0xbcec6[_0x10ae4d(0x126)][_0x10ae4d(0x10f)]!==_0x5a99ee['params'][_0x10ae4d(0x10f)]||_0xbcec6[_0x10ae4d(0x126)]['subUnitId']!==_0x5a99ee[_0x10ae4d(0x126)][_0x10ae4d(0x18c)])return _0xadca6e;const _0x5076a4=_0x589265[_0x10ae4d(0x1cb)](_0xbcec6),_0x3c60d6=_0x589265[_0x10ae4d(0x1cb)](_0x5a99ee),_0x37a5cc=Me({'start':_0xbcec6[_0x10ae4d(0x126)][_0x10ae4d(0x114)][_0x10ae4d(0x11d)],'end':_0xbcec6['params'][_0x10ae4d(0x114)][_0x10ae4d(0x104)]},{'start':_0x5a99ee[_0x10ae4d(0x126)]['col'],'end':_0x5a99ee[_0x10ae4d(0x126)][_0x10ae4d(0x22b)]}),_0x406d09=_0x589265['deepClone'](_0x5a99ee);return _0x406d09[_0x10ae4d(0x126)][_0x10ae4d(0x105)]=null,_0x37a5cc===null?{'m1Prime':[_0x5076a4,_0x406d09],'m2Prime':[]}:_0x3c60d6['params']['col']===_0x37a5cc[_0x10ae4d(0x13a)]?_0xadca6e:(_0x3c60d6[_0x10ae4d(0x126)][_0x10ae4d(0x22b)]=_0x37a5cc[_0x10ae4d(0x13a)],_0x3c60d6[_0x10ae4d(0x126)][_0x10ae4d(0x105)]&&(_0x3c60d6['params'][_0x10ae4d(0x105)]['colId']=_0x37a5cc['start']),{'m1Prime':[_0x406d09,_0x3c60d6,_0x5076a4],'m2Prime':[_0x3c60d6]});}},js={'m1':_0x3f9ab9['id'],'m2':_0xa0b953['id'],'handler'(_0x2901e9,_0x40281e){const _0x30b87c=_0x59a5e,_0x16a80b={'m1Prime':[_0x2901e9],'m2Prime':[_0x40281e]};if(_0x2901e9['params'][_0x30b87c(0x10f)]!==_0x40281e[_0x30b87c(0x126)]['unitId']||_0x2901e9['params'][_0x30b87c(0x18c)]!==_0x40281e[_0x30b87c(0x126)][_0x30b87c(0x18c)])return _0x16a80b;const _0x5028af=_0x589265[_0x30b87c(0x1cb)](_0x2901e9),_0x385872=_0x589265[_0x30b87c(0x1cb)](_0x40281e),_0x4fc7fb=Me({'start':_0x2901e9[_0x30b87c(0x126)]['range']['startColumn'],'end':_0x2901e9['params'][_0x30b87c(0x114)][_0x30b87c(0x104)]},{'start':_0x40281e[_0x30b87c(0x126)]['range']['startColumn'],'end':_0x40281e[_0x30b87c(0x126)][_0x30b87c(0x114)][_0x30b87c(0x104)]});return _0x4fc7fb===null?{'m1Prime':[_0x5028af,{'id':_0x26442d['id'],'params':{'unitId':_0x40281e[_0x30b87c(0x126)]['unitId'],'subUnitId':_0x40281e[_0x30b87c(0x126)][_0x30b87c(0x10f)]}}],'m2Prime':[]}:(_0x385872[_0x30b87c(0x126)]['range'][_0x30b87c(0x11d)]=_0x4fc7fb[_0x30b87c(0x13a)],_0x385872[_0x30b87c(0x126)][_0x30b87c(0x114)][_0x30b87c(0x104)]=_0x4fc7fb[_0x30b87c(0x103)],{'m1Prime':[_0x385872,_0x5028af],'m2Prime':[_0x385872]});}},$s={'m1':_0x3f9ab9['id'],'m2':_0x8fd627['id'],'handler'(_0x45a87e,_0xf130f2){const _0x59bb18=_0x59a5e,_0x1ed542={'m1Prime':_0x45a87e,'m2Prime':_0xf130f2};if(_0x45a87e[_0x59bb18(0x126)][_0x59bb18(0x10f)]!==_0xf130f2[_0x59bb18(0x126)][_0x59bb18(0x10f)]||_0x45a87e['params']['subUnitId']!==_0xf130f2['params']['subUnitId'])return _0x1ed542;const _0x37d4a9=_0x589265[_0x59bb18(0x1cb)](_0x45a87e),_0x11efea=_0x589265['deepClone'](_0xf130f2),{ranges:_0x60f3eb,colWidth:_0xc35c2c}=_0x11efea[_0x59bb18(0x126)];return _0x60f3eb[_0x59bb18(0x233)](_0x242f5d=>{const _0xd0749c=_0x59bb18,_0x2abc5e=_0x1465b8(h(_0x45a87e['params'][_0xd0749c(0x114)]),_0x242f5d);_0x2abc5e==null?_0x11efea['id']=_0x44f38d['id']:(_0x242f5d[_0xd0749c(0x11d)]+=_0x2abc5e[_0xd0749c(0xcc)],_0x242f5d[_0xd0749c(0x104)]+=_0x2abc5e[_0xd0749c(0xcc)]+_0x2abc5e[_0xd0749c(0x210)]);}),typeof _0xc35c2c!=_0x59bb18(0x1e1)&&_0xaec4eb(_0x45a87e['params'][_0x59bb18(0x114)]['startColumn'],_0x45a87e['params'][_0x59bb18(0x114)][_0x59bb18(0x104)]-_0x45a87e['params']['range']['startColumn']+0x1,_0xc35c2c),{'m1Prime':_0x37d4a9,'m2Prime':_0x11efea};}},Ys={'m1':_0x3f9ab9['id'],'m2':_0x164c55['id'],'handler':(_0x5398eb,_0xda62b1)=>{const _0x10c9b4=_0x59a5e,_0x436a92={'m1Prime':_0x5398eb,'m2Prime':_0xda62b1};if(_0x5398eb[_0x10c9b4(0x126)]['unitId']!==_0xda62b1[_0x10c9b4(0x126)][_0x10c9b4(0x10f)]||_0x5398eb[_0x10c9b4(0x126)][_0x10c9b4(0x18c)]!==_0xda62b1[_0x10c9b4(0x126)][_0x10c9b4(0x18c)])return _0x436a92;const _0x175209={'id':_0x4fb42e['id'],'params':{'unitId':_0x5398eb[_0x10c9b4(0x126)][_0x10c9b4(0x10f)],'subUnitId':_0x5398eb[_0x10c9b4(0x126)]['subUnitId'],'range':_0x5398eb[_0x10c9b4(0x126)]['range']}},_0x25c8ab=wt(_0xda62b1,_0x175209);return{'m1Prime':[_0x5398eb,..._0x25c8ab],'m2Prime':[_0xda62b1,..._0x25c8ab]};}},Js={'m1':_0x3f9ab9['id'],'m2':_0x2bcc50['id'],'handler':(_0x121228,_0x467d50)=>{const _0x443aac=_0x59a5e,_0x2406c0={'m1Prime':_0x121228,'m2Prime':_0x467d50};if(_0x121228[_0x443aac(0x126)]['unitId']!==_0x467d50[_0x443aac(0x126)][_0x443aac(0x10f)]||_0x467d50[_0x443aac(0x126)]['subUnitId']!==_0x121228['params'][_0x443aac(0x18c)])return _0x2406c0;const _0x2e16a0={'id':_0x4fb42e['id'],'params':{'range':_0x121228[_0x443aac(0x126)][_0x443aac(0x114)]}},_0x4be398=Ct(_0x467d50,_0x2e16a0);return{'m1Prime':[_0x121228,..._0x4be398],'m2Prime':[_0x467d50,..._0x4be398]};}},Xs={'m1':_0x46530b['id'],'m2':_0x46530b['id'],'handler':(_0x1ff1c2,_0x3fdf0b)=>{const _0x5e6fe5=_0x59a5e,_0x2d1e4a={'m1Prime':_0x1ff1c2,'m2Prime':_0x3fdf0b};return _0x1ff1c2[_0x5e6fe5(0x126)]['unitId']===_0x3fdf0b['params'][_0x5e6fe5(0x10f)]&&_0x1ff1c2[_0x5e6fe5(0x126)][_0x5e6fe5(0x18c)]===_0x3fdf0b[_0x5e6fe5(0x126)]['subUnitId']&&_0x1ff1c2['params'][_0x5e6fe5(0x197)]===_0x3fdf0b[_0x5e6fe5(0x126)][_0x5e6fe5(0x197)]?{'m1Prime':[],'m2Prime':[]}:_0x2d1e4a;}},Ks={'m1':_0x1bb828['id'],'m2':_0x1bb828['id'],'handler':(_0x1858ca,_0x48e156)=>{const _0x4ec93d=_0x59a5e,_0x40fa38=_0x1858ca[_0x4ec93d(0x126)],_0x321061=_0x48e156['params'];return _0x40fa38[_0x4ec93d(0x10f)]===_0x321061[_0x4ec93d(0x10f)]&&_0x40fa38[_0x4ec93d(0x18c)]===_0x321061[_0x4ec93d(0x18c)]&&_0x40fa38['id']===_0x321061['id']?{'m2Prime':[],'m1Prime':[]}:{'m1Prime':_0x1858ca,'m2Prime':_0x48e156};}},zs={'m1':_0x5775f8['id'],'m2':_0x5775f8['id'],'handler'(_0x4c3d85,_0x574cb0){const _0x508c14=_0x59a5e;if(_0x4c3d85['params'][_0x508c14(0x10f)]!==_0x574cb0['params'][_0x508c14(0x10f)]||_0x4c3d85[_0x508c14(0x126)]['subUnitId']!==_0x574cb0[_0x508c14(0x126)][_0x508c14(0x18c)])return{'m1Prime':_0x4c3d85,'m2Prime':_0x574cb0};const _0x2169a9=_0x589265[_0x508c14(0x1cb)](_0x4c3d85),_0x5c83fd=_0x589265[_0x508c14(0x1cb)](_0x574cb0),_0x453915=[],_0x2f6a4=_0x5c83fd[_0x508c14(0x126)][_0x508c14(0x238)];return _0x2169a9['params']['ranges'][_0x508c14(0x233)](_0x48c16e=>{const _0x131f3b=ee(_0x48c16e,_0x2f6a4);_0x131f3b['length']>0x0&&_0x453915['push'](..._0x131f3b);}),_0x2169a9[_0x508c14(0x126)]['ranges']=_0x453915,{'m1Prime':_0x4c3d85,'m2Prime':_0x574cb0};}},qs={'m1':_0x5775f8['id'],'m2':_0x432da8['id'],'handler'(_0x4ab3c2,_0xa68b8d){const _0x4a135a=_0x59a5e;if(_0x4ab3c2[_0x4a135a(0x126)]['unitId']!==_0xa68b8d['params'][_0x4a135a(0x10f)]||_0x4ab3c2[_0x4a135a(0x126)][_0x4a135a(0x18c)]!==_0xa68b8d['params'][_0x4a135a(0x18c)])return{'m1Prime':_0x4ab3c2,'m2Prime':_0xa68b8d};const _0x4cdf27=_0x589265[_0x4a135a(0x1cb)](_0x4ab3c2),_0x5870a5=_0x589265[_0x4a135a(0x1cb)](_0xa68b8d),_0x3ddd49=[],_0x3e8f82=Object[_0x4a135a(0x22e)](_0x5870a5[_0x4a135a(0x126)][_0x4a135a(0x22e)])[_0x4a135a(0xea)](_0x1332da=>_0x1332da[_0x4a135a(0x238)])[_0x4a135a(0x1c0)]();return _0x4cdf27[_0x4a135a(0x126)]['ranges'][_0x4a135a(0x233)](_0x3bd1c7=>{const _0x29081b=_0x4a135a,_0x26d1db=ee(_0x3bd1c7,_0x3e8f82);_0x26d1db[_0x29081b(0x210)]>0x0&&_0x3ddd49['push'](..._0x26d1db);}),_0x4cdf27[_0x4a135a(0x126)][_0x4a135a(0x238)]=_0x3ddd49,{'m1Prime':_0x4cdf27,'m2Prime':_0x5870a5};}},Zs={'m1':_0x361204['id'],'m2':_0x58b473['id'],'handler':(_0x9e5aa9,_0x2366bb)=>{const _0x42674d=_0x59a5e,_0x5d43fa={'m1Prime':_0x9e5aa9,'m2Prime':_0x2366bb};if(_0x9e5aa9[_0x42674d(0x126)][_0x42674d(0x10f)]!==_0x2366bb['params'][_0x42674d(0x10f)]||_0x9e5aa9['params']['subUnitId']!==_0x2366bb[_0x42674d(0x126)][_0x42674d(0x18c)])return _0x5d43fa;const _0x662f27={'id':_0x564f63['id'],'params':{'unitId':_0x9e5aa9['params'][_0x42674d(0x10f)],'subUnitId':_0x9e5aa9[_0x42674d(0x126)]['subUnitId'],'range':_0x9e5aa9['params'][_0x42674d(0x114)]}},_0x288a01=It(_0x2366bb,_0x662f27);return{'m1Prime':[_0x9e5aa9,..._0x288a01],'m2Prime':[_0x2366bb,..._0x288a01]};}},Qs={'m1':_0x361204['id'],'m2':_0x34b1dc['id'],'handler'(_0x15d3bd,_0x4a9ef1){const _0xd5b9ab=_0x59a5e,_0x30d00e={'m1Prime':_0x15d3bd,'m2Prime':_0x4a9ef1};if(_0x15d3bd[_0xd5b9ab(0x126)][_0xd5b9ab(0x10f)]!==_0x4a9ef1[_0xd5b9ab(0x126)][_0xd5b9ab(0x10f)]||_0x15d3bd['params'][_0xd5b9ab(0x18c)]!==_0x4a9ef1[_0xd5b9ab(0x126)][_0xd5b9ab(0x18c)])return _0x30d00e;const _0xa6520b={'id':_0x564f63['id'],'params':{'range':_0x15d3bd[_0xd5b9ab(0x126)][_0xd5b9ab(0x114)]}},_0x31a342=Tt(_0x4a9ef1,_0xa6520b);return{'m1Prime':[_0x15d3bd,..._0x31a342],'m2Prime':[_0x4a9ef1,..._0x31a342]};}},to={'m1':_0x361204['id'],'m2':_0x223d91['id'],'handler'(_0x1ef1e5,_0x505041){const _0x32075a=_0x59a5e,_0x5cd0f6=dr['handler'](_0x505041,_0x1ef1e5);return at(_0x5cd0f6)?{'m1Prime':_0x5cd0f6[_0x32075a(0x111)],'m2Prime':_0x5cd0f6[_0x32075a(0x1da)]}:_0x5cd0f6;}},eo={'m1':_0x361204['id'],'m2':_0x442c2d['id'],'handler'(_0x3c55bc,_0x35a29f){const _0x5b8664=_0x59a5e,_0xbdfc7f={'m1Prime':_0x3c55bc,'m2Prime':_0x35a29f};if(_0x3c55bc['params'][_0x5b8664(0x10f)]!==_0x35a29f[_0x5b8664(0x126)][_0x5b8664(0x10f)]||_0x3c55bc[_0x5b8664(0x126)][_0x5b8664(0x18c)]!==_0x35a29f[_0x5b8664(0x126)]['from']['subUnitId']&&_0x3c55bc['params'][_0x5b8664(0x18c)]!==_0x35a29f[_0x5b8664(0x126)]['to'][_0x5b8664(0x18c)])return _0xbdfc7f;const _0x545bfd=_0x589265[_0x5b8664(0x1cb)](_0x3c55bc),_0x560421=_0x589265[_0x5b8664(0x1cb)](_0x35a29f),{startRow:_0x368831,endRow:_0x5799b9}=_0x3c55bc[_0x5b8664(0x126)][_0x5b8664(0x114)];if(_0x3c55bc[_0x5b8664(0x126)][_0x5b8664(0x18c)]===_0x35a29f[_0x5b8664(0x126)][_0x5b8664(0x16d)][_0x5b8664(0x18c)]){const _0x5c3814=new _0x33d61f(_0x560421[_0x5b8664(0x126)][_0x5b8664(0x16d)][_0x5b8664(0x18f)]),_0x1a3ad2=_0x5c3814['getDataRange'](),{startRow:_0x4daeb8,endRow:_0x2ab328}=_0x1a3ad2;if(_0x4daeb8<=_0x5799b9&&_0x2ab328>=_0x368831)return{'error':new Error(_0x5b8664(0x1d8))};_0x5799b9<_0x4daeb8&&_0x5c3814[_0x5b8664(0x184)](_0x368831,_0x5799b9-_0x368831+0x1),_0x560421[_0x5b8664(0x126)][_0x5b8664(0x16d)][_0x5b8664(0x18f)]=_0x5c3814[_0x5b8664(0x131)]();}if(_0x3c55bc[_0x5b8664(0x126)][_0x5b8664(0x18c)]===_0x35a29f[_0x5b8664(0x126)]['to'][_0x5b8664(0x18c)]){const _0x3026be=new _0x33d61f(_0x560421['params']['to'][_0x5b8664(0x18f)]),_0x5bdf2d=_0x3026be['getDataRange'](),{startRow:_0xb8bc2c,endRow:_0x106ac5}=_0x5bdf2d;if(_0xb8bc2c<=_0x5799b9&&_0x106ac5>=_0x368831)return{'error':new Error(_0x5b8664(0x1d8))};_0x5799b9<_0xb8bc2c&&_0x3026be[_0x5b8664(0x184)](_0x368831,_0x5799b9-_0x368831+0x1),_0x560421[_0x5b8664(0x126)]['to'][_0x5b8664(0x18f)]=_0x3026be[_0x5b8664(0x131)]();}return{'m1Prime':_0x545bfd,'m2Prime':_0x560421};}},ro={'m1':_0x361204['id'],'m2':_0x79cdbf['id'],'handler'(_0x387579,_0x5e48bd){const _0x35f285=_0x59a5e,_0xa0958f={'m1Prime':_0x387579,'m2Prime':_0x5e48bd};if(_0x387579[_0x35f285(0x126)]['unitId']!==_0x5e48bd[_0x35f285(0x126)][_0x35f285(0x10f)]||_0x387579[_0x35f285(0x126)][_0x35f285(0x18c)]!==_0x5e48bd[_0x35f285(0x126)][_0x35f285(0x18c)])return _0xa0958f;const _0xfc7dd5=_0x589265[_0x35f285(0x1cb)](_0x387579),_0x4616a8=_0x589265[_0x35f285(0x1cb)](_0x5e48bd);if(_0x387579[_0x35f285(0x126)][_0x35f285(0x114)][_0x35f285(0xcd)]<=_0x5e48bd[_0x35f285(0x126)]['sourceRange'][_0x35f285(0xf0)]&&_0x387579['params'][_0x35f285(0x114)][_0x35f285(0xf0)]>=_0x5e48bd[_0x35f285(0x126)][_0x35f285(0x1ad)]['startRow']||_0x387579['params']['range'][_0x35f285(0xcd)]<=_0x5e48bd[_0x35f285(0x126)]['targetRange']['endRow']&&_0x387579[_0x35f285(0x126)][_0x35f285(0x114)][_0x35f285(0xf0)]>=_0x5e48bd[_0x35f285(0x126)][_0x35f285(0x1d3)][_0x35f285(0xcd)])return{'error':new Error(_0x35f285(0x1f3))};const _0x49d8c3=_0x1465b8(h(_0x2690fd(_0x387579['params'][_0x35f285(0x114)])),h(_0x2690fd(_0x5e48bd[_0x35f285(0x126)]['sourceRange']))),_0x3393f8=_0x1465b8(h(_0x2690fd(_0x387579[_0x35f285(0x126)][_0x35f285(0x114)])),h(_0x2690fd(_0x5e48bd[_0x35f285(0x126)][_0x35f285(0x1d3)])));_0x49d8c3&&_0x3393f8?(_0x4616a8[_0x35f285(0x126)][_0x35f285(0x1ad)]['startRow']+=_0x49d8c3[_0x35f285(0xcc)],_0x4616a8[_0x35f285(0x126)]['sourceRange']['endRow']+=_0x49d8c3['step']+(_0x49d8c3[_0x35f285(0x210)]||0x0),_0x4616a8['params']['targetRange']['startRow']+=_0x3393f8[_0x35f285(0xcc)],_0x4616a8[_0x35f285(0x126)][_0x35f285(0x1d3)][_0x35f285(0xf0)]+=_0x3393f8[_0x35f285(0xcc)]+(_0x3393f8[_0x35f285(0x210)]||0x0)):_0x4616a8['id']=_0x44f38d['id'];const _0x2fcc5d=_0x2a97ff({'start':_0x5e48bd[_0x35f285(0x126)][_0x35f285(0x1ad)][_0x35f285(0xcd)],'end':_0x5e48bd['params'][_0x35f285(0x1ad)][_0x35f285(0xf0)]},{'start':_0x5e48bd[_0x35f285(0x126)][_0x35f285(0x1d3)]['startRow'],'end':_0x5e48bd[_0x35f285(0x126)][_0x35f285(0x1d3)][_0x35f285(0xf0)]},{'start':_0x387579['params'][_0x35f285(0x114)][_0x35f285(0xcd)],'end':_0x387579[_0x35f285(0x126)]['range'][_0x35f285(0xf0)]});if(_0x2fcc5d){const {step:_0xcff443,length:_0x5a7cf6}=_0x2fcc5d;_0xfc7dd5['params'][_0x35f285(0x114)][_0x35f285(0xcd)]+=_0xcff443,_0xfc7dd5[_0x35f285(0x126)][_0x35f285(0x114)][_0x35f285(0xf0)]+=_0xcff443+(_0x5a7cf6||0x0);}else _0xfc7dd5['id']=_0x44f38d['id'];return{'m1Prime':_0xfc7dd5,'m2Prime':_0x4616a8};}},no={'m1':_0x361204['id'],'m2':_0x5775f8['id'],'handler'(_0x282f87,_0x3f0bc1){const _0x1ef600=_0x59a5e,_0xa9d799={'m1Prime':_0x282f87,'m2Prime':_0x3f0bc1};if(_0x282f87['params'][_0x1ef600(0x10f)]!==_0x3f0bc1[_0x1ef600(0x126)][_0x1ef600(0x10f)]||_0x282f87[_0x1ef600(0x126)]['subUnitId']!==_0x3f0bc1[_0x1ef600(0x126)][_0x1ef600(0x18c)])return _0xa9d799;const _0x4abc7e=_0x589265[_0x1ef600(0x1cb)](_0x282f87),_0x1dca0d=_0x589265[_0x1ef600(0x1cb)](_0x3f0bc1),{ranges:_0x1691e6}=_0x1dca0d['params'];return _0x1691e6[_0x1ef600(0x221)](_0x374fba=>{const _0x4a616a=_0x1ef600,_0x4701c1=_0x1465b8(h(_0x2690fd(_0x282f87['params'][_0x4a616a(0x114)])),h(_0x2690fd(_0x374fba)));return _0x4701c1===null||_0x4701c1[_0x4a616a(0x210)]!==0x0?!0x0:(_0x374fba[_0x4a616a(0xcd)]+=_0x4701c1['step'],_0x374fba[_0x4a616a(0xf0)]+=_0x4701c1[_0x4a616a(0xcc)],!0x1);})?{'error':new Error(_0x1ef600(0x179))}:{'m1Prime':_0x4abc7e,'m2Prime':_0x1dca0d};}},ao={'m1':_0x361204['id'],'m2':_0x361204['id'],'handler'(_0x36a4c9,_0x24828a){const _0x485692=_0x59a5e,_0x14f372={'m1Prime':_0x36a4c9,'m2Prime':_0x24828a};if(_0x36a4c9[_0x485692(0x126)][_0x485692(0x10f)]!==_0x24828a[_0x485692(0x126)][_0x485692(0x10f)]||_0x36a4c9[_0x485692(0x126)][_0x485692(0x18c)]!==_0x24828a[_0x485692(0x126)][_0x485692(0x18c)])return _0x14f372;const _0x5c511c=_0x589265['deepClone'](_0x36a4c9),_0x23cc79=_0x589265['deepClone'](_0x24828a),_0x3862e5=_0x1465b8(h(_0x2690fd(_0x36a4c9['params'][_0x485692(0x114)])),h(_0x2690fd(_0x24828a['params'][_0x485692(0x114)])));if(_0x3862e5){const {step:_0x1cae6f,length:_0x14493d}=_0x3862e5;_0x23cc79[_0x485692(0x126)]['range']['startRow']+=_0x1cae6f,_0x23cc79[_0x485692(0x126)]['range'][_0x485692(0xf0)]+=_0x1cae6f+(_0x14493d||0x0);}else _0x23cc79['id']=_0x44f38d['id'];const _0xffc5c7=_0x1465b8(h(_0x2690fd(_0x24828a[_0x485692(0x126)][_0x485692(0x114)])),h(_0x2690fd(_0x36a4c9[_0x485692(0x126)]['range'])));if(_0xffc5c7){const {step:_0x1b65ef,length:_0x1c81ca}=_0xffc5c7;_0x5c511c[_0x485692(0x126)][_0x485692(0x114)][_0x485692(0xcd)]+=_0x1b65ef,_0x5c511c[_0x485692(0x126)][_0x485692(0x114)]['endRow']+=_0x1b65ef+(_0x1c81ca||0x0);}else _0x5c511c['id']=_0x44f38d['id'];return{'m1Prime':_0x5c511c,'m2Prime':_0x23cc79};}},so={'m1':_0x361204['id'],'m2':_0x49900b['id'],'handler'(_0x2337e3,_0x3d49c4){const _0x242990=_0x59a5e,_0x3e217f=_0x589265[_0x242990(0x1cb)](_0x2337e3),_0x442a01=_0x589265['deepClone'](_0x3d49c4);if(_0x2337e3[_0x242990(0x126)][_0x242990(0x10f)]!==_0x3d49c4['params'][_0x242990(0x10f)]||_0x2337e3[_0x242990(0x126)][_0x242990(0x18c)]!==_0x3d49c4['params'][_0x242990(0x18c)])return{'m1Prime':_0x3e217f,'m2Prime':_0x442a01};const _0x279714=_0x442a01[_0x242990(0x126)][_0x242990(0x238)][_0x242990(0x247)]((_0x468f1f,_0x125ea2)=>{const _0x5b0488=_0x242990,_0x214d55=_0x3e217f[_0x5b0488(0x126)][_0x5b0488(0x114)],_0x11666e=_0x214d55[_0x5b0488(0xf0)]-_0x214d55['startRow']+0x1;let _0x1d2d46={..._0x125ea2};return _0x214d55[_0x5b0488(0xcd)]>_0x125ea2[_0x5b0488(0xf0)]?_0x1d2d46={..._0x125ea2}:_0x214d55[_0x5b0488(0xcd)]>=_0x125ea2[_0x5b0488(0xcd)]&&_0x214d55[_0x5b0488(0xcd)]<=_0x125ea2[_0x5b0488(0xf0)]&&_0x214d55['endRow']>_0x125ea2['endRow']?(_0x1d2d46[_0x5b0488(0xf0)]=_0x214d55['startRow']-0x1,_0x214d55[_0x5b0488(0xcd)]===_0x125ea2[_0x5b0488(0xcd)]&&(_0x1d2d46=null)):_0x214d55['startRow']>_0x125ea2[_0x5b0488(0xcd)]&&_0x214d55['endRow']<_0x125ea2[_0x5b0488(0xf0)]?_0x1d2d46[_0x5b0488(0xf0)]=_0x125ea2[_0x5b0488(0xf0)]-_0x11666e:_0x214d55[_0x5b0488(0xcd)]<_0x125ea2[_0x5b0488(0xcd)]&&_0x214d55[_0x5b0488(0xf0)]>=_0x125ea2[_0x5b0488(0xcd)]&&_0x214d55[_0x5b0488(0xf0)]<=_0x125ea2[_0x5b0488(0xf0)]?(_0x1d2d46[_0x5b0488(0xcd)]=_0x214d55[_0x5b0488(0xcd)],_0x1d2d46[_0x5b0488(0xf0)]=_0x125ea2[_0x5b0488(0xf0)]-_0x11666e,_0x214d55['endRow']===_0x125ea2[_0x5b0488(0xf0)]&&(_0x1d2d46=null)):_0x214d55[_0x5b0488(0xcd)]<=_0x125ea2[_0x5b0488(0xcd)]&&_0x214d55['endRow']>=_0x125ea2[_0x5b0488(0xf0)]?_0x1d2d46=null:_0x214d55['endRow']<_0x125ea2[_0x5b0488(0xcd)]&&(_0x1d2d46[_0x5b0488(0xcd)]=_0x125ea2[_0x5b0488(0xcd)]-_0x11666e,_0x1d2d46['endRow']=_0x125ea2['endRow']-_0x11666e),_0x1d2d46&&!(_0x1d2d46[_0x5b0488(0xcd)]===_0x1d2d46[_0x5b0488(0xf0)]&&_0x1d2d46['startColumn']===_0x1d2d46[_0x5b0488(0x104)])&&_0x468f1f['push'](_0x1d2d46),_0x468f1f;},[]);return _0x442a01[_0x242990(0x126)][_0x242990(0x238)]=_0x279714,{'m1Prime':_0x3e217f,'m2Prime':_0x442a01};}},oo={'m1':_0x361204['id'],'m2':_0x2a2d75['id'],'handler'(_0x243634,_0x2f8ba7){const _0x28f657=_0x59a5e,_0x15ff88={'m1Prime':_0x243634,'m2Prime':_0x2f8ba7};if(_0x243634[_0x28f657(0x126)][_0x28f657(0x10f)]!==_0x2f8ba7[_0x28f657(0x126)][_0x28f657(0x10f)]||_0x243634[_0x28f657(0x126)][_0x28f657(0x18c)]!==_0x2f8ba7[_0x28f657(0x126)][_0x28f657(0x18c)])return _0x15ff88;const _0x187322=_0x589265[_0x28f657(0x1cb)](_0x2f8ba7),_0x1dbdc2=_0x589265[_0x28f657(0x1cb)](_0x243634),_0x56d58d=_0x1465b8(h(_0x2690fd(_0x243634['params'][_0x28f657(0x114)])),h(_0x2690fd(_0x2f8ba7[_0x28f657(0x126)][_0x28f657(0x114)])));if(!_0x56d58d)return{'m1Prime':_0x243634,'m2Prime':[]};if(_0x56d58d[_0x28f657(0x210)]===0x0&&_0x56d58d[_0x28f657(0xcc)]===0x0)return{'m1Prime':_0x243634,'m2Prime':_0x2f8ba7};const {startRow:_0x3a55b8,endRow:_0x551cb9}=_0x243634[_0x28f657(0x126)][_0x28f657(0x114)];_0x187322[_0x28f657(0x126)][_0x28f657(0x114)][_0x28f657(0xcd)]+=_0x56d58d[_0x28f657(0xcc)],_0x187322[_0x28f657(0x126)][_0x28f657(0x114)]['endRow']+=_0x56d58d[_0x28f657(0xcc)]+(_0x56d58d['length']||0x0);const _0x507865=Object[_0x28f657(0x10b)](_0x2f8ba7[_0x28f657(0x126)][_0x28f657(0x135)])['map'](_0x1164fa=>ke(_0x3a55b8,_0x551cb9,Number(_0x1164fa)))[_0x28f657(0x12d)](_0x2aaaaa=>_0x2aaaaa!==null),_0x1af37a={};for(const _0x14751c in _0x2f8ba7[_0x28f657(0x126)][_0x28f657(0x135)]){let _0x343a7d=_0x2f8ba7[_0x28f657(0x126)][_0x28f657(0x135)][_0x14751c];_0x343a7d=ke(_0x3a55b8,_0x551cb9,_0x343a7d),_0x343a7d!==null&&(_0x1af37a[_0x507865[_0x28f657(0x1fb)]()]=_0x343a7d);}_0x187322[_0x28f657(0x126)][_0x28f657(0x135)]=_0x1af37a;const _0x274e9a=io(_0x2f8ba7[_0x28f657(0x126)][_0x28f657(0x135)],{'start':_0x243634[_0x28f657(0x126)][_0x28f657(0x114)][_0x28f657(0xcd)],'end':_0x243634['params'][_0x28f657(0x114)]['endRow']}),_0x1748e2=[_0x1dbdc2];return _0x274e9a&&_0x1748e2[_0x28f657(0x149)]({'id':_0x2a2d75['id'],'params':{..._0x243634['params'],'order':_0x274e9a[_0x28f657(0x135)],'range':{..._0x2f8ba7['params'][_0x28f657(0x114)],..._0x274e9a[_0x28f657(0x114)]}}}),{'m1Prime':_0x1748e2,'m2Prime':_0x187322};}},io=(_0x1ec355,_0x97a754)=>{const _0x552081=_0x59a5e,_0x2fc1dd=Object[_0x552081(0x10b)](_0x1ec355)[_0x552081(0xea)](Number)['sort']((_0x56ca2b,_0x2c2e92)=>_0x56ca2b-_0x2c2e92);if(_0x2fc1dd['length']===0x0)return null;const _0x4cb925=_0x2fc1dd[0x0],_0x2567ca=_0x2fc1dd[_0x2fc1dd['length']-0x1];if(_0x4cb925>_0x97a754[_0x552081(0x103)]||_0x2567ca<_0x97a754[_0x552081(0x13a)])return null;const _0x5605fe=_0x2fc1dd[_0x552081(0x12d)](_0x509f8d=>_0x1ec355[_0x509f8d]>=_0x97a754['start']&&_0x1ec355[_0x509f8d]<=_0x97a754[_0x552081(0x103)]);if(_0x5605fe[_0x552081(0x210)]===0x0)return null;const _0x1e3113=_0x5605fe[_0x552081(0xea)](_0x43ee11=>_0x1ec355[_0x43ee11]),_0x4cb64b={},_0x2541b7=Math['min'](_0x5605fe[0x0],_0x97a754[_0x552081(0x13a)]),_0x44a3e7=Math[_0x552081(0x14b)](_0x5605fe[_0x5605fe[_0x552081(0x210)]-0x1],_0x97a754[_0x552081(0x103)]),_0x56be08=Array['from']({'length':_0x44a3e7-_0x2541b7+0x1},(_0x45dd8e,_0x2ef534)=>_0x2ef534+_0x2541b7)[_0x552081(0x12d)](_0x4b057d=>!_0x5605fe[_0x552081(0x129)](_0x4b057d));return Array['from']({'length':_0x44a3e7-_0x2541b7+0x1},(_0x1a0402,_0x9f6872)=>_0x9f6872+_0x2541b7)[_0x552081(0x12d)](_0x5607e8=>!_0x1e3113[_0x552081(0x129)](_0x5607e8))[_0x552081(0x233)]((_0x401d04,_0x284810)=>{_0x4cb64b[_0x401d04]=_0x56be08[_0x284810];}),_0x1e3113['forEach']((_0x3226d0,_0x123019)=>{_0x4cb64b[_0x3226d0]=_0x5605fe[_0x123019];}),{'range':{'startRow':_0x2541b7,'endRow':_0x44a3e7},'order':_0x4cb64b};},ke=(_0x561ff6,_0x4368af,_0x182f8a)=>_0x182f8a>=_0x561ff6&&_0x182f8a<=_0x4368af?null:_0x182f8a>_0x4368af?_0x182f8a-(_0x4368af-_0x561ff6+0x1):_0x182f8a,mo={'m1':_0x361204['id'],'m2':_0x432da8['id'],'handler'(_0x19e858,_0x369610){const _0x266fca=_0x59a5e,_0x18d84b={'m1Prime':_0x19e858,'m2Prime':_0x369610};if(_0x19e858[_0x266fca(0x126)]['unitId']!==_0x369610[_0x266fca(0x126)]['unitId']||_0x19e858[_0x266fca(0x126)][_0x266fca(0x18c)]!==_0x369610[_0x266fca(0x126)][_0x266fca(0x18c)])return _0x18d84b;const _0xe97676=[_0x589265[_0x266fca(0x1cb)](_0x19e858)],_0x4ced59=_0x589265[_0x266fca(0x1cb)](_0x369610),{values:_0x2cf067}=_0x4ced59[_0x266fca(0x126)],_0x63e7f1=[];let _0x168b33=!0x1;for(const _0x3617cd in _0x2cf067){const _0x4f5632=_0x2cf067[_0x3617cd];if(_0x63e7f1[_0x266fca(0x112)](..._0x4f5632[_0x266fca(0x238)]),_0x4f5632[_0x266fca(0x238)][_0x266fca(0x221)](_0x552a50=>{const _0x3c7015=_0x266fca,_0x4cc1ff=_0x1465b8(h(_0x2690fd(_0x19e858[_0x3c7015(0x126)][_0x3c7015(0x114)])),h(_0x2690fd(_0x552a50)));return _0x4cc1ff==null||_0x4cc1ff[_0x3c7015(0x210)]!==0x0?!0x0:(_0x4cc1ff['step']!==0x0&&(_0x168b33=!0x0),_0x552a50[_0x3c7015(0xcd)]+=_0x4cc1ff[_0x3c7015(0xcc)],_0x552a50[_0x3c7015(0xf0)]+=_0x4cc1ff[_0x3c7015(0xcc)],!0x1);}))return{'error':new Error(_0x266fca(0x193))};}if(_0x168b33){const _0x199417={'id':_0x5775f8['id'],'params':{'unitId':_0x369610[_0x266fca(0x126)][_0x266fca(0x10f)],'subUnitId':_0x369610['params'][_0x266fca(0x18c)],'ranges':_0x63e7f1}};_0xe97676['push'](_0x199417,_0x4ced59);}return{'m1Prime':_0xe97676,'m2Prime':_0x4ced59};}},uo={'m1':_0x361204['id'],'m2':_0x36f561['id'],'handler'(_0x53b450,_0x56ccb4){const _0x2172e5=_0x59a5e,_0x5052f8={'m1Prime':_0x53b450,'m2Prime':_0x56ccb4};if(_0x53b450[_0x2172e5(0x126)]['unitId']!==_0x56ccb4['params'][_0x2172e5(0x10f)]||_0x53b450[_0x2172e5(0x126)][_0x2172e5(0x18c)]!==_0x56ccb4[_0x2172e5(0x126)]['subUnitId'])return _0x5052f8;const _0x1855a1=[_0x589265['deepClone'](_0x53b450)],_0x483018=_0x589265[_0x2172e5(0x1cb)](_0x56ccb4),_0x2093a7=new _0x33d61f(_0x483018['params']['cellValue']),_0x3b7bad=_0x2093a7[_0x2172e5(0x1a7)](),_0x2ec761=_0x53b450[_0x2172e5(0x126)][_0x2172e5(0x114)],_0x215623=_0x2ec761['endRow']-_0x2ec761['startRow']+0x1;if(_0x483018[_0x2172e5(0x126)][_0x2172e5(0x153)]&&_0x2ec761[_0x2172e5(0xf0)]<_0x3b7bad[_0x2172e5(0xcd)])ft(_0x483018[_0x2172e5(0x126)][_0x2172e5(0x153)],_0x3b7bad[_0x2172e5(0xcd)],_0x3b7bad[_0x2172e5(0xf0)]-_0x3b7bad[_0x2172e5(0xcd)]+0x1,-_0x215623);else{if(_0x2ec761[_0x2172e5(0xcd)]<=_0x3b7bad[_0x2172e5(0xf0)])return{'error':new Error(_0x2172e5(0x1c6))};}const _0x4e3ee2=new _0x33d61f();let _0x4d6bc8=!0x1,_0x288738=!0x1;if(_0x2093a7[_0x2172e5(0x1d9)]((_0x5df854,_0x46b800,_0x207bc1)=>{const _0x30c43b=_0x2172e5;if(_0x207bc1&&_0x207bc1['f']){const _0x3af1f5=_0x207bc1['f'];let _0x2827cb=!0x1;const _0x485318=dt(_0x53b450[_0x30c43b(0x126)][_0x30c43b(0x10f)],_0x53b450[_0x30c43b(0x126)][_0x30c43b(0x18c)],_0x3af1f5,_0x23c06e=>{const _0x16a7f1=_0x30c43b,_0x1027d0=_0x1465b8(h(_0x2690fd(_0x53b450[_0x16a7f1(0x126)][_0x16a7f1(0x114)])),h(_0x2690fd(_0x23c06e)));return _0x1027d0===null?(_0x4d6bc8=!0x0,_0x23c06e):((_0x1027d0[_0x16a7f1(0xcc)]!==0x0||_0x1027d0[_0x16a7f1(0x210)]!==0x0)&&(_0x2827cb=!0x0,_0x23c06e[_0x16a7f1(0xcd)]+=_0x1027d0[_0x16a7f1(0xcc)],_0x23c06e[_0x16a7f1(0xf0)]+=_0x1027d0['step']+_0x1027d0[_0x16a7f1(0x210)]),_0x23c06e);});_0x2827cb&&(_0x288738=!0x0,_0x207bc1['f']=_0x485318,_0x4e3ee2[_0x30c43b(0xef)](_0x5df854,_0x46b800,{..._0x207bc1}));}}),_0x4d6bc8)return{'error':new Error(_0x2172e5(0x102))};if(_0x288738){const _0x2d20b9={'id':_0x36f561['id'],'params':{'unitId':_0x56ccb4[_0x2172e5(0x126)][_0x2172e5(0x10f)],'subUnitId':_0x56ccb4['params'][_0x2172e5(0x18c)],'cellValue':_0x4e3ee2['getMatrix']()}};_0x1855a1[_0x2172e5(0x112)](_0x2d20b9);}return{'m1Prime':_0x1855a1,'m2Prime':_0x483018};}},lo={'m1':_0x361204['id'],'m2':_0x1932a5['id'],'handler'(_0x158e92,_0x11f1b9){const _0x21e435=_0x59a5e,_0x367ab2={'m1Prime':_0x158e92,'m2Prime':_0x11f1b9};if(_0x158e92[_0x21e435(0x126)][_0x21e435(0x10f)]!==_0x11f1b9[_0x21e435(0x126)][_0x21e435(0x10f)]||_0x158e92[_0x21e435(0x126)][_0x21e435(0x18c)]!==_0x11f1b9['params'][_0x21e435(0x18c)])return _0x367ab2;const _0x50b284=_0x589265[_0x21e435(0x1cb)](_0x158e92),_0x3c5ee4=_0x589265['deepClone'](_0x11f1b9),{rowData:_0x2ab7d4}=_0x3c5ee4[_0x21e435(0x126)];return _0xaec4eb(_0x158e92['params'][_0x21e435(0x114)][_0x21e435(0xcd)],_0x158e92[_0x21e435(0x126)][_0x21e435(0x114)][_0x21e435(0xf0)]-_0x158e92[_0x21e435(0x126)][_0x21e435(0x114)][_0x21e435(0xcd)]+0x1,_0x2ab7d4),{'m1Prime':_0x50b284,'m2Prime':_0x3c5ee4};}},co={'m1':_0x361204['id'],'m2':_0xe65e5c['id'],'handler'(_0x23e9b3,_0x450fd5){const _0x14d6ad=_0x59a5e,_0x52fdf9={'m1Prime':_0x23e9b3,'m2Prime':_0x450fd5};if(_0x23e9b3[_0x14d6ad(0x126)][_0x14d6ad(0x10f)]!==_0x450fd5[_0x14d6ad(0x126)]['unitId']||_0x23e9b3[_0x14d6ad(0x126)][_0x14d6ad(0x18c)]!==_0x450fd5[_0x14d6ad(0x126)][_0x14d6ad(0x18c)])return _0x52fdf9;const _0x4dbfd5=_0x589265[_0x14d6ad(0x1cb)](_0x23e9b3),_0x81ba5d=_0x589265[_0x14d6ad(0x1cb)](_0x450fd5),{ranges:_0x2afdce}=_0x81ba5d[_0x14d6ad(0x126)];return _0x2afdce[_0x14d6ad(0x233)](_0x39837d=>{const _0x2f6a13=_0x14d6ad,_0x4150d3=_0x1465b8(h(_0x2690fd(_0x23e9b3[_0x2f6a13(0x126)]['range'])),h(_0x2690fd(_0x39837d)));_0x4150d3==null?_0x81ba5d['id']=_0x44f38d['id']:(_0x39837d[_0x2f6a13(0xcd)]+=_0x4150d3[_0x2f6a13(0xcc)],_0x39837d[_0x2f6a13(0xf0)]+=_0x4150d3[_0x2f6a13(0xcc)]+_0x4150d3[_0x2f6a13(0x210)]);}),{'m1Prime':_0x4dbfd5,'m2Prime':_0x81ba5d};}},po={'m1':_0x361204['id'],'m2':_0x19e155['id'],'handler'(_0x194245,_0x11843a){const _0x1abe89=_0x59a5e,_0x52cf3d={'m1Prime':_0x194245,'m2Prime':_0x11843a};if(_0x194245[_0x1abe89(0x126)][_0x1abe89(0x10f)]!==_0x11843a[_0x1abe89(0x126)][_0x1abe89(0x10f)]||_0x194245[_0x1abe89(0x126)][_0x1abe89(0x18c)]!==_0x11843a[_0x1abe89(0x126)][_0x1abe89(0x18c)])return _0x52cf3d;const _0x1ef9eb=_0x589265[_0x1abe89(0x1cb)](_0x194245),_0x3ad33b=_0x589265[_0x1abe89(0x1cb)](_0x11843a),{ranges:_0x3b6a96}=_0x3ad33b[_0x1abe89(0x126)];return _0x3b6a96[_0x1abe89(0x233)](_0x5deefd=>{const _0x5953fa=_0x1abe89,_0x3d1a91=_0x1465b8(h(_0x2690fd(_0x194245[_0x5953fa(0x126)]['range'])),h(_0x2690fd(_0x5deefd)));_0x3d1a91==null?_0x3ad33b['id']=_0x44f38d['id']:(_0x5deefd[_0x5953fa(0xcd)]+=_0x3d1a91[_0x5953fa(0xcc)],_0x5deefd[_0x5953fa(0xf0)]+=_0x3d1a91[_0x5953fa(0xcc)]+_0x3d1a91[_0x5953fa(0x210)]);}),{'m1Prime':_0x1ef9eb,'m2Prime':_0x3ad33b};}},fo={'m1':_0x361204['id'],'m2':_0x53e0ba['id'],'handler'(_0x1da687,_0x162837){const _0x511554=_0x59a5e,_0x12332c={'m1Prime':[],'m2Prime':[]};if(_0x1da687[_0x511554(0x126)][_0x511554(0x10f)]!==_0x162837['params'][_0x511554(0x10f)]||_0x1da687[_0x511554(0x126)][_0x511554(0x18c)]!==_0x162837['params'][_0x511554(0x18c)])return _0x12332c;const _0x5843e6=_0x589265[_0x511554(0x1cb)](_0x162837);let _0x140c3f=!0x1;return _0x5843e6[_0x511554(0x126)][_0x511554(0x14a)][_0x511554(0x233)](_0x5c4843=>{const _0x4a02fe=_0x511554,{range:_0x5a18f6,primary:_0xeef206}=_0x5c4843,_0x4cb80d=_0x1465b8(h(_0x2690fd(_0x1da687[_0x4a02fe(0x126)][_0x4a02fe(0x114)])),h(_0x2690fd(_0x5a18f6)));if(_0x4cb80d!=null&&(_0x4cb80d[_0x4a02fe(0x210)]||_0x4cb80d[_0x4a02fe(0xcc)])){if(_0x5a18f6[_0x4a02fe(0xcd)]+=_0x4cb80d[_0x4a02fe(0xcc)],_0x5a18f6['endRow']+=_0x4cb80d[_0x4a02fe(0xcc)]+(_0x4cb80d[_0x4a02fe(0x210)]||0x0),_0xeef206){const _0x2ef8a6=_0x1465b8(h(_0x2690fd(_0x1da687[_0x4a02fe(0x126)][_0x4a02fe(0x114)])),h(_0x2690fd(_0xeef206)));if(_0x2ef8a6==null){_0xeef206[_0x4a02fe(0xcd)]=_0x5a18f6[_0x4a02fe(0xcd)],_0xeef206[_0x4a02fe(0xf0)]=_0x5a18f6[_0x4a02fe(0xcd)],_0xeef206[_0x4a02fe(0x14c)]=_0x5a18f6[_0x4a02fe(0xcd)];return;}(_0x2ef8a6[_0x4a02fe(0x210)]||_0x2ef8a6[_0x4a02fe(0xcc)])&&(_0xeef206[_0x4a02fe(0xcd)]+=_0x2ef8a6[_0x4a02fe(0xcc)],_0xeef206[_0x4a02fe(0xf0)]+=_0x2ef8a6[_0x4a02fe(0xcc)],_0xeef206[_0x4a02fe(0x14c)]+=_0x2ef8a6['step']);}_0x140c3f=!0x0;}}),_0x140c3f&&_0x12332c[_0x511554(0x111)]['push'](_0x5843e6),_0x12332c;}},Ro={'m1':_0x361204['id'],'m2':_0xa0b953['id'],'handler'(_0x2f4363,_0xd1119d){const _0x4c0ebd=_0x59a5e,_0x44161f={'m1Prime':[_0x2f4363],'m2Prime':[_0xd1119d]};if(_0x2f4363[_0x4c0ebd(0x126)][_0x4c0ebd(0x10f)]!==_0xd1119d[_0x4c0ebd(0x126)]['unitId']||_0x2f4363[_0x4c0ebd(0x126)][_0x4c0ebd(0x18c)]!==_0xd1119d[_0x4c0ebd(0x126)]['subUnitId'])return _0x44161f;const _0x555ce2=_0x589265[_0x4c0ebd(0x1cb)](_0x2f4363),_0x36907b=_0x589265[_0x4c0ebd(0x1cb)](_0xd1119d),_0x1b1ce0=Me({'start':_0x2f4363['params'][_0x4c0ebd(0x114)]['startRow'],'end':_0x2f4363['params'][_0x4c0ebd(0x114)][_0x4c0ebd(0xf0)]},{'start':_0xd1119d[_0x4c0ebd(0x126)][_0x4c0ebd(0x114)][_0x4c0ebd(0xcd)],'end':_0xd1119d['params']['range']['endRow']});return _0x1b1ce0===null?{'m1Prime':[_0x555ce2,{'id':_0x26442d['id'],'params':{'unitId':_0xd1119d['params'][_0x4c0ebd(0x10f)],'subUnitId':_0xd1119d[_0x4c0ebd(0x126)][_0x4c0ebd(0x10f)]}}],'m2Prime':[]}:(_0x36907b[_0x4c0ebd(0x126)][_0x4c0ebd(0x114)]['startRow']=_0x1b1ce0[_0x4c0ebd(0x13a)],_0x36907b[_0x4c0ebd(0x126)]['range'][_0x4c0ebd(0xf0)]=_0x1b1ce0['end'],{'m1Prime':[_0x36907b,_0x555ce2],'m2Prime':[_0x36907b]});}},ho={'m1':_0x361204['id'],'m2':_0x264207['id'],'handler'(_0x2baa44,_0x4b4d44){const _0x1f5910=_0x59a5e,_0xc488f2={'m1Prime':_0x2baa44,'m2Prime':_0x4b4d44};if(_0x2baa44[_0x1f5910(0x126)][_0x1f5910(0x10f)]!==_0x4b4d44[_0x1f5910(0x126)][_0x1f5910(0x10f)]||_0x2baa44[_0x1f5910(0x126)][_0x1f5910(0x18c)]!==_0x4b4d44['params'][_0x1f5910(0x18c)])return _0xc488f2;const _0x3b6061=_0x589265[_0x1f5910(0x1cb)](_0x2baa44),_0x5bbc0b=_0x589265['deepClone'](_0x4b4d44),{rowsAutoHeightInfo:_0x2dced2}=_0x5bbc0b[_0x1f5910(0x126)];for(let _0x263529=_0x2dced2['length']-0x1;_0x263529>=0x0;_0x263529--){const _0x2c512a=_0x2dced2[_0x263529],_0xbdca46={'startRow':_0x2c512a[_0x1f5910(0x204)],'endRow':_0x2c512a[_0x1f5910(0x204)],'startColumn':0x0,'endColumn':0x0},_0x201dee=_0x1465b8(h(_0x2690fd(_0x2baa44[_0x1f5910(0x126)][_0x1f5910(0x114)])),_0x2690fd(_0xbdca46));_0x201dee==null?_0x2dced2[_0x1f5910(0xc2)](_0x263529,0x1):_0x2c512a['row']+=_0x201dee[_0x1f5910(0xcc)];}return{'m1Prime':_0x3b6061,'m2Prime':_0x5bbc0b};}},go={'m1':_0x361204['id'],'m2':_0x47c35c['id'],'handler'(_0x488b1a,_0x3c22bc){const _0x1cf366=_0x59a5e,_0x48798e={'m1Prime':_0x488b1a,'m2Prime':_0x3c22bc};if(_0x488b1a['params'][_0x1cf366(0x10f)]!==_0x3c22bc[_0x1cf366(0x126)][_0x1cf366(0x10f)]||_0x488b1a[_0x1cf366(0x126)][_0x1cf366(0x18c)]!==_0x3c22bc[_0x1cf366(0x126)][_0x1cf366(0x18c)])return _0x48798e;const _0x1f126a=_0x589265[_0x1cf366(0x1cb)](_0x488b1a),_0x34c8aa=_0x589265[_0x1cf366(0x1cb)](_0x3c22bc),{ranges:_0x3e3101,rowHeight:_0x378bb1}=_0x34c8aa['params'];return _0x3e3101[_0x1cf366(0x233)](_0x3f99ef=>{const _0x1fd576=_0x1cf366,_0xd749fb=_0x1465b8(h(_0x2690fd(_0x488b1a[_0x1fd576(0x126)][_0x1fd576(0x114)])),_0x2690fd(_0x3f99ef));_0xd749fb==null?_0x34c8aa['id']=_0x44f38d['id']:(_0x3f99ef['startRow']+=_0xd749fb[_0x1fd576(0xcc)],_0x3f99ef[_0x1fd576(0xf0)]+=_0xd749fb[_0x1fd576(0xcc)]+_0xd749fb[_0x1fd576(0x210)]);}),typeof _0x378bb1!=_0x1cf366(0x1e1)&&_0xaec4eb(_0x488b1a['params'][_0x1cf366(0x114)][_0x1cf366(0xcd)],_0x488b1a['params'][_0x1cf366(0x114)]['endRow']-_0x488b1a[_0x1cf366(0x126)][_0x1cf366(0x114)][_0x1cf366(0xcd)]+0x1,_0x378bb1),{'m1Prime':_0x1f126a,'m2Prime':_0x34c8aa};}},Io={'m1':_0x361204['id'],'m2':_0x5392a6['id'],'handler'(_0x57affa,_0x209c9a){const _0x4601a0=_0x59a5e,_0x12d062={'m1Prime':_0x57affa,'m2Prime':_0x209c9a};if(_0x57affa['params'][_0x4601a0(0x10f)]!==_0x209c9a[_0x4601a0(0x126)]['unitId']||_0x57affa['params'][_0x4601a0(0x18c)]!==_0x209c9a[_0x4601a0(0x126)][_0x4601a0(0x18c)])return _0x12d062;const _0xb0fc69=_0x589265['deepClone'](_0x57affa),_0x3ec7a0=_0x589265[_0x4601a0(0x1cb)](_0x209c9a),{ranges:_0xdcee28,autoHeightInfo:_0xf88969}=_0x3ec7a0['params'];return _0xdcee28[_0x4601a0(0x233)](_0xfdc220=>{const _0x11eabe=_0x4601a0,_0x4378be=_0x1465b8(h(_0x2690fd(_0x57affa[_0x11eabe(0x126)][_0x11eabe(0x114)])),_0x2690fd(_0xfdc220));_0x4378be==null?_0x3ec7a0['id']=_0x44f38d['id']:(_0xfdc220[_0x11eabe(0xcd)]+=_0x4378be[_0x11eabe(0xcc)],_0xfdc220[_0x11eabe(0xf0)]+=_0x4378be[_0x11eabe(0xcc)]+_0x4378be[_0x11eabe(0x210)]);}),typeof _0xf88969!='number'&&_0xaec4eb(_0x57affa[_0x4601a0(0x126)][_0x4601a0(0x114)]['startRow'],_0x57affa[_0x4601a0(0x126)][_0x4601a0(0x114)][_0x4601a0(0xf0)]-_0x57affa['params']['range'][_0x4601a0(0xcd)]+0x1,_0xf88969),{'m1Prime':_0xb0fc69,'m2Prime':_0x3ec7a0};}},wo={'m1':_0x361204['id'],'m2':_0x164c55['id'],'handler':(_0xfcba52,_0x6dd7db)=>{const _0x2ad3ee=_0x59a5e,_0x15e5e6={'m1Prime':_0xfcba52,'m2Prime':_0x6dd7db};if(_0xfcba52[_0x2ad3ee(0x126)]['unitId']!==_0x6dd7db[_0x2ad3ee(0x126)]['unitId']||_0xfcba52[_0x2ad3ee(0x126)][_0x2ad3ee(0x18c)]!==_0x6dd7db[_0x2ad3ee(0x126)][_0x2ad3ee(0x18c)])return _0x15e5e6;const _0xac4a99={'id':_0x564f63['id'],'params':{'unitId':_0xfcba52[_0x2ad3ee(0x126)][_0x2ad3ee(0x10f)],'subUnitId':_0xfcba52[_0x2ad3ee(0x126)][_0x2ad3ee(0x18c)],'range':_0xfcba52[_0x2ad3ee(0x126)][_0x2ad3ee(0x114)]}},_0x5e56a3=wt(_0x6dd7db,_0xac4a99);return{'m1Prime':[_0xfcba52,..._0x5e56a3],'m2Prime':[_0x6dd7db,..._0x5e56a3]};}},Co={'m1':_0x361204['id'],'m2':_0x2bcc50['id'],'handler':(_0x46463e,_0x2c18b4)=>{const _0x56f4b5=_0x59a5e,_0xfb99be={'m1Prime':_0x46463e,'m2Prime':_0x2c18b4};if(_0x46463e[_0x56f4b5(0x126)]['unitId']!==_0x2c18b4[_0x56f4b5(0x126)][_0x56f4b5(0x10f)]||_0x2c18b4['params'][_0x56f4b5(0x18c)]!==_0x46463e[_0x56f4b5(0x126)][_0x56f4b5(0x18c)])return _0xfb99be;const _0x2b1deb={'id':_0x564f63['id'],'params':{'range':_0x46463e[_0x56f4b5(0x126)][_0x56f4b5(0x114)]}},_0x468635=Ct(_0x2c18b4,_0x2b1deb);return{'m1Prime':[_0x46463e,..._0x468635],'m2Prime':[_0x2c18b4,..._0x468635]};}},Po={'m1':_0x49900b['id'],'m2':_0x223d91['id'],'handler'(_0xf6e9fc,_0x5b9e24){const _0x25188c=_0x59a5e,_0x5ed095=_0x589265[_0x25188c(0x1cb)](_0xf6e9fc),_0x59f44f=_0x589265[_0x25188c(0x1cb)](_0x5b9e24);if(_0xf6e9fc[_0x25188c(0x126)][_0x25188c(0x10f)]!==_0x5b9e24['params'][_0x25188c(0x10f)]||_0xf6e9fc[_0x25188c(0x126)][_0x25188c(0x18c)]!==_0x5b9e24['params']['subUnitId'])return{'m1Prime':_0x5ed095,'m2Prime':_0x59f44f};for(let _0xee879f=0x0;_0xee879f<_0x5ed095[_0x25188c(0x126)][_0x25188c(0x238)]['length'];_0xee879f++){let _0x5c21f5=!0x1;for(let _0x497742=0x0;_0x497742<_0x59f44f['params']['ranges'][_0x25188c(0x210)];_0x497742++){const _0x17846a=_0x5ed095['params'][_0x25188c(0x238)][_0xee879f],_0x45a62e=_0x59f44f[_0x25188c(0x126)]['ranges'][_0x497742];if(_0xff1ead[_0x25188c(0x1fd)](_0x17846a,_0x45a62e)){_0x5c21f5=!0x0;break;}}_0x5c21f5&&(_0x5ed095[_0x25188c(0x126)][_0x25188c(0x238)][_0x25188c(0xc2)](_0xee879f,0x1),_0xee879f--);}return _0x5ed095['params'][_0x25188c(0x238)]['length']===0x0&&(_0x5ed095['id']=_0x44f38d['id']),{'m1Prime':_0x5ed095,'m2Prime':_0x59f44f};}},Uo={'m1':_0x49900b['id'],'m2':_0x55baf7['id'],'handler'(_0x324fd7,_0x3c151b){const _0x569e58=_0x59a5e,_0x57d821=_0x589265[_0x569e58(0x1cb)](_0x324fd7),_0x3b8343=_0x589265[_0x569e58(0x1cb)](_0x3c151b);if(_0x324fd7[_0x569e58(0x126)][_0x569e58(0x10f)]!==_0x3c151b['params']['unitId']||_0x324fd7[_0x569e58(0x126)][_0x569e58(0x18c)]!==_0x3c151b[_0x569e58(0x126)][_0x569e58(0x18c)])return{'m1Prime':_0x57d821,'m2Prime':_0x3b8343};const _0xdcff6f=_0x57d821[_0x569e58(0x126)][_0x569e58(0x238)]['map'](_0x407557=>{const _0x246874=_0x569e58,_0x190493=_0x3b8343['params'][_0x246874(0x114)],_0x14c930=_0x190493[_0x246874(0x104)]-_0x190493[_0x246874(0x11d)]+0x1;return _0x190493[_0x246874(0x11d)]<=_0x407557['startColumn']?{..._0x407557,'startColumn':_0x407557[_0x246874(0x11d)]+_0x14c930,'endColumn':_0x407557[_0x246874(0x104)]+_0x14c930}:_0x190493[_0x246874(0x11d)]>_0x407557[_0x246874(0x11d)]&&_0x190493[_0x246874(0x11d)]<=_0x407557[_0x246874(0x104)]?{..._0x407557,'endColumn':_0x407557[_0x246874(0x104)]+_0x14c930}:{..._0x407557};});return _0x57d821[_0x569e58(0x126)]['ranges']=_0xdcff6f,{'m1Prime':_0x57d821,'m2Prime':_0x3b8343};}},bo={'m1':_0x49900b['id'],'m2':_0x5694af['id'],'handler'(_0x2925b7,_0x1223d8){const _0x1a0da2=_0x59a5e,_0x1f6a59=_0x589265[_0x1a0da2(0x1cb)](_0x2925b7),_0x14b2b1=_0x589265[_0x1a0da2(0x1cb)](_0x1223d8);if(_0x2925b7[_0x1a0da2(0x126)]['unitId']!==_0x1223d8[_0x1a0da2(0x126)]['unitId']||_0x2925b7['params'][_0x1a0da2(0x18c)]!==_0x1223d8[_0x1a0da2(0x126)]['subUnitId'])return{'m1Prime':_0x1f6a59,'m2Prime':_0x14b2b1};const _0x17d449=_0x1f6a59['params'][_0x1a0da2(0x238)][_0x1a0da2(0xea)](_0x135593=>{const _0x2db0b2=_0x1a0da2,_0x51ac8d=_0x14b2b1[_0x2db0b2(0x126)][_0x2db0b2(0x114)],_0x319f6b=_0x51ac8d['endRow']-_0x51ac8d[_0x2db0b2(0xcd)]+0x1;return _0x51ac8d[_0x2db0b2(0xcd)]<=_0x135593['startRow']?{..._0x135593,'startRow':_0x135593[_0x2db0b2(0xcd)]+_0x319f6b,'endRow':_0x135593[_0x2db0b2(0xf0)]+_0x319f6b}:_0x51ac8d[_0x2db0b2(0xcd)]>_0x135593['startRow']&&_0x51ac8d['startRow']<=_0x135593[_0x2db0b2(0xf0)]?{..._0x135593,'endRow':_0x135593[_0x2db0b2(0xf0)]+_0x319f6b}:{..._0x135593};});return _0x1f6a59[_0x1a0da2(0x126)][_0x1a0da2(0x238)]=_0x17d449,{'m1Prime':_0x1f6a59,'m2Prime':_0x14b2b1};}},Mo={'m1':_0x49900b['id'],'m2':_0x4d7dbd['id'],'handler'(_0x12c7d2,_0x19c6c7){const _0x493a5b=_0x59a5e,_0x2ebb68=_0x589265[_0x493a5b(0x1cb)](_0x12c7d2),_0x40531a=_0x589265[_0x493a5b(0x1cb)](_0x19c6c7);if(_0x12c7d2[_0x493a5b(0x126)][_0x493a5b(0x10f)]!==_0x19c6c7[_0x493a5b(0x126)]['unitId']||_0x12c7d2[_0x493a5b(0x126)]['subUnitId']!==_0x19c6c7[_0x493a5b(0x126)][_0x493a5b(0x18c)])return{'m1Prime':_0x2ebb68,'m2Prime':_0x40531a};const _0x62e55e=_0x2ebb68[_0x493a5b(0x126)][_0x493a5b(0x238)]['reduce']((_0x33ef18,_0x118bc0)=>{const _0xbe40a0=_0x493a5b,{sourceRange:_0x5b7d1b,targetRange:_0x3bec04}=_0x19c6c7['params'],_0x2f3936={..._0x118bc0};return _0x5b7d1b[_0xbe40a0(0x104)]<_0x2f3936[_0xbe40a0(0x11d)]&&_0x3bec04['startColumn']>_0x2f3936['endColumn']?(_0x2f3936[_0xbe40a0(0x11d)]-=_0x5b7d1b['endColumn']-_0x5b7d1b[_0xbe40a0(0x11d)]+0x1,_0x2f3936['endColumn']-=_0x5b7d1b[_0xbe40a0(0x104)]-_0x5b7d1b[_0xbe40a0(0x11d)]+0x1,K(_0x2f3936)&&_0x33ef18[_0xbe40a0(0x112)](_0x2f3936)):_0x5b7d1b[_0xbe40a0(0x11d)]>_0x2f3936['endColumn']&&_0x3bec04['endColumn']<_0x2f3936['startColumn']?(_0x2f3936[_0xbe40a0(0x11d)]+=_0x5b7d1b[_0xbe40a0(0x104)]-_0x5b7d1b[_0xbe40a0(0x11d)]+0x1,_0x2f3936[_0xbe40a0(0x104)]+=_0x5b7d1b[_0xbe40a0(0x104)]-_0x5b7d1b[_0xbe40a0(0x11d)]+0x1,K(_0x2f3936)&&_0x33ef18['push'](_0x2f3936)):_0xff1ead[_0xbe40a0(0x1fd)](_0x2f3936,_0x5b7d1b)||_0xff1ead[_0xbe40a0(0x1fd)](_0x2f3936,_0x3bec04)||_0x33ef18[_0xbe40a0(0x112)](_0x2f3936),_0x33ef18;},[]);return _0x2ebb68[_0x493a5b(0x126)][_0x493a5b(0x238)]=_0x62e55e,_0x2ebb68['params']['ranges'][_0x493a5b(0x210)]===0x0&&(_0x2ebb68['id']=_0x44f38d['id']),{'m1Prime':_0x2ebb68,'m2Prime':_0x40531a};}},vo={'m1':_0x49900b['id'],'m2':_0x79cdbf['id'],'handler'(_0x4f490c,_0x13ce77){const _0x3d0dc6=_0x59a5e,_0xa27cc5=_0x589265[_0x3d0dc6(0x1cb)](_0x4f490c),_0xa7ffd=_0x589265['deepClone'](_0x13ce77);if(_0x4f490c['params'][_0x3d0dc6(0x10f)]!==_0x13ce77[_0x3d0dc6(0x126)][_0x3d0dc6(0x10f)]||_0x4f490c[_0x3d0dc6(0x126)][_0x3d0dc6(0x18c)]!==_0x13ce77[_0x3d0dc6(0x126)][_0x3d0dc6(0x18c)])return{'m1Prime':_0xa27cc5,'m2Prime':_0xa7ffd};const _0x8d737b=_0xa27cc5['params'][_0x3d0dc6(0x238)][_0x3d0dc6(0x247)]((_0x519b37,_0x6b90e4)=>{const _0xf3f34e=_0x3d0dc6,{sourceRange:_0x5e54e9,targetRange:_0x3e7376}=_0x13ce77[_0xf3f34e(0x126)],_0x4e5286={..._0x6b90e4};return _0x5e54e9[_0xf3f34e(0xf0)]<_0x4e5286[_0xf3f34e(0xcd)]&&_0x3e7376[_0xf3f34e(0xcd)]>_0x4e5286[_0xf3f34e(0xf0)]?(_0x4e5286[_0xf3f34e(0xcd)]-=_0x5e54e9[_0xf3f34e(0xf0)]-_0x5e54e9[_0xf3f34e(0xcd)]+0x1,_0x4e5286[_0xf3f34e(0xf0)]-=_0x5e54e9['endRow']-_0x5e54e9[_0xf3f34e(0xcd)]+0x1,K(_0x4e5286)&&_0x519b37[_0xf3f34e(0x112)](_0x4e5286)):_0x5e54e9[_0xf3f34e(0xcd)]>_0x4e5286[_0xf3f34e(0xf0)]&&_0x3e7376[_0xf3f34e(0xf0)]<_0x4e5286[_0xf3f34e(0xcd)]?(_0x4e5286[_0xf3f34e(0xcd)]+=_0x5e54e9[_0xf3f34e(0xf0)]-_0x5e54e9[_0xf3f34e(0xcd)]+0x1,_0x4e5286[_0xf3f34e(0xf0)]+=_0x5e54e9['endRow']-_0x5e54e9[_0xf3f34e(0xcd)]+0x1,K(_0x4e5286)&&_0x519b37[_0xf3f34e(0x112)](_0x4e5286)):_0xff1ead[_0xf3f34e(0x1fd)](_0x4e5286,_0x5e54e9)||_0xff1ead[_0xf3f34e(0x1fd)](_0x4e5286,_0x3e7376)||_0x519b37[_0xf3f34e(0x112)](_0x4e5286),_0x519b37;},[]);return _0xa27cc5['params'][_0x3d0dc6(0x238)]=_0x8d737b,_0xa27cc5['params'][_0x3d0dc6(0x238)]['length']===0x0&&(_0xa27cc5['id']=_0x44f38d['id']),{'m1Prime':_0xa27cc5,'m2Prime':_0xa7ffd};}},Eo={'m1':_0x49900b['id'],'m2':_0x3f9ab9['id'],'handler'(_0x14d7ac,_0x356af7){const _0x136373=_0x59a5e,_0x1ca335=_0x589265[_0x136373(0x1cb)](_0x14d7ac),_0x570888=_0x589265[_0x136373(0x1cb)](_0x356af7);if(_0x14d7ac[_0x136373(0x126)]['unitId']!==_0x356af7[_0x136373(0x126)]['unitId']||_0x14d7ac[_0x136373(0x126)]['subUnitId']!==_0x356af7[_0x136373(0x126)]['subUnitId'])return{'m1Prime':_0x1ca335,'m2Prime':_0x570888};const _0xf1af50=_0x1ca335[_0x136373(0x126)][_0x136373(0x238)][_0x136373(0x247)]((_0x145a7e,_0x570e51)=>{const _0xa88617=_0x136373,_0x50aa62=_0x570888[_0xa88617(0x126)][_0xa88617(0x114)],_0x3d135c=_0x50aa62[_0xa88617(0x104)]-_0x50aa62[_0xa88617(0x11d)]+0x1;let _0x2f3ee4={..._0x570e51};return _0x50aa62['startColumn']>_0x570e51[_0xa88617(0x104)]?_0x2f3ee4={..._0x570e51}:_0x50aa62['startColumn']>=_0x570e51[_0xa88617(0x11d)]&&_0x50aa62[_0xa88617(0x11d)]<=_0x570e51['endColumn']&&_0x50aa62['endColumn']>_0x570e51[_0xa88617(0x104)]?(_0x2f3ee4[_0xa88617(0x104)]=_0x50aa62[_0xa88617(0x11d)]-0x1,_0x50aa62[_0xa88617(0x11d)]===_0x570e51[_0xa88617(0x11d)]&&(_0x2f3ee4=null)):_0x50aa62['startColumn']>_0x570e51[_0xa88617(0x11d)]&&_0x50aa62['endColumn']<_0x570e51[_0xa88617(0x104)]?_0x2f3ee4['endColumn']=_0x570e51[_0xa88617(0x104)]-_0x3d135c:_0x50aa62[_0xa88617(0x11d)]<_0x570e51['startColumn']&&_0x50aa62[_0xa88617(0x104)]>=_0x570e51['startColumn']&&_0x50aa62[_0xa88617(0x104)]<=_0x570e51[_0xa88617(0x104)]?(_0x2f3ee4[_0xa88617(0x11d)]=_0x50aa62[_0xa88617(0x11d)],_0x2f3ee4['endColumn']=_0x570e51[_0xa88617(0x104)]-_0x3d135c,_0x50aa62[_0xa88617(0x104)]===_0x570e51[_0xa88617(0x104)]&&(_0x2f3ee4=null)):_0x50aa62[_0xa88617(0x11d)]<=_0x570e51[_0xa88617(0x11d)]&&_0x50aa62[_0xa88617(0x104)]>=_0x570e51['endColumn']?_0x2f3ee4=null:_0x50aa62['endColumn']<_0x570e51[_0xa88617(0x11d)]&&(_0x2f3ee4['startColumn']=_0x570e51[_0xa88617(0x11d)]-_0x3d135c,_0x2f3ee4['endColumn']=_0x570e51[_0xa88617(0x104)]-_0x3d135c),_0x2f3ee4&&!(_0x2f3ee4[_0xa88617(0xcd)]===_0x2f3ee4[_0xa88617(0xf0)]&&_0x2f3ee4['startColumn']===_0x2f3ee4[_0xa88617(0x104)])&&_0x145a7e['push'](_0x2f3ee4),_0x145a7e;},[]);return _0x1ca335[_0x136373(0x126)]['ranges']=_0xf1af50,_0x1ca335[_0x136373(0x126)][_0x136373(0x238)][_0x136373(0x210)]===0x0&&(_0x1ca335['id']=_0x44f38d['id']),{'m1Prime':_0x1ca335,'m2Prime':_0x570888};}},So={'m1':_0x49900b['id'],'m2':_0x361204['id'],'handler'(_0xd9f7de,_0x2dcb55){const _0x307f3b=_0x59a5e,_0x20c22f=_0x589265[_0x307f3b(0x1cb)](_0xd9f7de),_0x223818=_0x589265['deepClone'](_0x2dcb55);if(_0xd9f7de['params'][_0x307f3b(0x10f)]!==_0x2dcb55[_0x307f3b(0x126)][_0x307f3b(0x10f)]||_0xd9f7de[_0x307f3b(0x126)]['subUnitId']!==_0x2dcb55[_0x307f3b(0x126)][_0x307f3b(0x18c)])return{'m1Prime':_0x20c22f,'m2Prime':_0x223818};const _0x16bfc5=_0x20c22f['params']['ranges'][_0x307f3b(0x247)]((_0x189b9e,_0x4872bb)=>{const _0x322797=_0x307f3b,_0x1a0a83=_0x223818[_0x322797(0x126)][_0x322797(0x114)],_0x56eccb=_0x1a0a83[_0x322797(0xf0)]-_0x1a0a83[_0x322797(0xcd)]+0x1;let _0x17abef={..._0x4872bb};return _0x1a0a83[_0x322797(0xcd)]>_0x4872bb[_0x322797(0xf0)]?_0x17abef={..._0x4872bb}:_0x1a0a83[_0x322797(0xcd)]>=_0x4872bb['startRow']&&_0x1a0a83[_0x322797(0xcd)]<=_0x4872bb[_0x322797(0xf0)]&&_0x1a0a83[_0x322797(0xf0)]>_0x4872bb[_0x322797(0xf0)]?(_0x17abef[_0x322797(0xf0)]=_0x1a0a83[_0x322797(0xcd)]-0x1,_0x1a0a83[_0x322797(0xcd)]===_0x4872bb[_0x322797(0xcd)]&&(_0x17abef=null)):_0x1a0a83[_0x322797(0xcd)]>_0x4872bb[_0x322797(0xcd)]&&_0x1a0a83['endRow']<_0x4872bb['endRow']?_0x17abef[_0x322797(0xf0)]=_0x4872bb[_0x322797(0xf0)]-_0x56eccb:_0x1a0a83[_0x322797(0xcd)]<_0x4872bb[_0x322797(0xcd)]&&_0x1a0a83['endRow']>=_0x4872bb[_0x322797(0xcd)]&&_0x1a0a83[_0x322797(0xf0)]<=_0x4872bb[_0x322797(0xf0)]?(_0x17abef[_0x322797(0xcd)]=_0x1a0a83[_0x322797(0xcd)],_0x17abef[_0x322797(0xf0)]=_0x4872bb[_0x322797(0xf0)]-_0x56eccb,_0x1a0a83[_0x322797(0xf0)]===_0x4872bb['endRow']&&(_0x17abef=null)):_0x1a0a83[_0x322797(0xcd)]<=_0x4872bb['startRow']&&_0x1a0a83[_0x322797(0xf0)]>=_0x4872bb[_0x322797(0xf0)]?_0x17abef=null:_0x1a0a83['endRow']<_0x4872bb[_0x322797(0xcd)]&&(_0x17abef['startRow']=_0x4872bb['startRow']-_0x56eccb,_0x17abef[_0x322797(0xf0)]=_0x4872bb[_0x322797(0xf0)]-_0x56eccb),_0x17abef&&!(_0x17abef['startRow']===_0x17abef[_0x322797(0xf0)]&&_0x17abef[_0x322797(0x11d)]===_0x17abef[_0x322797(0x104)])&&_0x189b9e['push'](_0x17abef),_0x189b9e;},[]);return _0x20c22f['params'][_0x307f3b(0x238)]=_0x16bfc5,_0x20c22f[_0x307f3b(0x126)][_0x307f3b(0x238)][_0x307f3b(0x210)]===0x0&&(_0x20c22f['id']=_0x44f38d['id']),{'m1Prime':_0x20c22f,'m2Prime':_0x223818};}},Wo={'m1':_0x49900b['id'],'m2':_0x53e0ba['id'],'handler'(_0x219b4b,_0x2401a6){const _0x21ddb7=_0x59a5e,_0x32e797={'m1Prime':[],'m2Prime':[]};if(_0x219b4b[_0x21ddb7(0x126)][_0x21ddb7(0x10f)]!==_0x2401a6[_0x21ddb7(0x126)]['unitId']||_0x219b4b[_0x21ddb7(0x126)][_0x21ddb7(0x18c)]!==_0x2401a6[_0x21ddb7(0x126)][_0x21ddb7(0x18c)])return _0x32e797;const _0x2aa2fd=_0x589265[_0x21ddb7(0x1cb)](_0x2401a6),_0x40cfde=_0x2aa2fd[_0x21ddb7(0x126)][_0x21ddb7(0x14a)],_0x16ec3a=_0x40cfde[_0x40cfde['length']-0x1][_0x21ddb7(0x15c)];return _0x219b4b['params'][_0x21ddb7(0x238)][_0x21ddb7(0x233)](_0x32cb30=>{const _0x11ddd4=_0x21ddb7;_0x16ec3a&&_0xff1ead[_0x11ddd4(0x1fd)](_0x32cb30,_0x16ec3a)&&(_0x16ec3a[_0x11ddd4(0x19e)]=!0x1,_0x16ec3a['isMergedMainCell']=!0x1,_0x16ec3a[_0x11ddd4(0xcd)]=_0x32cb30[_0x11ddd4(0xcd)],_0x16ec3a['startColumn']=_0x32cb30[_0x11ddd4(0x11d)],_0x16ec3a[_0x11ddd4(0xf0)]=_0x32cb30[_0x11ddd4(0xcd)],_0x16ec3a[_0x11ddd4(0x104)]=_0x32cb30[_0x11ddd4(0x11d)],_0x16ec3a['actualColumn']=_0x32cb30['startColumn'],_0x16ec3a['actualRow']=_0x32cb30[_0x11ddd4(0xcd)]);}),_0x32e797[_0x21ddb7(0x111)]['push'](_0x2aa2fd),_0x32e797;}},Vo=_0xf13103=>{const _0x51e8e3=_0x59a5e,{order:_0x24a6ea}=_0xf13103,_0x5a06bc={};return Object[_0x51e8e3(0x10b)](_0x24a6ea)[_0x51e8e3(0x233)](_0x2b98b1=>{_0x5a06bc[_0x24a6ea[Number(_0x2b98b1)]]=Number(_0x2b98b1);}),{..._0xf13103,'order':_0x5a06bc};},_o=(_0x2b81ec,_0x3b6da5)=>{const _0x48cde8=_0x59a5e,_0x5a1283={};return Array[_0x48cde8(0x16d)](new Set(Object[_0x48cde8(0x10b)](_0x2b81ec)['concat'](Object['keys'](_0x3b6da5))[_0x48cde8(0xea)](Number)))[_0x48cde8(0x233)](_0x454370=>{let _0x19a1f3;_0x454370 in _0x3b6da5?(_0x19a1f3=_0x3b6da5[_0x454370],_0x19a1f3 in _0x2b81ec&&(_0x19a1f3=_0x2b81ec[_0x19a1f3])):_0x19a1f3=_0x2b81ec[_0x454370],_0x5a1283[_0x454370]=_0x19a1f3;}),_0x5a1283;},Oo={'m1':_0x2a2d75['id'],'m2':_0x2a2d75['id'],'handler'(_0x153e6c,_0x35e1bf){const _0x7d5606=_0x59a5e,_0x4d5c45={'m1Prime':_0x153e6c,'m2Prime':_0x35e1bf};if(_0x153e6c[_0x7d5606(0x126)][_0x7d5606(0x10f)]!==_0x35e1bf[_0x7d5606(0x126)][_0x7d5606(0x10f)])return _0x4d5c45;const {range:_0x3aed01}=_0x153e6c['params'],{range:_0x14cd46}=_0x35e1bf[_0x7d5606(0x126)];if(_0x14cd46[_0x7d5606(0x11d)]===_0x3aed01['startColumn']&&_0x14cd46[_0x7d5606(0x104)]===_0x3aed01[_0x7d5606(0x104)]&&_0x14cd46['startRow']<=_0x3aed01['startRow']&&_0x14cd46['endRow']>=_0x3aed01[_0x7d5606(0xf0)]){const _0x5241cb=Vo(_0x153e6c[_0x7d5606(0x126)])[_0x7d5606(0x135)],_0x38ce1a={'id':_0x2a2d75['id'],'params':{..._0x35e1bf[_0x7d5606(0x126)],'range':_0x14cd46,'order':_o(_0x5241cb,_0x35e1bf[_0x7d5606(0x126)]['order'])}};return{'m1Prime':[],'m2Prime':_0x38ce1a};}return _0xff1ead[_0x7d5606(0x1fd)](_0x3aed01,_0x14cd46)?{'error':new Error('reorder\x20range\x20is\x20conflict\x20with\x20reorder\x20range')}:_0x4d5c45;}},re={'id':_0x59a5e(0xd6),'type':_0x3f7989['MUTATION'],'handler':()=>!0x0},yo={'m1':re['id'],'m2':_0x59a5e(0x227),'handler'(_0x5dd14a,_0x3d7a50){const _0x326948=_0x59a5e;return{'error':new Error(_0x326948(0x188))};}},No={'m1':_0x59a5e(0x227),'m2':re['id'],'handler'(_0x5340c4,_0x3e8cd2){const _0x452128=_0x59a5e;return _0x5340c4[_0x452128(0x126)][_0x452128(0x10f)]===_0x3e8cd2['params']['unitId']?{'m1Prime':[],'m2Prime':_0x3e8cd2}:{'m1Prime':_0x5340c4,'m2Prime':_0x3e8cd2};}},Do={'m1':_0xac87f6['id'],'m2':_0xac87f6['id'],'handler'(_0x489ad3,_0x5ddb09){const _0x2b84a8=_0x59a5e,_0x3732f6={'m1Prime':_0x489ad3,'m2Prime':_0x5ddb09};if(_0x489ad3[_0x2b84a8(0x126)]['unitId']!==_0x5ddb09[_0x2b84a8(0x126)]['unitId']||_0x489ad3[_0x2b84a8(0x126)][_0x2b84a8(0x18c)]!==_0x5ddb09[_0x2b84a8(0x126)][_0x2b84a8(0x18c)])return _0x3732f6;const _0x4d4af6=_0x489ad3['params']['columnData'],_0x1c2eed=_0x5ddb09[_0x2b84a8(0x126)][_0x2b84a8(0x1b5)],_0x3448ec={},_0x4b60e0=_0x589265[_0x2b84a8(0x1cb)](_0x489ad3),_0x43cd9e=new Set([...Object[_0x2b84a8(0x10b)](_0x4d4af6)[_0x2b84a8(0xea)](Number),...Object[_0x2b84a8(0x10b)](_0x1c2eed)[_0x2b84a8(0xea)](Number)]);for(const _0x7807a5 of _0x43cd9e){const _0x3142da=_0x4d4af6[_0x7807a5],_0x4026a8=_0x1c2eed[_0x7807a5];if(_0x3142da&&_0x4026a8){const _0x3c5298={..._0x3142da,..._0x4026a8};_0x3448ec[_0x7807a5]=_0x3c5298;}else _0x3142da?_0x3448ec[_0x7807a5]=_0x3142da:_0x4026a8&&(_0x3448ec[_0x7807a5]=_0x4026a8);}return _0x4b60e0[_0x2b84a8(0x126)][_0x2b84a8(0x1b5)]=_0x3448ec,{'m1Prime':_0x4b60e0,'m2Prime':_0x5ddb09};}},Ao={'m1':_0x1ef265['id'],'m2':_0x1ef265['id'],'handler'(_0x1f3a98,_0x798e55){const _0x51a143=_0x59a5e;if(_0x1f3a98[_0x51a143(0x126)][_0x51a143(0x10f)]!==_0x798e55[_0x51a143(0x126)][_0x51a143(0x10f)]||_0x1f3a98[_0x51a143(0x126)][_0x51a143(0x18c)]!==_0x798e55[_0x51a143(0x126)][_0x51a143(0x18c)])return{'m1Prime':_0x1f3a98,'m2Prime':_0x798e55};const _0x8ce213=_0x1f3a98[_0x51a143(0x126)][_0x51a143(0x20d)]||_0x1f3a98['params'][_0x51a143(0xbc)][_0x51a143(0x20d)],_0x1047b1=_0x798e55[_0x51a143(0x126)][_0x51a143(0x20d)]||_0x798e55[_0x51a143(0x126)][_0x51a143(0xbc)][_0x51a143(0x20d)];if(_0x8ce213!==_0x1047b1)return{'m1Prime':_0x1f3a98,'m2Prime':_0x798e55};const _0x4d274c=_0x589265[_0x51a143(0x1cb)](_0x798e55);return{'m1Prime':[],'m2Prime':_0x4d274c};}};function To(_0x502e15,_0x4732bb){const _0x2a2ec8=_0x59a5e,_0x8b7f8e=_0x502e15[_0x2a2ec8(0x247)]((_0x31fda7,_0x55b1b3)=>(_0x31fda7[_0x2a2ec8(0x226)](_0x55b1b3[_0x2a2ec8(0x161)],!0x0),_0x31fda7),new Map());return _0x4732bb[_0x2a2ec8(0x221)](_0x3227ae=>_0x8b7f8e[_0x2a2ec8(0x175)](_0x3227ae[_0x2a2ec8(0x161)])!==void 0x0);}function Lo(_0x3e1f81,_0x2596b2){const _0x59fe1d=_0x59a5e,_0x4f12fc=_0x3e1f81[_0x59fe1d(0x23f)];return _0x2596b2[_0x59fe1d(0x23f)][_0x59fe1d(0x221)](_0x21bc7=>_0x4f12fc[_0x59fe1d(0x147)](_0x21bc7)!==-0x1);}const {UPDATE:ko,REMOVE:xo,ARRANGE:xe}=_0x2e9598,Ho={'m1':_0x269484['id'],'m2':_0x269484['id'],'handler'(_0x4fb9c5,_0x4984ce){const _0x2f86df=_0x59a5e,_0x5f3210=_0x4fb9c5[_0x2f86df(0x126)],_0x504a83=_0x4984ce['params'];if(_0x5f3210['unitId']!==_0x504a83['unitId']||_0x5f3210[_0x2f86df(0x18c)]!==_0x504a83[_0x2f86df(0x18c)])return{'m1Prime':_0x4fb9c5,'m2Prime':_0x4984ce};const _0x2bb2dd=_0x5f3210['type'],_0x1a75f7=_0x504a83[_0x2f86df(0x173)];if(_0x2bb2dd===xo&&_0x1a75f7===ko&&To(_0x5f3210[_0x2f86df(0x1b2)],_0x504a83[_0x2f86df(0x1b2)]))return{'m1Prime':_0x589265[_0x2f86df(0x1cb)](_0x4fb9c5),'m2Prime':[]};if(_0x2bb2dd===xe&&_0x1a75f7===xe&&Lo(_0x5f3210[_0x2f86df(0x1b2)],_0x504a83[_0x2f86df(0x1b2)])){const _0x5bac97=_0x589265[_0x2f86df(0x1cb)](_0x4fb9c5),_0x1b3bc3=_0x589265[_0x2f86df(0x1cb)](_0x4984ce);return{'m1Prime':{..._0x5bac97,'params':{..._0x5bac97[_0x2f86df(0x126)],'op':_0xc3339f[_0x2f86df(0x173)][_0x2f86df(0x1a6)](_0x5bac97['params']['op'],_0x1b3bc3[_0x2f86df(0x126)]['op'],_0x2f86df(0x17d))}},'m2Prime':{..._0x1b3bc3,'params':{..._0x1b3bc3[_0x2f86df(0x126)],'op':_0xc3339f[_0x2f86df(0x173)]['transform'](_0x1b3bc3[_0x2f86df(0x126)]['op'],_0x5bac97[_0x2f86df(0x126)]['op'],_0x2f86df(0x128))}}};}return{'m1Prime':_0x4fb9c5,'m2Prime':_0x4984ce};}},Fo={'m1':_0x491dee['id'],'m2':_0x491dee['id'],'handler'(_0x3a2532,_0x1f4587){const _0x33cf1e=_0x59a5e,_0x5d6de6={'m1Prime':_0x3a2532,'m2Prime':_0x1f4587};return _0x3a2532[_0x33cf1e(0x126)][_0x33cf1e(0x10f)]!==_0x1f4587['params']['unitId']||_0x3a2532[_0x33cf1e(0x126)][_0x33cf1e(0x18c)]!==_0x1f4587[_0x33cf1e(0x126)][_0x33cf1e(0x18c)]?_0x5d6de6:{'error':new Error(_0x33cf1e(0x13d))};}},Bo={'m1':_0x432da8['id'],'m2':_0x5775f8['id'],'handler'(_0x4e0d63,_0x18e56a){const _0x3550e7=_0x59a5e;if(_0x4e0d63['params'][_0x3550e7(0x10f)]!==_0x18e56a[_0x3550e7(0x126)][_0x3550e7(0x10f)]||_0x4e0d63[_0x3550e7(0x126)][_0x3550e7(0x18c)]!==_0x18e56a[_0x3550e7(0x126)][_0x3550e7(0x18c)])return{'m1Prime':_0x4e0d63,'m2Prime':_0x18e56a};const _0x408db7=_0x589265[_0x3550e7(0x1cb)](_0x4e0d63),_0x26bf1f=_0x589265[_0x3550e7(0x1cb)](_0x18e56a),_0x3f0881=_0x408db7['params'][_0x3550e7(0x22e)],_0x3164d6=_0x26bf1f[_0x3550e7(0x126)][_0x3550e7(0x238)];for(const _0x330c97 in _0x3f0881){const _0x3cbaf3=_0x3f0881[_0x330c97][_0x3550e7(0x238)],_0x296ddb=[];_0x3cbaf3['forEach'](_0x2f4df6=>{const _0x6aa55c=_0x3550e7,_0x1659b8=ee(_0x2f4df6,_0x3164d6);_0x1659b8[_0x6aa55c(0x210)]>0x0&&_0x296ddb[_0x6aa55c(0x112)](..._0x1659b8);}),_0x3f0881[_0x330c97]['ranges']=_0x296ddb;}return{'m1Prime':_0x408db7,'m2Prime':_0x26bf1f};}},Go={'m1':_0x432da8['id'],'m2':_0x432da8['id'],'handler'(_0x3f948f,_0x1c08cb){const _0x3ac04b=_0x59a5e;if(_0x3f948f['params'][_0x3ac04b(0x10f)]!==_0x1c08cb[_0x3ac04b(0x126)][_0x3ac04b(0x10f)]||_0x3f948f['params']['subUnitId']!==_0x1c08cb['params'][_0x3ac04b(0x18c)])return{'m1Prime':_0x3f948f,'m2Prime':_0x1c08cb};const _0x1359a5=_0x589265[_0x3ac04b(0x1cb)](_0x3f948f),_0x1b78e6=_0x589265['deepClone'](_0x1c08cb),_0x50bea1=_0x1359a5[_0x3ac04b(0x126)]['values'],_0x4800de=Object[_0x3ac04b(0x22e)](_0x1b78e6['params'][_0x3ac04b(0x22e)])[_0x3ac04b(0xea)](_0xab2b6e=>_0xab2b6e[_0x3ac04b(0x238)])['flat']();for(const _0x146ba5 in _0x50bea1){const _0x31f537=_0x50bea1[_0x146ba5]['ranges'],_0x1ee6b1=[];_0x31f537[_0x3ac04b(0x233)](_0x5a00f8=>{const _0x4b807c=_0x3ac04b,_0x17ea45=ee(_0x5a00f8,_0x4800de);_0x17ea45[_0x4b807c(0x210)]>0x0&&_0x1ee6b1['push'](..._0x17ea45);}),_0x50bea1[_0x146ba5][_0x3ac04b(0x238)]=_0x1ee6b1;}return{'m1Prime':_0x1359a5,'m2Prime':_0x1b78e6};}},jo={'m1':_0x38d13b['id'],'m2':_0x58b473['id'],'handler':(_0xac4ec,_0xaf0944)=>{const _0x3b0511=_0x59a5e,_0xea876={'m1Prime':_0xac4ec,'m2Prime':_0xaf0944};return _0xac4ec[_0x3b0511(0x126)][_0x3b0511(0x10f)]!==_0xaf0944[_0x3b0511(0x126)][_0x3b0511(0x10f)]||_0xac4ec[_0x3b0511(0x126)][_0x3b0511(0x18c)]!==_0xaf0944[_0x3b0511(0x126)]['subUnitId']?_0xea876:{'error':new Error(_0x3b0511(0x217))};}},$o={'m1':_0x38d13b['id'],'m2':_0xa12b['id'],'handler':(_0x166372,_0x22b5ac)=>{const _0x4517a1=_0x59a5e,_0x2559b9={'m1Prime':_0x166372,'m2Prime':_0x22b5ac};if(_0x166372['params'][_0x4517a1(0x10f)]!==_0x22b5ac[_0x4517a1(0x126)][_0x4517a1(0x10f)]||_0x166372[_0x4517a1(0x126)][_0x4517a1(0x18c)]!==_0x22b5ac['params'][_0x4517a1(0x18c)])return _0x2559b9;const _0xca0d3e=_0x166372[_0x4517a1(0x126)]['rule']['ranges'],_0x6ffa18=_0x22b5ac[_0x4517a1(0x126)][_0x4517a1(0xbc)][_0x4517a1(0x238)];return _0xca0d3e[_0x4517a1(0x221)](_0x3dce3b=>_0x6ffa18[_0x4517a1(0x221)](_0x4a86d1=>_0xff1ead[_0x4517a1(0x1fd)](_0x3dce3b,_0x4a86d1)))?{'error':new Error(_0x4517a1(0x21b))}:_0x2559b9;}},Yo={'m1':_0x38d13b['id'],'m2':_0x223d91['id'],'handler':(_0x4fd9da,_0x92e676)=>{const _0x28c1b1=_0x59a5e,_0x5d96ec={'m1Prime':_0x4fd9da,'m2Prime':_0x92e676};if(_0x4fd9da[_0x28c1b1(0x126)][_0x28c1b1(0x10f)]!==_0x92e676[_0x28c1b1(0x126)]['unitId']||_0x4fd9da['params'][_0x28c1b1(0x18c)]!==_0x92e676[_0x28c1b1(0x126)][_0x28c1b1(0x18c)])return _0x5d96ec;const _0x445df2=_0x4fd9da[_0x28c1b1(0x126)][_0x28c1b1(0xbc)][_0x28c1b1(0x238)],_0x92c144=_0x92e676['params'][_0x28c1b1(0x238)];return _0x445df2[_0x28c1b1(0x221)](_0x23a812=>_0x92c144[_0x28c1b1(0x221)](_0x1b8543=>_0xff1ead[_0x28c1b1(0x1fd)](_0x23a812,_0x1b8543)))?{'error':new Error(_0x28c1b1(0x20e))}:_0x5d96ec;}},Jo={'m1':_0x38d13b['id'],'m2':_0x921352['id'],'handler':(_0x249c1e,_0x32477e)=>{const _0x3b4cc1=_0x59a5e,_0x5d5a42={'m1Prime':_0x249c1e,'m2Prime':_0x32477e};return _0x249c1e[_0x3b4cc1(0x126)][_0x3b4cc1(0x10f)]!==_0x32477e[_0x3b4cc1(0x126)][_0x3b4cc1(0x10f)]||_0x249c1e[_0x3b4cc1(0x126)]['subUnitId']!==_0x32477e['params']['rule'][_0x3b4cc1(0x18c)]?_0x5d5a42:{'error':new Error(_0x3b4cc1(0x23c))};}},Xo={'m1':_0x38d13b['id'],'m2':_0x2e6ec9['id'],'handler':(_0x387f38,_0x397919)=>{const _0x55c52f=_0x59a5e,_0x28b5ef={'m1Prime':_0x387f38,'m2Prime':_0x397919};return _0x387f38[_0x55c52f(0x126)][_0x55c52f(0x10f)]!==_0x397919[_0x55c52f(0x126)][_0x55c52f(0x10f)]||_0x387f38['params']['subUnitId']!==_0x397919[_0x55c52f(0x126)][_0x55c52f(0x18c)]?_0x28b5ef:{'error':new Error('set\x20range\x20protection\x20is\x20conflict\x20with\x20delete\x20conditional\x20formatting\x20rule')};}},Ko={'m1':_0x38d13b['id'],'m2':_0x55baf7['id'],'handler':(_0x588602,_0x134e6b)=>{const _0x5c9975=_0x59a5e,_0x6f5a1={'m1Prime':_0x588602,'m2Prime':_0x134e6b};if(_0x588602[_0x5c9975(0x126)]['unitId']!==_0x134e6b[_0x5c9975(0x126)][_0x5c9975(0x10f)]||_0x588602['params'][_0x5c9975(0x18c)]!==_0x134e6b[_0x5c9975(0x126)][_0x5c9975(0x18c)])return _0x6f5a1;const _0x5d08e3=_0x588602[_0x5c9975(0x126)]['rule'][_0x5c9975(0x238)],_0x4199ad=_0x134e6b[_0x5c9975(0x126)]['range'];return _0x5d08e3['some'](_0x2681e4=>_0xff1ead['intersects'](_0x2681e4,_0x4199ad))?{'error':new Error(_0x5c9975(0xb0))}:_0x6f5a1;}},zo={'m1':_0x38d13b['id'],'m2':_0x5694af['id'],'handler':(_0x3b61bb,_0x1d84d3)=>{const _0x2740c4=_0x59a5e,_0x43754e={'m1Prime':_0x3b61bb,'m2Prime':_0x1d84d3};if(_0x3b61bb[_0x2740c4(0x126)][_0x2740c4(0x10f)]!==_0x1d84d3[_0x2740c4(0x126)][_0x2740c4(0x10f)]||_0x3b61bb[_0x2740c4(0x126)][_0x2740c4(0x18c)]!==_0x1d84d3[_0x2740c4(0x126)][_0x2740c4(0x18c)])return _0x43754e;const _0x5e4f44=_0x3b61bb['params'][_0x2740c4(0xbc)]['ranges'],_0x10a43f=_0x1d84d3[_0x2740c4(0x126)]['range'];return _0x5e4f44['some'](_0x2dacdf=>_0xff1ead['intersects'](_0x2dacdf,_0x10a43f))?{'error':new Error(_0x2740c4(0x101))}:_0x43754e;}},qo={'m1':_0x38d13b['id'],'m2':_0x4d7dbd['id'],'handler':(_0x4bb844,_0x26d85a)=>{const _0x36fdbd=_0x59a5e,_0xfe7be={'m1Prime':_0x4bb844,'m2Prime':_0x26d85a};if(_0x4bb844[_0x36fdbd(0x126)][_0x36fdbd(0x10f)]!==_0x26d85a[_0x36fdbd(0x126)][_0x36fdbd(0x10f)]||_0x4bb844[_0x36fdbd(0x126)]['subUnitId']!==_0x26d85a[_0x36fdbd(0x126)][_0x36fdbd(0x18c)])return _0xfe7be;const _0xbe7d81=_0x4bb844[_0x36fdbd(0x126)][_0x36fdbd(0xbc)][_0x36fdbd(0x238)],_0x13f9ab=[_0x26d85a[_0x36fdbd(0x126)][_0x36fdbd(0x1ad)],_0x26d85a[_0x36fdbd(0x126)][_0x36fdbd(0x1d3)]];return _0xbe7d81['some'](_0x21027e=>_0x13f9ab['some'](_0x3dea61=>_0xff1ead[_0x36fdbd(0x1fd)](_0x21027e,_0x3dea61)))?{'error':new Error(_0x36fdbd(0x237))}:_0xfe7be;}},Zo={'m1':_0x38d13b['id'],'m2':_0x442c2d['id'],'handler':(_0x2acaa7,_0x11cc2a)=>{const _0x3c074e=_0x59a5e,_0x4f92bf={'m1Prime':_0x2acaa7,'m2Prime':_0x11cc2a};if(_0x2acaa7['params'][_0x3c074e(0x10f)]!==_0x11cc2a[_0x3c074e(0x126)][_0x3c074e(0x10f)]||_0x2acaa7[_0x3c074e(0x126)][_0x3c074e(0x18c)]!==_0x11cc2a['params'][_0x3c074e(0x16d)]['subUnitId'])return _0x4f92bf;const _0x11d850=_0x2acaa7[_0x3c074e(0x126)][_0x3c074e(0xbc)][_0x3c074e(0x238)],_0x1b3bca=new _0x33d61f(_0x11cc2a[_0x3c074e(0x126)][_0x3c074e(0x16d)][_0x3c074e(0x18f)])[_0x3c074e(0x1a7)](),_0x1acaed=new _0x33d61f(_0x11cc2a['params']['to'][_0x3c074e(0x18f)])[_0x3c074e(0x1a7)](),_0x330501=[_0x1b3bca,_0x1acaed];return _0x11d850['some'](_0x56102b=>_0x330501[_0x3c074e(0x221)](_0x4c84b7=>_0xff1ead[_0x3c074e(0x1fd)](_0x56102b,_0x4c84b7)))?{'error':new Error('set\x20range\x20protection\x20is\x20conflict\x20with\x20move\x20range')}:_0x4f92bf;}},Qo={'m1':_0x38d13b['id'],'m2':_0x79cdbf['id'],'handler':(_0x545640,_0x583cd0)=>{const _0x21b409=_0x59a5e,_0x4fde64={'m1Prime':_0x545640,'m2Prime':_0x583cd0};if(_0x545640[_0x21b409(0x126)][_0x21b409(0x10f)]!==_0x583cd0['params'][_0x21b409(0x10f)]||_0x545640[_0x21b409(0x126)][_0x21b409(0x18c)]!==_0x583cd0[_0x21b409(0x126)][_0x21b409(0x18c)])return _0x4fde64;const _0x99b6ec=_0x545640['params'][_0x21b409(0xbc)]['ranges'],_0x7a808a=[_0x583cd0[_0x21b409(0x126)]['sourceRange'],_0x583cd0[_0x21b409(0x126)][_0x21b409(0x1d3)]];return _0x99b6ec[_0x21b409(0x221)](_0x4efa58=>_0x7a808a[_0x21b409(0x221)](_0x6071bb=>_0xff1ead[_0x21b409(0x1fd)](_0x4efa58,_0x6071bb)))?{'error':new Error(_0x21b409(0x116))}:_0x4fde64;}},ti={'m1':_0x38d13b['id'],'m2':_0x3f9ab9['id'],'handler':(_0x55989f,_0x5eef0c)=>{const _0x2bf0d8=_0x59a5e,_0x42ba75={'m1Prime':_0x55989f,'m2Prime':_0x5eef0c};if(_0x55989f[_0x2bf0d8(0x126)]['unitId']!==_0x5eef0c[_0x2bf0d8(0x126)]['unitId']||_0x55989f[_0x2bf0d8(0x126)]['subUnitId']!==_0x5eef0c[_0x2bf0d8(0x126)][_0x2bf0d8(0x18c)])return _0x42ba75;const _0x287cc5=_0x55989f['params']['rule'][_0x2bf0d8(0x238)],_0x5388f5=_0x5eef0c[_0x2bf0d8(0x126)][_0x2bf0d8(0x114)];return _0x287cc5['some'](_0x329765=>_0xff1ead[_0x2bf0d8(0x1fd)](_0x329765,_0x5388f5))?{'error':new Error(_0x2bf0d8(0x224))}:_0x42ba75;}},ei={'m1':_0x38d13b['id'],'m2':_0x46530b['id'],'handler':(_0x2e80ac,_0x3ce110)=>{const _0x167b00=_0x59a5e,_0x44d487={'m1Prime':_0x2e80ac,'m2Prime':_0x3ce110};return _0x2e80ac[_0x167b00(0x126)][_0x167b00(0x10f)]!==_0x3ce110[_0x167b00(0x126)][_0x167b00(0x10f)]||_0x2e80ac[_0x167b00(0x126)][_0x167b00(0x18c)]!==_0x3ce110[_0x167b00(0x126)][_0x167b00(0x18c)]?_0x44d487:{'error':new Error('set\x20range\x20protection\x20is\x20conflict\x20with\x20remove\x20data\x20validation\x20rule')};}},ri={'m1':_0x38d13b['id'],'m2':_0x361204['id'],'handler':(_0x346ca9,_0x24bf2a)=>{const _0x3e6a39=_0x59a5e,_0x2fd96f={'m1Prime':_0x346ca9,'m2Prime':_0x24bf2a};if(_0x346ca9['params'][_0x3e6a39(0x10f)]!==_0x24bf2a[_0x3e6a39(0x126)][_0x3e6a39(0x10f)]||_0x346ca9['params'][_0x3e6a39(0x18c)]!==_0x24bf2a[_0x3e6a39(0x126)][_0x3e6a39(0x18c)])return _0x2fd96f;const _0x8d7fd7=_0x346ca9['params'][_0x3e6a39(0xbc)][_0x3e6a39(0x238)],_0x4ed1a5=_0x24bf2a[_0x3e6a39(0x126)][_0x3e6a39(0x114)];return _0x8d7fd7[_0x3e6a39(0x221)](_0x5a5e03=>_0xff1ead[_0x3e6a39(0x1fd)](_0x5a5e03,_0x4ed1a5))?{'error':new Error(_0x3e6a39(0x15a))}:_0x2fd96f;}},ni={'m1':_0x38d13b['id'],'m2':_0x26442d['id'],'handler':(_0x42dafb,_0x35c98c)=>{const _0x1ba8af=_0x59a5e,_0x2aa19f={'m1Prime':_0x42dafb,'m2Prime':_0x35c98c};return _0x42dafb['params']['unitId']!==_0x35c98c['params'][_0x1ba8af(0x10f)]||_0x42dafb['params'][_0x1ba8af(0x18c)]!==_0x35c98c[_0x1ba8af(0x126)][_0x1ba8af(0x18c)]?_0x2aa19f:{'error':new Error(_0x1ba8af(0xbe))};}},ai={'m1':_0x38d13b['id'],'m2':_0x49900b['id'],'handler':(_0x1e4812,_0x33722c)=>{const _0xe3d59d=_0x59a5e,_0x432f2a={'m1Prime':_0x1e4812,'m2Prime':_0x33722c};if(_0x1e4812[_0xe3d59d(0x126)]['unitId']!==_0x33722c[_0xe3d59d(0x126)][_0xe3d59d(0x10f)]||_0x1e4812[_0xe3d59d(0x126)]['subUnitId']!==_0x33722c[_0xe3d59d(0x126)][_0xe3d59d(0x18c)])return _0x432f2a;const _0x4d02b6=_0x1e4812[_0xe3d59d(0x126)][_0xe3d59d(0xbc)][_0xe3d59d(0x238)],_0x24f7d5=_0x33722c[_0xe3d59d(0x126)]['ranges'];return _0x4d02b6[_0xe3d59d(0x221)](_0x2121d8=>_0x24f7d5[_0xe3d59d(0x221)](_0x389834=>_0xff1ead[_0xe3d59d(0x1fd)](_0x2121d8,_0x389834)))?{'error':new Error(_0xe3d59d(0x20f))}:_0x432f2a;}},si={'m1':_0x38d13b['id'],'m2':_0x1ef265['id'],'handler':(_0x5b174f,_0x209339)=>{const _0x5b984b=_0x59a5e,_0x3f546c={'m1Prime':_0x5b174f,'m2Prime':_0x209339};if(_0x5b174f[_0x5b984b(0x126)][_0x5b984b(0x10f)]!==_0x209339['params'][_0x5b984b(0x10f)]||_0x5b174f[_0x5b984b(0x126)][_0x5b984b(0x18c)]!==_0x209339[_0x5b984b(0x126)]['subUnitId'])return _0x3f546c;const _0x4474c4=_0x5b174f[_0x5b984b(0x126)][_0x5b984b(0xbc)][_0x5b984b(0x238)],_0x48eae8=_0x209339[_0x5b984b(0x126)]['rule'][_0x5b984b(0x238)];return _0x4474c4[_0x5b984b(0x221)](_0x4a705f=>_0x48eae8[_0x5b984b(0x221)](_0x13de94=>_0xff1ead[_0x5b984b(0x1fd)](_0x4a705f,_0x13de94)))?{'error':new Error(_0x5b984b(0x1c3))}:_0x3f546c;}},oi={'m1':_0x38d13b['id'],'m2':_0x491dee['id'],'handler':(_0x5e43cf,_0x27272d)=>{const _0x1cb8c8=_0x59a5e,_0x76fa2f={'m1Prime':_0x5e43cf,'m2Prime':_0x27272d};if(_0x5e43cf['params'][_0x1cb8c8(0x10f)]!==_0x27272d['params'][_0x1cb8c8(0x10f)]||_0x5e43cf[_0x1cb8c8(0x126)][_0x1cb8c8(0x18c)]!==_0x27272d['params'][_0x1cb8c8(0x18c)])return _0x76fa2f;const _0x591b5d=_0x5e43cf[_0x1cb8c8(0x126)]['rule'][_0x1cb8c8(0x238)],_0x3a8e4d=[{'startRow':_0x27272d[_0x1cb8c8(0x126)][_0x1cb8c8(0xcd)],'endRow':_0x27272d[_0x1cb8c8(0x126)][_0x1cb8c8(0xcd)],'startColumn':_0x27272d[_0x1cb8c8(0x126)][_0x1cb8c8(0x11d)],'endColumn':_0x27272d[_0x1cb8c8(0x126)][_0x1cb8c8(0x11d)]}];return _0x591b5d['some'](_0x164e37=>_0x3a8e4d[_0x1cb8c8(0x221)](_0x318d63=>_0xff1ead[_0x1cb8c8(0x1fd)](_0x164e37,_0x318d63)))?{'error':new Error(_0x1cb8c8(0xec))}:_0x76fa2f;}},ii={'m1':_0x38d13b['id'],'m2':_0x432da8['id'],'handler':(_0x1f5f33,_0x16804b)=>{const _0x5362de=_0x59a5e,_0x324987={'m1Prime':_0x1f5f33,'m2Prime':_0x16804b};return _0x1f5f33['params'][_0x5362de(0x10f)]!==_0x16804b[_0x5362de(0x126)]['unitId']||_0x1f5f33['params'][_0x5362de(0x18c)]!==_0x16804b['params']['subUnitId']?_0x324987:{'error':new Error('set\x20range\x20protection\x20is\x20conflict\x20with\x20set\x20numfmt')};}},di={'m1':_0x38d13b['id'],'m2':_0x38d13b['id'],'handler':(_0x1e1c71,_0x87057b)=>{const _0x60f5d5=_0x59a5e,_0x1560ad={'m1Prime':_0x1e1c71,'m2Prime':_0x87057b};if(_0x1e1c71['params']['unitId']!==_0x87057b[_0x60f5d5(0x126)][_0x60f5d5(0x10f)]||_0x1e1c71[_0x60f5d5(0x126)][_0x60f5d5(0x18c)]!==_0x87057b[_0x60f5d5(0x126)][_0x60f5d5(0x18c)])return _0x1560ad;const _0x2e6e8c=_0x1e1c71[_0x60f5d5(0x126)][_0x60f5d5(0xbc)]['ranges'],_0x543a93=_0x87057b[_0x60f5d5(0x126)][_0x60f5d5(0xbc)]['ranges'];return _0x2e6e8c[_0x60f5d5(0x221)](_0x4ed44f=>_0x543a93[_0x60f5d5(0x221)](_0x37666a=>_0xff1ead['intersects'](_0x4ed44f,_0x37666a)))?{'error':new Error(_0x60f5d5(0xb2))}:_0x1560ad;}},mi={'m1':_0x38d13b['id'],'m2':_0x36f561['id'],'handler':(_0x4576c8,_0x2c13c5)=>{const _0x39eda8=_0x59a5e,_0x4f839e={'m1Prime':_0x4576c8,'m2Prime':_0x2c13c5};if(_0x4576c8[_0x39eda8(0x126)][_0x39eda8(0x10f)]!==_0x2c13c5[_0x39eda8(0x126)]['unitId']||_0x4576c8[_0x39eda8(0x126)][_0x39eda8(0x18c)]!==_0x2c13c5['params']['subUnitId'])return _0x4f839e;const _0x356ce6=_0x4576c8['params']['rule'][_0x39eda8(0x238)],_0x53d510=new _0x33d61f(_0x2c13c5[_0x39eda8(0x126)][_0x39eda8(0x153)])['getDataRange']();return _0x356ce6['some'](_0x470e77=>_0xff1ead['intersects'](_0x470e77,_0x53d510))?{'error':new Error('set\x20range\x20protection\x20is\x20conflict\x20with\x20set\x20range\x20value')}:_0x4f839e;}},ui={'m1':_0x38d13b['id'],'m2':_0x8fd627['id'],'handler':(_0x1094ed,_0x4e91f4)=>{const _0x5e5b37=_0x59a5e,_0x4a818e={'m1Prime':_0x1094ed,'m2Prime':_0x4e91f4};if(_0x1094ed[_0x5e5b37(0x126)]['unitId']!==_0x4e91f4[_0x5e5b37(0x126)][_0x5e5b37(0x10f)]||_0x1094ed[_0x5e5b37(0x126)]['subUnitId']!==_0x4e91f4[_0x5e5b37(0x126)]['subUnitId'])return _0x4a818e;const _0x1a6ab4=_0x1094ed[_0x5e5b37(0x126)][_0x5e5b37(0xbc)][_0x5e5b37(0x238)],_0x27c1f1=_0x4e91f4[_0x5e5b37(0x126)][_0x5e5b37(0x238)];return _0x1a6ab4[_0x5e5b37(0x221)](_0x512dc3=>_0x27c1f1['some'](_0x2015b4=>_0xff1ead[_0x5e5b37(0x1fd)](_0x512dc3,_0x2015b4)))?{'error':new Error(_0x5e5b37(0xd0))}:_0x4a818e;}},li={'m1':_0x38d13b['id'],'m2':_0x49a7a8['id'],'handler':(_0x1f9592,_0x109eda)=>{const _0x1b2f43=_0x59a5e,_0x3ff4b1={'m1Prime':_0x1f9592,'m2Prime':_0x109eda};return _0x1f9592[_0x1b2f43(0x126)]['unitId']!==_0x109eda[_0x1b2f43(0x126)][_0x1b2f43(0x10f)]||_0x1f9592[_0x1b2f43(0x126)][_0x1b2f43(0x18c)]!==_0x109eda[_0x1b2f43(0x126)][_0x1b2f43(0x18c)]?_0x3ff4b1:{'error':new Error(_0x1b2f43(0x176))};}},ci={'m1':_0x38d13b['id'],'m2':_0x2bcc50['id'],'handler':(_0x15542b,_0x285ff4)=>{const _0x52526b=_0x59a5e,_0x400729={'m1Prime':_0x15542b,'m2Prime':_0x285ff4};return _0x15542b[_0x52526b(0x126)][_0x52526b(0x10f)]!==_0x285ff4[_0x52526b(0x126)][_0x52526b(0x10f)]||_0x15542b[_0x52526b(0x126)][_0x52526b(0x18c)]!==_0x285ff4['params'][_0x52526b(0x18c)]?_0x400729:{'error':new Error(_0x52526b(0x22c))};}},pi={'m1':_0x36f561['id'],'m2':_0x223d91['id'],'handler'(_0x234c8f,_0x3b86f0){const _0x13c6be=_0x59a5e,_0x311b33=mr['handler'](_0x3b86f0,_0x234c8f);return at(_0x311b33)?{'m1Prime':_0x311b33[_0x13c6be(0x111)],'m2Prime':_0x311b33['m1Prime']}:_0x311b33;}},fi={'m1':_0x36f561['id'],'m2':_0x442c2d['id'],'handler'(_0x2c184f,_0x4b3740){const _0x14946c=_0x59a5e,_0x1b6449={'m1Prime':_0x2c184f,'m2Prime':_0x4b3740};if(_0x2c184f['params'][_0x14946c(0x10f)]!==_0x4b3740[_0x14946c(0x126)]['unitId'])return _0x1b6449;const _0x4cc007=new _0x33d61f(_0x2c184f[_0x14946c(0x126)][_0x14946c(0x153)])['getDataRange'](),_0x14f4ee=new _0x33d61f(_0x4b3740[_0x14946c(0x126)][_0x14946c(0x16d)]['value'])[_0x14946c(0x1a7)](),_0x5a618a=new _0x33d61f(_0x4b3740[_0x14946c(0x126)]['to'][_0x14946c(0x18f)])[_0x14946c(0x1a7)]();return _0x2c184f['params'][_0x14946c(0x18c)]===_0x4b3740[_0x14946c(0x126)][_0x14946c(0x16d)]['subUnitId']&&_0xff1ead[_0x14946c(0x1fd)](_0x4cc007,_0x14f4ee)||_0x2c184f[_0x14946c(0x126)][_0x14946c(0x18c)]===_0x4b3740[_0x14946c(0x126)]['to'][_0x14946c(0x18c)]&&_0xff1ead[_0x14946c(0x1fd)](_0x4cc007,_0x5a618a)?{'error':new Error('Set-range-values\x20mutation\x20and\x20move-range\x20mutation\x20have\x20an\x20overlapping\x20range.')}:_0x1b6449;}},Ri={'m1':_0x36f561['id'],'m2':_0x2a2d75['id'],'handler'(_0x4d5bbf,_0xfb8bcd){const _0x110d19=_0x59a5e;var _0x4c9ba6,_0x42ee94;const _0x4c52be={'m1Prime':_0x4d5bbf,'m2Prime':_0xfb8bcd};if(_0x4d5bbf[_0x110d19(0x126)][_0x110d19(0x10f)]!==_0xfb8bcd[_0x110d19(0x126)][_0x110d19(0x10f)]||_0x4d5bbf[_0x110d19(0x126)][_0x110d19(0x18c)]!==_0xfb8bcd[_0x110d19(0x126)][_0x110d19(0x18c)])return _0x4c52be;const _0x48cbe8=_0x589265[_0x110d19(0x1cb)](_0x4d5bbf),{cellValue:_0x519f78}=_0x48cbe8['params'],_0x774175=new _0x33d61f(_0x519f78),{range:_0x298c78}=_0xfb8bcd[_0x110d19(0x126)],_0x5651cc=new Map();for(let _0x402cef=_0x298c78[_0x110d19(0x11d)];_0x402cef<=_0x298c78[_0x110d19(0x104)];_0x402cef++)for(let _0x4fec3c=_0x298c78['startRow'];_0x4fec3c<=_0x298c78[_0x110d19(0xf0)];_0x4fec3c++)if(((_0x4c9ba6=_0x519f78==null?void 0x0:_0x519f78[_0x4fec3c])==null?void 0x0:_0x4c9ba6[_0x402cef])!==void 0x0){const _0x5e7544=(_0x42ee94=_0xfb8bcd[_0x110d19(0x126)][_0x110d19(0x135)][_0x4fec3c])!=null?_0x42ee94:_0x4fec3c;_0x5e7544!==_0x4fec3c&&(_0x5651cc[_0x110d19(0x130)](_0x5e7544)||_0x5651cc[_0x110d19(0x226)](_0x5e7544,new Map()),_0x5651cc[_0x110d19(0x175)](_0x5e7544)[_0x110d19(0x226)](_0x402cef,_0x519f78[_0x4fec3c][_0x402cef]),_0x774175[_0x110d19(0x156)](_0x4fec3c,_0x402cef));}return _0x5651cc[_0x110d19(0x233)]((_0x2eb320,_0xcbc44a)=>{const _0x1deee9=_0x110d19;_0x2eb320[_0x1deee9(0x233)]((_0x1610d9,_0x167675)=>{_0x774175['setValue'](_0xcbc44a,_0x167675,_0x1610d9);});}),{'m1Prime':_0x48cbe8,'m2Prime':_0xfb8bcd};}},hi={'m1':_0x36f561['id'],'m2':_0x36f561['id'],'handler'(_0x119eb0,_0x1f07a0){const _0x659d73=_0x59a5e,_0x2bb541={'m1Prime':_0x119eb0,'m2Prime':_0x1f07a0};if(_0x119eb0[_0x659d73(0x126)]['unitId']!==_0x1f07a0[_0x659d73(0x126)]['unitId']||_0x119eb0[_0x659d73(0x126)]['subUnitId']!==_0x1f07a0['params'][_0x659d73(0x18c)])return _0x2bb541;const _0x1f51ef=_0x589265[_0x659d73(0x1cb)](_0x119eb0),_0x1944a7=_0x589265[_0x659d73(0x1cb)](_0x1f07a0),_0x37a37e=_0x589265[_0x659d73(0x1cb)](_0x1f07a0),_0x271081=new _0x33d61f(_0x1f51ef['params']['cellValue']),_0x253c6e=_0x271081[_0x659d73(0x1a7)](),_0x53dc06=new _0x33d61f(_0x1f07a0[_0x659d73(0x126)][_0x659d73(0x153)]),_0x3f74d9=new _0x33d61f(),_0x4835c8=_0x53dc06[_0x659d73(0x1a7)]();return _0xff1ead[_0x659d73(0x1fd)](_0x253c6e,_0x4835c8)?(_0x271081['forValue']((_0x22fc41,_0xe1c056,_0x30f9a3)=>{const _0x5b4ae6=_0x659d73;var _0x42325a;const _0x442048=_0x53dc06[_0x5b4ae6(0xbb)](_0x22fc41,_0xe1c056);_0x442048===null&&_0x271081['realDeleteValue'](_0x22fc41,_0xe1c056),_0x30f9a3&&_0x442048&&(typeof(_0x442048==null?void 0x0:_0x442048['s'])=='string'&&(_0x442048['s']=_0x589265['deepClone']((_0x42325a=_0x1944a7[_0x5b4ae6(0x126)][_0x5b4ae6(0x1f8)])==null?void 0x0:_0x42325a[_0x442048['s']])||void 0x0),_0x3f74d9[_0x5b4ae6(0xef)](_0x22fc41,_0xe1c056,_0x442048));}),_0x1f51ef[_0x659d73(0x126)]['cellValue']=_0x271081[_0x659d73(0x131)](),_0x1944a7[_0x659d73(0x126)][_0x659d73(0x153)]=_0x3f74d9[_0x659d73(0x131)](),{'m1Prime':[_0x1f51ef,_0x1944a7],'m2Prime':_0x37a37e}):_0x2bb541;}},gi={'m1':_0x1932a5['id'],'m2':_0x1932a5['id'],'handler'(_0x3c16da,_0x43d90c){const _0x55ec75=_0x59a5e,_0x4d1580={'m1Prime':_0x3c16da,'m2Prime':_0x43d90c};if(_0x3c16da[_0x55ec75(0x126)][_0x55ec75(0x10f)]!==_0x43d90c[_0x55ec75(0x126)][_0x55ec75(0x10f)]||_0x3c16da[_0x55ec75(0x126)][_0x55ec75(0x18c)]!==_0x43d90c['params'][_0x55ec75(0x18c)])return _0x4d1580;const _0x521be6=_0x3c16da[_0x55ec75(0x126)][_0x55ec75(0xcb)],_0x447b2a=_0x43d90c['params']['rowData'],_0x5d1e0b={},_0x16de10=_0x589265[_0x55ec75(0x1cb)](_0x3c16da),_0x2006d2=new Set([...Object[_0x55ec75(0x10b)](_0x521be6)[_0x55ec75(0xea)](Number),...Object[_0x55ec75(0x10b)](_0x447b2a)[_0x55ec75(0xea)](Number)]);for(const _0x4d4561 of _0x2006d2){const _0x53f473=_0x521be6[_0x4d4561],_0x119e03=_0x447b2a[_0x4d4561];if(_0x53f473&&_0x119e03){const _0x520072={..._0x53f473,..._0x119e03};_0x5d1e0b[_0x4d4561]=_0x520072;}else _0x53f473?_0x5d1e0b[_0x4d4561]=_0x53f473:_0x119e03&&(_0x5d1e0b[_0x4d4561]=_0x119e03);}return _0x16de10[_0x55ec75(0x126)][_0x55ec75(0xcb)]=_0x5d1e0b,{'m1Prime':_0x16de10,'m2Prime':_0x43d90c};}},Ii={'m1':_0x1b64c2['id'],'m2':_0x442c2d['id'],'handler'(_0x38b498,_0x42ce54){const _0x3659cd=_0x59a5e,_0xae73af={'m1Prime':_0x38b498,'m2Prime':_0x42ce54};if(_0x38b498[_0x3659cd(0x126)][_0x3659cd(0x10f)]!==_0x42ce54[_0x3659cd(0x126)][_0x3659cd(0x10f)]||_0x38b498['params']['subUnitId']!==_0x42ce54['params'][_0x3659cd(0x16d)][_0x3659cd(0x18c)]&&_0x38b498['params'][_0x3659cd(0x18c)]!==_0x42ce54['params']['to'][_0x3659cd(0x18c)])return _0xae73af;let _0x23c962=null;return _0x38b498[_0x3659cd(0x126)][_0x3659cd(0x18c)]===_0x42ce54[_0x3659cd(0x126)][_0x3659cd(0x16d)]['subUnitId']&&new _0x33d61f(_0x42ce54['params'][_0x3659cd(0x16d)][_0x3659cd(0x18f)])[_0x3659cd(0x1d9)]((_0x501a1a,_0x2cbdc9)=>{const _0x47a7dc=_0x3659cd;_0x2cbdc9===_0x38b498[_0x47a7dc(0x126)]['col']&&(_0x23c962=_0x42ce54[_0x47a7dc(0x126)]['from'][_0x47a7dc(0x18c)]);}),_0x38b498[_0x3659cd(0x126)][_0x3659cd(0x18c)]===_0x42ce54[_0x3659cd(0x126)]['to'][_0x3659cd(0x18c)]&&new _0x33d61f(_0x42ce54[_0x3659cd(0x126)]['to'][_0x3659cd(0x18f)])[_0x3659cd(0x1d9)]((_0x17fe5a,_0x69aca9)=>{const _0x238e59=_0x3659cd;_0x69aca9===_0x38b498['params'][_0x238e59(0x22b)]&&(_0x23c962=_0x42ce54[_0x238e59(0x126)]['to'][_0x238e59(0x18c)]);}),_0x23c962?{'m1Prime':_0x38b498,'m2Prime':[_0x42ce54,{'id':_0xb3d859['id'],'params':{'unitId':_0x42ce54[_0x3659cd(0x126)][_0x3659cd(0x10f)],'subUnitId':_0x23c962}}]}:_0xae73af;}},wi={'m1':_0x1b64c2['id'],'m2':_0x26442d['id'],'handler'(_0x1a5215,_0x483833){const _0xbe12de=_0x59a5e,_0x1cfe6f={'m1Prime':_0x1a5215,'m2Prime':_0x483833};return _0x1a5215['params'][_0xbe12de(0x10f)]!==_0x483833[_0xbe12de(0x126)][_0xbe12de(0x10f)]||_0x1a5215['params'][_0xbe12de(0x18c)]!==_0x483833[_0xbe12de(0x126)][_0xbe12de(0x18c)]?_0x1cfe6f:{'m1Prime':[],'m2Prime':[_0x483833]};}},Ci={'m1':_0x1b64c2['id'],'m2':_0x36f561['id'],'handler'(_0x41f24d,_0x33feaf){const _0x50ff3b=_0x59a5e,_0x29bda3={'m1Prime':_0x41f24d,'m2Prime':_0x33feaf};if(_0x41f24d['params'][_0x50ff3b(0x10f)]!==_0x33feaf['params'][_0x50ff3b(0x10f)]||_0x41f24d[_0x50ff3b(0x126)]['subUnitId']!==_0x33feaf[_0x50ff3b(0x126)]['subUnitId'])return _0x29bda3;let _0x512b18=!0x1;return new _0x33d61f(_0x33feaf[_0x50ff3b(0x126)][_0x50ff3b(0x153)])['forValue']((_0xfb6192,_0x37ebf0)=>{const _0x12097e=_0x50ff3b;_0x37ebf0===_0x41f24d[_0x12097e(0x126)][_0x12097e(0x22b)]&&(_0x512b18=!0x0);}),_0x512b18?{'m1Prime':_0x41f24d,'m2Prime':[_0x33feaf,{'id':_0xb3d859['id'],'params':{'unitId':_0x33feaf['params']['unitId'],'subUnitId':_0x33feaf['params'][_0x50ff3b(0x18c)]}}]}:_0x29bda3;}},Pi={'m1':_0x1b64c2['id'],'m2':_0x1b64c2['id'],'handler'(_0x453623,_0x10241e){const _0xafde8=_0x59a5e,_0x30466f={'m1Prime':_0x453623,'m2Prime':_0x10241e};return _0x453623[_0xafde8(0x126)][_0xafde8(0x10f)]!==_0x10241e[_0xafde8(0x126)][_0xafde8(0x10f)]||_0x453623[_0xafde8(0x126)][_0xafde8(0x18c)]!==_0x10241e[_0xafde8(0x126)][_0xafde8(0x18c)]||_0x453623[_0xafde8(0x126)][_0xafde8(0x22b)]!==_0x10241e[_0xafde8(0x126)][_0xafde8(0x22b)]?_0x30466f:{'m1Prime':[],'m2Prime':[_0x10241e]};}},Ui={'m1':_0xa0b953['id'],'m2':_0x26442d['id'],'handler'(_0x4e8e99,_0x2208d7){const _0x28e61a=_0x59a5e,_0xb2c5f9={'m1Prime':_0x4e8e99,'m2Prime':_0x2208d7};return _0x4e8e99[_0x28e61a(0x126)][_0x28e61a(0x10f)]!==_0x2208d7[_0x28e61a(0x126)][_0x28e61a(0x10f)]||_0x4e8e99[_0x28e61a(0x126)][_0x28e61a(0x18c)]!==_0x2208d7['params'][_0x28e61a(0x18c)]?_0xb2c5f9:{'m1Prime':[],'m2Prime':[_0x2208d7]};}},bi={'m1':_0xa0b953['id'],'m2':_0xa0b953['id'],'handler'(_0x2c5775,_0x5e5389){const _0x4fce37=_0x59a5e,_0x4f5524={'m1Prime':_0x2c5775,'m2Prime':_0x5e5389};return _0x2c5775[_0x4fce37(0x126)][_0x4fce37(0x10f)]!==_0x5e5389[_0x4fce37(0x126)][_0x4fce37(0x10f)]||_0x2c5775[_0x4fce37(0x126)][_0x4fce37(0x18c)]!==_0x5e5389[_0x4fce37(0x126)][_0x4fce37(0x18c)]?_0x4f5524:{'m1Prime':[],'m2Prime':[_0x5e5389]};}},Mi={'m1':_0x31f5bf['id'],'m2':_0x31f5bf['id'],'handler'(_0x3af380,_0x2a0521){const _0x244adb=_0x59a5e;return _0x3af380[_0x244adb(0x126)][_0x244adb(0x10f)]===_0x2a0521[_0x244adb(0x126)][_0x244adb(0x10f)]&&_0x3af380[_0x244adb(0x126)][_0x244adb(0x18c)]===_0x2a0521[_0x244adb(0x126)][_0x244adb(0x18c)]&&_0x3af380[_0x244adb(0x126)][_0x244adb(0xfb)]!==_0x2a0521['params']['color']?{'error':new Error(_0x244adb(0xd2))}:{'m1Prime':_0x3af380,'m2Prime':_0x2a0521};}},vi={'m1':_0x8fd627['id'],'m2':_0x8fd627['id'],'handler'(_0x445500,_0x2d164a){const _0x4d0773=_0x59a5e,_0xbaa8e5={'m1Prime':_0x445500,'m2Prime':_0x2d164a};if(_0x445500['params'][_0x4d0773(0x10f)]!==_0x2d164a[_0x4d0773(0x126)][_0x4d0773(0x10f)]||_0x445500[_0x4d0773(0x126)][_0x4d0773(0x18c)]!==_0x2d164a[_0x4d0773(0x126)][_0x4d0773(0x18c)])return _0xbaa8e5;const _0x590a1d=_0x445500['params'][_0x4d0773(0x238)],_0x91f6fe=[],_0x451918=_0x589265['deepClone'](_0x445500),_0x3af217=_0x2d164a[_0x4d0773(0x126)][_0x4d0773(0x238)];_0x590a1d[_0x4d0773(0x233)](_0x2a75ca=>{const _0x124f92=_0x4d0773,_0x398a5b={'start':_0x2a75ca[_0x124f92(0x11d)],'end':_0x2a75ca[_0x124f92(0x104)]},_0x37fdc9=_0x3af217[_0x124f92(0xea)](_0x455400=>({'start':_0x455400[_0x124f92(0x11d)],'end':_0x455400['endColumn']})),_0x4c8d31=Ue(_0x398a5b,_0x37fdc9)[_0x124f92(0xea)](_0x21e755=>({..._0x2a75ca,'startColumn':_0x21e755[_0x124f92(0x13a)],'endColumn':_0x21e755[_0x124f92(0x103)]}));_0x91f6fe['push'](..._0x4c8d31);}),_0x451918[_0x4d0773(0x126)]['ranges']=_0x91f6fe;const {colWidth:_0xc2f8dc}=_0x451918[_0x4d0773(0x126)],{colWidth:_0x6e8232}=_0x2d164a[_0x4d0773(0x126)];return typeof _0xc2f8dc!=_0x4d0773(0x1e1)&&(typeof _0x6e8232!=_0x4d0773(0x1e1)?Object[_0x4d0773(0x10b)](_0x6e8232)[_0x4d0773(0xea)](Number)[_0x4d0773(0x233)](_0x33d88f=>{_0xc2f8dc[_0x33d88f]!=null&&delete _0xc2f8dc[_0x33d88f];}):_0x3af217['forEach'](_0x1af3aa=>{const _0x1e856b=_0x4d0773;for(let _0x96b2fa=_0x1af3aa['startColumn'];_0x96b2fa<=_0x1af3aa[_0x1e856b(0x104)];_0x96b2fa++)delete _0xc2f8dc[_0x96b2fa];})),{'m1Prime':_0x451918,'m2Prime':_0x2d164a};}},Ei={'m1':_0x420cb8['id'],'m2':_0x420cb8['id'],'handler'(_0x10b21b,_0x2a910d){const _0x284862=_0x59a5e,_0x379f50={'m1Prime':_0x10b21b,'m2Prime':_0x2a910d};return _0x10b21b[_0x284862(0x126)][_0x284862(0x10f)]!==_0x2a910d[_0x284862(0x126)][_0x284862(0x10f)]||_0x10b21b[_0x284862(0x126)][_0x284862(0x18c)]!==_0x2a910d['params'][_0x284862(0x18c)]?_0x379f50:{'error':new Error(_0x284862(0x18a))};}},Si={'m1':_0x264207['id'],'m2':_0x264207['id'],'handler'(_0x519ca8,_0x3dbd3a){const _0x49738a=_0x59a5e,_0x2f9307={'m1Prime':_0x519ca8,'m2Prime':_0x3dbd3a};if(_0x519ca8[_0x49738a(0x126)][_0x49738a(0x10f)]!==_0x3dbd3a[_0x49738a(0x126)][_0x49738a(0x10f)]||_0x519ca8[_0x49738a(0x126)][_0x49738a(0x18c)]!==_0x3dbd3a[_0x49738a(0x126)]['subUnitId'])return _0x2f9307;const _0x1e493c=_0x519ca8[_0x49738a(0x126)][_0x49738a(0x152)],_0x715fda=[],_0x5aa501=_0x589265[_0x49738a(0x1cb)](_0x519ca8),_0x2a5a6d=_0x3dbd3a[_0x49738a(0x126)][_0x49738a(0x152)];return _0x1e493c[_0x49738a(0x233)](_0x1546ed=>{const _0x2465c2=_0x49738a;_0x2a5a6d[_0x2465c2(0x160)](_0x1f5c52=>_0x1f5c52['row']===_0x1546ed[_0x2465c2(0x204)])||_0x715fda[_0x2465c2(0x112)](_0x1546ed);}),_0x5aa501[_0x49738a(0x126)][_0x49738a(0x152)]=_0x715fda,{'m1Prime':_0x5aa501,'m2Prime':_0x3dbd3a};}},Wi={'m1':_0x47c35c['id'],'m2':_0x47c35c['id'],'handler'(_0x6bbe6f,_0x2ce672){const _0x568ff3=_0x59a5e,_0x218d12={'m1Prime':_0x6bbe6f,'m2Prime':_0x2ce672};if(_0x6bbe6f[_0x568ff3(0x126)][_0x568ff3(0x10f)]!==_0x2ce672['params']['unitId']||_0x6bbe6f['params'][_0x568ff3(0x18c)]!==_0x2ce672[_0x568ff3(0x126)][_0x568ff3(0x18c)])return _0x218d12;const _0x5627a1=_0x6bbe6f[_0x568ff3(0x126)][_0x568ff3(0x238)],_0x2ea7dc=[],_0x41e0b7=_0x589265[_0x568ff3(0x1cb)](_0x6bbe6f),_0x5f4180=_0x2ce672[_0x568ff3(0x126)]['ranges'];_0x5627a1[_0x568ff3(0x233)](_0x40793c=>{const _0x1227f3=_0x568ff3,_0x17a2e8={'start':_0x40793c[_0x1227f3(0xcd)],'end':_0x40793c[_0x1227f3(0xf0)]},_0x15d49c=_0x5f4180[_0x1227f3(0xea)](_0x346179=>({'start':_0x346179[_0x1227f3(0xcd)],'end':_0x346179[_0x1227f3(0xf0)]})),_0x38ba46=Ue(_0x17a2e8,_0x15d49c)[_0x1227f3(0xea)](_0x3292c0=>({..._0x40793c,'startRow':_0x3292c0[_0x1227f3(0x13a)],'endRow':_0x3292c0[_0x1227f3(0x103)]}));_0x2ea7dc[_0x1227f3(0x112)](..._0x38ba46);}),_0x41e0b7['params'][_0x568ff3(0x238)]=_0x2ea7dc;const {rowHeight:_0x6a60f}=_0x41e0b7['params'],{rowHeight:_0x1c7a0a}=_0x2ce672[_0x568ff3(0x126)];return typeof _0x6a60f!=_0x568ff3(0x1e1)&&(typeof _0x1c7a0a!=_0x568ff3(0x1e1)?Object[_0x568ff3(0x10b)](_0x1c7a0a)[_0x568ff3(0xea)](Number)[_0x568ff3(0x233)](_0x3cfe68=>{_0x6a60f[_0x3cfe68]!=null&&delete _0x6a60f[_0x3cfe68];}):_0x5f4180[_0x568ff3(0x233)](_0x4cb618=>{const _0x5e82a2=_0x568ff3;for(let _0x44a5e0=_0x4cb618[_0x5e82a2(0xcd)];_0x44a5e0<=_0x4cb618[_0x5e82a2(0xf0)];_0x44a5e0++)delete _0x6a60f[_0x44a5e0];})),{'m1Prime':_0x41e0b7,'m2Prime':_0x2ce672};}},Vi={'m1':_0x5392a6['id'],'m2':_0x5392a6['id'],'handler'(_0x30d00f,_0x4c9979){const _0x3b3b14=_0x59a5e,_0x67e252={'m1Prime':_0x30d00f,'m2Prime':_0x4c9979};if(_0x30d00f['params'][_0x3b3b14(0x10f)]!==_0x4c9979[_0x3b3b14(0x126)]['unitId']||_0x30d00f[_0x3b3b14(0x126)][_0x3b3b14(0x18c)]!==_0x4c9979[_0x3b3b14(0x126)][_0x3b3b14(0x18c)])return _0x67e252;const _0x462b11=_0x30d00f[_0x3b3b14(0x126)]['ranges'],_0x479456=[],_0x702381=_0x589265[_0x3b3b14(0x1cb)](_0x30d00f),_0x50a1fe=_0x4c9979[_0x3b3b14(0x126)]['ranges'];_0x462b11[_0x3b3b14(0x233)](_0x3aebcc=>{const _0x25e1e0=_0x3b3b14,_0x5baa65={'start':_0x3aebcc[_0x25e1e0(0xcd)],'end':_0x3aebcc[_0x25e1e0(0xf0)]},_0x515fec=_0x50a1fe[_0x25e1e0(0xea)](_0x144ba7=>({'start':_0x144ba7['startRow'],'end':_0x144ba7['endRow']})),_0xfc05bf=Ue(_0x5baa65,_0x515fec)[_0x25e1e0(0xea)](_0x34b9d6=>({..._0x3aebcc,'startRow':_0x34b9d6[_0x25e1e0(0x13a)],'endRow':_0x34b9d6['end']}));_0x479456[_0x25e1e0(0x112)](..._0xfc05bf);}),_0x702381[_0x3b3b14(0x126)][_0x3b3b14(0x238)]=_0x479456;const {autoHeightInfo:_0x47ff9b}=_0x702381['params'],{autoHeightInfo:_0x5532ad}=_0x4c9979['params'];return typeof _0x47ff9b!=_0x3b3b14(0x1e1)&&(typeof _0x5532ad!=_0x3b3b14(0x1e1)?Object[_0x3b3b14(0x10b)](_0x5532ad)[_0x3b3b14(0xea)](Number)[_0x3b3b14(0x233)](_0x54edc6=>{_0x47ff9b[_0x54edc6]!=null&&delete _0x47ff9b[_0x54edc6];}):_0x50a1fe[_0x3b3b14(0x233)](_0x305f87=>{const _0x24ab7b=_0x3b3b14;for(let _0x139701=_0x305f87[_0x24ab7b(0xcd)];_0x139701<=_0x305f87[_0x24ab7b(0xf0)];_0x139701++)delete _0x47ff9b[_0x139701];})),{'m1Prime':_0x702381,'m2Prime':_0x4c9979};}},_i={'m1':_0x49a7a8['id'],'m2':_0x49a7a8['id'],'handler':(_0x520ea5,_0x4ffe9a)=>{const _0x4f4a5e=_0x59a5e,_0x5d34cb=_0x520ea5[_0x4f4a5e(0x126)],_0x211744=_0x4ffe9a[_0x4f4a5e(0x126)];return _0x5d34cb[_0x4f4a5e(0x10f)]===_0x211744['unitId']&&_0x5d34cb[_0x4f4a5e(0x18c)]===_0x211744[_0x4f4a5e(0x18c)]&&_0x5d34cb[_0x4f4a5e(0x218)][_0x4f4a5e(0x1c7)]===_0x211744[_0x4f4a5e(0x218)][_0x4f4a5e(0x1c7)]?{'m1Prime':[],'m2Prime':_0x4ffe9a}:{'m1Prime':_0x520ea5,'m2Prime':_0x4ffe9a};}},Oi={'m1':_0x164c55['id'],'m2':_0x164c55['id'],'handler':(_0x2e7f45,_0x348162)=>{const _0x8f48e2=_0x59a5e,_0x36f03b=_0x2e7f45[_0x8f48e2(0x126)],_0x54053d=_0x348162['params'];return _0x36f03b[_0x8f48e2(0x10f)]===_0x54053d[_0x8f48e2(0x10f)]&&_0x36f03b[_0x8f48e2(0x18c)]===_0x54053d[_0x8f48e2(0x18c)]&&_0x36f03b[_0x8f48e2(0x218)][_0x8f48e2(0x1c7)]===_0x54053d[_0x8f48e2(0x218)][_0x8f48e2(0x1c7)]?{'m1Prime':[],'m2Prime':_0x348162}:{'m1Prime':_0x2e7f45,'m2Prime':_0x348162};}},yi={'m1':_0x2bcc50['id'],'m2':_0x34b1dc['id'],'handler':(_0x459f14,_0x3044e5)=>{const _0x2d29ae=_0x59a5e,_0x2d8a93={'m1Prime':_0x459f14,'m2Prime':_0x3044e5},_0x29f0aa=_0x459f14[_0x2d29ae(0x126)],_0x5c5a02=_0x3044e5[_0x2d29ae(0x126)];if(_0x29f0aa[_0x2d29ae(0x10f)]!==_0x5c5a02['unitId']||_0x29f0aa[_0x2d29ae(0x18c)]!==_0x5c5a02[_0x2d29ae(0x18c)])return _0x2d8a93;if(_0x459f14[_0x2d29ae(0x126)][_0x2d29ae(0x218)][_0x2d29ae(0x173)]===_0x7ea4bb[_0x2d29ae(0x244)]){const {unitId:_0x5be68b,subUnitId:_0x46ba79}=_0x459f14['params'],_0x534f58=Array['isArray'](_0x3044e5[_0x2d29ae(0x126)][_0x2d29ae(0xbc)])?_0x3044e5[_0x2d29ae(0x126)][_0x2d29ae(0xbc)]:[_0x3044e5['params'][_0x2d29ae(0xbc)]],_0x331b7a=[],_0x976197=new _0x33d61f(),_0x10e666=_0x459f14[_0x2d29ae(0x126)][_0x2d29ae(0x218)][_0x2d29ae(0x218)];_0x10e666['forEach'](_0x5b5679=>{const _0x389973=_0x2d29ae;_0x1070fe[_0x389973(0x21c)](_0x5b5679,(_0x53d231,_0x1d1db7)=>{const _0x15fae6=_0x389973;_0x976197['setValue'](_0x53d231,_0x1d1db7,_0x459f14[_0x15fae6(0x126)]['ruleId']);});}),_0x534f58['forEach'](_0x193723=>{const _0xd2d39a=_0x2d29ae;_0x193723[_0xd2d39a(0x238)][_0xd2d39a(0x233)](_0x1e68de=>{_0x1070fe['foreach'](_0x1e68de,(_0x547187,_0x4212df)=>{const _0x28bb10=_0x29e8;_0x976197['setValue'](_0x547187,_0x4212df,_0x193723[_0x28bb10(0x1db)]);});});});const _0x534fbd=_0x459f14[_0x2d29ae(0x126)][_0x2d29ae(0x197)],_0x55d330=_0x35f568(_0x976197,_0x1f01f7=>_0x1f01f7===_0x534fbd);return _0x205d2e(_0x55d330,_0x10e666)||(_0x55d330[_0x2d29ae(0x210)]?_0x331b7a['push']({'id':_0x2bcc50['id'],'params':{'unitId':_0x5be68b,'subUnitId':_0x46ba79,'ruleId':_0x534fbd,'payload':{'type':_0x7ea4bb[_0x2d29ae(0x244)],'payload':_0x55d330}}}):_0x331b7a['push']({'id':_0x46530b['id'],'params':{'unitId':_0x5be68b,'subUnitId':_0x46ba79,'ruleId':_0x534fbd}})),{'m1Prime':_0x331b7a['length']?_0x331b7a:[_0x459f14],'m2Prime':[..._0x331b7a,_0x3044e5]};}return _0x2d8a93;}},Ni={'m1':_0x2bcc50['id'],'m2':_0x46530b['id'],'handler':(_0x3ddd56,_0x3ff06)=>{const _0x13cd51=_0x59a5e,_0x132ad6={'m1Prime':_0x3ddd56,'m2Prime':_0x3ff06};if(_0x3ddd56['params']['unitId']!==_0x3ff06[_0x13cd51(0x126)][_0x13cd51(0x10f)]||_0x3ddd56[_0x13cd51(0x126)][_0x13cd51(0x18c)]!==_0x3ff06[_0x13cd51(0x126)]['subUnitId'])return _0x132ad6;const _0x41f0b8=_0x3ddd56[_0x13cd51(0x126)][_0x13cd51(0x197)];return(Array[_0x13cd51(0xf2)](_0x3ff06[_0x13cd51(0x126)]['ruleId'])?_0x3ff06[_0x13cd51(0x126)][_0x13cd51(0x197)]:[_0x3ff06[_0x13cd51(0x126)]['ruleId']])[_0x13cd51(0x147)](_0x41f0b8)>-0x1?{'m1Prime':[],'m2Prime':_0x3ff06}:_0x132ad6;}},Di={'m1':_0x2bcc50['id'],'m2':_0x2bcc50['id'],'handler':(_0x266a9e,_0x1f2bd4)=>{const _0x230bac=_0x59a5e,_0xabf689={'m1Prime':_0x266a9e,'m2Prime':_0x1f2bd4},_0x3a1b7e=_0x266a9e[_0x230bac(0x126)],_0x1cec20=_0x1f2bd4['params'];if(_0x3a1b7e['unitId']===_0x1cec20[_0x230bac(0x10f)]&&_0x3a1b7e['subUnitId']===_0x1cec20['subUnitId']){const _0x575f6e=_0x589265['deepClone'](_0x1f2bd4);if(_0x1cec20['ruleId']===_0x3a1b7e['ruleId']&&_0x3a1b7e[_0x230bac(0x218)][_0x230bac(0x173)]===_0x1cec20['payload']['type'])return _0x3a1b7e[_0x230bac(0x218)][_0x230bac(0x173)]===_0x7ea4bb[_0x230bac(0x244)]&&!_0x205d2e(_0x3a1b7e[_0x230bac(0x218)]['payload'],_0x1cec20[_0x230bac(0x218)][_0x230bac(0x218)])?{'error':new Error(_0x230bac(0x21f))}:{'m1Prime':[],'m2Prime':_0x575f6e};if(_0x3a1b7e[_0x230bac(0x218)][_0x230bac(0x173)]===_0x7ea4bb[_0x230bac(0x244)]&&_0x1cec20[_0x230bac(0x218)][_0x230bac(0x173)]===_0x7ea4bb[_0x230bac(0x244)]&&_0x1cec20[_0x230bac(0x197)]!==_0x3a1b7e['ruleId']){let _0x2c3c14=function(_0x490a3d,_0x5b9d98){_0x490a3d['forEach'](_0x19a4c3=>{const _0x54e863=_0x29e8;_0x1070fe[_0x54e863(0x21c)](_0x19a4c3,(_0x598461,_0x508a75)=>{const _0x39d54b=_0x54e863;_0x25bff3[_0x39d54b(0xef)](_0x598461,_0x508a75,_0x5b9d98);});});};const _0x25bff3=new _0x33d61f();_0x2c3c14(_0x3a1b7e[_0x230bac(0x218)][_0x230bac(0x218)],_0x3a1b7e[_0x230bac(0x197)]),_0x2c3c14(_0x1cec20[_0x230bac(0x218)][_0x230bac(0x218)],_0x1cec20['ruleId']);const _0x1d082d=_0x35f568(_0x25bff3,_0x29e4ea=>_0x29e4ea===_0x3a1b7e[_0x230bac(0x197)]),_0x22dc5b=!_0x205d2e(_0x3a1b7e[_0x230bac(0x218)][_0x230bac(0x218)],_0x1d082d)?_0x1d082d['length']?[{'id':_0x2bcc50['id'],'params':{..._0x3a1b7e,'payload':{'type':_0x7ea4bb[_0x230bac(0x244)],'payload':_0x1d082d}}}]:[{'id':_0x46530b['id'],'params':{..._0x3a1b7e,'payload':void 0x0}}]:[];return{'m1Prime':[_0x266a9e],'m2Prime':[..._0x22dc5b,_0x1f2bd4]};}}return _0xabf689;}},Ai={'m1':_0x3898ec['id'],'m2':_0x3898ec['id'],'handler':(_0x49fb29,_0x1d93b2)=>{const _0x4732d4=_0x59a5e,_0x1afc60=_0x49fb29['params'],_0x5aa11f=_0x1d93b2[_0x4732d4(0x126)];return _0x1afc60[_0x4732d4(0x10f)]===_0x5aa11f[_0x4732d4(0x10f)]&&_0x1afc60[_0x4732d4(0x18c)]===_0x5aa11f[_0x4732d4(0x18c)]&&_0x1afc60['id']===_0x5aa11f['id']?{'m2Prime':_0x1d93b2,'m1Prime':[]}:{'m1Prime':_0x49fb29,'m2Prime':_0x1d93b2};}},Ti={'m1':_0x3d7248['id'],'m2':_0x3d7248['id'],'handler':(_0x2af62e,_0x1e75fb)=>{const _0x35a6fb=_0x59a5e,_0x319d1d=_0x2af62e['params'],_0xce9ac8=_0x1e75fb[_0x35a6fb(0x126)];return _0x319d1d['unitId']===_0xce9ac8[_0x35a6fb(0x10f)]&&_0x319d1d[_0x35a6fb(0x18c)]===_0xce9ac8['subUnitId']&&_0x319d1d['id']===_0xce9ac8['id']?{'m2Prime':_0x1e75fb,'m1Prime':[]}:{'m1Prime':_0x2af62e,'m2Prime':_0x1e75fb};}},Li={'m1':_0x2a1c35['id'],'m2':_0x223d91['id'],'handler'(_0x31293b,_0x374bc2){const _0x518515=_0x59a5e,_0x32303a=_0x589265[_0x518515(0x1cb)](_0x374bc2);return _0x31293b[_0x518515(0x126)][_0x518515(0x18c)]!==_0x374bc2[_0x518515(0x126)][_0x518515(0x18c)]||_0x31293b[_0x518515(0x126)][_0x518515(0x10f)]!==_0x374bc2['params'][_0x518515(0x10f)]?{'m1Prime':_0x31293b,'m2Prime':_0x32303a}:(_0x32303a['id']=_0x44f38d['id'],{'m1Prime':_0x31293b,'m2Prime':_0x32303a});}},ki={'m1':_0x2a1c35['id'],'m2':_0x49900b['id'],'handler'(_0x341d19,_0x3b8438){const _0x4ab07d=_0x59a5e,_0x588121=_0x589265['deepClone'](_0x3b8438);return _0x341d19[_0x4ab07d(0x126)][_0x4ab07d(0x18c)]!==_0x3b8438[_0x4ab07d(0x126)][_0x4ab07d(0x18c)]||_0x341d19[_0x4ab07d(0x126)][_0x4ab07d(0x10f)]!==_0x3b8438[_0x4ab07d(0x126)][_0x4ab07d(0x10f)]?{'m1Prime':_0x341d19,'m2Prime':_0x588121}:(_0x588121['id']=_0x44f38d['id'],{'m1Prime':_0x341d19,'m2Prime':_0x588121});}},xi={'m1':_0x3c374e['id'],'m2':_0x3c374e['id'],'handler'(_0x19481e,_0x536673){const _0x398aef=_0x59a5e;if(_0x19481e[_0x398aef(0x126)]['sheet']['id']===_0x536673[_0x398aef(0x126)]['sheet']['id'])return{'error':new Error(_0x398aef(0x108))};const _0x2cd5e4=_0x589265[_0x398aef(0x1cb)](_0x19481e),_0x3f208d=_0x589265['deepClone'](_0x536673);return _0x2cd5e4['params'][_0x398aef(0x206)]<=_0x3f208d[_0x398aef(0x126)][_0x398aef(0x206)]?_0x3f208d[_0x398aef(0x126)]['index']+=0x1:_0x2cd5e4['params'][_0x398aef(0x206)]>_0x3f208d[_0x398aef(0x126)][_0x398aef(0x206)]&&(_0x2cd5e4[_0x398aef(0x126)][_0x398aef(0x206)]+=0x1),_0x19481e[_0x398aef(0x126)][_0x398aef(0x1ac)][_0x398aef(0x16a)]===_0x536673[_0x398aef(0x126)][_0x398aef(0x1ac)][_0x398aef(0x16a)]?{'error':new Error(_0x398aef(0x1ed))}:{'m1Prime':_0x2cd5e4,'m2Prime':_0x3f208d};}},Hi={'m1':_0x2a1c35['id'],'m2':_0x59a5e(0x227),'handler'(_0xae5f2c,_0x1ed6fd){const _0x8a7afa=_0x59a5e;var _0x23da76;return _0xae5f2c[_0x8a7afa(0x126)][_0x8a7afa(0x18c)]===((_0x23da76=_0x1ed6fd[_0x8a7afa(0x126)])==null?void 0x0:_0x23da76[_0x8a7afa(0x18c)])&&_0xae5f2c['id']!==_0x1ed6fd['id']?{'error':new Error(_0x8a7afa(0xe5))}:{'m1Prime':_0xae5f2c,'m2Prime':_0x1ed6fd};}},Fi={'m1':_0x2948b9['id'],'m2':_0x2948b9['id'],'handler'(_0x572dc4,_0x5d5342){const _0x5918fd=_0x59a5e,_0xd90ba4=_0x589265[_0x5918fd(0x1cb)](_0x572dc4),_0x5623b5=_0x589265[_0x5918fd(0x1cb)](_0x5d5342),_0x3671e7={'error':new Error(_0x5918fd(0x222))};if(_0x572dc4[_0x5918fd(0x126)][_0x5918fd(0x10c)]===_0x5d5342[_0x5918fd(0x126)][_0x5918fd(0x10c)])_0xd90ba4['id']=_0x44f38d['id'],_0x5623b5[_0x5918fd(0x126)][_0x5918fd(0x10c)]=_0x572dc4[_0x5918fd(0x126)][_0x5918fd(0x1d1)];else{_0x572dc4[_0x5918fd(0x126)][_0x5918fd(0x10c)]===_0x572dc4[_0x5918fd(0x126)][_0x5918fd(0x1d1)]&&(_0xd90ba4['id']=_0x44f38d['id']),_0x5d5342[_0x5918fd(0x126)][_0x5918fd(0x10c)]===_0x5d5342[_0x5918fd(0x126)]['toOrder']&&(_0x5623b5['id']=_0x44f38d['id']);const _0x103e22=[Math['min'](_0x572dc4[_0x5918fd(0x126)]['fromOrder'],_0x572dc4['params'][_0x5918fd(0x1d1)]),Math['max'](_0x572dc4['params'][_0x5918fd(0x10c)],_0x572dc4['params'][_0x5918fd(0x1d1)])],_0x302471=[Math[_0x5918fd(0x19c)](_0x5d5342['params'][_0x5918fd(0x10c)],_0x5d5342[_0x5918fd(0x126)][_0x5918fd(0x1d1)]),Math[_0x5918fd(0x14b)](_0x5d5342[_0x5918fd(0x126)][_0x5918fd(0x10c)],_0x5d5342[_0x5918fd(0x126)]['toOrder'])];if(_0x103e22[0x0]<=_0x302471[0x1]&&_0x103e22[0x1]>=_0x302471[0x0])return _0x3671e7;}return{'m1Prime':_0xd90ba4,'m2Prime':_0x5623b5};}},Bi={'m1':_0x3c374e['id'],'m2':_0x2948b9['id'],'handler'(_0xac934f,_0x17cd04){const _0x722a75=_0x59a5e,_0xff08e=_0x589265[_0x722a75(0x1cb)](_0xac934f),_0x2de38c=_0x589265[_0x722a75(0x1cb)](_0x17cd04);return _0xac934f['params']['index']<=_0x17cd04[_0x722a75(0x126)]['order']&&(_0x2de38c[_0x722a75(0x126)]['order']+=0x1),{'m1Prime':_0xff08e,'m2Prime':_0x2de38c};}},Gi={'m1':'any','m2':_0x2a1c35['id'],'handler'(_0x4a8676,_0x1ea881){return{'m1Prime':_0x4a8676,'m2Prime':_0x1ea881};}},ji=[xi,Bi,Hi,Gi,Fi];var $i=Object['defineProperty'],Yi=Object[_0x59a5e(0x166)],Ji=(_0x3a5ec9,_0x435b96,_0x4adf99,_0x567875)=>{const _0x56ced1=_0x59a5e;for(var _0x10af55=_0x567875>0x1?void 0x0:_0x567875?Yi(_0x435b96,_0x4adf99):_0x435b96,_0x5d3ab5=_0x3a5ec9[_0x56ced1(0x210)]-0x1,_0xc58dc5;_0x5d3ab5>=0x0;_0x5d3ab5--)(_0xc58dc5=_0x3a5ec9[_0x5d3ab5])&&(_0x10af55=(_0x567875?_0xc58dc5(_0x435b96,_0x4adf99,_0x10af55):_0xc58dc5(_0x10af55))||_0x10af55);return _0x567875&&_0x10af55&&$i(_0x435b96,_0x4adf99,_0x10af55),_0x10af55;},Xi=(_0x233297,_0x41ba02)=>(_0x243199,_0x2492f0)=>_0x41ba02(_0x243199,_0x2492f0,_0x233297);let Bt=class extends _0x3283b2{constructor(_0x383721){const _0x4a5809=_0x59a5e;super(),this['_transformService']=_0x383721,[...ji,Zn,Qn,ta,ea,ma,sa,oa,ia,pa,da,ra,ua,wa,Ca,Pa,ba,Sa,Na,Da,Aa,Wa,Va,_a,Ea,Ua,Oa,Ha,Ka,Fa,$a,Ya,Ja,Qa,Xa,za,Ba,ls,gs,us,bs,Ms,vs,Is,ws,Cs,hs,cs,Ps,ns,os,as,Ns,Os,ys,Fs,Ls,ks,xs,$s,Hs,Ds,Bs,ao,ro,eo,uo,ho,go,Io,lo,co,po,mo,no,fo,hi,fi,Ei,Fo,Mi,vi,Si,Wi,Vi,gi,Do,Go,Bo,zs,qs,xr,Ao,es,Yn,Hr,Di,Xs,Kn,ds,zn,Vs,Qs,Ra,Ss,ha,La,Js,Co,Fr,yi,Ni,la,ca,ya,qa,Za,Us,Gs,js,Ro,Pi,wi,Ci,Ii,bi,Ui,fn,rr,qn,nr,Ia,ar,xa,or,ms,sr,rs,ir,_s,dr,to,mr,pi,Rn,Li,na,Ma,Ga,ps,As,so,ki,Po,bo,Uo,Mo,vo,Eo,So,hn,Wo,kr,jn,$n,Oi,_i,Jn,ga,ka,is,Ws,Zs,fa,Ta,ts,Es,Ys,wo,Br,Ks,Ai,Ti,Gr,jr,$r,Yr,Jr,Xr,Kr,zr,qr,Zr,Qr,tn,en,rn,nn,an,sn,on,dn,mn,un,ln,cn,pn,jo,$o,Yo,Jo,Xo,Ko,zo,qo,Zo,Qo,ti,ri,ei,ni,ai,si,oi,ii,di,mi,ui,li,ci,gn,In,wn,Cn,Pn,Un,bn,Mn,vn,En,Wn,Sn,Vn,yn,_n,On,An,Nn,Dn,Tn,Ln,kn,xn,Hn,Fn,Bn,Gn,va,aa,oo,Ts,fs,ja,ss,Ri,Oo,Ho,No,yo][_0x4a5809(0x233)](_0x2025a5=>{const _0x624a22=_0x4a5809;this[_0x624a22(0x219)]['registerTransformAlgorithm'](_0x2025a5);});}};Bt=Ji([Xi(0x0,Pe)],Bt);function Ki(_0x5e3693,_0x5348e9){const _0x353877=_0x59a5e;if(!Array[_0x353877(0xf2)](_0x5e3693))return;const _0x180c68=_0x5e3693[_0x353877(0x147)](_0x353877(0x1b8))>-0x1?_0x5e3693:_0x5e3693[_0x353877(0x160)](_0x101479=>Array[_0x353877(0xf2)](_0x101479)&&_0x101479[_0x353877(0x147)]('body')>-0x1);if(!Array[_0x353877(0xf2)](_0x180c68))return;const _0x1a7fec=_0x180c68[_0x353877(0x147)]('body');if(!(_0x1a7fec===-0x1||(_0x1a7fec===0x0?'':_0x180c68[_0x1a7fec-0x1])!==_0x5348e9))return _0x180c68[_0x353877(0x139)](_0x1a7fec);}function He(_0x2909a6,_0x2a912b,_0x555a5d='right'){const _0x4c5df0=_0x59a5e;if(_0x2a912b[_0x4c5df0(0x210)]===0x0)return[];const {segmentId:_0x1d9218}=_0x2a912b[0x0];if(_0x1d9218==null)return _0x2a912b;const _0x4d79fd=Ki(_0x2909a6,_0x1d9218);if(_0x4d79fd==null)return _0x2a912b;const _0x2b5e0f=[];for(const _0x386523 of _0x2a912b){const _0x20679b=_0x3734bf[_0x4c5df0(0x21a)](_0x4d79fd,_0x386523[_0x4c5df0(0x17c)],_0x555a5d),_0x2003ce=_0x3734bf['transformPosition'](_0x4d79fd,_0x386523[_0x4c5df0(0x22d)],_0x555a5d),_0x17ec73={..._0x386523,'startOffset':_0x20679b,'endOffset':_0x2003ce,'collapsed':_0x20679b===_0x2003ce};_0x2b5e0f['push'](_0x17ec73);}return _0x2b5e0f;}const zi={'m1':_0x5d789c['id'],'m2':_0x5d789c['id'],'handler'(_0x4ae578,_0x5f5d27){const _0xf3e813=_0x59a5e;if(_0x4ae578['params'][_0xf3e813(0x10f)]!==_0x5f5d27[_0xf3e813(0x126)]['unitId'])return{'error':new Error(_0xf3e813(0xba))};const _0xa6329d=_0x589265['deepClone'](_0x4ae578),_0x3d40e1=_0x589265[_0xf3e813(0x1cb)](_0x5f5d27);return{'m1Prime':{..._0xa6329d,'params':{..._0xa6329d[_0xf3e813(0x126)],'actions':_0x3734bf[_0xf3e813(0x1a6)](_0xa6329d[_0xf3e813(0x126)][_0xf3e813(0x209)],_0x3d40e1[_0xf3e813(0x126)]['actions'],_0xf3e813(0x17d)),'textRanges':_0xa6329d[_0xf3e813(0x126)][_0xf3e813(0x13b)]?He(_0x3d40e1[_0xf3e813(0x126)]['actions'],_0xa6329d[_0xf3e813(0x126)][_0xf3e813(0x13b)],'right'):null}},'m2Prime':{..._0x3d40e1,'params':{..._0x3d40e1[_0xf3e813(0x126)],'actions':_0x3734bf[_0xf3e813(0x1a6)](_0x3d40e1[_0xf3e813(0x126)][_0xf3e813(0x209)],_0xa6329d[_0xf3e813(0x126)][_0xf3e813(0x209)],_0xf3e813(0x128)),'textRanges':_0x3d40e1[_0xf3e813(0x126)]['textRanges']?He(_0xa6329d[_0xf3e813(0x126)][_0xf3e813(0x209)],_0x3d40e1[_0xf3e813(0x126)]['textRanges'],_0xf3e813(0x128)):null}}};}},qi=[zi];var Zi=Object[_0x59a5e(0x140)],Qi=Object[_0x59a5e(0x166)],td=(_0x2cdb76,_0x220888,_0xf1ccce,_0x4fc7c7)=>{for(var _0xea28a4=_0x4fc7c7>0x1?void 0x0:_0x4fc7c7?Qi(_0x220888,_0xf1ccce):_0x220888,_0x57918b=_0x2cdb76['length']-0x1,_0xc97b6d;_0x57918b>=0x0;_0x57918b--)(_0xc97b6d=_0x2cdb76[_0x57918b])&&(_0xea28a4=(_0x4fc7c7?_0xc97b6d(_0x220888,_0xf1ccce,_0xea28a4):_0xc97b6d(_0xea28a4))||_0xea28a4);return _0x4fc7c7&&_0xea28a4&&Zi(_0x220888,_0xf1ccce,_0xea28a4),_0xea28a4;},ed=(_0xe8045c,_0x5101bb)=>(_0x34fd26,_0x49b655)=>_0x5101bb(_0x34fd26,_0x49b655,_0xe8045c);let Gt=class extends _0x3283b2{constructor(_0x3c8be2){const _0x299ed3=_0x59a5e;super(),this[_0x299ed3(0x219)]=_0x3c8be2,[...qi][_0x299ed3(0x233)](_0x10723d=>{const _0x3ed6a8=_0x299ed3;this[_0x3ed6a8(0x219)][_0x3ed6a8(0x228)](_0x10723d);});}};Gt=td([ed(0x0,Pe)],Gt);function tm(_0x3acd10){const _0x23622f=_0x59a5e;return{..._0x3acd10,'mutations':_0x3acd10['mutations'][_0x23622f(0xea)](rd)};}function em(_0x505893){const _0x140d6a=_0x59a5e;return _0x505893[_0x140d6a(0xea)](_0x1cc7fc=>({'id':_0x1cc7fc['id'],'params':JSON[_0x140d6a(0x230)](_0x1cc7fc['data'])}));}function rm(_0x5dd815){const _0x5d63e5=_0x59a5e;return{..._0x5dd815,'mutations':_0x5dd815[_0x5d63e5(0x164)][_0x5d63e5(0xea)](nd)};}function rd(_0x2c4595){const _0x36b3dd=_0x59a5e;return{'id':_0x2c4595['id'],'params':JSON[_0x36b3dd(0x230)](_0x2c4595[_0x36b3dd(0xfc)])};}function nd(_0x12b2c5){const _0x4a9165=_0x59a5e;return{'id':_0x12b2c5['id'],'data':JSON[_0x4a9165(0x125)](_0x12b2c5[_0x4a9165(0x126)])};}var ad=(_0x168a39=>(_0x168a39['FETCH_MISSING']=_0x59a5e(0x1f5),_0x168a39['PSEUDO_FETCH_MISSING_RESULT']=_0x59a5e(0x167),_0x168a39[_0x59a5e(0x1e9)]=_0x59a5e(0x178),_0x168a39[_0x59a5e(0x1c4)]=_0x59a5e(0xce),_0x168a39[_0x59a5e(0x202)]='changeset_rej',_0x168a39[_0x59a5e(0x1a5)]='changeset_should_retry',_0x168a39[_0x59a5e(0x1b0)]=_0x59a5e(0xc4),_0x168a39[_0x59a5e(0x23b)]=_0x59a5e(0x120),_0x168a39[_0x59a5e(0x248)]='users_enter',_0x168a39['USERS_LEAVE']=_0x59a5e(0xe1),_0x168a39['UNIT_DELETE']=_0x59a5e(0x159),_0x168a39[_0x59a5e(0x1e8)]=_0x59a5e(0xda),_0x168a39['LIVESHARE_NEW_HOST']='liveshare.new_host',_0x168a39['LIVESHARE_OPERATION']=_0x59a5e(0x201),_0x168a39[_0x59a5e(0x10a)]='liveshare.fetch_operations',_0x168a39['LIVESHARE_TERMINATE']=_0x59a5e(0xf3),_0x168a39[_0x59a5e(0x20b)]=_0x59a5e(0x1d0),_0x168a39['PERMISSION_REJ']=_0x59a5e(0x240),_0x168a39['COMMENT_UPDATE']=_0x59a5e(0x190),_0x168a39[_0x59a5e(0x215)]=_0x59a5e(0xf8),_0x168a39[_0x59a5e(0x225)]=_0x59a5e(0xca),_0x168a39))(ad||{});const sd=_0x59a5e(0x1af),od={};var id=Object[_0x59a5e(0x140)],dd=Object[_0x59a5e(0x166)],md=(_0x21fad2,_0x50f94a,_0xcb91e,_0x593a9b)=>{const _0x1e9d67=_0x59a5e;for(var _0x306686=_0x593a9b>0x1?void 0x0:_0x593a9b?dd(_0x50f94a,_0xcb91e):_0x50f94a,_0x2afdc8=_0x21fad2[_0x1e9d67(0x210)]-0x1,_0x2655b5;_0x2afdc8>=0x0;_0x2afdc8--)(_0x2655b5=_0x21fad2[_0x2afdc8])&&(_0x306686=(_0x593a9b?_0x2655b5(_0x50f94a,_0xcb91e,_0x306686):_0x2655b5(_0x306686))||_0x306686);return _0x593a9b&&_0x306686&&id(_0x50f94a,_0xcb91e,_0x306686),_0x306686;},ud=(_0x3439b2,_0x20eba4)=>(_0x4d663a,_0x2590f6)=>_0x20eba4(_0x4d663a,_0x2590f6,_0x3439b2);let jt=class extends _0x3283b2{constructor(_0x280c90){const _0x3130c9=_0x59a5e;super(),this[_0x3130c9(0x17a)]=_0x280c90,[re][_0x3130c9(0x233)](_0x4140b0=>this[_0x3130c9(0x17a)][_0x3130c9(0x231)](_0x4140b0));}};jt=md([ud(0x0,_0x457040)],jt);const ld=_0x13ede9=>{const _0x5158f5=_0x59a5e,_0x272ad7={};if(!_0x13ede9)return{'cellValue':_0x13ede9,'styleRefMap':void 0x0};const _0x1a9b6d=[];return{'cellValue':new _0x33d61f(_0x589265[_0x5158f5(0x1cb)](_0x13ede9))[_0x5158f5(0x1d9)]((_0x362cae,_0x54cc76,_0x2aebc4)=>{const _0xcbb403=_0x5158f5,_0x52f0ca=_0x2aebc4&&_0x2aebc4['s'];if(_0x52f0ca&&typeof _0x52f0ca===_0xcbb403(0xe8)){const _0x3fe362=JSON['stringify'](_0x52f0ca),_0x5a61be=_0x1a9b6d[_0xcbb403(0x1df)](_0x2287c9=>_0x2287c9===_0x3fe362);if(_0x5a61be>-0x1)_0x2aebc4['s']=''+_0x5a61be;else{const _0x5cac70=_0x1a9b6d[_0xcbb403(0x112)](_0x3fe362)-0x1;_0x272ad7[_0x5cac70]=_0x52f0ca,_0x2aebc4['s']=''+_0x5cac70;}}})[_0x5158f5(0x131)](),'styleRefMap':_0x272ad7};},cd=(_0x1694d9,_0x33fbe8)=>!_0x1694d9||!_0x33fbe8?_0x1694d9:new _0x33d61f(_0x589265['deepClone'](_0x1694d9))['forValue']((_0xbf6931,_0x406e0f,_0x3cd637)=>{const _0x56ff31=_0x59a5e,_0x2b8e61=_0x3cd637&&_0x3cd637['s'];if(_0x2b8e61&&typeof _0x2b8e61===_0x56ff31(0x138)){const _0x4779e6=_0x33fbe8[_0x2b8e61];_0x4779e6&&(_0x3cd637['s']=_0x4779e6);}})[_0x59a5e(0x131)](),pd=_0x424605(_0x59a5e(0x169)),fd=_0x424605(_0x59a5e(0x1c5));class ur{constructor(){const _0x13d502=_0x59a5e;se(this,_0x13d502(0xb5),new _0xf74a7({'COMPRESS_MUTATION_APPLY':pd,'COMPRESS_MUTATION_SEND':fd})),this[_0x13d502(0x234)]();}[_0x59a5e(0x234)](){const _0x418c2d=_0x59a5e;this[_0x418c2d(0xb5)][_0x418c2d(0x174)](this[_0x418c2d(0xb5)][_0x418c2d(0xf5)]()[_0x418c2d(0x169)],{'priority':-0x1,'handler':_0x15761c=>_0x15761c}),this[_0x418c2d(0xb5)]['intercept'](this[_0x418c2d(0xb5)][_0x418c2d(0xf5)]()[_0x418c2d(0x1c5)],{'priority':-0x1,'handler':_0xc41325=>_0xc41325}),this[_0x418c2d(0x1a3)]();}[_0x59a5e(0x1a3)](){const _0x2c2c07=_0x59a5e;this[_0x2c2c07(0xb5)][_0x2c2c07(0x174)](this[_0x2c2c07(0xb5)]['getInterceptPoints']()[_0x2c2c07(0x169)],{'handler':(_0x7d0e9,_0x39d47b,_0x1b7426)=>{if(!_0x7d0e9)return _0x1b7426(_0x7d0e9);const _0x3a2326=_0x7d0e9['map'](_0x4d6363=>{const _0x2fc12a=_0x29e8;if(_0x4d6363['id']===_0x36f561['id']){const _0x1cf061=_0x4d6363[_0x2fc12a(0x126)];if(!_0x1cf061['styleRefMap'])return _0x4d6363;const _0x755340=cd(_0x1cf061[_0x2fc12a(0x153)],_0x1cf061[_0x2fc12a(0x1f8)]);return{..._0x4d6363,'params':{..._0x1cf061,'cellValue':_0x755340}};}return _0x4d6363;});return _0x1b7426(_0x3a2326);}}),this['interceptor'][_0x2c2c07(0x174)](this[_0x2c2c07(0xb5)][_0x2c2c07(0xf5)]()[_0x2c2c07(0x1c5)],{'handler':(_0x18c67c,_0x87de92,_0x3b6cad)=>{const _0x86f99=_0x2c2c07;if(!_0x18c67c)return _0x3b6cad(_0x18c67c);const _0x1d1645=_0x18c67c[_0x86f99(0xea)](_0x1e3fbe=>{const _0x2ff6d1=_0x86f99;if(_0x1e3fbe['id']===_0x36f561['id']){const _0xf7c7db=_0x1e3fbe[_0x2ff6d1(0x126)];return _0xf7c7db[_0x2ff6d1(0x1f8)]?_0x1e3fbe:{..._0x1e3fbe,'params':{..._0xf7c7db,...ld(_0xf7c7db[_0x2ff6d1(0x153)])}};}return _0x1e3fbe;});return _0x3b6cad(_0x1d1645);}});}}var Rd=Object[_0x59a5e(0x140)],hd=Object[_0x59a5e(0x166)],gd=(_0x314dac,_0x22c65e,_0x1298e3,_0x1abda8)=>{for(var _0x447a45=_0x1abda8>0x1?void 0x0:_0x1abda8?hd(_0x22c65e,_0x1298e3):_0x22c65e,_0x5cfb03=_0x314dac['length']-0x1,_0x1a67b4;_0x5cfb03>=0x0;_0x5cfb03--)(_0x1a67b4=_0x314dac[_0x5cfb03])&&(_0x447a45=(_0x1abda8?_0x1a67b4(_0x22c65e,_0x1298e3,_0x447a45):_0x1a67b4(_0x447a45))||_0x447a45);return _0x1abda8&&_0x447a45&&Rd(_0x22c65e,_0x1298e3,_0x447a45),_0x447a45;},Id=(_0x52d65c,_0x428526)=>(_0x5f3052,_0x39e891)=>_0x428526(_0x5f3052,_0x39e891,_0x52d65c);const nm=new Set([_0x3c374e['id'],_0x2a1c35['id'],_0x346d54['id'],_0x921352['id'],_0x333e37['id']]),am=new Set([_0x3c374e['id'],_0x2a1c35['id'],re['id'],_0x491dee['id']]);let $t=class{constructor(_0x4fd67b){const _0x2403b1=_0x59a5e;this[_0x2403b1(0x1e2)]=_0x4fd67b;}[_0x59a5e(0x246)](_0x360a68){const _0x379b9e=_0x59a5e,_0x269a48=this[_0x379b9e(0x1e2)]['getUnit'](_0x360a68);if(!_0x269a48)throw new Error(_0x379b9e(0x1c2)+_0x360a68+'.');return _0x269a48['getRev']();}[_0x59a5e(0x232)](_0x25d94e){const _0x4d2b66=_0x59a5e,_0x528a41=this[_0x4d2b66(0x1e2)][_0x4d2b66(0x191)](_0x25d94e);if(!_0x528a41)throw new Error(_0x4d2b66(0xe4)+_0x25d94e+'.');return _0x528a41['incrementRev'](),_0x528a41[_0x4d2b66(0x198)]();}[_0x59a5e(0x243)](_0x25bc5c,_0x4cd098){const _0x706888=_0x59a5e,_0x5ddd72=this[_0x706888(0x1e2)][_0x706888(0x191)](_0x25bc5c);_0x5ddd72&&_0x5ddd72[_0x706888(0x113)](_0x4cd098);}};$t=gd([Id(0x0,_0x499fa1)],$t);var ne=(_0x5e7e80=>(_0x5e7e80[_0x5e7e80[_0x59a5e(0x123)]=0x0]=_0x59a5e(0x123),_0x5e7e80[_0x5e7e80['OK']=0x1]='OK',_0x5e7e80[_0x5e7e80['INTERNAL_ERROR']=0x2]=_0x59a5e(0x1bb),_0x5e7e80[_0x5e7e80[_0x59a5e(0x151)]=0x3]='PERMISSION_DENIED',_0x5e7e80[_0x5e7e80[_0x59a5e(0x19b)]=0x4]=_0x59a5e(0x19b),_0x5e7e80[_0x5e7e80[_0x59a5e(0x22f)]=0x5]=_0x59a5e(0x22f),_0x5e7e80[_0x5e7e80[_0x59a5e(0x117)]=0x6]='ALREADY_EXISTS',_0x5e7e80[_0x5e7e80['INVALID_ARGUMENT']=0x7]=_0x59a5e(0x177),_0x5e7e80[_0x5e7e80['TOO_MANY_REQUESTS']=0x8]='TOO_MANY_REQUESTS',_0x5e7e80[_0x5e7e80[_0x59a5e(0x1a9)]=0x9]=_0x59a5e(0x1a9),_0x5e7e80[_0x5e7e80[_0x59a5e(0x199)]=0x1389]=_0x59a5e(0x199),_0x5e7e80[_0x5e7e80[_0x59a5e(0x213)]=0x1771]=_0x59a5e(0x213),_0x5e7e80[_0x5e7e80[_0x59a5e(0x1a4)]=0x1772]=_0x59a5e(0x1a4),_0x5e7e80[_0x5e7e80[_0x59a5e(0x200)]=0x1773]=_0x59a5e(0x200),_0x5e7e80[_0x5e7e80[_0x59a5e(0xcf)]=0x1b59]=_0x59a5e(0xcf),_0x5e7e80[_0x5e7e80[_0x59a5e(0x21e)]=0x1b5a]='APPLY_NON_SEQUENTIAL_REVISION',_0x5e7e80[_0x5e7e80['APPLY_REVISION_CONFILICT']=0x1b5b]=_0x59a5e(0x185),_0x5e7e80[_0x5e7e80[_0x59a5e(0x220)]=0x1b5c]=_0x59a5e(0x220),_0x5e7e80[_0x5e7e80[_0x59a5e(0x122)]=0x1b5d]=_0x59a5e(0x122),_0x5e7e80[_0x5e7e80[_0x59a5e(0x1bf)]=0x1f41]=_0x59a5e(0x1bf),_0x5e7e80[_0x5e7e80[_0x59a5e(0x1b4)]=0x2329]=_0x59a5e(0x1b4),_0x5e7e80[_0x5e7e80[_0x59a5e(0xdb)]=0x232a]=_0x59a5e(0xdb),_0x5e7e80[_0x5e7e80['LICENSE_IMPORT_SIZE_EXCEEDED']=0x232b]=_0x59a5e(0x148),_0x5e7e80[_0x5e7e80['LICENSE_EXPORT_SIZE_EXCEEDED']=0x232c]=_0x59a5e(0xc1),_0x5e7e80[_0x5e7e80[_0x59a5e(0x1d5)]=0x232d]='LICENSE_DISTRO_REJECTED',_0x5e7e80[_0x5e7e80[_0x59a5e(0xc8)]=0x2711]=_0x59a5e(0xc8),_0x5e7e80[_0x5e7e80[_0x59a5e(0xc3)]=0x2712]=_0x59a5e(0xc3),_0x5e7e80[_0x5e7e80[_0x59a5e(0xfd)]=0x2713]='YUUMI_RATE_OVER_LIMIT',_0x5e7e80[_0x5e7e80[_0x59a5e(0xd1)]=0x2714]=_0x59a5e(0xd1),_0x5e7e80[_0x5e7e80[_0x59a5e(0x24a)]=-0x1]=_0x59a5e(0x24a),_0x5e7e80))(ne||{}),j=(_0x3f82df=>(_0x3f82df[_0x3f82df[_0x59a5e(0x196)]=0x0]='UNIVER_UNKNOWN',_0x3f82df[_0x3f82df['UNIVER_DOC']=0x1]='UNIVER_DOC',_0x3f82df[_0x3f82df['UNIVER_SHEET']=0x2]='UNIVER_SHEET',_0x3f82df[_0x3f82df[_0x59a5e(0x141)]=0x3]=_0x59a5e(0x141),_0x3f82df[_0x3f82df['UNIVER_PROJECT']=0x4]=_0x59a5e(0xb1),_0x3f82df[_0x3f82df[_0x59a5e(0x24a)]=-0x1]=_0x59a5e(0x24a),_0x3f82df))(j||{});function Yt(_0x580b4b){return!!(_0x580b4b&&_0x580b4b['code']&&_0x580b4b['code']!==ne['OK']&&_0x580b4b['code']!=='OK');}const J=[];for(let t=0x0;t<0x100;++t)J[_0x59a5e(0x112)]((t+0x100)[_0x59a5e(0x14e)](0x10)[_0x59a5e(0x139)](0x1));function wd(_0x2b12d1,_0x2b04b6=0x0){const _0x1a394c=_0x59a5e;return(J[_0x2b12d1[_0x2b04b6+0x0]]+J[_0x2b12d1[_0x2b04b6+0x1]]+J[_0x2b12d1[_0x2b04b6+0x2]]+J[_0x2b12d1[_0x2b04b6+0x3]]+'-'+J[_0x2b12d1[_0x2b04b6+0x4]]+J[_0x2b12d1[_0x2b04b6+0x5]]+'-'+J[_0x2b12d1[_0x2b04b6+0x6]]+J[_0x2b12d1[_0x2b04b6+0x7]]+'-'+J[_0x2b12d1[_0x2b04b6+0x8]]+J[_0x2b12d1[_0x2b04b6+0x9]]+'-'+J[_0x2b12d1[_0x2b04b6+0xa]]+J[_0x2b12d1[_0x2b04b6+0xb]]+J[_0x2b12d1[_0x2b04b6+0xc]]+J[_0x2b12d1[_0x2b04b6+0xd]]+J[_0x2b12d1[_0x2b04b6+0xe]]+J[_0x2b12d1[_0x2b04b6+0xf]])[_0x1a394c(0x150)]();}let ie;const Cd=new Uint8Array(0x10);function Pd(){const _0x312a1f=_0x59a5e;if(!ie){if(typeof crypto>'u'||!crypto['getRandomValues'])throw new Error(_0x312a1f(0xfe));ie=crypto[_0x312a1f(0x11b)]['bind'](crypto);}return ie(Cd);}const Ud=typeof crypto<'u'&&crypto[_0x59a5e(0x1cd)]&&crypto[_0x59a5e(0x1cd)][_0x59a5e(0xfa)](crypto),Fe={'randomUUID':Ud};function Be(_0x401402,_0x537e7e,_0x444b5d){const _0x3cf1a8=_0x59a5e;if(Fe[_0x3cf1a8(0x1cd)]&&!_0x537e7e&&!_0x401402)return Fe[_0x3cf1a8(0x1cd)]();_0x401402=_0x401402||{};const _0xbef427=_0x401402['random']||(_0x401402[_0x3cf1a8(0xe9)]||Pd)();return _0xbef427[0x6]=_0xbef427[0x6]&0xf|0x40,_0xbef427[0x8]=_0xbef427[0x8]&0x3f|0x80,wd(_0xbef427);}const bd={[_0x2552df[_0x59a5e(0xd9)]]:j[_0x59a5e(0xd9)],[_0x2552df[_0x59a5e(0x1f7)]]:j[_0x59a5e(0x1f7)],[_0x2552df[_0x59a5e(0x141)]]:j[_0x59a5e(0x141)],[_0x2552df['UNIVER_UNKNOWN']]:j[_0x59a5e(0x196)],[_0x2552df[_0x59a5e(0xb1)]]:j[_0x59a5e(0x196)],[_0x2552df[_0x59a5e(0x24a)]]:j[_0x59a5e(0x24a)]};function sm(_0x45a36b){const _0x7e0bad=_0x59a5e;var _0x239272;return(_0x239272=bd[_0x45a36b])!=null?_0x239272:j[_0x7e0bad(0x196)];}function om(_0x5f1ab1){const _0x671010=_0x59a5e;return btoa(encodeURIComponent(_0x5f1ab1)[_0x671010(0x1e4)](/%([0-9A-F]{2})/g,(_0x4e611b,_0x12e9bf)=>String['fromCharCode'](Number['parseInt'](_0x12e9bf,0x10))));}const Md=new TextDecoder();function lr(_0x5a9542){const _0xe625ac=_0x59a5e,_0x3d6db0=atob(_0x5a9542),_0x3935cf=_0x3d6db0[_0xe625ac(0x210)];let _0x4f4bba=new Uint8Array(_0x3935cf);for(let _0xc0e8c1=0x0;_0xc0e8c1<_0x3935cf;_0xc0e8c1++)_0x4f4bba[_0xc0e8c1]=_0x3d6db0[_0xe625ac(0x1a8)](_0xc0e8c1);const _0x35a381=Md[_0xe625ac(0x1d2)](_0x4f4bba);return _0x4f4bba=null,_0x35a381;}const ae=new TextEncoder(),ve=new TextDecoder();function cr(_0x590d75){const _0x37bceb=_0x59a5e,_0x2b89fd=_0x589265[_0x37bceb(0x1cb)](_0x590d75);return delete _0x2b89fd['id'],delete _0x2b89fd[_0x37bceb(0x16a)],delete _0x2b89fd[_0x37bceb(0x133)],delete _0x2b89fd[_0x37bceb(0x186)],delete _0x2b89fd[_0x37bceb(0x1aa)],ae[_0x37bceb(0x11a)](JSON[_0x37bceb(0x125)](_0x2b89fd));}function pr(_0x24ee29){const _0x49421d=_0x59a5e,_0x345f57=_0x589265[_0x49421d(0x1cb)](_0x24ee29);return delete _0x345f57['id'],delete _0x345f57[_0x49421d(0x158)],delete _0x345f57['name'],delete _0x345f57[_0x49421d(0x121)],delete _0x345f57[_0x49421d(0xe7)],ae[_0x49421d(0x11a)](JSON[_0x49421d(0x125)](_0x345f57));}function fr(_0x4d17fb){const _0xf39f74=_0x59a5e,_0x9c78e0=_0x589265[_0xf39f74(0x1cb)](_0x4d17fb);return delete _0x9c78e0['id'],delete _0x9c78e0[_0xf39f74(0x158)],delete _0x9c78e0['title'],delete _0x9c78e0[_0xf39f74(0xc7)],ae[_0xf39f74(0x11a)](JSON['stringify'](_0x9c78e0));}function Ge(_0xe5c7a){const _0x5dead=_0x59a5e;return JSON['parse'](typeof _0xe5c7a==_0x5dead(0x138)?lr(_0xe5c7a):ve['decode'](_0xe5c7a));}function vd(_0x4879d3){const _0x359e8c=_0x59a5e;return _0x4879d3 instanceof Uint8Array?JSON[_0x359e8c(0x230)](ve['decode'](_0x4879d3)):_0x4879d3;}function Ed(_0x2f9570){const _0x1a5ce6=_0x59a5e;return JSON[_0x1a5ce6(0x230)](typeof _0x2f9570==_0x1a5ce6(0x138)?lr(_0x2f9570):ve['decode'](_0x2f9570));}const de=0x100*0x14;function Rr(_0x4db87c,_0x16a760){const _0x5bf0ac=_0x59a5e,_0x4fc335=new _0x33d61f(_0x4db87c),_0x39a6b0=_0x4fc335[_0x5bf0ac(0x1f2)](),_0x2004de=[];let _0x2c73b0=0x0;for(;_0x2c73b0<_0x39a6b0;){const _0x15d95f=Math[_0x5bf0ac(0x19c)](_0x2c73b0+de,_0x39a6b0-0x1),_0x3be2c5=_0x4fc335['getSlice'](_0x2c73b0,Math[_0x5bf0ac(0x19c)](_0x2c73b0+de,_0x39a6b0-0x1),0x0,_0x16a760),_0x118a1e=Sd(_0x3be2c5);_0x2004de[_0x5bf0ac(0x112)]({'id':_0x589265['generateRandomId'](0x13,_0x5bf0ac(0x1e5)),'startRow':_0x2c73b0,'endRow':_0x15d95f,'data':_0x118a1e}),_0x2c73b0+=de;}return _0x2004de;}function Sd(_0x334898){const _0xbdecfd=_0x59a5e,_0x4eb913=_0x334898[_0xbdecfd(0x19a)]();return ae[_0xbdecfd(0x11a)](JSON['stringify'](_0x4eb913));}async function im(_0xc631a7,_0xcbef52,_0x34754c,_0x314bec){const _0x4e9130=_0x59a5e;var _0x208f2c;const _0x152f7c={'unitID':_0xcbef52['id'],'rev':_0x314bec,'creator':'','name':(_0x208f2c=_0xcbef52[_0x4e9130(0x12e)])!=null?_0x208f2c:'','resources':_0xcbef52[_0x4e9130(0xc7)]||[],'originalMeta':fr(_0xcbef52)};return{'snapshot':{'unitID':_0x34754c,'rev':_0x152f7c['rev'],'type':j[_0x4e9130(0xd9)],'workbook':void 0x0,'doc':_0x152f7c}};}async function dm(_0x417ce5,_0xb5e12,_0x6fb8ee,_0x326183,_0x7655de){const _0x372c60=_0x59a5e,_0x1d351f={},_0x364033={};if(!await Promise[_0x372c60(0x23e)](Object[_0x372c60(0x16c)](_0xb5e12[_0x372c60(0xe7)])[_0x372c60(0xea)](async([_0x49c847,_0x5cf7e1])=>{const _0x4432f7=_0x372c60,_0x2b2d34={'id':_0x5cf7e1['id'],'type':_0x192b35['GRID'],'name':_0x5cf7e1['name'],'rowCount':_0x5cf7e1['rowCount'],'columnCount':_0x5cf7e1['columnCount'],'originalMeta':cr(_0x5cf7e1)};if(_0x364033[_0x49c847]=_0x2b2d34,_0x5cf7e1[_0x4432f7(0x1aa)]){const _0x15408c=Rr(_0x5cf7e1[_0x4432f7(0x1aa)],_0x5cf7e1[_0x4432f7(0x186)]),_0x1c4119=await Promise[_0x4432f7(0x23e)](_0x15408c[_0x4432f7(0xea)](_0x5a894a=>_0x7655de[_0x4432f7(0x205)](_0x417ce5,{'unitID':_0x6fb8ee,'type':j['UNIVER_SHEET'],'block':_0x5a894a})));if(_0x1c4119[_0x4432f7(0x221)](_0x125327=>{const _0x3e76f=_0x4432f7;var _0xf23385;return((_0xf23385=_0x125327[_0x3e76f(0xb7)])==null?void 0x0:_0xf23385[_0x3e76f(0x16f)])!==ne['OK'];}))return!0x1;_0x1d351f[_0x49c847]={'sheetID':_0x49c847,'blocks':_0x1c4119['map'](_0x4c242b=>_0x4c242b['blockID'])};}return!0x0;})))throw new Error('[transformWorkbookDataToSnapshot()]:\x20Failed\x20to\x20save\x20sheet\x20blocks.');const _0x26fd58=pr(_0xb5e12),_0x28e4bb={'unitID':_0xb5e12['id'],'rev':_0x326183,'creator':'','name':_0xb5e12['name'],'sheetOrder':_0xb5e12[_0x372c60(0x121)],'sheets':_0x364033,'blockMeta':_0x1d351f,'resources':_0xb5e12[_0x372c60(0xc7)]||[],'originalMeta':_0x26fd58};return{'snapshot':{'unitID':_0x6fb8ee,'rev':_0x28e4bb[_0x372c60(0x158)],'type':j[_0x372c60(0x1f7)],'workbook':_0x28e4bb,'doc':void 0x0}};}async function mm(_0x575ca9,_0x326b5c,_0x53808c,_0x366e7f,_0x265c0c){const _0x3ea1cd=_0x59a5e;var _0x5b73d4,_0x5212f5;const _0x458d65={},_0x1debe2={};if(!await Promise[_0x3ea1cd(0x23e)](Object[_0x3ea1cd(0x16c)](_0x326b5c['sheets'])[_0x3ea1cd(0xea)](async([_0x5b1c1c,_0x318f91])=>{const _0x3c4a78=_0x3ea1cd,_0x25d43c={'id':_0x318f91['id'],'type':_0x192b35[_0x3c4a78(0x1b3)],'name':_0x318f91[_0x3c4a78(0x16a)],'rowCount':_0x318f91[_0x3c4a78(0x133)],'columnCount':_0x318f91[_0x3c4a78(0x186)],'originalMeta':cr(_0x318f91)};if(_0x1debe2[_0x5b1c1c]=_0x25d43c,_0x318f91['cellData']){const _0x3dadf6=Rr(_0x318f91['cellData'],_0x318f91[_0x3c4a78(0x186)]),_0x10439b=await Promise[_0x3c4a78(0x23e)](_0x3dadf6[_0x3c4a78(0xea)](_0x16f69b=>_0x265c0c[_0x3c4a78(0x205)](_0x575ca9,{'unitID':_0x53808c,'type':j['UNIVER_SHEET'],'block':_0x16f69b})));if(_0x10439b[_0x3c4a78(0x221)](_0x28885d=>{const _0x1b0e2b=_0x3c4a78;var _0x148a26;return((_0x148a26=_0x28885d[_0x1b0e2b(0xb7)])==null?void 0x0:_0x148a26[_0x1b0e2b(0x16f)])!==ne['OK'];}))return!0x1;_0x458d65[_0x5b1c1c]={'sheetID':_0x5b1c1c,'blocks':_0x10439b[_0x3c4a78(0xea)](_0x1bac1c=>_0x1bac1c['blockID'])};}return!0x0;})))throw new Error(_0x3ea1cd(0x192));const _0x4d2e8a=pr(_0x326b5c),_0x30d5fa={'unitID':_0x326b5c['id'],'rev':_0x366e7f,'creator':'','name':_0x326b5c[_0x3ea1cd(0x16a)],'sheetOrder':_0x326b5c['sheetOrder'],'sheets':_0x1debe2,'blockMeta':_0x458d65,'resources':_0x326b5c['resources']||[],'originalMeta':_0x4d2e8a},_0x12f240={'unitID':_0x53808c,'rev':_0x30d5fa['rev'],'type':j['UNIVER_SHEET'],'workbook':_0x30d5fa,'doc':void 0x0},_0x541bc4=await _0x265c0c['saveSnapshot'](_0x575ca9,{'unitID':_0x53808c,'type':j[_0x3ea1cd(0x1f7)],'snapshot':_0x12f240});if(Yt(_0x541bc4['error']))throw new Error('transformWorkbookDataToSnapshot():\x20Failed\x20to\x20save\x20snapshot.\x0aErrorCode:\x20'+((_0x5b73d4=_0x541bc4[_0x3ea1cd(0xb7)])==null?void 0x0:_0x5b73d4[_0x3ea1cd(0x16f)])+':'+((_0x5212f5=_0x541bc4[_0x3ea1cd(0xb7)])==null?void 0x0:_0x5212f5[_0x3ea1cd(0xb9)]));return{'snapshot':_0x12f240};}function Wd(_0x373595,_0x3b6ea3,_0x2174c9){const _0x310d76=_0x59a5e,_0x30f2dd=_0x373595[_0x310d76(0x16e)];if(!_0x30f2dd)throw new Error('');const _0x33a121={};Object['entries'](_0x30f2dd[_0x310d76(0xe7)])[_0x310d76(0x233)](([_0x1e60e6,_0x5392fa])=>{const _0x3a8a49=_0x310d76,_0x3ec9f5=Ge(_0x5392fa[_0x3a8a49(0xbd)]);_0x33a121[_0x1e60e6]={'id':_0x5392fa['id'],'name':_0x5392fa['name'],'rowCount':_0x5392fa[_0x3a8a49(0x133)],'columnCount':_0x5392fa[_0x3a8a49(0x186)],..._0x3ec9f5};});const _0x21249d=new Map();_0x3b6ea3[_0x310d76(0x233)](_0x50385f=>{const _0x18b0a7=_0x310d76;_0x21249d[_0x18b0a7(0x226)](_0x50385f['id'],_0x50385f);}),_0x30f2dd['blockMeta']&&Object[_0x310d76(0x16c)](_0x30f2dd[_0x310d76(0xb6)])['forEach'](([_0x33ab44,_0x1890cc])=>{const _0xc8a3e4=_0x310d76;var _0x683405;const _0x7ed422=_0x33a121[_0x33ab44];_0x7ed422['cellData']={};const _0x45a31a=[];(_0x683405=_0x1890cc[_0xc8a3e4(0x208)])==null||_0x683405['forEach'](_0x233d25=>{const _0x1587a2=_0xc8a3e4,_0x528d4e=_0x21249d[_0x1587a2(0x175)](_0x233d25);if(_0x528d4e)_0x45a31a[_0x1587a2(0x112)](_0x528d4e);else throw new Error('');}),_0x45a31a[_0xc8a3e4(0x233)](_0x2bff22=>{const _0x1b8f1d=_0xc8a3e4,_0x34cb51=vd(_0x2bff22['data']);Object[_0x1b8f1d(0x16c)](_0x34cb51)[_0x1b8f1d(0x233)](([_0x213278,_0x54d7aa])=>{const _0x5a5260=_0x1b8f1d,_0x49321d=_0x7ed422[_0x5a5260(0x1aa)][+_0x213278]={};Object['entries'](_0x54d7aa)[_0x5a5260(0x233)](([_0x5955d1,_0x3b6c6f])=>{_0x49321d[+_0x5955d1]=_0x3b6c6f;});});});});const _0x549d26=Ge(_0x30f2dd[_0x310d76(0xbd)]);return{'id':_0x373595[_0x310d76(0x1de)]||_0x30f2dd['unitID'],'rev':_0x373595[_0x310d76(0x158)]||_0x30f2dd[_0x310d76(0x158)],'name':_0x30f2dd['name'],'sheetOrder':_0x30f2dd['sheetOrder'],'appVersion':'','locale':_0x4c3dec[_0x310d76(0xee)],'sheets':_0x33a121,'styles':{},'resources':_0x30f2dd[_0x310d76(0xc7)]||[],..._0x549d26};}function Vd(_0x5867d0){const _0x30af8b=_0x59a5e,_0x336384=_0x5867d0['doc'];if(_0x336384==null)throw new Error(_0x30af8b(0x154));const {unitID:_0x1bbff8,rev:_0x48947e,name:_0x2ad279,originalMeta:_0x8e53a,resources:_0x5cb0e1=[]}=_0x336384,{body:_0x697986,documentStyle:_0xfd2b04={},settings:_0x315da0={},drawings:_0x5b91d9={},drawingsOrder:_0x2812be=[],tableSource:_0x153603={},headers:_0x17c182={},footers:_0x21e9b6={},lists:_0x21734f={}}=Ed(_0x8e53a);return{'id':_0x1bbff8,'rev':_0x48947e,'locale':_0x4c3dec['EN_US'],'title':_0x2ad279,'body':_0x697986,'documentStyle':_0xfd2b04,'settings':_0x315da0,'drawings':_0x5b91d9,'drawingsOrder':_0x2812be,'resources':_0x5cb0e1,'tableSource':_0x153603,'headers':_0x17c182,'footers':_0x21e9b6,'lists':_0x21734f};}async function um(_0xd3f000,_0x3de26e,_0x56415d,_0x5b0d42,_0x3311b9){const _0x2ee29f=_0x59a5e;var _0x1e79c5,_0x589d82,_0x2c82ad;const _0x47dbe0={'unitID':_0x3de26e['id'],'rev':_0x5b0d42,'creator':'','name':(_0x1e79c5=_0x3de26e['title'])!=null?_0x1e79c5:'','resources':_0x3de26e[_0x2ee29f(0xc7)]||[],'originalMeta':fr(_0x3de26e)},_0x508688={'unitID':_0x56415d,'rev':_0x47dbe0['rev'],'type':j[_0x2ee29f(0xd9)],'workbook':void 0x0,'doc':_0x47dbe0},_0x5b5c85=await _0x3311b9[_0x2ee29f(0x13f)](_0xd3f000,{'unitID':_0x56415d,'type':j[_0x2ee29f(0xd9)],'snapshot':_0x508688});if(Yt(_0x5b5c85['error']))throw new Error(_0x2ee29f(0xb4)+((_0x589d82=_0x5b5c85['error'])==null?void 0x0:_0x589d82[_0x2ee29f(0x16f)])+':'+((_0x2c82ad=_0x5b5c85['error'])==null?void 0x0:_0x2c82ad[_0x2ee29f(0xb9)]));return{'snapshot':_0x508688};}async function lm(_0x4f66c7,_0x699a03){const _0x265c7e=_0x59a5e,_0x2fcde5=_0x4f66c7['workbook'];if(!_0x2fcde5)throw new Error(_0x265c7e(0x187));const _0x5469ed=[],_0x14c799=[];return Object[_0x265c7e(0x16c)](_0x2fcde5['blockMeta'])[_0x265c7e(0x233)](([_0x4b012f,_0x42d542])=>{const _0x22e87c=_0x265c7e,_0x48e7b3=_0x42d542[_0x22e87c(0x208)]['map'](async _0x2f7c64=>{const _0x3f77b8=_0x22e87c,_0x23597d={'unitID':_0x2fcde5[_0x3f77b8(0x1de)],'type':j[_0x3f77b8(0x1f7)],'blockID':_0x2f7c64},{block:_0x398b7d}=await _0x699a03[_0x3f77b8(0xdd)]({},_0x23597d);if(_0x398b7d)_0x5469ed[_0x3f77b8(0x112)](_0x398b7d);else throw new Error(_0x3f77b8(0x1bd));});_0x14c799['push'](..._0x48e7b3);}),await Promise['all'](_0x14c799),_0x5469ed;}var _d=Object['defineProperty'],Od=Object[_0x59a5e(0x166)],yd=(_0xb8d4a2,_0x59a3a8,_0x514e40,_0x2de60f)=>{const _0x548510=_0x59a5e;for(var _0x16f21d=_0x2de60f>0x1?void 0x0:_0x2de60f?Od(_0x59a3a8,_0x514e40):_0x59a3a8,_0x88b114=_0xb8d4a2[_0x548510(0x210)]-0x1,_0x11cd41;_0x88b114>=0x0;_0x88b114--)(_0x11cd41=_0xb8d4a2[_0x88b114])&&(_0x16f21d=(_0x2de60f?_0x11cd41(_0x59a3a8,_0x514e40,_0x16f21d):_0x11cd41(_0x16f21d))||_0x16f21d);return _0x2de60f&&_0x16f21d&&_d(_0x59a3a8,_0x514e40,_0x16f21d),_0x16f21d;},mt=(_0x3cf44b,_0x3e3ea3)=>(_0x8ed8c,_0x47e43f)=>_0x3e3ea3(_0x8ed8c,_0x47e43f,_0x3cf44b);function _0x13d7(){const _0x4fa4fa=['rowsAutoHeightInfo','cellValue','transformSnapshotToDocumentData():\x20snapshot.doc\x20is\x20undefined.','add\x20worksheet\x20protection\x20is\x20conflict\x20with\x20insert\x20row','realDeleteValue','add\x20worksheet\x20protection\x20is\x20conflict\x20with\x20move\x20row','rev','unit_delete','set\x20range\x20protection\x20is\x20conflict\x20with\x20remove\x20row','move\x20col\x20is\x20conflict\x20with\x20remove\x20numfmt','primary','Algorithm\x20error,\x20the\x20changeset\x20does\x20not\x20exist!','insert\x20col\x20is\x20conflict\x20with\x20set\x20col\x20hidden','getSheetId','find','drawingId','symbol','insert\x20row\x20is\x20conflict\x20with\x20set\x20worksheet\x20row\x20height','mutations','add\x20range\x20protection\x20is\x20conflict\x20with\x20set\x20range\x20protection','getOwnPropertyDescriptor','pseudo_fetch_missing_result','add\x20worksheet\x20protection\x20is\x20conflict\x20with\x20delete\x20conditional\x20formatting\x20rule','COMPRESS_MUTATION_APPLY','name','move\x20col\x20is\x20conflict\x20with\x20set\x20numfmft','entries','from','workbook','code','_configService','add\x20range\x20protection\x20is\x20conflict\x20with\x20set\x20range\x20value','saveDoc','type','intercept','get','set\x20range\x20protection\x20is\x20conflict\x20with\x20update\x20comment','INVALID_ARGUMENT','submit_changeset','remove\x20row\x20is\x20conflict\x20with\x20remove\x20numfmt','_commandService','sequenceNodesBuilder','startOffset','left','formula2','add\x20worksheet\x20protection\x20is\x20conflict\x20with\x20move\x20col','ref','168anRXST','move\x20row\x20is\x20conflict\x20with\x20set\x20worksheet\x20row\x20auto\x20height','remove\x20col\x20is\x20conflict\x20with\x20move\x20col','removeRows','APPLY_REVISION_CONFILICT','columnCount','Workbook\x20metadata\x20is\x20not\x20available','RevertRevisionMutation\x20conflicts\x20with\x20other\x20mutations!','transformMutations','Two\x20set-worksheet-name\x20mutations\x20have\x20conflict.','move\x20range\x20is\x20conflict\x20with\x20reorder\x20range','subUnitId','save','_compressMutationService','value','comment_update','getUnit','[transformWorkbookDataToSnapshot()]:\x20Failed\x20to\x20save\x20sheet\x20blocks.','remove\x20row\x20is\x20conflict\x20with\x20set\x20numfmt','getDeserializedSheetBlock','add\x20range\x20protection\x20is\x20conflict\x20with\x20set\x20conditional\x20formatting\x20rule','UNIVER_UNKNOWN','ruleId','getRev','CHANGESET_REVISION_CONFILICT','getData','NOT_FOUND','min','[TransformService]\x20Transform\x20algorithm\x20for\x20','isMerged','moveColumns','add\x20worksheet\x20protection\x20is\x20conflict\x20with\x20add\x20worksheet\x20merge','comment','3327462lCxwZz','_initSetRangeValues','SNAPSHOT_HAS_BEEN_REMOVED','CHANGESET_SHOULD_RETRY','transform','getDataRange','charCodeAt','COMPLETION_FINISHED','cellData','19015KOyzVW','sheet','sourceRange','removeColumns','collaboration.config','NEW_CHANGESETS','move\x20col\x20is\x20conflict\x20with\x20set\x20col\x20hidden','objects','GRID','LICENSE_MAX_UNITS_EXCEEDED','columnData','add\x20worksheet\x20protection\x20is\x20conflict\x20with\x20insert\x20col','add\x20range\x20protection\x20is\x20conflict\x20with\x20add\x20range\x20protection','body','insert\x20row\x20is\x20conflict\x20with\x20set\x20row\x20visible','96wLqaJV','INTERNAL_ERROR','add\x20range\x20protection\x20is\x20conflict\x20with\x20update\x20data\x20validation\x20rule','Block\x20not\x20found','univer.snapshot-server-service','CONNECTOR_DATA_TOO_LARGE','flat','insert\x20row\x20is\x20conflict\x20with\x20remove\x20row','[RevisionService]:\x20cannot\x20find\x20document\x20with\x20unitId:\x20','set\x20range\x20protection\x20is\x20conflict\x20with\x20set\x20conditional\x20formatting\x20rule','CHANGESET_ACK','COMPRESS_MUTATION_SEND','remove\x20rows\x20is\x20conflict\x20with\x20set\x20range\x20values\x20mutation','commentId','[TransformService]:\x20changesets\x20revisions\x20miss\x20match.\x20The\x20\x27baseRev\x27\x20of\x20c2\x20is\x20','add\x20worksheet\x20protection\x20is\x20conflict\x20with\x20set\x20conditional\x20formatting\x20rule','add\x20worksheet\x20protection\x20is\x20conflict\x20with\x20remove\x20filter','deepClone','onStarting','randomUUID','handler','insert\x20row\x20is\x20conflict\x20with\x20set\x20worksheet\x20row\x20is\x20auto\x20height','error_msg','toOrder','decode','targetRange','add\x20worksheet\x20protection\x20is\x20conflict\x20with\x20add\x20worksheet\x20protection','LICENSE_DISTRO_REJECTED','transformMutationsWithChangeset','_transformMap','Remove-cols\x20has\x20conflicts\x20with\x20move-range','forValue','m1Prime','uid','transformChangesets','move\x20range\x20is\x20conflict\x20with\x20set\x20numfmt','unitID','findIndex','merge','number','_univerInstanceService','add\x20worksheet\x20protection\x20is\x20conflict\x20with\x20set\x20numfmt','replace','0123456789','UNIVER_COLLABORATION_PLUGIN','add\x20range\x20protection\x20is\x20conflict\x20with\x20add\x20conditional\x20rule','LIVESHARE_REQUEST_HOST','SUBMIT_CHANGESET','\x20and\x20','getResources','insert\x20col\x20is\x20conflict\x20with\x20set\x20col\x20visible','Two\x20mutation\x20have\x20the\x20same\x20worksheet\x20name!','add\x20worksheet\x20protection\x20is\x20conflict\x20with\x20set\x20worksheet\x20name','MUTATION','getSnapshot','add\x20range\x20protection\x20is\x20conflict\x20with\x20update\x20comment','getLength','remove\x20row\x20is\x20conflict\x20with\x20move\x20row','7682490sjxpIg','fetch_missing','add\x20range\x20protection\x20is\x20conflict\x20with\x20add\x20worksheet\x20protection','UNIVER_SHEET','styleRefMap','_rightInclineTransformMutations','Algorithm\x20error,\x20m1Prime\x20should\x20not\x20be\x20undefined.','shift','add\x20worksheet\x20protection\x20is\x20conflict\x20with\x20set\x20frozen','intersects','add\x20range\x20protection\x20is\x20conflict\x20with\x20insert\x20row','syncExecuteCommand','ENSURE_SNAPSHOT_EXECUTION','liveshare.operation','CHANGESET_REJ','move\x20col\x20is\x20conflict\x20with\x20move\x20col','row','saveSheetBlock','index','move\x20col\x20is\x20conflict\x20with\x20move\x20range','blocks','actions','move\x20row\x20is\x20conflict\x20with\x20remove\x20numfmt','MSG_FOR_ERROR','1483600TmSwsj','cfId','set\x20range\x20protection\x20is\x20conflict\x20with\x20add\x20worksheet\x20merge','set\x20range\x20protection\x20is\x20conflict\x20with\x20remove\x20worksheet\x20merge','length','add\x20range\x20protection\x20is\x20conflict\x20with\x20add\x20worksheet\x20merge','SETTING','SNAPSHOT_INVALID_SNAPSHOT','_injector','UPDATE_PERMISSION_OBJ','rules','set\x20range\x20protection\x20is\x20conflict\x20with\x20add\x20comment','payload','_transformService','transformPosition','set\x20range\x20protection\x20is\x20conflict\x20with\x20add\x20conditional\x20rule','foreach','move\x20row\x20is\x20conflict\x20with\x20set\x20row\x20visible','APPLY_NON_SEQUENTIAL_REVISION','edit\x20range\x20of\x20same\x20data-validation\x20rule\x20is\x20not\x20allowed','APPLY_PERMISSION_DENIED','some','Two\x20SetWorksheetOrderMutation\x20have\x20conflicts!','univer.mutation.create-unit','set\x20range\x20protection\x20is\x20conflict\x20with\x20remove\x20col','SHOULD_CLOSE_CONN','set','any','registerTransformAlgorithm','11669oBOglN','revision','col','set\x20range\x20protection\x20is\x20conflict\x20with\x20update\x20data\x20validation\x20rule','endOffset','values','UNAUTHENTICATED','parse','registerCommand','incrementRevOfUnit','forEach','_init','add\x20worksheet\x20protection\x20is\x20conflict\x20with\x20remove\x20sheet','add\x20range\x20protection\x20is\x20conflict\x20with\x20set\x20worksheet\x20col\x20width','set\x20range\x20protection\x20is\x20conflict\x20with\x20move\x20col','ranges','_resourceManagerService','size','UPDATE_CURSOR','set\x20range\x20protection\x20is\x20conflict\x20with\x20add\x20worksheet\x20protection','add\x20range\x20protection\x20is\x20conflict\x20with\x20delete\x20conditional\x20formatting\x20rule','all','drawingIds','permission_rej','parentId','COLUMN','setRevOfUnit','RANGE','add\x20range\x20protection\x20is\x20conflict\x20with\x20insert\x20col','getCurrentRevOfUnit','reduce','USERS_ENTER','IHistoryIoService','UNRECOGNIZED','block','add\x20range\x20protection\x20is\x20conflict\x20with\x20move\x20col','after','set\x20range\x20protection\x20is\x20conflict\x20with\x20insert\x20col','UNIVER_PROJECT','set\x20range\x20protection\x20is\x20conflict\x20with\x20set\x20range\x20protection','add\x20worksheet\x20protection\x20is\x20conflict\x20with\x20update\x20data\x20validation\x20rule','transformDocumentDataToSnapshot():\x20Failed\x20to\x20save\x20snapshot.\x0aErrorCode:\x20','interceptor','blockMeta','error','add\x20range\x20protection\x20is\x20conflict\x20with\x20set\x20numfmt','message','Two\x20mutation\x20need\x20have\x20the\x20same\x20unitId!','getValue','rule','originalMeta','set\x20range\x20protection\x20is\x20conflict\x20with\x20remove\x20filter','hasOwnProperty','loadSheet','LICENSE_EXPORT_SIZE_EXCEEDED','splice','YUUMI_URL_COL_OUT_OF_RANGE','new_changesets','25020tLzmWf','[SnapshotService]:\x20request\x20snapshot\x20error!','resources','YUUMI_UNABLE_LOAD_URL','75tWljVq','should_close_conn','rowData','step','startRow','changeset_ack','APPLY_REJECT','set\x20range\x20protection\x20is\x20conflict\x20with\x20set\x20worksheet\x20col\x20width','YUUMI_SUBSCRIPTION_NOT_FOUND','Two\x20set-tab-color\x20mutations\x20have\x20the\x20same\x20unitId\x20and\x20subUnitId.','sort','link','doc','univer.mutation.revert-version','loadDoc','insert\x20col\x20is\x20conflict\x20with\x20set\x20worksheet\x20col\x20width','UNIVER_DOC','liveshare.request_host','LICENSE_MAX_MEMBERS_PER_UNIT_EXCEEDED','[SnapshotService]:\x20wrong\x20rev\x20from\x20the\x20server!','getSheetBlock','dispose','move\x20row\x20is\x20conflict\x20with\x20set\x20worksheet\x20row\x20is\x20auto\x20height','clear','users_leave','_leftInclineTransformMutations','add','[RevisionService]:\x20cannot\x20find\x20document\x20with\x20unitID:\x20','Trying\x20to\x20mutate\x20a\x20deleted\x20worksheet!','getUnitId','sheets','object','rng','map','insert\x20col\x20is\x20conflict\x20with\x20move\x20col','set\x20range\x20protection\x20is\x20conflict\x20with\x20set\x20frozen','insert\x20row\x20is\x20conflict\x20with\x20set\x20worksheet\x20row\x20auto\x20height','EN_US','setValue','endRow','remove\x20col\x20is\x20conflict\x20with\x20remove\x20numfmt','isArray','liveshare.terminate','then','getInterceptPoints','add\x20range\x20protection\x20is\x20conflict\x20with\x20remove\x20worksheet\x20merge','add\x20range\x20protection\x20is\x20conflict\x20with\x20remove\x20data\x20validation\x20rule','update_permission_obj','transformMutation','bind','color','data','YUUMI_RATE_OVER_LIMIT','crypto.getRandomValues()\x20not\x20supported.\x20See\x20https://github.com/uuidjs/uuid#getrandomvalues-not-supported','concat','actualColumn','set\x20range\x20protection\x20is\x20conflict\x20with\x20insert\x20row','remove\x20rows\x20is\x20conflict\x20with\x20set\x20range\x20values\x20mutation,\x20trying\x20to\x20write\x20a\x20formula\x20reference\x20to\x20a\x20removed\x20row','end','endColumn','criteria','insert\x20row\x20is\x20conflict\x20with\x20remove\x20numfmt','move\x20row\x20is\x20conflict\x20with\x20move\x20range','Two\x20mutation\x20have\x20the\x20same\x20worksheetId!','colId','LIVESHARE_FETCH_OPERATIONS','keys','fromOrder','Move\x20conditional\x20formatting\x20rule\x20\x20is\x20conflict\x20with\x20self','baseRev','unitId','258065dmsXVg','m2Prime','push','setRev','range','remove\x20col\x20is\x20conflict\x20with\x20set\x20numfmt','set\x20range\x20protection\x20is\x20conflict\x20with\x20move\x20row','ALREADY_EXISTS','add\x20worksheet\x20protection\x20is\x20conflict\x20with\x20remove\x20worksheet\x20merge','subtract','encode','getRandomValues','add\x20range\x20protection\x20is\x20conflict\x20with\x20remove\x20filter','startColumn','insert\x20row\x20is\x20conflict\x20with\x20set\x20row\x20hidden','add\x20worksheet\x20protection\x20is\x20conflict\x20with\x20move\x20range','update_cursor','sheetOrder','APPLY_DUPLICATED','UNDEFINED','add\x20worksheet\x20protection\x20is\x20conflict\x20with\x20remove\x20row','stringify','params','univer-pro.collaboration.transform-service','right','includes','_config','moveRows','createUnit','filter','title','move\x20col\x20is\x20conflict\x20with\x20set\x20worksheet\x20col\x20width','has','getMatrix','pluginName','rowCount','_revisionService','order','add\x20range\x20protection\x20is\x20conflict\x20with\x20set\x20frozen','remove\x20cols\x20is\x20conflict\x20with\x20set\x20range\x20values\x20mutation,\x20trying\x20to\x20write\x20a\x20formula\x20reference\x20to\x20a\x20removed\x20column','string','slice','start','textRanges','add\x20range\x20protection\x20is\x20conflict\x20with\x20move\x20range','Two\x20set-frozen\x20mutations\x20have\x20the\x20same\x20unitId\x20and\x20subUnitId.','add\x20worksheet\x20protection\x20is\x20conflict\x20with\x20set\x20worksheet\x20order','saveSnapshot','defineProperty','UNIVER_SLIDE','column','add\x20worksheet\x20protection\x20is\x20conflict\x20with\x20remove\x20data\x20validation\x20rule','add\x20worksheet\x20protection\x20is\x20conflict\x20with\x20set\x20range\x20protection','getUnitOnRev','REFERENCE','indexOf','LICENSE_IMPORT_SIZE_EXCEEDED','unshift','selections','max','actualRow','_snapshotServerService','toString','add\x20worksheet\x20protection\x20is\x20conflict\x20with\x20remove\x20col','toLowerCase','PERMISSION_DENIED'];_0x13d7=function(){return _0x4fa4fa;};return _0x13d7();}const Nd=_0x23b0f4(_0x59a5e(0x1be));let pe=class{constructor(_0x44df91,_0xfcf22,_0x52e125,_0x455399,_0x5c29af,_0x58c7b2,_0x5cd973){const _0x48d642=_0x59a5e;this['_revisionService']=_0x44df91,this['_univerInstanceService']=_0xfcf22,this['_snapshotServerService']=_0x52e125,this['_commandService']=_0x455399,this[_0x48d642(0x214)]=_0x5c29af,this['_compressMutationService']=_0x58c7b2,this['_resourceManagerService']=_0x5cd973;}async[_0x59a5e(0xc0)](_0xef40f,_0x4e776a,_0x28d18c){const _0x5f1f13=_0x59a5e;var _0x4a231b;_0x28d18c===void 0x0&&(_0x28d18c={'metadata':{'x-feature-id':Be()}});const {snapshot:_0x93ea2b,changesets:_0x17c400,error:_0x655ba0}=await this[_0x5f1f13(0x14d)][_0x5f1f13(0x145)](_0x28d18c,{'unitID':_0xef40f,'type':j[_0x5f1f13(0x1f7)],'revision':_0x4e776a});if(Yt(_0x655ba0)||!_0x93ea2b||!_0x93ea2b[_0x5f1f13(0x16e)])throw new Error('[SnapshotService]:\x20request\x20snapshot\x20error!');const _0x7040f=(_0x4a231b=_0x17c400==null?void 0x0:_0x17c400['length'])!=null?_0x4a231b:0x0;if(_0x4e776a!==0x0&&_0x93ea2b[_0x5f1f13(0x158)]+_0x7040f!==_0x4e776a)throw new Error(_0x5f1f13(0xdc));const {workbook:_0x5990cf}=_0x93ea2b,_0x4c9bdf=_0x5990cf[_0x5f1f13(0xb6)]?Object['entries'](_0x5990cf[_0x5f1f13(0xb6)])['map'](([_0x1afcad,_0xd240e8])=>{const _0x12b526=_0x5f1f13;var _0x5f3859,_0x2a2789;return(_0x2a2789=(_0x5f3859=_0xd240e8['blocks'])==null?void 0x0:_0x5f3859[_0x12b526(0xea)](_0x331813=>_0x331813))!=null?_0x2a2789:[];})[_0x5f1f13(0x1c0)]():[],_0x45fb4a=(await Promise[_0x5f1f13(0x23e)](_0x4c9bdf[_0x5f1f13(0xea)](_0x7a4bbb=>this['_snapshotServerService'][_0x5f1f13(0x194)](_0x28d18c,{'unitID':_0xef40f,'type':j[_0x5f1f13(0x1f7)],'blockID':_0x7a4bbb})[_0x5f1f13(0xf4)](_0x164270=>_0x164270[_0x5f1f13(0x24b)]))))[_0x5f1f13(0x12d)](_0x24f7c9=>!!_0x24f7c9),_0x5288e6=Wd(_0x93ea2b,_0x45fb4a),_0x164461=this[_0x5f1f13(0x1e2)][_0x5f1f13(0x12c)](_0x2552df['UNIVER_SHEET'],_0x5288e6),_0x28132b=this[_0x5f1f13(0x18e)]['interceptor']['fetchThroughInterceptors'](this[_0x5f1f13(0x18e)][_0x5f1f13(0xb5)][_0x5f1f13(0xf5)]()[_0x5f1f13(0x169)]);return _0x17c400==null||_0x17c400[_0x5f1f13(0x233)](_0x20cdad=>{const _0x303df1=_0x5f1f13,_0x429e74=_0x20cdad[_0x303df1(0x164)][_0x303df1(0xea)](_0x17c63e=>({'id':_0x17c63e['id'],'params':JSON[_0x303df1(0x230)](_0x17c63e[_0x303df1(0xfc)])}));({..._0x20cdad,'mutations':_0x28132b(_0x429e74,null)||_0x429e74}[_0x303df1(0x164)][_0x303df1(0x233)](_0xea6113=>this['_commandService'][_0x303df1(0x1ff)](_0xea6113['id'],_0xea6113[_0x303df1(0x126)],{'fromChangeset':!0x0})),this['_revisionService']['incrementRevOfUnit'](_0xef40f));}),_0x164461;}async[_0x59a5e(0xd7)](_0x402510,_0x564f48,_0x1684fa){const _0x186ce8=_0x59a5e;var _0x45d54e;_0x1684fa===void 0x0&&(_0x1684fa={'metadata':{'x-feature-id':Be()}});const {snapshot:_0x220705,changesets:_0x477601,error:_0x3ee409}=await this[_0x186ce8(0x14d)][_0x186ce8(0x145)](_0x1684fa,{'unitID':_0x402510,'type':j['UNIVER_DOC'],'revision':_0x564f48});if(Yt(_0x3ee409)||!_0x220705||!_0x220705[_0x186ce8(0xd5)])throw new Error(_0x186ce8(0xc6));const _0x241f5a=(_0x45d54e=_0x477601==null?void 0x0:_0x477601[_0x186ce8(0x210)])!=null?_0x45d54e:0x0;if(_0x564f48!==0x0&&_0x220705[_0x186ce8(0x158)]+_0x241f5a!==_0x564f48)throw new Error(_0x186ce8(0xdc));const _0x1ac3d9=Vd(_0x220705),_0x56ca9a=this['_univerInstanceService'][_0x186ce8(0x12c)](_0x2552df['UNIVER_DOC'],_0x1ac3d9);return _0x477601==null||_0x477601[_0x186ce8(0x233)](_0x443d1f=>{const _0x257d84=_0x186ce8;_0x443d1f[_0x257d84(0x164)][_0x257d84(0xea)](_0x8a6685=>({'id':_0x8a6685['id'],'params':JSON[_0x257d84(0x230)](_0x8a6685[_0x257d84(0xfc)])}))['forEach'](_0x52d8a6=>this[_0x257d84(0x17a)][_0x257d84(0x1ff)](_0x52d8a6['id'],_0x52d8a6[_0x257d84(0x126)],{'fromChangeset':!0x0})),this[_0x257d84(0x134)][_0x257d84(0x232)](_0x402510);}),_0x56ca9a;}[_0x59a5e(0x18d)](_0xda96c2,_0x3b3ff3){const _0x4230d8=_0x59a5e,_0x2a7e24={..._0x3b3ff3['getSnapshot']()};_0x3b3ff3['getSheets']()[_0x4230d8(0x233)](_0x1a79ac=>{const _0x46ef59=_0x4230d8;_0x2a7e24[_0x46ef59(0xe7)][_0x1a79ac[_0x46ef59(0x15f)]()]=_0x589265[_0x46ef59(0x1cb)](_0x1a79ac['getSnapshot']());});const _0x1b573e=this[_0x4230d8(0x239)][_0x4230d8(0x1eb)](_0x3b3ff3[_0x4230d8(0xe6)](),_0x2552df[_0x4230d8(0x1f7)]);return _0x2a7e24[_0x4230d8(0xc7)]=_0x1b573e,_0x2a7e24;}[_0x59a5e(0x172)](_0x513c63,_0x5dacb1){const _0x2bcdd5=_0x59a5e,_0xa1b602={..._0x5dacb1[_0x2bcdd5(0x1f0)]()},_0xb81625=this[_0x2bcdd5(0x239)][_0x2bcdd5(0x1eb)](_0x5dacb1[_0x2bcdd5(0xe6)](),_0x2552df[_0x2bcdd5(0xd9)]);return _0xa1b602[_0x2bcdd5(0xc7)]=_0xb81625,_0xa1b602;}};pe=yd([mt(0x0,_0x4676bb($t)),mt(0x1,_0x499fa1),mt(0x2,Nd),mt(0x3,_0x457040),mt(0x4,_0x4676bb(_0x5d03cf)),mt(0x5,_0x4676bb(ur)),mt(0x6,_0x4676bb(_0x1c073d))],pe);var hr=Object[_0x59a5e(0x140)],Dd=Object[_0x59a5e(0x166)],Ad=(_0x7504a3,_0x81b45f,_0x471e35)=>_0x81b45f in _0x7504a3?hr(_0x7504a3,_0x81b45f,{'enumerable':!0x0,'configurable':!0x0,'writable':!0x0,'value':_0x471e35}):_0x7504a3[_0x81b45f]=_0x471e35,Td=(_0x4d3cdf,_0x31a99d,_0x899d51,_0x1bfa9f)=>{for(var _0x128ce6=_0x1bfa9f>0x1?void 0x0:_0x1bfa9f?Dd(_0x31a99d,_0x899d51):_0x31a99d,_0x33c112=_0x4d3cdf['length']-0x1,_0x1dc640;_0x33c112>=0x0;_0x33c112--)(_0x1dc640=_0x4d3cdf[_0x33c112])&&(_0x128ce6=(_0x1bfa9f?_0x1dc640(_0x31a99d,_0x899d51,_0x128ce6):_0x1dc640(_0x128ce6))||_0x128ce6);return _0x1bfa9f&&_0x128ce6&&hr(_0x31a99d,_0x899d51,_0x128ce6),_0x128ce6;},je=(_0x478f48,_0x1a3020)=>(_0x1f364a,_0x52c881)=>_0x1a3020(_0x1f364a,_0x52c881,_0x478f48),Ld=(_0x36e139,_0x292555,_0x472004)=>Ad(_0x36e139,_0x292555+'',_0x472004);const kd=_0x59a5e(0x1e6);let fe=class extends _0x57b4dd{constructor(_0x20aa08=od,_0xb28fc2,_0x72627e){const _0x2e2af1=_0x59a5e;super(),this[_0x2e2af1(0x12a)]=_0x20aa08,this[_0x2e2af1(0x214)]=_0xb28fc2,this['_configService']=_0x72627e;const {..._0x2da03a}=this[_0x2e2af1(0x12a)];this[_0x2e2af1(0x170)]['setConfig'](sd,_0x2da03a);}[_0x59a5e(0x1cc)](){const _0x4aabaa=_0x59a5e;[[$t],[jt],[Bt],[Gt],[pe],[Pe,{'useClass':Tr}],[ur]][_0x4aabaa(0x233)](_0x1d969c=>this['_injector'][_0x4aabaa(0xe3)](_0x1d969c)),this[_0x4aabaa(0x214)][_0x4aabaa(0x175)](Gt),this[_0x4aabaa(0x214)]['get'](jt),this[_0x4aabaa(0x214)][_0x4aabaa(0x175)](Bt);}};Ld(fe,_0x59a5e(0x132),kd),fe=Td([_0x5165cb(_0x2b7e48),je(0x1,_0x4676bb(_0x5d03cf)),je(0x2,_0x523a5a)],fe);const cm=_0x23b0f4(_0x59a5e(0x249)),pm={'id':_0x59a5e(0x223),'type':_0x3f7989[_0x59a5e(0x1ef)],'handler':()=>!0x0};export{ad as CollaborationEvent,ur as CompressMutationService,pm as CreateUnitMutation,Gt as DocTransformController,cm as IHistoryIoService,Nd as ISnapshotServerService,Pe as ITransformService,re as RevertRevisionMutation,$t as RevisionService,am as SINGLE_HISTORY_MUTATIONS,nm as SINGLE_SNAPSHOT_MUTATIONS,Bt as SheetTransformController,pe as SnapshotService,Tr as TransformService,fe as UniverCollaborationPlugin,lr as b64DecodeUnicode,om as b64EncodeUnicode,im as generateTempDocumentSnapshot,dm as generateTemporarySnap,lm as getSheetBlocksFromSnapshot,Dr as isTransformChangesetsFailure,Zd as isTransformChangesetsSuccess,le as isTransformMutationFailure,at as isTransformMutationSuccess,ce as isTransformMutationsFailure,qd as isTransformMutationsSuccess,Ar as isTransformMutationsWithChangesetFailure,Qd as isTransformMutationsWithChangesetSuccess,Lt as makeArray,sm as mapDocumentTypeToUniverType,rm as parseChangesetToProtocol,nd as parseMutationToProtocol,tm as parseProtocolChangeset,em as parseProtocolCommand,rd as parseProtocolMutation,ve as textDecoder,ae as textEncoder,um as transformDocumentDataToSnapshot,Vd as transformSnapshotToDocumentData,Wd as transformSnapshotToWorkbookData,mm as transformWorkbookDataToSnapshot};