YUI.add("arraylist-add",function(s,t){s.mix(s.ArrayList.prototype,{add:function(t,i){var r=this._items;return s.Lang.isNumber(i)?r.splice(i,0,t):r.push(t),this},remove:function(t,i,r){r=r||this.itemsAreEqual;for(var s=this._items.length-1;0<=s&&(!r.call(this,t,this.item(s))||(this._items.splice(s,1),i));--s);return this},itemsAreEqual:function(t,i){return t===i}})},"patched-v3.18.7",{requires:["arraylist"]});
YUI.add("button",function(e,t){var n=e.ButtonCore,c=n.CLASS_NAMES,s=n.ARIA_STATES,o=n.ARIA_ROLES;function r(){r.superclass.constructor.apply(this,arguments)}function l(){r.superclass.constructor.apply(this,arguments)}e.extend(r,e.Widget,{BOUNDING_TEMPLATE:n.prototype.TEMPLATE,CONTENT_TEMPLATE:null},{NAME:n.NAME,ATTRS:n.ATTRS,HTML_PARSER:{labelHTML:n._getHTMLFromNode,disabled:n._getDisabledFromNode},CLASS_NAMES:c}),e.mix(r.prototype,n.prototype),e.extend(l,r,{trigger:"click",selectedAttrName:"",initializer:function(e){var t=this,n="checkbox"===t.get("type")?"checked":"pressed",e=e[n]||!1;t.addAttr(n,{value:e}),t.selectedAttrName=n},destructor:function(){delete this.selectedAttrName},bindUI:function(){var e=this,t=e.get("contentBox");l.superclass.bindUI.call(e),t.on(e.trigger,e.toggle,e),e.after(e.selectedAttrName+"Change",e._afterSelectedChange)},syncUI:function(){var e=this,t=e.get("contentBox"),n=e.get("type"),c=l.ARIA_ROLES,n="checkbox"===n?c.CHECKBOX:c.TOGGLE,c=e.selectedAttrName;l.superclass.syncUI.call(e),t.set("role",n),e._uiSetSelected(e.get(c))},_afterSelectedChange:function(e){this._uiSetSelected(e.newVal)},_uiSetSelected:function(e){var t=this.get("contentBox"),n=l.ARIA_STATES,n="checkbox"===this.get("type")?n.CHECKED:n.PRESSED;t.toggleClass(r.CLASS_NAMES.SELECTED,e),t.set(n,e)},toggle:function(){var e=this;e._set(e.selectedAttrName,!e.get(e.selectedAttrName))}},{NAME:"toggleButton",ATTRS:{type:{value:"toggle",writeOnce:"initOnly"}},HTML_PARSER:{checked:function(e){return e.hasClass(c.SELECTED)},pressed:function(e){return e.hasClass(c.SELECTED)}},ARIA_STATES:s,ARIA_ROLES:o,CLASS_NAMES:c}),e.Button=r,e.ToggleButton=l},"patched-v3.18.7",{requires:["button-core","cssbutton","widget"]});
YUI.add("button-group",function(o,t){var e="contentBox",n=o.ButtonCore.CLASS_NAMES;function s(){s.superclass.constructor.apply(this,arguments)}o.ButtonGroup=o.extend(s,o.Widget,{renderUI:function(){this.getButtons().plug(o.Plugin.Button)},bindUI:function(){var t=this;t.get(e).delegate("click",t._handleClick,o.ButtonGroup.BUTTON_SELECTOR,t),t.after("disabledChange",t._afterDisabledChange)},_afterDisabledChange:function(t){this.getButtons().each(t.newVal?o.ButtonCore.prototype.disable:o.ButtonCore.prototype.enable)},getButtons:function(){return this.get(e).all(o.ButtonGroup.BUTTON_SELECTOR)},getSelectedButtons:function(){var e=[],t=this.getButtons(),n=s.CLASS_NAMES.SELECTED;return t.each(function(t){t.hasClass(n)&&e.push(t)}),e},getSelectedValues:function(){var e,t=this.getSelectedButtons(),n=[];return o.Array.each(t,function(t){e=t.getContent(),n.push(e)}),n},_handleClick:function(t){var e=this,n=t.target.ancestor("."+s.CLASS_NAMES.BUTTON,!0),o=e.get("type"),u=s.CLASS_NAMES.SELECTED,i=n.hasClass(u);"checkbox"===o?(n.toggleClass(u,!i),e.fire("selectionChange",{originEvent:t})):"radio"!==o||i||(e.getButtons().removeClass(u),n.addClass(u),e.fire("selectionChange",{originEvent:t}))}},{NAME:"buttongroup",ATTRS:{type:{writeOnce:"initOnly",value:"radio"}},CLASS_NAMES:n,BUTTON_SELECTOR:"button, input[type=button], input[type=reset], input[type=submit], input[type=radio], input[type=checkbox]"})},"patched-v3.18.7",{requires:["button-plugin","cssbutton","widget"]});
YUI.add("aui-button-core",function(e,t){var n={BUTTON:e.getClassName("btn"),BUTTON_DEFAULT:e.getClassName("btn","default"),BUTTON_GROUP:e.getClassName("btn","group"),DISABLED:e.getClassName("disabled"),LABEL:e.getClassName("label"),PRIMARY:e.getClassName("btn","primary"),SELECTED:e.getClassName("active"),TOGGLE:e.getClassName("togglebtn")},r=function(e){e&&e.domType&&this._domTypeValidator(e.domType)&&this._setEarlyButtonDomType(e.domType)};r.ATTRS={cssClass:{validator:e.Lang.isString,value:""},discardDefaultButtonCssClasses:{validator:e.Lang.isBoolean,value:!1,writeOnce:!0},domType:{validator:"_domTypeValidator",writeOnce:!0},icon:{},iconElement:{valueFn:function(){return e.Node.create(this.ICON_TEMPLATE)}},iconAlign:{validator:e.Lang.isString,value:"left"}},r.HTML_PARSER={iconElement:"span"},r.getTypedButtonTemplate=function(t,n){return e.Lang.sub(t,{type:' type="'+n+'"'})},r.prototype={ICON_TEMPLATE:"<span></span>",TEMPLATE:"<button{type}></button>",initializer:function(){this.before(this.renderButtonExtUI,this,"renderUI"),this.after(this.syncButtonExtUI,this,"syncUI"),this.after({iconChange:this._afterIconChange,iconAlignChange:this._afterIconAlignChange})},renderButtonExtUI:function(){var e=this.get("cssClass");this.get("discardDefaultButtonCssClasses")||(e=[e,n.BUTTON_DEFAULT,n.BUTTON].join(" "),this.set("cssClass",e))},syncButtonExtUI:function(){this._uiSetIcon(this.get("icon")),this._setButtonRole()},_afterIconAlignChange:function(e){this._uiSetIconAlign(e.newVal)},_afterIconChange:function(e){this._uiSetIcon(e.newVal)},_domTypeValidator:function(e){return e.toLowerCase()==="button"||e.toLowerCase()==="submit"},_setButtonRole:function(){this.get("boundingBox").setAttribute("role","button")},_setEarlyButtonDomType:function(t){this.BOUNDING_TEMPLATE=e.ButtonExt.getTypedButtonTemplate(r.prototype.TEMPLATE,t)},_uiSetIcon:function(e){e&&(this.get("iconElement").set("className",e),this._uiSetIconAlign(this.get("iconAlign")))},_uiSetIconAlign:function(t){var n=this.getNode().one(e.ButtonExt.HTML_PARSER.iconElement);n||(n=this.get("iconElement")),e.Button.syncIconUI(this.get("boundingBox"),n,t)}},e.ButtonExt=r,e.ButtonCore.CLASS_NAMES=n;var i=e.Button;i.NAME="aui-button",i.CSS_PREFIX="aui-button",i.CLASS_NAMES=n,e.Button=e.Base.create(i.NAME,i,[r,e.WidgetCssClass,e.WidgetToggle],{},{getWidgetLazyConstructorFromNodeData:function(e){var t=e.getData("widgetConstructor")||{};return t.boundingBox=e,t.render=!0,t},hasWidgetLazyConstructorData:function(e){return e.getData("widgetConstructor")!==undefined},setWidgetLazyConstructorNodeData:function(e,t){e.setData("widgetConstructor",t)},syncIconUI:function(t,n,r){var i=0,s=e.config.doc.createTextNode(" ");r==="right"&&(i=null),t.insert(s,i),t.insert(n,i)}});var s=e.ToggleButton;s.NAME="togglebtn",s.CSS_PREFIX=n.TOGGLE,s.CLASS_NAMES=n,e.ToggleButton=e.Base.create(s.NAME,s,[r,e.WidgetCssClass],{},{});var o=e.ButtonGroup;o.NAME="btngroup",o.CSS_PREFIX=n.BUTTON_GROUP,o.CLASS_NAMES=n,e.mix(o.prototype,{CONTENT_TEMPLATE:null,initializer:function(){this.after("selectionChange",this._afterSelectionChange)},renderUI:function(){var t=this.get("boundingBox"),n=this.get("type");this.getButtons().each(function(t){!t.button&&!e.instanceOf(e.Widget.getByNode(t),e.Button)&&(t.addClass(e.ButtonCore.CLASS_NAMES.BUTTON_DEFAULT),t.setAttribute("role","option"),e.Button.hasWidgetLazyConstructorData(t)?(new e.Button(e.Button.getWidgetLazyConstructorFromNodeData(t)),e.Button.setWidgetLazyConstructorNodeData(t,null)):t.plug(e.Plugin.Button))}),t.setAttrs({"aria-multiselectable":n==="checkbox"?!0:!1,role:"listbox"}),this.syncAriaSelected(this.getButtons())},item:function(t){var n,r;return r=this.getButtons().item(t),n=e.Widget.getByNode(r),e.instanceOf(n,i)?n:r},select:function(e){return this.toggleSelect(e,!0)},syncAriaSelected:function(t){var n;t.each(function(t){n=t.hasClass(e.ButtonGroup.CLASS_NAMES.SELECTED),t.setAttribute("aria-selected",n)})},toggleSelect:function(t,n){var r=this.getButtons(),i=this,s=this.get("type");e.Lang.isUndefined(t)&&(t=r.getDOMNodes()),e.Lang.isArray(t)||(t=e.Array(t)),e.Array.each(t,function(t){e.Lang.isNumber(t)&&(t=r.item(t)),t=e.one(t);if(s==="checkbox")if(t.hasClass(e.ButtonGroup.CLASS_NAMES.SELECTED)){if(n===!0)return}else if(n===!1)return;i._handleClick({target:t})})},unselect:function(e){return this.toggleSelect(e,!1)},_afterSelectionChange:function(){this.syncAriaSelected(this.getButtons())}},!0)},"3.1.0-deprecated.110",{requires:["button","button-group","button-plugin","aui-component","aui-widget-cssclass","aui-widget-toggle"],skinnable:!0});

