@mlightcad/cad-simple-viewer 1.4.11 → 1.4.13

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 (321) hide show
  1. package/dist/index.js +20139 -12511
  2. package/dist/index.umd.cjs +102 -94
  3. package/dist/libredwg-parser-worker.js +6958 -12596
  4. package/lib/app/AcApAnnotation.d.ts.map +1 -1
  5. package/lib/app/AcApAnnotation.js +3 -3
  6. package/lib/app/AcApAnnotation.js.map +1 -1
  7. package/lib/app/AcApDocManager.d.ts +61 -4
  8. package/lib/app/AcApDocManager.d.ts.map +1 -1
  9. package/lib/app/AcApDocManager.js +162 -29
  10. package/lib/app/AcApDocManager.js.map +1 -1
  11. package/lib/app/AcApDocument.d.ts +6 -0
  12. package/lib/app/AcApDocument.d.ts.map +1 -1
  13. package/lib/app/AcApDocument.js +12 -0
  14. package/lib/app/AcApDocument.js.map +1 -1
  15. package/lib/app/AcApProgress.d.ts.map +1 -1
  16. package/lib/app/AcApProgress.js +3 -3
  17. package/lib/app/AcApProgress.js.map +1 -1
  18. package/lib/app/AcApSettingManager.d.ts.map +1 -1
  19. package/lib/app/AcApSettingManager.js +3 -1
  20. package/lib/app/AcApSettingManager.js.map +1 -1
  21. package/lib/app/AcDbOpenDatabaseOptions.d.ts.map +1 -1
  22. package/lib/command/AcApArcCmd.d.ts +140 -0
  23. package/lib/command/AcApArcCmd.d.ts.map +1 -0
  24. package/lib/command/AcApArcCmd.js +1009 -0
  25. package/lib/command/AcApArcCmd.js.map +1 -0
  26. package/lib/command/AcApCircleCmd.d.ts +59 -0
  27. package/lib/command/AcApCircleCmd.d.ts.map +1 -1
  28. package/lib/command/AcApCircleCmd.js +490 -13
  29. package/lib/command/AcApCircleCmd.js.map +1 -1
  30. package/lib/command/AcApClearMeasurementsCmd.d.ts +1 -1
  31. package/lib/command/AcApClearMeasurementsCmd.d.ts.map +1 -1
  32. package/lib/command/AcApClearMeasurementsCmd.js +2 -4
  33. package/lib/command/AcApClearMeasurementsCmd.js.map +1 -1
  34. package/lib/command/AcApConvertToDxfCmd.d.ts +9 -0
  35. package/lib/command/AcApConvertToDxfCmd.d.ts.map +1 -0
  36. package/lib/command/{AcApZoomToBoxCmd.js → AcApConvertToDxfCmd.js} +14 -40
  37. package/lib/command/AcApConvertToDxfCmd.js.map +1 -0
  38. package/lib/command/AcApConvertToPngCmd.d.ts +35 -0
  39. package/lib/command/AcApConvertToPngCmd.d.ts.map +1 -0
  40. package/lib/command/AcApConvertToPngCmd.js +127 -0
  41. package/lib/command/AcApConvertToPngCmd.js.map +1 -0
  42. package/lib/command/AcApDimLinearCmd.d.ts.map +1 -1
  43. package/lib/command/AcApDimLinearCmd.js +14 -5
  44. package/lib/command/AcApDimLinearCmd.js.map +1 -1
  45. package/lib/command/AcApDxfConvertor.d.ts +12 -0
  46. package/lib/command/AcApDxfConvertor.d.ts.map +1 -0
  47. package/lib/command/AcApDxfConvertor.js +37 -0
  48. package/lib/command/AcApDxfConvertor.js.map +1 -0
  49. package/lib/command/AcApEllipseCmd.d.ts +87 -0
  50. package/lib/command/AcApEllipseCmd.d.ts.map +1 -0
  51. package/lib/command/AcApEllipseCmd.js +583 -0
  52. package/lib/command/AcApEllipseCmd.js.map +1 -0
  53. package/lib/command/AcApEraseCmd.d.ts.map +1 -1
  54. package/lib/command/AcApEraseCmd.js +10 -6
  55. package/lib/command/AcApEraseCmd.js.map +1 -1
  56. package/lib/command/AcApHatchCmd.d.ts +210 -0
  57. package/lib/command/AcApHatchCmd.d.ts.map +1 -0
  58. package/lib/command/AcApHatchCmd.js +808 -0
  59. package/lib/command/AcApHatchCmd.js.map +1 -0
  60. package/lib/command/AcApLayerCmd.d.ts +217 -0
  61. package/lib/command/AcApLayerCmd.d.ts.map +1 -0
  62. package/lib/command/AcApLayerCmd.js +768 -0
  63. package/lib/command/AcApLayerCmd.js.map +1 -0
  64. package/lib/command/AcApLineCmd.d.ts +36 -1
  65. package/lib/command/AcApLineCmd.d.ts.map +1 -1
  66. package/lib/command/AcApLineCmd.js +159 -16
  67. package/lib/command/AcApLineCmd.js.map +1 -1
  68. package/lib/command/AcApMTextCmd.d.ts.map +1 -1
  69. package/lib/command/AcApMTextCmd.js +6 -3
  70. package/lib/command/AcApMTextCmd.js.map +1 -1
  71. package/lib/command/AcApMeasureAngleCmd.d.ts.map +1 -1
  72. package/lib/command/AcApMeasureAngleCmd.js +134 -123
  73. package/lib/command/AcApMeasureAngleCmd.js.map +1 -1
  74. package/lib/command/AcApMeasureArcCmd.d.ts.map +1 -1
  75. package/lib/command/AcApMeasureArcCmd.js +165 -147
  76. package/lib/command/AcApMeasureArcCmd.js.map +1 -1
  77. package/lib/command/AcApMeasureAreaCmd.d.ts.map +1 -1
  78. package/lib/command/AcApMeasureAreaCmd.js +186 -175
  79. package/lib/command/AcApMeasureAreaCmd.js.map +1 -1
  80. package/lib/command/AcApMeasureDistanceCmd.d.ts.map +1 -1
  81. package/lib/command/AcApMeasureDistanceCmd.js +51 -39
  82. package/lib/command/AcApMeasureDistanceCmd.js.map +1 -1
  83. package/lib/command/AcApMoveCmd.d.ts +16 -0
  84. package/lib/command/AcApMoveCmd.d.ts.map +1 -0
  85. package/lib/command/AcApMoveCmd.js +278 -0
  86. package/lib/command/AcApMoveCmd.js.map +1 -0
  87. package/lib/command/AcApPngConvertor.d.ts +95 -0
  88. package/lib/command/AcApPngConvertor.d.ts.map +1 -0
  89. package/lib/command/AcApPngConvertor.js +205 -0
  90. package/lib/command/AcApPngConvertor.js.map +1 -0
  91. package/lib/command/AcApPolygonCmd.d.ts +69 -0
  92. package/lib/command/AcApPolygonCmd.d.ts.map +1 -0
  93. package/lib/command/AcApPolygonCmd.js +422 -0
  94. package/lib/command/AcApPolygonCmd.js.map +1 -0
  95. package/lib/command/AcApPolylineCmd.d.ts +71 -0
  96. package/lib/command/AcApPolylineCmd.d.ts.map +1 -0
  97. package/lib/command/AcApPolylineCmd.js +569 -0
  98. package/lib/command/AcApPolylineCmd.js.map +1 -0
  99. package/lib/command/AcApRectCmd.d.ts +149 -4
  100. package/lib/command/AcApRectCmd.d.ts.map +1 -1
  101. package/lib/command/AcApRectCmd.js +717 -29
  102. package/lib/command/AcApRectCmd.js.map +1 -1
  103. package/lib/command/AcApRevCircleCmd.d.ts +8 -0
  104. package/lib/command/AcApRevCircleCmd.d.ts.map +1 -1
  105. package/lib/command/AcApRevCircleCmd.js +30 -6
  106. package/lib/command/AcApRevCircleCmd.js.map +1 -1
  107. package/lib/command/AcApRevCloudCmd.d.ts.map +1 -1
  108. package/lib/command/AcApRevCloudCmd.js +10 -4
  109. package/lib/command/AcApRevCloudCmd.js.map +1 -1
  110. package/lib/command/AcApRevRectCmd.d.ts +8 -0
  111. package/lib/command/AcApRevRectCmd.d.ts.map +1 -1
  112. package/lib/command/AcApRevRectCmd.js +78 -6
  113. package/lib/command/AcApRevRectCmd.js.map +1 -1
  114. package/lib/command/AcApSketchCmd.d.ts.map +1 -1
  115. package/lib/command/AcApSketchCmd.js +11 -7
  116. package/lib/command/AcApSketchCmd.js.map +1 -1
  117. package/lib/command/AcApSplineCmd.d.ts +85 -0
  118. package/lib/command/AcApSplineCmd.d.ts.map +1 -0
  119. package/lib/command/AcApSplineCmd.js +620 -0
  120. package/lib/command/AcApSplineCmd.js.map +1 -0
  121. package/lib/command/AcApSysVarCmd.d.ts.map +1 -1
  122. package/lib/command/AcApSysVarCmd.js +6 -3
  123. package/lib/command/AcApSysVarCmd.js.map +1 -1
  124. package/lib/command/AcApZoomCmd.d.ts +91 -20
  125. package/lib/command/AcApZoomCmd.d.ts.map +1 -1
  126. package/lib/command/AcApZoomCmd.js +288 -23
  127. package/lib/command/AcApZoomCmd.js.map +1 -1
  128. package/lib/command/index.d.ts +12 -1
  129. package/lib/command/index.d.ts.map +1 -1
  130. package/lib/command/index.js +12 -1
  131. package/lib/command/index.js.map +1 -1
  132. package/lib/editor/command/AcEdCommandIterator.d.ts.map +1 -1
  133. package/lib/editor/command/AcEdCommandIterator.js.map +1 -1
  134. package/lib/editor/command/AcEdCommandStack.d.ts +54 -1
  135. package/lib/editor/command/AcEdCommandStack.d.ts.map +1 -1
  136. package/lib/editor/command/AcEdCommandStack.js +207 -25
  137. package/lib/editor/command/AcEdCommandStack.js.map +1 -1
  138. package/lib/editor/global/AcEdUiTheme.d.ts +4 -0
  139. package/lib/editor/global/AcEdUiTheme.d.ts.map +1 -0
  140. package/lib/editor/global/AcEdUiTheme.js +44 -0
  141. package/lib/editor/global/AcEdUiTheme.js.map +1 -0
  142. package/lib/editor/global/index.d.ts +1 -0
  143. package/lib/editor/global/index.d.ts.map +1 -1
  144. package/lib/editor/global/index.js +1 -0
  145. package/lib/editor/global/index.js.map +1 -1
  146. package/lib/editor/input/AcEdCursorManager.d.ts +10 -0
  147. package/lib/editor/input/AcEdCursorManager.d.ts.map +1 -1
  148. package/lib/editor/input/AcEdCursorManager.js +24 -4
  149. package/lib/editor/input/AcEdCursorManager.js.map +1 -1
  150. package/lib/editor/input/AcEdInputModifiers.d.ts +39 -0
  151. package/lib/editor/input/AcEdInputModifiers.d.ts.map +1 -0
  152. package/lib/editor/input/AcEdInputModifiers.js +2 -0
  153. package/lib/editor/input/AcEdInputModifiers.js.map +1 -0
  154. package/lib/editor/input/AcEdInputToggles.d.ts +24 -0
  155. package/lib/editor/input/AcEdInputToggles.d.ts.map +1 -0
  156. package/lib/editor/input/AcEdInputToggles.js +2 -0
  157. package/lib/editor/input/AcEdInputToggles.js.map +1 -0
  158. package/lib/editor/input/AcEdPromptStateMachine.d.ts +110 -0
  159. package/lib/editor/input/AcEdPromptStateMachine.d.ts.map +1 -0
  160. package/lib/editor/input/AcEdPromptStateMachine.js +147 -0
  161. package/lib/editor/input/AcEdPromptStateMachine.js.map +1 -0
  162. package/lib/editor/input/AcEdSelectionFilter.d.ts +79 -0
  163. package/lib/editor/input/AcEdSelectionFilter.d.ts.map +1 -0
  164. package/lib/editor/input/AcEdSelectionFilter.js +231 -0
  165. package/lib/editor/input/AcEdSelectionFilter.js.map +1 -0
  166. package/lib/editor/input/AcEditor.d.ts +77 -10
  167. package/lib/editor/input/AcEditor.d.ts.map +1 -1
  168. package/lib/editor/input/AcEditor.js +162 -1
  169. package/lib/editor/input/AcEditor.js.map +1 -1
  170. package/lib/editor/input/index.d.ts +4 -0
  171. package/lib/editor/input/index.d.ts.map +1 -1
  172. package/lib/editor/input/index.js +4 -0
  173. package/lib/editor/input/index.js.map +1 -1
  174. package/lib/editor/input/marker/AcEdMarker.d.ts.map +1 -1
  175. package/lib/editor/input/marker/AcEdMarker.js +3 -3
  176. package/lib/editor/input/marker/AcEdMarker.js.map +1 -1
  177. package/lib/editor/input/prompt/AcEdKeywordCollection.d.ts +47 -0
  178. package/lib/editor/input/prompt/AcEdKeywordCollection.d.ts.map +1 -1
  179. package/lib/editor/input/prompt/AcEdKeywordCollection.js +30 -4
  180. package/lib/editor/input/prompt/AcEdKeywordCollection.js.map +1 -1
  181. package/lib/editor/input/prompt/AcEdPromptAngleOptions.d.ts +8 -1
  182. package/lib/editor/input/prompt/AcEdPromptAngleOptions.d.ts.map +1 -1
  183. package/lib/editor/input/prompt/AcEdPromptAngleOptions.js +19 -2
  184. package/lib/editor/input/prompt/AcEdPromptAngleOptions.js.map +1 -1
  185. package/lib/editor/input/prompt/AcEdPromptBoxResult.d.ts +12 -0
  186. package/lib/editor/input/prompt/AcEdPromptBoxResult.d.ts.map +1 -0
  187. package/lib/editor/input/prompt/AcEdPromptBoxResult.js +30 -0
  188. package/lib/editor/input/prompt/AcEdPromptBoxResult.js.map +1 -0
  189. package/lib/editor/input/prompt/AcEdPromptDoubleResult.d.ts +9 -0
  190. package/lib/editor/input/prompt/AcEdPromptDoubleResult.d.ts.map +1 -0
  191. package/lib/editor/input/prompt/AcEdPromptDoubleResult.js +28 -0
  192. package/lib/editor/input/prompt/AcEdPromptDoubleResult.js.map +1 -0
  193. package/lib/editor/input/prompt/AcEdPromptEntityOptions.d.ts +18 -1
  194. package/lib/editor/input/prompt/AcEdPromptEntityOptions.d.ts.map +1 -1
  195. package/lib/editor/input/prompt/AcEdPromptEntityOptions.js +32 -5
  196. package/lib/editor/input/prompt/AcEdPromptEntityOptions.js.map +1 -1
  197. package/lib/editor/input/prompt/AcEdPromptEntityResult.d.ts +14 -0
  198. package/lib/editor/input/prompt/AcEdPromptEntityResult.d.ts.map +1 -0
  199. package/lib/editor/input/prompt/AcEdPromptEntityResult.js +31 -0
  200. package/lib/editor/input/prompt/AcEdPromptEntityResult.js.map +1 -0
  201. package/lib/editor/input/prompt/AcEdPromptIntegerResult.d.ts +9 -0
  202. package/lib/editor/input/prompt/AcEdPromptIntegerResult.d.ts.map +1 -0
  203. package/lib/editor/input/prompt/AcEdPromptIntegerResult.js +28 -0
  204. package/lib/editor/input/prompt/AcEdPromptIntegerResult.js.map +1 -0
  205. package/lib/editor/input/prompt/AcEdPromptKeywordOptions.d.ts +1 -1
  206. package/lib/editor/input/prompt/AcEdPromptKeywordOptions.d.ts.map +1 -1
  207. package/lib/editor/input/prompt/AcEdPromptKeywordOptions.js +2 -2
  208. package/lib/editor/input/prompt/AcEdPromptKeywordOptions.js.map +1 -1
  209. package/lib/editor/input/prompt/AcEdPromptNumericalOptions.d.ts +1 -1
  210. package/lib/editor/input/prompt/AcEdPromptNumericalOptions.d.ts.map +1 -1
  211. package/lib/editor/input/prompt/AcEdPromptNumericalOptions.js +2 -2
  212. package/lib/editor/input/prompt/AcEdPromptNumericalOptions.js.map +1 -1
  213. package/lib/editor/input/prompt/AcEdPromptOptions.d.ts +9 -3
  214. package/lib/editor/input/prompt/AcEdPromptOptions.d.ts.map +1 -1
  215. package/lib/editor/input/prompt/AcEdPromptOptions.js +22 -4
  216. package/lib/editor/input/prompt/AcEdPromptOptions.js.map +1 -1
  217. package/lib/editor/input/prompt/AcEdPromptPointOptions.d.ts +1 -1
  218. package/lib/editor/input/prompt/AcEdPromptPointOptions.d.ts.map +1 -1
  219. package/lib/editor/input/prompt/AcEdPromptPointOptions.js +2 -2
  220. package/lib/editor/input/prompt/AcEdPromptPointOptions.js.map +1 -1
  221. package/lib/editor/input/prompt/AcEdPromptPointResult.d.ts +3 -3
  222. package/lib/editor/input/prompt/AcEdPromptSelectionOptions.d.ts +1 -1
  223. package/lib/editor/input/prompt/AcEdPromptSelectionOptions.d.ts.map +1 -1
  224. package/lib/editor/input/prompt/AcEdPromptSelectionOptions.js +2 -2
  225. package/lib/editor/input/prompt/AcEdPromptSelectionOptions.js.map +1 -1
  226. package/lib/editor/input/prompt/AcEdPromptSelectionResult.d.ts +12 -0
  227. package/lib/editor/input/prompt/AcEdPromptSelectionResult.d.ts.map +1 -0
  228. package/lib/editor/input/prompt/AcEdPromptSelectionResult.js +30 -0
  229. package/lib/editor/input/prompt/AcEdPromptSelectionResult.js.map +1 -0
  230. package/lib/editor/input/prompt/AcEdPromptStringOptions.d.ts +1 -1
  231. package/lib/editor/input/prompt/AcEdPromptStringOptions.d.ts.map +1 -1
  232. package/lib/editor/input/prompt/AcEdPromptStringOptions.js +2 -2
  233. package/lib/editor/input/prompt/AcEdPromptStringOptions.js.map +1 -1
  234. package/lib/editor/input/prompt/index.d.ts +9 -0
  235. package/lib/editor/input/prompt/index.d.ts.map +1 -1
  236. package/lib/editor/input/prompt/index.js +9 -0
  237. package/lib/editor/input/prompt/index.js.map +1 -1
  238. package/lib/editor/input/session/AcEdKeywordSession.d.ts +67 -1
  239. package/lib/editor/input/session/AcEdKeywordSession.d.ts.map +1 -1
  240. package/lib/editor/input/session/AcEdKeywordSession.js +78 -1
  241. package/lib/editor/input/session/AcEdKeywordSession.js.map +1 -1
  242. package/lib/editor/input/ui/AcEdCommandLine.d.ts +27 -1
  243. package/lib/editor/input/ui/AcEdCommandLine.d.ts.map +1 -1
  244. package/lib/editor/input/ui/AcEdCommandLine.js +75 -10
  245. package/lib/editor/input/ui/AcEdCommandLine.js.map +1 -1
  246. package/lib/editor/input/ui/AcEdFloatingInput.d.ts +24 -1
  247. package/lib/editor/input/ui/AcEdFloatingInput.d.ts.map +1 -1
  248. package/lib/editor/input/ui/AcEdFloatingInput.js +147 -27
  249. package/lib/editor/input/ui/AcEdFloatingInput.js.map +1 -1
  250. package/lib/editor/input/ui/AcEdFloatingInputBox.d.ts +2 -0
  251. package/lib/editor/input/ui/AcEdFloatingInputBox.d.ts.map +1 -1
  252. package/lib/editor/input/ui/AcEdFloatingInputBox.js +4 -0
  253. package/lib/editor/input/ui/AcEdFloatingInputBox.js.map +1 -1
  254. package/lib/editor/input/ui/AcEdFloatingInputBoxes.d.ts +30 -1
  255. package/lib/editor/input/ui/AcEdFloatingInputBoxes.d.ts.map +1 -1
  256. package/lib/editor/input/ui/AcEdFloatingInputBoxes.js +46 -15
  257. package/lib/editor/input/ui/AcEdFloatingInputBoxes.js.map +1 -1
  258. package/lib/editor/input/ui/AcEdFloatingInputTypes.d.ts +33 -0
  259. package/lib/editor/input/ui/AcEdFloatingInputTypes.d.ts.map +1 -1
  260. package/lib/editor/input/ui/AcEdFloatingMessage.d.ts +12 -0
  261. package/lib/editor/input/ui/AcEdFloatingMessage.d.ts.map +1 -1
  262. package/lib/editor/input/ui/AcEdFloatingMessage.js +61 -2
  263. package/lib/editor/input/ui/AcEdFloatingMessage.js.map +1 -1
  264. package/lib/editor/input/ui/AcEdInputManager.d.ts +403 -29
  265. package/lib/editor/input/ui/AcEdInputManager.d.ts.map +1 -1
  266. package/lib/editor/input/ui/AcEdInputManager.js +1313 -414
  267. package/lib/editor/input/ui/AcEdInputManager.js.map +1 -1
  268. package/lib/editor/input/ui/AcEdRubberBand.d.ts +15 -1
  269. package/lib/editor/input/ui/AcEdRubberBand.d.ts.map +1 -1
  270. package/lib/editor/input/ui/AcEdRubberBand.js +43 -11
  271. package/lib/editor/input/ui/AcEdRubberBand.js.map +1 -1
  272. package/lib/editor/view/AcEdBaseView.d.ts +66 -0
  273. package/lib/editor/view/AcEdBaseView.d.ts.map +1 -1
  274. package/lib/editor/view/AcEdBaseView.js +170 -0
  275. package/lib/editor/view/AcEdBaseView.js.map +1 -1
  276. package/lib/editor/view/AcEdSpatialQueryResult.d.ts.map +1 -1
  277. package/lib/i18n/en/command.d.ts +36 -3
  278. package/lib/i18n/en/command.d.ts.map +1 -1
  279. package/lib/i18n/en/command.js +36 -3
  280. package/lib/i18n/en/command.js.map +1 -1
  281. package/lib/i18n/en/jig.d.ts +553 -0
  282. package/lib/i18n/en/jig.d.ts.map +1 -1
  283. package/lib/i18n/en/jig.js +557 -4
  284. package/lib/i18n/en/jig.js.map +1 -1
  285. package/lib/i18n/zh/command.d.ts +36 -3
  286. package/lib/i18n/zh/command.d.ts.map +1 -1
  287. package/lib/i18n/zh/command.js +36 -3
  288. package/lib/i18n/zh/command.js.map +1 -1
  289. package/lib/i18n/zh/jig.d.ts +553 -0
  290. package/lib/i18n/zh/jig.d.ts.map +1 -1
  291. package/lib/i18n/zh/jig.js +557 -4
  292. package/lib/i18n/zh/jig.js.map +1 -1
  293. package/lib/plugin/AcApPluginManager.d.ts.map +1 -1
  294. package/lib/plugin/AcApPluginManager.js.map +1 -1
  295. package/lib/util/AcApMeasurementElementGenerator.d.ts +36 -0
  296. package/lib/util/AcApMeasurementElementGenerator.d.ts.map +1 -0
  297. package/lib/util/AcApMeasurementElementGenerator.js +92 -0
  298. package/lib/util/AcApMeasurementElementGenerator.js.map +1 -0
  299. package/lib/util/index.d.ts +1 -1
  300. package/lib/util/index.d.ts.map +1 -1
  301. package/lib/util/index.js +1 -1
  302. package/lib/util/index.js.map +1 -1
  303. package/lib/view/AcTrLayer.d.ts.map +1 -1
  304. package/lib/view/AcTrLayer.js +5 -3
  305. package/lib/view/AcTrLayer.js.map +1 -1
  306. package/lib/view/AcTrLayoutView.d.ts +6 -0
  307. package/lib/view/AcTrLayoutView.d.ts.map +1 -1
  308. package/lib/view/AcTrLayoutView.js +20 -0
  309. package/lib/view/AcTrLayoutView.js.map +1 -1
  310. package/lib/view/AcTrView2d.d.ts +0 -1
  311. package/lib/view/AcTrView2d.d.ts.map +1 -1
  312. package/lib/view/AcTrView2d.js +103 -50
  313. package/lib/view/AcTrView2d.js.map +1 -1
  314. package/package.json +15 -13
  315. package/lib/command/AcApZoomToBoxCmd.d.ts +0 -29
  316. package/lib/command/AcApZoomToBoxCmd.d.ts.map +0 -1
  317. package/lib/command/AcApZoomToBoxCmd.js.map +0 -1
  318. package/lib/util/AcApMeasurementUtils.d.ts +0 -12
  319. package/lib/util/AcApMeasurementUtils.d.ts.map +0 -1
  320. package/lib/util/AcApMeasurementUtils.js +0 -36
  321. package/lib/util/AcApMeasurementUtils.js.map +0 -1
