camunda-bpmn-js 5.16.0 → 5.17.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.
- package/dist/base-modeler.development.js +57150 -53965
- package/dist/base-modeler.production.min.js +45 -45
- package/dist/base-navigated-viewer.development.js +1958 -1314
- package/dist/base-navigated-viewer.production.min.js +1 -1
- package/dist/base-viewer.development.js +1221 -599
- package/dist/base-viewer.production.min.js +1 -1
- package/dist/camunda-cloud-modeler.development.js +11564 -7177
- package/dist/camunda-cloud-modeler.production.min.js +47 -47
- package/dist/camunda-cloud-navigated-viewer.development.js +1850 -1171
- package/dist/camunda-cloud-navigated-viewer.production.min.js +1 -1
- package/dist/camunda-cloud-viewer.development.js +1842 -1185
- package/dist/camunda-cloud-viewer.production.min.js +1 -1
- package/dist/camunda-platform-modeler.development.js +9064 -4379
- package/dist/camunda-platform-modeler.production.min.js +45 -45
- package/dist/camunda-platform-navigated-viewer.development.js +1839 -1183
- package/dist/camunda-platform-navigated-viewer.production.min.js +1 -1
- package/dist/camunda-platform-viewer.development.js +1818 -1184
- package/dist/camunda-platform-viewer.production.min.js +1 -1
- package/lib/base/Modeler.js +12 -0
- package/lib/base/NavigatedViewer.js +10 -0
- package/lib/base/Viewer.js +10 -0
- package/lib/camunda-cloud/ElementTemplatesValidator.js +10 -0
- package/lib/camunda-cloud/Modeler.js +10 -0
- package/lib/camunda-cloud/NavigatedViewer.js +10 -0
- package/lib/camunda-cloud/Viewer.js +10 -0
- package/lib/camunda-cloud/features/external-resources/README.md +1 -1
- package/lib/camunda-cloud/features/external-resources/ResourceLoader.d.ts +9 -0
- package/lib/camunda-cloud/features/external-resources/ResourceLoader.js +10 -0
- package/lib/camunda-cloud/features/external-resources/Resources.d.ts +9 -0
- package/lib/camunda-cloud/features/external-resources/Resources.js +10 -0
- package/lib/camunda-cloud/features/external-resources/cmd/ComposedCommandHandler.d.ts +9 -0
- package/lib/camunda-cloud/features/external-resources/cmd/ComposedCommandHandler.js +10 -0
- package/lib/camunda-cloud/features/external-resources/cmd/index.js +10 -0
- package/lib/camunda-cloud/features/external-resources/handlers/decision/AppendMenuProvider.js +11 -1
- package/lib/camunda-cloud/features/external-resources/handlers/decision/CreateMenuProvider.js +11 -1
- package/lib/camunda-cloud/features/external-resources/handlers/decision/ReplaceMenuProvider.js +11 -1
- package/lib/camunda-cloud/features/external-resources/handlers/decision/createElement.d.ts +15 -5
- package/lib/camunda-cloud/features/external-resources/handlers/decision/createElement.js +29 -4
- package/lib/camunda-cloud/features/external-resources/handlers/decision/index.js +10 -0
- package/lib/camunda-cloud/features/external-resources/handlers/decision/replaceElement.js +10 -0
- package/lib/camunda-cloud/features/external-resources/handlers/decision/searchTerms.d.ts +9 -0
- package/lib/camunda-cloud/features/external-resources/handlers/decision/searchTerms.js +10 -0
- package/lib/camunda-cloud/features/external-resources/handlers/form/AppendMenuProvider.js +11 -1
- package/lib/camunda-cloud/features/external-resources/handlers/form/CreateMenuProvider.js +11 -1
- package/lib/camunda-cloud/features/external-resources/handlers/form/ReplaceMenuProvider.js +11 -1
- package/lib/camunda-cloud/features/external-resources/handlers/form/createElement.d.ts +15 -1
- package/lib/camunda-cloud/features/external-resources/handlers/form/createElement.js +28 -3
- package/lib/camunda-cloud/features/external-resources/handlers/form/index.js +10 -0
- package/lib/camunda-cloud/features/external-resources/handlers/form/replaceElement.js +10 -0
- package/lib/camunda-cloud/features/external-resources/handlers/form/searchTerms.d.ts +9 -0
- package/lib/camunda-cloud/features/external-resources/handlers/form/searchTerms.js +10 -0
- package/lib/camunda-cloud/features/external-resources/handlers/process/AppendMenuProvider.js +11 -1
- package/lib/camunda-cloud/features/external-resources/handlers/process/CreateMenuProvider.js +11 -1
- package/lib/camunda-cloud/features/external-resources/handlers/process/ReplaceMenuProvider.js +11 -1
- package/lib/camunda-cloud/features/external-resources/handlers/process/createElement.d.ts +14 -5
- package/lib/camunda-cloud/features/external-resources/handlers/process/createElement.js +35 -4
- package/lib/camunda-cloud/features/external-resources/handlers/process/index.js +10 -0
- package/lib/camunda-cloud/features/external-resources/handlers/process/replaceElement.js +10 -0
- package/lib/camunda-cloud/features/external-resources/handlers/process/searchTerms.d.ts +9 -0
- package/lib/camunda-cloud/features/external-resources/handlers/process/searchTerms.js +10 -0
- package/lib/camunda-cloud/features/external-resources/handlers/rpa/AppendMenuProvider.d.ts +6 -0
- package/lib/camunda-cloud/features/external-resources/handlers/rpa/AppendMenuProvider.js +41 -0
- package/lib/camunda-cloud/features/external-resources/handlers/rpa/CreateMenuProvider.d.ts +6 -0
- package/lib/camunda-cloud/features/external-resources/handlers/rpa/CreateMenuProvider.js +41 -0
- package/lib/camunda-cloud/features/external-resources/handlers/rpa/ReplaceMenuProvider.d.ts +6 -0
- package/lib/camunda-cloud/features/external-resources/handlers/rpa/ReplaceMenuProvider.js +41 -0
- package/lib/camunda-cloud/features/external-resources/handlers/rpa/constants.d.ts +12 -0
- package/lib/camunda-cloud/features/external-resources/handlers/rpa/constants.js +14 -0
- package/lib/camunda-cloud/features/external-resources/handlers/rpa/createElement.d.ts +14 -0
- package/lib/camunda-cloud/features/external-resources/handlers/rpa/createElement.js +61 -0
- package/lib/camunda-cloud/features/external-resources/handlers/rpa/index.d.ts +8 -0
- package/lib/camunda-cloud/features/external-resources/handlers/rpa/index.js +20 -0
- package/lib/camunda-cloud/features/external-resources/handlers/rpa/replaceElement.d.ts +15 -0
- package/lib/camunda-cloud/features/external-resources/handlers/rpa/replaceElement.js +59 -0
- package/lib/camunda-cloud/features/external-resources/handlers/rpa/searchTerms.d.ts +10 -0
- package/lib/camunda-cloud/features/external-resources/handlers/rpa/searchTerms.js +11 -0
- package/lib/camunda-cloud/features/external-resources/handlers/util/BaseAppendMenuProvider.d.ts +21 -4
- package/lib/camunda-cloud/features/external-resources/handlers/util/BaseAppendMenuProvider.js +26 -8
- package/lib/camunda-cloud/features/external-resources/handlers/util/BaseCreateMenuProvider.d.ts +19 -3
- package/lib/camunda-cloud/features/external-resources/handlers/util/BaseCreateMenuProvider.js +24 -7
- package/lib/camunda-cloud/features/external-resources/handlers/util/BaseReplaceMenuProvider.d.ts +6 -2
- package/lib/camunda-cloud/features/external-resources/handlers/util/BaseReplaceMenuProvider.js +19 -6
- package/lib/camunda-cloud/features/external-resources/index.d.ts +4 -0
- package/lib/camunda-cloud/features/external-resources/index.js +13 -1
- package/lib/camunda-cloud/features/popup-menu/CamundaDetailsPopupMenuProvider.js +10 -0
- package/lib/camunda-cloud/features/popup-menu/index.js +10 -0
- package/lib/camunda-cloud/util/commonModules.js +10 -0
- package/lib/camunda-platform/Modeler.js +10 -0
- package/lib/camunda-platform/NavigatedViewer.js +10 -0
- package/lib/camunda-platform/Viewer.js +10 -0
- package/lib/camunda-platform/util/commonModules.js +10 -0
- package/lib/util/ExtensionElementsUtil.js +10 -0
- package/package.json +20 -18
|
@@ -1 +1 @@
|
|
|
1
|
-
!function(e,t){"object"==typeof exports&&"undefined"!=typeof module?module.exports=t():"function"==typeof define&&define.amd?define(t):(e="undefined"!=typeof globalThis?globalThis:e||self).BpmnViewer=t()}(this,(function(){"use strict";function e(e,t){t&&(e.super_=t,e.prototype=Object.create(t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}))}const t=Object.prototype.toString,n=Object.prototype.hasOwnProperty;function i(e){return void 0===e}function r(e){return void 0!==e}function o(e){return null==e}function a(e){return"[object Array]"===t.call(e)}function s(e){return"[object Object]"===t.call(e)}function l(e){return"[object Number]"===t.call(e)}function p(e){const n=t.call(e);return"[object Function]"===n||"[object AsyncFunction]"===n||"[object GeneratorFunction]"===n||"[object AsyncGeneratorFunction]"===n||"[object Proxy]"===n}function c(e){return"[object String]"===t.call(e)}function u(e,t){return!o(e)&&n.call(e,t)}function h(e,t){const n=x(t);let i;return m(e,(function(e,t){if(n(e,t))return i=e,!1})),i}function f(e,t){const n=x(t);let i=[];return m(e,(function(e,t){n(e,t)&&i.push(e)})),i}function m(e,t){let n,r;if(i(e))return;const o=a(e)?w:b;for(let i in e)if(u(e,i)&&(n=e[i],r=t(n,o(i)),!1===r))return n}function d(e,t,n){return m(e,(function(e,i){n=t(n,e,i)})),n}function y(e,t){return!!d(e,(function(e,n,i){return e&&t(n,i)}),!0)}function g(e,t){return!!h(e,t)}function v(e){return function(t){return y(e,(function(e,n){return t[n]===e}))}}function x(e){return p(e)?e:t=>t===e}function b(e){return e}function w(e){return Number(e)}function E(e,t){return e.bind(t)}function _(e,...t){return Object.assign(e,...t)}var A=1e3;function k(e,t){var n=this;t=t||A,e.on(["render.shape","render.connection"],t,(function(e,t){var i=e.type,r=t.element,o=t.gfx,a=t.attrs;if(n.canRender(r))return"render.shape"===i?n.drawShape(o,r,a):n.drawConnection(o,r,a)})),e.on(["render.getShapePath","render.getConnectionPath"],t,(function(e,t){if(n.canRender(t))return"render.getShapePath"===e.type?n.getShapePath(t):n.getConnectionPath(t)}))}function R(e,t){var n=S(e);return n&&"function"==typeof n.$instanceOf&&n.$instanceOf(t)}function S(e){return e&&e.businessObject||e}function C(e){return e&&e.di}function M(e,t){return!R(e,"bpmn:CallActivity")&&(R(e,"bpmn:SubProcess")?!(!(t=t||C(e))||!R(t,"bpmndi:BPMNPlane"))||t&&!!t.isExpanded:!R(e,"bpmn:Participant")||!!S(e).processRef)}function P(e){if(R(e,"bpmn:Participant")||R(e,"bpmn:Lane")){var t=C(e).isHorizontal;return void 0===t||t}}k.prototype.canRender=function(e){},k.prototype.drawShape=function(e,t){},k.prototype.drawConnection=function(e,t){},k.prototype.getShapePath=function(e){},k.prototype.getConnectionPath=function(e){};var D={width:90,height:20},T=15;function N(e){var t=e.length/2-1,n=e[Math.floor(t)],i=e[Math.ceil(t+.01)],r=function(e){var t=e.length/2-1,n=e[Math.floor(t)],i=e[Math.ceil(t+.01)];return{x:n.x+(i.x-n.x)/2,y:n.y+(i.y-n.y)/2}}(e),o=Math.atan((i.y-n.y)/(i.x-n.x)),a=r.x,s=r.y;return Math.abs(o)<Math.PI/2?s-=T:a+=T,{x:a,y:s}}function O(e,t){var n,i,r,o=e.label;return o&&o.bounds?(r=o.bounds,i={width:Math.max(D.width,r.width),height:r.height},n={x:r.x+r.width/2,y:r.y+r.height/2}):(n=function(e){return e.waypoints?N(e.waypoints):R(e,"bpmn:Group")?{x:e.x+e.width/2,y:e.y+D.height/2}:{x:e.x+e.width/2,y:e.y+e.height+D.height/2}}(t),i=D),_({x:n.x-i.width/2,y:n.y-i.height/2},i)}function B(e){var t=e.businessObject,n=function(e){return R(e,"bpmn:FlowElement")||R(e,"bpmn:Participant")||R(e,"bpmn:Lane")||R(e,"bpmn:SequenceFlow")||R(e,"bpmn:MessageFlow")||R(e,"bpmn:DataInput")||R(e,"bpmn:DataOutput")?"name":R(e,"bpmn:TextAnnotation")?"text":R(e,"bpmn:Group")?"categoryValueRef":void 0}(t);if(n)return"categoryValueRef"===n?function(e){var t=e.categoryValueRef;return t&&t.value||""}(t):t[n]||""}function L(e,t){return function(e,t){t.appendChild(function(e,t){if(e.ownerDocument!==t.ownerDocument)try{return t.ownerDocument.importNode(e,!0)}catch(e){}return e}(e,t))}(t,e),e}var I=2,F={"alignment-baseline":1,"baseline-shift":1,clip:1,"clip-path":1,"clip-rule":1,color:1,"color-interpolation":1,"color-interpolation-filters":1,"color-profile":1,"color-rendering":1,cursor:1,direction:1,display:1,"dominant-baseline":1,"enable-background":1,fill:1,"fill-opacity":1,"fill-rule":1,filter:1,"flood-color":1,"flood-opacity":1,font:1,"font-family":1,"font-size":I,"font-size-adjust":1,"font-stretch":1,"font-style":1,"font-variant":1,"font-weight":1,"glyph-orientation-horizontal":1,"glyph-orientation-vertical":1,"image-rendering":1,kerning:1,"letter-spacing":1,"lighting-color":1,marker:1,"marker-end":1,"marker-mid":1,"marker-start":1,mask:1,opacity:1,overflow:1,"pointer-events":1,"shape-rendering":1,"stop-color":1,"stop-opacity":1,stroke:1,"stroke-dasharray":1,"stroke-dashoffset":1,"stroke-linecap":1,"stroke-linejoin":1,"stroke-miterlimit":1,"stroke-opacity":1,"stroke-width":I,"text-anchor":1,"text-decoration":1,"text-rendering":1,"unicode-bidi":1,visibility:1,"word-spacing":1,"writing-mode":1};function j(e,t,n){var i=t.replace(/([a-z])([A-Z])/g,"$1-$2").toLowerCase(),r=F[i];r?(r===I&&"number"==typeof n&&(n=String(n)+"px"),e.style[i]=n):e.setAttributeNS(null,t,n)}function V(e,t,n){if("string"==typeof t){if(void 0===n)return function(e,t){return F[t]?e.style[t]:e.getAttributeNS(null,t)}(e,t);j(e,t,n)}else!function(e,t){var n,i,r=Object.keys(t);for(n=0;i=r[n];n++)j(e,i,t[i])}(e,t);return e}const W=Object.prototype.toString;function $(e){return new z(e)}function z(e){if(!e||!e.nodeType)throw new Error("A DOM element reference is required");this.el=e,this.list=e.classList}z.prototype.add=function(e){return this.list.add(e),this},z.prototype.remove=function(e){return"[object RegExp]"==W.call(e)?this.removeMatching(e):(this.list.remove(e),this)},z.prototype.removeMatching=function(e){const t=this.array();for(let n=0;n<t.length;n++)e.test(t[n])&&this.remove(t[n]);return this},z.prototype.toggle=function(e,t){return void 0!==t?t!==this.list.toggle(e,t)&&this.list.toggle(e):this.list.toggle(e),this},z.prototype.array=function(){return Array.from(this.list)},z.prototype.has=z.prototype.contains=function(e){return this.list.contains(e)};var G={svg:"http://www.w3.org/2000/svg"},H='<svg xmlns="'+G.svg+'"';function K(e){var t=!1;"<svg"===e.substring(0,4)?-1===e.indexOf(G.svg)&&(e=H+e.substring(4)):(e=H+">"+e+"</svg>",t=!0);var n=function(e){var t;return(t=new DOMParser).async=!1,t.parseFromString(e,"text/xml")}(e);if(!t)return n;for(var i=document.createDocumentFragment(),r=n.firstChild;r.firstChild;)i.appendChild(r.firstChild);return i}function U(e,t){var n;return"<"===(e=e.trim()).charAt(0)?(n=K(e).firstChild,n=document.importNode(n,!0)):n=document.createElementNS(G.svg,e),t&&V(n,t),n}var q=null;function Y(){return null===q&&(q=U("svg")),q}function X(e,t){var n,i,r=Object.keys(t);for(n=0;i=r[n];n++)e[i]=t[i];return e}function Z(e){return Y().createSVGTransform()}var J=/([&<>]{1})/g,Q=/([\n\r"]{1})/g,ee={"&":"&","<":"<",">":">",'"':"'"};function te(e,t){return e.replace(t,(function(e,t){return ee[t]||t}))}function ne(e,t){var n,i,r,o,a;switch(e.nodeType){case 3:t.push(te(e.textContent,J));break;case 1:if(t.push("<",e.tagName),e.hasAttributes())for(n=0,i=(r=e.attributes).length;n<i;++n)o=r.item(n),t.push(" ",o.name,'="',te(o.value,Q),'"');if(e.hasChildNodes()){for(t.push(">"),n=0,i=(a=e.childNodes).length;n<i;++n)ne(a.item(n),t);t.push("</",e.tagName,">")}else t.push("/>");break;case 8:t.push("\x3c!--",te(e.nodeValue,J),"--\x3e");break;case 4:t.push("<![CDATA[",e.nodeValue,"]]>");break;default:throw new Error("unable to handle node "+e.nodeType)}return t}function ie(e,t){return function(e){for(var t=e.firstChild,n=[];t;)ne(t,n),t=t.nextSibling;return n.join("")}(e)}function re(e){var t=e.parentNode;return t&&t.removeChild(e),e}function oe(e,t){return t instanceof SVGMatrix?e.createSVGTransformFromMatrix(t):t}function ae(e,t){var n=e.transform.baseVal;return t&&(Array.isArray(t)||(t=[t]),function(e,t){var n,i;for(e.clear(),n=0;i=t[n];n++)e.appendItem(oe(e,i))}(n,t)),n.consolidate()}function se(e){return e.flat().join(",").replace(/,?([A-Za-z]),?/g,"$1")}function le(e){return["L",e.x,e.y]}function pe(e,t){const n=e.length,i=[(r=e[0],["M",r.x,r.y])];var r,o,a,s;for(let r=1;r<n;r++){const n=e[r-1],l=e[r],p=e[r+1];if(!p||!t){i.push(le(l));continue}const c=Math.min(t,ue(l.x-n.x,l.y-n.y),ue(p.x-l.x,p.y-l.y));if(!c){i.push(le(l));continue}const u=ce(l,n,c),h=ce(l,n,.5*c),f=ce(l,p,c),m=ce(l,p,.5*c);i.push(le(u)),i.push((a=m,s=f,["C",(o=h).x,o.y,a.x,a.y,s.x,s.y]))}return i}function ce(e,t,n){const i=t.x-e.x,r=t.y-e.y,o=n/ue(i,r);return{x:e.x+i*o,y:e.y+r*o}}function ue(e,t){return Math.sqrt(Math.pow(e,2)+Math.pow(t,2))}function he(e,t,n){l(t)&&(n=t,t=null),t||(t={});const i=U("path",t);return l(n)&&(i.dataset.cornerRadius=String(n)),fe(i,e)}function fe(e,t){return V(e,{d:se(pe(t,parseInt(e.dataset.cornerRadius,10)||0))}),e}var me="hsl(225, 10%, 15%)",de="white";function ye(e,t){return g(e.eventDefinitions,(function(e){return e.$type===t}))}function ge(e,t,n){var i=C(e);return n||i.get("color:background-color")||i.get("bioc:fill")||t||de}function ve(e,t,n){var i=C(e);return n||i.get("color:border-color")||i.get("bioc:stroke")||t||me}function xe(e,t,n,i){var r=C(e).get("label");return i||r&&r.get("color:color")||t||ve(e,n)}function be(e,t){var n=e.x,i=e.y,r=e.width,o=e.height;return se([["M",n+t,i],["l",r-2*t,0],["a",t,t,0,0,1,t,t],["l",0,o-2*t],["a",t,t,0,0,1,-t,t],["l",2*t-r,0],["a",t,t,0,0,1,-t,-t],["l",0,2*t-o],["a",t,t,0,0,1,t,-t],["z"]])}function we(e,t={}){return{width:Ee(e,t),height:_e(e,t)}}function Ee(e,t={}){return u(t,"width")?t.width:e.width}function _e(e,t={}){return u(t,"height")?t.height:e.height}function Ae(e,t){return t.forEach((function(t){t&&"string"!=typeof t&&!Array.isArray(t)&&Object.keys(t).forEach((function(n){if("default"!==n&&!(n in e)){var i=Object.getOwnPropertyDescriptor(t,n);Object.defineProperty(e,n,i.get?i:{enumerable:!0,get:function(){return t[n]}})}}))})),Object.freeze(e)}const ke=Object.prototype.toString,Re=Object.prototype.hasOwnProperty;function Se(e,t){return Re.call(e,t)}function Ce(e,t){let n,i;if(void 0===e)return;const r=function(e){return"[object Array]"===ke.call(e)}(e)?Pe:Me;for(let o in e)if(Se(e,o)&&(n=e[o],i=t(n,r(o)),!1===i))return n}function Me(e){return e}function Pe(e){return Number(e)}function De(e,...t){const n=e.style;return Ce(t,(function(e){e&&Ce(e,(function(e,t){n[t]=e}))})),e}const Te=Object.prototype.toString;function Ne(e){return new Oe(e)}function Oe(e){if(!e||!e.nodeType)throw new Error("A DOM element reference is required");this.el=e,this.list=e.classList}Oe.prototype.add=function(e){return this.list.add(e),this},Oe.prototype.remove=function(e){return"[object RegExp]"==Te.call(e)?this.removeMatching(e):(this.list.remove(e),this)},Oe.prototype.removeMatching=function(e){const t=this.array();for(let n=0;n<t.length;n++)e.test(t[n])&&this.remove(t[n]);return this},Oe.prototype.toggle=function(e,t){return void 0!==t?t!==this.list.toggle(e,t)&&this.list.toggle(e):this.list.toggle(e),this},Oe.prototype.array=function(){return Array.from(this.list)},Oe.prototype.has=Oe.prototype.contains=function(e){return this.list.contains(e)};var Be,Le,Ie,Fe={};function je(){Be=window.addEventListener?"addEventListener":"attachEvent",Le=window.removeEventListener?"removeEventListener":"detachEvent",Ie="addEventListener"!==Be?"on":""}var Ve=Ae({__proto__:null,bind:Fe.bind=function(e,t,n,i){return Be||je(),e[Be](Ie+t,n,i||!1),n},unbind:Fe.unbind=function(e,t,n,i){return Le||je(),e[Le](Ie+t,n,i||!1),n},default:Fe},[Fe]),We=["focus","blur"];var $e,ze={bind:function(e,t,n,i,r){return-1!==We.indexOf(n)&&(r=!0),Ve.bind(e,n,(function(n){var r=n.target||n.srcElement;n.delegateTarget=function(e,t,n){var i=n?e:e.parentNode;return i&&"function"==typeof i.closest&&i.closest(t)||null}(r,t,!0),n.delegateTarget&&i.call(e,n)}),r)},unbind:function(e,t,n,i){return-1!==We.indexOf(t)&&(i=!0),Ve.unbind(e,t,n,i)}},Ge=function(e,t){if("string"!=typeof e)throw new TypeError("String expected");t||(t=document);var n=/<([\w:]+)/.exec(e);if(!n)return t.createTextNode(e);e=e.replace(/^\s+|\s+$/g,"");var i=n[1];if("body"==i){return(r=t.createElement("html")).innerHTML=e,r.removeChild(r.lastChild)}var r,o=Object.prototype.hasOwnProperty.call(Ke,i)?Ke[i]:Ke._default,a=o[0],s=o[1],l=o[2];(r=t.createElement("div")).innerHTML=s+e+l;for(;a--;)r=r.lastChild;if(r.firstChild==r.lastChild)return r.removeChild(r.firstChild);var p=t.createDocumentFragment();for(;r.firstChild;)p.appendChild(r.removeChild(r.firstChild));return p},He=!1;"undefined"!=typeof document&&(($e=document.createElement("div")).innerHTML=' <link/><table></table><a href="/a">a</a><input type="checkbox"/>',He=!$e.getElementsByTagName("link").length,$e=void 0);var Ke={legend:[1,"<fieldset>","</fieldset>"],tr:[2,"<table><tbody>","</tbody></table>"],col:[2,"<table><tbody></tbody><colgroup>","</colgroup></table>"],_default:He?[1,"X<div>","</div>"]:[0,"",""]};Ke.td=Ke.th=[3,"<table><tbody><tr>","</tr></tbody></table>"],Ke.option=Ke.optgroup=[1,'<select multiple="multiple">',"</select>"],Ke.thead=Ke.tbody=Ke.colgroup=Ke.caption=Ke.tfoot=[1,"<table>","</table>"],Ke.polyline=Ke.ellipse=Ke.polygon=Ke.circle=Ke.text=Ke.line=Ke.path=Ke.rect=Ke.g=[1,'<svg xmlns="http://www.w3.org/2000/svg" version="1.1">',"</svg>"];var Ue=Ge;function qe(e,t){return(t=t||document).querySelector(e)}function Ye(e,t,n,i,r){var o=Z();o.setTranslate(t,n);var a=Z();a.setRotate(i||0,0,0);var s=Z();s.setScale(1,1),ae(e,[o,a,s])}function Xe(e,t,n){var i=Z();i.setTranslate(t,n),ae(e,i)}var Ze=function(e,t){return e(t={exports:{}},t.exports),t.exports}((function(e){var t=e.exports=function(e,n){if(n||(n=16),void 0===e&&(e=128),e<=0)return"0";for(var i=Math.log(Math.pow(2,e))/Math.log(n),r=2;i===1/0;r*=2)i=Math.log(Math.pow(2,e/r))/Math.log(n)*r;var o=i-Math.floor(i),a="";for(r=0;r<Math.floor(i);r++){a=Math.floor(Math.random()*n).toString(n)+a}if(o){var s=Math.pow(n,o);a=Math.floor(Math.random()*s).toString(n)+a}var l=parseInt(a,n);return l!==1/0&&l>=Math.pow(2,e)?t(e,n):a};t.rack=function(e,n,i){var r=function(r){var a=0;do{if(a++>10){if(!i)throw new Error("too many ID collisions, use more bits");e+=i}var s=t(e,n)}while(Object.hasOwnProperty.call(o,s));return o[s]=r,s},o=r.hats={};return r.get=function(e){return r.hats[e]},r.set=function(e,t){return r.hats[e]=t,r},r.bits=e||128,r.base=n||16,r}}));function Je(e){if(!(this instanceof Je))return new Je(e);e=e||[128,36,1],this._seed=e.length?Ze.rack(e[0],e[1],e[2]):e}Je.prototype.next=function(e){return this._seed(e||!0)},Je.prototype.nextPrefixed=function(e,t){var n;do{n=e+this.next(!0)}while(this.assigned(n));return this.claim(n,t),n},Je.prototype.claim=function(e,t){this._seed.set(e,t||!0)},Je.prototype.assigned=function(e){return this._seed.get(e)||!1},Je.prototype.unclaim=function(e){delete this._seed.hats[e]},Je.prototype.clear=function(){var e,t=this._seed.hats;for(e in t)this.unclaim(e)};var Qe=new Je,et=.95;function tt(e,t,n,i,r,o,a){k.call(this,t,a);var l=e&&e.defaultFillColor,p=e&&e.defaultStrokeColor,c=e&&e.defaultLabelColor;function u(e){return n.computeStyle(e,{strokeLinecap:"round",strokeLinejoin:"round",stroke:me,strokeWidth:2,fill:"white"})}function h(e){return n.computeStyle(e,["no-fill"],{strokeLinecap:"round",strokeLinejoin:"round",stroke:me,strokeWidth:2})}function f(e,t){var{ref:n={x:0,y:0},scale:i=1,element:o,parentGfx:a=r._svg}=t,s=U("marker",{id:e,viewBox:"0 0 20 20",refX:n.x,refY:n.y,markerWidth:20*i,markerHeight:20*i,orient:"auto"});L(s,o);var l=qe(":scope > defs",a);l||L(a,l=U("defs")),L(l,s)}function d(e,t,n,i){var r=Qe.nextPrefixed("marker-");return function(e,t,n,i,r){if("sequenceflow-end"===n){f(t,{element:U("path",{d:"M 1 5 L 11 10 L 1 15 Z",...u({fill:r,stroke:r,strokeWidth:1})}),ref:{x:11,y:10},scale:.5,parentGfx:e})}if("messageflow-start"===n){f(t,{element:U("circle",{cx:6,cy:6,r:3.5,...u({fill:i,stroke:r,strokeWidth:1,strokeDasharray:[1e4,1]})}),ref:{x:6,y:6},parentGfx:e})}if("messageflow-end"===n){f(t,{element:U("path",{d:"m 1 5 l 0 -3 l 7 3 l -7 3 z",...u({fill:i,stroke:r,strokeWidth:1,strokeDasharray:[1e4,1]})}),ref:{x:8.5,y:5},parentGfx:e})}if("association-start"===n){f(t,{element:U("path",{d:"M 11 5 L 1 10 L 11 15",...h({fill:"none",stroke:r,strokeWidth:1.5,strokeDasharray:[1e4,1]})}),ref:{x:1,y:10},scale:.5,parentGfx:e})}if("association-end"===n){f(t,{element:U("path",{d:"M 1 5 L 11 10 L 1 15",...h({fill:"none",stroke:r,strokeWidth:1.5,strokeDasharray:[1e4,1]})}),ref:{x:11,y:10},scale:.5,parentGfx:e})}if("conditional-flow-marker"===n){f(t,{element:U("path",{d:"M 0 10 L 8 6 L 16 10 L 8 14 Z",...u({fill:i,stroke:r})}),ref:{x:-1,y:10},scale:.5,parentGfx:e})}if("conditional-default-flow-marker"===n){f(t,{element:U("path",{d:"M 6 4 L 10 16",...u({stroke:r,fill:"none"})}),ref:{x:0,y:10},scale:.5,parentGfx:e})}}(e,r,t,n,i),"url(#"+r+")"}function y(e,t,n,i,r={}){s(i)&&(r=i,i=0),i=i||0,r=u(r);var o=U("circle",{cx:t/2,cy:n/2,r:Math.round((t+n)/4-i),...r});return L(e,o),o}function g(e,t,n,i,r,o){s(r)&&(o=r,r=0),r=r||0,o=u(o);var a=U("rect",{x:r,y:r,width:t-2*r,height:n-2*r,rx:i,ry:i,...o});return L(e,a),a}function v(e,t,n,i){var r=he(t,n=h(n),i);return L(e,r),r}function x(e,t,n){return v(e,t,n,5)}function b(e,t,n){n=h(n);var i=U("path",{...n,d:t});return L(e,i),i}function w(e,t,n,i){return b(t,n,_({"data-marker":e},i))}function E(e){return Q[e]}function A(e){return function(t,n,i){return E(e)(t,n,i)}}var D={"bpmn:MessageEventDefinition":function(e,t,n={},r){return b(e,i.getScaledPath("EVENT_MESSAGE",{xScaleFactor:.9,yScaleFactor:.9,containerWidth:n.width||t.width,containerHeight:n.height||t.height,position:{mx:.235,my:.315}}),{fill:r?ve(t,p,n.stroke):ge(t,l,n.fill),stroke:r?ge(t,l,n.fill):ve(t,p,n.stroke),strokeWidth:1})},"bpmn:TimerEventDefinition":function(e,t,n={}){var r=n.width||t.width,o=n.height||t.height,a=n.width?1:2,s=y(e,r,o,.2*o,{fill:ge(t,l,n.fill),stroke:ve(t,p,n.stroke),strokeWidth:a});b(e,i.getScaledPath("EVENT_TIMER_WH",{xScaleFactor:.75,yScaleFactor:.75,containerWidth:r,containerHeight:o,position:{mx:.5,my:.5}}),{stroke:ve(t,p,n.stroke),strokeWidth:a});for(var c=0;c<12;c++){var u=r/2,h=o/2;b(e,i.getScaledPath("EVENT_TIMER_LINE",{xScaleFactor:.75,yScaleFactor:.75,containerWidth:r,containerHeight:o,position:{mx:.5,my:.5}}),{strokeWidth:1,stroke:ve(t,p,n.stroke),transform:"rotate("+30*c+","+h+","+u+")"})}return s},"bpmn:EscalationEventDefinition":function(e,t,n={},r){return b(e,i.getScaledPath("EVENT_ESCALATION",{xScaleFactor:1,yScaleFactor:1,containerWidth:n.width||t.width,containerHeight:n.height||t.height,position:{mx:.5,my:.2}}),{fill:r?ve(t,p,n.stroke):ge(t,l,n.fill),stroke:ve(t,p,n.stroke),strokeWidth:1})},"bpmn:ConditionalEventDefinition":function(e,t,n={}){return b(e,i.getScaledPath("EVENT_CONDITIONAL",{xScaleFactor:1,yScaleFactor:1,containerWidth:n.width||t.width,containerHeight:n.height||t.height,position:{mx:.5,my:.222}}),{fill:ge(t,l,n.fill),stroke:ve(t,p,n.stroke),strokeWidth:1})},"bpmn:LinkEventDefinition":function(e,t,n={},r){return b(e,i.getScaledPath("EVENT_LINK",{xScaleFactor:1,yScaleFactor:1,containerWidth:t.width,containerHeight:t.height,position:{mx:.57,my:.263}}),{fill:r?ve(t,p,n.stroke):ge(t,l,n.fill),stroke:ve(t,p,n.stroke),strokeWidth:1})},"bpmn:ErrorEventDefinition":function(e,t,n={},r){return b(e,i.getScaledPath("EVENT_ERROR",{xScaleFactor:1.1,yScaleFactor:1.1,containerWidth:n.width||t.width,containerHeight:n.height||t.height,position:{mx:.2,my:.722}}),{fill:r?ve(t,p,n.stroke):ge(t,l,n.fill),stroke:ve(t,p,n.stroke),strokeWidth:1})},"bpmn:CancelEventDefinition":function(e,t,n={},r){var o=b(e,i.getScaledPath("EVENT_CANCEL_45",{xScaleFactor:1,yScaleFactor:1,containerWidth:t.width,containerHeight:t.height,position:{mx:.638,my:-.055}}),{fill:r?ve(t,p,n.stroke):"none",stroke:ve(t,p,n.stroke),strokeWidth:1});return function(e,t){var n=Z();n.setRotate(t,0,0),ae(e,n)}(o,45),o},"bpmn:CompensateEventDefinition":function(e,t,n={},r){return b(e,i.getScaledPath("EVENT_COMPENSATION",{xScaleFactor:1,yScaleFactor:1,containerWidth:n.width||t.width,containerHeight:n.height||t.height,position:{mx:.22,my:.5}}),{fill:r?ve(t,p,n.stroke):ge(t,l,n.fill),stroke:ve(t,p,n.stroke),strokeWidth:1})},"bpmn:SignalEventDefinition":function(e,t,n={},r){return b(e,i.getScaledPath("EVENT_SIGNAL",{xScaleFactor:.9,yScaleFactor:.9,containerWidth:n.width||t.width,containerHeight:n.height||t.height,position:{mx:.5,my:.2}}),{strokeWidth:1,fill:r?ve(t,p,n.stroke):ge(t,l,n.fill),stroke:ve(t,p,n.stroke)})},"bpmn:MultipleEventDefinition":function(e,t,n={},r){return b(e,i.getScaledPath("EVENT_MULTIPLE",{xScaleFactor:1.1,yScaleFactor:1.1,containerWidth:n.width||t.width,containerHeight:n.height||t.height,position:{mx:.211,my:.36}}),{fill:r?ve(t,p,n.stroke):ge(t,l,n.fill),stroke:ve(t,p,n.stroke),strokeWidth:1})},"bpmn:ParallelMultipleEventDefinition":function(e,t,n={}){return b(e,i.getScaledPath("EVENT_PARALLEL_MULTIPLE",{xScaleFactor:1.2,yScaleFactor:1.2,containerWidth:n.width||t.width,containerHeight:n.height||t.height,position:{mx:.458,my:.194}}),{fill:ge(t,l,n.fill),stroke:ve(t,p,n.stroke),strokeWidth:1})},"bpmn:TerminateEventDefinition":function(e,t,n={}){return y(e,t.width,t.height,8,{fill:ve(t,p,n.stroke),stroke:ve(t,p,n.stroke),strokeWidth:4})}};function T(e,t,n={},i){var r=S(e),o=function(e){return"bpmn:IntermediateThrowEvent"===e.$type||"bpmn:EndEvent"===e.$type}(r),a=i||e;return r.get("eventDefinitions")&&r.get("eventDefinitions").length>1?r.get("parallelMultiple")?D["bpmn:ParallelMultipleEventDefinition"](t,a,n,o):D["bpmn:MultipleEventDefinition"](t,a,n,o):ye(r,"bpmn:MessageEventDefinition")?D["bpmn:MessageEventDefinition"](t,a,n,o):ye(r,"bpmn:TimerEventDefinition")?D["bpmn:TimerEventDefinition"](t,a,n,o):ye(r,"bpmn:ConditionalEventDefinition")?D["bpmn:ConditionalEventDefinition"](t,a,n,o):ye(r,"bpmn:SignalEventDefinition")?D["bpmn:SignalEventDefinition"](t,a,n,o):ye(r,"bpmn:EscalationEventDefinition")?D["bpmn:EscalationEventDefinition"](t,a,n,o):ye(r,"bpmn:LinkEventDefinition")?D["bpmn:LinkEventDefinition"](t,a,n,o):ye(r,"bpmn:ErrorEventDefinition")?D["bpmn:ErrorEventDefinition"](t,a,n,o):ye(r,"bpmn:CancelEventDefinition")?D["bpmn:CancelEventDefinition"](t,a,n,o):ye(r,"bpmn:CompensateEventDefinition")?D["bpmn:CompensateEventDefinition"](t,a,n,o):ye(r,"bpmn:TerminateEventDefinition")?D["bpmn:TerminateEventDefinition"](t,a,n,o):null}var N={ParticipantMultiplicityMarker:function(e,t,n={}){var r=Ee(t,n),o=_e(t,n);w("participant-multiplicity",e,i.getScaledPath("MARKER_PARALLEL",{xScaleFactor:1,yScaleFactor:1,containerWidth:r,containerHeight:o,position:{mx:(r/2-6)/r,my:(o-15)/o}}),{strokeWidth:2,fill:ge(t,l,n.fill),stroke:ve(t,p,n.stroke)})},SubProcessMarker:function(e,t,n={}){Xe(g(e,14,14,0,{strokeWidth:1,fill:ge(t,l,n.fill),stroke:ve(t,p,n.stroke)}),t.width/2-7.5,t.height-20),w("sub-process",e,i.getScaledPath("MARKER_SUB_PROCESS",{xScaleFactor:1.5,yScaleFactor:1.5,containerWidth:t.width,containerHeight:t.height,position:{mx:(t.width/2-7.5)/t.width,my:(t.height-20)/t.height}}),{fill:ge(t,l,n.fill),stroke:ve(t,p,n.stroke)})},ParallelMarker:function(e,t,n){var r=Ee(t,n),o=_e(t,n);w("parallel",e,i.getScaledPath("MARKER_PARALLEL",{xScaleFactor:1,yScaleFactor:1,containerWidth:r,containerHeight:o,position:{mx:(r/2+n.parallel)/r,my:(o-20)/o}}),{fill:ge(t,l,n.fill),stroke:ve(t,p,n.stroke)})},SequentialMarker:function(e,t,n){w("sequential",e,i.getScaledPath("MARKER_SEQUENTIAL",{xScaleFactor:1,yScaleFactor:1,containerWidth:t.width,containerHeight:t.height,position:{mx:(t.width/2+n.seq)/t.width,my:(t.height-19)/t.height}}),{fill:ge(t,l,n.fill),stroke:ve(t,p,n.stroke)})},CompensationMarker:function(e,t,n){w("compensation",e,i.getScaledPath("MARKER_COMPENSATION",{xScaleFactor:1,yScaleFactor:1,containerWidth:t.width,containerHeight:t.height,position:{mx:(t.width/2+n.compensation)/t.width,my:(t.height-13)/t.height}}),{strokeWidth:1,fill:ge(t,l,n.fill),stroke:ve(t,p,n.stroke)})},LoopMarker:function(e,t,n){var r=Ee(t,n),o=_e(t,n);w("loop",e,i.getScaledPath("MARKER_LOOP",{xScaleFactor:1,yScaleFactor:1,containerWidth:r,containerHeight:o,position:{mx:(r/2+n.loop)/r,my:(o-7)/o}}),{strokeWidth:1.5,fill:"none",stroke:ve(t,p,n.stroke),strokeMiterlimit:.5})},AdhocMarker:function(e,t,n){var r=Ee(t,n),o=_e(t,n);w("adhoc",e,i.getScaledPath("MARKER_ADHOC",{xScaleFactor:1,yScaleFactor:1,containerWidth:r,containerHeight:o,position:{mx:(r/2+n.adhoc)/r,my:(o-15)/o}}),{strokeWidth:1,fill:ve(t,p,n.stroke),stroke:ve(t,p,n.stroke)})}};function O(e,t,n,i){N[e](t,n,i)}function I(e,t,n=[],i={}){i={fill:i.fill,stroke:i.stroke,width:Ee(t,i),height:_e(t,i)};var r=S(t),o=n.includes("SubProcessMarker");i=o?{...i,seq:-21,parallel:-22,compensation:-25,loop:-18,adhoc:10}:{...i,seq:-5,parallel:-6,compensation:-7,loop:0,adhoc:-8},r.get("isForCompensation")&&n.push("CompensationMarker"),R(r,"bpmn:AdHocSubProcess")&&(n.push("AdhocMarker"),o||_(i,{compensation:i.compensation-18}));var a=r.get("loopCharacteristics"),s=a&&a.get("isSequential");a&&(_(i,{compensation:i.compensation-18}),n.includes("AdhocMarker")&&_(i,{seq:-23,loop:-18,parallel:-24}),void 0===s&&n.push("LoopMarker"),!1===s&&n.push("ParallelMarker"),!0===s&&n.push("SequentialMarker")),n.includes("CompensationMarker")&&1===n.length&&_(i,{compensation:-8}),m(n,(function(n){O(n,e,t,i)}))}function F(e,t,n={}){n=_({size:{width:100}},n);var i=o.createText(t||"",n);return $(i).add("djs-label"),L(e,i),i}function j(e,t,n,i={}){var r=S(t),o=we({x:t.x,y:t.y,width:t.width,height:t.height},i);return F(e,r.name,{align:n,box:o,padding:7,style:{fill:xe(t,c,p,i.stroke)}})}function W(e,t,n,i={}){var r=P(n),o=F(e,t,{box:{height:30,width:r?_e(n,i):Ee(n,i)},align:"center-middle",style:{fill:xe(n,c,p,i.stroke)}});r&&Ye(o,0,-(-1*_e(n,i)),270)}function z(e,t,n={}){var{width:i,height:r}=we(t,n);return g(e,i,r,10,{...n,fill:ge(t,l,n.fill),fillOpacity:et,stroke:ve(t,p,n.stroke)})}function G(e,t,n={}){var i=S(t),r=ge(t,l,n.fill),o=ve(t,p,n.stroke);return"One"!==i.get("associationDirection")&&"Both"!==i.get("associationDirection")||(n.markerEnd=d(e,"association-end",r,o)),"Both"===i.get("associationDirection")&&(n.markerStart=d(e,"association-start",r,o)),n=nt(n,["markerStart","markerEnd"]),x(e,t.waypoints,{...n,stroke:o,strokeDasharray:"0, 5"})}function H(e,t,n={}){var r=ge(t,l,n.fill),o=ve(t,p,n.stroke),a=b(e,i.getScaledPath("DATA_OBJECT_PATH",{xScaleFactor:1,yScaleFactor:1,containerWidth:t.width,containerHeight:t.height,position:{mx:.474,my:.296}}),{fill:r,fillOpacity:et,stroke:o});(function(e){var t=e.dataObjectRef;return e.isCollection||t&&t.isCollection})(S(t))&&b(e,i.getScaledPath("DATA_OBJECT_COLLECTION_PATH",{xScaleFactor:1,yScaleFactor:1,containerWidth:t.width,containerHeight:t.height,position:{mx:.33,my:(t.height-18)/t.height}}),{strokeWidth:2,fill:r,stroke:o});return a}function K(e,t,n={}){return y(e,t.width,t.height,{fillOpacity:et,...n,fill:ge(t,l,n.fill),stroke:ve(t,p,n.stroke)})}function q(e,t,n={}){return function(e,t,n,i){var r=t/2,o=n/2,a=[{x:r,y:0},{x:t,y:o},{x:r,y:n},{x:0,y:o}].map((function(e){return e.x+","+e.y})).join(" ");i=u(i);var s=U("polygon",{...i,points:a});return L(e,s),s}(e,t.width,t.height,{fill:ge(t,l,n.fill),fillOpacity:et,stroke:ve(t,p,n.stroke)})}function Y(e,t,n={}){var i=g(e,Ee(t,n),_e(t,n),0,{fill:ge(t,l,n.fill),fillOpacity:n.fillOpacity||et,stroke:ve(t,p,n.stroke),strokeWidth:1.5}),r=S(t);R(r,"bpmn:Lane")&&W(e,r.get("name"),t,n);return i}function X(e,t,n={}){var i=z(e,t,n),r=M(t);if(function(e){return e&&!!S(e).triggeredByEvent}(t)&&(V(i,{strokeDasharray:"0, 5.5",strokeWidth:2.5}),!r)){var o=(S(t).flowElements||[]).filter((e=>R(e,"bpmn:StartEvent")));1===o.length&&function(e,t,n,i){var r=22,o={fill:ge(i,l,n.fill),stroke:ve(i,p,n.stroke),width:r,height:r},a=S(e).isInterrupting,s=a?0:3,c=a?1:1.2,u=20,h=(r-u)/2,f="translate("+h+","+h+")";y(t,u,u,{fill:o.fill,stroke:o.stroke,strokeWidth:c,strokeDasharray:s,transform:f}),T(e,t,o,i)}(o[0],e,n,t)}return j(e,t,r?"center-top":"center-middle",n),I(e,t,r?void 0:["SubProcessMarker"],n),i}function J(e,t,n={}){var i=z(e,t,n);return j(e,t,"center-middle",n),I(e,t,void 0,n),i}var Q=this.handlers={"bpmn:AdHocSubProcess":function(e,t,n={}){return X(e,t,n=M(t)?nt(n,["fill","stroke","width","height"]):nt(n,["fill","stroke"]))},"bpmn:Association":function(e,t,n={}){return G(e,t,n=nt(n,["fill","stroke"]))},"bpmn:BoundaryEvent":function(e,t,n={}){var{renderIcon:i=!0}=n;n=nt(n,["fill","stroke"]);var r=S(t).get("cancelActivity");n={strokeWidth:1.5,fill:ge(t,l,n.fill),fillOpacity:1,stroke:ve(t,p,n.stroke)},r||(n.strokeDasharray="6");var o=K(e,t,n);return y(e,t.width,t.height,3,{...n,fill:"none"}),i&&T(t,e,n),o},"bpmn:BusinessRuleTask":function(e,t,n={}){var r=J(e,t,n=nt(n,["fill","stroke"]));return V(b(e,i.getScaledPath("TASK_TYPE_BUSINESS_RULE_MAIN",{abspos:{x:8,y:8}})),{fill:ge(t,l,n.fill),stroke:ve(t,p,n.stroke),strokeWidth:1}),V(b(e,i.getScaledPath("TASK_TYPE_BUSINESS_RULE_HEADER",{abspos:{x:8,y:8}})),{fill:ve(t,p,n.stroke),stroke:ve(t,p,n.stroke),strokeWidth:1}),r},"bpmn:CallActivity":function(e,t,n={}){return n=nt(n,["fill","stroke"]),X(e,t,{strokeWidth:5,...n})},"bpmn:ComplexGateway":function(e,t,n={}){var r=q(e,t,n=nt(n,["fill","stroke"]));return b(e,i.getScaledPath("GATEWAY_COMPLEX",{xScaleFactor:.5,yScaleFactor:.5,containerWidth:t.width,containerHeight:t.height,position:{mx:.46,my:.26}}),{fill:ve(t,p,n.stroke),stroke:ve(t,p,n.stroke),strokeWidth:1}),r},"bpmn:DataInput":function(e,t,n={}){n=nt(n,["fill","stroke"]);var r=i.getRawPath("DATA_ARROW"),o=H(e,t,n);return b(e,r,{fill:"none",stroke:ve(t,p,n.stroke),strokeWidth:1}),o},"bpmn:DataInputAssociation":function(e,t,n={}){return n=nt(n,["fill","stroke"]),G(e,t,{...n,markerEnd:d(e,"association-end",ge(t,l,n.fill),ve(t,p,n.stroke))})},"bpmn:DataObject":function(e,t,n={}){return H(e,t,n=nt(n,["fill","stroke"]))},"bpmn:DataObjectReference":A("bpmn:DataObject"),"bpmn:DataOutput":function(e,t,n={}){n=nt(n,["fill","stroke"]);var r=i.getRawPath("DATA_ARROW"),o=H(e,t,n);return b(e,r,{strokeWidth:1,fill:ge(t,l,n.fill),stroke:ve(t,p,n.stroke)}),o},"bpmn:DataOutputAssociation":function(e,t,n={}){return n=nt(n,["fill","stroke"]),G(e,t,{...n,markerEnd:d(e,"association-end",ge(t,l,n.fill),ve(t,p,n.stroke))})},"bpmn:DataStoreReference":function(e,t,n={}){return n=nt(n,["fill","stroke"]),b(e,i.getScaledPath("DATA_STORE",{xScaleFactor:1,yScaleFactor:1,containerWidth:t.width,containerHeight:t.height,position:{mx:0,my:.133}}),{fill:ge(t,l,n.fill),fillOpacity:et,stroke:ve(t,p,n.stroke),strokeWidth:2})},"bpmn:EndEvent":function(e,t,n={}){var{renderIcon:i=!0}=n;n=nt(n,["fill","stroke"]);var r=K(e,t,{...n,strokeWidth:4});return i&&T(t,e,n),r},"bpmn:EventBasedGateway":function(e,t,n={}){n=nt(n,["fill","stroke"]);var r=S(t),o=q(e,t,n);y(e,t.width,t.height,.2*t.height,{fill:ge(t,"none",n.fill),stroke:ve(t,p,n.stroke),strokeWidth:1});var a=r.get("eventGatewayType"),s=!!r.get("instantiate");if("Parallel"===a){var l=i.getScaledPath("GATEWAY_PARALLEL",{xScaleFactor:.4,yScaleFactor:.4,containerWidth:t.width,containerHeight:t.height,position:{mx:.474,my:.296}});b(e,l,{fill:"none",stroke:ve(t,p,n.stroke),strokeWidth:1})}else"Exclusive"===a&&(s||y(e,t.width,t.height,.26*t.height,{fill:"none",stroke:ve(t,p,n.stroke),strokeWidth:1}),function(){var r=i.getScaledPath("GATEWAY_EVENT_BASED",{xScaleFactor:.18,yScaleFactor:.18,containerWidth:t.width,containerHeight:t.height,position:{mx:.36,my:.44}});b(e,r,{fill:"none",stroke:ve(t,p,n.stroke),strokeWidth:2})}());return o},"bpmn:ExclusiveGateway":function(e,t,n={}){var r=q(e,t,n=nt(n,["fill","stroke"])),o=i.getScaledPath("GATEWAY_EXCLUSIVE",{xScaleFactor:.4,yScaleFactor:.4,containerWidth:t.width,containerHeight:t.height,position:{mx:.32,my:.3}});return C(t).get("isMarkerVisible")&&b(e,o,{fill:ve(t,p,n.stroke),stroke:ve(t,p,n.stroke),strokeWidth:1}),r},"bpmn:Gateway":function(e,t,n={}){return q(e,t,n=nt(n,["fill","stroke"]))},"bpmn:Group":function(e,t,n={}){return n=nt(n,["fill","stroke","width","height"]),g(e,t.width,t.height,10,{stroke:ve(t,p,n.stroke),strokeWidth:1.5,strokeDasharray:"10, 6, 0, 6",fill:"none",pointerEvents:"none",width:Ee(t,n),height:_e(t,n)})},"bpmn:InclusiveGateway":function(e,t,n={}){var i=q(e,t,n=nt(n,["fill","stroke"]));return y(e,t.width,t.height,.24*t.height,{fill:ge(t,l,n.fill),stroke:ve(t,p,n.stroke),strokeWidth:2.5}),i},"bpmn:IntermediateEvent":function(e,t,n={}){var{renderIcon:i=!0}=n;n=nt(n,["fill","stroke"]);var r=K(e,t,{...n,strokeWidth:1.5});return y(e,t.width,t.height,3,{fill:"none",stroke:ve(t,p,n.stroke),strokeWidth:1.5}),i&&T(t,e,n),r},"bpmn:IntermediateCatchEvent":A("bpmn:IntermediateEvent"),"bpmn:IntermediateThrowEvent":A("bpmn:IntermediateEvent"),"bpmn:Lane":function(e,t,n={}){return n=nt(n,["fill","stroke","width","height"]),Y(e,t,{...n,fillOpacity:.25})},"bpmn:ManualTask":function(e,t,n={}){var r=J(e,t,n=nt(n,["fill","stroke"]));return b(e,i.getScaledPath("TASK_TYPE_MANUAL",{abspos:{x:17,y:15}}),{fill:ge(t,l,n.fill),stroke:ve(t,p,n.stroke),strokeWidth:.5}),r},"bpmn:MessageFlow":function(e,t,n={}){n=nt(n,["fill","stroke"]);var r=S(t),o=C(t),a=ge(t,l,n.fill),s=ve(t,p,n.stroke),c=x(e,t.waypoints,{markerEnd:d(e,"messageflow-end",a,s),markerStart:d(e,"messageflow-start",a,s),stroke:s,strokeDasharray:"10, 11",strokeWidth:1.5});if(r.get("messageRef")){var u=c.getPointAtLength(c.getTotalLength()/2),h=i.getScaledPath("MESSAGE_FLOW_MARKER",{abspos:{x:u.x,y:u.y}}),f={strokeWidth:1};"initiating"===o.get("messageVisibleKind")?(f.fill=a,f.stroke=s):(f.fill=s,f.stroke=a);var m=b(e,h,f),y=F(e,r.get("messageRef").get("name"),{align:"center-top",fitBox:!0,style:{fill:s}}),g=m.getBBox(),v=y.getBBox();Ye(y,u.x-v.width/2,u.y+g.height/2+10,0)}return c},"bpmn:ParallelGateway":function(e,t,n={}){var r=q(e,t,n=nt(n,["fill","stroke"]));return b(e,i.getScaledPath("GATEWAY_PARALLEL",{xScaleFactor:.6,yScaleFactor:.6,containerWidth:t.width,containerHeight:t.height,position:{mx:.46,my:.2}}),{fill:ve(t,p,n.stroke),stroke:ve(t,p,n.stroke),strokeWidth:1}),r},"bpmn:Participant":function(e,t,n={}){var i=Y(e,t,n=nt(n,["fill","stroke","width","height"])),r=M(t),o=P(t),a=S(t),s=a.get("name");if(r){v(e,o?[{x:30,y:0},{x:30,y:_e(t,n)}]:[{x:0,y:30},{x:Ee(t,n),y:30}],{stroke:ve(t,p,n.stroke),strokeWidth:1.5}),W(e,s,t,n)}else{var l=we(t,n);o||(l.height=Ee(t,n),l.width=_e(t,n));var u=F(e,s,{box:l,align:"center-middle",style:{fill:xe(t,c,p,n.stroke)}});if(!o)Ye(u,0,-(-1*_e(t,n)),270)}return a.get("participantMultiplicity")&&O("ParticipantMultiplicityMarker",e,t,n),i},"bpmn:ReceiveTask":function(e,t,n={}){n=nt(n,["fill","stroke"]);var r,o=S(t),a=J(e,t,n);return o.get("instantiate")?(y(e,28,28,4.4,{fill:ge(t,l,n.fill),stroke:ve(t,p,n.stroke),strokeWidth:1}),r=i.getScaledPath("TASK_TYPE_INSTANTIATING_SEND",{abspos:{x:7.77,y:9.52}})):r=i.getScaledPath("TASK_TYPE_SEND",{xScaleFactor:.9,yScaleFactor:.9,containerWidth:21,containerHeight:14,position:{mx:.3,my:.4}}),b(e,r,{fill:ge(t,l,n.fill),stroke:ve(t,p,n.stroke),strokeWidth:1}),a},"bpmn:ScriptTask":function(e,t,n={}){var r=J(e,t,n=nt(n,["fill","stroke"]));return b(e,i.getScaledPath("TASK_TYPE_SCRIPT",{abspos:{x:15,y:20}}),{fill:ge(t,l,n.fill),stroke:ve(t,p,n.stroke),strokeWidth:1}),r},"bpmn:SendTask":function(e,t,n={}){var r=J(e,t,n=nt(n,["fill","stroke"]));return b(e,i.getScaledPath("TASK_TYPE_SEND",{xScaleFactor:1,yScaleFactor:1,containerWidth:21,containerHeight:14,position:{mx:.285,my:.357}}),{fill:ve(t,p,n.stroke),stroke:ge(t,l,n.fill),strokeWidth:1}),r},"bpmn:SequenceFlow":function(e,t,n={}){n=nt(n,["fill","stroke"]);var i=ge(t,l,n.fill),r=ve(t,p,n.stroke),o=x(e,t.waypoints,{markerEnd:d(e,"sequenceflow-end",i,r),stroke:r}),a=S(t),{source:s}=t;if(s){var c=S(s);a.get("conditionExpression")&&R(c,"bpmn:Activity")&&V(o,{markerStart:d(e,"conditional-flow-marker",i,r)}),c.get("default")&&(R(c,"bpmn:Gateway")||R(c,"bpmn:Activity"))&&c.get("default")===a&&V(o,{markerStart:d(e,"conditional-default-flow-marker",i,r)})}return o},"bpmn:ServiceTask":function(e,t,n={}){var r=J(e,t,n=nt(n,["fill","stroke"]));return y(e,10,10,{fill:ge(t,l,n.fill),stroke:"none",transform:"translate(6, 6)"}),b(e,i.getScaledPath("TASK_TYPE_SERVICE",{abspos:{x:12,y:18}}),{fill:ge(t,l,n.fill),stroke:ve(t,p,n.stroke),strokeWidth:1}),y(e,10,10,{fill:ge(t,l,n.fill),stroke:"none",transform:"translate(11, 10)"}),b(e,i.getScaledPath("TASK_TYPE_SERVICE",{abspos:{x:17,y:22}}),{fill:ge(t,l,n.fill),stroke:ve(t,p,n.stroke),strokeWidth:1}),r},"bpmn:StartEvent":function(e,t,n={}){var{renderIcon:i=!0}=n;n=nt(n,["fill","stroke"]),S(t).get("isInterrupting")||(n={...n,strokeDasharray:"6"});var r=K(e,t,n);return i&&T(t,e,n),r},"bpmn:SubProcess":function(e,t,n={}){return X(e,t,n=M(t)?nt(n,["fill","stroke","width","height"]):nt(n,["fill","stroke"]))},"bpmn:Task":function(e,t,n={}){return J(e,t,n=nt(n,["fill","stroke"]))},"bpmn:TextAnnotation":function(e,t,n={}){n=nt(n,["fill","stroke","width","height"]);var{width:r,height:o}=we(t,n),a=g(e,r,o,0,0,{fill:"none",stroke:"none"});return b(e,i.getScaledPath("TEXT_ANNOTATION",{xScaleFactor:1,yScaleFactor:1,containerWidth:r,containerHeight:o,position:{mx:0,my:0}}),{stroke:ve(t,p,n.stroke)}),F(e,S(t).get("text")||"",{align:"left-top",box:we(t,n),padding:7,style:{fill:xe(t,c,p,n.stroke)}}),a},"bpmn:Transaction":function(e,t,i={}){i=M(t)?nt(i,["fill","stroke","width","height"]):nt(i,["fill","stroke"]);var r=X(e,t,{strokeWidth:1.5,...i}),o=n.style(["no-fill","no-events"],{stroke:ve(t,p,i.stroke),strokeWidth:1.5});return M(t)||(i={}),g(e,Ee(t,i),_e(t,i),7,3,o),r},"bpmn:UserTask":function(e,t,n={}){var r=J(e,t,n=nt(n,["fill","stroke"]));return b(e,i.getScaledPath("TASK_TYPE_USER_1",{abspos:{x:15,y:12}}),{fill:ge(t,l,n.fill),stroke:ve(t,p,n.stroke),strokeWidth:.5}),b(e,i.getScaledPath("TASK_TYPE_USER_2",{abspos:{x:15,y:12}}),{fill:ge(t,l,n.fill),stroke:ve(t,p,n.stroke),strokeWidth:.5}),b(e,i.getScaledPath("TASK_TYPE_USER_3",{abspos:{x:15,y:12}}),{fill:ve(t,p,n.stroke),stroke:ve(t,p,n.stroke),strokeWidth:.5}),r},label:function(e,t,n={}){return function(e,t,n={}){var i={width:90,height:30,x:t.width/2+t.x,y:t.height/2+t.y};return F(e,B(t),{box:i,fitBox:!0,style:_({},o.getExternalStyle(),{fill:xe(t,c,p,n.stroke)})})}(e,t,n)}};this._drawPath=b,this._renderer=E}function nt(e,t=[]){return t.reduce(((t,n)=>(e[n]&&(t[n]=e[n]),t)),{})}function it(e,t){return t.forEach((function(t){t&&"string"!=typeof t&&!Array.isArray(t)&&Object.keys(t).forEach((function(n){if("default"!==n&&!(n in e)){var i=Object.getOwnPropertyDescriptor(t,n);Object.defineProperty(e,n,i.get?i:{enumerable:!0,get:function(){return t[n]}})}}))})),Object.freeze(e)}e(tt,k),tt.$inject=["config.bpmnRenderer","eventBus","styles","pathMap","canvas","textRenderer"],tt.prototype.canRender=function(e){return R(e,"bpmn:BaseElement")},tt.prototype.drawShape=function(e,t,n={}){var{type:i}=t;return this._renderer(i)(e,t,n)},tt.prototype.drawConnection=function(e,t,n={}){var{type:i}=t;return this._renderer(i)(e,t,n)},tt.prototype.getShapePath=function(e){return s(t=e)&&u(t,"labelTarget")?be(e,4):R(e,"bpmn:Event")?function(e){var t=e.x+e.width/2,n=e.y+e.height/2,i=e.width/2;return se([["M",t,n],["m",0,-i],["a",i,i,0,1,1,0,2*i],["a",i,i,0,1,1,0,-2*i],["z"]])}(e):R(e,"bpmn:Activity")?be(e,10):R(e,"bpmn:Gateway")?function(e){var t=e.width/2,n=e.height/2;return se([["M",e.x+t,e.y],["l",t,n],["l",-t,n],["l",-t,-n],["z"]])}(e):function(e){var t=e.x,n=e.y,i=e.width;return se([["M",t,n],["l",i,0],["l",0,e.height],["l",-i,0],["z"]])}(e);var t};const rt=Object.prototype.toString,ot=Object.prototype.hasOwnProperty;function at(e,t){return ot.call(e,t)}function st(e,t){let n,i;if(void 0===e)return;const r=function(e){return"[object Array]"===rt.call(e)}(e)?pt:lt;for(let o in e)if(at(e,o)&&(n=e[o],i=t(n,r(o)),!1===i))return n}function lt(e){return e}function pt(e){return Number(e)}function ct(e,...t){const n=e.style;return st(t,(function(e){e&&st(e,(function(e,t){n[t]=e}))})),e}function ut(e,t,n){return 2==arguments.length?e.getAttribute(t):null===n?e.removeAttribute(t):(e.setAttribute(t,n),e)}const ht=Object.prototype.toString;function ft(e){return new mt(e)}function mt(e){if(!e||!e.nodeType)throw new Error("A DOM element reference is required");this.el=e,this.list=e.classList}function dt(e){for(var t;t=e.firstChild;)e.removeChild(t);return e}mt.prototype.add=function(e){return this.list.add(e),this},mt.prototype.remove=function(e){return"[object RegExp]"==ht.call(e)?this.removeMatching(e):(this.list.remove(e),this)},mt.prototype.removeMatching=function(e){const t=this.array();for(let n=0;n<t.length;n++)e.test(t[n])&&this.remove(t[n]);return this},mt.prototype.toggle=function(e,t){return void 0!==t?t!==this.list.toggle(e,t)&&this.list.toggle(e):this.list.toggle(e),this},mt.prototype.array=function(){return Array.from(this.list)},mt.prototype.has=mt.prototype.contains=function(e){return this.list.contains(e)};var yt,gt,vt,xt={};function bt(){yt=window.addEventListener?"addEventListener":"attachEvent",gt=window.removeEventListener?"removeEventListener":"detachEvent",vt="addEventListener"!==yt?"on":""}var wt=it({__proto__:null,bind:xt.bind=function(e,t,n,i){return yt||bt(),e[yt](vt+t,n,i||!1),n},unbind:xt.unbind=function(e,t,n,i){return gt||bt(),e[gt](vt+t,n,i||!1),n},default:xt},[xt]),Et=["focus","blur"];var _t,At={bind:function(e,t,n,i,r){return-1!==Et.indexOf(n)&&(r=!0),wt.bind(e,n,(function(n){var r=n.target||n.srcElement;n.delegateTarget=function(e,t,n){var i=n?e:e.parentNode;return i&&"function"==typeof i.closest&&i.closest(t)||null}(r,t,!0),n.delegateTarget&&i.call(e,n)}),r)},unbind:function(e,t,n,i){return-1!==Et.indexOf(t)&&(i=!0),wt.unbind(e,t,n,i)}},kt=function(e,t){if("string"!=typeof e)throw new TypeError("String expected");t||(t=document);var n=/<([\w:]+)/.exec(e);if(!n)return t.createTextNode(e);e=e.replace(/^\s+|\s+$/g,"");var i=n[1];if("body"==i){return(r=t.createElement("html")).innerHTML=e,r.removeChild(r.lastChild)}var r,o=Object.prototype.hasOwnProperty.call(St,i)?St[i]:St._default,a=o[0],s=o[1],l=o[2];(r=t.createElement("div")).innerHTML=s+e+l;for(;a--;)r=r.lastChild;if(r.firstChild==r.lastChild)return r.removeChild(r.firstChild);var p=t.createDocumentFragment();for(;r.firstChild;)p.appendChild(r.removeChild(r.firstChild));return p},Rt=!1;"undefined"!=typeof document&&((_t=document.createElement("div")).innerHTML=' <link/><table></table><a href="/a">a</a><input type="checkbox"/>',Rt=!_t.getElementsByTagName("link").length,_t=void 0);var St={legend:[1,"<fieldset>","</fieldset>"],tr:[2,"<table><tbody>","</tbody></table>"],col:[2,"<table><tbody></tbody><colgroup>","</colgroup></table>"],_default:Rt?[1,"X<div>","</div>"]:[0,"",""]};St.td=St.th=[3,"<table><tbody><tr>","</tr></tbody></table>"],St.option=St.optgroup=[1,'<select multiple="multiple">',"</select>"],St.thead=St.tbody=St.colgroup=St.caption=St.tfoot=[1,"<table>","</table>"],St.polyline=St.ellipse=St.polygon=St.circle=St.text=St.line=St.path=St.rect=St.g=[1,'<svg xmlns="http://www.w3.org/2000/svg" version="1.1">',"</svg>"];var Ct=kt;function Mt(e){e.parentNode&&e.parentNode.removeChild(e)}var Pt=0,Dt={width:150,height:50};function Tt(e,t){var n;t.textContent=e;try{var i,r=""===e;return t.textContent=r?"dummy":e,i={width:(n=t.getBBox()).width+2*n.x,height:n.height},r&&(i.width=0),i}catch(e){return console.log(e),{width:0,height:0}}}function Nt(e,t,n){for(var i,r=e.shift(),o=r;;){if((i=Tt(o,n)).width=o?i.width:0," "===o||""===o||i.width<Math.round(t)||o.length<2)return Ot(e,o,r,i);o=Lt(o,i.width,t)}}function Ot(e,t,n,i){if(t.length<n.length){var r=n.slice(t.length).trim();e.unshift(r)}return{width:i.width,height:i.height,text:t}}var Bt="";function Lt(e,t,n){var i=Math.max(e.length*(n/t),1),r=function(e,t){var n,i=e.split(/(\s|-|\u00AD)/g),r=[],o=0;if(i.length>1)for(;n=i.shift();){if(!(n.length+o<t)){"-"!==n&&n!==Bt||r.pop();break}r.push(n),o+=n.length}var a=r[r.length-1];return a&&a===Bt&&(r[r.length-1]="-"),r.join("")}(e,i);return r||(r=e.slice(0,Math.max(Math.round(i-1),1))),r}function It(e){this._config=_({},{size:Dt,padding:Pt,style:{},align:"center-top"},e||{})}It.prototype.createText=function(e,t){return this.layoutText(e,t).element},It.prototype.getDimensions=function(e,t){return this.layoutText(e,t).dimensions},It.prototype.layoutText=function(e,t){var n=_({},this._config.size,t.box),i=_({},this._config.style,t.style),r=function(e){var t=e.split("-");return{horizontal:t[0]||"center",vertical:t[1]||"top"}}(t.align||this._config.align),o=function(e){return s(e)?_({top:0,left:0,right:0,bottom:0},e):{top:e,left:e,right:e,bottom:e}}(void 0!==t.padding?t.padding:this._config.padding),a=t.fitBox||!1,l=function(e){if("fontSize"in e&&"lineHeight"in e)return e.lineHeight*parseInt(e.fontSize,10)}(i),p=e.split(/\u00AD?\r?\n/),c=[],u=n.width-o.left-o.right,h=U("text");for(V(h,{x:0,y:0}),V(h,i),L(function(){var e=document.getElementById("helper-svg");return e||(V(e=U("svg"),{id:"helper-svg"}),ct(e,{visibility:"hidden",position:"fixed",width:0,height:0}),document.body.appendChild(e)),e}(),h);p.length;)c.push(Nt(p,u,h));"middle"===r.vertical&&(o.top=o.bottom=0);var f=d(c,(function(e,t,n){return e+(l||t.height)}),0)+o.top+o.bottom,y=d(c,(function(e,t,n){return t.width>e?t.width:e}),0),g=o.top;"middle"===r.vertical&&(g+=(n.height-f)/2),g-=(l||c[0].height)/4;var v=U("text");return V(v,i),m(c,(function(e){var t;switch(g+=l||e.height,r.horizontal){case"left":t=o.left;break;case"right":t=(a?y:u)-o.right-e.width;break;default:t=Math.max(((a?y:u)-e.width)/2+o.left,0)}var n=U("tspan");V(n,{x:t,y:g}),n.textContent=e.text,L(v,n)})),re(h),{dimensions:{width:y,height:f},element:v}};function Ft(e){var t=_({fontFamily:"Arial, sans-serif",fontSize:12,fontWeight:"normal",lineHeight:1.2},e&&e.defaultStyle||{}),n=parseInt(t.fontSize,10)-1,i=_({},t,{fontSize:n},e&&e.externalStyle||{}),r=new It({style:t});this.getExternalLabelBounds=function(e,t){var n=r.getDimensions(t,{box:{width:90,height:30},style:i});return{x:Math.round(e.x+e.width/2-n.width/2),y:Math.round(e.y),width:Math.ceil(n.width),height:Math.ceil(n.height)}},this.getTextAnnotationBounds=function(e,n){var i=r.getDimensions(n,{box:e,style:t,align:"left-top",padding:5});return{x:e.x,y:e.y,width:e.width,height:Math.max(30,Math.round(i.height))}},this.createText=function(e,t){return r.createText(e,t||{})},this.getDefaultStyle=function(){return t},this.getExternalStyle=function(){return i}}Ft.$inject=["config.textRenderer"];var jt=/\{([^{}]+)\}/g,Vt=/(?:(?:^|\.)(.+?)(?=\[|\.|$|\()|\[('|")(.+?)\2\])(\(\))?/g;var Wt={__init__:["bpmnRenderer"],bpmnRenderer:["type",tt],textRenderer:["type",Ft],pathMap:["type",function(){this.pathMap={EVENT_MESSAGE:{d:"m {mx},{my} l 0,{e.y1} l {e.x1},0 l 0,-{e.y1} z l {e.x0},{e.y0} l {e.x0},-{e.y0}",height:36,width:36,heightElements:[6,14],widthElements:[10.5,21]},EVENT_SIGNAL:{d:"M {mx},{my} l {e.x0},{e.y0} l -{e.x1},0 Z",height:36,width:36,heightElements:[18],widthElements:[10,20]},EVENT_ESCALATION:{d:"M {mx},{my} l {e.x0},{e.y0} l -{e.x0},-{e.y1} l -{e.x0},{e.y1} Z",height:36,width:36,heightElements:[20,7],widthElements:[8]},EVENT_CONDITIONAL:{d:"M {e.x0},{e.y0} l {e.x1},0 l 0,{e.y2} l -{e.x1},0 Z M {e.x2},{e.y3} l {e.x0},0 M {e.x2},{e.y4} l {e.x0},0 M {e.x2},{e.y5} l {e.x0},0 M {e.x2},{e.y6} l {e.x0},0 M {e.x2},{e.y7} l {e.x0},0 M {e.x2},{e.y8} l {e.x0},0 ",height:36,width:36,heightElements:[8.5,14.5,18,11.5,14.5,17.5,20.5,23.5,26.5],widthElements:[10.5,14.5,12.5]},EVENT_LINK:{d:"m {mx},{my} 0,{e.y0} -{e.x1},0 0,{e.y1} {e.x1},0 0,{e.y0} {e.x0},-{e.y2} -{e.x0},-{e.y2} z",height:36,width:36,heightElements:[4.4375,6.75,7.8125],widthElements:[9.84375,13.5]},EVENT_ERROR:{d:"m {mx},{my} {e.x0},-{e.y0} {e.x1},-{e.y1} {e.x2},{e.y2} {e.x3},-{e.y3} -{e.x4},{e.y4} -{e.x5},-{e.y5} z",height:36,width:36,heightElements:[.023,8.737,8.151,16.564,10.591,8.714],widthElements:[.085,6.672,6.97,4.273,5.337,6.636]},EVENT_CANCEL_45:{d:"m {mx},{my} -{e.x1},0 0,{e.x0} {e.x1},0 0,{e.y1} {e.x0},0 0,-{e.y1} {e.x1},0 0,-{e.y0} -{e.x1},0 0,-{e.y1} -{e.x0},0 z",height:36,width:36,heightElements:[4.75,8.5],widthElements:[4.75,8.5]},EVENT_COMPENSATION:{d:"m {mx},{my} {e.x0},-{e.y0} 0,{e.y1} z m {e.x1},-{e.y2} {e.x2},-{e.y3} 0,{e.y1} -{e.x2},-{e.y3} z",height:36,width:36,heightElements:[6.5,13,.4,6.1],widthElements:[9,9.3,8.7]},EVENT_TIMER_WH:{d:"M {mx},{my} l {e.x0},-{e.y0} m -{e.x0},{e.y0} l {e.x1},{e.y1} ",height:36,width:36,heightElements:[10,2],widthElements:[3,7]},EVENT_TIMER_LINE:{d:"M {mx},{my} m {e.x0},{e.y0} l -{e.x1},{e.y1} ",height:36,width:36,heightElements:[10,3],widthElements:[0,0]},EVENT_MULTIPLE:{d:"m {mx},{my} {e.x1},-{e.y0} {e.x1},{e.y0} -{e.x0},{e.y1} -{e.x2},0 z",height:36,width:36,heightElements:[6.28099,12.56199],widthElements:[3.1405,9.42149,12.56198]},EVENT_PARALLEL_MULTIPLE:{d:"m {mx},{my} {e.x0},0 0,{e.y1} {e.x1},0 0,{e.y0} -{e.x1},0 0,{e.y1} -{e.x0},0 0,-{e.y1} -{e.x1},0 0,-{e.y0} {e.x1},0 z",height:36,width:36,heightElements:[2.56228,7.68683],widthElements:[2.56228,7.68683]},GATEWAY_EXCLUSIVE:{d:"m {mx},{my} {e.x0},{e.y0} {e.x1},{e.y0} {e.x2},0 {e.x4},{e.y2} {e.x4},{e.y1} {e.x2},0 {e.x1},{e.y3} {e.x0},{e.y3} {e.x3},0 {e.x5},{e.y1} {e.x5},{e.y2} {e.x3},0 z",height:17.5,width:17.5,heightElements:[8.5,6.5312,-6.5312,-8.5],widthElements:[6.5,-6.5,3,-3,5,-5]},GATEWAY_PARALLEL:{d:"m {mx},{my} 0,{e.y1} -{e.x1},0 0,{e.y0} {e.x1},0 0,{e.y1} {e.x0},0 0,-{e.y1} {e.x1},0 0,-{e.y0} -{e.x1},0 0,-{e.y1} -{e.x0},0 z",height:30,width:30,heightElements:[5,12.5],widthElements:[5,12.5]},GATEWAY_EVENT_BASED:{d:"m {mx},{my} {e.x0},{e.y0} {e.x0},{e.y1} {e.x1},{e.y2} {e.x2},0 z",height:11,width:11,heightElements:[-6,6,12,-12],widthElements:[9,-3,-12]},GATEWAY_COMPLEX:{d:"m {mx},{my} 0,{e.y0} -{e.x0},-{e.y1} -{e.x1},{e.y2} {e.x0},{e.y1} -{e.x2},0 0,{e.y3} {e.x2},0 -{e.x0},{e.y1} l {e.x1},{e.y2} {e.x0},-{e.y1} 0,{e.y0} {e.x3},0 0,-{e.y0} {e.x0},{e.y1} {e.x1},-{e.y2} -{e.x0},-{e.y1} {e.x2},0 0,-{e.y3} -{e.x2},0 {e.x0},-{e.y1} -{e.x1},-{e.y2} -{e.x0},{e.y1} 0,-{e.y0} -{e.x3},0 z",height:17.125,width:17.125,heightElements:[4.875,3.4375,2.125,3],widthElements:[3.4375,2.125,4.875,3]},DATA_OBJECT_PATH:{d:"m 0,0 {e.x1},0 {e.x0},{e.y0} 0,{e.y1} -{e.x2},0 0,-{e.y2} {e.x1},0 0,{e.y0} {e.x0},0",height:61,width:51,heightElements:[10,50,60],widthElements:[10,40,50,60]},DATA_OBJECT_COLLECTION_PATH:{d:"m{mx},{my} m 3,2 l 0,10 m 3,-10 l 0,10 m 3,-10 l 0,10",height:10,width:10,heightElements:[],widthElements:[]},DATA_ARROW:{d:"m 5,9 9,0 0,-3 5,5 -5,5 0,-3 -9,0 z",height:61,width:51,heightElements:[],widthElements:[]},DATA_STORE:{d:"m {mx},{my} l 0,{e.y2} c {e.x0},{e.y1} {e.x1},{e.y1} {e.x2},0 l 0,-{e.y2} c -{e.x0},-{e.y1} -{e.x1},-{e.y1} -{e.x2},0c {e.x0},{e.y1} {e.x1},{e.y1} {e.x2},0 m -{e.x2},{e.y0}c {e.x0},{e.y1} {e.x1},{e.y1} {e.x2},0m -{e.x2},{e.y0}c {e.x0},{e.y1} {e.x1},{e.y1} {e.x2},0",height:61,width:61,heightElements:[7,10,45],widthElements:[2,58,60]},TEXT_ANNOTATION:{d:"m {mx}, {my} m 10,0 l -10,0 l 0,{e.y0} l 10,0",height:30,width:10,heightElements:[30],widthElements:[10]},MARKER_SUB_PROCESS:{d:"m{mx},{my} m 7,2 l 0,10 m -5,-5 l 10,0",height:10,width:10,heightElements:[],widthElements:[]},MARKER_PARALLEL:{d:"m{mx},{my} m 3,2 l 0,10 m 3,-10 l 0,10 m 3,-10 l 0,10",height:10,width:10,heightElements:[],widthElements:[]},MARKER_SEQUENTIAL:{d:"m{mx},{my} m 0,3 l 10,0 m -10,3 l 10,0 m -10,3 l 10,0",height:10,width:10,heightElements:[],widthElements:[]},MARKER_COMPENSATION:{d:"m {mx},{my} 7,-5 0,10 z m 7.1,-0.3 6.9,-4.7 0,10 -6.9,-4.7 z",height:10,width:21,heightElements:[],widthElements:[]},MARKER_LOOP:{d:"m {mx},{my} c 3.526979,0 6.386161,-2.829858 6.386161,-6.320661 0,-3.490806 -2.859182,-6.320661 -6.386161,-6.320661 -3.526978,0 -6.38616,2.829855 -6.38616,6.320661 0,1.745402 0.714797,3.325567 1.870463,4.469381 0.577834,0.571908 1.265885,1.034728 2.029916,1.35457 l -0.718163,-3.909793 m 0.718163,3.909793 -3.885211,0.802902",height:13.9,width:13.7,heightElements:[],widthElements:[]},MARKER_ADHOC:{d:"m {mx},{my} m 0.84461,2.64411 c 1.05533,-1.23780996 2.64337,-2.07882 4.29653,-1.97997996 2.05163,0.0805 3.85579,1.15803 5.76082,1.79107 1.06385,0.34139996 2.24454,0.1438 3.18759,-0.43767 0.61743,-0.33642 1.2775,-0.64078 1.7542,-1.17511 0,0.56023 0,1.12046 0,1.6807 -0.98706,0.96237996 -2.29792,1.62393996 -3.6918,1.66181996 -1.24459,0.0927 -2.46671,-0.2491 -3.59505,-0.74812 -1.35789,-0.55965 -2.75133,-1.33436996 -4.27027,-1.18121996 -1.37741,0.14601 -2.41842,1.13685996 -3.44288,1.96782996 z",height:4,width:15,heightElements:[],widthElements:[]},TASK_TYPE_SEND:{d:"m {mx},{my} l 0,{e.y1} l {e.x1},0 l 0,-{e.y1} z l {e.x0},{e.y0} l {e.x0},-{e.y0}",height:14,width:21,heightElements:[6,14],widthElements:[10.5,21]},TASK_TYPE_SCRIPT:{d:"m {mx},{my} c 9.966553,-6.27276 -8.000926,-7.91932 2.968968,-14.938 l -8.802728,0 c -10.969894,7.01868 6.997585,8.66524 -2.968967,14.938 z m -7,-12 l 5,0 m -4.5,3 l 4.5,0 m -3,3 l 5,0m -4,3 l 5,0",height:15,width:12.6,heightElements:[6,14],widthElements:[10.5,21]},TASK_TYPE_USER_1:{d:"m {mx},{my} c 0.909,-0.845 1.594,-2.049 1.594,-3.385 0,-2.554 -1.805,-4.62199999 -4.357,-4.62199999 -2.55199998,0 -4.28799998,2.06799999 -4.28799998,4.62199999 0,1.348 0.974,2.562 1.89599998,3.405 -0.52899998,0.187 -5.669,2.097 -5.794,4.7560005 v 6.718 h 17 v -6.718 c 0,-2.2980005 -5.5279996,-4.5950005 -6.0509996,-4.7760005 zm -8,6 l 0,5.5 m 11,0 l 0,-5"},TASK_TYPE_USER_2:{d:"m {mx},{my} m 2.162,1.009 c 0,2.4470005 -2.158,4.4310005 -4.821,4.4310005 -2.66499998,0 -4.822,-1.981 -4.822,-4.4310005 "},TASK_TYPE_USER_3:{d:"m {mx},{my} m -6.9,-3.80 c 0,0 2.25099998,-2.358 4.27399998,-1.177 2.024,1.181 4.221,1.537 4.124,0.965 -0.098,-0.57 -0.117,-3.79099999 -4.191,-4.13599999 -3.57499998,0.001 -4.20799998,3.36699999 -4.20699998,4.34799999 z"},TASK_TYPE_MANUAL:{d:"m {mx},{my} c 0.234,-0.01 5.604,0.008 8.029,0.004 0.808,0 1.271,-0.172 1.417,-0.752 0.227,-0.898 -0.334,-1.314 -1.338,-1.316 -2.467,-0.01 -7.886,-0.004 -8.108,-0.004 -0.014,-0.079 0.016,-0.533 0,-0.61 0.195,-0.042 8.507,0.006 9.616,0.002 0.877,-0.007 1.35,-0.438 1.353,-1.208 0.003,-0.768 -0.479,-1.09 -1.35,-1.091 -2.968,-0.002 -9.619,-0.013 -9.619,-0.013 v -0.591 c 0,0 5.052,-0.016 7.225,-0.016 0.888,-0.002 1.354,-0.416 1.351,-1.193 -0.006,-0.761 -0.492,-1.196 -1.361,-1.196 -3.473,-0.005 -10.86,-0.003 -11.0829995,-0.003 -0.022,-0.047 -0.045,-0.094 -0.069,-0.139 0.3939995,-0.319 2.0409995,-1.626 2.4149995,-2.017 0.469,-0.4870005 0.519,-1.1650005 0.162,-1.6040005 -0.414,-0.511 -0.973,-0.5 -1.48,-0.236 -1.4609995,0.764 -6.5999995,3.6430005 -7.7329995,4.2710005 -0.9,0.499 -1.516,1.253 -1.882,2.19 -0.37000002,0.95 -0.17,2.01 -0.166,2.979 0.004,0.718 -0.27300002,1.345 -0.055,2.063 0.629,2.087 2.425,3.312 4.859,3.318 4.6179995,0.014 9.2379995,-0.139 13.8569995,-0.158 0.755,-0.004 1.171,-0.301 1.182,-1.033 0.012,-0.754 -0.423,-0.969 -1.183,-0.973 -1.778,-0.01 -5.824,-0.004 -6.04,-0.004 10e-4,-0.084 0.003,-0.586 10e-4,-0.67 z"},TASK_TYPE_INSTANTIATING_SEND:{d:"m {mx},{my} l 0,8.4 l 12.6,0 l 0,-8.4 z l 6.3,3.6 l 6.3,-3.6"},TASK_TYPE_SERVICE:{d:"m {mx},{my} v -1.71335 c 0.352326,-0.0705 0.703932,-0.17838 1.047628,-0.32133 0.344416,-0.14465 0.665822,-0.32133 0.966377,-0.52145 l 1.19431,1.18005 1.567487,-1.57688 -1.195028,-1.18014 c 0.403376,-0.61394 0.683079,-1.29908 0.825447,-2.01824 l 1.622133,-0.01 v -2.2196 l -1.636514,0.01 c -0.07333,-0.35153 -0.178319,-0.70024 -0.323564,-1.04372 -0.145244,-0.34406 -0.321407,-0.6644 -0.522735,-0.96217 l 1.131035,-1.13631 -1.583305,-1.56293 -1.129598,1.13589 c -0.614052,-0.40108 -1.302883,-0.68093 -2.022633,-0.82247 l 0.0093,-1.61852 h -2.241173 l 0.0042,1.63124 c -0.353763,0.0736 -0.705369,0.17977 -1.049785,0.32371 -0.344415,0.14437 -0.665102,0.32092 -0.9635006,0.52046 l -1.1698628,-1.15823 -1.5667691,1.5792 1.1684265,1.15669 c -0.4026573,0.61283 -0.68308,1.29797 -0.8247287,2.01713 l -1.6588041,0.003 v 2.22174 l 1.6724648,-0.006 c 0.073327,0.35077 0.1797598,0.70243 0.3242851,1.04472 0.1452428,0.34448 0.3214064,0.6644 0.5227339,0.96066 l -1.1993431,1.19723 1.5840256,1.56011 1.1964668,-1.19348 c 0.6140517,0.40346 1.3028827,0.68232 2.0233517,0.82331 l 7.19e-4,1.69892 h 2.226848 z m 0.221462,-3.9957 c -1.788948,0.7502 -3.8576,-0.0928 -4.6097055,-1.87438 -0.7521065,-1.78321 0.090598,-3.84627 1.8802645,-4.59604 1.78823,-0.74936 3.856881,0.0929 4.608987,1.87437 0.752106,1.78165 -0.0906,3.84612 -1.879546,4.59605 z"},TASK_TYPE_SERVICE_FILL:{d:"m {mx},{my} c -1.788948,0.7502 -3.8576,-0.0928 -4.6097055,-1.87438 -0.7521065,-1.78321 0.090598,-3.84627 1.8802645,-4.59604 1.78823,-0.74936 3.856881,0.0929 4.608987,1.87437 0.752106,1.78165 -0.0906,3.84612 -1.879546,4.59605 z"},TASK_TYPE_BUSINESS_RULE_HEADER:{d:"m {mx},{my} 0,4 20,0 0,-4 z"},TASK_TYPE_BUSINESS_RULE_MAIN:{d:"m {mx},{my} 0,12 20,0 0,-12 zm 0,8 l 20,0 m -13,-4 l 0,8"},MESSAGE_FLOW_MARKER:{d:"m {mx},{my} m -10.5 ,-7 l 0,14 l 21,0 l 0,-14 z l 10.5,6 l 10.5,-6"}},this.getRawPath=function(e){return this.pathMap[e].d},this.getScaledPath=function(e,t){var n,i,r=this.pathMap[e];t.abspos?(n=t.abspos.x,i=t.abspos.y):(n=t.containerWidth*t.position.mx,i=t.containerHeight*t.position.my);var o={};if(t.position){for(var a=t.containerHeight/r.height*t.yScaleFactor,s=t.containerWidth/r.width*t.xScaleFactor,l=0;l<r.heightElements.length;l++)o["y"+l]=r.heightElements[l]*a;for(var p=0;p<r.widthElements.length;p++)o["x"+p]=r.widthElements[p]*s}var c,u,h=(c=r.d,u={mx:n,my:i,e:o},String(c).replace(jt,(function(e,t){return function(e,t,n){var i=n;return t.replace(Vt,(function(e,t,n,r,o){t=t||r,i&&(t in i&&(i=i[t]),"function"==typeof i&&o&&(i=i()))})),i=(null==i||i==n?e:i)+""}(e,t,u)})));return h}}]};var $t={translate:["value",function(e,t){return t=t||{},e.replace(/{([^}]+)}/g,(function(e,n){return t[n]||"{"+n+"}"}))}]};function zt(e){return{top:e.y,right:e.x+(e.width||0),bottom:e.y+(e.height||0),left:e.x}}function Gt(e){return t={x:e.x+(e.width||0)/2,y:e.y+(e.height||0)/2},{x:Math.round(t.x),y:Math.round(t.y)};var t}function Ht(e){for(var t=e.waypoints,n=t.reduce((function(e,n,i){var r,o,a=t[i-1];if(a){var s=e[e.length-1],l=s&&s.endLength||0,p=(r=a,o=n,Math.sqrt(Math.pow(r.x-o.x,2)+Math.pow(r.y-o.y,2)));e.push({start:a,end:n,startLength:l,endLength:l+p,length:p})}return e}),[]),i=n.reduce((function(e,t){return e+t.length}),0)/2,r=0,o=n[r];o.endLength<i;)o=n[++r];var a=(i-o.startLength)/o.length;return{x:o.start.x+(o.end.x-o.start.x)*a,y:o.start.y+(o.end.y-o.start.y)*a}}function Kt(e){return s(t=e)&&u(t,"waypoints")?Ht(e):Gt(e);var t}function Ut(e){return e?"<"+e.$type+(e.id?' id="'+e.id:"")+'" />':"<null>"}function qt(e,t,n){return _({id:e.id,type:e.$type,businessObject:e,di:t},n)}function Yt(e,t,n){var i=e.waypoint;return!i||i.length<2?[Kt(t),Kt(n)]:i.map((function(e){return{x:e.x,y:e.y}}))}function Xt(e,t,n){return new Error(`element ${Ut(t)} referenced by ${Ut(e)}#${n} not yet drawn`)}function Zt(e,t,n,i,r){this._eventBus=e,this._canvas=t,this._elementFactory=n,this._elementRegistry=i,this._textRenderer=r}Zt.$inject=["eventBus","canvas","elementFactory","elementRegistry","textRenderer"],Zt.prototype.add=function(e,t,n){var i,r,o,a,s,l,p;if(R(t,"bpmndi:BPMNPlane")){var c=R(e,"bpmn:SubProcess")?{id:e.id+"_plane"}:{};i=this._elementFactory.createRoot(qt(e,t,c)),this._canvas.addRootElement(i)}else if(R(t,"bpmndi:BPMNShape")){var u=!M(e,t),h=function(e){return R(e,"bpmn:Group")}(e);r=n&&(n.hidden||n.collapsed);var f=t.bounds;i=this._elementFactory.createShape(qt(e,t,{collapsed:u,hidden:r,x:Math.round(f.x),y:Math.round(f.y),width:Math.round(f.width),height:Math.round(f.height),isFrame:h})),R(e,"bpmn:BoundaryEvent")&&this._attachBoundary(e,i),R(e,"bpmn:Lane")&&(o=0),R(e,"bpmn:DataStoreReference")&&(a=n,s=Kt(f),l=s.x,p=s.y,l>=a.x&&l<=a.x+a.width&&p>=a.y&&p<=a.y+a.height||(n=this._canvas.findRoot(n))),this._canvas.addShape(i,n,o)}else{if(!R(t,"bpmndi:BPMNEdge"))throw new Error(`unknown di ${Ut(t)} for element ${Ut(e)}`);var m=this._getSource(e),d=this._getTarget(e);r=n&&(n.hidden||n.collapsed),i=this._elementFactory.createConnection(qt(e,t,{hidden:r,source:m,target:d,waypoints:Yt(t,m,d)})),R(e,"bpmn:DataAssociation")&&(n=this._canvas.findRoot(n)),this._canvas.addConnection(i,n,o)}return function(e){return R(e,"bpmn:Event")||R(e,"bpmn:Gateway")||R(e,"bpmn:DataStoreReference")||R(e,"bpmn:DataObjectReference")||R(e,"bpmn:DataInput")||R(e,"bpmn:DataOutput")||R(e,"bpmn:SequenceFlow")||R(e,"bpmn:MessageFlow")||R(e,"bpmn:Group")}(e)&&B(i)&&this.addLabel(e,t,i),this._eventBus.fire("bpmnElement.added",{element:i}),i},Zt.prototype._attachBoundary=function(e,t){var n=e.attachedToRef;if(!n)throw new Error(`missing ${Ut(e)}#attachedToRef`);var i=this._elementRegistry.get(n.id),r=i&&i.attachers;if(!i)throw Xt(e,n,"attachedToRef");t.host=i,r||(i.attachers=r=[]),-1===r.indexOf(t)&&r.push(t)},Zt.prototype.addLabel=function(e,t,n){var i,r,o;return i=O(t,n),(r=B(n))&&(i=this._textRenderer.getExternalLabelBounds(i,r)),o=this._elementFactory.createLabel(qt(e,t,{id:e.id+"_label",labelTarget:n,type:"label",hidden:n.hidden||!B(n),x:Math.round(i.x),y:Math.round(i.y),width:Math.round(i.width),height:Math.round(i.height)})),this._canvas.addShape(o,n.parent)},Zt.prototype._getConnectedElement=function(e,t){var n,i,r=e.$type;if(i=e[t+"Ref"],"source"===t&&"bpmn:DataInputAssociation"===r&&(i=i&&i[0]),("source"===t&&"bpmn:DataOutputAssociation"===r||"target"===t&&"bpmn:DataInputAssociation"===r)&&(i=e.$parent),n=i&&this._getElement(i))return n;throw i?Xt(e,i,t+"Ref"):new Error(`${Ut(e)}#${t} Ref not specified`)},Zt.prototype._getSource=function(e){return this._getConnectedElement(e,"source")},Zt.prototype._getTarget=function(e){return this._getConnectedElement(e,"target")},Zt.prototype._getElement=function(e){return this._elementRegistry.get(e.id)};var Jt={__depends__:[Wt,{__depends__:[$t],bpmnImporter:["type",Zt]}]};function Qt(e,t){var n,i,r,o;return t=!!t,a(e)||(e=[e]),m(e,(function(e){var a=e;e.waypoints&&!t&&(a=Qt(e.waypoints,!0));var s=a.x,l=a.y,p=a.height||0,c=a.width||0;(s<n||void 0===n)&&(n=s),(l<i||void 0===i)&&(i=l),(s+c>r||void 0===r)&&(r=s+c),(l+p>o||void 0===o)&&(o=l+p)})),{x:n,y:i,height:o-i,width:r-n}}function en(e){return"waypoints"in e?"connection":"x"in e?"shape":"root"}function tn(e){return!(!e||!e.isFrame)}function nn(e){this._counter=0,this._prefix=(e?e+"-":"")+Math.floor(1e9*Math.random())+"-"}nn.prototype.next=function(){return this._prefix+ ++this._counter};var rn=new nn("ov");function on(e,t,n,i){var r,o;this._eventBus=t,this._canvas=n,this._elementRegistry=i,this._ids=rn,this._overlayDefaults=_({show:null,scale:!0},e&&e.defaults),this._overlays={},this._overlayContainers=[],this._overlayRoot=(r=n.getContainer(),ct(o=Ct('<div class="djs-overlay-container" />'),{position:"absolute",width:0,height:0}),r.insertBefore(o,r.firstChild),o),this._init()}function an(e,t,n){ct(e,{left:t+"px",top:n+"px"})}function sn(e,t){e.style.display=!1===t?"none":""}function ln(e,t){e.style["transform-origin"]="top left",["","-ms-","-webkit-"].forEach((function(n){e.style[n+"transform"]=t}))}on.$inject=["config.overlays","eventBus","canvas","elementRegistry"],on.prototype.get=function(e){if(c(e)&&(e={id:e}),c(e.element)&&(e.element=this._elementRegistry.get(e.element)),e.element){var t=this._getOverlayContainer(e.element,!0);return t?e.type?f(t.overlays,v({type:e.type})):t.overlays.slice():[]}return e.type?f(this._overlays,v({type:e.type})):e.id?this._overlays[e.id]:null},on.prototype.add=function(e,t,n){if(s(t)&&(n=t,t=null),e.id||(e=this._elementRegistry.get(e)),!n.position)throw new Error("must specifiy overlay position");if(!n.html)throw new Error("must specifiy overlay html");if(!e)throw new Error("invalid element specified");var i=this._ids.next();return n=_({},this._overlayDefaults,n,{id:i,type:t,element:e,html:n.html}),this._addOverlay(n),i},on.prototype.remove=function(e){var t=this.get(e)||[];a(t)||(t=[t]);var n=this;m(t,(function(e){var t=n._getOverlayContainer(e.element,!0);if(e&&(Mt(e.html),Mt(e.htmlContainer),delete e.htmlContainer,delete e.element,delete n._overlays[e.id]),t){var i=t.overlays.indexOf(e);-1!==i&&t.overlays.splice(i,1)}}))},on.prototype.isShown=function(){return"none"!==this._overlayRoot.style.display},on.prototype.show=function(){sn(this._overlayRoot)},on.prototype.hide=function(){sn(this._overlayRoot,!1)},on.prototype.clear=function(){this._overlays={},this._overlayContainers=[],dt(this._overlayRoot)},on.prototype._updateOverlayContainer=function(e){var t=e.element,n=e.html,i=t.x,r=t.y;if(t.waypoints){var o=Qt(t);i=o.x,r=o.y}an(n,i,r),ut(e.html,"data-container-id",t.id)},on.prototype._updateOverlay=function(e){var t,n,i=e.position,r=e.htmlContainer,o=e.element,a=i.left,s=i.top;void 0!==i.right&&(t=o.waypoints?Qt(o).width:o.width,a=-1*i.right+t);void 0!==i.bottom&&(n=o.waypoints?Qt(o).height:o.height,s=-1*i.bottom+n);an(r,a||0,s||0),this._updateOverlayVisibilty(e,this._canvas.viewbox())},on.prototype._createOverlayContainer=function(e){var t=Ct('<div class="djs-overlays" />');ct(t,{position:"absolute"}),this._overlayRoot.appendChild(t);var n={html:t,element:e,overlays:[]};return this._updateOverlayContainer(n),this._overlayContainers.push(n),n},on.prototype._updateRoot=function(e){var t=e.scale||1,n="matrix("+[t,0,0,t,-1*e.x*t,-1*e.y*t].join(",")+")";ln(this._overlayRoot,n)},on.prototype._getOverlayContainer=function(e,t){var n=h(this._overlayContainers,(function(t){return t.element===e}));return n||t?n:this._createOverlayContainer(e)},on.prototype._addOverlay=function(e){var t,n,i=e.id,r=e.element,o=e.html;o.get&&o.constructor.prototype.jquery&&(o=o.get(0)),c(o)&&(o=Ct(o)),n=this._getOverlayContainer(r),ct(t=Ct('<div class="djs-overlay" data-overlay-id="'+i+'">'),{position:"absolute"}),t.appendChild(o),e.type&&ft(t).add("djs-overlay-"+e.type),sn(t,this._canvas.findRoot(r)===this._canvas.getRootElement()),e.htmlContainer=t,n.overlays.push(e),n.html.appendChild(t),this._overlays[i]=e,this._updateOverlay(e),this._updateOverlayVisibilty(e,this._canvas.viewbox())},on.prototype._updateOverlayVisibilty=function(e,t){var n=e.show,i=this._canvas.findRoot(e.element),o=n&&n.minZoom,a=n&&n.maxZoom,s=e.htmlContainer,l=!0;(i!==this._canvas.getRootElement()||n&&(r(o)&&o>t.scale||r(a)&&a<t.scale))&&(l=!1),sn(s,l),this._updateOverlayScale(e,t)},on.prototype._updateOverlayScale=function(e,t){var n,i,o,a=e.scale,s=e.htmlContainer,l="";!0!==a&&(!1===a?(n=1,i=1):(n=a.min,i=a.max),r(n)&&t.scale<n&&(o=(1/t.scale||1)*n),r(i)&&t.scale>i&&(o=(1/t.scale||1)*i)),r(o)&&(l="scale("+o+","+o+")"),ln(s,l)},on.prototype._updateOverlaysVisibilty=function(e){var t=this;m(this._overlays,(function(n){t._updateOverlayVisibilty(n,e)}))},on.prototype._init=function(){var e=this._eventBus,t=this;e.on("canvas.viewbox.changing",(function(e){t.hide()})),e.on("canvas.viewbox.changed",(function(e){var n;n=e.viewbox,t._updateRoot(n),t._updateOverlaysVisibilty(n),t.show()})),e.on(["shape.remove","connection.remove"],(function(e){var n=e.element;m(t.get({element:n}),(function(e){t.remove(e.id)}));var i=t._getOverlayContainer(n);if(i){Mt(i.html);var r=t._overlayContainers.indexOf(i);-1!==r&&t._overlayContainers.splice(r,1)}})),e.on("element.changed",500,(function(e){var n=e.element,i=t._getOverlayContainer(n,!0);i&&(m(i.overlays,(function(e){t._updateOverlay(e)})),t._updateOverlayContainer(i))})),e.on("element.marker.update",(function(e){var n=t._getOverlayContainer(e.element,!0);n&&ft(n.html)[e.add?"add":"remove"](e.marker)})),e.on("root.set",(function(){t._updateOverlaysVisibilty(t._canvas.viewbox())})),e.on("diagram.clear",this.clear,this)};var pn={__init__:["overlays"],overlays:["type",on]};function cn(e,t,n,i){e.on("element.changed",(function(i){var r=i.element;(r.parent||r===t.getRootElement())&&(i.gfx=n.getGraphics(r)),i.gfx&&e.fire(en(r)+".changed",i)})),e.on("elements.changed",(function(t){var n=t.elements;n.forEach((function(t){e.fire("element.changed",{element:t})})),i.updateContainments(n)})),e.on("shape.changed",(function(e){i.update("shape",e.element,e.gfx)})),e.on("connection.changed",(function(e){i.update("connection",e.element,e.gfx)}))}cn.$inject=["eventBus","canvas","elementRegistry","graphicsFactory"];var un={__init__:["changeSupport"],changeSupport:["type",cn]};function hn(e){this._eventBus=e}function fn(e){return function(t,n,i,r,o){(p(t)||l(t))&&(o=r,r=i,i=n,n=t,t=null),this.on(t,e,n,i,r,o)}}function mn(e,t){t.invoke(hn,this),this.executed((function(t){var n=t.context;n.rootElement?e.setRootElement(n.rootElement):n.rootElement=e.getRootElement()})),this.revert((function(t){var n=t.context;n.rootElement&&e.setRootElement(n.rootElement)}))}hn.$inject=["eventBus"],hn.prototype.on=function(e,t,n,i,r,o){if((p(t)||l(t))&&(o=r,r=i,i=n,n=t,t=null),p(n)&&(o=r,r=i,i=n,n=1e3),s(r)&&(o=r,r=!1),!p(i))throw new Error("handlerFn must be a function");a(e)||(e=[e]);var c=this._eventBus;m(e,(function(e){var a=["commandStack",e,t].filter((function(e){return e})).join(".");c.on(a,n,r?function(e,t){return function(n){return e.call(t||null,n.context,n.command,n)}}(i,o):i,o)}))},hn.prototype.canExecute=fn("canExecute"),hn.prototype.preExecute=fn("preExecute"),hn.prototype.preExecuted=fn("preExecuted"),hn.prototype.execute=fn("execute"),hn.prototype.executed=fn("executed"),hn.prototype.postExecute=fn("postExecute"),hn.prototype.postExecuted=fn("postExecuted"),hn.prototype.revert=fn("revert"),hn.prototype.reverted=fn("reverted"),e(mn,hn),mn.$inject=["canvas","injector"];var dn={__init__:["rootElementsBehavior"],rootElementsBehavior:["type",mn]},yn={"&":"&","<":"<",">":">",'"':""","'":"'"};var gn="_plane";function vn(e){var t=e.id;return R(e,"bpmn:SubProcess")?function(e){return e+gn}(t):t}function xn(e,t,n){var i=Ue('<ul class="bjs-breadcrumbs"></ul>'),r=n.getContainer(),o=Ne(r);r.appendChild(i);var a=[];function s(e){e&&(a=function(e){for(var t=S(e),n=[],i=t;i;i=i.$parent)(R(i,"bpmn:SubProcess")||R(i,"bpmn:Process"))&&n.push(i);return n.reverse()}(e));var r=a.flatMap((function(e){var i=n.findRoot(vn(e))||n.findRoot(e.id);if(!i&&R(e,"bpmn:Process")){var r=t.find((function(t){var n=S(t);return n&&n.get("processRef")===e}));i=r&&n.findRoot(r.id)}if(!i)return[];var o,a=(o=""+(o=e.name||e.id))&&o.replace(/[&<>"']/g,(function(e){return yn[e]})),s=Ue('<li><span class="bjs-crumb"><a title="'+a+'">'+a+"</a></span></li>");return s.addEventListener("click",(function(){n.setRootElement(i)})),s}));i.innerHTML="";var s=r.length>1;o.toggle("bjs-breadcrumbs-shown",s),r.forEach((function(e){i.appendChild(e)}))}e.on("element.changed",(function(e){var t=S(e.element);h(a,(function(e){return e===t}))&&s()})),e.on("root.set",(function(e){s(e.element)}))}function bn(e,t){var n=null,i=new wn;e.on("root.set",(function(e){var r=e.element,o=t.viewbox(),a=i.get(r);if(i.set(n,{x:o.x,y:o.y,zoom:o.scale}),n=r,R(r,"bpmn:SubProcess")||a){a=a||{x:0,y:0,zoom:1};var s=(o.x-a.x)*o.scale,l=(o.y-a.y)*o.scale;0===s&&0===l||t.scroll({dx:s,dy:l}),a.zoom!==o.scale&&t.zoom(a.zoom,{x:0,y:0})}})),e.on("diagram.clear",(function(){i.clear(),n=null}))}function wn(){this._entries=[],this.set=function(e,t){var n=!1;for(var i in this._entries)if(this._entries[i][0]===e){this._entries[i][1]=t,n=!0;break}n||this._entries.push([e,t])},this.get=function(e){for(var t in this._entries)if(this._entries[t][0]===e)return this._entries[t][1];return null},this.clear=function(){this._entries.length=0},this.remove=function(e){var t=-1;for(var n in this._entries)if(this._entries[n][0]===e){t=n;break}-1!==t&&this._entries.splice(t,1)}}xn.$inject=["eventBus","elementRegistry","canvas"],bn.$inject=["eventBus","canvas"];var En=180,_n=160;function An(e,t){this._eventBus=e,this._moddle=t;var n=this;e.on("import.render.start",1500,(function(e,t){n._handleImport(t.definitions)}))}function kn(e){return R(e,"bpmndi:BPMNDiagram")?e:kn(e.$parent)}An.prototype._handleImport=function(e){if(e.diagrams){var t=this;this._definitions=e,this._processToDiagramMap={},e.diagrams.forEach((function(e){e.plane&&e.plane.bpmnElement&&(t._processToDiagramMap[e.plane.bpmnElement.id]=e)})),e.diagrams.filter((e=>e.plane)).flatMap((e=>t._createNewDiagrams(e.plane))).forEach((function(e){t._movePlaneElementsToOrigin(e.plane)}))}},An.prototype._createNewDiagrams=function(e){var t=this,n=[],i=[];e.get("planeElement").forEach((function(t){var r=t.bpmnElement;if(r){var o=r.$parent;R(r,"bpmn:SubProcess")&&!t.isExpanded&&n.push(r),function(e,t){var n=e.$parent;if(!R(n,"bpmn:SubProcess")||n===t.bpmnElement)return!1;if(function(e,t){return g(t,(function(t){return R(e,t)}))}(e,["bpmn:DataInputAssociation","bpmn:DataOutputAssociation"]))return!1;return!0}(r,e)&&i.push({diElement:t,parent:o})}}));var r=[];return n.forEach((function(e){if(!t._processToDiagramMap[e.id]){var n=t._createDiagram(e);t._processToDiagramMap[e.id]=n,r.push(n)}})),i.forEach((function(e){for(var i=e.diElement,r=e.parent;r&&-1===n.indexOf(r);)r=r.$parent;if(r){var o=t._processToDiagramMap[r.id];t._moveToDiPlane(i,o.plane)}})),r},An.prototype._movePlaneElementsToOrigin=function(e){var t=e.get("planeElement"),n=function(e){var t={top:1/0,right:-1/0,bottom:-1/0,left:1/0};return e.planeElement.forEach((function(e){if(e.bounds){var n=zt(e.bounds);t.top=Math.min(n.top,t.top),t.left=Math.min(n.left,t.left)}})),function(e){return{x:e.left,y:e.top,width:e.right-e.left,height:e.bottom-e.top}}(t)}(e),i=n.x-En,r=n.y-_n;t.forEach((function(e){e.waypoint?e.waypoint.forEach((function(e){e.x=e.x-i,e.y=e.y-r})):e.bounds&&(e.bounds.x=e.bounds.x-i,e.bounds.y=e.bounds.y-r)}))},An.prototype._moveToDiPlane=function(e,t){var n=kn(e).plane.get("planeElement");n.splice(n.indexOf(e),1),t.get("planeElement").push(e)},An.prototype._createDiagram=function(e){var t=this._moddle.create("bpmndi:BPMNPlane",{bpmnElement:e}),n=this._moddle.create("bpmndi:BPMNDiagram",{plane:t});return t.$parent=n,t.bpmnElement=e,n.$parent=this._definitions,this._definitions.diagrams.push(n),n},An.$inject=["eventBus","moddle"];var Rn=250;function Sn(e,t,n,i,r){hn.call(this,t),this._canvas=e,this._eventBus=t,this._elementRegistry=n,this._overlays=i,this._translate=r;var o=this;this.executed("shape.toggleCollapse",Rn,(function(e){var t=e.shape;o._canDrillDown(t)?o._addOverlay(t):o._removeOverlay(t)}),!0),this.reverted("shape.toggleCollapse",Rn,(function(e){var t=e.shape;o._canDrillDown(t)?o._addOverlay(t):o._removeOverlay(t)}),!0),this.executed(["shape.create","shape.move","shape.delete"],Rn,(function(e){var t=e.oldParent,n=e.newParent||e.parent,i=e.shape;o._canDrillDown(i)&&o._addOverlay(i),o._updateDrilldownOverlay(t),o._updateDrilldownOverlay(n),o._updateDrilldownOverlay(i)}),!0),this.reverted(["shape.create","shape.move","shape.delete"],Rn,(function(e){var t=e.oldParent,n=e.newParent||e.parent,i=e.shape;o._canDrillDown(i)&&o._addOverlay(i),o._updateDrilldownOverlay(t),o._updateDrilldownOverlay(n),o._updateDrilldownOverlay(i)}),!0),t.on("import.render.complete",(function(){n.filter((function(e){return o._canDrillDown(e)})).map((function(e){o._addOverlay(e)}))}))}e(Sn,hn),Sn.prototype._updateDrilldownOverlay=function(e){var t=this._canvas;if(e){var n=t.findRoot(e);n&&this._updateOverlayVisibility(n)}},Sn.prototype._canDrillDown=function(e){var t=this._canvas;return R(e,"bpmn:SubProcess")&&t.findRoot(vn(e))},Sn.prototype._updateOverlayVisibility=function(e){var t=this._overlays,n=S(e),i=t.get({element:n.id,type:"drilldown"})[0];if(i){var r=n&&n.get("flowElements")&&n.get("flowElements").length;Ne(i.html).toggle("bjs-drilldown-empty",!r)}},Sn.prototype._addOverlay=function(e){var t=this._canvas,n=this._overlays,i=S(e);n.get({element:e,type:"drilldown"}).length&&this._removeOverlay(e);var r=Ue('<button type="button" class="bjs-drilldown"><svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 16 16"><path fill-rule="evenodd" d="M4.81801948,3.50735931 L10.4996894,9.1896894 L10.5,4 L12,4 L12,12 L4,12 L4,10.5 L9.6896894,10.4996894 L3.75735931,4.56801948 C3.46446609,4.27512627 3.46446609,3.80025253 3.75735931,3.50735931 C4.05025253,3.21446609 4.52512627,3.21446609 4.81801948,3.50735931 Z"/></svg></button>'),o=i.get("name")||i.get("id"),a=this._translate("Open {element}",{element:o});r.setAttribute("title",a),r.addEventListener("click",(function(){t.setRootElement(t.findRoot(vn(e)))})),n.add(e,"drilldown",{position:{bottom:-7,right:-8},html:r}),this._updateOverlayVisibility(e)},Sn.prototype._removeOverlay=function(e){this._overlays.remove({element:e,type:"drilldown"})},Sn.$inject=["canvas","eventBus","elementRegistry","overlays","translate"];var Cn={__depends__:[pn,un,dn],__init__:["drilldownBreadcrumbs","drilldownOverlayBehavior","drilldownCentering","subprocessCompatibility"],drilldownBreadcrumbs:["type",xn],drilldownCentering:["type",bn],drilldownOverlayBehavior:["type",Sn],subprocessCompatibility:["type",An]};function Mn(e){return e.originalEvent||e.srcEvent}function Pn(e,t){return(Mn(e)||e).button===t}function Dn(e){return Pn(e,0)}function Tn(e){return!0}function Nn(e){return Dn(e)||function(e){return Pn(e,1)}(e)}function On(e,t,n){var i=this;function r(n,i,r){var o,a;(function(e,t){var n=l[e]||Dn;return!n(t)})(n,i)||(r?a=t.getGraphics(r):(o=i.delegateTarget||i.target)&&(a=o,r=t.get(a)),a&&r&&!1===e.fire(n,{element:r,gfx:a,originalEvent:i})&&(i.stopPropagation(),i.preventDefault()))}var o={};function a(e){return o[e]}var s={click:"element.click",contextmenu:"element.contextmenu",dblclick:"element.dblclick",mousedown:"element.mousedown",mousemove:"element.mousemove",mouseover:"element.hover",mouseout:"element.out",mouseup:"element.mouseup"},l={"element.contextmenu":Tn,"element.mousedown":Nn,"element.mouseup":Nn,"element.click":Nn,"element.dblclick":Nn};var p="svg, .djs-element";function c(e,t,n,i){var a=o[n]=function(e){r(n,e)};i&&(l[n]=i),a.$delegate=At.bind(e,p,t,a)}function u(e,t,n){var i=a(n);i&&At.unbind(e,t,i.$delegate)}e.on("canvas.destroy",(function(e){var t;t=e.svg,m(s,(function(e,n){u(t,n,e)}))})),e.on("canvas.init",(function(e){var t;t=e.svg,m(s,(function(e,n){c(t,n,e)}))})),e.on(["shape.added","connection.added"],(function(t){var n=t.element,i=t.gfx;e.fire("interactionEvents.createHit",{element:n,gfx:i})})),e.on(["shape.changed","connection.changed"],500,(function(t){var n=t.element,i=t.gfx;e.fire("interactionEvents.updateHit",{element:n,gfx:i})})),e.on("interactionEvents.createHit",500,(function(e){var t=e.element,n=e.gfx;i.createDefaultHit(t,n)})),e.on("interactionEvents.updateHit",(function(e){var t=e.element,n=e.gfx;i.updateDefaultHit(t,n)}));var h=y("djs-hit djs-hit-stroke"),f=y("djs-hit djs-hit-click-stroke"),d={all:y("djs-hit djs-hit-all"),"click-stroke":f,stroke:h,"no-move":y("djs-hit djs-hit-no-move")};function y(e,t){return t=_({stroke:"white",strokeWidth:15},t||{}),n.cls(e,["no-fill","no-border"],t)}function g(e,t){var n=d[t];if(!n)throw new Error("invalid hit type <"+t+">");return V(e,n),e}function v(e,t){L(e,t)}this.removeHits=function(e){var t;m((t=".djs-hit",(e||document).querySelectorAll(t)),re)},this.createDefaultHit=function(e,t){var n,i=e.waypoints,r=e.isFrame;return i?this.createWaypointsHit(t,i):(n=r?"stroke":"all",this.createBoxHit(t,n,{width:e.width,height:e.height}))},this.createWaypointsHit=function(e,t){var n=he(t);return g(n,"stroke"),v(e,n),n},this.createBoxHit=function(e,t,n){n=_({x:0,y:0},n);var i=U("rect");return g(i,t),V(i,n),v(e,i),i},this.updateDefaultHit=function(e,t){var n,i=(n=".djs-hit",(t||document).querySelector(n));if(i)return e.waypoints?fe(i,e.waypoints):V(i,{width:e.width,height:e.height}),i},this.fire=r,this.triggerMouseEvent=function(e,t,n){var i=s[e];if(!i)throw new Error("unmapped DOM event name <"+e+">");return r(i,t,n)},this.mouseHandler=a,this.registerEvent=c,this.unregisterEvent=u}On.$inject=["eventBus","elementRegistry","styles"];var Bn={__init__:["interactionEvents"],interactionEvents:["type",On]};function Ln(e,t){this._eventBus=e,this._canvas=t,this._selectedElements=[];var n=this;e.on(["shape.remove","connection.remove"],(function(e){var t=e.element;n.deselect(t)})),e.on(["diagram.clear","root.set"],(function(e){n.select(null)}))}Ln.$inject=["eventBus","canvas"],Ln.prototype.deselect=function(e){var t=this._selectedElements,n=t.indexOf(e);if(-1!==n){var i=t.slice();t.splice(n,1),this._eventBus.fire("selection.changed",{oldSelection:i,newSelection:t})}},Ln.prototype.get=function(){return this._selectedElements},Ln.prototype.isSelected=function(e){return-1!==this._selectedElements.indexOf(e)},Ln.prototype.select=function(e,t){var n=this._selectedElements,i=n.slice();a(e)||(e=e?[e]:[]);var r=this._canvas,o=r.getRootElement();e=e.filter((function(e){var t=r.findRoot(e);return o===t})),t?m(e,(function(e){-1===n.indexOf(e)&&n.push(e)})):this._selectedElements=n=e.slice(),this._eventBus.fire("selection.changed",{oldSelection:i,newSelection:n})};var In="hover",Fn="selected";function jn(e,t){function n(t,n){e.addMarker(t,n)}function i(t,n){e.removeMarker(t,n)}this._canvas=e,t.on("element.hover",(function(e){n(e.element,In)})),t.on("element.out",(function(e){i(e.element,In)})),t.on("selection.changed",(function(e){var t=e.oldSelection,r=e.newSelection;m(t,(function(e){-1===r.indexOf(e)&&i(e,Fn)})),m(r,(function(e){-1===t.indexOf(e)&&n(e,Fn)}))}))}function Vn(e,t,n,i){e.on("create.end",500,(function(e){var n=e.context,i=n.canExecute,r=n.elements,o=(n.hints||{}).autoSelect;if(i){if(!1===o)return;a(o)?t.select(o):t.select(r.filter(Wn))}})),e.on("connect.end",500,(function(e){var n=e.context.connection;n&&t.select(n)})),e.on("shape.move.end",500,(function(e){var n=e.previousSelection||[],r=i.get(e.context.shape.id);h(n,(function(e){return r.id===e.id}))||t.select(r)})),e.on("element.click",(function(e){if(Dn(e)){var i=e.element;i===n.getRootElement()&&(i=null);var r=t.isSelected(i),o=t.get().length>1,a=function(e){var t=Mn(e)||e;return Dn(e)&&t.shiftKey}(e);if(r&&o)return a?t.deselect(i):t.select(i);r?t.deselect(i):t.select(i,a)}}))}function Wn(e){return!e.hidden}jn.$inject=["canvas","eventBus"],Vn.$inject=["eventBus","selection","canvas","elementRegistry"];var $n={__init__:["selectionVisuals","selectionBehavior"],__depends__:[Bn],selection:["type",Ln],selectionVisuals:["type",jn],selectionBehavior:["type",Vn]};const zn=/^class[ {]/;function Gn(e){return Array.isArray(e)}function Hn(e,t){return Object.prototype.hasOwnProperty.call(e,t)}function Kn(...e){1===e.length&&Gn(e[0])&&(e=e[0]);const t=(e=[...e]).pop();return t.$inject=e,t}const Un=/constructor\s*[^(]*\(\s*([^)]*)\)/m,qn=/^(?:async\s+)?(?:function\s*[^(]*)?(?:\(\s*([^)]*)\)|(\w+))/m,Yn=/\/\*([^*]*)\*\//m;function Xn(e){if("function"!=typeof e)throw new Error(`Cannot annotate "${e}". Expected a function!`);const t=e.toString().match(function(e){return zn.test(e.toString())}(e)?Un:qn);if(!t)return[];const n=t[1]||t[2];return n&&n.split(",").map((e=>{const t=e.match(Yn);return(t&&t[1]||e).trim()}))||[]}function Zn(e,t){const n=t||{get:function(e,t){if(i.push(e),!1===t)return null;throw s(`No provider for "${e}"!`)}},i=[],r=this._providers=Object.create(n._providers||null),o=this._instances=Object.create(null),a=o.injector=this,s=function(e){const t=i.join(" -> ");return i.length=0,new Error(t?`${e} (Resolving: ${t})`:e)};function l(e,t){if(!r[e]&&e.includes(".")){const t=e.split(".");let n=l(t.shift());for(;t.length;)n=n[t.shift()];return n}if(Hn(o,e))return o[e];if(Hn(r,e)){if(-1!==i.indexOf(e))throw i.push(e),s("Cannot resolve circular dependency!");return i.push(e),o[e]=r[e][0](r[e][1]),i.pop(),o[e]}return n.get(e,t)}function p(e,t){if(void 0===t&&(t={}),"function"!=typeof e){if(!Gn(e))throw s(`Cannot invoke "${e}". Expected a function!`);e=Kn(e.slice())}return{fn:e,dependencies:(e.$inject||Xn(e)).map((e=>Hn(t,e)?t[e]:l(e)))}}function c(e){const{fn:t,dependencies:n}=p(e);return new(Function.prototype.bind.call(t,null,...n))}function u(e,t,n){const{fn:i,dependencies:r}=p(e,n);return i.apply(t,r)}function h(e){return Kn((t=>e.get(t)))}function f(e,t){if(t&&t.length){const n=Object.create(null),i=Object.create(null),o=[],a=[],s=[];let l,p,c,u;for(let e in r)l=r[e],-1!==t.indexOf(e)&&("private"===l[2]?(p=o.indexOf(l[3]),-1===p?(c=l[3].createChild([],t),u=h(c),o.push(l[3]),a.push(c),s.push(u),n[e]=[u,e,"private",c]):n[e]=[s[p],e,"private",a[p]]):n[e]=[l[2],l[1]],i[e]=!0),"factory"!==l[2]&&"type"!==l[2]||!l[1].$scope||t.forEach((t=>{-1!==l[1].$scope.indexOf(t)&&(n[e]=[l[2],l[1]],i[t]=!0)}));t.forEach((e=>{if(!i[e])throw new Error('No provider for "'+e+'". Cannot use provider from the parent!')})),e.unshift(n)}return new Zn(e,a)}const m={factory:u,type:c,value:function(e){return e}};function d(e,t){const n=e.__init__||[];return function(){n.forEach((e=>{"string"==typeof e?t.get(e):t.invoke(e)}))}}function y(e){const t=e.__exports__;if(t){const n=e.__modules__,i=Object.keys(e).reduce(((t,n)=>("__exports__"!==n&&"__modules__"!==n&&"__init__"!==n&&"__depends__"!==n&&(t[n]=e[n]),t)),Object.create(null)),o=f((n||[]).concat(i)),a=Kn((function(e){return o.get(e)}));t.forEach((function(e){r[e]=[a,e,"private",o]}));const s=(e.__init__||[]).slice();return s.unshift((function(){o.init()})),d(e=Object.assign({},e,{__init__:s}),o)}return Object.keys(e).forEach((function(t){if("__init__"===t||"__depends__"===t)return;const n=e[t];if("private"===n[2])return void(r[t]=n);const i=n[0],o=n[1];r[t]=[m[i],Jn(i,o),i]})),d(e,a)}function g(e,t){return-1!==e.indexOf(t)||-1!==(e=(t.__depends__||[]).reduce(g,e)).indexOf(t)?e:e.concat(t)}this.get=l,this.invoke=u,this.instantiate=c,this.createChild=f,this.init=function(e){const t=e.reduce(g,[]).map(y);let n=!1;return function(){n||(n=!0,t.forEach((e=>e())))}}(e)}function Jn(e,t){return"value"!==e&&Gn(t)&&(t=Kn(t.slice())),t}function Qn(e,t){k.call(this,e,1),this.CONNECTION_STYLE=t.style(["no-fill"],{strokeWidth:5,stroke:"fuchsia"}),this.SHAPE_STYLE=t.style({fill:"white",stroke:"fuchsia",strokeWidth:2}),this.FRAME_STYLE=t.style(["no-fill"],{stroke:"fuchsia",strokeDasharray:4,strokeWidth:2})}e(Qn,k),Qn.prototype.canRender=function(){return!0},Qn.prototype.drawShape=function(e,t,n){var i=U("rect");return V(i,{x:0,y:0,width:t.width||0,height:t.height||0}),tn(t)?V(i,_({},this.FRAME_STYLE,n||{})):V(i,_({},this.SHAPE_STYLE,n||{})),L(e,i),i},Qn.prototype.drawConnection=function(e,t,n){var i=he(t.waypoints,_({},this.CONNECTION_STYLE,n||{}));return L(e,i),i},Qn.prototype.getShapePath=function(e){var t=e.x,n=e.y,i=e.width;return se([["M",t,n],["l",i,0],["l",0,e.height],["l",-i,0],["z"]])},Qn.prototype.getConnectionPath=function(e){var t,n,i=e.waypoints,r=[];for(t=0;n=i[t];t++)n=n.original||n,r.push([0===t?"M":"L",n.x,n.y]);return se(r)},Qn.$inject=["eventBus","styles"];var ei={__init__:["defaultRenderer"],defaultRenderer:["type",Qn],styles:["type",function(){var e={"no-fill":{fill:"none"},"no-border":{strokeOpacity:0},"no-events":{pointerEvents:"none"}},t=this;this.cls=function(e,t,n){return _(this.style(t,n),{class:e})},this.style=function(t,n){a(t)||n||(n=t,t=[]);var i=d(t,(function(t,n){return _(t,e[n]||{})}),{});return n?_(i,n):i},this.computeStyle=function(e,n,i){return a(n)||(i=n,n=[]),t.style(n||[],_({},i,e||{}))}}]};function ti(e,t){return Math.round(e*t)/t}function ni(e){return l(e)?e+"px":e}function ii(e,t,n){const i=U("g");$(i).add(t);const r=void 0!==n?n:e.childNodes.length-1;return e.insertBefore(i,e.childNodes[r]||null),i}const ri={shape:["x","y","width","height"],connection:["waypoints"]};function oi(e,t,n,i){this._eventBus=t,this._elementRegistry=i,this._graphicsFactory=n,this._rootsIdx=0,this._layers={},this._planes=[],this._rootElement=null,this._focused=!1,this._init(e||{})}function ai(e,t){const n="matrix("+t.a+","+t.b+","+t.c+","+t.d+","+t.e+","+t.f+")";e.setAttribute("transform",n)}oi.$inject=["config.canvas","eventBus","graphicsFactory","elementRegistry"],oi.prototype._init=function(e){const t=this._eventBus,n=this._container=function(e){const t=(e=_({},{width:"100%",height:"100%"},e)).container||document.body,n=document.createElement("div");return n.setAttribute("class","djs-container djs-parent"),ct(n,{position:"relative",overflow:"hidden",width:ni(e.width),height:ni(e.height)}),t.appendChild(n),n}(e),i=this._svg=U("svg");V(i,{width:"100%",height:"100%"}),ut(i,"tabindex",0),e.autoFocus&&t.on("element.hover",(()=>{this.restoreFocus()})),t.on("element.mousedown",500,(e=>{this.focus()})),i.addEventListener("focusin",(()=>{this._setFocused(!0)})),i.addEventListener("focusout",(()=>{this._setFocused(!1)})),L(n,i);const r=this._viewport=ii(i,"viewport");e.deferUpdate&&(this._viewboxChanged=function(e,t){let n,i,r,o;function a(n){let a=Date.now(),p=n?0:o+t-a;if(p>0)return s(p);e.apply(r,i),l()}function s(e){n=setTimeout(a,e)}function l(){n&&clearTimeout(n),n=o=i=r=void 0}function p(...e){o=Date.now(),i=e,r=this,n||s(t)}return p.flush=function(){n&&a(!0),l()},p.cancel=l,p}(E(this._viewboxChanged,this),300)),t.on("diagram.init",(()=>{t.fire("canvas.init",{svg:i,viewport:r})})),t.on(["shape.added","connection.added","shape.removed","connection.removed","elements.changed","root.set"],(()=>{delete this._cachedViewbox})),t.on("diagram.destroy",500,this._destroy,this),t.on("diagram.clear",500,this._clear,this)},oi.prototype._destroy=function(){this._eventBus.fire("canvas.destroy",{svg:this._svg,viewport:this._viewport});const e=this._container.parentNode;e&&e.removeChild(this._container),delete this._svg,delete this._container,delete this._layers,delete this._planes,delete this._rootElement,delete this._viewport},oi.prototype._setFocused=function(e){e!=this._focused&&(this._focused=e,this._eventBus.fire("canvas.focus.changed",{focused:e}))},oi.prototype._clear=function(){this._elementRegistry.getAll().forEach((e=>{const t=en(e);"root"===t?this.removeRootElement(e):this._removeElement(e,t)})),this._planes=[],this._rootElement=null,delete this._cachedViewbox},oi.prototype.focus=function(){this._svg.focus({preventScroll:!0}),this._setFocused(!0)},oi.prototype.restoreFocus=function(){document.activeElement===document.body&&this.focus()},oi.prototype.isFocused=function(){return this._focused},oi.prototype.getDefaultLayer=function(){return this.getLayer("base",0)},oi.prototype.getLayer=function(e,t){if(!e)throw new Error("must specify a name");let n=this._layers[e];if(n||(n=this._layers[e]=this._createLayer(e,t)),void 0!==t&&n.index!==t)throw new Error("layer <"+e+"> already created at index <"+t+">");return n.group},oi.prototype._getChildIndex=function(e){return d(this._layers,(function(t,n){return n.visible&&e>=n.index&&t++,t}),0)},oi.prototype._createLayer=function(e,t){void 0===t&&(t=1);const n=this._getChildIndex(t);return{group:ii(this._viewport,"layer-"+e,n),index:t,visible:!0}},oi.prototype.showLayer=function(e){if(!e)throw new Error("must specify a name");const t=this._layers[e];if(!t)throw new Error("layer <"+e+"> does not exist");const n=this._viewport,i=t.group,r=t.index;if(t.visible)return i;const o=this._getChildIndex(r);return n.insertBefore(i,n.childNodes[o]||null),t.visible=!0,i},oi.prototype.hideLayer=function(e){if(!e)throw new Error("must specify a name");const t=this._layers[e];if(!t)throw new Error("layer <"+e+"> does not exist");const n=t.group;return t.visible?(re(n),t.visible=!1,n):n},oi.prototype._removeLayer=function(e){const t=this._layers[e];t&&(delete this._layers[e],re(t.group))},oi.prototype.getActiveLayer=function(){const e=this._findPlaneForRoot(this.getRootElement());return e?e.layer:null},oi.prototype.findRoot=function(e){if("string"==typeof e&&(e=this._elementRegistry.get(e)),!e)return;const t=this._findPlaneForRoot(function(e){for(;e.parent;)e=e.parent;return e}(e))||{};return t.rootElement},oi.prototype.getRootElements=function(){return this._planes.map((function(e){return e.rootElement}))},oi.prototype._findPlaneForRoot=function(e){return h(this._planes,(function(t){return t.rootElement===e}))},oi.prototype.getContainer=function(){return this._container},oi.prototype._updateMarker=function(e,t,n){let i;e.id||(e=this._elementRegistry.get(e)),e.markers=e.markers||new Set,i=this._elementRegistry._elements[e.id],i&&(m([i.gfx,i.secondaryGfx],(function(i){i&&(n?(e.markers.add(t),$(i).add(t)):(e.markers.delete(t),$(i).remove(t)))})),this._eventBus.fire("element.marker.update",{element:e,gfx:i.gfx,marker:t,add:!!n}))},oi.prototype.addMarker=function(e,t){this._updateMarker(e,t,!0)},oi.prototype.removeMarker=function(e,t){this._updateMarker(e,t,!1)},oi.prototype.hasMarker=function(e,t){return e.id||(e=this._elementRegistry.get(e)),!!e.markers&&e.markers.has(t)},oi.prototype.toggleMarker=function(e,t){this.hasMarker(e,t)?this.removeMarker(e,t):this.addMarker(e,t)},oi.prototype.getRootElement=function(){const e=this._rootElement;return e||this._planes.length?e:this.setRootElement(this.addRootElement(null))},oi.prototype.addRootElement=function(e){const t=this._rootsIdx++;e||(e={id:"__implicitroot_"+t,children:[],isImplicit:!0});const n=e.layer="root-"+t;this._ensureValid("root",e);const i=this.getLayer(n,0);return this.hideLayer(n),this._addRoot(e,i),this._planes.push({rootElement:e,layer:i}),e},oi.prototype.removeRootElement=function(e){"string"==typeof e&&(e=this._elementRegistry.get(e));if(this._findPlaneForRoot(e))return this._removeRoot(e),this._removeLayer(e.layer),this._planes=this._planes.filter((function(t){return t.rootElement!==e})),this._rootElement===e&&(this._rootElement=null),e},oi.prototype.setRootElement=function(e){if(e===this._rootElement)return e;let t;if(!e)throw new Error("rootElement required");return t=this._findPlaneForRoot(e),t||(e=this.addRootElement(e)),this._setRoot(e),e},oi.prototype._removeRoot=function(e){const t=this._elementRegistry,n=this._eventBus;n.fire("root.remove",{element:e}),n.fire("root.removed",{element:e}),t.remove(e)},oi.prototype._addRoot=function(e,t){const n=this._elementRegistry,i=this._eventBus;i.fire("root.add",{element:e}),n.add(e,t),i.fire("root.added",{element:e,gfx:t})},oi.prototype._setRoot=function(e,t){const n=this._rootElement;n&&(this._elementRegistry.updateGraphics(n,null,!0),this.hideLayer(n.layer)),e&&(t||(t=this._findPlaneForRoot(e).layer),this._elementRegistry.updateGraphics(e,this._svg,!0),this.showLayer(e.layer)),this._rootElement=e,this._eventBus.fire("root.set",{element:e})},oi.prototype._ensureValid=function(e,t){if(!t.id)throw new Error("element must have an id");if(this._elementRegistry.get(t.id))throw new Error("element <"+t.id+"> already exists");const n=ri[e],i=y(n,(function(e){return void 0!==t[e]}));if(!i)throw new Error("must supply { "+n.join(", ")+" } with "+e)},oi.prototype._setParent=function(e,t,n){!function(e,t,n){if(e&&t){"number"!=typeof n&&(n=-1);var i=e.indexOf(t);if(-1!==i){if(i===n)return;if(-1===n)return;e.splice(i,1)}-1!==n?e.splice(n,0,t):e.push(t)}}(t.children,e,n),e.parent=t},oi.prototype._addElement=function(e,t,n,i){n=n||this.getRootElement();const r=this._eventBus,o=this._graphicsFactory;this._ensureValid(e,t),r.fire(e+".add",{element:t,parent:n}),this._setParent(t,n,i);const a=o.create(e,t,i);return this._elementRegistry.add(t,a),o.update(e,t,a),r.fire(e+".added",{element:t,gfx:a}),t},oi.prototype.addShape=function(e,t,n){return this._addElement("shape",e,t,n)},oi.prototype.addConnection=function(e,t,n){return this._addElement("connection",e,t,n)},oi.prototype._removeElement=function(e,t){const n=this._elementRegistry,i=this._graphicsFactory,r=this._eventBus;if(e=n.get(e.id||e))return r.fire(t+".remove",{element:e}),i.remove(e),function(e,t){if(!e||!t)return-1;var n=e.indexOf(t);-1!==n&&e.splice(n,1)}(e.parent&&e.parent.children,e),e.parent=null,r.fire(t+".removed",{element:e}),n.remove(e),e},oi.prototype.removeShape=function(e){return this._removeElement(e,"shape")},oi.prototype.removeConnection=function(e){return this._removeElement(e,"connection")},oi.prototype.getGraphics=function(e,t){return this._elementRegistry.getGraphics(e,t)},oi.prototype._changeViewbox=function(e){this._eventBus.fire("canvas.viewbox.changing"),e.apply(this),this._cachedViewbox=null,this._viewboxChanged()},oi.prototype._viewboxChanged=function(){this._eventBus.fire("canvas.viewbox.changed",{viewbox:this.viewbox()})},oi.prototype.viewbox=function(e){if(void 0===e&&this._cachedViewbox)return structuredClone(this._cachedViewbox);const t=this._viewport,n=this.getSize();let i,r,o,a,s,l,p;return e?(this._changeViewbox((function(){s=Math.min(n.width/e.width,n.height/e.height);const i=this._svg.createSVGMatrix().scale(s).translate(-e.x,-e.y);ae(t,i)})),e):(o=this._rootElement?this.getActiveLayer():null,i=o&&o.getBBox()||{},a=ae(t),r=a?a.matrix:function(e,t,n,i,r,o){var a=Y().createSVGMatrix();switch(arguments.length){case 0:return a;case 1:return X(a,e);case 6:return X(a,{a:e,b:t,c:n,d:i,e:r,f:o})}}(),s=ti(r.a,1e3),l=ti(-r.e||0,1e3),p=ti(-r.f||0,1e3),e=this._cachedViewbox={x:l?l/s:0,y:p?p/s:0,width:n.width/s,height:n.height/s,scale:s,inner:{width:i.width||0,height:i.height||0,x:i.x||0,y:i.y||0},outer:n})},oi.prototype.scroll=function(e){const t=this._viewport;let n=t.getCTM();return e&&this._changeViewbox((function(){e=_({dx:0,dy:0},e||{}),n=this._svg.createSVGMatrix().translate(e.dx,e.dy).multiply(n),ai(t,n)})),{x:n.e,y:n.f}},oi.prototype.scrollToElement=function(e,t){let n=100;"string"==typeof e&&(e=this._elementRegistry.get(e));const i=this.findRoot(e);if(i!==this.getRootElement()&&this.setRootElement(i),i===e)return;t||(t={}),"number"==typeof t&&(n=t),t={top:t.top||n,right:t.right||n,bottom:t.bottom||n,left:t.left||n};const r=Qt(e),o=zt(r),a=this.viewbox(),s=this.zoom();let l,p;a.y+=t.top/s,a.x+=t.left/s,a.width-=(t.right+t.left)/s,a.height-=(t.bottom+t.top)/s;const c=zt(a);if(r.width<a.width&&r.height<a.height){const e=Math.max(0,o.right-c.right),t=Math.min(0,o.left-c.left),n=Math.max(0,o.bottom-c.bottom),i=Math.min(0,o.top-c.top);l=e||t,p=n||i}else l=r.x-a.x,p=r.y-a.y;this.scroll({dx:-l*s,dy:-p*s})},oi.prototype.zoom=function(e,t){if(!e)return this.viewbox(e).scale;if("fit-viewport"===e)return this._fitViewport(t);let n,i;return this._changeViewbox((function(){"object"!=typeof t&&(n=this.viewbox().outer,t={x:n.width/2,y:n.height/2}),i=this._setZoom(e,t)})),ti(i.a,1e3)},oi.prototype._fitViewport=function(e){const t=this.viewbox(),n=t.outer,i=t.inner;let r,o;return i.x>=0&&i.y>=0&&i.x+i.width<=n.width&&i.y+i.height<=n.height&&!e?o={x:0,y:0,width:Math.max(i.width+i.x,n.width),height:Math.max(i.height+i.y,n.height)}:(r=Math.min(1,n.width/i.width,n.height/i.height),o={x:i.x+(e?i.width/2-n.width/r/2:0),y:i.y+(e?i.height/2-n.height/r/2:0),width:n.width/r,height:n.height/r}),this.viewbox(o),this.viewbox(!1).scale},oi.prototype._setZoom=function(e,t){const n=this._svg,i=this._viewport,r=n.createSVGMatrix(),o=n.createSVGPoint();let a,s,l,p,c;l=i.getCTM();const u=l.a;return t?(a=_(o,t),s=a.matrixTransform(l.inverse()),p=r.translate(s.x,s.y).scale(1/u*e).translate(-s.x,-s.y),c=l.multiply(p)):c=r.scale(e),ai(this._viewport,c),c},oi.prototype.getSize=function(){return{width:this._container.clientWidth,height:this._container.clientHeight}},oi.prototype.getAbsoluteBBox=function(e){const t=this.viewbox();let n;if(e.waypoints){n=this.getGraphics(e).getBBox()}else n=e;return{x:n.x*t.scale-t.x*t.scale,y:n.y*t.scale-t.y*t.scale,width:n.width*t.scale,height:n.height*t.scale}},oi.prototype.resized=function(){delete this._cachedViewbox,this._eventBus.fire("canvas.resized")};var si="data-element-id";function li(e){this._elements={},this._eventBus=e}function pi(e,t,n){var i=function(e,t,n,i){var r=n.inverse;return Object.defineProperty(e,"remove",{value:function(e){var n=this.indexOf(e);return-1!==n&&(this.splice(n,1),t.unset(e,r,i)),e}}),Object.defineProperty(e,"contains",{value:function(e){return-1!==this.indexOf(e)}}),Object.defineProperty(e,"add",{value:function(e,n){var o=this.indexOf(e);if(void 0===n){if(-1!==o)return;n=this.length}-1!==o&&this.splice(o,1),this.splice(n,0,e),-1===o&&t.set(e,r,i)}}),Object.defineProperty(e,"__refs_collection",{value:!0}),e}(n[t.name]||[],e,t,n);Object.defineProperty(n,t.name,{enumerable:t.enumerable,value:i}),i.length&&i.forEach((function(i){e.set(i,t.inverse,n)}))}function ci(e,t){if(!(this instanceof ci))return new ci(e,t);e.inverse=t,t.inverse=e,this.props={},this.props[e.name]=e,this.props[t.name]=t}li.$inject=["eventBus"],li.prototype.add=function(e,t,n){var i=e.id;this._validateId(i),V(t,si,i),n&&V(n,si,i),this._elements[i]={element:e,gfx:t,secondaryGfx:n}},li.prototype.remove=function(e){var t=this._elements,n=e.id||e,i=n&&t[n];i&&(V(i.gfx,si,""),i.secondaryGfx&&V(i.secondaryGfx,si,""),delete t[n])},li.prototype.updateId=function(e,t){this._validateId(t),"string"==typeof e&&(e=this.get(e)),this._eventBus.fire("element.updateId",{element:e,newId:t});var n=this.getGraphics(e),i=this.getGraphics(e,!0);this.remove(e),e.id=t,this.add(e,n,i)},li.prototype.updateGraphics=function(e,t,n){var i=e.id||e,r=this._elements[i];return n?r.secondaryGfx=t:r.gfx=t,t&&V(t,si,i),t},li.prototype.get=function(e){var t;t="string"==typeof e?e:e&&V(e,si);var n=this._elements[t];return n&&n.element},li.prototype.filter=function(e){var t=[];return this.forEach((function(n,i){e(n,i)&&t.push(n)})),t},li.prototype.find=function(e){for(var t=this._elements,n=Object.keys(t),i=0;i<n.length;i++){var r=t[n[i]],o=r.element;if(e(o,r.gfx))return o}},li.prototype.getAll=function(){return this.filter((function(e){return e}))},li.prototype.forEach=function(e){var t=this._elements;Object.keys(t).forEach((function(n){var i=t[n],r=i.element,o=i.gfx;return e(r,o)}))},li.prototype.getGraphics=function(e,t){var n=e.id||e,i=this._elements[n];return i&&(t?i.secondaryGfx:i.gfx)},li.prototype._validateId=function(e){if(!e)throw new Error("element must have an id");if(this._elements[e])throw new Error("element with id "+e+" already added")},ci.prototype.bind=function(e,t){if("string"==typeof t){if(!this.props[t])throw new Error("no property <"+t+"> in ref");t=this.props[t]}t.collection?pi(this,t,e):function(e,t,n){var i=t.inverse,r=n[t.name];Object.defineProperty(n,t.name,{configurable:t.configurable,enumerable:t.enumerable,get:function(){return r},set:function(t){if(t!==r){var o=r;r=null,o&&e.unset(o,i,n),r=t,e.set(r,i,n)}}})}(this,t,e)},ci.prototype.ensureRefsCollection=function(e,t){var n=e[t.name];return function(e){return!0===e.__refs_collection}(n)||pi(this,t,e),n},ci.prototype.ensureBound=function(e,t){(function(e,t){return Object.prototype.hasOwnProperty.call(e,t.name||t)})(e,t)||this.bind(e,t)},ci.prototype.unset=function(e,t,n){e&&(this.ensureBound(e,t),t.collection?this.ensureRefsCollection(e,t).remove(n):e[t.name]=void 0)},ci.prototype.set=function(e,t,n){e&&(this.ensureBound(e,t),t.collection?this.ensureRefsCollection(e,t).add(n):e[t.name]=n)};var ui=new ci({name:"children",enumerable:!0,collection:!0},{name:"parent"}),hi=new ci({name:"labels",enumerable:!0,collection:!0},{name:"labelTarget"}),fi=new ci({name:"attachers",collection:!0},{name:"host"}),mi=new ci({name:"outgoing",collection:!0},{name:"source"}),di=new ci({name:"incoming",collection:!0},{name:"target"});function yi(){Object.defineProperty(this,"businessObject",{writable:!0}),Object.defineProperty(this,"label",{get:function(){return this.labels[0]},set:function(e){var t=this.label,n=this.labels;!e&&t?n.remove(t):n.add(e,0)}}),ui.bind(this,"parent"),hi.bind(this,"labels"),mi.bind(this,"outgoing"),di.bind(this,"incoming")}function gi(){yi.call(this),ui.bind(this,"children"),fi.bind(this,"host"),fi.bind(this,"attachers")}function vi(){yi.call(this),ui.bind(this,"children")}function xi(){gi.call(this),hi.bind(this,"labelTarget")}function bi(){yi.call(this),mi.bind(this,"source"),di.bind(this,"target")}e(gi,yi),e(vi,gi),e(xi,gi),e(bi,yi);var wi={connection:bi,shape:gi,label:xi,root:vi};function Ei(){this._uid=12}Ei.prototype.createRoot=function(e){return this.create("root",e)},Ei.prototype.createLabel=function(e){return this.create("label",e)},Ei.prototype.createShape=function(e){return this.create("shape",e)},Ei.prototype.createConnection=function(e){return this.create("connection",e)},Ei.prototype.create=function(e,t){return(t=_({},t||{})).id||(t.id=e+"_"+this._uid++),function(e,t){var n=wi[e];if(!n)throw new Error("unknown type: <"+e+">");return _(new n,t)}(e,t)};var _i="__fn",Ai=Array.prototype.slice;function ki(){this._listeners={},this.on("diagram.destroy",1,this._destroy,this)}function Ri(){}function Si(e,t){this._eventBus=e,this._elementRegistry=t}function Ci(e,t,n){var i=n||t.firstChild;e!==i&&t.insertBefore(e,i)}ki.prototype.on=function(e,t,n,i){if(e=a(e)?e:[e],p(t)&&(i=n,n=t,t=1e3),!l(t))throw new Error("priority must be a number");var r=n;i&&((r=E(n,i))[_i]=n[_i]||n);var o=this;e.forEach((function(e){o._addListener(e,{priority:t,callback:r,next:null})}))},ki.prototype.once=function(e,t,n,i){var r=this;if(p(t)&&(i=n,n=t,t=1e3),!l(t))throw new Error("priority must be a number");function o(){o.__isTomb=!0;var t=n.apply(i,arguments);return r.off(e,o),t}o[_i]=n,this.on(e,t,o)},ki.prototype.off=function(e,t){e=a(e)?e:[e];var n=this;e.forEach((function(e){n._removeListener(e,t)}))},ki.prototype.createEvent=function(e){var t=new Ri;return t.init(e),t},ki.prototype.fire=function(e,t){var n,i,r,o;if(o=Ai.call(arguments),"object"==typeof e&&(e=(t=e).type),!e)throw new Error("no event type specified");if(i=this._listeners[e]){n=t instanceof Ri?t:this.createEvent(t),o[0]=n;var a=n.type;e!==a&&(n.type=e);try{r=this._invokeListeners(n,o,i)}finally{e!==a&&(n.type=a)}return void 0===r&&n.defaultPrevented&&(r=!1),r}},ki.prototype.handleError=function(e){return!1===this.fire("error",{error:e})},ki.prototype._destroy=function(){this._listeners={}},ki.prototype._invokeListeners=function(e,t,n){for(var i;n&&!e.cancelBubble;)i=this._invokeListener(e,t,n),n=n.next;return i},ki.prototype._invokeListener=function(e,t,n){var i;if(n.callback.__isTomb)return i;try{i=function(e,t){return e.apply(null,t)}(n.callback,t),void 0!==i&&(e.returnValue=i,e.stopPropagation()),!1===i&&e.preventDefault()}catch(e){if(!this.handleError(e))throw console.error("unhandled error in event listener",e),e}return i},ki.prototype._addListener=function(e,t){var n,i=this._getListeners(e);if(i){for(;i;){if(i.priority<t.priority)return t.next=i,void(n?n.next=t:this._setListeners(e,t));n=i,i=i.next}n.next=t}else this._setListeners(e,t)},ki.prototype._getListeners=function(e){return this._listeners[e]},ki.prototype._setListeners=function(e,t){this._listeners[e]=t},ki.prototype._removeListener=function(e,t){var n,i,r,o=this._getListeners(e);if(t)for(;o;)n=o.next,(r=o.callback)!==t&&r[_i]!==t||(i?i.next=n:this._setListeners(e,n)),i=o,o=n;else this._setListeners(e,null)},Ri.prototype.stopPropagation=function(){this.cancelBubble=!0},Ri.prototype.preventDefault=function(){this.defaultPrevented=!0},Ri.prototype.init=function(e){_(this,e||{})},Si.$inject=["eventBus","elementRegistry"],Si.prototype._getChildrenContainer=function(e){var t,n=this._elementRegistry.getGraphics(e);return e.parent?(t=function(e){return e.parentNode.childNodes[1]}(n),t||($(t=U("g")).add("djs-children"),L(n.parentNode,t))):t=n,t},Si.prototype._clear=function(e){var t=function(e){return e.childNodes[0]}(e);return dt(t),t},Si.prototype._createContainer=function(e,t,n,i){var r=U("g");$(r).add("djs-group"),void 0!==n?Ci(r,t,t.childNodes[n]):L(t,r);var o=U("g");$(o).add("djs-element"),$(o).add("djs-"+e),i&&$(o).add("djs-frame"),L(r,o);var a=U("g");return $(a).add("djs-visual"),L(o,a),o},Si.prototype.create=function(e,t,n){var i=this._getChildrenContainer(t.parent);return this._createContainer(e,i,n,tn(t))},Si.prototype.updateContainments=function(e){var t,n=this,i=this._elementRegistry;t=d(e,(function(e,t){return t.parent&&(e[t.parent.id]=t.parent),e}),{}),m(t,(function(e){var t=e.children;if(t){var r=n._getChildrenContainer(e);m(t.slice().reverse(),(function(e){Ci(i.getGraphics(e).parentNode,r)}))}}))},Si.prototype.drawShape=function(e,t,n={}){return this._eventBus.fire("render.shape",{gfx:e,element:t,attrs:n})},Si.prototype.getShapePath=function(e){return this._eventBus.fire("render.getShapePath",e)},Si.prototype.drawConnection=function(e,t,n={}){return this._eventBus.fire("render.connection",{gfx:e,element:t,attrs:n})},Si.prototype.getConnectionPath=function(e){return this._eventBus.fire("render.getConnectionPath",e)},Si.prototype.update=function(e,t,n){if(t.parent){var i=this._clear(n);if("shape"===e)this.drawShape(i,t),Xe(n,t.x,t.y);else{if("connection"!==e)throw new Error("unknown type: "+e);this.drawConnection(i,t)}t.hidden?V(n,"display","none"):V(n,"display","block")}},Si.prototype.remove=function(e){re(this._elementRegistry.getGraphics(e).parentNode)};var Mi={__depends__:[ei],__init__:["canvas"],canvas:["type",oi],elementRegistry:["type",li],elementFactory:["type",Ei],eventBus:["type",ki],graphicsFactory:["type",Si]};function Pi(e){return function(e){var t=new Zn(e);return t.init(),t}([{config:["value",e=e||{}]},Mi].concat(e.modules||[]))}function Di(e,t){this._injector=t||Pi(e),this.get("eventBus").fire("diagram.init")}function Ti(){}function Ni(e,t){this.model=e,this.properties=t}Di.prototype.get=function(e,t){return this._injector.get(e,t)},Di.prototype.invoke=function(e,t,n){return this._injector.invoke(e,t,n)},Di.prototype.destroy=function(){this.get("eventBus").fire("diagram.destroy")},Di.prototype.clear=function(){this.get("eventBus").fire("diagram.clear")},Ti.prototype.get=function(e){return this.$model.properties.get(this,e)},Ti.prototype.set=function(e,t){this.$model.properties.set(this,e,t)},Ni.prototype.createType=function(e){var t=this.model,n=this.properties,i=Object.create(Ti.prototype);m(e.properties,(function(e){e.isMany||void 0===e.default||(i[e.name]=e.default)})),n.defineModel(i,t),n.defineDescriptor(i,e);var r=e.ns.name;function o(e){n.define(this,"$type",{value:r,enumerable:!0}),n.define(this,"$attrs",{value:{}}),n.define(this,"$parent",{writable:!0}),m(e,E((function(e,t){this.set(t,e)}),this))}return o.prototype=i,o.hasType=i.$instanceOf=this.model.hasType,n.defineModel(o,t),n.defineDescriptor(o,e),o};var Oi={String:!0,Boolean:!0,Integer:!0,Real:!0,Element:!0},Bi={String:function(e){return e},Boolean:function(e){return"true"===e},Integer:function(e){return parseInt(e,10)},Real:function(e){return parseFloat(e)}};function Li(e,t){var n=Bi[e];return n?n(t):t}function Ii(e){return!!Oi[e]}function Fi(e){return!!Bi[e]}function ji(e,t){var n,i,r=e.split(/:/);if(1===r.length)n=e,i=t;else{if(2!==r.length)throw new Error("expected <prefix:localName> or <localName>, got "+e);n=r[1],i=r[0]}return{name:e=(i?i+":":"")+n,prefix:i,localName:n}}function Vi(e){this.ns=e,this.name=e.name,this.allTypes=[],this.allTypesByName={},this.properties=[],this.propertiesByName={}}function Wi(e,t){this.packageMap={},this.typeMap={},this.packages=[],this.properties=t,m(e,E(this.registerPackage,this))}function $i(e,t,n){var i=t[n];if(i in e)throw new Error("package with "+n+" <"+i+"> already defined")}function zi(e){this.model=e}function Gi(e,t,n){Object.defineProperty(e,t.name,{enumerable:!t.isReference,writable:!0,value:n,configurable:!0})}function Hi(e){return e.replace(/^:/,"")}function Ki(e,t={}){this.properties=new zi(this),this.factory=new Ni(this,this.properties),this.registry=new Wi(e,this.properties),this.typeCache={},this.config=t}Vi.prototype.build=function(){return function(e,t){let n={},i=Object(e);return m(t,(function(t){t in i&&(n[t]=e[t])})),n}(this,["ns","name","allTypes","allTypesByName","properties","propertiesByName","bodyProperty","idProperty"])},Vi.prototype.addProperty=function(e,t,n){"boolean"==typeof t&&(n=t,t=void 0),this.addNamedProperty(e,!1!==n);var i=this.properties;void 0!==t?i.splice(t,0,e):i.push(e)},Vi.prototype.replaceProperty=function(e,t,n){var i=e.ns,r=this.properties,o=this.propertiesByName,a=e.name!==t.name;if(e.isId){if(!t.isId)throw new Error("property <"+t.ns.name+"> must be id property to refine <"+e.ns.name+">");this.setIdProperty(t,!1)}if(e.isBody){if(!t.isBody)throw new Error("property <"+t.ns.name+"> must be body property to refine <"+e.ns.name+">");this.setBodyProperty(t,!1)}var s=r.indexOf(e);if(-1===s)throw new Error("property <"+i.name+"> not found in property list");r.splice(s,1),this.addProperty(t,n?void 0:s,a),o[i.name]=o[i.localName]=t},Vi.prototype.redefineProperty=function(e,t,n){var i=e.ns.prefix,r=t.split("#"),o=ji(r[0],i),a=ji(r[1],o.prefix).name,s=this.propertiesByName[a];if(!s)throw new Error("refined property <"+a+"> not found");this.replaceProperty(s,e,n),delete e.redefines},Vi.prototype.addNamedProperty=function(e,t){var n=e.ns,i=this.propertiesByName;t&&(this.assertNotDefined(e,n.name),this.assertNotDefined(e,n.localName)),i[n.name]=i[n.localName]=e},Vi.prototype.removeNamedProperty=function(e){var t=e.ns,n=this.propertiesByName;delete n[t.name],delete n[t.localName]},Vi.prototype.setBodyProperty=function(e,t){if(t&&this.bodyProperty)throw new Error("body property defined multiple times (<"+this.bodyProperty.ns.name+">, <"+e.ns.name+">)");this.bodyProperty=e},Vi.prototype.setIdProperty=function(e,t){if(t&&this.idProperty)throw new Error("id property defined multiple times (<"+this.idProperty.ns.name+">, <"+e.ns.name+">)");this.idProperty=e},Vi.prototype.assertNotTrait=function(e){if((e.extends||[]).length)throw new Error(`cannot create <${e.name}> extending <${e.extends}>`)},Vi.prototype.assertNotDefined=function(e,t){var n=e.name,i=this.propertiesByName[n];if(i)throw new Error("property <"+n+"> already defined; override of <"+i.definedBy.ns.name+"#"+i.ns.name+"> by <"+e.definedBy.ns.name+"#"+e.ns.name+"> not allowed without redefines")},Vi.prototype.hasProperty=function(e){return this.propertiesByName[e]},Vi.prototype.addTrait=function(e,t){t&&this.assertNotTrait(e);var n=this.allTypesByName,i=this.allTypes,r=e.name;r in n||(m(e.properties,E((function(n){n=_({},n,{name:n.ns.localName,inherited:t}),Object.defineProperty(n,"definedBy",{value:e});var i=n.replaces,r=n.redefines;i||r?this.redefineProperty(n,i||r,i):(n.isBody&&this.setBodyProperty(n),n.isId&&this.setIdProperty(n),this.addProperty(n))}),this)),i.push(e),n[r]=e)},Wi.prototype.getPackage=function(e){return this.packageMap[e]},Wi.prototype.getPackages=function(){return this.packages},Wi.prototype.registerPackage=function(e){e=_({},e);var t=this.packageMap;$i(t,e,"prefix"),$i(t,e,"uri"),m(e.types,E((function(t){this.registerType(t,e)}),this)),t[e.uri]=t[e.prefix]=e,this.packages.push(e)},Wi.prototype.registerType=function(e,t){var n=ji((e=_({},e,{superClass:(e.superClass||[]).slice(),extends:(e.extends||[]).slice(),properties:(e.properties||[]).slice(),meta:_(e.meta||{})})).name,t.prefix),i=n.name,r={};m(e.properties,E((function(e){var t=ji(e.name,n.prefix),i=t.name;Ii(e.type)||(e.type=ji(e.type,t.prefix).name),_(e,{ns:t,name:i}),r[i]=e}),this)),_(e,{ns:n,name:i,propertiesByName:r}),m(e.extends,E((function(e){var t=ji(e,n.prefix),r=this.typeMap[t.name];r.traits=r.traits||[],r.traits.push(i)}),this)),this.definePackage(e,t),this.typeMap[i]=e},Wi.prototype.mapTypes=function(e,t,n){var i=Ii(e.name)?{name:e.name}:this.typeMap[e.name],r=this;function o(n,i){var o=ji(n,Ii(n)?"":e.prefix);r.mapTypes(o,t,i)}function a(e){return o(e,!0)}if(!i)throw new Error("unknown type <"+e.name+">");m(i.superClass,n?a:function(e){return o(e,!1)}),t(i,!n),m(i.traits,a)},Wi.prototype.getEffectiveDescriptor=function(e){var t=ji(e),n=new Vi(t);this.mapTypes(t,(function(e,t){n.addTrait(e,t)}));var i=n.build();return this.definePackage(i,i.allTypes[i.allTypes.length-1].$pkg),i},Wi.prototype.definePackage=function(e,t){this.properties.define(e,"$pkg",{value:t})},zi.prototype.set=function(e,t,n){if(!c(t)||!t.length)throw new TypeError("property name must be a non-empty string");var i=this.getProperty(e,t),r=i&&i.name;void 0===n?i?delete e[r]:delete e.$attrs[Hi(t)]:i?r in e?e[r]=n:Gi(e,i,n):e.$attrs[Hi(t)]=n},zi.prototype.get=function(e,t){var n=this.getProperty(e,t);if(!n)return e.$attrs[Hi(t)];var i=n.name;return!e[i]&&n.isMany&&Gi(e,n,[]),e[i]},zi.prototype.define=function(e,t,n){if(!n.writable){var i=n.value;delete(n=_({},n,{get:function(){return i}})).value}Object.defineProperty(e,t,n)},zi.prototype.defineDescriptor=function(e,t){this.define(e,"$descriptor",{value:t})},zi.prototype.defineModel=function(e,t){this.define(e,"$model",{value:t})},zi.prototype.getProperty=function(e,t){var n=this.model,i=n.getPropertyDescriptor(e,t);if(i)return i;if(t.includes(":"))return null;const r=n.config.strict;if(void 0!==r){const n=new TypeError(`unknown property <${t}> on <${e.$type}>`);if(r)throw n;"undefined"!=typeof console&&console.warn(n)}return null},Ki.prototype.create=function(e,t){var n=this.getType(e);if(!n)throw new Error("unknown type <"+e+">");return new n(t)},Ki.prototype.getType=function(e){var t=this.typeCache,n=c(e)?e:e.ns.name,i=t[n];return i||(e=this.registry.getEffectiveDescriptor(n),i=t[n]=this.factory.createType(e)),i},Ki.prototype.createAny=function(e,t,n){var a=ji(e),l={$type:e,$instanceOf:function(e){return e===this.$type},get:function(e){return this[e]},set:function(e,t){!function(e,t,n){let a=e;m(t,(function(e,s){if("number"!=typeof e&&"string"!=typeof e)throw new Error("illegal key type: "+typeof e+". Key should be of type number or string.");if("constructor"===e)throw new Error("illegal key: constructor");if("__proto__"===e)throw new Error("illegal key: __proto__");let l=t[s+1],p=a[e];r(l)&&o(p)&&(p=a[e]=isNaN(+l)?{}:[]),i(l)?i(n)?delete a[e]:a[e]=n:a=p}))}(this,[e],t)}},p={name:e,isGeneric:!0,ns:{prefix:a.prefix,localName:a.localName,uri:t}};return this.properties.defineDescriptor(l,p),this.properties.defineModel(l,this),this.properties.define(l,"get",{enumerable:!1,writable:!0}),this.properties.define(l,"set",{enumerable:!1,writable:!0}),this.properties.define(l,"$parent",{enumerable:!1,writable:!0}),this.properties.define(l,"$instanceOf",{enumerable:!1,writable:!0}),m(n,(function(e,t){s(e)&&void 0!==e.value?l[e.name]=e.value:l[t]=e})),l},Ki.prototype.getPackage=function(e){return this.registry.getPackage(e)},Ki.prototype.getPackages=function(){return this.registry.getPackages()},Ki.prototype.getElementDescriptor=function(e){return e.$descriptor},Ki.prototype.hasType=function(e,t){return void 0===t&&(t=e,e=this),t in e.$model.getElementDescriptor(e).allTypesByName},Ki.prototype.getPropertyDescriptor=function(e,t){return this.getElementDescriptor(e).propertiesByName[t]},Ki.prototype.getTypeDescriptor=function(e){return this.registry.typeMap[e]};var Ui=String.fromCharCode,qi=Object.prototype.hasOwnProperty,Yi=/&#(\d+);|&#x([0-9a-f]+);|&(\w+);/gi,Xi={amp:"&",apos:"'",gt:">",lt:"<",quot:'"'};function Zi(e,t,n,i){return i?qi.call(Xi,i)?Xi[i]:"&"+i+";":Ui(t||parseInt(n,16))}function Ji(e){return e.length>3&&-1!==e.indexOf("&")?e.replace(Yi,Zi):e}Object.keys(Xi).forEach((function(e){Xi[e.toUpperCase()]=Xi[e]}));var Qi="non-whitespace outside of root node";function er(e){return new Error(e)}function tr(e){return"missing namespace for prefix <"+e+">"}function nr(e){return{get:e,enumerable:!0}}function ir(e){var t,n={};for(t in e)n[t]=e[t];return n}function rr(e){return e+"$uri"}function or(){return{line:0,column:0}}function ar(e){throw e}function sr(e){if(!this)return new sr(e);var t,n,i,r,o,a,s,l,p,c=e&&e.proxy,u=ar,h=or,f=!1,m=!1,d=null,y=!1;function g(e){e instanceof Error||(e=er(e)),d=e,u(e,h)}function v(e){o&&(e instanceof Error||(e=er(e)),o(e,h))}this.on=function(e,p){if("function"!=typeof p)throw er("required args <name, cb>");switch(e){case"openTag":n=p;break;case"text":t=p;break;case"closeTag":i=p;break;case"error":u=p;break;case"warn":o=p;break;case"cdata":r=p;break;case"attention":l=p;break;case"question":s=p;break;case"comment":a=p;break;default:throw er("unsupported event: "+e)}return this},this.ns=function(e){if(void 0===e&&(e={}),"object"!=typeof e)throw er("required args <nsMap={}>");var t,n={};for(t in e)n[t]=e[t];return m=!0,p=n,this},this.parse=function(e){if("string"!=typeof e)throw er("required args <xml=string>");return d=null,function(e){var o,u,d,x,b,w,E,_,A,k,R,S=m?[]:null,C=m?function(e){var t,n,i={};for(t in e)i[n=e[t]]=n,i[rr(n)]=t;return i}(p):null,M=[],P=0,D=!1,T=!1,N=0,O=0,B="",L=0;function I(){if(null!==R)return R;var e,t,n,i,r,o,a,s,l,c,u,h=m&&C.xmlns,d=m&&f?[]:null,y=L,g=B,x=g.length,b={},w={};e:for(;y<x;y++)if(l=!1,!(32===(c=g.charCodeAt(y))||c<14&&c>8)){for((c<65||c>122||c>90&&c<97)&&95!==c&&58!==c&&(v("illegal first char attribute name"),l=!0),u=y+1;u<x;u++)if(!((c=g.charCodeAt(u))>96&&c<123||c>64&&c<91||c>47&&c<59||46===c||45===c||95===c)){if(32===c||c<14&&c>8){v("missing attribute value"),y=u;continue e}if(61===c)break;v("illegal attribute name char"),l=!0}if("xmlns:xmlns"===(s=g.substring(y,u))&&(v("illegal declaration of xmlns"),l=!0),34===(c=g.charCodeAt(u+1)))-1===(u=g.indexOf('"',y=u+2))&&-1!==(u=g.indexOf("'",y))&&(v("attribute value quote missmatch"),l=!0);else if(39===c)-1===(u=g.indexOf("'",y=u+2))&&-1!==(u=g.indexOf('"',y))&&(v("attribute value quote missmatch"),l=!0);else for(v("missing attribute value quotes"),l=!0,u+=1;u<x&&!(32===(c=g.charCodeAt(u+1))||c<14&&c>8);u++);for(-1===u&&(v("missing closing quotes"),u=x,l=!0),l||(o=g.substring(y,u)),y=u;u+1<x&&!(32===(c=g.charCodeAt(u+1))||c<14&&c>8);u++)y===u&&(v("illegal character after attribute end"),l=!0);if(y=u+1,!l)if(s in w)v("attribute <"+s+"> already defined");else if(w[s]=!0,m)if(f){if(null!==(r="xmlns"===s?"xmlns":120===s.charCodeAt(0)&&"xmlns:"===s.substr(0,6)?s.substr(6):null)){if(e=Ji(o),t=rr(r),!(a=p[e])){if("xmlns"===r||t in C&&C[t]!==e)do{a="ns"+P++}while(void 0!==C[a]);else a=r;p[e]=a}C[r]!==a&&(i||(C=ir(C),i=!0),C[r]=a,"xmlns"===r&&(C[rr(a)]=e,h=a),C[t]=e),b[s]=o;continue}d.push(s,o)}else-1!==(c=s.indexOf(":"))?(n=C[s.substring(0,c)])?b[s=h===n?s.substr(c+1):n+s.substr(c)]=o:v(tr(s.substring(0,c))):b[s]=o;else b[s]=o}if(f)for(y=0,x=d.length;y<x;y++){if(s=d[y++],o=d[y],-1!==(c=s.indexOf(":"))){if(!(n=C[s.substring(0,c)])){v(tr(s.substring(0,c)));continue}s=h===n?s.substr(c+1):n+s.substr(c)}b[s]=o}return R=b}function F(){for(var t,n,i=/(\r\n|\r|\n)/g,r=0,o=0,a=0,s=O;N>=a&&(t=i.exec(e))&&!((s=t[0].length+t.index)>N);)r+=1,a=s;return-1==N?(o=s,n=e.substring(O)):0===O?n=e.substring(O,N):(o=N-a,n=-1==O?e.substring(N):e.substring(N,O+1)),{data:n,line:r,column:o}}h=F,c&&(k=Object.create({},{name:nr((function(){return _})),originalName:nr((function(){return A})),attrs:nr(I),ns:nr((function(){return C}))}));for(;-1!==O;){if(-1===(N=60===e.charCodeAt(O)?O:e.indexOf("<",O)))return M.length?g("unexpected end of file"):0===O?g("missing start tag"):void(O<e.length&&e.substring(O).trim()&&v(Qi));if(O!==N)if(M.length){if(t&&(t(e.substring(O,N),Ji,h),y))return}else if(e.substring(O,N).trim()&&(v(Qi),y))return;if(33===(b=e.charCodeAt(N+1))){if(91===(x=e.charCodeAt(N+2))&&"CDATA["===e.substr(N+3,6)){if(-1===(O=e.indexOf("]]>",N)))return g("unclosed cdata");if(r&&(r(e.substring(N+9,O),h),y))return;O+=3;continue}if(45===x&&45===e.charCodeAt(N+3)){if(-1===(O=e.indexOf("--\x3e",N)))return g("unclosed comment");if(a&&(a(e.substring(N+4,O),Ji,h),y))return;O+=3;continue}}if(63!==b){for(u=N+1;;u++){if(w=e.charCodeAt(u),isNaN(w))return O=-1,g("unclosed tag");if(34===w)u=-1!==(x=e.indexOf('"',u+1))?x:u;else if(39===w)u=-1!==(x=e.indexOf("'",u+1))?x:u;else if(62===w){O=u;break}}if(33!==b){if(R={},47===b){if(D=!1,T=!0,!M.length)return g("missing open tag");if(u=_=M.pop(),x=N+2+u.length,e.substring(N+2,x)!==u)return g("closing tag mismatch");for(;x<O;x++)if(!(32===(b=e.charCodeAt(x))||b>8&&b<14))return g("close tag")}else{if(47===e.charCodeAt(O-1)?(u=_=e.substring(N+1,O-1),D=!0,T=!0):(u=_=e.substring(N+1,O),D=!0,T=!1),!(b>96&&b<123||b>64&&b<91||95===b||58===b))return g("illegal first char nodeName");for(x=1,d=u.length;x<d;x++)if(!((b=u.charCodeAt(x))>96&&b<123||b>64&&b<91||b>47&&b<59||45===b||95===b||46==b)){if(32===b||b<14&&b>8){_=u.substring(0,x),R=null;break}return g("invalid nodeName")}T||M.push(_)}if(m){if(o=C,D&&(T||S.push(o),null===R&&(f=-1!==u.indexOf("xmlns",x))&&(L=x,B=u,I(),f=!1)),A=_,-1!==(b=_.indexOf(":"))){if(!(E=C[_.substring(0,b)]))return g("missing namespace on <"+A+">");_=_.substr(b+1)}else E=C.xmlns;E&&(_=E+":"+_)}if(D&&(L=x,B=u,n&&(c?n(k,Ji,T,h):n(_,I,Ji,T,h),y)))return;if(T){if(i&&(i(c?k:_,Ji,D,h),y))return;m&&(C=D?o:S.pop())}O+=1}else{if(l&&(l(e.substring(N,O+1),Ji,h),y))return;O+=1}}else{if(-1===(O=e.indexOf("?>",N)))return g("unclosed question");if(s&&(s(e.substring(N,O+2),h),y))return;O+=2}}}(e),h=or,y=!1,d},this.stop=function(){y=!0}}function lr(e){return e.xml&&"lowerCase"===e.xml.tagAlias}var pr={xsi:"http://www.w3.org/2001/XMLSchema-instance",xml:"http://www.w3.org/XML/1998/namespace"},cr="property";function ur(e){return e.xml&&e.xml.serialize}function hr(e,t){return lr(t)?e.prefix+":"+((n=e.localName).charAt(0).toUpperCase()+n.slice(1)):e.name;var n}function fr(e){return new Error(e)}function mr(e){return e.$descriptor}function dr(e){_(this,e),this.elementsById={},this.references=[],this.warnings=[],this.addReference=function(e){this.references.push(e)},this.addElement=function(e){if(!e)throw fr("expected element");var t,n=this.elementsById,i=mr(e).idProperty;if(i&&(t=e.get(i.name))){if(!/^([a-z][\w-.]*:)?[a-z_][\w-.]*$/i.test(t))throw new Error("illegal ID <"+t+">");if(n[t])throw fr("duplicate ID <"+t+">");n[t]=e}},this.addWarning=function(e){this.warnings.push(e)}}function yr(){}function gr(){}function vr(){}function xr(e,t){this.property=e,this.context=t}function br(e,t){this.element=t,this.propertyDesc=e}function wr(){}function Er(e,t,n){this.model=e,this.type=e.getType(t),this.context=n}function _r(e,t,n){Er.call(this,e,t,n)}function Ar(e,t,n){this.model=e,this.context=n}function kr(e){e instanceof Ki&&(e={model:e}),_(this,{lax:!1},e)}yr.prototype.handleEnd=function(){},yr.prototype.handleText=function(){},yr.prototype.handleNode=function(){},gr.prototype=Object.create(yr.prototype),gr.prototype.handleNode=function(){return this},vr.prototype=Object.create(yr.prototype),vr.prototype.handleText=function(e){this.body=(this.body||"")+e},xr.prototype=Object.create(vr.prototype),xr.prototype.handleNode=function(e){if(this.element)throw fr("expected no sub nodes");return this.element=this.createReference(e),this},xr.prototype.handleEnd=function(){this.element.id=this.body},xr.prototype.createReference=function(e){return{property:this.property.ns.name,id:""}},br.prototype=Object.create(vr.prototype),br.prototype.handleEnd=function(){var e=this.body||"",t=this.element,n=this.propertyDesc;e=Li(n.type,e),n.isMany?t.get(n.name).push(e):t.set(n.name,e)},wr.prototype=Object.create(vr.prototype),wr.prototype.handleNode=function(e){var t=this,n=this.element;return n?t=this.handleChild(e):(n=this.element=this.createElement(e),this.context.addElement(n)),t},Er.prototype=Object.create(wr.prototype),Er.prototype.addReference=function(e){this.context.addReference(e)},Er.prototype.handleText=function(e){if(!mr(this.element).bodyProperty)throw fr("unexpected body text <"+e+">");vr.prototype.handleText.call(this,e)},Er.prototype.handleEnd=function(){var e=this.body,t=this.element,n=mr(t).bodyProperty;n&&void 0!==e&&(e=Li(n.type,e),t.set(n.name,e))},Er.prototype.createElement=function(e){var t,n=e.attributes,i=this.type,r=mr(i),o=this.context,a=new i({}),s=this.model;return m(n,(function(e,n){var i=r.propertiesByName[n];i&&i.isReference?i.isMany?m(e.split(" "),(function(e){o.addReference({element:a,property:i.ns.name,id:e})})):o.addReference({element:a,property:i.ns.name,id:e}):(i?e=Li(i.type,e):"xmlns"===n?n=":"+n:(t=ji(n,r.ns.prefix),s.getPackage(t.prefix)&&o.addWarning({message:"unknown attribute <"+n+">",element:a,property:n,value:e})),a.set(n,e))})),a},Er.prototype.getPropertyForNode=function(e){var t=ji(e.name),n=this.type,i=this.model,r=mr(n),o=t.name,a=r.propertiesByName[o];if(a&&!a.isAttr){const t=function(e){const t=ur(e);return t!==cr&&(t||null)}(a);if(t){const n=e.attributes[t];if(n){const t=function(e,t,n){const i=ji(e,t.xmlns),r=ji(`${t[i.prefix]||i.prefix}:${i.localName}`);return function(e,t){var n=e.name,i=e.localName,r=t&&t.xml&&t.xml.typePrefix;return r&&0===i.indexOf(r)?e.prefix+":"+i.slice(r.length):n}(r,n.getPackage(r.prefix))}(n,e.ns,i);return _({},a,{effectiveType:mr(i.getType(t)).name})}}return a}var s=i.getPackage(t.prefix);if(s){const e=hr(t,s),n=i.getType(e);if(a=h(r.properties,(function(e){return!e.isVirtual&&!e.isReference&&!e.isAttribute&&n.hasType(e.type)})))return _({},a,{effectiveType:mr(n).name})}else if(a=h(r.properties,(function(e){return!e.isReference&&!e.isAttribute&&"Element"===e.type})))return a;throw fr("unrecognized element <"+t.name+">")},Er.prototype.toString=function(){return"ElementDescriptor["+mr(this.type).name+"]"},Er.prototype.valueHandler=function(e,t){return new br(e,t)},Er.prototype.referenceHandler=function(e){return new xr(e,this.context)},Er.prototype.handler=function(e){return"Element"===e?new Ar(this.model,e,this.context):new Er(this.model,e,this.context)},Er.prototype.handleChild=function(e){var t,n,i,r;if(t=this.getPropertyForNode(e),i=this.element,Fi(n=t.effectiveType||t.type))return this.valueHandler(t,i);var o=(r=t.isReference?this.referenceHandler(t).handleNode(e):this.handler(n).handleNode(e)).element;return void 0!==o&&(t.isMany?i.get(t.name).push(o):i.set(t.name,o),t.isReference?(_(o,{element:i}),this.context.addReference(o)):o.$parent=i),r},_r.prototype=Object.create(Er.prototype),_r.prototype.createElement=function(e){var t=e.name,n=ji(t),i=this.model,r=this.type,o=i.getPackage(n.prefix),a=o&&hr(n,o)||t;if(!r.hasType(a))throw fr("unexpected element <"+e.originalName+">");return Er.prototype.createElement.call(this,e)},Ar.prototype=Object.create(wr.prototype),Ar.prototype.createElement=function(e){var t=e.name,n=ji(t).prefix,i=e.ns[n+"$uri"],r=e.attributes;return this.model.createAny(t,i,r)},Ar.prototype.handleChild=function(e){var t=new Ar(this.model,"Element",this.context).handleNode(e),n=this.element,i=t.element;return void 0!==i&&((n.$children=n.$children||[]).push(i),i.$parent=n),t},Ar.prototype.handleEnd=function(){this.body&&(this.element.$body=this.body)},kr.prototype.fromXML=function(e,t,n){var i=t.rootHandler;t instanceof Er?(i=t,t={}):"string"==typeof t?(i=this.handler(t),t={}):"string"==typeof i&&(i=this.handler(i));var r=this.model,o=this.lax,a=new dr(_({},t,{rootHandler:i})),s=new sr({proxy:!0}),l=function(){var e=[];return Object.defineProperty(e,"peek",{value:function(){return this[this.length-1]}}),e}();function p(e,t,n){var i=t(),r=i.line,o=i.column,s=i.data;"<"===s.charAt(0)&&-1!==s.indexOf(" ")&&(s=s.slice(0,s.indexOf(" "))+">");var l="unparsable content "+(s?s+" ":"")+"detected\n\tline: "+r+"\n\tcolumn: "+o+"\n\tnested error: "+e.message;if(n)return a.addWarning({message:l,error:e}),!0;throw fr(l)}function c(e,t){return p(e,t,!0)}i.context=a,l.push(i);var u=/^<\?xml /i,h=/ encoding="([^"]+)"/i,f=/^utf-8$/i;function m(e,t){try{l.peek().handleText(e)}catch(e){c(e,t)}}var d=r.getPackages().reduce((function(e,t){return e[t.uri]=t.prefix,e}),Object.entries(pr).reduce((function(e,[t,n]){return e[n]=t,e}),r.config&&r.config.nsMap||{}));return s.ns(d).on("openTag",(function(e,t,n,i){var r=e.attrs||{},a=Object.keys(r).reduce((function(e,n){var i=t(r[n]);return e[n]=i,e}),{});!function(e,t){var n=l.peek();try{l.push(n.handleNode(e))}catch(e){p(e,t,o)&&l.push(new gr)}}({name:e.name,originalName:e.originalName,attributes:a,ns:e.ns},i)})).on("question",(function(e){if(u.test(e)){var t=h.exec(e),n=t&&t[1];n&&!f.test(n)&&a.addWarning({message:"unsupported document encoding <"+n+">, falling back to UTF-8"})}})).on("closeTag",(function(){l.pop().handleEnd()})).on("cdata",m).on("text",(function(e,t,n){!function(e,t){e.trim()&&m(e,t)}(t(e),n)})).on("error",p).on("warn",c),new Promise((function(t,n){var r;try{s.parse(e),function(){var e,t,n=a.elementsById,i=a.references;for(e=0;t=i[e];e++){var r=t.element,o=n[t.id],s=mr(r).propertiesByName[t.property];if(o||a.addWarning({message:"unresolved reference <"+t.id+">",element:t.element,property:t.property,value:t.id}),s.isMany){var l=r.get(s.name),p=l.indexOf(t);-1===p&&(p=l.length),o?l[p]=o:l.splice(p,1)}else r.set(s.name,o)}}()}catch(e){r=e}var o=i.element;r||o||(r=fr("failed to parse document as <"+i.type.$descriptor.name+">"));var l=a.warnings,p=a.references,c=a.elementsById;return r?(r.warnings=l,n(r)):t({rootElement:o,elementsById:c,references:p,warnings:l})}))},kr.prototype.handler=function(e){return new _r(this.model,e)};var Rr=/<|>|'|"|&|\n\r|\n/g,Sr=/<|>|&/g;function Cr(e){this.prefixMap={},this.uriMap={},this.used={},this.wellknown=[],this.custom=[],this.parent=e,this.defaultPrefixMap=e&&e.defaultPrefixMap||{}}function Mr(e,t){return lr(t)?(n=e).charAt(0).toLowerCase()+n.slice(1):e;var n}function Pr(e,t){e.super_=t,e.prototype=Object.create(t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}})}function Dr(e){return c(e)?e:(e.prefix?e.prefix+":":"")+e.localName}Cr.prototype.mapDefaultPrefixes=function(e){this.defaultPrefixMap=e},Cr.prototype.defaultUriByPrefix=function(e){return this.defaultPrefixMap[e]},Cr.prototype.byUri=function(e){return this.uriMap[e]||this.parent&&this.parent.byUri(e)},Cr.prototype.add=function(e,t){this.uriMap[e.uri]=e,t?this.wellknown.push(e):this.custom.push(e),this.mapPrefix(e.prefix,e.uri)},Cr.prototype.uriByPrefix=function(e){return this.prefixMap[e||"xmlns"]||this.parent&&this.parent.uriByPrefix(e)},Cr.prototype.mapPrefix=function(e,t){this.prefixMap[e||"xmlns"]=t},Cr.prototype.getNSKey=function(e){return void 0!==e.prefix?e.uri+"|"+e.prefix:e.uri},Cr.prototype.logUsed=function(e){var t=e.uri,n=this.getNSKey(e);this.used[n]=this.byUri(t),this.parent&&this.parent.logUsed(e)},Cr.prototype.getUsed=function(e){return[].concat(this.wellknown,this.custom).filter((e=>{var t=this.getNSKey(e);return this.used[t]}))};var Tr={"\n":"#10","\n\r":"#10",'"':"#34","'":"#39","<":"#60",">":"#62","&":"#38"},Nr={"<":"lt",">":"gt","&":"amp"};function Or(e,t,n){return(e=c(e)?e:""+e).replace(t,(function(e){return"&"+n[e]+";"}))}function Br(e){this.tagName=e}function Lr(){}function Ir(e){this.tagName=e}function Fr(e,t){this.body=[],this.attrs=[],this.parent=e,this.propertyDescriptor=t}function jr(e,t,n){Fr.call(this,e,t),this.serialization=n}function Vr(){this.value="",this.write=function(e){this.value+=e}}function Wr(e,t){var n=[""];this.append=function(t){return e.write(t),this},this.appendNewLine=function(){return t&&e.write("\n"),this},this.appendIndent=function(){return t&&e.write(n.join(" ")),this},this.indent=function(){return n.push(""),this},this.unindent=function(){return n.pop(),this}}function $r(e){return e=_({format:!1,preamble:!0},e||{}),{toXML:function(t,n){var i=n||new Vr,r=new Wr(i,e.format);e.preamble&&r.append('<?xml version="1.0" encoding="UTF-8"?>\n');var o=new Fr,a=t.$model;if(o.getNamespaces().mapDefaultPrefixes(function(e){const t=e.config&&e.config.nsMap||{},n={};for(const e in pr)n[e]=pr[e];for(const e in t){n[t[e]]=e}for(const t of e.getPackages())n[t.prefix]=t.uri;return n}(a)),o.build(t).serializeTo(r),!n)return i.value}}}function zr(e,t){Ki.call(this,e,t)}Br.prototype.build=function(e){return this.element=e,this},Br.prototype.serializeTo=function(e){e.appendIndent().append("<"+this.tagName+">"+this.element.id+"</"+this.tagName+">").appendNewLine()},Lr.prototype.serializeValue=Lr.prototype.serializeTo=function(e){e.append(this.escape?Or(this.value,Sr,Nr):this.value)},Lr.prototype.build=function(e,t){return this.value=t,"String"===e.type&&-1!==t.search(Sr)&&(this.escape=!0),this},Pr(Ir,Lr),Ir.prototype.serializeTo=function(e){e.appendIndent().append("<"+this.tagName+">"),this.serializeValue(e),e.append("</"+this.tagName+">").appendNewLine()},Fr.prototype.build=function(e){this.element=e;var t,n,i=e.$descriptor,r=this.propertyDescriptor,o=i.isGeneric;return t=o?this.parseGenericNsAttributes(e):this.parseNsAttributes(e),this.ns=r?this.nsPropertyTagName(r):this.nsTagName(i),this.tagName=this.addTagName(this.ns),o?this.parseGenericContainments(e):(n=function(e){return f(e.$descriptor.properties,(function(t){var n=t.name;if(t.isVirtual)return!1;if(!u(e,n))return!1;var i=e[n];return i!==t.default&&null!==i&&(!t.isMany||i.length)}))}(e),this.parseAttributes(f(n,(function(e){return e.isAttr}))),this.parseContainments(function(e){return f(e,(function(e){return!e.isAttr}))}(n))),this.parseGenericAttributes(e,t),this},Fr.prototype.nsTagName=function(e){return function(e,t){return t.isGeneric?_({localName:t.ns.localName},e):_({localName:Mr(t.ns.localName,t.$pkg)},e)}(this.logNamespaceUsed(e.ns),e)},Fr.prototype.nsPropertyTagName=function(e){return function(e,t){return _({localName:t.ns.localName},e)}(this.logNamespaceUsed(e.ns),e)},Fr.prototype.isLocalNs=function(e){return e.uri===this.ns.uri},Fr.prototype.nsAttributeName=function(e){var t;if(t=c(e)?ji(e):e.ns,e.inherited)return{localName:t.localName};var n=this.logNamespaceUsed(t);return this.getNamespaces().logUsed(n),this.isLocalNs(n)?{localName:t.localName}:_({localName:t.localName},n)},Fr.prototype.parseGenericNsAttributes=function(e){return Object.entries(e).filter((([t,n])=>!t.startsWith("$")&&this.parseNsAttribute(e,t,n))).map((([e,t])=>({name:e,value:t})))},Fr.prototype.parseGenericContainments=function(e){var t=e.$body;t&&this.body.push((new Lr).build({type:"String"},t));var n=e.$children;n&&m(n,(e=>{this.body.push(new Fr(this).build(e))}))},Fr.prototype.parseNsAttribute=function(e,t,n){var i,r=e.$model,o=ji(t);if("xmlns"===o.prefix&&(i={prefix:o.localName,uri:n}),o.prefix||"xmlns"!==o.localName||(i={uri:n}),!i)return{name:t,value:n};if(r&&r.getPackage(n))this.logNamespace(i,!0,!0);else{var a=this.logNamespaceUsed(i,!0);this.getNamespaces().logUsed(a)}},Fr.prototype.parseNsAttributes=function(e){var t=this,n=e.$attrs,i=[];return m(n,(function(n,r){var o=t.parseNsAttribute(e,r,n);o&&i.push(o)})),i},Fr.prototype.parseGenericAttributes=function(e,t){var n=this;m(t,(function(t){try{n.addAttribute(n.nsAttributeName(t.name),t.value)}catch(n){"undefined"!=typeof console&&console.warn(`missing namespace information for <${t.name}=${t.value}> on`,e,n)}}))},Fr.prototype.parseContainments=function(e){var t=this,n=this.body,i=this.element;m(e,(function(e){var r=i.get(e.name),o=e.isReference;if(e.isMany||(r=[r]),e.isBody)n.push((new Lr).build(e,r[0]));else if(Fi(e.type))m(r,(function(i){n.push(new Ir(t.addTagName(t.nsPropertyTagName(e))).build(e,i))}));else if(o)m(r,(function(i){n.push(new Br(t.addTagName(t.nsPropertyTagName(e))).build(i))}));else{var a=ur(e);m(r,(function(i){var r;r=a?a===cr?new Fr(t,e):new jr(t,e,a):new Fr(t),n.push(r.build(i))}))}}))},Fr.prototype.getNamespaces=function(e){var t,n=this.namespaces,i=this.parent;return n||(t=i&&i.getNamespaces(),e||!t?this.namespaces=n=new Cr(t):n=t),n},Fr.prototype.logNamespace=function(e,t,n){var i=this.getNamespaces(n),r=e.uri,o=e.prefix;return i.byUri(r)&&!n||i.add(e,t),i.mapPrefix(o,r),e},Fr.prototype.logNamespaceUsed=function(e,t){var n,i,r,o=this.getNamespaces(t),a=e.prefix,s=e.uri;if(!a&&!s)return{localName:e.localName};if(r=o.defaultUriByPrefix(a),!(s=s||r||o.uriByPrefix(a)))throw new Error("no namespace uri given for prefix <"+a+">");if((e=o.byUri(s))||a||(e=this.logNamespace({uri:s},r===s,!0)),!e){for(n=a,i=1;o.uriByPrefix(n);)n=a+"_"+i++;e=this.logNamespace({prefix:n,uri:s},r===s)}return a&&o.mapPrefix(a,s),e},Fr.prototype.parseAttributes=function(e){var t=this,n=this.element;m(e,(function(e){var i=n.get(e.name);if(e.isReference)if(e.isMany){var r=[];m(i,(function(e){r.push(e.id)})),i=r.join(" ")}else i=i.id;t.addAttribute(t.nsAttributeName(e),i)}))},Fr.prototype.addTagName=function(e){var t=this.logNamespaceUsed(e);return this.getNamespaces().logUsed(t),Dr(e)},Fr.prototype.addAttribute=function(e,t){var n=this.attrs;c(t)&&(t=Or(t,Rr,Tr));var i=function(e,t){const n=x(t);let i=a(e)?-1:void 0;return m(e,(function(e,t){if(n(e,t))return i=t,!1})),i}(n,(function(t){return t.name.localName===e.localName&&t.name.uri===e.uri&&t.name.prefix===e.prefix})),r={name:e,value:t};-1!==i?n.splice(i,1,r):n.push(r)},Fr.prototype.serializeAttributes=function(e){var t=this.attrs,n=this.namespaces;n&&(t=function(e){return e.getUsed().filter((function(e){return"xml"!==e.prefix})).map((function(e){return{name:"xmlns"+(e.prefix?":"+e.prefix:""),value:e.uri}}))}(n).concat(t)),m(t,(function(t){e.append(" ").append(Dr(t.name)).append('="').append(t.value).append('"')}))},Fr.prototype.serializeTo=function(e){var t=this.body[0],n=t&&t.constructor!==Lr;e.appendIndent().append("<"+this.tagName),this.serializeAttributes(e),e.append(t?">":" />"),t&&(n&&e.appendNewLine().indent(),m(this.body,(function(t){t.serializeTo(e)})),n&&e.unindent().appendIndent(),e.append("</"+this.tagName+">")),e.appendNewLine()},Pr(jr,Fr),jr.prototype.parseNsAttributes=function(e){var t=Fr.prototype.parseNsAttributes.call(this,e).filter((e=>e.name!==this.serialization)),n=e.$descriptor;if(n.name===this.propertyDescriptor.type)return t;var i=this.typeNs=this.nsTagName(n);this.getNamespaces().logUsed(this.typeNs);var r=e.$model.getPackage(i.uri),o=r.xml&&r.xml.typePrefix||"";return this.addAttribute(this.nsAttributeName(this.serialization),(i.prefix?i.prefix+":":"")+o+n.ns.localName),t},jr.prototype.isLocalNs=function(e){return e.uri===(this.typeNs||this.ns).uri},zr.prototype=Object.create(Ki.prototype),zr.prototype.fromXML=function(e,t,n){c(t)||(n=t,t="bpmn:Definitions");var i=new kr(_({model:this,lax:!0},n)),r=i.handler(t);return i.fromXML(e,r)},zr.prototype.toXML=function(e,t){var n=new $r(t);return new Promise((function(t,i){try{return t({xml:n.toXML(e)})}catch(e){return i(e)}}))};const Gr={bpmn:{name:"BPMN20",uri:"http://www.omg.org/spec/BPMN/20100524/MODEL",prefix:"bpmn",associations:[],types:[{name:"Interface",superClass:["RootElement"],properties:[{name:"name",isAttr:!0,type:"String"},{name:"operations",type:"Operation",isMany:!0},{name:"implementationRef",isAttr:!0,type:"String"}]},{name:"Operation",superClass:["BaseElement"],properties:[{name:"name",isAttr:!0,type:"String"},{name:"inMessageRef",type:"Message",isReference:!0},{name:"outMessageRef",type:"Message",isReference:!0},{name:"errorRef",type:"Error",isMany:!0,isReference:!0},{name:"implementationRef",isAttr:!0,type:"String"}]},{name:"EndPoint",superClass:["RootElement"]},{name:"Auditing",superClass:["BaseElement"]},{name:"GlobalTask",superClass:["CallableElement"],properties:[{name:"resources",type:"ResourceRole",isMany:!0}]},{name:"Monitoring",superClass:["BaseElement"]},{name:"Performer",superClass:["ResourceRole"]},{name:"Process",superClass:["FlowElementsContainer","CallableElement"],properties:[{name:"processType",type:"ProcessType",isAttr:!0},{name:"isClosed",isAttr:!0,type:"Boolean"},{name:"auditing",type:"Auditing"},{name:"monitoring",type:"Monitoring"},{name:"properties",type:"Property",isMany:!0},{name:"laneSets",isMany:!0,replaces:"FlowElementsContainer#laneSets",type:"LaneSet"},{name:"flowElements",isMany:!0,replaces:"FlowElementsContainer#flowElements",type:"FlowElement"},{name:"artifacts",type:"Artifact",isMany:!0},{name:"resources",type:"ResourceRole",isMany:!0},{name:"correlationSubscriptions",type:"CorrelationSubscription",isMany:!0},{name:"supports",type:"Process",isMany:!0,isReference:!0},{name:"definitionalCollaborationRef",type:"Collaboration",isAttr:!0,isReference:!0},{name:"isExecutable",isAttr:!0,type:"Boolean"}]},{name:"LaneSet",superClass:["BaseElement"],properties:[{name:"lanes",type:"Lane",isMany:!0},{name:"name",isAttr:!0,type:"String"}]},{name:"Lane",superClass:["BaseElement"],properties:[{name:"name",isAttr:!0,type:"String"},{name:"partitionElementRef",type:"BaseElement",isAttr:!0,isReference:!0},{name:"partitionElement",type:"BaseElement"},{name:"flowNodeRef",type:"FlowNode",isMany:!0,isReference:!0},{name:"childLaneSet",type:"LaneSet",xml:{serialize:"xsi:type"}}]},{name:"GlobalManualTask",superClass:["GlobalTask"]},{name:"ManualTask",superClass:["Task"]},{name:"UserTask",superClass:["Task"],properties:[{name:"renderings",type:"Rendering",isMany:!0},{name:"implementation",isAttr:!0,type:"String"}]},{name:"Rendering",superClass:["BaseElement"]},{name:"HumanPerformer",superClass:["Performer"]},{name:"PotentialOwner",superClass:["HumanPerformer"]},{name:"GlobalUserTask",superClass:["GlobalTask"],properties:[{name:"implementation",isAttr:!0,type:"String"},{name:"renderings",type:"Rendering",isMany:!0}]},{name:"Gateway",isAbstract:!0,superClass:["FlowNode"],properties:[{name:"gatewayDirection",type:"GatewayDirection",default:"Unspecified",isAttr:!0}]},{name:"EventBasedGateway",superClass:["Gateway"],properties:[{name:"instantiate",default:!1,isAttr:!0,type:"Boolean"},{name:"eventGatewayType",type:"EventBasedGatewayType",isAttr:!0,default:"Exclusive"}]},{name:"ComplexGateway",superClass:["Gateway"],properties:[{name:"activationCondition",type:"Expression",xml:{serialize:"xsi:type"}},{name:"default",type:"SequenceFlow",isAttr:!0,isReference:!0}]},{name:"ExclusiveGateway",superClass:["Gateway"],properties:[{name:"default",type:"SequenceFlow",isAttr:!0,isReference:!0}]},{name:"InclusiveGateway",superClass:["Gateway"],properties:[{name:"default",type:"SequenceFlow",isAttr:!0,isReference:!0}]},{name:"ParallelGateway",superClass:["Gateway"]},{name:"RootElement",isAbstract:!0,superClass:["BaseElement"]},{name:"Relationship",superClass:["BaseElement"],properties:[{name:"type",isAttr:!0,type:"String"},{name:"direction",type:"RelationshipDirection",isAttr:!0},{name:"source",isMany:!0,isReference:!0,type:"Element"},{name:"target",isMany:!0,isReference:!0,type:"Element"}]},{name:"BaseElement",isAbstract:!0,properties:[{name:"id",isAttr:!0,type:"String",isId:!0},{name:"documentation",type:"Documentation",isMany:!0},{name:"extensionDefinitions",type:"ExtensionDefinition",isMany:!0,isReference:!0},{name:"extensionElements",type:"ExtensionElements"}]},{name:"Extension",properties:[{name:"mustUnderstand",default:!1,isAttr:!0,type:"Boolean"},{name:"definition",type:"ExtensionDefinition",isAttr:!0,isReference:!0}]},{name:"ExtensionDefinition",properties:[{name:"name",isAttr:!0,type:"String"},{name:"extensionAttributeDefinitions",type:"ExtensionAttributeDefinition",isMany:!0}]},{name:"ExtensionAttributeDefinition",properties:[{name:"name",isAttr:!0,type:"String"},{name:"type",isAttr:!0,type:"String"},{name:"isReference",default:!1,isAttr:!0,type:"Boolean"},{name:"extensionDefinition",type:"ExtensionDefinition",isAttr:!0,isReference:!0}]},{name:"ExtensionElements",properties:[{name:"valueRef",isAttr:!0,isReference:!0,type:"Element"},{name:"values",type:"Element",isMany:!0},{name:"extensionAttributeDefinition",type:"ExtensionAttributeDefinition",isAttr:!0,isReference:!0}]},{name:"Documentation",superClass:["BaseElement"],properties:[{name:"text",type:"String",isBody:!0},{name:"textFormat",default:"text/plain",isAttr:!0,type:"String"}]},{name:"Event",isAbstract:!0,superClass:["FlowNode","InteractionNode"],properties:[{name:"properties",type:"Property",isMany:!0}]},{name:"IntermediateCatchEvent",superClass:["CatchEvent"]},{name:"IntermediateThrowEvent",superClass:["ThrowEvent"]},{name:"EndEvent",superClass:["ThrowEvent"]},{name:"StartEvent",superClass:["CatchEvent"],properties:[{name:"isInterrupting",default:!0,isAttr:!0,type:"Boolean"}]},{name:"ThrowEvent",isAbstract:!0,superClass:["Event"],properties:[{name:"dataInputs",type:"DataInput",isMany:!0},{name:"dataInputAssociations",type:"DataInputAssociation",isMany:!0},{name:"inputSet",type:"InputSet"},{name:"eventDefinitions",type:"EventDefinition",isMany:!0},{name:"eventDefinitionRef",type:"EventDefinition",isMany:!0,isReference:!0}]},{name:"CatchEvent",isAbstract:!0,superClass:["Event"],properties:[{name:"parallelMultiple",isAttr:!0,type:"Boolean",default:!1},{name:"dataOutputs",type:"DataOutput",isMany:!0},{name:"dataOutputAssociations",type:"DataOutputAssociation",isMany:!0},{name:"outputSet",type:"OutputSet"},{name:"eventDefinitions",type:"EventDefinition",isMany:!0},{name:"eventDefinitionRef",type:"EventDefinition",isMany:!0,isReference:!0}]},{name:"BoundaryEvent",superClass:["CatchEvent"],properties:[{name:"cancelActivity",default:!0,isAttr:!0,type:"Boolean"},{name:"attachedToRef",type:"Activity",isAttr:!0,isReference:!0}]},{name:"EventDefinition",isAbstract:!0,superClass:["RootElement"]},{name:"CancelEventDefinition",superClass:["EventDefinition"]},{name:"ErrorEventDefinition",superClass:["EventDefinition"],properties:[{name:"errorRef",type:"Error",isAttr:!0,isReference:!0}]},{name:"TerminateEventDefinition",superClass:["EventDefinition"]},{name:"EscalationEventDefinition",superClass:["EventDefinition"],properties:[{name:"escalationRef",type:"Escalation",isAttr:!0,isReference:!0}]},{name:"Escalation",properties:[{name:"structureRef",type:"ItemDefinition",isAttr:!0,isReference:!0},{name:"name",isAttr:!0,type:"String"},{name:"escalationCode",isAttr:!0,type:"String"}],superClass:["RootElement"]},{name:"CompensateEventDefinition",superClass:["EventDefinition"],properties:[{name:"waitForCompletion",isAttr:!0,type:"Boolean",default:!0},{name:"activityRef",type:"Activity",isAttr:!0,isReference:!0}]},{name:"TimerEventDefinition",superClass:["EventDefinition"],properties:[{name:"timeDate",type:"Expression",xml:{serialize:"xsi:type"}},{name:"timeCycle",type:"Expression",xml:{serialize:"xsi:type"}},{name:"timeDuration",type:"Expression",xml:{serialize:"xsi:type"}}]},{name:"LinkEventDefinition",superClass:["EventDefinition"],properties:[{name:"name",isAttr:!0,type:"String"},{name:"target",type:"LinkEventDefinition",isReference:!0},{name:"source",type:"LinkEventDefinition",isMany:!0,isReference:!0}]},{name:"MessageEventDefinition",superClass:["EventDefinition"],properties:[{name:"messageRef",type:"Message",isAttr:!0,isReference:!0},{name:"operationRef",type:"Operation",isReference:!0}]},{name:"ConditionalEventDefinition",superClass:["EventDefinition"],properties:[{name:"condition",type:"Expression",xml:{serialize:"xsi:type"}}]},{name:"SignalEventDefinition",superClass:["EventDefinition"],properties:[{name:"signalRef",type:"Signal",isAttr:!0,isReference:!0}]},{name:"Signal",superClass:["RootElement"],properties:[{name:"structureRef",type:"ItemDefinition",isAttr:!0,isReference:!0},{name:"name",isAttr:!0,type:"String"}]},{name:"ImplicitThrowEvent",superClass:["ThrowEvent"]},{name:"DataState",superClass:["BaseElement"],properties:[{name:"name",isAttr:!0,type:"String"}]},{name:"ItemAwareElement",superClass:["BaseElement"],properties:[{name:"itemSubjectRef",type:"ItemDefinition",isAttr:!0,isReference:!0},{name:"dataState",type:"DataState"}]},{name:"DataAssociation",superClass:["BaseElement"],properties:[{name:"sourceRef",type:"ItemAwareElement",isMany:!0,isReference:!0},{name:"targetRef",type:"ItemAwareElement",isReference:!0},{name:"transformation",type:"FormalExpression",xml:{serialize:"property"}},{name:"assignment",type:"Assignment",isMany:!0}]},{name:"DataInput",superClass:["ItemAwareElement"],properties:[{name:"name",isAttr:!0,type:"String"},{name:"isCollection",default:!1,isAttr:!0,type:"Boolean"},{name:"inputSetRef",type:"InputSet",isMany:!0,isVirtual:!0,isReference:!0},{name:"inputSetWithOptional",type:"InputSet",isMany:!0,isVirtual:!0,isReference:!0},{name:"inputSetWithWhileExecuting",type:"InputSet",isMany:!0,isVirtual:!0,isReference:!0}]},{name:"DataOutput",superClass:["ItemAwareElement"],properties:[{name:"name",isAttr:!0,type:"String"},{name:"isCollection",default:!1,isAttr:!0,type:"Boolean"},{name:"outputSetRef",type:"OutputSet",isMany:!0,isVirtual:!0,isReference:!0},{name:"outputSetWithOptional",type:"OutputSet",isMany:!0,isVirtual:!0,isReference:!0},{name:"outputSetWithWhileExecuting",type:"OutputSet",isMany:!0,isVirtual:!0,isReference:!0}]},{name:"InputSet",superClass:["BaseElement"],properties:[{name:"name",isAttr:!0,type:"String"},{name:"dataInputRefs",type:"DataInput",isMany:!0,isReference:!0},{name:"optionalInputRefs",type:"DataInput",isMany:!0,isReference:!0},{name:"whileExecutingInputRefs",type:"DataInput",isMany:!0,isReference:!0},{name:"outputSetRefs",type:"OutputSet",isMany:!0,isReference:!0}]},{name:"OutputSet",superClass:["BaseElement"],properties:[{name:"dataOutputRefs",type:"DataOutput",isMany:!0,isReference:!0},{name:"name",isAttr:!0,type:"String"},{name:"inputSetRefs",type:"InputSet",isMany:!0,isReference:!0},{name:"optionalOutputRefs",type:"DataOutput",isMany:!0,isReference:!0},{name:"whileExecutingOutputRefs",type:"DataOutput",isMany:!0,isReference:!0}]},{name:"Property",superClass:["ItemAwareElement"],properties:[{name:"name",isAttr:!0,type:"String"}]},{name:"DataInputAssociation",superClass:["DataAssociation"]},{name:"DataOutputAssociation",superClass:["DataAssociation"]},{name:"InputOutputSpecification",superClass:["BaseElement"],properties:[{name:"dataInputs",type:"DataInput",isMany:!0},{name:"dataOutputs",type:"DataOutput",isMany:!0},{name:"inputSets",type:"InputSet",isMany:!0},{name:"outputSets",type:"OutputSet",isMany:!0}]},{name:"DataObject",superClass:["FlowElement","ItemAwareElement"],properties:[{name:"isCollection",default:!1,isAttr:!0,type:"Boolean"}]},{name:"InputOutputBinding",properties:[{name:"inputDataRef",type:"InputSet",isAttr:!0,isReference:!0},{name:"outputDataRef",type:"OutputSet",isAttr:!0,isReference:!0},{name:"operationRef",type:"Operation",isAttr:!0,isReference:!0}]},{name:"Assignment",superClass:["BaseElement"],properties:[{name:"from",type:"Expression",xml:{serialize:"xsi:type"}},{name:"to",type:"Expression",xml:{serialize:"xsi:type"}}]},{name:"DataStore",superClass:["RootElement","ItemAwareElement"],properties:[{name:"name",isAttr:!0,type:"String"},{name:"capacity",isAttr:!0,type:"Integer"},{name:"isUnlimited",default:!0,isAttr:!0,type:"Boolean"}]},{name:"DataStoreReference",superClass:["ItemAwareElement","FlowElement"],properties:[{name:"dataStoreRef",type:"DataStore",isAttr:!0,isReference:!0}]},{name:"DataObjectReference",superClass:["ItemAwareElement","FlowElement"],properties:[{name:"dataObjectRef",type:"DataObject",isAttr:!0,isReference:!0}]},{name:"ConversationLink",superClass:["BaseElement"],properties:[{name:"sourceRef",type:"InteractionNode",isAttr:!0,isReference:!0},{name:"targetRef",type:"InteractionNode",isAttr:!0,isReference:!0},{name:"name",isAttr:!0,type:"String"}]},{name:"ConversationAssociation",superClass:["BaseElement"],properties:[{name:"innerConversationNodeRef",type:"ConversationNode",isAttr:!0,isReference:!0},{name:"outerConversationNodeRef",type:"ConversationNode",isAttr:!0,isReference:!0}]},{name:"CallConversation",superClass:["ConversationNode"],properties:[{name:"calledCollaborationRef",type:"Collaboration",isAttr:!0,isReference:!0},{name:"participantAssociations",type:"ParticipantAssociation",isMany:!0}]},{name:"Conversation",superClass:["ConversationNode"]},{name:"SubConversation",superClass:["ConversationNode"],properties:[{name:"conversationNodes",type:"ConversationNode",isMany:!0}]},{name:"ConversationNode",isAbstract:!0,superClass:["InteractionNode","BaseElement"],properties:[{name:"name",isAttr:!0,type:"String"},{name:"participantRef",type:"Participant",isMany:!0,isReference:!0},{name:"messageFlowRefs",type:"MessageFlow",isMany:!0,isReference:!0},{name:"correlationKeys",type:"CorrelationKey",isMany:!0}]},{name:"GlobalConversation",superClass:["Collaboration"]},{name:"PartnerEntity",superClass:["RootElement"],properties:[{name:"name",isAttr:!0,type:"String"},{name:"participantRef",type:"Participant",isMany:!0,isReference:!0}]},{name:"PartnerRole",superClass:["RootElement"],properties:[{name:"name",isAttr:!0,type:"String"},{name:"participantRef",type:"Participant",isMany:!0,isReference:!0}]},{name:"CorrelationProperty",superClass:["RootElement"],properties:[{name:"correlationPropertyRetrievalExpression",type:"CorrelationPropertyRetrievalExpression",isMany:!0},{name:"name",isAttr:!0,type:"String"},{name:"type",type:"ItemDefinition",isAttr:!0,isReference:!0}]},{name:"Error",superClass:["RootElement"],properties:[{name:"structureRef",type:"ItemDefinition",isAttr:!0,isReference:!0},{name:"name",isAttr:!0,type:"String"},{name:"errorCode",isAttr:!0,type:"String"}]},{name:"CorrelationKey",superClass:["BaseElement"],properties:[{name:"correlationPropertyRef",type:"CorrelationProperty",isMany:!0,isReference:!0},{name:"name",isAttr:!0,type:"String"}]},{name:"Expression",superClass:["BaseElement"],isAbstract:!1,properties:[{name:"body",isBody:!0,type:"String"}]},{name:"FormalExpression",superClass:["Expression"],properties:[{name:"language",isAttr:!0,type:"String"},{name:"evaluatesToTypeRef",type:"ItemDefinition",isAttr:!0,isReference:!0}]},{name:"Message",superClass:["RootElement"],properties:[{name:"name",isAttr:!0,type:"String"},{name:"itemRef",type:"ItemDefinition",isAttr:!0,isReference:!0}]},{name:"ItemDefinition",superClass:["RootElement"],properties:[{name:"itemKind",type:"ItemKind",isAttr:!0},{name:"structureRef",isAttr:!0,type:"String"},{name:"isCollection",default:!1,isAttr:!0,type:"Boolean"},{name:"import",type:"Import",isAttr:!0,isReference:!0}]},{name:"FlowElement",isAbstract:!0,superClass:["BaseElement"],properties:[{name:"name",isAttr:!0,type:"String"},{name:"auditing",type:"Auditing"},{name:"monitoring",type:"Monitoring"},{name:"categoryValueRef",type:"CategoryValue",isMany:!0,isReference:!0}]},{name:"SequenceFlow",superClass:["FlowElement"],properties:[{name:"isImmediate",isAttr:!0,type:"Boolean"},{name:"conditionExpression",type:"Expression",xml:{serialize:"xsi:type"}},{name:"sourceRef",type:"FlowNode",isAttr:!0,isReference:!0},{name:"targetRef",type:"FlowNode",isAttr:!0,isReference:!0}]},{name:"FlowElementsContainer",isAbstract:!0,superClass:["BaseElement"],properties:[{name:"laneSets",type:"LaneSet",isMany:!0},{name:"flowElements",type:"FlowElement",isMany:!0}]},{name:"CallableElement",isAbstract:!0,superClass:["RootElement"],properties:[{name:"name",isAttr:!0,type:"String"},{name:"ioSpecification",type:"InputOutputSpecification",xml:{serialize:"property"}},{name:"supportedInterfaceRef",type:"Interface",isMany:!0,isReference:!0},{name:"ioBinding",type:"InputOutputBinding",isMany:!0,xml:{serialize:"property"}}]},{name:"FlowNode",isAbstract:!0,superClass:["FlowElement"],properties:[{name:"incoming",type:"SequenceFlow",isMany:!0,isReference:!0},{name:"outgoing",type:"SequenceFlow",isMany:!0,isReference:!0},{name:"lanes",type:"Lane",isMany:!0,isVirtual:!0,isReference:!0}]},{name:"CorrelationPropertyRetrievalExpression",superClass:["BaseElement"],properties:[{name:"messagePath",type:"FormalExpression"},{name:"messageRef",type:"Message",isAttr:!0,isReference:!0}]},{name:"CorrelationPropertyBinding",superClass:["BaseElement"],properties:[{name:"dataPath",type:"FormalExpression"},{name:"correlationPropertyRef",type:"CorrelationProperty",isAttr:!0,isReference:!0}]},{name:"Resource",superClass:["RootElement"],properties:[{name:"name",isAttr:!0,type:"String"},{name:"resourceParameters",type:"ResourceParameter",isMany:!0}]},{name:"ResourceParameter",superClass:["BaseElement"],properties:[{name:"name",isAttr:!0,type:"String"},{name:"isRequired",isAttr:!0,type:"Boolean"},{name:"type",type:"ItemDefinition",isAttr:!0,isReference:!0}]},{name:"CorrelationSubscription",superClass:["BaseElement"],properties:[{name:"correlationKeyRef",type:"CorrelationKey",isAttr:!0,isReference:!0},{name:"correlationPropertyBinding",type:"CorrelationPropertyBinding",isMany:!0}]},{name:"MessageFlow",superClass:["BaseElement"],properties:[{name:"name",isAttr:!0,type:"String"},{name:"sourceRef",type:"InteractionNode",isAttr:!0,isReference:!0},{name:"targetRef",type:"InteractionNode",isAttr:!0,isReference:!0},{name:"messageRef",type:"Message",isAttr:!0,isReference:!0}]},{name:"MessageFlowAssociation",superClass:["BaseElement"],properties:[{name:"innerMessageFlowRef",type:"MessageFlow",isAttr:!0,isReference:!0},{name:"outerMessageFlowRef",type:"MessageFlow",isAttr:!0,isReference:!0}]},{name:"InteractionNode",isAbstract:!0,properties:[{name:"incomingConversationLinks",type:"ConversationLink",isMany:!0,isVirtual:!0,isReference:!0},{name:"outgoingConversationLinks",type:"ConversationLink",isMany:!0,isVirtual:!0,isReference:!0}]},{name:"Participant",superClass:["InteractionNode","BaseElement"],properties:[{name:"name",isAttr:!0,type:"String"},{name:"interfaceRef",type:"Interface",isMany:!0,isReference:!0},{name:"participantMultiplicity",type:"ParticipantMultiplicity"},{name:"endPointRefs",type:"EndPoint",isMany:!0,isReference:!0},{name:"processRef",type:"Process",isAttr:!0,isReference:!0}]},{name:"ParticipantAssociation",superClass:["BaseElement"],properties:[{name:"innerParticipantRef",type:"Participant",isAttr:!0,isReference:!0},{name:"outerParticipantRef",type:"Participant",isAttr:!0,isReference:!0}]},{name:"ParticipantMultiplicity",properties:[{name:"minimum",default:0,isAttr:!0,type:"Integer"},{name:"maximum",default:1,isAttr:!0,type:"Integer"}],superClass:["BaseElement"]},{name:"Collaboration",superClass:["RootElement"],properties:[{name:"name",isAttr:!0,type:"String"},{name:"isClosed",isAttr:!0,type:"Boolean"},{name:"participants",type:"Participant",isMany:!0},{name:"messageFlows",type:"MessageFlow",isMany:!0},{name:"artifacts",type:"Artifact",isMany:!0},{name:"conversations",type:"ConversationNode",isMany:!0},{name:"conversationAssociations",type:"ConversationAssociation"},{name:"participantAssociations",type:"ParticipantAssociation",isMany:!0},{name:"messageFlowAssociations",type:"MessageFlowAssociation",isMany:!0},{name:"correlationKeys",type:"CorrelationKey",isMany:!0},{name:"choreographyRef",type:"Choreography",isMany:!0,isReference:!0},{name:"conversationLinks",type:"ConversationLink",isMany:!0}]},{name:"ChoreographyActivity",isAbstract:!0,superClass:["FlowNode"],properties:[{name:"participantRef",type:"Participant",isMany:!0,isReference:!0},{name:"initiatingParticipantRef",type:"Participant",isAttr:!0,isReference:!0},{name:"correlationKeys",type:"CorrelationKey",isMany:!0},{name:"loopType",type:"ChoreographyLoopType",default:"None",isAttr:!0}]},{name:"CallChoreography",superClass:["ChoreographyActivity"],properties:[{name:"calledChoreographyRef",type:"Choreography",isAttr:!0,isReference:!0},{name:"participantAssociations",type:"ParticipantAssociation",isMany:!0}]},{name:"SubChoreography",superClass:["ChoreographyActivity","FlowElementsContainer"],properties:[{name:"artifacts",type:"Artifact",isMany:!0}]},{name:"ChoreographyTask",superClass:["ChoreographyActivity"],properties:[{name:"messageFlowRef",type:"MessageFlow",isMany:!0,isReference:!0}]},{name:"Choreography",superClass:["Collaboration","FlowElementsContainer"]},{name:"GlobalChoreographyTask",superClass:["Choreography"],properties:[{name:"initiatingParticipantRef",type:"Participant",isAttr:!0,isReference:!0}]},{name:"TextAnnotation",superClass:["Artifact"],properties:[{name:"text",type:"String"},{name:"textFormat",default:"text/plain",isAttr:!0,type:"String"}]},{name:"Group",superClass:["Artifact"],properties:[{name:"categoryValueRef",type:"CategoryValue",isAttr:!0,isReference:!0}]},{name:"Association",superClass:["Artifact"],properties:[{name:"associationDirection",type:"AssociationDirection",isAttr:!0},{name:"sourceRef",type:"BaseElement",isAttr:!0,isReference:!0},{name:"targetRef",type:"BaseElement",isAttr:!0,isReference:!0}]},{name:"Category",superClass:["RootElement"],properties:[{name:"categoryValue",type:"CategoryValue",isMany:!0},{name:"name",isAttr:!0,type:"String"}]},{name:"Artifact",isAbstract:!0,superClass:["BaseElement"]},{name:"CategoryValue",superClass:["BaseElement"],properties:[{name:"categorizedFlowElements",type:"FlowElement",isMany:!0,isVirtual:!0,isReference:!0},{name:"value",isAttr:!0,type:"String"}]},{name:"Activity",isAbstract:!0,superClass:["FlowNode"],properties:[{name:"isForCompensation",default:!1,isAttr:!0,type:"Boolean"},{name:"default",type:"SequenceFlow",isAttr:!0,isReference:!0},{name:"ioSpecification",type:"InputOutputSpecification",xml:{serialize:"property"}},{name:"boundaryEventRefs",type:"BoundaryEvent",isMany:!0,isReference:!0},{name:"properties",type:"Property",isMany:!0},{name:"dataInputAssociations",type:"DataInputAssociation",isMany:!0},{name:"dataOutputAssociations",type:"DataOutputAssociation",isMany:!0},{name:"startQuantity",default:1,isAttr:!0,type:"Integer"},{name:"resources",type:"ResourceRole",isMany:!0},{name:"completionQuantity",default:1,isAttr:!0,type:"Integer"},{name:"loopCharacteristics",type:"LoopCharacteristics"}]},{name:"ServiceTask",superClass:["Task"],properties:[{name:"implementation",isAttr:!0,type:"String"},{name:"operationRef",type:"Operation",isAttr:!0,isReference:!0}]},{name:"SubProcess",superClass:["Activity","FlowElementsContainer","InteractionNode"],properties:[{name:"triggeredByEvent",default:!1,isAttr:!0,type:"Boolean"},{name:"artifacts",type:"Artifact",isMany:!0}]},{name:"LoopCharacteristics",isAbstract:!0,superClass:["BaseElement"]},{name:"MultiInstanceLoopCharacteristics",superClass:["LoopCharacteristics"],properties:[{name:"isSequential",default:!1,isAttr:!0,type:"Boolean"},{name:"behavior",type:"MultiInstanceBehavior",default:"All",isAttr:!0},{name:"loopCardinality",type:"Expression",xml:{serialize:"xsi:type"}},{name:"loopDataInputRef",type:"ItemAwareElement",isReference:!0},{name:"loopDataOutputRef",type:"ItemAwareElement",isReference:!0},{name:"inputDataItem",type:"DataInput",xml:{serialize:"property"}},{name:"outputDataItem",type:"DataOutput",xml:{serialize:"property"}},{name:"complexBehaviorDefinition",type:"ComplexBehaviorDefinition",isMany:!0},{name:"completionCondition",type:"Expression",xml:{serialize:"xsi:type"}},{name:"oneBehaviorEventRef",type:"EventDefinition",isAttr:!0,isReference:!0},{name:"noneBehaviorEventRef",type:"EventDefinition",isAttr:!0,isReference:!0}]},{name:"StandardLoopCharacteristics",superClass:["LoopCharacteristics"],properties:[{name:"testBefore",default:!1,isAttr:!0,type:"Boolean"},{name:"loopCondition",type:"Expression",xml:{serialize:"xsi:type"}},{name:"loopMaximum",type:"Integer",isAttr:!0}]},{name:"CallActivity",superClass:["Activity","InteractionNode"],properties:[{name:"calledElement",type:"String",isAttr:!0}]},{name:"Task",superClass:["Activity","InteractionNode"]},{name:"SendTask",superClass:["Task"],properties:[{name:"implementation",isAttr:!0,type:"String"},{name:"operationRef",type:"Operation",isAttr:!0,isReference:!0},{name:"messageRef",type:"Message",isAttr:!0,isReference:!0}]},{name:"ReceiveTask",superClass:["Task"],properties:[{name:"implementation",isAttr:!0,type:"String"},{name:"instantiate",default:!1,isAttr:!0,type:"Boolean"},{name:"operationRef",type:"Operation",isAttr:!0,isReference:!0},{name:"messageRef",type:"Message",isAttr:!0,isReference:!0}]},{name:"ScriptTask",superClass:["Task"],properties:[{name:"scriptFormat",isAttr:!0,type:"String"},{name:"script",type:"String"}]},{name:"BusinessRuleTask",superClass:["Task"],properties:[{name:"implementation",isAttr:!0,type:"String"}]},{name:"AdHocSubProcess",superClass:["SubProcess"],properties:[{name:"completionCondition",type:"Expression",xml:{serialize:"xsi:type"}},{name:"ordering",type:"AdHocOrdering",isAttr:!0},{name:"cancelRemainingInstances",default:!0,isAttr:!0,type:"Boolean"}]},{name:"Transaction",superClass:["SubProcess"],properties:[{name:"protocol",isAttr:!0,type:"String"},{name:"method",isAttr:!0,type:"String"}]},{name:"GlobalScriptTask",superClass:["GlobalTask"],properties:[{name:"scriptLanguage",isAttr:!0,type:"String"},{name:"script",isAttr:!0,type:"String"}]},{name:"GlobalBusinessRuleTask",superClass:["GlobalTask"],properties:[{name:"implementation",isAttr:!0,type:"String"}]},{name:"ComplexBehaviorDefinition",superClass:["BaseElement"],properties:[{name:"condition",type:"FormalExpression"},{name:"event",type:"ImplicitThrowEvent"}]},{name:"ResourceRole",superClass:["BaseElement"],properties:[{name:"resourceRef",type:"Resource",isReference:!0},{name:"resourceParameterBindings",type:"ResourceParameterBinding",isMany:!0},{name:"resourceAssignmentExpression",type:"ResourceAssignmentExpression"},{name:"name",isAttr:!0,type:"String"}]},{name:"ResourceParameterBinding",properties:[{name:"expression",type:"Expression",xml:{serialize:"xsi:type"}},{name:"parameterRef",type:"ResourceParameter",isAttr:!0,isReference:!0}],superClass:["BaseElement"]},{name:"ResourceAssignmentExpression",properties:[{name:"expression",type:"Expression",xml:{serialize:"xsi:type"}}],superClass:["BaseElement"]},{name:"Import",properties:[{name:"importType",isAttr:!0,type:"String"},{name:"location",isAttr:!0,type:"String"},{name:"namespace",isAttr:!0,type:"String"}]},{name:"Definitions",superClass:["BaseElement"],properties:[{name:"name",isAttr:!0,type:"String"},{name:"targetNamespace",isAttr:!0,type:"String"},{name:"expressionLanguage",default:"http://www.w3.org/1999/XPath",isAttr:!0,type:"String"},{name:"typeLanguage",default:"http://www.w3.org/2001/XMLSchema",isAttr:!0,type:"String"},{name:"imports",type:"Import",isMany:!0},{name:"extensions",type:"Extension",isMany:!0},{name:"rootElements",type:"RootElement",isMany:!0},{name:"diagrams",isMany:!0,type:"bpmndi:BPMNDiagram"},{name:"exporter",isAttr:!0,type:"String"},{name:"relationships",type:"Relationship",isMany:!0},{name:"exporterVersion",isAttr:!0,type:"String"}]}],enumerations:[{name:"ProcessType",literalValues:[{name:"None"},{name:"Public"},{name:"Private"}]},{name:"GatewayDirection",literalValues:[{name:"Unspecified"},{name:"Converging"},{name:"Diverging"},{name:"Mixed"}]},{name:"EventBasedGatewayType",literalValues:[{name:"Parallel"},{name:"Exclusive"}]},{name:"RelationshipDirection",literalValues:[{name:"None"},{name:"Forward"},{name:"Backward"},{name:"Both"}]},{name:"ItemKind",literalValues:[{name:"Physical"},{name:"Information"}]},{name:"ChoreographyLoopType",literalValues:[{name:"None"},{name:"Standard"},{name:"MultiInstanceSequential"},{name:"MultiInstanceParallel"}]},{name:"AssociationDirection",literalValues:[{name:"None"},{name:"One"},{name:"Both"}]},{name:"MultiInstanceBehavior",literalValues:[{name:"None"},{name:"One"},{name:"All"},{name:"Complex"}]},{name:"AdHocOrdering",literalValues:[{name:"Parallel"},{name:"Sequential"}]}],xml:{tagAlias:"lowerCase",typePrefix:"t"}},bpmndi:{name:"BPMNDI",uri:"http://www.omg.org/spec/BPMN/20100524/DI",prefix:"bpmndi",types:[{name:"BPMNDiagram",properties:[{name:"plane",type:"BPMNPlane",redefines:"di:Diagram#rootElement"},{name:"labelStyle",type:"BPMNLabelStyle",isMany:!0}],superClass:["di:Diagram"]},{name:"BPMNPlane",properties:[{name:"bpmnElement",isAttr:!0,isReference:!0,type:"bpmn:BaseElement",redefines:"di:DiagramElement#modelElement"}],superClass:["di:Plane"]},{name:"BPMNShape",properties:[{name:"bpmnElement",isAttr:!0,isReference:!0,type:"bpmn:BaseElement",redefines:"di:DiagramElement#modelElement"},{name:"isHorizontal",isAttr:!0,type:"Boolean"},{name:"isExpanded",isAttr:!0,type:"Boolean"},{name:"isMarkerVisible",isAttr:!0,type:"Boolean"},{name:"label",type:"BPMNLabel"},{name:"isMessageVisible",isAttr:!0,type:"Boolean"},{name:"participantBandKind",type:"ParticipantBandKind",isAttr:!0},{name:"choreographyActivityShape",type:"BPMNShape",isAttr:!0,isReference:!0}],superClass:["di:LabeledShape"]},{name:"BPMNEdge",properties:[{name:"label",type:"BPMNLabel"},{name:"bpmnElement",isAttr:!0,isReference:!0,type:"bpmn:BaseElement",redefines:"di:DiagramElement#modelElement"},{name:"sourceElement",isAttr:!0,isReference:!0,type:"di:DiagramElement",redefines:"di:Edge#source"},{name:"targetElement",isAttr:!0,isReference:!0,type:"di:DiagramElement",redefines:"di:Edge#target"},{name:"messageVisibleKind",type:"MessageVisibleKind",isAttr:!0,default:"initiating"}],superClass:["di:LabeledEdge"]},{name:"BPMNLabel",properties:[{name:"labelStyle",type:"BPMNLabelStyle",isAttr:!0,isReference:!0,redefines:"di:DiagramElement#style"}],superClass:["di:Label"]},{name:"BPMNLabelStyle",properties:[{name:"font",type:"dc:Font"}],superClass:["di:Style"]}],enumerations:[{name:"ParticipantBandKind",literalValues:[{name:"top_initiating"},{name:"middle_initiating"},{name:"bottom_initiating"},{name:"top_non_initiating"},{name:"middle_non_initiating"},{name:"bottom_non_initiating"}]},{name:"MessageVisibleKind",literalValues:[{name:"initiating"},{name:"non_initiating"}]}],associations:[]},dc:{name:"DC",uri:"http://www.omg.org/spec/DD/20100524/DC",prefix:"dc",types:[{name:"Boolean"},{name:"Integer"},{name:"Real"},{name:"String"},{name:"Font",properties:[{name:"name",type:"String",isAttr:!0},{name:"size",type:"Real",isAttr:!0},{name:"isBold",type:"Boolean",isAttr:!0},{name:"isItalic",type:"Boolean",isAttr:!0},{name:"isUnderline",type:"Boolean",isAttr:!0},{name:"isStrikeThrough",type:"Boolean",isAttr:!0}]},{name:"Point",properties:[{name:"x",type:"Real",default:"0",isAttr:!0},{name:"y",type:"Real",default:"0",isAttr:!0}]},{name:"Bounds",properties:[{name:"x",type:"Real",default:"0",isAttr:!0},{name:"y",type:"Real",default:"0",isAttr:!0},{name:"width",type:"Real",isAttr:!0},{name:"height",type:"Real",isAttr:!0}]}],associations:[]},di:{name:"DI",uri:"http://www.omg.org/spec/DD/20100524/DI",prefix:"di",types:[{name:"DiagramElement",isAbstract:!0,properties:[{name:"id",isAttr:!0,isId:!0,type:"String"},{name:"extension",type:"Extension"},{name:"owningDiagram",type:"Diagram",isReadOnly:!0,isVirtual:!0,isReference:!0},{name:"owningElement",type:"DiagramElement",isReadOnly:!0,isVirtual:!0,isReference:!0},{name:"modelElement",isReadOnly:!0,isVirtual:!0,isReference:!0,type:"Element"},{name:"style",type:"Style",isReadOnly:!0,isVirtual:!0,isReference:!0},{name:"ownedElement",type:"DiagramElement",isReadOnly:!0,isMany:!0,isVirtual:!0}]},{name:"Node",isAbstract:!0,superClass:["DiagramElement"]},{name:"Edge",isAbstract:!0,superClass:["DiagramElement"],properties:[{name:"source",type:"DiagramElement",isReadOnly:!0,isVirtual:!0,isReference:!0},{name:"target",type:"DiagramElement",isReadOnly:!0,isVirtual:!0,isReference:!0},{name:"waypoint",isUnique:!1,isMany:!0,type:"dc:Point",xml:{serialize:"xsi:type"}}]},{name:"Diagram",isAbstract:!0,properties:[{name:"id",isAttr:!0,isId:!0,type:"String"},{name:"rootElement",type:"DiagramElement",isReadOnly:!0,isVirtual:!0},{name:"name",isAttr:!0,type:"String"},{name:"documentation",isAttr:!0,type:"String"},{name:"resolution",isAttr:!0,type:"Real"},{name:"ownedStyle",type:"Style",isReadOnly:!0,isMany:!0,isVirtual:!0}]},{name:"Shape",isAbstract:!0,superClass:["Node"],properties:[{name:"bounds",type:"dc:Bounds"}]},{name:"Plane",isAbstract:!0,superClass:["Node"],properties:[{name:"planeElement",type:"DiagramElement",subsettedProperty:"DiagramElement-ownedElement",isMany:!0}]},{name:"LabeledEdge",isAbstract:!0,superClass:["Edge"],properties:[{name:"ownedLabel",type:"Label",isReadOnly:!0,subsettedProperty:"DiagramElement-ownedElement",isMany:!0,isVirtual:!0}]},{name:"LabeledShape",isAbstract:!0,superClass:["Shape"],properties:[{name:"ownedLabel",type:"Label",isReadOnly:!0,subsettedProperty:"DiagramElement-ownedElement",isMany:!0,isVirtual:!0}]},{name:"Label",isAbstract:!0,superClass:["Node"],properties:[{name:"bounds",type:"dc:Bounds"}]},{name:"Style",isAbstract:!0,properties:[{name:"id",isAttr:!0,isId:!0,type:"String"}]},{name:"Extension",properties:[{name:"values",isMany:!0,type:"Element"}]}],associations:[],xml:{tagAlias:"lowerCase"}},bioc:{name:"bpmn.io colors for BPMN",uri:"http://bpmn.io/schema/bpmn/biocolor/1.0",prefix:"bioc",types:[{name:"ColoredShape",extends:["bpmndi:BPMNShape"],properties:[{name:"stroke",isAttr:!0,type:"String"},{name:"fill",isAttr:!0,type:"String"}]},{name:"ColoredEdge",extends:["bpmndi:BPMNEdge"],properties:[{name:"stroke",isAttr:!0,type:"String"},{name:"fill",isAttr:!0,type:"String"}]}],enumerations:[],associations:[]},color:{name:"BPMN in Color",uri:"http://www.omg.org/spec/BPMN/non-normative/color/1.0",prefix:"color",types:[{name:"ColoredLabel",extends:["bpmndi:BPMNLabel"],properties:[{name:"color",isAttr:!0,type:"String"}]},{name:"ColoredShape",extends:["bpmndi:BPMNShape"],properties:[{name:"background-color",isAttr:!0,type:"String"},{name:"border-color",isAttr:!0,type:"String"}]},{name:"ColoredEdge",extends:["bpmndi:BPMNEdge"],properties:[{name:"border-color",isAttr:!0,type:"String"}]}],enumerations:[],associations:[]}};function Hr(e,t){return new zr(_({},Gr,e),t)}var Kr="Tried to access di from the businessObject. The di is available through the diagram element only. For more information, see https://github.com/bpmn-io/bpmn-js/issues/1472";function Ur(e,t){return e.$instanceOf(t)}function qr(e){var t={},n=[],i={};function r(e,t){return function(n){e(n,t)}}function o(e){t[e.id]=e}function a(t,n){try{var r=i[t.id]&&function(t,n){if(t.gfx)throw new Error(`already rendered ${Ut(t)}`);return e.element(t,i[t.id],n)}(t,n);return o(t),r}catch(e){s(e.message,{element:t,error:e}),console.error(`failed to import ${Ut(t)}`,e)}}function s(t,n){e.error(t,n)}var l=this.registerDi=function(e){var t,n=e.bpmnElement;n?i[n.id]?s(`multiple DI elements defined for ${Ut(n)}`,{element:n}):(i[n.id]=e,u(t=n,"di")||Object.defineProperty(t,"di",{enumerable:!1,get:function(){throw new Error(Kr)}})):s(`no bpmnElement referenced in ${Ut(e)}`,{element:e})};function p(e){var t;t=e.plane,l(t),m(t.planeElement,c)}function c(e){l(e)}this.handleDefinitions=function(o,a){var c=o.diagrams;if(a&&-1===c.indexOf(a))throw new Error("diagram not part of <bpmn:Definitions />");if(!a&&c&&c.length&&(a=c[0]),!a)throw new Error("no diagram to display");i={},p(a);var u=a.plane;if(!u)throw new Error(`no plane for ${Ut(a)}`);var v=u.bpmnElement;if(!v){if(v=function(e){return h(e.rootElements,(function(e){return Ur(e,"bpmn:Process")||Ur(e,"bpmn:Collaboration")}))}(o),!v)throw new Error("no process or collaboration to display");s(`correcting missing bpmnElement on ${Ut(u)} to ${Ut(v)}`),u.bpmnElement=v,l(u)}var x,b,w=function(t,n){return e.root(t,i[t.id],n)}(v,u);if(Ur(v,"bpmn:Process")||Ur(v,"bpmn:SubProcess"))y(v,w);else{if(!Ur(v,"bpmn:Collaboration"))throw new Error(`unsupported bpmnElement for ${Ut(u)}: ${Ut(v)}`);b=w,m((x=v).participants,r(P,b)),n.push((function(){!function(e,t){m(e,r(g,t))}(x.messageFlows,b)})),E(x.artifacts,b),function(e,n){var i=f(e,(function(e){return!t[e.id]&&Ur(e,"bpmn:Process")&&e.laneSets}));i.forEach(r(y,n))}(o.rootElements,w)}d(n)};var d=this.handleDeferred=function(){for(;n.length;)n.shift()()};function y(e,t){M(e,t),_(e.ioSpecification,t),E(e.artifacts,t),o(e)}function g(e,t){a(e,t)}function v(e,t){a(e,t)}function x(e,t){a(e,t)}function b(e,t){a(e,t)}function w(e,t){a(e,t)}function E(e,t){m(e,(function(e){Ur(e,"bpmn:Association")?n.push((function(){w(e,t)})):w(e,t)}))}function _(e,t){e&&(m(e.dataInputs,r(x,t)),m(e.dataOutputs,r(b,t)))}var A=this.handleSubProcess=function(e,t){M(e,t),E(e.artifacts,t)};function k(e,t){var i=a(e,t);Ur(e,"bpmn:SubProcess")&&A(e,i||t),Ur(e,"bpmn:Activity")&&_(e.ioSpecification,t),n.push((function(){m(e.dataInputAssociations,r(v,t)),m(e.dataOutputAssociations,r(v,t))}))}function R(e,t){a(e,t)}function S(e,t){n.push((function(){var n=a(e,t);e.childLaneSet&&C(e.childLaneSet,n||t),function(e){m(e.flowNodeRef,(function(t){var n=t.get("lanes");n&&n.push(e)}))}(e)}))}function C(e,t){m(e.lanes,r(S,t))}function M(e,t){!function(e,t){m(e,(function(e){Ur(e,"bpmn:SequenceFlow")?n.push((function(){!function(e,t){a(e,t)}(e,t)})):Ur(e,"bpmn:BoundaryEvent")?n.unshift((function(){k(e,t)})):Ur(e,"bpmn:FlowNode")?k(e,t):Ur(e,"bpmn:DataObject")||(Ur(e,"bpmn:DataStoreReference")||Ur(e,"bpmn:DataObjectReference")?R(e,t):s(`unrecognized flowElement ${Ut(e)} in context ${Ut(t&&t.businessObject)}`,{element:e,context:t}))}))}(e.flowElements,t),e.laneSets&&function(e,t){m(e,r(C,t))}(e.laneSets,t)}function P(e,t){var n=a(e,t),i=e.processRef;i&&y(i,n||t)}}function Yr(e,t,n){var i,r,o,a=[];function s(e,t){var n=new qr({root:function(e,t){return i.add(e,t)},element:function(e,t,n){return i.add(e,t,n)},error:function(e,t){a.push({message:e,context:t})}});t=t||e.diagrams&&e.diagrams[0];var r=function(e,t){if(!t||!t.plane)return;var n,i=t.plane.bpmnElement,r=i;R(i,"bpmn:Process")||R(i,"bpmn:Collaboration")||(r=function(e){var t=e;for(;t;){if(R(t,"bpmn:Process"))return t;t=t.$parent}}(i));n=R(r,"bpmn:Collaboration")?r:h(e.rootElements,(function(e){if(R(e,"bpmn:Collaboration"))return h(e.participants,(function(e){return e.processRef===r}))}));var o=[r];n&&(o=function(e,t){let n=[];return m(e,(function(e,i){n.push(t(e,i))})),n}(n.participants,(function(e){return e.processRef}))).push(n);var a=Xr(o),s=[t],l=[i];return m(e.diagrams,(function(e){if(e.plane){var t=e.plane.bpmnElement;-1!==a.indexOf(t)&&-1===l.indexOf(t)&&(s.push(e),l.push(t))}})),s}(e,t);if(!r)throw new Error("no diagram to display");m(r,(function(t){n.handleDefinitions(e,t)}));var s=t.plane.bpmnElement.id;o.setRootElement(o.findRoot(s+"_plane")||o.findRoot(s))}return new Promise((function(l,p){try{return i=e.get("bpmnImporter"),r=e.get("eventBus"),o=e.get("canvas"),r.fire("import.render.start",{definitions:t}),s(t,n),r.fire("import.render.complete",{error:undefined,warnings:a}),l({warnings:a})}catch(e){return e.warnings=a,p(e)}}))}function Xr(e){var t=[];return m(e,(function(e){e&&(t.push(e),t=t.concat(Xr(e.flowElements)))})),t}var Zr,Jr='<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 14.02 5.57" width="53" height="21"><path fill="currentColor" d="M1.88.92v.14c0 .41-.13.68-.4.8.33.14.46.44.46.86v.33c0 .61-.33.95-.95.95H0V0h.95c.65 0 .93.3.93.92zM.63.57v1.06h.24c.24 0 .38-.1.38-.43V.98c0-.28-.1-.4-.32-.4zm0 1.63v1.22h.36c.2 0 .32-.1.32-.39v-.35c0-.37-.12-.48-.4-.48H.63zM4.18.99v.52c0 .64-.31.98-.94.98h-.3V4h-.62V0h.92c.63 0 .94.35.94.99zM2.94.57v1.35h.3c.2 0 .3-.09.3-.37v-.6c0-.29-.1-.38-.3-.38h-.3zm2.89 2.27L6.25 0h.88v4h-.6V1.12L6.1 3.99h-.6l-.46-2.82v2.82h-.55V0h.87zM8.14 1.1V4h-.56V0h.79L9 2.4V0h.56v4h-.64zm2.49 2.29v.6h-.6v-.6zM12.12 1c0-.63.33-1 .95-1 .61 0 .95.37.95 1v2.04c0 .64-.34 1-.95 1-.62 0-.95-.37-.95-1zm.62 2.08c0 .28.13.39.33.39s.32-.1.32-.4V.98c0-.29-.12-.4-.32-.4s-.33.11-.33.4z"/><path fill="currentColor" d="M0 4.53h14.02v1.04H0zM11.08 0h.63v.62h-.63zm.63 4V1h-.63v2.98z"/></svg>',Qr={verticalAlign:"middle"},eo={color:"#404040"},to={zIndex:"1001",position:"fixed",top:"0",left:"0",right:"0",bottom:"0"},no={width:"100%",height:"100%",background:"rgba(40,40,40,0.2)"},io={position:"absolute",left:"50%",top:"40%",transform:"translate(-50%)",width:"260px",padding:"10px",background:"white",boxShadow:"0 1px 4px rgba(0,0,0,0.3)",fontFamily:"Helvetica, Arial, sans-serif",fontSize:"14px",display:"flex",lineHeight:"1.3"},ro='<div class="bjs-powered-by-lightbox"><div class="backdrop"></div><div class="notice"><a href="https://bpmn.io" target="_blank" rel="noopener" class="link">'+Jr+'</a><span>Web-based tooling for BPMN, DMN and forms powered by <a href="https://bpmn.io" target="_blank" rel="noopener">bpmn.io</a>.</span></div></div>';function oo(){Zr||(De(Zr=Ue(ro),to),De(qe("svg",Zr),Qr),De(qe(".backdrop",Zr),no),De(qe(".notice",Zr),io),De(qe(".link",Zr),eo,{margin:"15px 20px 15px 10px",alignSelf:"center"}),ze.bind(Zr,".backdrop","click",(function(e){document.body.removeChild(Zr)}))),document.body.appendChild(Zr)}function ao(e){e=_({},lo,e),this._moddle=this._createModdle(e),this._container=this._createContainer(e),this._init(this._container,this._moddle,e),function(e){const t=Ue('<a href="http://bpmn.io" target="_blank" class="bjs-powered-by" title="Powered by bpmn.io" >'+Jr+"</a>");De(qe("svg",t),Qr),De(t,eo,{position:"absolute",bottom:"15px",right:"15px",zIndex:"100"}),e.appendChild(t),Ve.bind(t,"click",(function(e){oo(),e.preventDefault()}))}(this._container)}function so(e,t){return e.warnings=t,e}e(ao,Di),ao.prototype.importXML=async function(e,t){const n=this;let i=[];try{let o;e=this._emit("import.parse.start",{xml:e})||e;try{o=await this._moddle.fromXML(e,"bpmn:Definitions")}catch(e){throw this._emit("import.parse.complete",{error:e}),e}let a=o.rootElement;const s=o.references,l=o.warnings,p=o.elementsById;i=i.concat(l),a=this._emit("import.parse.complete",(r={error:null,definitions:a,elementsById:p,references:s,warnings:i},n.get("eventBus").createEvent(r)))||a;const c=await this.importDefinitions(a,t);return i=i.concat(c.warnings),this._emit("import.done",{error:null,warnings:i}),{warnings:i}}catch(e){let t=e;throw i=i.concat(t.warnings||[]),so(t,i),t=function(e){const t=/unparsable content <([^>]+)> detected([\s\S]*)$/.exec(e.message);t&&(e.message="unparsable content <"+t[1]+"> detected; this may indicate an invalid BPMN 2.0 diagram file"+t[2]);return e}(t),this._emit("import.done",{error:t,warnings:t.warnings}),t}var r},ao.prototype.importDefinitions=async function(e,t){this._setDefinitions(e);return{warnings:(await this.open(t)).warnings}},ao.prototype.open=async function(e){const t=this._definitions;let n=e;if(!t){const e=new Error("no XML imported");throw so(e,[]),e}if("string"==typeof e&&(n=function(e,t){if(!t)return null;return h(e.diagrams,(function(e){return e.id===t}))||null}(t,e),!n)){const t=new Error("BPMNDiagram <"+e+"> not found");throw so(t,[]),t}try{this.clear()}catch(e){throw so(e,[]),e}const{warnings:i}=await Yr(this,t,n);return{warnings:i}},ao.prototype.saveXML=async function(e){e=e||{};let t,n,i=this._definitions;try{if(!i)throw new Error("no definitions loaded");i=this._emit("saveXML.start",{definitions:i})||i;n=(await this._moddle.toXML(i,e)).xml,n=this._emit("saveXML.serialized",{xml:n})||n}catch(e){t=e}const r=t?{error:t}:{xml:n};if(this._emit("saveXML.done",r),t)throw t;return r},ao.prototype.saveSVG=async function(){let e,t;this._emit("saveSVG.start");try{const t=this.get("canvas"),n=t.getActiveLayer(),i=qe(":scope > defs",t._svg),r=ie(n),o=i?"<defs>"+ie(i)+"</defs>":"",a=n.getBBox();e='<?xml version="1.0" encoding="utf-8"?>\n\x3c!-- created with bpmn-js / http://bpmn.io --\x3e\n<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">\n<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="'+a.width+'" height="'+a.height+'" viewBox="'+a.x+" "+a.y+" "+a.width+" "+a.height+'" version="1.1">'+o+r+"</svg>"}catch(e){t=e}if(this._emit("saveSVG.done",{error:t,svg:e}),t)throw t;return{svg:e}},ao.prototype._setDefinitions=function(e){this._definitions=e},ao.prototype.getModules=function(){return this._modules},ao.prototype.clear=function(){this.getDefinitions()&&Di.prototype.clear.call(this)},ao.prototype.destroy=function(){var e;Di.prototype.destroy.call(this),(e=this._container).parentNode&&e.parentNode.removeChild(e)},ao.prototype.on=function(e,t,n,i){return this.get("eventBus").on(e,t,n,i)},ao.prototype.off=function(e,t){this.get("eventBus").off(e,t)},ao.prototype.attachTo=function(e){if(!e)throw new Error("parentNode required");this.detach(),e.get&&e.constructor.prototype.jquery&&(e=e.get(0)),"string"==typeof e&&(e=qe(e)),e.appendChild(this._container),this._emit("attach",{}),this.get("canvas").resized()},ao.prototype.getDefinitions=function(){return this._definitions},ao.prototype.detach=function(){const e=this._container,t=e.parentNode;t&&(this._emit("detach",{}),t.removeChild(e))},ao.prototype._init=function(e,t,n){const i=n.modules||this.getModules(n),r=n.additionalModules||[],o=[].concat([{bpmnjs:["value",this],moddle:["value",t]}],i,r),a=_(function(e,t){let n={};return m(Object(e),(function(e,i){-1===t.indexOf(i)&&(n[i]=e)})),n}(n,["additionalModules"]),{canvas:_({},n.canvas,{container:e}),modules:o});Di.call(this,a),n&&n.container&&this.attachTo(n.container)},ao.prototype._emit=function(e,t){return this.get("eventBus").fire(e,t)},ao.prototype._createContainer=function(e){const t=Ue('<div class="bjs-container"></div>');return De(t,{width:po(e.width),height:po(e.height),position:e.position}),t},ao.prototype._createModdle=function(e){return new Hr(_({},this._moddleExtensions,e.moddleExtensions))},ao.prototype._modules=[];const lo={width:"100%",height:"100%",position:"relative"};function po(e){return e+(l(e)?"px":"")}function co(e){ao.call(this,e)}return e(co,ao),co.prototype._modules=[Jt,Cn,pn,$n,$t],co.prototype._moddleExtensions={},co}));
|
|
1
|
+
!function(e,t){"object"==typeof exports&&"undefined"!=typeof module?module.exports=t():"function"==typeof define&&define.amd?define(t):(e="undefined"!=typeof globalThis?globalThis:e||self).BpmnViewer=t()}(this,(function(){"use strict";function e(e,t){t&&(e.super_=t,e.prototype=Object.create(t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}))}const t=Object.prototype.toString,n=Object.prototype.hasOwnProperty;function i(e){return"[object Object]"===t.call(e)}function r(e,t){return!(null==e)&&n.call(e,t)}function o(e,t){const n=l(t);let i;return a(e,(function(e,t){if(n(e,t))return i=e,!1})),i}function a(e,n){let i,o;if(void 0===e)return;const a=function(e){return"[object Array]"===t.call(e)}(e)?c:p;for(let t in e)if(r(e,t)&&(i=e[t],o=n(i,a(t)),!1===o))return i}function s(e,t){return!!o(e,t)}function l(e){return function(e){const n=t.call(e);return"[object Function]"===n||"[object AsyncFunction]"===n||"[object GeneratorFunction]"===n||"[object AsyncGeneratorFunction]"===n||"[object Proxy]"===n}(e)?e:t=>t===e}function p(e){return e}function c(e){return Number(e)}function u(e,...t){return Object.assign(e,...t)}var f=1e3;function h(e,t){var n=this;t=t||f,e.on(["render.shape","render.connection"],t,(function(e,t){var i=e.type,r=t.element,o=t.gfx,a=t.attrs;if(n.canRender(r))return"render.shape"===i?n.drawShape(o,r,a):n.drawConnection(o,r,a)})),e.on(["render.getShapePath","render.getConnectionPath"],t,(function(e,t){if(n.canRender(t))return"render.getShapePath"===e.type?n.getShapePath(t):n.getConnectionPath(t)}))}function m(e,t){var n=d(e);return n&&"function"==typeof n.$instanceOf&&n.$instanceOf(t)}function d(e){return e&&e.businessObject||e}function y(e){return e&&e.di}function g(e,t){return!m(e,"bpmn:CallActivity")&&(m(e,"bpmn:SubProcess")?!(!(t=t||y(e))||!m(t,"bpmndi:BPMNPlane"))||t&&!!t.isExpanded:!m(e,"bpmn:Participant")||!!d(e).processRef)}function v(e){if(m(e,"bpmn:Participant")||m(e,"bpmn:Lane")){var t=y(e).isHorizontal;return void 0===t||t}}h.prototype.canRender=function(e){},h.prototype.drawShape=function(e,t){},h.prototype.drawConnection=function(e,t){},h.prototype.getShapePath=function(e){},h.prototype.getConnectionPath=function(e){};const b=Object.prototype.toString,x=Object.prototype.hasOwnProperty;function w(e){return void 0!==e}function E(e){return"[object Array]"===b.call(e)}function _(e){return"[object Object]"===b.call(e)}function A(e){return"[object Number]"===b.call(e)}function k(e){const t=b.call(e);return"[object Function]"===t||"[object AsyncFunction]"===t||"[object GeneratorFunction]"===t||"[object AsyncGeneratorFunction]"===t||"[object Proxy]"===t}function S(e){return"[object String]"===b.call(e)}function R(e,t){return!(null==e)&&x.call(e,t)}function C(e,t){const n=O(t);let i;return P(e,(function(e,t){if(n(e,t))return i=e,!1})),i}function M(e,t){const n=O(t);let i=[];return P(e,(function(e,t){n(e,t)&&i.push(e)})),i}function P(e,t){let n,i;if(void 0===e)return;const r=E(e)?L:B;for(let o in e)if(R(e,o)&&(n=e[o],i=t(n,r(o)),!1===i))return n}function D(e,t,n){return P(e,(function(e,i){n=t(n,e,i)})),n}function N(e,t){return!!D(e,(function(e,n,i){return e&&t(n,i)}),!0)}function T(e){return function(t){return N(e,(function(e,n){return t[n]===e}))}}function O(e){return k(e)?e:t=>t===e}function B(e){return e}function L(e){return Number(e)}function I(e,t){return e.bind(t)}function j(e,...t){return Object.assign(e,...t)}var F={width:90,height:20},V=15;function W(e){var t=e.length/2-1,n=e[Math.floor(t)],i=e[Math.ceil(t+.01)],r=function(e){var t=e.length/2-1,n=e[Math.floor(t)],i=e[Math.ceil(t+.01)];return{x:n.x+(i.x-n.x)/2,y:n.y+(i.y-n.y)/2}}(e),o=Math.atan((i.y-n.y)/(i.x-n.x)),a=r.x,s=r.y;return Math.abs(o)<Math.PI/2?s-=V:a+=V,{x:a,y:s}}function $(e,t){var n,i,r,o=e.label;return o&&o.bounds?(r=o.bounds,i={width:Math.max(F.width,r.width),height:r.height},n={x:r.x+r.width/2,y:r.y+r.height/2}):(n=function(e){return e.waypoints?W(e.waypoints):m(e,"bpmn:Group")?{x:e.x+e.width/2,y:e.y+F.height/2}:{x:e.x+e.width/2,y:e.y+e.height+F.height/2}}(t),i=F),u({x:n.x-i.width/2,y:n.y-i.height/2},i)}function z(e){var t=e.businessObject,n=function(e){return m(e,"bpmn:FlowElement")||m(e,"bpmn:Participant")||m(e,"bpmn:Lane")||m(e,"bpmn:SequenceFlow")||m(e,"bpmn:MessageFlow")||m(e,"bpmn:DataInput")||m(e,"bpmn:DataOutput")?"name":m(e,"bpmn:TextAnnotation")?"text":m(e,"bpmn:Group")?"categoryValueRef":void 0}(t);if(n)return"categoryValueRef"===n?function(e){var t=e.categoryValueRef;return t&&t.value||""}(t):t[n]||""}function G(e,t){return function(e,t){t.appendChild(function(e,t){if(e.ownerDocument!==t.ownerDocument)try{return t.ownerDocument.importNode(e,!0)}catch(e){}return e}(e,t))}(t,e),e}var H=2,K={"alignment-baseline":1,"baseline-shift":1,clip:1,"clip-path":1,"clip-rule":1,color:1,"color-interpolation":1,"color-interpolation-filters":1,"color-profile":1,"color-rendering":1,cursor:1,direction:1,display:1,"dominant-baseline":1,"enable-background":1,fill:1,"fill-opacity":1,"fill-rule":1,filter:1,"flood-color":1,"flood-opacity":1,font:1,"font-family":1,"font-size":H,"font-size-adjust":1,"font-stretch":1,"font-style":1,"font-variant":1,"font-weight":1,"glyph-orientation-horizontal":1,"glyph-orientation-vertical":1,"image-rendering":1,kerning:1,"letter-spacing":1,"lighting-color":1,marker:1,"marker-end":1,"marker-mid":1,"marker-start":1,mask:1,opacity:1,overflow:1,"pointer-events":1,"shape-rendering":1,"stop-color":1,"stop-opacity":1,stroke:1,"stroke-dasharray":1,"stroke-dashoffset":1,"stroke-linecap":1,"stroke-linejoin":1,"stroke-miterlimit":1,"stroke-opacity":1,"stroke-width":H,"text-anchor":1,"text-decoration":1,"text-rendering":1,"unicode-bidi":1,visibility:1,"word-spacing":1,"writing-mode":1};function U(e,t,n){var i=t.replace(/([a-z])([A-Z])/g,"$1-$2").toLowerCase(),r=K[i];r?(r===H&&"number"==typeof n&&(n=String(n)+"px"),e.style[i]=n):e.setAttributeNS(null,t,n)}function q(e,t,n){if("string"==typeof t){if(void 0===n)return function(e,t){return K[t]?e.style[t]:e.getAttributeNS(null,t)}(e,t);U(e,t,n)}else!function(e,t){var n,i,r=Object.keys(t);for(n=0;i=r[n];n++)U(e,i,t[i])}(e,t);return e}const Y=Object.prototype.toString;function X(e){return new Z(e)}function Z(e){if(!e||!e.nodeType)throw new Error("A DOM element reference is required");this.el=e,this.list=e.classList}Z.prototype.add=function(e){return this.list.add(e),this},Z.prototype.remove=function(e){return"[object RegExp]"==Y.call(e)?this.removeMatching(e):(this.list.remove(e),this)},Z.prototype.removeMatching=function(e){const t=this.array();for(let n=0;n<t.length;n++)e.test(t[n])&&this.remove(t[n]);return this},Z.prototype.toggle=function(e,t){return void 0!==t?t!==this.list.toggle(e,t)&&this.list.toggle(e):this.list.toggle(e),this},Z.prototype.array=function(){return Array.from(this.list)},Z.prototype.has=Z.prototype.contains=function(e){return this.list.contains(e)};var J={svg:"http://www.w3.org/2000/svg"},Q='<svg xmlns="'+J.svg+'"';function ee(e){var t=!1;"<svg"===e.substring(0,4)?-1===e.indexOf(J.svg)&&(e=Q+e.substring(4)):(e=Q+">"+e+"</svg>",t=!0);var n=function(e){var t;return(t=new DOMParser).async=!1,t.parseFromString(e,"text/xml")}(e);if(!t)return n;for(var i=document.createDocumentFragment(),r=n.firstChild;r.firstChild;)i.appendChild(r.firstChild);return i}function te(e,t){var n;return"<"===(e=e.trim()).charAt(0)?(n=ee(e).firstChild,n=document.importNode(n,!0)):n=document.createElementNS(J.svg,e),t&&q(n,t),n}var ne=null;function ie(){return null===ne&&(ne=te("svg")),ne}function re(e,t){var n,i,r=Object.keys(t);for(n=0;i=r[n];n++)e[i]=t[i];return e}function oe(e){return ie().createSVGTransform()}var ae=/([&<>]{1})/g,se=/([&<>\n\r"]{1})/g,le={"&":"&","<":"<",">":">",'"':"'"};function pe(e,t){return e.replace(t,(function(e,t){return le[t]||t}))}function ce(e,t){var n,i,r,o,a;switch(e.nodeType){case 3:t.push(pe(e.textContent,ae));break;case 1:if(t.push("<",e.tagName),e.hasAttributes())for(n=0,i=(r=e.attributes).length;n<i;++n)o=r.item(n),t.push(" ",o.name,'="',pe(o.value,se),'"');if(e.hasChildNodes()){for(t.push(">"),n=0,i=(a=e.childNodes).length;n<i;++n)ce(a.item(n),t);t.push("</",e.tagName,">")}else t.push("/>");break;case 8:t.push("\x3c!--",pe(e.nodeValue,ae),"--\x3e");break;case 4:t.push("<![CDATA[",e.nodeValue,"]]>");break;default:throw new Error("unable to handle node "+e.nodeType)}return t}function ue(e,t){return function(e){for(var t=e.firstChild,n=[];t;)ce(t,n),t=t.nextSibling;return n.join("")}(e)}function fe(e){var t=e.parentNode;return t&&t.removeChild(e),e}function he(e,t){return t instanceof SVGMatrix?e.createSVGTransformFromMatrix(t):t}function me(e,t){var n=e.transform.baseVal;return t&&(Array.isArray(t)||(t=[t]),function(e,t){var n,i;for(e.clear(),n=0;i=t[n];n++)e.appendItem(he(e,i))}(n,t)),n.consolidate()}function de(e){return e.flat().join(",").replace(/,?([A-Za-z]),?/g,"$1")}function ye(e){return["L",e.x,e.y]}function ge(e,t){const n=e.length,i=[(r=e[0],["M",r.x,r.y])];var r,o,a,s;for(let r=1;r<n;r++){const n=e[r-1],l=e[r],p=e[r+1];if(!p||!t){i.push(ye(l));continue}const c=Math.min(t,be(l.x-n.x,l.y-n.y),be(p.x-l.x,p.y-l.y));if(!c){i.push(ye(l));continue}const u=ve(l,n,c),f=ve(l,n,.5*c),h=ve(l,p,c),m=ve(l,p,.5*c);i.push(ye(u)),i.push((a=m,s=h,["C",(o=f).x,o.y,a.x,a.y,s.x,s.y]))}return i}function ve(e,t,n){const i=t.x-e.x,r=t.y-e.y,o=n/be(i,r);return{x:e.x+i*o,y:e.y+r*o}}function be(e,t){return Math.sqrt(Math.pow(e,2)+Math.pow(t,2))}function xe(e,t,n){A(t)&&(n=t,t=null),t||(t={});const i=te("path",t);return A(n)&&(i.dataset.cornerRadius=String(n)),we(i,e)}function we(e,t){return q(e,{d:de(ge(t,parseInt(e.dataset.cornerRadius,10)||0))}),e}var Ee="hsl(225, 10%, 15%)",_e="white";function Ae(e,t){return s(e.eventDefinitions,(function(e){return e.$type===t}))}function ke(e,t,n){var i=y(e);return n||i.get("color:background-color")||i.get("bioc:fill")||t||_e}function Se(e,t,n){var i=y(e);return n||i.get("color:border-color")||i.get("bioc:stroke")||t||Ee}function Re(e,t,n,i){var r=y(e).get("label");return i||r&&r.get("color:color")||t||Se(e,n)}function Ce(e,t){var n=e.x,i=e.y,r=e.width,o=e.height;return de([["M",n+t,i],["l",r-2*t,0],["a",t,t,0,0,1,t,t],["l",0,o-2*t],["a",t,t,0,0,1,-t,t],["l",2*t-r,0],["a",t,t,0,0,1,-t,-t],["l",0,2*t-o],["a",t,t,0,0,1,t,-t],["z"]])}function Me(e,t={}){return{width:Pe(e,t),height:De(e,t)}}function Pe(e,t={}){return r(t,"width")?t.width:e.width}function De(e,t={}){return r(t,"height")?t.height:e.height}function Ne(e,t){return t.forEach((function(t){t&&"string"!=typeof t&&!Array.isArray(t)&&Object.keys(t).forEach((function(n){if("default"!==n&&!(n in e)){var i=Object.getOwnPropertyDescriptor(t,n);Object.defineProperty(e,n,i.get?i:{enumerable:!0,get:function(){return t[n]}})}}))})),Object.freeze(e)}const Te=Object.prototype.toString,Oe=Object.prototype.hasOwnProperty;function Be(e,t){return Oe.call(e,t)}function Le(e,t){let n,i;if(void 0===e)return;const r=function(e){return"[object Array]"===Te.call(e)}(e)?je:Ie;for(let o in e)if(Be(e,o)&&(n=e[o],i=t(n,r(o)),!1===i))return n}function Ie(e){return e}function je(e){return Number(e)}function Fe(e,...t){const n=e.style;return Le(t,(function(e){e&&Le(e,(function(e,t){n[t]=e}))})),e}const Ve=Object.prototype.toString;function We(e){return new $e(e)}function $e(e){if(!e||!e.nodeType)throw new Error("A DOM element reference is required");this.el=e,this.list=e.classList}$e.prototype.add=function(e){return this.list.add(e),this},$e.prototype.remove=function(e){return"[object RegExp]"==Ve.call(e)?this.removeMatching(e):(this.list.remove(e),this)},$e.prototype.removeMatching=function(e){const t=this.array();for(let n=0;n<t.length;n++)e.test(t[n])&&this.remove(t[n]);return this},$e.prototype.toggle=function(e,t){return void 0!==t?t!==this.list.toggle(e,t)&&this.list.toggle(e):this.list.toggle(e),this},$e.prototype.array=function(){return Array.from(this.list)},$e.prototype.has=$e.prototype.contains=function(e){return this.list.contains(e)};var ze,Ge,He,Ke={};function Ue(){ze=window.addEventListener?"addEventListener":"attachEvent",Ge=window.removeEventListener?"removeEventListener":"detachEvent",He="addEventListener"!==ze?"on":""}var qe=Ne({__proto__:null,bind:Ke.bind=function(e,t,n,i){return ze||Ue(),e[ze](He+t,n,i||!1),n},unbind:Ke.unbind=function(e,t,n,i){return Ge||Ue(),e[Ge](He+t,n,i||!1),n},default:Ke},[Ke]),Ye=["focus","blur"];var Xe,Ze={bind:function(e,t,n,i,r){return-1!==Ye.indexOf(n)&&(r=!0),qe.bind(e,n,(function(n){var r=n.target||n.srcElement;n.delegateTarget=function(e,t,n){var i=n?e:e.parentNode;return i&&"function"==typeof i.closest&&i.closest(t)||null}(r,t,!0),n.delegateTarget&&i.call(e,n)}),r)},unbind:function(e,t,n,i){return-1!==Ye.indexOf(t)&&(i=!0),qe.unbind(e,t,n,i)}},Je=function(e,t){if("string"!=typeof e)throw new TypeError("String expected");t||(t=document);var n=/<([\w:]+)/.exec(e);if(!n)return t.createTextNode(e);e=e.replace(/^\s+|\s+$/g,"");var i=n[1];if("body"==i){return(r=t.createElement("html")).innerHTML=e,r.removeChild(r.lastChild)}var r,o=Object.prototype.hasOwnProperty.call(et,i)?et[i]:et._default,a=o[0],s=o[1],l=o[2];(r=t.createElement("div")).innerHTML=s+e+l;for(;a--;)r=r.lastChild;if(r.firstChild==r.lastChild)return r.removeChild(r.firstChild);var p=t.createDocumentFragment();for(;r.firstChild;)p.appendChild(r.removeChild(r.firstChild));return p},Qe=!1;"undefined"!=typeof document&&((Xe=document.createElement("div")).innerHTML=' <link/><table></table><a href="/a">a</a><input type="checkbox"/>',Qe=!Xe.getElementsByTagName("link").length,Xe=void 0);var et={legend:[1,"<fieldset>","</fieldset>"],tr:[2,"<table><tbody>","</tbody></table>"],col:[2,"<table><tbody></tbody><colgroup>","</colgroup></table>"],_default:Qe?[1,"X<div>","</div>"]:[0,"",""]};et.td=et.th=[3,"<table><tbody><tr>","</tr></tbody></table>"],et.option=et.optgroup=[1,'<select multiple="multiple">',"</select>"],et.thead=et.tbody=et.colgroup=et.caption=et.tfoot=[1,"<table>","</table>"],et.polyline=et.ellipse=et.polygon=et.circle=et.text=et.line=et.path=et.rect=et.g=[1,'<svg xmlns="http://www.w3.org/2000/svg" version="1.1">',"</svg>"];var tt=Je;function nt(e,t){return(t=t||document).querySelector(e)}function it(e,t,n,i,r){var o=oe();o.setTranslate(t,n);var a=oe();a.setRotate(i||0,0,0);var s=oe();s.setScale(1,1),me(e,[o,a,s])}function rt(e,t,n){var i=oe();i.setTranslate(t,n),me(e,i)}var ot=function(e,t){return e(t={exports:{}},t.exports),t.exports}((function(e){var t=e.exports=function(e,n){if(n||(n=16),void 0===e&&(e=128),e<=0)return"0";for(var i=Math.log(Math.pow(2,e))/Math.log(n),r=2;i===1/0;r*=2)i=Math.log(Math.pow(2,e/r))/Math.log(n)*r;var o=i-Math.floor(i),a="";for(r=0;r<Math.floor(i);r++){a=Math.floor(Math.random()*n).toString(n)+a}if(o){var s=Math.pow(n,o);a=Math.floor(Math.random()*s).toString(n)+a}var l=parseInt(a,n);return l!==1/0&&l>=Math.pow(2,e)?t(e,n):a};t.rack=function(e,n,i){var r=function(r){var a=0;do{if(a++>10){if(!i)throw new Error("too many ID collisions, use more bits");e+=i}var s=t(e,n)}while(Object.hasOwnProperty.call(o,s));return o[s]=r,s},o=r.hats={};return r.get=function(e){return r.hats[e]},r.set=function(e,t){return r.hats[e]=t,r},r.bits=e||128,r.base=n||16,r}}));function at(e){if(!(this instanceof at))return new at(e);e=e||[128,36,1],this._seed=e.length?ot.rack(e[0],e[1],e[2]):e}at.prototype.next=function(e){return this._seed(e||!0)},at.prototype.nextPrefixed=function(e,t){var n;do{n=e+this.next(!0)}while(this.assigned(n));return this.claim(n,t),n},at.prototype.claim=function(e,t){this._seed.set(e,t||!0)},at.prototype.assigned=function(e){return this._seed.get(e)||!1},at.prototype.unclaim=function(e){delete this._seed.hats[e]},at.prototype.clear=function(){var e,t=this._seed.hats;for(e in t)this.unclaim(e)};var st=new at,lt=.95;function pt(e,t,n,r,o,s,l){h.call(this,t,l);var p=e&&e.defaultFillColor,c=e&&e.defaultStrokeColor,f=e&&e.defaultLabelColor;function b(e){return n.computeStyle(e,{strokeLinecap:"round",strokeLinejoin:"round",stroke:Ee,strokeWidth:2,fill:"white"})}function x(e){return n.computeStyle(e,["no-fill"],{strokeLinecap:"round",strokeLinejoin:"round",stroke:Ee,strokeWidth:2})}function w(e,t){var{ref:n={x:0,y:0},scale:i=1,element:r,parentGfx:a=o._svg}=t,s=te("marker",{id:e,viewBox:"0 0 20 20",refX:n.x,refY:n.y,markerWidth:20*i,markerHeight:20*i,orient:"auto"});G(s,r);var l=nt(":scope > defs",a);l||G(a,l=te("defs")),G(l,s)}function E(e,t,n,i){var r=st.nextPrefixed("marker-");return function(e,t,n,i,r){if("sequenceflow-end"===n){w(t,{element:te("path",{d:"M 1 5 L 11 10 L 1 15 Z",...b({fill:r,stroke:r,strokeWidth:1})}),ref:{x:11,y:10},scale:.5,parentGfx:e})}if("messageflow-start"===n){w(t,{element:te("circle",{cx:6,cy:6,r:3.5,...b({fill:i,stroke:r,strokeWidth:1,strokeDasharray:[1e4,1]})}),ref:{x:6,y:6},parentGfx:e})}if("messageflow-end"===n){w(t,{element:te("path",{d:"m 1 5 l 0 -3 l 7 3 l -7 3 z",...b({fill:i,stroke:r,strokeWidth:1,strokeDasharray:[1e4,1]})}),ref:{x:8.5,y:5},parentGfx:e})}if("association-start"===n){w(t,{element:te("path",{d:"M 11 5 L 1 10 L 11 15",...x({fill:"none",stroke:r,strokeWidth:1.5,strokeDasharray:[1e4,1]})}),ref:{x:1,y:10},scale:.5,parentGfx:e})}if("association-end"===n){w(t,{element:te("path",{d:"M 1 5 L 11 10 L 1 15",...x({fill:"none",stroke:r,strokeWidth:1.5,strokeDasharray:[1e4,1]})}),ref:{x:11,y:10},scale:.5,parentGfx:e})}if("conditional-flow-marker"===n){w(t,{element:te("path",{d:"M 0 10 L 8 6 L 16 10 L 8 14 Z",...b({fill:i,stroke:r})}),ref:{x:-1,y:10},scale:.5,parentGfx:e})}if("conditional-default-flow-marker"===n){w(t,{element:te("path",{d:"M 6 4 L 10 16",...b({stroke:r,fill:"none"})}),ref:{x:0,y:10},scale:.5,parentGfx:e})}}(e,r,t,n,i),"url(#"+r+")"}function _(e,t,n,r,o={}){i(r)&&(o=r,r=0),r=r||0,o=b(o);var a=te("circle",{cx:t/2,cy:n/2,r:Math.round((t+n)/4-r),...o});return G(e,a),a}function A(e,t,n,r,o,a){i(o)&&(a=o,o=0),o=o||0,a=b(a);var s=te("rect",{x:o,y:o,width:t-2*o,height:n-2*o,rx:r,ry:r,...a});return G(e,s),s}function k(e,t,n,i){var r=xe(t,n=x(n),i);return G(e,r),r}function S(e,t,n){return k(e,t,n,5)}function R(e,t,n){n=x(n);var i=te("path",{...n,d:t});return G(e,i),i}function C(e,t,n,i){return R(t,n,u({"data-marker":e},i))}function M(e){return Z[e]}function P(e){return function(t,n,i){return M(e)(t,n,i)}}var D={"bpmn:MessageEventDefinition":function(e,t,n={},i){return R(e,r.getScaledPath("EVENT_MESSAGE",{xScaleFactor:.9,yScaleFactor:.9,containerWidth:n.width||t.width,containerHeight:n.height||t.height,position:{mx:.235,my:.315}}),{fill:i?Se(t,c,n.stroke):ke(t,p,n.fill),stroke:i?ke(t,p,n.fill):Se(t,c,n.stroke),strokeWidth:1})},"bpmn:TimerEventDefinition":function(e,t,n={}){var i=n.width||t.width,o=n.height||t.height,a=n.width?1:2,s=_(e,i,o,.2*o,{fill:ke(t,p,n.fill),stroke:Se(t,c,n.stroke),strokeWidth:a});R(e,r.getScaledPath("EVENT_TIMER_WH",{xScaleFactor:.75,yScaleFactor:.75,containerWidth:i,containerHeight:o,position:{mx:.5,my:.5}}),{stroke:Se(t,c,n.stroke),strokeWidth:a});for(var l=0;l<12;l++){var u=i/2,f=o/2;R(e,r.getScaledPath("EVENT_TIMER_LINE",{xScaleFactor:.75,yScaleFactor:.75,containerWidth:i,containerHeight:o,position:{mx:.5,my:.5}}),{strokeWidth:1,stroke:Se(t,c,n.stroke),transform:"rotate("+30*l+","+f+","+u+")"})}return s},"bpmn:EscalationEventDefinition":function(e,t,n={},i){return R(e,r.getScaledPath("EVENT_ESCALATION",{xScaleFactor:1,yScaleFactor:1,containerWidth:n.width||t.width,containerHeight:n.height||t.height,position:{mx:.5,my:.2}}),{fill:i?Se(t,c,n.stroke):ke(t,p,n.fill),stroke:Se(t,c,n.stroke),strokeWidth:1})},"bpmn:ConditionalEventDefinition":function(e,t,n={}){return R(e,r.getScaledPath("EVENT_CONDITIONAL",{xScaleFactor:1,yScaleFactor:1,containerWidth:n.width||t.width,containerHeight:n.height||t.height,position:{mx:.5,my:.222}}),{fill:ke(t,p,n.fill),stroke:Se(t,c,n.stroke),strokeWidth:1})},"bpmn:LinkEventDefinition":function(e,t,n={},i){return R(e,r.getScaledPath("EVENT_LINK",{xScaleFactor:1,yScaleFactor:1,containerWidth:t.width,containerHeight:t.height,position:{mx:.57,my:.263}}),{fill:i?Se(t,c,n.stroke):ke(t,p,n.fill),stroke:Se(t,c,n.stroke),strokeWidth:1})},"bpmn:ErrorEventDefinition":function(e,t,n={},i){return R(e,r.getScaledPath("EVENT_ERROR",{xScaleFactor:1.1,yScaleFactor:1.1,containerWidth:n.width||t.width,containerHeight:n.height||t.height,position:{mx:.2,my:.722}}),{fill:i?Se(t,c,n.stroke):ke(t,p,n.fill),stroke:Se(t,c,n.stroke),strokeWidth:1})},"bpmn:CancelEventDefinition":function(e,t,n={},i){var o=R(e,r.getScaledPath("EVENT_CANCEL_45",{xScaleFactor:1,yScaleFactor:1,containerWidth:t.width,containerHeight:t.height,position:{mx:.638,my:-.055}}),{fill:i?Se(t,c,n.stroke):"none",stroke:Se(t,c,n.stroke),strokeWidth:1});return function(e,t){var n=oe();n.setRotate(t,0,0),me(e,n)}(o,45),o},"bpmn:CompensateEventDefinition":function(e,t,n={},i){return R(e,r.getScaledPath("EVENT_COMPENSATION",{xScaleFactor:1,yScaleFactor:1,containerWidth:n.width||t.width,containerHeight:n.height||t.height,position:{mx:.22,my:.5}}),{fill:i?Se(t,c,n.stroke):ke(t,p,n.fill),stroke:Se(t,c,n.stroke),strokeWidth:1})},"bpmn:SignalEventDefinition":function(e,t,n={},i){return R(e,r.getScaledPath("EVENT_SIGNAL",{xScaleFactor:.9,yScaleFactor:.9,containerWidth:n.width||t.width,containerHeight:n.height||t.height,position:{mx:.5,my:.2}}),{strokeWidth:1,fill:i?Se(t,c,n.stroke):ke(t,p,n.fill),stroke:Se(t,c,n.stroke)})},"bpmn:MultipleEventDefinition":function(e,t,n={},i){return R(e,r.getScaledPath("EVENT_MULTIPLE",{xScaleFactor:1.1,yScaleFactor:1.1,containerWidth:n.width||t.width,containerHeight:n.height||t.height,position:{mx:.211,my:.36}}),{fill:i?Se(t,c,n.stroke):ke(t,p,n.fill),stroke:Se(t,c,n.stroke),strokeWidth:1})},"bpmn:ParallelMultipleEventDefinition":function(e,t,n={}){return R(e,r.getScaledPath("EVENT_PARALLEL_MULTIPLE",{xScaleFactor:1.2,yScaleFactor:1.2,containerWidth:n.width||t.width,containerHeight:n.height||t.height,position:{mx:.458,my:.194}}),{fill:ke(t,p,n.fill),stroke:Se(t,c,n.stroke),strokeWidth:1})},"bpmn:TerminateEventDefinition":function(e,t,n={}){return _(e,t.width,t.height,8,{fill:Se(t,c,n.stroke),stroke:Se(t,c,n.stroke),strokeWidth:4})}};function N(e,t,n={},i){var r=d(e),o=function(e){return"bpmn:IntermediateThrowEvent"===e.$type||"bpmn:EndEvent"===e.$type}(r),a=i||e;return r.get("eventDefinitions")&&r.get("eventDefinitions").length>1?r.get("parallelMultiple")?D["bpmn:ParallelMultipleEventDefinition"](t,a,n,o):D["bpmn:MultipleEventDefinition"](t,a,n,o):Ae(r,"bpmn:MessageEventDefinition")?D["bpmn:MessageEventDefinition"](t,a,n,o):Ae(r,"bpmn:TimerEventDefinition")?D["bpmn:TimerEventDefinition"](t,a,n,o):Ae(r,"bpmn:ConditionalEventDefinition")?D["bpmn:ConditionalEventDefinition"](t,a,n,o):Ae(r,"bpmn:SignalEventDefinition")?D["bpmn:SignalEventDefinition"](t,a,n,o):Ae(r,"bpmn:EscalationEventDefinition")?D["bpmn:EscalationEventDefinition"](t,a,n,o):Ae(r,"bpmn:LinkEventDefinition")?D["bpmn:LinkEventDefinition"](t,a,n,o):Ae(r,"bpmn:ErrorEventDefinition")?D["bpmn:ErrorEventDefinition"](t,a,n,o):Ae(r,"bpmn:CancelEventDefinition")?D["bpmn:CancelEventDefinition"](t,a,n,o):Ae(r,"bpmn:CompensateEventDefinition")?D["bpmn:CompensateEventDefinition"](t,a,n,o):Ae(r,"bpmn:TerminateEventDefinition")?D["bpmn:TerminateEventDefinition"](t,a,n,o):null}var T={ParticipantMultiplicityMarker:function(e,t,n={}){var i=Pe(t,n),o=De(t,n);C("participant-multiplicity",e,r.getScaledPath("MARKER_PARALLEL",{xScaleFactor:1,yScaleFactor:1,containerWidth:i,containerHeight:o,position:{mx:(i/2-6)/i,my:(o-15)/o}}),{strokeWidth:2,fill:ke(t,p,n.fill),stroke:Se(t,c,n.stroke)})},SubProcessMarker:function(e,t,n={}){rt(A(e,14,14,0,{strokeWidth:1,fill:ke(t,p,n.fill),stroke:Se(t,c,n.stroke)}),t.width/2-7.5,t.height-20),C("sub-process",e,r.getScaledPath("MARKER_SUB_PROCESS",{xScaleFactor:1.5,yScaleFactor:1.5,containerWidth:t.width,containerHeight:t.height,position:{mx:(t.width/2-7.5)/t.width,my:(t.height-20)/t.height}}),{fill:ke(t,p,n.fill),stroke:Se(t,c,n.stroke)})},ParallelMarker:function(e,t,n){var i=Pe(t,n),o=De(t,n);C("parallel",e,r.getScaledPath("MARKER_PARALLEL",{xScaleFactor:1,yScaleFactor:1,containerWidth:i,containerHeight:o,position:{mx:(i/2+n.parallel)/i,my:(o-20)/o}}),{fill:ke(t,p,n.fill),stroke:Se(t,c,n.stroke)})},SequentialMarker:function(e,t,n){C("sequential",e,r.getScaledPath("MARKER_SEQUENTIAL",{xScaleFactor:1,yScaleFactor:1,containerWidth:t.width,containerHeight:t.height,position:{mx:(t.width/2+n.seq)/t.width,my:(t.height-19)/t.height}}),{fill:ke(t,p,n.fill),stroke:Se(t,c,n.stroke)})},CompensationMarker:function(e,t,n){C("compensation",e,r.getScaledPath("MARKER_COMPENSATION",{xScaleFactor:1,yScaleFactor:1,containerWidth:t.width,containerHeight:t.height,position:{mx:(t.width/2+n.compensation)/t.width,my:(t.height-13)/t.height}}),{strokeWidth:1,fill:ke(t,p,n.fill),stroke:Se(t,c,n.stroke)})},LoopMarker:function(e,t,n){var i=Pe(t,n),o=De(t,n);C("loop",e,r.getScaledPath("MARKER_LOOP",{xScaleFactor:1,yScaleFactor:1,containerWidth:i,containerHeight:o,position:{mx:(i/2+n.loop)/i,my:(o-7)/o}}),{strokeWidth:1.5,fill:"none",stroke:Se(t,c,n.stroke),strokeMiterlimit:.5})},AdhocMarker:function(e,t,n){var i=Pe(t,n),o=De(t,n);C("adhoc",e,r.getScaledPath("MARKER_ADHOC",{xScaleFactor:1,yScaleFactor:1,containerWidth:i,containerHeight:o,position:{mx:(i/2+n.adhoc)/i,my:(o-15)/o}}),{strokeWidth:1,fill:Se(t,c,n.stroke),stroke:Se(t,c,n.stroke)})}};function O(e,t,n,i){T[e](t,n,i)}function B(e,t,n=[],i={}){i={fill:i.fill,stroke:i.stroke,width:Pe(t,i),height:De(t,i)};var r=d(t),o=n.includes("SubProcessMarker");i=o?{...i,seq:-21,parallel:-22,compensation:-25,loop:-18,adhoc:10}:{...i,seq:-5,parallel:-6,compensation:-7,loop:0,adhoc:-8},r.get("isForCompensation")&&n.push("CompensationMarker"),m(r,"bpmn:AdHocSubProcess")&&(n.push("AdhocMarker"),o||u(i,{compensation:i.compensation-18}));var s=r.get("loopCharacteristics"),l=s&&s.get("isSequential");s&&(u(i,{compensation:i.compensation-18}),n.includes("AdhocMarker")&&u(i,{seq:-23,loop:-18,parallel:-24}),void 0===l&&n.push("LoopMarker"),!1===l&&n.push("ParallelMarker"),!0===l&&n.push("SequentialMarker")),n.includes("CompensationMarker")&&1===n.length&&u(i,{compensation:-8}),a(n,(function(n){O(n,e,t,i)}))}function L(e,t,n={}){n=u({size:{width:100}},n);var i=s.createText(t||"",n);return X(i).add("djs-label"),G(e,i),i}function I(e,t,n,i={}){var r=d(t),o=Me({x:t.x,y:t.y,width:t.width,height:t.height},i);return L(e,r.name,{align:n,box:o,padding:7,style:{fill:Re(t,f,c,i.stroke)}})}function j(e,t,n,i={}){var r=v(n),o=L(e,t,{box:{height:30,width:r?De(n,i):Pe(n,i)},align:"center-middle",style:{fill:Re(n,f,c,i.stroke)}});r&&it(o,0,-(-1*De(n,i)),270)}function F(e,t,n={}){var{width:i,height:r}=Me(t,n);return A(e,i,r,10,{...n,fill:ke(t,p,n.fill),fillOpacity:lt,stroke:Se(t,c,n.stroke)})}function V(e,t,n={}){var i=d(t),r=ke(t,p,n.fill),o=Se(t,c,n.stroke);return"One"!==i.get("associationDirection")&&"Both"!==i.get("associationDirection")||(n.markerEnd=E(e,"association-end",r,o)),"Both"===i.get("associationDirection")&&(n.markerStart=E(e,"association-start",r,o)),n=ct(n,["markerStart","markerEnd"]),S(e,t.waypoints,{...n,stroke:o,strokeDasharray:"0, 5"})}function W(e,t,n={}){var i=ke(t,p,n.fill),o=Se(t,c,n.stroke),a=R(e,r.getScaledPath("DATA_OBJECT_PATH",{xScaleFactor:1,yScaleFactor:1,containerWidth:t.width,containerHeight:t.height,position:{mx:.474,my:.296}}),{fill:i,fillOpacity:lt,stroke:o});(function(e){var t=e.dataObjectRef;return e.isCollection||t&&t.isCollection})(d(t))&&R(e,r.getScaledPath("DATA_OBJECT_COLLECTION_PATH",{xScaleFactor:1,yScaleFactor:1,containerWidth:t.width,containerHeight:t.height,position:{mx:.33,my:(t.height-18)/t.height}}),{strokeWidth:2,fill:i,stroke:o});return a}function $(e,t,n={}){return _(e,t.width,t.height,{fillOpacity:lt,...n,fill:ke(t,p,n.fill),stroke:Se(t,c,n.stroke)})}function H(e,t,n={}){return function(e,t,n,i){var r=t/2,o=n/2,a=[{x:r,y:0},{x:t,y:o},{x:r,y:n},{x:0,y:o}].map((function(e){return e.x+","+e.y})).join(" ");i=b(i);var s=te("polygon",{...i,points:a});return G(e,s),s}(e,t.width,t.height,{fill:ke(t,p,n.fill),fillOpacity:lt,stroke:Se(t,c,n.stroke)})}function K(e,t,n={}){var i=A(e,Pe(t,n),De(t,n),0,{fill:ke(t,p,n.fill),fillOpacity:n.fillOpacity||lt,stroke:Se(t,c,n.stroke),strokeWidth:1.5}),r=d(t);m(r,"bpmn:Lane")&&j(e,r.get("name"),t,n);return i}function U(e,t,n={}){var i=F(e,t,n),r=g(t);if(function(e){return e&&!!d(e).triggeredByEvent}(t)&&(q(i,{strokeDasharray:"0, 5.5",strokeWidth:2.5}),!r)){var o=(d(t).flowElements||[]).filter((e=>m(e,"bpmn:StartEvent")));1===o.length&&function(e,t,n,i){var r=22,o={fill:ke(i,p,n.fill),stroke:Se(i,c,n.stroke),width:r,height:r},a=d(e).isInterrupting,s=a?0:3,l=a?1:1.2,u=20,f=(r-u)/2,h="translate("+f+","+f+")";_(t,u,u,{fill:o.fill,stroke:o.stroke,strokeWidth:l,strokeDasharray:s,transform:h}),N(e,t,o,i)}(o[0],e,n,t)}return I(e,t,r?"center-top":"center-middle",n),B(e,t,r?void 0:["SubProcessMarker"],n),i}function Y(e,t,n={}){var i=F(e,t,n);return I(e,t,"center-middle",n),B(e,t,void 0,n),i}var Z=this.handlers={"bpmn:AdHocSubProcess":function(e,t,n={}){return U(e,t,n=g(t)?ct(n,["fill","stroke","width","height"]):ct(n,["fill","stroke"]))},"bpmn:Association":function(e,t,n={}){return V(e,t,n=ct(n,["fill","stroke"]))},"bpmn:BoundaryEvent":function(e,t,n={}){var{renderIcon:i=!0}=n;n=ct(n,["fill","stroke"]);var r=d(t).get("cancelActivity");n={strokeWidth:1.5,fill:ke(t,p,n.fill),fillOpacity:1,stroke:Se(t,c,n.stroke)},r||(n.strokeDasharray="6");var o=$(e,t,n);return _(e,t.width,t.height,3,{...n,fill:"none"}),i&&N(t,e,n),o},"bpmn:BusinessRuleTask":function(e,t,n={}){var i=Y(e,t,n=ct(n,["fill","stroke"]));return q(R(e,r.getScaledPath("TASK_TYPE_BUSINESS_RULE_MAIN",{abspos:{x:8,y:8}})),{fill:ke(t,p,n.fill),stroke:Se(t,c,n.stroke),strokeWidth:1}),q(R(e,r.getScaledPath("TASK_TYPE_BUSINESS_RULE_HEADER",{abspos:{x:8,y:8}})),{fill:Se(t,c,n.stroke),stroke:Se(t,c,n.stroke),strokeWidth:1}),i},"bpmn:CallActivity":function(e,t,n={}){return n=ct(n,["fill","stroke"]),U(e,t,{strokeWidth:5,...n})},"bpmn:ComplexGateway":function(e,t,n={}){var i=H(e,t,n=ct(n,["fill","stroke"]));return R(e,r.getScaledPath("GATEWAY_COMPLEX",{xScaleFactor:.5,yScaleFactor:.5,containerWidth:t.width,containerHeight:t.height,position:{mx:.46,my:.26}}),{fill:Se(t,c,n.stroke),stroke:Se(t,c,n.stroke),strokeWidth:1}),i},"bpmn:DataInput":function(e,t,n={}){n=ct(n,["fill","stroke"]);var i=r.getRawPath("DATA_ARROW"),o=W(e,t,n);return R(e,i,{fill:"none",stroke:Se(t,c,n.stroke),strokeWidth:1}),o},"bpmn:DataInputAssociation":function(e,t,n={}){return n=ct(n,["fill","stroke"]),V(e,t,{...n,markerEnd:E(e,"association-end",ke(t,p,n.fill),Se(t,c,n.stroke))})},"bpmn:DataObject":function(e,t,n={}){return W(e,t,n=ct(n,["fill","stroke"]))},"bpmn:DataObjectReference":P("bpmn:DataObject"),"bpmn:DataOutput":function(e,t,n={}){n=ct(n,["fill","stroke"]);var i=r.getRawPath("DATA_ARROW"),o=W(e,t,n);return R(e,i,{strokeWidth:1,fill:ke(t,p,n.fill),stroke:Se(t,c,n.stroke)}),o},"bpmn:DataOutputAssociation":function(e,t,n={}){return n=ct(n,["fill","stroke"]),V(e,t,{...n,markerEnd:E(e,"association-end",ke(t,p,n.fill),Se(t,c,n.stroke))})},"bpmn:DataStoreReference":function(e,t,n={}){return n=ct(n,["fill","stroke"]),R(e,r.getScaledPath("DATA_STORE",{xScaleFactor:1,yScaleFactor:1,containerWidth:t.width,containerHeight:t.height,position:{mx:0,my:.133}}),{fill:ke(t,p,n.fill),fillOpacity:lt,stroke:Se(t,c,n.stroke),strokeWidth:2})},"bpmn:EndEvent":function(e,t,n={}){var{renderIcon:i=!0}=n;n=ct(n,["fill","stroke"]);var r=$(e,t,{...n,strokeWidth:4});return i&&N(t,e,n),r},"bpmn:EventBasedGateway":function(e,t,n={}){n=ct(n,["fill","stroke"]);var i=d(t),o=H(e,t,n);_(e,t.width,t.height,.2*t.height,{fill:ke(t,"none",n.fill),stroke:Se(t,c,n.stroke),strokeWidth:1});var a=i.get("eventGatewayType"),s=!!i.get("instantiate");if("Parallel"===a){var l=r.getScaledPath("GATEWAY_PARALLEL",{xScaleFactor:.4,yScaleFactor:.4,containerWidth:t.width,containerHeight:t.height,position:{mx:.474,my:.296}});R(e,l,{fill:"none",stroke:Se(t,c,n.stroke),strokeWidth:1})}else"Exclusive"===a&&(s||_(e,t.width,t.height,.26*t.height,{fill:"none",stroke:Se(t,c,n.stroke),strokeWidth:1}),function(){var i=r.getScaledPath("GATEWAY_EVENT_BASED",{xScaleFactor:.18,yScaleFactor:.18,containerWidth:t.width,containerHeight:t.height,position:{mx:.36,my:.44}});R(e,i,{fill:"none",stroke:Se(t,c,n.stroke),strokeWidth:2})}());return o},"bpmn:ExclusiveGateway":function(e,t,n={}){var i=H(e,t,n=ct(n,["fill","stroke"])),o=r.getScaledPath("GATEWAY_EXCLUSIVE",{xScaleFactor:.4,yScaleFactor:.4,containerWidth:t.width,containerHeight:t.height,position:{mx:.32,my:.3}});return y(t).get("isMarkerVisible")&&R(e,o,{fill:Se(t,c,n.stroke),stroke:Se(t,c,n.stroke),strokeWidth:1}),i},"bpmn:Gateway":function(e,t,n={}){return H(e,t,n=ct(n,["fill","stroke"]))},"bpmn:Group":function(e,t,n={}){return n=ct(n,["fill","stroke","width","height"]),A(e,t.width,t.height,10,{stroke:Se(t,c,n.stroke),strokeWidth:1.5,strokeDasharray:"10, 6, 0, 6",fill:"none",pointerEvents:"none",width:Pe(t,n),height:De(t,n)})},"bpmn:InclusiveGateway":function(e,t,n={}){var i=H(e,t,n=ct(n,["fill","stroke"]));return _(e,t.width,t.height,.24*t.height,{fill:ke(t,p,n.fill),stroke:Se(t,c,n.stroke),strokeWidth:2.5}),i},"bpmn:IntermediateEvent":function(e,t,n={}){var{renderIcon:i=!0}=n;n=ct(n,["fill","stroke"]);var r=$(e,t,{...n,strokeWidth:1.5});return _(e,t.width,t.height,3,{fill:"none",stroke:Se(t,c,n.stroke),strokeWidth:1.5}),i&&N(t,e,n),r},"bpmn:IntermediateCatchEvent":P("bpmn:IntermediateEvent"),"bpmn:IntermediateThrowEvent":P("bpmn:IntermediateEvent"),"bpmn:Lane":function(e,t,n={}){return n=ct(n,["fill","stroke","width","height"]),K(e,t,{...n,fillOpacity:.25})},"bpmn:ManualTask":function(e,t,n={}){var i=Y(e,t,n=ct(n,["fill","stroke"]));return R(e,r.getScaledPath("TASK_TYPE_MANUAL",{abspos:{x:17,y:15}}),{fill:ke(t,p,n.fill),stroke:Se(t,c,n.stroke),strokeWidth:.5}),i},"bpmn:MessageFlow":function(e,t,n={}){n=ct(n,["fill","stroke"]);var i=d(t),o=y(t),a=ke(t,p,n.fill),s=Se(t,c,n.stroke),l=S(e,t.waypoints,{markerEnd:E(e,"messageflow-end",a,s),markerStart:E(e,"messageflow-start",a,s),stroke:s,strokeDasharray:"10, 11",strokeWidth:1.5});if(i.get("messageRef")){var u=l.getPointAtLength(l.getTotalLength()/2),f=r.getScaledPath("MESSAGE_FLOW_MARKER",{abspos:{x:u.x,y:u.y}}),h={strokeWidth:1};"initiating"===o.get("messageVisibleKind")?(h.fill=a,h.stroke=s):(h.fill=s,h.stroke=a);var m=R(e,f,h),g=L(e,i.get("messageRef").get("name"),{align:"center-top",fitBox:!0,style:{fill:s}}),v=m.getBBox(),b=g.getBBox();it(g,u.x-b.width/2,u.y+v.height/2+10,0)}return l},"bpmn:ParallelGateway":function(e,t,n={}){var i=H(e,t,n=ct(n,["fill","stroke"]));return R(e,r.getScaledPath("GATEWAY_PARALLEL",{xScaleFactor:.6,yScaleFactor:.6,containerWidth:t.width,containerHeight:t.height,position:{mx:.46,my:.2}}),{fill:Se(t,c,n.stroke),stroke:Se(t,c,n.stroke),strokeWidth:1}),i},"bpmn:Participant":function(e,t,n={}){var i=K(e,t,n=ct(n,["fill","stroke","width","height"])),r=g(t),o=v(t),a=d(t),s=a.get("name");if(r){k(e,o?[{x:30,y:0},{x:30,y:De(t,n)}]:[{x:0,y:30},{x:Pe(t,n),y:30}],{stroke:Se(t,c,n.stroke),strokeWidth:1.5}),j(e,s,t,n)}else{var l=Me(t,n);o||(l.height=Pe(t,n),l.width=De(t,n));var p=L(e,s,{box:l,align:"center-middle",style:{fill:Re(t,f,c,n.stroke)}});if(!o)it(p,0,-(-1*De(t,n)),270)}return a.get("participantMultiplicity")&&O("ParticipantMultiplicityMarker",e,t,n),i},"bpmn:ReceiveTask":function(e,t,n={}){n=ct(n,["fill","stroke"]);var i,o=d(t),a=Y(e,t,n);return o.get("instantiate")?(_(e,28,28,4.4,{fill:ke(t,p,n.fill),stroke:Se(t,c,n.stroke),strokeWidth:1}),i=r.getScaledPath("TASK_TYPE_INSTANTIATING_SEND",{abspos:{x:7.77,y:9.52}})):i=r.getScaledPath("TASK_TYPE_SEND",{xScaleFactor:.9,yScaleFactor:.9,containerWidth:21,containerHeight:14,position:{mx:.3,my:.4}}),R(e,i,{fill:ke(t,p,n.fill),stroke:Se(t,c,n.stroke),strokeWidth:1}),a},"bpmn:ScriptTask":function(e,t,n={}){var i=Y(e,t,n=ct(n,["fill","stroke"]));return R(e,r.getScaledPath("TASK_TYPE_SCRIPT",{abspos:{x:15,y:20}}),{fill:ke(t,p,n.fill),stroke:Se(t,c,n.stroke),strokeWidth:1}),i},"bpmn:SendTask":function(e,t,n={}){var i=Y(e,t,n=ct(n,["fill","stroke"]));return R(e,r.getScaledPath("TASK_TYPE_SEND",{xScaleFactor:1,yScaleFactor:1,containerWidth:21,containerHeight:14,position:{mx:.285,my:.357}}),{fill:Se(t,c,n.stroke),stroke:ke(t,p,n.fill),strokeWidth:1}),i},"bpmn:SequenceFlow":function(e,t,n={}){n=ct(n,["fill","stroke"]);var i=ke(t,p,n.fill),r=Se(t,c,n.stroke),o=S(e,t.waypoints,{markerEnd:E(e,"sequenceflow-end",i,r),stroke:r}),a=d(t),{source:s}=t;if(s){var l=d(s);a.get("conditionExpression")&&m(l,"bpmn:Activity")&&q(o,{markerStart:E(e,"conditional-flow-marker",i,r)}),l.get("default")&&(m(l,"bpmn:Gateway")||m(l,"bpmn:Activity"))&&l.get("default")===a&&q(o,{markerStart:E(e,"conditional-default-flow-marker",i,r)})}return o},"bpmn:ServiceTask":function(e,t,n={}){var i=Y(e,t,n=ct(n,["fill","stroke"]));return _(e,10,10,{fill:ke(t,p,n.fill),stroke:"none",transform:"translate(6, 6)"}),R(e,r.getScaledPath("TASK_TYPE_SERVICE",{abspos:{x:12,y:18}}),{fill:ke(t,p,n.fill),stroke:Se(t,c,n.stroke),strokeWidth:1}),_(e,10,10,{fill:ke(t,p,n.fill),stroke:"none",transform:"translate(11, 10)"}),R(e,r.getScaledPath("TASK_TYPE_SERVICE",{abspos:{x:17,y:22}}),{fill:ke(t,p,n.fill),stroke:Se(t,c,n.stroke),strokeWidth:1}),i},"bpmn:StartEvent":function(e,t,n={}){var{renderIcon:i=!0}=n;n=ct(n,["fill","stroke"]),d(t).get("isInterrupting")||(n={...n,strokeDasharray:"6"});var r=$(e,t,n);return i&&N(t,e,n),r},"bpmn:SubProcess":function(e,t,n={}){return U(e,t,n=g(t)?ct(n,["fill","stroke","width","height"]):ct(n,["fill","stroke"]))},"bpmn:Task":function(e,t,n={}){return Y(e,t,n=ct(n,["fill","stroke"]))},"bpmn:TextAnnotation":function(e,t,n={}){n=ct(n,["fill","stroke","width","height"]);var{width:i,height:o}=Me(t,n),a=A(e,i,o,0,0,{fill:"none",stroke:"none"});return R(e,r.getScaledPath("TEXT_ANNOTATION",{xScaleFactor:1,yScaleFactor:1,containerWidth:i,containerHeight:o,position:{mx:0,my:0}}),{stroke:Se(t,c,n.stroke)}),L(e,d(t).get("text")||"",{align:"left-top",box:Me(t,n),padding:7,style:{fill:Re(t,f,c,n.stroke)}}),a},"bpmn:Transaction":function(e,t,i={}){i=g(t)?ct(i,["fill","stroke","width","height"]):ct(i,["fill","stroke"]);var r=U(e,t,{strokeWidth:1.5,...i}),o=n.style(["no-fill","no-events"],{stroke:Se(t,c,i.stroke),strokeWidth:1.5});return g(t)||(i={}),A(e,Pe(t,i),De(t,i),7,3,o),r},"bpmn:UserTask":function(e,t,n={}){var i=Y(e,t,n=ct(n,["fill","stroke"]));return R(e,r.getScaledPath("TASK_TYPE_USER_1",{abspos:{x:15,y:12}}),{fill:ke(t,p,n.fill),stroke:Se(t,c,n.stroke),strokeWidth:.5}),R(e,r.getScaledPath("TASK_TYPE_USER_2",{abspos:{x:15,y:12}}),{fill:ke(t,p,n.fill),stroke:Se(t,c,n.stroke),strokeWidth:.5}),R(e,r.getScaledPath("TASK_TYPE_USER_3",{abspos:{x:15,y:12}}),{fill:Se(t,c,n.stroke),stroke:Se(t,c,n.stroke),strokeWidth:.5}),i},label:function(e,t,n={}){return function(e,t,n={}){var i={width:90,height:30,x:t.width/2+t.x,y:t.height/2+t.y};return L(e,z(t),{box:i,fitBox:!0,style:u({},s.getExternalStyle(),{fill:Re(t,f,c,n.stroke)})})}(e,t,n)}};this._drawPath=R,this._renderer=M}function ct(e,t=[]){return t.reduce(((t,n)=>(e[n]&&(t[n]=e[n]),t)),{})}function ut(e,t){return t.forEach((function(t){t&&"string"!=typeof t&&!Array.isArray(t)&&Object.keys(t).forEach((function(n){if("default"!==n&&!(n in e)){var i=Object.getOwnPropertyDescriptor(t,n);Object.defineProperty(e,n,i.get?i:{enumerable:!0,get:function(){return t[n]}})}}))})),Object.freeze(e)}e(pt,h),pt.$inject=["config.bpmnRenderer","eventBus","styles","pathMap","canvas","textRenderer"],pt.prototype.canRender=function(e){return m(e,"bpmn:BaseElement")},pt.prototype.drawShape=function(e,t,n={}){var{type:i}=t;return this._renderer(i)(e,t,n)},pt.prototype.drawConnection=function(e,t,n={}){var{type:i}=t;return this._renderer(i)(e,t,n)},pt.prototype.getShapePath=function(e){return _(t=e)&&R(t,"labelTarget")?Ce(e,4):m(e,"bpmn:Event")?function(e){var t=e.x+e.width/2,n=e.y+e.height/2,i=e.width/2;return de([["M",t,n],["m",0,-i],["a",i,i,0,1,1,0,2*i],["a",i,i,0,1,1,0,-2*i],["z"]])}(e):m(e,"bpmn:Activity")?Ce(e,10):m(e,"bpmn:Gateway")?function(e){var t=e.width/2,n=e.height/2;return de([["M",e.x+t,e.y],["l",t,n],["l",-t,n],["l",-t,-n],["z"]])}(e):function(e){var t=e.x,n=e.y,i=e.width;return de([["M",t,n],["l",i,0],["l",0,e.height],["l",-i,0],["z"]])}(e);var t};const ft=Object.prototype.toString,ht=Object.prototype.hasOwnProperty;function mt(e,t){return ht.call(e,t)}function dt(e,t){let n,i;if(void 0===e)return;const r=function(e){return"[object Array]"===ft.call(e)}(e)?gt:yt;for(let o in e)if(mt(e,o)&&(n=e[o],i=t(n,r(o)),!1===i))return n}function yt(e){return e}function gt(e){return Number(e)}function vt(e,...t){const n=e.style;return dt(t,(function(e){e&&dt(e,(function(e,t){n[t]=e}))})),e}function bt(e,t,n){return 2==arguments.length?e.getAttribute(t):null===n?e.removeAttribute(t):(e.setAttribute(t,n),e)}const xt=Object.prototype.toString;function wt(e){return new Et(e)}function Et(e){if(!e||!e.nodeType)throw new Error("A DOM element reference is required");this.el=e,this.list=e.classList}function _t(e){for(var t;t=e.firstChild;)e.removeChild(t);return e}Et.prototype.add=function(e){return this.list.add(e),this},Et.prototype.remove=function(e){return"[object RegExp]"==xt.call(e)?this.removeMatching(e):(this.list.remove(e),this)},Et.prototype.removeMatching=function(e){const t=this.array();for(let n=0;n<t.length;n++)e.test(t[n])&&this.remove(t[n]);return this},Et.prototype.toggle=function(e,t){return void 0!==t?t!==this.list.toggle(e,t)&&this.list.toggle(e):this.list.toggle(e),this},Et.prototype.array=function(){return Array.from(this.list)},Et.prototype.has=Et.prototype.contains=function(e){return this.list.contains(e)};var At,kt,St,Rt={};function Ct(){At=window.addEventListener?"addEventListener":"attachEvent",kt=window.removeEventListener?"removeEventListener":"detachEvent",St="addEventListener"!==At?"on":""}var Mt=ut({__proto__:null,bind:Rt.bind=function(e,t,n,i){return At||Ct(),e[At](St+t,n,i||!1),n},unbind:Rt.unbind=function(e,t,n,i){return kt||Ct(),e[kt](St+t,n,i||!1),n},default:Rt},[Rt]),Pt=["focus","blur"];var Dt,Nt={bind:function(e,t,n,i,r){return-1!==Pt.indexOf(n)&&(r=!0),Mt.bind(e,n,(function(n){var r=n.target||n.srcElement;n.delegateTarget=function(e,t,n){var i=n?e:e.parentNode;return i&&"function"==typeof i.closest&&i.closest(t)||null}(r,t,!0),n.delegateTarget&&i.call(e,n)}),r)},unbind:function(e,t,n,i){return-1!==Pt.indexOf(t)&&(i=!0),Mt.unbind(e,t,n,i)}},Tt=function(e,t){if("string"!=typeof e)throw new TypeError("String expected");t||(t=document);var n=/<([\w:]+)/.exec(e);if(!n)return t.createTextNode(e);e=e.replace(/^\s+|\s+$/g,"");var i=n[1];if("body"==i){return(r=t.createElement("html")).innerHTML=e,r.removeChild(r.lastChild)}var r,o=Object.prototype.hasOwnProperty.call(Bt,i)?Bt[i]:Bt._default,a=o[0],s=o[1],l=o[2];(r=t.createElement("div")).innerHTML=s+e+l;for(;a--;)r=r.lastChild;if(r.firstChild==r.lastChild)return r.removeChild(r.firstChild);var p=t.createDocumentFragment();for(;r.firstChild;)p.appendChild(r.removeChild(r.firstChild));return p},Ot=!1;"undefined"!=typeof document&&((Dt=document.createElement("div")).innerHTML=' <link/><table></table><a href="/a">a</a><input type="checkbox"/>',Ot=!Dt.getElementsByTagName("link").length,Dt=void 0);var Bt={legend:[1,"<fieldset>","</fieldset>"],tr:[2,"<table><tbody>","</tbody></table>"],col:[2,"<table><tbody></tbody><colgroup>","</colgroup></table>"],_default:Ot?[1,"X<div>","</div>"]:[0,"",""]};Bt.td=Bt.th=[3,"<table><tbody><tr>","</tr></tbody></table>"],Bt.option=Bt.optgroup=[1,'<select multiple="multiple">',"</select>"],Bt.thead=Bt.tbody=Bt.colgroup=Bt.caption=Bt.tfoot=[1,"<table>","</table>"],Bt.polyline=Bt.ellipse=Bt.polygon=Bt.circle=Bt.text=Bt.line=Bt.path=Bt.rect=Bt.g=[1,'<svg xmlns="http://www.w3.org/2000/svg" version="1.1">',"</svg>"];var Lt=Tt;function It(e){e.parentNode&&e.parentNode.removeChild(e)}var jt=0,Ft={width:150,height:50};function Vt(e,t){var n;t.textContent=e;try{var i,r=""===e;return t.textContent=r?"dummy":e,i={width:(n=t.getBBox()).width+2*n.x,height:n.height},r&&(i.width=0),i}catch(e){return console.log(e),{width:0,height:0}}}function Wt(e,t,n){for(var i,r=e.shift(),o=r;;){if((i=Vt(o,n)).width=o?i.width:0," "===o||""===o||i.width<Math.round(t)||o.length<2)return $t(e,o,r,i);o=Gt(o,i.width,t)}}function $t(e,t,n,i){if(t.length<n.length){var r=n.slice(t.length).trim();e.unshift(r)}return{width:i.width,height:i.height,text:t}}var zt="";function Gt(e,t,n){var i=Math.max(e.length*(n/t),1),r=function(e,t){var n,i=e.split(/(\s|-|\u00AD)/g),r=[],o=0;if(i.length>1)for(;n=i.shift();){if(!(n.length+o<t)){"-"!==n&&n!==zt||r.pop();break}r.push(n),o+=n.length}var a=r[r.length-1];return a&&a===zt&&(r[r.length-1]="-"),r.join("")}(e,i);return r||(r=e.slice(0,Math.max(Math.round(i-1),1))),r}function Ht(e){this._config=j({},{size:Ft,padding:jt,style:{},align:"center-top"},e||{})}Ht.prototype.createText=function(e,t){return this.layoutText(e,t).element},Ht.prototype.getDimensions=function(e,t){return this.layoutText(e,t).dimensions},Ht.prototype.layoutText=function(e,t){var n=j({},this._config.size,t.box),i=j({},this._config.style,t.style),r=function(e){var t=e.split("-");return{horizontal:t[0]||"center",vertical:t[1]||"top"}}(t.align||this._config.align),o=function(e){return _(e)?j({top:0,left:0,right:0,bottom:0},e):{top:e,left:e,right:e,bottom:e}}(void 0!==t.padding?t.padding:this._config.padding),a=t.fitBox||!1,s=function(e){if("fontSize"in e&&"lineHeight"in e)return e.lineHeight*parseInt(e.fontSize,10)}(i),l=e.split(/\u00AD?\r?\n/),p=[],c=n.width-o.left-o.right,u=te("text");for(q(u,{x:0,y:0}),q(u,i),G(function(){var e=document.getElementById("helper-svg");return e||(q(e=te("svg"),{id:"helper-svg"}),vt(e,{visibility:"hidden",position:"fixed",width:0,height:0}),document.body.appendChild(e)),e}(),u);l.length;)p.push(Wt(l,c,u));"middle"===r.vertical&&(o.top=o.bottom=0);var f=D(p,(function(e,t,n){return e+(s||t.height)}),0)+o.top+o.bottom,h=D(p,(function(e,t,n){return t.width>e?t.width:e}),0),m=o.top;"middle"===r.vertical&&(m+=(n.height-f)/2),m-=(s||p[0].height)/4;var d=te("text");return q(d,i),P(p,(function(e){var t;switch(m+=s||e.height,r.horizontal){case"left":t=o.left;break;case"right":t=(a?h:c)-o.right-e.width;break;default:t=Math.max(((a?h:c)-e.width)/2+o.left,0)}var n=te("tspan");q(n,{x:t,y:m}),n.textContent=e.text,G(d,n)})),fe(u),{dimensions:{width:h,height:f},element:d}};function Kt(e){var t=u({fontFamily:"Arial, sans-serif",fontSize:12,fontWeight:"normal",lineHeight:1.2},e&&e.defaultStyle||{}),n=parseInt(t.fontSize,10)-1,i=u({},t,{fontSize:n},e&&e.externalStyle||{}),r=new Ht({style:t});this.getExternalLabelBounds=function(e,t){var n=r.getDimensions(t,{box:{width:90,height:30},style:i});return{x:Math.round(e.x+e.width/2-n.width/2),y:Math.round(e.y),width:Math.ceil(n.width),height:Math.ceil(n.height)}},this.getTextAnnotationBounds=function(e,n){var i=r.getDimensions(n,{box:e,style:t,align:"left-top",padding:5});return{x:e.x,y:e.y,width:e.width,height:Math.max(30,Math.round(i.height))}},this.createText=function(e,t){return r.createText(e,t||{})},this.getDefaultStyle=function(){return t},this.getExternalStyle=function(){return i}}Kt.$inject=["config.textRenderer"];var Ut=/\{([^{}]+)\}/g,qt=/(?:(?:^|\.)(.+?)(?=\[|\.|$|\()|\[('|")(.+?)\2\])(\(\))?/g;var Yt={__init__:["bpmnRenderer"],bpmnRenderer:["type",pt],textRenderer:["type",Kt],pathMap:["type",function(){this.pathMap={EVENT_MESSAGE:{d:"m {mx},{my} l 0,{e.y1} l {e.x1},0 l 0,-{e.y1} z l {e.x0},{e.y0} l {e.x0},-{e.y0}",height:36,width:36,heightElements:[6,14],widthElements:[10.5,21]},EVENT_SIGNAL:{d:"M {mx},{my} l {e.x0},{e.y0} l -{e.x1},0 Z",height:36,width:36,heightElements:[18],widthElements:[10,20]},EVENT_ESCALATION:{d:"M {mx},{my} l {e.x0},{e.y0} l -{e.x0},-{e.y1} l -{e.x0},{e.y1} Z",height:36,width:36,heightElements:[20,7],widthElements:[8]},EVENT_CONDITIONAL:{d:"M {e.x0},{e.y0} l {e.x1},0 l 0,{e.y2} l -{e.x1},0 Z M {e.x2},{e.y3} l {e.x0},0 M {e.x2},{e.y4} l {e.x0},0 M {e.x2},{e.y5} l {e.x0},0 M {e.x2},{e.y6} l {e.x0},0 M {e.x2},{e.y7} l {e.x0},0 M {e.x2},{e.y8} l {e.x0},0 ",height:36,width:36,heightElements:[8.5,14.5,18,11.5,14.5,17.5,20.5,23.5,26.5],widthElements:[10.5,14.5,12.5]},EVENT_LINK:{d:"m {mx},{my} 0,{e.y0} -{e.x1},0 0,{e.y1} {e.x1},0 0,{e.y0} {e.x0},-{e.y2} -{e.x0},-{e.y2} z",height:36,width:36,heightElements:[4.4375,6.75,7.8125],widthElements:[9.84375,13.5]},EVENT_ERROR:{d:"m {mx},{my} {e.x0},-{e.y0} {e.x1},-{e.y1} {e.x2},{e.y2} {e.x3},-{e.y3} -{e.x4},{e.y4} -{e.x5},-{e.y5} z",height:36,width:36,heightElements:[.023,8.737,8.151,16.564,10.591,8.714],widthElements:[.085,6.672,6.97,4.273,5.337,6.636]},EVENT_CANCEL_45:{d:"m {mx},{my} -{e.x1},0 0,{e.x0} {e.x1},0 0,{e.y1} {e.x0},0 0,-{e.y1} {e.x1},0 0,-{e.y0} -{e.x1},0 0,-{e.y1} -{e.x0},0 z",height:36,width:36,heightElements:[4.75,8.5],widthElements:[4.75,8.5]},EVENT_COMPENSATION:{d:"m {mx},{my} {e.x0},-{e.y0} 0,{e.y1} z m {e.x1},-{e.y2} {e.x2},-{e.y3} 0,{e.y1} -{e.x2},-{e.y3} z",height:36,width:36,heightElements:[6.5,13,.4,6.1],widthElements:[9,9.3,8.7]},EVENT_TIMER_WH:{d:"M {mx},{my} l {e.x0},-{e.y0} m -{e.x0},{e.y0} l {e.x1},{e.y1} ",height:36,width:36,heightElements:[10,2],widthElements:[3,7]},EVENT_TIMER_LINE:{d:"M {mx},{my} m {e.x0},{e.y0} l -{e.x1},{e.y1} ",height:36,width:36,heightElements:[10,3],widthElements:[0,0]},EVENT_MULTIPLE:{d:"m {mx},{my} {e.x1},-{e.y0} {e.x1},{e.y0} -{e.x0},{e.y1} -{e.x2},0 z",height:36,width:36,heightElements:[6.28099,12.56199],widthElements:[3.1405,9.42149,12.56198]},EVENT_PARALLEL_MULTIPLE:{d:"m {mx},{my} {e.x0},0 0,{e.y1} {e.x1},0 0,{e.y0} -{e.x1},0 0,{e.y1} -{e.x0},0 0,-{e.y1} -{e.x1},0 0,-{e.y0} {e.x1},0 z",height:36,width:36,heightElements:[2.56228,7.68683],widthElements:[2.56228,7.68683]},GATEWAY_EXCLUSIVE:{d:"m {mx},{my} {e.x0},{e.y0} {e.x1},{e.y0} {e.x2},0 {e.x4},{e.y2} {e.x4},{e.y1} {e.x2},0 {e.x1},{e.y3} {e.x0},{e.y3} {e.x3},0 {e.x5},{e.y1} {e.x5},{e.y2} {e.x3},0 z",height:17.5,width:17.5,heightElements:[8.5,6.5312,-6.5312,-8.5],widthElements:[6.5,-6.5,3,-3,5,-5]},GATEWAY_PARALLEL:{d:"m {mx},{my} 0,{e.y1} -{e.x1},0 0,{e.y0} {e.x1},0 0,{e.y1} {e.x0},0 0,-{e.y1} {e.x1},0 0,-{e.y0} -{e.x1},0 0,-{e.y1} -{e.x0},0 z",height:30,width:30,heightElements:[5,12.5],widthElements:[5,12.5]},GATEWAY_EVENT_BASED:{d:"m {mx},{my} {e.x0},{e.y0} {e.x0},{e.y1} {e.x1},{e.y2} {e.x2},0 z",height:11,width:11,heightElements:[-6,6,12,-12],widthElements:[9,-3,-12]},GATEWAY_COMPLEX:{d:"m {mx},{my} 0,{e.y0} -{e.x0},-{e.y1} -{e.x1},{e.y2} {e.x0},{e.y1} -{e.x2},0 0,{e.y3} {e.x2},0 -{e.x0},{e.y1} l {e.x1},{e.y2} {e.x0},-{e.y1} 0,{e.y0} {e.x3},0 0,-{e.y0} {e.x0},{e.y1} {e.x1},-{e.y2} -{e.x0},-{e.y1} {e.x2},0 0,-{e.y3} -{e.x2},0 {e.x0},-{e.y1} -{e.x1},-{e.y2} -{e.x0},{e.y1} 0,-{e.y0} -{e.x3},0 z",height:17.125,width:17.125,heightElements:[4.875,3.4375,2.125,3],widthElements:[3.4375,2.125,4.875,3]},DATA_OBJECT_PATH:{d:"m 0,0 {e.x1},0 {e.x0},{e.y0} 0,{e.y1} -{e.x2},0 0,-{e.y2} {e.x1},0 0,{e.y0} {e.x0},0",height:61,width:51,heightElements:[10,50,60],widthElements:[10,40,50,60]},DATA_OBJECT_COLLECTION_PATH:{d:"m{mx},{my} m 3,2 l 0,10 m 3,-10 l 0,10 m 3,-10 l 0,10",height:10,width:10,heightElements:[],widthElements:[]},DATA_ARROW:{d:"m 5,9 9,0 0,-3 5,5 -5,5 0,-3 -9,0 z",height:61,width:51,heightElements:[],widthElements:[]},DATA_STORE:{d:"m {mx},{my} l 0,{e.y2} c {e.x0},{e.y1} {e.x1},{e.y1} {e.x2},0 l 0,-{e.y2} c -{e.x0},-{e.y1} -{e.x1},-{e.y1} -{e.x2},0c {e.x0},{e.y1} {e.x1},{e.y1} {e.x2},0 m -{e.x2},{e.y0}c {e.x0},{e.y1} {e.x1},{e.y1} {e.x2},0m -{e.x2},{e.y0}c {e.x0},{e.y1} {e.x1},{e.y1} {e.x2},0",height:61,width:61,heightElements:[7,10,45],widthElements:[2,58,60]},TEXT_ANNOTATION:{d:"m {mx}, {my} m 10,0 l -10,0 l 0,{e.y0} l 10,0",height:30,width:10,heightElements:[30],widthElements:[10]},MARKER_SUB_PROCESS:{d:"m{mx},{my} m 7,2 l 0,10 m -5,-5 l 10,0",height:10,width:10,heightElements:[],widthElements:[]},MARKER_PARALLEL:{d:"m{mx},{my} m 3,2 l 0,10 m 3,-10 l 0,10 m 3,-10 l 0,10",height:10,width:10,heightElements:[],widthElements:[]},MARKER_SEQUENTIAL:{d:"m{mx},{my} m 0,3 l 10,0 m -10,3 l 10,0 m -10,3 l 10,0",height:10,width:10,heightElements:[],widthElements:[]},MARKER_COMPENSATION:{d:"m {mx},{my} 7,-5 0,10 z m 7.1,-0.3 6.9,-4.7 0,10 -6.9,-4.7 z",height:10,width:21,heightElements:[],widthElements:[]},MARKER_LOOP:{d:"m {mx},{my} c 3.526979,0 6.386161,-2.829858 6.386161,-6.320661 0,-3.490806 -2.859182,-6.320661 -6.386161,-6.320661 -3.526978,0 -6.38616,2.829855 -6.38616,6.320661 0,1.745402 0.714797,3.325567 1.870463,4.469381 0.577834,0.571908 1.265885,1.034728 2.029916,1.35457 l -0.718163,-3.909793 m 0.718163,3.909793 -3.885211,0.802902",height:13.9,width:13.7,heightElements:[],widthElements:[]},MARKER_ADHOC:{d:"m {mx},{my} m 0.84461,2.64411 c 1.05533,-1.23780996 2.64337,-2.07882 4.29653,-1.97997996 2.05163,0.0805 3.85579,1.15803 5.76082,1.79107 1.06385,0.34139996 2.24454,0.1438 3.18759,-0.43767 0.61743,-0.33642 1.2775,-0.64078 1.7542,-1.17511 0,0.56023 0,1.12046 0,1.6807 -0.98706,0.96237996 -2.29792,1.62393996 -3.6918,1.66181996 -1.24459,0.0927 -2.46671,-0.2491 -3.59505,-0.74812 -1.35789,-0.55965 -2.75133,-1.33436996 -4.27027,-1.18121996 -1.37741,0.14601 -2.41842,1.13685996 -3.44288,1.96782996 z",height:4,width:15,heightElements:[],widthElements:[]},TASK_TYPE_SEND:{d:"m {mx},{my} l 0,{e.y1} l {e.x1},0 l 0,-{e.y1} z l {e.x0},{e.y0} l {e.x0},-{e.y0}",height:14,width:21,heightElements:[6,14],widthElements:[10.5,21]},TASK_TYPE_SCRIPT:{d:"m {mx},{my} c 9.966553,-6.27276 -8.000926,-7.91932 2.968968,-14.938 l -8.802728,0 c -10.969894,7.01868 6.997585,8.66524 -2.968967,14.938 z m -7,-12 l 5,0 m -4.5,3 l 4.5,0 m -3,3 l 5,0m -4,3 l 5,0",height:15,width:12.6,heightElements:[6,14],widthElements:[10.5,21]},TASK_TYPE_USER_1:{d:"m {mx},{my} c 0.909,-0.845 1.594,-2.049 1.594,-3.385 0,-2.554 -1.805,-4.62199999 -4.357,-4.62199999 -2.55199998,0 -4.28799998,2.06799999 -4.28799998,4.62199999 0,1.348 0.974,2.562 1.89599998,3.405 -0.52899998,0.187 -5.669,2.097 -5.794,4.7560005 v 6.718 h 17 v -6.718 c 0,-2.2980005 -5.5279996,-4.5950005 -6.0509996,-4.7760005 zm -8,6 l 0,5.5 m 11,0 l 0,-5"},TASK_TYPE_USER_2:{d:"m {mx},{my} m 2.162,1.009 c 0,2.4470005 -2.158,4.4310005 -4.821,4.4310005 -2.66499998,0 -4.822,-1.981 -4.822,-4.4310005 "},TASK_TYPE_USER_3:{d:"m {mx},{my} m -6.9,-3.80 c 0,0 2.25099998,-2.358 4.27399998,-1.177 2.024,1.181 4.221,1.537 4.124,0.965 -0.098,-0.57 -0.117,-3.79099999 -4.191,-4.13599999 -3.57499998,0.001 -4.20799998,3.36699999 -4.20699998,4.34799999 z"},TASK_TYPE_MANUAL:{d:"m {mx},{my} c 0.234,-0.01 5.604,0.008 8.029,0.004 0.808,0 1.271,-0.172 1.417,-0.752 0.227,-0.898 -0.334,-1.314 -1.338,-1.316 -2.467,-0.01 -7.886,-0.004 -8.108,-0.004 -0.014,-0.079 0.016,-0.533 0,-0.61 0.195,-0.042 8.507,0.006 9.616,0.002 0.877,-0.007 1.35,-0.438 1.353,-1.208 0.003,-0.768 -0.479,-1.09 -1.35,-1.091 -2.968,-0.002 -9.619,-0.013 -9.619,-0.013 v -0.591 c 0,0 5.052,-0.016 7.225,-0.016 0.888,-0.002 1.354,-0.416 1.351,-1.193 -0.006,-0.761 -0.492,-1.196 -1.361,-1.196 -3.473,-0.005 -10.86,-0.003 -11.0829995,-0.003 -0.022,-0.047 -0.045,-0.094 -0.069,-0.139 0.3939995,-0.319 2.0409995,-1.626 2.4149995,-2.017 0.469,-0.4870005 0.519,-1.1650005 0.162,-1.6040005 -0.414,-0.511 -0.973,-0.5 -1.48,-0.236 -1.4609995,0.764 -6.5999995,3.6430005 -7.7329995,4.2710005 -0.9,0.499 -1.516,1.253 -1.882,2.19 -0.37000002,0.95 -0.17,2.01 -0.166,2.979 0.004,0.718 -0.27300002,1.345 -0.055,2.063 0.629,2.087 2.425,3.312 4.859,3.318 4.6179995,0.014 9.2379995,-0.139 13.8569995,-0.158 0.755,-0.004 1.171,-0.301 1.182,-1.033 0.012,-0.754 -0.423,-0.969 -1.183,-0.973 -1.778,-0.01 -5.824,-0.004 -6.04,-0.004 10e-4,-0.084 0.003,-0.586 10e-4,-0.67 z"},TASK_TYPE_INSTANTIATING_SEND:{d:"m {mx},{my} l 0,8.4 l 12.6,0 l 0,-8.4 z l 6.3,3.6 l 6.3,-3.6"},TASK_TYPE_SERVICE:{d:"m {mx},{my} v -1.71335 c 0.352326,-0.0705 0.703932,-0.17838 1.047628,-0.32133 0.344416,-0.14465 0.665822,-0.32133 0.966377,-0.52145 l 1.19431,1.18005 1.567487,-1.57688 -1.195028,-1.18014 c 0.403376,-0.61394 0.683079,-1.29908 0.825447,-2.01824 l 1.622133,-0.01 v -2.2196 l -1.636514,0.01 c -0.07333,-0.35153 -0.178319,-0.70024 -0.323564,-1.04372 -0.145244,-0.34406 -0.321407,-0.6644 -0.522735,-0.96217 l 1.131035,-1.13631 -1.583305,-1.56293 -1.129598,1.13589 c -0.614052,-0.40108 -1.302883,-0.68093 -2.022633,-0.82247 l 0.0093,-1.61852 h -2.241173 l 0.0042,1.63124 c -0.353763,0.0736 -0.705369,0.17977 -1.049785,0.32371 -0.344415,0.14437 -0.665102,0.32092 -0.9635006,0.52046 l -1.1698628,-1.15823 -1.5667691,1.5792 1.1684265,1.15669 c -0.4026573,0.61283 -0.68308,1.29797 -0.8247287,2.01713 l -1.6588041,0.003 v 2.22174 l 1.6724648,-0.006 c 0.073327,0.35077 0.1797598,0.70243 0.3242851,1.04472 0.1452428,0.34448 0.3214064,0.6644 0.5227339,0.96066 l -1.1993431,1.19723 1.5840256,1.56011 1.1964668,-1.19348 c 0.6140517,0.40346 1.3028827,0.68232 2.0233517,0.82331 l 7.19e-4,1.69892 h 2.226848 z m 0.221462,-3.9957 c -1.788948,0.7502 -3.8576,-0.0928 -4.6097055,-1.87438 -0.7521065,-1.78321 0.090598,-3.84627 1.8802645,-4.59604 1.78823,-0.74936 3.856881,0.0929 4.608987,1.87437 0.752106,1.78165 -0.0906,3.84612 -1.879546,4.59605 z"},TASK_TYPE_SERVICE_FILL:{d:"m {mx},{my} c -1.788948,0.7502 -3.8576,-0.0928 -4.6097055,-1.87438 -0.7521065,-1.78321 0.090598,-3.84627 1.8802645,-4.59604 1.78823,-0.74936 3.856881,0.0929 4.608987,1.87437 0.752106,1.78165 -0.0906,3.84612 -1.879546,4.59605 z"},TASK_TYPE_BUSINESS_RULE_HEADER:{d:"m {mx},{my} 0,4 20,0 0,-4 z"},TASK_TYPE_BUSINESS_RULE_MAIN:{d:"m {mx},{my} 0,12 20,0 0,-12 zm 0,8 l 20,0 m -13,-4 l 0,8"},MESSAGE_FLOW_MARKER:{d:"m {mx},{my} m -10.5 ,-7 l 0,14 l 21,0 l 0,-14 z l 10.5,6 l 10.5,-6"}},this.getRawPath=function(e){return this.pathMap[e].d},this.getScaledPath=function(e,t){var n,i,r=this.pathMap[e];t.abspos?(n=t.abspos.x,i=t.abspos.y):(n=t.containerWidth*t.position.mx,i=t.containerHeight*t.position.my);var o={};if(t.position){for(var a=t.containerHeight/r.height*t.yScaleFactor,s=t.containerWidth/r.width*t.xScaleFactor,l=0;l<r.heightElements.length;l++)o["y"+l]=r.heightElements[l]*a;for(var p=0;p<r.widthElements.length;p++)o["x"+p]=r.widthElements[p]*s}var c,u,f=(c=r.d,u={mx:n,my:i,e:o},String(c).replace(Ut,(function(e,t){return function(e,t,n){var i=n;return t.replace(qt,(function(e,t,n,r,o){t=t||r,i&&(t in i&&(i=i[t]),"function"==typeof i&&o&&(i=i()))})),i=(null==i||i==n?e:i)+""}(e,t,u)})));return f}}]};var Xt={translate:["value",function(e,t){return t=t||{},e.replace(/{([^}]+)}/g,(function(e,n){return t[n]||"{"+n+"}"}))}]};function Zt(e){return{top:e.y,right:e.x+(e.width||0),bottom:e.y+(e.height||0),left:e.x}}function Jt(e){return t={x:e.x+(e.width||0)/2,y:e.y+(e.height||0)/2},{x:Math.round(t.x),y:Math.round(t.y)};var t}function Qt(e){for(var t=e.waypoints,n=t.reduce((function(e,n,i){var r,o,a=t[i-1];if(a){var s=e[e.length-1],l=s&&s.endLength||0,p=(r=a,o=n,Math.sqrt(Math.pow(r.x-o.x,2)+Math.pow(r.y-o.y,2)));e.push({start:a,end:n,startLength:l,endLength:l+p,length:p})}return e}),[]),i=n.reduce((function(e,t){return e+t.length}),0)/2,r=0,o=n[r];o.endLength<i;)o=n[++r];var a=(i-o.startLength)/o.length;return{x:o.start.x+(o.end.x-o.start.x)*a,y:o.start.y+(o.end.y-o.start.y)*a}}function en(e){return _(t=e)&&R(t,"waypoints")?Qt(e):Jt(e);var t}function tn(e){return e?"<"+e.$type+(e.id?' id="'+e.id:"")+'" />':"<null>"}function nn(e,t,n){return u({id:e.id,type:e.$type,businessObject:e,di:t},n)}function rn(e,t,n){var i=e.waypoint;return!i||i.length<2?[en(t),en(n)]:i.map((function(e){return{x:e.x,y:e.y}}))}function on(e,t,n){return new Error(`element ${tn(t)} referenced by ${tn(e)}#${n} not yet drawn`)}function an(e,t,n,i,r){this._eventBus=e,this._canvas=t,this._elementFactory=n,this._elementRegistry=i,this._textRenderer=r}an.$inject=["eventBus","canvas","elementFactory","elementRegistry","textRenderer"],an.prototype.add=function(e,t,n){var i,r,o,a,s,l,p;if(m(t,"bpmndi:BPMNPlane")){var c=m(e,"bpmn:SubProcess")?{id:e.id+"_plane"}:{};i=this._elementFactory.createRoot(nn(e,t,c)),this._canvas.addRootElement(i)}else if(m(t,"bpmndi:BPMNShape")){var u=!g(e,t),f=function(e){return m(e,"bpmn:Group")}(e);r=n&&(n.hidden||n.collapsed);var h=t.bounds;i=this._elementFactory.createShape(nn(e,t,{collapsed:u,hidden:r,x:Math.round(h.x),y:Math.round(h.y),width:Math.round(h.width),height:Math.round(h.height),isFrame:f})),m(e,"bpmn:BoundaryEvent")&&this._attachBoundary(e,i),m(e,"bpmn:Lane")&&(o=0),m(e,"bpmn:DataStoreReference")&&(a=n,s=en(h),l=s.x,p=s.y,l>=a.x&&l<=a.x+a.width&&p>=a.y&&p<=a.y+a.height||(n=this._canvas.findRoot(n))),this._canvas.addShape(i,n,o)}else{if(!m(t,"bpmndi:BPMNEdge"))throw new Error(`unknown di ${tn(t)} for element ${tn(e)}`);var d=this._getSource(e),y=this._getTarget(e);r=n&&(n.hidden||n.collapsed),i=this._elementFactory.createConnection(nn(e,t,{hidden:r,source:d,target:y,waypoints:rn(t,d,y)})),m(e,"bpmn:DataAssociation")&&(n=this._canvas.findRoot(n)),this._canvas.addConnection(i,n,o)}return function(e){return m(e,"bpmn:Event")||m(e,"bpmn:Gateway")||m(e,"bpmn:DataStoreReference")||m(e,"bpmn:DataObjectReference")||m(e,"bpmn:DataInput")||m(e,"bpmn:DataOutput")||m(e,"bpmn:SequenceFlow")||m(e,"bpmn:MessageFlow")||m(e,"bpmn:Group")}(e)&&z(i)&&this.addLabel(e,t,i),this._eventBus.fire("bpmnElement.added",{element:i}),i},an.prototype._attachBoundary=function(e,t){var n=e.attachedToRef;if(!n)throw new Error(`missing ${tn(e)}#attachedToRef`);var i=this._elementRegistry.get(n.id),r=i&&i.attachers;if(!i)throw on(e,n,"attachedToRef");t.host=i,r||(i.attachers=r=[]),-1===r.indexOf(t)&&r.push(t)},an.prototype.addLabel=function(e,t,n){var i,r,o;return i=$(t,n),(r=z(n))&&(i=this._textRenderer.getExternalLabelBounds(i,r)),o=this._elementFactory.createLabel(nn(e,t,{id:e.id+"_label",labelTarget:n,type:"label",hidden:n.hidden||!z(n),x:Math.round(i.x),y:Math.round(i.y),width:Math.round(i.width),height:Math.round(i.height)})),this._canvas.addShape(o,n.parent)},an.prototype._getConnectedElement=function(e,t){var n,i,r=e.$type;if(i=e[t+"Ref"],"source"===t&&"bpmn:DataInputAssociation"===r&&(i=i&&i[0]),("source"===t&&"bpmn:DataOutputAssociation"===r||"target"===t&&"bpmn:DataInputAssociation"===r)&&(i=e.$parent),n=i&&this._getElement(i))return n;throw i?on(e,i,t+"Ref"):new Error(`${tn(e)}#${t} Ref not specified`)},an.prototype._getSource=function(e){return this._getConnectedElement(e,"source")},an.prototype._getTarget=function(e){return this._getConnectedElement(e,"target")},an.prototype._getElement=function(e){return this._elementRegistry.get(e.id)};var sn={__depends__:[Yt,{__depends__:[Xt],bpmnImporter:["type",an]}]};function ln(e,t){var n,i,r,o;return t=!!t,E(e)||(e=[e]),P(e,(function(e){var a=e;e.waypoints&&!t&&(a=ln(e.waypoints,!0));var s=a.x,l=a.y,p=a.height||0,c=a.width||0;(s<n||void 0===n)&&(n=s),(l<i||void 0===i)&&(i=l),(s+c>r||void 0===r)&&(r=s+c),(l+p>o||void 0===o)&&(o=l+p)})),{x:n,y:i,height:o-i,width:r-n}}function pn(e){return"waypoints"in e?"connection":"x"in e?"shape":"root"}function cn(e){return!(!e||!e.isFrame)}function un(e){this._counter=0,this._prefix=(e?e+"-":"")+Math.floor(1e9*Math.random())+"-"}un.prototype.next=function(){return this._prefix+ ++this._counter};var fn=new un("ov");function hn(e,t,n,i){var r,o;this._eventBus=t,this._canvas=n,this._elementRegistry=i,this._ids=fn,this._overlayDefaults=j({show:null,scale:!0},e&&e.defaults),this._overlays={},this._overlayContainers=[],this._overlayRoot=(r=n.getContainer(),vt(o=Lt('<div class="djs-overlay-container" />'),{position:"absolute",width:0,height:0}),r.insertBefore(o,r.firstChild),o),this._init()}function mn(e,t,n){vt(e,{left:t+"px",top:n+"px"})}function dn(e,t){e.style.display=!1===t?"none":""}function yn(e,t){e.style["transform-origin"]="top left",["","-ms-","-webkit-"].forEach((function(n){e.style[n+"transform"]=t}))}hn.$inject=["config.overlays","eventBus","canvas","elementRegistry"],hn.prototype.get=function(e){if(S(e)&&(e={id:e}),S(e.element)&&(e.element=this._elementRegistry.get(e.element)),e.element){var t=this._getOverlayContainer(e.element,!0);return t?e.type?M(t.overlays,T({type:e.type})):t.overlays.slice():[]}return e.type?M(this._overlays,T({type:e.type})):e.id?this._overlays[e.id]:null},hn.prototype.add=function(e,t,n){if(_(t)&&(n=t,t=null),e.id||(e=this._elementRegistry.get(e)),!n.position)throw new Error("must specifiy overlay position");if(!n.html)throw new Error("must specifiy overlay html");if(!e)throw new Error("invalid element specified");var i=this._ids.next();return n=j({},this._overlayDefaults,n,{id:i,type:t,element:e,html:n.html}),this._addOverlay(n),i},hn.prototype.remove=function(e){var t=this.get(e)||[];E(t)||(t=[t]);var n=this;P(t,(function(e){var t=n._getOverlayContainer(e.element,!0);if(e&&(It(e.html),It(e.htmlContainer),delete e.htmlContainer,delete e.element,delete n._overlays[e.id]),t){var i=t.overlays.indexOf(e);-1!==i&&t.overlays.splice(i,1)}}))},hn.prototype.isShown=function(){return"none"!==this._overlayRoot.style.display},hn.prototype.show=function(){dn(this._overlayRoot)},hn.prototype.hide=function(){dn(this._overlayRoot,!1)},hn.prototype.clear=function(){this._overlays={},this._overlayContainers=[],_t(this._overlayRoot)},hn.prototype._updateOverlayContainer=function(e){var t=e.element,n=e.html,i=t.x,r=t.y;if(t.waypoints){var o=ln(t);i=o.x,r=o.y}mn(n,i,r),bt(e.html,"data-container-id",t.id)},hn.prototype._updateOverlay=function(e){var t,n,i=e.position,r=e.htmlContainer,o=e.element,a=i.left,s=i.top;void 0!==i.right&&(t=o.waypoints?ln(o).width:o.width,a=-1*i.right+t);void 0!==i.bottom&&(n=o.waypoints?ln(o).height:o.height,s=-1*i.bottom+n);mn(r,a||0,s||0),this._updateOverlayVisibilty(e,this._canvas.viewbox())},hn.prototype._createOverlayContainer=function(e){var t=Lt('<div class="djs-overlays" />');vt(t,{position:"absolute"}),this._overlayRoot.appendChild(t);var n={html:t,element:e,overlays:[]};return this._updateOverlayContainer(n),this._overlayContainers.push(n),n},hn.prototype._updateRoot=function(e){var t=e.scale||1,n="matrix("+[t,0,0,t,-1*e.x*t,-1*e.y*t].join(",")+")";yn(this._overlayRoot,n)},hn.prototype._getOverlayContainer=function(e,t){var n=C(this._overlayContainers,(function(t){return t.element===e}));return n||t?n:this._createOverlayContainer(e)},hn.prototype._addOverlay=function(e){var t,n,i=e.id,r=e.element,o=e.html;o.get&&o.constructor.prototype.jquery&&(o=o.get(0)),S(o)&&(o=Lt(o)),n=this._getOverlayContainer(r),vt(t=Lt('<div class="djs-overlay" data-overlay-id="'+i+'">'),{position:"absolute"}),t.appendChild(o),e.type&&wt(t).add("djs-overlay-"+e.type),dn(t,this._canvas.findRoot(r)===this._canvas.getRootElement()),e.htmlContainer=t,n.overlays.push(e),n.html.appendChild(t),this._overlays[i]=e,this._updateOverlay(e),this._updateOverlayVisibilty(e,this._canvas.viewbox())},hn.prototype._updateOverlayVisibilty=function(e,t){var n=e.show,i=this._canvas.findRoot(e.element),r=n&&n.minZoom,o=n&&n.maxZoom,a=e.htmlContainer,s=!0;(i!==this._canvas.getRootElement()||n&&(w(r)&&r>t.scale||w(o)&&o<t.scale))&&(s=!1),dn(a,s),this._updateOverlayScale(e,t)},hn.prototype._updateOverlayScale=function(e,t){var n,i,r,o=e.scale,a=e.htmlContainer,s="";!0!==o&&(!1===o?(n=1,i=1):(n=o.min,i=o.max),w(n)&&t.scale<n&&(r=(1/t.scale||1)*n),w(i)&&t.scale>i&&(r=(1/t.scale||1)*i)),w(r)&&(s="scale("+r+","+r+")"),yn(a,s)},hn.prototype._updateOverlaysVisibilty=function(e){var t=this;P(this._overlays,(function(n){t._updateOverlayVisibilty(n,e)}))},hn.prototype._init=function(){var e=this._eventBus,t=this;e.on("canvas.viewbox.changing",(function(e){t.hide()})),e.on("canvas.viewbox.changed",(function(e){var n;n=e.viewbox,t._updateRoot(n),t._updateOverlaysVisibilty(n),t.show()})),e.on(["shape.remove","connection.remove"],(function(e){var n=e.element;P(t.get({element:n}),(function(e){t.remove(e.id)}));var i=t._getOverlayContainer(n);if(i){It(i.html);var r=t._overlayContainers.indexOf(i);-1!==r&&t._overlayContainers.splice(r,1)}})),e.on("element.changed",500,(function(e){var n=e.element,i=t._getOverlayContainer(n,!0);i&&(P(i.overlays,(function(e){t._updateOverlay(e)})),t._updateOverlayContainer(i))})),e.on("element.marker.update",(function(e){var n=t._getOverlayContainer(e.element,!0);n&&wt(n.html)[e.add?"add":"remove"](e.marker)})),e.on("root.set",(function(){t._updateOverlaysVisibilty(t._canvas.viewbox())})),e.on("diagram.clear",this.clear,this)};var gn={__init__:["overlays"],overlays:["type",hn]};function vn(e,t,n,i){e.on("element.changed",(function(i){var r=i.element;(r.parent||r===t.getRootElement())&&(i.gfx=n.getGraphics(r)),i.gfx&&e.fire(pn(r)+".changed",i)})),e.on("elements.changed",(function(t){var n=t.elements;n.forEach((function(t){e.fire("element.changed",{element:t})})),i.updateContainments(n)})),e.on("shape.changed",(function(e){i.update("shape",e.element,e.gfx)})),e.on("connection.changed",(function(e){i.update("connection",e.element,e.gfx)}))}vn.$inject=["eventBus","canvas","elementRegistry","graphicsFactory"];var bn={__init__:["changeSupport"],changeSupport:["type",vn]};function xn(e){this._eventBus=e}function wn(e){return function(t,n,i,r,o){(k(t)||A(t))&&(o=r,r=i,i=n,n=t,t=null),this.on(t,e,n,i,r,o)}}function En(e,t){t.invoke(xn,this),this.executed((function(t){var n=t.context;n.rootElement?e.setRootElement(n.rootElement):n.rootElement=e.getRootElement()})),this.revert((function(t){var n=t.context;n.rootElement&&e.setRootElement(n.rootElement)}))}xn.$inject=["eventBus"],xn.prototype.on=function(e,t,n,i,r,o){if((k(t)||A(t))&&(o=r,r=i,i=n,n=t,t=null),k(n)&&(o=r,r=i,i=n,n=1e3),_(r)&&(o=r,r=!1),!k(i))throw new Error("handlerFn must be a function");E(e)||(e=[e]);var a=this._eventBus;P(e,(function(e){var s=["commandStack",e,t].filter((function(e){return e})).join(".");a.on(s,n,r?function(e,t){return function(n){return e.call(t||null,n.context,n.command,n)}}(i,o):i,o)}))},xn.prototype.canExecute=wn("canExecute"),xn.prototype.preExecute=wn("preExecute"),xn.prototype.preExecuted=wn("preExecuted"),xn.prototype.execute=wn("execute"),xn.prototype.executed=wn("executed"),xn.prototype.postExecute=wn("postExecute"),xn.prototype.postExecuted=wn("postExecuted"),xn.prototype.revert=wn("revert"),xn.prototype.reverted=wn("reverted"),e(En,xn),En.$inject=["canvas","injector"];var _n={__init__:["rootElementsBehavior"],rootElementsBehavior:["type",En]},An={"&":"&","<":"<",">":">",'"':""","'":"'"};var kn="_plane";function Sn(e){var t=e.id;return m(e,"bpmn:SubProcess")?function(e){return e+kn}(t):t}function Rn(e,t,n){var i=tt('<ul class="bjs-breadcrumbs"></ul>'),r=n.getContainer(),a=We(r);r.appendChild(i);var s=[];function l(e){e&&(s=function(e){for(var t=d(e),n=[],i=t;i;i=i.$parent)(m(i,"bpmn:SubProcess")||m(i,"bpmn:Process"))&&n.push(i);return n.reverse()}(e));var r=s.flatMap((function(e){var i=n.findRoot(Sn(e))||n.findRoot(e.id);if(!i&&m(e,"bpmn:Process")){var r=t.find((function(t){var n=d(t);return n&&n.get("processRef")===e}));i=r&&n.findRoot(r.id)}if(!i)return[];var o,a=(o=""+(o=e.name||e.id))&&o.replace(/[&<>"']/g,(function(e){return An[e]})),s=tt('<li><span class="bjs-crumb"><a title="'+a+'">'+a+"</a></span></li>");return s.addEventListener("click",(function(){n.setRootElement(i)})),s}));i.innerHTML="";var o=r.length>1;a.toggle("bjs-breadcrumbs-shown",o),r.forEach((function(e){i.appendChild(e)}))}e.on("element.changed",(function(e){var t=d(e.element);o(s,(function(e){return e===t}))&&l()})),e.on("root.set",(function(e){l(e.element)}))}function Cn(e,t){var n=null,i=new Mn;e.on("root.set",(function(e){var r=e.element,o=t.viewbox(),a=i.get(r);if(i.set(n,{x:o.x,y:o.y,zoom:o.scale}),n=r,m(r,"bpmn:SubProcess")||a){a=a||{x:0,y:0,zoom:1};var s=(o.x-a.x)*o.scale,l=(o.y-a.y)*o.scale;0===s&&0===l||t.scroll({dx:s,dy:l}),a.zoom!==o.scale&&t.zoom(a.zoom,{x:0,y:0})}})),e.on("diagram.clear",(function(){i.clear(),n=null}))}function Mn(){this._entries=[],this.set=function(e,t){var n=!1;for(var i in this._entries)if(this._entries[i][0]===e){this._entries[i][1]=t,n=!0;break}n||this._entries.push([e,t])},this.get=function(e){for(var t in this._entries)if(this._entries[t][0]===e)return this._entries[t][1];return null},this.clear=function(){this._entries.length=0},this.remove=function(e){var t=-1;for(var n in this._entries)if(this._entries[n][0]===e){t=n;break}-1!==t&&this._entries.splice(t,1)}}Rn.$inject=["eventBus","elementRegistry","canvas"],Cn.$inject=["eventBus","canvas"];var Pn=180,Dn=160;function Nn(e,t){this._eventBus=e,this._moddle=t;var n=this;e.on("import.render.start",1500,(function(e,t){n._handleImport(t.definitions)}))}function Tn(e){return m(e,"bpmndi:BPMNDiagram")?e:Tn(e.$parent)}Nn.prototype._handleImport=function(e){if(e.diagrams){var t=this;this._definitions=e,this._processToDiagramMap={},e.diagrams.forEach((function(e){e.plane&&e.plane.bpmnElement&&(t._processToDiagramMap[e.plane.bpmnElement.id]=e)})),e.diagrams.filter((e=>e.plane)).flatMap((e=>t._createNewDiagrams(e.plane))).forEach((function(e){t._movePlaneElementsToOrigin(e.plane)}))}},Nn.prototype._createNewDiagrams=function(e){var t=this,n=[],i=[];e.get("planeElement").forEach((function(t){var r=t.bpmnElement;if(r){var o=r.$parent;m(r,"bpmn:SubProcess")&&!t.isExpanded&&n.push(r),function(e,t){var n=e.$parent;if(!m(n,"bpmn:SubProcess")||n===t.bpmnElement)return!1;if(function(e,t){return s(t,(function(t){return m(e,t)}))}(e,["bpmn:DataInputAssociation","bpmn:DataOutputAssociation"]))return!1;return!0}(r,e)&&i.push({diElement:t,parent:o})}}));var r=[];return n.forEach((function(e){if(!t._processToDiagramMap[e.id]){var n=t._createDiagram(e);t._processToDiagramMap[e.id]=n,r.push(n)}})),i.forEach((function(e){for(var i=e.diElement,r=e.parent;r&&-1===n.indexOf(r);)r=r.$parent;if(r){var o=t._processToDiagramMap[r.id];t._moveToDiPlane(i,o.plane)}})),r},Nn.prototype._movePlaneElementsToOrigin=function(e){var t=e.get("planeElement"),n=function(e){var t={top:1/0,right:-1/0,bottom:-1/0,left:1/0};return e.planeElement.forEach((function(e){if(e.bounds){var n=Zt(e.bounds);t.top=Math.min(n.top,t.top),t.left=Math.min(n.left,t.left)}})),function(e){return{x:e.left,y:e.top,width:e.right-e.left,height:e.bottom-e.top}}(t)}(e),i=n.x-Pn,r=n.y-Dn;t.forEach((function(e){e.waypoint?e.waypoint.forEach((function(e){e.x=e.x-i,e.y=e.y-r})):e.bounds&&(e.bounds.x=e.bounds.x-i,e.bounds.y=e.bounds.y-r)}))},Nn.prototype._moveToDiPlane=function(e,t){var n=Tn(e).plane.get("planeElement");n.splice(n.indexOf(e),1),t.get("planeElement").push(e)},Nn.prototype._createDiagram=function(e){var t=this._moddle.create("bpmndi:BPMNPlane",{bpmnElement:e}),n=this._moddle.create("bpmndi:BPMNDiagram",{plane:t});return t.$parent=n,t.bpmnElement=e,n.$parent=this._definitions,this._definitions.diagrams.push(n),n},Nn.$inject=["eventBus","moddle"];var On=250;function Bn(e,t,n,i,r){xn.call(this,t),this._canvas=e,this._eventBus=t,this._elementRegistry=n,this._overlays=i,this._translate=r;var o=this;this.executed("shape.toggleCollapse",On,(function(e){var t=e.shape;o._canDrillDown(t)?o._addOverlay(t):o._removeOverlay(t)}),!0),this.reverted("shape.toggleCollapse",On,(function(e){var t=e.shape;o._canDrillDown(t)?o._addOverlay(t):o._removeOverlay(t)}),!0),this.executed(["shape.create","shape.move","shape.delete"],On,(function(e){var t=e.oldParent,n=e.newParent||e.parent,i=e.shape;o._canDrillDown(i)&&o._addOverlay(i),o._updateDrilldownOverlay(t),o._updateDrilldownOverlay(n),o._updateDrilldownOverlay(i)}),!0),this.reverted(["shape.create","shape.move","shape.delete"],On,(function(e){var t=e.oldParent,n=e.newParent||e.parent,i=e.shape;o._canDrillDown(i)&&o._addOverlay(i),o._updateDrilldownOverlay(t),o._updateDrilldownOverlay(n),o._updateDrilldownOverlay(i)}),!0),t.on("import.render.complete",(function(){n.filter((function(e){return o._canDrillDown(e)})).map((function(e){o._addOverlay(e)}))}))}e(Bn,xn),Bn.prototype._updateDrilldownOverlay=function(e){var t=this._canvas;if(e){var n=t.findRoot(e);n&&this._updateOverlayVisibility(n)}},Bn.prototype._canDrillDown=function(e){var t=this._canvas;return m(e,"bpmn:SubProcess")&&t.findRoot(Sn(e))},Bn.prototype._updateOverlayVisibility=function(e){var t=this._overlays,n=d(e),i=t.get({element:n.id,type:"drilldown"})[0];if(i){var r=n&&n.get("flowElements")&&n.get("flowElements").length;We(i.html).toggle("bjs-drilldown-empty",!r)}},Bn.prototype._addOverlay=function(e){var t=this._canvas,n=this._overlays,i=d(e);n.get({element:e,type:"drilldown"}).length&&this._removeOverlay(e);var r=tt('<button type="button" class="bjs-drilldown"><svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 16 16"><path fill-rule="evenodd" d="M4.81801948,3.50735931 L10.4996894,9.1896894 L10.5,4 L12,4 L12,12 L4,12 L4,10.5 L9.6896894,10.4996894 L3.75735931,4.56801948 C3.46446609,4.27512627 3.46446609,3.80025253 3.75735931,3.50735931 C4.05025253,3.21446609 4.52512627,3.21446609 4.81801948,3.50735931 Z"/></svg></button>'),o=i.get("name")||i.get("id"),a=this._translate("Open {element}",{element:o});r.setAttribute("title",a),r.addEventListener("click",(function(){t.setRootElement(t.findRoot(Sn(e)))})),n.add(e,"drilldown",{position:{bottom:-7,right:-8},html:r}),this._updateOverlayVisibility(e)},Bn.prototype._removeOverlay=function(e){this._overlays.remove({element:e,type:"drilldown"})},Bn.$inject=["canvas","eventBus","elementRegistry","overlays","translate"];var Ln={__depends__:[gn,bn,_n],__init__:["drilldownBreadcrumbs","drilldownOverlayBehavior","drilldownCentering","subprocessCompatibility"],drilldownBreadcrumbs:["type",Rn],drilldownCentering:["type",Cn],drilldownOverlayBehavior:["type",Bn],subprocessCompatibility:["type",Nn]};function In(e){return e.originalEvent||e.srcEvent}function jn(e,t){return(In(e)||e).button===t}function Fn(e){return jn(e,0)}function Vn(e){return!0}function Wn(e){return Fn(e)||function(e){return jn(e,1)}(e)}function $n(e,t,n){var i=this;function r(n,i,r){var o,a;(function(e,t){var n=l[e]||Fn;return!n(t)})(n,i)||(r?a=t.getGraphics(r):(o=i.delegateTarget||i.target)&&(a=o,r=t.get(a)),a&&r&&!1===e.fire(n,{element:r,gfx:a,originalEvent:i})&&(i.stopPropagation(),i.preventDefault()))}var o={};function a(e){return o[e]}var s={click:"element.click",contextmenu:"element.contextmenu",dblclick:"element.dblclick",mousedown:"element.mousedown",mousemove:"element.mousemove",mouseover:"element.hover",mouseout:"element.out",mouseup:"element.mouseup"},l={"element.contextmenu":Vn,"element.mousedown":Wn,"element.mouseup":Wn,"element.click":Wn,"element.dblclick":Wn};var p="svg, .djs-element";function c(e,t,n,i){var a=o[n]=function(e){r(n,e)};i&&(l[n]=i),a.$delegate=Nt.bind(e,p,t,a)}function u(e,t,n){var i=a(n);i&&Nt.unbind(e,t,i.$delegate)}e.on("canvas.destroy",(function(e){var t;t=e.svg,P(s,(function(e,n){u(t,n,e)}))})),e.on("canvas.init",(function(e){var t;t=e.svg,P(s,(function(e,n){c(t,n,e)}))})),e.on(["shape.added","connection.added"],(function(t){var n=t.element,i=t.gfx;e.fire("interactionEvents.createHit",{element:n,gfx:i})})),e.on(["shape.changed","connection.changed"],500,(function(t){var n=t.element,i=t.gfx;e.fire("interactionEvents.updateHit",{element:n,gfx:i})})),e.on("interactionEvents.createHit",500,(function(e){var t=e.element,n=e.gfx;i.createDefaultHit(t,n)})),e.on("interactionEvents.updateHit",(function(e){var t=e.element,n=e.gfx;i.updateDefaultHit(t,n)}));var f=d("djs-hit djs-hit-stroke"),h=d("djs-hit djs-hit-click-stroke"),m={all:d("djs-hit djs-hit-all"),"click-stroke":h,stroke:f,"no-move":d("djs-hit djs-hit-no-move")};function d(e,t){return t=j({stroke:"white",strokeWidth:15},t||{}),n.cls(e,["no-fill","no-border"],t)}function y(e,t){var n=m[t];if(!n)throw new Error("invalid hit type <"+t+">");return q(e,n),e}function g(e,t){G(e,t)}this.removeHits=function(e){var t;P((t=".djs-hit",(e||document).querySelectorAll(t)),fe)},this.createDefaultHit=function(e,t){var n,i=e.waypoints,r=e.isFrame;return i?this.createWaypointsHit(t,i):(n=r?"stroke":"all",this.createBoxHit(t,n,{width:e.width,height:e.height}))},this.createWaypointsHit=function(e,t){var n=xe(t);return y(n,"stroke"),g(e,n),n},this.createBoxHit=function(e,t,n){n=j({x:0,y:0},n);var i=te("rect");return y(i,t),q(i,n),g(e,i),i},this.updateDefaultHit=function(e,t){var n,i=(n=".djs-hit",(t||document).querySelector(n));if(i)return e.waypoints?we(i,e.waypoints):q(i,{width:e.width,height:e.height}),i},this.fire=r,this.triggerMouseEvent=function(e,t,n){var i=s[e];if(!i)throw new Error("unmapped DOM event name <"+e+">");return r(i,t,n)},this.mouseHandler=a,this.registerEvent=c,this.unregisterEvent=u}$n.$inject=["eventBus","elementRegistry","styles"];var zn={__init__:["interactionEvents"],interactionEvents:["type",$n]};function Gn(e,t){this._eventBus=e,this._canvas=t,this._selectedElements=[];var n=this;e.on(["shape.remove","connection.remove"],(function(e){var t=e.element;n.deselect(t)})),e.on(["diagram.clear","root.set"],(function(e){n.select(null)}))}Gn.$inject=["eventBus","canvas"],Gn.prototype.deselect=function(e){var t=this._selectedElements,n=t.indexOf(e);if(-1!==n){var i=t.slice();t.splice(n,1),this._eventBus.fire("selection.changed",{oldSelection:i,newSelection:t})}},Gn.prototype.get=function(){return this._selectedElements},Gn.prototype.isSelected=function(e){return-1!==this._selectedElements.indexOf(e)},Gn.prototype.select=function(e,t){var n=this._selectedElements,i=n.slice();E(e)||(e=e?[e]:[]);var r=this._canvas,o=r.getRootElement();e=e.filter((function(e){var t=r.findRoot(e);return o===t})),t?P(e,(function(e){-1===n.indexOf(e)&&n.push(e)})):this._selectedElements=n=e.slice(),this._eventBus.fire("selection.changed",{oldSelection:i,newSelection:n})};var Hn="hover",Kn="selected";function Un(e,t){function n(t,n){e.addMarker(t,n)}function i(t,n){e.removeMarker(t,n)}this._canvas=e,t.on("element.hover",(function(e){n(e.element,Hn)})),t.on("element.out",(function(e){i(e.element,Hn)})),t.on("selection.changed",(function(e){var t=e.oldSelection,r=e.newSelection;P(t,(function(e){-1===r.indexOf(e)&&i(e,Kn)})),P(r,(function(e){-1===t.indexOf(e)&&n(e,Kn)}))}))}function qn(e,t,n,i){e.on("create.end",500,(function(e){var n=e.context,i=n.canExecute,r=n.elements,o=(n.hints||{}).autoSelect;if(i){if(!1===o)return;E(o)?t.select(o):t.select(r.filter(Yn))}})),e.on("connect.end",500,(function(e){var n=e.context.connection;n&&t.select(n)})),e.on("shape.move.end",500,(function(e){var n=e.previousSelection||[],r=i.get(e.context.shape.id);C(n,(function(e){return r.id===e.id}))||t.select(r)})),e.on("element.click",(function(e){if(Fn(e)){var i=e.element;i===n.getRootElement()&&(i=null);var r=t.isSelected(i),o=t.get().length>1,a=function(e){var t=In(e)||e;return Fn(e)&&t.shiftKey}(e);if(r&&o)return a?t.deselect(i):t.select(i);r?t.deselect(i):t.select(i,a)}}))}function Yn(e){return!e.hidden}Un.$inject=["canvas","eventBus"],qn.$inject=["eventBus","selection","canvas","elementRegistry"];var Xn={__init__:["selectionVisuals","selectionBehavior"],__depends__:[zn],selection:["type",Gn],selectionVisuals:["type",Un],selectionBehavior:["type",qn]};const Zn=/^class[ {]/;function Jn(e){return Array.isArray(e)}function Qn(e,t){return Object.prototype.hasOwnProperty.call(e,t)}function ei(...e){1===e.length&&Jn(e[0])&&(e=e[0]);const t=(e=[...e]).pop();return t.$inject=e,t}const ti=/constructor\s*[^(]*\(\s*([^)]*)\)/m,ni=/^(?:async\s+)?(?:function\s*[^(]*)?(?:\(\s*([^)]*)\)|(\w+))/m,ii=/\/\*([^*]*)\*\//m;function ri(e){if("function"!=typeof e)throw new Error(`Cannot annotate "${e}". Expected a function!`);const t=e.toString().match(function(e){return Zn.test(e.toString())}(e)?ti:ni);if(!t)return[];const n=t[1]||t[2];return n&&n.split(",").map((e=>{const t=e.match(ii);return(t&&t[1]||e).trim()}))||[]}function oi(e,t){const n=t||{get:function(e,t){if(i.push(e),!1===t)return null;throw s(`No provider for "${e}"!`)}},i=[],r=this._providers=Object.create(n._providers||null),o=this._instances=Object.create(null),a=o.injector=this,s=function(e){const t=i.join(" -> ");return i.length=0,new Error(t?`${e} (Resolving: ${t})`:e)};function l(e,t){if(!r[e]&&e.includes(".")){const t=e.split(".");let n=l(t.shift());for(;t.length;)n=n[t.shift()];return n}if(Qn(o,e))return o[e];if(Qn(r,e)){if(-1!==i.indexOf(e))throw i.push(e),s("Cannot resolve circular dependency!");return i.push(e),o[e]=r[e][0](r[e][1]),i.pop(),o[e]}return n.get(e,t)}function p(e,t){if(void 0===t&&(t={}),"function"!=typeof e){if(!Jn(e))throw s(`Cannot invoke "${e}". Expected a function!`);e=ei(e.slice())}return{fn:e,dependencies:(e.$inject||ri(e)).map((e=>Qn(t,e)?t[e]:l(e)))}}function c(e){const{fn:t,dependencies:n}=p(e);return new(Function.prototype.bind.call(t,null,...n))}function u(e,t,n){const{fn:i,dependencies:r}=p(e,n);return i.apply(t,r)}function f(e){return ei((t=>e.get(t)))}function h(e,t){if(t&&t.length){const n=Object.create(null),i=Object.create(null),o=[],a=[],s=[];let l,p,c,u;for(let e in r)l=r[e],-1!==t.indexOf(e)&&("private"===l[2]?(p=o.indexOf(l[3]),-1===p?(c=l[3].createChild([],t),u=f(c),o.push(l[3]),a.push(c),s.push(u),n[e]=[u,e,"private",c]):n[e]=[s[p],e,"private",a[p]]):n[e]=[l[2],l[1]],i[e]=!0),"factory"!==l[2]&&"type"!==l[2]||!l[1].$scope||t.forEach((t=>{-1!==l[1].$scope.indexOf(t)&&(n[e]=[l[2],l[1]],i[t]=!0)}));t.forEach((e=>{if(!i[e])throw new Error('No provider for "'+e+'". Cannot use provider from the parent!')})),e.unshift(n)}return new oi(e,a)}const m={factory:u,type:c,value:function(e){return e}};function d(e,t){const n=e.__init__||[];return function(){n.forEach((e=>{"string"==typeof e?t.get(e):t.invoke(e)}))}}function y(e){const t=e.__exports__;if(t){const n=e.__modules__,i=Object.keys(e).reduce(((t,n)=>("__exports__"!==n&&"__modules__"!==n&&"__init__"!==n&&"__depends__"!==n&&(t[n]=e[n]),t)),Object.create(null)),o=h((n||[]).concat(i)),a=ei((function(e){return o.get(e)}));t.forEach((function(e){r[e]=[a,e,"private",o]}));const s=(e.__init__||[]).slice();return s.unshift((function(){o.init()})),d(e=Object.assign({},e,{__init__:s}),o)}return Object.keys(e).forEach((function(t){if("__init__"===t||"__depends__"===t)return;const n=e[t];if("private"===n[2])return void(r[t]=n);const i=n[0],o=n[1];r[t]=[m[i],ai(i,o),i]})),d(e,a)}function g(e,t){return-1!==e.indexOf(t)||-1!==(e=(t.__depends__||[]).reduce(g,e)).indexOf(t)?e:e.concat(t)}this.get=l,this.invoke=u,this.instantiate=c,this.createChild=h,this.init=function(e){const t=e.reduce(g,[]).map(y);let n=!1;return function(){n||(n=!0,t.forEach((e=>e())))}}(e)}function ai(e,t){return"value"!==e&&Jn(t)&&(t=ei(t.slice())),t}function si(e,t){h.call(this,e,1),this.CONNECTION_STYLE=t.style(["no-fill"],{strokeWidth:5,stroke:"fuchsia"}),this.SHAPE_STYLE=t.style({fill:"white",stroke:"fuchsia",strokeWidth:2}),this.FRAME_STYLE=t.style(["no-fill"],{stroke:"fuchsia",strokeDasharray:4,strokeWidth:2})}e(si,h),si.prototype.canRender=function(){return!0},si.prototype.drawShape=function(e,t,n){var i=te("rect");return q(i,{x:0,y:0,width:t.width||0,height:t.height||0}),cn(t)?q(i,j({},this.FRAME_STYLE,n||{})):q(i,j({},this.SHAPE_STYLE,n||{})),G(e,i),i},si.prototype.drawConnection=function(e,t,n){var i=xe(t.waypoints,j({},this.CONNECTION_STYLE,n||{}));return G(e,i),i},si.prototype.getShapePath=function(e){var t=e.x,n=e.y,i=e.width;return de([["M",t,n],["l",i,0],["l",0,e.height],["l",-i,0],["z"]])},si.prototype.getConnectionPath=function(e){var t,n,i=e.waypoints,r=[];for(t=0;n=i[t];t++)n=n.original||n,r.push([0===t?"M":"L",n.x,n.y]);return de(r)},si.$inject=["eventBus","styles"];var li={__init__:["defaultRenderer"],defaultRenderer:["type",si],styles:["type",function(){var e={"no-fill":{fill:"none"},"no-border":{strokeOpacity:0},"no-events":{pointerEvents:"none"}},t=this;this.cls=function(e,t,n){return j(this.style(t,n),{class:e})},this.style=function(t,n){E(t)||n||(n=t,t=[]);var i=D(t,(function(t,n){return j(t,e[n]||{})}),{});return n?j(i,n):i},this.computeStyle=function(e,n,i){return E(n)||(i=n,n=[]),t.style(n||[],j({},i,e||{}))}}]};function pi(e,t){return Math.round(e*t)/t}function ci(e){return A(e)?e+"px":e}function ui(e,t,n){const i=te("g");X(i).add(t);const r=void 0!==n?n:e.childNodes.length-1;return e.insertBefore(i,e.childNodes[r]||null),i}const fi={shape:["x","y","width","height"],connection:["waypoints"]};function hi(e,t,n,i){this._eventBus=t,this._elementRegistry=i,this._graphicsFactory=n,this._rootsIdx=0,this._layers={},this._planes=[],this._rootElement=null,this._focused=!1,this._init(e||{})}function mi(e,t){const n="matrix("+t.a+","+t.b+","+t.c+","+t.d+","+t.e+","+t.f+")";e.setAttribute("transform",n)}hi.$inject=["config.canvas","eventBus","graphicsFactory","elementRegistry"],hi.prototype._init=function(e){const t=this._eventBus,n=this._container=function(e){const t=(e=j({},{width:"100%",height:"100%"},e)).container||document.body,n=document.createElement("div");return n.setAttribute("class","djs-container djs-parent"),vt(n,{position:"relative",overflow:"hidden",width:ci(e.width),height:ci(e.height)}),t.appendChild(n),n}(e),i=this._svg=te("svg");q(i,{width:"100%",height:"100%"}),bt(i,"tabindex",0),e.autoFocus&&t.on("element.hover",(()=>{this.restoreFocus()})),t.on("element.mousedown",500,(e=>{this.focus()})),i.addEventListener("focusin",(()=>{this._setFocused(!0)})),i.addEventListener("focusout",(()=>{this._setFocused(!1)})),G(n,i);const r=this._viewport=ui(i,"viewport");e.deferUpdate&&(this._viewboxChanged=function(e,t){let n,i,r,o;function a(n){let a=Date.now(),p=n?0:o+t-a;if(p>0)return s(p);e.apply(r,i),l()}function s(e){n=setTimeout(a,e)}function l(){n&&clearTimeout(n),n=o=i=r=void 0}function p(...e){o=Date.now(),i=e,r=this,n||s(t)}return p.flush=function(){n&&a(!0),l()},p.cancel=l,p}(I(this._viewboxChanged,this),300)),t.on("diagram.init",(()=>{t.fire("canvas.init",{svg:i,viewport:r})})),t.on(["shape.added","connection.added","shape.removed","connection.removed","elements.changed","root.set"],(()=>{delete this._cachedViewbox})),t.on("diagram.destroy",500,this._destroy,this),t.on("diagram.clear",500,this._clear,this)},hi.prototype._destroy=function(){this._eventBus.fire("canvas.destroy",{svg:this._svg,viewport:this._viewport});const e=this._container.parentNode;e&&e.removeChild(this._container),delete this._svg,delete this._container,delete this._layers,delete this._planes,delete this._rootElement,delete this._viewport},hi.prototype._setFocused=function(e){e!=this._focused&&(this._focused=e,this._eventBus.fire("canvas.focus.changed",{focused:e}))},hi.prototype._clear=function(){this._elementRegistry.getAll().forEach((e=>{const t=pn(e);"root"===t?this.removeRootElement(e):this._removeElement(e,t)})),this._planes=[],this._rootElement=null,delete this._cachedViewbox},hi.prototype.focus=function(){this._svg.focus({preventScroll:!0}),this._setFocused(!0)},hi.prototype.restoreFocus=function(){document.activeElement===document.body&&this.focus()},hi.prototype.isFocused=function(){return this._focused},hi.prototype.getDefaultLayer=function(){return this.getLayer("base",0)},hi.prototype.getLayer=function(e,t){if(!e)throw new Error("must specify a name");let n=this._layers[e];if(n||(n=this._layers[e]=this._createLayer(e,t)),void 0!==t&&n.index!==t)throw new Error("layer <"+e+"> already created at index <"+t+">");return n.group},hi.prototype._getChildIndex=function(e){return D(this._layers,(function(t,n){return n.visible&&e>=n.index&&t++,t}),0)},hi.prototype._createLayer=function(e,t){void 0===t&&(t=1);const n=this._getChildIndex(t);return{group:ui(this._viewport,"layer-"+e,n),index:t,visible:!0}},hi.prototype.showLayer=function(e){if(!e)throw new Error("must specify a name");const t=this._layers[e];if(!t)throw new Error("layer <"+e+"> does not exist");const n=this._viewport,i=t.group,r=t.index;if(t.visible)return i;const o=this._getChildIndex(r);return n.insertBefore(i,n.childNodes[o]||null),t.visible=!0,i},hi.prototype.hideLayer=function(e){if(!e)throw new Error("must specify a name");const t=this._layers[e];if(!t)throw new Error("layer <"+e+"> does not exist");const n=t.group;return t.visible?(fe(n),t.visible=!1,n):n},hi.prototype._removeLayer=function(e){const t=this._layers[e];t&&(delete this._layers[e],fe(t.group))},hi.prototype.getActiveLayer=function(){const e=this._findPlaneForRoot(this.getRootElement());return e?e.layer:null},hi.prototype.findRoot=function(e){if("string"==typeof e&&(e=this._elementRegistry.get(e)),!e)return;const t=this._findPlaneForRoot(function(e){for(;e.parent;)e=e.parent;return e}(e))||{};return t.rootElement},hi.prototype.getRootElements=function(){return this._planes.map((function(e){return e.rootElement}))},hi.prototype._findPlaneForRoot=function(e){return C(this._planes,(function(t){return t.rootElement===e}))},hi.prototype.getContainer=function(){return this._container},hi.prototype._updateMarker=function(e,t,n){let i;e.id||(e=this._elementRegistry.get(e)),e.markers=e.markers||new Set,i=this._elementRegistry._elements[e.id],i&&(P([i.gfx,i.secondaryGfx],(function(i){i&&(n?(e.markers.add(t),X(i).add(t)):(e.markers.delete(t),X(i).remove(t)))})),this._eventBus.fire("element.marker.update",{element:e,gfx:i.gfx,marker:t,add:!!n}))},hi.prototype.addMarker=function(e,t){this._updateMarker(e,t,!0)},hi.prototype.removeMarker=function(e,t){this._updateMarker(e,t,!1)},hi.prototype.hasMarker=function(e,t){return e.id||(e=this._elementRegistry.get(e)),!!e.markers&&e.markers.has(t)},hi.prototype.toggleMarker=function(e,t){this.hasMarker(e,t)?this.removeMarker(e,t):this.addMarker(e,t)},hi.prototype.getRootElement=function(){const e=this._rootElement;return e||this._planes.length?e:this.setRootElement(this.addRootElement(null))},hi.prototype.addRootElement=function(e){const t=this._rootsIdx++;e||(e={id:"__implicitroot_"+t,children:[],isImplicit:!0});const n=e.layer="root-"+t;this._ensureValid("root",e);const i=this.getLayer(n,0);return this.hideLayer(n),this._addRoot(e,i),this._planes.push({rootElement:e,layer:i}),e},hi.prototype.removeRootElement=function(e){"string"==typeof e&&(e=this._elementRegistry.get(e));if(this._findPlaneForRoot(e))return this._removeRoot(e),this._removeLayer(e.layer),this._planes=this._planes.filter((function(t){return t.rootElement!==e})),this._rootElement===e&&(this._rootElement=null),e},hi.prototype.setRootElement=function(e){if(e===this._rootElement)return e;let t;if(!e)throw new Error("rootElement required");return t=this._findPlaneForRoot(e),t||(e=this.addRootElement(e)),this._setRoot(e),e},hi.prototype._removeRoot=function(e){const t=this._elementRegistry,n=this._eventBus;n.fire("root.remove",{element:e}),n.fire("root.removed",{element:e}),t.remove(e)},hi.prototype._addRoot=function(e,t){const n=this._elementRegistry,i=this._eventBus;i.fire("root.add",{element:e}),n.add(e,t),i.fire("root.added",{element:e,gfx:t})},hi.prototype._setRoot=function(e,t){const n=this._rootElement;n&&(this._elementRegistry.updateGraphics(n,null,!0),this.hideLayer(n.layer)),e&&(t||(t=this._findPlaneForRoot(e).layer),this._elementRegistry.updateGraphics(e,this._svg,!0),this.showLayer(e.layer)),this._rootElement=e,this._eventBus.fire("root.set",{element:e})},hi.prototype._ensureValid=function(e,t){if(!t.id)throw new Error("element must have an id");if(this._elementRegistry.get(t.id))throw new Error("element <"+t.id+"> already exists");const n=fi[e],i=N(n,(function(e){return void 0!==t[e]}));if(!i)throw new Error("must supply { "+n.join(", ")+" } with "+e)},hi.prototype._setParent=function(e,t,n){!function(e,t,n){if(e&&t){"number"!=typeof n&&(n=-1);var i=e.indexOf(t);if(-1!==i){if(i===n)return;if(-1===n)return;e.splice(i,1)}-1!==n?e.splice(n,0,t):e.push(t)}}(t.children,e,n),e.parent=t},hi.prototype._addElement=function(e,t,n,i){n=n||this.getRootElement();const r=this._eventBus,o=this._graphicsFactory;this._ensureValid(e,t),r.fire(e+".add",{element:t,parent:n}),this._setParent(t,n,i);const a=o.create(e,t,i);return this._elementRegistry.add(t,a),o.update(e,t,a),r.fire(e+".added",{element:t,gfx:a}),t},hi.prototype.addShape=function(e,t,n){return this._addElement("shape",e,t,n)},hi.prototype.addConnection=function(e,t,n){return this._addElement("connection",e,t,n)},hi.prototype._removeElement=function(e,t){const n=this._elementRegistry,i=this._graphicsFactory,r=this._eventBus;if(e=n.get(e.id||e))return r.fire(t+".remove",{element:e}),i.remove(e),function(e,t){if(!e||!t)return-1;var n=e.indexOf(t);-1!==n&&e.splice(n,1)}(e.parent&&e.parent.children,e),e.parent=null,r.fire(t+".removed",{element:e}),n.remove(e),e},hi.prototype.removeShape=function(e){return this._removeElement(e,"shape")},hi.prototype.removeConnection=function(e){return this._removeElement(e,"connection")},hi.prototype.getGraphics=function(e,t){return this._elementRegistry.getGraphics(e,t)},hi.prototype._changeViewbox=function(e){this._eventBus.fire("canvas.viewbox.changing"),e.apply(this),this._cachedViewbox=null,this._viewboxChanged()},hi.prototype._viewboxChanged=function(){this._eventBus.fire("canvas.viewbox.changed",{viewbox:this.viewbox()})},hi.prototype.viewbox=function(e){if(void 0===e&&this._cachedViewbox)return structuredClone(this._cachedViewbox);const t=this._viewport,n=this.getSize();let i,r,o,a,s,l,p;return e?(this._changeViewbox((function(){s=Math.min(n.width/e.width,n.height/e.height);const i=this._svg.createSVGMatrix().scale(s).translate(-e.x,-e.y);me(t,i)})),e):(o=this._rootElement?this.getActiveLayer():null,i=o&&o.getBBox()||{},a=me(t),r=a?a.matrix:function(e,t,n,i,r,o){var a=ie().createSVGMatrix();switch(arguments.length){case 0:return a;case 1:return re(a,e);case 6:return re(a,{a:e,b:t,c:n,d:i,e:r,f:o})}}(),s=pi(r.a,1e3),l=pi(-r.e||0,1e3),p=pi(-r.f||0,1e3),e=this._cachedViewbox={x:l?l/s:0,y:p?p/s:0,width:n.width/s,height:n.height/s,scale:s,inner:{width:i.width||0,height:i.height||0,x:i.x||0,y:i.y||0},outer:n})},hi.prototype.scroll=function(e){const t=this._viewport;let n=t.getCTM();return e&&this._changeViewbox((function(){e=j({dx:0,dy:0},e||{}),n=this._svg.createSVGMatrix().translate(e.dx,e.dy).multiply(n),mi(t,n)})),{x:n.e,y:n.f}},hi.prototype.scrollToElement=function(e,t){let n=100;"string"==typeof e&&(e=this._elementRegistry.get(e));const i=this.findRoot(e);if(i!==this.getRootElement()&&this.setRootElement(i),i===e)return;t||(t={}),"number"==typeof t&&(n=t),t={top:t.top||n,right:t.right||n,bottom:t.bottom||n,left:t.left||n};const r=ln(e),o=Zt(r),a=this.viewbox(),s=this.zoom();let l,p;a.y+=t.top/s,a.x+=t.left/s,a.width-=(t.right+t.left)/s,a.height-=(t.bottom+t.top)/s;const c=Zt(a);if(r.width<a.width&&r.height<a.height){const e=Math.max(0,o.right-c.right),t=Math.min(0,o.left-c.left),n=Math.max(0,o.bottom-c.bottom),i=Math.min(0,o.top-c.top);l=e||t,p=n||i}else l=r.x-a.x,p=r.y-a.y;this.scroll({dx:-l*s,dy:-p*s})},hi.prototype.zoom=function(e,t){if(!e)return this.viewbox(e).scale;if("fit-viewport"===e)return this._fitViewport(t);let n,i;return this._changeViewbox((function(){"object"!=typeof t&&(n=this.viewbox().outer,t={x:n.width/2,y:n.height/2}),i=this._setZoom(e,t)})),pi(i.a,1e3)},hi.prototype._fitViewport=function(e){const t=this.viewbox(),n=t.outer,i=t.inner;let r,o;return i.x>=0&&i.y>=0&&i.x+i.width<=n.width&&i.y+i.height<=n.height&&!e?o={x:0,y:0,width:Math.max(i.width+i.x,n.width),height:Math.max(i.height+i.y,n.height)}:(r=Math.min(1,n.width/i.width,n.height/i.height),o={x:i.x+(e?i.width/2-n.width/r/2:0),y:i.y+(e?i.height/2-n.height/r/2:0),width:n.width/r,height:n.height/r}),this.viewbox(o),this.viewbox(!1).scale},hi.prototype._setZoom=function(e,t){const n=this._svg,i=this._viewport,r=n.createSVGMatrix(),o=n.createSVGPoint();let a,s,l,p,c;l=i.getCTM();const u=l.a;return t?(a=j(o,t),s=a.matrixTransform(l.inverse()),p=r.translate(s.x,s.y).scale(1/u*e).translate(-s.x,-s.y),c=l.multiply(p)):c=r.scale(e),mi(this._viewport,c),c},hi.prototype.getSize=function(){return{width:this._container.clientWidth,height:this._container.clientHeight}},hi.prototype.getAbsoluteBBox=function(e){const t=this.viewbox();let n;if(e.waypoints){n=this.getGraphics(e).getBBox()}else n=e;return{x:n.x*t.scale-t.x*t.scale,y:n.y*t.scale-t.y*t.scale,width:n.width*t.scale,height:n.height*t.scale}},hi.prototype.resized=function(){delete this._cachedViewbox,this._eventBus.fire("canvas.resized")};var di="data-element-id";function yi(e){this._elements={},this._eventBus=e}function gi(e,t,n){var i=function(e,t,n,i){var r=n.inverse;return Object.defineProperty(e,"remove",{value:function(e){var n=this.indexOf(e);return-1!==n&&(this.splice(n,1),t.unset(e,r,i)),e}}),Object.defineProperty(e,"contains",{value:function(e){return-1!==this.indexOf(e)}}),Object.defineProperty(e,"add",{value:function(e,n){var o=this.indexOf(e);if(void 0===n){if(-1!==o)return;n=this.length}-1!==o&&this.splice(o,1),this.splice(n,0,e),-1===o&&t.set(e,r,i)}}),Object.defineProperty(e,"__refs_collection",{value:!0}),e}(n[t.name]||[],e,t,n);Object.defineProperty(n,t.name,{enumerable:t.enumerable,value:i}),i.length&&i.forEach((function(i){e.set(i,t.inverse,n)}))}function vi(e,t){if(!(this instanceof vi))return new vi(e,t);e.inverse=t,t.inverse=e,this.props={},this.props[e.name]=e,this.props[t.name]=t}yi.$inject=["eventBus"],yi.prototype.add=function(e,t,n){var i=e.id;this._validateId(i),q(t,di,i),n&&q(n,di,i),this._elements[i]={element:e,gfx:t,secondaryGfx:n}},yi.prototype.remove=function(e){var t=this._elements,n=e.id||e,i=n&&t[n];i&&(q(i.gfx,di,""),i.secondaryGfx&&q(i.secondaryGfx,di,""),delete t[n])},yi.prototype.updateId=function(e,t){this._validateId(t),"string"==typeof e&&(e=this.get(e)),this._eventBus.fire("element.updateId",{element:e,newId:t});var n=this.getGraphics(e),i=this.getGraphics(e,!0);this.remove(e),e.id=t,this.add(e,n,i)},yi.prototype.updateGraphics=function(e,t,n){var i=e.id||e,r=this._elements[i];return n?r.secondaryGfx=t:r.gfx=t,t&&q(t,di,i),t},yi.prototype.get=function(e){var t;t="string"==typeof e?e:e&&q(e,di);var n=this._elements[t];return n&&n.element},yi.prototype.filter=function(e){var t=[];return this.forEach((function(n,i){e(n,i)&&t.push(n)})),t},yi.prototype.find=function(e){for(var t=this._elements,n=Object.keys(t),i=0;i<n.length;i++){var r=t[n[i]],o=r.element;if(e(o,r.gfx))return o}},yi.prototype.getAll=function(){return this.filter((function(e){return e}))},yi.prototype.forEach=function(e){var t=this._elements;Object.keys(t).forEach((function(n){var i=t[n],r=i.element,o=i.gfx;return e(r,o)}))},yi.prototype.getGraphics=function(e,t){var n=e.id||e,i=this._elements[n];return i&&(t?i.secondaryGfx:i.gfx)},yi.prototype._validateId=function(e){if(!e)throw new Error("element must have an id");if(this._elements[e])throw new Error("element with id "+e+" already added")},vi.prototype.bind=function(e,t){if("string"==typeof t){if(!this.props[t])throw new Error("no property <"+t+"> in ref");t=this.props[t]}t.collection?gi(this,t,e):function(e,t,n){var i=t.inverse,r=n[t.name];Object.defineProperty(n,t.name,{configurable:t.configurable,enumerable:t.enumerable,get:function(){return r},set:function(t){if(t!==r){var o=r;r=null,o&&e.unset(o,i,n),r=t,e.set(r,i,n)}}})}(this,t,e)},vi.prototype.ensureRefsCollection=function(e,t){var n=e[t.name];return function(e){return!0===e.__refs_collection}(n)||gi(this,t,e),n},vi.prototype.ensureBound=function(e,t){(function(e,t){return Object.prototype.hasOwnProperty.call(e,t.name||t)})(e,t)||this.bind(e,t)},vi.prototype.unset=function(e,t,n){e&&(this.ensureBound(e,t),t.collection?this.ensureRefsCollection(e,t).remove(n):e[t.name]=void 0)},vi.prototype.set=function(e,t,n){e&&(this.ensureBound(e,t),t.collection?this.ensureRefsCollection(e,t).add(n):e[t.name]=n)};var bi=new vi({name:"children",enumerable:!0,collection:!0},{name:"parent"}),xi=new vi({name:"labels",enumerable:!0,collection:!0},{name:"labelTarget"}),wi=new vi({name:"attachers",collection:!0},{name:"host"}),Ei=new vi({name:"outgoing",collection:!0},{name:"source"}),_i=new vi({name:"incoming",collection:!0},{name:"target"});function Ai(){Object.defineProperty(this,"businessObject",{writable:!0}),Object.defineProperty(this,"label",{get:function(){return this.labels[0]},set:function(e){var t=this.label,n=this.labels;!e&&t?n.remove(t):n.add(e,0)}}),bi.bind(this,"parent"),xi.bind(this,"labels"),Ei.bind(this,"outgoing"),_i.bind(this,"incoming")}function ki(){Ai.call(this),bi.bind(this,"children"),wi.bind(this,"host"),wi.bind(this,"attachers")}function Si(){Ai.call(this),bi.bind(this,"children")}function Ri(){ki.call(this),xi.bind(this,"labelTarget")}function Ci(){Ai.call(this),Ei.bind(this,"source"),_i.bind(this,"target")}e(ki,Ai),e(Si,ki),e(Ri,ki),e(Ci,Ai);var Mi={connection:Ci,shape:ki,label:Ri,root:Si};function Pi(){this._uid=12}Pi.prototype.createRoot=function(e){return this.create("root",e)},Pi.prototype.createLabel=function(e){return this.create("label",e)},Pi.prototype.createShape=function(e){return this.create("shape",e)},Pi.prototype.createConnection=function(e){return this.create("connection",e)},Pi.prototype.create=function(e,t){return(t=j({},t||{})).id||(t.id=e+"_"+this._uid++),function(e,t){var n=Mi[e];if(!n)throw new Error("unknown type: <"+e+">");return j(new n,t)}(e,t)};var Di="__fn",Ni=Array.prototype.slice;function Ti(){this._listeners={},this.on("diagram.destroy",1,this._destroy,this)}function Oi(){}function Bi(e,t){this._eventBus=e,this._elementRegistry=t}function Li(e,t,n){var i=n||t.firstChild;e!==i&&t.insertBefore(e,i)}Ti.prototype.on=function(e,t,n,i){if(e=E(e)?e:[e],k(t)&&(i=n,n=t,t=1e3),!A(t))throw new Error("priority must be a number");var r=n;i&&((r=I(n,i))[Di]=n[Di]||n);var o=this;e.forEach((function(e){o._addListener(e,{priority:t,callback:r,next:null})}))},Ti.prototype.once=function(e,t,n,i){var r=this;if(k(t)&&(i=n,n=t,t=1e3),!A(t))throw new Error("priority must be a number");function o(){o.__isTomb=!0;var t=n.apply(i,arguments);return r.off(e,o),t}o[Di]=n,this.on(e,t,o)},Ti.prototype.off=function(e,t){e=E(e)?e:[e];var n=this;e.forEach((function(e){n._removeListener(e,t)}))},Ti.prototype.createEvent=function(e){var t=new Oi;return t.init(e),t},Ti.prototype.fire=function(e,t){var n,i,r,o;if(o=Ni.call(arguments),"object"==typeof e&&(e=(t=e).type),!e)throw new Error("no event type specified");if(i=this._listeners[e]){n=t instanceof Oi?t:this.createEvent(t),o[0]=n;var a=n.type;e!==a&&(n.type=e);try{r=this._invokeListeners(n,o,i)}finally{e!==a&&(n.type=a)}return void 0===r&&n.defaultPrevented&&(r=!1),r}},Ti.prototype.handleError=function(e){return!1===this.fire("error",{error:e})},Ti.prototype._destroy=function(){this._listeners={}},Ti.prototype._invokeListeners=function(e,t,n){for(var i;n&&!e.cancelBubble;)i=this._invokeListener(e,t,n),n=n.next;return i},Ti.prototype._invokeListener=function(e,t,n){var i;if(n.callback.__isTomb)return i;try{i=function(e,t){return e.apply(null,t)}(n.callback,t),void 0!==i&&(e.returnValue=i,e.stopPropagation()),!1===i&&e.preventDefault()}catch(e){if(!this.handleError(e))throw console.error("unhandled error in event listener",e),e}return i},Ti.prototype._addListener=function(e,t){var n,i=this._getListeners(e);if(i){for(;i;){if(i.priority<t.priority)return t.next=i,void(n?n.next=t:this._setListeners(e,t));n=i,i=i.next}n.next=t}else this._setListeners(e,t)},Ti.prototype._getListeners=function(e){return this._listeners[e]},Ti.prototype._setListeners=function(e,t){this._listeners[e]=t},Ti.prototype._removeListener=function(e,t){var n,i,r,o=this._getListeners(e);if(t)for(;o;)n=o.next,(r=o.callback)!==t&&r[Di]!==t||(i?i.next=n:this._setListeners(e,n)),i=o,o=n;else this._setListeners(e,null)},Oi.prototype.stopPropagation=function(){this.cancelBubble=!0},Oi.prototype.preventDefault=function(){this.defaultPrevented=!0},Oi.prototype.init=function(e){j(this,e||{})},Bi.$inject=["eventBus","elementRegistry"],Bi.prototype._getChildrenContainer=function(e){var t,n=this._elementRegistry.getGraphics(e);return e.parent?(t=function(e){return e.parentNode.childNodes[1]}(n),t||(X(t=te("g")).add("djs-children"),G(n.parentNode,t))):t=n,t},Bi.prototype._clear=function(e){var t=function(e){return e.childNodes[0]}(e);return _t(t),t},Bi.prototype._createContainer=function(e,t,n,i){var r=te("g");X(r).add("djs-group"),void 0!==n?Li(r,t,t.childNodes[n]):G(t,r);var o=te("g");X(o).add("djs-element"),X(o).add("djs-"+e),i&&X(o).add("djs-frame"),G(r,o);var a=te("g");return X(a).add("djs-visual"),G(o,a),o},Bi.prototype.create=function(e,t,n){var i=this._getChildrenContainer(t.parent);return this._createContainer(e,i,n,cn(t))},Bi.prototype.updateContainments=function(e){var t,n=this,i=this._elementRegistry;t=D(e,(function(e,t){return t.parent&&(e[t.parent.id]=t.parent),e}),{}),P(t,(function(e){var t=e.children;if(t){var r=n._getChildrenContainer(e);P(t.slice().reverse(),(function(e){Li(i.getGraphics(e).parentNode,r)}))}}))},Bi.prototype.drawShape=function(e,t,n={}){return this._eventBus.fire("render.shape",{gfx:e,element:t,attrs:n})},Bi.prototype.getShapePath=function(e){return this._eventBus.fire("render.getShapePath",e)},Bi.prototype.drawConnection=function(e,t,n={}){return this._eventBus.fire("render.connection",{gfx:e,element:t,attrs:n})},Bi.prototype.getConnectionPath=function(e){return this._eventBus.fire("render.getConnectionPath",e)},Bi.prototype.update=function(e,t,n){if(t.parent){var i=this._clear(n);if("shape"===e)this.drawShape(i,t),rt(n,t.x,t.y);else{if("connection"!==e)throw new Error("unknown type: "+e);this.drawConnection(i,t)}t.hidden?q(n,"display","none"):q(n,"display","block")}},Bi.prototype.remove=function(e){fe(this._elementRegistry.getGraphics(e).parentNode)};var Ii={__depends__:[li],__init__:["canvas"],canvas:["type",hi],elementRegistry:["type",yi],elementFactory:["type",Pi],eventBus:["type",Ti],graphicsFactory:["type",Bi]};function ji(e){return function(e){var t=new oi(e);return t.init(),t}([{config:["value",e=e||{}]},Ii].concat(e.modules||[]))}function Fi(e,t){this._injector=t||ji(e),this.get("eventBus").fire("diagram.init")}Fi.prototype.get=function(e,t){return this._injector.get(e,t)},Fi.prototype.invoke=function(e,t,n){return this._injector.invoke(e,t,n)},Fi.prototype.destroy=function(){this.get("eventBus").fire("diagram.destroy")},Fi.prototype.clear=function(){this.get("eventBus").fire("diagram.clear")};const Vi=Object.prototype.toString;function Wi(e,...t){return Object.assign(e,...t)}const $i=Object.prototype.toString,zi=Object.prototype.hasOwnProperty;function Gi(e){return void 0===e}function Hi(e){return null==e}function Ki(e){return"[object String]"===$i.call(e)}function Ui(e,t){return!Hi(e)&&zi.call(e,t)}function qi(e,t){let n,i;if(Gi(e))return;const r=(o=e,"[object Array]"===$i.call(o)?Xi:Yi);var o;for(let o in e)if(Ui(e,o)&&(n=e[o],i=t(n,r(o)),!1===i))return n}function Yi(e){return e}function Xi(e){return Number(e)}function Zi(e,t){return e.bind(t)}function Ji(e,...t){return Object.assign(e,...t)}function Qi(){}function er(e,t){this.model=e,this.properties=t}Qi.prototype.get=function(e){return this.$model.properties.get(this,e)},Qi.prototype.set=function(e,t){this.$model.properties.set(this,e,t)},er.prototype.createType=function(e){var t=this.model,n=this.properties,i=Object.create(Qi.prototype);qi(e.properties,(function(e){e.isMany||void 0===e.default||(i[e.name]=e.default)})),n.defineModel(i,t),n.defineDescriptor(i,e);var r=e.ns.name;function o(e){n.define(this,"$type",{value:r,enumerable:!0}),n.define(this,"$attrs",{value:{}}),n.define(this,"$parent",{writable:!0}),qi(e,Zi((function(e,t){this.set(t,e)}),this))}return o.prototype=i,o.hasType=i.$instanceOf=this.model.hasType,n.defineModel(o,t),n.defineDescriptor(o,e),o};var tr={String:!0,Boolean:!0,Integer:!0,Real:!0,Element:!0},nr={String:function(e){return e},Boolean:function(e){return"true"===e},Integer:function(e){return parseInt(e,10)},Real:function(e){return parseFloat(e)}};function ir(e,t){var n=nr[e];return n?n(t):t}function rr(e){return!!tr[e]}function or(e){return!!nr[e]}function ar(e,t){var n,i,r=e.split(/:/);if(1===r.length)n=e,i=t;else{if(2!==r.length)throw new Error("expected <prefix:localName> or <localName>, got "+e);n=r[1],i=r[0]}return{name:e=(i?i+":":"")+n,prefix:i,localName:n}}function sr(e){this.ns=e,this.name=e.name,this.allTypes=[],this.allTypesByName={},this.properties=[],this.propertiesByName={}}function lr(e,t){this.packageMap={},this.typeMap={},this.packages=[],this.properties=t,qi(e,Zi(this.registerPackage,this))}function pr(e,t,n){var i=t[n];if(i in e)throw new Error("package with "+n+" <"+i+"> already defined")}function cr(e){this.model=e}function ur(e,t,n){Object.defineProperty(e,t.name,{enumerable:!t.isReference,writable:!0,value:n,configurable:!0})}function fr(e){return e.replace(/^:/,"")}function hr(e,t={}){this.properties=new cr(this),this.factory=new er(this,this.properties),this.registry=new lr(e,this.properties),this.typeCache={},this.config=t}sr.prototype.build=function(){return function(e,t){let n={},i=Object(e);return qi(t,(function(t){t in i&&(n[t]=e[t])})),n}(this,["ns","name","allTypes","allTypesByName","properties","propertiesByName","bodyProperty","idProperty"])},sr.prototype.addProperty=function(e,t,n){"boolean"==typeof t&&(n=t,t=void 0),this.addNamedProperty(e,!1!==n);var i=this.properties;void 0!==t?i.splice(t,0,e):i.push(e)},sr.prototype.replaceProperty=function(e,t,n){var i=e.ns,r=this.properties,o=this.propertiesByName,a=e.name!==t.name;if(e.isId){if(!t.isId)throw new Error("property <"+t.ns.name+"> must be id property to refine <"+e.ns.name+">");this.setIdProperty(t,!1)}if(e.isBody){if(!t.isBody)throw new Error("property <"+t.ns.name+"> must be body property to refine <"+e.ns.name+">");this.setBodyProperty(t,!1)}var s=r.indexOf(e);if(-1===s)throw new Error("property <"+i.name+"> not found in property list");r.splice(s,1),this.addProperty(t,n?void 0:s,a),o[i.name]=o[i.localName]=t},sr.prototype.redefineProperty=function(e,t,n){var i=e.ns.prefix,r=t.split("#"),o=ar(r[0],i),a=ar(r[1],o.prefix).name,s=this.propertiesByName[a];if(!s)throw new Error("refined property <"+a+"> not found");this.replaceProperty(s,e,n),delete e.redefines},sr.prototype.addNamedProperty=function(e,t){var n=e.ns,i=this.propertiesByName;t&&(this.assertNotDefined(e,n.name),this.assertNotDefined(e,n.localName)),i[n.name]=i[n.localName]=e},sr.prototype.removeNamedProperty=function(e){var t=e.ns,n=this.propertiesByName;delete n[t.name],delete n[t.localName]},sr.prototype.setBodyProperty=function(e,t){if(t&&this.bodyProperty)throw new Error("body property defined multiple times (<"+this.bodyProperty.ns.name+">, <"+e.ns.name+">)");this.bodyProperty=e},sr.prototype.setIdProperty=function(e,t){if(t&&this.idProperty)throw new Error("id property defined multiple times (<"+this.idProperty.ns.name+">, <"+e.ns.name+">)");this.idProperty=e},sr.prototype.assertNotTrait=function(e){if((e.extends||[]).length)throw new Error(`cannot create <${e.name}> extending <${e.extends}>`)},sr.prototype.assertNotDefined=function(e,t){var n=e.name,i=this.propertiesByName[n];if(i)throw new Error("property <"+n+"> already defined; override of <"+i.definedBy.ns.name+"#"+i.ns.name+"> by <"+e.definedBy.ns.name+"#"+e.ns.name+"> not allowed without redefines")},sr.prototype.hasProperty=function(e){return this.propertiesByName[e]},sr.prototype.addTrait=function(e,t){t&&this.assertNotTrait(e);var n=this.allTypesByName,i=this.allTypes,r=e.name;r in n||(qi(e.properties,Zi((function(n){n=Ji({},n,{name:n.ns.localName,inherited:t}),Object.defineProperty(n,"definedBy",{value:e});var i=n.replaces,r=n.redefines;i||r?this.redefineProperty(n,i||r,i):(n.isBody&&this.setBodyProperty(n),n.isId&&this.setIdProperty(n),this.addProperty(n))}),this)),i.push(e),n[r]=e)},lr.prototype.getPackage=function(e){return this.packageMap[e]},lr.prototype.getPackages=function(){return this.packages},lr.prototype.registerPackage=function(e){e=Ji({},e);var t=this.packageMap;pr(t,e,"prefix"),pr(t,e,"uri"),qi(e.types,Zi((function(t){this.registerType(t,e)}),this)),t[e.uri]=t[e.prefix]=e,this.packages.push(e)},lr.prototype.registerType=function(e,t){var n=ar((e=Ji({},e,{superClass:(e.superClass||[]).slice(),extends:(e.extends||[]).slice(),properties:(e.properties||[]).slice(),meta:Ji(e.meta||{})})).name,t.prefix),i=n.name,r={};qi(e.properties,Zi((function(e){var t=ar(e.name,n.prefix),i=t.name;rr(e.type)||(e.type=ar(e.type,t.prefix).name),Ji(e,{ns:t,name:i}),r[i]=e}),this)),Ji(e,{ns:n,name:i,propertiesByName:r}),qi(e.extends,Zi((function(e){var t=ar(e,n.prefix),r=this.typeMap[t.name];r.traits=r.traits||[],r.traits.push(i)}),this)),this.definePackage(e,t),this.typeMap[i]=e},lr.prototype.mapTypes=function(e,t,n){var i=rr(e.name)?{name:e.name}:this.typeMap[e.name],r=this;function o(n,i){var o=ar(n,rr(n)?"":e.prefix);r.mapTypes(o,t,i)}function a(e){return o(e,!0)}if(!i)throw new Error("unknown type <"+e.name+">");qi(i.superClass,n?a:function(e){return o(e,!1)}),t(i,!n),qi(i.traits,a)},lr.prototype.getEffectiveDescriptor=function(e){var t=ar(e),n=new sr(t);this.mapTypes(t,(function(e,t){n.addTrait(e,t)}));var i=n.build();return this.definePackage(i,i.allTypes[i.allTypes.length-1].$pkg),i},lr.prototype.definePackage=function(e,t){this.properties.define(e,"$pkg",{value:t})},cr.prototype.set=function(e,t,n){if(!Ki(t)||!t.length)throw new TypeError("property name must be a non-empty string");var i=this.getProperty(e,t),r=i&&i.name;void 0===n?i?delete e[r]:delete e.$attrs[fr(t)]:i?r in e?e[r]=n:ur(e,i,n):e.$attrs[fr(t)]=n},cr.prototype.get=function(e,t){var n=this.getProperty(e,t);if(!n)return e.$attrs[fr(t)];var i=n.name;return!e[i]&&n.isMany&&ur(e,n,[]),e[i]},cr.prototype.define=function(e,t,n){if(!n.writable){var i=n.value;delete(n=Ji({},n,{get:function(){return i}})).value}Object.defineProperty(e,t,n)},cr.prototype.defineDescriptor=function(e,t){this.define(e,"$descriptor",{value:t})},cr.prototype.defineModel=function(e,t){this.define(e,"$model",{value:t})},cr.prototype.getProperty=function(e,t){var n=this.model,i=n.getPropertyDescriptor(e,t);if(i)return i;if(t.includes(":"))return null;const r=n.config.strict;if(void 0!==r){const n=new TypeError(`unknown property <${t}> on <${e.$type}>`);if(r)throw n;"undefined"!=typeof console&&console.warn(n)}return null},hr.prototype.create=function(e,t){var n=this.getType(e);if(!n)throw new Error("unknown type <"+e+">");return new n(t)},hr.prototype.getType=function(e){var t=this.typeCache,n=Ki(e)?e:e.ns.name,i=t[n];return i||(e=this.registry.getEffectiveDescriptor(n),i=t[n]=this.factory.createType(e)),i},hr.prototype.createAny=function(e,t,n){var i=ar(e),r={$type:e,$instanceOf:function(e){return e===this.$type},get:function(e){return this[e]},set:function(e,t){!function(e,t,n){let i=e;qi(t,(function(e,r){if("number"!=typeof e&&"string"!=typeof e)throw new Error("illegal key type: "+typeof e+". Key should be of type number or string.");if("constructor"===e)throw new Error("illegal key: constructor");if("__proto__"===e)throw new Error("illegal key: __proto__");let o=t[r+1],a=i[e];void 0!==o&&Hi(a)&&(a=i[e]=isNaN(+o)?{}:[]),Gi(o)?Gi(n)?delete i[e]:i[e]=n:i=a}))}(this,[e],t)}},o={name:e,isGeneric:!0,ns:{prefix:i.prefix,localName:i.localName,uri:t}};return this.properties.defineDescriptor(r,o),this.properties.defineModel(r,this),this.properties.define(r,"get",{enumerable:!1,writable:!0}),this.properties.define(r,"set",{enumerable:!1,writable:!0}),this.properties.define(r,"$parent",{enumerable:!1,writable:!0}),this.properties.define(r,"$instanceOf",{enumerable:!1,writable:!0}),qi(n,(function(e,t){var n;n=e,"[object Object]"===$i.call(n)&&void 0!==e.value?r[e.name]=e.value:r[t]=e})),r},hr.prototype.getPackage=function(e){return this.registry.getPackage(e)},hr.prototype.getPackages=function(){return this.registry.getPackages()},hr.prototype.getElementDescriptor=function(e){return e.$descriptor},hr.prototype.hasType=function(e,t){return void 0===t&&(t=e,e=this),t in e.$model.getElementDescriptor(e).allTypesByName},hr.prototype.getPropertyDescriptor=function(e,t){return this.getElementDescriptor(e).propertiesByName[t]},hr.prototype.getTypeDescriptor=function(e){return this.registry.typeMap[e]};const mr=Object.prototype.toString,dr=Object.prototype.hasOwnProperty;function yr(e){return"[object Array]"===mr.call(e)}function gr(e){return"[object String]"===mr.call(e)}function vr(e,t){return!(null==e)&&dr.call(e,t)}function br(e,t){const n=Er(t);let i;return wr(e,(function(e,t){if(n(e,t))return i=e,!1})),i}function xr(e,t){const n=Er(t);let i=[];return wr(e,(function(e,t){n(e,t)&&i.push(e)})),i}function wr(e,t){let n,i;if(void 0===e)return;const r=yr(e)?Ar:_r;for(let o in e)if(vr(e,o)&&(n=e[o],i=t(n,r(o)),!1===i))return n}function Er(e){return function(e){const t=mr.call(e);return"[object Function]"===t||"[object AsyncFunction]"===t||"[object GeneratorFunction]"===t||"[object AsyncGeneratorFunction]"===t||"[object Proxy]"===t}(e)?e:t=>t===e}function _r(e){return e}function Ar(e){return Number(e)}function kr(e,...t){return Object.assign(e,...t)}var Sr=String.fromCharCode,Rr=Object.prototype.hasOwnProperty,Cr=/&#(\d+);|&#x([0-9a-f]+);|&(\w+);/gi,Mr={amp:"&",apos:"'",gt:">",lt:"<",quot:'"'};function Pr(e,t,n,i){return i?Rr.call(Mr,i)?Mr[i]:"&"+i+";":Sr(t||parseInt(n,16))}function Dr(e){return e.length>3&&-1!==e.indexOf("&")?e.replace(Cr,Pr):e}Object.keys(Mr).forEach((function(e){Mr[e.toUpperCase()]=Mr[e]}));var Nr="non-whitespace outside of root node";function Tr(e){return new Error(e)}function Or(e){return"missing namespace for prefix <"+e+">"}function Br(e){return{get:e,enumerable:!0}}function Lr(e){var t,n={};for(t in e)n[t]=e[t];return n}function Ir(e){return e+"$uri"}function jr(){return{line:0,column:0}}function Fr(e){throw e}function Vr(e){if(!this)return new Vr(e);var t,n,i,r,o,a,s,l,p,c=e&&e.proxy,u=Fr,f=jr,h=!1,m=!1,d=null,y=!1;function g(e){e instanceof Error||(e=Tr(e)),d=e,u(e,f)}function v(e){o&&(e instanceof Error||(e=Tr(e)),o(e,f))}this.on=function(e,p){if("function"!=typeof p)throw Tr("required args <name, cb>");switch(e){case"openTag":n=p;break;case"text":t=p;break;case"closeTag":i=p;break;case"error":u=p;break;case"warn":o=p;break;case"cdata":r=p;break;case"attention":l=p;break;case"question":s=p;break;case"comment":a=p;break;default:throw Tr("unsupported event: "+e)}return this},this.ns=function(e){if(void 0===e&&(e={}),"object"!=typeof e)throw Tr("required args <nsMap={}>");var t,n={};for(t in e)n[t]=e[t];return m=!0,p=n,this},this.parse=function(e){if("string"!=typeof e)throw Tr("required args <xml=string>");return d=null,function(e){var o,u,d,b,x,w,E,_,A,k,S,R=m?[]:null,C=m?function(e){var t,n,i={};for(t in e)i[n=e[t]]=n,i[Ir(n)]=t;return i}(p):null,M=[],P=0,D=!1,N=!1,T=0,O=0,B="",L=0;function I(){if(null!==S)return S;var e,t,n,i,r,o,a,s,l,c,u,f=m&&C.xmlns,d=m&&h?[]:null,y=L,g=B,b=g.length,x={},w={};e:for(;y<b;y++)if(l=!1,!(32===(c=g.charCodeAt(y))||c<14&&c>8)){for((c<65||c>122||c>90&&c<97)&&95!==c&&58!==c&&(v("illegal first char attribute name"),l=!0),u=y+1;u<b;u++)if(!((c=g.charCodeAt(u))>96&&c<123||c>64&&c<91||c>47&&c<59||46===c||45===c||95===c)){if(32===c||c<14&&c>8){v("missing attribute value"),y=u;continue e}if(61===c)break;v("illegal attribute name char"),l=!0}if("xmlns:xmlns"===(s=g.substring(y,u))&&(v("illegal declaration of xmlns"),l=!0),34===(c=g.charCodeAt(u+1)))-1===(u=g.indexOf('"',y=u+2))&&-1!==(u=g.indexOf("'",y))&&(v("attribute value quote missmatch"),l=!0);else if(39===c)-1===(u=g.indexOf("'",y=u+2))&&-1!==(u=g.indexOf('"',y))&&(v("attribute value quote missmatch"),l=!0);else for(v("missing attribute value quotes"),l=!0,u+=1;u<b&&!(32===(c=g.charCodeAt(u+1))||c<14&&c>8);u++);for(-1===u&&(v("missing closing quotes"),u=b,l=!0),l||(o=g.substring(y,u)),y=u;u+1<b&&!(32===(c=g.charCodeAt(u+1))||c<14&&c>8);u++)y===u&&(v("illegal character after attribute end"),l=!0);if(y=u+1,!l)if(s in w)v("attribute <"+s+"> already defined");else if(w[s]=!0,m)if(h){if(null!==(r="xmlns"===s?"xmlns":120===s.charCodeAt(0)&&"xmlns:"===s.substr(0,6)?s.substr(6):null)){if(e=Dr(o),t=Ir(r),!(a=p[e])){if("xmlns"===r||t in C&&C[t]!==e)do{a="ns"+P++}while(void 0!==C[a]);else a=r;p[e]=a}C[r]!==a&&(i||(C=Lr(C),i=!0),C[r]=a,"xmlns"===r&&(C[Ir(a)]=e,f=a),C[t]=e),x[s]=o;continue}d.push(s,o)}else-1!==(c=s.indexOf(":"))?(n=C[s.substring(0,c)])?x[s=f===n?s.substr(c+1):n+s.substr(c)]=o:v(Or(s.substring(0,c))):x[s]=o;else x[s]=o}if(h)for(y=0,b=d.length;y<b;y++){if(s=d[y++],o=d[y],-1!==(c=s.indexOf(":"))){if(!(n=C[s.substring(0,c)])){v(Or(s.substring(0,c)));continue}s=f===n?s.substr(c+1):n+s.substr(c)}x[s]=o}return S=x}function j(){for(var t,n,i=/(\r\n|\r|\n)/g,r=0,o=0,a=0,s=O;T>=a&&(t=i.exec(e))&&!((s=t[0].length+t.index)>T);)r+=1,a=s;return-1==T?(o=s,n=e.substring(O)):0===O?n=e.substring(O,T):(o=T-a,n=-1==O?e.substring(T):e.substring(T,O+1)),{data:n,line:r,column:o}}f=j,c&&(k=Object.create({},{name:Br((function(){return _})),originalName:Br((function(){return A})),attrs:Br(I),ns:Br((function(){return C}))}));for(;-1!==O;){if(-1===(T=60===e.charCodeAt(O)?O:e.indexOf("<",O)))return M.length?g("unexpected end of file"):0===O?g("missing start tag"):void(O<e.length&&e.substring(O).trim()&&v(Nr));if(O!==T)if(M.length){if(t&&(t(e.substring(O,T),Dr,f),y))return}else if(e.substring(O,T).trim()&&(v(Nr),y))return;if(33===(x=e.charCodeAt(T+1))){if(91===(b=e.charCodeAt(T+2))&&"CDATA["===e.substr(T+3,6)){if(-1===(O=e.indexOf("]]>",T)))return g("unclosed cdata");if(r&&(r(e.substring(T+9,O),f),y))return;O+=3;continue}if(45===b&&45===e.charCodeAt(T+3)){if(-1===(O=e.indexOf("--\x3e",T)))return g("unclosed comment");if(a&&(a(e.substring(T+4,O),Dr,f),y))return;O+=3;continue}}if(63!==x){for(u=T+1;;u++){if(w=e.charCodeAt(u),isNaN(w))return O=-1,g("unclosed tag");if(34===w)u=-1!==(b=e.indexOf('"',u+1))?b:u;else if(39===w)u=-1!==(b=e.indexOf("'",u+1))?b:u;else if(62===w){O=u;break}}if(33!==x){if(S={},47===x){if(D=!1,N=!0,!M.length)return g("missing open tag");if(u=_=M.pop(),b=T+2+u.length,e.substring(T+2,b)!==u)return g("closing tag mismatch");for(;b<O;b++)if(!(32===(x=e.charCodeAt(b))||x>8&&x<14))return g("close tag")}else{if(47===e.charCodeAt(O-1)?(u=_=e.substring(T+1,O-1),D=!0,N=!0):(u=_=e.substring(T+1,O),D=!0,N=!1),!(x>96&&x<123||x>64&&x<91||95===x||58===x))return g("illegal first char nodeName");for(b=1,d=u.length;b<d;b++)if(!((x=u.charCodeAt(b))>96&&x<123||x>64&&x<91||x>47&&x<59||45===x||95===x||46==x)){if(32===x||x<14&&x>8){_=u.substring(0,b),S=null;break}return g("invalid nodeName")}N||M.push(_)}if(m){if(o=C,D&&(N||R.push(o),null===S&&(h=-1!==u.indexOf("xmlns",b))&&(L=b,B=u,I(),h=!1)),A=_,-1!==(x=_.indexOf(":"))){if(!(E=C[_.substring(0,x)]))return g("missing namespace on <"+A+">");_=_.substr(x+1)}else E=C.xmlns;E&&(_=E+":"+_)}if(D&&(L=b,B=u,n&&(c?n(k,Dr,N,f):n(_,I,Dr,N,f),y)))return;if(N){if(i&&(i(c?k:_,Dr,D,f),y))return;m&&(C=D?o:R.pop())}O+=1}else{if(l&&(l(e.substring(T,O+1),Dr,f),y))return;O+=1}}else{if(-1===(O=e.indexOf("?>",T)))return g("unclosed question");if(s&&(s(e.substring(T,O+2),f),y))return;O+=2}}}(e),f=jr,y=!1,d},this.stop=function(){y=!0}}function Wr(e){return e.xml&&"lowerCase"===e.xml.tagAlias}var $r={xsi:"http://www.w3.org/2001/XMLSchema-instance",xml:"http://www.w3.org/XML/1998/namespace"},zr="property";function Gr(e){return e.xml&&e.xml.serialize}function Hr(e,t){return Wr(t)?e.prefix+":"+((n=e.localName).charAt(0).toUpperCase()+n.slice(1)):e.name;var n}function Kr(e){return new Error(e)}function Ur(e){return e.$descriptor}function qr(e){kr(this,e),this.elementsById={},this.references=[],this.warnings=[],this.addReference=function(e){this.references.push(e)},this.addElement=function(e){if(!e)throw Kr("expected element");var t,n=this.elementsById,i=Ur(e).idProperty;if(i&&(t=e.get(i.name))){if(!/^([a-z][\w-.]*:)?[a-z_][\w-.]*$/i.test(t))throw new Error("illegal ID <"+t+">");if(n[t])throw Kr("duplicate ID <"+t+">");n[t]=e}},this.addWarning=function(e){this.warnings.push(e)}}function Yr(){}function Xr(){}function Zr(){}function Jr(e,t){this.property=e,this.context=t}function Qr(e,t){this.element=t,this.propertyDesc=e}function eo(){}function to(e,t,n){this.model=e,this.type=e.getType(t),this.context=n}function no(e,t,n){to.call(this,e,t,n)}function io(e,t,n){this.model=e,this.context=n}function ro(e){e instanceof hr&&(e={model:e}),kr(this,{lax:!1},e)}Yr.prototype.handleEnd=function(){},Yr.prototype.handleText=function(){},Yr.prototype.handleNode=function(){},Xr.prototype=Object.create(Yr.prototype),Xr.prototype.handleNode=function(){return this},Zr.prototype=Object.create(Yr.prototype),Zr.prototype.handleText=function(e){this.body=(this.body||"")+e},Jr.prototype=Object.create(Zr.prototype),Jr.prototype.handleNode=function(e){if(this.element)throw Kr("expected no sub nodes");return this.element=this.createReference(e),this},Jr.prototype.handleEnd=function(){this.element.id=this.body},Jr.prototype.createReference=function(e){return{property:this.property.ns.name,id:""}},Qr.prototype=Object.create(Zr.prototype),Qr.prototype.handleEnd=function(){var e=this.body||"",t=this.element,n=this.propertyDesc;e=ir(n.type,e),n.isMany?t.get(n.name).push(e):t.set(n.name,e)},eo.prototype=Object.create(Zr.prototype),eo.prototype.handleNode=function(e){var t=this,n=this.element;return n?t=this.handleChild(e):(n=this.element=this.createElement(e),this.context.addElement(n)),t},to.prototype=Object.create(eo.prototype),to.prototype.addReference=function(e){this.context.addReference(e)},to.prototype.handleText=function(e){if(!Ur(this.element).bodyProperty)throw Kr("unexpected body text <"+e+">");Zr.prototype.handleText.call(this,e)},to.prototype.handleEnd=function(){var e=this.body,t=this.element,n=Ur(t).bodyProperty;n&&void 0!==e&&(e=ir(n.type,e),t.set(n.name,e))},to.prototype.createElement=function(e){var t,n=e.attributes,i=this.type,r=Ur(i),o=this.context,a=new i({}),s=this.model;return wr(n,(function(e,n){var i=r.propertiesByName[n];i&&i.isReference?i.isMany?wr(e.split(" "),(function(e){o.addReference({element:a,property:i.ns.name,id:e})})):o.addReference({element:a,property:i.ns.name,id:e}):(i?e=ir(i.type,e):"xmlns"===n?n=":"+n:(t=ar(n,r.ns.prefix),s.getPackage(t.prefix)&&o.addWarning({message:"unknown attribute <"+n+">",element:a,property:n,value:e})),a.set(n,e))})),a},to.prototype.getPropertyForNode=function(e){var t=ar(e.name),n=this.type,i=this.model,r=Ur(n),o=t.name,a=r.propertiesByName[o];if(a&&!a.isAttr){const t=function(e){const t=Gr(e);return t!==zr&&(t||null)}(a);if(t){const n=e.attributes[t];if(n){const t=function(e,t,n){const i=ar(e,t.xmlns),r=ar(`${t[i.prefix]||i.prefix}:${i.localName}`);return function(e,t){var n=e.name,i=e.localName,r=t&&t.xml&&t.xml.typePrefix;return r&&0===i.indexOf(r)?e.prefix+":"+i.slice(r.length):n}(r,n.getPackage(r.prefix))}(n,e.ns,i);return kr({},a,{effectiveType:Ur(i.getType(t)).name})}}return a}var s=i.getPackage(t.prefix);if(s){const e=Hr(t,s),n=i.getType(e);if(a=br(r.properties,(function(e){return!e.isVirtual&&!e.isReference&&!e.isAttribute&&n.hasType(e.type)})))return kr({},a,{effectiveType:Ur(n).name})}else if(a=br(r.properties,(function(e){return!e.isReference&&!e.isAttribute&&"Element"===e.type})))return a;throw Kr("unrecognized element <"+t.name+">")},to.prototype.toString=function(){return"ElementDescriptor["+Ur(this.type).name+"]"},to.prototype.valueHandler=function(e,t){return new Qr(e,t)},to.prototype.referenceHandler=function(e){return new Jr(e,this.context)},to.prototype.handler=function(e){return"Element"===e?new io(this.model,e,this.context):new to(this.model,e,this.context)},to.prototype.handleChild=function(e){var t,n,i,r;if(t=this.getPropertyForNode(e),i=this.element,or(n=t.effectiveType||t.type))return this.valueHandler(t,i);var o=(r=t.isReference?this.referenceHandler(t).handleNode(e):this.handler(n).handleNode(e)).element;return void 0!==o&&(t.isMany?i.get(t.name).push(o):i.set(t.name,o),t.isReference?(kr(o,{element:i}),this.context.addReference(o)):o.$parent=i),r},no.prototype=Object.create(to.prototype),no.prototype.createElement=function(e){var t=e.name,n=ar(t),i=this.model,r=this.type,o=i.getPackage(n.prefix),a=o&&Hr(n,o)||t;if(!r.hasType(a))throw Kr("unexpected element <"+e.originalName+">");return to.prototype.createElement.call(this,e)},io.prototype=Object.create(eo.prototype),io.prototype.createElement=function(e){var t=e.name,n=ar(t).prefix,i=e.ns[n+"$uri"],r=e.attributes;return this.model.createAny(t,i,r)},io.prototype.handleChild=function(e){var t=new io(this.model,"Element",this.context).handleNode(e),n=this.element,i=t.element;return void 0!==i&&((n.$children=n.$children||[]).push(i),i.$parent=n),t},io.prototype.handleEnd=function(){this.body&&(this.element.$body=this.body)},ro.prototype.fromXML=function(e,t,n){var i=t.rootHandler;t instanceof to?(i=t,t={}):"string"==typeof t?(i=this.handler(t),t={}):"string"==typeof i&&(i=this.handler(i));var r=this.model,o=this.lax,a=new qr(kr({},t,{rootHandler:i})),s=new Vr({proxy:!0}),l=function(){var e=[];return Object.defineProperty(e,"peek",{value:function(){return this[this.length-1]}}),e}();function p(e,t,n){var i=t(),r=i.line,o=i.column,s=i.data;"<"===s.charAt(0)&&-1!==s.indexOf(" ")&&(s=s.slice(0,s.indexOf(" "))+">");var l="unparsable content "+(s?s+" ":"")+"detected\n\tline: "+r+"\n\tcolumn: "+o+"\n\tnested error: "+e.message;if(n)return a.addWarning({message:l,error:e}),!0;throw Kr(l)}function c(e,t){return p(e,t,!0)}i.context=a,l.push(i);var u=/^<\?xml /i,f=/ encoding="([^"]+)"/i,h=/^utf-8$/i;function m(e,t){try{l.peek().handleText(e)}catch(e){c(e,t)}}var d=r.getPackages().reduce((function(e,t){return e[t.uri]=t.prefix,e}),Object.entries($r).reduce((function(e,[t,n]){return e[n]=t,e}),r.config&&r.config.nsMap||{}));return s.ns(d).on("openTag",(function(e,t,n,i){var r=e.attrs||{},a=Object.keys(r).reduce((function(e,n){var i=t(r[n]);return e[n]=i,e}),{});!function(e,t){var n=l.peek();try{l.push(n.handleNode(e))}catch(e){p(e,t,o)&&l.push(new Xr)}}({name:e.name,originalName:e.originalName,attributes:a,ns:e.ns},i)})).on("question",(function(e){if(u.test(e)){var t=f.exec(e),n=t&&t[1];n&&!h.test(n)&&a.addWarning({message:"unsupported document encoding <"+n+">, falling back to UTF-8"})}})).on("closeTag",(function(){l.pop().handleEnd()})).on("cdata",m).on("text",(function(e,t,n){!function(e,t){e.trim()&&m(e,t)}(t(e),n)})).on("error",p).on("warn",c),new Promise((function(t,n){var r;try{s.parse(e),function(){var e,t,n=a.elementsById,i=a.references;for(e=0;t=i[e];e++){var r=t.element,o=n[t.id],s=Ur(r).propertiesByName[t.property];if(o||a.addWarning({message:"unresolved reference <"+t.id+">",element:t.element,property:t.property,value:t.id}),s.isMany){var l=r.get(s.name),p=l.indexOf(t);-1===p&&(p=l.length),o?l[p]=o:l.splice(p,1)}else r.set(s.name,o)}}()}catch(e){r=e}var o=i.element;r||o||(r=Kr("failed to parse document as <"+i.type.$descriptor.name+">"));var l=a.warnings,p=a.references,c=a.elementsById;return r?(r.warnings=l,n(r)):t({rootElement:o,elementsById:c,references:p,warnings:l})}))},ro.prototype.handler=function(e){return new no(this.model,e)};var oo=/<|>|'|"|&|\n\r|\n/g,ao=/<|>|&/g;function so(e){this.prefixMap={},this.uriMap={},this.used={},this.wellknown=[],this.custom=[],this.parent=e,this.defaultPrefixMap=e&&e.defaultPrefixMap||{}}function lo(e,t){return Wr(t)?(n=e).charAt(0).toLowerCase()+n.slice(1):e;var n}function po(e,t){e.super_=t,e.prototype=Object.create(t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}})}function co(e){return gr(e)?e:(e.prefix?e.prefix+":":"")+e.localName}so.prototype.mapDefaultPrefixes=function(e){this.defaultPrefixMap=e},so.prototype.defaultUriByPrefix=function(e){return this.defaultPrefixMap[e]},so.prototype.byUri=function(e){return this.uriMap[e]||this.parent&&this.parent.byUri(e)},so.prototype.add=function(e,t){this.uriMap[e.uri]=e,t?this.wellknown.push(e):this.custom.push(e),this.mapPrefix(e.prefix,e.uri)},so.prototype.uriByPrefix=function(e){return this.prefixMap[e||"xmlns"]||this.parent&&this.parent.uriByPrefix(e)},so.prototype.mapPrefix=function(e,t){this.prefixMap[e||"xmlns"]=t},so.prototype.getNSKey=function(e){return void 0!==e.prefix?e.uri+"|"+e.prefix:e.uri},so.prototype.logUsed=function(e){var t=e.uri,n=this.getNSKey(e);this.used[n]=this.byUri(t),this.parent&&this.parent.logUsed(e)},so.prototype.getUsed=function(e){return[].concat(this.wellknown,this.custom).filter((e=>{var t=this.getNSKey(e);return this.used[t]}))};var uo={"\n":"#10","\n\r":"#10",'"':"#34","'":"#39","<":"#60",">":"#62","&":"#38"},fo={"<":"lt",">":"gt","&":"amp"};function ho(e,t,n){return(e=gr(e)?e:""+e).replace(t,(function(e){return"&"+n[e]+";"}))}function mo(e){this.tagName=e}function yo(){}function go(e){this.tagName=e}function vo(e,t){this.body=[],this.attrs=[],this.parent=e,this.propertyDescriptor=t}function bo(e,t,n){vo.call(this,e,t),this.serialization=n}function xo(){this.value="",this.write=function(e){this.value+=e}}function wo(e,t){var n=[""];this.append=function(t){return e.write(t),this},this.appendNewLine=function(){return t&&e.write("\n"),this},this.appendIndent=function(){return t&&e.write(n.join(" ")),this},this.indent=function(){return n.push(""),this},this.unindent=function(){return n.pop(),this}}function Eo(e){return e=kr({format:!1,preamble:!0},e||{}),{toXML:function(t,n){var i=n||new xo,r=new wo(i,e.format);e.preamble&&r.append('<?xml version="1.0" encoding="UTF-8"?>\n');var o=new vo,a=t.$model;if(o.getNamespaces().mapDefaultPrefixes(function(e){const t=e.config&&e.config.nsMap||{},n={};for(const e in $r)n[e]=$r[e];for(const e in t){n[t[e]]=e}for(const t of e.getPackages())n[t.prefix]=t.uri;return n}(a)),o.build(t).serializeTo(r),!n)return i.value}}}function _o(e,t){hr.call(this,e,t)}mo.prototype.build=function(e){return this.element=e,this},mo.prototype.serializeTo=function(e){e.appendIndent().append("<"+this.tagName+">"+this.element.id+"</"+this.tagName+">").appendNewLine()},yo.prototype.serializeValue=yo.prototype.serializeTo=function(e){e.append(this.escape?ho(this.value,ao,fo):this.value)},yo.prototype.build=function(e,t){return this.value=t,"String"===e.type&&-1!==t.search(ao)&&(this.escape=!0),this},po(go,yo),go.prototype.serializeTo=function(e){e.appendIndent().append("<"+this.tagName+">"),this.serializeValue(e),e.append("</"+this.tagName+">").appendNewLine()},vo.prototype.build=function(e){this.element=e;var t,n,i=e.$descriptor,r=this.propertyDescriptor,o=i.isGeneric;return t=o?this.parseGenericNsAttributes(e):this.parseNsAttributes(e),this.ns=r?this.nsPropertyTagName(r):this.nsTagName(i),this.tagName=this.addTagName(this.ns),o?this.parseGenericContainments(e):(n=function(e){return xr(e.$descriptor.properties,(function(t){var n=t.name;if(t.isVirtual)return!1;if(!vr(e,n))return!1;var i=e[n];return i!==t.default&&null!==i&&(!t.isMany||i.length)}))}(e),this.parseAttributes(xr(n,(function(e){return e.isAttr}))),this.parseContainments(function(e){return xr(e,(function(e){return!e.isAttr}))}(n))),this.parseGenericAttributes(e,t),this},vo.prototype.nsTagName=function(e){return function(e,t){return t.isGeneric?kr({localName:t.ns.localName},e):kr({localName:lo(t.ns.localName,t.$pkg)},e)}(this.logNamespaceUsed(e.ns),e)},vo.prototype.nsPropertyTagName=function(e){return function(e,t){return kr({localName:t.ns.localName},e)}(this.logNamespaceUsed(e.ns),e)},vo.prototype.isLocalNs=function(e){return e.uri===this.ns.uri},vo.prototype.nsAttributeName=function(e){var t;if(t=gr(e)?ar(e):e.ns,e.inherited)return{localName:t.localName};var n=this.logNamespaceUsed(t);return this.getNamespaces().logUsed(n),this.isLocalNs(n)?{localName:t.localName}:kr({localName:t.localName},n)},vo.prototype.parseGenericNsAttributes=function(e){return Object.entries(e).filter((([t,n])=>!t.startsWith("$")&&this.parseNsAttribute(e,t,n))).map((([e,t])=>({name:e,value:t})))},vo.prototype.parseGenericContainments=function(e){var t=e.$body;t&&this.body.push((new yo).build({type:"String"},t));var n=e.$children;n&&wr(n,(e=>{this.body.push(new vo(this).build(e))}))},vo.prototype.parseNsAttribute=function(e,t,n){var i,r=e.$model,o=ar(t);if("xmlns"===o.prefix&&(i={prefix:o.localName,uri:n}),o.prefix||"xmlns"!==o.localName||(i={uri:n}),!i)return{name:t,value:n};if(r&&r.getPackage(n))this.logNamespace(i,!0,!0);else{var a=this.logNamespaceUsed(i,!0);this.getNamespaces().logUsed(a)}},vo.prototype.parseNsAttributes=function(e){var t=this,n=e.$attrs,i=[];return wr(n,(function(n,r){var o=t.parseNsAttribute(e,r,n);o&&i.push(o)})),i},vo.prototype.parseGenericAttributes=function(e,t){var n=this;wr(t,(function(t){try{n.addAttribute(n.nsAttributeName(t.name),t.value)}catch(n){"undefined"!=typeof console&&console.warn(`missing namespace information for <${t.name}=${t.value}> on`,e,n)}}))},vo.prototype.parseContainments=function(e){var t=this,n=this.body,i=this.element;wr(e,(function(e){var r=i.get(e.name),o=e.isReference;if(e.isMany||(r=[r]),e.isBody)n.push((new yo).build(e,r[0]));else if(or(e.type))wr(r,(function(i){n.push(new go(t.addTagName(t.nsPropertyTagName(e))).build(e,i))}));else if(o)wr(r,(function(i){n.push(new mo(t.addTagName(t.nsPropertyTagName(e))).build(i))}));else{var a=Gr(e);wr(r,(function(i){var r;r=a?a===zr?new vo(t,e):new bo(t,e,a):new vo(t),n.push(r.build(i))}))}}))},vo.prototype.getNamespaces=function(e){var t,n=this.namespaces,i=this.parent;return n||(t=i&&i.getNamespaces(),e||!t?this.namespaces=n=new so(t):n=t),n},vo.prototype.logNamespace=function(e,t,n){var i=this.getNamespaces(n),r=e.uri,o=e.prefix;return i.byUri(r)&&!n||i.add(e,t),i.mapPrefix(o,r),e},vo.prototype.logNamespaceUsed=function(e,t){var n,i,r,o=this.getNamespaces(t),a=e.prefix,s=e.uri;if(!a&&!s)return{localName:e.localName};if(r=o.defaultUriByPrefix(a),!(s=s||r||o.uriByPrefix(a)))throw new Error("no namespace uri given for prefix <"+a+">");if((e=o.byUri(s))||a||(e=this.logNamespace({uri:s},r===s,!0)),!e){for(n=a,i=1;o.uriByPrefix(n);)n=a+"_"+i++;e=this.logNamespace({prefix:n,uri:s},r===s)}return a&&o.mapPrefix(a,s),e},vo.prototype.parseAttributes=function(e){var t=this,n=this.element;wr(e,(function(e){var i=n.get(e.name);if(e.isReference)if(e.isMany){var r=[];wr(i,(function(e){r.push(e.id)})),i=r.join(" ")}else i=i.id;t.addAttribute(t.nsAttributeName(e),i)}))},vo.prototype.addTagName=function(e){var t=this.logNamespaceUsed(e);return this.getNamespaces().logUsed(t),co(e)},vo.prototype.addAttribute=function(e,t){var n=this.attrs;gr(t)&&(t=ho(t,oo,uo));var i=function(e,t){const n=Er(t);let i=yr(e)?-1:void 0;return wr(e,(function(e,t){if(n(e,t))return i=t,!1})),i}(n,(function(t){return t.name.localName===e.localName&&t.name.uri===e.uri&&t.name.prefix===e.prefix})),r={name:e,value:t};-1!==i?n.splice(i,1,r):n.push(r)},vo.prototype.serializeAttributes=function(e){var t=this.attrs,n=this.namespaces;n&&(t=function(e){return e.getUsed().filter((function(e){return"xml"!==e.prefix})).map((function(e){return{name:"xmlns"+(e.prefix?":"+e.prefix:""),value:e.uri}}))}(n).concat(t)),wr(t,(function(t){e.append(" ").append(co(t.name)).append('="').append(t.value).append('"')}))},vo.prototype.serializeTo=function(e){var t=this.body[0],n=t&&t.constructor!==yo;e.appendIndent().append("<"+this.tagName),this.serializeAttributes(e),e.append(t?">":" />"),t&&(n&&e.appendNewLine().indent(),wr(this.body,(function(t){t.serializeTo(e)})),n&&e.unindent().appendIndent(),e.append("</"+this.tagName+">")),e.appendNewLine()},po(bo,vo),bo.prototype.parseNsAttributes=function(e){var t=vo.prototype.parseNsAttributes.call(this,e).filter((e=>e.name!==this.serialization)),n=e.$descriptor;if(n.name===this.propertyDescriptor.type)return t;var i=this.typeNs=this.nsTagName(n);this.getNamespaces().logUsed(this.typeNs);var r=e.$model.getPackage(i.uri),o=r.xml&&r.xml.typePrefix||"";return this.addAttribute(this.nsAttributeName(this.serialization),(i.prefix?i.prefix+":":"")+o+n.ns.localName),t},bo.prototype.isLocalNs=function(e){return e.uri===(this.typeNs||this.ns).uri},_o.prototype=Object.create(hr.prototype),_o.prototype.fromXML=function(e,t,n){var i;i=t,"[object String]"!==Vi.call(i)&&(n=t,t="bpmn:Definitions");var r=new ro(Wi({model:this,lax:!0},n)),o=r.handler(t);return r.fromXML(e,o)},_o.prototype.toXML=function(e,t){var n=new Eo(t);return new Promise((function(t,i){try{return t({xml:n.toXML(e)})}catch(e){return i(e)}}))};const Ao={bpmn:{name:"BPMN20",uri:"http://www.omg.org/spec/BPMN/20100524/MODEL",prefix:"bpmn",associations:[],types:[{name:"Interface",superClass:["RootElement"],properties:[{name:"name",isAttr:!0,type:"String"},{name:"operations",type:"Operation",isMany:!0},{name:"implementationRef",isAttr:!0,type:"String"}]},{name:"Operation",superClass:["BaseElement"],properties:[{name:"name",isAttr:!0,type:"String"},{name:"inMessageRef",type:"Message",isReference:!0},{name:"outMessageRef",type:"Message",isReference:!0},{name:"errorRef",type:"Error",isMany:!0,isReference:!0},{name:"implementationRef",isAttr:!0,type:"String"}]},{name:"EndPoint",superClass:["RootElement"]},{name:"Auditing",superClass:["BaseElement"]},{name:"GlobalTask",superClass:["CallableElement"],properties:[{name:"resources",type:"ResourceRole",isMany:!0}]},{name:"Monitoring",superClass:["BaseElement"]},{name:"Performer",superClass:["ResourceRole"]},{name:"Process",superClass:["FlowElementsContainer","CallableElement"],properties:[{name:"processType",type:"ProcessType",isAttr:!0},{name:"isClosed",isAttr:!0,type:"Boolean"},{name:"auditing",type:"Auditing"},{name:"monitoring",type:"Monitoring"},{name:"properties",type:"Property",isMany:!0},{name:"laneSets",isMany:!0,replaces:"FlowElementsContainer#laneSets",type:"LaneSet"},{name:"flowElements",isMany:!0,replaces:"FlowElementsContainer#flowElements",type:"FlowElement"},{name:"artifacts",type:"Artifact",isMany:!0},{name:"resources",type:"ResourceRole",isMany:!0},{name:"correlationSubscriptions",type:"CorrelationSubscription",isMany:!0},{name:"supports",type:"Process",isMany:!0,isReference:!0},{name:"definitionalCollaborationRef",type:"Collaboration",isAttr:!0,isReference:!0},{name:"isExecutable",isAttr:!0,type:"Boolean"}]},{name:"LaneSet",superClass:["BaseElement"],properties:[{name:"lanes",type:"Lane",isMany:!0},{name:"name",isAttr:!0,type:"String"}]},{name:"Lane",superClass:["BaseElement"],properties:[{name:"name",isAttr:!0,type:"String"},{name:"partitionElementRef",type:"BaseElement",isAttr:!0,isReference:!0},{name:"partitionElement",type:"BaseElement"},{name:"flowNodeRef",type:"FlowNode",isMany:!0,isReference:!0},{name:"childLaneSet",type:"LaneSet",xml:{serialize:"xsi:type"}}]},{name:"GlobalManualTask",superClass:["GlobalTask"]},{name:"ManualTask",superClass:["Task"]},{name:"UserTask",superClass:["Task"],properties:[{name:"renderings",type:"Rendering",isMany:!0},{name:"implementation",isAttr:!0,type:"String"}]},{name:"Rendering",superClass:["BaseElement"]},{name:"HumanPerformer",superClass:["Performer"]},{name:"PotentialOwner",superClass:["HumanPerformer"]},{name:"GlobalUserTask",superClass:["GlobalTask"],properties:[{name:"implementation",isAttr:!0,type:"String"},{name:"renderings",type:"Rendering",isMany:!0}]},{name:"Gateway",isAbstract:!0,superClass:["FlowNode"],properties:[{name:"gatewayDirection",type:"GatewayDirection",default:"Unspecified",isAttr:!0}]},{name:"EventBasedGateway",superClass:["Gateway"],properties:[{name:"instantiate",default:!1,isAttr:!0,type:"Boolean"},{name:"eventGatewayType",type:"EventBasedGatewayType",isAttr:!0,default:"Exclusive"}]},{name:"ComplexGateway",superClass:["Gateway"],properties:[{name:"activationCondition",type:"Expression",xml:{serialize:"xsi:type"}},{name:"default",type:"SequenceFlow",isAttr:!0,isReference:!0}]},{name:"ExclusiveGateway",superClass:["Gateway"],properties:[{name:"default",type:"SequenceFlow",isAttr:!0,isReference:!0}]},{name:"InclusiveGateway",superClass:["Gateway"],properties:[{name:"default",type:"SequenceFlow",isAttr:!0,isReference:!0}]},{name:"ParallelGateway",superClass:["Gateway"]},{name:"RootElement",isAbstract:!0,superClass:["BaseElement"]},{name:"Relationship",superClass:["BaseElement"],properties:[{name:"type",isAttr:!0,type:"String"},{name:"direction",type:"RelationshipDirection",isAttr:!0},{name:"source",isMany:!0,isReference:!0,type:"Element"},{name:"target",isMany:!0,isReference:!0,type:"Element"}]},{name:"BaseElement",isAbstract:!0,properties:[{name:"id",isAttr:!0,type:"String",isId:!0},{name:"documentation",type:"Documentation",isMany:!0},{name:"extensionDefinitions",type:"ExtensionDefinition",isMany:!0,isReference:!0},{name:"extensionElements",type:"ExtensionElements"}]},{name:"Extension",properties:[{name:"mustUnderstand",default:!1,isAttr:!0,type:"Boolean"},{name:"definition",type:"ExtensionDefinition",isAttr:!0,isReference:!0}]},{name:"ExtensionDefinition",properties:[{name:"name",isAttr:!0,type:"String"},{name:"extensionAttributeDefinitions",type:"ExtensionAttributeDefinition",isMany:!0}]},{name:"ExtensionAttributeDefinition",properties:[{name:"name",isAttr:!0,type:"String"},{name:"type",isAttr:!0,type:"String"},{name:"isReference",default:!1,isAttr:!0,type:"Boolean"},{name:"extensionDefinition",type:"ExtensionDefinition",isAttr:!0,isReference:!0}]},{name:"ExtensionElements",properties:[{name:"valueRef",isAttr:!0,isReference:!0,type:"Element"},{name:"values",type:"Element",isMany:!0},{name:"extensionAttributeDefinition",type:"ExtensionAttributeDefinition",isAttr:!0,isReference:!0}]},{name:"Documentation",superClass:["BaseElement"],properties:[{name:"text",type:"String",isBody:!0},{name:"textFormat",default:"text/plain",isAttr:!0,type:"String"}]},{name:"Event",isAbstract:!0,superClass:["FlowNode","InteractionNode"],properties:[{name:"properties",type:"Property",isMany:!0}]},{name:"IntermediateCatchEvent",superClass:["CatchEvent"]},{name:"IntermediateThrowEvent",superClass:["ThrowEvent"]},{name:"EndEvent",superClass:["ThrowEvent"]},{name:"StartEvent",superClass:["CatchEvent"],properties:[{name:"isInterrupting",default:!0,isAttr:!0,type:"Boolean"}]},{name:"ThrowEvent",isAbstract:!0,superClass:["Event"],properties:[{name:"dataInputs",type:"DataInput",isMany:!0},{name:"dataInputAssociations",type:"DataInputAssociation",isMany:!0},{name:"inputSet",type:"InputSet"},{name:"eventDefinitions",type:"EventDefinition",isMany:!0},{name:"eventDefinitionRef",type:"EventDefinition",isMany:!0,isReference:!0}]},{name:"CatchEvent",isAbstract:!0,superClass:["Event"],properties:[{name:"parallelMultiple",isAttr:!0,type:"Boolean",default:!1},{name:"dataOutputs",type:"DataOutput",isMany:!0},{name:"dataOutputAssociations",type:"DataOutputAssociation",isMany:!0},{name:"outputSet",type:"OutputSet"},{name:"eventDefinitions",type:"EventDefinition",isMany:!0},{name:"eventDefinitionRef",type:"EventDefinition",isMany:!0,isReference:!0}]},{name:"BoundaryEvent",superClass:["CatchEvent"],properties:[{name:"cancelActivity",default:!0,isAttr:!0,type:"Boolean"},{name:"attachedToRef",type:"Activity",isAttr:!0,isReference:!0}]},{name:"EventDefinition",isAbstract:!0,superClass:["RootElement"]},{name:"CancelEventDefinition",superClass:["EventDefinition"]},{name:"ErrorEventDefinition",superClass:["EventDefinition"],properties:[{name:"errorRef",type:"Error",isAttr:!0,isReference:!0}]},{name:"TerminateEventDefinition",superClass:["EventDefinition"]},{name:"EscalationEventDefinition",superClass:["EventDefinition"],properties:[{name:"escalationRef",type:"Escalation",isAttr:!0,isReference:!0}]},{name:"Escalation",properties:[{name:"structureRef",type:"ItemDefinition",isAttr:!0,isReference:!0},{name:"name",isAttr:!0,type:"String"},{name:"escalationCode",isAttr:!0,type:"String"}],superClass:["RootElement"]},{name:"CompensateEventDefinition",superClass:["EventDefinition"],properties:[{name:"waitForCompletion",isAttr:!0,type:"Boolean",default:!0},{name:"activityRef",type:"Activity",isAttr:!0,isReference:!0}]},{name:"TimerEventDefinition",superClass:["EventDefinition"],properties:[{name:"timeDate",type:"Expression",xml:{serialize:"xsi:type"}},{name:"timeCycle",type:"Expression",xml:{serialize:"xsi:type"}},{name:"timeDuration",type:"Expression",xml:{serialize:"xsi:type"}}]},{name:"LinkEventDefinition",superClass:["EventDefinition"],properties:[{name:"name",isAttr:!0,type:"String"},{name:"target",type:"LinkEventDefinition",isReference:!0},{name:"source",type:"LinkEventDefinition",isMany:!0,isReference:!0}]},{name:"MessageEventDefinition",superClass:["EventDefinition"],properties:[{name:"messageRef",type:"Message",isAttr:!0,isReference:!0},{name:"operationRef",type:"Operation",isReference:!0}]},{name:"ConditionalEventDefinition",superClass:["EventDefinition"],properties:[{name:"condition",type:"Expression",xml:{serialize:"xsi:type"}}]},{name:"SignalEventDefinition",superClass:["EventDefinition"],properties:[{name:"signalRef",type:"Signal",isAttr:!0,isReference:!0}]},{name:"Signal",superClass:["RootElement"],properties:[{name:"structureRef",type:"ItemDefinition",isAttr:!0,isReference:!0},{name:"name",isAttr:!0,type:"String"}]},{name:"ImplicitThrowEvent",superClass:["ThrowEvent"]},{name:"DataState",superClass:["BaseElement"],properties:[{name:"name",isAttr:!0,type:"String"}]},{name:"ItemAwareElement",superClass:["BaseElement"],properties:[{name:"itemSubjectRef",type:"ItemDefinition",isAttr:!0,isReference:!0},{name:"dataState",type:"DataState"}]},{name:"DataAssociation",superClass:["BaseElement"],properties:[{name:"sourceRef",type:"ItemAwareElement",isMany:!0,isReference:!0},{name:"targetRef",type:"ItemAwareElement",isReference:!0},{name:"transformation",type:"FormalExpression",xml:{serialize:"property"}},{name:"assignment",type:"Assignment",isMany:!0}]},{name:"DataInput",superClass:["ItemAwareElement"],properties:[{name:"name",isAttr:!0,type:"String"},{name:"isCollection",default:!1,isAttr:!0,type:"Boolean"},{name:"inputSetRef",type:"InputSet",isMany:!0,isVirtual:!0,isReference:!0},{name:"inputSetWithOptional",type:"InputSet",isMany:!0,isVirtual:!0,isReference:!0},{name:"inputSetWithWhileExecuting",type:"InputSet",isMany:!0,isVirtual:!0,isReference:!0}]},{name:"DataOutput",superClass:["ItemAwareElement"],properties:[{name:"name",isAttr:!0,type:"String"},{name:"isCollection",default:!1,isAttr:!0,type:"Boolean"},{name:"outputSetRef",type:"OutputSet",isMany:!0,isVirtual:!0,isReference:!0},{name:"outputSetWithOptional",type:"OutputSet",isMany:!0,isVirtual:!0,isReference:!0},{name:"outputSetWithWhileExecuting",type:"OutputSet",isMany:!0,isVirtual:!0,isReference:!0}]},{name:"InputSet",superClass:["BaseElement"],properties:[{name:"name",isAttr:!0,type:"String"},{name:"dataInputRefs",type:"DataInput",isMany:!0,isReference:!0},{name:"optionalInputRefs",type:"DataInput",isMany:!0,isReference:!0},{name:"whileExecutingInputRefs",type:"DataInput",isMany:!0,isReference:!0},{name:"outputSetRefs",type:"OutputSet",isMany:!0,isReference:!0}]},{name:"OutputSet",superClass:["BaseElement"],properties:[{name:"dataOutputRefs",type:"DataOutput",isMany:!0,isReference:!0},{name:"name",isAttr:!0,type:"String"},{name:"inputSetRefs",type:"InputSet",isMany:!0,isReference:!0},{name:"optionalOutputRefs",type:"DataOutput",isMany:!0,isReference:!0},{name:"whileExecutingOutputRefs",type:"DataOutput",isMany:!0,isReference:!0}]},{name:"Property",superClass:["ItemAwareElement"],properties:[{name:"name",isAttr:!0,type:"String"}]},{name:"DataInputAssociation",superClass:["DataAssociation"]},{name:"DataOutputAssociation",superClass:["DataAssociation"]},{name:"InputOutputSpecification",superClass:["BaseElement"],properties:[{name:"dataInputs",type:"DataInput",isMany:!0},{name:"dataOutputs",type:"DataOutput",isMany:!0},{name:"inputSets",type:"InputSet",isMany:!0},{name:"outputSets",type:"OutputSet",isMany:!0}]},{name:"DataObject",superClass:["FlowElement","ItemAwareElement"],properties:[{name:"isCollection",default:!1,isAttr:!0,type:"Boolean"}]},{name:"InputOutputBinding",properties:[{name:"inputDataRef",type:"InputSet",isAttr:!0,isReference:!0},{name:"outputDataRef",type:"OutputSet",isAttr:!0,isReference:!0},{name:"operationRef",type:"Operation",isAttr:!0,isReference:!0}]},{name:"Assignment",superClass:["BaseElement"],properties:[{name:"from",type:"Expression",xml:{serialize:"xsi:type"}},{name:"to",type:"Expression",xml:{serialize:"xsi:type"}}]},{name:"DataStore",superClass:["RootElement","ItemAwareElement"],properties:[{name:"name",isAttr:!0,type:"String"},{name:"capacity",isAttr:!0,type:"Integer"},{name:"isUnlimited",default:!0,isAttr:!0,type:"Boolean"}]},{name:"DataStoreReference",superClass:["ItemAwareElement","FlowElement"],properties:[{name:"dataStoreRef",type:"DataStore",isAttr:!0,isReference:!0}]},{name:"DataObjectReference",superClass:["ItemAwareElement","FlowElement"],properties:[{name:"dataObjectRef",type:"DataObject",isAttr:!0,isReference:!0}]},{name:"ConversationLink",superClass:["BaseElement"],properties:[{name:"sourceRef",type:"InteractionNode",isAttr:!0,isReference:!0},{name:"targetRef",type:"InteractionNode",isAttr:!0,isReference:!0},{name:"name",isAttr:!0,type:"String"}]},{name:"ConversationAssociation",superClass:["BaseElement"],properties:[{name:"innerConversationNodeRef",type:"ConversationNode",isAttr:!0,isReference:!0},{name:"outerConversationNodeRef",type:"ConversationNode",isAttr:!0,isReference:!0}]},{name:"CallConversation",superClass:["ConversationNode"],properties:[{name:"calledCollaborationRef",type:"Collaboration",isAttr:!0,isReference:!0},{name:"participantAssociations",type:"ParticipantAssociation",isMany:!0}]},{name:"Conversation",superClass:["ConversationNode"]},{name:"SubConversation",superClass:["ConversationNode"],properties:[{name:"conversationNodes",type:"ConversationNode",isMany:!0}]},{name:"ConversationNode",isAbstract:!0,superClass:["InteractionNode","BaseElement"],properties:[{name:"name",isAttr:!0,type:"String"},{name:"participantRef",type:"Participant",isMany:!0,isReference:!0},{name:"messageFlowRefs",type:"MessageFlow",isMany:!0,isReference:!0},{name:"correlationKeys",type:"CorrelationKey",isMany:!0}]},{name:"GlobalConversation",superClass:["Collaboration"]},{name:"PartnerEntity",superClass:["RootElement"],properties:[{name:"name",isAttr:!0,type:"String"},{name:"participantRef",type:"Participant",isMany:!0,isReference:!0}]},{name:"PartnerRole",superClass:["RootElement"],properties:[{name:"name",isAttr:!0,type:"String"},{name:"participantRef",type:"Participant",isMany:!0,isReference:!0}]},{name:"CorrelationProperty",superClass:["RootElement"],properties:[{name:"correlationPropertyRetrievalExpression",type:"CorrelationPropertyRetrievalExpression",isMany:!0},{name:"name",isAttr:!0,type:"String"},{name:"type",type:"ItemDefinition",isAttr:!0,isReference:!0}]},{name:"Error",superClass:["RootElement"],properties:[{name:"structureRef",type:"ItemDefinition",isAttr:!0,isReference:!0},{name:"name",isAttr:!0,type:"String"},{name:"errorCode",isAttr:!0,type:"String"}]},{name:"CorrelationKey",superClass:["BaseElement"],properties:[{name:"correlationPropertyRef",type:"CorrelationProperty",isMany:!0,isReference:!0},{name:"name",isAttr:!0,type:"String"}]},{name:"Expression",superClass:["BaseElement"],isAbstract:!1,properties:[{name:"body",isBody:!0,type:"String"}]},{name:"FormalExpression",superClass:["Expression"],properties:[{name:"language",isAttr:!0,type:"String"},{name:"evaluatesToTypeRef",type:"ItemDefinition",isAttr:!0,isReference:!0}]},{name:"Message",superClass:["RootElement"],properties:[{name:"name",isAttr:!0,type:"String"},{name:"itemRef",type:"ItemDefinition",isAttr:!0,isReference:!0}]},{name:"ItemDefinition",superClass:["RootElement"],properties:[{name:"itemKind",type:"ItemKind",isAttr:!0},{name:"structureRef",isAttr:!0,type:"String"},{name:"isCollection",default:!1,isAttr:!0,type:"Boolean"},{name:"import",type:"Import",isAttr:!0,isReference:!0}]},{name:"FlowElement",isAbstract:!0,superClass:["BaseElement"],properties:[{name:"name",isAttr:!0,type:"String"},{name:"auditing",type:"Auditing"},{name:"monitoring",type:"Monitoring"},{name:"categoryValueRef",type:"CategoryValue",isMany:!0,isReference:!0}]},{name:"SequenceFlow",superClass:["FlowElement"],properties:[{name:"isImmediate",isAttr:!0,type:"Boolean"},{name:"conditionExpression",type:"Expression",xml:{serialize:"xsi:type"}},{name:"sourceRef",type:"FlowNode",isAttr:!0,isReference:!0},{name:"targetRef",type:"FlowNode",isAttr:!0,isReference:!0}]},{name:"FlowElementsContainer",isAbstract:!0,superClass:["BaseElement"],properties:[{name:"laneSets",type:"LaneSet",isMany:!0},{name:"flowElements",type:"FlowElement",isMany:!0}]},{name:"CallableElement",isAbstract:!0,superClass:["RootElement"],properties:[{name:"name",isAttr:!0,type:"String"},{name:"ioSpecification",type:"InputOutputSpecification",xml:{serialize:"property"}},{name:"supportedInterfaceRef",type:"Interface",isMany:!0,isReference:!0},{name:"ioBinding",type:"InputOutputBinding",isMany:!0,xml:{serialize:"property"}}]},{name:"FlowNode",isAbstract:!0,superClass:["FlowElement"],properties:[{name:"incoming",type:"SequenceFlow",isMany:!0,isReference:!0},{name:"outgoing",type:"SequenceFlow",isMany:!0,isReference:!0},{name:"lanes",type:"Lane",isMany:!0,isVirtual:!0,isReference:!0}]},{name:"CorrelationPropertyRetrievalExpression",superClass:["BaseElement"],properties:[{name:"messagePath",type:"FormalExpression"},{name:"messageRef",type:"Message",isAttr:!0,isReference:!0}]},{name:"CorrelationPropertyBinding",superClass:["BaseElement"],properties:[{name:"dataPath",type:"FormalExpression"},{name:"correlationPropertyRef",type:"CorrelationProperty",isAttr:!0,isReference:!0}]},{name:"Resource",superClass:["RootElement"],properties:[{name:"name",isAttr:!0,type:"String"},{name:"resourceParameters",type:"ResourceParameter",isMany:!0}]},{name:"ResourceParameter",superClass:["BaseElement"],properties:[{name:"name",isAttr:!0,type:"String"},{name:"isRequired",isAttr:!0,type:"Boolean"},{name:"type",type:"ItemDefinition",isAttr:!0,isReference:!0}]},{name:"CorrelationSubscription",superClass:["BaseElement"],properties:[{name:"correlationKeyRef",type:"CorrelationKey",isAttr:!0,isReference:!0},{name:"correlationPropertyBinding",type:"CorrelationPropertyBinding",isMany:!0}]},{name:"MessageFlow",superClass:["BaseElement"],properties:[{name:"name",isAttr:!0,type:"String"},{name:"sourceRef",type:"InteractionNode",isAttr:!0,isReference:!0},{name:"targetRef",type:"InteractionNode",isAttr:!0,isReference:!0},{name:"messageRef",type:"Message",isAttr:!0,isReference:!0}]},{name:"MessageFlowAssociation",superClass:["BaseElement"],properties:[{name:"innerMessageFlowRef",type:"MessageFlow",isAttr:!0,isReference:!0},{name:"outerMessageFlowRef",type:"MessageFlow",isAttr:!0,isReference:!0}]},{name:"InteractionNode",isAbstract:!0,properties:[{name:"incomingConversationLinks",type:"ConversationLink",isMany:!0,isVirtual:!0,isReference:!0},{name:"outgoingConversationLinks",type:"ConversationLink",isMany:!0,isVirtual:!0,isReference:!0}]},{name:"Participant",superClass:["InteractionNode","BaseElement"],properties:[{name:"name",isAttr:!0,type:"String"},{name:"interfaceRef",type:"Interface",isMany:!0,isReference:!0},{name:"participantMultiplicity",type:"ParticipantMultiplicity"},{name:"endPointRefs",type:"EndPoint",isMany:!0,isReference:!0},{name:"processRef",type:"Process",isAttr:!0,isReference:!0}]},{name:"ParticipantAssociation",superClass:["BaseElement"],properties:[{name:"innerParticipantRef",type:"Participant",isAttr:!0,isReference:!0},{name:"outerParticipantRef",type:"Participant",isAttr:!0,isReference:!0}]},{name:"ParticipantMultiplicity",properties:[{name:"minimum",default:0,isAttr:!0,type:"Integer"},{name:"maximum",default:1,isAttr:!0,type:"Integer"}],superClass:["BaseElement"]},{name:"Collaboration",superClass:["RootElement"],properties:[{name:"name",isAttr:!0,type:"String"},{name:"isClosed",isAttr:!0,type:"Boolean"},{name:"participants",type:"Participant",isMany:!0},{name:"messageFlows",type:"MessageFlow",isMany:!0},{name:"artifacts",type:"Artifact",isMany:!0},{name:"conversations",type:"ConversationNode",isMany:!0},{name:"conversationAssociations",type:"ConversationAssociation"},{name:"participantAssociations",type:"ParticipantAssociation",isMany:!0},{name:"messageFlowAssociations",type:"MessageFlowAssociation",isMany:!0},{name:"correlationKeys",type:"CorrelationKey",isMany:!0},{name:"choreographyRef",type:"Choreography",isMany:!0,isReference:!0},{name:"conversationLinks",type:"ConversationLink",isMany:!0}]},{name:"ChoreographyActivity",isAbstract:!0,superClass:["FlowNode"],properties:[{name:"participantRef",type:"Participant",isMany:!0,isReference:!0},{name:"initiatingParticipantRef",type:"Participant",isAttr:!0,isReference:!0},{name:"correlationKeys",type:"CorrelationKey",isMany:!0},{name:"loopType",type:"ChoreographyLoopType",default:"None",isAttr:!0}]},{name:"CallChoreography",superClass:["ChoreographyActivity"],properties:[{name:"calledChoreographyRef",type:"Choreography",isAttr:!0,isReference:!0},{name:"participantAssociations",type:"ParticipantAssociation",isMany:!0}]},{name:"SubChoreography",superClass:["ChoreographyActivity","FlowElementsContainer"],properties:[{name:"artifacts",type:"Artifact",isMany:!0}]},{name:"ChoreographyTask",superClass:["ChoreographyActivity"],properties:[{name:"messageFlowRef",type:"MessageFlow",isMany:!0,isReference:!0}]},{name:"Choreography",superClass:["Collaboration","FlowElementsContainer"]},{name:"GlobalChoreographyTask",superClass:["Choreography"],properties:[{name:"initiatingParticipantRef",type:"Participant",isAttr:!0,isReference:!0}]},{name:"TextAnnotation",superClass:["Artifact"],properties:[{name:"text",type:"String"},{name:"textFormat",default:"text/plain",isAttr:!0,type:"String"}]},{name:"Group",superClass:["Artifact"],properties:[{name:"categoryValueRef",type:"CategoryValue",isAttr:!0,isReference:!0}]},{name:"Association",superClass:["Artifact"],properties:[{name:"associationDirection",type:"AssociationDirection",isAttr:!0},{name:"sourceRef",type:"BaseElement",isAttr:!0,isReference:!0},{name:"targetRef",type:"BaseElement",isAttr:!0,isReference:!0}]},{name:"Category",superClass:["RootElement"],properties:[{name:"categoryValue",type:"CategoryValue",isMany:!0},{name:"name",isAttr:!0,type:"String"}]},{name:"Artifact",isAbstract:!0,superClass:["BaseElement"]},{name:"CategoryValue",superClass:["BaseElement"],properties:[{name:"categorizedFlowElements",type:"FlowElement",isMany:!0,isVirtual:!0,isReference:!0},{name:"value",isAttr:!0,type:"String"}]},{name:"Activity",isAbstract:!0,superClass:["FlowNode"],properties:[{name:"isForCompensation",default:!1,isAttr:!0,type:"Boolean"},{name:"default",type:"SequenceFlow",isAttr:!0,isReference:!0},{name:"ioSpecification",type:"InputOutputSpecification",xml:{serialize:"property"}},{name:"boundaryEventRefs",type:"BoundaryEvent",isMany:!0,isReference:!0},{name:"properties",type:"Property",isMany:!0},{name:"dataInputAssociations",type:"DataInputAssociation",isMany:!0},{name:"dataOutputAssociations",type:"DataOutputAssociation",isMany:!0},{name:"startQuantity",default:1,isAttr:!0,type:"Integer"},{name:"resources",type:"ResourceRole",isMany:!0},{name:"completionQuantity",default:1,isAttr:!0,type:"Integer"},{name:"loopCharacteristics",type:"LoopCharacteristics"}]},{name:"ServiceTask",superClass:["Task"],properties:[{name:"implementation",isAttr:!0,type:"String"},{name:"operationRef",type:"Operation",isAttr:!0,isReference:!0}]},{name:"SubProcess",superClass:["Activity","FlowElementsContainer","InteractionNode"],properties:[{name:"triggeredByEvent",default:!1,isAttr:!0,type:"Boolean"},{name:"artifacts",type:"Artifact",isMany:!0}]},{name:"LoopCharacteristics",isAbstract:!0,superClass:["BaseElement"]},{name:"MultiInstanceLoopCharacteristics",superClass:["LoopCharacteristics"],properties:[{name:"isSequential",default:!1,isAttr:!0,type:"Boolean"},{name:"behavior",type:"MultiInstanceBehavior",default:"All",isAttr:!0},{name:"loopCardinality",type:"Expression",xml:{serialize:"xsi:type"}},{name:"loopDataInputRef",type:"ItemAwareElement",isReference:!0},{name:"loopDataOutputRef",type:"ItemAwareElement",isReference:!0},{name:"inputDataItem",type:"DataInput",xml:{serialize:"property"}},{name:"outputDataItem",type:"DataOutput",xml:{serialize:"property"}},{name:"complexBehaviorDefinition",type:"ComplexBehaviorDefinition",isMany:!0},{name:"completionCondition",type:"Expression",xml:{serialize:"xsi:type"}},{name:"oneBehaviorEventRef",type:"EventDefinition",isAttr:!0,isReference:!0},{name:"noneBehaviorEventRef",type:"EventDefinition",isAttr:!0,isReference:!0}]},{name:"StandardLoopCharacteristics",superClass:["LoopCharacteristics"],properties:[{name:"testBefore",default:!1,isAttr:!0,type:"Boolean"},{name:"loopCondition",type:"Expression",xml:{serialize:"xsi:type"}},{name:"loopMaximum",type:"Integer",isAttr:!0}]},{name:"CallActivity",superClass:["Activity","InteractionNode"],properties:[{name:"calledElement",type:"String",isAttr:!0}]},{name:"Task",superClass:["Activity","InteractionNode"]},{name:"SendTask",superClass:["Task"],properties:[{name:"implementation",isAttr:!0,type:"String"},{name:"operationRef",type:"Operation",isAttr:!0,isReference:!0},{name:"messageRef",type:"Message",isAttr:!0,isReference:!0}]},{name:"ReceiveTask",superClass:["Task"],properties:[{name:"implementation",isAttr:!0,type:"String"},{name:"instantiate",default:!1,isAttr:!0,type:"Boolean"},{name:"operationRef",type:"Operation",isAttr:!0,isReference:!0},{name:"messageRef",type:"Message",isAttr:!0,isReference:!0}]},{name:"ScriptTask",superClass:["Task"],properties:[{name:"scriptFormat",isAttr:!0,type:"String"},{name:"script",type:"String"}]},{name:"BusinessRuleTask",superClass:["Task"],properties:[{name:"implementation",isAttr:!0,type:"String"}]},{name:"AdHocSubProcess",superClass:["SubProcess"],properties:[{name:"completionCondition",type:"Expression",xml:{serialize:"xsi:type"}},{name:"ordering",type:"AdHocOrdering",isAttr:!0},{name:"cancelRemainingInstances",default:!0,isAttr:!0,type:"Boolean"}]},{name:"Transaction",superClass:["SubProcess"],properties:[{name:"protocol",isAttr:!0,type:"String"},{name:"method",isAttr:!0,type:"String"}]},{name:"GlobalScriptTask",superClass:["GlobalTask"],properties:[{name:"scriptLanguage",isAttr:!0,type:"String"},{name:"script",isAttr:!0,type:"String"}]},{name:"GlobalBusinessRuleTask",superClass:["GlobalTask"],properties:[{name:"implementation",isAttr:!0,type:"String"}]},{name:"ComplexBehaviorDefinition",superClass:["BaseElement"],properties:[{name:"condition",type:"FormalExpression"},{name:"event",type:"ImplicitThrowEvent"}]},{name:"ResourceRole",superClass:["BaseElement"],properties:[{name:"resourceRef",type:"Resource",isReference:!0},{name:"resourceParameterBindings",type:"ResourceParameterBinding",isMany:!0},{name:"resourceAssignmentExpression",type:"ResourceAssignmentExpression"},{name:"name",isAttr:!0,type:"String"}]},{name:"ResourceParameterBinding",properties:[{name:"expression",type:"Expression",xml:{serialize:"xsi:type"}},{name:"parameterRef",type:"ResourceParameter",isAttr:!0,isReference:!0}],superClass:["BaseElement"]},{name:"ResourceAssignmentExpression",properties:[{name:"expression",type:"Expression",xml:{serialize:"xsi:type"}}],superClass:["BaseElement"]},{name:"Import",properties:[{name:"importType",isAttr:!0,type:"String"},{name:"location",isAttr:!0,type:"String"},{name:"namespace",isAttr:!0,type:"String"}]},{name:"Definitions",superClass:["BaseElement"],properties:[{name:"name",isAttr:!0,type:"String"},{name:"targetNamespace",isAttr:!0,type:"String"},{name:"expressionLanguage",default:"http://www.w3.org/1999/XPath",isAttr:!0,type:"String"},{name:"typeLanguage",default:"http://www.w3.org/2001/XMLSchema",isAttr:!0,type:"String"},{name:"imports",type:"Import",isMany:!0},{name:"extensions",type:"Extension",isMany:!0},{name:"rootElements",type:"RootElement",isMany:!0},{name:"diagrams",isMany:!0,type:"bpmndi:BPMNDiagram"},{name:"exporter",isAttr:!0,type:"String"},{name:"relationships",type:"Relationship",isMany:!0},{name:"exporterVersion",isAttr:!0,type:"String"}]}],enumerations:[{name:"ProcessType",literalValues:[{name:"None"},{name:"Public"},{name:"Private"}]},{name:"GatewayDirection",literalValues:[{name:"Unspecified"},{name:"Converging"},{name:"Diverging"},{name:"Mixed"}]},{name:"EventBasedGatewayType",literalValues:[{name:"Parallel"},{name:"Exclusive"}]},{name:"RelationshipDirection",literalValues:[{name:"None"},{name:"Forward"},{name:"Backward"},{name:"Both"}]},{name:"ItemKind",literalValues:[{name:"Physical"},{name:"Information"}]},{name:"ChoreographyLoopType",literalValues:[{name:"None"},{name:"Standard"},{name:"MultiInstanceSequential"},{name:"MultiInstanceParallel"}]},{name:"AssociationDirection",literalValues:[{name:"None"},{name:"One"},{name:"Both"}]},{name:"MultiInstanceBehavior",literalValues:[{name:"None"},{name:"One"},{name:"All"},{name:"Complex"}]},{name:"AdHocOrdering",literalValues:[{name:"Parallel"},{name:"Sequential"}]}],xml:{tagAlias:"lowerCase",typePrefix:"t"}},bpmndi:{name:"BPMNDI",uri:"http://www.omg.org/spec/BPMN/20100524/DI",prefix:"bpmndi",types:[{name:"BPMNDiagram",properties:[{name:"plane",type:"BPMNPlane",redefines:"di:Diagram#rootElement"},{name:"labelStyle",type:"BPMNLabelStyle",isMany:!0}],superClass:["di:Diagram"]},{name:"BPMNPlane",properties:[{name:"bpmnElement",isAttr:!0,isReference:!0,type:"bpmn:BaseElement",redefines:"di:DiagramElement#modelElement"}],superClass:["di:Plane"]},{name:"BPMNShape",properties:[{name:"bpmnElement",isAttr:!0,isReference:!0,type:"bpmn:BaseElement",redefines:"di:DiagramElement#modelElement"},{name:"isHorizontal",isAttr:!0,type:"Boolean"},{name:"isExpanded",isAttr:!0,type:"Boolean"},{name:"isMarkerVisible",isAttr:!0,type:"Boolean"},{name:"label",type:"BPMNLabel"},{name:"isMessageVisible",isAttr:!0,type:"Boolean"},{name:"participantBandKind",type:"ParticipantBandKind",isAttr:!0},{name:"choreographyActivityShape",type:"BPMNShape",isAttr:!0,isReference:!0}],superClass:["di:LabeledShape"]},{name:"BPMNEdge",properties:[{name:"label",type:"BPMNLabel"},{name:"bpmnElement",isAttr:!0,isReference:!0,type:"bpmn:BaseElement",redefines:"di:DiagramElement#modelElement"},{name:"sourceElement",isAttr:!0,isReference:!0,type:"di:DiagramElement",redefines:"di:Edge#source"},{name:"targetElement",isAttr:!0,isReference:!0,type:"di:DiagramElement",redefines:"di:Edge#target"},{name:"messageVisibleKind",type:"MessageVisibleKind",isAttr:!0,default:"initiating"}],superClass:["di:LabeledEdge"]},{name:"BPMNLabel",properties:[{name:"labelStyle",type:"BPMNLabelStyle",isAttr:!0,isReference:!0,redefines:"di:DiagramElement#style"}],superClass:["di:Label"]},{name:"BPMNLabelStyle",properties:[{name:"font",type:"dc:Font"}],superClass:["di:Style"]}],enumerations:[{name:"ParticipantBandKind",literalValues:[{name:"top_initiating"},{name:"middle_initiating"},{name:"bottom_initiating"},{name:"top_non_initiating"},{name:"middle_non_initiating"},{name:"bottom_non_initiating"}]},{name:"MessageVisibleKind",literalValues:[{name:"initiating"},{name:"non_initiating"}]}],associations:[]},dc:{name:"DC",uri:"http://www.omg.org/spec/DD/20100524/DC",prefix:"dc",types:[{name:"Boolean"},{name:"Integer"},{name:"Real"},{name:"String"},{name:"Font",properties:[{name:"name",type:"String",isAttr:!0},{name:"size",type:"Real",isAttr:!0},{name:"isBold",type:"Boolean",isAttr:!0},{name:"isItalic",type:"Boolean",isAttr:!0},{name:"isUnderline",type:"Boolean",isAttr:!0},{name:"isStrikeThrough",type:"Boolean",isAttr:!0}]},{name:"Point",properties:[{name:"x",type:"Real",default:"0",isAttr:!0},{name:"y",type:"Real",default:"0",isAttr:!0}]},{name:"Bounds",properties:[{name:"x",type:"Real",default:"0",isAttr:!0},{name:"y",type:"Real",default:"0",isAttr:!0},{name:"width",type:"Real",isAttr:!0},{name:"height",type:"Real",isAttr:!0}]}],associations:[]},di:{name:"DI",uri:"http://www.omg.org/spec/DD/20100524/DI",prefix:"di",types:[{name:"DiagramElement",isAbstract:!0,properties:[{name:"id",isAttr:!0,isId:!0,type:"String"},{name:"extension",type:"Extension"},{name:"owningDiagram",type:"Diagram",isReadOnly:!0,isVirtual:!0,isReference:!0},{name:"owningElement",type:"DiagramElement",isReadOnly:!0,isVirtual:!0,isReference:!0},{name:"modelElement",isReadOnly:!0,isVirtual:!0,isReference:!0,type:"Element"},{name:"style",type:"Style",isReadOnly:!0,isVirtual:!0,isReference:!0},{name:"ownedElement",type:"DiagramElement",isReadOnly:!0,isMany:!0,isVirtual:!0}]},{name:"Node",isAbstract:!0,superClass:["DiagramElement"]},{name:"Edge",isAbstract:!0,superClass:["DiagramElement"],properties:[{name:"source",type:"DiagramElement",isReadOnly:!0,isVirtual:!0,isReference:!0},{name:"target",type:"DiagramElement",isReadOnly:!0,isVirtual:!0,isReference:!0},{name:"waypoint",isUnique:!1,isMany:!0,type:"dc:Point",xml:{serialize:"xsi:type"}}]},{name:"Diagram",isAbstract:!0,properties:[{name:"id",isAttr:!0,isId:!0,type:"String"},{name:"rootElement",type:"DiagramElement",isReadOnly:!0,isVirtual:!0},{name:"name",isAttr:!0,type:"String"},{name:"documentation",isAttr:!0,type:"String"},{name:"resolution",isAttr:!0,type:"Real"},{name:"ownedStyle",type:"Style",isReadOnly:!0,isMany:!0,isVirtual:!0}]},{name:"Shape",isAbstract:!0,superClass:["Node"],properties:[{name:"bounds",type:"dc:Bounds"}]},{name:"Plane",isAbstract:!0,superClass:["Node"],properties:[{name:"planeElement",type:"DiagramElement",subsettedProperty:"DiagramElement-ownedElement",isMany:!0}]},{name:"LabeledEdge",isAbstract:!0,superClass:["Edge"],properties:[{name:"ownedLabel",type:"Label",isReadOnly:!0,subsettedProperty:"DiagramElement-ownedElement",isMany:!0,isVirtual:!0}]},{name:"LabeledShape",isAbstract:!0,superClass:["Shape"],properties:[{name:"ownedLabel",type:"Label",isReadOnly:!0,subsettedProperty:"DiagramElement-ownedElement",isMany:!0,isVirtual:!0}]},{name:"Label",isAbstract:!0,superClass:["Node"],properties:[{name:"bounds",type:"dc:Bounds"}]},{name:"Style",isAbstract:!0,properties:[{name:"id",isAttr:!0,isId:!0,type:"String"}]},{name:"Extension",properties:[{name:"values",isMany:!0,type:"Element"}]}],associations:[],xml:{tagAlias:"lowerCase"}},bioc:{name:"bpmn.io colors for BPMN",uri:"http://bpmn.io/schema/bpmn/biocolor/1.0",prefix:"bioc",types:[{name:"ColoredShape",extends:["bpmndi:BPMNShape"],properties:[{name:"stroke",isAttr:!0,type:"String"},{name:"fill",isAttr:!0,type:"String"}]},{name:"ColoredEdge",extends:["bpmndi:BPMNEdge"],properties:[{name:"stroke",isAttr:!0,type:"String"},{name:"fill",isAttr:!0,type:"String"}]}],enumerations:[],associations:[]},color:{name:"BPMN in Color",uri:"http://www.omg.org/spec/BPMN/non-normative/color/1.0",prefix:"color",types:[{name:"ColoredLabel",extends:["bpmndi:BPMNLabel"],properties:[{name:"color",isAttr:!0,type:"String"}]},{name:"ColoredShape",extends:["bpmndi:BPMNShape"],properties:[{name:"background-color",isAttr:!0,type:"String"},{name:"border-color",isAttr:!0,type:"String"}]},{name:"ColoredEdge",extends:["bpmndi:BPMNEdge"],properties:[{name:"border-color",isAttr:!0,type:"String"}]}],enumerations:[],associations:[]}};function ko(e,t){return new _o(Wi({},Ao,e),t)}var So="Tried to access di from the businessObject. The di is available through the diagram element only. For more information, see https://github.com/bpmn-io/bpmn-js/issues/1472";function Ro(e,t){return e.$instanceOf(t)}function Co(e){var t={},n=[],i={};function s(e,t){return function(n){e(n,t)}}function p(e){t[e.id]=e}function c(t,n){try{var r=i[t.id]&&function(t,n){if(t.gfx)throw new Error(`already rendered ${tn(t)}`);return e.element(t,i[t.id],n)}(t,n);return p(t),r}catch(e){u(e.message,{element:t,error:e}),console.error(`failed to import ${tn(t)}`,e)}}function u(t,n){e.error(t,n)}var f=this.registerDi=function(e){var t,n=e.bpmnElement;n?i[n.id]?u(`multiple DI elements defined for ${tn(n)}`,{element:n}):(i[n.id]=e,r(t=n,"di")||Object.defineProperty(t,"di",{enumerable:!1,get:function(){throw new Error(So)}})):u(`no bpmnElement referenced in ${tn(e)}`,{element:e})};function h(e){var t;t=e.plane,f(t),a(t.planeElement,m)}function m(e){f(e)}this.handleDefinitions=function(r,p){var c=r.diagrams;if(p&&-1===c.indexOf(p))throw new Error("diagram not part of <bpmn:Definitions />");if(!p&&c&&c.length&&(p=c[0]),!p)throw new Error("no diagram to display");i={},h(p);var m=p.plane;if(!m)throw new Error(`no plane for ${tn(p)}`);var v=m.bpmnElement;if(!v){if(v=function(e){return o(e.rootElements,(function(e){return Ro(e,"bpmn:Process")||Ro(e,"bpmn:Collaboration")}))}(r),!v)throw new Error("no process or collaboration to display");u(`correcting missing bpmnElement on ${tn(m)} to ${tn(v)}`),m.bpmnElement=v,f(m)}var b,x,w=function(t,n){return e.root(t,i[t.id],n)}(v,m);if(Ro(v,"bpmn:Process")||Ro(v,"bpmn:SubProcess"))y(v,w);else{if(!Ro(v,"bpmn:Collaboration"))throw new Error(`unsupported bpmnElement for ${tn(m)}: ${tn(v)}`);x=w,a((b=v).participants,s(P,x)),n.push((function(){!function(e,t){a(e,s(g,t))}(b.messageFlows,x)})),E(b.artifacts,x),function(e,n){var i=function(e,t){const n=l(t);let i=[];return a(e,(function(e,t){n(e,t)&&i.push(e)})),i}(e,(function(e){return!t[e.id]&&Ro(e,"bpmn:Process")&&e.laneSets}));i.forEach(s(y,n))}(r.rootElements,w)}d(n)};var d=this.handleDeferred=function(){for(;n.length;)n.shift()()};function y(e,t){M(e,t),_(e.ioSpecification,t),E(e.artifacts,t),p(e)}function g(e,t){c(e,t)}function v(e,t){c(e,t)}function b(e,t){c(e,t)}function x(e,t){c(e,t)}function w(e,t){c(e,t)}function E(e,t){a(e,(function(e){Ro(e,"bpmn:Association")?n.push((function(){w(e,t)})):w(e,t)}))}function _(e,t){e&&(a(e.dataInputs,s(b,t)),a(e.dataOutputs,s(x,t)))}var A=this.handleSubProcess=function(e,t){M(e,t),E(e.artifacts,t)};function k(e,t){var i=c(e,t);Ro(e,"bpmn:SubProcess")&&A(e,i||t),Ro(e,"bpmn:Activity")&&_(e.ioSpecification,t),n.push((function(){a(e.dataInputAssociations,s(v,t)),a(e.dataOutputAssociations,s(v,t))}))}function S(e,t){c(e,t)}function R(e,t){n.push((function(){var n=c(e,t);e.childLaneSet&&C(e.childLaneSet,n||t),function(e){a(e.flowNodeRef,(function(t){var n=t.get("lanes");n&&n.push(e)}))}(e)}))}function C(e,t){a(e.lanes,s(R,t))}function M(e,t){!function(e,t){a(e,(function(e){Ro(e,"bpmn:SequenceFlow")?n.push((function(){!function(e,t){c(e,t)}(e,t)})):Ro(e,"bpmn:BoundaryEvent")?n.unshift((function(){k(e,t)})):Ro(e,"bpmn:FlowNode")?k(e,t):Ro(e,"bpmn:DataObject")||(Ro(e,"bpmn:DataStoreReference")||Ro(e,"bpmn:DataObjectReference")?S(e,t):u(`unrecognized flowElement ${tn(e)} in context ${tn(t&&t.businessObject)}`,{element:e,context:t}))}))}(e.flowElements,t),e.laneSets&&function(e,t){a(e,s(C,t))}(e.laneSets,t)}function P(e,t){var n=c(e,t),i=e.processRef;i&&y(i,n||t)}}function Mo(e,t,n){var i,r,s,l=[];function p(e,t){var n=new Co({root:function(e,t){return i.add(e,t)},element:function(e,t,n){return i.add(e,t,n)},error:function(e,t){l.push({message:e,context:t})}});t=t||e.diagrams&&e.diagrams[0];var r=function(e,t){if(!t||!t.plane)return;var n,i=t.plane.bpmnElement,r=i;m(i,"bpmn:Process")||m(i,"bpmn:Collaboration")||(r=function(e){var t=e;for(;t;){if(m(t,"bpmn:Process"))return t;t=t.$parent}}(i));n=m(r,"bpmn:Collaboration")?r:o(e.rootElements,(function(e){if(m(e,"bpmn:Collaboration"))return o(e.participants,(function(e){return e.processRef===r}))}));var s=[r];n&&(s=function(e,t){let n=[];return a(e,(function(e,i){n.push(t(e,i))})),n}(n.participants,(function(e){return e.processRef}))).push(n);var l=Po(s),p=[t],c=[i];return a(e.diagrams,(function(e){if(e.plane){var t=e.plane.bpmnElement;-1!==l.indexOf(t)&&-1===c.indexOf(t)&&(p.push(e),c.push(t))}})),p}(e,t);if(!r)throw new Error("no diagram to display");a(r,(function(t){n.handleDefinitions(e,t)}));var p=t.plane.bpmnElement.id;s.setRootElement(s.findRoot(p+"_plane")||s.findRoot(p))}return new Promise((function(o,a){try{return i=e.get("bpmnImporter"),r=e.get("eventBus"),s=e.get("canvas"),r.fire("import.render.start",{definitions:t}),p(t,n),r.fire("import.render.complete",{error:undefined,warnings:l}),o({warnings:l})}catch(e){return e.warnings=l,a(e)}}))}function Po(e){var t=[];return a(e,(function(e){e&&(t.push(e),t=t.concat(Po(e.flowElements)))})),t}var Do,No='<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 14.02 5.57" width="53" height="21"><path fill="currentColor" d="M1.88.92v.14c0 .41-.13.68-.4.8.33.14.46.44.46.86v.33c0 .61-.33.95-.95.95H0V0h.95c.65 0 .93.3.93.92zM.63.57v1.06h.24c.24 0 .38-.1.38-.43V.98c0-.28-.1-.4-.32-.4zm0 1.63v1.22h.36c.2 0 .32-.1.32-.39v-.35c0-.37-.12-.48-.4-.48H.63zM4.18.99v.52c0 .64-.31.98-.94.98h-.3V4h-.62V0h.92c.63 0 .94.35.94.99zM2.94.57v1.35h.3c.2 0 .3-.09.3-.37v-.6c0-.29-.1-.38-.3-.38h-.3zm2.89 2.27L6.25 0h.88v4h-.6V1.12L6.1 3.99h-.6l-.46-2.82v2.82h-.55V0h.87zM8.14 1.1V4h-.56V0h.79L9 2.4V0h.56v4h-.64zm2.49 2.29v.6h-.6v-.6zM12.12 1c0-.63.33-1 .95-1 .61 0 .95.37.95 1v2.04c0 .64-.34 1-.95 1-.62 0-.95-.37-.95-1zm.62 2.08c0 .28.13.39.33.39s.32-.1.32-.4V.98c0-.29-.12-.4-.32-.4s-.33.11-.33.4z"/><path fill="currentColor" d="M0 4.53h14.02v1.04H0zM11.08 0h.63v.62h-.63zm.63 4V1h-.63v2.98z"/></svg>',To={verticalAlign:"middle"},Oo={color:"#404040"},Bo={zIndex:"1001",position:"fixed",top:"0",left:"0",right:"0",bottom:"0"},Lo={width:"100%",height:"100%",background:"rgba(40,40,40,0.2)"},Io={position:"absolute",left:"50%",top:"40%",transform:"translate(-50%)",width:"260px",padding:"10px",background:"white",boxShadow:"0 1px 4px rgba(0,0,0,0.3)",fontFamily:"Helvetica, Arial, sans-serif",fontSize:"14px",display:"flex",lineHeight:"1.3"},jo='<div class="bjs-powered-by-lightbox"><div class="backdrop"></div><div class="notice"><a href="https://bpmn.io" target="_blank" rel="noopener" class="link">'+No+'</a><span>Web-based tooling for BPMN, DMN and forms powered by <a href="https://bpmn.io" target="_blank" rel="noopener">bpmn.io</a>.</span></div></div>';function Fo(){Do||(Fe(Do=tt(jo),Bo),Fe(nt("svg",Do),To),Fe(nt(".backdrop",Do),Lo),Fe(nt(".notice",Do),Io),Fe(nt(".link",Do),Oo,{margin:"15px 20px 15px 10px",alignSelf:"center"}),Ze.bind(Do,".backdrop","click",(function(e){document.body.removeChild(Do)}))),document.body.appendChild(Do)}function Vo(e){e=u({},$o,e),this._moddle=this._createModdle(e),this._container=this._createContainer(e),this._init(this._container,this._moddle,e),function(e){const t=tt('<a href="http://bpmn.io" target="_blank" class="bjs-powered-by" title="Powered by bpmn.io" >'+No+"</a>");Fe(nt("svg",t),To),Fe(t,Oo,{position:"absolute",bottom:"15px",right:"15px",zIndex:"100"}),e.appendChild(t),qe.bind(t,"click",(function(e){Fo(),e.preventDefault()}))}(this._container)}function Wo(e,t){return e.warnings=t,e}e(Vo,Fi),Vo.prototype.importXML=async function(e,t){const n=this;let i=[];try{let o;e=this._emit("import.parse.start",{xml:e})||e;try{o=await this._moddle.fromXML(e,"bpmn:Definitions")}catch(e){throw this._emit("import.parse.complete",{error:e}),e}let a=o.rootElement;const s=o.references,l=o.warnings,p=o.elementsById;i=i.concat(l),a=this._emit("import.parse.complete",(r={error:null,definitions:a,elementsById:p,references:s,warnings:i},n.get("eventBus").createEvent(r)))||a;const c=await this.importDefinitions(a,t);return i=i.concat(c.warnings),this._emit("import.done",{error:null,warnings:i}),{warnings:i}}catch(e){let t=e;throw i=i.concat(t.warnings||[]),Wo(t,i),t=function(e){const t=/unparsable content <([^>]+)> detected([\s\S]*)$/.exec(e.message);t&&(e.message="unparsable content <"+t[1]+"> detected; this may indicate an invalid BPMN 2.0 diagram file"+t[2]);return e}(t),this._emit("import.done",{error:t,warnings:t.warnings}),t}var r},Vo.prototype.importDefinitions=async function(e,t){this._setDefinitions(e);return{warnings:(await this.open(t)).warnings}},Vo.prototype.open=async function(e){const t=this._definitions;let n=e;if(!t){const e=new Error("no XML imported");throw Wo(e,[]),e}if("string"==typeof e&&(n=function(e,t){if(!t)return null;return o(e.diagrams,(function(e){return e.id===t}))||null}(t,e),!n)){const t=new Error("BPMNDiagram <"+e+"> not found");throw Wo(t,[]),t}try{this.clear()}catch(e){throw Wo(e,[]),e}const{warnings:i}=await Mo(this,t,n);return{warnings:i}},Vo.prototype.saveXML=async function(e){e=e||{};let t,n,i=this._definitions;try{if(!i)throw new Error("no definitions loaded");i=this._emit("saveXML.start",{definitions:i})||i;n=(await this._moddle.toXML(i,e)).xml,n=this._emit("saveXML.serialized",{xml:n})||n}catch(e){t=e}const r=t?{error:t}:{xml:n};if(this._emit("saveXML.done",r),t)throw t;return r},Vo.prototype.saveSVG=async function(){let e,t;this._emit("saveSVG.start");try{const t=this.get("canvas"),n=t.getActiveLayer(),i=nt(":scope > defs",t._svg),r=ue(n),o=i?"<defs>"+ue(i)+"</defs>":"",a=n.getBBox();e='<?xml version="1.0" encoding="utf-8"?>\n\x3c!-- created with bpmn-js / http://bpmn.io --\x3e\n<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">\n<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="'+a.width+'" height="'+a.height+'" viewBox="'+a.x+" "+a.y+" "+a.width+" "+a.height+'" version="1.1">'+o+r+"</svg>"}catch(e){t=e}if(this._emit("saveSVG.done",{error:t,svg:e}),t)throw t;return{svg:e}},Vo.prototype._setDefinitions=function(e){this._definitions=e},Vo.prototype.getModules=function(){return this._modules},Vo.prototype.clear=function(){this.getDefinitions()&&Fi.prototype.clear.call(this)},Vo.prototype.destroy=function(){var e;Fi.prototype.destroy.call(this),(e=this._container).parentNode&&e.parentNode.removeChild(e)},Vo.prototype.on=function(e,t,n,i){return this.get("eventBus").on(e,t,n,i)},Vo.prototype.off=function(e,t){this.get("eventBus").off(e,t)},Vo.prototype.attachTo=function(e){if(!e)throw new Error("parentNode required");this.detach(),e.get&&e.constructor.prototype.jquery&&(e=e.get(0)),"string"==typeof e&&(e=nt(e)),e.appendChild(this._container),this._emit("attach",{}),this.get("canvas").resized()},Vo.prototype.getDefinitions=function(){return this._definitions},Vo.prototype.detach=function(){const e=this._container,t=e.parentNode;t&&(this._emit("detach",{}),t.removeChild(e))},Vo.prototype._init=function(e,t,n){const i=n.modules||this.getModules(n),r=n.additionalModules||[],o=[].concat([{bpmnjs:["value",this],moddle:["value",t]}],i,r),s=u(function(e,t){let n={};return a(Object(e),(function(e,i){-1===t.indexOf(i)&&(n[i]=e)})),n}(n,["additionalModules"]),{canvas:u({},n.canvas,{container:e}),modules:o});Fi.call(this,s),n&&n.container&&this.attachTo(n.container)},Vo.prototype._emit=function(e,t){return this.get("eventBus").fire(e,t)},Vo.prototype._createContainer=function(e){const t=tt('<div class="bjs-container"></div>');return Fe(t,{width:zo(e.width),height:zo(e.height),position:e.position}),t},Vo.prototype._createModdle=function(e){return new ko(u({},this._moddleExtensions,e.moddleExtensions))},Vo.prototype._modules=[];const $o={width:"100%",height:"100%",position:"relative"};function zo(e){return e+(n=e,"[object Number]"===t.call(n)?"px":"");var n}function Go(e){Vo.call(this,e)}return e(Go,Vo),Go.prototype._modules=[sn,Ln,gn,Xn,Xt],Go.prototype._moddleExtensions={},Go}));
|