YUI.add("aui-toolbar",function(e,t){var n=e.Lang.isFunction,r=e.getClassName("btn"),i=e.getClassName("btn","default"),s=e.getClassName("btn","group"),o=e.getClassName("btn","group","checkbox"),u=e.getClassName("btn","group","radio"),a=e.getClassName("btn","group","vertical"),f=e.getClassName("btn","toolbar","button");e.Toolbar=e.Component.create({NAME:"btn-toolbar",ATTRS:{children:{validator:e.Lang.isArray},toolbarRenderer:{valueFn:function(){return new e.ToolbarRenderer}}},UI_ATTRS:["children"],isSupportedWidget:function(t){return e.instanceOf(t,e.Button)||e.instanceOf(t,e.ToggleButton)||e.instanceOf(t,e.ButtonGroup)},prototype:{CONTENT_TEMPLATE:null,TEMPLATES:{button:'<button class="aui-btn">{content}</button>',icon:'<span class="{cssClass}"></span>',group:'<div class="aui-btn-group {cssClass}"></div>'},bindUI:function(){var e=this.get("boundingBox");e.delegate(["click","mousemove","focus"],this._onUserInitInteraction,"."+f+", ."+r,this)},add:function(t,n){var r=this.get("boundingBox"),i=this.get("toolbarRenderer");r.insert(i.render(e.Array(t)),n)},clear:function(){var e=this.get("boundingBox");e.get("children").remove()},getEnclosingWidget:function(t){return e.instanceOf(t,e.EventFacade)&&(t=t.domEvent?t.domEvent.target:t.target),e.Widget.getByNode(t)},item:function(t){var n=this.get("boundingBox").get("children").item(t),r;return this._initEnclosingWidgetIfNeeded(n),r=this.getEnclosingWidget(n),e.Toolbar.isSupportedWidget(r)?r:n},remove:function(e){var t=this.get("boundingBox");return t.get("children").item(e).remove()},_initEnclosingWidgetIfNeeded:function(t,n){var i,l,c,h,p,d;if(!t||t.getData("enclosingWidgetInitialized"))return;t.setData("enclosingWidgetInitialized",!0),l=e.Widget.getByNode(t),c=e.instanceOf(l,e.Button),h=e.instanceOf(l,e.ButtonGroup);if(c||h)return;i=t.ancestor("."+f+", ."+r,!0),i&&(e.Button.hasWidgetLazyConstructorData(t)?(new e.Button(e.Button.getWidgetLazyConstructorFromNodeData(t)),e.Button.setWidgetLazyConstructorNodeData(t,null)):t.plug(e.Plugin.Button)),p=t.ancestor("."+s+", "+a,!0),p&&(p.hasClass(o)?d="checkbox":p.hasClass(u)&&(d="radio"),d&&new e.ButtonGroup({boundingBox:p,type:d,render:!0})),n&&n.type==="focus"&&t.focus()},_onUserInitInteraction:function(e){var t=e.currentTarget;this._initEnclosingWidgetIfNeeded(t,e)},_uiSetChildren:function(e){if(!e)return;this.clear(),this.add(e)}}});var l=function(){};l.prototype={TEMPLATES:{button:e.Button.prototype.TEMPLATE,group:'<div class="{cssClass}"></div>',icon:'<span class="{cssClass}"></span>'},RENDERER:{button:function(t){var n,s,o,u,a,l=t.value;a=l.domType||"button";if(e.instanceOf(l,e.Button)||e.instanceOf(l,e.ToggleButton))return l.get("boundingBox");if(e.UA.mobile&&e.UA.touchEnabled)return n=(new e.Button(l)).render(),l.title&&n.get("boundingBox").setAttribute("title",l.title),n.get("boundingBox").setAttribute("type",a),n.get("boundingBox");s=e.one(l.boundingBox||l.srcNode);if(s)try{s.setAttribute("type",a)}catch(c){}else s=e.Node.create(e.ButtonExt.getTypedButtonTemplate(this.TEMPLATES.button,a));return o=[f,l.cssClass],l.discardDefaultButtonCssClasses||o.push(r,i),s.addClass(o.join(" ")),l.id&&s.setAttribute("id",l.id),l.labelHTML&&s.append(l.labelHTML),l.label&&s.append(l.label),l.icon&&(u=e.Lang.sub(this.TEMPLATES.icon,{cssClass:l.icon}),e.Button.syncIconUI(s,u,l.iconAlign)),l.title&&s.setAttribute("title",l.title),e.Button.setWidgetLazyConstructorNodeData(s,l),s},group:function(t){var n,r=this,i=t.value,f,l=t.groupType,c=t.orientation,h=[];return e.instanceOf(i,e.ButtonGroup)?i.get("boundingBox"):(l==="checkbox"?h.push(o):l==="radio"&&h.push(u),c==="vertical"?h.push(a):h.push(s),f=e.Node.create(e.Lang.sub(r.TEMPLATES.group,{cssClass:h.join(" ")})),e.Array.each(i,function(t,s){n=r.renderNode(t),f.appendChild(n),e.Toolbar.isSupportedWidget(t)||e.Button.setWidgetLazyConstructorNodeData(n,i[s])}),f)}},render:function(t){var n,r=this;if(!t)return;return n=e.one(e.config.doc).invoke("createDocumentFragment"),e.Array.each(t,function(e){n.appendChild(r.renderNode(e))}),n},renderNode:function(t){var r,i;if(e.Toolbar.isSupportedWidget(t))return t.render().get("boundingBox");r=this._getChildRenderHints(t),i=this.RENDERER[r.renderer];if(n(i))return i.call(this,r)},_getChildRenderHints:function(t){var n=null,r="normal",i;return e.instanceOf(t,e.Button)?i="button":e.instanceOf(t,e.ButtonGroup)?i="group":e.Lang.isArray(t)?(i="group",n=e.Lang.isString(t[0])?t.shift():null,r=e.Lang.isString(t[0])?t.shift():"normal"):i="button",{groupType:n,orientation:r,renderer:i,value:t}}},e.ToolbarRenderer=l},"3.1.0-deprecated.110",{requires:["arraylist","arraylist-add","aui-component","aui-button-core"]});