@@ -1,5 +1,13 @@
1
1
  export default {
2
2
  ACAD: {
3
+ pngout: {
4
+ boundsFirstCorner: '指定边界的第一个角点',
5
+ boundsSecondCorner: '指定对角点',
6
+ longSidePrompt: '输入长边像素大小'
7
+ },
8
+ arc: {
9
+ description: '创建圆弧'
10
+ },
3
11
  cecolor: {
4
12
  description: '设置新创建对象的当前默认颜色'
5
13
  },
@@ -18,22 +26,50 @@ export default {
18
26
  colortheme: {
19
27
  description: '控制用户界面的颜色主题(深色或浅色)'
20
28
  },
29
+ cdxf: {
30
+ description: '导出当前图纸为DXF格式'
31
+ },
21
32
  csvg: {
22
33
  description: '转换当前图纸为SVG格式'
23
34
  },
24
35
  dimlinear: {
25
36
  description: '创建线性尺寸标注'
26
37
  },
38
+ ellipse: {
39
+ description: '通过轴端点或中心点创建椭圆或椭圆弧'
40
+ },
27
41
  erase: {
28
42
  description: '从图纸中删除所选对象',
29
43
  prompt: '选择对象'
30
44
  },
45
+ hatch: {
46
+ description: '用填充图案填充封闭区域或所选对象'
47
+ },
48
+ '-layer': {
49
+ description: '通过命令行选项管理图层'
50
+ },
31
51
  line: {
32
52
  description: '在指定点之间绘制直线段'
33
53
  },
54
+ lwdisplay: {
55
+ description: '用于控制是否在图纸中显示线宽效果'
56
+ },
57
+ pline: {
58
+ description: '通过指定多个点创建多段线'
59
+ },
60
+ polygon: {
61
+ description: '通过中心和半径或指定一条边创建正多边形'
62
+ },
63
+ spline: {
64
+ description: '通过指定控制点创建平滑的样条曲线'
65
+ },
34
66
  mtext: {
35
67
  description: '创建一条多行文本(MTEXT)'
36
68
  },
69
+ move: {
70
+ description: '通过位移向量移动所选图元',
71
+ prompt: '选择对象'
72
+ },
37
73
  log: {
38
74
  description: '在控制台输出调试信息'
39
75
  },
@@ -69,9 +105,6 @@ export default {
69
105
  },
70
106
  zoom: {
71
107
  description: '缩放以显示所有对象'
72
- },
73
- zoomw: {
74
- description: '缩放以显示矩形窗口内的对象'
75
108
  }
76
109
  },
77
110
  USER: {}
@@ -1 +1 @@
1
- {"version":3,"file":"command.js","sourceRoot":"","sources":["../../../src/i18n/zh/command.ts"],"names":[],"mappings":"AAAA,eAAe;IACb,IAAI,EAAE;QACJ,OAAO,EAAE;YACP,WAAW,EAAE,gBAAgB;SAC9B;QACD,SAAS,EAAE;YACT,WAAW,EAAE,gBAAgB;SAC9B;QACD,SAAS,EAAE;YACT,WAAW,EAAE,cAAc;SAC5B;QACD,MAAM,EAAE;YACN,WAAW,EAAE,qBAAqB;SACnC;QACD,MAAM,EAAE;YACN,WAAW,EAAE,YAAY;SAC1B;QACD,UAAU,EAAE;YACV,WAAW,EAAE,oBAAoB;SAClC;QACD,IAAI,EAAE;YACJ,WAAW,EAAE,cAAc;SAC5B;QACD,SAAS,EAAE;YACT,WAAW,EAAE,UAAU;SACxB;QACD,KAAK,EAAE;YACL,WAAW,EAAE,YAAY;YACzB,MAAM,EAAE,MAAM;SACf;QACD,IAAI,EAAE;YACJ,WAAW,EAAE,aAAa;SAC3B;QACD,KAAK,EAAE;YACL,WAAW,EAAE,iBAAiB;SAC/B;QACD,GAAG,EAAE;YACH,WAAW,EAAE,YAAY;SAC1B;QACD,IAAI,EAAE;YACJ,WAAW,EAAE,MAAM;SACpB;QACD,GAAG,EAAE;YACH,WAAW,EAAE,MAAM;SACpB;QACD,OAAO,EAAE;YACP,WAAW,EAAE,oBAAoB;SAClC;QACD,IAAI,EAAE;YACJ,WAAW,EAAE,OAAO;SACrB;QACD,SAAS,EAAE;YACT,WAAW,EAAE,eAAe;SAC7B;QACD,KAAK,EAAE;YACL,WAAW,EAAE,MAAM;SACpB;QACD,QAAQ,EAAE;YACR,WAAW,EAAE,cAAc;SAC5B;QACD,MAAM,EAAE;YACN,WAAW,EAAE,MAAM;SACpB;QACD,MAAM,EAAE;YACN,WAAW,EAAE,mBAAmB;SACjC;QACD,YAAY,EAAE;YACZ,WAAW,EAAE,yBAAyB;SACvC;QACD,IAAI,EAAE;YACJ,WAAW,EAAE,WAAW;SACzB;QACD,KAAK,EAAE;YACL,WAAW,EAAE,eAAe;SAC7B;KACF;IACD,IAAI,EAAE,EAAE;CACT,CAAA"}
1
+ {"version":3,"file":"command.js","sourceRoot":"","sources":["../../../src/i18n/zh/command.ts"],"names":[],"mappings":"AAAA,eAAe;IACb,IAAI,EAAE;QACJ,MAAM,EAAE;YACN,iBAAiB,EAAE,YAAY;YAC/B,kBAAkB,EAAE,OAAO;YAC3B,cAAc,EAAE,UAAU;SAC3B;QACD,GAAG,EAAE;YACH,WAAW,EAAE,MAAM;SACpB;QACD,OAAO,EAAE;YACP,WAAW,EAAE,gBAAgB;SAC9B;QACD,SAAS,EAAE;YACT,WAAW,EAAE,gBAAgB;SAC9B;QACD,SAAS,EAAE;YACT,WAAW,EAAE,cAAc;SAC5B;QACD,MAAM,EAAE;YACN,WAAW,EAAE,qBAAqB;SACnC;QACD,MAAM,EAAE;YACN,WAAW,EAAE,YAAY;SAC1B;QACD,UAAU,EAAE;YACV,WAAW,EAAE,oBAAoB;SAClC;QACD,IAAI,EAAE;YACJ,WAAW,EAAE,cAAc;SAC5B;QACD,IAAI,EAAE;YACJ,WAAW,EAAE,cAAc;SAC5B;QACD,SAAS,EAAE;YACT,WAAW,EAAE,UAAU;SACxB;QACD,OAAO,EAAE;YACP,WAAW,EAAE,mBAAmB;SACjC;QACD,KAAK,EAAE;YACL,WAAW,EAAE,YAAY;YACzB,MAAM,EAAE,MAAM;SACf;QACD,KAAK,EAAE;YACL,WAAW,EAAE,kBAAkB;SAChC;QACD,QAAQ,EAAE;YACR,WAAW,EAAE,aAAa;SAC3B;QACD,IAAI,EAAE;YACJ,WAAW,EAAE,aAAa;SAC3B;QACD,SAAS,EAAE;YACT,WAAW,EAAE,kBAAkB;SAChC;QACD,KAAK,EAAE;YACL,WAAW,EAAE,cAAc;SAC5B;QACD,OAAO,EAAE;YACP,WAAW,EAAE,qBAAqB;SACnC;QACD,MAAM,EAAE;YACN,WAAW,EAAE,kBAAkB;SAChC;QACD,KAAK,EAAE;YACL,WAAW,EAAE,iBAAiB;SAC/B;QACD,IAAI,EAAE;YACJ,WAAW,EAAE,cAAc;YAC3B,MAAM,EAAE,MAAM;SACf;QACD,GAAG,EAAE;YACH,WAAW,EAAE,YAAY;SAC1B;QACD,IAAI,EAAE;YACJ,WAAW,EAAE,MAAM;SACpB;QACD,GAAG,EAAE;YACH,WAAW,EAAE,MAAM;SACpB;QACD,OAAO,EAAE;YACP,WAAW,EAAE,oBAAoB;SAClC;QACD,IAAI,EAAE;YACJ,WAAW,EAAE,OAAO;SACrB;QACD,SAAS,EAAE;YACT,WAAW,EAAE,eAAe;SAC7B;QACD,KAAK,EAAE;YACL,WAAW,EAAE,MAAM;SACpB;QACD,QAAQ,EAAE;YACR,WAAW,EAAE,cAAc;SAC5B;QACD,MAAM,EAAE;YACN,WAAW,EAAE,MAAM;SACpB;QACD,MAAM,EAAE;YACN,WAAW,EAAE,mBAAmB;SACjC;QACD,YAAY,EAAE;YACZ,WAAW,EAAE,yBAAyB;SACvC;QACD,IAAI,EAAE;YACJ,WAAW,EAAE,WAAW;SACzB;KACF;IACD,IAAI,EAAE,EAAE;CACT,CAAA"}
@@ -1,7 +1,118 @@
1
1
  declare const _default: {
2
+ arc: {
3
+ startPointOrCenter: string;
4
+ secondPointOrOptions: string;
5
+ startPoint: string;
6
+ centerPoint: string;
7
+ endPoint: string;
8
+ endPointOrOptions: string;
9
+ centerPointOrOptions: string;
10
+ includedAngle: string;
11
+ chordLength: string;
12
+ tangentDirection: string;
13
+ radius: string;
14
+ keywords: {
15
+ center: {
16
+ display: string;
17
+ local: string;
18
+ global: string;
19
+ };
20
+ end: {
21
+ display: string;
22
+ local: string;
23
+ global: string;
24
+ };
25
+ angle: {
26
+ display: string;
27
+ local: string;
28
+ global: string;
29
+ };
30
+ chordLength: {
31
+ display: string;
32
+ local: string;
33
+ global: string;
34
+ };
35
+ direction: {
36
+ display: string;
37
+ local: string;
38
+ global: string;
39
+ };
40
+ radius: {
41
+ display: string;
42
+ local: string;
43
+ global: string;
44
+ };
45
+ };
46
+ invalid: {
47
+ threePoint: string;
48
+ center: string;
49
+ angle: string;
50
+ chordLength: string;
51
+ direction: string;
52
+ radius: string;
53
+ };
54
+ };
2
55
  circle: {
3
56
  center: string;
57
+ centerOrOptions: string;
4
58
  radius: string;
59
+ radiusOrDiameter: string;
60
+ diameter: string;
61
+ twoPointFirst: string;
62
+ twoPointSecond: string;
63
+ threePointFirst: string;
64
+ threePointSecond: string;
65
+ threePointThird: string;
66
+ keywords: {
67
+ threeP: {
68
+ display: string;
69
+ local: string;
70
+ global: string;
71
+ };
72
+ twoP: {
73
+ display: string;
74
+ local: string;
75
+ global: string;
76
+ };
77
+ diameter: {
78
+ display: string;
79
+ local: string;
80
+ global: string;
81
+ };
82
+ };
83
+ };
84
+ ellipse: {
85
+ axisEndpointOrOptions: string;
86
+ arcAxisEndpointOrCenter: string;
87
+ center: string;
88
+ firstAxisEndpoint: string;
89
+ secondAxisEndpoint: string;
90
+ otherAxisOrRotation: string;
91
+ rotationAngle: string;
92
+ arcStartAngle: string;
93
+ arcEndAngle: string;
94
+ keywords: {
95
+ arc: {
96
+ display: string;
97
+ local: string;
98
+ global: string;
99
+ };
100
+ center: {
101
+ display: string;
102
+ local: string;
103
+ global: string;
104
+ };
105
+ rotation: {
106
+ display: string;
107
+ local: string;
108
+ global: string;
109
+ };
110
+ };
111
+ invalid: {
112
+ axis: string;
113
+ otherAxis: string;
114
+ rotation: string;
115
+ };
5
116
  };
6
117
  measureDistance: {
7
118
  firstPoint: string;
@@ -28,19 +139,461 @@ declare const _default: {
28
139
  };
29
140
  line: {
30
141
  firstPoint: string;
142
+ firstPointOrContinue: string;
31
143
  nextPoint: string;
144
+ nextPointWithOptions: string;
145
+ keywords: {
146
+ continue: {
147
+ display: string;
148
+ local: string;
149
+ global: string;
150
+ };
151
+ undo: {
152
+ display: string;
153
+ local: string;
154
+ global: string;
155
+ };
156
+ close: {
157
+ display: string;
158
+ local: string;
159
+ global: string;
160
+ };
161
+ };
32
162
  };
33
163
  mtext: {
34
164
  point: string;
35
165
  };
166
+ move: {
167
+ basePointOrDisplacement: string;
168
+ secondPointOrDisplacement: string;
169
+ displacement: string;
170
+ keywords: {
171
+ displacement: {
172
+ display: string;
173
+ local: string;
174
+ global: string;
175
+ };
176
+ };
177
+ };
36
178
  rect: {
37
179
  firstPoint: string;
38
180
  nextPoint: string;
181
+ firstPointWithOptions: string;
182
+ otherCornerWithOptions: string;
183
+ chamferFirst: string;
184
+ chamferSecond: string;
185
+ filletRadius: string;
186
+ segmentWidth: string;
187
+ elevationValue: string;
188
+ thicknessValue: string;
189
+ rotationAngle: string;
190
+ dimensionLength: string;
191
+ dimensionWidth: string;
192
+ areaValue: string;
193
+ areaLengthOrWidth: string;
194
+ areaSpecifyWidth: string;
195
+ invalidPositive: string;
196
+ invalidRect: string;
197
+ thicknessNotSupported: string;
198
+ keywords: {
199
+ chamfer: {
200
+ display: string;
201
+ local: string;
202
+ global: string;
203
+ };
204
+ elevation: {
205
+ display: string;
206
+ local: string;
207
+ global: string;
208
+ };
209
+ fillet: {
210
+ display: string;
211
+ local: string;
212
+ global: string;
213
+ };
214
+ thickness: {
215
+ display: string;
216
+ local: string;
217
+ global: string;
218
+ };
219
+ width: {
220
+ display: string;
221
+ local: string;
222
+ global: string;
223
+ };
224
+ area: {
225
+ display: string;
226
+ local: string;
227
+ global: string;
228
+ };
229
+ dimensions: {
230
+ display: string;
231
+ local: string;
232
+ global: string;
233
+ };
234
+ rotation: {
235
+ display: string;
236
+ local: string;
237
+ global: string;
238
+ };
239
+ length: {
240
+ display: string;
241
+ local: string;
242
+ global: string;
243
+ };
244
+ rectWidth: {
245
+ display: string;
246
+ local: string;
247
+ global: string;
248
+ };
249
+ };
250
+ };
251
+ polygon: {
252
+ numberOfSides: string;
253
+ centerOrEdge: string;
254
+ radiusOrType: string;
255
+ edgeStart: string;
256
+ edgeEnd: string;
257
+ keywords: {
258
+ edge: {
259
+ display: string;
260
+ local: string;
261
+ global: string;
262
+ };
263
+ inscribed: {
264
+ display: string;
265
+ local: string;
266
+ global: string;
267
+ };
268
+ circumscribed: {
269
+ display: string;
270
+ local: string;
271
+ global: string;
272
+ };
273
+ };
274
+ invalid: {
275
+ sides: string;
276
+ radius: string;
277
+ edge: string;
278
+ };
39
279
  };
40
280
  sketch: {
41
281
  firstPoint: string;
42
282
  nextPoint: string;
43
283
  };
284
+ polyline: {
285
+ firstPoint: string;
286
+ nextPoint: string;
287
+ nextPointWithOptions: string;
288
+ nextPointWithArcOptions: string;
289
+ keywords: {
290
+ arc: {
291
+ display: string;
292
+ local: string;
293
+ global: string;
294
+ };
295
+ undo: {
296
+ display: string;
297
+ local: string;
298
+ global: string;
299
+ };
300
+ close: {
301
+ display: string;
302
+ local: string;
303
+ global: string;
304
+ };
305
+ line: {
306
+ display: string;
307
+ local: string;
308
+ global: string;
309
+ };
310
+ angle: {
311
+ display: string;
312
+ local: string;
313
+ global: string;
314
+ };
315
+ center: {
316
+ display: string;
317
+ local: string;
318
+ global: string;
319
+ };
320
+ secondPoint: {
321
+ display: string;
322
+ local: string;
323
+ global: string;
324
+ };
325
+ radius: {
326
+ display: string;
327
+ local: string;
328
+ global: string;
329
+ };
330
+ };
331
+ arcAngle: string;
332
+ arcCenter: string;
333
+ arcSecondPoint: string;
334
+ arcEndPoint: string;
335
+ arcRadius: string;
336
+ };
337
+ zoom: {
338
+ mainPrompt: string;
339
+ firstCorner: string;
340
+ secondCorner: string;
341
+ centerPoint: string;
342
+ heightOrScale: string;
343
+ scaleFactor: string;
344
+ keywords: {
345
+ all: {
346
+ display: string;
347
+ local: string;
348
+ global: string;
349
+ };
350
+ center: {
351
+ display: string;
352
+ local: string;
353
+ global: string;
354
+ };
355
+ extents: {
356
+ display: string;
357
+ local: string;
358
+ global: string;
359
+ };
360
+ previous: {
361
+ display: string;
362
+ local: string;
363
+ global: string;
364
+ };
365
+ scale: {
366
+ display: string;
367
+ local: string;
368
+ global: string;
369
+ };
370
+ window: {
371
+ display: string;
372
+ local: string;
373
+ global: string;
374
+ };
375
+ };
376
+ };
377
+ layer: {
378
+ main: string;
379
+ listSummary: string;
380
+ emptyInput: string;
381
+ newPrompt: string;
382
+ makePrompt: string;
383
+ setPrompt: string;
384
+ onPrompt: string;
385
+ offPrompt: string;
386
+ freezePrompt: string;
387
+ thawPrompt: string;
388
+ lockPrompt: string;
389
+ unlockPrompt: string;
390
+ colorLayerPrompt: string;
391
+ colorValuePrompt: string;
392
+ invalidColor: string;
393
+ descriptionLayerPrompt: string;
394
+ descriptionValuePrompt: string;
395
+ created: string;
396
+ alreadyExists: string;
397
+ notFound: string;
398
+ cannotChangeCurrent: string;
399
+ keywords: {
400
+ list: {
401
+ display: string;
402
+ local: string;
403
+ global: string;
404
+ };
405
+ make: {
406
+ display: string;
407
+ local: string;
408
+ global: string;
409
+ };
410
+ set: {
411
+ display: string;
412
+ local: string;
413
+ global: string;
414
+ };
415
+ new: {
416
+ display: string;
417
+ local: string;
418
+ global: string;
419
+ };
420
+ on: {
421
+ display: string;
422
+ local: string;
423
+ global: string;
424
+ };
425
+ off: {
426
+ display: string;
427
+ local: string;
428
+ global: string;
429
+ };
430
+ color: {
431
+ display: string;
432
+ local: string;
433
+ global: string;
434
+ };
435
+ freeze: {
436
+ display: string;
437
+ local: string;
438
+ global: string;
439
+ };
440
+ thaw: {
441
+ display: string;
442
+ local: string;
443
+ global: string;
444
+ };
445
+ lock: {
446
+ display: string;
447
+ local: string;
448
+ global: string;
449
+ };
450
+ unlock: {
451
+ display: string;
452
+ local: string;
453
+ global: string;
454
+ };
455
+ description: {
456
+ display: string;
457
+ local: string;
458
+ global: string;
459
+ };
460
+ };
461
+ };
462
+ hatch: {
463
+ prompt: string;
464
+ pickPoint: string;
465
+ select: string;
466
+ patternName: string;
467
+ scale: string;
468
+ angle: string;
469
+ style: string;
470
+ associative: string;
471
+ invalidBoundary: string;
472
+ keywords: {
473
+ pick: {
474
+ display: string;
475
+ local: string;
476
+ global: string;
477
+ };
478
+ select: {
479
+ display: string;
480
+ local: string;
481
+ global: string;
482
+ };
483
+ pattern: {
484
+ display: string;
485
+ local: string;
486
+ global: string;
487
+ };
488
+ scale: {
489
+ display: string;
490
+ local: string;
491
+ global: string;
492
+ };
493
+ angle: {
494
+ display: string;
495
+ local: string;
496
+ global: string;
497
+ };
498
+ style: {
499
+ display: string;
500
+ local: string;
501
+ global: string;
502
+ };
503
+ associative: {
504
+ display: string;
505
+ local: string;
506
+ global: string;
507
+ };
508
+ normal: {
509
+ display: string;
510
+ local: string;
511
+ global: string;
512
+ };
513
+ outer: {
514
+ display: string;
515
+ local: string;
516
+ global: string;
517
+ };
518
+ ignore: {
519
+ display: string;
520
+ local: string;
521
+ global: string;
522
+ };
523
+ yes: {
524
+ display: string;
525
+ local: string;
526
+ global: string;
527
+ };
528
+ no: {
529
+ display: string;
530
+ local: string;
531
+ global: string;
532
+ };
533
+ };
534
+ };
535
+ spline: {
536
+ firstPoint: string;
537
+ nextPoint: string;
538
+ firstPointWithOptions: string;
539
+ nextPointWithFitOptions: string;
540
+ nextPointWithCvOptions: string;
541
+ methodPrompt: string;
542
+ knotsPrompt: string;
543
+ degreePrompt: string;
544
+ keywords: {
545
+ method: {
546
+ display: string;
547
+ local: string;
548
+ global: string;
549
+ };
550
+ fit: {
551
+ display: string;
552
+ local: string;
553
+ global: string;
554
+ };
555
+ cv: {
556
+ display: string;
557
+ local: string;
558
+ global: string;
559
+ };
560
+ knots: {
561
+ display: string;
562
+ local: string;
563
+ global: string;
564
+ };
565
+ degree: {
566
+ display: string;
567
+ local: string;
568
+ global: string;
569
+ };
570
+ undo: {
571
+ display: string;
572
+ local: string;
573
+ global: string;
574
+ };
575
+ close: {
576
+ display: string;
577
+ local: string;
578
+ global: string;
579
+ };
580
+ chord: {
581
+ display: string;
582
+ local: string;
583
+ global: string;
584
+ };
585
+ sqrtChord: {
586
+ display: string;
587
+ local: string;
588
+ global: string;
589
+ };
590
+ uniform: {
591
+ display: string;
592
+ local: string;
593
+ global: string;
594
+ };
595
+ };
596
+ };
44
597
  sysvar: {
45
598
  prompt: string;
46
599
  };
@@ -1 +1 @@
1
- {"version":3,"file":"jig.d.ts","sourceRoot":"","sources":["../../../src/i18n/zh/jig.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,wBA8CC"}
1
+ {"version":3,"file":"jig.d.ts","sourceRoot":"","sources":["../../../src/i18n/zh/jig.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,wBAwlBC"}