@icos-desktop/react-components 1.0.0-beta.27 → 1.0.0-beta.29

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.
@@ -89438,6 +89438,59 @@ var css_248z$G = ".BookGroupTable-module_container__NoRQV {\n display: flex;\n
89438
89438
  var styles$D = {"container":"BookGroupTable-module_container__NoRQV","table":"BookGroupTable-module_table__KiWP8","class-title":"BookGroupTable-module_class-title__dliIj","group-title":"BookGroupTable-module_group-title__PWh2j","label":"BookGroupTable-module_label__y-EML","class-cell":"BookGroupTable-module_class-cell__ppqRc","row-highlight":"BookGroupTable-module_row-highlight__ZVVlZ","highlight":"BookGroupTable-module_highlight__w21co"};
89439
89439
  styleInject(css_248z$G);
89440
89440
 
89441
+ /**
89442
+ * Convert array of 16 byte values to UUID string format of the form:
89443
+ * XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX
89444
+ */
89445
+ var byteToHex = [];
89446
+ for (var i$1 = 0; i$1 < 256; ++i$1) {
89447
+ byteToHex.push((i$1 + 0x100).toString(16).slice(1));
89448
+ }
89449
+ function unsafeStringify(arr, offset = 0) {
89450
+ // Note: Be careful editing this code! It's been tuned for performance
89451
+ // and works in ways you may not expect. See https://github.com/uuidjs/uuid/pull/434
89452
+ //
89453
+ // Note to future-self: No, you can't remove the `toLowerCase()` call.
89454
+ // REF: https://github.com/uuidjs/uuid/pull/677#issuecomment-1757351351
89455
+ return (byteToHex[arr[offset + 0]] + byteToHex[arr[offset + 1]] + byteToHex[arr[offset + 2]] + byteToHex[arr[offset + 3]] + '-' + byteToHex[arr[offset + 4]] + byteToHex[arr[offset + 5]] + '-' + byteToHex[arr[offset + 6]] + byteToHex[arr[offset + 7]] + '-' + byteToHex[arr[offset + 8]] + byteToHex[arr[offset + 9]] + '-' + byteToHex[arr[offset + 10]] + byteToHex[arr[offset + 11]] + byteToHex[arr[offset + 12]] + byteToHex[arr[offset + 13]] + byteToHex[arr[offset + 14]] + byteToHex[arr[offset + 15]]).toLowerCase();
89456
+ }
89457
+
89458
+ // Unique ID creation requires a high quality random # generator. In the browser we therefore
89459
+ // require the crypto API and do not support built-in fallback to lower quality random number
89460
+ // generators (like Math.random()).
89461
+
89462
+ var getRandomValues;
89463
+ var rnds8 = new Uint8Array(16);
89464
+ function rng() {
89465
+ // lazy load so that environments that need to polyfill have a chance to do so
89466
+ if (!getRandomValues) {
89467
+ // getRandomValues needs to be invoked in a context where "this" is a Crypto implementation.
89468
+ getRandomValues = typeof crypto !== 'undefined' && crypto.getRandomValues && crypto.getRandomValues.bind(crypto);
89469
+ if (!getRandomValues) {
89470
+ throw new Error('crypto.getRandomValues() not supported. See https://github.com/uuidjs/uuid#getrandomvalues-not-supported');
89471
+ }
89472
+ }
89473
+ return getRandomValues(rnds8);
89474
+ }
89475
+
89476
+ var randomUUID = typeof crypto !== 'undefined' && crypto.randomUUID && crypto.randomUUID.bind(crypto);
89477
+ var native = {
89478
+ randomUUID
89479
+ };
89480
+
89481
+ function v4(options, buf, offset) {
89482
+ if (native.randomUUID && !buf && !options) {
89483
+ return native.randomUUID();
89484
+ }
89485
+ options = options || {};
89486
+ var rnds = options.random || (options.rng || rng)();
89487
+
89488
+ // Per 4.4, set bits for version and `clock_seq_hi_and_reserved`
89489
+ rnds[6] = rnds[6] & 0x0f | 0x40;
89490
+ rnds[8] = rnds[8] & 0x3f | 0x80;
89491
+ return unsafeStringify(rnds);
89492
+ }
89493
+
89441
89494
  var css_248z$F = ":root{--contexify-zIndex:666;--contexify-menu-minWidth:220px;--contexify-menu-padding:6px;--contexify-menu-radius:6px;--contexify-menu-bgColor:#fff;--contexify-menu-shadow:1px 2px 2px rgba(0,0,0,.1),2px 4px 4px rgba(0,0,0,.1),3px 6px 6px rgba(0,0,0,.1);--contexify-menu-negatePadding:var(--contexify-menu-padding);--contexify-separator-color:rgba(0,0,0,.2);--contexify-separator-margin:5px;--contexify-itemContent-padding:6px;--contexify-activeItem-radius:4px;--contexify-item-color:#333;--contexify-activeItem-color:#fff;--contexify-activeItem-bgColor:#3498db;--contexify-rightSlot-color:#6f6e77;--contexify-activeRightSlot-color:#fff;--contexify-arrow-color:#6f6e77;--contexify-activeArrow-color:#fff}@keyframes contexify_feedback{0%{opacity:.4}to{opacity:1}}.contexify{position:fixed;opacity:0;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;background-color:var(--contexify-menu-bgColor);box-sizing:border-box;box-shadow:var(--contexify-menu-shadow);border-radius:var(--contexify-menu-radius);padding:var(--contexify-menu-padding);min-width:var(--contexify-menu-minWidth);z-index:var(--contexify-zIndex)}.contexify_submenu-isOpen,.contexify_submenu-isOpen>.contexify_itemContent{color:var(--contexify-activeItem-color);background-color:var(--contexify-activeItem-bgColor);border-radius:var(--contexify-activeItem-radius)}.contexify_submenu-isOpen>.contexify_itemContent .contexify_rightSlot{color:var(--contexify-activeArrow-color)}.contexify_submenu-isOpen>.contexify_submenu{pointer-events:auto;opacity:1}.contexify .contexify_submenu{position:absolute;pointer-events:none;transition:opacity .265s;top:calc(-1 * var(--contexify-menu-negatePadding));left:100%}.contexify .contexify_submenu-bottom{bottom:calc(-1 * var(--contexify-menu-negatePadding));top:unset}.contexify .contexify_submenu-right{right:100%;left:unset}.contexify_rightSlot{margin-left:auto;display:-ms-flexbox;display:flex;color:var(--contexify-rightSlot-color)}.contexify_separator{height:1px;cursor:default;margin:var(--contexify-separator-margin);background-color:var(--contexify-separator-color)}.contexify_willLeave-disabled{pointer-events:none}.contexify_item{cursor:pointer;position:relative}.contexify_item:focus{outline:0}.contexify_item:focus .contexify_rightSlot,.contexify_item:not(.contexify_item-disabled):hover>.contexify_itemContent .contexify_rightSlot{color:var(--contexify-activeRightSlot-color)}.contexify_item:not(.contexify_item-disabled)[aria-haspopup]>.contexify_itemContent .contexify_rightSlot{color:var(--contexify-arrow-color)}.contexify_item:not(.contexify_item-disabled)[aria-haspopup].contexify_submenu-isOpen>.contexify_itemContent .contexify_rightSlot,.contexify_item:not(.contexify_item-disabled)[aria-haspopup]:hover>.contexify_itemContent .contexify_rightSlot,.contexify_item[aria-haspopup]:focus>.contexify_itemContent .contexify_rightSlot{color:var(--contexify-activeArrow-color)}.contexify_item:not(.contexify_item-disabled):focus>.contexify_itemContent,.contexify_item:not(.contexify_item-disabled):hover>.contexify_itemContent{color:var(--contexify-activeItem-color);background-color:var(--contexify-activeItem-bgColor);border-radius:var(--contexify-activeItem-radius)}.contexify_item:not(.contexify_item-disabled):hover>.contexify_submenu{pointer-events:auto;opacity:1}.contexify_item-disabled{cursor:default;opacity:.5}.contexify_itemContent{padding:var(--contexify-itemContent-padding);display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;white-space:nowrap;color:var(--contexify-item-color);position:relative}.contexify_item-feedback{animation:contexify_feedback .12s both}.contexify_theme-dark{--contexify-menu-bgColor:rgba(40,40,40,.98);--contexify-separator-color:#4c4c4c;--contexify-item-color:#fff}.contexify_theme-light{--contexify-separator-color:#eee;--contexify-item-color:#666;--contexify-activeItem-color:#3498db;--contexify-activeItem-bgColor:#e0eefd;--contexify-activeRightSlot-color:#3498db;--contexify-active-arrow-color:#3498db}@keyframes contexify_scaleIn{0%{opacity:0;transform:scale3d(.3,.3,.3)}to{opacity:1}}@keyframes contexify_scaleOut{0%{opacity:1}to{opacity:0;transform:scale3d(.3,.3,.3)}}.contexify_willEnter-scale{transform-origin:top left;animation:contexify_scaleIn .3s}.contexify_willLeave-scale{transform-origin:top left;animation:contexify_scaleOut .3s}@keyframes contexify_fadeIn{0%{opacity:0;transform:translateY(10px)}to{opacity:1;transform:translateY(0)}}@keyframes contexify_fadeOut{0%{opacity:1;transform:translateY(0)}to{opacity:0;transform:translateY(10px)}}.contexify_willEnter-fade{animation:contexify_fadeIn .3s ease}.contexify_willLeave-fade{animation:contexify_fadeOut .3s ease}@keyframes contexify_flipInX{0%{transform:perspective(800px) rotateX(45deg)}to{transform:perspective(800px)}}@keyframes contexify_flipOutX{0%{transform:perspective(800px)}to{transform:perspective(800px) rotateX(45deg);opacity:0}}.contexify_willEnter-flip{animation:contexify_flipInX .3s}.contexify_willEnter-flip,.contexify_willLeave-flip{-webkit-backface-visibility:visible!important;backface-visibility:visible!important;transform-origin:top center}.contexify_willLeave-flip{animation:contexify_flipOutX .3s}@keyframes contexify_slideIn{0%{opacity:0;transform:scaleY(.3)}to{opacity:1}}@keyframes contexify_slideOut{0%{opacity:1}to{opacity:0;transform:scaleY(.3)}}.contexify_willEnter-slide{transform-origin:top center;animation:contexify_slideIn .3s}.contexify_willLeave-slide{transform-origin:top center;animation:contexify_slideOut .3s}";
89442
89495
  styleInject(css_248z$F);
89443
89496
 
@@ -89467,7 +89520,7 @@ var renderContextMenu = function (id, menu, callback, menuProps) {
89467
89520
  return (React__default.createElement(it$1, __assign$h({ id: id }, menuProps), renderMenu(menu)));
89468
89521
  };
89469
89522
 