YUI.add("aui-widget-toolbars",function(e,t){var n=e.WidgetStdMod,r=function(){};r.ATTRS={toolbars:{},toolbarPosition:{value:{body:n.AFTER,footer:n.AFTER,header:n.BEFORE}},toolbarCssClass:{value:{body:"",footer:"",header:""}}},r.prototype={toolbars:null,initializer:function(){var t=this;t.toolbars={},e.after(t._syncUIToolbars,t,"syncUI"),t.after("toolbarsChange",t._afterToolbarsChange)},addToolbar:function(t,n){var r=this;return n=r.getToolbarSection(n),r.removeToolbar(n),e.instanceOf(t,e.Toolbar)||(t=new e.Toolbar({cssClass:this.get("toolbarCssClass."+n)||"",children:t,render:r.getStdModNode(n,!0)})),t.addTarget(r),r.toolbars[n]=t,r.setStdModContent(n,t.get("boundingBox"),r.get("toolbarPosition."+n)),r._syncPrimaryButtonUI(),t},getToolbar:function(e){var t=this;return t.toolbars[t.getToolbarSection(e)]},getToolbarSection:function(e){return e||n.FOOTER},removeToolbar:function(e){var t=this,n=t.toolbars[t.getToolbarSection(e)];return n&&n.destroy(),n},_syncPrimaryButtonUI:function(){var t=this,n=t.get("boundingBox").one("."+e.ButtonCore.CLASS_NAMES.PRIMARY);n&&n.focus().focus()},_syncUIToolbars:function(){var e=this;e._uiSetToolbars(this.get("toolbars"))},_uiSetToolbars:function(t){var n=this;e.each(t,e.bind(n.addToolbar,n))}},e.WidgetToolbars=r},"3.1.0-deprecated.110",{requires:["widget-stdmod","aui-toolbar"]});

YUI.add("event-mousewheel",function(t,e){var n=function(e){var e=t.Array(e,0,!0),n=t.UA.gecko?(e[0]="DOMMouseScroll",t.config.win):t.config.doc;return e.length<3?e[2]=n:e.splice(2,0,n),e};t.Env.evt.plugins.mousewheel={on:function(){return t.Event._attach(n(arguments))},detach:function(){return t.Event.detach.apply(t.Event,n(arguments))}}},"patched-v3.18.7",{requires:["node-base"]});
YUI.add("event-hover",function(e,n){var t=e.Lang.isFunction,a=function(){},o={processArgs:function(e){var n=t(e[2])?2:3;return t(e[n])?e.splice(n,1)[0]:a},on:function(e,t,n,a){var o=t.args?t.args.slice():[];o.unshift(null),t._detach=e[a?"delegate":"on"]({mouseenter:function(e){e.phase="over",n.fire(e)},mouseleave:function(e){var n=t.context||this;(o[0]=e).type="hover",e.phase="out",t._extra.apply(n,o)}},a)},detach:function(e,n,t){n._detach.detach()}};o.delegate=o.on,o.detachDelegate=o.detach,e.Event.define("hover",o)},"patched-v3.18.7",{requires:["event-mouseenter"]});
YUI.add("event-touch",function(h,e){var i="scale",u="rotation",d="identifier",t=h.config.win,o={};h.DOMEventFacade.prototype._touch=function(e,t,o){var n,c,a,s,r;if(e.touches)for(this.touches=[],r={},n=0,c=e.touches.length;n<c;++n)s=e.touches[n],r[h.stamp(s)]=this.touches[n]=new h.DOMEventFacade(s,t,o);if(e.targetTouches)for(this.targetTouches=[],n=0,c=e.targetTouches.length;n<c;++n)s=e.targetTouches[n],a=r&&r[h.stamp(s,!0)],this.targetTouches[n]=a||new h.DOMEventFacade(s,t,o);if(e.changedTouches)for(this.changedTouches=[],n=0,c=e.changedTouches.length;n<c;++n)s=e.changedTouches[n],a=r&&r[h.stamp(s,!0)],this.changedTouches[n]=a||new h.DOMEventFacade(s,t,o);i in e&&(this[i]=e[i]),u in e&&(this[u]=e[u]),d in e&&(this[d]=e[d])},h.Node.DOM_EVENTS&&h.mix(h.Node.DOM_EVENTS,{touchstart:1,touchmove:1,touchend:1,touchcancel:1,gesturestart:1,gesturechange:1,gestureend:1,MSPointerDown:1,MSPointerUp:1,MSPointerMove:1,MSPointerCancel:1,pointerdown:1,pointerup:1,pointermove:1,pointercancel:1}),t&&"ontouchstart"in t&&!(h.UA.chrome&&h.UA.chrome<6)?(o.start=["touchstart","mousedown"],o.end=["touchend","mouseup"],o.move=["touchmove","mousemove"],o.cancel=["touchcancel","mousecancel"]):t&&t.PointerEvent?(o.start="pointerdown",o.end="pointerup",o.move="pointermove",o.cancel="pointercancel"):t&&"msPointerEnabled"in t.navigator?(o.start="MSPointerDown",o.end="MSPointerUp",o.move="MSPointerMove",o.cancel="MSPointerCancel"):(o.start="mousedown",o.end="mouseup",o.move="mousemove",o.cancel="mousecancel"),h.Event._GESTURE_MAP=o},"patched-v3.18.7",{requires:["node-base"]});
YUI.add("event-move",function(_,t){var e,n=_.Event._GESTURE_MAP,l={start:n.start,end:n.end,move:n.move},c="start",d="move",g="end",i="gesture"+d,h=i+g,o=i+c,u="_msh",s="_mh",r="_meh",f="_dmsh",m="_dmh",v="_dmeh",D="_ms",E="minTime",T="minDistance",A="preventDefault",a="button",p="currentTarget",N="target",M=((n=_.config.win)&&("PointerEvent"in n?e="touchAction":"msPointerEnabled"in n.navigator&&(e="msTouchAction")),e),I="msTouchAction"===M||"touchAction"===M,U="msTouchActionCount",b="msInitTouchAction",y=function(t,e,n){n=n?4:3,n=e.length>n?_.merge(e.splice(n,1)[0]):{};return A in n||(n[A]=t.PREVENT_DEFAULT),n},Y=function(t,e){return e._extra.root||9===t.get("nodeType")?t:t.get("ownerDocument")},O=function(t){var e=t.getDOMNode();return!(!t.compareTo(_.config.doc)||!e.documentElement)&&e.documentElement},X=function(t,e,n){t.pageX=e.pageX,t.pageY=e.pageY,t.screenX=e.screenX,t.screenY=e.screenY,t.clientX=e.clientX,t.clientY=e.clientY,t[N]=t[N]||e[N],t[p]=t[p]||e[p],t[a]=n&&n[a]||1},C=function(t){var e=t.getDOMNode(),n=t.getData(U);I&&(n||(n=0,t.setData(b,e.style[M])),e.style[M]=_.Event._DEFAULT_TOUCH_ACTION,t.setData(U,++n))},P=function(t){var e=t.getDOMNode(),n=t.getData(U),a=t.getData(b);I&&(t.setData(U,--n),0==n)&&e.style[M]!==a&&(e.style[M]=a)},S=function(t,e){!e||e.call&&!e(t)||t.preventDefault()},n=_.Event.define;_.Event._DEFAULT_TOUCH_ACTION="none",n(o,{on:function(t,e,n){O(t)||C(t),e[u]=t.on(l[c],this._onStart,this,t,e,n)},delegate:function(e,n,a,t){var o=this;n[f]=e.delegate(l[c],function(t){o._onStart(t,e,n,a,!0)},t)},detachDelegate:function(t,e,n,a){var o=e[f];o&&(o.detach(),e[f]=null),O(t)||P(t)},detach:function(t,e,n){var a=e[u];a&&(a.detach(),e[u]=null),O(t)||P(t)},processArgs:function(t,e){t=y(this,t,e);return E in t||(t[E]=this.MIN_TIME),T in t||(t[T]=this.MIN_DISTANCE),t},_onStart:function(e,n,t,a,o){o&&(n=e[p]);var c,i=t._extra,o=!0,h=i[E],u=i[T],s=i.button,r=i[A],t=Y(n,t);e.touches?1===e.touches.length?X(e,e.touches[0],i):o=!1:o=s===undefined||s===e.button,o&&(S(e,r),0===h||0===u?this._start(e,n,a,i):(c=[e.pageX,e.pageY],0<h&&(i._ht=_.later(h,this,this._start,[e,n,a,i]),i._hme=t.on(l[g],_.bind(function(){this._cancel(i)},this))),0<u&&(i._hm=t.on(l[d],_.bind(function(t){(Math.abs(t.pageX-c[0])>u||Math.abs(t.pageY-c[1])>u)&&this._start(e,n,a,i)},this)))))},_cancel:function(t){t._ht&&(t._ht.cancel(),t._ht=null),t._hme&&(t._hme.detach(),t._hme=null),t._hm&&(t._hm.detach(),t._hm=null)},_start:function(t,e,n,a){a&&this._cancel(a),t.type=o,e.setData(D,t),n.fire(t)},MIN_TIME:0,MIN_DISTANCE:0,PREVENT_DEFAULT:!1}),n(i,{on:function(t,e,n){O(t)||C(t),t=Y(t,e).on(l[d],this._onMove,this,t,e,n),e[s]=t},delegate:function(e,n,a,t){var o=this;n[m]=e.delegate(l[d],function(t){o._onMove(t,e,n,a,!0)},t)},detach:function(t,e,n){var a=e[s];a&&(a.detach(),e[s]=null),O(t)||P(t)},detachDelegate:function(t,e,n,a){var o=e[m];o&&(o.detach(),e[m]=null),O(t)||P(t)},processArgs:function(t,e){return y(this,t,e)},_onMove:function(t,e,n,a,o){o&&(e=t[p]);o=n._extra.standAlone||e.getData(D),e=n._extra.preventDefault;o&&(t.touches&&(1===t.touches.length?X(t,t.touches[0]):o=!1),o)&&(S(t,e),t.type=i,a.fire(t))},PREVENT_DEFAULT:!1}),n(h,{on:function(t,e,n){O(t)||C(t),t=Y(t,e).on(l[g],this._onEnd,this,t,e,n),e[r]=t},delegate:function(e,n,a,t){var o=this;n[v]=e.delegate(l[g],function(t){o._onEnd(t,e,n,a,!0)},t)},detachDelegate:function(t,e,n,a){var o=e[v];o&&(o.detach(),e[v]=null),O(t)||P(t)},detach:function(t,e,n){var a=e[r];a&&(a.detach(),e[r]=null),O(t)||P(t)},processArgs:function(t,e){return y(this,t,e)},_onEnd:function(t,e,n,a,o){o&&(e=t[p]);o=n._extra.standAlone||e.getData("_m")||e.getData(D),n=n._extra.preventDefault;o&&(t.changedTouches&&(1===t.changedTouches.length?X(t,t.changedTouches[0]):o=!1),o)&&(S(t,n),t.type=h,a.fire(t),e.clearData(D),e.clearData("_m"))},PREVENT_DEFAULT:!1})},"patched-v3.18.7",{requires:["node-base","event-touch","event-synthetic"]});
YUI.add("event-flick",function(o,e){var t=o.Event._GESTURE_MAP,h={start:t.start,end:t.end,move:t.move},u="minVelocity",f="minDistance",r="preventDefault",d="_fs",c="_fsh",l="_feh",_="_fmh";o.Event.define("flick",{on:function(e,t,n){n=e.on(h.start,this._onStart,this,e,t,n);t[c]=n},detach:function(e,t,n){var i=t[c],a=t[l];i&&(i.detach(),t[c]=null),a&&(a.detach(),t[l]=null)},processArgs:function(e){e=3<e.length?o.merge(e.splice(3,1)[0]):{};return u in e||(e[u]=this.MIN_VELOCITY),f in e||(e[f]=this.MIN_DISTANCE),r in e||(e[r]=this.PREVENT_DEFAULT),e},_onStart:function(e,t,n,i){var a=!0,c=n._extra.preventDefault,s=e;e.touches&&(a=1===e.touches.length,e=e.touches[0]),a&&(!c||c.call&&!c(e)||s.preventDefault(),e.flick={time:(new Date).getTime()},n[d]=e,a=n[l],c=9===t.get("nodeType")?t:t.get("ownerDocument"),a||(a=c.on(h.end,o.bind(this._onEnd,this),null,t,n,i),n[l]=a),n[_]=c.once(h.move,o.bind(this._onMove,this),null,t,n,i))},_onMove:function(e,t,n,i){n=n[d];n&&n.flick&&(n.flick.time=(new Date).getTime())},_onEnd:function(e,t,n,i){(new Date).getTime();var a,c,s=n[d],o=!!s,h=e,l=n[_];l&&(l.detach(),delete n[_]),o&&(e.changedTouches&&(1===e.changedTouches.length&&0===e.touches.length?h=e.changedTouches[0]:o=!1),o)&&(!(o=(l=n._extra)[r])||o.call&&!o(e)||e.preventDefault(),o=s.flick.time,o=(new Date).getTime()-o,a=(h=[h.pageX-s.pageX,h.pageY-s.pageY])["x"===(h=l.axis||(Math.abs(h[0])>=Math.abs(h[1])?"x":"y"))?0:1],c=0!=o?a/o:0,isFinite(c)&&Math.abs(a)>=l[f]&&Math.abs(c)>=l[u]&&(e.type="flick",e.flick={time:o,distance:a,velocity:c,axis:h,start:s},i.fire(e)),n[d]=null)},MIN_VELOCITY:0,MIN_DISTANCE:0,PREVENT_DEFAULT:!1})},"patched-v3.18.7",{requires:["node-base","event-touch","event-synthetic"]});
YUI.add("event-valuechange",function(c,e){var d="_valuechange",u="value",_="nodeName",g={POLL_INTERVAL:50,TIMEOUT:1e4,_poll:function(e,t){var n,a,o,i,r,l=e._node,t=t.e,s=e._data&&e._data[d],u=0;l&&s?(a=s.prevVal,i=s.nodeName,s.isEditable?o=l.innerHTML:"input"===i||"textarea"===i?o=l.value:"select"===i&&(o=(i=l.options[l.selectedIndex]).value||i.text),o!==a&&(s.prevVal=o,n={_event:t,currentTarget:t&&t.currentTarget||e,newVal:o,prevVal:a,target:t&&t.target||e},c.Object.some(s.notifiers,function(e){var t=e.handle.evt;if((1!==u||t.el===r)&&e.fire(n),e=t&&t._facade?t._facade.stopped:0,u<e&&1===(u=e)&&(r=t.el),2===u)return!0}),g._refreshTimeout(e))):g._stopPolling(e)},_refreshTimeout:function(e,t){var n;e._node&&(n=e.getData(d),g._stopTimeout(e),n.timeout=setTimeout(function(){g._stopPolling(e,t)},g.TIMEOUT))},_startPolling:function(e,t,n){var a,o;if(e.test("input,textarea,select")||(o=g._isEditable(e))){if((a=e.getData(d))||(a={nodeName:e.get(_).toLowerCase(),isEditable:o,prevVal:o?e.getDOMNode().innerHTML:e.get(u)},e.setData(d,a)),a.notifiers||(a.notifiers={}),a.interval){if(!n.force)return void(a.notifiers[c.stamp(t)]=t);g._stopPolling(e,t)}a.notifiers[c.stamp(t)]=t,a.interval=setInterval(function(){g._poll(e,n)},g.POLL_INTERVAL),g._refreshTimeout(e,t)}},_stopPolling:function(e,t){var n;e._node&&(n=e.getData(d)||{},clearInterval(n.interval),delete n.interval,g._stopTimeout(e),t?n.notifiers&&delete n.notifiers[c.stamp(t)]:n.notifiers={})},_stopTimeout:function(e){e=e.getData(d)||{};clearTimeout(e.timeout),delete e.timeout},_isEditable:function(e){e=e._node;return"true"===e.contentEditable||""===e.contentEditable},_onBlur:function(e,t){g._stopPolling(e.currentTarget,t)},_onFocus:function(e,t){var n=e.currentTarget,a=n.getData(d);a||(a={isEditable:g._isEditable(n),nodeName:n.get(_).toLowerCase()},n.setData(d,a)),a.prevVal=a.isEditable?n.getDOMNode().innerHTML:n.get(u),g._startPolling(n,t,{e:e})},_onKeyDown:function(e,t){g._startPolling(e.currentTarget,t,{e:e})},_onKeyUp:function(e,t){229!==e.charCode&&197!==e.charCode||g._startPolling(e.currentTarget,t,{e:e,force:!0})},_onMouseDown:function(e,t){g._startPolling(e.currentTarget,t,{e:e})},_onSubscribe:function(e,t,n,a){var o,i,r,l={blur:g._onBlur,focus:g._onFocus,keydown:g._onKeyDown,keyup:g._onKeyUp,mousedown:g._onMouseDown},s=n._valuechange={};a?(s.delegated=!0,s.getNodes=function(){return i=e.all("input,textarea,select").filter(a),r=e.all('[contenteditable="true"],[contenteditable=""]').filter(a),i.concat(r)},s.getNodes().each(function(e){e.getData(d)||e.setData(d,{nodeName:e.get(_).toLowerCase(),isEditable:g._isEditable(e),prevVal:o?e.getDOMNode().innerHTML:e.get(u)})}),n._handles=c.delegate(l,e,a,null,n)):(o=g._isEditable(e),(e.test("input,textarea,select")||o)&&(e.getData(d)||e.setData(d,{nodeName:e.get(_).toLowerCase(),isEditable:o,prevVal:o?e.getDOMNode().innerHTML:e.get(u)}),n._handles=e.on(l,null,null,n)))},_onUnsubscribe:function(e,t,n){var a=n._valuechange;n._handles&&n._handles.detach(),a.delegated?a.getNodes().each(function(e){g._stopPolling(e,n)}):g._stopPolling(e,n)}},t={detach:g._onUnsubscribe,on:g._onSubscribe,delegate:g._onSubscribe,detachDelegate:g._onUnsubscribe,publishConfig:{emitFacade:!0}};c.Event.define("valuechange",t),c.Event.define("valueChange",t),c.ValueChange=g},"patched-v3.18.7",{requires:["event-focus","event-synthetic"]});
YUI.add("event-tap",function(a,e){a.config.doc;var o=a.Event._GESTURE_MAP,s=o.start,h=/pointer/i,r={START:"Y_TAP_ON_START_HANDLE",END:"Y_TAP_ON_END_HANDLE",CANCEL:"Y_TAP_ON_CANCEL_HANDLE"};function d(n,e){e=e||a.Object.values(r),a.Array.each(e,function(e){var t=n[e];t&&(t.detach(),n[e]=null)})}a.Event.define("tap",{publishConfig:{preventedFn:function(e){var t=e.target.once("click",function(e){e.preventDefault()});setTimeout(function(){t.detach()},100)}},processArgs:function(e,t){if(!t)return t=e[3],e.splice(3,1),t},on:function(e,t,n){t[r.START]=e.on(s,this._start,this,e,t,n)},detach:function(e,t,n){d(t)},delegate:function(t,n,c,e){n[r.START]=a.delegate(s,function(e){this._start(e,t,n,c,!0)},t,e,this)},detachDelegate:function(e,t,n){d(t)},_start:function(e,t,n,c,a){var s={canceled:!1,eventType:e.type},i=n.preventMouse||!1;e.button&&3===e.button||e.touches&&1!==e.touches.length||(s.node=a?e.currentTarget:t,e.touches?s.startXY=[e.touches[0].pageX,e.touches[0].pageY]:s.startXY=[e.pageX,e.pageY],e.touches?(n[r.END]=t.once("touchend",this._end,this,t,n,c,a,s),n[r.CANCEL]=t.once("touchcancel",this.detach,this,t,n,c,a,s),n.preventMouse=!0):-1===s.eventType.indexOf("mouse")||i?-1!==s.eventType.indexOf("mouse")&&i?n.preventMouse=!1:h.test(s.eventType)&&(n[r.END]=t.once(o.end,this._end,this,t,n,c,a,s),n[r.CANCEL]=t.once(o.cancel,this.detach,this,t,n,c,a,s)):(n[r.END]=t.once("mouseup",this._end,this,t,n,c,a,s),n[r.CANCEL]=t.once("mousecancel",this.detach,this,t,n,c,a,s)))},_end:function(e,t,n,c,a,s){var i,o,h=s.startXY,u=15;n._extra&&0<=n._extra.sensitivity&&(u=n._extra.sensitivity),o=e.changedTouches?(i=[e.changedTouches[0].pageX,e.changedTouches[0].pageY],[e.changedTouches[0].clientX,e.changedTouches[0].clientY]):(i=[e.pageX,e.pageY],[e.clientX,e.clientY]),Math.abs(i[0]-h[0])<=u&&Math.abs(i[1]-h[1])<=u&&(e.type="tap",e.pageX=i[0],e.pageY=i[1],e.clientX=o[0],e.clientY=o[1],e.currentTarget=s.node,c.fire(e)),d(n,[r.END,r.CANCEL])}})},"patched-v3.18.7",{requires:["node-base","event-base","event-touch","event-synthetic"]});
YUI.add("dd-ddm",function(i,t){i.mix(i.DD.DDM,{_pg:null,_debugShim:!1,_activateTargets:function(){},_deactivateTargets:function(){},_startDrag:function(){this.activeDrag&&this.activeDrag.get("useShim")&&(this._shimming=!0,this._pg_activate(),this._activateTargets())},_endDrag:function(){i.later(0,this,this._pg_deactivate),this._deactivateTargets()},_pg_deactivate:function(){this._pg.setStyle("display","none")},_pg_activate:function(){this._pg||this._createPG();var t=this.activeDrag.get("activeHandle"),e="auto";"auto"===(e=t?t.getStyle("cursor"):e)&&(e=this.get("dragCursor")),this._pg_size(),this._pg.setStyles({top:0,left:0,display:"block",opacity:this._debugShim?".5":"0",cursor:e})},_pg_size:function(){var t,e;this.activeDrag&&(t=(e=i.one("body")).get("docHeight"),e=e.get("docWidth"),this._pg.setStyles({height:t+"px",width:e+"px"}))},_createPG:function(){var t=i.Node.create("<div></div>"),e=i.one("body");t.setStyles({top:"0",left:"0",position:"absolute",zIndex:"99999",overflow:"hidden",backgroundColor:"red",display:"none",height:"5px",width:"5px"}),t.set("id",i.stamp(t)),t.addClass(i.DD.DDM.CSS_PREFIX+"-shim"),e.prepend(t),this._pg=t,this._pg.on("mousemove",i.throttle(i.bind(this._move,this),this.get("throttleTime"))),this._pg.on("mouseup",i.bind(this._end,this)),e=i.one("win"),i.on("window:resize",i.bind(this._pg_size,this)),e.on("scroll",i.bind(this._pg_size,this))}},!0)},"patched-v3.18.7",{requires:["dd-ddm-base","event-resize"]});
YUI.add("dd-ddm-drop",function(h,t){h.mix(h.DD.DDM,{_noShim:!1,_activeShims:[],_hasActiveShim:function(){return!!this._noShim||this._activeShims.length},_addActiveShim:function(t){this._activeShims.push(t)},_removeActiveShim:function(i){var e=[];h.Array.each(this._activeShims,function(t){t._yuid!==i._yuid&&e.push(t)}),this._activeShims=e},syncActiveShims:function(t){h.later(0,this,function(t){t=t?this.targets:this._lookup();h.Array.each(t,function(t){t.sizeShim.call(t)},this)},t)},mode:0,POINT:0,INTERSECT:1,STRICT:2,useHash:!0,activeDrop:null,validDrops:[],otherDrops:{},targets:[],_addValid:function(t){return this.validDrops.push(t),this},_removeValid:function(i){var e=[];return h.Array.each(this.validDrops,function(t){t!==i&&e.push(t)}),this.validDrops=e,this},isOverTarget:function(t){if(this.activeDrag&&t){var i,e=this.activeDrag.mouseXY,r=this.activeDrag.get("dragMode"),a=t.shim;if(e&&this.activeDrag){if(i=this.activeDrag.region,r===this.STRICT)return this.activeDrag.get("dragNode").inRegion(t.region,!0,i);if(t&&t.shim)return(r===this.INTERSECT&&this._noShim?(r=i||this.activeDrag.get("node"),t.get("node").intersect(r,t.region)):(a=this._noShim?t.get("node"):a).intersect({top:e[1],bottom:e[1],left:e[0],right:e[0]},t.region)).inRegion}}return!1},clearCache:function(){this.validDrops=[],this.otherDrops={},this._activeShims=[]},_activateTargets:function(){this._noShim=!0,this.clearCache(),h.Array.each(this.targets,function(t){t._activateShim([]),!0===t.get("noShim")&&(this._noShim=!1)},this),this._handleTargetOver()},getBestMatch:function(t,i){var e,r=null,a=0;return h.Object.each(t,function(t){var i=this.activeDrag.get("dragNode").intersect(t.get("node"));t.region.area=i.area,i.inRegion&&i.area>a&&(a=i.area,r=t)},this),i?(e=[],h.Object.each(t,function(t){t!==r&&e.push(t)},this),[r,e]):r},_deactivateTargets:function(){var t,i=[],e=this.activeDrag,r=this.activeDrop;e&&r&&this.otherDrops[r]?(e.get("dragMode")?(r=(t=this.getBestMatch(this.otherDrops,!0))[0],i=t[1]):delete(i=this.otherDrops)[r],e.get("node").removeClass(this.CSS_PREFIX+"-drag-over"),r&&(r.fire("drop:hit",{drag:e,drop:r,others:i}),e.fire("drag:drophit",{drag:e,drop:r,others:i}))):e&&e.get("dragging")&&(e.get("node").removeClass(this.CSS_PREFIX+"-drag-over"),e.fire("drag:dropmiss",{pageX:e.lastXY[0],pageY:e.lastXY[1]})),this.activeDrop=null,h.Array.each(this.targets,function(t){t._deactivateShim([])},this)},_dropMove:function(){this._hasActiveShim()?this._handleTargetOver():h.Object.each(this.otherDrops,function(t){t._handleOut.apply(t,[])})},_lookup:function(){var i;return!this.useHash||this._noShim?this.validDrops:(i=[],h.Array.each(this.validDrops,function(t){t.shim&&t.shim.inViewportRegion(!1,t.region)&&i.push(t)}),i)},_handleTargetOver:function(){var t=this._lookup();h.Array.each(t,function(t){t._handleTargetOver.call(t)},this)},_regTarget:function(t){this.targets.push(t)},_unregTarget:function(i){var e,r=[];h.Array.each(this.targets,function(t){t!==i&&r.push(t)},this),this.targets=r,e=[],h.Array.each(this.validDrops,function(t){t!==i&&e.push(t)}),this.validDrops=e},getDrop:function(t){var i=!1,e=h.one(t);return e instanceof h.Node&&h.Array.each(this.targets,function(t){e.compareTo(t.get("node"))&&(i=t)}),i}},!0)},"patched-v3.18.7",{requires:["dd-ddm"]});
YUI.add("dd-drop",function(h,t){var o="node",d=h.DD.DDM,g="offsetHeight",n="offsetWidth",e="drop:over",i="drop:enter",r="drop:exit",s=function(){this._lazyAddAttrs=!1,s.superclass.constructor.apply(this,arguments),h.on("domready",h.bind(function(){h.later(100,this,this._createShim)},this)),d._regTarget(this)};s.NAME="drop",s.ATTRS={node:{setter:function(t){var e=h.one(t);return e||h.error("DD.Drop: Invalid Node Given: "+t),e}},groups:{value:["default"],getter:function(){return this._groups?h.Object.keys(this._groups):(this._groups={},[])},setter:function(t){return this._groups=h.Array.hash(t),t}},padding:{value:"0",setter:function(t){return d.cssSizestoObject(t)}},lock:{value:!1,setter:function(t){return t?this.get(o).addClass(d.CSS_PREFIX+"-drop-locked"):this.get(o).removeClass(d.CSS_PREFIX+"-drop-locked"),t}},bubbles:{setter:function(t){return this.addTarget(t),t}},useShim:{value:!0,setter:function(t){return h.DD.DDM._noShim=!t,t}}},h.extend(s,h.Base,{_bubbleTargets:h.DD.DDM,addToGroup:function(t){return this._groups[t]=!0,this},removeFromGroup:function(t){return delete this._groups[t],this},_createEvents:function(){h.Array.each([e,i,r,"drop:hit"],function(t){this.publish(t,{type:t,emitFacade:!0,preventable:!1,bubbles:!0,queuable:!1,prefix:"drop"})},this)},_valid:null,_groups:null,shim:null,region:null,overTarget:null,inGroup:function(t){var e=this._valid=!1;return h.Array.each(t,function(t){this._groups[t]&&(e=!0,this._valid=!0)},this),e},initializer:function(){h.later(100,this,this._createEvents);var t,e=this.get(o);e.get("id")||(t=h.stamp(e),e.set("id",t)),e.addClass(d.CSS_PREFIX+"-drop"),this.set("groups",this.get("groups"))},destructor:function(){d._unregTarget(this),this.shim&&this.shim!==this.get(o)&&(this.shim.detachAll(),this.shim.remove(),this.shim=null),this.get(o).removeClass(d.CSS_PREFIX+"-drop"),this.detachAll()},_deactivateShim:function(){if(!this.shim)return!1;this.get(o).removeClass(d.CSS_PREFIX+"-drop-active-valid"),this.get(o).removeClass(d.CSS_PREFIX+"-drop-active-invalid"),this.get(o).removeClass(d.CSS_PREFIX+"-drop-over"),this.get("useShim")&&this.shim.setStyles({top:"-999px",left:"-999px",zIndex:"1"}),this.overTarget=!1},_activateShim:function(){var t;return!!d.activeDrag&&this.get(o)!==d.activeDrag.get(o)&&!this.get("lock")&&(t=this.get(o),void(this.inGroup(d.activeDrag.get("groups"))?(t.removeClass(d.CSS_PREFIX+"-drop-active-invalid"),t.addClass(d.CSS_PREFIX+"-drop-active-valid"),d._addValid(this),this.overTarget=!1,this.get("useShim")||(this.shim=this.get(o)),this.sizeShim()):(d._removeValid(this),t.removeClass(d.CSS_PREFIX+"-drop-active-valid"),t.addClass(d.CSS_PREFIX+"-drop-active-invalid"))))},sizeShim:function(){var t,e,i,r,s,a;return!!d.activeDrag&&this.get(o)!==d.activeDrag.get(o)&&!this.get("lock")&&(this.shim?(a=(t=this.get(o)).get(g),s=t.get(n),t=t.getXY(),s=s+(e=this.get("padding")).left+e.right,a=a+e.top+e.bottom,t[0]=t[0]-e.left,t[1]=t[1]-e.top,d.activeDrag.get("dragMode")===d.INTERSECT&&(a+=i=(e=d.activeDrag).get(o).get(g),s+=r=e.get(o).get(n),t[0]=t[0]-(r-e.deltaXY[0]),t[1]=t[1]-(i-e.deltaXY[1])),this.get("useShim")&&this.shim.setStyles({height:a+"px",width:s+"px",top:t[1]+"px",left:t[0]+"px"}),void(this.region={0:t[0],1:t[1],area:0,top:t[1],right:t[0]+s,bottom:t[1]+a,left:t[0]})):(h.later(100,this,this.sizeShim),!1))},_createShim:function(){var t;d._pg?this.shim||(t=this.get("node"),this.get("useShim")&&((t=h.Node.create('<div id="'+this.get(o).get("id")+'_shim"></div>')).setStyles({height:this.get(o).get(g)+"px",width:this.get(o).get(n)+"px",backgroundColor:"yellow",opacity:".5",zIndex:"1",overflow:"hidden",top:"-900px",left:"-900px",position:"absolute"}),d._pg.appendChild(t),t.on("mouseover",h.bind(this._handleOverEvent,this)),t.on("mouseout",h.bind(this._handleOutEvent,this))),this.shim=t):h.later(10,this,this._createShim)},_handleTargetOver:function(){d.isOverTarget(this)?(this.get(o).addClass(d.CSS_PREFIX+"-drop-over"),d.activeDrop=this,(d.otherDrops[this]=this).overTarget?(d.activeDrag.fire("drag:over",{drop:this,drag:d.activeDrag}),this.fire(e,{drop:this,drag:d.activeDrag})):d.activeDrag.get("dragging")&&(this.overTarget=!0,this.fire(i,{drop:this,drag:d.activeDrag}),d.activeDrag.fire("drag:enter",{drop:this,drag:d.activeDrag}),d.activeDrag.get(o).addClass(d.CSS_PREFIX+"-drag-over"))):this._handleOut()},_handleOverEvent:function(){this.shim.setStyle("zIndex","999"),d._addActiveShim(this)},_handleOutEvent:function(){this.shim.setStyle("zIndex","1"),d._removeActiveShim(this)},_handleOut:function(t){d.isOverTarget(this)&&!t||this.overTarget&&(this.overTarget=!1,t||d._removeActiveShim(this),d.activeDrag)&&(this.get(o).removeClass(d.CSS_PREFIX+"-drop-over"),d.activeDrag.get(o).removeClass(d.CSS_PREFIX+"-drag-over"),this.fire(r,{drop:this,drag:d.activeDrag}),d.activeDrag.fire("drag:exit",{drop:this,drag:d.activeDrag}),delete d.otherDrops[this])}}),h.DD.Drop=s},"patched-v3.18.7",{requires:["dd-drag","dd-ddm-drop"]});