89470
- var id$3 = 'BOOK_GROUP_TABLE_MENU_BOOK_GROUP';
89523
+ var id$3 = "BOOK_GROUP_TABLE_MENU_BOOK_GROUP_".concat(v4());
89471
89524
  var ContextMenu$3 = function () {
89472
89525
  var menu = [
89473
89526
  {
@@ -114184,13 +114237,13 @@ function getBookGroupStatistics(params) {
114184
114237
  });
114185
114238
  }
114186
114239
  // 删除实体
114187
- function deleteSense(params) {
114240
+ function deleteSense(data) {
114188
114241
  return __awaiter$3(this, void 0, void 0, function () {
114189
114242
  return __generator$2(this, function (_a) {
114190
114243
  return [2 /*return*/, req({
114191
114244
  url: '/v1/open/sense-manager/sense-delete',
114192
114245
  method: 'POST',
114193
- params: params,
114246
+ data: data,
114194
114247
  })];
114195
114248
  });
114196
114249
  });
@@ -114202,7 +114255,7 @@ var css_248z$D = ".BookTable-module_container__L2kmP {\n display: flex;\n flex
114202
114255
  var styles$C = {"container":"BookTable-module_container__L2kmP","table":"BookTable-module_table__x7nr4","book-title":"BookTable-module_book-title__ClT5i","label":"BookTable-module_label__awV3B","auth-types":"BookTable-module_auth-types__zbhCo","tag":"BookTable-module_tag__PwHem","tag-1":"BookTable-module_tag-1__e-LYA","tag-2":"BookTable-module_tag-2__FiXso","tag-3":"BookTable-module_tag-3__HaqwC","tag-4":"BookTable-module_tag-4__UJv46","row-highlight":"BookTable-module_row-highlight__HLAF0","highlight":"BookTable-module_highlight__5JeBZ"};
114203
114256
  styleInject(css_248z$D);
114204
114257
 
114205
- var id$2 = 'BOOK_TABLE_MENU_BOOK';
114258
+ var id$2 = "BOOK_TABLE_MENU_BOOK_".concat(v4());
114206
114259
  var ContextMenu$2 = function (_a) {
114207
114260
  var config = _a.config;
114208
114261
  var menu = [
@@ -194276,7 +194329,7 @@ var getControlPoints$1 = function (points, sourceNode, targetNode, layerCoordsAr
194276
194329
 
194277
194330
  var dagreCompound = {};
194278
194331
 
194279
- const e={graph:{meta:{rankDir:"TB",nodeSep:50,rankSep:50,edgeSep:5,align:void 0}},subScene:{meta:{paddingTop:20,paddingBottom:20,paddingLeft:20,paddingRight:20,labelHeight:20}},nodeSize:{meta:{width:100,maxLabelWidth:0,height:20},node:{width:80,height:20,labelOffset:10,maxLabelWidth:40},bridge:{width:5,height:5,radius:2,labelOffset:0}}};function n(n={},t=e){var r,o,i,a;const u=JSON.parse(JSON.stringify(t)),c=(null===(r=null==n?void 0:n.graph)||void 0===r?void 0:r.meta)||{},s=(null===(o=null==n?void 0:n.subScene)||void 0===o?void 0:o.meta)||{},d=(null===(i=null==n?void 0:n.nodeSize)||void 0===i?void 0:i.meta)||{},f=(null===(a=null==n?void 0:n.nodeSize)||void 0===a?void 0:a.node)||{},h=u.nodeSize.bridge;return {graph:{meta:Object.assign(u.graph.meta,c)},subScene:{meta:Object.assign(u.subScene.meta,s)},nodeSize:{meta:Object.assign(u.nodeSize.meta,d),node:Object.assign(u.nodeSize.node,f),bridge:h}}}function t(e){return `◬${e}◬`}const r=t("ROOT"),o=t("BRIDGE_GRAPH");var i$1,a,u,c;!function(e){e[e.META=0]="META",e[e.NODE=1]="NODE",e[e.BRIDGE=2]="BRIDGE";}(i$1||(i$1={})),function(e){e[e.INCLUDE=0]="INCLUDE",e[e.EXCLUDE=1]="EXCLUDE",e[e.UNSPECIFIED=2]="UNSPECIFIED";}(a||(a={})),function(e){e[e.META=0]="META",e[e.CORE=1]="CORE",e[e.BRIDGE=2]="BRIDGE";}(u||(u={})),function(e){e[e.META=0]="META",e[e.OP=1]="OP",e[e.SERIES=2]="SERIES";}(c||(c={}));var s="undefined"!=typeof globalThis?globalThis:"undefined"!=typeof window?window:"undefined"!=typeof global?global:"undefined"!=typeof self?self:{};function d(e,n){return e(n={exports:{}},n.exports),n.exports}var f=function(){this.__data__=[],this.size=0;};var h=function(e,n){return e===n||e!=e&&n!=n};var l=function(e,n){for(var t=e.length;t--;)if(h(e[t][0],n))return t;return -1},v=Array.prototype.splice;var p=function(e){var n=this.__data__,t=l(n,e);return !(t<0)&&(t==n.length-1?n.pop():v.call(n,t,1),--this.size,!0)};var g=function(e){var n=this.__data__,t=l(n,e);return t<0?void 0:n[t][1]};var y=function(e){return l(this.__data__,e)>-1};var b=function(e,n){var t=this.__data__,r=l(t,e);return r<0?(++this.size,t.push([e,n])):t[r][1]=n,this};function m(e){var n=-1,t=null==e?0:e.length;for(this.clear();++n<t;){var r=e[n];this.set(r[0],r[1]);}}m.prototype.clear=f,m.prototype.delete=p,m.prototype.get=g,m.prototype.has=y,m.prototype.set=b;var w=m;var E=function(){this.__data__=new w,this.size=0;};var _=function(e){var n=this.__data__,t=n.delete(e);return this.size=n.size,t};var j=function(e){return this.__data__.get(e)};var x=function(e){return this.__data__.has(e)},N="object"==typeof s&&s&&s.Object===Object&&s,O="object"==typeof self&&self&&self.Object===Object&&self,k=N||O||Function("return this")(),I=k.Symbol,S=Object.prototype,M=S.hasOwnProperty,C=S.toString,G=I?I.toStringTag:void 0;var B=function(e){var n=M.call(e,G),t=e[G];try{e[G]=void 0;var r=!0;}catch(e){}var o=C.call(e);return r&&(n?e[G]=t:delete e[G]),o},A=Object.prototype.toString;var L=function(e){return A.call(e)},R$1=I?I.toStringTag:void 0;var T$1=function(e){return null==e?void 0===e?"[object Undefined]":"[object Null]":R$1&&R$1 in Object(e)?B(e):L(e)};var D=function(e){var n=typeof e;return null!=e&&("object"==n||"function"==n)};var P,z=function(e){if(!D(e))return !1;var n=T$1(e);return "[object Function]"==n||"[object GeneratorFunction]"==n||"[object AsyncFunction]"==n||"[object Proxy]"==n},F=k["__core-js_shared__"],U=(P=/[^.]+$/.exec(F&&F.keys&&F.keys.IE_PROTO||""))?"Symbol(src)_1."+P:"";var V=function(e){return !!U&&U in e},$=Function.prototype.toString;var H=function(e){if(null!=e){try{return $.call(e)}catch(e){}try{return e+""}catch(e){}}return ""},W=/^\[object .+?Constructor\]$/,q=Function.prototype,Y=Object.prototype,J=q.toString,X=Y.hasOwnProperty,K=RegExp("^"+J.call(X).replace(/[\\^$.*+?()[\]{}|]/g,"\\$&").replace(/hasOwnProperty|(function).*?(?=\\\()| for .+?(?=\\\])/g,"$1.*?")+"$");var Q=function(e){return !(!D(e)||V(e))&&(z(e)?K:W).test(H(e))};var Z=function(e,n){return null==e?void 0:e[n]};var ee=function(e,n){var t=Z(e,n);return Q(t)?t:void 0},ne=ee(k,"Map"),te=ee(Object,"create");var re=function(){this.__data__=te?te(null):{},this.size=0;};var oe=function(e){var n=this.has(e)&&delete this.__data__[e];return this.size-=n?1:0,n},ie=Object.prototype.hasOwnProperty;var ae=function(e){var n=this.__data__;if(te){var t=n[e];return "__lodash_hash_undefined__"===t?void 0:t}return ie.call(n,e)?n[e]:void 0},ue=Object.prototype.hasOwnProperty;var ce=function(e){var n=this.__data__;return te?void 0!==n[e]:ue.call(n,e)};var se=function(e,n){var t=this.__data__;return this.size+=this.has(e)?0:1,t[e]=te&&void 0===n?"__lodash_hash_undefined__":n,this};function de(e){var n=-1,t=null==e?0:e.length;for(this.clear();++n<t;){var r=e[n];this.set(r[0],r[1]);}}de.prototype.clear=re,de.prototype.delete=oe,de.prototype.get=ae,de.prototype.has=ce,de.prototype.set=se;var fe=de;var he=function(){this.size=0,this.__data__={hash:new fe,map:new(ne||w),string:new fe};};var le=function(e){var n=typeof e;return "string"==n||"number"==n||"symbol"==n||"boolean"==n?"__proto__"!==e:null===e};var ve=function(e,n){var t=e.__data__;return le(n)?t["string"==typeof n?"string":"hash"]:t.map};var pe=function(e){var n=ve(this,e).delete(e);return this.size-=n?1:0,n};var ge=function(e){return ve(this,e).get(e)};var ye=function(e){return ve(this,e).has(e)};var be=function(e,n){var t=ve(this,e),r=t.size;return t.set(e,n),this.size+=t.size==r?0:1,this};function me(e){var n=-1,t=null==e?0:e.length;for(this.clear();++n<t;){var r=e[n];this.set(r[0],r[1]);}}me.prototype.clear=he,me.prototype.delete=pe,me.prototype.get=ge,me.prototype.has=ye,me.prototype.set=be;var we=me;var Ee=function(e,n){var t=this.__data__;if(t instanceof w){var r=t.__data__;if(!ne||r.length<199)return r.push([e,n]),this.size=++t.size,this;t=this.__data__=new we(r);}return t.set(e,n),this.size=t.size,this};function _e(e){var n=this.__data__=new w(e);this.size=n.size;}_e.prototype.clear=E,_e.prototype.delete=_,_e.prototype.get=j,_e.prototype.has=x,_e.prototype.set=Ee;var je=_e;var xe=function(e,n){for(var t=-1,r=null==e?0:e.length;++t<r&&!1!==n(e[t],t,e););return e},Ne=function(){try{var e=ee(Object,"defineProperty");return e({},"",{}),e}catch(e){}}();var Oe=function(e,n,t){"__proto__"==n&&Ne?Ne(e,n,{configurable:!0,enumerable:!0,value:t,writable:!0}):e[n]=t;},ke=Object.prototype.hasOwnProperty;var Ie=function(e,n,t){var r=e[n];ke.call(e,n)&&h(r,t)&&(void 0!==t||n in e)||Oe(e,n,t);};var Se=function(e,n,t,r){var o=!t;t||(t={});for(var i=-1,a=n.length;++i<a;){var u=n[i],c=void 0;void 0===c&&(c=e[u]),o?Oe(t,u,c):Ie(t,u,c);}return t};var Me=function(e,n){for(var t=-1,r=Array(e);++t<e;)r[t]=n(t);return r};var Ce=function(e){return null!=e&&"object"==typeof e};var Ge=function(e){return Ce(e)&&"[object Arguments]"==T$1(e)},Be=Object.prototype,Ae=Be.hasOwnProperty,Le=Be.propertyIsEnumerable,Re=Ge(function(){return arguments}())?Ge:function(e){return Ce(e)&&Ae.call(e,"callee")&&!Le.call(e,"callee")},Te=Array.isArray;var De=function(){return !1},Pe=d((function(e,n){var t=n&&!n.nodeType&&n,r=t&&e&&!e.nodeType&&e,o=r&&r.exports===t?k.Buffer:void 0,i=(o?o.isBuffer:void 0)||De;e.exports=i;})),ze=/^(?:0|[1-9]\d*)$/;var Fe=function(e,n){var t=typeof e;return !!(n=null==n?9007199254740991:n)&&("number"==t||"symbol"!=t&&ze.test(e))&&e>-1&&e%1==0&&e<n};var Ue=function(e){return "number"==typeof e&&e>-1&&e%1==0&&e<=9007199254740991},Ve={};Ve["[object Float32Array]"]=Ve["[object Float64Array]"]=Ve["[object Int8Array]"]=Ve["[object Int16Array]"]=Ve["[object Int32Array]"]=Ve["[object Uint8Array]"]=Ve["[object Uint8ClampedArray]"]=Ve["[object Uint16Array]"]=Ve["[object Uint32Array]"]=!0,Ve["[object Arguments]"]=Ve["[object Array]"]=Ve["[object ArrayBuffer]"]=Ve["[object Boolean]"]=Ve["[object DataView]"]=Ve["[object Date]"]=Ve["[object Error]"]=Ve["[object Function]"]=Ve["[object Map]"]=Ve["[object Number]"]=Ve["[object Object]"]=Ve["[object RegExp]"]=Ve["[object Set]"]=Ve["[object String]"]=Ve["[object WeakMap]"]=!1;var $e=function(e){return Ce(e)&&Ue(e.length)&&!!Ve[T$1(e)]};var He=function(e){return function(n){return e(n)}},We=d((function(e,n){var t=n&&!n.nodeType&&n,r=t&&e&&!e.nodeType&&e,o=r&&r.exports===t&&N.process,i=function(){try{var e=r&&r.require&&r.require("util").types;return e||o&&o.binding&&o.binding("util")}catch(e){}}();e.exports=i;})),qe=We&&We.isTypedArray,Ye=qe?He(qe):$e,Je=Object.prototype.hasOwnProperty;var Xe=function(e,n){var t=Te(e),r=!t&&Re(e),o=!t&&!r&&Pe(e),i=!t&&!r&&!o&&Ye(e),a=t||r||o||i,u=a?Me(e.length,String):[],c=u.length;for(var s in e)!n&&!Je.call(e,s)||a&&("length"==s||o&&("offset"==s||"parent"==s)||i&&("buffer"==s||"byteLength"==s||"byteOffset"==s)||Fe(s,c))||u.push(s);return u},Ke=Object.prototype;var Qe=function(e){var n=e&&e.constructor;return e===("function"==typeof n&&n.prototype||Ke)};var Ze=function(e,n){return function(t){return e(n(t))}},en=Ze(Object.keys,Object),nn=Object.prototype.hasOwnProperty;var tn=function(e){if(!Qe(e))return en(e);var n=[];for(var t in Object(e))nn.call(e,t)&&"constructor"!=t&&n.push(t);return n};var rn=function(e){return null!=e&&Ue(e.length)&&!z(e)};var on=function(e){return rn(e)?Xe(e):tn(e)};var an=function(e,n){return e&&Se(n,on(n),e)};var un=function(e){var n=[];if(null!=e)for(var t in Object(e))n.push(t);return n},cn=Object.prototype.hasOwnProperty;var sn=function(e){if(!D(e))return un(e);var n=Qe(e),t=[];for(var r in e)("constructor"!=r||!n&&cn.call(e,r))&&t.push(r);return t};var dn=function(e){return rn(e)?Xe(e,!0):sn(e)};var fn=function(e,n){return e&&Se(n,dn(n),e)},hn=d((function(e,n){var t=n&&!n.nodeType&&n,r=t&&e&&!e.nodeType&&e,o=r&&r.exports===t?k.Buffer:void 0,i=o?o.allocUnsafe:void 0;e.exports=function(e,n){if(n)return e.slice();var t=e.length,r=i?i(t):new e.constructor(t);return e.copy(r),r};}));var ln=function(e,n){var t=-1,r=e.length;for(n||(n=Array(r));++t<r;)n[t]=e[t];return n};var vn=function(e,n){for(var t=-1,r=null==e?0:e.length,o=0,i=[];++t<r;){var a=e[t];n(a,t,e)&&(i[o++]=a);}return i};var pn=function(){return []},gn=Object.prototype.propertyIsEnumerable,yn=Object.getOwnPropertySymbols,bn=yn?function(e){return null==e?[]:(e=Object(e),vn(yn(e),(function(n){return gn.call(e,n)})))}:pn;var mn=function(e,n){return Se(e,bn(e),n)};var wn=function(e,n){for(var t=-1,r=n.length,o=e.length;++t<r;)e[o+t]=n[t];return e},En=Ze(Object.getPrototypeOf,Object),_n=Object.getOwnPropertySymbols?function(e){for(var n=[];e;)wn(n,bn(e)),e=En(e);return n}:pn;var jn=function(e,n){return Se(e,_n(e),n)};var xn=function(e,n,t){var r=n(e);return Te(e)?r:wn(r,t(e))};var Nn=function(e){return xn(e,on,bn)};var On=function(e){return xn(e,dn,_n)},kn=ee(k,"DataView"),In=ee(k,"Promise"),Sn=ee(k,"Set"),Mn=ee(k,"WeakMap"),Cn=H(kn),Gn=H(ne),Bn=H(In),An=H(Sn),Ln=H(Mn),Rn=T$1;(kn&&"[object DataView]"!=Rn(new kn(new ArrayBuffer(1)))||ne&&"[object Map]"!=Rn(new ne)||In&&"[object Promise]"!=Rn(In.resolve())||Sn&&"[object Set]"!=Rn(new Sn)||Mn&&"[object WeakMap]"!=Rn(new Mn))&&(Rn=function(e){var n=T$1(e),t="[object Object]"==n?e.constructor:void 0,r=t?H(t):"";if(r)switch(r){case Cn:return "[object DataView]";case Gn:return "[object Map]";case Bn:return "[object Promise]";case An:return "[object Set]";case Ln:return "[object WeakMap]"}return n});var Tn=Rn,Dn=Object.prototype.hasOwnProperty;var Pn=function(e){var n=e.length,t=new e.constructor(n);return n&&"string"==typeof e[0]&&Dn.call(e,"index")&&(t.index=e.index,t.input=e.input),t},zn=k.Uint8Array;var Fn=function(e){var n=new e.constructor(e.byteLength);return new zn(n).set(new zn(e)),n};var Un=function(e,n){var t=n?Fn(e.buffer):e.buffer;return new e.constructor(t,e.byteOffset,e.byteLength)},Vn=/\w*$/;var $n=function(e){var n=new e.constructor(e.source,Vn.exec(e));return n.lastIndex=e.lastIndex,n},Hn=I?I.prototype:void 0,Wn=Hn?Hn.valueOf:void 0;var qn=function(e){return Wn?Object(Wn.call(e)):{}};var Yn=function(e,n){var t=n?Fn(e.buffer):e.buffer;return new e.constructor(t,e.byteOffset,e.length)};var Jn=function(e,n,t){var r=e.constructor;switch(n){case"[object ArrayBuffer]":return Fn(e);case"[object Boolean]":case"[object Date]":return new r(+e);case"[object DataView]":return Un(e,t);case"[object Float32Array]":case"[object Float64Array]":case"[object Int8Array]":case"[object Int16Array]":case"[object Int32Array]":case"[object Uint8Array]":case"[object Uint8ClampedArray]":case"[object Uint16Array]":case"[object Uint32Array]":return Yn(e,t);case"[object Map]":return new r;case"[object Number]":case"[object String]":return new r(e);case"[object RegExp]":return $n(e);case"[object Set]":return new r;case"[object Symbol]":return qn(e)}},Xn=Object.create,Kn=function(){function e(){}return function(n){if(!D(n))return {};if(Xn)return Xn(n);e.prototype=n;var t=new e;return e.prototype=void 0,t}}();var Qn=function(e){return "function"!=typeof e.constructor||Qe(e)?{}:Kn(En(e))};var Zn=function(e){return Ce(e)&&"[object Map]"==Tn(e)},et=We&&We.isMap,nt=et?He(et):Zn;var tt=function(e){return Ce(e)&&"[object Set]"==Tn(e)},rt=We&&We.isSet,ot=rt?He(rt):tt,it={};it["[object Arguments]"]=it["[object Array]"]=it["[object ArrayBuffer]"]=it["[object DataView]"]=it["[object Boolean]"]=it["[object Date]"]=it["[object Float32Array]"]=it["[object Float64Array]"]=it["[object Int8Array]"]=it["[object Int16Array]"]=it["[object Int32Array]"]=it["[object Map]"]=it["[object Number]"]=it["[object Object]"]=it["[object RegExp]"]=it["[object Set]"]=it["[object String]"]=it["[object Symbol]"]=it["[object Uint8Array]"]=it["[object Uint8ClampedArray]"]=it["[object Uint16Array]"]=it["[object Uint32Array]"]=!0,it["[object Error]"]=it["[object Function]"]=it["[object WeakMap]"]=!1;var at=function e(n,t,r,o,i,a){var u,c=1&t,s=2&t,d=4&t;if(void 0!==u)return u;if(!D(n))return n;var f=Te(n);if(f){if(u=Pn(n),!c)return ln(n,u)}else {var h=Tn(n),l="[object Function]"==h||"[object GeneratorFunction]"==h;if(Pe(n))return hn(n,c);if("[object Object]"==h||"[object Arguments]"==h||l&&!i){if(u=s||l?{}:Qn(n),!c)return s?jn(n,fn(u,n)):mn(n,an(u,n))}else {if(!it[h])return i?n:{};u=Jn(n,h,c);}}a||(a=new je);var v=a.get(n);if(v)return v;a.set(n,u),ot(n)?n.forEach((function(o){u.add(e(o,t,r,o,n,a));})):nt(n)&&n.forEach((function(o,i){u.set(i,e(o,t,r,i,n,a));}));var p=f?void 0:(d?s?On:Nn:s?dn:on)(n);return xe(p||n,(function(o,i){p&&(o=n[i=o]),Ie(u,i,e(o,t,r,i,n,a));})),u};var ut=function(e){return at(e,4)};var ct=function(e){return function(){return e}};var st=function(e){return function(n,t,r){for(var o=-1,i=Object(n),a=r(n),u=a.length;u--;){var c=a[++o];if(!1===t(i[c],c,i))break}return n}}();var dt=function(e,n){return e&&st(e,n,on)};var ft=function(e,n){return function(t,r){if(null==t)return t;if(!rn(t))return e(t,r);for(var o=t.length,i=-1,a=Object(t);(++i<o)&&!1!==r(a[i],i,a););return t}}(dt);var ht=function(e){return e};var lt=function(e){return "function"==typeof e?e:ht};var vt=function(e,n){return (Te(e)?xe:ft)(e,lt(n))},pt=vt;var gt=function(e,n){var t=[];return ft(e,(function(e,r,o){n(e,r,o)&&t.push(e);})),t};var yt=function(e){return this.__data__.set(e,"__lodash_hash_undefined__"),this};var bt=function(e){return this.__data__.has(e)};function mt(e){var n=-1,t=null==e?0:e.length;for(this.__data__=new we;++n<t;)this.add(e[n]);}mt.prototype.add=mt.prototype.push=yt,mt.prototype.has=bt;var wt=mt;var Et=function(e,n){for(var t=-1,r=null==e?0:e.length;++t<r;)if(n(e[t],t,e))return !0;return !1};var _t=function(e,n){return e.has(n)};var jt=function(e,n,t,r,o,i){var a=1&t,u=e.length,c=n.length;if(u!=c&&!(a&&c>u))return !1;var s=i.get(e),d=i.get(n);if(s&&d)return s==n&&d==e;var f=-1,h=!0,l=2&t?new wt:void 0;for(i.set(e,n),i.set(n,e);++f<u;){var v=e[f],p=n[f];if(r)var g=a?r(p,v,f,n,e,i):r(v,p,f,e,n,i);if(void 0!==g){if(g)continue;h=!1;break}if(l){if(!Et(n,(function(e,n){if(!_t(l,n)&&(v===e||o(v,e,t,r,i)))return l.push(n)}))){h=!1;break}}else if(v!==p&&!o(v,p,t,r,i)){h=!1;break}}return i.delete(e),i.delete(n),h};var xt=function(e){var n=-1,t=Array(e.size);return e.forEach((function(e,r){t[++n]=[r,e];})),t};var Nt=function(e){var n=-1,t=Array(e.size);return e.forEach((function(e){t[++n]=e;})),t},Ot=I?I.prototype:void 0,kt=Ot?Ot.valueOf:void 0;var It=function(e,n,t,r,o,i,a){switch(t){case"[object DataView]":if(e.byteLength!=n.byteLength||e.byteOffset!=n.byteOffset)return !1;e=e.buffer,n=n.buffer;case"[object ArrayBuffer]":return !(e.byteLength!=n.byteLength||!i(new zn(e),new zn(n)));case"[object Boolean]":case"[object Date]":case"[object Number]":return h(+e,+n);case"[object Error]":return e.name==n.name&&e.message==n.message;case"[object RegExp]":case"[object String]":return e==n+"";case"[object Map]":var u=xt;case"[object Set]":var c=1&r;if(u||(u=Nt),e.size!=n.size&&!c)return !1;var s=a.get(e);if(s)return s==n;r|=2,a.set(e,n);var d=jt(u(e),u(n),r,o,i,a);return a.delete(e),d;case"[object Symbol]":if(kt)return kt.call(e)==kt.call(n)}return !1},St=Object.prototype.hasOwnProperty;var Mt=function(e,n,t,r,o,i){var a=1&t,u=Nn(e),c=u.length;if(c!=Nn(n).length&&!a)return !1;for(var s=c;s--;){var d=u[s];if(!(a?d in n:St.call(n,d)))return !1}var f=i.get(e),h=i.get(n);if(f&&h)return f==n&&h==e;var l=!0;i.set(e,n),i.set(n,e);for(var v=a;++s<c;){var p=e[d=u[s]],g=n[d];if(r)var y=a?r(g,p,d,n,e,i):r(p,g,d,e,n,i);if(!(void 0===y?p===g||o(p,g,t,r,i):y)){l=!1;break}v||(v="constructor"==d);}if(l&&!v){var b=e.constructor,m=n.constructor;b==m||!("constructor"in e)||!("constructor"in n)||"function"==typeof b&&b instanceof b&&"function"==typeof m&&m instanceof m||(l=!1);}return i.delete(e),i.delete(n),l},Ct=Object.prototype.hasOwnProperty;var Gt=function(e,n,t,r,o,i){var a=Te(e),u=Te(n),c=a?"[object Array]":Tn(e),s=u?"[object Array]":Tn(n),d="[object Object]"==(c="[object Arguments]"==c?"[object Object]":c),f="[object Object]"==(s="[object Arguments]"==s?"[object Object]":s),h=c==s;if(h&&Pe(e)){if(!Pe(n))return !1;a=!0,d=!1;}if(h&&!d)return i||(i=new je),a||Ye(e)?jt(e,n,t,r,o,i):It(e,n,c,t,r,o,i);if(!(1&t)){var l=d&&Ct.call(e,"__wrapped__"),v=f&&Ct.call(n,"__wrapped__");if(l||v){var p=l?e.value():e,g=v?n.value():n;return i||(i=new je),o(p,g,t,r,i)}}return !!h&&(i||(i=new je),Mt(e,n,t,r,o,i))};var Bt=function e(n,t,r,o,i){return n===t||(null==n||null==t||!Ce(n)&&!Ce(t)?n!=n&&t!=t:Gt(n,t,r,o,e,i))};var At=function(e,n,t,r){var o=t.length,i=o;if(null==e)return !i;for(e=Object(e);o--;){var u=t[o];if(u[2]?u[1]!==e[u[0]]:!(u[0]in e))return !1}for(;++o<i;){var c=(u=t[o])[0],s=e[c],d=u[1];if(u[2]){if(void 0===s&&!(c in e))return !1}else {var f=new je;var h; if(!(void 0===h?Bt(d,s,3,r,f):h))return !1}}return !0};var Lt=function(e){return e==e&&!D(e)};var Rt=function(e){for(var n=on(e),t=n.length;t--;){var r=n[t],o=e[r];n[t]=[r,o,Lt(o)];}return n};var Tt=function(e,n){return function(t){return null!=t&&(t[e]===n&&(void 0!==n||e in Object(t)))}};var Dt=function(e){var n=Rt(e);return 1==n.length&&n[0][2]?Tt(n[0][0],n[0][1]):function(t){return t===e||At(t,e,n)}};var Pt=function(e){return "symbol"==typeof e||Ce(e)&&"[object Symbol]"==T$1(e)},zt=/\.|\[(?:[^[\]]*|(["'])(?:(?!\1)[^\\]|\\.)*?\1)\]/,Ft=/^\w*$/;var Ut=function(e,n){if(Te(e))return !1;var t=typeof e;return !("number"!=t&&"symbol"!=t&&"boolean"!=t&&null!=e&&!Pt(e))||(Ft.test(e)||!zt.test(e)||null!=n&&e in Object(n))};function Vt(e,n){if("function"!=typeof e||null!=n&&"function"!=typeof n)throw new TypeError("Expected a function");var t=function(){var r=arguments,o=n?n.apply(this,r):r[0],i=t.cache;if(i.has(o))return i.get(o);var a=e.apply(this,r);return t.cache=i.set(o,a)||i,a};return t.cache=new(Vt.Cache||we),t}Vt.Cache=we;var $t=Vt;var Ht=/[^.[\]]+|\[(?:(-?\d+(?:\.\d+)?)|(["'])((?:(?!\2)[^\\]|\\.)*?)\2)\]|(?=(?:\.|\[\])(?:\.|\[\]|$))/g,Wt=/\\(\\)?/g,qt=function(e){var n=$t(e,(function(e){return 500===t.size&&t.clear(),e})),t=n.cache;return n}((function(e){var n=[];return 46===e.charCodeAt(0)&&n.push(""),e.replace(Ht,(function(e,t,r,o){n.push(r?o.replace(Wt,"$1"):t||e);})),n}));var Yt=function(e,n){for(var t=-1,r=null==e?0:e.length,o=Array(r);++t<r;)o[t]=n(e[t],t,e);return o},Jt=I?I.prototype:void 0,Xt=Jt?Jt.toString:void 0;var Kt=function e(n){if("string"==typeof n)return n;if(Te(n))return Yt(n,e)+"";if(Pt(n))return Xt?Xt.call(n):"";var t=n+"";return "0"==t&&1/n==-Infinity?"-0":t};var Qt=function(e){return null==e?"":Kt(e)};var Zt=function(e,n){return Te(e)?e:Ut(e,n)?[e]:qt(Qt(e))};var er$1=function(e){if("string"==typeof e||Pt(e))return e;var n=e+"";return "0"==n&&1/e==-Infinity?"-0":n};var nr=function(e,n){for(var t=0,r=(n=Zt(n,e)).length;null!=e&&t<r;)e=e[er$1(n[t++])];return t&&t==r?e:void 0};var tr=function(e,n,t){var r=null==e?void 0:nr(e,n);return void 0===r?t:r};var rr=function(e,n){return null!=e&&n in Object(e)};var or=function(e,n,t){for(var r=-1,o=(n=Zt(n,e)).length,i=!1;++r<o;){var a=er$1(n[r]);if(!(i=null!=e&&t(e,a)))break;e=e[a];}return i||++r!=o?i:!!(o=null==e?0:e.length)&&Ue(o)&&Fe(a,o)&&(Te(e)||Re(e))};var ir=function(e,n){return null!=e&&or(e,n,rr)};var ar=function(e,n){return Ut(e)&&Lt(n)?Tt(er$1(e),n):function(t){var r=tr(t,e);return void 0===r&&r===n?ir(t,e):Bt(n,r,3)}};var ur=function(e){return function(n){return null==n?void 0:n[e]}};var cr=function(e){return function(n){return nr(n,e)}};var sr=function(e){return Ut(e)?ur(er$1(e)):cr(e)};var dr=function(e){return "function"==typeof e?e:null==e?ht:"object"==typeof e?Te(e)?ar(e[0],e[1]):Dt(e):sr(e)};var fr=function(e,n){return (Te(e)?vn:gt)(e,dr(n))},hr=Object.prototype.hasOwnProperty;var lr=function(e,n){return null!=e&&hr.call(e,n)};var vr=function(e,n){return null!=e&&or(e,n,lr)},pr=Object.prototype.hasOwnProperty;var gr=function(e){if(null==e)return !0;if(rn(e)&&(Te(e)||"string"==typeof e||"function"==typeof e.splice||Pe(e)||Ye(e)||Re(e)))return !e.length;var n=Tn(e);if("[object Map]"==n||"[object Set]"==n)return !e.size;if(Qe(e))return !tn(e).length;for(var t in e)if(pr.call(e,t))return !1;return !0};var yr=function(e){return void 0===e};var br=function(e,n){var t=-1,r=rn(e)?Array(e.length):[];return ft(e,(function(e,o,i){r[++t]=n(e,o,i);})),r};var mr=function(e,n){return (Te(e)?Yt:br)(e,dr(n))};var wr=function(e,n,t,r){var o=-1,i=null==e?0:e.length;for(r&&i&&(t=e[++o]);++o<i;)t=n(t,e[o],o,e);return t};var Er=function(e,n,t,r,o){return o(e,(function(e,o,i){t=r?(r=!1,e):n(t,e,o,i);})),t};var _r=function(e,n,t){var r=Te(e)?wr:Er,o=arguments.length<3;return r(e,dr(n),t,o,ft)};var jr=function(e){return "string"==typeof e||!Te(e)&&Ce(e)&&"[object String]"==T$1(e)},xr=ur("length"),Nr=RegExp("[\\u200d\\ud800-\\udfff\\u0300-\\u036f\\ufe20-\\ufe2f\\u20d0-\\u20ff\\ufe0e\\ufe0f]");var Or=function(e){return Nr.test(e)},kr="[\\ud800-\\udfff]",Ir="[\\u0300-\\u036f\\ufe20-\\ufe2f\\u20d0-\\u20ff]",Sr="\\ud83c[\\udffb-\\udfff]",Mr="[^\\ud800-\\udfff]",Cr="(?:\\ud83c[\\udde6-\\uddff]){2}",Gr="[\\ud800-\\udbff][\\udc00-\\udfff]",Br="(?:"+Ir+"|"+Sr+")"+"?",Ar="[\\ufe0e\\ufe0f]?"+Br+("(?:\\u200d(?:"+[Mr,Cr,Gr].join("|")+")[\\ufe0e\\ufe0f]?"+Br+")*"),Lr="(?:"+[Mr+Ir+"?",Ir,Cr,Gr,kr].join("|")+")",Rr=RegExp(Sr+"(?="+Sr+")|"+Lr+Ar,"g");var Tr=function(e){for(var n=Rr.lastIndex=0;Rr.test(e);)++n;return n};var Dr=function(e){return Or(e)?Tr(e):xr(e)};var Pr=function(e){if(null==e)return 0;if(rn(e))return jr(e)?Dr(e):e.length;var n=Tn(e);return "[object Map]"==n||"[object Set]"==n?e.size:tn(e).length};var zr=function(e,n,t){var r=Te(e),o=r||Pe(e)||Ye(e);if(n=dr(n),null==t){var i=e&&e.constructor;t=o?r?new i:[]:D(e)&&z(i)?Kn(En(e)):{};}return (o?xe:dt)(e,(function(e,r,o){return n(t,e,r,o)})),t},Fr=I?I.isConcatSpreadable:void 0;var Ur=function(e){return Te(e)||Re(e)||!!(Fr&&e&&e[Fr])};var Vr=function e(n,t,r,o,i){var a=-1,u=n.length;for(r||(r=Ur),i||(i=[]);++a<u;){var c=n[a];r(c)?wn(i,c):o||(i[i.length]=c);}return i};var $r=function(e,n,t){switch(t.length){case 0:return e.call(n);case 1:return e.call(n,t[0]);case 2:return e.call(n,t[0],t[1]);case 3:return e.call(n,t[0],t[1],t[2])}return e.apply(n,t)},Hr=Math.max;var Wr=function(e,n,t){return n=Hr(void 0===n?e.length-1:n,0),function(){for(var r=arguments,o=-1,i=Hr(r.length-n,0),a=Array(i);++o<i;)a[o]=r[n+o];o=-1;for(var u=Array(n+1);++o<n;)u[o]=r[o];return u[n]=t(a),$r(e,this,u)}},qr=Ne?function(e,n){return Ne(e,"toString",{configurable:!0,enumerable:!1,value:ct(n),writable:!0})}:ht,Yr=Date.now;var Jr=function(e){var n=0,t=0;return function(){var r=Yr(),o=16-(r-t);if(t=r,o>0){if(++n>=800)return arguments[0]}else n=0;return e.apply(void 0,arguments)}}(qr);var Xr=function(e,n){return Jr(Wr(e,n,ht),e+"")};var Kr=function(e,n,t,r){for(var o=e.length,i=t+(-1);++i<o;)if(n(e[i],i,e))return i;return -1};var Qr=function(e){return e!=e};var Zr=function(e,n,t){for(var r=t-1,o=e.length;++r<o;)if(e[r]===n)return r;return -1};var eo=function(e,n,t){return n==n?Zr(e,n,t):Kr(e,Qr,t)};var no=function(e,n){return !!(null==e?0:e.length)&&eo(e,n,0)>-1};var ro=function(){},oo=Sn&&1/Nt(new Sn([,-0]))[1]==1/0?function(e){return new Sn(e)}:ro;var io=function(e,n,t){var r=-1,o=no,i=e.length,a=!0,u=[],c=u;if(i>=200){var s=oo(e);if(s)return Nt(s);a=!1,o=_t,c=new wt;}else c=u;e:for(;++r<i;){var d=e[r],f=d;if(d=0!==d?d:0,a&&f==f){for(var h=c.length;h--;)if(c[h]===f)continue e;u.push(d);}else o(c,f,t)||(c!==u&&c.push(f),u.push(d));}return u};var ao=function(e){return Ce(e)&&rn(e)},uo=Xr((function(e){return io(Vr(e,1,ao,!0))}));var co=function(e,n){return Yt(n,(function(n){return e[n]}))};var so,fo=function(e){return null==e?[]:co(e,on(e))};try{so={clone:ut,constant:ct,each:pt,filter:fr,has:vr,isArray:Te,isEmpty:gr,isFunction:z,isUndefined:yr,keys:on,map:mr,reduce:_r,size:Pr,transform:zr,union:uo,values:fo};}catch(e){}so||(so=window._);var ho=so,lo=vo;function vo(e){this._isDirected=!ho.has(e,"directed")||e.directed,this._isMultigraph=!!ho.has(e,"multigraph")&&e.multigraph,this._isCompound=!!ho.has(e,"compound")&&e.compound,this._label=void 0,this._defaultNodeLabelFn=ho.constant(void 0),this._defaultEdgeLabelFn=ho.constant(void 0),this._nodes={},this._isCompound&&(this._parent={},this._children={},this._children["\0"]={}),this._in={},this._preds={},this._out={},this._sucs={},this._edgeObjs={},this._edgeLabels={};}function po(e,n){e[n]?e[n]++:e[n]=1;}function go(e,n){--e[n]||delete e[n];}function yo(e,n,t,r){var o=""+n,i=""+t;if(!e&&o>i){var a=o;o=i,i=a;}return o+""+i+""+(ho.isUndefined(r)?"\0":r)}function bo(e,n,t,r){var o=""+n,i=""+t;if(!e&&o>i){var a=o;o=i,i=a;}var u={v:o,w:i};return r&&(u.name=r),u}function mo(e,n){return yo(e,n.v,n.w,n.name)}vo.prototype._nodeCount=0,vo.prototype._edgeCount=0,vo.prototype.isDirected=function(){return this._isDirected},vo.prototype.isMultigraph=function(){return this._isMultigraph},vo.prototype.isCompound=function(){return this._isCompound},vo.prototype.setGraph=function(e){return this._label=e,this},vo.prototype.graph=function(){return this._label},vo.prototype.setDefaultNodeLabel=function(e){return ho.isFunction(e)||(e=ho.constant(e)),this._defaultNodeLabelFn=e,this},vo.prototype.nodeCount=function(){return this._nodeCount},vo.prototype.nodes=function(){return ho.keys(this._nodes)},vo.prototype.sources=function(){var e=this;return ho.filter(this.nodes(),(function(n){return ho.isEmpty(e._in[n])}))},vo.prototype.sinks=function(){var e=this;return ho.filter(this.nodes(),(function(n){return ho.isEmpty(e._out[n])}))},vo.prototype.setNodes=function(e,n){var t=arguments,r=this;return ho.each(e,(function(e){t.length>1?r.setNode(e,n):r.setNode(e);})),this},vo.prototype.setNode=function(e,n){return ho.has(this._nodes,e)?(arguments.length>1&&(this._nodes[e]=n),this):(this._nodes[e]=arguments.length>1?n:this._defaultNodeLabelFn(e),this._isCompound&&(this._parent[e]="\0",this._children[e]={},this._children["\0"][e]=!0),this._in[e]={},this._preds[e]={},this._out[e]={},this._sucs[e]={},++this._nodeCount,this)},vo.prototype.node=function(e){return this._nodes[e]},vo.prototype.hasNode=function(e){return ho.has(this._nodes,e)},vo.prototype.removeNode=function(e){var n=this;if(ho.has(this._nodes,e)){var t=function(e){n.removeEdge(n._edgeObjs[e]);};delete this._nodes[e],this._isCompound&&(this._removeFromParentsChildList(e),delete this._parent[e],ho.each(this.children(e),(function(e){n.setParent(e);})),delete this._children[e]),ho.each(ho.keys(this._in[e]),t),delete this._in[e],delete this._preds[e],ho.each(ho.keys(this._out[e]),t),delete this._out[e],delete this._sucs[e],--this._nodeCount;}return this},vo.prototype.setParent=function(e,n){if(!this._isCompound)throw new Error("Cannot set parent in a non-compound graph");if(ho.isUndefined(n))n="\0";else {for(var t=n+="";!ho.isUndefined(t);t=this.parent(t))if(t===e)throw new Error("Setting "+n+" as parent of "+e+" would create a cycle");this.setNode(n);}return this.setNode(e),this._removeFromParentsChildList(e),this._parent[e]=n,this._children[n][e]=!0,this},vo.prototype._removeFromParentsChildList=function(e){delete this._children[this._parent[e]][e];},vo.prototype.parent=function(e){if(this._isCompound){var n=this._parent[e];if("\0"!==n)return n}},vo.prototype.children=function(e){if(ho.isUndefined(e)&&(e="\0"),this._isCompound){var n=this._children[e];if(n)return ho.keys(n)}else {if("\0"===e)return this.nodes();if(this.hasNode(e))return []}},vo.prototype.predecessors=function(e){var n=this._preds[e];if(n)return ho.keys(n)},vo.prototype.successors=function(e){var n=this._sucs[e];if(n)return ho.keys(n)},vo.prototype.neighbors=function(e){var n=this.predecessors(e);if(n)return ho.union(n,this.successors(e))},vo.prototype.isLeaf=function(e){return 0===(this.isDirected()?this.successors(e):this.neighbors(e)).length},vo.prototype.filterNodes=function(e){var n=new this.constructor({directed:this._isDirected,multigraph:this._isMultigraph,compound:this._isCompound});n.setGraph(this.graph());var t=this;ho.each(this._nodes,(function(t,r){e(r)&&n.setNode(r,t);})),ho.each(this._edgeObjs,(function(e){n.hasNode(e.v)&&n.hasNode(e.w)&&n.setEdge(e,t.edge(e));}));var r={};function o(e){var i=t.parent(e);return void 0===i||n.hasNode(i)?(r[e]=i,i):i in r?r[i]:o(i)}return this._isCompound&&ho.each(n.nodes(),(function(e){n.setParent(e,o(e));})),n},vo.prototype.setDefaultEdgeLabel=function(e){return ho.isFunction(e)||(e=ho.constant(e)),this._defaultEdgeLabelFn=e,this},vo.prototype.edgeCount=function(){return this._edgeCount},vo.prototype.edges=function(){return ho.values(this._edgeObjs)},vo.prototype.setPath=function(e,n){var t=this,r=arguments;return ho.reduce(e,(function(e,o){return r.length>1?t.setEdge(e,o,n):t.setEdge(e,o),o})),this},vo.prototype.setEdge=function(){var e,n,t,r,o=!1,i=arguments[0];"object"==typeof i&&null!==i&&"v"in i?(e=i.v,n=i.w,t=i.name,2===arguments.length&&(r=arguments[1],o=!0)):(e=i,n=arguments[1],t=arguments[3],arguments.length>2&&(r=arguments[2],o=!0)),e=""+e,n=""+n,ho.isUndefined(t)||(t=""+t);var a=yo(this._isDirected,e,n,t);if(ho.has(this._edgeLabels,a))return o&&(this._edgeLabels[a]=r),this;if(!ho.isUndefined(t)&&!this._isMultigraph)throw new Error("Cannot set a named edge when isMultigraph = false");this.setNode(e),this.setNode(n),this._edgeLabels[a]=o?r:this._defaultEdgeLabelFn(e,n,t);var u=bo(this._isDirected,e,n,t);return e=u.v,n=u.w,Object.freeze(u),this._edgeObjs[a]=u,po(this._preds[n],e),po(this._sucs[e],n),this._in[n][a]=u,this._out[e][a]=u,this._edgeCount++,this},vo.prototype.edge=function(e,n,t){var r=1===arguments.length?mo(this._isDirected,arguments[0]):yo(this._isDirected,e,n,t);return this._edgeLabels[r]},vo.prototype.hasEdge=function(e,n,t){var r=1===arguments.length?mo(this._isDirected,arguments[0]):yo(this._isDirected,e,n,t);return ho.has(this._edgeLabels,r)},vo.prototype.removeEdge=function(e,n,t){var r=1===arguments.length?mo(this._isDirected,arguments[0]):yo(this._isDirected,e,n,t),o=this._edgeObjs[r];return o&&(e=o.v,n=o.w,delete this._edgeLabels[r],delete this._edgeObjs[r],go(this._preds[n],e),go(this._sucs[e],n),delete this._in[n][r],delete this._out[e][r],this._edgeCount--),this},vo.prototype.inEdges=function(e,n){var t=this._in[e];if(t){var r=ho.values(t);return n?ho.filter(r,(function(e){return e.v===n})):r}},vo.prototype.outEdges=function(e,n){var t=this._out[e];if(t){var r=ho.values(t);return n?ho.filter(r,(function(e){return e.w===n})):r}},vo.prototype.nodeEdges=function(e,n){var t=this.inEdges(e,n);if(t)return t.concat(this.outEdges(e,n))};var wo={Graph:lo,version:"2.1.8"},Eo={write:function(e){var n={options:{directed:e.isDirected(),multigraph:e.isMultigraph(),compound:e.isCompound()},nodes:_o(e),edges:jo(e)};ho.isUndefined(e.graph())||(n.value=ho.clone(e.graph()));return n},read:function(e){var n=new lo(e.options).setGraph(e.value);return ho.each(e.nodes,(function(e){n.setNode(e.v,e.value),e.parent&&n.setParent(e.v,e.parent);})),ho.each(e.edges,(function(e){n.setEdge({v:e.v,w:e.w,name:e.name},e.value);})),n}};function _o(e){return ho.map(e.nodes(),(function(n){var t=e.node(n),r=e.parent(n),o={v:n};return ho.isUndefined(t)||(o.value=t),ho.isUndefined(r)||(o.parent=r),o}))}function jo(e){return ho.map(e.edges(),(function(n){var t=e.edge(n),r={v:n.v,w:n.w};return ho.isUndefined(n.name)||(r.name=n.name),ho.isUndefined(t)||(r.value=t),r}))}var xo=function(e){var n,t={},r=[];function o(r){ho.has(t,r)||(t[r]=!0,n.push(r),ho.each(e.successors(r),o),ho.each(e.predecessors(r),o));}return ho.each(e.nodes(),(function(e){n=[],o(e),n.length&&r.push(n);})),r};var No=Oo;function Oo(){this._arr=[],this._keyIndices={};}Oo.prototype.size=function(){return this._arr.length},Oo.prototype.keys=function(){return this._arr.map((function(e){return e.key}))},Oo.prototype.has=function(e){return ho.has(this._keyIndices,e)},Oo.prototype.priority=function(e){var n=this._keyIndices[e];if(void 0!==n)return this._arr[n].priority},Oo.prototype.min=function(){if(0===this.size())throw new Error("Queue underflow");return this._arr[0].key},Oo.prototype.add=function(e,n){var t=this._keyIndices;if(e=String(e),!ho.has(t,e)){var r=this._arr,o=r.length;return t[e]=o,r.push({key:e,priority:n}),this._decrease(o),!0}return !1},Oo.prototype.removeMin=function(){this._swap(0,this._arr.length-1);var e=this._arr.pop();return delete this._keyIndices[e.key],this._heapify(0),e.key},Oo.prototype.decrease=function(e,n){var t=this._keyIndices[e];if(n>this._arr[t].priority)throw new Error("New priority is greater than current priority. Key: "+e+" Old: "+this._arr[t].priority+" New: "+n);this._arr[t].priority=n,this._decrease(t);},Oo.prototype._heapify=function(e){var n=this._arr,t=2*e,r=t+1,o=e;t<n.length&&(o=n[t].priority<n[o].priority?t:o,r<n.length&&(o=n[r].priority<n[o].priority?r:o),o!==e&&(this._swap(e,o),this._heapify(o)));},Oo.prototype._decrease=function(e){for(var n,t=this._arr,r=t[e].priority;0!==e&&!(t[n=e>>1].priority<r);)this._swap(e,n),e=n;},Oo.prototype._swap=function(e,n){var t=this._arr,r=this._keyIndices,o=t[e],i=t[n];t[e]=i,t[n]=o,r[i.key]=e,r[o.key]=n;};var ko=function(e,n,t,r){return function(e,n,t,r){var o,i,a={},u=new No,c=function(e){var n=e.v!==o?e.v:e.w,r=a[n],c=t(e),s=i.distance+c;if(c<0)throw new Error("dijkstra does not allow negative edge weights. Bad edge: "+e+" Weight: "+c);s<r.distance&&(r.distance=s,r.predecessor=o,u.decrease(n,s));};e.nodes().forEach((function(e){var t=e===n?0:Number.POSITIVE_INFINITY;a[e]={distance:t},u.add(e,t);}));for(;u.size()>0&&(o=u.removeMin(),(i=a[o]).distance!==Number.POSITIVE_INFINITY);)r(o).forEach(c);return a}(e,String(n),t||Io,r||function(n){return e.outEdges(n)})},Io=ho.constant(1);var So=function(e,n,t){return ho.transform(e.nodes(),(function(r,o){r[o]=ko(e,o,n,t);}),{})};var Mo=function(e){var n=0,t=[],r={},o=[];function i(a){var u=r[a]={onStack:!0,lowlink:n,index:n++};if(t.push(a),e.successors(a).forEach((function(e){ho.has(r,e)?r[e].onStack&&(u.lowlink=Math.min(u.lowlink,r[e].index)):(i(e),u.lowlink=Math.min(u.lowlink,r[e].lowlink));})),u.lowlink===u.index){var c,s=[];do{c=t.pop(),r[c].onStack=!1,s.push(c);}while(a!==c);o.push(s);}}return e.nodes().forEach((function(e){ho.has(r,e)||i(e);})),o};var Co=function(e){return ho.filter(Mo(e),(function(n){return n.length>1||1===n.length&&e.hasEdge(n[0],n[0])}))};var Go=function(e,n,t){return function(e,n,t){var r={},o=e.nodes();return o.forEach((function(e){r[e]={},r[e][e]={distance:0},o.forEach((function(n){e!==n&&(r[e][n]={distance:Number.POSITIVE_INFINITY});})),t(e).forEach((function(t){var o=t.v===e?t.w:t.v,i=n(t);r[e][o]={distance:i,predecessor:e};}));})),o.forEach((function(e){var n=r[e];o.forEach((function(t){var i=r[t];o.forEach((function(t){var r=i[e],o=n[t],a=i[t],u=r.distance+o.distance;u<a.distance&&(a.distance=u,a.predecessor=o.predecessor);}));}));})),r}(e,n||Bo,t||function(n){return e.outEdges(n)})},Bo=ho.constant(1);var Ao=Lo;function Lo(e){var n={},t={},r=[];if(ho.each(e.sinks(),(function o(i){if(ho.has(t,i))throw new Ro;ho.has(n,i)||(t[i]=!0,n[i]=!0,ho.each(e.predecessors(i),o),delete t[i],r.push(i));})),ho.size(n)!==e.nodeCount())throw new Ro;return r}function Ro(){}Lo.CycleException=Ro,Ro.prototype=new Error;var To=function(e,n,t){ho.isArray(n)||(n=[n]);var r=(e.isDirected()?e.successors:e.neighbors).bind(e),o=[],i={};return ho.each(n,(function(n){if(!e.hasNode(n))throw new Error("Graph does not have node: "+n);Do(e,n,"post"===t,i,r,o);})),o};function Do(e,n,t,r,o,i){ho.has(r,n)||(r[n]=!0,t||i.push(n),ho.each(o(n),(function(n){Do(e,n,t,r,o,i);})),t&&i.push(n));}var Po,zo={Graph:wo.Graph,json:Eo,alg:{components:xo,dijkstra:ko,dijkstraAll:So,findCycles:Co,floydWarshall:Go,isAcyclic:function(e){try{Ao(e);}catch(e){if(e instanceof Ao.CycleException)return !1;throw e}return !0},postorder:function(e,n){return To(e,n,"post")},preorder:function(e,n){return To(e,n,"pre")},prim:function(e,n){var t,r=new lo,o={},i=new No;function a(e){var r=e.v===t?e.w:e.v,a=i.priority(r);if(void 0!==a){var u=n(e);u<a&&(o[r]=t,i.decrease(r,u));}}if(0===e.nodeCount())return r;ho.each(e.nodes(),(function(e){i.add(e,Number.POSITIVE_INFINITY),r.setNode(e);})),i.decrease(e.nodes()[0],0);var u=!1;for(;i.size()>0;){if(t=i.removeMin(),ho.has(o,t))r.setEdge(t,o[t]);else {if(u)throw new Error("Input graph is not connected: "+e);u=!0;}e.nodeEdges(t).forEach(a);}return r},tarjan:Mo,topsort:Ao},version:wo.version};try{Po=zo;}catch(e){}Po||(Po=window.graphlib);var Fo=Po;var Uo=function(e){return at(e,5)};var Vo=function(e,n,t){if(!D(t))return !1;var r=typeof n;return !!("number"==r?rn(t)&&Fe(n,t.length):"string"==r&&n in t)&&h(t[n],e)},$o=Object.prototype,Ho=$o.hasOwnProperty,Wo=Xr((function(e,n){e=Object(e);var t=-1,r=n.length,o=r>2?n[2]:void 0;for(o&&Vo(n[0],n[1],o)&&(r=1);++t<r;)for(var i=n[t],a=dn(i),u=-1,c=a.length;++u<c;){var s=a[u],d=e[s];(void 0===d||h(d,$o[s])&&!Ho.call(e,s))&&(e[s]=i[s]);}return e}));var qo=function(e){return function(n,t,r){var o=Object(n);if(!rn(n)){var i=dr(t);n=on(n),t=function(e){return i(o[e],e,o)};}var a=e(n,t,r);return a>-1?o[i?n[a]:a]:void 0}},Yo=/^\s+|\s+$/g,Jo=/^[-+]0x[0-9a-f]+$/i,Xo=/^0b[01]+$/i,Ko=/^0o[0-7]+$/i,Qo=parseInt;var Zo=function(e){if("number"==typeof e)return e;if(Pt(e))return NaN;if(D(e)){var n="function"==typeof e.valueOf?e.valueOf():e;e=D(n)?n+"":n;}if("string"!=typeof e)return 0===e?e:+e;e=e.replace(Yo,"");var t=Xo.test(e);return t||Ko.test(e)?Qo(e.slice(2),t?2:8):Jo.test(e)?NaN:+e};var ei=function(e){return e?Infinity===(e=Zo(e))||-Infinity===e?17976931348623157e292*(e<0?-1:1):e==e?e:0:0===e?e:0};var ni=function(e){var n=ei(e),t=n%1;return n==n?t?n-t:n:0},ti=Math.max;var ri=qo((function(e,n,t){var r=null==e?0:e.length;if(!r)return -1;var o=null==t?0:ni(t);return o<0&&(o=ti(r+o,0)),Kr(e,dr(n),o)}));var oi=function(e){return (null==e?0:e.length)?Vr(e):[]};var ii=function(e,n){return null==e?e:st(e,lt(n),dn)};var ai=function(e){var n=null==e?0:e.length;return n?e[n-1]:void 0};var ui=function(e,n){var t={};return n=dr(n),dt(e,(function(e,r,o){Oe(t,r,n(e,r,o));})),t};var ci=function(e,n,t){for(var r=-1,o=e.length;++r<o;){var i=e[r],a=n(i);if(null!=a&&(void 0===u?a==a&&!Pt(a):t(a,u)))var u=a,c=i;}return c};var si=function(e,n){return e>n};var di=function(e){return e&&e.length?ci(e,ht,si):void 0};var fi=function(e,n,t){(void 0!==t&&!h(e[n],t)||void 0===t&&!(n in e))&&Oe(e,n,t);},hi=Function.prototype,li=Object.prototype,vi=hi.toString,pi$1=li.hasOwnProperty,gi=vi.call(Object);var yi=function(e){if(!Ce(e)||"[object Object]"!=T$1(e))return !1;var n=En(e);if(null===n)return !0;var t=pi$1.call(n,"constructor")&&n.constructor;return "function"==typeof t&&t instanceof t&&vi.call(t)==gi};var bi=function(e,n){if(("constructor"!==n||"function"!=typeof e[n])&&"__proto__"!=n)return e[n]};var mi=function(e){return Se(e,dn(e))};var wi=function(e,n,t,r,o,i,a){var u=bi(e,t),c=bi(n,t),s=a.get(c);if(s)fi(e,t,s);else {var d=void 0,f=void 0===d;if(f){var h=Te(c),l=!h&&Pe(c),v=!h&&!l&&Ye(c);d=c,h||l||v?Te(u)?d=u:ao(u)?d=ln(u):l?(f=!1,d=hn(c,!0)):v?(f=!1,d=Yn(c,!0)):d=[]:yi(c)||Re(c)?(d=u,Re(u)?d=mi(u):D(u)&&!z(u)||(d=Qn(c))):f=!1;}f&&(a.set(c,d),o(d,c,r,i,a),a.delete(c)),fi(e,t,d);}};var Ei=function e(n,t,r,o,i){n!==t&&st(t,(function(a,u){if(i||(i=new je),D(a))wi(n,t,u,r,e,o,i);else {var c=void 0;void 0===c&&(c=a),fi(n,u,c);}}),dn);};var _i=function(e){return Xr((function(n,t){var r=-1,o=t.length,i=o>1?t[o-1]:void 0,a=o>2?t[2]:void 0;for(i=e.length>3&&"function"==typeof i?(o--,i):void 0,a&&Vo(t[0],t[1],a)&&(i=o<3?void 0:i,o=1),n=Object(n);++r<o;){var u=t[r];u&&e(n,u,r,i);}return n}))}((function(e,n,t){Ei(e,n,t);}));var ji=function(e,n){return e<n};var xi=function(e){return e&&e.length?ci(e,ht,ji):void 0};var Ni=function(e,n){return e&&e.length?ci(e,dr(n),ji):void 0},Oi=function(){return k.Date.now()};var ki=function(e,n,t,r){if(!D(e))return e;for(var o=-1,i=(n=Zt(n,e)).length,a=i-1,u=e;null!=u&&++o<i;){var c=er$1(n[o]),s=t;if("__proto__"===c||"constructor"===c||"prototype"===c)return e;if(o!=a){var d=u[c];void 0===(s=void 0)&&(s=D(d)?d:Fe(n[o+1])?[]:{});}Ie(u,c,s),u=u[c];}return e};var Ii=function(e,n,t){for(var r=-1,o=n.length,i={};++r<o;){var a=n[r],u=nr(e,a);t(u,a)&&ki(i,Zt(a,e),u);}return i};var Si=function(e,n){return Ii(e,n,(function(n,t){return ir(e,t)}))};var Mi=function(e){return Jr(Wr(e,void 0,oi),e+"")}((function(e,n){return null==e?{}:Si(e,n)})),Ci=Math.ceil,Gi=Math.max;var Bi=function(e,n,t,r){for(var o=-1,i=Gi(Ci((n-e)/(t||1)),0),a=Array(i);i--;)a[++o]=e,e+=t;return a};var Ai=function(e){return function(n,t,r){return r&&"number"!=typeof r&&Vo(n,t,r)&&(t=r=void 0),n=ei(n),void 0===t?(t=n,n=0):t=ei(t),r=void 0===r?n<t?1:-1:ei(r),Bi(n,t,r)}}();var Li=function(e,n){var t=e.length;for(e.sort(n);t--;)e[t]=e[t].value;return e};var Ri=function(e,n){if(e!==n){var t=void 0!==e,r=null===e,o=e==e,i=Pt(e),a=void 0!==n,u=null===n,c=n==n,s=Pt(n);if(!u&&!s&&!i&&e>n||i&&a&&c&&!u&&!s||r&&a&&c||!t&&c||!o)return 1;if(!r&&!i&&!s&&e<n||s&&t&&o&&!r&&!i||u&&t&&o||!a&&o||!c)return -1}return 0};var Ti=function(e,n,t){for(var r=-1,o=e.criteria,i=n.criteria,a=o.length,u=t.length;++r<a;){var c=Ri(o[r],i[r]);if(c)return r>=u?c:c*("desc"==t[r]?-1:1)}return e.index-n.index};var Di=function(e,n,t){n=n.length?Yt(n,(function(e){return Te(e)?function(n){return nr(n,1===e.length?e[0]:e)}:e})):[ht];var r=-1;n=Yt(n,He(dr));var o=br(e,(function(e,t,o){return {criteria:Yt(n,(function(n){return n(e)})),index:++r,value:e}}));return Li(o,(function(e,n){return Ti(e,n,t)}))},Pi=Xr((function(e,n){if(null==e)return [];var t=n.length;return t>1&&Vo(e,n[0],n[1])?n=[]:t>2&&Vo(n[0],n[1],n[2])&&(n=[n[0]]),Di(e,Vr(n),[])})),zi=0;var Fi=function(e){var n=++zi;return Qt(e)+n};var Ui=function(e,n,t){for(var r=-1,o=e.length,i=n.length,a={};++r<o;){var u=r<i?n[r]:void 0;t(a,e[r],u);}return a};var Vi,$i=function(e,n){return Ui(e||[],n||[],Ie)};try{Vi={cloneDeep:Uo,constant:ct,defaults:Wo,each:pt,filter:fr,find:ri,flatten:oi,forEach:vt,forIn:ii,has:vr,isUndefined:yr,last:ai,map:mr,mapValues:ui,max:di,merge:_i,min:xi,minBy:Ni,now:Oi,pick:Mi,range:Ai,reduce:_r,sortBy:Pi,uniqueId:Fi,values:fo,zipObject:$i};}catch(e){}Vi||(Vi=window._);var Hi=Vi,Wi=qi;function qi(){var e={};e._next=e._prev=e,this._sentinel=e;}function Yi(e){e._prev._next=e._next,e._next._prev=e._prev,delete e._next,delete e._prev;}function Ji(e,n){if("_next"!==e&&"_prev"!==e)return n}qi.prototype.dequeue=function(){var e=this._sentinel,n=e._prev;if(n!==e)return Yi(n),n},qi.prototype.enqueue=function(e){var n=this._sentinel;e._prev&&e._next&&Yi(e),e._next=n._next,n._next._prev=e,n._next=e,e._prev=n;},qi.prototype.toString=function(){for(var e=[],n=this._sentinel,t=n._prev;t!==n;)e.push(JSON.stringify(t,Ji)),t=t._prev;return "["+e.join(", ")+"]"};var Xi=Fo.Graph,Ki=function(e,n){if(e.nodeCount()<=1)return [];var t=function(e,n){var t=new Xi,r=0,o=0;Hi.forEach(e.nodes(),(function(e){t.setNode(e,{v:e,in:0,out:0});})),Hi.forEach(e.edges(),(function(e){var i=t.edge(e.v,e.w)||0,a=n(e),u=i+a;t.setEdge(e.v,e.w,u),o=Math.max(o,t.node(e.v).out+=a),r=Math.max(r,t.node(e.w).in+=a);}));var i=Hi.range(o+r+3).map((function(){return new Wi})),a=r+1;return Hi.forEach(t.nodes(),(function(e){ea(i,a,t.node(e));})),{graph:t,buckets:i,zeroIdx:a}}(e,n||Qi),r=function(e,n,t){var r,o=[],i=n[n.length-1],a=n[0];for(;e.nodeCount();){for(;r=a.dequeue();)Zi(e,n,t,r);for(;r=i.dequeue();)Zi(e,n,t,r);if(e.nodeCount())for(var u=n.length-2;u>0;--u)if(r=n[u].dequeue()){o=o.concat(Zi(e,n,t,r,!0));break}}return o}(t.graph,t.buckets,t.zeroIdx);return Hi.flatten(Hi.map(r,(function(n){return e.outEdges(n.v,n.w)})),!0)},Qi=Hi.constant(1);function Zi(e,n,t,r,o){var i=o?[]:void 0;return Hi.forEach(e.inEdges(r.v),(function(r){var a=e.edge(r),u=e.node(r.v);o&&i.push({v:r.v,w:r.w}),u.out-=a,ea(n,t,u);})),Hi.forEach(e.outEdges(r.v),(function(r){var o=e.edge(r),i=r.w,a=e.node(i);a.in-=o,ea(n,t,a);})),e.removeNode(r.v),i}function ea(e,n,t){t.out?t.in?e[t.out-t.in+n].enqueue(t):e[e.length-1].enqueue(t):e[0].enqueue(t);}var na={run:function(e){var n="greedy"===e.graph().acyclicer?Ki(e,function(e){return function(n){return e.edge(n).weight}}(e)):function(e){var n=[],t={},r={};function o(i){Hi.has(r,i)||(r[i]=!0,t[i]=!0,Hi.forEach(e.outEdges(i),(function(e){Hi.has(t,e.w)?n.push(e):o(e.w);})),delete t[i]);}return Hi.forEach(e.nodes(),o),n}(e);Hi.forEach(n,(function(n){var t=e.edge(n);e.removeEdge(n),t.forwardName=n.name,t.reversed=!0,e.setEdge(n.w,n.v,t,Hi.uniqueId("rev"));}));},undo:function(e){Hi.forEach(e.edges(),(function(n){var t=e.edge(n);if(t.reversed){e.removeEdge(n);var r=t.forwardName;delete t.reversed,delete t.forwardName,e.setEdge(n.w,n.v,t,r);}}));}};var ta=Fo.Graph,ra={addDummyNode:oa,simplify:function(e){var n=(new ta).setGraph(e.graph());return Hi.forEach(e.nodes(),(function(t){n.setNode(t,e.node(t));})),Hi.forEach(e.edges(),(function(t){var r=n.edge(t.v,t.w)||{weight:0,minlen:1},o=e.edge(t);n.setEdge(t.v,t.w,{weight:r.weight+o.weight,minlen:Math.max(r.minlen,o.minlen)});})),n},asNonCompoundGraph:function(e){var n=new ta({multigraph:e.isMultigraph()}).setGraph(e.graph());return Hi.forEach(e.nodes(),(function(t){e.children(t).length||n.setNode(t,e.node(t));})),Hi.forEach(e.edges(),(function(t){n.setEdge(t,e.edge(t));})),n},successorWeights:function(e){var n=Hi.map(e.nodes(),(function(n){var t={};return Hi.forEach(e.outEdges(n),(function(n){t[n.w]=(t[n.w]||0)+e.edge(n).weight;})),t}));return Hi.zipObject(e.nodes(),n)},predecessorWeights:function(e){var n=Hi.map(e.nodes(),(function(n){var t={};return Hi.forEach(e.inEdges(n),(function(n){t[n.v]=(t[n.v]||0)+e.edge(n).weight;})),t}));return Hi.zipObject(e.nodes(),n)},intersectRect:function(e,n){var t,r,o=e.x,i=e.y,a=n.x-o,u=n.y-i,c=e.width/2,s=e.height/2;if(!a&&!u)throw new Error("Not possible to find intersection inside of the rectangle");Math.abs(u)*c>Math.abs(a)*s?(u<0&&(s=-s),t=s*a/u,r=s):(a<0&&(c=-c),t=c,r=c*u/a);return {x:o+t,y:i+r}},buildLayerMatrix:function(e){var n=Hi.map(Hi.range(ia(e)+1),(function(){return []}));return Hi.forEach(e.nodes(),(function(t){var r=e.node(t),o=r.rank;Hi.isUndefined(o)||(n[o][r.order]=t);})),n},normalizeRanks:function(e){var n=Hi.min(Hi.map(e.nodes(),(function(n){return e.node(n).rank})));Hi.forEach(e.nodes(),(function(t){var r=e.node(t);Hi.has(r,"rank")&&(r.rank-=n);}));},removeEmptyRanks:function(e){var n=Hi.min(Hi.map(e.nodes(),(function(n){return e.node(n).rank}))),t=[];Hi.forEach(e.nodes(),(function(r){var o=e.node(r).rank-n;t[o]||(t[o]=[]),t[o].push(r);}));var r=0,o=e.graph().nodeRankFactor;Hi.forEach(t,(function(n,t){Hi.isUndefined(n)&&t%o!=0?--r:r&&Hi.forEach(n,(function(n){e.node(n).rank+=r;}));}));},addBorderNode:function(e,n,t,r){var o={width:0,height:0};arguments.length>=4&&(o.rank=t,o.order=r);return oa(e,"border",o,n)},maxRank:ia,partition:function(e,n){var t={lhs:[],rhs:[]};return Hi.forEach(e,(function(e){n(e)?t.lhs.push(e):t.rhs.push(e);})),t},time:function(e,n){var t=Hi.now();try{return n()}finally{console.log(e+" time: "+(Hi.now()-t)+"ms");}},notime:function(e,n){return n()}};function oa(e,n,t,r){var o;do{o=Hi.uniqueId(r);}while(e.hasNode(o));return t.dummy=n,e.setNode(o,t),o}function ia(e){return Hi.max(Hi.map(e.nodes(),(function(n){var t=e.node(n).rank;if(!Hi.isUndefined(t))return t})))}var aa={run:function(e){e.graph().dummyChains=[],Hi.forEach(e.edges(),(function(n){!function(e,n){var t,r,o,i=n.v,a=e.node(i).rank,u=n.w,c=e.node(u).rank,s=n.name,d=e.edge(n),f=d.labelRank;if(c===a+1)return;for(e.removeEdge(n),o=0,++a;a<c;++o,++a)d.points=[],r={width:0,height:0,edgeLabel:d,edgeObj:n,rank:a},t=ra.addDummyNode(e,"edge",r,"_d"),a===f&&(r.width=d.width,r.height=d.height,r.dummy="edge-label",r.labelpos=d.labelpos),e.setEdge(i,t,{weight:d.weight},s),0===o&&e.graph().dummyChains.push(t),i=t;e.setEdge(i,u,{weight:d.weight},s);}(e,n);}));},undo:function(e){Hi.forEach(e.graph().dummyChains,(function(n){var t,r=e.node(n),o=r.edgeLabel;for(e.setEdge(r.edgeObj,o);r.dummy;)t=e.successors(n)[0],e.removeNode(n),o.points.push({x:r.x,y:r.y}),"edge-label"===r.dummy&&(o.x=r.x,o.y=r.y,o.width=r.width,o.height=r.height),n=t,r=e.node(n);}));}};var ua=function(e){var n={};Hi.forEach(e.sources(),(function t(r){var o=e.node(r);if(Hi.has(n,r))return o.rank;n[r]=!0;var i=Hi.min(Hi.map(e.outEdges(r),(function(n){return t(n.w)-e.edge(n).minlen})));return i!==Number.POSITIVE_INFINITY&&null!=i||(i=0),o.rank=i}));},ca=function(e,n){return e.node(n.w).rank-e.node(n.v).rank-e.edge(n).minlen};var sa=Fo.Graph,da=ca,fa=function(e){var n,t,r=new sa({directed:!1}),o=e.nodes()[0],i=e.nodeCount();r.setNode(o,{});for(;ha(r,e)<i;)n=la(r,e),t=r.hasNode(n.v)?da(e,n):-da(e,n),va(r,e,t);return r};function ha(e,n){return Hi.forEach(e.nodes(),(function t(r){Hi.forEach(n.nodeEdges(r),(function(o){var i=o.v,a=r===i?o.w:i;e.hasNode(a)||da(n,o)||(e.setNode(a,{}),e.setEdge(r,a,{}),t(a));}));})),e.nodeCount()}function la(e,n){return Hi.minBy(n.edges(),(function(t){if(e.hasNode(t.v)!==e.hasNode(t.w))return da(n,t)}))}function va(e,n,t){Hi.forEach(e.nodes(),(function(e){n.node(e).rank+=t;}));}var pa=ca,ga=ua,ya=Fo.alg.preorder,ba=Fo.alg.postorder,ma=ra.simplify,wa=Ea;function Ea(e){e=ma(e),ga(e);var n,t=fa(e);for(xa(t),_a(t,e);n=Oa(t);)Ia(t,e,n,ka(t,e,n));}function _a(e,n){var t=ba(e,e.nodes());t=t.slice(0,t.length-1),Hi.forEach(t,(function(t){!function(e,n,t){var r=e.node(t).parent;e.edge(t,r).cutvalue=ja(e,n,t);}(e,n,t);}));}function ja(e,n,t){var r=e.node(t).parent,o=!0,i=n.edge(t,r),a=0;return i||(o=!1,i=n.edge(r,t)),a=i.weight,Hi.forEach(n.nodeEdges(t),(function(i){var u,c,s=i.v===t,d=s?i.w:i.v;if(d!==r){var f=s===o,h=n.edge(i).weight;if(a+=f?h:-h,u=t,c=d,e.hasEdge(u,c)){var l=e.edge(t,d).cutvalue;a+=f?-l:l;}}})),a}function xa(e,n){arguments.length<2&&(n=e.nodes()[0]),Na(e,{},1,n);}function Na(e,n,t,r,o){var i=t,a=e.node(r);return n[r]=!0,Hi.forEach(e.neighbors(r),(function(o){Hi.has(n,o)||(t=Na(e,n,t,o,r));})),a.low=i,a.lim=t++,o?a.parent=o:delete a.parent,t}function Oa(e){return Hi.find(e.edges(),(function(n){return e.edge(n).cutvalue<0}))}function ka(e,n,t){var r=t.v,o=t.w;n.hasEdge(r,o)||(r=t.w,o=t.v);var i=e.node(r),a=e.node(o),u=i,c=!1;i.lim>a.lim&&(u=a,c=!0);var s=Hi.filter(n.edges(),(function(n){return c===Sa(e,e.node(n.v),u)&&c!==Sa(e,e.node(n.w),u)}));return Hi.minBy(s,(function(e){return pa(n,e)}))}function Ia(e,n,t,r){var o=t.v,i=t.w;e.removeEdge(o,i),e.setEdge(r.v,r.w,{}),xa(e),_a(e,n),function(e,n){var t=Hi.find(e.nodes(),(function(e){return !n.node(e).parent})),r=ya(e,t);r=r.slice(1),Hi.forEach(r,(function(t){var r=e.node(t).parent,o=n.edge(t,r),i=!1;o||(o=n.edge(r,t),i=!0),n.node(t).rank=n.node(r).rank+(i?o.minlen:-o.minlen);}));}(e,n);}function Sa(e,n,t){return t.low<=n.lim&&n.lim<=t.lim}Ea.initLowLimValues=xa,Ea.initCutValues=_a,Ea.calcCutValue=ja,Ea.leaveEdge=Oa,Ea.enterEdge=ka,Ea.exchangeEdges=Ia;var Ma=ua,Ca=function(e){switch(e.graph().ranker){case"network-simplex":Ba(e);break;case"tight-tree":!function(e){Ma(e),fa(e);}(e);break;case"longest-path":Ga(e);break;default:Ba(e);}};var Ga=Ma;function Ba(e){wa(e);}var Aa=function(e){var n=function(e){var n={},t=0;function r(o){var i=t;Hi.forEach(e.children(o),r),n[o]={low:i,lim:t++};}return Hi.forEach(e.children(),r),n}(e);Hi.forEach(e.graph().dummyChains,(function(t){for(var r=e.node(t),o=r.edgeObj,i=function(e,n,t,r){var o,i,a=[],u=[],c=Math.min(n[t].low,n[r].low),s=Math.max(n[t].lim,n[r].lim);o=t;do{o=e.parent(o),a.push(o);}while(o&&(n[o].low>c||s>n[o].lim));i=o,o=r;for(;(o=e.parent(o))!==i;)u.push(o);return {path:a.concat(u.reverse()),lca:i}}(e,n,o.v,o.w),a=i.path,u=i.lca,c=0,s=a[c],d=!0;t!==o.w;){if(r=e.node(t),d){for(;(s=a[c])!==u&&e.node(s).maxRank<r.rank;)c++;s===u&&(d=!1);}if(!d){for(;c<a.length-1&&e.node(s=a[c+1]).minRank<=r.rank;)c++;s=a[c];}e.setParent(t,s),t=e.successors(t)[0];}}));};var La={run:function(e){var n=ra.addDummyNode(e,"root",{},"_root"),t=function(e){var n={};function t(r,o){var i=e.children(r);i&&i.length&&Hi.forEach(i,(function(e){t(e,o+1);})),n[r]=o;}return Hi.forEach(e.children(),(function(e){t(e,1);})),n}(e),r=Hi.max(Hi.values(t))-1,o=2*r+1;e.graph().nestingRoot=n,Hi.forEach(e.edges(),(function(n){e.edge(n).minlen*=o;}));var i=function(e){return Hi.reduce(e.edges(),(function(n,t){return n+e.edge(t).weight}),0)}(e)+1;Hi.forEach(e.children(),(function(a){Ra(e,n,o,i,r,t,a);})),e.graph().nodeRankFactor=o;},cleanup:function(e){var n=e.graph();e.removeNode(n.nestingRoot),delete n.nestingRoot,Hi.forEach(e.edges(),(function(n){e.edge(n).nestingEdge&&e.removeEdge(n);}));}};function Ra(e,n,t,r,o,i,a){var u=e.children(a);if(u.length){var c=ra.addBorderNode(e,"_bt"),s=ra.addBorderNode(e,"_bb"),d=e.node(a);e.setParent(c,a),d.borderTop=c,e.setParent(s,a),d.borderBottom=s,Hi.forEach(u,(function(u){Ra(e,n,t,r,o,i,u);var d=e.node(u),f=d.borderTop?d.borderTop:u,h=d.borderBottom?d.borderBottom:u,l=d.borderTop?r:2*r,v=f!==h?1:o-i[a]+1;e.setEdge(c,f,{weight:l,minlen:v,nestingEdge:!0}),e.setEdge(h,s,{weight:l,minlen:v,nestingEdge:!0});})),e.parent(a)||e.setEdge(n,c,{weight:0,minlen:o+i[a]});}else a!==n&&e.setEdge(n,a,{weight:0,minlen:t});}var Ta=function(e){Hi.forEach(e.children(),(function n(t){var r=e.children(t),o=e.node(t);if(r.length&&Hi.forEach(r,n),Hi.has(o,"minRank")){o.borderLeft=[],o.borderRight=[];for(var i=o.minRank,a=o.maxRank+1;i<a;++i)Da(e,"borderLeft","_bl",t,o,i),Da(e,"borderRight","_br",t,o,i);}}));};function Da(e,n,t,r,o,i){var a={width:0,height:0,rank:i,borderType:n},u=o[n][i-1],c=ra.addDummyNode(e,"border",a,t);o[n][i]=c,e.setParent(c,r),u&&e.setEdge(u,c,{weight:1});}var Pa={adjust:function(e){var n=e.graph().rankdir.toLowerCase();"lr"!==n&&"rl"!==n||za(e);},undo:function(e){var n=e.graph().rankdir.toLowerCase();"bt"!==n&&"rl"!==n||function(e){Hi.forEach(e.nodes(),(function(n){Ua(e.node(n));})),Hi.forEach(e.edges(),(function(n){var t=e.edge(n);Hi.forEach(t.points,Ua),Hi.has(t,"y")&&Ua(t);}));}(e);"lr"!==n&&"rl"!==n||(!function(e){Hi.forEach(e.nodes(),(function(n){Va(e.node(n));})),Hi.forEach(e.edges(),(function(n){var t=e.edge(n);Hi.forEach(t.points,Va),Hi.has(t,"x")&&Va(t);}));}(e),za(e));}};function za(e){Hi.forEach(e.nodes(),(function(n){Fa(e.node(n));})),Hi.forEach(e.edges(),(function(n){Fa(e.edge(n));}));}function Fa(e){var n=e.width;e.width=e.height,e.height=n;}function Ua(e){e.y=-e.y;}function Va(e){var n=e.x;e.x=e.y,e.y=n;}var $a=function(e){var n={},t=Hi.filter(e.nodes(),(function(n){return !e.children(n).length})),r=Hi.max(Hi.map(t,(function(n){return e.node(n).rank}))),o=Hi.map(Hi.range(r+1),(function(){return []}));function i(t){if(!Hi.has(n,t)){n[t]=!0;var r=e.node(t);o[r.rank].push(t),Hi.forEach(e.successors(t),i);}}var a=Hi.sortBy(t,(function(n){return e.node(n).rank}));return Hi.forEach(a,i),o};var Ha=function(e,n){for(var t=0,r=1;r<n.length;++r)t+=Wa(e,n[r-1],n[r]);return t};function Wa(e,n,t){for(var r=Hi.zipObject(t,Hi.map(t,(function(e,n){return n}))),o=Hi.flatten(Hi.map(n,(function(n){return Hi.sortBy(Hi.map(e.outEdges(n),(function(n){return {pos:r[n.w],weight:e.edge(n).weight}})),"pos")})),!0),i=1;i<t.length;)i<<=1;var a=2*i-1;i-=1;var u=Hi.map(new Array(a),(function(){return 0})),c=0;return Hi.forEach(o.forEach((function(e){var n=e.pos+i;u[n]+=e.weight;for(var t=0;n>0;)n%2&&(t+=u[n+1]),u[n=n-1>>1]+=e.weight;c+=e.weight*t;}))),c}var qa=function(e,n){return Hi.map(n,(function(n){var t=e.inEdges(n);if(t.length){var r=Hi.reduce(t,(function(n,t){var r=e.edge(t),o=e.node(t.v);return {sum:n.sum+r.weight*o.order,weight:n.weight+r.weight}}),{sum:0,weight:0});return {v:n,barycenter:r.sum/r.weight,weight:r.weight}}return {v:n}}))};var Ya=function(e,n){var t={};return Hi.forEach(e,(function(e,n){var r=t[e.v]={indegree:0,in:[],out:[],vs:[e.v],i:n};Hi.isUndefined(e.barycenter)||(r.barycenter=e.barycenter,r.weight=e.weight);})),Hi.forEach(n.edges(),(function(e){var n=t[e.v],r=t[e.w];Hi.isUndefined(n)||Hi.isUndefined(r)||(r.indegree++,n.out.push(t[e.w]));})),function(e){var n=[];function t(e){return function(n){n.merged||(Hi.isUndefined(n.barycenter)||Hi.isUndefined(e.barycenter)||n.barycenter>=e.barycenter)&&function(e,n){var t=0,r=0;e.weight&&(t+=e.barycenter*e.weight,r+=e.weight);n.weight&&(t+=n.barycenter*n.weight,r+=n.weight);e.vs=n.vs.concat(e.vs),e.barycenter=t/r,e.weight=r,e.i=Math.min(n.i,e.i),n.merged=!0;}(e,n);}}function r(n){return function(t){t.in.push(n),0==--t.indegree&&e.push(t);}}for(;e.length;){var o=e.pop();n.push(o),Hi.forEach(o.in.reverse(),t(o)),Hi.forEach(o.out,r(o));}return Hi.map(Hi.filter(n,(function(e){return !e.merged})),(function(e){return Hi.pick(e,["vs","i","barycenter","weight"])}))}(Hi.filter(t,(function(e){return !e.indegree})))};var Ja=function(e,n){var t=ra.partition(e,(function(e){return Hi.has(e,"barycenter")})),r=t.lhs,o=Hi.sortBy(t.rhs,(function(e){return -e.i})),i=[],a=0,u=0,c=0;r.sort((s=!!n,function(e,n){return e.barycenter<n.barycenter?-1:e.barycenter>n.barycenter?1:s?n.i-e.i:e.i-n.i})),c=Xa(i,o,c),Hi.forEach(r,(function(e){c+=e.vs.length,i.push(e.vs),a+=e.barycenter*e.weight,u+=e.weight,c=Xa(i,o,c);}));var s;var d={vs:Hi.flatten(i,!0)};u&&(d.barycenter=a/u,d.weight=u);return d};function Xa(e,n,t){for(var r;n.length&&(r=Hi.last(n)).i<=t;)n.pop(),e.push(r.vs),t++;return t}var Ka=function e(n,t,r,o){var i=n.children(t),a=n.node(t),u=a?a.borderLeft:void 0,c=a?a.borderRight:void 0,s={};u&&(i=Hi.filter(i,(function(e){return e!==u&&e!==c})));var d=qa(n,i);Hi.forEach(d,(function(t){if(n.children(t.v).length){var i=e(n,t.v,r,o);s[t.v]=i,Hi.has(i,"barycenter")&&(a=t,u=i,Hi.isUndefined(a.barycenter)?(a.barycenter=u.barycenter,a.weight=u.weight):(a.barycenter=(a.barycenter*a.weight+u.barycenter*u.weight)/(a.weight+u.weight),a.weight+=u.weight));}var a,u;}));var f=Ya(d,r);!function(e,n){Hi.forEach(e,(function(e){e.vs=Hi.flatten(e.vs.map((function(e){return n[e]?n[e].vs:e})),!0);}));}(f,s);var h=Ja(f,o);if(u&&(h.vs=Hi.flatten([u,h.vs,c],!0),n.predecessors(u).length)){var l=n.node(n.predecessors(u)[0]),v=n.node(n.predecessors(c)[0]);Hi.has(h,"barycenter")||(h.barycenter=0,h.weight=0),h.barycenter=(h.barycenter*h.weight+l.order+v.order)/(h.weight+2),h.weight+=2;}return h};var Qa=Fo.Graph,Za=function(e,n,t){var r=function(e){var n;for(;e.hasNode(n=Hi.uniqueId("_root")););return n}(e),o=new Qa({compound:!0}).setGraph({root:r}).setDefaultNodeLabel((function(n){return e.node(n)}));return Hi.forEach(e.nodes(),(function(i){var a=e.node(i),u=e.parent(i);(a.rank===n||a.minRank<=n&&n<=a.maxRank)&&(o.setNode(i),o.setParent(i,u||r),Hi.forEach(e[t](i),(function(n){var t=n.v===i?n.w:n.v,r=o.edge(t,i),a=Hi.isUndefined(r)?0:r.weight;o.setEdge(t,i,{weight:e.edge(n).weight+a});})),Hi.has(a,"minRank")&&o.setNode(i,{borderLeft:a.borderLeft[n],borderRight:a.borderRight[n]}));})),o};var eu=function(e,n,t){var r,o={};Hi.forEach(t,(function(t){for(var i,a,u=e.parent(t);u;){if((i=e.parent(u))?(a=o[i],o[i]=u):(a=r,r=u),a&&a!==u)return void n.setEdge(a,u);u=i;}}));};var nu=Fo.Graph,tu=function(e){var n=ra.maxRank(e),t=ru(e,Hi.range(1,n+1),"inEdges"),r=ru(e,Hi.range(n-1,-1,-1),"outEdges"),o=$a(e);iu(e,o);for(var i,a=Number.POSITIVE_INFINITY,u=0,c=0;c<4;++u,++c){ou(u%2?t:r,u%4>=2),o=ra.buildLayerMatrix(e);var s=Ha(e,o);s<a&&(c=0,i=Hi.cloneDeep(o),a=s);}iu(e,i);};function ru(e,n,t){return Hi.map(n,(function(n){return Za(e,n,t)}))}function ou(e,n){var t=new nu;Hi.forEach(e,(function(e){var r=e.graph().root,o=Ka(e,r,t,n);Hi.forEach(o.vs,(function(n,t){e.node(n).order=t;})),eu(e,t,o.vs);}));}function iu(e,n){Hi.forEach(n,(function(n){Hi.forEach(n,(function(n,t){e.node(n).order=t;}));}));}var au=Fo.Graph,uu=function(e){var n,t=ra.buildLayerMatrix(e),r=Hi.merge(cu(e,t),su(e,t)),o={};Hi.forEach(["u","d"],(function(i){n="u"===i?t:Hi.values(t).reverse(),Hi.forEach(["l","r"],(function(t){"r"===t&&(n=Hi.map(n,(function(e){return Hi.values(e).reverse()})));var a=("u"===i?e.predecessors:e.successors).bind(e),u=hu(e,n,r,a),c=lu(e,n,u.root,u.align,"r"===t);"r"===t&&(c=Hi.mapValues(c,(function(e){return -e}))),o[i+t]=c;}));}));var i=vu(e,o);return pu(o,i),gu(o,e.graph().align)};function cu(e,n){var t={};return Hi.reduce(n,(function(n,r){var o=0,i=0,a=n.length,u=Hi.last(r);return Hi.forEach(r,(function(n,c){var s=function(e,n){if(e.node(n).dummy)return Hi.find(e.predecessors(n),(function(n){return e.node(n).dummy}))}(e,n),d=s?e.node(s).order:a;(s||n===u)&&(Hi.forEach(r.slice(i,c+1),(function(n){Hi.forEach(e.predecessors(n),(function(r){var i=e.node(r),a=i.order;!(a<o||d<a)||i.dummy&&e.node(n).dummy||du(t,r,n);}));})),i=c+1,o=d);})),r})),t}function su(e,n){var t={};function r(n,r,o,i,a){var u;Hi.forEach(Hi.range(r,o),(function(r){u=n[r],e.node(u).dummy&&Hi.forEach(e.predecessors(u),(function(n){var r=e.node(n);r.dummy&&(r.order<i||r.order>a)&&du(t,n,u);}));}));}return Hi.reduce(n,(function(n,t){var o,i=-1,a=0;return Hi.forEach(t,(function(u,c){if("border"===e.node(u).dummy){var s=e.predecessors(u);s.length&&(o=e.node(s[0]).order,r(t,a,c,i,o),a=c,i=o);}r(t,a,t.length,o,n.length);})),t})),t}function du(e,n,t){if(n>t){var r=n;n=t,t=r;}var o=e[n];o||(e[n]=o={}),o[t]=!0;}function fu(e,n,t){if(n>t){var r=n;n=t,t=r;}return Hi.has(e[n],t)}function hu(e,n,t,r){var o={},i={},a={};return Hi.forEach(n,(function(e){Hi.forEach(e,(function(e,n){o[e]=e,i[e]=e,a[e]=n;}));})),Hi.forEach(n,(function(e){var n=-1;Hi.forEach(e,(function(e){var u=r(e);if(u.length)for(var c=((u=Hi.sortBy(u,(function(e){return a[e]}))).length-1)/2,s=Math.floor(c),d=Math.ceil(c);s<=d;++s){var f=u[s];i[e]===e&&n<a[f]&&!fu(t,e,f)&&(i[f]=e,i[e]=o[e]=o[f],n=a[f]);}}));})),{root:o,align:i}}function lu(e,n,t,r,o){var i={},a=function(e,n,t,r){var o=new au,i=e.graph(),a=function(e,n,t){return function(r,o,i){var a,u=r.node(o),c=r.node(i),s=0;if(s+=u.width/2,Hi.has(u,"labelpos"))switch(u.labelpos.toLowerCase()){case"l":a=-u.width/2;break;case"r":a=u.width/2;}if(a&&(s+=t?a:-a),a=0,s+=(u.dummy?n:e)/2,s+=(c.dummy?n:e)/2,s+=c.width/2,Hi.has(c,"labelpos"))switch(c.labelpos.toLowerCase()){case"l":a=c.width/2;break;case"r":a=-c.width/2;}return a&&(s+=t?a:-a),a=0,s}}(i.nodesep,i.edgesep,r);return Hi.forEach(n,(function(n){var r;Hi.forEach(n,(function(n){var i=t[n];if(o.setNode(i),r){var u=t[r],c=o.edge(u,i);o.setEdge(u,i,Math.max(a(e,n,r),c||0));}r=n;}));})),o}(e,n,t,o),u=o?"borderLeft":"borderRight";function c(e,n){for(var t=a.nodes(),r=t.pop(),o={};r;)o[r]?e(r):(o[r]=!0,t.push(r),t=t.concat(n(r))),r=t.pop();}return c((function(e){i[e]=a.inEdges(e).reduce((function(e,n){return Math.max(e,i[n.v]+a.edge(n))}),0);}),a.predecessors.bind(a)),c((function(n){var t=a.outEdges(n).reduce((function(e,n){return Math.min(e,i[n.w]-a.edge(n))}),Number.POSITIVE_INFINITY),r=e.node(n);t!==Number.POSITIVE_INFINITY&&r.borderType!==u&&(i[n]=Math.max(i[n],t));}),a.successors.bind(a)),Hi.forEach(r,(function(e){i[e]=i[t[e]];})),i}function vu(e,n){return Hi.minBy(Hi.values(n),(function(n){var t=Number.NEGATIVE_INFINITY,r=Number.POSITIVE_INFINITY;return Hi.forIn(n,(function(n,o){var i=function(e,n){return e.node(n).width}(e,o)/2;t=Math.max(n+i,t),r=Math.min(n-i,r);})),t-r}))}function pu(e,n){var t=Hi.values(n),r=Hi.min(t),o=Hi.max(t);Hi.forEach(["u","d"],(function(t){Hi.forEach(["l","r"],(function(i){var a,u=t+i,c=e[u];if(c!==n){var s=Hi.values(c);(a="l"===i?r-Hi.min(s):o-Hi.max(s))&&(e[u]=Hi.mapValues(c,(function(e){return e+a})));}}));}));}function gu(e,n){return Hi.mapValues(e.ul,(function(t,r){if(n)return e[n.toLowerCase()][r];var o=Hi.sortBy(Hi.map(e,r));return (o[1]+o[2])/2}))}var yu=uu,bu=function(e){((function(e){var n=ra.buildLayerMatrix(e),t=e.graph().ranksep,r=0;Hi.forEach(n,(function(n){var o=Hi.max(Hi.map(n,(function(n){return e.node(n).height})));Hi.forEach(n,(function(n){e.node(n).y=r+o/2;})),r+=o+t;}));}))(e=ra.asNonCompoundGraph(e)),Hi.forEach(yu(e),(function(n,t){e.node(t).x=n;}));};var mu=ra.normalizeRanks,wu=ra.removeEmptyRanks,Eu=ra,_u=Fo.Graph,ju=function(e,n){var t=n&&n.debugTiming?Eu.time:Eu.notime;t("layout",(function(){var n=t(" buildLayoutGraph",(function(){return function(e){var n=new _u({multigraph:!0,compound:!0}),t=Bu(e.graph());return n.setGraph(Hi.merge({},Nu,Gu(t,xu),Hi.pick(t,Ou))),Hi.forEach(e.nodes(),(function(t){var r=Bu(e.node(t));n.setNode(t,Hi.defaults(Gu(r,ku),Iu)),n.setParent(t,e.parent(t));})),Hi.forEach(e.edges(),(function(t){var r=Bu(e.edge(t));n.setEdge(t,Hi.merge({},Mu,Gu(r,Su),Hi.pick(r,Cu)));})),n}(e)}));t(" runLayout",(function(){!function(e,n){n(" makeSpaceForEdgeLabels",(function(){!function(e){var n=e.graph();n.ranksep/=2,Hi.forEach(e.edges(),(function(t){var r=e.edge(t);r.minlen*=2,"c"!==r.labelpos.toLowerCase()&&("TB"===n.rankdir||"BT"===n.rankdir?r.width+=r.labeloffset:r.height+=r.labeloffset);}));}(e);})),n(" removeSelfEdges",(function(){!function(e){Hi.forEach(e.edges(),(function(n){if(n.v===n.w){var t=e.node(n.v);t.selfEdges||(t.selfEdges=[]),t.selfEdges.push({e:n,label:e.edge(n)}),e.removeEdge(n);}}));}(e);})),n(" acyclic",(function(){na.run(e);})),n(" nestingGraph.run",(function(){La.run(e);})),n(" rank",(function(){Ca(Eu.asNonCompoundGraph(e));})),n(" injectEdgeLabelProxies",(function(){!function(e){Hi.forEach(e.edges(),(function(n){var t=e.edge(n);if(t.width&&t.height){var r=e.node(n.v),o={rank:(e.node(n.w).rank-r.rank)/2+r.rank,e:n};Eu.addDummyNode(e,"edge-proxy",o,"_ep");}}));}(e);})),n(" removeEmptyRanks",(function(){wu(e);})),n(" nestingGraph.cleanup",(function(){La.cleanup(e);})),n(" normalizeRanks",(function(){mu(e);})),n(" assignRankMinMax",(function(){!function(e){var n=0;Hi.forEach(e.nodes(),(function(t){var r=e.node(t);r.borderTop&&(r.minRank=e.node(r.borderTop).rank,r.maxRank=e.node(r.borderBottom).rank,n=Hi.max(n,r.maxRank));})),e.graph().maxRank=n;}(e);})),n(" removeEdgeLabelProxies",(function(){!function(e){Hi.forEach(e.nodes(),(function(n){var t=e.node(n);"edge-proxy"===t.dummy&&(e.edge(t.e).labelRank=t.rank,e.removeNode(n));}));}(e);})),n(" normalize.run",(function(){aa.run(e);})),n(" parentDummyChains",(function(){Aa(e);})),n(" addBorderSegments",(function(){Ta(e);})),n(" order",(function(){tu(e);})),n(" insertSelfEdges",(function(){!function(e){var n=Eu.buildLayerMatrix(e);Hi.forEach(n,(function(n){var t=0;Hi.forEach(n,(function(n,r){var o=e.node(n);o.order=r+t,Hi.forEach(o.selfEdges,(function(n){Eu.addDummyNode(e,"selfedge",{width:n.label.width,height:n.label.height,rank:o.rank,order:r+ ++t,e:n.e,label:n.label},"_se");})),delete o.selfEdges;}));}));}(e);})),n(" adjustCoordinateSystem",(function(){Pa.adjust(e);})),n(" position",(function(){bu(e);})),n(" positionSelfEdges",(function(){!function(e){Hi.forEach(e.nodes(),(function(n){var t=e.node(n);if("selfedge"===t.dummy){var r=e.node(t.e.v),o=r.x+r.width/2,i=r.y,a=t.x-o,u=r.height/2;e.setEdge(t.e,t.label),e.removeNode(n),t.label.points=[{x:o+2*a/3,y:i-u},{x:o+5*a/6,y:i-u},{x:o+a,y:i},{x:o+5*a/6,y:i+u},{x:o+2*a/3,y:i+u}],t.label.x=t.x,t.label.y=t.y;}}));}(e);})),n(" removeBorderNodes",(function(){!function(e){Hi.forEach(e.nodes(),(function(n){if(e.children(n).length){var t=e.node(n),r=e.node(t.borderTop),o=e.node(t.borderBottom),i=e.node(Hi.last(t.borderLeft)),a=e.node(Hi.last(t.borderRight));t.width=Math.abs(a.x-i.x),t.height=Math.abs(o.y-r.y),t.x=i.x+t.width/2,t.y=r.y+t.height/2;}})),Hi.forEach(e.nodes(),(function(n){"border"===e.node(n).dummy&&e.removeNode(n);}));}(e);})),n(" normalize.undo",(function(){aa.undo(e);})),n(" fixupEdgeLabelCoords",(function(){!function(e){Hi.forEach(e.edges(),(function(n){var t=e.edge(n);if(Hi.has(t,"x"))switch("l"!==t.labelpos&&"r"!==t.labelpos||(t.width-=t.labeloffset),t.labelpos){case"l":t.x-=t.width/2+t.labeloffset;break;case"r":t.x+=t.width/2+t.labeloffset;}}));}(e);})),n(" undoCoordinateSystem",(function(){Pa.undo(e);})),n(" translateGraph",(function(){!function(e){var n=Number.POSITIVE_INFINITY,t=0,r=Number.POSITIVE_INFINITY,o=0,i=e.graph(),a=i.marginx||0,u=i.marginy||0;function c(e){var i=e.x,a=e.y,u=e.width,c=e.height;n=Math.min(n,i-u/2),t=Math.max(t,i+u/2),r=Math.min(r,a-c/2),o=Math.max(o,a+c/2);}Hi.forEach(e.nodes(),(function(n){c(e.node(n));})),Hi.forEach(e.edges(),(function(n){var t=e.edge(n);Hi.has(t,"x")&&c(t);})),n-=a,r-=u,Hi.forEach(e.nodes(),(function(t){var o=e.node(t);o.x-=n,o.y-=r;})),Hi.forEach(e.edges(),(function(t){var o=e.edge(t);Hi.forEach(o.points,(function(e){e.x-=n,e.y-=r;})),Hi.has(o,"x")&&(o.x-=n),Hi.has(o,"y")&&(o.y-=r);})),i.width=t-n+a,i.height=o-r+u;}(e);})),n(" assignNodeIntersects",(function(){!function(e){Hi.forEach(e.edges(),(function(n){var t,r,o=e.edge(n),i=e.node(n.v),a=e.node(n.w);o.points?(t=o.points[0],r=o.points[o.points.length-1]):(o.points=[],t=a,r=i),o.points.unshift(Eu.intersectRect(i,t)),o.points.push(Eu.intersectRect(a,r));}));}(e);})),n(" reversePoints",(function(){!function(e){Hi.forEach(e.edges(),(function(n){var t=e.edge(n);t.reversed&&t.points.reverse();}));}(e);})),n(" acyclic.undo",(function(){na.undo(e);}));}(n,t);})),t(" updateInputGraph",(function(){!function(e,n){Hi.forEach(e.nodes(),(function(t){var r=e.node(t),o=n.node(t);r&&(r.x=o.x,r.y=o.y,n.children(t).length&&(r.width=o.width,r.height=o.height));})),Hi.forEach(e.edges(),(function(t){var r=e.edge(t),o=n.edge(t);r.points=o.points,Hi.has(o,"x")&&(r.x=o.x,r.y=o.y);})),e.graph().width=n.graph().width,e.graph().height=n.graph().height;}(e,n);}));}));};var xu=["nodesep","edgesep","ranksep","marginx","marginy"],Nu={ranksep:50,edgesep:20,nodesep:50,rankdir:"tb"},Ou=["acyclicer","ranker","rankdir","align"],ku=["width","height"],Iu={width:0,height:0},Su=["minlen","weight","width","height","labeloffset"],Mu={minlen:1,weight:1,width:0,height:0,labeloffset:10,labelpos:"r"},Cu=["labelpos"];function Gu(e,n){return Hi.mapValues(Hi.pick(e,n),Number)}function Bu(e){var n={};return Hi.forEach(e,(function(e,t){n[t.toLowerCase()]=e;})),n}var Au=Fo.Graph;var Lu={graphlib:Fo,layout:ju,debug:{debugOrdering:function(e){var n=ra.buildLayerMatrix(e),t=new Au({compound:!0,multigraph:!0}).setGraph({});return Hi.forEach(e.nodes(),(function(n){t.setNode(n,{label:n}),t.setParent(n,"layer"+e.node(n).rank);})),Hi.forEach(e.edges(),(function(e){t.setEdge(e.v,e.w,{},e.name);})),Hi.forEach(n,(function(e,n){var r="layer"+n;t.setNode(r,{rank:"same"}),Hi.reduce(e,(function(e,n){return t.setEdge(e,n,{style:"invis"}),n}));})),t}},util:{time:ra.time,notime:ra.notime},version:"0.8.5"},Ru=Lu.graphlib,Tu=Lu.layout;class Du{constructor(e){this.cardinality=1,this.include=a.UNSPECIFIED,this.isGroupNode=!1,this.parentNode=null,this.type=i$1.NODE,this.name=e.name,this.attr=e.attr||{},this.inputs=e.inputs,this.path=e.path||[],this.width=e.width,this.height=e.height;}}class Pu{constructor(){this.nodes={},this.edges=[],this.nodes={},this.edges=[];}}function zu(e){const n=new Pu;return e.nodes.map((e=>new Du(e))).forEach((e=>{n.nodes[e.name]=e,e.inputs.forEach((t=>{!function(e,n,t){t.name!==n.name&&e.edges.push(Object.assign(Object.assign({},t.attr),{v:t.name,w:n.name}));}(n,e,t);}));})),n}class Fu{constructor(e,n={}){this.attr=null,this.bridgeGraph=null,this.cardinality=0,this.depth=1,this.include=a.UNSPECIFIED,this.isGroupNode=!0,this.parentNode=null,this.type=i$1.META,this.path=[],this.name=e,this.metaGraph=Hu(e,u.META,n);}getFirstChild(){return this.metaGraph.node(this.metaGraph.nodes()[0])}getChildren(){return this.metaGraph.nodes().map((e=>this.metaGraph.node(e)))}leaves(){let e,n=[],t=[this];for(;t.length;){let r=t.shift();r.isGroupNode?(e=r.metaGraph,e.nodes().forEach((n=>t.push(e.node(n))))):n.push(r.name);}return n}}class Uu{constructor(e,n){this.v=e,this.w=n,this.baseEdgeList=[],this.inbound=null,this.name=null;}addBaseEdge(e,n){this.baseEdgeList.push(e);}}function Vu(e,n={}){return new Fu(e,n)}function $u(e,n){return new Uu(e,n)}function Hu(e,n,t){const r=t||{},o=new Ru.Graph(r);return o.setGraph({name:e,rankdir:r.rankdir,type:n,align:r.align}),o}class Wu{constructor(e={}){this.graphOptions=e,this.index={},this.graphOptions.compound=!0,this.root=Vu(r,this.graphOptions),this.index[r]=this.root;}getNodeMap(){return this.index}node(e){return this.index[e]}setNode(e,n){this.index[e]=n;}getBridgeGraph(e){const n=this.index[e];if(!n)throw Error("Could not find node in hierarchy: "+e);if(!("metaGraph"in n))return null;const t=n;if(t.bridgeGraph)return t.bridgeGraph;const r=Hu(o,u.BRIDGE,this.graphOptions);if(t.bridgeGraph=r,!n.parentNode||!("metaGraph"in n.parentNode))return r;const i=n.parentNode;return [i.metaGraph,this.getBridgeGraph(i.name)].forEach((n=>{n.edges().filter((n=>n.v===e||n.w===e)).forEach((t=>{const o=t.w===e;n.edge(t).baseEdgeList.forEach((n=>{const[i,a]=o?[n.w,t.v]:[n.v,t.w],u=this.getChildName(e,i),c={v:o?a:u,w:o?u:a};let s=r.edge(c);s||(s=$u(c.v,c.w),s.inbound=o,r.setEdge(c.v,c.w,s)),s.addBaseEdge(n,this);}));}));})),r}getChildName(e,n){let t=this.index[n];for(;t;){if(t.parentNode&&t.parentNode.name===e)return t.name;t=t.parentNode;}throw Error("Could not find immediate child for descendant: "+n)}getPredecessors(e){const n=this.index[e];if(!n)throw Error("Could not find node with name: "+e);return this.getOneWayEdges(n,!0)}getSuccessors(e){const n=this.index[e];if(!n)throw Error("Could not find node with name: "+e);return this.getOneWayEdges(n,!1)}getOneWayEdges(e,n){const t=[];if(!e.parentNode||!e.parentNode.isGroupNode)return t;const r=e.parentNode,o=r.metaGraph,i=this.getBridgeGraph(r.name);return Yu(o,e,n,t),Yu(i,e,n,t),t}}function qu(e,n){const{rankDirection:t,align:r}=n,o=new Wu({rankdir:t,align:r});return function(e,n){Object.keys(n.nodes).forEach((t=>{const r=n.nodes[t],o=r.path;let i=e.root;i.depth=Math.max(o.length,i.depth);for(let n=0;n<o.length&&(i.depth=Math.max(i.depth,o.length-n),i.cardinality+=r.cardinality,n!==o.length-1);n++){const t=o[n];let a=e.node(t);a||(a=Vu(t,e.graphOptions),a.path=r.path.slice(0,n+1),a.parentNode=i,e.setNode(t,a),i.metaGraph.setNode(t,a)),i=a;}e.setNode(r.name,r),r.parentNode=i,i.metaGraph.setNode(r.name,r);}));}(o,e),function(e,n){const t=e.getNodeMap();let r=[],o=[];const i=(e,n)=>{let t=0;for(;e;)n[t++]=e.name,e=e.parentNode;return t-1};n.edges.forEach((a=>{r=[],o=[];let u=i(n.nodes[a.v],r),c=i(n.nodes[a.w],o);for(;r[u]===o[c];)if(u--,c--,u<0||c<0)throw Error("No difference found between ancestor paths.");const s=t[r[u+1]],d=r[u],f=o[c];let h=s.metaGraph.edge(d,f);h||(h=$u(d,f),s.metaGraph.setEdge(d,f,h)),h.addBaseEdge(a,e);}));}(o,e),o}function Yu(e,n,t,r){(t?e.inEdges(n.name):e.outEdges(n.name)).forEach((n=>{const t=e.edge(n);r.push(t);}));}class Ju{constructor(e){this.hierarchy=e,this.index={},this.hasSubHierarchy={},this.root=new Qu(this.hierarchy.root,this.hierarchy.graphOptions),this.index[e.root.name]=this.root,this.buildSubHierarchy(e.root.name),this.root.expanded=!0;}getRenderInfoNodes(){return Object.values(this.index)}getSubHierarchy(){return this.hasSubHierarchy}buildSubHierarchy(e){if(e in this.hasSubHierarchy)return;this.hasSubHierarchy[e]=!0;const n=this.index[e];if(n.node.type!==i$1.META)return;const t=n,r=t.node.metaGraph,o=t.coreGraph;r.nodes().forEach((e=>{const n=this.getOrCreateRenderNodeByName(e);o.setNode(e,n);})),r.edges().forEach((e=>{const n=r.edge(e),t=new Ku(n);o.setEdge(e.v,e.w,t);}));const u=t.node.parentNode;if(!u)return;const c=this.getRenderNodeByName(u.name),s=(e,...n)=>n.concat([e?"IN":"OUT"]).join("~~"),d=this.hierarchy.getBridgeGraph(e);d.edges().forEach((n=>{const t=d.edge(n),f=!!r.node(n.w),[h,l]=f?[n.w,n.v]:[n.v,n.w],v=n=>{const t=f?{v:n,w:e}:{v:e,w:n};return c.coreGraph.edge(t)};let p=v(l);p||(p=v(s(f,l,u.name)));const g=s(f,e),y=s(f,l,e);let b=o.node(y);if(!b){let e=o.node(g);if(!e){const n={name:g,type:i$1.BRIDGE,isGroupNode:!1,cardinality:0,parentNode:null,include:a.UNSPECIFIED,inbound:f,attr:{}};e=new Xu(n),this.index[g]=e,o.setNode(g,e);}const n={name:y,type:i$1.BRIDGE,isGroupNode:!1,cardinality:1,parentNode:null,include:a.UNSPECIFIED,inbound:f,attr:{}};b=new Xu(n),this.index[y]=b,o.setNode(y,b),o.setParent(y,g),e.node.cardinality++;}const m=new Ku(t);m.adjoiningMetaEdge=p,f?o.setEdge(y,h,m):o.setEdge(h,y,m);}));}getOrCreateRenderNodeByName(e){if(!e)return null;if(e in this.index)return this.index[e];const n=this.getNodeByName(e);return n?(this.index[e]=n.isGroupNode?new Qu(n,this.hierarchy.graphOptions):new Xu(n),this.index[e]):null}getRenderNodeByName(e){return this.index[e]}getNodeByName(e){return this.hierarchy.node(e)}}class Xu{constructor(e){this.node=e,this.expanded=!1,this.x=0,this.y=0,this.coreBox={width:0,height:0},this.outboxWidth=0,this.labelOffset=0,this.radius=0,this.labelHeight=0,this.paddingTop=0,this.paddingLeft=0,this.paddingRight=0,this.paddingBottom=0,this.width=e.width||0,this.height=e.height||0,this.displayName=e.name,this.attr=e.attr;}}class Ku{constructor(e){this.metaEdge=e,this.adjoiningMetaEdge=null,this.weight=1,this.points=[];}}class Qu extends Xu{constructor(e,n){super(e);const t=e.metaGraph.graph();n.compound=!0,this.coreGraph=Hu(t.name,u.CORE,n);}}function Zu(e,t){e.node.isGroupNode&&function(e,t){const r=n(t);e.coreGraph.nodes().map((n=>e.coreGraph.node(n))).forEach((e=>{var n,o,a,u,c,s;const{height:d,width:f}=e;switch(e.node.type){case i$1.NODE:Object.assign(e,r.nodeSize.node),e.height=d||r.nodeSize.node.height,e.width=f||r.nodeSize.node.width;break;case i$1.BRIDGE:Object.assign(e,r.nodeSize.bridge);break;case i$1.META:if(e.expanded){Zu(e,t);}else Object.assign(e,r.nodeSize.meta),e.height=r.nodeSize.meta.height,e.width=r.nodeSize.meta.width;break;default:throw Error("Unrecognized node type: "+e.node.type)}if(!e.expanded){const r=e.attr;!function(e,n=!1){if(e.coreBox.width=e.width,e.coreBox.height=e.height,!n){const n=`${e.displayName}`.length,t=3;e.width=Math.max(e.coreBox.width,n*t);}}(e,t&&(0===e.node.type&&!!(null===(o=null===(n=null==t?void 0:t.nodeSize)||void 0===n?void 0:n.meta)||void 0===o?void 0:o.width)||1===e.node.type&&(!!(null===(u=null===(a=null==t?void 0:t.nodeSize)||void 0===a?void 0:a.node)||void 0===u?void 0:u.width)||!!r.width)||2===e.node.type&&!!(null===(s=null===(c=null==t?void 0:t.nodeSize)||void 0===c?void 0:c.bridge)||void 0===s?void 0:s.width)));}}));}(e,t),e.node.type===i$1.META&&function(e,t){const r=n(t),o=r.subScene.meta;Object.assign(e,o);const{nodeSep:a,rankSep:u,edgeSep:c,align:s}=r.graph.meta,d={nodesep:a,ranksep:u,edgesep:c,align:s};Object.assign(e.coreBox,function(e,n){const{ranksep:t,nodesep:r,edgesep:o,align:a}=n;Object.assign(e.graph(),{ranksep:t,nodesep:r,edgesep:o,align:a});const u=[];if(e.nodes().forEach((n=>{e.node(n).node.type!==i$1.BRIDGE&&u.push(n);})),!u.length)return {width:0,height:0};Tu(e);let c=1/0,s=1/0,d=-1/0,f=-1/0;return u.forEach((n=>{const t=e.node(n),r=.5*t.width,o=t.x-r,i=t.x+r;c=o<c?o:c,d=i>d?i:d;const a=.5*t.height,u=t.y-a,h=t.y+a;s=u<s?u:s,f=h>f?h:f;})),e.edges().forEach((n=>{const t=e.edge(n),r=e.node(t.metaEdge.v),o=e.node(t.metaEdge.w);if(3===t.points.length&&function(e){let n=ec(e[0],e[1]);for(let t=1;t<e.length-1;t++){const r=ec(e[t],e[t+1]);if(Math.abs(r-n)>1)return !1;n=r;}return !0}(t.points)){if(null!=r){const e=r.expanded?r.x:nc(r);t.points[0].x=e;}if(null!=o){const e=o.expanded?o.x:nc(o);t.points[2].x=e;}t.points=[t.points[0],t.points[1]];}const i=t.points[t.points.length-2];null!=o&&(t.points[t.points.length-1]=tc(i,o));const a=t.points[1];null!=r&&(t.points[0]=tc(a,r)),t.points.forEach((e=>{c=e.x<c?e.x:c,d=e.x>d?e.x:d,s=e.y<s?e.y:s,f=e.y>f?e.y:f;}));})),e.nodes().forEach((n=>{const t=e.node(n);t.x-=c,t.y-=s;})),e.edges().forEach((n=>{e.edge(n).points.forEach((e=>{e.x-=c,e.y-=s;}));})),{width:d-c,height:f-s}}(e.coreGraph,d));let f=0;e.coreGraph.nodeCount()>0&&f++;const h=f<=1?0:f;e.coreBox.width+=h+h,e.coreBox.height=o.labelHeight+e.coreBox.height,e.width=e.coreBox.width+o.paddingLeft+o.paddingRight,e.height=e.paddingTop+e.coreBox.height+e.paddingBottom;}(e,t);}function ec(e,n){const t=n.x-e.x,r=n.y-e.y;return 180*Math.atan(r/t)/Math.PI}function nc(e){if(e.expanded)return e.x;return e.x-e.width/2+0+e.coreBox.width/2}function tc(e,n){const t=n.expanded?n.x:nc(n),r=n.y,o=e.x-t,i=e.y-r;let a,u,c=n.expanded?n.width:n.coreBox.width,s=n.expanded?n.height:n.coreBox.height;return Math.abs(i)*c/2>Math.abs(o)*s/2?(i<0&&(s=-s),a=0===i?0:s/2*o/i,u=s/2):(o<0&&(c=-c),a=c/2,u=0===o?0:c/2*i/o),{x:t+a,y:r+u}}function rc(n,t,r){var o,i,a,u;const c=n.nodes.filter(((e,n,t)=>t.findIndex((n=>n.id===e.id))!==n)).map((e=>e.id));if(c.length)throw new Error(`Duplicated ids found: ${c.join(", ")}`);const s=function(e){const n={nodes:[]},t=e.compound,r=Object.keys(t||{}),o=new Map,i=(e,n=[])=>{if(o.has(e))return o.get(e);for(let o=0;o<r.length;o++){let a=r[o];if(t&&-1!==t[a].indexOf(e))return n.unshift(a),i(a,n)}return 0===n.length&&o.set(e,n),n},a=n=>e.edges.filter((e=>e.w===n)).map((e=>({name:e.v})));return e.nodes.forEach((e=>{const t=e.id,r=[...i(t),t];let o=a(t);n.nodes.push({name:t,path:r,inputs:o,width:e.width,height:e.height,attr:Object.assign({},e)});})),n}(n),d=function(e,n){const t=(e,n)=>{for(let t of n.values())if(t.includes(e))return !0;return !1},r=(e,n=[])=>{if(0===Object.keys(e).length)return [...new Set(n)];const o=new Map(Object.keys(e).map((n=>[n,e[n]]))),i={};for(let[e,r]of o)t(e,o)?i[e]=r:n=n.concat(e,r);return r(i,n)};return r(e).filter((e=>n.includes(e)))}(n.compound||{},(null==t?void 0:t.expanded)||[]),f=function(e,n){return function(e){return new Ju(e)}(qu(zu(e),n))}(s,{rankDirection:(null===(i=null===(o=null==r?void 0:r.graph)||void 0===o?void 0:o.meta)||void 0===i?void 0:i.rankDir)||(null==t?void 0:t.rankDirection)||e.graph.meta.rankDir,align:(null===(u=null===(a=null==r?void 0:r.graph)||void 0===a?void 0:a.meta)||void 0===u?void 0:u.align)||e.graph.meta.align});return function(e,n){n.forEach((n=>{const t=e.getRenderInfoNodes().find((e=>e.displayName===n));let r=t&&t.node&&t.node.name||"";const o=e.getRenderNodeByName(r);if(!o)throw new Error(`No nodes found: ${r}`);o.expanded=!0,e.buildSubHierarchy(r);}));}(f,d),Zu(f.root,r),ac(f.root)}function oc(e,n=!1){const t=JSON.parse(JSON.stringify(e)),o={nodes:[t],edges:[...t.edges]};return t.nodes.forEach((function e(n){(0===n.type||1===n.type)&&o.nodes.push(n),0===n.type&&(o.edges=o.edges.concat(n.edges)),Array.isArray(n.nodes)&&n.nodes.forEach(e);})),n&&o.nodes.forEach((e=>{const n=o.nodes.find((n=>n.id===e.parentNodeName));if(n){const t=n.x-n.width/2+n.paddingLeft,o=n.y-n.height/2+n.labelHeight+n.paddingTop;n.id!==r&&(e.x+=t,e.y+=o),0===e.type&&e.edges.forEach((n=>{n.points.forEach((n=>{n.x+=e.x-e.width/2+e.paddingLeft,n.y+=e.y-e.height/2+e.labelHeight+e.paddingTop;}));}));}})),o}function ic(e,n,t,o){var i,a;let u=[];const c=(null===(i=t.find((n=>n.id===e)))||void 0===i?void 0:i.path)||[],s=(null===(a=t.find((e=>e.id===n)))||void 0===a?void 0:a.path)||[],d=[r,...c].slice(0,c.length).reverse(),f=[r,...s].slice(0,s.length);return d.forEach((r=>{const i=t.find((e=>e.id===r));u=u.concat(i.edges.filter((t=>t.baseEdgeList.some((t=>t.v===((null==o?void 0:o.v)||e)&&t.w===((null==o?void 0:o.w)||n))))));})),f.filter((e=>!d.includes(e))).forEach((r=>{const i=t.find((e=>e.id===r));u=u.concat(i.edges.filter((t=>t.baseEdgeList.some((t=>t.v===((null==o?void 0:o.v)||e)&&t.w===((null==o?void 0:o.w)||n))))));})),u}function ac(e){const n=e.coreGraph.nodes().map((n=>e.coreGraph.node(n)));return Object.assign(Object.assign({},uc(e)),{expanded:e.expanded,nodes:e.expanded?(t=n,t.map((e=>e.node.type===i$1.META?ac(e):uc(e)))):[],edges:e.expanded?cc(e):[]});var t;}function uc(e){return {id:e.node.name,name:e.node.name,type:e.node.type,cardinality:e.node.cardinality,attr:e.attr,parentNodeName:e.node.parentNode?e.node.parentNode.name:null,coreBox:Object.assign({},e.coreBox),x:e.x,y:e.y,width:e.width,height:e.height,radius:e.radius,labelHeight:e.labelHeight,labelOffset:e.labelOffset,outboxWidth:e.outboxWidth,paddingLeft:e.paddingLeft,paddingTop:e.paddingTop,paddingRight:e.paddingRight,paddingBottom:e.paddingBottom,path:e.node.path}}function cc(e){return e.coreGraph.edges().map((n=>({renderInfoEdge:e.coreGraph.edge(n),edge:n}))).filter((({renderInfoEdge:e})=>e.metaEdge)).map((({edge:n,renderInfoEdge:t})=>{const r=function(e,n){const t=n.points.map((e=>Object.assign({},e)));if(n.adjoiningMetaEdge){const r=n.adjoiningMetaEdge.points,o=n.metaEdge.inbound,i=o?r[r.length-1]:r[0],a=t[o?0:t.length-1],u=e.x-e.width/2,c=e.y-e.height/2,s=i.x-u,d=i.y-c,f=-e.paddingLeft,h=-(e.paddingTop+e.labelHeight);a.x=s+f,a.y=d+h;}return t}(e,t);return {adjoiningEdge:t.adjoiningMetaEdge?{w:t.adjoiningMetaEdge.metaEdge.w,v:t.adjoiningMetaEdge.metaEdge.v}:null,inbound:t.metaEdge.inbound,w:n.w,v:n.v,points:r,weight:t.weight,baseEdgeList:t.metaEdge.baseEdgeList,parentNodeName:e.node.name}}))}
194332
+ const e={graph:{meta:{rankDir:"TB",nodeSep:50,rankSep:50,edgeSep:5,align:void 0}},subScene:{meta:{paddingTop:20,paddingBottom:20,paddingLeft:20,paddingRight:20,labelHeight:20}},nodeSize:{meta:{width:100,maxLabelWidth:0,height:20},node:{width:80,height:20,labelOffset:10,maxLabelWidth:40},bridge:{width:5,height:5,radius:2,labelOffset:0}}};function n(n={},t=e){var r,o,i,a;const u=JSON.parse(JSON.stringify(t)),c=(null===(r=null==n?void 0:n.graph)||void 0===r?void 0:r.meta)||{},s=(null===(o=null==n?void 0:n.subScene)||void 0===o?void 0:o.meta)||{},d=(null===(i=null==n?void 0:n.nodeSize)||void 0===i?void 0:i.meta)||{},f=(null===(a=null==n?void 0:n.nodeSize)||void 0===a?void 0:a.node)||{},h=u.nodeSize.bridge;return {graph:{meta:Object.assign(u.graph.meta,c)},subScene:{meta:Object.assign(u.subScene.meta,s)},nodeSize:{meta:Object.assign(u.nodeSize.meta,d),node:Object.assign(u.nodeSize.node,f),bridge:h}}}function t(e){return `◬${e}◬`}const r=t("ROOT"),o=t("BRIDGE_GRAPH");var i,a,u,c;!function(e){e[e.META=0]="META",e[e.NODE=1]="NODE",e[e.BRIDGE=2]="BRIDGE";}(i||(i={})),function(e){e[e.INCLUDE=0]="INCLUDE",e[e.EXCLUDE=1]="EXCLUDE",e[e.UNSPECIFIED=2]="UNSPECIFIED";}(a||(a={})),function(e){e[e.META=0]="META",e[e.CORE=1]="CORE",e[e.BRIDGE=2]="BRIDGE";}(u||(u={})),function(e){e[e.META=0]="META",e[e.OP=1]="OP",e[e.SERIES=2]="SERIES";}(c||(c={}));var s="undefined"!=typeof globalThis?globalThis:"undefined"!=typeof window?window:"undefined"!=typeof global?global:"undefined"!=typeof self?self:{};function d(e,n){return e(n={exports:{}},n.exports),n.exports}var f=function(){this.__data__=[],this.size=0;};var h=function(e,n){return e===n||e!=e&&n!=n};var l=function(e,n){for(var t=e.length;t--;)if(h(e[t][0],n))return t;return -1},v=Array.prototype.splice;var p=function(e){var n=this.__data__,t=l(n,e);return !(t<0)&&(t==n.length-1?n.pop():v.call(n,t,1),--this.size,!0)};var g=function(e){var n=this.__data__,t=l(n,e);return t<0?void 0:n[t][1]};var y=function(e){return l(this.__data__,e)>-1};var b=function(e,n){var t=this.__data__,r=l(t,e);return r<0?(++this.size,t.push([e,n])):t[r][1]=n,this};function m(e){var n=-1,t=null==e?0:e.length;for(this.clear();++n<t;){var r=e[n];this.set(r[0],r[1]);}}m.prototype.clear=f,m.prototype.delete=p,m.prototype.get=g,m.prototype.has=y,m.prototype.set=b;var w=m;var E=function(){this.__data__=new w,this.size=0;};var _=function(e){var n=this.__data__,t=n.delete(e);return this.size=n.size,t};var j=function(e){return this.__data__.get(e)};var x=function(e){return this.__data__.has(e)},N="object"==typeof s&&s&&s.Object===Object&&s,O="object"==typeof self&&self&&self.Object===Object&&self,k=N||O||Function("return this")(),I=k.Symbol,S=Object.prototype,M=S.hasOwnProperty,C=S.toString,G=I?I.toStringTag:void 0;var B=function(e){var n=M.call(e,G),t=e[G];try{e[G]=void 0;var r=!0;}catch(e){}var o=C.call(e);return r&&(n?e[G]=t:delete e[G]),o},A=Object.prototype.toString;var L=function(e){return A.call(e)},R$1=I?I.toStringTag:void 0;var T$1=function(e){return null==e?void 0===e?"[object Undefined]":"[object Null]":R$1&&R$1 in Object(e)?B(e):L(e)};var D=function(e){var n=typeof e;return null!=e&&("object"==n||"function"==n)};var P,z=function(e){if(!D(e))return !1;var n=T$1(e);return "[object Function]"==n||"[object GeneratorFunction]"==n||"[object AsyncFunction]"==n||"[object Proxy]"==n},F=k["__core-js_shared__"],U=(P=/[^.]+$/.exec(F&&F.keys&&F.keys.IE_PROTO||""))?"Symbol(src)_1."+P:"";var V=function(e){return !!U&&U in e},$=Function.prototype.toString;var H=function(e){if(null!=e){try{return $.call(e)}catch(e){}try{return e+""}catch(e){}}return ""},W=/^\[object .+?Constructor\]$/,q=Function.prototype,Y=Object.prototype,J=q.toString,X=Y.hasOwnProperty,K=RegExp("^"+J.call(X).replace(/[\\^$.*+?()[\]{}|]/g,"\\$&").replace(/hasOwnProperty|(function).*?(?=\\\()| for .+?(?=\\\])/g,"$1.*?")+"$");var Q=function(e){return !(!D(e)||V(e))&&(z(e)?K:W).test(H(e))};var Z=function(e,n){return null==e?void 0:e[n]};var ee=function(e,n){var t=Z(e,n);return Q(t)?t:void 0},ne=ee(k,"Map"),te=ee(Object,"create");var re=function(){this.__data__=te?te(null):{},this.size=0;};var oe=function(e){var n=this.has(e)&&delete this.__data__[e];return this.size-=n?1:0,n},ie=Object.prototype.hasOwnProperty;var ae=function(e){var n=this.__data__;if(te){var t=n[e];return "__lodash_hash_undefined__"===t?void 0:t}return ie.call(n,e)?n[e]:void 0},ue=Object.prototype.hasOwnProperty;var ce=function(e){var n=this.__data__;return te?void 0!==n[e]:ue.call(n,e)};var se=function(e,n){var t=this.__data__;return this.size+=this.has(e)?0:1,t[e]=te&&void 0===n?"__lodash_hash_undefined__":n,this};function de(e){var n=-1,t=null==e?0:e.length;for(this.clear();++n<t;){var r=e[n];this.set(r[0],r[1]);}}de.prototype.clear=re,de.prototype.delete=oe,de.prototype.get=ae,de.prototype.has=ce,de.prototype.set=se;var fe=de;var he=function(){this.size=0,this.__data__={hash:new fe,map:new(ne||w),string:new fe};};var le=function(e){var n=typeof e;return "string"==n||"number"==n||"symbol"==n||"boolean"==n?"__proto__"!==e:null===e};var ve=function(e,n){var t=e.__data__;return le(n)?t["string"==typeof n?"string":"hash"]:t.map};var pe=function(e){var n=ve(this,e).delete(e);return this.size-=n?1:0,n};var ge=function(e){return ve(this,e).get(e)};var ye=function(e){return ve(this,e).has(e)};var be=function(e,n){var t=ve(this,e),r=t.size;return t.set(e,n),this.size+=t.size==r?0:1,this};function me(e){var n=-1,t=null==e?0:e.length;for(this.clear();++n<t;){var r=e[n];this.set(r[0],r[1]);}}me.prototype.clear=he,me.prototype.delete=pe,me.prototype.get=ge,me.prototype.has=ye,me.prototype.set=be;var we=me;var Ee=function(e,n){var t=this.__data__;if(t instanceof w){var r=t.__data__;if(!ne||r.length<199)return r.push([e,n]),this.size=++t.size,this;t=this.__data__=new we(r);}return t.set(e,n),this.size=t.size,this};function _e(e){var n=this.__data__=new w(e);this.size=n.size;}_e.prototype.clear=E,_e.prototype.delete=_,_e.prototype.get=j,_e.prototype.has=x,_e.prototype.set=Ee;var je=_e;var xe=function(e,n){for(var t=-1,r=null==e?0:e.length;++t<r&&!1!==n(e[t],t,e););return e},Ne=function(){try{var e=ee(Object,"defineProperty");return e({},"",{}),e}catch(e){}}();var Oe=function(e,n,t){"__proto__"==n&&Ne?Ne(e,n,{configurable:!0,enumerable:!0,value:t,writable:!0}):e[n]=t;},ke=Object.prototype.hasOwnProperty;var Ie=function(e,n,t){var r=e[n];ke.call(e,n)&&h(r,t)&&(void 0!==t||n in e)||Oe(e,n,t);};var Se=function(e,n,t,r){var o=!t;t||(t={});for(var i=-1,a=n.length;++i<a;){var u=n[i],c=void 0;void 0===c&&(c=e[u]),o?Oe(t,u,c):Ie(t,u,c);}return t};var Me=function(e,n){for(var t=-1,r=Array(e);++t<e;)r[t]=n(t);return r};var Ce=function(e){return null!=e&&"object"==typeof e};var Ge=function(e){return Ce(e)&&"[object Arguments]"==T$1(e)},Be=Object.prototype,Ae=Be.hasOwnProperty,Le=Be.propertyIsEnumerable,Re=Ge(function(){return arguments}())?Ge:function(e){return Ce(e)&&Ae.call(e,"callee")&&!Le.call(e,"callee")},Te=Array.isArray;var De=function(){return !1},Pe=d((function(e,n){var t=n&&!n.nodeType&&n,r=t&&e&&!e.nodeType&&e,o=r&&r.exports===t?k.Buffer:void 0,i=(o?o.isBuffer:void 0)||De;e.exports=i;})),ze=/^(?:0|[1-9]\d*)$/;var Fe=function(e,n){var t=typeof e;return !!(n=null==n?9007199254740991:n)&&("number"==t||"symbol"!=t&&ze.test(e))&&e>-1&&e%1==0&&e<n};var Ue=function(e){return "number"==typeof e&&e>-1&&e%1==0&&e<=9007199254740991},Ve={};Ve["[object Float32Array]"]=Ve["[object Float64Array]"]=Ve["[object Int8Array]"]=Ve["[object Int16Array]"]=Ve["[object Int32Array]"]=Ve["[object Uint8Array]"]=Ve["[object Uint8ClampedArray]"]=Ve["[object Uint16Array]"]=Ve["[object Uint32Array]"]=!0,Ve["[object Arguments]"]=Ve["[object Array]"]=Ve["[object ArrayBuffer]"]=Ve["[object Boolean]"]=Ve["[object DataView]"]=Ve["[object Date]"]=Ve["[object Error]"]=Ve["[object Function]"]=Ve["[object Map]"]=Ve["[object Number]"]=Ve["[object Object]"]=Ve["[object RegExp]"]=Ve["[object Set]"]=Ve["[object String]"]=Ve["[object WeakMap]"]=!1;var $e=function(e){return Ce(e)&&Ue(e.length)&&!!Ve[T$1(e)]};var He=function(e){return function(n){return e(n)}},We=d((function(e,n){var t=n&&!n.nodeType&&n,r=t&&e&&!e.nodeType&&e,o=r&&r.exports===t&&N.process,i=function(){try{var e=r&&r.require&&r.require("util").types;return e||o&&o.binding&&o.binding("util")}catch(e){}}();e.exports=i;})),qe=We&&We.isTypedArray,Ye=qe?He(qe):$e,Je=Object.prototype.hasOwnProperty;var Xe=function(e,n){var t=Te(e),r=!t&&Re(e),o=!t&&!r&&Pe(e),i=!t&&!r&&!o&&Ye(e),a=t||r||o||i,u=a?Me(e.length,String):[],c=u.length;for(var s in e)!n&&!Je.call(e,s)||a&&("length"==s||o&&("offset"==s||"parent"==s)||i&&("buffer"==s||"byteLength"==s||"byteOffset"==s)||Fe(s,c))||u.push(s);return u},Ke=Object.prototype;var Qe=function(e){var n=e&&e.constructor;return e===("function"==typeof n&&n.prototype||Ke)};var Ze=function(e,n){return function(t){return e(n(t))}},en=Ze(Object.keys,Object),nn=Object.prototype.hasOwnProperty;var tn=function(e){if(!Qe(e))return en(e);var n=[];for(var t in Object(e))nn.call(e,t)&&"constructor"!=t&&n.push(t);return n};var rn=function(e){return null!=e&&Ue(e.length)&&!z(e)};var on=function(e){return rn(e)?Xe(e):tn(e)};var an=function(e,n){return e&&Se(n,on(n),e)};var un=function(e){var n=[];if(null!=e)for(var t in Object(e))n.push(t);return n},cn=Object.prototype.hasOwnProperty;var sn=function(e){if(!D(e))return un(e);var n=Qe(e),t=[];for(var r in e)("constructor"!=r||!n&&cn.call(e,r))&&t.push(r);return t};var dn=function(e){return rn(e)?Xe(e,!0):sn(e)};var fn=function(e,n){return e&&Se(n,dn(n),e)},hn=d((function(e,n){var t=n&&!n.nodeType&&n,r=t&&e&&!e.nodeType&&e,o=r&&r.exports===t?k.Buffer:void 0,i=o?o.allocUnsafe:void 0;e.exports=function(e,n){if(n)return e.slice();var t=e.length,r=i?i(t):new e.constructor(t);return e.copy(r),r};}));var ln=function(e,n){var t=-1,r=e.length;for(n||(n=Array(r));++t<r;)n[t]=e[t];return n};var vn=function(e,n){for(var t=-1,r=null==e?0:e.length,o=0,i=[];++t<r;){var a=e[t];n(a,t,e)&&(i[o++]=a);}return i};var pn=function(){return []},gn=Object.prototype.propertyIsEnumerable,yn=Object.getOwnPropertySymbols,bn=yn?function(e){return null==e?[]:(e=Object(e),vn(yn(e),(function(n){return gn.call(e,n)})))}:pn;var mn=function(e,n){return Se(e,bn(e),n)};var wn=function(e,n){for(var t=-1,r=n.length,o=e.length;++t<r;)e[o+t]=n[t];return e},En=Ze(Object.getPrototypeOf,Object),_n=Object.getOwnPropertySymbols?function(e){for(var n=[];e;)wn(n,bn(e)),e=En(e);return n}:pn;var jn=function(e,n){return Se(e,_n(e),n)};var xn=function(e,n,t){var r=n(e);return Te(e)?r:wn(r,t(e))};var Nn=function(e){return xn(e,on,bn)};var On=function(e){return xn(e,dn,_n)},kn=ee(k,"DataView"),In=ee(k,"Promise"),Sn=ee(k,"Set"),Mn=ee(k,"WeakMap"),Cn=H(kn),Gn=H(ne),Bn=H(In),An=H(Sn),Ln=H(Mn),Rn=T$1;(kn&&"[object DataView]"!=Rn(new kn(new ArrayBuffer(1)))||ne&&"[object Map]"!=Rn(new ne)||In&&"[object Promise]"!=Rn(In.resolve())||Sn&&"[object Set]"!=Rn(new Sn)||Mn&&"[object WeakMap]"!=Rn(new Mn))&&(Rn=function(e){var n=T$1(e),t="[object Object]"==n?e.constructor:void 0,r=t?H(t):"";if(r)switch(r){case Cn:return "[object DataView]";case Gn:return "[object Map]";case Bn:return "[object Promise]";case An:return "[object Set]";case Ln:return "[object WeakMap]"}return n});var Tn=Rn,Dn=Object.prototype.hasOwnProperty;var Pn=function(e){var n=e.length,t=new e.constructor(n);return n&&"string"==typeof e[0]&&Dn.call(e,"index")&&(t.index=e.index,t.input=e.input),t},zn=k.Uint8Array;var Fn=function(e){var n=new e.constructor(e.byteLength);return new zn(n).set(new zn(e)),n};var Un=function(e,n){var t=n?Fn(e.buffer):e.buffer;return new e.constructor(t,e.byteOffset,e.byteLength)},Vn=/\w*$/;var $n=function(e){var n=new e.constructor(e.source,Vn.exec(e));return n.lastIndex=e.lastIndex,n},Hn=I?I.prototype:void 0,Wn=Hn?Hn.valueOf:void 0;var qn=function(e){return Wn?Object(Wn.call(e)):{}};var Yn=function(e,n){var t=n?Fn(e.buffer):e.buffer;return new e.constructor(t,e.byteOffset,e.length)};var Jn=function(e,n,t){var r=e.constructor;switch(n){case"[object ArrayBuffer]":return Fn(e);case"[object Boolean]":case"[object Date]":return new r(+e);case"[object DataView]":return Un(e,t);case"[object Float32Array]":case"[object Float64Array]":case"[object Int8Array]":case"[object Int16Array]":case"[object Int32Array]":case"[object Uint8Array]":case"[object Uint8ClampedArray]":case"[object Uint16Array]":case"[object Uint32Array]":return Yn(e,t);case"[object Map]":return new r;case"[object Number]":case"[object String]":return new r(e);case"[object RegExp]":return $n(e);case"[object Set]":return new r;case"[object Symbol]":return qn(e)}},Xn=Object.create,Kn=function(){function e(){}return function(n){if(!D(n))return {};if(Xn)return Xn(n);e.prototype=n;var t=new e;return e.prototype=void 0,t}}();var Qn=function(e){return "function"!=typeof e.constructor||Qe(e)?{}:Kn(En(e))};var Zn=function(e){return Ce(e)&&"[object Map]"==Tn(e)},et=We&&We.isMap,nt=et?He(et):Zn;var tt=function(e){return Ce(e)&&"[object Set]"==Tn(e)},rt=We&&We.isSet,ot=rt?He(rt):tt,it={};it["[object Arguments]"]=it["[object Array]"]=it["[object ArrayBuffer]"]=it["[object DataView]"]=it["[object Boolean]"]=it["[object Date]"]=it["[object Float32Array]"]=it["[object Float64Array]"]=it["[object Int8Array]"]=it["[object Int16Array]"]=it["[object Int32Array]"]=it["[object Map]"]=it["[object Number]"]=it["[object Object]"]=it["[object RegExp]"]=it["[object Set]"]=it["[object String]"]=it["[object Symbol]"]=it["[object Uint8Array]"]=it["[object Uint8ClampedArray]"]=it["[object Uint16Array]"]=it["[object Uint32Array]"]=!0,it["[object Error]"]=it["[object Function]"]=it["[object WeakMap]"]=!1;var at=function e(n,t,r,o,i,a){var u,c=1&t,s=2&t,d=4&t;if(void 0!==u)return u;if(!D(n))return n;var f=Te(n);if(f){if(u=Pn(n),!c)return ln(n,u)}else {var h=Tn(n),l="[object Function]"==h||"[object GeneratorFunction]"==h;if(Pe(n))return hn(n,c);if("[object Object]"==h||"[object Arguments]"==h||l&&!i){if(u=s||l?{}:Qn(n),!c)return s?jn(n,fn(u,n)):mn(n,an(u,n))}else {if(!it[h])return i?n:{};u=Jn(n,h,c);}}a||(a=new je);var v=a.get(n);if(v)return v;a.set(n,u),ot(n)?n.forEach((function(o){u.add(e(o,t,r,o,n,a));})):nt(n)&&n.forEach((function(o,i){u.set(i,e(o,t,r,i,n,a));}));var p=f?void 0:(d?s?On:Nn:s?dn:on)(n);return xe(p||n,(function(o,i){p&&(o=n[i=o]),Ie(u,i,e(o,t,r,i,n,a));})),u};var ut=function(e){return at(e,4)};var ct=function(e){return function(){return e}};var st=function(e){return function(n,t,r){for(var o=-1,i=Object(n),a=r(n),u=a.length;u--;){var c=a[++o];if(!1===t(i[c],c,i))break}return n}}();var dt=function(e,n){return e&&st(e,n,on)};var ft=function(e,n){return function(t,r){if(null==t)return t;if(!rn(t))return e(t,r);for(var o=t.length,i=-1,a=Object(t);(++i<o)&&!1!==r(a[i],i,a););return t}}(dt);var ht=function(e){return e};var lt=function(e){return "function"==typeof e?e:ht};var vt=function(e,n){return (Te(e)?xe:ft)(e,lt(n))},pt=vt;var gt=function(e,n){var t=[];return ft(e,(function(e,r,o){n(e,r,o)&&t.push(e);})),t};var yt=function(e){return this.__data__.set(e,"__lodash_hash_undefined__"),this};var bt=function(e){return this.__data__.has(e)};function mt(e){var n=-1,t=null==e?0:e.length;for(this.__data__=new we;++n<t;)this.add(e[n]);}mt.prototype.add=mt.prototype.push=yt,mt.prototype.has=bt;var wt=mt;var Et=function(e,n){for(var t=-1,r=null==e?0:e.length;++t<r;)if(n(e[t],t,e))return !0;return !1};var _t=function(e,n){return e.has(n)};var jt=function(e,n,t,r,o,i){var a=1&t,u=e.length,c=n.length;if(u!=c&&!(a&&c>u))return !1;var s=i.get(e),d=i.get(n);if(s&&d)return s==n&&d==e;var f=-1,h=!0,l=2&t?new wt:void 0;for(i.set(e,n),i.set(n,e);++f<u;){var v=e[f],p=n[f];if(r)var g=a?r(p,v,f,n,e,i):r(v,p,f,e,n,i);if(void 0!==g){if(g)continue;h=!1;break}if(l){if(!Et(n,(function(e,n){if(!_t(l,n)&&(v===e||o(v,e,t,r,i)))return l.push(n)}))){h=!1;break}}else if(v!==p&&!o(v,p,t,r,i)){h=!1;break}}return i.delete(e),i.delete(n),h};var xt=function(e){var n=-1,t=Array(e.size);return e.forEach((function(e,r){t[++n]=[r,e];})),t};var Nt=function(e){var n=-1,t=Array(e.size);return e.forEach((function(e){t[++n]=e;})),t},Ot=I?I.prototype:void 0,kt=Ot?Ot.valueOf:void 0;var It=function(e,n,t,r,o,i,a){switch(t){case"[object DataView]":if(e.byteLength!=n.byteLength||e.byteOffset!=n.byteOffset)return !1;e=e.buffer,n=n.buffer;case"[object ArrayBuffer]":return !(e.byteLength!=n.byteLength||!i(new zn(e),new zn(n)));case"[object Boolean]":case"[object Date]":case"[object Number]":return h(+e,+n);case"[object Error]":return e.name==n.name&&e.message==n.message;case"[object RegExp]":case"[object String]":return e==n+"";case"[object Map]":var u=xt;case"[object Set]":var c=1&r;if(u||(u=Nt),e.size!=n.size&&!c)return !1;var s=a.get(e);if(s)return s==n;r|=2,a.set(e,n);var d=jt(u(e),u(n),r,o,i,a);return a.delete(e),d;case"[object Symbol]":if(kt)return kt.call(e)==kt.call(n)}return !1},St=Object.prototype.hasOwnProperty;var Mt=function(e,n,t,r,o,i){var a=1&t,u=Nn(e),c=u.length;if(c!=Nn(n).length&&!a)return !1;for(var s=c;s--;){var d=u[s];if(!(a?d in n:St.call(n,d)))return !1}var f=i.get(e),h=i.get(n);if(f&&h)return f==n&&h==e;var l=!0;i.set(e,n),i.set(n,e);for(var v=a;++s<c;){var p=e[d=u[s]],g=n[d];if(r)var y=a?r(g,p,d,n,e,i):r(p,g,d,e,n,i);if(!(void 0===y?p===g||o(p,g,t,r,i):y)){l=!1;break}v||(v="constructor"==d);}if(l&&!v){var b=e.constructor,m=n.constructor;b==m||!("constructor"in e)||!("constructor"in n)||"function"==typeof b&&b instanceof b&&"function"==typeof m&&m instanceof m||(l=!1);}return i.delete(e),i.delete(n),l},Ct=Object.prototype.hasOwnProperty;var Gt=function(e,n,t,r,o,i){var a=Te(e),u=Te(n),c=a?"[object Array]":Tn(e),s=u?"[object Array]":Tn(n),d="[object Object]"==(c="[object Arguments]"==c?"[object Object]":c),f="[object Object]"==(s="[object Arguments]"==s?"[object Object]":s),h=c==s;if(h&&Pe(e)){if(!Pe(n))return !1;a=!0,d=!1;}if(h&&!d)return i||(i=new je),a||Ye(e)?jt(e,n,t,r,o,i):It(e,n,c,t,r,o,i);if(!(1&t)){var l=d&&Ct.call(e,"__wrapped__"),v=f&&Ct.call(n,"__wrapped__");if(l||v){var p=l?e.value():e,g=v?n.value():n;return i||(i=new je),o(p,g,t,r,i)}}return !!h&&(i||(i=new je),Mt(e,n,t,r,o,i))};var Bt=function e(n,t,r,o,i){return n===t||(null==n||null==t||!Ce(n)&&!Ce(t)?n!=n&&t!=t:Gt(n,t,r,o,e,i))};var At=function(e,n,t,r){var o=t.length,i=o;if(null==e)return !i;for(e=Object(e);o--;){var u=t[o];if(u[2]?u[1]!==e[u[0]]:!(u[0]in e))return !1}for(;++o<i;){var c=(u=t[o])[0],s=e[c],d=u[1];if(u[2]){if(void 0===s&&!(c in e))return !1}else {var f=new je;var h; if(!(void 0===h?Bt(d,s,3,r,f):h))return !1}}return !0};var Lt=function(e){return e==e&&!D(e)};var Rt=function(e){for(var n=on(e),t=n.length;t--;){var r=n[t],o=e[r];n[t]=[r,o,Lt(o)];}return n};var Tt=function(e,n){return function(t){return null!=t&&(t[e]===n&&(void 0!==n||e in Object(t)))}};var Dt=function(e){var n=Rt(e);return 1==n.length&&n[0][2]?Tt(n[0][0],n[0][1]):function(t){return t===e||At(t,e,n)}};var Pt=function(e){return "symbol"==typeof e||Ce(e)&&"[object Symbol]"==T$1(e)},zt=/\.|\[(?:[^[\]]*|(["'])(?:(?!\1)[^\\]|\\.)*?\1)\]/,Ft=/^\w*$/;var Ut=function(e,n){if(Te(e))return !1;var t=typeof e;return !("number"!=t&&"symbol"!=t&&"boolean"!=t&&null!=e&&!Pt(e))||(Ft.test(e)||!zt.test(e)||null!=n&&e in Object(n))};function Vt(e,n){if("function"!=typeof e||null!=n&&"function"!=typeof n)throw new TypeError("Expected a function");var t=function(){var r=arguments,o=n?n.apply(this,r):r[0],i=t.cache;if(i.has(o))return i.get(o);var a=e.apply(this,r);return t.cache=i.set(o,a)||i,a};return t.cache=new(Vt.Cache||we),t}Vt.Cache=we;var $t=Vt;var Ht=/[^.[\]]+|\[(?:(-?\d+(?:\.\d+)?)|(["'])((?:(?!\2)[^\\]|\\.)*?)\2)\]|(?=(?:\.|\[\])(?:\.|\[\]|$))/g,Wt=/\\(\\)?/g,qt=function(e){var n=$t(e,(function(e){return 500===t.size&&t.clear(),e})),t=n.cache;return n}((function(e){var n=[];return 46===e.charCodeAt(0)&&n.push(""),e.replace(Ht,(function(e,t,r,o){n.push(r?o.replace(Wt,"$1"):t||e);})),n}));var Yt=function(e,n){for(var t=-1,r=null==e?0:e.length,o=Array(r);++t<r;)o[t]=n(e[t],t,e);return o},Jt=I?I.prototype:void 0,Xt=Jt?Jt.toString:void 0;var Kt=function e(n){if("string"==typeof n)return n;if(Te(n))return Yt(n,e)+"";if(Pt(n))return Xt?Xt.call(n):"";var t=n+"";return "0"==t&&1/n==-Infinity?"-0":t};var Qt=function(e){return null==e?"":Kt(e)};var Zt=function(e,n){return Te(e)?e:Ut(e,n)?[e]:qt(Qt(e))};var er$1=function(e){if("string"==typeof e||Pt(e))return e;var n=e+"";return "0"==n&&1/e==-Infinity?"-0":n};var nr=function(e,n){for(var t=0,r=(n=Zt(n,e)).length;null!=e&&t<r;)e=e[er$1(n[t++])];return t&&t==r?e:void 0};var tr=function(e,n,t){var r=null==e?void 0:nr(e,n);return void 0===r?t:r};var rr=function(e,n){return null!=e&&n in Object(e)};var or=function(e,n,t){for(var r=-1,o=(n=Zt(n,e)).length,i=!1;++r<o;){var a=er$1(n[r]);if(!(i=null!=e&&t(e,a)))break;e=e[a];}return i||++r!=o?i:!!(o=null==e?0:e.length)&&Ue(o)&&Fe(a,o)&&(Te(e)||Re(e))};var ir=function(e,n){return null!=e&&or(e,n,rr)};var ar=function(e,n){return Ut(e)&&Lt(n)?Tt(er$1(e),n):function(t){var r=tr(t,e);return void 0===r&&r===n?ir(t,e):Bt(n,r,3)}};var ur=function(e){return function(n){return null==n?void 0:n[e]}};var cr=function(e){return function(n){return nr(n,e)}};var sr=function(e){return Ut(e)?ur(er$1(e)):cr(e)};var dr=function(e){return "function"==typeof e?e:null==e?ht:"object"==typeof e?Te(e)?ar(e[0],e[1]):Dt(e):sr(e)};var fr=function(e,n){return (Te(e)?vn:gt)(e,dr(n))},hr=Object.prototype.hasOwnProperty;var lr=function(e,n){return null!=e&&hr.call(e,n)};var vr=function(e,n){return null!=e&&or(e,n,lr)},pr=Object.prototype.hasOwnProperty;var gr=function(e){if(null==e)return !0;if(rn(e)&&(Te(e)||"string"==typeof e||"function"==typeof e.splice||Pe(e)||Ye(e)||Re(e)))return !e.length;var n=Tn(e);if("[object Map]"==n||"[object Set]"==n)return !e.size;if(Qe(e))return !tn(e).length;for(var t in e)if(pr.call(e,t))return !1;return !0};var yr=function(e){return void 0===e};var br=function(e,n){var t=-1,r=rn(e)?Array(e.length):[];return ft(e,(function(e,o,i){r[++t]=n(e,o,i);})),r};var mr=function(e,n){return (Te(e)?Yt:br)(e,dr(n))};var wr=function(e,n,t,r){var o=-1,i=null==e?0:e.length;for(r&&i&&(t=e[++o]);++o<i;)t=n(t,e[o],o,e);return t};var Er=function(e,n,t,r,o){return o(e,(function(e,o,i){t=r?(r=!1,e):n(t,e,o,i);})),t};var _r=function(e,n,t){var r=Te(e)?wr:Er,o=arguments.length<3;return r(e,dr(n),t,o,ft)};var jr=function(e){return "string"==typeof e||!Te(e)&&Ce(e)&&"[object String]"==T$1(e)},xr=ur("length"),Nr=RegExp("[\\u200d\\ud800-\\udfff\\u0300-\\u036f\\ufe20-\\ufe2f\\u20d0-\\u20ff\\ufe0e\\ufe0f]");var Or=function(e){return Nr.test(e)},kr="[\\ud800-\\udfff]",Ir="[\\u0300-\\u036f\\ufe20-\\ufe2f\\u20d0-\\u20ff]",Sr="\\ud83c[\\udffb-\\udfff]",Mr="[^\\ud800-\\udfff]",Cr="(?:\\ud83c[\\udde6-\\uddff]){2}",Gr="[\\ud800-\\udbff][\\udc00-\\udfff]",Br="(?:"+Ir+"|"+Sr+")"+"?",Ar="[\\ufe0e\\ufe0f]?"+Br+("(?:\\u200d(?:"+[Mr,Cr,Gr].join("|")+")[\\ufe0e\\ufe0f]?"+Br+")*"),Lr="(?:"+[Mr+Ir+"?",Ir,Cr,Gr,kr].join("|")+")",Rr=RegExp(Sr+"(?="+Sr+")|"+Lr+Ar,"g");var Tr=function(e){for(var n=Rr.lastIndex=0;Rr.test(e);)++n;return n};var Dr=function(e){return Or(e)?Tr(e):xr(e)};var Pr=function(e){if(null==e)return 0;if(rn(e))return jr(e)?Dr(e):e.length;var n=Tn(e);return "[object Map]"==n||"[object Set]"==n?e.size:tn(e).length};var zr=function(e,n,t){var r=Te(e),o=r||Pe(e)||Ye(e);if(n=dr(n),null==t){var i=e&&e.constructor;t=o?r?new i:[]:D(e)&&z(i)?Kn(En(e)):{};}return (o?xe:dt)(e,(function(e,r,o){return n(t,e,r,o)})),t},Fr=I?I.isConcatSpreadable:void 0;var Ur=function(e){return Te(e)||Re(e)||!!(Fr&&e&&e[Fr])};var Vr=function e(n,t,r,o,i){var a=-1,u=n.length;for(r||(r=Ur),i||(i=[]);++a<u;){var c=n[a];r(c)?wn(i,c):o||(i[i.length]=c);}return i};var $r=function(e,n,t){switch(t.length){case 0:return e.call(n);case 1:return e.call(n,t[0]);case 2:return e.call(n,t[0],t[1]);case 3:return e.call(n,t[0],t[1],t[2])}return e.apply(n,t)},Hr=Math.max;var Wr=function(e,n,t){return n=Hr(void 0===n?e.length-1:n,0),function(){for(var r=arguments,o=-1,i=Hr(r.length-n,0),a=Array(i);++o<i;)a[o]=r[n+o];o=-1;for(var u=Array(n+1);++o<n;)u[o]=r[o];return u[n]=t(a),$r(e,this,u)}},qr=Ne?function(e,n){return Ne(e,"toString",{configurable:!0,enumerable:!1,value:ct(n),writable:!0})}:ht,Yr=Date.now;var Jr=function(e){var n=0,t=0;return function(){var r=Yr(),o=16-(r-t);if(t=r,o>0){if(++n>=800)return arguments[0]}else n=0;return e.apply(void 0,arguments)}}(qr);var Xr=function(e,n){return Jr(Wr(e,n,ht),e+"")};var Kr=function(e,n,t,r){for(var o=e.length,i=t+(-1);++i<o;)if(n(e[i],i,e))return i;return -1};var Qr=function(e){return e!=e};var Zr=function(e,n,t){for(var r=t-1,o=e.length;++r<o;)if(e[r]===n)return r;return -1};var eo=function(e,n,t){return n==n?Zr(e,n,t):Kr(e,Qr,t)};var no=function(e,n){return !!(null==e?0:e.length)&&eo(e,n,0)>-1};var ro=function(){},oo=Sn&&1/Nt(new Sn([,-0]))[1]==1/0?function(e){return new Sn(e)}:ro;var io=function(e,n,t){var r=-1,o=no,i=e.length,a=!0,u=[],c=u;if(i>=200){var s=oo(e);if(s)return Nt(s);a=!1,o=_t,c=new wt;}else c=u;e:for(;++r<i;){var d=e[r],f=d;if(d=0!==d?d:0,a&&f==f){for(var h=c.length;h--;)if(c[h]===f)continue e;u.push(d);}else o(c,f,t)||(c!==u&&c.push(f),u.push(d));}return u};var ao=function(e){return Ce(e)&&rn(e)},uo=Xr((function(e){return io(Vr(e,1,ao,!0))}));var co=function(e,n){return Yt(n,(function(n){return e[n]}))};var so,fo=function(e){return null==e?[]:co(e,on(e))};try{so={clone:ut,constant:ct,each:pt,filter:fr,has:vr,isArray:Te,isEmpty:gr,isFunction:z,isUndefined:yr,keys:on,map:mr,reduce:_r,size:Pr,transform:zr,union:uo,values:fo};}catch(e){}so||(so=window._);var ho=so,lo=vo;function vo(e){this._isDirected=!ho.has(e,"directed")||e.directed,this._isMultigraph=!!ho.has(e,"multigraph")&&e.multigraph,this._isCompound=!!ho.has(e,"compound")&&e.compound,this._label=void 0,this._defaultNodeLabelFn=ho.constant(void 0),this._defaultEdgeLabelFn=ho.constant(void 0),this._nodes={},this._isCompound&&(this._parent={},this._children={},this._children["\0"]={}),this._in={},this._preds={},this._out={},this._sucs={},this._edgeObjs={},this._edgeLabels={};}function po(e,n){e[n]?e[n]++:e[n]=1;}function go(e,n){--e[n]||delete e[n];}function yo(e,n,t,r){var o=""+n,i=""+t;if(!e&&o>i){var a=o;o=i,i=a;}return o+""+i+""+(ho.isUndefined(r)?"\0":r)}function bo(e,n,t,r){var o=""+n,i=""+t;if(!e&&o>i){var a=o;o=i,i=a;}var u={v:o,w:i};return r&&(u.name=r),u}function mo(e,n){return yo(e,n.v,n.w,n.name)}vo.prototype._nodeCount=0,vo.prototype._edgeCount=0,vo.prototype.isDirected=function(){return this._isDirected},vo.prototype.isMultigraph=function(){return this._isMultigraph},vo.prototype.isCompound=function(){return this._isCompound},vo.prototype.setGraph=function(e){return this._label=e,this},vo.prototype.graph=function(){return this._label},vo.prototype.setDefaultNodeLabel=function(e){return ho.isFunction(e)||(e=ho.constant(e)),this._defaultNodeLabelFn=e,this},vo.prototype.nodeCount=function(){return this._nodeCount},vo.prototype.nodes=function(){return ho.keys(this._nodes)},vo.prototype.sources=function(){var e=this;return ho.filter(this.nodes(),(function(n){return ho.isEmpty(e._in[n])}))},vo.prototype.sinks=function(){var e=this;return ho.filter(this.nodes(),(function(n){return ho.isEmpty(e._out[n])}))},vo.prototype.setNodes=function(e,n){var t=arguments,r=this;return ho.each(e,(function(e){t.length>1?r.setNode(e,n):r.setNode(e);})),this},vo.prototype.setNode=function(e,n){return ho.has(this._nodes,e)?(arguments.length>1&&(this._nodes[e]=n),this):(this._nodes[e]=arguments.length>1?n:this._defaultNodeLabelFn(e),this._isCompound&&(this._parent[e]="\0",this._children[e]={},this._children["\0"][e]=!0),this._in[e]={},this._preds[e]={},this._out[e]={},this._sucs[e]={},++this._nodeCount,this)},vo.prototype.node=function(e){return this._nodes[e]},vo.prototype.hasNode=function(e){return ho.has(this._nodes,e)},vo.prototype.removeNode=function(e){var n=this;if(ho.has(this._nodes,e)){var t=function(e){n.removeEdge(n._edgeObjs[e]);};delete this._nodes[e],this._isCompound&&(this._removeFromParentsChildList(e),delete this._parent[e],ho.each(this.children(e),(function(e){n.setParent(e);})),delete this._children[e]),ho.each(ho.keys(this._in[e]),t),delete this._in[e],delete this._preds[e],ho.each(ho.keys(this._out[e]),t),delete this._out[e],delete this._sucs[e],--this._nodeCount;}return this},vo.prototype.setParent=function(e,n){if(!this._isCompound)throw new Error("Cannot set parent in a non-compound graph");if(ho.isUndefined(n))n="\0";else {for(var t=n+="";!ho.isUndefined(t);t=this.parent(t))if(t===e)throw new Error("Setting "+n+" as parent of "+e+" would create a cycle");this.setNode(n);}return this.setNode(e),this._removeFromParentsChildList(e),this._parent[e]=n,this._children[n][e]=!0,this},vo.prototype._removeFromParentsChildList=function(e){delete this._children[this._parent[e]][e];},vo.prototype.parent=function(e){if(this._isCompound){var n=this._parent[e];if("\0"!==n)return n}},vo.prototype.children=function(e){if(ho.isUndefined(e)&&(e="\0"),this._isCompound){var n=this._children[e];if(n)return ho.keys(n)}else {if("\0"===e)return this.nodes();if(this.hasNode(e))return []}},vo.prototype.predecessors=function(e){var n=this._preds[e];if(n)return ho.keys(n)},vo.prototype.successors=function(e){var n=this._sucs[e];if(n)return ho.keys(n)},vo.prototype.neighbors=function(e){var n=this.predecessors(e);if(n)return ho.union(n,this.successors(e))},vo.prototype.isLeaf=function(e){return 0===(this.isDirected()?this.successors(e):this.neighbors(e)).length},vo.prototype.filterNodes=function(e){var n=new this.constructor({directed:this._isDirected,multigraph:this._isMultigraph,compound:this._isCompound});n.setGraph(this.graph());var t=this;ho.each(this._nodes,(function(t,r){e(r)&&n.setNode(r,t);})),ho.each(this._edgeObjs,(function(e){n.hasNode(e.v)&&n.hasNode(e.w)&&n.setEdge(e,t.edge(e));}));var r={};function o(e){var i=t.parent(e);return void 0===i||n.hasNode(i)?(r[e]=i,i):i in r?r[i]:o(i)}return this._isCompound&&ho.each(n.nodes(),(function(e){n.setParent(e,o(e));})),n},vo.prototype.setDefaultEdgeLabel=function(e){return ho.isFunction(e)||(e=ho.constant(e)),this._defaultEdgeLabelFn=e,this},vo.prototype.edgeCount=function(){return this._edgeCount},vo.prototype.edges=function(){return ho.values(this._edgeObjs)},vo.prototype.setPath=function(e,n){var t=this,r=arguments;return ho.reduce(e,(function(e,o){return r.length>1?t.setEdge(e,o,n):t.setEdge(e,o),o})),this},vo.prototype.setEdge=function(){var e,n,t,r,o=!1,i=arguments[0];"object"==typeof i&&null!==i&&"v"in i?(e=i.v,n=i.w,t=i.name,2===arguments.length&&(r=arguments[1],o=!0)):(e=i,n=arguments[1],t=arguments[3],arguments.length>2&&(r=arguments[2],o=!0)),e=""+e,n=""+n,ho.isUndefined(t)||(t=""+t);var a=yo(this._isDirected,e,n,t);if(ho.has(this._edgeLabels,a))return o&&(this._edgeLabels[a]=r),this;if(!ho.isUndefined(t)&&!this._isMultigraph)throw new Error("Cannot set a named edge when isMultigraph = false");this.setNode(e),this.setNode(n),this._edgeLabels[a]=o?r:this._defaultEdgeLabelFn(e,n,t);var u=bo(this._isDirected,e,n,t);return e=u.v,n=u.w,Object.freeze(u),this._edgeObjs[a]=u,po(this._preds[n],e),po(this._sucs[e],n),this._in[n][a]=u,this._out[e][a]=u,this._edgeCount++,this},vo.prototype.edge=function(e,n,t){var r=1===arguments.length?mo(this._isDirected,arguments[0]):yo(this._isDirected,e,n,t);return this._edgeLabels[r]},vo.prototype.hasEdge=function(e,n,t){var r=1===arguments.length?mo(this._isDirected,arguments[0]):yo(this._isDirected,e,n,t);return ho.has(this._edgeLabels,r)},vo.prototype.removeEdge=function(e,n,t){var r=1===arguments.length?mo(this._isDirected,arguments[0]):yo(this._isDirected,e,n,t),o=this._edgeObjs[r];return o&&(e=o.v,n=o.w,delete this._edgeLabels[r],delete this._edgeObjs[r],go(this._preds[n],e),go(this._sucs[e],n),delete this._in[n][r],delete this._out[e][r],this._edgeCount--),this},vo.prototype.inEdges=function(e,n){var t=this._in[e];if(t){var r=ho.values(t);return n?ho.filter(r,(function(e){return e.v===n})):r}},vo.prototype.outEdges=function(e,n){var t=this._out[e];if(t){var r=ho.values(t);return n?ho.filter(r,(function(e){return e.w===n})):r}},vo.prototype.nodeEdges=function(e,n){var t=this.inEdges(e,n);if(t)return t.concat(this.outEdges(e,n))};var wo={Graph:lo,version:"2.1.8"},Eo={write:function(e){var n={options:{directed:e.isDirected(),multigraph:e.isMultigraph(),compound:e.isCompound()},nodes:_o(e),edges:jo(e)};ho.isUndefined(e.graph())||(n.value=ho.clone(e.graph()));return n},read:function(e){var n=new lo(e.options).setGraph(e.value);return ho.each(e.nodes,(function(e){n.setNode(e.v,e.value),e.parent&&n.setParent(e.v,e.parent);})),ho.each(e.edges,(function(e){n.setEdge({v:e.v,w:e.w,name:e.name},e.value);})),n}};function _o(e){return ho.map(e.nodes(),(function(n){var t=e.node(n),r=e.parent(n),o={v:n};return ho.isUndefined(t)||(o.value=t),ho.isUndefined(r)||(o.parent=r),o}))}function jo(e){return ho.map(e.edges(),(function(n){var t=e.edge(n),r={v:n.v,w:n.w};return ho.isUndefined(n.name)||(r.name=n.name),ho.isUndefined(t)||(r.value=t),r}))}var xo=function(e){var n,t={},r=[];function o(r){ho.has(t,r)||(t[r]=!0,n.push(r),ho.each(e.successors(r),o),ho.each(e.predecessors(r),o));}return ho.each(e.nodes(),(function(e){n=[],o(e),n.length&&r.push(n);})),r};var No=Oo;function Oo(){this._arr=[],this._keyIndices={};}Oo.prototype.size=function(){return this._arr.length},Oo.prototype.keys=function(){return this._arr.map((function(e){return e.key}))},Oo.prototype.has=function(e){return ho.has(this._keyIndices,e)},Oo.prototype.priority=function(e){var n=this._keyIndices[e];if(void 0!==n)return this._arr[n].priority},Oo.prototype.min=function(){if(0===this.size())throw new Error("Queue underflow");return this._arr[0].key},Oo.prototype.add=function(e,n){var t=this._keyIndices;if(e=String(e),!ho.has(t,e)){var r=this._arr,o=r.length;return t[e]=o,r.push({key:e,priority:n}),this._decrease(o),!0}return !1},Oo.prototype.removeMin=function(){this._swap(0,this._arr.length-1);var e=this._arr.pop();return delete this._keyIndices[e.key],this._heapify(0),e.key},Oo.prototype.decrease=function(e,n){var t=this._keyIndices[e];if(n>this._arr[t].priority)throw new Error("New priority is greater than current priority. Key: "+e+" Old: "+this._arr[t].priority+" New: "+n);this._arr[t].priority=n,this._decrease(t);},Oo.prototype._heapify=function(e){var n=this._arr,t=2*e,r=t+1,o=e;t<n.length&&(o=n[t].priority<n[o].priority?t:o,r<n.length&&(o=n[r].priority<n[o].priority?r:o),o!==e&&(this._swap(e,o),this._heapify(o)));},Oo.prototype._decrease=function(e){for(var n,t=this._arr,r=t[e].priority;0!==e&&!(t[n=e>>1].priority<r);)this._swap(e,n),e=n;},Oo.prototype._swap=function(e,n){var t=this._arr,r=this._keyIndices,o=t[e],i=t[n];t[e]=i,t[n]=o,r[i.key]=e,r[o.key]=n;};var ko=function(e,n,t,r){return function(e,n,t,r){var o,i,a={},u=new No,c=function(e){var n=e.v!==o?e.v:e.w,r=a[n],c=t(e),s=i.distance+c;if(c<0)throw new Error("dijkstra does not allow negative edge weights. Bad edge: "+e+" Weight: "+c);s<r.distance&&(r.distance=s,r.predecessor=o,u.decrease(n,s));};e.nodes().forEach((function(e){var t=e===n?0:Number.POSITIVE_INFINITY;a[e]={distance:t},u.add(e,t);}));for(;u.size()>0&&(o=u.removeMin(),(i=a[o]).distance!==Number.POSITIVE_INFINITY);)r(o).forEach(c);return a}(e,String(n),t||Io,r||function(n){return e.outEdges(n)})},Io=ho.constant(1);var So=function(e,n,t){return ho.transform(e.nodes(),(function(r,o){r[o]=ko(e,o,n,t);}),{})};var Mo=function(e){var n=0,t=[],r={},o=[];function i(a){var u=r[a]={onStack:!0,lowlink:n,index:n++};if(t.push(a),e.successors(a).forEach((function(e){ho.has(r,e)?r[e].onStack&&(u.lowlink=Math.min(u.lowlink,r[e].index)):(i(e),u.lowlink=Math.min(u.lowlink,r[e].lowlink));})),u.lowlink===u.index){var c,s=[];do{c=t.pop(),r[c].onStack=!1,s.push(c);}while(a!==c);o.push(s);}}return e.nodes().forEach((function(e){ho.has(r,e)||i(e);})),o};var Co=function(e){return ho.filter(Mo(e),(function(n){return n.length>1||1===n.length&&e.hasEdge(n[0],n[0])}))};var Go=function(e,n,t){return function(e,n,t){var r={},o=e.nodes();return o.forEach((function(e){r[e]={},r[e][e]={distance:0},o.forEach((function(n){e!==n&&(r[e][n]={distance:Number.POSITIVE_INFINITY});})),t(e).forEach((function(t){var o=t.v===e?t.w:t.v,i=n(t);r[e][o]={distance:i,predecessor:e};}));})),o.forEach((function(e){var n=r[e];o.forEach((function(t){var i=r[t];o.forEach((function(t){var r=i[e],o=n[t],a=i[t],u=r.distance+o.distance;u<a.distance&&(a.distance=u,a.predecessor=o.predecessor);}));}));})),r}(e,n||Bo,t||function(n){return e.outEdges(n)})},Bo=ho.constant(1);var Ao=Lo;function Lo(e){var n={},t={},r=[];if(ho.each(e.sinks(),(function o(i){if(ho.has(t,i))throw new Ro;ho.has(n,i)||(t[i]=!0,n[i]=!0,ho.each(e.predecessors(i),o),delete t[i],r.push(i));})),ho.size(n)!==e.nodeCount())throw new Ro;return r}function Ro(){}Lo.CycleException=Ro,Ro.prototype=new Error;var To=function(e,n,t){ho.isArray(n)||(n=[n]);var r=(e.isDirected()?e.successors:e.neighbors).bind(e),o=[],i={};return ho.each(n,(function(n){if(!e.hasNode(n))throw new Error("Graph does not have node: "+n);Do(e,n,"post"===t,i,r,o);})),o};function Do(e,n,t,r,o,i){ho.has(r,n)||(r[n]=!0,t||i.push(n),ho.each(o(n),(function(n){Do(e,n,t,r,o,i);})),t&&i.push(n));}var Po,zo={Graph:wo.Graph,json:Eo,alg:{components:xo,dijkstra:ko,dijkstraAll:So,findCycles:Co,floydWarshall:Go,isAcyclic:function(e){try{Ao(e);}catch(e){if(e instanceof Ao.CycleException)return !1;throw e}return !0},postorder:function(e,n){return To(e,n,"post")},preorder:function(e,n){return To(e,n,"pre")},prim:function(e,n){var t,r=new lo,o={},i=new No;function a(e){var r=e.v===t?e.w:e.v,a=i.priority(r);if(void 0!==a){var u=n(e);u<a&&(o[r]=t,i.decrease(r,u));}}if(0===e.nodeCount())return r;ho.each(e.nodes(),(function(e){i.add(e,Number.POSITIVE_INFINITY),r.setNode(e);})),i.decrease(e.nodes()[0],0);var u=!1;for(;i.size()>0;){if(t=i.removeMin(),ho.has(o,t))r.setEdge(t,o[t]);else {if(u)throw new Error("Input graph is not connected: "+e);u=!0;}e.nodeEdges(t).forEach(a);}return r},tarjan:Mo,topsort:Ao},version:wo.version};try{Po=zo;}catch(e){}Po||(Po=window.graphlib);var Fo=Po;var Uo=function(e){return at(e,5)};var Vo=function(e,n,t){if(!D(t))return !1;var r=typeof n;return !!("number"==r?rn(t)&&Fe(n,t.length):"string"==r&&n in t)&&h(t[n],e)},$o=Object.prototype,Ho=$o.hasOwnProperty,Wo=Xr((function(e,n){e=Object(e);var t=-1,r=n.length,o=r>2?n[2]:void 0;for(o&&Vo(n[0],n[1],o)&&(r=1);++t<r;)for(var i=n[t],a=dn(i),u=-1,c=a.length;++u<c;){var s=a[u],d=e[s];(void 0===d||h(d,$o[s])&&!Ho.call(e,s))&&(e[s]=i[s]);}return e}));var qo=function(e){return function(n,t,r){var o=Object(n);if(!rn(n)){var i=dr(t);n=on(n),t=function(e){return i(o[e],e,o)};}var a=e(n,t,r);return a>-1?o[i?n[a]:a]:void 0}},Yo=/^\s+|\s+$/g,Jo=/^[-+]0x[0-9a-f]+$/i,Xo=/^0b[01]+$/i,Ko=/^0o[0-7]+$/i,Qo=parseInt;var Zo=function(e){if("number"==typeof e)return e;if(Pt(e))return NaN;if(D(e)){var n="function"==typeof e.valueOf?e.valueOf():e;e=D(n)?n+"":n;}if("string"!=typeof e)return 0===e?e:+e;e=e.replace(Yo,"");var t=Xo.test(e);return t||Ko.test(e)?Qo(e.slice(2),t?2:8):Jo.test(e)?NaN:+e};var ei=function(e){return e?Infinity===(e=Zo(e))||-Infinity===e?17976931348623157e292*(e<0?-1:1):e==e?e:0:0===e?e:0};var ni=function(e){var n=ei(e),t=n%1;return n==n?t?n-t:n:0},ti=Math.max;var ri=qo((function(e,n,t){var r=null==e?0:e.length;if(!r)return -1;var o=null==t?0:ni(t);return o<0&&(o=ti(r+o,0)),Kr(e,dr(n),o)}));var oi=function(e){return (null==e?0:e.length)?Vr(e):[]};var ii=function(e,n){return null==e?e:st(e,lt(n),dn)};var ai=function(e){var n=null==e?0:e.length;return n?e[n-1]:void 0};var ui=function(e,n){var t={};return n=dr(n),dt(e,(function(e,r,o){Oe(t,r,n(e,r,o));})),t};var ci=function(e,n,t){for(var r=-1,o=e.length;++r<o;){var i=e[r],a=n(i);if(null!=a&&(void 0===u?a==a&&!Pt(a):t(a,u)))var u=a,c=i;}return c};var si=function(e,n){return e>n};var di=function(e){return e&&e.length?ci(e,ht,si):void 0};var fi=function(e,n,t){(void 0!==t&&!h(e[n],t)||void 0===t&&!(n in e))&&Oe(e,n,t);},hi=Function.prototype,li=Object.prototype,vi=hi.toString,pi$1=li.hasOwnProperty,gi=vi.call(Object);var yi=function(e){if(!Ce(e)||"[object Object]"!=T$1(e))return !1;var n=En(e);if(null===n)return !0;var t=pi$1.call(n,"constructor")&&n.constructor;return "function"==typeof t&&t instanceof t&&vi.call(t)==gi};var bi=function(e,n){if(("constructor"!==n||"function"!=typeof e[n])&&"__proto__"!=n)return e[n]};var mi=function(e){return Se(e,dn(e))};var wi=function(e,n,t,r,o,i,a){var u=bi(e,t),c=bi(n,t),s=a.get(c);if(s)fi(e,t,s);else {var d=void 0,f=void 0===d;if(f){var h=Te(c),l=!h&&Pe(c),v=!h&&!l&&Ye(c);d=c,h||l||v?Te(u)?d=u:ao(u)?d=ln(u):l?(f=!1,d=hn(c,!0)):v?(f=!1,d=Yn(c,!0)):d=[]:yi(c)||Re(c)?(d=u,Re(u)?d=mi(u):D(u)&&!z(u)||(d=Qn(c))):f=!1;}f&&(a.set(c,d),o(d,c,r,i,a),a.delete(c)),fi(e,t,d);}};var Ei=function e(n,t,r,o,i){n!==t&&st(t,(function(a,u){if(i||(i=new je),D(a))wi(n,t,u,r,e,o,i);else {var c=void 0;void 0===c&&(c=a),fi(n,u,c);}}),dn);};var _i=function(e){return Xr((function(n,t){var r=-1,o=t.length,i=o>1?t[o-1]:void 0,a=o>2?t[2]:void 0;for(i=e.length>3&&"function"==typeof i?(o--,i):void 0,a&&Vo(t[0],t[1],a)&&(i=o<3?void 0:i,o=1),n=Object(n);++r<o;){var u=t[r];u&&e(n,u,r,i);}return n}))}((function(e,n,t){Ei(e,n,t);}));var ji=function(e,n){return e<n};var xi=function(e){return e&&e.length?ci(e,ht,ji):void 0};var Ni=function(e,n){return e&&e.length?ci(e,dr(n),ji):void 0},Oi=function(){return k.Date.now()};var ki=function(e,n,t,r){if(!D(e))return e;for(var o=-1,i=(n=Zt(n,e)).length,a=i-1,u=e;null!=u&&++o<i;){var c=er$1(n[o]),s=t;if("__proto__"===c||"constructor"===c||"prototype"===c)return e;if(o!=a){var d=u[c];void 0===(s=void 0)&&(s=D(d)?d:Fe(n[o+1])?[]:{});}Ie(u,c,s),u=u[c];}return e};var Ii=function(e,n,t){for(var r=-1,o=n.length,i={};++r<o;){var a=n[r],u=nr(e,a);t(u,a)&&ki(i,Zt(a,e),u);}return i};var Si=function(e,n){return Ii(e,n,(function(n,t){return ir(e,t)}))};var Mi=function(e){return Jr(Wr(e,void 0,oi),e+"")}((function(e,n){return null==e?{}:Si(e,n)})),Ci=Math.ceil,Gi=Math.max;var Bi=function(e,n,t,r){for(var o=-1,i=Gi(Ci((n-e)/(t||1)),0),a=Array(i);i--;)a[++o]=e,e+=t;return a};var Ai=function(e){return function(n,t,r){return r&&"number"!=typeof r&&Vo(n,t,r)&&(t=r=void 0),n=ei(n),void 0===t?(t=n,n=0):t=ei(t),r=void 0===r?n<t?1:-1:ei(r),Bi(n,t,r)}}();var Li=function(e,n){var t=e.length;for(e.sort(n);t--;)e[t]=e[t].value;return e};var Ri=function(e,n){if(e!==n){var t=void 0!==e,r=null===e,o=e==e,i=Pt(e),a=void 0!==n,u=null===n,c=n==n,s=Pt(n);if(!u&&!s&&!i&&e>n||i&&a&&c&&!u&&!s||r&&a&&c||!t&&c||!o)return 1;if(!r&&!i&&!s&&e<n||s&&t&&o&&!r&&!i||u&&t&&o||!a&&o||!c)return -1}return 0};var Ti=function(e,n,t){for(var r=-1,o=e.criteria,i=n.criteria,a=o.length,u=t.length;++r<a;){var c=Ri(o[r],i[r]);if(c)return r>=u?c:c*("desc"==t[r]?-1:1)}return e.index-n.index};var Di=function(e,n,t){n=n.length?Yt(n,(function(e){return Te(e)?function(n){return nr(n,1===e.length?e[0]:e)}:e})):[ht];var r=-1;n=Yt(n,He(dr));var o=br(e,(function(e,t,o){return {criteria:Yt(n,(function(n){return n(e)})),index:++r,value:e}}));return Li(o,(function(e,n){return Ti(e,n,t)}))},Pi=Xr((function(e,n){if(null==e)return [];var t=n.length;return t>1&&Vo(e,n[0],n[1])?n=[]:t>2&&Vo(n[0],n[1],n[2])&&(n=[n[0]]),Di(e,Vr(n),[])})),zi=0;var Fi=function(e){var n=++zi;return Qt(e)+n};var Ui=function(e,n,t){for(var r=-1,o=e.length,i=n.length,a={};++r<o;){var u=r<i?n[r]:void 0;t(a,e[r],u);}return a};var Vi,$i=function(e,n){return Ui(e||[],n||[],Ie)};try{Vi={cloneDeep:Uo,constant:ct,defaults:Wo,each:pt,filter:fr,find:ri,flatten:oi,forEach:vt,forIn:ii,has:vr,isUndefined:yr,last:ai,map:mr,mapValues:ui,max:di,merge:_i,min:xi,minBy:Ni,now:Oi,pick:Mi,range:Ai,reduce:_r,sortBy:Pi,uniqueId:Fi,values:fo,zipObject:$i};}catch(e){}Vi||(Vi=window._);var Hi=Vi,Wi=qi;function qi(){var e={};e._next=e._prev=e,this._sentinel=e;}function Yi(e){e._prev._next=e._next,e._next._prev=e._prev,delete e._next,delete e._prev;}function Ji(e,n){if("_next"!==e&&"_prev"!==e)return n}qi.prototype.dequeue=function(){var e=this._sentinel,n=e._prev;if(n!==e)return Yi(n),n},qi.prototype.enqueue=function(e){var n=this._sentinel;e._prev&&e._next&&Yi(e),e._next=n._next,n._next._prev=e,n._next=e,e._prev=n;},qi.prototype.toString=function(){for(var e=[],n=this._sentinel,t=n._prev;t!==n;)e.push(JSON.stringify(t,Ji)),t=t._prev;return "["+e.join(", ")+"]"};var Xi=Fo.Graph,Ki=function(e,n){if(e.nodeCount()<=1)return [];var t=function(e,n){var t=new Xi,r=0,o=0;Hi.forEach(e.nodes(),(function(e){t.setNode(e,{v:e,in:0,out:0});})),Hi.forEach(e.edges(),(function(e){var i=t.edge(e.v,e.w)||0,a=n(e),u=i+a;t.setEdge(e.v,e.w,u),o=Math.max(o,t.node(e.v).out+=a),r=Math.max(r,t.node(e.w).in+=a);}));var i=Hi.range(o+r+3).map((function(){return new Wi})),a=r+1;return Hi.forEach(t.nodes(),(function(e){ea(i,a,t.node(e));})),{graph:t,buckets:i,zeroIdx:a}}(e,n||Qi),r=function(e,n,t){var r,o=[],i=n[n.length-1],a=n[0];for(;e.nodeCount();){for(;r=a.dequeue();)Zi(e,n,t,r);for(;r=i.dequeue();)Zi(e,n,t,r);if(e.nodeCount())for(var u=n.length-2;u>0;--u)if(r=n[u].dequeue()){o=o.concat(Zi(e,n,t,r,!0));break}}return o}(t.graph,t.buckets,t.zeroIdx);return Hi.flatten(Hi.map(r,(function(n){return e.outEdges(n.v,n.w)})),!0)},Qi=Hi.constant(1);function Zi(e,n,t,r,o){var i=o?[]:void 0;return Hi.forEach(e.inEdges(r.v),(function(r){var a=e.edge(r),u=e.node(r.v);o&&i.push({v:r.v,w:r.w}),u.out-=a,ea(n,t,u);})),Hi.forEach(e.outEdges(r.v),(function(r){var o=e.edge(r),i=r.w,a=e.node(i);a.in-=o,ea(n,t,a);})),e.removeNode(r.v),i}function ea(e,n,t){t.out?t.in?e[t.out-t.in+n].enqueue(t):e[e.length-1].enqueue(t):e[0].enqueue(t);}var na={run:function(e){var n="greedy"===e.graph().acyclicer?Ki(e,function(e){return function(n){return e.edge(n).weight}}(e)):function(e){var n=[],t={},r={};function o(i){Hi.has(r,i)||(r[i]=!0,t[i]=!0,Hi.forEach(e.outEdges(i),(function(e){Hi.has(t,e.w)?n.push(e):o(e.w);})),delete t[i]);}return Hi.forEach(e.nodes(),o),n}(e);Hi.forEach(n,(function(n){var t=e.edge(n);e.removeEdge(n),t.forwardName=n.name,t.reversed=!0,e.setEdge(n.w,n.v,t,Hi.uniqueId("rev"));}));},undo:function(e){Hi.forEach(e.edges(),(function(n){var t=e.edge(n);if(t.reversed){e.removeEdge(n);var r=t.forwardName;delete t.reversed,delete t.forwardName,e.setEdge(n.w,n.v,t,r);}}));}};var ta=Fo.Graph,ra={addDummyNode:oa,simplify:function(e){var n=(new ta).setGraph(e.graph());return Hi.forEach(e.nodes(),(function(t){n.setNode(t,e.node(t));})),Hi.forEach(e.edges(),(function(t){var r=n.edge(t.v,t.w)||{weight:0,minlen:1},o=e.edge(t);n.setEdge(t.v,t.w,{weight:r.weight+o.weight,minlen:Math.max(r.minlen,o.minlen)});})),n},asNonCompoundGraph:function(e){var n=new ta({multigraph:e.isMultigraph()}).setGraph(e.graph());return Hi.forEach(e.nodes(),(function(t){e.children(t).length||n.setNode(t,e.node(t));})),Hi.forEach(e.edges(),(function(t){n.setEdge(t,e.edge(t));})),n},successorWeights:function(e){var n=Hi.map(e.nodes(),(function(n){var t={};return Hi.forEach(e.outEdges(n),(function(n){t[n.w]=(t[n.w]||0)+e.edge(n).weight;})),t}));return Hi.zipObject(e.nodes(),n)},predecessorWeights:function(e){var n=Hi.map(e.nodes(),(function(n){var t={};return Hi.forEach(e.inEdges(n),(function(n){t[n.v]=(t[n.v]||0)+e.edge(n).weight;})),t}));return Hi.zipObject(e.nodes(),n)},intersectRect:function(e,n){var t,r,o=e.x,i=e.y,a=n.x-o,u=n.y-i,c=e.width/2,s=e.height/2;if(!a&&!u)throw new Error("Not possible to find intersection inside of the rectangle");Math.abs(u)*c>Math.abs(a)*s?(u<0&&(s=-s),t=s*a/u,r=s):(a<0&&(c=-c),t=c,r=c*u/a);return {x:o+t,y:i+r}},buildLayerMatrix:function(e){var n=Hi.map(Hi.range(ia(e)+1),(function(){return []}));return Hi.forEach(e.nodes(),(function(t){var r=e.node(t),o=r.rank;Hi.isUndefined(o)||(n[o][r.order]=t);})),n},normalizeRanks:function(e){var n=Hi.min(Hi.map(e.nodes(),(function(n){return e.node(n).rank})));Hi.forEach(e.nodes(),(function(t){var r=e.node(t);Hi.has(r,"rank")&&(r.rank-=n);}));},removeEmptyRanks:function(e){var n=Hi.min(Hi.map(e.nodes(),(function(n){return e.node(n).rank}))),t=[];Hi.forEach(e.nodes(),(function(r){var o=e.node(r).rank-n;t[o]||(t[o]=[]),t[o].push(r);}));var r=0,o=e.graph().nodeRankFactor;Hi.forEach(t,(function(n,t){Hi.isUndefined(n)&&t%o!=0?--r:r&&Hi.forEach(n,(function(n){e.node(n).rank+=r;}));}));},addBorderNode:function(e,n,t,r){var o={width:0,height:0};arguments.length>=4&&(o.rank=t,o.order=r);return oa(e,"border",o,n)},maxRank:ia,partition:function(e,n){var t={lhs:[],rhs:[]};return Hi.forEach(e,(function(e){n(e)?t.lhs.push(e):t.rhs.push(e);})),t},time:function(e,n){var t=Hi.now();try{return n()}finally{console.log(e+" time: "+(Hi.now()-t)+"ms");}},notime:function(e,n){return n()}};function oa(e,n,t,r){var o;do{o=Hi.uniqueId(r);}while(e.hasNode(o));return t.dummy=n,e.setNode(o,t),o}function ia(e){return Hi.max(Hi.map(e.nodes(),(function(n){var t=e.node(n).rank;if(!Hi.isUndefined(t))return t})))}var aa={run:function(e){e.graph().dummyChains=[],Hi.forEach(e.edges(),(function(n){!function(e,n){var t,r,o,i=n.v,a=e.node(i).rank,u=n.w,c=e.node(u).rank,s=n.name,d=e.edge(n),f=d.labelRank;if(c===a+1)return;for(e.removeEdge(n),o=0,++a;a<c;++o,++a)d.points=[],r={width:0,height:0,edgeLabel:d,edgeObj:n,rank:a},t=ra.addDummyNode(e,"edge",r,"_d"),a===f&&(r.width=d.width,r.height=d.height,r.dummy="edge-label",r.labelpos=d.labelpos),e.setEdge(i,t,{weight:d.weight},s),0===o&&e.graph().dummyChains.push(t),i=t;e.setEdge(i,u,{weight:d.weight},s);}(e,n);}));},undo:function(e){Hi.forEach(e.graph().dummyChains,(function(n){var t,r=e.node(n),o=r.edgeLabel;for(e.setEdge(r.edgeObj,o);r.dummy;)t=e.successors(n)[0],e.removeNode(n),o.points.push({x:r.x,y:r.y}),"edge-label"===r.dummy&&(o.x=r.x,o.y=r.y,o.width=r.width,o.height=r.height),n=t,r=e.node(n);}));}};var ua=function(e){var n={};Hi.forEach(e.sources(),(function t(r){var o=e.node(r);if(Hi.has(n,r))return o.rank;n[r]=!0;var i=Hi.min(Hi.map(e.outEdges(r),(function(n){return t(n.w)-e.edge(n).minlen})));return i!==Number.POSITIVE_INFINITY&&null!=i||(i=0),o.rank=i}));},ca=function(e,n){return e.node(n.w).rank-e.node(n.v).rank-e.edge(n).minlen};var sa=Fo.Graph,da=ca,fa=function(e){var n,t,r=new sa({directed:!1}),o=e.nodes()[0],i=e.nodeCount();r.setNode(o,{});for(;ha(r,e)<i;)n=la(r,e),t=r.hasNode(n.v)?da(e,n):-da(e,n),va(r,e,t);return r};function ha(e,n){return Hi.forEach(e.nodes(),(function t(r){Hi.forEach(n.nodeEdges(r),(function(o){var i=o.v,a=r===i?o.w:i;e.hasNode(a)||da(n,o)||(e.setNode(a,{}),e.setEdge(r,a,{}),t(a));}));})),e.nodeCount()}function la(e,n){return Hi.minBy(n.edges(),(function(t){if(e.hasNode(t.v)!==e.hasNode(t.w))return da(n,t)}))}function va(e,n,t){Hi.forEach(e.nodes(),(function(e){n.node(e).rank+=t;}));}var pa=ca,ga=ua,ya=Fo.alg.preorder,ba=Fo.alg.postorder,ma=ra.simplify,wa=Ea;function Ea(e){e=ma(e),ga(e);var n,t=fa(e);for(xa(t),_a(t,e);n=Oa(t);)Ia(t,e,n,ka(t,e,n));}function _a(e,n){var t=ba(e,e.nodes());t=t.slice(0,t.length-1),Hi.forEach(t,(function(t){!function(e,n,t){var r=e.node(t).parent;e.edge(t,r).cutvalue=ja(e,n,t);}(e,n,t);}));}function ja(e,n,t){var r=e.node(t).parent,o=!0,i=n.edge(t,r),a=0;return i||(o=!1,i=n.edge(r,t)),a=i.weight,Hi.forEach(n.nodeEdges(t),(function(i){var u,c,s=i.v===t,d=s?i.w:i.v;if(d!==r){var f=s===o,h=n.edge(i).weight;if(a+=f?h:-h,u=t,c=d,e.hasEdge(u,c)){var l=e.edge(t,d).cutvalue;a+=f?-l:l;}}})),a}function xa(e,n){arguments.length<2&&(n=e.nodes()[0]),Na(e,{},1,n);}function Na(e,n,t,r,o){var i=t,a=e.node(r);return n[r]=!0,Hi.forEach(e.neighbors(r),(function(o){Hi.has(n,o)||(t=Na(e,n,t,o,r));})),a.low=i,a.lim=t++,o?a.parent=o:delete a.parent,t}function Oa(e){return Hi.find(e.edges(),(function(n){return e.edge(n).cutvalue<0}))}function ka(e,n,t){var r=t.v,o=t.w;n.hasEdge(r,o)||(r=t.w,o=t.v);var i=e.node(r),a=e.node(o),u=i,c=!1;i.lim>a.lim&&(u=a,c=!0);var s=Hi.filter(n.edges(),(function(n){return c===Sa(e,e.node(n.v),u)&&c!==Sa(e,e.node(n.w),u)}));return Hi.minBy(s,(function(e){return pa(n,e)}))}function Ia(e,n,t,r){var o=t.v,i=t.w;e.removeEdge(o,i),e.setEdge(r.v,r.w,{}),xa(e),_a(e,n),function(e,n){var t=Hi.find(e.nodes(),(function(e){return !n.node(e).parent})),r=ya(e,t);r=r.slice(1),Hi.forEach(r,(function(t){var r=e.node(t).parent,o=n.edge(t,r),i=!1;o||(o=n.edge(r,t),i=!0),n.node(t).rank=n.node(r).rank+(i?o.minlen:-o.minlen);}));}(e,n);}function Sa(e,n,t){return t.low<=n.lim&&n.lim<=t.lim}Ea.initLowLimValues=xa,Ea.initCutValues=_a,Ea.calcCutValue=ja,Ea.leaveEdge=Oa,Ea.enterEdge=ka,Ea.exchangeEdges=Ia;var Ma=ua,Ca=function(e){switch(e.graph().ranker){case"network-simplex":Ba(e);break;case"tight-tree":!function(e){Ma(e),fa(e);}(e);break;case"longest-path":Ga(e);break;default:Ba(e);}};var Ga=Ma;function Ba(e){wa(e);}var Aa=function(e){var n=function(e){var n={},t=0;function r(o){var i=t;Hi.forEach(e.children(o),r),n[o]={low:i,lim:t++};}return Hi.forEach(e.children(),r),n}(e);Hi.forEach(e.graph().dummyChains,(function(t){for(var r=e.node(t),o=r.edgeObj,i=function(e,n,t,r){var o,i,a=[],u=[],c=Math.min(n[t].low,n[r].low),s=Math.max(n[t].lim,n[r].lim);o=t;do{o=e.parent(o),a.push(o);}while(o&&(n[o].low>c||s>n[o].lim));i=o,o=r;for(;(o=e.parent(o))!==i;)u.push(o);return {path:a.concat(u.reverse()),lca:i}}(e,n,o.v,o.w),a=i.path,u=i.lca,c=0,s=a[c],d=!0;t!==o.w;){if(r=e.node(t),d){for(;(s=a[c])!==u&&e.node(s).maxRank<r.rank;)c++;s===u&&(d=!1);}if(!d){for(;c<a.length-1&&e.node(s=a[c+1]).minRank<=r.rank;)c++;s=a[c];}e.setParent(t,s),t=e.successors(t)[0];}}));};var La={run:function(e){var n=ra.addDummyNode(e,"root",{},"_root"),t=function(e){var n={};function t(r,o){var i=e.children(r);i&&i.length&&Hi.forEach(i,(function(e){t(e,o+1);})),n[r]=o;}return Hi.forEach(e.children(),(function(e){t(e,1);})),n}(e),r=Hi.max(Hi.values(t))-1,o=2*r+1;e.graph().nestingRoot=n,Hi.forEach(e.edges(),(function(n){e.edge(n).minlen*=o;}));var i=function(e){return Hi.reduce(e.edges(),(function(n,t){return n+e.edge(t).weight}),0)}(e)+1;Hi.forEach(e.children(),(function(a){Ra(e,n,o,i,r,t,a);})),e.graph().nodeRankFactor=o;},cleanup:function(e){var n=e.graph();e.removeNode(n.nestingRoot),delete n.nestingRoot,Hi.forEach(e.edges(),(function(n){e.edge(n).nestingEdge&&e.removeEdge(n);}));}};function Ra(e,n,t,r,o,i,a){var u=e.children(a);if(u.length){var c=ra.addBorderNode(e,"_bt"),s=ra.addBorderNode(e,"_bb"),d=e.node(a);e.setParent(c,a),d.borderTop=c,e.setParent(s,a),d.borderBottom=s,Hi.forEach(u,(function(u){Ra(e,n,t,r,o,i,u);var d=e.node(u),f=d.borderTop?d.borderTop:u,h=d.borderBottom?d.borderBottom:u,l=d.borderTop?r:2*r,v=f!==h?1:o-i[a]+1;e.setEdge(c,f,{weight:l,minlen:v,nestingEdge:!0}),e.setEdge(h,s,{weight:l,minlen:v,nestingEdge:!0});})),e.parent(a)||e.setEdge(n,c,{weight:0,minlen:o+i[a]});}else a!==n&&e.setEdge(n,a,{weight:0,minlen:t});}var Ta=function(e){Hi.forEach(e.children(),(function n(t){var r=e.children(t),o=e.node(t);if(r.length&&Hi.forEach(r,n),Hi.has(o,"minRank")){o.borderLeft=[],o.borderRight=[];for(var i=o.minRank,a=o.maxRank+1;i<a;++i)Da(e,"borderLeft","_bl",t,o,i),Da(e,"borderRight","_br",t,o,i);}}));};function Da(e,n,t,r,o,i){var a={width:0,height:0,rank:i,borderType:n},u=o[n][i-1],c=ra.addDummyNode(e,"border",a,t);o[n][i]=c,e.setParent(c,r),u&&e.setEdge(u,c,{weight:1});}var Pa={adjust:function(e){var n=e.graph().rankdir.toLowerCase();"lr"!==n&&"rl"!==n||za(e);},undo:function(e){var n=e.graph().rankdir.toLowerCase();"bt"!==n&&"rl"!==n||function(e){Hi.forEach(e.nodes(),(function(n){Ua(e.node(n));})),Hi.forEach(e.edges(),(function(n){var t=e.edge(n);Hi.forEach(t.points,Ua),Hi.has(t,"y")&&Ua(t);}));}(e);"lr"!==n&&"rl"!==n||(!function(e){Hi.forEach(e.nodes(),(function(n){Va(e.node(n));})),Hi.forEach(e.edges(),(function(n){var t=e.edge(n);Hi.forEach(t.points,Va),Hi.has(t,"x")&&Va(t);}));}(e),za(e));}};function za(e){Hi.forEach(e.nodes(),(function(n){Fa(e.node(n));})),Hi.forEach(e.edges(),(function(n){Fa(e.edge(n));}));}function Fa(e){var n=e.width;e.width=e.height,e.height=n;}function Ua(e){e.y=-e.y;}function Va(e){var n=e.x;e.x=e.y,e.y=n;}var $a=function(e){var n={},t=Hi.filter(e.nodes(),(function(n){return !e.children(n).length})),r=Hi.max(Hi.map(t,(function(n){return e.node(n).rank}))),o=Hi.map(Hi.range(r+1),(function(){return []}));function i(t){if(!Hi.has(n,t)){n[t]=!0;var r=e.node(t);o[r.rank].push(t),Hi.forEach(e.successors(t),i);}}var a=Hi.sortBy(t,(function(n){return e.node(n).rank}));return Hi.forEach(a,i),o};var Ha=function(e,n){for(var t=0,r=1;r<n.length;++r)t+=Wa(e,n[r-1],n[r]);return t};function Wa(e,n,t){for(var r=Hi.zipObject(t,Hi.map(t,(function(e,n){return n}))),o=Hi.flatten(Hi.map(n,(function(n){return Hi.sortBy(Hi.map(e.outEdges(n),(function(n){return {pos:r[n.w],weight:e.edge(n).weight}})),"pos")})),!0),i=1;i<t.length;)i<<=1;var a=2*i-1;i-=1;var u=Hi.map(new Array(a),(function(){return 0})),c=0;return Hi.forEach(o.forEach((function(e){var n=e.pos+i;u[n]+=e.weight;for(var t=0;n>0;)n%2&&(t+=u[n+1]),u[n=n-1>>1]+=e.weight;c+=e.weight*t;}))),c}var qa=function(e,n){return Hi.map(n,(function(n){var t=e.inEdges(n);if(t.length){var r=Hi.reduce(t,(function(n,t){var r=e.edge(t),o=e.node(t.v);return {sum:n.sum+r.weight*o.order,weight:n.weight+r.weight}}),{sum:0,weight:0});return {v:n,barycenter:r.sum/r.weight,weight:r.weight}}return {v:n}}))};var Ya=function(e,n){var t={};return Hi.forEach(e,(function(e,n){var r=t[e.v]={indegree:0,in:[],out:[],vs:[e.v],i:n};Hi.isUndefined(e.barycenter)||(r.barycenter=e.barycenter,r.weight=e.weight);})),Hi.forEach(n.edges(),(function(e){var n=t[e.v],r=t[e.w];Hi.isUndefined(n)||Hi.isUndefined(r)||(r.indegree++,n.out.push(t[e.w]));})),function(e){var n=[];function t(e){return function(n){n.merged||(Hi.isUndefined(n.barycenter)||Hi.isUndefined(e.barycenter)||n.barycenter>=e.barycenter)&&function(e,n){var t=0,r=0;e.weight&&(t+=e.barycenter*e.weight,r+=e.weight);n.weight&&(t+=n.barycenter*n.weight,r+=n.weight);e.vs=n.vs.concat(e.vs),e.barycenter=t/r,e.weight=r,e.i=Math.min(n.i,e.i),n.merged=!0;}(e,n);}}function r(n){return function(t){t.in.push(n),0==--t.indegree&&e.push(t);}}for(;e.length;){var o=e.pop();n.push(o),Hi.forEach(o.in.reverse(),t(o)),Hi.forEach(o.out,r(o));}return Hi.map(Hi.filter(n,(function(e){return !e.merged})),(function(e){return Hi.pick(e,["vs","i","barycenter","weight"])}))}(Hi.filter(t,(function(e){return !e.indegree})))};var Ja=function(e,n){var t=ra.partition(e,(function(e){return Hi.has(e,"barycenter")})),r=t.lhs,o=Hi.sortBy(t.rhs,(function(e){return -e.i})),i=[],a=0,u=0,c=0;r.sort((s=!!n,function(e,n){return e.barycenter<n.barycenter?-1:e.barycenter>n.barycenter?1:s?n.i-e.i:e.i-n.i})),c=Xa(i,o,c),Hi.forEach(r,(function(e){c+=e.vs.length,i.push(e.vs),a+=e.barycenter*e.weight,u+=e.weight,c=Xa(i,o,c);}));var s;var d={vs:Hi.flatten(i,!0)};u&&(d.barycenter=a/u,d.weight=u);return d};function Xa(e,n,t){for(var r;n.length&&(r=Hi.last(n)).i<=t;)n.pop(),e.push(r.vs),t++;return t}var Ka=function e(n,t,r,o){var i=n.children(t),a=n.node(t),u=a?a.borderLeft:void 0,c=a?a.borderRight:void 0,s={};u&&(i=Hi.filter(i,(function(e){return e!==u&&e!==c})));var d=qa(n,i);Hi.forEach(d,(function(t){if(n.children(t.v).length){var i=e(n,t.v,r,o);s[t.v]=i,Hi.has(i,"barycenter")&&(a=t,u=i,Hi.isUndefined(a.barycenter)?(a.barycenter=u.barycenter,a.weight=u.weight):(a.barycenter=(a.barycenter*a.weight+u.barycenter*u.weight)/(a.weight+u.weight),a.weight+=u.weight));}var a,u;}));var f=Ya(d,r);!function(e,n){Hi.forEach(e,(function(e){e.vs=Hi.flatten(e.vs.map((function(e){return n[e]?n[e].vs:e})),!0);}));}(f,s);var h=Ja(f,o);if(u&&(h.vs=Hi.flatten([u,h.vs,c],!0),n.predecessors(u).length)){var l=n.node(n.predecessors(u)[0]),v=n.node(n.predecessors(c)[0]);Hi.has(h,"barycenter")||(h.barycenter=0,h.weight=0),h.barycenter=(h.barycenter*h.weight+l.order+v.order)/(h.weight+2),h.weight+=2;}return h};var Qa=Fo.Graph,Za=function(e,n,t){var r=function(e){var n;for(;e.hasNode(n=Hi.uniqueId("_root")););return n}(e),o=new Qa({compound:!0}).setGraph({root:r}).setDefaultNodeLabel((function(n){return e.node(n)}));return Hi.forEach(e.nodes(),(function(i){var a=e.node(i),u=e.parent(i);(a.rank===n||a.minRank<=n&&n<=a.maxRank)&&(o.setNode(i),o.setParent(i,u||r),Hi.forEach(e[t](i),(function(n){var t=n.v===i?n.w:n.v,r=o.edge(t,i),a=Hi.isUndefined(r)?0:r.weight;o.setEdge(t,i,{weight:e.edge(n).weight+a});})),Hi.has(a,"minRank")&&o.setNode(i,{borderLeft:a.borderLeft[n],borderRight:a.borderRight[n]}));})),o};var eu=function(e,n,t){var r,o={};Hi.forEach(t,(function(t){for(var i,a,u=e.parent(t);u;){if((i=e.parent(u))?(a=o[i],o[i]=u):(a=r,r=u),a&&a!==u)return void n.setEdge(a,u);u=i;}}));};var nu=Fo.Graph,tu=function(e){var n=ra.maxRank(e),t=ru(e,Hi.range(1,n+1),"inEdges"),r=ru(e,Hi.range(n-1,-1,-1),"outEdges"),o=$a(e);iu(e,o);for(var i,a=Number.POSITIVE_INFINITY,u=0,c=0;c<4;++u,++c){ou(u%2?t:r,u%4>=2),o=ra.buildLayerMatrix(e);var s=Ha(e,o);s<a&&(c=0,i=Hi.cloneDeep(o),a=s);}iu(e,i);};function ru(e,n,t){return Hi.map(n,(function(n){return Za(e,n,t)}))}function ou(e,n){var t=new nu;Hi.forEach(e,(function(e){var r=e.graph().root,o=Ka(e,r,t,n);Hi.forEach(o.vs,(function(n,t){e.node(n).order=t;})),eu(e,t,o.vs);}));}function iu(e,n){Hi.forEach(n,(function(n){Hi.forEach(n,(function(n,t){e.node(n).order=t;}));}));}var au=Fo.Graph,uu=function(e){var n,t=ra.buildLayerMatrix(e),r=Hi.merge(cu(e,t),su(e,t)),o={};Hi.forEach(["u","d"],(function(i){n="u"===i?t:Hi.values(t).reverse(),Hi.forEach(["l","r"],(function(t){"r"===t&&(n=Hi.map(n,(function(e){return Hi.values(e).reverse()})));var a=("u"===i?e.predecessors:e.successors).bind(e),u=hu(e,n,r,a),c=lu(e,n,u.root,u.align,"r"===t);"r"===t&&(c=Hi.mapValues(c,(function(e){return -e}))),o[i+t]=c;}));}));var i=vu(e,o);return pu(o,i),gu(o,e.graph().align)};function cu(e,n){var t={};return Hi.reduce(n,(function(n,r){var o=0,i=0,a=n.length,u=Hi.last(r);return Hi.forEach(r,(function(n,c){var s=function(e,n){if(e.node(n).dummy)return Hi.find(e.predecessors(n),(function(n){return e.node(n).dummy}))}(e,n),d=s?e.node(s).order:a;(s||n===u)&&(Hi.forEach(r.slice(i,c+1),(function(n){Hi.forEach(e.predecessors(n),(function(r){var i=e.node(r),a=i.order;!(a<o||d<a)||i.dummy&&e.node(n).dummy||du(t,r,n);}));})),i=c+1,o=d);})),r})),t}function su(e,n){var t={};function r(n,r,o,i,a){var u;Hi.forEach(Hi.range(r,o),(function(r){u=n[r],e.node(u).dummy&&Hi.forEach(e.predecessors(u),(function(n){var r=e.node(n);r.dummy&&(r.order<i||r.order>a)&&du(t,n,u);}));}));}return Hi.reduce(n,(function(n,t){var o,i=-1,a=0;return Hi.forEach(t,(function(u,c){if("border"===e.node(u).dummy){var s=e.predecessors(u);s.length&&(o=e.node(s[0]).order,r(t,a,c,i,o),a=c,i=o);}r(t,a,t.length,o,n.length);})),t})),t}function du(e,n,t){if(n>t){var r=n;n=t,t=r;}var o=e[n];o||(e[n]=o={}),o[t]=!0;}function fu(e,n,t){if(n>t){var r=n;n=t,t=r;}return Hi.has(e[n],t)}function hu(e,n,t,r){var o={},i={},a={};return Hi.forEach(n,(function(e){Hi.forEach(e,(function(e,n){o[e]=e,i[e]=e,a[e]=n;}));})),Hi.forEach(n,(function(e){var n=-1;Hi.forEach(e,(function(e){var u=r(e);if(u.length)for(var c=((u=Hi.sortBy(u,(function(e){return a[e]}))).length-1)/2,s=Math.floor(c),d=Math.ceil(c);s<=d;++s){var f=u[s];i[e]===e&&n<a[f]&&!fu(t,e,f)&&(i[f]=e,i[e]=o[e]=o[f],n=a[f]);}}));})),{root:o,align:i}}function lu(e,n,t,r,o){var i={},a=function(e,n,t,r){var o=new au,i=e.graph(),a=function(e,n,t){return function(r,o,i){var a,u=r.node(o),c=r.node(i),s=0;if(s+=u.width/2,Hi.has(u,"labelpos"))switch(u.labelpos.toLowerCase()){case"l":a=-u.width/2;break;case"r":a=u.width/2;}if(a&&(s+=t?a:-a),a=0,s+=(u.dummy?n:e)/2,s+=(c.dummy?n:e)/2,s+=c.width/2,Hi.has(c,"labelpos"))switch(c.labelpos.toLowerCase()){case"l":a=c.width/2;break;case"r":a=-c.width/2;}return a&&(s+=t?a:-a),a=0,s}}(i.nodesep,i.edgesep,r);return Hi.forEach(n,(function(n){var r;Hi.forEach(n,(function(n){var i=t[n];if(o.setNode(i),r){var u=t[r],c=o.edge(u,i);o.setEdge(u,i,Math.max(a(e,n,r),c||0));}r=n;}));})),o}(e,n,t,o),u=o?"borderLeft":"borderRight";function c(e,n){for(var t=a.nodes(),r=t.pop(),o={};r;)o[r]?e(r):(o[r]=!0,t.push(r),t=t.concat(n(r))),r=t.pop();}return c((function(e){i[e]=a.inEdges(e).reduce((function(e,n){return Math.max(e,i[n.v]+a.edge(n))}),0);}),a.predecessors.bind(a)),c((function(n){var t=a.outEdges(n).reduce((function(e,n){return Math.min(e,i[n.w]-a.edge(n))}),Number.POSITIVE_INFINITY),r=e.node(n);t!==Number.POSITIVE_INFINITY&&r.borderType!==u&&(i[n]=Math.max(i[n],t));}),a.successors.bind(a)),Hi.forEach(r,(function(e){i[e]=i[t[e]];})),i}function vu(e,n){return Hi.minBy(Hi.values(n),(function(n){var t=Number.NEGATIVE_INFINITY,r=Number.POSITIVE_INFINITY;return Hi.forIn(n,(function(n,o){var i=function(e,n){return e.node(n).width}(e,o)/2;t=Math.max(n+i,t),r=Math.min(n-i,r);})),t-r}))}function pu(e,n){var t=Hi.values(n),r=Hi.min(t),o=Hi.max(t);Hi.forEach(["u","d"],(function(t){Hi.forEach(["l","r"],(function(i){var a,u=t+i,c=e[u];if(c!==n){var s=Hi.values(c);(a="l"===i?r-Hi.min(s):o-Hi.max(s))&&(e[u]=Hi.mapValues(c,(function(e){return e+a})));}}));}));}function gu(e,n){return Hi.mapValues(e.ul,(function(t,r){if(n)return e[n.toLowerCase()][r];var o=Hi.sortBy(Hi.map(e,r));return (o[1]+o[2])/2}))}var yu=uu,bu=function(e){((function(e){var n=ra.buildLayerMatrix(e),t=e.graph().ranksep,r=0;Hi.forEach(n,(function(n){var o=Hi.max(Hi.map(n,(function(n){return e.node(n).height})));Hi.forEach(n,(function(n){e.node(n).y=r+o/2;})),r+=o+t;}));}))(e=ra.asNonCompoundGraph(e)),Hi.forEach(yu(e),(function(n,t){e.node(t).x=n;}));};var mu=ra.normalizeRanks,wu=ra.removeEmptyRanks,Eu=ra,_u=Fo.Graph,ju=function(e,n){var t=n&&n.debugTiming?Eu.time:Eu.notime;t("layout",(function(){var n=t(" buildLayoutGraph",(function(){return function(e){var n=new _u({multigraph:!0,compound:!0}),t=Bu(e.graph());return n.setGraph(Hi.merge({},Nu,Gu(t,xu),Hi.pick(t,Ou))),Hi.forEach(e.nodes(),(function(t){var r=Bu(e.node(t));n.setNode(t,Hi.defaults(Gu(r,ku),Iu)),n.setParent(t,e.parent(t));})),Hi.forEach(e.edges(),(function(t){var r=Bu(e.edge(t));n.setEdge(t,Hi.merge({},Mu,Gu(r,Su),Hi.pick(r,Cu)));})),n}(e)}));t(" runLayout",(function(){!function(e,n){n(" makeSpaceForEdgeLabels",(function(){!function(e){var n=e.graph();n.ranksep/=2,Hi.forEach(e.edges(),(function(t){var r=e.edge(t);r.minlen*=2,"c"!==r.labelpos.toLowerCase()&&("TB"===n.rankdir||"BT"===n.rankdir?r.width+=r.labeloffset:r.height+=r.labeloffset);}));}(e);})),n(" removeSelfEdges",(function(){!function(e){Hi.forEach(e.edges(),(function(n){if(n.v===n.w){var t=e.node(n.v);t.selfEdges||(t.selfEdges=[]),t.selfEdges.push({e:n,label:e.edge(n)}),e.removeEdge(n);}}));}(e);})),n(" acyclic",(function(){na.run(e);})),n(" nestingGraph.run",(function(){La.run(e);})),n(" rank",(function(){Ca(Eu.asNonCompoundGraph(e));})),n(" injectEdgeLabelProxies",(function(){!function(e){Hi.forEach(e.edges(),(function(n){var t=e.edge(n);if(t.width&&t.height){var r=e.node(n.v),o={rank:(e.node(n.w).rank-r.rank)/2+r.rank,e:n};Eu.addDummyNode(e,"edge-proxy",o,"_ep");}}));}(e);})),n(" removeEmptyRanks",(function(){wu(e);})),n(" nestingGraph.cleanup",(function(){La.cleanup(e);})),n(" normalizeRanks",(function(){mu(e);})),n(" assignRankMinMax",(function(){!function(e){var n=0;Hi.forEach(e.nodes(),(function(t){var r=e.node(t);r.borderTop&&(r.minRank=e.node(r.borderTop).rank,r.maxRank=e.node(r.borderBottom).rank,n=Hi.max(n,r.maxRank));})),e.graph().maxRank=n;}(e);})),n(" removeEdgeLabelProxies",(function(){!function(e){Hi.forEach(e.nodes(),(function(n){var t=e.node(n);"edge-proxy"===t.dummy&&(e.edge(t.e).labelRank=t.rank,e.removeNode(n));}));}(e);})),n(" normalize.run",(function(){aa.run(e);})),n(" parentDummyChains",(function(){Aa(e);})),n(" addBorderSegments",(function(){Ta(e);})),n(" order",(function(){tu(e);})),n(" insertSelfEdges",(function(){!function(e){var n=Eu.buildLayerMatrix(e);Hi.forEach(n,(function(n){var t=0;Hi.forEach(n,(function(n,r){var o=e.node(n);o.order=r+t,Hi.forEach(o.selfEdges,(function(n){Eu.addDummyNode(e,"selfedge",{width:n.label.width,height:n.label.height,rank:o.rank,order:r+ ++t,e:n.e,label:n.label},"_se");})),delete o.selfEdges;}));}));}(e);})),n(" adjustCoordinateSystem",(function(){Pa.adjust(e);})),n(" position",(function(){bu(e);})),n(" positionSelfEdges",(function(){!function(e){Hi.forEach(e.nodes(),(function(n){var t=e.node(n);if("selfedge"===t.dummy){var r=e.node(t.e.v),o=r.x+r.width/2,i=r.y,a=t.x-o,u=r.height/2;e.setEdge(t.e,t.label),e.removeNode(n),t.label.points=[{x:o+2*a/3,y:i-u},{x:o+5*a/6,y:i-u},{x:o+a,y:i},{x:o+5*a/6,y:i+u},{x:o+2*a/3,y:i+u}],t.label.x=t.x,t.label.y=t.y;}}));}(e);})),n(" removeBorderNodes",(function(){!function(e){Hi.forEach(e.nodes(),(function(n){if(e.children(n).length){var t=e.node(n),r=e.node(t.borderTop),o=e.node(t.borderBottom),i=e.node(Hi.last(t.borderLeft)),a=e.node(Hi.last(t.borderRight));t.width=Math.abs(a.x-i.x),t.height=Math.abs(o.y-r.y),t.x=i.x+t.width/2,t.y=r.y+t.height/2;}})),Hi.forEach(e.nodes(),(function(n){"border"===e.node(n).dummy&&e.removeNode(n);}));}(e);})),n(" normalize.undo",(function(){aa.undo(e);})),n(" fixupEdgeLabelCoords",(function(){!function(e){Hi.forEach(e.edges(),(function(n){var t=e.edge(n);if(Hi.has(t,"x"))switch("l"!==t.labelpos&&"r"!==t.labelpos||(t.width-=t.labeloffset),t.labelpos){case"l":t.x-=t.width/2+t.labeloffset;break;case"r":t.x+=t.width/2+t.labeloffset;}}));}(e);})),n(" undoCoordinateSystem",(function(){Pa.undo(e);})),n(" translateGraph",(function(){!function(e){var n=Number.POSITIVE_INFINITY,t=0,r=Number.POSITIVE_INFINITY,o=0,i=e.graph(),a=i.marginx||0,u=i.marginy||0;function c(e){var i=e.x,a=e.y,u=e.width,c=e.height;n=Math.min(n,i-u/2),t=Math.max(t,i+u/2),r=Math.min(r,a-c/2),o=Math.max(o,a+c/2);}Hi.forEach(e.nodes(),(function(n){c(e.node(n));})),Hi.forEach(e.edges(),(function(n){var t=e.edge(n);Hi.has(t,"x")&&c(t);})),n-=a,r-=u,Hi.forEach(e.nodes(),(function(t){var o=e.node(t);o.x-=n,o.y-=r;})),Hi.forEach(e.edges(),(function(t){var o=e.edge(t);Hi.forEach(o.points,(function(e){e.x-=n,e.y-=r;})),Hi.has(o,"x")&&(o.x-=n),Hi.has(o,"y")&&(o.y-=r);})),i.width=t-n+a,i.height=o-r+u;}(e);})),n(" assignNodeIntersects",(function(){!function(e){Hi.forEach(e.edges(),(function(n){var t,r,o=e.edge(n),i=e.node(n.v),a=e.node(n.w);o.points?(t=o.points[0],r=o.points[o.points.length-1]):(o.points=[],t=a,r=i),o.points.unshift(Eu.intersectRect(i,t)),o.points.push(Eu.intersectRect(a,r));}));}(e);})),n(" reversePoints",(function(){!function(e){Hi.forEach(e.edges(),(function(n){var t=e.edge(n);t.reversed&&t.points.reverse();}));}(e);})),n(" acyclic.undo",(function(){na.undo(e);}));}(n,t);})),t(" updateInputGraph",(function(){!function(e,n){Hi.forEach(e.nodes(),(function(t){var r=e.node(t),o=n.node(t);r&&(r.x=o.x,r.y=o.y,n.children(t).length&&(r.width=o.width,r.height=o.height));})),Hi.forEach(e.edges(),(function(t){var r=e.edge(t),o=n.edge(t);r.points=o.points,Hi.has(o,"x")&&(r.x=o.x,r.y=o.y);})),e.graph().width=n.graph().width,e.graph().height=n.graph().height;}(e,n);}));}));};var xu=["nodesep","edgesep","ranksep","marginx","marginy"],Nu={ranksep:50,edgesep:20,nodesep:50,rankdir:"tb"},Ou=["acyclicer","ranker","rankdir","align"],ku=["width","height"],Iu={width:0,height:0},Su=["minlen","weight","width","height","labeloffset"],Mu={minlen:1,weight:1,width:0,height:0,labeloffset:10,labelpos:"r"},Cu=["labelpos"];function Gu(e,n){return Hi.mapValues(Hi.pick(e,n),Number)}function Bu(e){var n={};return Hi.forEach(e,(function(e,t){n[t.toLowerCase()]=e;})),n}var Au=Fo.Graph;var Lu={graphlib:Fo,layout:ju,debug:{debugOrdering:function(e){var n=ra.buildLayerMatrix(e),t=new Au({compound:!0,multigraph:!0}).setGraph({});return Hi.forEach(e.nodes(),(function(n){t.setNode(n,{label:n}),t.setParent(n,"layer"+e.node(n).rank);})),Hi.forEach(e.edges(),(function(e){t.setEdge(e.v,e.w,{},e.name);})),Hi.forEach(n,(function(e,n){var r="layer"+n;t.setNode(r,{rank:"same"}),Hi.reduce(e,(function(e,n){return t.setEdge(e,n,{style:"invis"}),n}));})),t}},util:{time:ra.time,notime:ra.notime},version:"0.8.5"},Ru=Lu.graphlib,Tu=Lu.layout;class Du{constructor(e){this.cardinality=1,this.include=a.UNSPECIFIED,this.isGroupNode=!1,this.parentNode=null,this.type=i.NODE,this.name=e.name,this.attr=e.attr||{},this.inputs=e.inputs,this.path=e.path||[],this.width=e.width,this.height=e.height;}}class Pu{constructor(){this.nodes={},this.edges=[],this.nodes={},this.edges=[];}}function zu(e){const n=new Pu;return e.nodes.map((e=>new Du(e))).forEach((e=>{n.nodes[e.name]=e,e.inputs.forEach((t=>{!function(e,n,t){t.name!==n.name&&e.edges.push(Object.assign(Object.assign({},t.attr),{v:t.name,w:n.name}));}(n,e,t);}));})),n}class Fu{constructor(e,n={}){this.attr=null,this.bridgeGraph=null,this.cardinality=0,this.depth=1,this.include=a.UNSPECIFIED,this.isGroupNode=!0,this.parentNode=null,this.type=i.META,this.path=[],this.name=e,this.metaGraph=Hu(e,u.META,n);}getFirstChild(){return this.metaGraph.node(this.metaGraph.nodes()[0])}getChildren(){return this.metaGraph.nodes().map((e=>this.metaGraph.node(e)))}leaves(){let e,n=[],t=[this];for(;t.length;){let r=t.shift();r.isGroupNode?(e=r.metaGraph,e.nodes().forEach((n=>t.push(e.node(n))))):n.push(r.name);}return n}}class Uu{constructor(e,n){this.v=e,this.w=n,this.baseEdgeList=[],this.inbound=null,this.name=null;}addBaseEdge(e,n){this.baseEdgeList.push(e);}}function Vu(e,n={}){return new Fu(e,n)}function $u(e,n){return new Uu(e,n)}function Hu(e,n,t){const r=t||{},o=new Ru.Graph(r);return o.setGraph({name:e,rankdir:r.rankdir,type:n,align:r.align}),o}class Wu{constructor(e={}){this.graphOptions=e,this.index={},this.graphOptions.compound=!0,this.root=Vu(r,this.graphOptions),this.index[r]=this.root;}getNodeMap(){return this.index}node(e){return this.index[e]}setNode(e,n){this.index[e]=n;}getBridgeGraph(e){const n=this.index[e];if(!n)throw Error("Could not find node in hierarchy: "+e);if(!("metaGraph"in n))return null;const t=n;if(t.bridgeGraph)return t.bridgeGraph;const r=Hu(o,u.BRIDGE,this.graphOptions);if(t.bridgeGraph=r,!n.parentNode||!("metaGraph"in n.parentNode))return r;const i=n.parentNode;return [i.metaGraph,this.getBridgeGraph(i.name)].forEach((n=>{n.edges().filter((n=>n.v===e||n.w===e)).forEach((t=>{const o=t.w===e;n.edge(t).baseEdgeList.forEach((n=>{const[i,a]=o?[n.w,t.v]:[n.v,t.w],u=this.getChildName(e,i),c={v:o?a:u,w:o?u:a};let s=r.edge(c);s||(s=$u(c.v,c.w),s.inbound=o,r.setEdge(c.v,c.w,s)),s.addBaseEdge(n,this);}));}));})),r}getChildName(e,n){let t=this.index[n];for(;t;){if(t.parentNode&&t.parentNode.name===e)return t.name;t=t.parentNode;}throw Error("Could not find immediate child for descendant: "+n)}getPredecessors(e){const n=this.index[e];if(!n)throw Error("Could not find node with name: "+e);return this.getOneWayEdges(n,!0)}getSuccessors(e){const n=this.index[e];if(!n)throw Error("Could not find node with name: "+e);return this.getOneWayEdges(n,!1)}getOneWayEdges(e,n){const t=[];if(!e.parentNode||!e.parentNode.isGroupNode)return t;const r=e.parentNode,o=r.metaGraph,i=this.getBridgeGraph(r.name);return Yu(o,e,n,t),Yu(i,e,n,t),t}}function qu(e,n){const{rankDirection:t,align:r}=n,o=new Wu({rankdir:t,align:r});return function(e,n){Object.keys(n.nodes).forEach((t=>{const r=n.nodes[t],o=r.path;let i=e.root;i.depth=Math.max(o.length,i.depth);for(let n=0;n<o.length&&(i.depth=Math.max(i.depth,o.length-n),i.cardinality+=r.cardinality,n!==o.length-1);n++){const t=o[n];let a=e.node(t);a||(a=Vu(t,e.graphOptions),a.path=r.path.slice(0,n+1),a.parentNode=i,e.setNode(t,a),i.metaGraph.setNode(t,a)),i=a;}e.setNode(r.name,r),r.parentNode=i,i.metaGraph.setNode(r.name,r);}));}(o,e),function(e,n){const t=e.getNodeMap();let r=[],o=[];const i=(e,n)=>{let t=0;for(;e;)n[t++]=e.name,e=e.parentNode;return t-1};n.edges.forEach((a=>{r=[],o=[];let u=i(n.nodes[a.v],r),c=i(n.nodes[a.w],o);for(;r[u]===o[c];)if(u--,c--,u<0||c<0)throw Error("No difference found between ancestor paths.");const s=t[r[u+1]],d=r[u],f=o[c];let h=s.metaGraph.edge(d,f);h||(h=$u(d,f),s.metaGraph.setEdge(d,f,h)),h.addBaseEdge(a,e);}));}(o,e),o}function Yu(e,n,t,r){(t?e.inEdges(n.name):e.outEdges(n.name)).forEach((n=>{const t=e.edge(n);r.push(t);}));}class Ju{constructor(e){this.hierarchy=e,this.index={},this.hasSubHierarchy={},this.root=new Qu(this.hierarchy.root,this.hierarchy.graphOptions),this.index[e.root.name]=this.root,this.buildSubHierarchy(e.root.name),this.root.expanded=!0;}getRenderInfoNodes(){return Object.values(this.index)}getSubHierarchy(){return this.hasSubHierarchy}buildSubHierarchy(e){if(e in this.hasSubHierarchy)return;this.hasSubHierarchy[e]=!0;const n=this.index[e];if(n.node.type!==i.META)return;const t=n,r=t.node.metaGraph,o=t.coreGraph;r.nodes().forEach((e=>{const n=this.getOrCreateRenderNodeByName(e);o.setNode(e,n);})),r.edges().forEach((e=>{const n=r.edge(e),t=new Ku(n);o.setEdge(e.v,e.w,t);}));const u=t.node.parentNode;if(!u)return;const c=this.getRenderNodeByName(u.name),s=(e,...n)=>n.concat([e?"IN":"OUT"]).join("~~"),d=this.hierarchy.getBridgeGraph(e);d.edges().forEach((n=>{const t=d.edge(n),f=!!r.node(n.w),[h,l]=f?[n.w,n.v]:[n.v,n.w],v=n=>{const t=f?{v:n,w:e}:{v:e,w:n};return c.coreGraph.edge(t)};let p=v(l);p||(p=v(s(f,l,u.name)));const g=s(f,e),y=s(f,l,e);let b=o.node(y);if(!b){let e=o.node(g);if(!e){const n={name:g,type:i.BRIDGE,isGroupNode:!1,cardinality:0,parentNode:null,include:a.UNSPECIFIED,inbound:f,attr:{}};e=new Xu(n),this.index[g]=e,o.setNode(g,e);}const n={name:y,type:i.BRIDGE,isGroupNode:!1,cardinality:1,parentNode:null,include:a.UNSPECIFIED,inbound:f,attr:{}};b=new Xu(n),this.index[y]=b,o.setNode(y,b),o.setParent(y,g),e.node.cardinality++;}const m=new Ku(t);m.adjoiningMetaEdge=p,f?o.setEdge(y,h,m):o.setEdge(h,y,m);}));}getOrCreateRenderNodeByName(e){if(!e)return null;if(e in this.index)return this.index[e];const n=this.getNodeByName(e);return n?(this.index[e]=n.isGroupNode?new Qu(n,this.hierarchy.graphOptions):new Xu(n),this.index[e]):null}getRenderNodeByName(e){return this.index[e]}getNodeByName(e){return this.hierarchy.node(e)}}class Xu{constructor(e){this.node=e,this.expanded=!1,this.x=0,this.y=0,this.coreBox={width:0,height:0},this.outboxWidth=0,this.labelOffset=0,this.radius=0,this.labelHeight=0,this.paddingTop=0,this.paddingLeft=0,this.paddingRight=0,this.paddingBottom=0,this.width=e.width||0,this.height=e.height||0,this.displayName=e.name,this.attr=e.attr;}}class Ku{constructor(e){this.metaEdge=e,this.adjoiningMetaEdge=null,this.weight=1,this.points=[];}}class Qu extends Xu{constructor(e,n){super(e);const t=e.metaGraph.graph();n.compound=!0,this.coreGraph=Hu(t.name,u.CORE,n);}}function Zu(e,t){e.node.isGroupNode&&function(e,t){const r=n(t);e.coreGraph.nodes().map((n=>e.coreGraph.node(n))).forEach((e=>{var n,o,a,u,c,s;const{height:d,width:f}=e;switch(e.node.type){case i.NODE:Object.assign(e,r.nodeSize.node),e.height=d||r.nodeSize.node.height,e.width=f||r.nodeSize.node.width;break;case i.BRIDGE:Object.assign(e,r.nodeSize.bridge);break;case i.META:if(e.expanded){Zu(e,t);}else Object.assign(e,r.nodeSize.meta),e.height=r.nodeSize.meta.height,e.width=r.nodeSize.meta.width;break;default:throw Error("Unrecognized node type: "+e.node.type)}if(!e.expanded){const r=e.attr;!function(e,n=!1){if(e.coreBox.width=e.width,e.coreBox.height=e.height,!n){const n=`${e.displayName}`.length,t=3;e.width=Math.max(e.coreBox.width,n*t);}}(e,t&&(0===e.node.type&&!!(null===(o=null===(n=null==t?void 0:t.nodeSize)||void 0===n?void 0:n.meta)||void 0===o?void 0:o.width)||1===e.node.type&&(!!(null===(u=null===(a=null==t?void 0:t.nodeSize)||void 0===a?void 0:a.node)||void 0===u?void 0:u.width)||!!r.width)||2===e.node.type&&!!(null===(s=null===(c=null==t?void 0:t.nodeSize)||void 0===c?void 0:c.bridge)||void 0===s?void 0:s.width)));}}));}(e,t),e.node.type===i.META&&function(e,t){const r=n(t),o=r.subScene.meta;Object.assign(e,o);const{nodeSep:a,rankSep:u,edgeSep:c,align:s}=r.graph.meta,d={nodesep:a,ranksep:u,edgesep:c,align:s};Object.assign(e.coreBox,function(e,n){const{ranksep:t,nodesep:r,edgesep:o,align:a}=n;Object.assign(e.graph(),{ranksep:t,nodesep:r,edgesep:o,align:a});const u=[];if(e.nodes().forEach((n=>{e.node(n).node.type!==i.BRIDGE&&u.push(n);})),!u.length)return {width:0,height:0};Tu(e);let c=1/0,s=1/0,d=-1/0,f=-1/0;return u.forEach((n=>{const t=e.node(n),r=.5*t.width,o=t.x-r,i=t.x+r;c=o<c?o:c,d=i>d?i:d;const a=.5*t.height,u=t.y-a,h=t.y+a;s=u<s?u:s,f=h>f?h:f;})),e.edges().forEach((n=>{const t=e.edge(n),r=e.node(t.metaEdge.v),o=e.node(t.metaEdge.w);if(3===t.points.length&&function(e){let n=ec(e[0],e[1]);for(let t=1;t<e.length-1;t++){const r=ec(e[t],e[t+1]);if(Math.abs(r-n)>1)return !1;n=r;}return !0}(t.points)){if(null!=r){const e=r.expanded?r.x:nc(r);t.points[0].x=e;}if(null!=o){const e=o.expanded?o.x:nc(o);t.points[2].x=e;}t.points=[t.points[0],t.points[1]];}const i=t.points[t.points.length-2];null!=o&&(t.points[t.points.length-1]=tc(i,o));const a=t.points[1];null!=r&&(t.points[0]=tc(a,r)),t.points.forEach((e=>{c=e.x<c?e.x:c,d=e.x>d?e.x:d,s=e.y<s?e.y:s,f=e.y>f?e.y:f;}));})),e.nodes().forEach((n=>{const t=e.node(n);t.x-=c,t.y-=s;})),e.edges().forEach((n=>{e.edge(n).points.forEach((e=>{e.x-=c,e.y-=s;}));})),{width:d-c,height:f-s}}(e.coreGraph,d));let f=0;e.coreGraph.nodeCount()>0&&f++;const h=f<=1?0:f;e.coreBox.width+=h+h,e.coreBox.height=o.labelHeight+e.coreBox.height,e.width=e.coreBox.width+o.paddingLeft+o.paddingRight,e.height=e.paddingTop+e.coreBox.height+e.paddingBottom;}(e,t);}function ec(e,n){const t=n.x-e.x,r=n.y-e.y;return 180*Math.atan(r/t)/Math.PI}function nc(e){if(e.expanded)return e.x;return e.x-e.width/2+0+e.coreBox.width/2}function tc(e,n){const t=n.expanded?n.x:nc(n),r=n.y,o=e.x-t,i=e.y-r;let a,u,c=n.expanded?n.width:n.coreBox.width,s=n.expanded?n.height:n.coreBox.height;return Math.abs(i)*c/2>Math.abs(o)*s/2?(i<0&&(s=-s),a=0===i?0:s/2*o/i,u=s/2):(o<0&&(c=-c),a=c/2,u=0===o?0:c/2*i/o),{x:t+a,y:r+u}}function rc(n,t,r){var o,i,a,u;const c=n.nodes.filter(((e,n,t)=>t.findIndex((n=>n.id===e.id))!==n)).map((e=>e.id));if(c.length)throw new Error(`Duplicated ids found: ${c.join(", ")}`);const s=function(e){const n={nodes:[]},t=e.compound,r=Object.keys(t||{}),o=new Map,i=(e,n=[])=>{if(o.has(e))return o.get(e);for(let o=0;o<r.length;o++){let a=r[o];if(t&&-1!==t[a].indexOf(e))return n.unshift(a),i(a,n)}return 0===n.length&&o.set(e,n),n},a=n=>e.edges.filter((e=>e.w===n)).map((e=>({name:e.v})));return e.nodes.forEach((e=>{const t=e.id,r=[...i(t),t];let o=a(t);n.nodes.push({name:t,path:r,inputs:o,width:e.width,height:e.height,attr:Object.assign({},e)});})),n}(n),d=function(e,n){const t=(e,n)=>{for(let t of n.values())if(t.includes(e))return !0;return !1},r=(e,n=[])=>{if(0===Object.keys(e).length)return [...new Set(n)];const o=new Map(Object.keys(e).map((n=>[n,e[n]]))),i={};for(let[e,r]of o)t(e,o)?i[e]=r:n=n.concat(e,r);return r(i,n)};return r(e).filter((e=>n.includes(e)))}(n.compound||{},(null==t?void 0:t.expanded)||[]),f=function(e,n){return function(e){return new Ju(e)}(qu(zu(e),n))}(s,{rankDirection:(null===(i=null===(o=null==r?void 0:r.graph)||void 0===o?void 0:o.meta)||void 0===i?void 0:i.rankDir)||(null==t?void 0:t.rankDirection)||e.graph.meta.rankDir,align:(null===(u=null===(a=null==r?void 0:r.graph)||void 0===a?void 0:a.meta)||void 0===u?void 0:u.align)||e.graph.meta.align});return function(e,n){n.forEach((n=>{const t=e.getRenderInfoNodes().find((e=>e.displayName===n));let r=t&&t.node&&t.node.name||"";const o=e.getRenderNodeByName(r);if(!o)throw new Error(`No nodes found: ${r}`);o.expanded=!0,e.buildSubHierarchy(r);}));}(f,d),Zu(f.root,r),ac(f.root)}function oc(e,n=!1){const t=JSON.parse(JSON.stringify(e)),o={nodes:[t],edges:[...t.edges]};return t.nodes.forEach((function e(n){(0===n.type||1===n.type)&&o.nodes.push(n),0===n.type&&(o.edges=o.edges.concat(n.edges)),Array.isArray(n.nodes)&&n.nodes.forEach(e);})),n&&o.nodes.forEach((e=>{const n=o.nodes.find((n=>n.id===e.parentNodeName));if(n){const t=n.x-n.width/2+n.paddingLeft,o=n.y-n.height/2+n.labelHeight+n.paddingTop;n.id!==r&&(e.x+=t,e.y+=o),0===e.type&&e.edges.forEach((n=>{n.points.forEach((n=>{n.x+=e.x-e.width/2+e.paddingLeft,n.y+=e.y-e.height/2+e.labelHeight+e.paddingTop;}));}));}})),o}function ic(e,n,t,o){var i,a;let u=[];const c=(null===(i=t.find((n=>n.id===e)))||void 0===i?void 0:i.path)||[],s=(null===(a=t.find((e=>e.id===n)))||void 0===a?void 0:a.path)||[],d=[r,...c].slice(0,c.length).reverse(),f=[r,...s].slice(0,s.length);return d.forEach((r=>{const i=t.find((e=>e.id===r));u=u.concat(i.edges.filter((t=>t.baseEdgeList.some((t=>t.v===((null==o?void 0:o.v)||e)&&t.w===((null==o?void 0:o.w)||n))))));})),f.filter((e=>!d.includes(e))).forEach((r=>{const i=t.find((e=>e.id===r));u=u.concat(i.edges.filter((t=>t.baseEdgeList.some((t=>t.v===((null==o?void 0:o.v)||e)&&t.w===((null==o?void 0:o.w)||n))))));})),u}function ac(e){const n=e.coreGraph.nodes().map((n=>e.coreGraph.node(n)));return Object.assign(Object.assign({},uc(e)),{expanded:e.expanded,nodes:e.expanded?(t=n,t.map((e=>e.node.type===i.META?ac(e):uc(e)))):[],edges:e.expanded?cc(e):[]});var t;}function uc(e){return {id:e.node.name,name:e.node.name,type:e.node.type,cardinality:e.node.cardinality,attr:e.attr,parentNodeName:e.node.parentNode?e.node.parentNode.name:null,coreBox:Object.assign({},e.coreBox),x:e.x,y:e.y,width:e.width,height:e.height,radius:e.radius,labelHeight:e.labelHeight,labelOffset:e.labelOffset,outboxWidth:e.outboxWidth,paddingLeft:e.paddingLeft,paddingTop:e.paddingTop,paddingRight:e.paddingRight,paddingBottom:e.paddingBottom,path:e.node.path}}function cc(e){return e.coreGraph.edges().map((n=>({renderInfoEdge:e.coreGraph.edge(n),edge:n}))).filter((({renderInfoEdge:e})=>e.metaEdge)).map((({edge:n,renderInfoEdge:t})=>{const r=function(e,n){const t=n.points.map((e=>Object.assign({},e)));if(n.adjoiningMetaEdge){const r=n.adjoiningMetaEdge.points,o=n.metaEdge.inbound,i=o?r[r.length-1]:r[0],a=t[o?0:t.length-1],u=e.x-e.width/2,c=e.y-e.height/2,s=i.x-u,d=i.y-c,f=-e.paddingLeft,h=-(e.paddingTop+e.labelHeight);a.x=s+f,a.y=d+h;}return t}(e,t);return {adjoiningEdge:t.adjoiningMetaEdge?{w:t.adjoiningMetaEdge.metaEdge.w,v:t.adjoiningMetaEdge.metaEdge.v}:null,inbound:t.metaEdge.inbound,w:n.w,v:n.v,points:r,weight:t.weight,baseEdgeList:t.metaEdge.baseEdgeList,parentNodeName:e.node.name}}))}
194280
194333
 
194281
194334
  var dagreCompound_es5 = /*#__PURE__*/Object.freeze({
194282
194335
  __proto__: null,
@@ -194285,7 +194338,7 @@ var dagreCompound_es5 = /*#__PURE__*/Object.freeze({
194285
194338
  get HierarchyNodeType () { return c; },
194286
194339
  get InclusionType () { return a; },
194287
194340
  LAYOUT_CONFIG: e,
194288
- get NodeType () { return i$1; },
194341
+ get NodeType () { return i; },
194289
194342
  ROOT_NAME: r,
194290
194343
  buildGraph: rc,
194291
194344
  flatGraph: oc,
@@ -240054,59 +240107,6 @@ var RelationGraph = function (props) {
240054
240107
  React__default.createElement(Graph, { data: data })));
240055
240108
  };
240056
240109
 
240057
- /**
240058
- * Convert array of 16 byte values to UUID string format of the form:
240059
- * XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX
240060
- */
240061
- var byteToHex = [];
240062
- for (var i = 0; i < 256; ++i) {
240063
- byteToHex.push((i + 0x100).toString(16).slice(1));
240064
- }
240065
- function unsafeStringify(arr, offset = 0) {
240066
- // Note: Be careful editing this code! It's been tuned for performance
240067
- // and works in ways you may not expect. See https://github.com/uuidjs/uuid/pull/434
240068
- //
240069
- // Note to future-self: No, you can't remove the `toLowerCase()` call.
240070
- // REF: https://github.com/uuidjs/uuid/pull/677#issuecomment-1757351351
240071
- return (byteToHex[arr[offset + 0]] + byteToHex[arr[offset + 1]] + byteToHex[arr[offset + 2]] + byteToHex[arr[offset + 3]] + '-' + byteToHex[arr[offset + 4]] + byteToHex[arr[offset + 5]] + '-' + byteToHex[arr[offset + 6]] + byteToHex[arr[offset + 7]] + '-' + byteToHex[arr[offset + 8]] + byteToHex[arr[offset + 9]] + '-' + byteToHex[arr[offset + 10]] + byteToHex[arr[offset + 11]] + byteToHex[arr[offset + 12]] + byteToHex[arr[offset + 13]] + byteToHex[arr[offset + 14]] + byteToHex[arr[offset + 15]]).toLowerCase();
240072
- }
240073
-
240074
- // Unique ID creation requires a high quality random # generator. In the browser we therefore
240075
- // require the crypto API and do not support built-in fallback to lower quality random number
240076
- // generators (like Math.random()).
240077
-
240078
- var getRandomValues;
240079
- var rnds8 = new Uint8Array(16);
240080
- function rng() {
240081
- // lazy load so that environments that need to polyfill have a chance to do so
240082
- if (!getRandomValues) {
240083
- // getRandomValues needs to be invoked in a context where "this" is a Crypto implementation.
240084
- getRandomValues = typeof crypto !== 'undefined' && crypto.getRandomValues && crypto.getRandomValues.bind(crypto);
240085
- if (!getRandomValues) {
240086
- throw new Error('crypto.getRandomValues() not supported. See https://github.com/uuidjs/uuid#getrandomvalues-not-supported');
240087
- }
240088
- }
240089
- return getRandomValues(rnds8);
240090
- }
240091
-
240092
- var randomUUID = typeof crypto !== 'undefined' && crypto.randomUUID && crypto.randomUUID.bind(crypto);
240093
- var native = {
240094
- randomUUID
240095
- };
240096
-
240097
- function v4(options, buf, offset) {
240098
- if (native.randomUUID && !buf && !options) {
240099
- return native.randomUUID();
240100
- }
240101
- options = options || {};
240102
- var rnds = options.random || (options.rng || rng)();
240103
-
240104
- // Per 4.4, set bits for version and `clock_seq_hi_and_reserved`
240105
- rnds[6] = rnds[6] & 0x0f | 0x40;
240106
- rnds[8] = rnds[8] & 0x3f | 0x80;
240107
- return unsafeStringify(rnds);
240108
- }
240109
-
240110
240110
  // 获取京民通登录信息
240111
240111
  function getJmtUserAuthInfo() {
240112
240112
  return __awaiter$3(this, void 0, void 0, function () {
@@ -242283,7 +242283,7 @@ var img$1 = "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAALIAAACaCAYAAAANdRIzA
242283
242283
 
242284
242284
  var img = "data:image/png;base64,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";
242285
242285
 
242286
- var id$1 = 'SENSE_TABLE_MENU_SENSE';
242286
+ var id$1 = "SENSE_TABLE_MENU_SENSE_".concat(v4());
242287
242287
  var ContextMenu$1 = function (_a) {
242288
242288
  var config = _a.config, authTypes = _a.authTypes;
242289
242289
  var menu = [
@@ -242387,20 +242387,25 @@ var SenseTable = function (props) {
242387
242387
  var _j = useState(null), curRecord = _j[0], setCurRecord = _j[1];
242388
242388
  // 显示全部标签弹窗
242389
242389
  var _k = useState(false), showTagsModal = _k[0], setShowTagsModal = _k[1];
242390
+ // 当前右键的所属台账id
242391
+ var _l = useState(null), curBookId = _l[0], setCurBookId = _l[1];
242390
242392
  // 资源权限
242391
242393
  var authTypes = useRequest(function () { return __awaiter$3(void 0, void 0, void 0, function () {
242392
242394
  var res;
242393
242395
  return __generator$2(this, function (_a) {
242394
242396
  switch (_a.label) {
242395
- case 0: return [4 /*yield*/, getResourcePermission({ resourceId: bookId, resourceType: 'book' })];
242397
+ case 0: return [4 /*yield*/, getResourcePermission({
242398
+ resourceId: bookId || curBookId,
242399
+ resourceType: 'book',
242400
+ })];
242396
242401
  case 1:
242397
242402
  res = _a.sent();
242398
242403
  return [2 /*return*/, res === null || res === void 0 ? void 0 : res.authTypes];
242399
242404
  }
242400
242405
  });
242401
242406
  }); }, {
242402
- ready: !!bookId,
242403
- refreshDeps: [bookId],
242407
+ ready: !!bookId || !!curBookId,
242408
+ refreshDeps: [bookId, curBookId],
242404
242409
  }).data;
242405
242410
  // 获取图标
242406
242411
  var getIcon = function (senseObjCode) {
@@ -242533,7 +242538,7 @@ var SenseTable = function (props) {
242533
242538
  return columns;
242534
242539
  };
242535
242540
  // 表格数据
242536
- var _l = useRequest(function () { return __awaiter$3(void 0, void 0, void 0, function () {
242541
+ var _m = useRequest(function () { return __awaiter$3(void 0, void 0, void 0, function () {
242537
242542
  var filterParams, sortParams, res;
242538
242543
  var _a, _b, _c, _d;
242539
242544
  return __generator$2(this, function (_e) {
@@ -242579,7 +242584,7 @@ var SenseTable = function (props) {
242579
242584
  JSON.stringify(filter),
242580
242585
  sorter,
242581
242586
  ],
242582
- }), loading = _l.loading, _m = _l.data, _o = _m === void 0 ? {} : _m, header = _o.header, columns = _o.columns, dataSource = _o.dataSource;
242587
+ }), loading = _m.loading, _o = _m.data, _p = _o === void 0 ? {} : _o, header = _p.header, columns = _p.columns, dataSource = _p.dataSource;
242583
242588
  var onRow = function (record) { return ({
242584
242589
  onClick: function () {
242585
242590
  setHighlightId(record.sense_global_code);
@@ -242591,6 +242596,7 @@ var SenseTable = function (props) {
242591
242596
  onContextMenu: function (e) {
242592
242597
  e.stopPropagation();
242593
242598
  if (!('bookGroupItemList' in record)) {
242599
+ setCurBookId(record.book_id);
242594
242600
  showContextMenu({
242595
242601
  event: e,
242596
242602
  props: {
@@ -242805,7 +242811,7 @@ var Filter = function (props) {
242805
242811
  }
242806
242812
  });
242807
242813
  }); }, {
242808
- ready: enableTag && (book || (activeTable === 'sense' && bookGroup)),
242814
+ ready: !!(enableTag && (book || (activeTable === 'sense' && bookGroup))),
242809
242815
  refreshDeps: [enableTag, activeTable, book, bookGroup],
242810
242816
  }).data;
242811
242817
  // 筛选窗口变化
@@ -242990,7 +242996,7 @@ var SenseManager = function (props) {
242990
242996
  }
242991
242997
  });
242992
242998
  }); }, {
242993
- ready: showTabs,
242999
+ ready: !!showTabs,
242994
243000
  refreshDeps: [showTabs],
242995
243001
  }).data;
242996
243002
  // 设置选中的分类
@@ -249388,7 +249394,7 @@ var SvgTreePlace = function SvgTreePlace(props) {
249388
249394
  })));
249389
249395
  };
249390
249396
 
249391
- var id = 'SENSE_TREE_MENU_SENSE';
249397
+ var id = "SENSE_TREE_MENU_SENSE_".concat(v4());
249392
249398
  var ContextMenu = function (_a) {
249393
249399
  var config = _a.config;
249394
249400
  var menu = [