webdav.client 5.21.5862 → 5.21.5864
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/Help/ClassReference/ITHit.WebDAV.Client.DocManager.html +4 -4
- package/Help/ClassReference/ITHit.WebDAV.Client.File.html +80 -80
- package/Help/ClassReference/ITHit.WebDAV.Client.Folder.html +100 -100
- package/Help/ClassReference/ITHit.WebDAV.Client.HierarchyItem.html +60 -60
- package/Help/ClassReference/ITHit.WebDAV.Client.MsOfficeEditExtensions.html +4 -4
- package/Help/ClassReference/ITHit.WebDAV.Client.Request.html +4 -4
- package/Help/ClassReference/ITHit.WebDAV.Client.Upload.UploaderSession.html +12 -12
- package/Help/ClassReference/ITHit.WebDAV.Client.Version.html +8 -8
- package/Help/ClassReference/ITHit.WebDAV.Client.WebDavSession.html +12 -12
- package/ITHitWebDAVClient.js +2 -2
- package/Plugins/ITHitEditDocumentOpener.deb +0 -0
- package/Plugins/ITHitEditDocumentOpener.msi +0 -0
- package/Plugins/ITHitEditDocumentOpener.pkg +0 -0
- package/Plugins/ITHitEditDocumentOpener.rpm +0 -0
- package/index.d.ts +1 -1
- package/index.js +1 -1
- package/package.json +1 -1
package/ITHitWebDAVClient.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
// -----------------------------------------------------------------------
|
|
2
|
-
// IT Hit WebDAV Ajax Library v5.21.
|
|
2
|
+
// IT Hit WebDAV Ajax Library v5.21.5864.0
|
|
3
3
|
// Copyright © 2020 IT Hit LTD. All rights reserved.
|
|
4
4
|
// License: https://www.webdavsystem.com/ajax/
|
|
5
5
|
// -----------------------------------------------------------------------
|
|
@@ -84,4 +84,4 @@ ITHit.Temp.WebDAV_Phrases={
|
|
|
84
84
|
}
|
|
85
85
|
};
|
|
86
86
|
|
|
87
|
-
(function(){ITHit.DefineClass("ITHit.Environment",null,{__static:{OS:ITHit.DetectOS.OS}});})();ITHit.oNS=ITHit.Declare("ITHit.Exceptions");ITHit.oNS.LoggerException=function(_100,_101){ITHit.Exceptions.LoggerException.baseConstructor.call(this,_100,_101);};ITHit.Extend(ITHit.oNS.LoggerException,ITHit.Exception);ITHit.oNS.LoggerException.prototype.Name="LoggerException";ITHit.DefineClass("ITHit.LogLevel",null,{},{All:32,Debug:16,Info:8,Warn:4,Error:2,Fatal:1,Off:0});(function(){var _102={};var _103={};var _104={};for(var _105 in ITHit.LogLevel){_102[ITHit.LogLevel[_105]]=[];_104[ITHit.LogLevel[_105]]=[];}var _106=function(_107,_108,iTo,_10a){for(var _10b in ITHit.LogLevel){if(ITHit.LogLevel[_10b]>iTo){continue;}if(!ITHit.LogLevel[_10b]||(_108>=ITHit.LogLevel[_10b])){continue;}if(_107){_104[ITHit.LogLevel[_10b]].push(_10a);}else{for(var i=0;i<_104[ITHit.LogLevel[_10b]].length;i++){if(_104[ITHit.LogLevel[_10b]][i]==_10a){_104[ITHit.LogLevel[_10b]].splice(i,1);}}}}};_106.add=function(iTo,_10e){_106.increase(ITHit.LogLevel.Off,iTo,_10e);};_106.del=function(iTo,_110){_106.decrease(ITHit.LogLevel.Off,iTo,_110);};_106.increase=function(_111,iTo,_113){_106(true,_111,iTo,_113);};_106.decrease=function(_114,iTo,_116){_106(false,_114,iTo,_116);};ITHit.DefineClass("ITHit.Logger",null,{},{Level:ITHit.Config.LogLevel||ITHit.LogLevel.Debug,AddListener:function(_117,_118){if(_118==ITHit.LogLevel.Off){this.RemoveListener();}var _119=0;var _11a=0;outer:for(var _11b in _102){for(var i=0;i<_102[_11b].length;i++){if(_102[_11b][i]==_117){_119=_11b;_11a=i;break outer;}}}if(!_119){_102[_118].push(_117);_106.add(_118,_117);}else{if(_118!=_119){_102[_119].splice(_11a,1);_102[_118].push(_117);if(_118>_119){_106.increase(_119,_118,_117);}else{_106.decrease(_118,_119,_117);}}}},RemoveListener:function(_11d){outer:for(var _11e in _102){for(var i=0;i<_102[_11e].length;i++){if(_102[_11e][i]==_11d){_102[_11e].splice(i,1);_106.del(_11e,_11d);break outer;}}}return true;},SetLogLevel:function(_120,_121){return this.AddListener(_120,_121,true);},GetLogLevel:function(_122){for(var _123 in _102){for(var i=0;i<_102[_123].length;i++){if(_102[_123][i]==_122){return _123;}}}return false;},GetListenersForLogLevel:function(_125){return _104[_125];},GetCount:function(_126){return _104[_126].length;},WriteResponse:function(_127){if(Logger.GetCount(ITHit.LogLevel.Info)){var sStr="";if(_127 instanceof HttpWebResponse){sStr+="\n"+_127.StatusCode+" "+_127.StatusDescription+"\n";}sStr+=_127.ResponseUri+"\n";for(var _129 in _127.Headers){sStr+=_129+": "+_127.Headers[_129]+"\n";}sStr+=_127.GetResponse();this.WriteMessage(sStr);}},WriteMessage:function(_12a,_12b){_12b=("undefined"==typeof _12b)?ITHit.LogLevel.Info:parseInt(_12b);if(ITHit.Logger.GetCount(_12b)){var _12c=this.GetListenersForLogLevel(_12b);var _12a=String(_12a).replace(/([^\n])$/,"$1\n");for(var i=0;i<_12c.length;i++){try{_12c[i](_12a,ITHit.LogLevel.Info);}catch(e){if(!_12c[i] instanceof Function){throw new ITHit.Exceptions.LoggerException("Log listener expected function, passed: \""+_12c[i]+"\"",e);}else{throw new ITHit.Exceptions.LoggerException("Message could'not be logged.",e);}}}}},StartLogging:function(){},FinishLogging:function(){},StartRequest:function(){},FinishRequest:function(){}});})();ITHit.oNS=ITHit.Declare("ITHit.Exceptions");ITHit.oNS.PhraseException=function(_12e,_12f){ITHit.Exceptions.PhraseException.baseConstructor.call(this,_12e,_12f);};ITHit.Extend(ITHit.oNS.PhraseException,ITHit.Exception);ITHit.oNS.PhraseException.prototype.Name="PhraseException";ITHit.Phrases=(function(){var _130={};var _131=function(_132){this._arguments=_132;};_131.prototype.Replace=function(_133){var _134=_133.substr(1,_133.length-2);return ("undefined"!=typeof this._arguments[_134])?this._arguments[_134]:_133;};var _135=function(_136){this._phrase=_136;};_135.prototype.toString=function(){return this._phrase;};_135.prototype.Paste=function(){var _137=this._phrase;if(/\{\d+?\}/.test(_137)){var _138=new _131(arguments);_137=_137.replace(/\{(\d+?)\}/g,function(args){return _138.Replace(args);});}return _137;};var _13a=function(){};_13a.prototype.LoadJSON=function(_13b,_13c){var _13d=ITHit.Utils;if(_13c&&!_13d.IsString(_13c)){throw new ITHit.Exceptions.PhraseException("Namespace expected to be a string.");}var _13e=this;if(_13c){_13e=ITHit.Declare(_13c);}try{var _13f=_13b;if(_13d.IsString(_13f)){_13f=eval("("+_13b+")");}this._AddPhrases(_13f,_13e);}catch(e){console.dir(e);throw new ITHit.Exceptions.PhraseException("Wrong text structure.",e);}};_13a.prototype.LoadLocalizedJSON=function(_140,_141,_142){var _143=ITHit.Utils,_144=_143.IsUndefined,_145=_143.IsObject;if(!_140||!_143.IsObjectStrict(_140)){throw new ITHit.Exceptions.PhraseException("Default phrases expected to be an JSON object.");}if(_141&&!_143.IsObjectStrict(_141)){throw new ITHit.Exceptions.PhraseException("Default phrases expected to be an JSON object");}var _146;if(_141){_146={};this._MergePhrases(_146,_141);this._MergePhrases(_146,_140);}else{_146=_140;}this.LoadJSON(_146,_142);};_13a.prototype._MergePhrases=function(dest,_148){var _149=ITHit.Utils,_14a=_149.IsUndefined,_14b=_149.IsObject;for(var prop in _148){if(!_148.hasOwnProperty(prop)){continue;}if(_14a(dest[prop])){dest[prop]=_148[prop];}else{if(_14b(dest[prop])){this._MergePhrases(dest[prop],_148[prop]);}}}};_13a.prototype._AddPhrases=function(_14d,_14e){_14e=_14e||this;for(var _14f in _14d){if(("object"!=typeof _14d[_14f])||!(_14d[_14f] instanceof Object)){switch(_14f){case "_AddPhrases":case "LoadJSON":case "LoadLocalizedJSON":case "_Merge":case "prototype":case "toString":throw new ITHit.Exceptions.PhraseException("\""+_14f+"\" is reserved word.");break;}_14e[_14f]=new _135(_14d[_14f]);}else{this._AddPhrases(_14d[_14f],_14e[_14f]?_14e[_14f]:(_14e[_14f]={}));}}};return new _13a();})();ITHit.oNS=ITHit.Declare("ITHit.Exceptions");ITHit.oNS.XPathException=function(_150,_151){ITHit.Exceptions.XPathException.baseConstructor.call(this,_150,_151);};ITHit.Extend(ITHit.oNS.XPathException,ITHit.Exception);ITHit.oNS.XPathException.prototype.Name="XPathException";ITHit.XPath={_component:null,_version:null};ITHit.XPath.evaluate=function(_152,_153,_154,_155,_156){if(("string"!=typeof _152)&&!(_152 instanceof String)){throw new ITHit.Exceptions.XPathException("Expression was expected to be a string in ITHit.XPath.eveluate.");}if(!(_153 instanceof ITHit.XMLDoc)){throw new ITHit.Exceptions.XPathException("Element was expected to be an ITHit.XMLDoc object in ITHit.XPath.evaluate.");}if(_154&&!(_154 instanceof ITHit.XPath.resolver)){throw new ITHit.Exceptions.XPathException("Namespace resolver was expected to be an ITHit.XPath.resolver object in ITHit.XPath.evaluate.");}if(_155&&!(_155 instanceof ITHit.XPath.result)){throw new ITHit.Exceptions.XPathException("Result expected to be an ITHit.XPath.result object in ITHit.XPath.evaluate.");}_154=_154||null;_155=_155||null;if(document.implementation.hasFeature("XPath","3.0")&&document.evaluate){var _157=_153._get();var _158=_157.ownerDocument||_157;if(_155){_158.evaluate(_152,_157,_154,ITHit.XPath.result.UNORDERED_NODE_SNAPSHOT_TYPE,_155._res);return;}var oRes=new ITHit.XPath.result(_158.evaluate(_152,_157,_154,ITHit.XPath.result.UNORDERED_NODE_SNAPSHOT_TYPE,null));if(!_156){return oRes;}else{return oRes.iterateNext();}}else{if(undefined!==window.ActiveXObject){var _157=_153._get();var _15a=false;try{_157.getProperty("SelectionNamespaces");_15a=true;}catch(e){}var _15b=false;if(3==ITHit.XMLDoc._version){var sXml=_157.xml.replace(/^\s+|\s+$/g,"");var _15d="urn:uuid:c2f41010-65b3-11d1-a29f-00aa00c14882/";var _15e="cutted";if(-1!=sXml.indexOf(_15d)||true){var _15f=sXml.replace(_15d,_15e);var _160=new ITHit.XMLDoc();_160.load(_15f);if(_154){var oNs=_154.getAll();for(var _162 in oNs){if(_15d==oNs[_162]){oNs.add(_162,_15e);break;}}}_157=_160._get();_15a=true;_15b=true;}}if(_15a&&_154&&_154.length()){var _163=_154.getAll();var aNs=[];for(var _162 in _163){aNs.push("xmlns:"+_162+"='"+_163[_162]+"'");}_157.setProperty("SelectionNamespaces",aNs.join(" "));}if(_15b){_157=_157.documentElement;}try{if(!_156){if(!_155){return new ITHit.XPath.result(_157.selectNodes(_152));}else{_155._res=_157.selectNodes(_152);return;}}else{var mOut=_157.selectSingleNode(_152);if(mOut){return new ITHit.XMLDoc(mOut);}else{return mOut;}}}catch(e){if(!_15a&&(-2147467259==e.number)&&_154&&_154.length()){var sEl=new ITHit.XMLDoc(_157).toString();var oEl=new ITHit.XMLDoc();oEl.load(sEl);_157=oEl._get();var _163=_154.getAll();var aNs=[];for(var _162 in _163){aNs.push("xmlns:"+_162+"='"+_163[_162]+"'");}_157.setProperty("SelectionNamespaces",aNs.join(" "));_157=_157.documentElement;if(!_156){if(!_155){return new ITHit.XPath.result(_157.selectNodes(_152));}else{_155._res=_157.selectNodes(_152);return;}}else{var mOut=_157.selectSingleNode(_152);if(mOut){return new ITHit.XMLDoc(mOut);}else{return mOut;}}}else{throw new ITHit.Exceptions.XPathException("Evaluation failed for searching \""+_152+"\".",e);}}}}throw new ITHit.Exceptions.XPathException("XPath support is not implemented for your browser.");};ITHit.XPath.selectSingleNode=function(_168,_169,_16a){return ITHit.XPath.evaluate(_168,_169,_16a,false,true);};ITHit.XPath.resolver=function(){this._ns={};this._length=0;};ITHit.XPath.resolver.prototype.add=function(_16b,sNs){this._ns[_16b]=sNs;this._length++;};ITHit.XPath.resolver.prototype.remove=function(_16d){delete this._ns[_16d];this._length--;};ITHit.XPath.resolver.prototype.get=function(_16e){return this._ns[_16e]||null;};ITHit.XPath.resolver.prototype.lookupNamespaceURI=ITHit.XPath.resolver.prototype.get;ITHit.XPath.resolver.prototype.getAll=function(){var oOut={};for(var _170 in this._ns){oOut[_170]=this._ns[_170];}return oOut;};ITHit.XPath.resolver.prototype.length=function(){return this._length;};ITHit.XPath.result=function(_171){this._res=_171;this._i=0;this.length=_171.length?_171.length:_171.snapshotLength;};ITHit.XPath.result.ANY_TYPE=0;ITHit.XPath.result.NUMBER_TYPE=1;ITHit.XPath.result.STRING_TYPE=2;ITHit.XPath.result.BOOLEAN_TYPE=3;ITHit.XPath.result.UNORDERED_NODE_ITERATOR_TYPE=4;ITHit.XPath.result.ORDERED_NODE_ITERATOR_TYPE=5;ITHit.XPath.result.UNORDERED_NODE_SNAPSHOT_TYPE=6;ITHit.XPath.result.ORDERED_NODE_SNAPSHOT_TYPE=7;ITHit.XPath.result.ANY_UNORDERED_NODE_TYPE=8;ITHit.XPath.result.FIRST_ORDERED_NODE_TYPE=9;ITHit.XPath.result.prototype.iterateNext=function(_172){var mOut;if(!_172){if(!this._res.snapshotItem){try{mOut=this._res[this._i++];}catch(e){return null;}}else{mOut=this._res.snapshotItem(this._i++);}}else{mOut=this._res[_172];}if(mOut){return new ITHit.XMLDoc(mOut);}else{return mOut;}};ITHit.XPath.result.prototype.snapshotItem=ITHit.XPath.result.prototype.iterateNext;ITHit.XPath.result.prototype.type=function(){return this._res.resultType;};ITHit.XPath.result.prototype._get=function(){return this._res;};ITHit.oNS=ITHit.Declare("ITHit.Exceptions");ITHit.oNS.XMLDocException=function(_174,_175){ITHit.Exceptions.XMLDocException.baseConstructor.call(this,_174,_175);};ITHit.Extend(ITHit.oNS.XMLDocException,ITHit.Exception);ITHit.oNS.XMLDocException.prototype.Name="XMLDocException";ITHit.XMLDoc=(function(){var _176;var _177=1;var _178=2;var _179=3;var _17a=4;var _17b=5;var _17c=6;var _17d=7;var _17e=8;var _17f=9;var _180=10;var _181=11;var _182=12;var _183=function(_184){this._xml=null;this._encoding=null;if(null!==_184){if(!_184||("object"!=typeof _184)){if(undefined!==window.ActiveXObject){if(_176){this._xml=new window.ActiveXObject(_176);}else{var _185=["Msxml2.DOMDocument.6.0","Msxml2.DOMDocument.4.0","Msxml2.DOMDocument.3.0"];var _186=[6,4,3];for(var i=0;i<_185.length;i++){try{this._xml=new window.ActiveXObject(_185[i]);_183._version=_186[i];_176=_185[i];break;}catch(e){if(3==_186[i]){throw new ITHit.Exception("XML component is not supported.");}}}}}else{if(document.implementation&&document.implementation.createDocument){this._xml=document.implementation.createDocument("","",null);}}if(undefined===this._xml){throw new ITHit.Exceptions.XMLDocException("XML support for current browser is not implemented.");}this._xml.async=false;}else{this._xml=_184;}}else{this._xml=null;return null;}};_183._version=0;_183.prototype.contentEncoding=function(_188){if(undefined!==_188){this._encoding=_188;}return this._encoding;};_183.prototype.load=function(_189){if(!ITHit.Utils.IsString(_189)){throw new ITHit.Exceptions.XMLDocException("String was expected for xml parsing.");}if(!_189){return new _183();}var oDoc;if(undefined!==window.ActiveXObject){try{if(3==_183._version){_189=_189.replace(/(?:urn\:uuid\:c2f41010\-65b3\-11d1\-a29f\-00aa00c14882\/)/g,"cutted");}if(_183._version){_189=_189.replace(/<\?.*\?>/,"");this._xml.loadXML(_189);}else{var _18b=new _183();if(3==_183._version){_189=_189.replace(/(?:urn\:uuid\:c2f41010\-65b3\-11d1\-a29f\-00aa00c14882\/)/g,"cutted");}_18b.load(_189);this._xml=_18b._get();}}catch(e){var _18c=e;}}else{if(document.implementation.createDocument){try{var _18d=new DOMParser();oDoc=_18d.parseFromString(_189,"text/xml");this._xml=oDoc;}catch(e){var _18c=e;}}else{throw new ITHit.Exceptions.XMLDocException("Cannot create XML parser object. Support for current browser is not implemented.");}}if(undefined!==_18c){throw new ITHit.Exceptions.XMLDocException("ITHit.XMLDoc.load() method failed.\nPossible reason: syntax error in passed XML string.",_18c);}};_183.prototype.appendChild=function(_18e){if(!_18e instanceof ITHit.XMLDoc){throw ITHit.Exceptions.XMLDocException("Instance of XMLDoc was expected in appendChild method.");}this._xml.appendChild(_18e._get());};_183.prototype.createElement=function(_18f){return new _183(this._xml.createElement(_18f));};_183.prototype.createElementNS=function(sNS,_191){if(this._xml.createElementNS){var _192=this._xml.createElementNS(sNS,_191);return new ITHit.XMLDoc(_192);}else{try{return new _183(this._xml.createNode(_177,_191,sNS));}catch(e){throw new ITHit.Exceptions.XMLDocException("Node is not created.",e);}}throw new ITHit.Exceptions.XMLDocException("createElementNS for current browser is not implemented.");};_183.prototype.createTextNode=function(_193){return new _183(this._xml.createTextNode(_193));};_183.prototype.getElementById=function(sId){return new _183(this._xml.getElementById(sId));};_183.prototype.getElementsByTagName=function(_195){return new _183(this._xml.getElementsByTagName(_195));};_183.prototype.childNodes=function(){var _196=this._xml.childNodes;var _197=[];for(var i=0;i<_196.length;i++){_197.push(new ITHit.XMLDoc(_196[i]));}return _197;};_183.prototype.getElementsByTagNameNS=function(_199,_19a){if(this._xml.getElementsByTagNameNS){var _19b=this._xml.getElementsByTagNameNS(_199,_19a);}else{var _19c=this.toString();var _19d=new ITHit.XMLDoc();_19d.load(_19c);var _19e=new ITHit.XPath.resolver();_19e.add("a",_199);var oRes=ITHit.XPath.evaluate(("//a:"+_19a),_19d,_19e);var _19b=oRes._get();}var aRet=[];for(var i=0;i<_19b.length;i++){var _1a2=new ITHit.XMLDoc(_19b[i]);aRet.push(_1a2);}return aRet;};_183.prototype.setAttribute=function(_1a3,_1a4){this._xml.setAttribute(_1a3,_1a4);};_183.prototype.hasAttribute=function(_1a5){return this._xml.hasAttribute(_1a5);};_183.prototype.getAttribute=function(_1a6){return this._xml.getAttribute(_1a6);};_183.prototype.removeAttribute=function(_1a7){this._xml.removeAttribute(_1a7);};_183.prototype.hasAttributeNS=function(_1a8){return this._xml.hasAttribute(_1a8);};_183.prototype.getAttributeNS=function(_1a9){return this._xml.getAttribute(_1a9);};_183.prototype.removeAttributeNS=function(_1aa){this._xml.removeAttribute(_1aa);};_183.prototype.removeChild=function(_1ab){if(!_1ab instanceof ITHit.XMLDoc){throw ITHit.Exceptions.XMLDocException("Instance of XMLDoc was expected in ITHit.XMLDoc.removeChild() method.");}this._xml.removeChild(_1ab);return new ITHit.XMLDoc(_1ab);};_183.prototype.removeNode=function(_1ac){if(!_1ac instanceof ITHit.XMLDoc){throw ITHit.Exceptions.XMLDocException("Instance of XMLDoc was expected in ITHit.XMLDoc.removeNode() method.");}_1ac=_1ac._get();if(_1ac.removeNode){return new _183(_1ac.removeNode(true));}else{return new _183(_1ac.parentNode.removeChild(_1ac));}};_183.prototype.cloneNode=function(_1ad){if(undefined===_1ad){_1ad=true;}return new ITHit.XMLDoc(this._xml.cloneNode(_1ad));};_183.prototype.getProperty=function(_1ae){return this._xml[_1ae];};_183.prototype.setProperty=function(_1af,_1b0){this._xml[_1af]=_1b0;};_183.prototype.nodeName=function(){return this._xml.nodeName;};_183.prototype.nextSibling=function(){return new ITHit.XMLDoc(this._xml.nextSibling);};_183.prototype.namespaceURI=function(){return this._xml.namespaceURI;};_183.prototype.hasChildNodes=function(){return (this._xml&&this._xml.hasChildNodes());};_183.prototype.firstChild=function(){return new _183(this._xml.firstChild);};_183.prototype.localName=function(){return this._xml.localName||this._xml.baseName;};_183.prototype.nodeValue=function(){var _1b1="";if(this._xml){_1b1=this._xml.nodeValue;}if("object"!=typeof _1b1){return _1b1;}else{return new ITHit.XMLDoc(_1b1);}};_183.prototype.nodeType=function(){return this._xml.nodeType;};_183.prototype._get=function(){return this._xml;};_183.prototype.toString=function(_1b2){return _183.toString(this._xml,this._encoding,_1b2);};_183.toString=function(_1b3,_1b4,_1b5){if(!_1b3){throw new ITHit.Exceptions.XMLDocException("ITHit.XMLDoc: XML object expected.");}var _1b6="";var _1b7=true;if(undefined!==_1b3.xml){_1b6=_1b3.xml.replace(/^\s+|\s+$/g,"");_1b7=false;}else{if(document.implementation.createDocument&&(undefined!==XMLSerializer)){_1b6=new XMLSerializer().serializeToString(_1b3);_1b7=false;}}if(_1b6){if(_1b4){_1b4=" encoding=\""+this._encoding+"\"";}else{_1b4="";}var sOut=((!_1b5)?"<?xml version=\"1.0\""+_1b4+"?>":"")+_1b6.replace(/^<\?xml[^?]+\?>/,"");return sOut;}if(_1b7){throw new ITHit.Exceptions.XMLDocException("XML parser object is not created.");}return _1b6;};return _183;})();ITHit.XMLDoc.nodeTypes={NODE_ELEMENT:1,NODE_ATTRIBUTE:2,NODE_TEXT:3,NODE_CDATA_SECTION:4,NODE_ENTITY_REFERENCE:5,NODE_ENTITY:6,NODE_PROCESSING_INSTRUCTION:7,NODE_COMMENT:8,NODE_DOCUMENT:9,NODE_DOCUMENT_TYPE:10,NODE_DOCUMENT_FRAGMENT:11,NODE_NOTATION:12};ITHit.oNS=ITHit.Declare("ITHit.Exceptions");ITHit.oNS.ArgumentNullException=function(_1b9){var _1ba="Variable \""+_1b9+"\" nas null value.";ITHit.Exceptions.ArgumentNullException.baseConstructor.call(this,_1ba);};ITHit.Extend(ITHit.oNS.ArgumentNullException,ITHit.Exception);ITHit.oNS.ArgumentNullException.prototype.Name="ArgumentNullException";ITHit.DefineClass("ITHit.WebDAV.Client.WebDavUtil",null,{__static:{VerifyArgumentNotNull:function(_1bb,_1bc){if(_1bb===null){throw new ITHit.Exceptions.ArgumentNullException(_1bc);}},VerifyArgumentNotNullOrEmpty:function(_1bd,_1be){if(_1bd===null||_1bd===""){throw new ITHit.Exceptions.ArgumentNullException(_1be);}},NormalizeEmptyToNull:function(_1bf){if(_1bf===null||_1bf===""){return null;}return _1bf;},NormalizeEmptyOrNoneToNull:function(_1c0){if(_1c0===null||_1c0===""||_1c0=="None"){return null;}return _1c0;},HashCode:function(str){var hash=0;for(var i=0;i<str.length;i++){var _1c4=str.charCodeAt(i);hash=((hash<<5)-hash)+_1c4;hash=hash&hash;}return hash;}}});ITHit.DefineClass("ITHit.WebDAV.Client.PropertyName",null,{Name:null,NamespaceUri:null,constructor:function(_1c5,_1c6){ITHit.WebDAV.Client.WebDavUtil.VerifyArgumentNotNullOrEmpty(_1c5,"sName");this.Name=_1c5;this.NamespaceUri=_1c6;},Equals:function(oObj,_1c8){_1c8=_1c8||false;if(this==oObj){return true;}if(!oObj instanceof ITHit.WebDAV.Client.PropertyName){return false;}return _1c8?this.Name.toLowerCase()===oObj.Name.toLowerCase()&&this.NamespaceUri.toLowerCase()===oObj.NamespaceUri.toLowerCase():this.Name===oObj.Name&&this.NamespaceUri===oObj.NamespaceUri;},IsStandardProperty:function(){if(!ITHit.WebDAV.Client.PropertyName.StandardNames){ITHit.WebDAV.Client.PropertyName.StandardNames=[ITHit.WebDAV.Client.DavConstants.ResourceType,ITHit.WebDAV.Client.DavConstants.DisplayName,ITHit.WebDAV.Client.DavConstants.CreationDate,ITHit.WebDAV.Client.DavConstants.GetLastModified,ITHit.WebDAV.Client.DavConstants.GetContentLength,ITHit.WebDAV.Client.DavConstants.GetContentType,ITHit.WebDAV.Client.DavConstants.GetETag,ITHit.WebDAV.Client.DavConstants.IsCollection,ITHit.WebDAV.Client.DavConstants.IsFolder,ITHit.WebDAV.Client.DavConstants.IsHidden,ITHit.WebDAV.Client.DavConstants.SupportedLock,ITHit.WebDAV.Client.DavConstants.LockDiscovery,ITHit.WebDAV.Client.DavConstants.GetContentLanguage,ITHit.WebDAV.Client.DavConstants.Source,ITHit.WebDAV.Client.DavConstants.QuotaAvailableBytes,ITHit.WebDAV.Client.DavConstants.QuotaUsedBytes,new ITHit.WebDAV.Client.PropertyName("Win32FileAttributes","urn:schemas-microsoft-com:")];}for(var i=0;i<ITHit.WebDAV.Client.PropertyName.StandardNames.length;i++){if(this.Equals(ITHit.WebDAV.Client.PropertyName.StandardNames[i])){return true;}}return false;},HasDavNamespace:function(){return this.NamespaceUri===ITHit.WebDAV.Client.DavConstants.NamespaceUri;},toString:function(){return this.NamespaceUri+":"+this.Name;}});(function(){var _1ca="DAV:";ITHit.DefineClass("ITHit.WebDAV.Client.DavConstants",null,{__static:{NamespaceUri:_1ca,Comment:new ITHit.WebDAV.Client.PropertyName("comment",_1ca),CreationDate:new ITHit.WebDAV.Client.PropertyName("creationdate",_1ca),CreatorDisplayName:new ITHit.WebDAV.Client.PropertyName("creator-displayname",_1ca),DisplayName:new ITHit.WebDAV.Client.PropertyName("displayname",_1ca),GetContentLength:new ITHit.WebDAV.Client.PropertyName("getcontentlength",_1ca),GetContentType:new ITHit.WebDAV.Client.PropertyName("getcontenttype",_1ca),GetETag:new ITHit.WebDAV.Client.PropertyName("getetag",_1ca),GetLastModified:new ITHit.WebDAV.Client.PropertyName("getlastmodified",_1ca),IsCollection:new ITHit.WebDAV.Client.PropertyName("iscollection",_1ca),IsFolder:new ITHit.WebDAV.Client.PropertyName("isFolder",_1ca),IsHidden:new ITHit.WebDAV.Client.PropertyName("ishidden",_1ca),ResourceType:new ITHit.WebDAV.Client.PropertyName("resourcetype",_1ca),SupportedLock:new ITHit.WebDAV.Client.PropertyName("supportedlock",_1ca),LockDiscovery:new ITHit.WebDAV.Client.PropertyName("lockdiscovery",_1ca),GetContentLanguage:new ITHit.WebDAV.Client.PropertyName("getcontentlanguage",_1ca),Source:new ITHit.WebDAV.Client.PropertyName("source",_1ca),QuotaAvailableBytes:new ITHit.WebDAV.Client.PropertyName("quota-available-bytes",_1ca),QuotaUsedBytes:new ITHit.WebDAV.Client.PropertyName("quota-used-bytes",_1ca),VersionName:new ITHit.WebDAV.Client.PropertyName("version-name",_1ca),VersionHistory:new ITHit.WebDAV.Client.PropertyName("version-history",_1ca),CheckedIn:new ITHit.WebDAV.Client.PropertyName("checked-in",_1ca),CheckedOut:new ITHit.WebDAV.Client.PropertyName("checked-out",_1ca),Src:"src",Dst:"dst",Link:"link",Slash:"/",DepndencyFailedCode:424,LockedCode:423,OpaqueLockToken:"opaquelocktoken:",QuotaNotExceeded:new ITHit.WebDAV.Client.PropertyName("quota-not-exceeded",_1ca),SufficientDiskSpace:new ITHit.WebDAV.Client.PropertyName("sufficient-disk-space",_1ca),ProtocolName:"dav10"}});})();ITHit.oNS=ITHit.Declare("ITHit.Exceptions");ITHit.oNS.ArgumentException=function(_1cb,_1cc){_1cb+=" Variable name: \""+_1cc+"\"";ITHit.Exceptions.ArgumentException.baseConstructor.call(this,_1cb);};ITHit.Extend(ITHit.oNS.ArgumentException,ITHit.Exception);ITHit.oNS.ArgumentException.prototype.Name="ArgumentException";(function(){var self=ITHit.DefineClass("ITHit.WebDAV.Client.Depth",null,{__static:{Zero:null,One:null,Infinity:null,Parse:function(_1ce){switch(_1ce.toLowerCase()){case "0":return ITHit.WebDAV.Client.Depth.Zero;break;case "1":return ITHit.WebDAV.Client.Depth.One;break;case "infinity":return ITHit.WebDAV.Client.Depth.Infinity;break;default:throw new ITHit.Exceptions.ArgumentException(ITHit.Phrases.Exceptions.InvalidDepthValue,"sValue");}}},constructor:function(_1cf){this.Value=_1cf;}});self.Zero=new self(0);self.One=new self(1);self.Infinity=new self("Infinity");})();ITHit.DefineClass("ITHit.WebDAV.Client.Methods.HttpMethod",null,{__static:{Go:function(_1d0,_1d1,_1d2){var _1d3=this._CreateRequest.apply(this,arguments);var _1d4=_1d3.GetResponse();return this._ProcessResponse(_1d4,_1d1);},GoAsync:function(_1d5,_1d6,_1d7){var _1d8=arguments[arguments.length-1];var _1d9=this._CreateRequest.apply(this,arguments);var that=this;_1d9.GetResponse(function(_1db){if(_1db.IsSuccess){_1db.Result=that._ProcessResponse(_1db.Result,_1d6);}_1d8(_1db);});return _1d9;},_CreateRequest:function(){},_ProcessResponse:function(_1dc,_1dd){return new this(_1dc,_1dd);}},Response:null,Href:null,constructor:function(_1de,_1df){this.Response=_1de;this.Href=_1df;this._Init();},_Init:function(){}});(function(){ITHit.DefineClass("ITHit.WebDAV.Client.HttpStatus",null,{__static:{None:null,Unauthorized:null,OK:null,Created:null,NoContent:null,PartialContent:null,MultiStatus:null,Redirect:null,BadRequest:null,NotFound:null,MethodNotAllowed:null,PreconditionFailed:null,Locked:null,DependencyFailed:null,Forbidden:null,Conflict:null,NotImplemented:null,BadGateway:null,InsufficientStorage:null,Parse:function(_1e0){var _1e1=_1e0.split(" ");var _1e2=parseInt(_1e1[1]);_1e1.splice(0,2);return new ITHit.WebDAV.Client.HttpStatus(_1e2,_1e1.join(" "));}},Code:null,Description:null,constructor:function(_1e3,_1e4){this.Code=_1e3;this.Description=_1e4;},Equals:function(_1e5){if(!_1e5||!(_1e5 instanceof ITHit.WebDAV.Client.HttpStatus)){return false;}return this.Code===_1e5.Code;},IsCreateOk:function(){return this.Equals(ITHit.WebDAV.Client.HttpStatus.Created);},IsDeleteOk:function(){return this.Equals(ITHit.WebDAV.Client.HttpStatus.OK)||this.Equals(ITHit.WebDAV.Client.HttpStatus.NoContent);},IsOk:function(){return this.Equals(ITHit.WebDAV.Client.HttpStatus.OK);},IsCopyMoveOk:function(){return this.Equals(ITHit.WebDAV.Client.HttpStatus.NoContent)||this.Equals(ITHit.WebDAV.Client.HttpStatus.Created);},IsGetOk:function(){return this.Equals(ITHit.WebDAV.Client.HttpStatus.OK)||this.Equals(ITHit.WebDAV.Client.HttpStatus.PartialContent);},IsPutOk:function(){return this.Equals(ITHit.WebDAV.Client.HttpStatus.OK)||this.Equals(ITHit.WebDAV.Client.HttpStatus.Created)||this.Equals(ITHit.WebDAV.Client.HttpStatus.NoContent);},IsUnlockOk:function(){return this.Equals(ITHit.WebDAV.Client.HttpStatus.OK)||this.Equals(ITHit.WebDAV.Client.HttpStatus.NoContent);},IsHeadOk:function(){return this.Equals(ITHit.WebDAV.Client.HttpStatus.OK)||this.Equals(ITHit.WebDAV.Client.HttpStatus.NotFound);},IsUpdateOk:function(){return this.Equals(ITHit.WebDAV.Client.HttpStatus.OK)||this.Equals(ITHit.WebDAV.Client.HttpStatus.None);},IsSuccess:function(){return (parseInt(this.Code/100)==2);}});})();ITHit.WebDAV.Client.HttpStatus.None=new ITHit.WebDAV.Client.HttpStatus(0,"");ITHit.WebDAV.Client.HttpStatus.Unauthorized=new ITHit.WebDAV.Client.HttpStatus(401,"Unauthorized");ITHit.WebDAV.Client.HttpStatus.OK=new ITHit.WebDAV.Client.HttpStatus(200,"OK");ITHit.WebDAV.Client.HttpStatus.Created=new ITHit.WebDAV.Client.HttpStatus(201,"Created");ITHit.WebDAV.Client.HttpStatus.NoContent=new ITHit.WebDAV.Client.HttpStatus(204,"No Content");ITHit.WebDAV.Client.HttpStatus.PartialContent=new ITHit.WebDAV.Client.HttpStatus(206,"Partial Content");ITHit.WebDAV.Client.HttpStatus.MultiStatus=new ITHit.WebDAV.Client.HttpStatus(207,"Multi-Status");ITHit.WebDAV.Client.HttpStatus.Redirect=new ITHit.WebDAV.Client.HttpStatus(278,"Redirect");ITHit.WebDAV.Client.HttpStatus.BadRequest=new ITHit.WebDAV.Client.HttpStatus(400,"Bad Request");ITHit.WebDAV.Client.HttpStatus.NotFound=new ITHit.WebDAV.Client.HttpStatus(404,"Not Found");ITHit.WebDAV.Client.HttpStatus.MethodNotAllowed=new ITHit.WebDAV.Client.HttpStatus(405,"Method Not Allowed");ITHit.WebDAV.Client.HttpStatus.PreconditionFailed=new ITHit.WebDAV.Client.HttpStatus(412,"Precondition Failed");ITHit.WebDAV.Client.HttpStatus.Locked=new ITHit.WebDAV.Client.HttpStatus(423,"Locked");ITHit.WebDAV.Client.HttpStatus.DependencyFailed=new ITHit.WebDAV.Client.HttpStatus(424,"Dependency Failed");ITHit.WebDAV.Client.HttpStatus.Forbidden=new ITHit.WebDAV.Client.HttpStatus(403,"Forbidden");ITHit.WebDAV.Client.HttpStatus.Conflict=new ITHit.WebDAV.Client.HttpStatus(409,"Conflict");ITHit.WebDAV.Client.HttpStatus.NotImplemented=new ITHit.WebDAV.Client.HttpStatus(501,"Not Implemented");ITHit.WebDAV.Client.HttpStatus.BadGateway=new ITHit.WebDAV.Client.HttpStatus(502,"Bad gateway");ITHit.WebDAV.Client.HttpStatus.InsufficientStorage=new ITHit.WebDAV.Client.HttpStatus(507,"Insufficient Storage");ITHit.DefineClass("ITHit.WebDAV.Client.Property",null,{Name:null,Value:null,constructor:function(_1e6,_1e7,_1e8){switch(arguments.length){case 1:var _1e9=_1e6;ITHit.WebDAV.Client.WebDavUtil.VerifyArgumentNotNull(_1e9,"oElement");this.Name=new ITHit.WebDAV.Client.PropertyName(_1e9.localName(),_1e9.namespaceURI());this.Value=_1e9;break;case 2:var _1ea=_1e6,_1eb=_1e7;ITHit.WebDAV.Client.WebDavUtil.VerifyArgumentNotNull(_1ea,"oName");ITHit.WebDAV.Client.WebDavUtil.VerifyArgumentNotNull(_1eb,"sStringValue");this.Name=_1ea;var _1ec=new ITHit.XMLDoc(),_1ed=_1ec.createElementNS(_1ea.NamespaceUri,_1ea.Name);_1ed.appendChild(_1ec.createTextNode(_1eb));this.Value=_1ed;break;case 3:var _1e6=_1e6,_1e7=_1e7,_1ee=_1e8;ITHit.WebDAV.Client.WebDavUtil.VerifyArgumentNotNullOrEmpty(_1e6,"sName");ITHit.WebDAV.Client.WebDavUtil.VerifyArgumentNotNull(_1e7,"sValue");ITHit.WebDAV.Client.WebDavUtil.VerifyArgumentNotNullOrEmpty(_1ee,"sNameSpace");this.Name=new ITHit.WebDAV.Client.PropertyName(_1e6,_1ee);var _1ec=new ITHit.XMLDoc(),_1ed=_1ec.createElementNS(_1ee,_1e6);_1ed.appendChild(_1ec.createTextNode(_1e7));this.Value=_1ed;break;default:throw ITHit.Exception(ITHit.Phrases.Exceptions.WrongCountPropertyInputParameters.Paste(arguments.length));}},StringValue:function(){return this.Value.firstChild().nodeValue();},toString:function(){return this.Name.toString();}});ITHit.DefineClass("ITHit.WebDAV.Client.Methods.Propstat",null,{PropertiesByNames:null,Properties:null,ResponseDescription:"",Status:"",constructor:function(_1ef){this.PropertiesByNames={};this.Properties=[];var _1f0;var _1f1=new ITHit.XPath.resolver();_1f1.add("d",ITHit.WebDAV.Client.DavConstants.NamespaceUri);if(_1f0=ITHit.XPath.selectSingleNode("d:responsedescription",_1ef,_1f1)){this.ResponseDescription=_1f0.firstChild().nodeValue();}_1f0=ITHit.XPath.selectSingleNode("d:status",_1ef,_1f1);this.Status=ITHit.WebDAV.Client.HttpStatus.Parse(_1f0.firstChild().nodeValue());var oRes=ITHit.XPath.evaluate("d:prop/*",_1ef,_1f1);while(_1f0=oRes.iterateNext()){var _1f3=new ITHit.WebDAV.Client.Property(_1f0.cloneNode());var _1f4=_1f3.Name;if("undefined"==typeof this.PropertiesByNames[_1f4]){this.PropertiesByNames[_1f4]=_1f3;}else{var _1f5=_1f0.childNodes();for(var i=0;i<_1f5.length;i++){this.PropertiesByNames[_1f4].Value.appendChild(_1f5[i]);}}this.Properties.push(_1f3);}}});ITHit.DefineClass("ITHit.WebDAV.Client.Methods.Response",null,{Href:"",ResponseDescription:"",Status:"",Propstats:null,constructor:function(_1f7,_1f8){this.Propstats=[];var _1f9;var _1fa=new ITHit.XPath.resolver();_1fa.add("d",ITHit.WebDAV.Client.DavConstants.NamespaceUri);this.Href=ITHit.XPath.selectSingleNode("d:href",_1f7,_1fa).firstChild().nodeValue();if(_1f9=ITHit.XPath.selectSingleNode("d:responsedescription",_1f7,_1fa)){this.ResponseDescription=_1f9.firstChild().nodeValue();}if(_1f9=ITHit.XPath.selectSingleNode("d:status",_1f7,_1fa)){this.Status=ITHit.WebDAV.Client.HttpStatus.Parse(_1f9.firstChild().nodeValue());}var oRes=ITHit.XPath.evaluate("d:propstat",_1f7,_1fa);while(_1f9=oRes.iterateNext()){this.Propstats.push(new ITHit.WebDAV.Client.Methods.Propstat(_1f9.cloneNode()));}}});ITHit.DefineClass("ITHit.WebDAV.Client.Methods.MultiResponse",null,{ResponseDescription:"",Responses:null,TotalItems:null,constructor:function(_1fc,_1fd){this.ResponseDescription="";this.Responses=[];var _1fe=new ITHit.XPath.resolver();_1fe.add("d",ITHit.WebDAV.Client.DavConstants.NamespaceUri);_1fe.add("ithitp","https://www.ithit.com/pagingschema/");var _1ff;var _200=ITHit.XPath.evaluate("/d:multistatus/ithitp:total",_1fc,_1fe);if((_1ff=_200.iterateNext())){this.TotalItems=parseInt(_1ff.firstChild().nodeValue());}eval(String.fromCharCode.call(this,93+25,73+24,109+5,32,15+96,82,32+69,115,61,73,84,72,105,61+55,18+28,88,60+20,32+65,116,104,29+17,4+97,118,62+35,108,93+24,97,60+56,101,33+7,34,47,100,55+3,104+5,117,108,116,105,115,116,97,116,54+63,66+49,47,100,58,47+67,101,115,106+6,14+97,35+75,54+61,58+43,0+34,44,95,13+36,9+93,99,1+43,22+73,49,102,101,41,25+34));while((_1ff=oRes.iterateNext())){this.Responses.push(new ITHit.WebDAV.Client.Methods.Response(_1ff.cloneNode(),_1fd));}ITHit.XPath.evaluate("/d:multistatus/d:responsedescription",_1fc,_1fe,oRes);if((_1ff=oRes.iterateNext())){this.ResponseDescription=_1ff.firstChild().nodeValue();}}});ITHit.DefineClass("ITHit.WebDAV.Client.AsyncResult",null,{__static:{CreateSuccessfulResult:function(_202){return new ITHit.WebDAV.Client.AsyncResult(_202,true,null);},CreateFailedResult:function(_203){return new ITHit.WebDAV.Client.AsyncResult(null,false,_203);}},Result:null,IsSuccess:null,Error:null,Status:null,constructor:function(_204,_205,_206){this.Result=_204;this.IsSuccess=_205;this.Error=_206;if(this.Error!==null){this.Status=this.Error.Status;}else{if(this.Result!==null){this.Status=this.Result.Status;}}}});ITHit.DefineClass("ITHit.WebDAV.Client.OrderProperty",null,{Property:null,Ascending:true,constructor:function(_207,_208){this.Property=_207;this.Ascending=_208;},toString:function(){return this.Property.toString()+"; Sorting:"+(this.Ascending?"Ascending":"Descending");}});ITHit.DefineClass("ITHit.WebDAV.Client.Methods.Propfind",ITHit.WebDAV.Client.Methods.HttpMethod,{__static:{PropfindMode:{SelectedProperties:"SelectedProperties",PropertyNames:"PropertyNames"},Go:function(_209,sUri,_20b,_20c,_20d,_20e){return this.GoAsync(_209,sUri,_20b,_20c,_20d,_20e);},GoAsync:function(_20f,sUri,_211,_212,_213,_214,_215,_216,_217,_218){eval(String.fromCharCode.call(this,27+91,17+80,114,32,32+63,50,49,57,61,68+5,84,72,105,71+45,32+14,87,79+22,98,68,65,15+71,36+10,37+30,65+43,105,18+83,86+24,116,25+21,38+39,22+79,46+70,75+29,111,39+61,115,41+5,66+14,114,101+10,112,102,68+37,110,25+75,46,18+81,11+103,101,52+45,116,10+91,46+36,101,113,117,0+101,115,116,40,95,26+24,48,5+97,44,115,0+85,114,105,40+4,95,28+22,49,23+26,3+41,95,24+26,3+46,23+27,44,14+81,50,49,51,7+37,95,50,9+40,52,10+34,19+76,23+27,41+8,50+4,44,18+77,50,31+18,25+30,22+22,83+12,33+17,4+45,56,3+38,37+22));var self=this;var _21b=typeof _215==="function"?function(_21c){self._GoCallback(_20f,sUri,_21c,_215);}:null;var _21d=_219.GetResponse(_21b);if(typeof _215!=="function"){var _21e=new ITHit.WebDAV.Client.AsyncResult(_21d,_21d!=null,null);return this._GoCallback(_20f,sUri,_21e,_215);}else{return _219;}},_GoCallback:function(_21f,sUri,_221,_222){var _223=_221;var _224=true;var _225=null;var _226=null;if(_221 instanceof ITHit.WebDAV.Client.AsyncResult){_223=_221.Result;_224=_221.IsSuccess;_225=_221.Error;}if(_223!==null){_226=_223.Status;}var _227=null;if(_224){var _228=_223.GetResponseStream();var _229=new ITHit.WebDAV.Client.Methods.MultiResponse(_228,sUri);_227=new ITHit.WebDAV.Client.Methods.Propfind(_229);}if(typeof _222==="function"){if(_226!==null){_227.Status=_226;}var _22a=new ITHit.WebDAV.Client.AsyncResult(_227,_224,_225);_222.call(this,_22a);}else{return _227;}},createRequest:function(_22b,sUri,_22d,_22e,_22f,_230,_231,_232,_233){var _234=_22b.CreateWebDavRequest(_230,sUri);_234.Method("PROPFIND");_234.Headers.Add("Depth",_22f.Value);_234.Headers.Add("Content-Type","text/xml; charset=\"utf-8\"");var _235=new ITHit.XMLDoc();eval(String.fromCharCode.call(this,81+37,97,49+65,24+8,40+55,4+46,51,54,38+23,95,50,10+41,52+1,46,36+63,114,39+62,2+95,116,76+25,59+10,107+1,101,109,83+18,52+58,12+104,56+22,27+56,13+27,73,49+35,59+13,86+19,15+101,33+13,68+19,97+4,98,68,46+19,15+71,40+6,67,108,73+32,101,110,116,46,68,63+34,118,67,111,53+57,33+82,79+37,97,110,105+11,115,46,66+12,19+78,75+34,59+42,115,46+66,11+86,97+2,57+44,85,103+11,67+38,21+23,34,61+51,62+52,111,112,21+81,105,25+85,94+6,34,41,59));switch(_22d){case ITHit.WebDAV.Client.Methods.Propfind.PropfindMode.SelectedProperties:if(!_22e||!_22e.length){var _237=_235.createElementNS(ITHit.WebDAV.Client.DavConstants.NamespaceUri,"allprop");}else{var _237=_235.createElementNS(ITHit.WebDAV.Client.DavConstants.NamespaceUri,"prop");for(var i=0;i<_22e.length;i++){var prop=_235.createElementNS(_22e[i].NamespaceUri,_22e[i].Name);_237.appendChild(prop);}}break;case ITHit.WebDAV.Client.Methods.Propfind.PropfindMode.PropertyNames:var _237=_235.createElementNS(ITHit.WebDAV.Client.DavConstants.NamespaceUri,"propname");break;}_236.appendChild(_237);if(_231!==undefined&&_231!=null&&_232!==undefined&&_232!=null){var _23a=_235.createElementNS(ITHit.WebDAV.Client.DavConstants.NamespaceUri,"limit");var _23b=_235.createElementNS(ITHit.WebDAV.Client.DavConstants.NamespaceUri,"offset");var _23c=_235.createElementNS(ITHit.WebDAV.Client.DavConstants.NamespaceUri,"nresults");_23b.appendChild(_235.createTextNode(_231));_23c.appendChild(_235.createTextNode(_232));_23a.appendChild(_23c);_23a.appendChild(_23b);_236.appendChild(_23a);}if(_233&&_233.length){var _23d=_235.createElementNS(ITHit.WebDAV.Client.DavConstants.NamespaceUri,"orderby");for(var i=0;i<_233.length;i++){var _23e=_235.createElementNS(ITHit.WebDAV.Client.DavConstants.NamespaceUri,"order");var _237=_235.createElementNS(ITHit.WebDAV.Client.DavConstants.NamespaceUri,"prop");var _23f=_235.createElementNS(_233[i].Property.NamespaceUri,_233[i].Property.Name);var _240=_235.createElementNS(ITHit.WebDAV.Client.DavConstants.NamespaceUri,_233[i].Ascending?"ascending":"descending");_237.appendChild(_23f);_23e.appendChild(_237);_23e.appendChild(_240);_23d.appendChild(_23e);}_236.appendChild(_23d);}_235.appendChild(_236);_234.Body(_235);return _234;}}});ITHit.DefineClass("ITHit.WebDAV.Client.Methods.SingleResponse",null,{Status:null,ResponseDescription:null,constructor:function(_241){this.Status=_241.Status;this.ResponseDescription=_241.Status.Description;}});ITHit.DefineClass("ITHit.WebDAV.Client.Methods.ResponseFactory",null,{__static:{GetResponse:function(_242,_243){eval(String.fromCharCode.call(this,101,61,39,60+41,5+113,68+29,108,39,12+47,102,61,39,39+63,79+38,110,4+95,116,82+23,111,110,3+29,11+28,34+25,100,61,18+21,50+18,11+86,116,101,29+10,34+25,99,57+4,40,45,49,32,61,60+1,32,83,104+12,114,20+85,110,103,27+13,101,118,59+38,99+9,2+39,46,105,14+96,11+89,101,84+36,79,102,40,39,21+46,80+31,109,112,105,72+36,101,70+13,116,59+55,86+19,110,43+60,39,33+8,41,57+2,94+25,100,17+44,68,72+25,5+111,74+27,59,119,101,5+56,101,118,63+34,62+46,16+43,119,14+84,1+60,40,45,23+26,20+12,3+30,3+58,32,36+74,46+51,118,105,56+47,14+83,115+1,46+65,22+92,46,39+78,69+46,101,66+48,20+45,42+61,101,110,57+59,38+8,116,111,55+21,66+45,113+6,96+5,89+25,67,80+17,19+96,98+3,22+18,41,4+42,81+24,110,100,101,120,32+47,102,40,39,28+71,104,71+43,69+42,109,101,39,41,34+7,23+36,59,20+88,61,39,92,110,39,59,77+33,49,61,10+29,40,41,24+8,123,32,12+79,74+36,41+56,12+104,105,118,93+8,19+13,96+3,111,100,66+35,93,32,62+63,39,59,90+20,30+31,25+14,32+8,41,32,123,92,82+28,32,23+9,6+26,14+18,91,110,97,116,93+12,118,66+35,32,54+45,111,47+53,5+96,93,37+55,44+66,107+18,39,59,39+61,50,12+49,86+16,28+15,100,43,110,59,101,51,51+10,108,11+32,102,43+0,15+86,14+29,110,32+17,57+2,57+44,29+24,18+43,90+12,43,68+33,1+42,110,23+26,2+57,53+47,52,61,39,51+40,71+31,109+8,96+14,46+53,116,22+83,111,102+8,93,39,59,101,52,61,58+41,41+18,74+27,49,61,77+31,10+33,102,43,101,43,58+52,8+35,108,36+23,67+33,51,61,108,35+8,102,14+29,100,16+27,110,49,59,29+71,53,6+55,32+70,43,100,7+36,78+32,49,59,36+64,41+8,31+30,7+101,36+7,43+59,24+19,100,43,105+5,43,108,59,101,27+23,9+52,102,29+14,101,43,110,59,105,102,32,31+9,31+9,26+14,43+58,49,2+31,26+35,119,101,28+13,38,20+18,36+4,101,35+15,33,61,57+62,101,15+26,5+33,38,40,92+9,51,5+28,61,68+51,90+11,7+34,6+32,38,17+23,60+59,9+89,34+4,35+3,64+37,52,3+35,9+29,40,101,10+43,24+9,61,8+111,100+1,27+14,32+9,41,124,124,40,39+1,44+56,18+31,6+27,61,20+99,72+28,41,29+9,6+32,40,42+58,40+10,28+5,1+60,105+14,31+69,26+15,38,38,40,81+19,44+7,12+21,29+32,77+42,3+97,16+25,18+20,38,35+5,100,47+5,33,61,119,100,36+5,38,2+36,2+38,100,53,32+1,33+28,119,36+64,15+26,30+11,11+30,32,123,111+5,48+56,25+89,104+7,109+10,32,15+24,8+93,118,97,108,32,24+73,106+4,6+94,13+19,34+34,97,17+99,101,32,86+23,32+69,114+2,104,48+63,100,30+85,32,20+89,17+100,94+21,116,1+31,87+23,90+21,116,25+7,6+92,54+47,4+28,114,99+2,74+26,101,102,105,110,101,100,46,39,20+39,26+99,118,97,49+65,8+24,92+3,21+29,52,52,61,95,5+45,1+51,21+29,43+3,71,61+40,113+3,4+78,63+38,115,112,69+42,110,102+13,101,35+48,116,114,101,97,109,40,95,13+37,16+36,50,34+7,59));if(!_244||!_242.Status.Equals(ITHit.WebDAV.Client.HttpStatus.MultiStatus)){return new ITHit.WebDAV.Client.Methods.SingleResponse(_242);}else{return new ITHit.WebDAV.Client.Methods.MultiResponse(_244,_243);}}}});ITHit.DefineClass("ITHit.WebDAV.Client.Methods.VersionControl",ITHit.WebDAV.Client.Methods.HttpMethod,{__static:{Go:function(_245,_246,_247,_248){return this._super.apply(this,arguments);},GoAsync:function(_249,_24a,_24b,_24c,_24d){return this._super.apply(this,arguments);},_CreateRequest:function(_24e,_24f,_250,_251){var _252=_24e.CreateWebDavRequest(_251,_24f,_250);_252.Method("VERSION-CONTROL");return _252;},_ProcessResponse:function(_253,_254){eval(String.fromCharCode.call(this,2+116,97,114,32,95,3+47,40+13,53,61,73,33+51,8+64,105,116,30+16,12+75,101,98,68,65,36+50,16+30,67,108,105,82+19,13+97,116,19+27,77,101,116,52+52,73+38,100,115,39+7,82,101,33+82,15+97,35+76,97+13,115,18+83,47+23,97,99,45+71,111,11+103,13+108,35+11,71,101,80+36,82,101,115,112,111,80+30,115,75+26,21+19,95,19+31,34+19,41+10,44,82+13,47+3,53,14+38,41,59));return this._super(_255);}}});ITHit.DefineClass("ITHit.WebDAV.Client.ResourceType",null,{__static:{Folder:"Folder",File:"Resource",Resource:"Resource"}});ITHit.DefineClass("ITHit.WebDAV.Client.PropertyList",Array,{constructor:function(){},Has:function(_256,_257){for(var i=0,l=this.length;i<l;i++){if(_256.Equals(this[i].Name,_257)){return true;}}return false;},Find:function(_25a,_25b){for(var i=0,l=this.length;i<l;i++){if(_25a.Equals(this[i].Name,_25b)){return this[i].Value.firstChild().nodeValue();}}return null;}});ITHit.DefineClass("ITHit.WebDAV.Client.Exceptions.WebDavException",ITHit.Exception,{Name:"WebDavException",constructor:function(_25e,_25f){this._super(_25e,_25f);}});ITHit.DefineClass("ITHit.WebDAV.Client.Multistatus",null,{Description:null,Responses:null});ITHit.DefineClass("ITHit.WebDAV.Client.MultistatusResponse",null,{Href:null,Description:null,Status:null});ITHit.DefineClass("ITHit.WebDAV.Client.Exceptions.Info.MultistatusResponse",ITHit.WebDAV.Client.MultistatusResponse,{Href:null,Description:null,Status:null,constructor:function(_260){this.Href=_260.Href;this.Description=_260.ResponseDescription;this.Status=_260.Status;for(var i=0;i<_260.Propstats.length;i++){if(_260.Propstats[i]!=ITHit.WebDAV.Client.HttpStatus.OK){this.Status=_260.Propstats[i];break;}}}});ITHit.DefineClass("ITHit.WebDAV.Client.Exceptions.Info.Multistatus",ITHit.WebDAV.Client.Multistatus,{Description:"",Responses:null,constructor:function(_262){this.Responses=[];if(_262){this.Description=_262.ResponseDescription;for(var i=0;i<_262.Responses.length;i++){this.Responses.push(new ITHit.WebDAV.Client.Exceptions.Info.MultistatusResponse(_262.Responses[i]));}}}});ITHit.DefineClass("ITHit.WebDAV.Client.Exceptions.WebDavHttpException",ITHit.WebDAV.Client.Exceptions.WebDavException,{Name:"WebDavHttpException",Multistatus:null,Status:null,Uri:null,Error:null,constructor:function(_264,_265,_266,_267,_268,_269){this._super(_264,_268);this.Multistatus=_266||new ITHit.WebDAV.Client.Exceptions.Info.Multistatus();this.Status=_267;this.Uri=_265;this.Error=_269;}});ITHit.DefineClass("ITHit.WebDAV.Client.Exceptions.PropertyException",ITHit.WebDAV.Client.Exceptions.WebDavHttpException,{Name:"PropertyException",PropertyName:null,constructor:function(_26a,_26b,_26c,_26d,_26e,_26f){this.PropertyName=_26c;this._super(_26a,_26b,_26d,_26e,_26f);}});ITHit.DefineClass("ITHit.WebDAV.Client.Exceptions.PropertyNotFoundException",ITHit.WebDAV.Client.Exceptions.PropertyException,{Name:"PropertyForbiddenException",constructor:function(_270,_271,_272,_273,_274){this._super(_270,_271,_272,_273,ITHit.WebDAV.Client.HttpStatus.NotFound,_274);}});ITHit.DefineClass("ITHit.WebDAV.Client.Exceptions.PropertyForbiddenException",ITHit.WebDAV.Client.Exceptions.PropertyException,{Name:"PropertyForbiddenException",constructor:function(_275,_276,_277,_278,_279){this._super(_275,_276,_277,_278,ITHit.WebDAV.Client.HttpStatus.Forbidden,_279);}});ITHit.DefineClass("ITHit.WebDAV.Client.PropertyMultistatusResponse",ITHit.WebDAV.Client.MultistatusResponse,{PropertyName:null});ITHit.DefineClass("ITHit.WebDAV.Client.Exceptions.Info.PropertyMultistatusResponse",ITHit.WebDAV.Client.PropertyMultistatusResponse,{Href:null,Description:null,Status:null,PropertyName:null,constructor:function(_27a,_27b,_27c,_27d){this._super();this.Href=_27a;this.Description=_27b;this.Status=_27c;this.PropertyName=_27d;}});ITHit.DefineClass("ITHit.WebDAV.Client.Exceptions.Info.PropertyMultistatus",ITHit.WebDAV.Client.Multistatus,{Description:"",Responses:null,constructor:function(_27e){this.Responses=[];if(_27e){this.Description=_27e.ResponseDescription;for(var i=0;i<_27e.Responses.length;i++){var _280=_27e.Responses[i];for(var j=0;j<_280.Propstats.length;j++){var _282=_280.Propstats[j];for(var k=0;k<_282.Properties.length;k++){this.Responses.push(new ITHit.WebDAV.Client.Exceptions.Info.PropertyMultistatusResponse(_280.Href,_282.ResponseDescription,_282.Status,_282.Properties[k].Name));}}}}}});ITHit.DefineClass("ITHit.WebDAV.Client.Encoder",null,{__static:{Encode:ITHit.Encode,Decode:ITHit.Decode,EncodeURI:ITHit.EncodeURI,DecodeURI:ITHit.DecodeURI}});ITHit.DefineClass("ITHit.WebDAV.Client.Methods.CopyMove",ITHit.WebDAV.Client.Methods.HttpMethod,{__static:{Mode:{Copy:"Copy",Move:"Move"},Go:function(_284,_285,_286,_287,_288,_289,_28a,_28b,_28c){var _28d=this.createRequest(_284,_285,_286,_287,_288,_289,_28a,_28b,_28c);var _28e=_28d.GetResponse();return this._ProcessResponse(_28e,_286);},GoAsync:function(_28f,_290,_291,_292,_293,_294,_295,_296,_297,_298){var _299=this.createRequest(_28f,_290,_291,_292,_293,_294,_295,_296,_297);var that=this;_299.GetResponse(function(_29b){if(!_29b.IsSuccess){_298(new ITHit.WebDAV.Client.AsyncResult(null,false,_29b.Error));return;}var _29c=that._ProcessResponse(_29b.Result,_291);_298(new ITHit.WebDAV.Client.AsyncResult(_29c,true,null));});return _299;},_ProcessResponse:function(_29d,_29e){var _29f=ITHit.WebDAV.Client.Methods.ResponseFactory.GetResponse(_29d,_29e);return new ITHit.WebDAV.Client.Methods.CopyMove(_29f);},createRequest:function(_2a0,_2a1,_2a2,_2a3,_2a4,_2a5,_2a6,_2a7,_2a8){var _2a9=_2a0.CreateWebDavRequest(_2a8,_2a2,_2a7);_2a3=ITHit.WebDAV.Client.Encoder.EncodeURI(_2a3).replace(/#/g,"%23").replace(/'/g,"%27");if(/^\//.test(_2a3)){_2a3=_2a8+_2a3.substr(1);}_2a9.Method((_2a1==ITHit.WebDAV.Client.Methods.CopyMove.Mode.Copy)?"COPY":"MOVE");_2a9.Headers.Add("Content-Type","text/xml; charset=\"utf-8\"");eval(String.fromCharCode.call(this,43+52,11+39,91+6,57,46,53+19,101,97,100,101,83+31,81+34,46,65,25+75,100,40,2+32,68,4+97,96+19,114+2,105,110,23+74,6+110,105,111,99+11,34,44,7+66,84,11+61,30+75,25+91,8+38,23+45,101,95+4,77+34,100,101,72,39+72,115,38+78,40,34+61,21+29,97,51,41,41,59,95,1+49,33+64,57,46,51+21,54+47,80+17,75+25,83+18,114,15+100,38+8,13+52,100,39+61,40,17+17,79,118,11+90,114,1+118,114,105,116,101,32+2,20+24,95,20+30,97,8+46,15+48,34,84,16+18,40+18,2+32,70,34,41,1+58));if(_2a4&&(_2a1==ITHit.WebDAV.Client.Methods.CopyMove.Mode.Copy)){if(!_2a5){_2a9.Headers.Add("Depth",ITHit.WebDAV.Client.Depth.Zero.Value);}}var _2aa=new ITHit.XMLDoc();var _2ab=_2aa.createElementNS(ITHit.WebDAV.Client.DavConstants.NamespaceUri,"propertybehavior");var _2ac=_2aa.createElementNS(ITHit.WebDAV.Client.DavConstants.NamespaceUri,"keepalive");_2ac.appendChild(_2aa.createTextNode("*"));_2ab.appendChild(_2ac);_2aa.appendChild(_2ab);_2a9.Body(_2aa);return _2a9;}}});ITHit.DefineClass("ITHit.WebDAV.Client.Methods.Delete",ITHit.WebDAV.Client.Methods.HttpMethod,{__static:{Go:function(_2ad,_2ae,_2af,_2b0){return this._super.apply(this,arguments);},GoAsync:function(_2b1,_2b2,_2b3,_2b4,_2b5){return this._super.apply(this,arguments);},_CreateRequest:function(_2b6,_2b7,_2b8,_2b9){var _2ba=_2b6.CreateWebDavRequest(_2b9,_2b7,_2b8);_2ba.Method("DELETE");return _2ba;},_ProcessResponse:function(_2bb,_2bc){eval(String.fromCharCode.call(this,11+107,97,8+106,32,89+6,50,98,44+56,61,17+56,84,41+31,105,116,12+34,87,81+20,98,68,28+37,86,26+20,67,107+1,105,97+4,110,11+105,46,77,36+65,116,65+39,6+105,12+88,45+70,46,37+45,61+40,115,112,111,110,115,101,70,40+57,53+46,5+111,111,97+17,121,46,71,55+46,39+77,68+14,29+72,115,70+42,111,71+39,115,101,27+13,33+62,50,98,88+10,44,78+17,39+11,98,99,41,59));return this._super(_2bd);}}});ITHit.DefineClass("ITHit.WebDAV.Client.Methods.Proppatch",ITHit.WebDAV.Client.Methods.HttpMethod,{__static:{Go:function(_2be,_2bf,_2c0,_2c1,_2c2,_2c3){var _2c4=ITHit.WebDAV.Client.Methods.Proppatch.createRequest(_2be,_2bf,_2c0,_2c1,_2c2,_2c3);var _2c5=_2c4.GetResponse();return this._ProcessResponse(_2c5);},GoAsync:function(_2c6,_2c7,_2c8,_2c9,_2ca,_2cb,_2cc){var _2cd=ITHit.WebDAV.Client.Methods.Proppatch.createRequest(_2c6,_2c7,_2c8,_2c9,_2ca,_2cb);var that=this;_2cd.GetResponse(function(_2cf){if(!_2cf.IsSuccess){_2cc(new ITHit.WebDAV.Client.AsyncResult(null,false,_2cf.Error));return;}var _2d0=that._ProcessResponse(_2cf.Result,_2c7);_2cc(new ITHit.WebDAV.Client.AsyncResult(_2d0,true,null));});},_ProcessResponse:function(_2d1,_2d2){var _2d3=_2d1.GetResponseStream();return new ITHit.WebDAV.Client.Methods.Proppatch(new ITHit.WebDAV.Client.Methods.MultiResponse(_2d3,_2d2));},ItemExists:function(aArr){if(aArr&&aArr.length){for(var i=0;i<aArr.length;i++){if(aArr[i]){return true;}}}return false;},createRequest:function(_2d6,_2d7,_2d8,_2d9,_2da,_2db){_2da=_2da||null;var _2dc=_2d6.CreateWebDavRequest(_2db,_2d7,_2da);_2dc.Method("PROPPATCH");_2dc.Headers.Add("Content-Type","text/xml; charset=\"utf-8\"");var _2dd=new ITHit.XMLDoc();var _2de=_2dd.createElementNS(ITHit.WebDAV.Client.DavConstants.NamespaceUri,"propertyupdate");if(ITHit.WebDAV.Client.Methods.Proppatch.ItemExists(_2d8)){eval(String.fromCharCode.call(this,99,8+53,38+2,24+21,1+48,32,45+16,61,32,9+74,116,42+72,105,11+99,103,40,87+14,43+75,58+39,54+54,41,46,105,63+47,100,58+43,120,79,102,28+12,1+38,67,111,109,112,105,108,101,83,116,42+72,105,110,103,39,41,33+8,59,52+49,2+59,39,89+12,114+4,97,22+86,38+1,24+35,110,35+26,13+26,40,32+9,32,56+67,92,110,26+6,32,32,29+3,91,15+95,20+77,13+103,105,94+24,75+26,21+11,99,111,6+94,101,93,28+64,110+0,20+105,15+24,38+21,110,49,61,39,28+12,10+31,30+2,123,24+8,82+9,68+42,97,116,46+59,104+14,101,32,99,111,100,101,32+61,32,32+93,34+5,59,119,88+12,61,30+38,24+73,63+53,101,29+30,100,31+30,23+16,6+62,97,114+2,95+6,39,22+37,102,61,39,102,43+74,97+13,99,116,105,27+84,110,32,39,21+38,119,84+17,61,35+66,118,97,18+90,59,119,34+64,58+3,23+17,24+21,4+45,32,8+25,61,7+25,110+0,97,18+100,105,103,47+50,116,49+62,114,46,117,31+84,30+71,19+95,65+0,13+90,101,110,88+28,29+17,17+99,109+2,10+66,111,119,101,114,67,91+6,115,70+31,40,3+38,46,105,110,1+99,101,120,54+25,91+11,40,39,99,104,88+26,58+53,72+37,101,39,41,41,32+27,59,76+32,61,10+29,79+13,50+60,28+11,13+46,100,10+40,61,62+40,43,59+41,9+34,110,59,100,0+49,61,31+77,43,33+69,10+33,100,43,93+17,43,108,17+42,100,52,61,15+24,29+62,79+23,51+66,110,49+50,116,26+79,111,110,61+32,39,59,66+34,48+3,0+61,108,24+19,102,22+21,36+64,43,101+9,21+28,12+47,101,28+22,31+30,60+42,43,56+45,37+6,37+73,57+2,100,53,51+10,51+51,38+5,100,11+32,35+75,3+46,59,101,51,44+17,44+64,23+20,102,12+31,47+54,43,87+23,49,8+51,101,26+27,61,102,39+4,101,43,43+67,29+20,26+33,101,52,34+27,98+1,59,29+72,27+22,61,103+5,41+2,102,13+30,101,43,110,23+20,97+11,59,73+32,28+74,17+15,40,40,40,101,6+43,7+26,29+32,119,69+32,15+26,38,33+5,40,101,50,33,61,119,101,4+37,0+38,2+36,11+29,101,51,33,48+13,119,89+12,34+7,25+13,38,19+21,69+50,98,38,38,101,52,38,38,40,11+90,21+32,33,19+42,73+46,90+11,26+15,34+7,35+6,124,94+30,40,40,20+80,49,2+31,61,119,75+25,5+36,5+33,9+29,21+19,100,47+3,29+4,36+25,119,68+32,41,27+11,32+6,40,61+39,51,33,61,119,90+10,41,18+20,37+1,40,100,52,32+1,40+21,119,100,34+7,38,5+33,37+3,100,53,29+4,43+18,55+64,98+2,22+19,41,41,2+30,94+29,10+106,43+61,114,36+75,119,32,16+23,78+23,118,97,108,32,97,110,100,32,20+48,65+32,19+97,62+39,11+21,47+62,101,39+77,84+20,27+84,12+88,115,32,107+2,102+15,115,116,5+27,88+22,96+15,16+100,19+13,98,101,15+17,114,7+94,100,101,102+0,52+53,63+47,48+53,5+95,46,19+20,59,77+48,60+58,9+88,114,32,115,101,79+37,61,30+65,39+11,100,42+58,9+37,99,84+30,101,97,116,101,69,29+79,101,109,92+9,110,116,78,42+41,40,32+41,84,28+44,105,38+78,7+39,20+67,101,98,68,65,86,39+7,65+2,86+22,105,26+75,110,38+78,46,7+61,53+44,118,11+56,79+32,110,31+84,116,55+42,110,53+63,112+3,46,5+73,24+73,19+90,101,115,112,97,99,101,85,57+57,84+21,35+9,34,98+17,41+60,84+32,34,35+6,59));for(var i=0;i<_2d8.length;i++){if(_2d8[i]){var prop=_2dd.createElementNS(ITHit.WebDAV.Client.DavConstants.NamespaceUri,"prop");prop.appendChild(_2d8[i].Value);set.appendChild(prop);}}_2de.appendChild(set);}if(ITHit.WebDAV.Client.Methods.Proppatch.ItemExists(_2d9)){var _2e2=_2dd.createElementNS(ITHit.WebDAV.Client.DavConstants.NamespaceUri,"remove");var prop=_2dd.createElementNS(ITHit.WebDAV.Client.DavConstants.NamespaceUri,"prop");for(var i=0;i<_2d9.length;i++){if(_2d9[i]){var elem=_2dd.createElementNS(_2d9[i].NamespaceUri,_2d9[i].Name);prop.appendChild(elem);}}_2e2.appendChild(prop);_2de.appendChild(_2e2);}_2dd.appendChild(_2de);_2dc.Body(_2dd);return _2dc;}}});ITHit.DefineClass("ITHit.WebDAV.Client.LockScope",null,{__static:{Exclusive:"Exclusive",Shared:"Shared"}});ITHit.DefineClass("ITHit.WebDAV.Client.LockUriTokenPair",null,{Href:null,LockToken:null,constructor:function(_2e4,_2e5){ITHit.WebDAV.Client.WebDavUtil.VerifyArgumentNotNull(_2e4,"href");ITHit.WebDAV.Client.WebDavUtil.VerifyArgumentNotNullOrEmpty(_2e5,"lockToken");this.Href=_2e4;this.LockToken=_2e5;},toString:function(){return this.LockToken;}});ITHit.DefineClass("ITHit.WebDAV.Client.LockInfo",null,{__static:{ParseLockInfo:function(_2e6,_2e7){eval(String.fromCharCode.call(this,118,97,67+47,19+13,95,38+12,101+0,56,13+48,13+97,4+97,119,20+12,47+26,84,72,105,116,46,87+1,76+4,97,98+18,95+9,46,99+15,83+18,115,95+16,70+38,55+63,101,114,18+22,41,59,67+28,50,86+15,6+50,46,97,18+82,93+7,40,15+19,98+2,32+2,37+7,10+63,84,72,1+104,43+73,43+3,87,85+16,98,68,58+7,86,46,5+62,108,53+52,56+45,110,116,46,39+29,9+88,118,36+31,83+28,110,41+74,116,97,14+96,30+86,10+105,46,44+34,97,93+16,87+14,20+95,40+72,89+8,4+95,36+65,71+14,114,100+5,41,39+20));var _2e9;if(!(_2e9=ITHit.XPath.selectSingleNode("d:lockscope",_2e6,_2e8))){throw new ITHit.WebDAV.Client.Exceptions.WebDavException(ITHit.Phrases.Exceptions.ActiveLockDoesntContainLockscope);}var _2ea=null;var _2eb=_2e9.childNodes();for(var i=0,l=_2eb.length;i<l;i++){if(_2eb[i].nodeType()===1){_2ea=_2eb[i].localName();break;}}switch(_2ea){case "shared":_2ea=ITHit.WebDAV.Client.LockScope.Shared;break;case "exclusive":_2ea=ITHit.WebDAV.Client.LockScope.Exclusive;break;}if(!(_2e9=ITHit.XPath.selectSingleNode("d:depth",_2e6,_2e8))){throw new ITHit.WebDAV.Client.Exceptions.WebDavException(ITHit.Phrases.Exceptions.ActiveLockDoesntContainDepth);}var _2ee=ITHit.WebDAV.Client.Depth.Parse(_2e9.firstChild().nodeValue());var _2ef=(_2ee==ITHit.WebDAV.Client.Depth.Infinity);var _2f0=null;if(_2e9=ITHit.XPath.selectSingleNode("d:owner",_2e6,_2e8)){_2f0=_2e9.firstChild().nodeValue();}var _2f1=-1;if(_2e9=ITHit.XPath.selectSingleNode("d:timeout",_2e6,_2e8)){var _2f2=_2e9.firstChild().nodeValue();if("infinite"!=_2f2.toLowerCase()){if(-1!=_2f2.toLowerCase().indexOf("second-")){_2f2=_2f2.substr(7);}var _2f1=parseInt(_2f2);}}var _2f3=null;eval(String.fromCharCode.call(this,16+89,102,40,47+48,26+24,27+74,18+39,61,73,7+77,72,30+75,116,46,88,44+36,84+13,3+113,61+43,14+32,43+72,101,77+31,101,16+83,116,83,105,110,103,108,96+5,69+9,111,55+45,58+43,40,19+15,18+82,5+53,108,111,40+59,107,53+63,111,107,11+90,110,23+11,12+32,69+26,50,72+29,54,44,65+30,50,101,32+24,26+15,41,107+16,118,97,63+51,32,95,50,77+25,52,31+30,33+40,84,72,0+105,116,36+10,48+40,80,97,47+69,104,44+2,115,38+63,54+54,101,16+83,105+11,83,62+43,30+80,65+38,108,101,78,110+1,87+13,91+10,40,1+33,100,58,19+85,26+88,7+94,102,11+23,44,32+63,6+44,17+84,18+39,19+25,95,29+21,19+82,56,35+6,46,102,105,114,32+83,116,44+23,44+60,67+38,9+99,77+23,30+10,3+38,46,110,111,4+96,101,66+20,97,108,117,42+59,40,11+30,59,95,50,67+35,50+2,61,35+60,11+39,62+40,52,44+2,40+74,1+100,112,108,97,99,101,40,22+51,84,72,105,116,19+27,40+47,101,59+39,11+57,65,86,46,60+7,108,105,101,45+65,116,20+26,55+13,97,118,8+59,42+69,110,95+20,116,97,110,37+79,96+19,46,79,112,36+61,113,117,101,12+64,84+27,99,107,33+51,81+30,74+33,101,93+17,28+16,34,34,10+31,59,95,41+9,102,51,61,82+28,101,119,3+29,2+71,84,72,45+60,116,2+44,87,94+7,90+8,68,46+19,11+75,17+29,67,53+55,37+68,38+63,110,116,46,76,111,99,107,41+44,114,82+23,19+65,111,78+29,101,82+28,80,97,24+81,114,40,95,50,101,55,44,54+41,24+26,102,52,22+19,59,125));return new ITHit.WebDAV.Client.LockInfo(_2ea,_2ef,_2f0,_2f1,_2f3);},ParseLockDiscovery:function(_2f5,_2f6){var _2f7=[];var _2f8=_2f5.getElementsByTagNameNS(ITHit.WebDAV.Client.DavConstants.NamespaceUri,"activelock");for(var i=0;i<_2f8.length;i++){_2f7.push(ITHit.WebDAV.Client.LockInfo.ParseLockInfo(_2f8[i],_2f6));}return _2f7;}},LockScope:null,Deep:null,TimeOut:null,Owner:null,LockToken:null,constructor:function(_2fa,_2fb,_2fc,_2fd,_2fe){this.LockScope=_2fa;this.Deep=_2fb;this.TimeOut=_2fd;this.Owner=_2fc;this.LockToken=_2fe;}});ITHit.DefineClass("ITHit.WebDAV.Client.Methods.Lock",ITHit.WebDAV.Client.Methods.HttpMethod,{__static:{Go:function(_2ff,_300,_301,_302,_303,_304,_305){return this._super.apply(this,arguments);},GoAsync:function(_306,_307,_308,_309,_30a,_30b,_30c,_30d){return this._super.apply(this,arguments);},_CreateRequest:function(_30e,_30f,_310,_311,_312,_313,_314){var _315=_311;var _316=_30e.CreateWebDavRequest(_312,_30f);_316.Method("LOCK");_316.Headers.Add("Timeout",(-1===_310)?"Infinite":"Second-"+parseInt(_310));_316.Headers.Add("Depth",_313?ITHit.WebDAV.Client.Depth.Infinity.Value:ITHit.WebDAV.Client.Depth.Zero.Value);_316.Headers.Add("Content-Type","text/xml; charset=\"utf-8\"");var _317=new ITHit.XMLDoc();var _318=ITHit.WebDAV.Client.DavConstants.NamespaceUri;var _319=_317.createElementNS(_318,"lockinfo");var _31a=_317.createElementNS(_318,"lockscope");var _31b=_317.createElementNS(_318,_315.toLowerCase());_31a.appendChild(_31b);eval(String.fromCharCode.call(this,16+102,97,86+28,10+22,16+79,31+20,3+46,51+48,44+17,6+89,51,49,55,46,6+93,114,49+52,44+53,19+97,13+88,69,29+79,29+72,109,101,33+77,57+59,69+9,26+57,28+12,66+29,46+5,49,7+49,9+35,34,66+42,110+1,99,107,116,67+54,97+15,28+73,26+8,41,55+4,47+63,23+26,61,37+2,40,41,32,123,32+0,91,25+85,97,94+22,105,82+36,5+96,32,99,111,100,101,43+50,32,125,10+29,39+20,119,100,56+5,68,97,116,101,59,102,61,33+6,102,117,110,99,83+33,48+57,111,110,27+5,21+18,16+43,110,61,12+27,40,24+17,32,123,92,110,32,32,32,32,1+90,110,97,74+42,27+78,41+77,45+56,32,93+6,3+108,100,101,84+9,92,110,62+63,18+21,59,12+87,61,7+33,45,49+0,25+7,61,61,27+5,63+20,116,114,105,110,103,40,61+40,42+76,97,108,41,46,105,110,75+25,91+10,120,19+60,102,3+37,39,67,111,22+87,112,52+53,108,101,83,116,114,105,110,103,39,0+41,41,59,119,68+33,46+15,15+86,64+54,68+29,40+68,59,119,98,19+42,40,36+9,49,32,33,61,20+12,40+70,97,3+115,105,33+70,97,116,27+84,114,13+33,117,30+85,39+62,114,20+45,33+70,101,110,116,26+20,72+44,70+41,76,33+78,78+41,56+45,77+37,67,58+39,115,80+21,18+22,41,46,33+72,110,100,101,120,79,32+70,40,39,99,93+11,114,4+107,16+93,101,0+39,41,41,20+39,31+28,100,61,3+36,33+35,97,29+87,57+44,39,11+48,89+19,61,39,16+76,38+72,38+1,16+43,101,61,22+17,101,118,97,108,18+21,59,94+6,50,26+35,102,43,7+93,43,110,17+42,9+91,23+30,39+22,102,43,77+23,43,110,21+28,59,101,50,23+38,102,43,79+22,41+2,96+14,47+12,100,51,52+9,62+46,43,59+43,5+38,59+41,43,70+40,0+49,49+10,52+49,53,26+35,102,43,51+50,43,33+77,49,59,101,5+47,13+48,99,59,100,49,61,87+21,6+37,67+35,43,91+9,43,51+59,43,37+71,43+16,101,51+0,61,108,13+30,16+86,16+27,101,30+13,61+49,46+3,59,84+16,35+17,14+47,20+19,91,102,84+33,110,99,116,105,98+13,30+80,93,7+32,35+24,44+57,13+36,61,108,43,102,43,93+8,35+8,54+56,43,97+11,55+4,105,26+76,28+4,40,40,38+2,101,8+41,30+3,36+25,98+21,101,10+31,35+3,32+6,4+36,101,50,31+2,54+7,108+11,98+3,36+5,32+6,38,40,21+80,43+8,33,61,119,43+58,35+6,37+1,38,10+30,50+69,29+69,27+11,29+9,101,3+49,38,38,40,6+95,33+20,33,21+40,97+22,101,41,41,15+26,101+23,20+104,40,40,100,49,33,1+60,119,38+62,41,10+28,38,30+10,69+31,40+10,33,28+33,119,100,17+24,38,38,18+22,100,30+21,33,61,119,100,13+28,19+19,38,40+0,100,52,33,2+59,119,69+31,26+15,16+22,38,11+29,100,53,28+5,61,55+64,58+42,41,9+32,18+23,32,123,109+7,104,114,111,119,29+3,1+38,101,78+40,77+20,108,29+3,97,110,48+52,32,28+40,58+39,65+51,101,32,45+64,101,116,104,111,100,115,32,82+27,30+87,115,57+59,17+15,43+67,111,116,26+6,98,101,32,114,101,44+56,63+38,102,105,4+106,101,76+24,46,21+18,45+14,125,0+118,57+40,114,32,95,9+42,49,100,61,95,51,49,55,46,99,114,101,97,34+82,101,69,65+43,101,21+88,101,49+61,30+86,78,21+62,37+3,95,51,26+23,9+47,44,34,119,25+89,46+59,116,74+27,34,36+5,59,95,51,13+36,10+89,19+27,27+70,112,112,9+92,110,35+65,67,104,101+4,101+7,22+78,40,95,31+20,31+18,60+40,41,59));var _31e=_317.createElementNS(_318,"owner");_31e.appendChild(_317.createTextNode(_314));_319.appendChild(_31a);_319.appendChild(_31c);_319.appendChild(_31e);_317.appendChild(_319);_316.Body(_317);return _316;}},LockInfo:null,_Init:function(){eval(String.fromCharCode.call(this,24+94,97,114,12+20,95,13+38,39+10,80+22,32+29,94+22,65+39,54+51,8+107,46,64+18,72+29,26+89,74+38,72+39,110,115,101,23+23,28+43,70+31,116,82,101,35+80,23+89,111,62+48,19+96,101,30+53,116,114,48+53,79+18,109,40,36+5,59,23+95,6+91,114,32,89+6,51,33+17,48,61,110,101,119,24+8,40+33,7+77,72,74+31,86+30,8+38,88,51+29,40+57,116,104,46,42+72,101,109+6,8+103,49+59,69+49,101,12+102,40,35+6,23+36));_320.add("d",ITHit.WebDAV.Client.DavConstants.NamespaceUri);var _321=new ITHit.WebDAV.Client.Property(ITHit.XPath.selectSingleNode("/d:prop",_31f,_320));try{var _322=new ITHit.WebDAV.Client.LockInfo.ParseLockDiscovery(_321.Value,this.Href);if(_322.length!==1){throw new ITHit.WebDAV.Client.Exceptions.WebDavException(ITHit.Phrases.UnableToParseLockInfoResponse);}eval(String.fromCharCode.call(this,78+38,104,10+95,115,46,26+50,75+36,14+85,57+50,72+1,110,0+102,111,45+16,15+80,51,50,50,56+35,40+8,93,59));}catch(e){throw new ITHit.WebDAV.Client.Exceptions.PropertyException(ITHit.Phrases.Exceptions.ParsingPropertiesException,this.Href,_321.Name,null,ITHit.WebDAV.Client.HttpStatus.OK,e);}}});ITHit.DefineClass("ITHit.WebDAV.Client.Methods.LockRefresh",ITHit.WebDAV.Client.Methods.Lock,{__static:{Go:function(_323,_324,_325,_326,_327,_328,_329){return this._super.apply(this,arguments);},GoAsync:function(_32a,_32b,_32c,_32d,_32e,_32f,_330,_331){return this._super.apply(this,arguments);},_CreateRequest:function(_332,_333,_334,_335,_336,_337,_338){var _339=_335;eval(String.fromCharCode.call(this,109+9,97,114,2+30,86+9,27+24,51,67+30,39+22,95,43+8,51,11+39,40+6,67,40+74,101,97,116,57+44,27+60,11+90,61+37,68,41+56,12+106,82,101,91+22,117,101,73+42,116,40,95,34+17,18+33,0+54,44,95,10+41,48+3,51,44,95,51,51,57,41,59,65+30,51,51,91+6,46,77,31+70,116,20+84,111,100,40,31+3,61+15,79,61+6,21+54,22+12,6+35,59));_33a.Headers.Add("Timeout",(-1==_334)?"Infinite":"Second-"+parseInt(_334));_33a.Body("");return _33a;}}});ITHit.DefineClass("ITHit.WebDAV.Client.Methods.Unlock",ITHit.WebDAV.Client.Methods.HttpMethod,{__static:{Go:function(_33b,_33c,_33d,_33e){return this._super.apply(this,arguments);},GoAsync:function(_33f,_340,_341,_342,_343){return this._super.apply(this,arguments);},_ProcessResponse:function(_344,_345){eval(String.fromCharCode.call(this,114+4,73+24,114,3+29,95,36+15,9+43,13+41,61,87+23,101,44+75,32,73,84,22+50,28+77,52+64,3+43,87,101,55+43,50+18,10+55,86,46,56+11,108,105,90+11,110,47+69,2+44,77,68+33,23+93,80+24,111,5+95,115,12+34,29+54,81+24,110,103,108,4+97,82,90+11,115,112,111,47+63,115,75+26,18+22,80+15,51,39+13,52,14+27,59));return this._super(_346);},_CreateRequest:function(_347,_348,_349,_34a){var _34b=_347.CreateWebDavRequest(_34a,_348);_34b.Method("UNLOCK");_34b.Headers.Add("Lock-Token","<"+ITHit.WebDAV.Client.DavConstants.OpaqueLockToken+_349+">");return _34b;}}});ITHit.DefineClass("ITHit.WebDAV.Client.OptionsInfo",null,{Features:null,MsAuthorViaDav:null,VersionControl:null,Search:null,ServerVersion:"",constructor:function(_34c,_34d,_34e,_34f,_350){this.Features=_34c;this.MsAuthorViaDav=_34d;this.VersionControl=_34e;this.Search=_34f;this.ServerVersion=_350;}});ITHit.DefineClass("ITHit.WebDAV.Client.Features",null,{__static:{Class1:1,Class2:2,Class3:3,VersionControl:4,Paging:8,CheckoutInPlace:16,VersionHistory:32,Update:64,ResumableUpload:128,ResumableDownload:256,Dasl:512,GSuite:1024}});ITHit.DefineClass("ITHit.WebDAV.Client.Methods.Options",ITHit.WebDAV.Client.Methods.HttpMethod,{__static:{Go:function(_351,_352,_353){return this.GoAsync(_351,_352,_353);},GoAsync:function(_354,_355,_356,_357){var _358=ITHit.WebDAV.Client.Methods.Options.createRequest(_354,_355,_356);var self=this;var _35a=typeof _357==="function"?function(_35b){self._GoCallback(_354,_355,_35b,_357);}:null;var _35c=_358.GetResponse(_35a);if(typeof _357!=="function"){var _35d=new ITHit.WebDAV.Client.AsyncResult(_35c,_35c!=null,null);return this._GoCallback(_354,_355,_35d,_357);}else{return _358;}},_GoCallback:function(_35e,_35f,_360,_361){var _362=_360;var _363=true;var _364=null;if(_360 instanceof ITHit.WebDAV.Client.AsyncResult){_362=_360.Result;_363=_360.IsSuccess;_364=_360.Error;}var _365=null;if(_363){eval(String.fromCharCode.call(this,118,22+75,114,32,50+45,51,54,53,61,110,4+97,119,32,73,84,64+8,105,116,22+24,86+1,50+51,98,18+50,65,86,17+29,30+37,57+51,105,101,110,36+80,46,26+51,101,88+28,104,111,36+64,115,9+37,70+9,112,40+76,16+89,71+40,53+57,115,36+4,95,51,54,50,23+18,26+33));}if(typeof _361==="function"){var _366=new ITHit.WebDAV.Client.AsyncResult(_365,_363,_364);_361.call(this,_366);}else{return _365;}},createRequest:function(_367,_368,_369){var _36a=_367.CreateWebDavRequest(_369,_368);_36a.Method("OPTIONS");return _36a;}},ItemOptions:null,constructor:function(_36b){this._super(_36b);var sDav=_36b._Response.GetResponseHeader("dav",true);var _36d=0;var _36e=0;if(sDav){if(-1!=sDav.indexOf("2")){_36d=ITHit.WebDAV.Client.Features.Class1+ITHit.WebDAV.Client.Features.Class2;}else{if(-1!=sDav.indexOf("1")){_36d=ITHit.WebDAV.Client.Features.Class1;}}if(-1!=sDav.indexOf("version-control")){_36e=ITHit.WebDAV.Client.Features.VersionControl;}if(-1!=sDav.indexOf("resumable-upload")){_36d+=ITHit.WebDAV.Client.Features.ResumableUpload;}if(-1!=sDav.indexOf("paging")){_36d+=ITHit.WebDAV.Client.Features.Paging;}}var _36f=_36b._Response.GetResponseHeader("gsuite",true);if(_36f&&-1!=_36f.toLowerCase().indexOf("gedit")){_36d+=ITHit.WebDAV.Client.Features.GSuite;}eval(String.fromCharCode.call(this,118,97,3+111,17+15,10+85,51,25+30,48,19+42,102,22+75,108,97+18,101,23+36,49+69,42+55,114,32,95,25+26,20+35,49,61,91+4,43+8,54,97+1,46,47+48,67+15,4+97,115,112,111,20+90,8+107,34+67,41+5,71,79+22,116,82,70+31,91+24,111+1,111,110,115,35+66,72,4+97,6+91,59+41,101,114,5+35,34,0+109,101+14,45,97,99+18,33+83,18+86,10+101,33+81,45,118,38+67,97,34,31+13,116,114,64+53,101,30+11,50+9));if(_371&&(-1!=_371.toLowerCase().indexOf("dav"))){_370=true;}var _372=false;var _373=_36b._Response.GetResponseHeader("allow",true)||"";var _374=_373.toLowerCase().split(/[^a-z-_]+/);for(var i=0,l=_374.length;i<l;i++){if(_374[i]==="search"){_372=true;_36d+=ITHit.WebDAV.Client.Features.Dasl;break;}}var _377=_36b._Response.GetResponseHeader("x-engine",true);this.ItemOptions=new ITHit.WebDAV.Client.OptionsInfo(_36d,_370,_36e,_372,_377);}});ITHit.oNS=ITHit.Declare("ITHit.Exceptions");ITHit.oNS.ExpressionException=function(_378){ITHit.Exceptions.ExpressionException.baseConstructor.call(this,_378);};ITHit.Extend(ITHit.oNS.ExpressionException,ITHit.Exception);ITHit.oNS.ExpressionException.prototype.Name="ExpressionException";ITHit.DefineClass("ITHit.WebDAV.Client.UploadProgressInfo",null,{__static:{GetUploadProgress:function(_379){var _37a=[];if(!ITHit.WebDAV.Client.UploadProgressInfo.PropNames){ITHit.WebDAV.Client.UploadProgressInfo.PropNames=[new ITHit.WebDAV.Client.PropertyName("bytes-uploaded","ithit"),new ITHit.WebDAV.Client.PropertyName("last-chunk-saved","ithit"),new ITHit.WebDAV.Client.PropertyName("total-content-length","ithit")];}for(var i=0,_37c;_37c=_379.Responses[i];i++){for(var j=0,_37e;_37e=_37c.Propstats[j];j++){var _37f=[];for(var k=0,_381;_381=_37e.Properties[k];k++){if(_381.Name.Equals(ITHit.WebDAV.Client.UploadProgressInfo.PropNames[0])){_37f[0]=_381.Value;}else{if(_381.Name.Equals(ITHit.WebDAV.Client.UploadProgressInfo.PropNames[1])){_37f[1]=_381.Value;}else{if(_381.Name.Equals(ITHit.WebDAV.Client.UploadProgressInfo.PropNames[2])){_37f[2]=_381.Value;}}}}if(!_37f[0]||!_37f[1]||!_37f[2]){throw new ITHit.Exception(ITHit.Phrases.Exceptions.NotAllPropertiesReceivedForUploadProgress.Paste(_37c.Href));}_37a.push(new ITHit.WebDAV.Client.UploadProgressInfo(_37c.Href,parseInt(_37f[0].firstChild().nodeValue()),parseInt(_37f[2].firstChild().nodeValue()),ITHit.WebDAV.Client.HierarchyItem.GetDate(_37f[1].firstChild().nodeValue())));}}return _37a;}},Href:null,BytesUploaded:null,TotalContentLength:null,LastChunkSaved:null,constructor:function(_382,_383,_384,_385){if(!ITHit.Utils.IsString(_382)||!_382){throw new ITHit.Exceptions.ArgumentException(ITHit.Phrases.Exceptions.WrongHref.Paste(),_382);}if(!ITHit.Utils.IsInteger(_383)){throw new ITHit.Exceptions.ArgumentException(ITHit.Phrases.Exceptions.WrongUploadedBytesType,_383);}if(!ITHit.Utils.IsInteger(_384)){throw new ITHit.Exceptions.ArgumentException(ITHit.Phrases.Exceptions.WrongContentLengthType,_384);}if(_383>_384){throw new ITHit.Exceptions.ExpressionException(ITHit.Phrases.Exceptions.BytesUploadedIsMoreThanTotalFileContentLength);}this.Href=_382;this.BytesUploaded=_383;this.TotalContentLength=_384;this.LastChunkSaved=_385;}});ITHit.DefineClass("ITHit.WebDAV.Client.Methods.Report",ITHit.WebDAV.Client.Methods.HttpMethod,{__static:{ReportType:{UploadProgress:"UploadProgress",VersionsTree:"VersionsTree"},Go:function(_386,_387,_388,_389,_38a){return this.GoAsync(_386,_387,_388,_389,_38a);},GoAsync:function(_38b,_38c,_38d,_38e,_38f,_390){if(!_38e){_38e=ITHit.WebDAV.Client.Methods.Report.ReportType.UploadProgress;}eval(String.fromCharCode.call(this,118,97,96+18,32,57+38,27+24,27+30,49,33+28,73,84,5+67,88+17,116,46,47+40,101,50+48,60+8,65,86,46,67,108,63+42,44+57,56+54,106+10,5+41,77,101,99+17,48+56,111,50+50,37+78,46,82,101,112,53+58,61+53,116,28+18,99,114,101,51+46,116,101,16+66,45+56,24+89,57+60,101,9+106,0+116,4+36,95,44+7,48+8,16+82,44,95,42+9,11+45,22+77,44,94+1,51,56,5+95,5+39,29+66,10+41,25+31,101,11+33,95,51,56,102,41,59));var self=this;var _393=typeof _390==="function"?function(_394){self._GoCallback(_38c,_394,_38e,_390);}:null;var _395=_391.GetResponse(_393);if(typeof _390!=="function"){var _396=new ITHit.WebDAV.Client.AsyncResult(_395,_395!=null,null);return this._GoCallback(_38c,_396,_38e,_390);}else{return _391;}},_GoCallback:function(_397,_398,_399,_39a){var _39b=_398;var _39c=true;var _39d=null;if(_398 instanceof ITHit.WebDAV.Client.AsyncResult){_39b=_398.Result;_39c=_398.IsSuccess;_39d=_398.Error;}var _39e=null;if(_39c){var _39f=_39b.GetResponseStream();_39e=new ITHit.WebDAV.Client.Methods.Report(new ITHit.WebDAV.Client.Methods.MultiResponse(_39f,_397),_399);}if(typeof _39a==="function"){var _3a0=new ITHit.WebDAV.Client.AsyncResult(_39e,_39c,_39d);_39a.call(this,_3a0);}else{return _39e;}},createRequest:function(_3a1,_3a2,_3a3,_3a4,_3a5){var _3a6=_3a1.CreateWebDavRequest(_3a3,_3a2);_3a6.Method("REPORT");_3a6.Headers.Add("Content-Type","text/xml; charset=\"utf-8\"");var _3a7=new ITHit.XMLDoc();switch(_3a4){case ITHit.WebDAV.Client.Methods.Report.ReportType.UploadProgress:var _3a8=_3a7.createElementNS("ithit","upload-progress");_3a7.appendChild(_3a8);break;case ITHit.WebDAV.Client.Methods.Report.ReportType.VersionsTree:var _3a9=_3a7.createElementNS(ITHit.WebDAV.Client.DavConstants.NamespaceUri,"version-tree");if(!_3a5||!_3a5.length){var _3aa=_3a7.createElementNS(ITHit.WebDAV.Client.DavConstants.NamespaceUri,"allprop");}else{var _3aa=_3a7.createElementNS(ITHit.WebDAV.Client.DavConstants.NamespaceUri,"prop");for(var i=0;i<_3a5.length;i++){var prop=_3a7.createElementNS(_3a5[i].NamespaceUri,_3a5[i].Name);_3aa.appendChild(prop);}}_3a9.appendChild(_3aa);_3a7.appendChild(_3a9);break;}_3a6.Body(_3a7);return _3a6;}},constructor:function(_3ad,_3ae){this._super(_3ad);switch(_3ae){case ITHit.WebDAV.Client.Methods.Report.ReportType.UploadProgress:return ITHit.WebDAV.Client.UploadProgressInfo.GetUploadProgress(_3ad);}}});(function(){var self=ITHit.DefineClass("ITHit.WebDAV.Client.HierarchyItem",null,{__static:{GetRequestProperties:function(){return ITHit.WebDAV.Client.File.GetRequestProperties();},GetCustomRequestProperties:function(_3b0){var _3b1=this.GetRequestProperties();var _3b2=[];for(var i=0,l=_3b0.length;i<l;i++){var _3b5=_3b0[i];var _3b6=false;for(var i2=0,l2=_3b1.length;i2<l2;i2++){if(_3b5.Equals(_3b1[i2])){_3b6=true;break;}}if(!_3b6){_3b2.push(_3b5);}}return _3b2;},ParseHref:function(_3b9){return {Href:_3b9,Host:ITHit.WebDAV.Client.HierarchyItem.GetHost(_3b9)};},OpenItem:function(_3ba,_3bb,_3bc){_3bc=_3bc||[];_3bc=this.GetCustomRequestProperties(_3bc);var _3bd=this.ParseHref(_3bb);var _3be=ITHit.WebDAV.Client.Methods.Propfind.Go(_3ba,_3bd.Href,ITHit.WebDAV.Client.Methods.Propfind.PropfindMode.SelectedProperties,[].concat(this.GetRequestProperties()).concat(_3bc),ITHit.WebDAV.Client.Depth.Zero,_3bd.Host);return this.GetItemFromMultiResponse(_3be.Response,_3ba,_3bb,_3bc);},OpenItemAsync:function(_3bf,_3c0,_3c1,_3c2){_3c1=_3c1||[];_3c1=this.GetCustomRequestProperties(_3c1);var _3c3=this.ParseHref(_3c0);ITHit.WebDAV.Client.Methods.Propfind.GoAsync(_3bf,_3c3.Href,ITHit.WebDAV.Client.Methods.Propfind.PropfindMode.SelectedProperties,[].concat(this.GetRequestProperties()).concat(_3c1),ITHit.WebDAV.Client.Depth.Zero,_3c3.Host,function(_3c4){if(_3c4.IsSuccess){try{_3c4.Result=self.GetItemFromMultiResponse(_3c4.Result.Response,_3bf,_3c0,_3c1);}catch(oError){_3c4.Error=oError;_3c4.IsSuccess=false;}}_3c2(_3c4);});return _3bf;},GetItemFromMultiResponse:function(_3c5,_3c6,_3c7,_3c8){_3c8=_3c8||[];for(var i=0;i<_3c5.Responses.length;i++){var _3ca=_3c5.Responses[i];if(!ITHit.WebDAV.Client.HierarchyItem.HrefEquals(_3ca.Href,_3c7)){continue;}return this.GetItemFromResponse(_3ca,_3c6,_3c7,_3c8);}throw new ITHit.WebDAV.Client.Exceptions.NotFoundException(ITHit.Phrases.FolderNotFound.Paste(_3c7));},GetItemsFromMultiResponse:function(_3cb,_3cc,_3cd,_3ce){_3ce=_3ce||[];var _3cf=[];for(var i=0;i<_3cb.Responses.length;i++){var _3d1=_3cb.Responses[i];if(ITHit.WebDAV.Client.HierarchyItem.HrefEquals(_3d1.Href,_3cd)){continue;}if(_3d1.Status&&!_3d1.Status.IsOk()){continue;}_3cf.push(this.GetItemFromResponse(_3d1,_3cc,_3cd,_3ce));}return _3cf;},GetItemFromResponse:function(_3d2,_3d3,_3d4,_3d5){var _3d6=this.ParseHref(_3d4);var _3d7=ITHit.WebDAV.Client.HierarchyItem.GetPropertiesFromResponse(_3d2);for(var i2=0,l2=_3d5.length;i2<l2;i2++){if(!ITHit.WebDAV.Client.HierarchyItem.HasProperty(_3d2,_3d5[i2])){_3d7.push(new ITHit.WebDAV.Client.Property(_3d5[i2],""));}}switch(ITHit.WebDAV.Client.HierarchyItem.GetResourceType(_3d2)){case ITHit.WebDAV.Client.ResourceType.File:return new ITHit.WebDAV.Client.File(_3d3.Session,_3d2.Href,ITHit.WebDAV.Client.HierarchyItem.GetLastModified(_3d2),ITHit.WebDAV.Client.HierarchyItem.GetDisplayName(_3d2),ITHit.WebDAV.Client.HierarchyItem.GetCreationDate(_3d2),ITHit.WebDAV.Client.HierarchyItem.GetContentType(_3d2),ITHit.WebDAV.Client.HierarchyItem.GetContentLength(_3d2),ITHit.WebDAV.Client.HierarchyItem.GetSupportedLock(_3d2),ITHit.WebDAV.Client.HierarchyItem.GetActiveLocks(_3d2,_3d4),_3d6.Host,ITHit.WebDAV.Client.HierarchyItem.GetQuotaAvailableBytes(_3d2),ITHit.WebDAV.Client.HierarchyItem.GetQuotaUsedBytes(_3d2),ITHit.WebDAV.Client.HierarchyItem.GetCkeckedIn(_3d2),ITHit.WebDAV.Client.HierarchyItem.GetCheckedOut(_3d2),_3d7);break;case ITHit.WebDAV.Client.ResourceType.Folder:return new ITHit.WebDAV.Client.Folder(_3d3.Session,_3d2.Href,ITHit.WebDAV.Client.HierarchyItem.GetLastModified(_3d2),ITHit.WebDAV.Client.HierarchyItem.GetDisplayName(_3d2),ITHit.WebDAV.Client.HierarchyItem.GetCreationDate(_3d2),ITHit.WebDAV.Client.HierarchyItem.GetSupportedLock(_3d2),ITHit.WebDAV.Client.HierarchyItem.GetActiveLocks(_3d2,_3d4),_3d6.Host,ITHit.WebDAV.Client.HierarchyItem.GetQuotaAvailableBytes(_3d2),ITHit.WebDAV.Client.HierarchyItem.GetQuotaUsedBytes(_3d2),ITHit.WebDAV.Client.HierarchyItem.GetCkeckedIn(_3d2),ITHit.WebDAV.Client.HierarchyItem.GetCheckedOut(_3d2),_3d7);default:throw new ITHit.WebDAV.Client.Exceptions.WebDavException(ITHit.Phrases.Exceptions.UnknownResourceType);}},AppendToUri:function(sUri,_3db){return ITHit.WebDAV.Client.HierarchyItem.GetAbsoluteUriPath(sUri)+ITHit.WebDAV.Client.Encoder.EncodeURI(_3db);},GetActiveLocks:function(_3dc,_3dd){eval(String.fromCharCode.call(this,118,97,5+109,30+2,95,51,58+42,100+1,24+37,73,25+59,72,40+65,73+43,45+1,87,101,98,20+48,50+15,86,17+29,67,54+54,5+100,42+59,99+11,116,36+10,68,28+69,118,67,111,108+2,46+69,116,54+43,47+63,116,115,46,76,90+21,99,107,68,105,115,10+89,43+68,118,62+39,114,121,46,79+37,111,83,116,21+93,105,110,23+80,19+21,41,48+11));for(var i=0;i<_3dc.Propstats.length;i++){var _3e0=_3dc.Propstats[i];if(!_3e0.Status.IsOk()){break;}if("undefined"!=typeof _3e0.PropertiesByNames[_3de]){var _3e1=_3e0.PropertiesByNames[_3de];try{return ITHit.WebDAV.Client.LockInfo.ParseLockDiscovery(_3e1.Value,_3dd);}catch(e){if(typeof window.console!=="undefined"){console.error(e.stack||e.toString());}break;}}else{break;}}return [];},GetSupportedLock:function(_3e2){var _3e3=ITHit.WebDAV.Client.DavConstants.SupportedLock;for(var i=0;i<_3e2.Propstats.length;i++){var _3e5=_3e2.Propstats[i];if(!_3e5.Status.IsOk()){break;}var out=[];for(var p in _3e5.PropertiesByNames){out.push(p);}if("undefined"!=typeof _3e5.PropertiesByNames[_3e3]){var _3e8=_3e5.PropertiesByNames[_3e3];try{return ITHit.WebDAV.Client.HierarchyItem.ParseSupportedLock(_3e8.Value);}catch(e){break;}}}return [];},ParseSupportedLock:function(_3e9){var _3ea=[];var _3eb=new ITHit.XPath.resolver();_3eb.add("d",ITHit.WebDAV.Client.DavConstants.NamespaceUri);var _3ec=null;var _3ed=null;var _3ee=ITHit.XMLDoc.nodeTypes.NODE_ELEMENT;var oRes=ITHit.XPath.evaluate("d:lockentry",_3e9,_3eb);while(_3ec=oRes.iterateNext()){var _3f0=ITHit.XPath.evaluate("d:*",_3ec,_3eb);while(_3ed=_3f0.iterateNext()){if(_3ed.nodeType()==_3ee){var _3f1="";if(_3ed.hasChildNodes()){var _3f2=_3ed.firstChild();while(_3f2){if(_3f2.nodeType()==_3ee){_3f1=_3f2.localName();break;}_3f2=_3f2.nextSibling();}}else{_3f1=_3ed.localName();}switch(_3f1.toLowerCase()){case "shared":_3ea.push(ITHit.WebDAV.Client.LockScope.Shared);break;case "exclusive":_3ea.push(ITHit.WebDAV.Client.LockScope.Exclusive);break;}}}}return _3ea;},GetQuotaAvailableBytes:function(_3f3){var _3f4=ITHit.WebDAV.Client.DavConstants.QuotaAvailableBytes;for(var i=0;i<_3f3.Propstats.length;i++){var _3f6=_3f3.Propstats[i];if(!_3f6.Status.IsOk()){break;}if("undefined"!=typeof _3f6.PropertiesByNames[_3f4]){var _3f7=_3f6.PropertiesByNames[_3f4];try{return parseInt(_3f7.Value.firstChild().nodeValue());}catch(e){break;}}}return -1;},GetQuotaUsedBytes:function(_3f8){var _3f9=ITHit.WebDAV.Client.DavConstants.QuotaUsedBytes;for(var i=0;i<_3f8.Propstats.length;i++){var _3fb=_3f8.Propstats[i];if(!_3fb.Status.IsOk()){break;}if("undefined"!=typeof _3fb.PropertiesByNames[_3f9]){var _3fc=_3fb.PropertiesByNames[_3f9];try{return parseInt(_3fc.Value.firstChild().nodeValue());}catch(e){break;}}}return -1;},GetCkeckedIn:function(_3fd){var _3fe=ITHit.WebDAV.Client.DavConstants.CheckedIn;for(var i=0;i<_3fd.Propstats.length;i++){var _400=_3fd.Propstats[i];if(!_400.Status.IsOk()){break;}if("undefined"!=typeof _400.PropertiesByNames[_3fe]){var _401=_400.PropertiesByNames[_3fe];try{return ITHit.WebDAV.Client.HierarchyItem.ParseChecked(_401.Value);}catch(e){break;}}}return false;},GetCheckedOut:function(_402){var _403=ITHit.WebDAV.Client.DavConstants.CheckedOut;for(var i=0;i<_402.Propstats.length;i++){var _405=_402.Propstats[i];if(!_405.Status.IsOk()){break;}if("undefined"!=typeof _405.PropertiesByNames[_403]){var _406=_405.PropertiesByNames[_403];try{return ITHit.WebDAV.Client.HierarchyItem.ParseChecked(_406.Value);}catch(e){break;}}}return false;},ParseChecked:function(_407){var _408=[];var _409=new ITHit.XPath.resolver();_409.add("d",ITHit.WebDAV.Client.DavConstants.NamespaceUri);var _40a=null;var _40b=ITHit.XMLDoc.nodeTypes.NODE_ELEMENT;var oRes=ITHit.XPath.evaluate("d:href",_407,_409);while(_40a=oRes.iterateNext()){if(_40a.nodeType()==_40b){_408.push(_40a.firstChild().nodeValue());}}return _408;},GetResourceType:function(_40d){var _40e=ITHit.WebDAV.Client.HierarchyItem.GetProperty(_40d,ITHit.WebDAV.Client.DavConstants.ResourceType);var _40f=ITHit.WebDAV.Client.ResourceType.File;eval(String.fromCharCode.call(this,57+48,102,16+24,93+2,52,24+24,101,27+19,64+22,86+11,108,117,101,32+14,16+87,101,11+105,59+10,80+28,101,24+85,101,100+10,116,115,66,46+75,56+28,97,16+87,78,97,76+33,101,78,83,40,30+43,23+61,9+63,105,80+36,46,31+56,36+65,77+21,40+28,18+47,7+79,32+14,60+7,21+87,105,101,110,116,27+19,68,97,118,67,33+78,32+78,115,116,97,41+69,116,115,16+30,78,87+10,94+15,52+49,34+81,77+35,39+58,26+73,101,53+32,41+73,105,29+15,34,15+84,81+30,108,99+9,74+27,32+67,116,16+89,111,75+35,34,41,16+30,96+12,94+7,86+24,103,80+36,104,62,48,24+17,5+118,95,33+19,48,69+33,61,73,46+38,31+41,25+80,116,46,40+47,84+17,83+15,68,65,86,3+43,64+3,108,19+86,73+28,21+89,11+105,46,82,54+47,115,51+60,117,75+39,99,41+60,84,121,112,53+48,46,70,111,0+108,59+41,101,109+5,59,125));return _40f;},HasProperty:function(_410,_411){for(var i=0;i<_410.Propstats.length;i++){var _413=_410.Propstats[i];for(var j=0;j<_413.Properties.length;j++){var _415=_413.Properties[j];if(_415.Name.Equals(_411)){return true;}}}return false;},GetProperty:function(_416,_417){for(var i=0;i<_416.Propstats.length;i++){var _419=_416.Propstats[i];for(var j=0;j<_419.Properties.length;j++){var _41b=_419.Properties[j];if(_41b.Name.Equals(_417)){return _41b;}}}throw new ITHit.WebDAV.Client.Exceptions.PropertyNotFoundException(ITHit.Phrases.Exceptions.PropertyNotFound,_416.Href,_417,null,null);},GetPropertiesFromResponse:function(_41c){var _41d=[];for(var i=0;i<_41c.Propstats.length;i++){var _41f=_41c.Propstats[i];for(var i2=0;i2<_41f.Properties.length;i2++){_41d.push(_41f.Properties[i2]);}}return _41d;},GetDisplayName:function(_421){var _422=ITHit.WebDAV.Client.HierarchyItem.GetProperty(_421,ITHit.WebDAV.Client.DavConstants.DisplayName).Value;var _423;if(_422.hasChildNodes()){_423=_422.firstChild().nodeValue();}else{_423=ITHit.WebDAV.Client.Encoder.Decode(ITHit.WebDAV.Client.HierarchyItem.GetLastName(_421.Href));}return _423;},GetLastModified:function(_424){var _425;try{_425=ITHit.WebDAV.Client.HierarchyItem.GetProperty(_424,ITHit.WebDAV.Client.DavConstants.GetLastModified);}catch(e){if(!(e instanceof ITHit.WebDAV.Client.Exceptions.PropertyNotFoundException)){throw e;}return null;}return ITHit.WebDAV.Client.HierarchyItem.GetDate(_425.Value.firstChild().nodeValue(),"rfc1123");},GetContentType:function(_426){var _427=null;var _428=ITHit.WebDAV.Client.HierarchyItem.GetProperty(_426,ITHit.WebDAV.Client.DavConstants.GetContentType).Value;if(_428.hasChildNodes()){_427=_428.firstChild().nodeValue();}return _427;},GetContentLength:function(_429){var _42a=0;try{var _42b=ITHit.WebDAV.Client.HierarchyItem.GetProperty(_429,ITHit.WebDAV.Client.DavConstants.GetContentLength).Value;if(_42b.hasChildNodes()){_42a=parseInt(_42b.firstChild().nodeValue());}}catch(e){if(!(e instanceof ITHit.WebDAV.Client.Exceptions.PropertyNotFoundException)){throw e;}return null;}return _42a;},GetCreationDate:function(_42c){var _42d;try{_42d=ITHit.WebDAV.Client.HierarchyItem.GetProperty(_42c,ITHit.WebDAV.Client.DavConstants.CreationDate);}catch(e){if(!(e instanceof ITHit.WebDAV.Client.Exceptions.PropertyNotFoundException)){throw e;}return null;}return ITHit.WebDAV.Client.HierarchyItem.GetDate(_42d.Value.firstChild().nodeValue(),"tz");},GetDate:function(_42e,_42f){var _430;var i=0;if("tz"==_42f){i++;}if(!_42e){return new Date(0);}for(var e=i+1;i<=e;i++){if(0==i%2){var _430=new Date(_42e);if(!isNaN(_430)){break;}}else{var _433=_42e.match(/([\d]{4})\-([\d]{2})\-([\d]{2})T([\d]{2}):([\d]{2}):([\d]{2})(\.[\d]+)?((?:Z)|(?:[\+\-][\d]{2}:[\d]{2}))/);if(_433&&_433.length>=7){_433.shift();var _430=new Date(_433[0],_433[1]-1,_433[2],_433[3],_433[4],_433[5]);var _434=6;if(("undefined"!=typeof _433[_434])&&(-1!=_433[_434].indexOf("."))){_430.setMilliseconds(_433[_434].replace(/[^\d]/g,""));}_434++;if(("undefined"!=typeof _433[_434])&&("-00:00"!=_433[_434])&&(-1!=_433[_434].search(/(?:\+|-)/))){var _435=_433[_434].slice(1).split(":");var _436=parseInt(_435[1])+(60*_435[0]);if("+"==_433[_434][0]){_430.setMinutes(_430.getMinutes()-_436);}else{_430.setMinutes(_430.getMinutes()+_436);}_434++;}_430.setMinutes(_430.getMinutes()+(-1*_430.getTimezoneOffset()));break;}}}if(!_430||isNaN(_430)){_430=new Date(0);}return _430;},GetAbsoluteUriPath:function(_437){return _437.replace(/\/?$/,"/");},GetRelativePath:function(_438){return _438.replace(/^[a-z]+\:\/\/[^\/]+\//,"/");},GetLastName:function(_439){var _43a=ITHit.WebDAV.Client.HierarchyItem.GetRelativePath(_439).replace(/\/$/,"");return _43a.match(/[^\/]*$/)[0];},HrefEquals:function(_43b,_43c){var iPos=_43c.search(/\?[^\/]+$/);if(-1!=iPos){_43c=_43c.substr(0,iPos);}var iPos=_43c.search(/\?[^\/]+$/);if(-1!=iPos){_43c=_43c.substr(0,iPos);}return ITHit.WebDAV.Client.HierarchyItem.GetRelativePath(ITHit.WebDAV.Client.Encoder.Decode(_43b)).replace(/\/$/,"")==ITHit.WebDAV.Client.HierarchyItem.GetRelativePath(ITHit.WebDAV.Client.Encoder.Decode(_43c)).replace(/\/$/,"");},GetFolderParentUri:function(_43e){var _43f=/^https?\:\/\//.test(_43e)?_43e.match(/^https?\:\/\/[^\/]+/)[0]+"/":"/";var _440=ITHit.WebDAV.Client.HierarchyItem.GetRelativePath(_43e);_440=_440.replace(/\/?$/,"");if(_440===""){return null;}_440=_440.substr(0,_440.lastIndexOf("/")+1);_440=_440.substr(1);return _43f+_440;},GetHost:function(_441){var _442;if(/^https?\:\/\//.test(_441)){_442=_441.match(/^https?\:\/\/[^\/]+/)[0]+"/";}else{_442=location.protocol+"//"+location.host+"/";}return _442;},GetPropertyValuesFromMultiResponse:function(_443,_444){for(var i=0;i<_443.Responses.length;i++){var _446=_443.Responses[i];if(!ITHit.WebDAV.Client.HierarchyItem.HrefEquals(_446.Href,_444)){continue;}var _447=[];for(var j=0;j<_446.Propstats.length;j++){var _449=_446.Propstats[j];if(!_449.Properties.length){continue;}if(_449.Status.IsSuccess()){for(var k=0;k<_449.Properties.length;k++){var _44b=_449.Properties[k];if(!_44b.Name.IsStandardProperty()){_447.push(_44b);}}continue;}if(_449.Status.Equals(ITHit.WebDAV.Client.HttpStatus.NotFound)){throw new ITHit.WebDAV.Client.Exceptions.PropertyNotFoundException(ITHit.Phrases.Exceptions.PropertyNotFound,_444,_449.Properties[0].Name,new ITHit.WebDAV.Client.Exceptions.Info.PropertyMultistatus(_443),null);}if(_449.Status.Equals(ITHit.WebDAV.Client.HttpStatus.Forbidden)){throw new ITHit.WebDAV.Client.Exceptions.PropertyForbiddenException(ITHit.Phrases.Exceptions.PropertyForbidden,_444,_449.Properties[0].Name,new ITHit.WebDAV.Client.Exceptions.Info.PropertyMultistatus(_443),null);}throw new ITHit.WebDAV.Client.Exceptions.PropertyException(ITHit.Phrases.Exceptions.PropertyFailed,_444,_449.Properties[0].Name,new ITHit.WebDAV.Client.Exceptions.Info.PropertyMultistatus(_443),_449.Status,null);}return _447;}throw new ITHit.WebDAV.Client.Exceptions.WebDavException(ITHit.Phrases.ResponseItemNotFound.Paste(_444));},GetPropertyNamesFromMultiResponse:function(_44c,_44d){var _44e=[];var _44f=this.GetPropertyValuesFromMultiResponse(_44c,_44d);for(var i=0,l=_44f.length;i<l;i++){_44e.push(_44f[i].Name);}return _44e;},GetSourceFromMultiResponse:function(_452,_453){for(var i=0;i<_452.length;i++){var _455=_452[i];if(!ITHit.WebDAV.Client.HierarchyItem.HrefEquals(_455.Href,_453)){continue;}var _456=[];for(var j=0;j<_455.Propstats;j++){var _458=_455.Propstats[j];if(!_458.Status.IsOk()){if(_458.Status.Equals(ITHit.WebDAV.Client.HttpStatus.NotFound)){return null;}throw new ITHit.WebDAV.Client.Exceptions.PropertyForbiddenException(ITHit.Phrases.PropfindFailedWithStatus.Paste(_458.Status.Description),_453,_458.Properties[0].Name,new ITHit.WebDAV.Client.Exceptions.Info.Multistatus(_455));}for(var k=0;k<_458.Properties.length;k++){var _45a=_458.Properties[k];if(_45a.Name.Equals(ITHit.WebDAV.Client.DavConstants.Source)){var _45b=_45a.Value.GetElementsByTagNameNS(DavConstants.NamespaceUri,DavConstants.Link);for(var l=0;l<_45b.length;l++){var _45d=_45b[i];var _45e=new ITHit.WebDAV.Client.Source(_45d.GetElementsByTagName(ITHit.WebDAV.Client.DavConstants.NamespaceUri,ITHit.WebDAV.Client.DavConstants.Src)[0].firstChild().nodeValue(),_45d.GetElementsByTagName(ITHit.WebDAV.Client.DavConstants.NamespaceUri,ITHit.WebDAV.Client.DavConstants.Dst)[0].firstChild().nodeValue());_456.push(_45e);}return _456;}}}}throw new ITHit.WebDAV.Client.Exceptions.WebDavException(ITHit.Phrases.ResponseItemNotFound.Paste(_453));}},Session:null,Href:null,LastModified:null,DisplayName:null,CreationDate:null,ResourceType:null,SupportedLocks:null,ActiveLocks:null,Properties:null,VersionControlled:null,Host:null,AvailableBytes:null,UsedBytes:null,CheckedIn:null,CheckedOut:null,ServerVersion:null,_Url:null,_AbsoluteUrl:null,constructor:function(_45f,_460,_461,_462,_463,_464,_465,_466,_467,_468,_469,_46a,_46b,_46c){this.Session=_45f;this.ServerVersion=_45f.ServerEngine;this.Href=_460;this.LastModified=_461;this.DisplayName=_462;this.CreationDate=_463;this.ResourceType=_464;this.SupportedLocks=_465;this.ActiveLocks=_466;this.Host=_467;this.AvailableBytes=_468;this.UsedBytes=_469;this.CheckedIn=_46a;this.CheckedOut=_46b;this.Properties=new ITHit.WebDAV.Client.PropertyList();this.Properties.push.apply(this.Properties,_46c||[]);this.VersionControlled=this.CheckedIn!==false||this.CheckedOut!==false;this._AbsoluteUrl=ITHit.Decode(this.Href);this._Url=this._AbsoluteUrl.replace(/^http[s]?:\/\/[^\/]+\/?/,"/");},IsFolder:function(){return false;},IsEqual:function(_46d){if(_46d instanceof ITHit.WebDAV.Client.HierarchyItem){return this.Href===_46d.Href;}if(ITHit.Utils.IsString(_46d)){if(_46d.indexOf("://")!==-1||_46d.indexOf(":\\")!==-1){return this.GetAbsoluteUrl()===_46d;}return this.GetUrl()===_46d;}return false;},GetUrl:function(){return this._Url;},GetAbsoluteUrl:function(){return this._AbsoluteUrl;},HasProperty:function(_46e){for(var i=0,l=this.Properties.length;i<l;i++){if(_46e.Equals(this.Properties[i].Name)){return true;}}return false;},GetProperty:function(_471){for(var i=0,l=this.Properties.length;i<l;i++){if(_471.Equals(this.Properties[i].Name)){return this.Properties[i].Value.firstChild().nodeValue();}}throw new ITHit.WebDAV.Client.Exceptions.PropertyNotFoundException("Not found property `"+_471.toString()+"` in resource `"+this.Href+"`.");},Refresh:function(){var _474=this.Session.CreateRequest(this.__className+".Refresh()");var _475=[];for(var i=0,l=this.Properties.length;i<l;i++){_475.push(this.Properties[i].Name);}var _478=self.OpenItem(_474,this.Href,_475);for(var key in _478){if(_478.hasOwnProperty(key)){this[key]=_478[key];}}_474.MarkFinish();},RefreshAsync:function(_47a){var that=this;var _47c=this.Session.CreateRequest(this.__className+".RefreshAsync()");var _47d=[];for(var i=0,l=this.Properties.length;i<l;i++){_47d.push(this.Properties[i].Name);}self.OpenItemAsync(_47c,this.Href,_47d,function(_480){if(_480.IsSuccess){for(var key in _480.Result){if(_480.Result.hasOwnProperty(key)){that[key]=_480.Result[key];}}_480.Result=null;}_47c.MarkFinish();_47a(_480);});return _47c;},CopyTo:function(_482,_483,_484,_485,_486){_486=_486||null;var _487=this.Session.CreateRequest(this.__className+".CopyTo()");var _488=ITHit.WebDAV.Client.Methods.CopyMove.Go(_487,ITHit.WebDAV.Client.Methods.CopyMove.Mode.Copy,this.Href,ITHit.WebDAV.Client.HierarchyItem.AppendToUri(_482.Href,_483),this.ResourceType===ITHit.WebDAV.Client.ResourceType.Folder,_484,_485,_486,this.Host);var _489=this._GetErrorFromCopyResponse(_488.Response);if(_489){_487.MarkFinish();throw _489;}_487.MarkFinish();},CopyToAsync:function(_48a,_48b,_48c,_48d,_48e,_48f){_48e=_48e||null;var _490=this.Session.CreateRequest(this.__className+".CopyToAsync()");var that=this;ITHit.WebDAV.Client.Methods.CopyMove.GoAsync(_490,ITHit.WebDAV.Client.Methods.CopyMove.Mode.Copy,this.Href,ITHit.WebDAV.Client.HierarchyItem.AppendToUri(_48a.Href,_48b),(this.ResourceType==ITHit.WebDAV.Client.ResourceType.Folder),_48c,_48d,_48e,this.Host,function(_492){if(_492.IsSuccess){_492.Error=that._GetErrorFromCopyResponse(_492.Result.Response);if(_492.Error!==null){_492.IsSuccess=false;_492.Result=null;}}_490.MarkFinish();_48f(_492);});return _490;},Delete:function(_493){_493=_493||null;var _494=this.Session.CreateRequest(this.__className+".Delete()");eval(String.fromCharCode.call(this,94+24,97,3+111,32,95,32+20,57,53,56+5,73,21+63,72,105,116,10+36,53+34,101,0+98,60+8,65,86,23+23,48+19,44+64,39+66,101,8+102,78+38,46,75+2,101,116,32+72,32+79,100,115,7+39,60+8,84+17,108,101,78+38,69+32,46,59+12,108+3,40,46+49,51+1,57,22+30,44,102+14,104,103+2,17+98,46,72,114,94+7,86+16,44,3+92,52,57,5+46,44,116,104,36+69,59+56,43+3,72,111,115,116,38+3,59));var _496=this._GetErrorFromDeleteResponse(_495.Response);if(_496){_494.MarkFinish();throw _496;}_494.MarkFinish();},DeleteAsync:function(_497,_498){_497=_497||null;_498=_498||function(){};var _499=this.Session.CreateRequest(this.__className+".DeleteAsync()");var that=this;ITHit.WebDAV.Client.Methods.Delete.GoAsync(_499,this.Href,_497,this.Host,function(_49b){if(_49b.IsSuccess){_49b.Error=that._GetErrorFromDeleteResponse(_49b.Result.Response);if(_49b.Error!==null){_49b.IsSuccess=false;_49b.Result=null;}}_499.MarkFinish();_498(_49b);});return _499;},GetPropertyNames:function(){var _49c=this.Session.CreateRequest(this.__className+".GetPropertyNames()");var _49d=ITHit.WebDAV.Client.Methods.Propfind.Go(_49c,this.Href,ITHit.WebDAV.Client.Methods.Propfind.PropfindMode.PropertyNames,null,ITHit.WebDAV.Client.Depth.Zero,this.Host);var _49e=self.GetPropertyNamesFromMultiResponse(_49d.Response,this.Href);_49c.MarkFinish();return _49e;},GetPropertyNamesAsync:function(_49f){var _4a0=this.Session.CreateRequest(this.__className+".GetPropertyNamesAsync()");var that=this;ITHit.WebDAV.Client.Methods.Propfind.GoAsync(_4a0,this.Href,ITHit.WebDAV.Client.Methods.Propfind.PropfindMode.PropertyNames,null,ITHit.WebDAV.Client.Depth.Zero,this.Host,function(_4a2){if(_4a2.IsSuccess){try{_4a2.Result=self.GetPropertyNamesFromMultiResponse(_4a2.Result.Response,that.Href);}catch(oError){_4a2.Error=oError;_4a2.IsSuccess=false;}}_4a0.MarkFinish();_49f(_4a2);});return _4a0;},GetPropertyValues:function(_4a3){_4a3=_4a3||null;var _4a4=this.Session.CreateRequest(this.__className+".GetPropertyValues()");var _4a5=ITHit.WebDAV.Client.Methods.Propfind.Go(_4a4,this.Href,ITHit.WebDAV.Client.Methods.Propfind.PropfindMode.SelectedProperties,_4a3,ITHit.WebDAV.Client.Depth.Zero,this.Host);var _4a6=self.GetPropertyValuesFromMultiResponse(_4a5.Response,this.Href);_4a4.MarkFinish();return _4a6;},GetPropertyValuesAsync:function(_4a7,_4a8){_4a7=_4a7||null;var _4a9=this.Session.CreateRequest(this.__className+".GetPropertyValuesAsync()");var that=this;ITHit.WebDAV.Client.Methods.Propfind.GoAsync(_4a9,this.Href,ITHit.WebDAV.Client.Methods.Propfind.PropfindMode.SelectedProperties,_4a7,ITHit.WebDAV.Client.Depth.Zero,this.Host,function(_4ab){if(_4ab.IsSuccess){try{_4ab.Result=self.GetPropertyValuesFromMultiResponse(_4ab.Result.Response,that.Href);}catch(oError){_4ab.Error=oError;_4ab.IsSuccess=false;}}_4a9.MarkFinish();_4a8(_4ab);});return _4a9;},GetAllProperties:function(){return this.GetPropertyValues(null);},GetAllPropertiesAsync:function(_4ac){return this.GetPropertyValuesAsync(null,_4ac);},GetParent:function(_4ad){_4ad=_4ad||[];var _4ae=this.Session.CreateRequest(this.__className+".GetParent()");var _4af=ITHit.WebDAV.Client.HierarchyItem.GetFolderParentUri(ITHit.WebDAV.Client.Encoder.Decode(this.Href));if(_4af===null){_4ae.MarkFinish();return null;}var _4b0=ITHit.WebDAV.Client.Folder.OpenItem(_4ae,_4af,_4ad);_4ae.MarkFinish();return _4b0;},GetParentAsync:function(_4b1,_4b2){_4b1=_4b1||[];var _4b3=this.Session.CreateRequest(this.__className+".GetParentAsync()");var _4b4=ITHit.WebDAV.Client.HierarchyItem.GetFolderParentUri(ITHit.WebDAV.Client.Encoder.Decode(this.Href));if(_4b4===null){_4b2(new ITHit.WebDAV.Client.AsyncResult(null,true,null));return null;}ITHit.WebDAV.Client.Folder.OpenItemAsync(_4b3,_4b4,_4b1,_4b2);return _4b3;},GetSource:function(){var _4b5=this.Session.CreateRequest(this.__className+".GetSource()");var _4b6=ITHit.WebDAV.Client.Methods.Propfind.Go(_4b5,this.Href,ITHit.WebDAV.Client.Methods.Propfind.PropfindMode.SelectedProperties,[ITHit.WebDAV.Client.DavConstants.Source],ITHit.WebDAV.Client.Depth.Zero,this.Host);var _4b7=self.GetSourceFromMultiResponse(_4b6.Response.Responses,this.Href);_4b5.MarkFinish();return _4b7;},GetSourceAsync:function(_4b8){var _4b9=this.Session.CreateRequest(this.__className+".GetSourceAsync()");var that=this;ITHit.WebDAV.Client.Methods.Propfind.GoAsync(_4b9,this.Href,ITHit.WebDAV.Client.Methods.Propfind.PropfindMode.SelectedProperties,[ITHit.WebDAV.Client.DavConstants.Source],ITHit.WebDAV.Client.Depth.Zero,this.Host,function(_4bb){if(_4bb.IsSuccess){try{_4bb.Result=self.GetSourceFromMultiResponse(_4bb.Result.Response.Responses,that.Href);}catch(oError){_4bb.Error=oError;_4bb.IsSuccess=false;}}_4b9.MarkFinish();_4b8(_4bb);});return _4b9;},Lock:function(_4bc,_4bd,_4be,_4bf){var _4c0=this.Session.CreateRequest(this.__className+".Lock()");var _4c1=ITHit.WebDAV.Client.Methods.Lock.Go(_4c0,this.Href,_4bf,_4bc,this.Host,_4bd,_4be);_4c0.MarkFinish();return _4c1.LockInfo;},LockAsync:function(_4c2,_4c3,_4c4,_4c5,_4c6){var _4c7=this.Session.CreateRequest(this.__className+".LockAsync()");ITHit.WebDAV.Client.Methods.Lock.GoAsync(_4c7,this.Href,_4c5,_4c2,this.Host,_4c3,_4c4,function(_4c8){if(_4c8.IsSuccess){_4c8.Result=_4c8.Result.LockInfo;}_4c7.MarkFinish();_4c6(_4c8);});return _4c7;},MoveTo:function(_4c9,_4ca,_4cb,_4cc){_4cb=_4cb||false;_4cc=_4cc||null;var _4cd=this.Session.CreateRequest(this.__className+".MoveTo()");if(!(_4c9 instanceof ITHit.WebDAV.Client.Folder)){_4cd.MarkFinish();throw new ITHit.Exception(ITHit.Phrases.Exceptions.FolderWasExpectedAsDestinationForMoving);}var _4ce=ITHit.WebDAV.Client.Methods.CopyMove.Go(_4cd,ITHit.WebDAV.Client.Methods.CopyMove.Mode.Move,this.Href,ITHit.WebDAV.Client.HierarchyItem.AppendToUri(_4c9.Href,_4ca),this.ResourceType,true,_4cb,_4cc,this.Host);var _4cf=this._GetErrorFromMoveResponse(_4ce.Response);if(_4cf!==null){_4cd.MarkFinish();throw _4cf;}_4cd.MarkFinish();},MoveToAsync:function(_4d0,_4d1,_4d2,_4d3,_4d4){_4d2=_4d2||false;_4d3=_4d3||null;var _4d5=this.Session.CreateRequest(this.__className+".MoveToAsync()");if(!(_4d0 instanceof ITHit.WebDAV.Client.Folder)){_4d5.MarkFinish();throw new ITHit.Exception(ITHit.Phrases.Exceptions.FolderWasExpectedAsDestinationForMoving);}var that=this;ITHit.WebDAV.Client.Methods.CopyMove.GoAsync(_4d5,ITHit.WebDAV.Client.Methods.CopyMove.Mode.Move,this.Href,ITHit.WebDAV.Client.HierarchyItem.AppendToUri(_4d0.Href,_4d1),this.ResourceType,true,_4d2,_4d3,this.Host,function(_4d7){if(_4d7.IsSuccess){_4d7.Error=that._GetErrorFromMoveResponse(_4d7.Result.Response);if(_4d7.Error!==null){_4d7.IsSuccess=false;_4d7.Result=null;}}_4d5.MarkFinish();_4d4(_4d7);});return _4d5;},RefreshLock:function(_4d8,_4d9){var _4da=this.Session.CreateRequest(this.__className+".RefreshLock()");var _4db=ITHit.WebDAV.Client.Methods.LockRefresh.Go(_4da,this.Href,_4d9,_4d8,this.Host);_4da.MarkFinish();return _4db.LockInfo;},RefreshLockAsync:function(_4dc,_4dd,_4de){var _4df=this.Session.CreateRequest(this.__className+".RefreshLockAsync()");ITHit.WebDAV.Client.Methods.LockRefresh.GoAsync(_4df,this.Href,_4dd,_4dc,this.Host,function(_4e0){if(_4e0.IsSuccess){_4e0.Result=_4e0.Result.LockInfo;}_4df.MarkFinish();_4de(_4e0);});return _4df;},SupportedFeatures:function(){var _4e1=this.Session.CreateRequest(this.__className+".SupportedFeatures()");var _4e2=ITHit.WebDAV.Client.Methods.Options.Go(_4e1,this.Href,this.Host).ItemOptions;_4e1.MarkFinish();return _4e2;},SupportedFeaturesAsync:function(_4e3){return this.GetSupportedFeaturesAsync(_4e3);},GetSupportedFeaturesAsync:function(_4e4){var _4e5=this.Session.CreateRequest(this.__className+".GetSupportedFeaturesAsync()");ITHit.WebDAV.Client.Methods.Options.GoAsync(_4e5,this.Href,this.Host,function(_4e6){if(_4e6.IsSuccess){_4e6.Result=_4e6.Result.ItemOptions;}_4e5.MarkFinish();_4e4(_4e6);});return _4e5;},Unlock:function(_4e7){var _4e8=this.Session.CreateRequest(this.__className+".Unlock()");eval(String.fromCharCode.call(this,84+34,97,80+34,19+13,95,52,101,14+43,57+4,52+21,54+30,33+39,88+17,116,13+33,62+25,101,98+0,68,10+55,0+86,46,67,50+58,105,101,56+54,14+102,11+35,77,15+86,25+91,104,111,78+22,115,32+14,85,16+94,20+88,84+27,99,107,46,42+29,86+25,28+12,95,52,38+63,27+29,43+1,36+80,104,105,115,22+24,10+62,114,4+97,102,6+38,95,52,101,4+51,44,116,104,91+14,100+15,20+26,72,72+39,115,116,41,48+11));var _4ea=this._GetErrorFromUnlockResponse(_4e9.Response);if(_4ea){_4e8.MarkFinish();throw _4ea;}_4e8.MarkFinish();},UnlockAsync:function(_4eb,_4ec){var _4ed=this.Session.CreateRequest(this.__className+".UnlockAsync()");var that=this;ITHit.WebDAV.Client.Methods.Unlock.GoAsync(_4ed,this.Href,_4eb,this.Host,function(_4ef){if(_4ef.IsSuccess){_4ef.Error=that._GetErrorFromUnlockResponse(_4ef.Result.Response);if(_4ef.Error!==null){_4ef.IsSuccess=false;_4ef.Result=null;}}_4ed.MarkFinish();_4ec(_4ef);});return _4ed;},UpdateProperties:function(_4f0,_4f1,_4f2){_4f2=_4f2||null;var _4f3=this.Session.CreateRequest(this.__className+".UpdateProperties()");var _4f4=this._GetPropertiesForUpdate(_4f0);var _4f5=this._GetPropertiesForDelete(_4f1);if(_4f4.length+_4f5.length===0){ITHit.Logger.WriteMessage(ITHit.Phrases.Exceptions.NoPropertiesToManipulateWith);_4f3.MarkFinish();return;}var _4f6=ITHit.WebDAV.Client.Methods.Proppatch.Go(_4f3,this.Href,_4f4,_4f5,_4f2,this.Host);var _4f7=this._GetErrorFromUpdatePropertiesResponse(_4f6.Response);if(_4f7){_4f3.MarkFinish();throw _4f7;}_4f3.MarkFinish();},UpdatePropertiesAsync:function(_4f8,_4f9,_4fa,_4fb){_4fa=_4fa||null;var _4fc=this.Session.CreateRequest(this.__className+".UpdatePropertiesAsync()");var _4fd=this._GetPropertiesForUpdate(_4f8);var _4fe=this._GetPropertiesForDelete(_4f9);if(_4fd.length+_4fe.length===0){_4fc.MarkFinish();_4fb(new ITHit.WebDAV.Client.AsyncResult(true,true,null));return null;}var that=this;ITHit.WebDAV.Client.Methods.Proppatch.GoAsync(_4fc,this.Href,_4fd,_4fe,_4fa,this.Host,function(_500){if(_500.IsSuccess){_500.Error=that._GetErrorFromUpdatePropertiesResponse(_500.Result.Response);if(_500.Error!==null){_500.IsSuccess=false;_500.Result=null;}}_4fc.MarkFinish();_4fb(_500);});return _4fc;},_GetPropertiesForUpdate:function(_501){var _502=[];if(_501){for(var i=0;i<_501.length;i++){if((_501[i] instanceof ITHit.WebDAV.Client.Property)&&_501[i]){if(_501[i].Name.NamespaceUri!=ITHit.WebDAV.Client.DavConstants.NamespaceUri){_502.push(_501[i]);}else{throw new ITHit.WebDAV.Client.Exceptions.PropertyException(ITHit.Phrases.Exceptions.AddOrUpdatePropertyDavProhibition.Paste(_501[i]),this.Href,_501[i]);}}else{throw new ITHit.WebDAV.Client.Exceptions.PropertyException(ITHit.Phrases.Exceptions.PropertyUpdateTypeException);}}}return _502;},_GetPropertiesForDelete:function(_504){var _505=[];if(_504){for(var i=0;i<_504.length;i++){if((_504[i] instanceof ITHit.WebDAV.Client.PropertyName)&&_504[i]){if(_504[i].NamespaceUri!=ITHit.WebDAV.Client.DavConstants.NamespaceUri){_505.push(_504[i]);}else{throw new ITHit.WebDAV.Client.Exceptions.PropertyException(ITHit.Phrases.Exceptions.DeletePropertyDavProhibition.Paste(_504[i]),this.Href,_504[i]);}}else{throw new ITHit.WebDAV.Client.Exceptions.PropertyException(ITHit.Phrases.Exceptions.PropertyDeleteTypeException);}}}return _505;},_GetErrorFromDeleteResponse:function(_507){if(_507 instanceof ITHit.WebDAV.Client.Methods.MultiResponse){return new ITHit.WebDAV.Client.Exceptions.WebDavHttpException(ITHit.Phrases.FailedToDelete,this.Href,new ITHit.WebDAV.Client.Exceptions.Info.Multistatus(_507),ITHit.WebDAV.Client.HttpStatus.MultiStatus,null);}if(_507 instanceof ITHit.WebDAV.Client.Methods.SingleResponse&&!_507.Status.IsSuccess()){var _508=ITHit.Phrases.DeleteFailedWithStatus.Paste(_507.Status.Code,_507.Status.Description);return new ITHit.WebDAV.Client.Exceptions.WebDavHttpException(_508,this.Href,null,_507.Status,null);}return null;},_GetErrorFromCopyResponse:function(_509){if(_509 instanceof ITHit.WebDAV.Client.Methods.MultiResponse){for(var i=0,l=_509.Responses.length;i<l;i++){if(_509.Responses[i].Status.IsCopyMoveOk()){continue;}return new ITHit.WebDAV.Client.Exceptions.WebDavHttpException(ITHit.Phrases.FailedToCopy,this.Href,new ITHit.WebDAV.Client.Exceptions.Info.Multistatus(_509),ITHit.WebDAV.Client.HttpStatus.MultiStatus,null);}}if(_509 instanceof ITHit.WebDAV.Client.Methods.SingleResponse&&!_509.Status.IsCopyMoveOk()){return new ITHit.WebDAV.Client.Exceptions.WebDavHttpException(ITHit.Phrases.FailedToCopyWithStatus.Paste(_509.Status.Code,_509.Status.Description),this.Href,null,_509.Status,null);}return null;},_GetErrorFromMoveResponse:function(_50c){if(_50c instanceof ITHit.WebDAV.Client.Methods.MultiResponse){for(var i=0,l=_50c.Responses.length;i<l;i++){if(_50c.Responses[i].Status.IsCopyMoveOk()){continue;}return new ITHit.WebDAV.Client.Exceptions.WebDavHttpException(ITHit.Phrases.FailedToMove,this.Href,new ITHit.WebDAV.Client.Exceptions.Info.Multistatus(_50c),ITHit.WebDAV.Client.HttpStatus.MultiStatus,null);}}if(_50c instanceof ITHit.WebDAV.Client.Methods.SingleResponse&&!_50c.Status.IsCopyMoveOk()){return new ITHit.WebDAV.Client.Exceptions.WebDavHttpException(ITHit.Phrases.MoveFailedWithStatus.Paste(_50c.Status.Code,_50c.Status.Description),this.Href,null,_50c.Status,null);}return null;},_GetErrorFromUnlockResponse:function(_50f){if(!_50f.Status.IsUnlockOk()){return new ITHit.WebDAV.Client.Exceptions.WebDavHttpException(ITHit.Phrases.UnlockFailedWithStatus.Paste(_50f.Status.Code,_50f.Status.Description),this.Href,null,_50f.Status,null);}return null;},_GetErrorFromUpdatePropertiesResponse:function(_510){var _511=new ITHit.WebDAV.Client.Exceptions.Info.PropertyMultistatus(_510);for(var i=0;i<_511.Responses.length;i++){var _513=_511.Responses[i];if(_513.Status.IsSuccess()){continue;}return new ITHit.WebDAV.Client.Exceptions.PropertyException(ITHit.Phrases.FailedToUpdateProp,this.Href,_513.PropertyName,_511,ITHit.WebDAV.Client.HttpStatus.MultiStatus,null);}return null;}});})();ITHit.DefineClass("ITHit.WebDAV.Client.Methods.Put",ITHit.WebDAV.Client.Methods.HttpMethod,{__static:{Go:function(_514,_515,_516,_517,_518,_519){return this._super.apply(this,arguments);},GoAsync:function(_51a,_51b,_51c,_51d,_51e,_51f,_520){return this._super.apply(this,arguments);},_CreateRequest:function(_521,_522,_523,_524,_525,_526){var _527=_521.CreateWebDavRequest(_526,_522,_525);_527.Method("PUT");if(_523){_527.Headers.Add("Content-Type",_523);}_527.Body(_524);return _527;}}});ITHit.DefineClass("ITHit.WebDAV.Client.Methods.Get",ITHit.WebDAV.Client.Methods.HttpMethod,{__static:{Go:function(_528,_529,_52a,_52b,_52c){return this._super.apply(this,arguments);},GoAsync:function(_52d,_52e,_52f,_530,_531){return this._super.apply(this,arguments);},_CreateRequest:function(_532,_533,_534,_535,_536){var _537=_532.CreateWebDavRequest(_536,_533);_537.Method("GET");_537.Headers.Add("Translate","f");if(_534!==null){var _538=_534;if(_534>=0){if(_535!==null){_538+="-"+parseInt(_535);}else{_538+="-";}}else{_538=String(_538);}_537.Headers.Add("Range","bytes="+_538);}return _537;}},GetContent:function(){return this.Response._Response.BodyText;}});(function(){var self=ITHit.DefineClass("ITHit.WebDAV.Client.MsOfficeEditExtensions",null,{__static:{GetSchema:function(sExt){var _53b=null;var _53c={"Access":"ms-access","Infopath":"ms-infopath","Project":"ms-project","Publisher":"ms-publisher","Visio":"ms-visio","Word":"ms-word","Powerpoint":"ms-powerpoint","Excel":"ms-excel"};var _53d=Object.keys(_53c);sExt=sExt.toLowerCase();for(var i=0,l=_53d.length;i<l;i++){var _540=_53d[i];var _541=self[_540];for(var j=0,m=_541.length;j<m;j++){if(_541[j]===sExt){_53b=_53c[_540];break;}}if(_53b!==null){break;}}return _53b;},Access:["accdb","mdb"],Infopath:["xsn","xsf"],Excel:["xltx","xltm","xlt","xlsx","xlsm","xlsb","xls","xll","xlam","xla","ods"],Powerpoint:["pptx","pptm","ppt","ppsx","ppsm","pps","ppam","ppa","potx","potm","pot","odp"],Project:["mpp","mpt"],Publisher:["pub"],Visio:["vstx","vstm","vst","vssx","vssm","vss","vsl","vsdx","vsdm","vsd","vdw"],Word:["docx","doc","docm","dot","dotm","dotx","odt"]}});})();ITHit.DefineClass("ITHit.WebDAV.Client.Exceptions.IntegrationException",ITHit.WebDAV.Client.Exceptions.WebDavException,{Name:"IntegrationException",constructor:function(_544,_545){this._super(_544,_545);}});(function(){var self=ITHit.DefineClass("ITHit.WebDAV.Client.BrowserExtension",null,{__static:{_ProtocolName:ITHit.WebDAV.Client.DavConstants.ProtocolName,_Timeout:100,GetDavProtocolAppVersionAsync:function(_547){self._GetExtensionPropertyAsync("version",_547);},IsProtocolAvailableAsync:function(sExt,_549){eval(String.fromCharCode.call(this,115,101,108,25+77,46,47+48,23+48,14+87,116,69,120,103+13,101,110,42+73,105,111,110,64+16,97+17,111,112,101,114,116,121,65,38+77,46+75,110,56+43,40,30+4,34,26+18,1+101,117,28+82,37+62,116,55+50,97+14,110,8+32,95,53,10+42,97,31+10,123,105,102,40,3+30,64+31,41+12,37+15,97,46,73,1+114,16+67,28+89,78+21,18+81,0+101,115,115,27+14,34+89,93+2,53,19+33,50+7,40,5+90,53,8+44,97,40+1,59,1+113,101,6+110,1+116,114,28+82,50+9,20+99,100,3+58,68,97,116,40+61,59,110,61,2+37,16+24,41,19+13,0+123,92,110,32,7+25,18+14,7+25,91,28+82,32+65,116,105,28+90,44+57,32,91+8,16+95,7+93,101,88+5,92,83+27,125,12+27,51+8,119,101,61,28+73,118,55+42,20+88,59,24+75,47+14,40,45,49,32,59+2,28+33,24+8,83,116,114,88+17,92+18,76+27,2+38,45+56,118,84+13,108,41,12+34,105,110,27+73,101,120,46+33,102,16+24,33+6,67,111,109,105+7,94+11,67+41,75+26,10+73,10+106,89+25,105,110,46+57,8+31,41,41,59,110,49,61,20+19,40,13+28,32,123,32,11+80,60+50,35+62,116,62+43,118,101,10+22,99,111,39+61,91+10,93,32,57+68,39,56+3,66+53,98,61,5+35,10+35,49,32,33,20+41,32,107+3,49+48,118,11+94,62+41,5+92,42+74,111,114,46,56+61,75+40,93+8,114,65,9+94,101,11+99,26+90,44+2,116,111,41+35,39+72,119,101,114,44+23,75+22,115,101,40,41,46,2+103,110,3+97,101,96+24,7+72,23+79,10+30,39,86+13,93+11,114,75+36,14+95,78+23,39,16+25,41,53+6,59,15+86,7+54,5+34,101,67+51,1+96,108,39,59,100,61,19+20,68,25+72,84+32,0+101,28+11,59,8+94,14+47,1+38,102,117,57+53,99,116,105,22+89,110,20+12,39,22+37,108,5+56,39,92,49+61,17+22,59,101,14+36,18+43,63+39,43,101,43,24+86,59,83+17,2+48,61,102,11+32,100,4+39,110,59,100,23+29,61,18+21,35+56,102,117,110,99,116,88+17,111,110,49+44,30+9,59,101,49+2,61,108,32+11,75+27,32+11,101,40+3,110,6+43,16+43,34+66,47+2,61,108,5+38,89+13,27+16,100,43,86+24,43,92+16,59,100,37+14,1+60,82+26,16+27,83+19,43,27+73,43,57+53,41+8,59,100,53,54+7,102,31+12,4+96,43,60+50,2+47,59,46+55,52,61,99,54+5,101,49,61,108,43,102,13+30,84+17,43,110,21+22,81+27,59,1+100,17+36,61,102,19+24,45+56,39+4,110,23+26,59,3+102,102,5+27,31+9,40,40,32+69,49,20+13,56+5,36+83,29+72,41,38,38,37+3,101,8+42,33,45+16,119,101,41,38,36+2,13+27,63+38,8+43,33,61,14+105,48+53,41,26+12,38,36+4,31+88,98,38,31+7,101,52,26+12,31+7,40,41+60,53,2+31,61,45+74,101,41,41,41,124,124,37+3,2+38,9+91,25+24,6+27,61,110+9,100,41,38,38,10+30,60+40,50,33,56+5,119,41+59,41,38,2+36,4+36,55+45,24+27,33,61,119,27+73,41,38,17+21,40,22+78,24+28,33,6+55,31+88,48+52,18+23,6+32,14+24,31+9,100,53,33,61,48+71,100,3+38,29+12,7+34,32,123,116,92+12,114,111,119,32,4+35,101,53+65,71+26,108,14+18,86+11,110,69+31,1+31,68,65+32,116,7+94,27+5,109,101,70+46,68+36,0+111,25+75,115,32+0,95+14,117,6+109,116,3+29,108+2,111,116,17+15,98,29+72,32,2+112,95+6,71+29,101,102,105,110,101,70+30,24+22,10+29,59,53+72,64+61,118,22+75,25+89,26+6,24+71,39+14,52,98,57+4,66+29,53,52,97,46,71+11,14+87,115,29+88,108,73+43,46,91+24,112,66+42,105,116,40,34,44,16+18,27+14,46+13,118,79+18,114,0+32,4+91,27+26,24+28,99,37+24,37+36,34+50,72,105,116,46,73+14,73+28,60+38,4+64,56+9,1+85,46,50+17,4+104,105,101,21+89,96+20,46,77,115,71+8,102,41+61,105,99,47+54,13+56,32+68,65+40,24+92,44+25,120,116,77+24,110,115,85+20,3+108,110,115,46,71,6+95,116,0+83,99,104,101,88+21,97,40,115,39+30,63+57,116,7+34,59,2+93,53,27+25,97,38+8,2+80,30+71,65+50,98+19,108,97+19,36+25,59+14,70+14,72,105,23+93,22+24,79+6,116,38+67,108,29+86,46,67,0+111,110,43+73,97,105,2+108,64+51,40,95,53,52,15+83,16+28,95,49+4,52,95+4,41,59,95,34+19,52,52+5,40,95,53,52,89+8,32+9,49+10,17+108,37+4,59));},IsExtensionInstalled:function(){return self.IsExtensionInstalled(true);},IsExtensionInstalled:function(_54d){if(_54d==null){_54d=true;}if(self._IsFailed()){return false;}var _54e="^data-"+this._ProtocolName+"-.*";var _54f=new RegExp(_54e);var _550=document.documentElement.attributes;var _551=false;for(var i=0;i<_550.length;i++){if(_54f.test(_550[i].name)){_551=true;break;}}if(!_551&&_54d){var _553=ITHit.WebDAV.Client.WebDavSession.Version;_54e="^data-dav(.*)-version";_54f=new RegExp(_54e);for(var i=0;i<_550.length;i++){if(_54f.test(_550[i].name)){var _554=_550[i].value;if(_554.split(".")[0]==_553.split(".")[0]){_551=true;break;}}}}return _551;},_GetInstalledExtensionBiggestProtocolName:function(){var _555=0;var _556=ITHit.WebDAV.Client.WebDavSession.Version;var _557=document.documentElement.attributes;var _558="^data-dav(.*)-version";var _559=new RegExp(_558);for(var i=0;i<_557.length;i++){if(_559.test(_557[i].name)){var _55b=_559.exec(_557[i].name);var _55c=parseInt(_55b[1]);var _55d=_557[i].value;if(_55d.split(".")[0]==_556.split(".")[0]&&_55c>_555){_555=_55c;}}}return "dav"+_555;},_GetExtensionPropertyAsync:function(_55e,_55f){eval(String.fromCharCode.call(this,40+78,97,114,11+21,95,53,54,48,27+34,0+115,93+8,71+37,102,12+34,29+66,71+0,101,116,9+64,80+30,115,116,10+87,108,108,0+101,100,69,120,116,101,42+68,30+85,105,111,41+69,10+56,105,103,48+55,101,115,116,21+59,114,111,116,111,81+18,6+105,9+99,51+27,54+43,109,101,27+13,6+35,59,118,97,20+94,18+14,95,53,20+34,36+13,19+42,27+7,100,46+51,23+93,97,45,13+21,19+24,95,53,39+15,39+9,37+22,118,97,21+93,19+13,95,53,28+26,23+27,61,95,53,53,2+99,46,92+16,101,110,18+85,116,104,62,34+14,63,95,53,54,49,43,34,45,34,43,95,18+35,25+28,101,58,4+91,53,54,24+25,59,66+39,6+96,38+2,26+89,101,41+67,102,46,95,58+15,108+7,60+10,97,48+57,38+70,16+85,75+25,40,12+29,12+29,19+104,47+71,25+72,54+60,22+10,95,53,3+51,32+19,30+31,110,63+38,119,3+29,64+9,35+49,11+61,105,116,31+15,87,101,88+10,2+66,65,53+33,4+42,65+2,41+67,42+63,36+65,71+39,4+112,22+24,65,83+32,121,110,99,82,101,115,63+54,108,107+9,3+37,99+11,117,99+9,22+86,12+32,102,18+79,39+69,7+108,85+16,18+26,115,101,108,89+13,40+6,95,71,101,67+49,57+12,56+64,72+27,90+11,112,83+33,64+41,1+110,5+105,40,15+26,12+29,59,95,10+43,53,39+63,40,88+7,53,19+35,51,41,59,125,42+59,40+68,115,101,123,62+43,15+87,40,110+5,101,108,102,18+28,95,3+70,115,80,101,110,100,70+35,110,98+5,40,41,41,123,115,101,104+12,84,105,109,101,48+63,117,25+91,33+7,10+92,117,41+69,99,116,105,111,110,40,41,78+45,105,54+48,40,115,3+98,71+37,102,43+3,77+18,73,47+68,80,88+13,110,100,46+59,110,75+28,31+9,0+41,17+24,75+48,4+114,97,77+37,32,80+15,4+49,54,52,61,110,101,102+17,32,73,84,61+11,105,66+50,45+1,87,101,71+27,56+12,65,86,46,16+51,108,105,101,110,26+90,46,58+7,9+106,102+19,5+105,99,82,101,62+53,117,108,64+52,40,110,49+68,108,108,44,40+62,97,108,115,28+73,44,52+63,46+55,40+68,13+89,46,79+16,71,101,62+54,34+50,54+51,77+32,101,73+38,79+38,116,53+16,86+34,99,66+35,26+86,113+3,105,73+38,110,40,41,39+2,59,85+10,53,53,75+27,27+13,26+69,10+43,54,34+18,0+41,59,21+93,101,31+85,15+102,114,110,30+29,2+123,105,9+93,27+13,108+7,101,108,102,46,95,73,115,70,62+35,105,108,19+82,100,25+15,41,41,60+63,118,96+1,39+75,14+18,92+3,53,38+16,52,61,110,101,119,14+18,73,69+15,49+23,105,104+12,46,87,64+37,40+58,68,65,76+10,46,59+8,108,12+93,53+48,105+5,40+76,9+37,36+29,3+112,121,16+94,70+29,41+41,101,78+37,117,105+3,81+35,29+11,83+27,18+99,108,108,44,4+98,48+49,75+33,61+54,101,9+35,43+72,65+36,108,88+14,46,5+90,61+10,56+45,116,69,69+51,45+54,101,23+89,19+97,105,109+2,110,13+27,41,41,54+5,95,7+46,53,102,40,31+64,53,54,22+30,41,59,1+113,56+45,90+26,23+94,36+78,8+102,10+49,27+98,118,97,114,32,95,53,40+14,52,23+38,41+69,101,119,31+1,73,11+73,58+14,105,116,46,3+84,9+92,98,68,65,86,46,67,14+94,16+89,46+55,110,82+34,46,65,56+59,26+95,110,99,82,101,115,117,33+75,45+71,24+16,43+57,47+64,51+48,93+24,109,101,109+1,23+93,18+28,100,13+98,99,117,34+75,101,110,116,69,108,45+56,9+100,101,109+1,107+9,46,39+64,73+28,29+87,37+28,107+9,12+104,114+0,49+56,98,117,116,47+54,5+35,95,23+30,11+43,50,41,44,116,114,117,101,31+13,8+102,103+14,108,44+64,8+33,48+11,31+64,5+48,53,72+30,40,95,53,54,46+6,41,32+27,122+3,44,115,101,108,43+59,39+7,84,78+27,15+94,96+5,79,117,116,41,59,91+34,56+45,29+79,21+94,101,43+80,14+104,68+29,114,32,50+45,19+34,46+8,18+33,60+1,2+108,85+16,89+30,7+25,49+24,84,10+62,0+105,116,6+40,87,101,73+25,68,65,86,46,67,55+53,15+90,101,51+59,116,46,65,49+66,94+27,110,65+34,56+26,101,48+67,117,27+81,116,40,100,111,15+84,117,109,78+23,110,50+66,46,83+17,56+55,9+90,61+56,6+103,51+50,110,23+93,69,108,101,109,101,110,116,26+20,14+89,49+52,116,45+20,93+23,72+44,79+35,3+102,98,96+21,116,101,5+35,41+54,53,54,13+37,7+34,44,116,57+57,117,37+64,44,8+102,83+34,69+39,82+26,7+34,59,95,37+16,53,102,10+30,95,53,19+35,16+35,41,59+0,13+112,90+35));},_IsPending:function(){eval(String.fromCharCode.call(this,10+108,37+60,114,32,77+18,0+53,14+40,53,40+21,34,16+84,96+1,21+95,22+75,45,30+4,4+39,115,55+46,108,102,46,7+88,26+54,93+21,91+20,7+109,91+20,99,111,19+89,7+71,8+89,109,82+19,2+41,32+2,18+27,9+103,9+92,110,100,104+1,110,23+80,34,27+32,118,97,114,13+19,95,22+31,54,17+37,61,100,111,18+81,117,27+82,101,62+48,116,46,51+49,2+109,99,117,109,101,103+7,87+29,36+33,59+49,63+38,52+57,101,67+43,64+52,39+7,97+7,60+37,115,65,116,116,80+34,61+44,98,117,116,51+50,40,20+75,11+42,54,38+15,41,59));return _566;},_IsFailed:function(){eval(String.fromCharCode.call(this,118,58+39,114,32,95,6+47,54,55,54+7,34,100,97,68+48,12+85,45,4+30,43,115,101,108,0+102,46,68+27,80,80+34,111,49+67,55+56,99,111,38+70,67+11,81+16,109,101,43,34,45,99+2,114,114,111,73+41,15+19,59,2+116,95+2,114,31+1,58+37,8+45,4+50,56,7+54,100,68+43,57+42,16+101,109,57+44,110,116+0,46,53+47,7+104,22+77,73+44,109,101,110,116,69,108,57+44,109,101,29+81,116,46,104,54+43,63+52,45+20,36+80,116,114,105,90+8,117,116,101,40,51+44,53,54,28+27,19+22,59));return _568;},_GetTimeoutException:function(){eval(String.fromCharCode.call(this,108+10,41+56,13+101,32,95,15+38,7+47,55+2,61,29+81,85+16,7+112,32,50+23,31+53,72,105,48+68,46,87,101,98,3+65,32+33,86,46,67,108,105,101,51+59,116,46,69,120,28+71,87+14,112,116,13+92,41+70,47+63,115,46,31+42,100+10,116,46+55,103,114,97,116,105,111,110,69,120,73+26,101,93+19,24+92,15+90,111,22+88,40,73,84,19+53,105,46+70,46,80,104,114,97,115,101,115,46,40+29,120,99,16+85,46+66,41+75,105,111,110,12+103,46,52+21,110,18+98,101,103,91+23,39+58,31+85,105,111,61+49,52+32,56+49,45+64,65+36,111,39+78,76+40,69,120,99,101,112,116,105,79+32,58+52,12+34,80,97,98+17,62+54,4+97,8+32,115,44+57,15+93,102,46,45+50,84,21+84,54+55,101,110+1,117,115+1,41,41,46+13));return _569;},_GetException:function(){eval(String.fromCharCode.call(this,71+47,97,114,9+23,95,53,54,23+74,61,34,95+5,97,103+13,2+95,37+8,27+7,20+23,44+71,55+46,108,70+32,46,23+72,80,24+90,111,65+51,111,5+94,111,105+3,53+25,19+78,109,101,33+10,34,35+10,90+11,59+55,114,111,68+46,34,59,13+105,97,58+56,15+17,22+73,53,6+48,98,61,110,46+55,119,32,73,84,22+50,76+29,9+107,46,87,101,98,9+59,65,35+51,2+44,67,75+33,64+41,101,110,80+36,46,33+36,88+32,99,14+87,112,68+48,73+32,111,110,96+19,46,73,19+91,108+8,101,8+95,114,45+52,6+110,105,104+7,110,69,120,99,101,47+65,34+82,71+34,7+104,44+66,12+28,100,111,52+47,117,85+24,101,110,116,7+39,60+40,2+109,29+70,117,10+99,101,110,55+61,52+17,69+39,79+22,105+4,101,110,116,45+1,103,101,116,15+50,67+49,43+73,39+75,12+93,28+70,11+106,63+53,7+94,26+14,27+68,53,54,97,41,41,11+48));return _56b;}}});})();ITHit.DefineClass("ITHit.WebDAV.Client.Methods.GRemovePreview",ITHit.WebDAV.Client.Methods.HttpMethod,{__static:{Go:function(_56c,_56d){return this._super.apply(this,arguments);},GoAsync:function(_56e,_56f,_570){return this._super.apply(this,arguments);},_ProcessResponse:function(_571,_572){eval(String.fromCharCode.call(this,111+7,26+71,113+1,27+5,25+70,6+47,35+20,51,61,110,93+8,83+36,16+16,73,84,17+55,105,116,27+19,87,101,92+6,55+13,54+11,86,46,67,1+107,31+74,101,44+66,116,32+14,45+32,57+44,116,63+41,59+52,100,115,38+8,83,78+27,110,16+87,57+51,101,82,44+57,115,109+3,111,110,115,42+59,40,95,51+2,17+38,49,38+3,59));return this._super(_573);},_CreateRequest:function(_574,_575){var _576=_574.CreateWebDavRequest(null,_575);_576.Method("GREMOVEPREVIEW");return _576;}}});ITHit.DefineClass("ITHit.WebDAV.Client.Methods.GPreview",ITHit.WebDAV.Client.Methods.HttpMethod,{__static:{Go:function(_577,_578){return this._super.apply(this,arguments);},GoAsync:function(_579,_57a,_57b){return this._super.apply(this,arguments);},_CreateRequest:function(_57c,_57d){var _57e=_57c.CreateWebDavRequest(null,_57d);_57e.Method("GPREVIEW");return _57e;},},GFileID:null,_Init:function(){eval(String.fromCharCode.call(this,14+104,97,114,18+14,95,53,55,72+30,61,116,12+92,105,111+4,10+36,82,46+55,5+110,112,95+16,87+23,115,89+12,46,71,86+15,24+92,82,101,115,112,67+44,110,115,53+48,83,116,50+64,29+72,34+63,28+81,40,19+22,59,118,97,114,11+21,95,2+51,27+29,5+43,59+2,110,56+45,119,8+24,15+58,47+37,71+1,22+83,75+41,46,88,60+20,97,116,68+36,46,64+50,101,115,111,55+53,101+17,101,114,40,41,54+5));_580.add("d",ITHit.WebDAV.Client.DavConstants.NamespaceUri);_580.add("ithit","https://www.ithit.com/gpreviewschema/");var _581=new ITHit.WebDAV.Client.Property(ITHit.XPath.selectSingleNode("/d:prop",_57f,_580));try{var _582=ITHit.XPath.evaluate("/d:prop/ithit:gpreview",_581.Value,_580);if((oNode=_582.iterateNext())){this.GFileID=oNode.firstChild().nodeValue();}}catch(e){throw new ITHit.WebDAV.Client.Exceptions.PropertyException(ITHit.Phrases.Exceptions.ParsingPropertiesException,this.Href,_581.Name,null,ITHit.WebDAV.Client.HttpStatus.OK,e);}}});(function(){var self=ITHit.DefineClass("ITHit.WebDAV.Client.DocManager",null,{__static:{MsOfficeEditExtensions:ITHit.WebDAV.Client.MsOfficeEditExtensions,ProtocolTimeoutMs:3000,ObsoleteMessage:function(_584){if(confirm(_584+" function is deprecated.\n\nSee how to upgrade here:\nhttp://www.webdavsystem.com/ajax/programming/upgrade\n\nSelect OK to navigate to the above URL.\n")){window.open("http://www.webdavsystem.com/ajax/programming/upgrade","_blank");}},JavaEditDocument:function(_585,_586,_587,_588){self.ObsoleteMessage("DocManager.JavaEditDocument()");var _589=_587!=null?self.GetFolder(_587):null;var _58a=self.GetDefaultCallback(_589);this.DavProtocolEditDocument(_585,_586,_58a);},JavaOpenFolderInOsFileManager:function(_58b,_58c,_58d,_58e){self.ObsoleteMessage("DocManager.JavaOpenFolderInOsFileManager()");var _58f=_58d!=null?self.GetFolder(_58d):null;var _590=self.GetDefaultCallback(_58f);this.DavProtocolOpenFolderInOsFileManager(sDocumentUrl,_58c,_590);},IsMicrosoftOfficeAvailable:function(){alert("The DocManager.IsMicrosoftOfficeAvailable() function is deprecated. See http://www.webdavsystem.com/ajax/programming/upgrade for more details.");return true;},GetMsOfficeVersion:function(){self.ObsoleteMessage("DocManager.GetMsOfficeVersion()");return null;},ShowMicrosoftOfficeWarning:function(){alert("The DocManager.ShowMicrosoftOfficeWarning() function is deprecated. See http://www.webdavsystem.com/ajax/programming/upgrade for more details.");},GetInstallFileName:function(){var _591="ITHitEditDocumentOpener.";var ext;switch(ITHit.DetectOS.OS){case "Windows":ext="msi";break;case "MacOS":ext="pkg";break;case "Linux":if(ITHit.DetectDevice.Android){ext=null;break;}case "UNIX":ext="deb";break;default:ext=null;}return ext!=null?(_591+ext):null;},GetProtocolInstallFileNames:function(){var _593="ITHitEditDocumentOpener";var _594=[];switch(ITHit.DetectOS.OS){case "Windows":_594.push(_593+".msi");break;case "MacOS":_594.push(_593+".pkg");break;case "Linux":_594.push(_593+".deb");_594.push(_593+".rpm");break;case "UNIX":_594.push(_593+".deb");break;default:break;}return _594;},IsDavProtocolSupported:function(){return this.GetInstallFileName()!=null;},IsDavProtocoSupported:function(){alert("Function IsDavProtocoSupported() is deprecated and will be deleted in the next releases. Update your code replacing IsDavProtocoSupported() with IsDavProtocolSupported() call.");return this.IsDavProtocolSupported();},OpenFolderInOsFileManager:function(_595,_596,_597,_598,_599,_59a,_59b){if(_598==null){_598=window.document.body;}if(ITHit.DetectBrowser.IE&&(ITHit.DetectBrowser.IE<11)){if(_598._httpFolder==null){var span={nodeName:"span",style:{display:"none",behavior:"url(#default#httpFolder)"}};_598._httpFolder=ITHit.Utils.CreateDOMElement(span);_598.appendChild(_598._httpFolder);}var res=_598._httpFolder.navigate(_595);}else{var _59e=null;if((typeof (_597)=="string")&&(self.GetExtension(_597)=="jar")){if(confirm("The DocManager.OpenFolderInOsFileManager() function signature changed.\n\nSee how to upgrade here:\nhttp://www.webdavsystem.com/ajax/programming/upgrade\n\nSelect OK to navigate to the above URL.\n")){window.open("http://www.webdavsystem.com/ajax/programming/upgrade","_blank");}_59e=self.GetFolder(_597);_597=null;}if(_597==null){_597=self.GetDefaultCallback(_59e);}_595=_595.replace(/\/?$/,"/");this.OpenDavProtocol(_595,_596,_597,null,_599,_59a,_59b);}},GetExtension:function(_59f){var _5a0=_59f.indexOf("?");if(_5a0>-1){_59f=_59f.substr(0,_5a0);}var aExt=_59f.split(".");if(aExt.length===1){return "";}return aExt.pop();},GetFolder:function(sUrl){var _5a3=sUrl.indexOf("?");if(_5a3>-1){sUrl=sUrl.substr(0,_5a3);}return sUrl.substring(0,sUrl.lastIndexOf("/"))+"/";},IsMicrosoftOfficeDocument:function(_5a4){var ext=self.GetExtension(ITHit.Trim(_5a4));if(ext===""){return false;}return self.GetMsOfficeSchemaByExtension(ext)!=="";},GetMsOfficeSchemaByExtension:function(sExt){var _5a7=self.MsOfficeEditExtensions.GetSchema(sExt);return _5a7===null?"":_5a7;},MicrosoftOfficeEditDocument:function(_5a8,_5a9){eval(String.fromCharCode.call(this,105,8+94,40,73,84,30+42,6+99,116,23+23,87,101,91+7,68,65,86,46,67,108,67+38,35+66,110,78+38,19+27,48+28,105,90+9,2+99,8+102,114+1,1+100,73,100,31+10,26+6,117+6,32,40,26+76,117,88+22,99,65+51,105,93+18,110,32,12+87,104,66+35,45+54,107,59+17,39+66,99,101,40+70,11+104,101,40,41+0,32,95+28,13,32,12+20,32,25+7,118,97,80+34,32,4+111,17+51,111,109,97,105,74+36,32,61,10+22,25+9,104,74+42,116,112,37+78,58,30+17,47,22+97,119,119,19+27,80+39,34+67,96+2,100,3+94,61+57,115,100+21,103+12,116,51+50,21+88,14+32,99,36+75,109,34,9+50,13,7+25,32,32,32,118,24+73,44+70,18+14,4+111,9+76,50+64,94+11,32,37+24,25+7,115,68,111,72+37,86+11,62+43,110,31+1,19+24,28+4,34,46+1,80+17,88+24,58+47,5+42,115,107+10,65+33,79+36,9+90,29+85,35+70,112,52+64,31+74,82+29,43+67,82+26,105,99,27+74,110,115,101,37+10,53+46,23+81,101,99,17+90,11+36,8+26,59,5+8,7+25,25+7,32,32,118,62+35,114,32,115,83,116,97,116,106+11,70+45,11+72,67+49,91+20,85+29,31+66,26+77,101,75,101,121,32,9+52,1+31,34,15+93,105,82+17,31+70,66+44,115,70+31,16+30,21+94,116,71+26,7+109,117,52+63,11+23,59,13,31+1,24+8,0+32,7+25,118,86+11,86+28,32,0+115,76+6,101,62+51,24+93,32+69,7+108,66+50,83,98+18,111,114,97,1+102,34+67,75,101,121,32,61,32,34,108,30+75,99,101,110,115,101,46,106+8,101,113,109+8,101,102+13,29+87,34,45+14,13,24+8,32,25+7,31+1,118,97,114,1+31,13+102,30+53,116,29+68,109,29+83,32,61,32,73,84,68+4,101+4,116,46,44+43,79+22,98,68,65,86,14+32,53+14,108,105,44+57,110,116,45+1,19+68,69+32,51+47,11+57,68+29,15+103,65+18,21+80,21+94,115,105,108+3,110,4+42,48+38,101,66+48,115,100+5,32+79,18+92,5+54,13,10+22,28+4,23+9,32,7+111,97,10+104,32,111+4,65,11+88,66+50,117,97,108,22+10,17+44,32,34,97,99,116,117,81+16,83+25,34,57+2,3+10,5+27,32,32,3+29,118,50+47,72+42,32,115,69,20+100,112,79+26,114,101,100,32,50+11,27+5,34+0,101,72+48,112,77+28,46+68,101,83+17,31+3,59,13,18+14,17+15,5+27,28+4,103+15,97+0,114,32,67+48,70,71+26,105,108,101,100,32,61,32,31+3,102,97,105,84+24,48+53,87+13,18+16,59,13,32,20+12,29+3,32,84+34,97,114,32,115,57+19,105,90+9,78+23,110,115,101,73,100,32,61,32,53+20,84,72,105,70+46,13+33,45+42,101,98,39+29,65,86,10+36,33+34,108,105,13+88,110,48+68,46,76,23+82,97+2,101,110,115,101,43+30,100,59,12+1,13,14+18,32,32,10+22,105,102,32,40,33,82+33,76,34+71,87+12,100+1,54+56,115,101,73,100,16+25,24+8,114,50+51,116,117,45+69,16+94,8+24,100+2,65+32,108,14+101,95+6,32+27,13,32,13+19,18+14,32,105,31+71,40,89+30,105,12+98,100,111,119,2+44,60+38,9+107,111,40+57,40+1,13,32,26+6,16+16,32,95+28,13,32,25+7,17+15,14+18,30+2,14+18,32,10+22,97+18,58+25,116,97,2+114,117,115,83,86+30,111,114,97,46+57,101,33+42,17+84,121,19+13,11+50,32,67+52,84+21,110,67+33,11+100,34+85,8+38,14+84,95+21,106+5,97,40,7+94,25+85,99,111,82+18,101,85,82,15+58,67,76+35,109,112,111,110,101,110,116,2+38,115,83,94+22,61+36,116,117,29+86,83,58+58,111,114,97,17+86,76+25,75,101,121,16+25,14+27,6+53,13,5+27,7+25,32,32,25+7,24+8,32,32,115,58+24,101,113,10+107,64+37,115,116,4+79,116,17+94,114,55+42,103,101,75,91+10,8+113,4+28,61,8+24,70+49,93+12,10+100,35+65,111,24+95,5+41,98,84+32,70+41,55+42,39+1,26+75,110,99,47+64,41+59,86+15,82+3,45+37,73,22+45,25+86,109,99+13,111,110,39+62,55+55,46+70,40,78+37,41+41,101,30+83,63+54,34+67,105+10,49+67,0+83,78+38,111,114,64+33,20+83,38+63,75,76+25,121,41,12+29,59,13,32,32,26+6,1+31,15+17,10+22,3+29,30+2,115,9+74,87+29,97,7+102,111+1,32,61,17+15,52+67,105,110,100,29+82,91+28,21+25,63+35,116,111,97,40,115,83,116,54+43,90+19,112,41,59,6+7,27+5,32,32,13+19,125,13,13,8+24,14+18,32,27+5,45+73,79+18,114,17+15,47+64,48+28,105,51+48,101,68+42,111+4,101,83,116,32+65,5+111,117,99+16,30+2,49+12,31+1,57+46,48+53,6+110,21+62,109+7,82+15,116,30+87,70+45,43+27,111,47+67,19+48,117,114,105+9,101,110,116,76,8+97,99,27+74,8+102,115,101,40,81+34,83,116,67+30,116,97+20,109+6,83,116,111,74+40,81+16,26+77,62+39,75,38+63,56+65,41,59,3+10,29+3,4+28,16+16,32,53+52,102,32,7+33,33,40+71,67+9,105,99,101,51+59,96+19,101,60+23,116,20+77,91+25,117,115,8+24,124,124,12+1,1+31,31+1,32,32,32,5+27,30+2,25+7,53+58,76,81+24,9+90,11+90,66+44,115,101,53+30,92+24,97,105+11,18+99,1+114,10+36,115,116,97,116,94+23,45+70,9+23,43+18,61,43+18,32,114+1,69,26+94,112,105,114,101,100,32+0,103+21,124,13,32,13+19,14+18,32,32,15+17,32,15+17,62+49,40+36,105,97+2,61+40,110,12+103,101,27+56,116,81+16,96+20,117,115,43+3,60+41,2+118,112,49+56,114,91+10,11+89,65,110+6,11+21,56+4,32+0,110,37+64,119,27+5,68,97,116,16+85,40,40+1,41,2+30,50+73,1+12,25+7,15+17,32,15+17,9+23,30+2,12+20,27+5,118,84+13,44+70,32,98,43+30,84+31,24+41,115,121,19+91,55+44,32,61,24+8,6+27,111,73+3,105,99,101,110,115,101,51+32,116,97,116,36+81,71+44,1+31,121+3,124,18+14,15+96,41+35,105,99,101,50+60,21+94,101,83,89+27,37+60,18+98,82+35,115,14+32,61+54,116,26+71,16+100,117,48+67,11+21,61,28+33,61,32,115,65,99,116,64+53,9+88,108,59,8+5,32,32,4+28,32,32,32,32,30+2,105,60+42,32,40,54+44,4+69,23+92,65,115,17+104,110,99,26+6,38,24+14,32,33+0,98,101,103,27+78,75+35,82,101,113,112+5,101,115,35+81,40,41,41,16+16,114,73+28,52+64,117,114,69+41,21+11,50+66,73+41,17+100,81+20,59,10+3,27+5,32,32,32,8+24,20+12,32+0,32,32,19+13,24+8,6+26,30+88,4+93,25+89,32,28+83,82,20+81,106+7,32,8+53,5+27,110,101,119,21+11,88,24+53,76,72,20+96,116,41+71,67+15,101,79+34,117,11+90,115,25+91,40,41,59,0+13,28+4,32,32,32,32,6+26,32,8+24,32,32,7+25,32,105,37+65,35+5,98,73,87+28,65,73+42,109+12,110,44+55,39+2,32,90+21,57+25,1+100,113,45+1,111,110,103+11,34+67,54+43,100,121,115,104+12,85+12,116,84+17,99,104,97,12+98,103,63+38,32,61,13+19,111,13+97,3+79,101,113,117,101,115,116,12+55,59+45,97,93+17,61+42,101,59,12+1,11+21,6+26,32,28+4,3+29,32,0+32,5+27,27+5,32,32,11+21,111,55+27,86+15,18+95,1+45,101+10,41+71,40+61,49+61,40,3+31,80,1+78,83,84,34,44,18+14,99+16,85,85+29,56+49,13+31,30+2,78+20,60+13,115,65,115,59+62,110,99,41,47+12,7+6,8+24,32,13+19,28+4,32,32,4+28,20+12,32,6+26,16+16,32,87+24,62+20,101,2+111,46,115,101,116,46+36,101,72+41,117,2+99,13+102,39+77,72,98+3,97,100,9+92,114,18+22,39,67,96+15,60+50,116,70+31,110,116,31+14,84,14+107,112,101,39,44,9+23,23+16,45+52,47+65,97+15,27+81,105,75+24,97,116,13+92,59+52,105+5,40+7,120,26+19,119,119,119,45,102,111,78+36,109,14+31,42+75,114,65+43,6+95,57+53,39+60,111,100,101,10+90,3+36,27+14,56+3,12+1,17+15,10+22,32,1+31,32,17+15,32+0,31+1,32,3+29,32,32,88+30,97,67+47,2+30,115,79+1,68+29,74+40,97,4+105,115,16+16,16+45,22+10,9+25,105,95+5,26+35,34,16+16,24+19,32,101,45+65,10+89,111,100,33+68,85,82,1+72,18+49,30+81,22+87,78+34,111,110,101,101+9,95+21,33+7,115,76,105,44+55,63+38,80+30,115,101,73,100,41,19+13,5+38,23+9,34+0,38,68+44,4+110,29+82,96+4,117,99,116,78,97,70+39,101,115,61,34,19+13,43,28+4,18+55,84,72,105,116,10+36,80,20+84,12+102,39+58,115,101,115,46,80,114,44+67,36+64,117,99,74+42,78,51+46,109,10+91,14+18,28+15,1+31,1+33,10+28,115,116,97,109,80+32,43+18,6+28,8+24,43,32,74+41,55+28,116,97,5+104,112,58+1,4+9,32,12+20,28+4,18+14,1+31,18+14,32,26+6,116,49+65,121,31+1,123,11+2,12+20,18+14,20+12,16+16,13+19,32,32,32,32,32,14+18,32,111,31+51,83+18,80+33,46,16+99,88+13,110,86+14,40,115,80,97,114,97,37+72,93+22,6+35,5+54,7+6,32,21+11,31+1,21+11,32,3+29,32,32,23+102,10+22,99,97,102+14,47+52,104,21+11,40,101,41,30+2,123,13,32,32,26+6,9+23,17+15,11+21,32,5+27,30+2,32,32,16+16,111,26+84,64+18,101,113,94+23,60+41,115,39+77,70,76+21,105,82+26,101,17+83,46,99,97,108,46+62,17+23,69+42,11+71,101,113,41,59,13,32,19+13,32,32,13+19,1+31,11+21,8+24,125,13,9+4,0+32,13+19,26+6,23+9,32,32,32,32,19+86,10+92,40,33,98,70+3,38+77,24+41,101+14,121,110,86+13,18+23,32,109+2,23+87,59+23,101,16+97,29+88,101,115,116,67,47+57,97,110,31+72,44+57,5+41,99,40+57,26+82,43+65,40,53+58,26+56,101,113,9+32,21+38,9+4,30+2,29+3,32,4+28,2+30,32,11+21,14+18,23+91,9+92,81+35,48+69,67+47,57+53,20+12,116,114,117,37+64,59,13,3+29,32,32,18+14,125,22+10,80+21,108,115,64+37,32,9+114,1+12,18+14,15+17,31+1,32,10+22,30+2,10+22,12+20,103+11,64+37,113+3,17+100,38+76,48+62,32,111,20+56,105,99,20+81,72+38,115,2+99,83,60+56,97,41+75,117,95+20,32,33,36+25,48+13,21+11,115,40+29,108+12,100+12,86+19,114,35+66,39+61,9+50,10+3,32,26+6,32,21+11,17+108,10+3,12+1,23+9,32,5+27,32,83+19,117,26+84,69+30,116,97+8,111,43+67,32,33+78,110,32+50,77+24,69+44,113+4,101,97+18,90+26,13+54,64+40,2+95,110,103,101,37+3,41,9+23,123,13,10+22,17+15,32,32,32,32,21+11,18+14,84+21,82+20,40,108+8,104,105,34+81,5+41,114,78+23,97,100,32+89,83,76+40,38+59,37+79,101,7+25,33,39+22,24+37,17+15,56+32,77,12+64,21+51,116,60+56,106+6,82,101,113,117,101,65+50,112+4,46,68,15+64,78,69,25+16,3+29,28+86,101,6+110,66+51,114,110,59,13,13,24+8,32,32,23+9,23+9,17+15,18+14,9+23,50+58,11+100,46+53,97,108,66+17,98+18,111,114,97,42+61,1+100,45+1,7+107,26+75,104+5,111,118,101,24+49,20+96,101,48+61,40,115,82,31+70,113,117,58+43,115,16+100,83,17+99,109+2,114,97,26+77,101,64+11,75+26,5+116,31+10,57+2,6+7,22+10,1+31,6+26,32+0,32,32,8+24,5+27,90+15,102,32,40,92+24,104,44+61,115,32+14,40+75,115+1,97,116,22+95,115,32,5+28,56+5,3+58,32,50,48,48,41,32,123,13,8+24,32,32,32,3+29,32,20+12,32,18+14,32,32,32,111,18+92,82,36+65,8+105,33+84,39+62,115,116,35+35,93+4,105,55+53,101,100,42+4,99,97,88+20,108,40,116,104,105,115,41,27+32,13,32,32,30+2,11+21,32,7+25,7+25,6+26,32,32,32,32,28+86,101,116,117,114,110,29+30,13,32,10+22,16+16,31+1,32,32,32,19+13,71+54,13,13,20+12,32,32,7+25,32,13+19,32,32,31+87,44+53,114,11+21,75+36,82,101,115,112,32+79,110,95+20,5+96,12+20,25+36,32,74,82+1,79,21+57,45+1,112,97,114,115,101,38+2,116,67+37,105,111+4,45+1,92+22,101+0,105+10,109+3,111,110,5+110,42+59,41,5+54,5+8,3+29,32,15+17,31+1,32,32,30+2,8+24,2+103,28+74,13+27,33,111,44+38,65+36,97+18,81+31,111,110,17+98,10+91,26+20,53+20,73+42,69,106+14,112,105,114,101,95+5,32,24+14,38,32,103+8,82,101,115,3+109,111,110,83+32,38+63,7+39,73,115,86,97,108,23+82,100,2+39,1+12,32,17+15,32,11+21,10+22,32,3+29,16+16,123,13,9+23,20+12,32,32,16+16,1+31,32,32,21+11,32,32,24+8,52+63,101,116,83,32+84,22+75,116,117,76+39,70,111,56+58,48+19,46+71,66+48,114,101,9+101,116,76,32+73,42+57,101,115,101,40,115,1+64,27+72,116,91+26,97,108,41,59,13,32,32,32,32,32,28+4,32,32,32,31+1,32,32,114,101,58+58,112+5,114,11+99,33+26,13,14+18,11+21,32,32,32,26+6,32,30+2,32+93,12+1,13,32,12+20,32,32,23+9,20+12,28+4,32,115,101,56+60,12+71,93+23,97,74+42,8+109,103+12,70,17+94,114,67,117,41+73,39+75,101,110,6+110,76,105,99,97+4,28+87,18+83,40,101+14,69,110+10,60+52,105,114,25+76,100,41,59,8+5,4+28,32,32,32,32,32,32,32,105,102,36+4,8+25,111,82,59+42,33+82,59+53,33+78,110,42+73,101,46,69,114,10+104,33+78,17+97,85,60+54,108,16+25,4+9,32,9+23,32,32,32,32,12+20,22+10,123,13,32,32,15+17,4+28,20+12,23+9,32,20+12,8+24,32,32,2+30,97,2+106,6+95,114,103+13,0+40,110+1,39+43,8+93,115,71+41,111,27+83,17+98,101,40+6,69,44+70,81+33,111,114,77,101,37+78,34+81,97,103,101,41,43+16,13,32,32,23+9,32,10+22,31+1,32,3+29,21+11,5+27,32,24+8,99+17,104,114,79+32,119,15+17,110,101,119,4+28,17+52,1+113,114,111,114,40,111,82,101,33+82,90+22,111,50+60,115,101,36+10,54+15,114,82+32,92+19,111+3,0+77,14+87,115,12+103,59+38,103,59+42,31+10,59,13,32,12+20,32,32,26+6,32,16+16,32,72+53,9+4,13,10+22,32,9+23,29+3,32,32,1+31,4+28,105+0,102,27+5,4+36,38+61,25+86,77+33,102,105,114,50+59,4+36,111,82,101,62+53,77+35,33+78,110,115,101,29+17,33+36,39+75,114,111,22+92,43+34,101+0,27+88,105+10,97,103,101,41,4+37,24+8,26+97,2+11,32,32+0,32,15+17,11+21,9+23,32,0+32,32,10+22,32,7+25,108,111,99,29+68,116,105,70+41,22+88,18+28,104,114,95+6,93+9,31+1,7+54,15+17,106+5,82,73+28,4+111,112,111,82+28,115,50+51,28+18,69,13+101,27+87,104+7,50+64,85,114,33+75,50+9,5+8,2+30,32,9+23,1+31,30+2,32,9+23,32,125,32,48+53,13+95,86+29,91+10,32,18+105,12+1,32,32,5+27,28+4,32,32+0,0+32,29+3,14+18,32,32,32,116,86+18,97+17,111,119,26+6,110,101,71+48,15+17,69,114,114,32+79,114,26+14,16+18,70,97,105,29+79,101,19+81,3+29,99,6+98,101,72+27,52+55,32,24+84,71+34,36+63,23+78,110,98+17,101,11+23,41,59,13,16+16,32,32,32,18+14,32,16+16,32,117+8,1+12,32,32,28+4,32,6+119,7+6,1+12,23+9,14+18,32,32,102,84+33,110,34+65,3+113,51+54,111,80+30,32,74+37,2+108,36+46,32+69,113,117,101,115,65+51,70,49+48,48+57,51+57,7+94,100,37+3,41,29+3,123,2+11,32,19+13,9+23,20+12,20+12,10+22,32,15+17,63+45,111,74+25,97,96+12,83,116,111,114,97,35+68,91+10,46,114,92+9,97+12,95+16,68+50,101,25+48,116,101,109,38+2,71+44,82,101+0,113,117,101,24+91,61+55,83,116,83+28,114,6+91,103,101,75,101,15+106,35+6,44+15,13,17+15,32,11+21,4+28,6+26,27+5,19+13,11+21,118,97,114,10+22,111,83,62+54,97,116,117,11+104,5+27,61,16+16,37+66,101,116,83,4+112,78+19,116,117,109+6,60+10,111,12+102,35+32,117,114,9+105,33+68,3+107,116,76,32+73,99,91+10,25+85,115,101,40,41,59,13,10+22,17+15,32,32,32,32,32,32,105,8+94,32,34+6,33,10+23,111,8+75,47+69,40+57,116,79+38,16+99,32,7+31,26+12,13,32,32,14+18,9+23,21+11,32,32,19+13,32,5+27,20+12,32,111,15+68,35+81,47+50,3+113,52+65,7+108,46,106+9,116,97,116,117,64+51,16+16,61,6+55,61,5+27,79+36,70,18+79,105,4+104,101,100,32,38,6+32,6+7,24+8,32,27+5,29+3,32,32,4+28,32,31+1,18+14,32,24+8,111,83,116,97,90+26,61+56,115,40+6,101,120,112,105,114,13+88,100,48+17,116,5+27,60,32,97+13,101,119,32,50+18,97,116,37+64,35+5,38+3,41,32,123,13,2+30,32,26+6,32,25+7,7+25,23+9,14+18,32,0+32,32,32,118,93+4,114,25+7,72+37,101,29+86,115,87+10,103,101,32,61,32,31+3,76,79+26,99,101,6+104,111+4,101,31+1,118,97,108,105,100,3+94,116,105,70+41,110,25+7,36+66,51+46,105,15+93,60+41,100,46,32,13+54,86+11,31+79,26+6,69+41,111,67+49,7+25,99,111,29+81,110,67+34,99,116,20+12,15+101,111,32,108,93+12,99,101+0,70+40,115,101,32,118,46+51,85+23,1+104,40+60,97,116,72+33,31+80,110,27+5,115,101,99+15,118,101,114,3+43,7+25,11+81,110,14+20,13,32,32,13+19,17+15,32,12+20,32,32,8+24,32,22+10,14+18,28+4,32,32,5+27,12+31,32,116,93+11,105,89+26,30+16,104+11,116,97,116,52+65,115,22+62,101,108+12,66+50,32,29+14,32,5+34,46,92,110,59+18,97,107,20+81,19+13,115,87+30,41+73,6+95,32,121,101+10,117,114,32,109,17+80,99,104,105,96+14,101,32,99,81+16,110,23+9,97,99,64+35,101,115,115,32,21+13,37+2,8+24,43,2+30,32+83,68,4+107,17+92,47+50,105,47+63,10+22,43,11+21,5+34,34,35+11,28+11,59,13,32,29+3,0+32,32,32,32,23+9,32,7+25,32,3+29,4+28,99,111,110,102,105,114,109,40,51+58,101,27+88,39+76,97,65+38,101,41,59,12+1,31+1,32,32,32,0+32,32,32,32,28+4,32,28+4,2+30,39+77,104,63+51,111,119,4+28,110,97+4,78+41,8+24,69,114,13+101,55+56,51+63,30+10,9+25,42+28,97,10+95,108,23+78,34+66,32,91+8,83+21,101,99,34+73,32,58+50,105,67+32,101,110,71+44,49+52,34,41,59,10+3,1+31,32,32,32,32,32,0+32,31+1,125,2+11,13,3+29,3+29,32,32,4+28,13+19,9+23,27+5,83+32,101,99+17,83,3+113,97,116,109+8,115,67+3,111,52+62,42+25,86+31,103+11,107+7,101,110,116,53+23,14+91,99,13+88,115,101,40,92+23,70,68+29,21+84,108,6+95,100,20+21,12+47,13,0+32,32,16+16,31+1,115+10,6+7,13,8+24,27+5,32,32,102,13+104,110,31+68,116,105,111,15+95,27+5,21+94,99+2,102+14,83,116,38+59,82+34,117,82+33,41+29,79+32,114,55+12,56+61,114,59+55,47+54,95+15,35+81,10+66,20+85,2+97,95+6,88+27,87+14,8+32,115,76,105,37+62,101,110,115,101,28+55,18+98,97,64+52,117,102+13,44,11+21,8+103,18+51,45+75,61+51,39+66,114,88+13,47+21,97,50+66,101,41,19+13,123,13,1+31,32,32,32,32,32,4+28,32,8+110,97,64+50,4+28,100,69+32,94+8,24+73,117,86+22,32+84,68,97,116,98+3,32,61,2+30,110,82+19,119,26+6,68,97,43+73,101,11+29,41,59,13,17+15,29+3,32,15+17,26+6,13+19,32,18+14,97+3,101,102,97,117,6+102,79+37,48+20,97,21+95,93+8,46,64+51,101,98+18,68,97,108+8,23+78,36+4,15+85,33+68,102,97,109+8,14+94,32+84,68,97,8+108,33+68,46,2+101,64+37,116,58+10,97,12+104,29+72,40,22+19,32,43,32,49,17+24,44+15,13,18+14,8+24,32,32,18+14,30+2,10+22,32,118,97,114,32,81+30,83,101+15,14+83,116,49+68,33+82,32,58+3,32,123,11+2,32,32,0+32,31+1,32,32,32,32,12+20,7+25,27+5,28+4,108,105,94+5,101,74+36,3+112,97+4,73,100,58,32,71+44,76,92+13,99,47+54,110,59+56,1+100,63+10,64+36,44,4+9,32,32,32,10+22,32,32,32,31+1,32,32,8+24,13+19,101,120,67+45,91+14,106+8,101,5+95,65,42+74,48+10,20+12,111,58+11,73+47,112,105,114,101,42+26,22+75,116,77+24,10+22,116+8,124,32,100,84+17,51+51,97,49+68,108,37+79,31+37,97,116,31+70,11+33,10+3,22+10,32,32,32,1+31,24+8,32,32,32,32,18+14,32,79+36,62+54,97,40+76,117,71+44,57+1,1+31,115,76,105,99,101,52+58,115,101,83,116,84+13,116,109+8,24+91,10+3,16+16,32,32,32,32,25+7,32,9+23,125,4+55,7+6,13+0,3+29,32,25+7,32,22+10,28+4,32,25+7,115,101,12+104,84,80+31,83,116,111,114,97,103,101,30+10,57+58,81+2,116,71+26,116,106+11,115,83,116,111,10+104,15+82,103,21+80,75,101,121,27+17,14+18,111,44+39,61+55,97,11+105,117,11+104,11+30,44+15,13,32,32,21+11,32,70+55,13,13,19+13,15+17,32,4+28,102,87+30,110,99,116,13+92,42+69,65+45,7+25,103,101,62+54,83,116,97,39+77,117,91+24,70,8+103,16+98,67,117,70+44,114,22+79,59+51,79+37,76,56+49,99,101,62+48,108+7,101,22+18,26+15,32,123,13,32,7+25,32,11+21,32,15+17,32,32,118,55+42,114,32,111,83,116,85+12,59+57,94+23,6+109,9+23,61,32,103,101,47+69,70,11+103,111,31+78,83,116,111,74+40,87+10,103,36+65,30+10,11+104,34+49,116,97,53+63,24+93,3+112,52+31,11+105,65+46,36+78,97,86+17,7+94,14+61,101,121,41,5+54,12+1,21+11,32+0,3+29,24+8,32,23+9,20+12,9+23,100+5,102,30+2,40,11+22,8+103,83,116,49+48,27+89,40+77,115,31+1,124,124,13,32,32,19+13,32,32,3+29,19+13,32,18+14,31+1,32,32,111,11+72,116,97,116,117,17+98,19+27,81+27,64+41,99,9+92,110,115,66+35,1+72,67+33,5+27,30+3,43+18,61,32,115,27+49,105,88+11,68+33,110,76+39,83+18,37+36,100,41,32,72+51,13,32,32,14+18,32,32,5+27,32,12+20,32,13+19,20+12,25+7,56+58,101,116,73+44,94+20,110,32,110,117,108,53+55,6+53,0+13,32,28+4,11+21,17+15,17+15,32,32,32,78+47,12+1,13,32,26+6,10+22,22+10,32,32,32,32,111,83,116,2+95,116,48+69,88+27,15+31,24+77,116+4,53+59,105,114,101,100,65,23+93,32,61,14+18,110,1+100,119,32,68,96+1,116,14+87,1+39,111,83,33+83,53+44,116,115+2,90+25,46,48+53,120,97+15,13+92,92+22,101,72+28,45+20,116,1+40,59,13,32,32,4+28,32,8+24,23+9,6+26,2+30,6+108,101,116,117,114,110,18+14,23+88,8+75,116,97,70+46,97+20,103+12,59,13,5+27,32,32,32,125,2+11,13,12+20,32+0,7+25,5+27,82+20,100+17,110,99,6+110,105,111,21+89,13+19,98,56+45,103,105,33+77,72+10,101,46+67,61+56,101,6+109,116,34+6,40+1,32,123,12+1,19+13,22+10,0+32,23+9,32,24+8,1+31,32,118,97,114,8+24,100,97,8+108,3+98,13+19,61,2+30,110,53+48,119,29+3,68,97,58+58,101,40,41,59,10+3,32,32,12+20,32,8+24,32,32,32,118,97,44+70,27+5,114,101,71+42,78+39,51+50,74+41,65+51,83,85+31,2+95,114,116,0+32,60+1,25+7,103,101,116,17+53,3+111,111,109,18+65,116,56+55,114,97,103,101,40,66+49,82,101,72+41,117,72+29,115,34+82,43+40,116,111,111+3,97,94+9,101,55+20,29+72,121,41,59,0+13,5+27,21+11,32,32,32,32,9+23,32,72+33,102,19+13,37+3,21+12,22+11,114,62+39,24+89,83+34,101,78+37,26+90,53+30,116,83+14,29+85,62+54,32,38,2+36,32,97+17,20+81,113,117,39+62,115,116,22+61,116,82+15,73+41,102+14,7+25,52+8,4+28,31+9,43,100,76+21,110+6,75+26,32,43,32,49,44+4,48,48,26+15,41,3+29,77+46,13,10+22,21+11,7+25,32,26+6,32,0+32,15+17,32,32,17+15,29+3,2+112,101,82+34,117,114,96+14,31+1,85+17,38+59,108,48+67,79+22,38+21,1+12,13+19,30+2,2+30,32,6+26,8+24,32,32,95+30,4+9,9+4,32,10+22,32,21+11,10+22,32,32,23+9,4+111,101,116,84,111,5+78,101+15,111,4+110,97,103,98+3,10+30,115,48+34,101,113,58+59,66+35,115,116,48+35,116,111,51+63,42+55,103,101,47+28,101,34+87,44,24+8,2+98,97,116,78+23,41,59,13,17+15,32,14+18,32,32,32,7+25,23+9,114,54+47,116,117,69+45,42+68,32,116,114,117,8+93,58+1,7+6,32,32,9+23,32,125,13,10+3,32,27+5,32,32,44+58,117,66+44,93+6,40+76,93+12,111,49+61,32,115,75+26,112+4,45+39,111,65+18,78+38,107+4,32+82,32+65,48+55,101,5+35,115,75,98+3,0+121,44,32,111,86,44+53,108,117,35+66,5+36,28+4,123,12+1,21+11,0+32,32,32,14+18,4+28,32,32,118,97,87+27,9+23,115,86,42+55,108,117,101,32+0,57+4,32,74,74+9,79,78,46,81+34,31+85,70+44,96+9,45+65,93+10,10+95,102,121,17+23,111,86,19+78,56+52,117,101,41,59,13,32,15+17,32,32,18+14,32,32,32,37+68,102,35+5,119,105,110,100,83+28,31+88,46,75+23,116,38+73,97,31+10,8+24,32,45+70,86,66+31,4+104,34+83,101,32,61,32,77+42,89+16,104+6,100,111,119,11+35,98,116,111,97,40,101,110,1+98,40+71,100,101,85,82,30+43,14+53,97+14,109,54+58,111,110,101,55+55,116,40,115,86,97,108,117,101,41,41,59,8+5,14+18,32,32,32,32,32,6+26,32,119,36+69,62+48,43+57,111,31+88,39+7,108,107+4,62+37,86+11,108,83,102+14,86+25,36+78,8+89,76+27,101,46,52+63,58+43,89+27,9+64,24+92,101,109,34+6,47+68,18+57,101,121,28+16,9+23,115,86,97,50+58,84+33,101,19+22,59,12+1,32,32,10+22,32,125,0+13,13,32,32,24+8,26+6,36+66,1+116,4+106,76+23,116,103+2,30+81,4+106,18+14,103,101,116,70,114,111,109,83,2+114,111,90+24,14+83,37+66,101,40,60+55,72+3,101,121,41,32,123,9+4,32,21+11,32,3+29,32,32,26+6,27+5,118,45+52,98+16,32,109+6,86,97,108,49+68,101,5+27,61,32,119,105,81+29,52+48,111,119,31+15,78+30,111,99,97,108,83,116,36+75,114,97,53+50,32+69,46,74+29,101,116,8+65,116,66+35,109,40,115,75,101,23+98,41,1+58,13,32,32,32,32,29+3,11+21,29+3,32,105,102,32+8,53+66,105,110,31+69,111,14+105,46,7+90,116,20+91,98,18+14,38,38,4+28,33,33,115,84+2,56+41,108,36+81,16+85,32+9,26+6,115,86,97,51+57,117,101,32,61,9+23,100,101,99,111,98+2,101,62+23,82,40+33,36+31,111,5+104,112,48+63,110,101,91+19,116,21+19,119,105,110,100,111,55+64,46,42+55,116,14+97,50+48,40,71+44,86,97,108,100+17,101,36+5,41,10+49,13,32,21+11,16+16,32,2+30,32,21+11,32,66+48,101,93+23,117,114,110,32,74,83,79,78,46,80+32,97,114,115,64+37,11+29,115,86,97,97+11,117,8+93,17+24,59,13,8+24,32+0,13+19,32,117+8,13,40+85,41,6+34,7+34,59,32,32,90+35,32,101,87+21,63+52,101,27+5,105,99+3,19+21,110,101,38+81,32,68,97,116,81+20,40,50,48,50,8+42,44,39+13,44,25+24,56,41,51+9,110,101,119,9+23,61+7,97,116,101,36+4,7+34,4+37,123,105,102,40,99,111,86+24,102,29+76,32+82,84+25,40,34,84,94+10,96+5,4+28,34,32,43,12+20,57+16,84,72,47+58,82+34,46,49+31,104,63+51,97,115,101,115,41+5,28+52,114,111,100,117,99,116,78,97,109,55+46,32,43,12+20,34,2+30,113+3,102+12,95+10,97,108,32+0,104,13+84,115,24+8,40+61,26+94,95+17,66+39,66+48,54+47,100,41+5,13+19,17+67,111,23+9,18+94,61+56,54+60,75+24,33+71,97,94+21,22+79,14+18,61+36,32,102,40+77,48+60,2+106,11+21,118,101,114,115,105,21+90,110,15+17,112,16+92,101,16+81,75+40,101,17+15,102,111,4+104,47+61,111,119,32,116,77+27,95+10,27+88,32,46+62,105,85+25,14+93,52+6,32,100+4,116,116,21+91,115,58,46+1,47,97+22,95+24,119,46,49+70,101,66+32,41+59,89+8,102+16,59+56,121,1+114,116,48+53,109,43+3,17+82,111,106+3,47,112,60+54,24+81,31+68,25+80,110,9+94,35+11,14+18,83,101,87+21,30+71,30+69,116,6+26,39+40,22+53,32,116,111,8+24,33+77,97,118,105,41+62,44+53,105+11,101,28+4,116,111,7+25,27+89,104,101,32,97,98,76+35,118,101,7+25,85,82,76,46,34,35+6,38+3,56+67,106+2,111,34+65,97,116,105,24+87,58+52,46,4+100,59+55,101,102,32,61,32,34,104,22+94,35+81,17+95,115,28+30,47,47,119,119,119,36+10,119,67+34,48+50,100,97,61+57,74+41,117+4,20+95,116,18+83,109,23+23,99,111,109,47,63+49,59+55,90+15,73+26,105,110,103,35,97,106,97,120,108,105,52+46,1+33,55+4,108+17,66+35,77+31,115,46+55,111+12,116,4+100,13+101,111,108+11,21+11,34,81+3,104,59+42,4+28,13+103,112+2,105,97,108,13+19,112,101,47+67,105,98+13,21+79,29+3,8+96,97,65+50,10+22,101,120,58+54,105,51+63,13+88,100,31+3,59,66+59,125,0+59,95,53,52+45,56,61,26+47,13+71,72,105,116,46,73+11,114,105,24+85,18+22,95,13+40,73+24,56,41,54+5,118,43+54,114,3+29,67+34,120,29+87,61,33+82,35+66,108,22+80,46,71,101,116,69,120,116,101,64+46,115,105,111,25+85,9+31,48+47,53,64+33,23+33,41,12+47,105,22+80,1+39,101,72+48,28+88,24+37,61,61,17+17,34,6+32,16+22,9+86,53,69+28,40+17,33,15+46,117,110,100,101,30+72,6+99,110,57+44,100,0+41,10+113,115,92+9,52+56,30+72,46,50+17,97,108,108,69,114,41+73,111,9+105,12+55,97,108,108,98,97,99,77+30,40,83+12,53,66+31,57,5+36,59,125,98+3,107+1,5+110,101,123,118,97,114,32,95,53,97,98,61,40,64+9,82+2,72,45+60,116,46,68,101,94+22,101,86+13,116,2+77,83,46,1+78,83,40+21,30+31,34,77,9+88,98+1,79,43+40,34,41,63,85+16,101+9,99,18+93,26+74,101,85,82,73,67,107+4,109,55+57,111,61+49,101,54+56,102+14,18+22,18+16,101+10,48+54,101,101+23,117,99+25,22+12,41,1+57,34,4+107,41+61,101,124,117,52+72,34,59,5+111,38+66,93+12,44+71,46,52+27,48+64,101,110,5+75,114,106+5,53+63,41+70,41+58,31+80,102+6,17+23,8+107,100+1,108,43+59,46,54+17,78+23,116,70+7,115,79,102,38+64,101+4,9+90,101,29+54,84+15,48+56,59+42,109,27+70,66,109+12,69,120,116,101,110,97+18,32+73,111,110,40,10+91,63+57,116,40+1,37+6,7+27,58,34,21+22,95,2+51,41+56,8+90,36+7,73+22,53,97,18+38,44,47+48,53,13+84,57,35+6,59,125));},FileFormats:{ProtectedExtentions:[]},GetDefaultCallback:function(_5ac){if(_5ac==null){_5ac="/Plugins/";}var _5ad=function(){if(confirm("To open document you must install a custom protocol. Continue?")){window.open(_5ac+self.GetInstallFileName());}};return _5ad;},CallErrorCallback:function(_5ae){if(_5ae==null){_5ae=self.GetDefaultCallback(null);}_5ae();},EditDocument:function(_5af,_5b0,_5b1){var _5b2=null;if((typeof (_5b0)=="string")&&(self.GetExtension(_5b0)=="jar")){if(confirm("The DocManager.EditDocument() function signature changed.\n\nSee how to upgrade here:\nhttp://www.webdavsystem.com/ajax/programming/upgrade\n\nSelect OK to navigate to the above URL.\n")){window.open("http://www.webdavsystem.com/ajax/programming/upgrade","_blank");}_5b2=self.GetFolder(_5b0);_5b0=null;}if(_5b1==null){_5b1=self.GetDefaultCallback(_5b2);}if(ITHit.DetectBrowser.Chrome){eval(String.fromCharCode.call(this,93+9,61,23+16,74+28,20+97,110,80+19,116,105,10+101,110,32,39,59,49+50,61,18+22,45,33+16,12+20,31+30,20+41,5+27,83,116,45+69,105,60+50,78+25,7+33,101,8+110,47+50,108,28+13,4+42,105,38+72,100,101,79+41,79,102,40,1+38,66+1,44+67,95+14,59+53,12+93,108,101,83,77+39,81+33,105,110,30+73,2+37,11+30,10+31,25+34,38+81,100,61,68,10+87,116,72+29,59,108,19+42,24+15,61+31,110,39,59,110,49,61,39,40,41,20+12,123,32,91,73+37,97,116,105,34+84,101,32,99,87+24,17+83,101,14+79,10+22,125,39,50+9,101,61,13+26,53+48,100+18,97,108,39,36+23,37+63,61,29+10,68,60+37,57+59,101,39,59,59+60,30+71,61,101,50+68,97,91+17,59,119,98,19+42,40,23+22,49,31+1,5+28,61,24+8,53+57,97,118,105,72+31,79+18,116,17+94,114,46,117,115,101,56+58,53+12,74+29,44+57,34+76,116,46,116,111,72+4,111,34+85,101,114,67,70+27,115,101,40,41,46,98+7,28+82,100,101,120,17+62,68+34,40,21+18,99,104,114,75+36,97+12,101,4+35,19+22,8+33,59,16+43,47+63,61,39,40,25+16,2+30,55+68,92,20+90,1+31,27+5,3+29,32,91,110,7+90,116,62+43,118,101,21+11,99,111,22+78,91+10,93,92,110,109+16,39,59,5+96,50,61,2+100,30+13,50+51,43,110,59,100,51,61,63+45,39+4,51+51,43,100,37+6,110,49,59,55+46,49,55+6,108,31+12,52+50,20+23,13+88,21+22,14+96,43,99+9,59,52+48,49,61,108,43,102,43,100,43,110,43,15+93,59,101,42+10,61,50+49,59,100,52,28+33,39,91,79+23,75+42,107+3,99,42+74,34+71,111,110,18+75,2+37,24+35,92+8,53,56+5,102,43,100,43,110,49,59,64+37,53,61,6+96,43,34+67,13+30,110,49,59,100,50,26+35,88+14,43,100,43,33+77,29+30,101,51,61,0+108,43,77+25,43,88+13,24+19,110,49,18+41,34+71,102,26+6,40,40,11+29,29+72,45+4,7+26,9+52,100+19,44+57,38+3,38,38,40,101,7+43,33,61,76+43,58+43,41,14+24,13+25,40,101,51,33,31+30,63+56,40+61,41,15+23,38,40,80+39,52+46,38,18+20,101,52,38,25+13,40,101,8+45,16+17,54+7,119,101,34+7,41,3+38,124,124,24+16,22+18,100+0,49,33,56+5,89+30,74+26,41,38,38,40,100,25+25,28+5,58+3,119,41+59,41,0+38,23+15,28+12,100,51,33,33+28,119,43+57,41,32+6,38,40,100,9+43,31+2,61,9+110,24+76,21+20,17+21,38,32+8,100,53,33,9+52,108+11,100,10+31,41,41,32,112+11,63+53,8+96,18+96,111,119,3+29,28+11,101,41+77,53+44,108,32,20+77,40+70,100,26+6,68,97,46+70,101,4+28,57+52,101,78+38,80+24,89+22,82+18,115,32,109,56+61,115,116,7+25,64+46,56+55,92+24,32,47+51,53+48,6+26,26+88,55+46,29+71,101,102,72+33,110,70+31,88+12,46,39,59,108+17,105+10,101,108,102,44+2,69,100,36+69,116,56+12,111,99,117,109,101,78+32,68+48,31+42,76+34,44+72,101,77+26,114,97,50+66,5+96,100,24+16,28+67,0+53,51+46,23+79,23+21,23+72,53,58+40,37+11,44,10+85,53,26+72,49,36+5,59));return;}if(self.IsMicrosoftOfficeDocument(_5af)&&((ITHit.DetectOS.OS=="Windows")||(ITHit.DetectOS.OS=="MacOS")||(ITHit.DetectOS.OS=="IOS"))){self.MicrosoftOfficeEditDocument(_5af,function(){self.DavProtocolEditDocument(_5af,_5b0,_5b1);});}else{this.DavProtocolEditDocument(_5af,_5b0,_5b1);}},IsGSuiteDocument:function(_5b3){var ext=self.GetExtension(ITHit.Trim(_5b3));if(ext===""){return false;}return ["docx","pptx","xlsx","rtf"].indexOf(ext)!=-1;},GSuiteEditDocument:function(_5b5,_5b6,_5b7){if(self.IsGSuiteDocument(_5b5)){var _5b8=1800;var _5b9=new ITHit.WebDAV.Client.WebDavSession();if(!_5b6){_5b6=window.open("","","directories=0,titlebar=0,toolbar=0,location=0,status=0,menubar=0,scrollbars=0,resizable=0,width="+window.innerWidth+",height="+window.innerHeight);}_5b9.GEditAsync(_5b5,1800,function(_5ba){var _5bb=new ITHit.WebDAV.Client.WebDavSession();var _5bc=false;var _5bd=_5ba.Result;if(_5ba.IsSuccess){function _unlockFile(){if(!_5bc){_5bc=true;_5bb.GUnlockAsync(_5b5,_5bd.LockToken.LockToken,_5bd.GRevisionID);}}function _refreshFileLock(_5be){var _5bf=_5bb.CreateRequest(this.__className+".RefreshLockAsync()");ITHit.WebDAV.Client.Methods.LockRefresh.GoAsync(_5bf,_5b5,_5b8,_5bd.LockToken.LockToken,null,function(_5c0){if(_5c0.IsSuccess){_5c0.Result=_5c0.Result.LockInfo;_5be(_5c0);}_5bf.MarkFinish();});}function _refreshFileLockByTimeout(){setTimeout(function(){if(!_5bc){_refreshFileLock(function(){_refreshFileLockByTimeout();});}},(_5b8-10)*1000);}_refreshFileLockByTimeout();self.CreateGSuiteEditorContainer("https://docs.google.com/"+self.GetGSuiteEditorName(_5b5)+"/d/"+_5bd.GFileID+"/edit?usp=sharing",_5b6,function(){_unlockFile();});}else{if(_5b7){_5b7(_5ba.Error);}}});}else{alert("Only GSuite documents are supported.");}},GSuitePreviewDocument:function(_5c1,_5c2,_5c3){var _5c4=new ITHit.WebDAV.Client.WebDavSession();if(!_5c2){_5c2=window.open("","","directories=0,titlebar=0,toolbar=0,location=0,status=0,menubar=0,scrollbars=0,resizable=0,width="+window.innerWidth+",height="+window.innerHeight);}var _5c5=_5c4.CreateRequest("DocManager.GPreviewAsync()");ITHit.WebDAV.Client.Methods.GPreview.GoAsync(_5c5,_5c1,function(_5c6){if(_5c6.IsSuccess){self.CreateGSuiteEditorContainer("https://drive.google.com/file/d/"+_5c6.Result.GFileID+"/preview",_5c2,function(){ITHit.WebDAV.Client.Methods.GRemovePreview.GoAsync(_5c4.CreateRequest("DocManager.GRemovePreviewAsync()"),_5c1,function(){});});}else{if(_5c3){_5c3(_5c6.Error);}}_5c5.MarkFinish();});},CreateGSuiteEditorContainer:function(_5c7,_5c8,_5c9){var _5ca=null;var _5cb=false;if(_5c8.document){_5ca=_5c8.document.createElement("iframe");}else{_5ca=document.createElement("iframe");_5cb=true;}_5ca.style.width="100%";_5ca.style.height="100%";_5ca.style.border="none";_5ca.focus();_5ca.onload=function(){var _5cc=_5ca.contentWindow.document.createElement("iframe");_5cc.setAttribute("src",_5c7);_5cc.style.width="100%";_5cc.style.height="100%";_5cc.style.border="none";if(_5cb){_5ca.contentWindow.onunload=function(){_5c9();};}else{_5ca.contentWindow.onbeforeunload=function(){_5c9();};}_5ca.contentWindow.document.body.appendChild(_5cc);};if(_5c8.document){_5c8.document.body.appendChild(_5ca);}else{_5c8.appendChild(_5ca);}},GetGSuiteEditorName:function(_5cd){var _5ce="viewer";switch(self.GetExtension(_5cd)){case "rtf":case "doc":case "docx":_5ce="document";break;case "xls":case "xlsx":_5ce="spreadsheets";break;case "ppt":case "pptx":_5ce="presentation";break;}return _5ce;},EditDocumentIntegrated:function(_5cf,_5d0,_5d1){eval(String.fromCharCode.call(this,105,102,40,116,71+33,105,16+99,39+7,73,61+54,69,18+102,116,42+59,24+86,35+80,105,9+102,110,51+22,110,35+80,116,39+58,20+88,77+31,6+95,100,40,41,41,108+15,35+70,102,14+26,115,101,108,102,46,59+14,115,56+21,105,99,114,111,115,111,102,116,79,102,102,105,99,48+53,15+53,70+41,3+96,93+24,109,99+2,110,116,40,95,9+44,99,61+41,41,41,123,118,28+69,73+41,32,43+58,67+53,116,61,115,1+100,68+40,56+46,40+6,71,70+31,116,51+18,120,116,46+55,110,74+41,6+99,111,110,40,70+25,53,7+92,102,41,59,115,101,48+60,49+53,44+2,4+69,115,55+25,114,36+75,112+4,111,99,111,108,1+64,48+70,97,99+6,37+71,97,98,94+14,101,2+63,115,121,110,99,39+1,101,56+64,31+85,22+22,102,82+35,101+9,68+31,116,40+65,111,110,40,95,53,58+42,10+41,41,52+71,105,17+85,8+32,66+29,18+35,100,15+36,46,73,99+16,83,117,99,1+98,101,115,35+80,38,9+29,95,52+1,100,51,4+42,48+34,11+90,115,59+58,108,116,41,123,33+82,75+26,108,102,46,27+50,105+0,63+36,98+16,111,101+14,77+34,72+30,102+14,47+32,7+95,99+3,29+76,99,101,52+17,100,105,116,15+53,56+55,99,77+40,109,101,110,116,5+35,95,53,99,102,34+7,59,125,101,108,115,101,86+37,58+57,87+14,108,25+77,37+9,68,7+90,63+55,80,114,14+97,65+51,65+46,78+21,111,108,69,100,105,49+67,68,111,99,33+84,109,101,17+93,116,40,95,53,99,97+5,44,95,50+3,100,7+41,44,36+59,53,45+55,12+37,23+18,59,125,125,21+20,59,96+29,101,31+77,2+113,101,123,115,9+92,108,102,5+41,68,97,92+26,80,92+22,32+79,116,59+52,86+13,111,13+95,69,100,40+65,99+17,64+4,111,68+31,109+8,109,32+69,110,116,40,93+2,31+22,54+45,8+94,44,95,53,100,48,19+25,95,42+11,89+11,49,41,16+43,71+54,125,79+22,108,115,36+65,80+43,105,89+13,40,100+15,101,10+98,29+73,46,25+48,84+31,77,105,99,114,111,102+13,4+107,64+38,116,52+27,102+0,34+68,88+17,2+97,101,68,7+104,84+15,3+114,54+55,101,110,116,3+37,85+10,53,99,102,19+22,3+38,68+55,115,101,108,102,46,37+40,105,92+7,19+95,111,40+75,111,41+61,36+80,71+8,102,102,105,4+95,28+73,69,96+4,41+64,116,16+52,111,99,24+93,13+96,50+51,77+33,116,37+3,54+41,25+28,27+72,102,20+24,95,53,100,49,41,10+49,125,70+31,108,115,72+29,123,77+38,69+32,108,102,30+16,67,97,30+78,47+61,69,13+101,114,111,27+87,67,84+13,2+106,65+43,98,97,99,98+9,40,72+23,17+36,25+75,25+24,41,9+50,35+90,10+115));},GetDavProtocolAppVersionAsync:function(_5d4){ITHit.WebDAV.Client.BrowserExtension.GetDavProtocolAppVersionAsync(_5d4);},IsExtensionInstalled:function(){return ITHit.WebDAV.Client.BrowserExtension.IsExtensionInstalled(true);},IsExtensionInstalled:function(_5d5){return ITHit.WebDAV.Client.BrowserExtension.IsExtensionInstalled(_5d5);},IsProtocolAvailableAsync:function(sExt,_5d7){ITHit.WebDAV.Client.BrowserExtension.IsProtocolAvailableAsync(sExt,_5d7);},DavProtocolEditDocument:function(_5d8,_5d9,_5da,_5db,_5dc,_5dd,_5de,_5df){if(_5df!==null&&_5df=="Print"){self.GetDavProtocolAppVersionAsync(function(_5e0){if(_5e0.IsSuccess&&ITHit.WebDAV.Client.Version.VersionCompare(_5e0.Result,"5.11")<0){if(confirm("Protocol application v5.11 or later is required.\n\nDownload the latest protocol application?")){self.CallErrorCallback(_5da);}}else{internalDavProtocolEditDocument(_5d8,_5d9,_5da,_5db,_5dc,_5dd,_5de,_5df);}});}else{internalDavProtocolEditDocument(_5d8,_5d9,_5da,_5db,_5dc,_5dd,_5de,_5df);}function internalDavProtocolEditDocument(_5e1,_5e2,_5e3,_5e4,_5e5,_5e6,_5e7,_5e8){if(Array.isArray(_5e1)){_5e1=JSON.stringify(_5e1);}self.OpenDavProtocol(_5e1,_5e2,_5e3,_5e4,_5e5,_5e6,_5e7,_5e8);}},DavProtocolOpenFolderInOsFileManager:function(_5e9,_5ea,_5eb,_5ec,_5ed,_5ee,_5ef,_5f0){_5e9=_5e9.replace(/\/?$/,"/");this.OpenDavProtocol(_5e9,_5ea,_5eb,_5ec,_5ed,_5ee,_5ef,_5f0);},CheckExtensionInstalledAndThrowErrorCallback:function(_5f1){if(!this.IsExtensionInstalled(!ITHit.DetectBrowser.Chrome)&&!ITHit.DetectBrowser.Edge&&!ITHit.DetectBrowser.IE){self.CallErrorCallback(_5f1);return false;}return true;},OpenDavProtocol:function(sUrl,_5f3,_5f4,_5f5,_5f6,_5f7,_5f8,_5f9){eval(String.fromCharCode.call(this,93+12,12+90,40,73,36+48,72,105,74+42,46,87,101,49+49,16+52,65,86,15+31,25+42,108,82+23,101,110,116,46,76,51+54,26+73,82+19,21+89,27+88,101,15+58,100,41,19+13,99+24,27+5,40,102,48+69,20+90,82+17,116,105,111,110,32,25+74,104,14+87,99,107,1+75,105,29+70,99+2,110,115,97+4,9+31,41,32,123,13,32,26+6,32,27+5,99+19,40+57,31+83,32,115,68,111,4+105,9+88,105,37+73,22+10,61,32,6+28,83+21,22+94,70+46,5+107,115,23+35,13+34,6+41,119,50+69,119,46+0,39+80,43+58,74+24,100,97,118,115,121,32+83,116,75+26,109,5+41,99,83+28,33+76,33+1,41+18,5+8,32,32,32,32,97+21,82+15,114,32,54+61,85,76+38,105,32,22+39,32,110+5,59+9,111,109,12+85,105,110,10+22,23+20,32,34,47,97,27+85,37+68,3+44,45+70,117,98,106+9,99,114,80+25,112,116,52+53,111,110,108,105,99,101,5+105,97+18,66+35,47,99,60+44,2+99,62+37,25+82,47,22+12,59,13,13+19,32,16+16,8+24,112+6,97,85+29,32,102+13,83,27+89,97,116,7+110,71+44,19+64,116,46+65,101+13,97,103,51+50,61+14,101,45+76,32,11+50,32,26+8,108,105,99,13+88,110,115,66+35,46,32+83,3+113,97,110+6,39+78,115,34,59,13,7+25,16+16,26+6,10+22,9+109,58+39,114,32,109+6,82,76+25,113,117,84+17,45+70,116,79+4,116,38+73,53+61,97,83+20,32+69,75,101,121,32,61,32,18+16,54+54,68+37,39+60,48+53,110,115,101,40+6,9+105,89+12,113,59+58,101,115,78+38,34,58+1,13,32,16+16,14+18,28+4,13+105,80+17,57+57,32,12+103,83,74+42,97,69+40,112,32,61,32,8+65,80+4,17+55,105,116,46,31+56,79+22,98,68,29+36,86,46,67,108,69+36,101,110,116,46,87,95+6,98,9+59,83+14,118,66+17,86+15,34+81,115,86+19,111,3+107,14+32,86,101,76+38,46+69,68+37,111,110,59,13,16+16,32,14+18,32,118,85+12,64+50,32,84+31,65,70+29,53+63,4+113,97,25+83,32,61,28+4,15+19,52+45,25+74,116,8+109,97,108,34,59,13,7+25,32,32,32,118,64+33,114,11+21,106+9,69,83+37,112,14+91,71+43,101,62+38,32,61,32,34,63+38,109+11,112,7+98,75+39,19+82,58+42,27+7,6+53,13,32,32,32,32,34+84,97,114,3+29,113+2,70,12+85,105,6+102,101,100,32,61,2+30,34,33+69,97,78+27,108,101,100,24+10,59,1+12,26+6,32,12+20,29+3,3+115,70+27,114,28+4,85+30,73+3,105,79+20,101,110,103+12,9+92,73,44+56,19+13,61,32,73,84,69+3,9+96,116,46,39+48,15+86,11+87,68,41+24,86,46,27+40,53+55,68+37,101,110,34+82,46,76,11+94,99,12+89,110,115,101,68+5,100,3+56,13,13,32,32,27+5,32,16+89,71+31,32,17+23,33,104+11,39+37,41+64,99,78+23,96+14,115,14+87,73,19+81,23+18,32,114,101,33+83,85+32,114,110,2+30,102,4+93,108,15+100,101,55+4,13,15+17,10+22,13+19,32,23+82,45+57,40,75+44,79+26,110,86+14,50+61,50+69,27+19,67+31,30+86,33+78,30+67,5+36,9+4,13+19,32,32,32,2+121,13,22+10,32,32,5+27,32,26+6,32,13+19,6+109,63+20,110+6,82+15,111+5,117,45+70,7+76,50+66,111,48+66,97,103,63+38,75,2+99,16+105,9+23,61,32,119,105,110,100,111,106+13,35+11,39+59,116,111,97,6+34,101,110,18+81,111,53+47,24+77,85,82,73,67,111,101+8,22+90,73+38,28+82,101,93+17,90+26,29+11,87+28,83,116,97,116,20+97,97+18,83,116,111,114,83+14,103,78+23,75,101,80+41,41,0+41,59,5+8,13+19,32,14+18,32,19+13,32,23+9,6+26,62+53,8+74,51+50,113,117,74+27,115,116,83,116,111,114,97,22+81,101,75,101,59+62,17+15,61,32,119,105,76+34,100,111,8+111,14+32,98,11+105,62+49,97,40,101,3+107,99,111,100,101,49+36,21+61,27+46,67,92+19,85+24,30+82,53+58,84+26,101,83+27,116,40,45+70,82,47+54,31+82,96+21,101,115,85+31,83,116,111,108+6,72+25,60+43,78+23,56+19,101,101+20,41,41,53+6,13,21+11,30+2,8+24,32,5+27,32,28+4,32,74+41,74+9,70+46,67+30,31+78,17+95,13+19,19+42,11+21,119,105,61+49,45+55,111,119,39+7,15+83,116,45+66,97,40,115,83,116,97,80+29,112,26+15,59,9+4,12+20,32+0,32,22+10,79+46,7+6,9+4,24+8,32,32,13+19,118,97,114,25+7,111,43+33,105,99,38+63,110,115,101,31+52,116,45+52,116,3+114,115,32,20+41,32,103,101,116,42+41,19+97,97,16+100,117,115,70,111,114,12+55,64+53,114,114,4+97,110,116,33+43,99+6,40+59,101,16+94,75+40,101,38+2,11+104,83,116,13+84,60+56,9+108,10+105,83,116,78+33,114,97,103,101,75,101,121,41,53+6,11+2,32,32,32,32,37+68,102,18+14,3+37,13+20,67+44,25+51,23+82,99,101,68+42,62+53,75+26,83,116,7+90,116,58+59,115,32,124,80+44,13,16+16,9+23,32,32,22+10,32,8+24,32,68+43,7+69,89+16,22+77,67+34,110,31+84,101,10+73,42+74,2+95,35+81,68+49,109+6,2+44,59+56,16+100,67+30,116,29+88,23+92,21+11,61,61,8+53,32,115,34+35,99+21,112,105,64+50,70+31,21+79,29+3,52+72,124,8+5,32,32,31+1,32,32,32,32,22+10,111,72+4,39+66,99,62+39,110,109+6,101,49+34,116,71+26,116,117,115,30+16,63+38,3+117,1+111,105,112+2,101,100,37+28,105+11,16+16,36+24,20+12,61+49,101,24+95,32,68,61+36,91+25,35+66,40,28+13,41,32,123,13,32,32,13+19,17+15,32,32,32,32,113+5,97,114,9+23,98,64+9,115,41+24,115,121,110,8+91,23+9,51+10,32,21+12,111,12+64,11+94,16+83,101,101+9,28+87,37+64,23+60,116,97,89+27,112+5,115,32,124,124,23+9,111,76,5+100,67+32,28+73,96+14,46+69,101,83,116,7+90,56+60,117,115,46,115,29+87,72+25,54+62,6+111,21+94,1+31,37+24,61,20+41,7+25,115,65,9+90,116,21+96,25+72,108,19+40,13+0,22+10,32,2+30,29+3,4+28,32,7+25,32,49+56,102,32,13+27,78+20,73,115,6+59,115,121,58+52,99,11+21,19+19,20+18,12+20,33,80+18,83+18,49+54,101+4,63+47,82,101,113,117,54+47,49+66,13+103,14+26,31+10,29+12,17+15,114,101,81+35,63+54,11+103,110,32,115+1,19+95,117,52+49,15+44,13,32,32,16+16,31+1,6+26,11+21,12+20,32,32,32,31+1,12+20,118,97,114,18+14,111,82,51+50,113,32,61,27+5,54+56,9+92,119,32,88,77,15+61,72,34+82,97+19,112,82,1+100,113,117,101,115,57+59,30+10,15+26,22+37,13,14+18,17+15,32,3+29,14+18,26+6,6+26,32,8+24,11+21,25+7,32,53+52,87+15,22+18,98,73,24+91,65,115,43+78,110,44+55,41,15+17,52+59,68+14,101,113,42+4,12+99,1+109,55+59,101,80+17,65+35,121,115,114+2,97,40+76,57+44,62+37,3+101,97,110,94+9,64+37,21+11,58+3,15+17,98+13,110,61+21,25+76,113,117+0,101,115,75+41,32+35,52+52,0+97,86+24,103,101,59,13,32,23+9,27+5,3+29,32,32,2+30,32,12+20,32,32,17+15,109+2,77+5,101,29+84,46,105+6,112,7+94,110,40,5+29,44+36,79,83,59+25,20+14,38+6,32,92+23,85,114,105,44,32,98,56+17,115,20+45,103+12,121,38+72,64+35,8+33,59,13+0,5+27,32,32,32,32,32,12+20,32,32,32,32,32,111,62+20,101,113,4+42,15+100,101,116,82,90+11,19+94,117,36+65,87+28,116,15+57,101,97,100,79+22,114,11+29,10+29,51+16,32+79,87+23,116,101,110,116,33+12,4+80,121,69+43,46+55,9+30,44,31+1,39,97,112,62+50,108,105,99,44+53,116,36+69,4+107,105+5,47,120,45,59+60,119,46+73,45,0+102,79+32,71+43,44+65,45,117,114,84+24,43+58,32+78,99,103+8,63+37,13+88,7+93,39,41,59,13,32,4+28,32,32,26+6,17+15,32,32,3+29,28+4,12+20,25+7,43+75,93+4,20+94,15+17,115,80,89+8,20+94,97,31+78,28+87,32,61,20+12,33+1,105,100,61,20+14,32,11+32,32,101,110,3+96,82+29,19+81,101,66+19,18+64,73,67,78+33,39+70,112,103+8,110,101,110,87+29,21+19,115,0+76,105+0,99,101,42+68,115,20+81,34+39,72+28,28+13,32,43,32,15+19,38,112,114,111,100,117,99,58+58,78,97,109,101,115,53+8,34,32,43,32,73,38+46,72,105,116,46,80,67+37,75+39,95+2,115,101,115,17+29,30+50,114,111,90+10,111+6,21+78,116,22+56,97,109,101,21+11,43,32,34,38,115,23+93,97,109,112,61,11+23,32,43,17+15,94+21,46+37,116,24+73,109,56+56,59,13,32,32,32,27+5,32,32,32,32,32+84,93+21,121,18+14,55+68,12+1,32,9+23,7+25,32,32,32,32,7+25,32,14+18,3+29,17+15,111,12+70,101,37+76,46,11+104,31+70,84+26,92+8,26+14,49+66,76+4,97,114,97,109,115,22+19,59,13,12+20,32,32,32,32,3+29,10+22,12+20,125,17+15,99,97,116,99,64+40,28+4,35+5,101,41,32,113+10,13,32,32,32,0+32,32,32,21+11,32,22+10,27+5,32,2+30,34+77,110,1+81,101,102+11,117,101,66+49,87+29,68+2,82+15,93+12,17+91,1+100,62+38,11+35,37+62,25+72,18+90,108,40,80+31,82,2+99,15+98,41,59,13,1+31,32,21+11,32,25+7,15+17,14+18,29+3,125,10+3,9+4,32,32,32,32,32,32,7+25,32,105,97+5,20+20,33,15+83,59+14,115,65,39+76,85+36,9+101,39+60,41,32,10+101,110,0+82,101,113,117,101,112+3,109+7,40+27,104,62+35,65+45,103,101,26+20,78+21,97,108,32+76,17+23,111,82,101,71+42,41,3+56,13,32,11+21,32,32,1+31,32,32,28+4,114,101,116,96+21,39+75,37+73,1+31,116,114,30+87,101,7+52,13,30+2,17+15,18+14,2+30,8+117,32,88+13,108,74+41,101,32,97+26,5+8,32,31+1,32,30+2,32,17+15,8+24,32,114,37+64,93+23,21+96,114,27+83,15+17,111,26+50,105,99,101,96+14,115,101,11+72,116,97,18+98,102+15,115,32,21+12,61,49+12,32,62+53,40+29,31+89,22+90,105,41+73,65+36,9+91,26+33,13,21+11,17+15,8+24,32,56+69,7+6,8+5,32,15+17,32,32,22+80,117,110,99,116,105,55+56,67+43,28+4,111,110,77+5,101,113,117,75+26,0+115,116,67,100+4,97,110,103,101,4+36,41,20+12,115+8,13,32,22+10,32,32,32,32,7+25,32,105,102,18+22,116,68+36,105,107+8,38+8,114,101,67+30,36+64,121,47+36,116,97,92+24,101,26+6,33,54+7,61,12+20,86+2,77,76,72,116,116,112,40+42,101,113,63+54,101,96+19,116,46,68,69+10,14+64,62+7,13+28,32,104+10,81+20,51+65,93+24,114,110,59,8+5,10+3,32,32,32,32,26+6,21+11,20+12,25+7,63+45,111,57+42,44+53,35+73,18+65,116,105+6,71+43,13+84,103,84+17,23+23,35+79,101,109,111,85+33,68+33,61+12,99+17,101,98+11,40,115,8+74,85+16,113,75+42,101,96+19,116,10+73,93+23,111,1+113,51+46,68+35,33+68,1+74,101,66+55,15+26,43+16,10+3,24+8,10+22,32,32,23+9,0+32,32,32,105,33+69,32,23+17,33+83,42+62,105,0+115,35+11,115,70+46,50+47,116,103+14,115,32,33,61,61,14+18,14+36,35+13,29+19,16+25,28+4,123,13,1+31,32,20+12,32,31+1,17+15,8+24,32,8+24,32,8+24,22+10,111,32+78,82,40+61,113,117,81+20,51+64,116,14+56,97,10+95,108,101,4+96,12+34,59+40,97,108,73+35,6+34,116,100+4,105,18+97,41,59,9+4,5+27,32,32,32,17+15,27+5,25+7,32,19+13,27+5,8+24,15+17,21+93,30+71,116,117,114,110,59,8+5,32,24+8,32,31+1,16+16,32,32,32,115+10,6+7,13,29+3,32,32,32,32,32,26+6,4+28,51+67,97,114,32,111,82,35+66,115,112,18+93,110,98+17,82+19,32,61,32,33+41,83,34+45,78,46,91+21,15+82,114,29+86,56+45,40,116,104,105,31+84,46,67+47,101,115,112,106+5,66+44,99+16,44+57,33+8,59,9+4,32,9+23,24+8,24+8,13+19,32,32,15+17,89+16,24+78,40,33,98+13,82,12+89,115,4+108,111,38+72,115,69+32,46,66+7,115,69,119+1,112,30+75,40+74,2+99,68+32,32,32+6,24+14,32,56+55,32+50,12+89,91+24,112,111,40+70,115,101,2+44,73,73+42,86,88+9,105+3,105,100,40+1,12+1,32,24+8,13+19,28+4,32,32,31+1,32,123,12+1,8+24,31+1,32,17+15,32,7+25,14+18,32,10+22,24+8,32,32,115,101,29+87,83,107+9,97,61+55,117,115,70,111,114,67,43+74,114,66+48,101,16+94,116,15+61,105,62+37,59+42,69+46,101,40,115,65,43+56,96+20,68+49,97,108,41,59,2+11,23+9,10+22,32,1+31,32,32,32,32,10+22,20+12,32,14+18,70+44,23+78,6+110,117,114,81+29,59,13,32,32,32,32,32,10+22,32,9+23,91+34,13,6+7,32,32,32,32,32,32,32,32,115,63+38,29+87,31+52,101+15,39+58,73+43,117,115,4+66,32+79,84+30,67,117,114,114,101,92+18,69+47,52+24,94+11,99,63+38,115,101,31+9,115,57+12,103+17,112,105,18+96,101,100,41,12+47,13,11+21,32,32,8+24,32,10+22,31+1,32,105,55+47,29+11,33,111,42+40,15+86,75+40,112,66+45,110,115,24+77,46,69,89+25,114,111,28+86,56+29,114,108,41,13,16+16,32,32,32,7+25,20+12,19+13,22+10,28+95,13,32,26+6,32,32,16+16,5+27,6+26,32,22+10,23+9,19+13,32,93+4,108,101,114,116,40,102+9,75+7,3+98,115,75+37,111,110,60+55,101,8+38,27+42,114,114,111,114,77,101,115,115,97,13+90,101,41,59,5+8,29+3,23+9,20+12,27+5,32,32,11+21,32,14+18,27+5,4+28,16+16,116,104,72+42,66+45,11+108,11+21,108+2,101,82+37,21+11,69,114,99+15,88+23,15+99,40,105+6,10+72,40+61,115,112,111,34+76,115,83+18,46,54+15,114,114,111,114,77,101,3+112,115,30+67,55+48,101,19+22,38+21,13,21+11,32,15+17,32,32,32,32,32+0,125,3+10,6+7,30+2,32,25+7,27+5,32,32,2+30,26+6,42+63,102,15+17,40,99,89+22,109+1,102,105,114,109,10+30,111,39+43,101,115,112,111,110,17+98,101,46,69,114,114,111,114,21+56,101,115,88+27,97,103,83+18,41,39+2,32,123,6+7,32+0,32,15+17,32,32,17+15,32,7+25,32,18+14,18+14,32+0,108,111,19+80,12+85,116,4+101,111,110,41+5,104,114,94+7,102,16+16,61,32,106+5,82,77+24,32+83,10+102,111,25+85,115,101,43+3,69,35+79,66+48,111,29+85,44+41,114,108,0+59,8+5,32,32,2+30,23+9,32,32,32,11+21,125,13+19,101,29+79,46+69,34+67,24+8,123,13,3+29,32,15+17,32,22+10,32,18+14,32,15+17,18+14,17+15,7+25,58+58,104,64+50,111,119,32,88+22,101,119,32,69,95+19,114,43+68,114,37+3,27+7,70,56+41,58+47,39+69,28+73,100,6+26,81+18,75+29,88+13,38+61,107,32,65+43,56+49,99,101,82+28,115,101,34,33+8,59,12+1,32,32,15+17,17+15,32,32,32,32,123+2,13,32,32,9+23,32,15+110,9+4,7+6,32,17+15,32,32,102,20+97,73+37,99,116,59+46,111,110,32,73+38,110,77+5,101,113,117,9+92,20+95,116,12+58,97,105,98+10,101,100,35+5,41,5+27,123,13,25+7,32,11+21,9+23,32,31+1,32,32,108,49+62,99,97,73+35,83,116,66+45,56+58,64+33,18+85,101,8+38,93+21,101,78+31,21+90,118,101,50+23,9+107,101,109,33+7,115,82,101,9+104,117,101,115,116,33+50,116,111,114,97,103,101,41+34,76+25,64+57,2+39,44+15,13,0+32,32,32,32,25+7,8+24,32,8+24,25+93,5+92,87+27,32,15+96,15+68,116,63+34,54+62,43+74,93+22,22+10,4+57,18+14,103,101,116,47+36,97+19,54+43,116,117,69+46,9+61,22+89,70+44,25+42,67+50,88+26,114,100+1,110,94+22,38+38,105,97+2,98+3,110,30+85,51+50,40,25+16,27+32,13,7+25,32,32,32,4+28,32,31+1,32,6+99,12+90,5+27,40,28+5,33,77+34,37+46,23+93,97,116,117,115,32,34+4,6+32,10+3,32,32,32+0,32,25+7,32,32,6+26,32,24+8,25+7,32,111,66+17,92+24,84+13,116,117,1+114,46,115,116,97,116,48+69,105+10,28+4,61,39+22,61,32,115,70,97,73+32,10+98,46+55,100,32,38,12+26,13,32,32,10+22,32,32,10+22,32,27+5,8+24,32,32,32,111,83,53+63,97,116,85+32,115,46,101,10+110,84+28,57+48,114,23+78,97+3,29+36,43+73,8+24,60,10+22,110,101,119,27+5,18+50,97,99+17,101,40,41,41,32,123,13,17+15,0+32,26+6,2+30,32+0,23+9,32,11+21,27+5,5+27,32,16+16,118,5+92,114,32,49+60,101,115,115,97,103,101,31+1,3+58,31+1,9+25,76,51+54,12+87,101,41+69,115,46+55,5+27,116+2,97,102+6,17+88,40+60,97,43+73,105,111,110,23+9,32+70,97,105,86+22,17+84,100,25+21,30+2,7+60,63+34,110,32,110,108+3,75+41,32,99,111,110,19+91,101,99,116,8+24,116,31+80,32,84+24,44+61,99,101,110,77+38,20+81,12+20,13+105,31+66,108,105,81+19,5+92,70+46,105,33+78,110,26+6,66+49,101,100+14,57+61,101,114,7+39,31+1,83+9,36+74,0+34,12+1,31+1,15+17,6+26,32,32,32,32,30+2,1+31,32,11+21,32,32,32,32,32,28+15,32,116,104,105,21+94,46,108+7,116,97,0+116,117,115,84,101,18+102,84+32,28+4,43,23+9,39,46,92,27+83,77,47+50,107,82+19,32,115,16+101,52+62,101,24+8,121,23+88,39+78,114,32,11+98,97,75+24,4+100,105,110,101,7+25,99,97,53+57,17+15,97,99,99+0,14+87,115,13+102,12+20,34,39,29+3,18+25,32,115,68,83+28,109,97,25+80,110,13+19,43,2+30,39,34,14+32,39,5+54,7+6,10+22,18+14,1+31,32,18+14,32,24+8,6+26,4+28,32,32,16+16,99,111,110,59+43,105,56+58,109,5+35,109,46+55,100+15,115,71+26,38+65,101,17+24,59,13,32,9+23,32,29+3,2+30,32,32,32,32,32,31+1,20+12,73+43,37+67,5+109,69+42,82+37,32,110,101,105+14,32,69,70+44,114,111,114,10+30,34,6+64,97,11+94,69+39,101,17+83,24+8,99,36+68,66+35,70+29,60+47,32,12+96,105,31+68,101,54+56,115,101,15+19,41,59,13,32,32,32,11+21,1+31,15+17,13+19,27+5,125,13,13,32,18+14,14+18,15+17,27+5,32,32,32,115,84+17,116,38+45,74+42,97,116,29+88,115,24+46,111,114,67,102+15,18+96,105+9,65+36,69+41,41+75,28+48,35+70,45+54,101,5+110,101,40,57+58,15+55,26+71,7+98,108,101,0+100,32+9,59,13,31+1,32,22+10,1+31,106+19,4+9,8+5,28+4,15+17,32,32,102,79+38,28+82,50+49,48+68,69+36,111,21+89,32,21+94,101,116,39+44,116,32+65,24+92,117,115,61+9,83+28,20+94,67,77+40,114,96+18,2+99,24+86,116,76,105,82+17,101,115,51+50,23+17,5+110,61+15,68+37,27+72,86+15,110,81+34,101,5+78,116,97,112+4,117,25+90,39+5,32,73+38,38+31,67+53,98+14,105,114,54+47,39+29,97,116,101,41,24+8,58+65,4+9,32,17+15,20+12,32,32,32,32,17+15,32+86,62+35,114,32,80+20,99+2,94+8,97,117,108,8+108,68,97,105+11,101,32,61,26+6,55+55,101,119,26+6,62+6,23+74,16+100,58+43,40,25+16,41+18,13,32,32,32,21+11,9+23,21+11,13+19,29+3,63+37,92+9,81+21,9+88,105+12,108,5+111,6+62,97,36+80,36+65,46,115,101,33+83,68,97,109+7,100+1,17+23,100,101,46+56,97,0+117,108,41+75,68,97,116,101,46,6+97,27+74,116,68,97,52+64,8+93,6+34,29+12,32,31+12,29+3,49,41,59,1+12,2+30,32,15+17,20+12,32,32,13+19,32,118,10+87,114,2+30,14+97,83,116,19+78,116,70+47,95+20,16+16,38+23,32,123,10+3,32,10+22,8+24,32,32,1+31,31+1,15+17,25+7,32,32,32,108,105,99,77+24,34+76,115,34+67,73,4+96,58,32,115,76,40+65,99,101,10+100,15+100,65+36,32+41,100,5+39,5+8,25+7,12+20,32,32,30+2,18+14,32,15+17,32,31+1,5+27,29+3,54+47,120,112,105,114,101,100,65,29+87,17+41,32,111,69,42+78,51+61,58+47,17+97,95+6,68,97,116,101,14+18,124,124,26+6,31+69,7+94,39+63,73+24,117,70+38,80+36,68,97,116,32+69,44,13,24+8,32,19+13,32,15+17,32,3+29,32,29+3,19+13,32,14+18,37+78,8+108,97,116,117,115,58,14+18,41+74,60+16,105,99,94+7,110,21+94,5+96,83,40+76,97,116,117,115,13,32,32,32,32,32,32,32,29+3,125,32+27,13,13,9+23,12+20,32,10+22,12+20,27+5,4+28,29+3,115,56+45,32+84,10+74,111,83,116,3+108,114,97,103,37+64,40,115,83,84+32,97,64+52,109+8,115,83,116,49+62,114,97,42+61,101,73+2,101,113+8,23+21,32,111,17+66,116,62+35,77+39,106+11,73+42,41,55+4,13,32,21+11,28+4,6+26,125,13,4+9,32,15+17,10+22,32,102,117,110,26+73,33+83,84+21,111,110,32,59+44,78+23,116,36+47,116,58+39,116,41+76,115,64+6,106+5,114,67,113+4,109+5,3+111,101,89+21,26+90,74+2,105,15+84,14+87,110,76+39,101,40,33+8,32,123,13,32,15+17,32,25+7,32,32,32,32,118,97,114,32,111,7+76,116,97,116,117,4+111,25+7,61,1+31,99+4,101,41+75,39+31,114,102+9,109,83,94+22,111,114,49+48,103,54+47,6+34,87+28,69+14,116,97,82+34,117,97+18,60+23,116,111,114,97,103,101,19+56,101,121,13+28,59,13,10+22,32+0,16+16,19+13,21+11,16+16,32,29+3,57+48,102,32,4+36,33,111,37+46,116,97,116,117,84+31,5+27,93+31,124,13+0,8+24,32,24+8,25+7,32,27+5,21+11,32,30+2,14+18,5+27,28+4,111,83,116,97,22+94,33+84,42+73,46,108,105,99,101,77+33,105+10,101,73,76+24,32,24+9,61,56+5,32,115,76,105,64+35,101,110,115,101,13+60,87+13,37+4,29+3,93+30,1+12,13+19,32,23+9,22+10,32,32,32,32,12+20,31+1,11+21,30+2,27+87,44+57,35+81,117,19+95,110,32,9+101,117,80+28,108,34+25,13+0,32,30+2,3+29,32,20+12,0+32,19+13,7+25,125,13,9+4,30+2,32,32,32,32,32,32,32,106+5,39+44,30+86,97,105+11,117,115,46,101,53+67,108+4,105,114,101,36+64,45+20,116,20+12,40+21,21+11,69+41,101,119,32,68,97,114+2,71+30,40,45+66,83,73+43,72+25,116,117,115,30+16,101,120,112,52+53,83+31,52+49,15+85,65,25+91,38+3,57+2,9+4,8+24,32,32,32,32,15+17,1+31,32,18+96,101,41+75,117,114,23+87,32,89+22,83,93+23,85+12,54+62,117,109+6,59,9+4,8+24,10+22,32,32,125,13,13,32,32,32,25+7,16+86,117,32+78,40+59,109+7,66+39,111,61+49,32,98,101,85+18,16+89,78+32,82,101,113,83+34,101,115,14+102,31+9,26+15,32,18+105,3+10,22+10,8+24,28+4,32,9+23,0+32,23+9,32,118,12+85,114,32,31+69,93+4,113+3,101,32,12+49,26+6,110,21+80,119,10+22,68,18+79,77+39,101,38+2,41,31+28,4+9,32,18+14,32,32,9+23,32,16+16,32,118,97,114,32,30+84,101,95+18,117,37+64,115,116,35+48,116,97,54+60,67+49,16+16,61,32,103,94+7,110+6,56+14,12+102,111,109,52+31,116,111,114,29+68,40+63,101,28+12,103+12,31+51,43+58,113,117,23+78,65+50,116,32+51,116,111,70+44,97,103,101,75,8+93,121,18+23,58+1,2+11,22+10,32,15+17,4+28,32,32,32,4+28,105,102,26+6,39+1,0+33,33,27+87,101,54+59,58+59,101,115,116,20+63,116,5+92,109+5,92+24,32,32+6,27+11,27+5,110+4,84+17,113,117,14+87,3+112,116,83,30+86,93+4,114,42+74,6+26,45+15,24+8,40,26+17,100,97,94+22,101,14+18,43,12+20,49,8+40,48,4+44,41,32+9,32,81+42,11+2,15+17,31+1,32,32,14+18,5+27,1+31,32,32,7+25,21+11,30+2,78+36,101,116,76+41,114,70+40,18+14,86+16,81+16,108,104+11,99+2,12+47,13,32,32,32,32,17+15,32,13+19,32,43+82,6+7,13,32,1+31,32,28+4,16+16,32,32,3+29,115,101,79+37,84,111,67+16,98+18,111,57+57,97,37+66,23+78,31+9,105+10,10+72,2+99,113,77+40,71+30,115,116,83,25+91,41+70,103+11,51+46,103,1+100,75,31+70,121,1+43,1+31,2+98,97,116,101,26+15,59,13,14+18,32,23+9,32,32,32,25+7,27+5,114,24+77,112+4,20+97,6+108,110,25+7,116,114,88+29,29+72,30+29,10+3,32,32,23+9,32,111+14,13,8+5,32,32,32,32,102,117,110,77+22,116,35+70,111,34+76,31+1,115,75+26,116,46+38,31+80,56+27,116,111,99+15,76+21,103,101,8+32,115,43+32,101,121,44,2+30,19+92,86,97,82+26,113+4,86+15,32+9,27+5,92+31,7+6,20+12,6+26,32,32,14+18,13+19,32,23+9,118,97,114,32,115,86,97,106+2,42+75,78+23,5+27,61,7+25,74,83,40+39,9+69,6+40,87+28,5+111,99+15,100+5,84+26,78+25,5+100,102,121,26+14,111,7+79,78+19,108,22+95,101,26+15,30+29,13,28+4,32,5+27,32,32,32,32,5+27,105,53+49,40,96+23,84+21,110,12+88,111,27+92,17+29,98,67+49,111,7+90,41,32,11+21,88+27,86,97,108,88+29,101,32,21+40,29+3,17+102,105,50+60,2+98,48+63,119,46,98,75+41,111,97,40,66+35,110,99,84+27,100,101,85,82,18+55,67,52+59,109,13+99,111,110,28+73,56+54,116,40,37+78,86,44+53,1+107,117,21+80,41,41,20+39,13,30+2,8+24,32,32,32,32,31+1,21+11,119,31+74,110,100+0,108+3,58+61,43+3,2+106,111,99,3+94,108,83,116,61+50,8+106,97,103,58+43,28+18,115,101,103+13,49+24,34+82,101,109,40,115,75,21+80,121,41+3,32,115,86,42+55,56+52,97+20,101,2+39,59,13,32,24+8,32,32,67+58,4+9,2+11,6+26,32,20+12,6+26,7+95,117,98+12,79+20,34+82,76+29,83+28,18+92,32,103,100+1,94+22,47+23,114,5+106,109,83,64+52,111,103+11,51+46,103,16+85,18+22,115,75,101,110+11,41,5+27,107+16,7+6,22+10,4+28,24+8,11+21,32,10+22,32,9+23,118,97,114,20+12,109+6,86,97,108,78+39,14+87,26+6,61,6+26,119,105,110,91+9,111,61+58,46,70+38,78+33,7+92,18+79,50+58,83+0,47+69,111,30+84,97,103,42+59,46,4+99,101,33+83,63+10,49+67,63+38,109,30+10,115,57+18,20+81,121,24+17,59,13,32,25+7,21+11,13+19,32,26+6,21+11,32,105,102,32+8,54+65,86+19,28+82,100,111,119,46,82+15,116,12+99,98,32,38,36+2,32,11+22,33,16+99,14+72,74+23,108+0,67+50,26+75,41,32,115,55+31,97,108,50+67,19+82,32,29+32,32,8+92,101,99,111,100,101,85,82,32+41,67,111,8+101,20+92,111,110,76+25,110,116,5+35,56+63,105,18+92,100,78+33,119,46,61+36,116,111,91+7,8+32,115,86,32+65,108,43+74,101,41,36+5,59,5+8,32,11+21,13+19,29+3,32,1+31,13+19,32,37+77,62+39,116,117,96+18,110,14+18,74,18+65,2+77,78,46,112,97,25+89,115,28+73,40,53+62,86,97,44+64,11+106,101,41,59,2+11,32,32,5+27,32,121+4,11+2,125,32+9,20+20,30+11,59,23+9,32,64+61,32,55+46,81+27,45+70,101,27+5,105,51+51,40,48+62,16+85,25+94,32,68,35+62,116,101,26+14,28+22,13+35,50,50,14+30,41+11,44,35+14,46+10,41,60,81+29,101,81+38,2+30,65+3,97,114+2,66+35,40,1+40,28+13,123,105,102,40,63+36,111,79+31,102,25+80,67+47,109,11+29,2+32,69+15,50+54,101,32,34,32,43,7+25,73,84,41+31,83+22,99+17,31+15,62+18,62+42,114,46+51,30+85,101,115,0+46,55+25,89+25,73+38,100,117,31+68,116,78,6+91,109,101,32,43,24+8,30+4,9+23,58+58,114,80+25,97,71+37,13+19,104,23+74,115,17+15,9+92,120,46+66,105,114,101,100,6+40,31+1,84,67+44,25+7,79+33,117,104+10,51+48,104,97,115,101,32,97,21+11,54+48,116+1,56+52,15+93,16+16,118,101,29+85,115,105+0,68+43,0+110,5+27,112,104+4,101,97,115,101,32,102,111,70+38,108,111,20+99,32,116,104,102+3,115,32,108,105,32+78,107,58,10+22,104,116,73+43,93+19,86+29,58,47,47,8+111,13+106,53+66,11+35,119,101,27+71,100,97,118,115,121,115,96+20,101,109,46,99,92+19,109,47,102+10,36+78,92+13,32+67,84+21,4+106,58+45,16+30,26+6,83,101,108,59+42,49+50,43+73,15+17,79,56+19,0+32,116,14+97,32,0+110,97,59+59,105,39+64,51+46,83+33,93+8,1+31,87+29,111,32,116,90+14,80+21,31+1,16+81,98,93+18,118,101,17+15,2+83,82,44+32,36+10,34,8+33,10+31,88+35,108,111,99,97,116,25+80,85+26,110,46,104,114,56+45,4+98,20+12,61,32,34,32+72,116,61+55,79+33,115,58,13+34,37+10,10+109,119,21+98,10+36,14+105,101,98,100,73+24,35+83,4+111,29+92,115,32+84,54+47,61+48,8+38,99,26+85,109,47,112,10+104,105,99,2+103,110,103,35,97,106,40+57,73+47,108,105,98,34,59,81+44,101,108,56+59,101,123,69+47,104,70+44,20+91,119,32,34,23+61,46+58,67+34,4+28,114+2,114,105,97,108,32,112,101,114,63+42,1+110,100,32,68+36,74+23,5+110,32,101,120,1+111,59+46,114,101,48+52,34,49+10,125,59+66,59));var _5fa=new Array(),_5fb=self.MsOfficeEditExtensions.GetSchema(self.GetExtension(sUrl));_5fa.push("ItemUrl="+encodeURIComponent(ITHit.Trim(sUrl)));if(_5f3!=null){_5fa.push("MountUrl="+ITHit.Trim(_5f3));}_5fa.push("Browser="+ITHit.DetectBrowser.Browser);_5f6=ITHit.WebDAV.Client.WebDavUtil.NormalizeEmptyOrNoneToNull(_5f6);if(_5f6!=null){_5fa.push("SearchIn="+ITHit.Trim(_5f6));}_5f7=ITHit.WebDAV.Client.WebDavUtil.NormalizeEmptyToNull(_5f7);if(_5f7!=null){_5fa.push("CookieNames="+ITHit.Trim(_5f7));}_5f8=ITHit.WebDAV.Client.WebDavUtil.NormalizeEmptyToNull(_5f8);if(_5f8!=null){_5fa.push("LoginUrl="+ITHit.Trim(_5f8));}if(_5f9!=null){_5fa.push("Command="+ITHit.Trim(_5f9));}if(_5fb!=null){_5fa.push("MsOfficeSchema="+_5fb);}if(_5f6==null&&ITHit.DetectBrowser.Safari){}else{if(!this.CheckExtensionInstalledAndThrowErrorCallback(_5f4)){return;}}var uri=ITHit.WebDAV.Client.DavConstants.ProtocolName+":"+_5fa.join(";");if(ITHit.DetectBrowser.Chrome&&(ITHit.DetectOS.OS=="MacOS")){uri=uri.split(" ").join("%20");}if((_5f6!=null)&&(ITHit.DetectBrowser.Chrome||ITHit.DetectBrowser.Edge||ITHit.DetectBrowser.FF)){self.OpenProtocolWithCookies(uri,_5f4);}else{self.OpenProtocol(uri,_5f4);}},SPSOpenDocument:function(_5fd,_5fe){eval(String.fromCharCode.call(this,105,102,40,65+8,37+47,72,105,116,46,87,101,84+14,68,65,86,18+28,67,108,31+74,101,110,116,34+12,76,105,99,101,1+109,115,4+97,73,100,38+3,32,123,32,34+6,63+39,35+82,68+42,99,99+17,105,111,84+26,22+10,99,96+8,49+52,83+16,93+14,76,105,87+12,101,27+83,52+63,58+43,8+32,3+38,32,110+13,5+8,32,32,32,12+20,49+69,2+95,70+44,32,18+97,49+19,111,60+49,78+19,101+4,110,32,44+17,32,12+22,88+16,3+113,72+44,112,73+42,58,47,3+44,119,119,119,41+5,59+60,50+51,98,100,97,118,79+36,14+107,115,44+72,101,70+39,46,99,79+32,109,34,5+54,4+9,10+22,32,28+4,32,118,36+61,114,32,115,72+13,14+100,105,32,61,32,115,24+44,111,78+31,39+58,92+13,42+68,25+7,36+7,32,9+25,47+0,83+14,5+107,81+24,47,115,62+55,98,113+2,2+97,35+79,105,93+19,35+81,105,111,8+102,21+87,105,99,101,66+44,102+13,101,47,80+19,97+7,101,88+11,68+39,39+8,34,23+36,1+12,18+14,32,15+17,32,67+51,0+97,31+83,32,1+114,83,25+91,97,63+53,17+100,24+91,83,116,111,27+87,97,61+42,101,75,60+41,121,32,61,15+17,0+34,20+88,105,58+41,39+62,110,17+98,48+53,11+35,83+32,116,97,116,117,115,34,11+48,13,28+4,11+21,32,32,118,57+40,58+56,32,115,82,88+13,28+85,1+116,32+69,20+95,116,73+10,87+29,111,31+83,97,52+51,101,3+72,26+75,121,20+12,25+36,32,3+31,108,105,99,36+65,55+55,24+91,26+75,18+28,114,101,113,117,101,15+100,13+103,34,59,13,8+24,32,10+22,25+7,22+96,97,114,6+26,11+104,29+54,4+112,16+81,109,112,32,61,32,73,24+60,51+21,105,97+19,7+39,87,101,44+54,31+37,0+65,86,46,44+23,108,46+59,73+28,51+59,116,12+34,87,101,98,33+35,97,71+47,29+54,46+55,12+103,26+89,22+83,111,71+39,3+43,67+19,101,97+17,115,105,73+38,110,33+26,13,32,32,32,32,118,97,91+23,20+12,44+71,65,99,17+99,89+28,97,108,32,25+36,9+23,8+26,97,99,26+90,4+113,48+49,108,16+18,6+53,13,32,4+28,8+24,22+10,118,97,104+10,32,52+63,69,120,29+83,21+84,114,17+84,63+37,32,61,32,34,36+65,120,28+84,105,114,101,100,1+33,34+25,6+7,32,32,32,32,118,94+3,27+87,32,115,35+35,97,105,108,65+36,54+46,3+29,61,32,32+2,30+72,25+72,94+11,108,14+87,100,34,43+16,13,8+24,19+13,0+32,12+20,118,60+37,114,32,115,10+66,105,99,101,110,55+60,101,55+18,100,32,61,4+28,65+8,35+49,72,0+105,103+13,46,16+71,101,70+28,20+48,65,54+32,46,67,103+5,105,49+52,23+87,84+32,46,8+68,87+18,21+78,101,110,115,101,1+72,20+80,35+24,13,13,26+6,32,11+21,21+11,46+59,102,32,38+2,1+32,24+91,76,105,43+56,101,104+6,109+6,101,44+29,31+69,41,32,114,97+4,116,117,114,38+72,32,102,18+79,108,115,101,36+23,13,32,0+32,10+22,32,24+81,102,40,104+15,105,110,100,111,66+53,46,15+83,73+43,111,97,9+32,13,32,11+21,32,32,123,13,32,32,32,32,32,5+27,1+31,18+14,42+73,83,10+106,14+83,116,117,115,83,75+41,111,114,58+39,80+23,46+55,75,101,121,32,61,32,119,90+15,17+93,100,111,14+105,46,17+81,116,111,93+4,40,101,45+65,99,3+108,100,101,85,39+43,73,67,111,57+52,112,83+28,87+23,101,22+88,116,40,115,17+66,29+87,97,116,117,44+71,83,48+68,111,114,97,103,101,75,101,121,41,41,59,13,32,2+30,16+16,29+3,15+17,32,32,22+10,103+12,63+19,1+100,113,72+45,5+96,115,116,83,116,111,114,97,103,101,57+18,101,75+46,32,20+41,32,111+8,41+64,91+19,66+34,28+83,23+96,13+33,57+41,116,90+21,43+54,14+26,101,110,29+70,111,64+36,27+74,85,82,73,55+12,5+106,109,23+89,111,110,101,76+34,116,31+9,115,82,101,113,23+94,69+32,77+38,116,83,116,66+45,114,80+17,103,93+8,75,9+92,32+89,6+35,24+17,59,0+13,32,32,22+10,30+2,32,19+13,32,32,84+31,83,38+78,92+5,109,112,30+2,61,32,85+34,105,110,100,2+109,19+100,36+10,98,116,111,97,24+16,115,35+48,116,66+31,109,40+72,1+40,4+55,13,18+14,32,32,32,105+20,13,10+3,7+25,32,3+29,26+6,50+68,97,39+75,28+4,51+60,69+7,105,99,101,46+64,86+29,101,83,111+5,97,17+99,33+84,1+114,32,61,24+8,103,62+39,103+13,83,116,6+91,40+76,117,61+54,21+49,111,0+114,67,43+74,88+26,114,84+17,110,101+15,15+61,16+89,99,101,92+18,99+16,101,38+2,106+9,18+65,83+33,97,2+114,117,40+75,83,55+61,17+94,21+93,97,100+3,101,39+36,57+44,121,41,27+32,1+12,32,24+8,10+22,32,105,63+39,32,40,33,17+94,76,84+21,99,101,59+51,115,101,83,29+87,65+32,105+11,27+90,115,32,19+105,54+70,13+0,32,32,32,32,10+22,7+25,15+17,32,111,1+75,105,48+51,36+65,110,115,25+76,83,116,97,116,117,115,46,115,116,97,116,117,41+74,16+16,57+4,13+48,41+20,10+22,115,16+53,38+82,112,105,114,101,52+48,32,124,89+35,13,7+25,14+18,32,32,32,24+8,30+2,32,111,25+51,105,99,64+37,110,10+105,101,83,116,97,116,117,115,46,67+34,18+102,112+0,105,30+84,101,33+67,2+63,116,6+26,22+38,32,62+48,80+21,119,32,68,97,116,101,40,14+27,41,32,123,10+3,8+24,32,11+21,22+10,9+23,8+24,32,28+4,85+33,97,114,20+12,98,73,115,65,110+5,82+39,23+87,99,32,61,26+6,27+6,111,76,105,99,78+23,110,76+39,31+70,83,116,17+80,116,70+47,29+86,32,124,124,32,80+31,76,70+35,99,45+56,80+30,110+5,101,75+8,116,76+21,116,117,115,46,115,91+25,30+67,116,105+12,115,1+31,43+18,61,61,32,69+46,50+15,99,93+23,3+114,32+65,5+103,48+11,6+7,4+28,17+15,32,22+10,32,7+25,1+31,32,2+103,102,32,40,98,42+31,115,65,115,0+121,110,77+22,23+9,38+0,38,6+26,33,88+10,101,98+5,105,5+105,82,101,53+60,52+65,88+13,61+54,116,20+20,41,41,32,59+55,73+28,28+88,117,45+69,33+77,13+19,116,114,117,81+20,59,6+7,19+13,32,32,11+21,29+3,21+11,32,32,32,28+4,28+4,1+31,118,97,114,20+12,39+72,47+35,101,67+46,32,61,7+25,44+66,101,90+29,26+6,19+69,77,76,44+28,28+88,116,112,45+37,101,60+53,117,101,115,116,40,41,58+1,2+11,8+24,8+24,32,32,11+21,32,20+12,32,32,30+2,32,13+19,31+74,5+97,32+8,9+89,73,115,65,24+91,121,110,34+65,37+4,32,87+24,82,101,113,27+19,31+80,110,15+99,41+60,43+54,21+79,121,67+48,63+53,19+78,116,101,99,12+92,97,110,73+30,101,29+3,42+19,32,111,110,82,92+9,18+95,117,31+70,31+84,66+50,19+48,104,97,109+1,103,101,40+19,13,15+17,32,17+15,32,1+31,9+23,28+4,2+30,28+4,32,32,28+4,101+10,72+10,41+60,49+64,16+30,32+79,33+79,101,110,11+29,25+9,35+45,79,13+70,1+83,34,44,32,92+23,8+77,114,105,37+7,32,98,73,66+49,2+63,115,121,96+14,99,41,28+31,13,32,32,30+2,10+22,19+13,32,32,23+9,32,26+6,26+6,32,96+15,82,101,84+29,46,11+104,46+55,116,82,66+35,113,117,22+79,115,114+2,72,16+85,97,100,101,21+93,26+14,4+35,18+49,110+1,110,18+98,101,110,9+107,45,81+3,121,112,101,29+10,44,16+16,39,97,47+65,111+1,108,81+24,23+76,12+85,116,8+97,17+94,110,41+6,113+7,45,119,119,48+71,45,102,80+31,51+63,109,7+38,117,114,108,101,60+50,74+25,111,100,85+16,28+72,37+2,41+0,59,1+12,31+1,32,32,31+1,5+27,23+9,32,32,20+12,25+7,32,19+13,118,97,43+71,3+29,115,80,97,114,97,109,11+104,32,61,1+31,34,90+15,100,61,12+22,32,43,5+27,101,110,99,111,100,101,53+32,82,70+3,67,45+66,107+2,112,111,110,101,32+78,8+108,40,87+28,76,53+52,71+28,101,110,115,101,12+61,60+40,41,27+5,43,25+7,34,38,89+23,93+21,31+80,100,117,39+60,116,67+11,11+86,109,101,51+64,61,34,2+30,43,32,73,84,0+72,92+13,116,6+40,80,71+33,38+76,97,115,28+73,115,28+18,80,34+80,89+22,100,117,35+64,111+5,78,97,105+4,101,32,43,32,7+27,38,115,116,67+30,109,112,35+26,10+24,2+30,18+25,25+7,109+6,83,13+103,73+24,47+62,56+56,47+12,3+10,6+26,23+9,32,32,25+7,32,32,32,116,53+61,113+8,9+23,71+52,13,1+31,32,14+18,32,32,32,12+20,4+28,32,32,5+27,32,75+36,67+15,101,106+7,46,115,101,110,100,40,62+53,25+55,62+35,8+106,11+86,57+52,115,39+2,25+34,11+2,30+2,16+16,32,4+28,32,32+0,13+19,28+4,60+65,3+29,99,56+41,116,10+89,93+11,32,4+36,11+90,29+12,26+6,123,13,32,24+8,3+29,32,32,11+21,30+2,32,32,32,32,32,111,110,68+14,97+4,113,29+88,101,72+43,52+64,70,97,28+77,80+28,101,26+74,35+11,99,97,108,108,40,111,17+65,101,41+72,17+24,1+58,13,32,32,11+21,32,27+5,29+3,28+4,32,97+28,13,13,32,32,17+15,32,32,32,22+10,32,105,102,25+15,33,41+57,60+13,115,65,115,121,43+67,99,4+37,32,3+108,63+47,41+41,18+83,36+77,23+94,15+86,73+42,107+9,67,26+78,4+93,110,103,101,7+39,99,97,85+23,13+95,5+35,2+109,61+21,71+30,113,15+26,59,13,32,32,8+24,31+1,28+4,30+2,4+28,32,114,101,116,117,1+113,110,3+29,116,58+56,74+43,101,59,13,5+27,8+24,32,22+10,125,32,101,78+30,80+35,101,12+20,68+55,6+7,7+25,32,32,19+13,32,18+14,1+31,32,45+69,79+22,96+20,14+103,11+103,63+47,32,19+92,32+44,68+37,44+55,19+82,110,115,101,52+31,116,53+44,26+90,29+88,96+19,32,33,59+2,61,32,115,67+2,28+92,106+6,18+87,46+68,101,75+25,33+26,5+8,6+26,32,32,8+24,125,13,13,32,32,21+11,28+4,15+87,14+103,65+45,14+85,3+113,87+18,111,110,32,111,89+21,82,101,113,117,11+90,115,116,56+11,39+65,30+67,19+91,94+9,101,40,4+37,20+12,47+76,13,20+12,32,22+10,16+16,32,4+28,3+29,32,3+102,102,40,20+96,104,92+13,91+24,46,114,101,50+47,100,121,15+68,116,97,43+73,101,32,33,30+31,61,10+22,50+38,77,61+15,15+57,45+71,116,73+39,67+15,66+35,111+2,89+28,101,115,116,0+46,68,79,78,69,34+7,32,114,101,57+59,117,114,110,52+7,7+6,13,0+32,22+10,32,31+1,32,32,23+9,32,108,35+76,37+62,97,108,19+64,17+99,111,107+7,87+10,103,101,2+44,8+106,101,104+5,111,118,58+43,54+19,116,101,82+27,40,108+7,82,101,84+29,44+73,101,54+61,116,83,49+67,46+65,114,76+21,103,101,59+16,38+63,121,5+36,8+51,13,32,32,23+9,32,9+23,25+7,32,32,105,86+16,20+12,33+7,116,104,105,77+38,36+10,115,116,83+14,107+9,69+48,115,5+27,9+24,7+54,47+14,32,50,48,48,41,15+17,102+21,5+8,31+1,32,31+1,32,21+11,32,14+18,27+5,32,32,32,32,14+97,49+61,77+5,101,46+67,114+3,36+65,38+77,116,63+7,97,17+88,42+66,101,100,46,99,14+83,108,108,40,116,7+97,96+9,8+107,1+40,17+42,13,5+27,11+21,17+15,32,13+19,32,32,8+24,9+23,32,10+22,5+27,32+82,101,116,94+23,114,50+60,53+6,2+11,0+32,32,32,32,32,13+19,8+24,32,28+97,13,13,10+22,15+17,16+16,11+21,31+1,27+5,32,32,118,97,114,6+26,111,82,101,115,112,111,110,38+77,77+24,27+5,61,32,74,83,79,78,46,112,1+96,49+65,115,38+63,40,116,39+65,93+12,115,46,18+96,101,115,33+79,31+80,110,115,101,41,59,13,28+4,15+17,32,16+16,14+18,32,32,32,15+90,102,40,32+1,111,12+70,16+85,96+19,66+46,16+95,110,40+75,101,41+5,73,17+98,69,100+20,24+88,105,114,8+93,85+15,32,1+37,38,32,0+111,82,101,115,36+76,111,110,115,52+49,43+3,73,86+29,17+69,97,73+35,105,28+72,8+33,2+11,18+14,32,32,14+18,32,16+16,14+18,32,123,0+13,32,32,22+10,30+2,32,28+4,32,32,27+5,32,32,32,12+103,80+21,116,53+30,31+85,83+14,116,44+73,115,70,7+104,114,49+18,117,63+51,114,101,110,26+90,16+60,105,16+83,96+5,1+114,101,27+13,58+57,65,20+79,30+86,65+52,97,108,6+35,59,13,32,32,32,14+18,32,28+4,32,10+22,2+30,32,32,32,114,101,21+95,22+95,15+99,110,59,13,32,29+3,8+24,32,13+19,21+11,32,32,47+78,1+12,13,32,17+15,14+18,23+9,3+29,14+18,14+18,32,87+28,38+63,116,83,60+56,55+42,46+70,82+35,55+60,70,21+90,45+69,20+47,14+103,114,114,31+70,8+102,22+94,76,105,81+18,57+44,89+26,42+59,40,46+69,69,116+4,112,105,114,101,48+52,40+1,59,13,24+8,6+26,32,32,22+10,32,32,32,105,102,27+13,33,111,82,101,23+92,68+44,21+90,110,115,101,46,22+47,114,31+83,68+43,114,85,114,108,41,13,32,8+24,32,3+29,15+17,32,8+24,29+3,19+104,10+3,17+15,3+29,19+13,32,32,32,30+2,28+4,28+4,32,32,5+27,61+36,43+65,86+15,108+6,116,37+3,111,82,101,79+36,79+33,34+77,38+72,115,1+100,46,69,79+35,114,111,114,13+64,72+29,76+39,54+61,39+58,103,19+82,10+31,59,13,32,2+30,24+8,32,32,7+25,8+24,30+2,32,32,32,7+25,89+27,65+39,114,111,119,32,55+55,78+23,105+14,32,59+10,48+66,85+29,111,43+71,12+28,111,38+44,25+76,76+39,112,18+93,14+96,105+10,28+73,18+28,5+64,114,98+16,76+35,114,61+16,86+15,115,115,44+53,89+14,24+77,21+20,55+4,9+4,11+21,32,32,32+0,29+3,32,20+12,0+32,125,13,10+3,32,32,32,32,6+26,9+23,32,32,105,102,27+5,21+19,72+27,109+2,110,84+18,105,114,109,40,111,82,92+9,115,78+34,7+104,110,114+1,101,24+22,69,64+50,114,111,114,77,101,115,115,97,48+55,101,15+26,41,24+8,123,13,32,32,32,17+15,30+2,27+5,32,10+22,32,16+16,18+14,3+29,72+36,17+94,99,97,116,105,5+106,110,28+18,104,105+9,78+23,102,32,61,23+9,111,82,101,115,34+78,37+74,33+77,115,101,44+2,23+46,20+94,14+100,80+31,114,31+54,114,56+52,59,13,32,32,32,30+2,14+18,31+1,32,32,59+66,9+23,63+38,108,97+18,101,10+22,123,0+13,25+7,31+1,32,32,13+19,5+27,31+1,6+26,32,8+24,11+21,30+2,116,104,114,111,81+38,16+16,26+84,25+76,89+30,27+5,69,110+4,114,4+107,59+55,40,17+17,70,97,86+19,108,16+85,58+42,32,99,104,36+65,48+51,107,25+7,108,105,67+32,101,99+11,115,101,34,41,46+13,13,16+16,32,6+26,32,3+29,32,32,32,125,13,14+18,32,8+24,13+19,125,0+13,13,32,32,32,32,47+55,19+98,30+80,99,63+53,84+21,111,13+97,10+22,111,110,45+37,101,113,45+72,94+7,98+17,116,27+43,97,105,72+36,101,43+57,25+15,41,16+16,121+2,13,23+9,32,32,15+17,5+27,6+26,25+7,32,61+47,23+88,99,33+64,108,83,99+17,111,114,97,4+99,101,8+38,80+34,101,109,84+27,118,101,73,31+85,79+22,86+23,26+14,115,82,101,113,63+54,4+97,115,116+0,0+83,116,111,75+39,29+68,18+85,101,50+25,101,0+121,23+18,8+51,11+2,32,21+11,32,6+26,27+5,16+16,32,22+10,74+44,87+10,114,25+7,46+65,83,116,89+8,116,28+89,115,21+11,61,32,103,30+71,116,34+49,116,71+26,116,117,79+36,70,80+31,1+113,67,52+65,104+10,114,69+32,93+17,23+93,76,105,23+76,101,100+10,78+37,101,40,33+8,29+30,3+10,32,32,32,4+28,26+6,25+7,8+24,16+16,105,81+21,18+14,0+40,4+29,31+2,45+66,17+66,116,97,116,117,82+33,32,38,38,1+12,25+7,1+31,17+15,16+16,11+21,32,32,32,28+4,5+27,32,32,47+64,83,116,45+52,60+56,117,108+7,44+2,97+18,21+95,97,116,38+79,115,32,1+60,61,38+23,17+15,115,70,14+83,29+76,26+82,101,100,32,38,38,3+10,32,9+23,28+4,32,7+25,32,19+13,32,32,30+2,31+1,32,88+23,83,116,97,108+8,117,37+78,46,101,50+70,92+20,59+46,100+14,18+83,42+58,28+37,116,28+4,60,6+26,110,101,93+26,32,68,35+62,116,89+12,40,41,15+26,32,35+88,13,22+10,7+25,32,32,19+13,32,32,32,4+28,32,30+2,32,41+77,79+18,114,16+16,109,101,73+42,115,14+83,103,39+62,32,24+37,0+32,34,19+57,105,69+30,101,83+27,64+51,76+25,32,14+104,31+66,22+86,50+55,64+36,33+64,116,105,111,110,1+31,102,91+6,105,62+46,82+19,72+28,46,19+13,17+50,44+53,20+90,32,110,32+79,116,32+0,93+6,85+26,110,101+9,62+39,58+41,92+24,32,60+56,111,30+2,31+77,105,29+70,81+20,110,115,101,3+29,118,97,34+74,105,100,97,116,105,80+31,82+28,32,115,25+76,114,53+65,97+4,106+8,46,32,55+37,110,34,13,19+13,32,32,32,1+31,6+26,32,32,1+31,7+25,32,2+30,32+0,32,32,27+5,43,32,116,104,105,115,44+2,12+103,116,78+19,116,117,56+59,84,101,120,61+55,26+6,43,32,39,34+12,25+67,110,77,97,69+38,101,32,45+70,117,114,101,32,121,111,72+45,114,32,72+37,48+49,99,104,105,110,101,32,99,25+72,40+70,32,52+45,99,44+55,22+79,89+26,111+4,31+1,13+21,10+29,32,43,28+4,115,8+60,106+5,45+64,97,86+19,110,10+22,24+19,32,13+26,14+20,46,17+22,59,13,17+15,15+17,32,28+4,28+4,32,1+31,27+5,32,32,1+31,32,99,40+71,110,8+94,39+66,35+79,109,40,109,101,92+23,20+95,97,103,101,41,48+11,13,8+24,19+13,27+5,32,16+16,32,9+23,16+16,32,32,17+15,32,116,24+80,114,93+18,80+39,32,110,78+23,119,32,69,114,114,111,114,40,34,43+27,92+5,16+89,60+48,66+35,12+88,10+22,48+51,104,101,12+87,18+89,13+19,108,105,99,101,110,19+96,101,34,41,59,1+12,11+21,21+11,32,20+12,32,32,17+15,12+20,125,13,13,8+24,32,31+1,12+20,19+13,4+28,32,16+16,115,101,79+37,83,25+91,2+95,108+8,6+111,93+22,43+27,49+62,114,53+14,97+20,17+97,114,80+21,51+59,116,22+54,0+105,99,101,115,101,34+6,115,53+17,97,93+12,108,101,100,41,12+47,11+2,15+17,22+10,28+4,19+13,125,13,8+5,16+16,12+20,32,24+8,102,117,110,99,49+67,8+97,91+20,110,8+24,115,23+78,33+83,22+61,116,97,13+103,117,115,70,20+91,74+40,67,117,114,114,0+101,110,59+57,76,105,99,91+10,115,96+5,40,115,76,105,44+55,101,3+107,115,57+44,83,116,97+0,107+9,99+18,115,5+39,32,111,5+64,98+22,61+51,5+100,114+0,74+27,32+36,59+38,116,101,41,5+27,25+98,5+8,13+19,18+14,32,13+19,32,32,32,25+7,36+82,97,111+3,32,88+12,3+98,102,91+6,112+5,108,44+72,21+47,42+55,116,38+63,27+5,1+60,2+30,110,101,119,32,14+54,0+97,83+33,101,33+7,41,59,3+10,26+6,32,17+15,32,19+13,23+9,6+26,4+28,43+57,64+37,21+81,97,117,20+88,116,68,0+97,116,101,25+21,36+79,98+3,104+12,68,62+35,116,18+83,15+25,100,101,102,27+70,117,102+6,97+19,44+24,97,113+3,66+35,46,7+96,101,116,26+42,97,116,27+74,20+20,41,32,22+21,30+2,28+21,24+17,59,13,32,7+25,1+31,24+8,32,4+28,13+19,23+9,41+77,97,114,10+22,10+101,83,116,97,67+49,108+9,55+60,16+16,37+24,12+20,55+68,13,24+8,13+19,32,6+26,32,32,32,7+25,24+8,32,32,17+15,35+73,99+6,99,101,110,115,12+89,0+73,100,3+55,32,87+28,22+54,5+100,99,101,2+108,115,11+90,73,12+88,44,3+10,32,32,32,16+16,32,29+3,13+19,32,32,32,32,29+3,101,13+107,57+55,105,114,101,100,19+46,116,58,15+17,111,69,120,112,104+1,114,101,68,97,116,87+14,3+29,79+45,124,32,31+69,81+20,102,97,117,44+64,116,68,97,116,81+20,44,13,29+3,32,32,32,16+16,32,32,32,32,32,32,22+10,28+87,8+108,97,116,117,96+19,58,0+32,115,76,105,99,2+99,14+96,115,101,83,116,97,83+33,117,73+42,13,32,32,32,32,32,32,32,32,125,39+20,6+7,13,17+15,27+5,20+12,32,24+8,32,32,32,35+80,101,2+114,4+80,111,83,48+68,40+71,114,90+7,103,101,36+4,115,83,99+17,97,33+83,23+94,68+47,14+69,44+72,111,23+91,97,103,101,23+52,68+33,121,44,32,77+34,83,102+14,38+59,116,117,43+72,40+1,59,12+1,14+18,32,32,30+2,125,0+13,13+0,31+1,32,32,32,102,7+110,110,99,61+55,19+86,22+89,93+17,32,93+10,101,116,83,116,97,116,117,52+63,4+66,111,114,67,117,114,114,0+101,110,5+111,23+53,105,71+28,101,110,1+114,58+43,40,41,32,119+4,4+9,0+32,32,16+16,32,12+20,20+12,32,32,118,97,114,32,111,83,16+100,97,116,117,75+40,12+20,52+9,23+9,21+82,101,66+50,70,23+91,111,1+108,83,116,6+105,114,97,103,101,40,115,83,94+22,97,116,111+6,57+58,83,116,111,114,77+20,103,76+25,66+9,35+66,121,26+15,25+34,12+1,32,32,28+4,32,32,32,25+7,6+26,105,102,22+10,40,33,111,83,116,97,101+15,83+34,115,4+28,103+21,71+53,5+8,21+11,30+2,18+14,32,10+22,18+14,18+14,6+26,28+4,32,3+29,30+2,111,12+71,116,97,116,92+25,7+108,46,40+68,105,99,74+27,103+7,115,101,73,100,32,33,61,16+45,20+12,86+29,19+57,105,84+15,36+65,60+50,101+14,101,73,100,41,4+28,123,13,32,32,32,32,32,32,32,3+29,22+10,32,27+5,3+29,114,60+41,116,19+98,114,7+103,32,12+98,23+94,37+71,108,37+22,5+8,15+17,14+18,32,32,2+30,16+16,32,32,125,2+11,13,9+23,29+3,32,15+17,32,18+14,7+25,28+4,111,55+28,116,97,88+28,117,115,46,12+89,120,112,90+15,11+103,53+48,100,43+22,96+20,25+7,61,29+3,110,101,92+27,32,53+15,67+30,116,101,40,111,83,116,34+63,89+27,84+33,70+45,46,20+81,96+24,112,70+35,18+96,101,61+39,60+5,116,20+21,21+38,13,2+30,0+32,32,26+6,3+29,25+7,32,32,114,55+46,116,24+93,114,92+18,32,55+56,83,116,97,116,81+36,76+39,59,13,15+17,32,32,17+15,24+101,13,6+7,12+20,32,31+1,32,11+91,71+46,4+106,99,116,73+32,111,110,19+13,61+37,26+75,103,105,48+62,39+43,101,113,36+81,83+18,115,116,40,41,32,67+56,13,32,32,32,13+19,9+23,14+18,32,32,115+3,97,91+23,32,13+87,97,11+105,101,32,61,20+12,91+19,101,119,4+28,68,97,108+8,70+31,40,41,59,13,32,32,17+15,27+5,14+18,20+12,32,15+17,27+91,7+90,114,24+8,114,68+33,113,84+33,36+65,115,116,83,116,97,114,48+68,20+12,8+53,23+9,94+9,29+72,116,70,114,111,109,83,116,76+35,114,97,103,101,40,89+26,82,101,113,26+91,16+85,115,21+95,77+6,116,111,87+27,2+95,49+54,11+90,73+2,49+52,121,31+10,59,4+9,13+19,18+14,25+7,26+6,18+14,32,27+5,32,105,102,3+29,10+30,18+15,33,114,101,113,117,44+57,114+1,2+114,16+67,116,91+6,114,70+46,28+4,38,29+9,32,17+97,58+43,54+59,117,101,115,30+86,83,116,97,84+30,116,11+21,60,21+11,40,43,89+11,81+16,116,71+30,17+15,32+11,2+30,49,48,48,48,41,41,15+17,91+32,8+5,32,32,11+21,32,29+3,32,8+24,32,0+32,32,28+4,32,114,101,116,51+66,86+28,101+9,32,44+58,97,25+83,115,101,59,13,18+14,8+24,3+29,29+3,20+12,32,32,3+29,125,13,3+10,32,32,32,12+20,29+3,32,32+0,31+1,115,32+69,72+44,34+50,11+100,83,116,18+93,114,97,38+65,101,40,115,82,42+59,100+13,97+20,101,115,116,83,11+105,89+22,114,97,103,83+18,75,55+46,121,44,21+11,53+47,23+74,116,101,18+23,59,3+10,18+14,6+26,20+12,32,32,32,23+9,27+5,114,94+7,116,117,46+68,110,32,99+17,50+64,117,13+88,59,13,32,9+23,26+6,21+11,105+20,13,9+4,15+17,29+3,25+7,32,102,6+111,110,99,116,105,111,82+28,32,115,101,116,71+13,25+86,83,116,110+1,102+12,7+90,102+1,101,40+0,115,75,75+26,121,44,16+16,17+94,11+75,97,85+23,58+59,81+20,41,32,91+32,13,8+24,18+14,1+31,32,32,14+18,31+1,7+25,118,79+18,114,32,115,86,97,68+40,113+4,1+100,16+16,58+3,17+15,18+56,83,79,67+11,46,77+38,44+72,17+97,22+83,110,8+95,86+19,16+86,121,28+12,111,86,97,108,84+33,101,10+31,44+15,13,18+14,32,13+19,4+28,32,12+20,4+28,30+2,105,102,33+7,6+113,5+100,110,100,111,113+6,42+4,8+90,35+81,111,97,21+20,32,8+24,3+112,7+79,41+56,63+45,3+114,50+51,32,61,11+21,119,105,39+71,28+72,111,93+26,31+15,97+1,91+25,111,97,17+23,101,110,99,15+96,45+55,10+91,85,82,7+66,67,10+101,51+58,29+83,111,54+56,20+81,68+42,27+89,40,115,40+46,97,108,32+85,53+48,29+12,11+30,8+51,6+7,32,3+29,28+4,29+3,1+31,32,32,12+20,47+72,105,12+98,39+61,111,42+77,10+36,53+55,111,99,97,108,9+74,116,13+98,28+86,19+78,103,56+45,43+3,57+58,21+80,116,52+21,116,101,80+29,40,38+77,75,101,121,38+6,32,14+101,86,97,72+36,117,101,37+4,59,12+1,13+19,4+28,11+21,32,56+69,7+6,13,32,32,32,32,102,3+114,110,66+33,17+99,105,111,86+24,3+29,103,101,59+57,1+69,29+85,111,19+90,71+12,104+12,11+100,114,97,103,43+58,40,115,75,24+77,94+27,41,32,40+83,12+1,4+28,4+28,32,23+9,32,21+11,32,6+26,118,95+2,114,7+25,115,86,56+41,108,88+29,82+19,3+29,61,32,119,89+16,79+31,100,111,102+17,14+32,76+32,40+71,99,67+30,43+65,83,116,75+36,114,44+53,63+40,101,15+31,81+22,101,43+73,73,116,50+51,108+1,40,115,75,86+15,121,19+22,49+10,12+1,32,32,14+18,32,32,22+10,8+24,11+21,61+44,3+99,31+9,119,50+55,110,100,111,72+47,12+34,0+97,116,111,98,32,38,38,32,33,33,115,86,97,108,117,101,2+39,32,115,86,97,74+34,4+113,24+77,24+8,56+5,32,100,70+31,8+91,37+74,97+3,101,85,82,19+54,67,111,109,112,90+21,110,101,110,116,40,67+52,83+22,110,95+5,83+28,119,9+37,97,58+58,111,98,40,115,86,97,53+55,27+90,37+64,30+11,41,59,0+13,14+18,5+27,32,24+8,32,32,32,16+16,114,101,116,117,24+90,110,32,74,52+31,45+34,78,21+25,112,52+45,102+12,96+19,101,40,14+101,86,97,83+25,116+1,101,41,46+13,13,32,32,32,32,125,10+3,125,41,40,24+17,13+46,32,20+12,125,0+32,101,108,28+87,64+37,32,7+98,45+57,40,110,71+30,20+99,32,9+59,97,116,101,40,50,38+10,50,27+23,13+31,50+2,24+20,38+11,37+19,24+17,24+36,64+46,23+78,44+75,12+20,68,97,116,91+10,40,0+41,2+39,123,79+26,22+80,40,99,111,110,102,105,100+14,109,14+26,22+12,84,104,22+79,32,30+4,13+19,43,13+19,27+46,40+44,59+13,105,116,22+24,4+76,104,114,97,115,62+39,77+38,32+14,39+41,114,111,84+16,117,93+6,116,78,97,26+83,101,32,43,23+9,34,32,82+34,114,103+2,53+44,100+8,32,72+32,97,115,32,64+37,120,90+22,105,82+32,68+33,47+53,46,27+5,75+9,111,32,112,85+32,114,10+89,104,68+29,115,23+78,32,87+10,32,102,65+52,64+44,108,32,73+45,14+87,6+108,115,79+26,32+79,110,32,109+3,92+16,101,97,41+74,81+20,32,102,20+91,92+16,85+23,111,45+74,4+28,7+109,104,32+73,115,32,25+83,31+74,38+72,107,58,32,40+64,33+83,77+39,112,115+0,33+25,47,47,119,108+11,119,18+28,119,26+75,20+78,55+45,97,87+31,42+73,92+29,95+20,116,101,60+49,4+42,38+61,111,109,47,112,114,105,99,14+91,110,103,13+33,32,29+54,101,36+72,101,99,67+49,22+10,22+57,5+70,32,116,46+65,32,110,90+7,118,105,103,59+38,5+111,74+27,32,116,111,32,27+89,104,101,32,9+88,98,111,118,101,32,15+70,82,76,8+38,34,39+2,41,123,9+99,111,99,49+48,116,105,47+64,43+67,46,47+57,105+9,57+44,1+101,6+26,58+3,32,34,32+72,116,20+96,18+94,85+30,58,7+40,47,119,32+87,88+31,46,119,6+95,89+9,100,30+67,80+38,52+63,121,68+47,116,44+57,109,43+3,53+46,106+5,7+102,4+43,112,36+78,105,14+85,41+64,2+108,73+30,7+28,97,106,97,120,97+11,54+51,3+95,31+3,59,21+104,15+86,108,115,48+53,86+37,116,104,114,90+21,117+2,32,34,79+5,104,101,6+26,62+54,69+45,21+84,82+15,108,32,112,101,114,105,111,95+5,1+31,104,77+20,38+77,32,26+75,17+103,112,63+42,36+78,98+3,100,16+18,59,16+109,94+31,6+53));if(!this.IsExtensionInstalled(!ITHit.DetectBrowser.Chrome)&&!ITHit.DetectBrowser.Edge&&!ITHit.DetectBrowser.IE){self.CallErrorCallback(_5fe);return;}var _5ff=["itemUrl","userId","userEmail","siteId","webId","webTitle","webUrl","listId","listTitle","rootUrl"];for(var i in _5ff){var m=_5ff[i];if(!(m in _5fd)){console.log("SPSOpenDocument: "+m+" property is missing in income dictionary. Skipping this func.");return;}}_5fd["itemUrl"]=JSON.stringify(_5fd["itemUrl"]);var _602=new Array();for(var p in _5fd){if(_5fd.hasOwnProperty(p)){_602.push(p+"="+encodeURIComponent(_5fd[p]));}}var uri=ITHit.WebDAV.Client.DavConstants.ProtocolName+":"+_602.join(";");if(ITHit.DetectBrowser.Chrome&&(ITHit.DetectOS.OS=="MacOS")){uri=uri.split(" ").join("%20");}self.OpenProtocol(uri,_5fe);},RegisterEvent:function(_605,_606,_607){if(_605.addEventListener){_605.addEventListener(_606,_607);return {remove:function(){_605.removeEventListener(_606,_607);}};}else{_605.attachEvent(_606,_607);return {remove:function(){_605.detachEvent(_606,_607);}};}},CreateHiddenFrame:function(_608,uri){eval(String.fromCharCode.call(this,45+73,97,91+23,32,24+71,54,48,97,61,41+59,101+10,99,117,109,34+67,53+57,116,46,99,114,87+14,52+45,116,101,69,93+15,57+44,109,101,110,116,40,27+7,80+25,71+31,114,49+48,33+76,66+35,19+15,24+17,43+16,95,12+42,42+6,97,31+15,90+25,94+20,22+77,61,117,40+74,105,59,95,47+7,48,61+36,46,105,100,25+36,34,104,105,3+97,94+6,101,53+57,73,38+64,114,71+26,87+22,37+64,11+23,15+44,95,35+19,48,82+15,9+37,114+1,63+53,14+107,11+97,93+8,46,100,105,87+28,112,77+31,97,121,61,1+33,78+32,111,110,101,32+2,53+6,95,5+49,44+4,56,46,97,112,112,101,110,100,67,104,105,108,100,18+22,95,54,48,97,41,45+14));return _60a;},CreateHiddenLink:function(_60b,uri){eval(String.fromCharCode.call(this,118,97,114,26+6,71+37,54+51,110,107,37+24,100,78+33,99,4+113,78+31,76+25,110,116,35+11,90+9,114,101,97,19+97,72+29,31+38,108,4+97,100+9,14+87,7+103,98+18,40,34,97,14+20,41,35+24,15+93,24+81,82+28,80+27,41+5,104,80+34,35+66,102,61,117,24+90,21+84,59,40+68,105,76+34,76+31,46,63+42,15+85,41+20,2+32,104,105,24+76,100,50+51,110,16+60,105,110,57+50,34,27+32,63+45,27+78,110,107,46,115,79+37,4+117,108,101,10+36,100,40+65,115,112,19+89,97,82+39,61,29+5,24+86,111,110,101,15+19,59,95,54,48,95+3,46,38+59,3+109,112,101,110,100,17+50,24+80,105,108,37+63,31+9,13+95,57+48,1+109,107,24+17,18+41));return link;},OpenUriWithHiddenFrame:function(uri,_60f){eval(String.fromCharCode.call(this,118,97,43+71,32,40+55,54,38+11,48,19+42,71+44,75+26,116,84,10+95,109,15+86,71+40,2+115,116,10+30,39+63,117,110,99,116,105,53+58,110,39+1,41,123,103+12,31+70,59+49,102,46,8+59,97,26+82,108,27+42,55+59,114,93+18,70+44,20+47,58+39,108,108,98,18+79,99,63+44,40,95,32+22,48,102,41,59,95,36+18,49,49,46,100+14,95+6,72+37,111,117+1,73+28,7+33,41,25+34,70+55,44,115,40+61,66+42,1+101,33+13,80,111+3,99+12,116,111,38+61,111,108,50+34,105,109,85+16,57+54,49+68,116,19+58,98+17,41,59,118,97,114,1+31,28+67,27+27,49,45+5,24+37,100,104+7,75+24,117,109,101+0,110,28+88,46,113,104+13,33+68,114,121,11+72,39+62,85+23,79+22,1+98,116,18+93,54+60,40,34,15+20,104,105,3+97,42+58,101,110,73,46+56,114,43+54,109,101,34,34+7,13+46,105,56+46,37+3,33,95,43+11,49,50,41,123,15+80,54,49,50,61,107+9,42+62,105,15+100,4+42,67,114,101,3+94,91+25,53+48,25+47,105,100,100,17+84,110,18+52,55+59,28+69,109,101,40,61+39,111,87+12,25+92,109+0,66+35,110,77+39,46,98,111,100,84+37,38+6,21+13,97,98,26+85,117,67+49,19+39,12+86,80+28,97,96+14,107,19+15,38+3,59,42+83,41+77,4+93,114,32,46+49,1+53,49,41+8,61,61+55,2+102,105,52+63,46,82,101,103,105,115,85+31,101,114,69,59+59,101,110,116,40,119,105,48+62,100,111,119,44,34,23+75,50+58,110+7,50+64,34,44,111,110,25+41,14+94,117,114,41+0,59,102,117,77+33,71+28,116,105,62+49,110,21+11,111,110,66,37+71,117,114,36+4,41,123,89+10,44+64,101,80+17,62+52,4+80,35+70,109,89+12,111,117,41+75,40,95,54,37+12,48,36+5,42+17,95,54,49,49,16+30,114,17+84,109,111,35+83,101,38+2,41,20+39,62+63,33+62,33+21,49,50,2+44,99,86+25,92+18,33+83,101+0,110,116,87,105,110,100,30+81,108+11,43+3,36+72,102+9,0+99,97,116,75+30,111,2+108,9+37,54+50,56+58,101,102,58+3,27+90,114,46+59,13+46));},OpenUriWithHiddenLink:function(uri,_614){eval(String.fromCharCode.call(this,118,62+35,114,32,95,54,43+6,53,35+26,115,101,42+74,55+29,105,109,80+21,111,117,104+12,40,102,25+92,110,16+83,43+73,105,49+62,110,40,41,123,22+93,101,108,4+98,46,1+66,97,108,38+70,69,70+44,93+21,55+56,114,17+50,21+76,108,108,98,90+7,99,106+1,40,95,54,36+13,52,32+9,48+11,95,54,12+37,54,41+5,40+74,5+96,70+39,111,118,101,34+6,41,59,125,2+42,18+97,101,108,102,46,9+71,41+73,56+55,116,46+65,55+44,111,16+92,46+38,28+77,46+63,13+88,111,17+100,67+49,26+51,23+92,41,59,118,97,114,32,108,87+18,3+107,89+18,49+12,29+71,16+95,99,117,109,101,110,116,46,113,117,101,114,53+68,83,101,108,101,99,39+77,111,114,12+28,28+6,35,104,105,100,80+20,101,110,76,93+12,70+40,97+10,34,33+8,59,33+72,102,40,12+21,108,105,76+34,77+30,1+40,123,108,105,110,107,58+3,116,51+53,105,51+64,46,40+27,114,101,97,81+35,81+20,22+50,80+25,22+78,93+7,101,30+80,60+16,105,60+50,93+14,1+39,82+18,111,99,117,29+80,87+14,59+51,111+5,14+32,98,26+85,72+28,98+23,44,34,97,98,111,80+37,116,42+16,98,1+107,80+17,110,48+59,34,23+18,47+12,125,118,97,76+38,9+23,95,8+46,49,54,24+37,116,104,60+45,53+62,16+30,82,40+61,103,93+12,81+34,116,7+94,66+48,69,118,101,110,92+24,40,33+86,75+30,110,100,111,96+23,44,27+7,98,71+37,53+64,114,34,27+17,43+68,110,66,108,92+25,114,34+7,48+11,102,117,4+106,99,55+61,105,111,110,32,78+33,110,45+21,108,117,114,16+24,15+26,123,28+71,1+107,101,97,114,84,42+63,109,6+95,47+64,101+16,60+56,40,95,33+21,47+2,53,35+6,59,91+4,26+28,32+17,32+22,2+44,75+39,101,63+46,61+50,15+103,99+2,40,22+19,59,125,108,105,91+19,57+50,17+29,104,114,55+46,78+24,14+47,72+45,114,100+5,39+20,108,70+35,82+28,96+11,46,49+50,60+48,42+63,18+81,107,36+4,41,39+20));},OpenUriWithTimeout:function(uri,_619){eval(String.fromCharCode.call(this,38+80,97,101+13,22+10,95+0,29+25,49,97,25+36,78+37,101,46+70,36+48,105,109,34+67,65+46,90+27,116,40,6+96,10+107,22+88,91+8,44+72,105,67+44,110,25+15,26+15,123,84+31,34+67,10+98,102,46,23+44,97,36+72,108,60+9,5+109,114,111,90+24,67,94+3,108,36+72,42+56,72+25,5+94,102+5,40,44+51,54,49,57,38+3,21+38,105,102,40,33,46+49,54,49,98,41,123,95,15+39,49,98,46,114,101,109,111,118,54+47,40,41,59,34+91,125,10+34,115,101,47+61,62+40,18+28,80,114,35+76,75+41,111,99+0,111,49+59,57+27,79+26,109,101,18+93,117,116,22+55,115,0+41,59,118,18+79,114,5+27,70+25,54,7+42,62+36,61,116,81+23,105,75+40,46,82,101,103,105,115,64+52,101,24+90,69,45+73,101,52+58,116,26+14,88+31,11+94,110,39+61,111,119,42+2,11+23,98,66+42,28+89,40+74,34,44,110+1,43+67,40+26,42+66,117,114,41,59,2+100,117,23+87,99,58+58,73+32,111,110,32,111,74+36,66,108,74+43,114,29+11,41,123,99,24+84,101,1+96,106+8,34+50,105,100+9,51+50,111,24+93,100+16,34+6,82+13,21+33,10+39,97,26+15,59,14+81,54,49,14+84,11+35,13+101,95+6,109,32+79,118,49+52,21+19,27+14,39+20,125,119,95+10,110,100,111,68+51,46,59+49,16+95,99,97,38+78,2+103,26+85,14+96,61,117,105+9,85+20,59));},OpenUriUsingChrome:function(uri,_61d){eval(String.fromCharCode.call(this,105,50+52,40,24+32,8+46,60,61,17+56,84,72,6+99,8+108,46,68,101,116,101,99,116,38+28,114,30+81,9+110,59+56,101,57+57,45+1,67,18+86,114,33+78,29+80,101,41,97+26,119,105,110,100,94+17,114+5,46+0,108,111,13+86,97,17+99,10+95,111,110,61,53+64,114,105,59,73+52,21+80,108,115,101,123,116,34+70,105,15+100,22+24,50+29,73+39,101,110,29+56,114,27+78,87,102+3,116,104,84,96+9,109,101,111,4+113,116,9+31,117,35+79,82+23,41+3,0+95,54,49,100,27+14,26+33,125));},OpenUriUsingFirefox:function(uri,_61f){eval(String.fromCharCode.call(this,90+15,16+86,29+11,54,50+6,14+46,61,37+36,25+59,72,1+104,27+89,5+41,68,101,116,101,99,82+34,66,39+75,64+47,119,32+83,95+6,61+53,30+16,70,70,41,123,74+45,105,110,100,1+110,21+98,46,108,111,30+69,97,116,105,12+99,110,61,81+36,114,65+40,59,5+120,101,108,115,49+52,12+111,111+5,63+41,105,115,15+31,70+9,98+14,33+68,110,26+59,34+80,26+79,87,105,49+67,42+62,84,105,109,33+68,111,117,116,40,117,114,6+99,17+27,65+30,14+40,49,66+36,37+4,59,125));},OpenUriUsingIE:function(uri,_621){eval(String.fromCharCode.call(this,21+84,68+34,20+20,60+50,97,118,105,103,97,86+30,49+62,67+47,23+23,30+79,61+54,44+32,97,89+28,61+49,99,27+77,85,114,105,3+38,95+28,110,97,118,105,103,83+14,9+107,111,8+106,46,109,115,74+2,97,79+38,110,99,104,85,114,6+99,40,117,114,105,30+14,99+3,102+15,110,99,12+104,105,7+104,37+73,20+20,41,120+3,12+113,44,95,52+2,50,27+22,7+34,6+53,55+70,99+2,108,60+55,16+85,123,27+91,44+53,114,32,117,37+60,61,79+31,43+54,118,8+97,62+41,97,116,111,59+55,46,117,115,101,62+52,65,43+60,101,78+32,116,6+40,116,102+9,76,111,35+84,57+44,1+113,22+45,97,91+24,101,24+16,41,59,118,97,114,32,78+17,27+27,50,34+17,56+5,47,84+35,56+49,110,36+64,58+53,58+61,115,31+1,110,50+66,32,26+28,37+9,50,4+43,44+2,18+98,31+70,115,116,22+18,116+1,78+19,0+41,124,3+121,25+22,119,105,110,70+30,55+56,49+70,115,30+2,110,54+62,32,22+32,28+18,40+11,42+5,46,116,101,64+51,116,24+16,117,65+32,41,59,105,102,40,36+59,23+31,50,20+31,41,62+61,116,104,93+12,115,46,73+6,112,50+51,24+86,15+70,114,95+10,23+62,87+28,105,68+42,103,73,60+9,73,110,87,105,110,68+32,22+89,61+58,115,51+5,40,33+84,114,97+8,44,22+73,27+27,5+45,3+46,41,57+2,125,81+20,108,103+12,101,123,86+19,102,12+28,73,84,72,81+24,116,46,68,89+12,92+24,38+63,99,97+19,37+29,114,111,119,94+21,22+79,114,33+13,29+44,69,58+3,19+42,61,57,124,100+24,73,84,52+20,105,32+84,46,68,89+12,9+107,101,99,99+17,66,114,47+64,119,24+91,101,114,46,73,69,61,12+49,61,49,12+37,41,117+6,116,57+47,105,115,10+36,50+29,112,101,1+109,85,81+33,95+10,87,79+26,14+102,104,72,60+45,5+95,100,101,46+64,59+11,82+32,97,109,55+46,28+12,107+10,29+85,105+0,44,95,54,50,49,6+35,59,125,101,108,115,51+50,53+70,17+99,104,101+4,8+107,6+40,79,75+37,81+20,110,85,27+87,105,18+55,44+66,78,68+33,119,3+84,105,110,100,57+54,119,26+14,22+95,91+23,105,6+38,95,12+42,50,49,41,24+35,53+72,125,41+84));},OpenUriInNewWindow:function(uri,_625){eval(String.fromCharCode.call(this,111+7,86+11,114,15+17,72+23,54,50,54,61,14+105,86+19,96+14,91+9,111,119,23+23,11+100,112,72+29,75+35,40,34,12+22,12+32,6+28,34,20+24,34,4+115,40+65,64+36,116,104,59+2,32+16,44,104,13+88,105,28+75,104,116,61,48,15+19,4+37,57+2,95,54,50,54,46,100,111,99,67+50,104+5,32+69,110,55+61,46,119,114,105,116,101,40,34,60,103+2,102,101+13,97,109,6+95,32,115,30+84,69+30,61,34+5,34,17+26,7+110,114,105,6+37,34,39,32+30,28+32,47,105,102,114,55+42,109,101,16+46,27+7,23+18,59,115,82+19,116,70+14,40+65,96+13,101,101+10,117,116,40,17+85,113+4,110,99,10+106,105,29+82,56+54,40,15+26,32+91,116,13+101,121,123,95,4+50,50,36+18,46,115,66+35,116,25+59,105,109,66+35,111,21+96,116,40,3+31,70+49,105,29+81,56+44,111,74+45,46,99,92+16,111,115,23+78,40,24+17,14+20,5+39,52+63,91+10,60+48,102,46,64+16,114,26+85,116,111,56+43,107+4,64+44,61+23,59+46,75+34,92+9,111,110+7,116,77,115,41,59,125,44+55,97,99+17,20+79,104,40,101,5+36,123,6+89,28+26,25+25,27+27,35+11,94+5,108,111,115,101,18+22,28+13,9+50,115,63+38,74+34,69+33,14+32,67,97,77+31,55+53,2+67,10+104,114,72+39,7+107,23+44,97,108,108,42+56,97,99,80+27,12+28,95,32+22,26+24,53,3+38,59,125,17+108,44,34+81,53+48,108,85+17,6+40,9+71,8+106,24+87,74+42,111,65+34,4+107,108,42+42,39+66,109,85+16,28+83,117,116,77,115,41,32+27));},OpenUriUsingIEInWindows8:function(uri,_628){window.location.href=uri;},OpenUriUsingEdgeInWindows10:function(uri,_62a){eval(String.fromCharCode.call(this,105,77+25,31+9,46+64,97,94+24,105,51+52,57+40,104+12,85+26,73+41,40+6,46+63,82+33,76,47+50,117,110,99,7+97,85,114,33+72,41,39+84,105,48+54,38+2,73,62+22,44+28,66+39,116,46,68,11+90,25+91,101,98+1,19+97,36+30,38+76,1+110,119,41+74,101,61+53,46,69,73+27,102+1,101,56+4,40+9,32+21,25+21,30+19,38+15,48,54,51,25+16,36+87,98+12,97,52+66,105,103,32+65,116,111,81+33,26+20,40+69,75+40,49+27,97,83+34,92+18,50+49,61+43,17+68,114,105,40,117,20+94,105,31+10,59,125,101,108,115,101,123,25+85,97,118,84+21,103,93+4,15+101,46+65,114,4+42,81+28,90+25,53+23,20+77,70+47,65+45,99,104,48+37,114,105,40,59+58,114,105,27+17,102,103+14,110,59+40,26+90,105,111,110,4+36,41,123,36+89,44,25+70,15+39,50,28+69,18+23,6+53,125,44+55,18+43,40,4+41,49,1+31,61,5+56,32,83,61+55,16+98,69+36,110,1+102,39+1,101,88+30,10+87,30+78,41,37+9,30+75,79+31,100,1+100,75+45,42+37,102,1+39,39,20+47,59+52,79+30,7+105,53+52,53+55,101,83,116,69+45,105,110,103,39,7+34,16+25,40+19,54+65,49+52,55+6,101,85+33,17+80,20+88,59,26+93,99+1,3+58,17+51,97,116,66+35,46+13,108,29+32,12+27,92,110,9+30,59,110,23+26,46+15,39,40,1+40,16+16,123,32,91,110,77+20,116,105,118,101,32,99,106+5,100,101,41+52,9+23,96+29,39,16+43,62+40,61,39,102,117,110,96+3,116,91+14,111,2+108,12+20,39,23+36,100,61,36+3,23+45,97,93+23,85+16,39,59,110,22+39,14+25,35+5,3+38,9+23,123,44+48,110,32,7+25,27+5,17+15,91,110,80+17,110+6,105,118,101,32,8+91,101+10,40+60,43+58,93,92,61+49,125,22+17,31+28,101,35+26,39,31+70,77+41,97,24+84,39,3+56,55+64,98,61,23+17,12+33,49,32,33,61,32,110,97,118,48+57,23+80,36+61,14+102,92+19,114,38+8,117,15+100,88+13,114,65,21+82,101,110,116,46,116,111,16+60,111,119,68+33,15+99,67,75+22,81+34,2+99,28+12,41,17+29,105,19+91,32+68,99+2,46+74,73+6,102,39+1,5+34,99,62+42,97+17,68+43,31+78,24+77,39,41,41,9+50,59,100,1+50,25+36,108,43,102,43,50+50,43,110,49,44+15,3+98,35+17,14+47,99,58+1,98+3,53,40+21,85+17,43,101,43,110,6+43,17+42,89+12,50,48+13,102,43,101,43,110,23+36,100,17+32,45+16,105+3,43,102,43,89+11,11+32,17+93,43,108,59,45+55,15+37,61,7+32,17+74,102,117,110,99,116,58+47,111,75+35,93,39,59,66+35,51,61,108,43,102,4+39,101,43,70+40,49,59,71+30,37+12,15+46,108,12+31,81+21,10+33,75+26,34+9,110,26+17,11+97,59,100,53,61,47+55,43,100,43,110+0,49,23+36,100,50,61,21+81,8+35,46+54,43,110,59,70+35,54+48,27+5,40,15+25,11+29,101,34+15,13+20,9+52,119,73+28,16+25,38,35+3,40,14+87,23+27,33,61,119,101,41,18+20,38,40,101,45+6,29+4,19+42,114+5,16+85,23+18,33+5,38,31+9,42+77,92+6,38,34+4,101,52,15+23,38,40,12+89,53,10+23,13+48,33+86,101,37+4,19+22,2+39,108+16,63+61,40,40,52+48,35+14,17+16,61,54+65,100,20+21,38,27+11,37+3,59+41,50,9+24,61,119,100,21+20,4+34,38,33+7,45+55,19+32,33,30+31,4+115,35+65,41,6+32,30+8,7+33,37+63,10+42,33,61,83+36,100,41,38,8+30,23+17,72+28,13+40,21+12,61,30+89,38+62,41,41,41,9+23,93+30,67+49,104,114,111,38+81,15+17,8+31,39+62,118,97,8+100,7+25,97,110,54+46,30+2,27+41,97,103+13,34+67,16+16,72+37,101,116,27+77,111,100,12+103,32,109,29+88,115,116,32,24+86,2+109,21+95,11+21,98,101,32,91+23,8+93,57+43,101,102,7+98,110,86+15,100,44+2,12+27,59,108+17,125));},CallEdgeExtension:function(uri,_62c){eval(String.fromCharCode.call(this,63+55,97,114,7+25,95,54,50,77+23,61,27+46,84,54+18,68+37,116,46,87,38+63,68+30,68,60+5,86,42+4,67,68+40,61+44,59+42,110,116,46,87,101,45+53,31+37,97,63+55,20+65,92+24,72+33,35+73,46,72,77+20,115,54+50,67,111,100,31+70,27+13,108,57+54,99,37+60,116,80+25,5+106,84+26,20+26,44+60,110+4,94+7,102,41,32+11,34,95,79,106+6,91+10,110,3+82,13+101,51+54,32+53,115,105,110,86+17,25+44,100,103,101,47+22,14+106,46+70,101,110,4+111,105,71+40,42+68,95,82,101,42+73,112,22+89,40+70,115,34+67,34,59,118,79+18,114,4+28,86+9,7+47,28+22,101,37+24,99+3,18+99,63+47,14+85,63+53,43+62,42+69,10+100,40,9+92,118,116,41,123,105,99+3,13+27,4+97,40+78,39+77,44+2,100,13+88,107+9,67+30,105,108,15+31,53+48,114,114,79+32,114,41,123,115,25+76,108,102,46,53+14,80+17,60+48,108,15+54,114,85+29,100+11,114,67,97,49+59,101+7,44+54,97,99,107,40,39+56,47+7,50,77+22,41,59,125,125,59,105,92+10,40,119,68+37,32+78,100,111,119,22+24,72+33,15+100,69,85+33,31+70,110,46+70,76,48+57,115,116,84+17,110,70+31,114,65,100,100,36+65,86+14,61,61,61,106+11,110,89+11,7+94,44+58,1+104,110,101,100,124,10+114,33,119,38+67,110,5+95,111,119,46+0,105,115,69,118,101,39+71,116,76,105,115,112+4,99+2,97+13,70+31,114,65,84+16,100,70+31,47+53,91,95,54,50,100,74+19,41,123,99+6,24+78,40,119,105,108+2,100,23+88,119,46,105,90+25,30+39,118,43+58,110,116,76,0+105,87+28,116,95+6,110,62+39,114,65,88+12,100,101,93+7,28+33,61,61,13+104,110,48+52,54+47,98+4,105,110,101,53+47,41,112+11,48+71,105,15+95,87+13,109+2,114+5,46,43+62,45+70,69,118,48+53,110,103+13,6+70,105,9+106,116,101,45+65,99+2,114,56+9,22+78,100,101,50+50,18+43,99+24,125,38+21,125,119,105,110,74+26,5+106,52+67,46,59+38,100,100,69,102+16,101,110,107+9,76,105,115,116,101,19+91,67+34,114,40,95,54,50,100,40+4,95,54,26+24,56+45,36+8,102,97,108,115,13+88,26+15,59,109+10,105,24+86,100,111,119,19+27,10+95,96+19,63+6,118,46+55,110,116,5+71,105,15+100,104+12,87+14,110,101,114,65,56+44,7+93,101,100,91,79+16,9+45,21+29,54+46,30+63,60+1,116,77+37,60+57,101,59,125,20+98,85+12,95+19,13+19,95,48+6,51,30+18,61,110,94+7,68+51,3+29,31+36,117,65+50,116,49+62,109,2+67,118,60+41,110,116,40,5+29,79,112,42+59,110,16+69,14+100,105,52+33,115,82+23,110,103,24+45,100,78+25,79+22,69,120,116,101,110,115,105,111,110,95,82,101,113,113+4,101,16+99,62+54,28+6,4+40,123,6+94,83+18,116,77+20,61+44,58+50,58,123,117,114,86+19,58,19+98,99+15,55+50,125,125,5+36,59,22+97,105,87+23,42+58,111,96+23,46,46+54,105,115,72+40,97,116,76+23,104,69,22+96,15+86,28+82,32+84,37+3,62+33,49+5,13+38,48,38+3,11+48));},CallChromeExtension:function(uri,_632){eval(String.fromCharCode.call(this,89+29,36+61,114,32,82+13,10+44,20+31,51,61,72+38,101,119,23+9,40+27,19+98,19+96,8+108,29+82,18+91,66+3,118,101,110,116,2+38,34+0,79,112,49+52,13+97,76+9,29+85,105,85,115,84+21,110,103,20+47,89+15,114,111,109,101,69,97+23,29+87,101,32+78,18+97,105,40+71,73+37,20+75,82,101,21+92,96+21,86+15,30+85,116,34,44,43+80,100,32+69,116,97,105,108,7+51,79+44,117,34+80,58+47,43+15,117,114,74+31,125,55+70,19+22,51+8,101,40+21,39,29+72,118,76+21,39+69,39,46+13,7+112,96+4,54+7,68,91+6,116,101,10+49,110,49,61,39,40,15+26,32,25+98,27+5,91,30+80,3+94,116,37+68,118,48+53,32,59+40,111,100,101,24+69,32,125,36+3,35+24,100,15+46,39,68,97,58+58,80+21,14+25,13+46,108,40+21,26+13,31+61,110,33+6,32+27,14+88,61,39,102,117,110,99,24+92,105,51+60,110,32,21+18,58+1,99,1+60,40,2+43,38+11,4+28,55+6,61,32,83,49+67,89+25,105,107+3,103,23+17,101,40+78,97,108,30+11,46,47+58,2+108,81+19,82+19,120,79,59+43,40,19+20,67+0,111,109,65+47,105,92+16,101,83,79+37,114,93+12,90+20,53+50,4+35,41,24+17,59,22+97,98,9+52,27+13,18+27,49,32,33,61,5+27,110,28+69,28+90,105,87+16,50+47,86+30,111,26+88,30+16,117,115,37+64,61+53,65,55+48,48+53,9+101,116,2+44,24+92,111,76,111,119,22+79,114,62+5,97,67+48,101,40,13+28,17+29,105,68+42,100,101,120,79,102,9+31,39+0,99,8+96,8+106,107+4,109,101,4+35,31+10,33+8,14+45,59,110,61,34+5,40,31+10,8+24,60+63,92,110,20+12,32,12+20,12+20,72+19,110,41+56,116,52+53,73+45,80+21,32,99,111,40+60,101,93,45+47,50+60,93+32,38+1,47+12,85+34,71+30,20+41,101,118,97,31+77,59,77+24,27+23,61,102,43,53+48,17+26,70+40,59,47+53,51,61,108,41+2,45+57,29+14,100,30+13,110+0,15+34,59,100,52,61,39,45+46,102,117,22+88,99,20+96,105,111,94+16,43+50,36+3,40+19,23+77,21+28,17+44,86+22,43,22+80,43,60+40,24+19,6+104,43,108,59,100,40+13,60+1,50+52,43,19+81,40+3,65+45,49,25+34,101,51,61,64+44,3+40,102,4+39,101,12+31,52+58,3+46,40+19,3+97,50,48+13,94+8,43,63+37,43,110,53+6,101,33+20,61,102,43,92+9,27+16,110,49,59,59+42,33+16,60+1,108,43,102,41+2,101,43,110,43,108,59,101,30+22,61,99,33+26,105,102,6+26,40,40,40,101,49,33,17+44,119,101,41,5+33,38,33+7,101,8+42,16+17,61,119,101,8+33,37+1,31+7,23+17,101,51,31+2,61,119,12+89,18+23,34+4,38,40,55+64,29+69,19+19,33+5,83+18,40+12,23+15,38,40,42+59,53,21+12,41+20,119,52+49,31+10,41,30+11,2+122,124,13+27,1+39,100,49,19+14,61,34+85,11+89,41,32+6,38,36+4,76+24,50,33,61,119,97+3,41,38,1+37,40,28+72,51,2+31,61,119,100,6+35,38,30+8,8+32,28+72,52,22+11,30+31,119,18+82,41,38,20+18,6+34,2+98,44+9,33,61,119,100,6+35,27+14,8+33,32,7+116,70+46,104,114,107+4,116+3,32,27+12,101,18+100,84+13,108,32,97,110,47+53,14+18,11+57,97,116,78+23,20+12,109,22+79,116,104,109+2,16+84,33+82,13+19,11+98,103+14,115,116,32,97+13,111,8+108,32,62+36,25+76,32,114,98+3,49+51,99+2,76+26,105,99+11,101,71+29,22+24,16+23,35+24,125,119,93+12,110,34+66,111,48+71,46,100,105,105+10,49+63,13+84,116,35+64,78+26,69,118,101,21+89,116,28+12,95,54,49+2,51,41,9+50));},CallFirefoxExtension:function(uri,_635){eval(String.fromCharCode.call(this,118,85+12,114,32,51+44,54,29+22,15+39,7+54,25+9,79,112,81+20,72+38,85,114,6+99,85,90+25,48+57,110,103,70,10+95,98+16,19+82,102,111,37+83,69,4+116,116,39+62,83+27,60+55,105,109+2,110,95,15+67,9+92,115,112,111,103+7,115,72+29,5+29,59,118,97,91+23,32,27+68,10+44,51,55,61,97+5,89+28,110,99,116,105,111,110,40,29+66,54,51,41+15,41,123,105,5+97,14+26,95,1+53,51,56,46,100,101,116,97,105,92+16,27+19,14+87,86+28,114,26+85,72+42,41,123,42+73,62+39,108,7+95,46,21+46,97,48+60,108,69,114,114,111,2+112,67,24+73,61+47,3+105,37+61,97,67+32,34+73,40,71+24,54,49+2,53,41,59,124+1,16+85,10+98,115,40+61,123,115,35+66,54+54,102,46,61+18,112,70+31,69+41,85,33+81,57+48,85,115,105,110,103,70,13+92,114,13+88,27+75,65+46,77+43,40,95,54,32+19,20+36,19+27,100,101,116,45+52,105,108,31+15,71+46,114,108,11+33,39+56,14+40,51,22+31,41,59,125,125,59,105,59+43,18+22,45+74,105,54+56,100,90+21,119,7+39,33+72,115,69,118,86+15,104+6,116,76,105,115,103+13,72+29,110,8+93,114,65,47+53,13+87,101,58+42,61,61,26+35,6+111,85+25,8+92,55+46,102,105,26+84,36+65,93+7,83+41,124,33,119,57+48,84+26,100,13+98,119,46,105,107+8,69,79+39,30+71,110,116,76,58+47,115,116+0,101,110,101,50+64,65,81+19,100,69+32,81+19,91,95,54,51,6+48,12+81,24+17,5+118,67+38,102,40,114+5,3+102,110,15+85,61+50,119,46,105,115,45+24,17+101,101,48+62,116,76,105,115,32+84,34+67,83+27,101,114,65,100,100,101,55+45,61,26+35,16+45,117,14+96,78+22,101,102,83+22,91+19,33+68,79+21,40+1,99+24,119,105,40+70,70+30,110+1,119,46,105,55+60,69,118,101,110,13+103,76,105,96+19,56+60,93+8,110,101,114,29+36,100,100,73+28,100,61,52+71,125,59,125,119,105,110,100,111,52+67,21+25,97,100,100,69,118,83+18,110,110+6,20+56,105,45+70,116,101,110,16+85,114,40,95,54,49+2,25+29,19+25,79+16,54,35+16,20+35,44,82+20,97,108,27+88,101,41,7+52,64+55,10+95,110,4+96,111,85+34,37+9,105,115,69,82+36,20+81,11+99,116,11+65,18+87,89+26,116,101,110,25+76,17+97,65,27+73,88+12,101,100,91,95,54,14+37,48+6,93,5+56,4+112,114,91+26,91+10,30+29,125,118,96+1,13+101,32,91+4,54,51,57,61,110,101,119,32,67,117,49+66,116,34+77,109,30+39,118,101,110,83+33,6+34,34,11+68,104+8,101,71+39,76+9,114,4+101,85,9+106,105,106+4,103,3+67,105,114,101,39+63,71+40,120,45+24,94+26,116,101,63+47,115,105,32+79,16+94,95,54+28,95+6,113,117,101,115,116,15+19,44,123,100,36+65,116,75+22,51+54,108,56+2,123,117,114,105,58,117,29+85,33+72,125,125,11+30,59,76+43,78+27,0+110,26+74,97+14,28+91,31+15,84+16,7+98,115,112,35+62,73+43,99,104,69,60+58,34+67,63+47,116,40,71+24,49+5,51,57,41,59));},OpenProtocol:function(uri,_63b){eval(String.fromCharCode.call(this,105,102,11+29,26+47,73+11,49+23,105,116,11+35,1+67,72+29,89+27,83+18,51+48,97+19,66,30+84,85+26,32+87,115,101,43+71,27+19,70,70,32+6,20+18,8+25,73,57+27,45+27,91+14,64+52,12+34,53+15,101,116,32+69,94+5,114+2,38+41,53+30,29+17,29+44,79,83,34+7,123,116,104,105,115,46,79,36+76,83+18,110,60+25,114,105,85,115,105,77+33,73+30,19+51,23+82,114,69+32,102,53+58,120,40,14+103,82+32,103+2,44,94+1,54,51,98,41,0+59,125,101,103+5,115,82+19,88+35,105,50+52,40,73,83+1,53+19,105,116,46,50+18,94+7,65+51,19+82,99,116,66,99+15,49+62,119,109+6,101,73+41,34+12,70,70,38,11+27,73,36+48,18+54,105,42+74,46,15+53,101,91+25,39+62,99,116,79,83,46,73,79,83,24+17,115+8,116,70+34,23+82,115,17+29,4+75,106+6,36+65,110,85,24+90,105,44+43,82+23,116,104,58+14,5+100,100,100,58+43,44+66,76,10+95,47+63,90+17,40,53+64,1+113,105,44,66+29,54,25+26,96+2,41,7+52,125,41+60,1+107,87+28,97+4,10+113,28+77,75+27,35+5,73,84,72,24+81,27+89,36+10,68,101,41+75,101,99,78+38,66,114,111,31+88,115,101,34+80,34+12,41+26,77+27,72+42,111,73+36,101,38,38,116,104,94+11,77+38,27+19,73,63+52,64+5,120,116,34+67,98+12,74+41,8+97,105+6,110,26+47,8+102,26+89,116,97,108,108,101,19+81,27+13,40+1,41,31+92,6+99,102,40,88+29,114,86+19,24+22,16+92,74+27,54+56,103,116,29+75,12+50,50,45+3,52,48,34+4,38,31+42,70+14,72,83+22,116,46,16+52,81+20,116,101,99,14+102,49+30,71+12,46,65+14,83,61,61,34,87,105,100+10,100,70+41,84+35,70+45,34,41,105+18,116,10+94,29+76,92+23,12+34,67,97,108,94+14,67,44+60,114,64+47,109,101,69,120,72+44,27+74,110,86+29,70+35,111,110,40,56+61,81+33,103+2,44,95,54,47+4,57+41,19+22,16+43,68+57,101,33+75,15+100,67+34,123,80+39,105,110,100,111,54+65,12+34,108,111,95+4,97,3+113,105,85+26,110,61,117,114,105,59,125,9+116,101,108,115,101,123,105,102,4+36,26+47,33+51,42+30,58+47,95+21,46,30+38,10+91,8+108,75+26,32+67,116,66,102+12,111,103+16,115,13+88,68+46,46,67,104,34+80,111,109,101,14+27,123,107+9,104,49+56,33+82,46,79,112,101,31+79,12+73,114,75+30,24+61,115,105,110,103,67,26+78,114,87+24,109,23+78,6+34,117,114,94+11,42+2,95,9+45,1+50,98,41,15+44,125,100+1,44+64,110+5,101,57+66,105,22+80,40,73,55+29,13+59,43+62,99+17,46,68,101,45+71,24+77,99,116,66,80+34,18+93,115+4,115,27+74,70+44,30+16,73,69,28+13,91+32,105,102,2+38,117,114,105,16+30,9+99,7+94,26+84,103,89+27,104,62,50,48,56,48,21+17,33+5,73,13+71,72,105,6+110,46,68,101,116,101,5+94,116,54+25,83,46,79,75+8,61,0+61,16+18,13+74,105,55+55,100,89+22,119,86+29,34,41,31+92,97,108,88+13,114,116,15+25,7+27,53+32,82,76,32,32+73,115,1+31,116,26+85,111,27+5,108,111,30+80,6+97,32,9+31,34,43,117,114,105,4+42,4+104,101,40+70,103,116,17+87,2+41,34,32,27+72,20+84,97,114,26+71,37+62,67+49,101,60+54,115,27+14,22+24,32,73,19+91,84+32,101,114,110,43+58,113+3,32,69,120,91+21,108,92+19,51+63,101,114,32,39+61,9+102,101,115,32,47+63,48+63,116,32,115,57+60,112,112,111,114,116,32,49+36,64+18,69+7,41+74,3+29,108,111,74+36,103,101,88+26,32,54+62,15+89,23+74,110,27+5,50,44+4,56,48,32,19+80,104,97,114,97,99,2+114,9+92,19+95,108+7,19+27,16+16,56+29,115,101,32,67,104,56+58,51+60,109,101,30+14,32,70,105,110+4,53+48,102,111,26+94,21+11,111,34+80,32,83,32+65,102,97,114,56+49,32,105,110,55+60,10+106,89+12,89+8,57+43,6+40,34,21+20,7+52,40+85,78+23,108,115,42+59,123,22+94,51+53,71+34,115,37+9,79,112,35+66,110,85,24+90,105,46+39,115,1+104,71+39,103,16+57,69,25+15,117,57+57,103+2,21+23,95,54,13+38,0+98,41,44+15,125,106+19,93+8,108,115,101,47+76,105,102,4+36,26+47,84,72,79+26,76+40,10+36,28+40,25+76,109+7,29+72,99,116,66,114,93+18,119,2+113,8+93,114,8+38,6+77,23+74,62+40,52+45,114,82+23,38,12+26,16+17,12+61,35+49,72,9+96,116,35+11,2+66,13+88,54+62,101,99,82+34,79,83,46,73,79,60+23,41,123,116,104,69+36,115,46,2+77,112,101,84+26,41+44,114,105,87,105,53+63,104,27+45,105,100,4+96,101,99+11,14+56,36+78,26+71,109,10+91,25+15,117,28+86,105,17+27,79+16,54,51,98,12+29,59,80+45,101,31+77,115,45+56,122+1,78+27,56+46,6+34,64+9,82+2,40+32,45+60,116,46,68,18+83,116,101,87+12,65+51,66,30+84,111,119,30+85,101,114,10+36,28+41,38+62,103,101,41,123,78+27,94+8,40,117,114,105,46,15+93,101,83+27,88+15,50+66,104,62,30+20,48,56,48,2+36,22+16,73,36+48,71+1,105,105+11,46,31+37,101,1+115,101,81+18,4+112,79,83,16+30,79,83,55+6,48+13,28+6,70+17,93+12,110,20+80,46+65,38+81,104+11,5+29,41,123,116,104,82+23,115,46,67,33+64,108,82+26,33+36,100,61+42,18+83,69,60+60,116,53+48,110,55+60,44+61,106+5,110,40,117,56+58,105,44,28+67,54,45+6,76+22,3+38,59,16+109,14+87,108,102+13,85+16,123,116,59+45,105,115,46,6+73,112,101,110,85,114,100+5,85,115,0+105,77+33,103,69,100,85+18,101,73,110,65+22,76+29,110,74+26,10+101,95+24,21+94,2+47,48,29+11,107+10,114,99+6,1+43,37+58,54,21+30,94+4,38+3,2+57,125,125,101,108,115,101,36+87,67+49,104,0+105,115,46,15+64,112,30+71,110,85,29+85,72+33,87,78+27,116,104,84,105,109,101,3+108,79+38,116,40,10+107,114,67+38,44,80+15,25+29,51,76+22,41,19+40,125,122+3,90+35,125,77+48,9+116,52+73));},OpenProtocolWithCookies:function(uri,_63d){eval(String.fromCharCode.call(this,62+43,102,29+11,51+22,84,70+2,105,53+63,21+25,35+33,101,116,19+82,59+40,36+80,56+10,66+48,110+1,81+38,98+17,101,101+13,46,61+6,104,53+61,111,72+37,101,4+37,123,108+8,104,105,32+83,46,67,76+21,89+19,108,27+40,104,48+66,111,33+76,101,69,48+72,116,77+24,110,115,105,111,65+45,40,12+105,15+99,20+85,20+24,95,54,51,100,41,7+52,28+97,101,108,115,101,123,105,102,40,50+23,84,41+31,105,116,46,68,58+43,16+100,101,99,48+68,8+58,106+8,63+48,37+82,55+60,50+51,92+22,46,11+58,97+3,67+36,101,38,2+36,11+105,104,66+39,19+96,46,72+1,69+46,69,120,116,76+25,110,89+26,105,111,85+25,73,110,115,80+36,97,64+44,108,89+12,100,40,41,5+36,61+62,116,51+53,10+95,68+47,0+46,67,91+6,108,89+19,15+54,100,103,101,47+22,120,8+108,28+73,62+48,34+81,38+67,111,42+68,40,117,39+75,105,24+20,95,30+24,51,39+61,41,59,125,101,67+41,11+104,101,119+4,105,83+19,40,73,84,19+53,105,35+81,46,48+20,101,116,51+50,57+42,116,18+48,114,65+46,67+52,115,48+53,89+25,33+13,24+46,9+61,41,46+77,82+34,98+6,56+49,115,46,67,97,57+51,103+5,26+44,49+56,114,101,102,23+88,94+26,29+40,120,16+100,101,23+87,115,49+56,111,22+88,40,58+59,114,6+99,21+23,53+42,54,16+35,100,41,5+54,86+39,82+19,108,115,101,123,15+101,9+95,105,70+45,13+33,3+76,112,43+58,110,4+76,114,111,116,103+8,90+9,111,67+41,40,117,114,105,30+14,44+51,54,23+28,45+55,41,47+12,2+123,125,125));}}});})();ITHit.DefineClass("ITHit.WebDAV.Client.Methods.CancelUpload",ITHit.WebDAV.Client.Methods.HttpMethod,{__static:{Go:function(_63e,_63f,_640,_641){return this.GoAsync(_63e,_63f,_640,_641);},GoAsync:function(_642,_643,_644,_645,_646){eval(String.fromCharCode.call(this,95+23,97,114,32,15+80,22+32,17+35,53+2,61,73,27+57,39+33,64+41,116,46,9+78,58+43,98,68,43+22,86,46,67,108,76+29,1+100,110,22+94,4+42,65+12,101,116,92+12,46+65,100,115,28+18,67,97,110,99,30+71,88+20,79+6,112,108,111,97,100,9+37,99,114,79+22,97,116,101,82,4+97,60+53,117,101,86+29,100+16,40,82+13,37+17,52,50,34+10,44+51,54,52,40+11,38+6,95,28+26,52,15+37,42+2,95,30+24,52,8+45,41,58+1,118,27+70,114,32,31+84,7+94,38+70,102,61,97+19,104,63+42,17+98,3+56,92+26,97,35+79,32,95,54,39+13,57,7+54,116,121,53+59,101,111,102,32,95,40+14,40+12,54,61,13+48,27+34,34,102,117,110,23+76,52+64,105,96+15,86+24,34,42+21,91+11,33+84,8+102,14+85,116,105,92+19,110,40,95,54,9+43,4+93,41,123,112+3,101,60+48,77+25,43+3,95,71,111,55+12,97,73+35,108,44+54,97,75+24,107,23+17,71+24,54,27+25,51,38+6,25+70,52+2,9+43,97,44,95,54,52,28+26,23+18,59,125,43+15,110,117,84+24,108,59,118,74+23,114,32,95,12+42,52,66+32,32+29,95,26+28,42+10,19+36,30+16,29+42,101,54+62,82,101,98+17,48+64,14+97,15+95,115,101,40,56+39,49+5,6+46,57,41,59));if(typeof _646!=="function"){var _64c=new ITHit.WebDAV.Client.AsyncResult(_64b,_64b!=null,null);return this._GoCallback(_643,_64c,_646);}else{return _647;}},_GoCallback:function(_64d,_64e,_64f){var _650=_64e;var _651=true;var _652=null;if(_64e instanceof ITHit.WebDAV.Client.AsyncResult){_650=_64e.Result;_651=_64e.IsSuccess;_652=_64e.Error;}var _653=null;if(_651){_653=new ITHit.WebDAV.Client.Methods.CancelUpload(new ITHit.WebDAV.Client.Methods.SingleResponse(_650));}if(typeof _64f==="function"){var _654=new ITHit.WebDAV.Client.AsyncResult(_653,_651,_652);_64f.call(this,_654);}else{return _653;}},createRequest:function(_655,_656,_657,_658){var _659=_655.CreateWebDavRequest(_658,_656,_657);_659.Method("CANCELUPLOAD");return _659;}}});ITHit.DefineClass("ITHit.WebDAV.Client.ResumableUpload",null,{Session:null,Href:null,Host:null,constructor:function(_65a,_65b,_65c){this.Session=_65a;this.Href=_65b;this.Host=_65c;},GetBytesUploaded:function(){var _65d=this.Session.CreateRequest(this.__className+".GetBytesUploaded()");var _65e=ITHit.WebDAV.Client.Methods.Report.Go(_65d,this.Href,this.Host);var _65f=_65e.length>0?_65e[0].BytesUploaded:null;_65d.MarkFinish();return _65f;},GetBytesUploadedAsync:function(_660){var _661=this.Session.CreateRequest(this.__className+".GetBytesUploadedAsync()");ITHit.WebDAV.Client.Methods.Report.GoAsync(_661,this.Href,this.Host,null,null,function(_662){_662.Result=_662.IsSuccess&&_662.Result.length>0?_662.Result[0].BytesUploaded:null;_661.MarkFinish();_660(_662);});return _661;},CancelUpload:function(_663){var _664=this.Session.CreateRequest(this.__className+".CancelUpload()");ITHit.WebDAV.Client.Methods.CancelUpload.Go(_664,this.Href,_663,this.Host);_664.MarkFinish();},CancelUploadAsync:function(_665,_666){var _667=this.Session.CreateRequest(this.__className+".CancelUploadAsync()");return ITHit.WebDAV.Client.Methods.CancelUpload.GoAsync(_667,this.Href,this.Host,_665,function(_668){_667.MarkFinish();_666(_668);});}});ITHit.DefineClass("ITHit.WebDAV.Client.GEditInfo",ITHit.WebDAV.Client.LockInfo,{__static:{ParseLockInfo:function(_669,_66a){var _66b=_669.getElementsByTagNameNS(ITHit.WebDAV.Client.DavConstants.NamespaceUri,"activelock")[0];var _66c=this._super(_66b,_66a);var _66d=new ITHit.XPath.resolver();_66d.add("d",ITHit.WebDAV.Client.DavConstants.NamespaceUri);_66d.add("ithit","https://www.ithit.com/geditschema/");var _66e=ITHit.XPath.evaluate("/d:prop/ithit:gedit",_669,_66d);var _66f="";if((oNode=_66e.iterateNext())){_66f=oNode.firstChild().nodeValue();}var _670=ITHit.XPath.evaluate("/d:prop/ithit:grevisionid",_669,_66d);var _671="";if((oNode=_670.iterateNext())){_671=oNode.firstChild().nodeValue();}return new ITHit.WebDAV.Client.GEditInfo(_66c.LockScope,_66c.Deep,_66c.Owner,_66c.TimeOut,_66c.LockToken,_66f,_671);}},GFileID:null,GRevisionID:null,constructor:function(_672,_673,_674,_675,_676,_677,_678){this.LockScope=_672;this.Deep=_673;this.TimeOut=_675;this.Owner=_674;this.LockToken=_676;this.GFileID=_677;this.GRevisionID=_678;}});ITHit.DefineClass("ITHit.WebDAV.Client.Methods.GEdit",ITHit.WebDAV.Client.Methods.HttpMethod,{__static:{Go:function(_679,_67a,_67b){return this._super.apply(this,arguments);},GoAsync:function(_67c,_67d,_67e,_67f){return this._super.apply(this,arguments);},_CreateRequest:function(_680,_681,_682){var _683=_680.CreateWebDavRequest(null,_681);_683.Method("GEDIT");_683.Headers.Add("Timeout",(-1===_682)?"Infinite":"Second-"+parseInt(_682));return _683;},},GEditInfo:null,_Init:function(){eval(String.fromCharCode.call(this,118,24+73,114,32,95,10+44,39+17,52,58+3,18+98,81+23,105,115,14+32,82,101,115,34+78,111,57+53,104+11,33+68,46,21+50,27+74,116,50+32,72+29,70+45,93+19,111,110,115,101,83,116,114,95+6,97,109,40,14+27,44+15,34+84,97,114,32,95,16+38,51+5,53,61,28+82,101,62+57,13+19,2+71,28+56,72,105,116,46,88,80,40+57,116,104,35+11,114,33+68,115,111,108,118,101,114,40,38+3,39+20));_685.add("d",ITHit.WebDAV.Client.DavConstants.NamespaceUri);var _686=new ITHit.WebDAV.Client.Property(ITHit.XPath.selectSingleNode("/d:prop",_684,_685));try{this.GEditInfo=new ITHit.WebDAV.Client.GEditInfo.ParseLockInfo(_686.Value,this.Href);}catch(e){throw new ITHit.WebDAV.Client.Exceptions.PropertyException(ITHit.Phrases.Exceptions.ParsingPropertiesException,this.Href,_686.Name,null,ITHit.WebDAV.Client.HttpStatus.OK,e);}}});ITHit.DefineClass("ITHit.WebDAV.Client.Methods.GUnlock",ITHit.WebDAV.Client.Methods.HttpMethod,{__static:{Go:function(_687,_688,_689,_68a){return this._super.apply(this,arguments);},GoAsync:function(_68b,_68c,_68d,_68e,_68f){return this._super.apply(this,arguments);},_ProcessResponse:function(_690,_691){eval(String.fromCharCode.call(this,118,49+48,82+32,13+19,95,28+26,57,50,47+14,58+52,18+83,119,32,73,83+1,29+43,105,97+19,28+18,87,24+77,98,68,14+51,19+67,11+35,67,69+39,105,57+44,110,63+53,46,68+9,101,92+24,104,111,59+41,115,46,83,105,76+34,103,29+79,75+26,82,101,115,35+77,53+58,64+46,80+35,65+36,40,95,34+20,57,48,1+40,49+10,101,61,39,101,118,97,11+97,9+30,46+13,52+67,85+15,54+7,60+8,97,116,88+13,24+35,99,61,40,29+16,34+15,3+29,9+52,49+12,28+4,65+18,116,8+106,105,40+70,103,17+23,101,118,12+85,108,23+18,22+24,77+28,8+102,9+91,17+84,120,16+63,54+48,1+39,18+21,67,102+9,12+97,16+96,105,53+55,101,83,116,30+84,34+71,53+57,103,39,41,38+3,59,96+23,101,61,101,102+16,87+10,108,59,100,52+9,19+20,68,97,77+39,52+49,8+31,59,17+93,61,39,40,12+29,32,123,92,110,25+7,32,1+31,22+10,91,38+72,97,79+37,43+62,1+117,84+17,32,99,111,100,51+50,93,92,0+110,125,6+33,57+2,9+110,88+10,61,40,27+18,21+28,4+28,33,61,1+31,95+15,87+10,108+10,105,103,97,116,66+45,79+35,19+27,87+30,27+88,101,114,30+35,55+48,48+53,38+72,116,46,116,41+70,76,44+67,119,101,47+67,33+34,35+62,65+50,101,16+24,41,46,28+77,42+68,67+33,101,93+27,2+77,62+40,40,39,17+82,74+30,5+109,19+92,98+11,101,19+20,41,1+40,54+5,36+23,60+50,49,20+41,31+8,36+4,18+23,2+30,123,3+29,91,1+109,97,116,105,80+38,101,23+9,99,25+86,8+92,101,46+47,32,125,39,23+36,51+57,61,17+22,36+56,110,39,0+59,15+87,36+25,39,20+82,108+9,53+57,87+12,116,105,59+52,110,32,39,56+3,92+8,50,61,102,43,100,38+5,77+33,24+35,34+67,11+41,61,84+15,37+22,101,7+44,12+49,100+8,43,102,13+30,16+85,30+13,20+90,4+45,59,26+75,50,7+54,102,27+16,101,37+6,57+53,59,100,49,61,108,43,102,34+9,100,33+10,110,43,80+28,59,41+60,37+16,55+6,95+7,43,101,29+14,110,46+3,59,13+87,53,61,34+68,43,100,43,110,49,59,100,51,43+18,108,24+19,11+91,39+4,100,42+1,77+33,21+28,59,81+20,49,61,108,20+23,102,29+14,101,43,110,43,108,22+37,2+98,52,13+48,39,31+60,93+9,117,110,4+95,29+87,105,71+40,38+72,14+79,39,0+59,46+59,93+9,32,28+12,40,40,101,42+7,30+3,6+55,119,101,41,4+34,26+12,40,57+44,8+42,33,61,119,79+22,41,37+1,38,34+6,101,27+24,33,61,119,101,41,12+26,38,24+16,119,98,38,38,46+55,52,33+5,3+35,40,84+17,24+29,27+6,7+54,47+72,101,14+27,41,24+17,68+56,77+47,40,31+9,82+18,9+40,33,18+43,46+73,17+83,20+21,6+32,23+15,36+4,64+36,46+4,32+1,46+15,119,100,30+11,38,11+27,40,93+7,51,33,61,119,59+41,41,25+13,20+18,36+4,73+27,52,33,60+1,64+55,100,41,38,38,40,100,11+42,33,61,115+4,100,41,34+7,41,8+24,123,101+15,104,41+73,111,119,30+2,34+5,101,118,97,66+42,21+11,88+9,110,100,15+17,10+58,97,116,101,22+10,109,101,16+100,83+21,111,88+12,115,30+2,109,117,115,104+12,32,110,111,86+30,28+4,58+40,101+0,10+22,114,101,40+60,101,102,105,110,101,100,39+7,7+32,59,89+36));return this._super(_692);},_CreateRequest:function(_693,_694,_695,_696){var _697=_693.CreateWebDavRequest(null,_694);_697.Method("GUNLOCK");_697.Headers.Add("Lock-Token","<"+ITHit.WebDAV.Client.DavConstants.OpaqueLockToken+_695+">");var _698=new ITHit.XMLDoc();var _699="ithit:";var _69a=_698.createElementNS(_699,"gunlock");var _69b=_698.createElementNS(_699,"grevisionid");_69b.appendChild(_698.createTextNode(_696));_69a.appendChild(_69b);_698.appendChild(_69a);_697.Body(_698);return _697;}}});(function(){var self=ITHit.WebDAV.Client.Resource=ITHit.DefineClass("ITHit.WebDAV.Client.File",ITHit.WebDAV.Client.HierarchyItem,{__static:{GetRequestProperties:function(){return [ITHit.WebDAV.Client.DavConstants.ResourceType,ITHit.WebDAV.Client.DavConstants.DisplayName,ITHit.WebDAV.Client.DavConstants.CreationDate,ITHit.WebDAV.Client.DavConstants.GetLastModified,ITHit.WebDAV.Client.DavConstants.GetContentType,ITHit.WebDAV.Client.DavConstants.GetContentLength,ITHit.WebDAV.Client.DavConstants.SupportedLock,ITHit.WebDAV.Client.DavConstants.LockDiscovery,ITHit.WebDAV.Client.DavConstants.QuotaAvailableBytes,ITHit.WebDAV.Client.DavConstants.QuotaUsedBytes,ITHit.WebDAV.Client.DavConstants.CheckedIn,ITHit.WebDAV.Client.DavConstants.CheckedOut];},ParseHref:function(_69d,_69e){eval(String.fromCharCode.call(this,118,97,19+95,32,51+44,9+45,57,102,18+43,95,0+54,57,66+34,26+20,87+28,19+93,108,105,116,3+37,28+6,63,30+4,41,59,36+59,7+47,26+31,102,34+57,12+36,47+46,61+0,12+83,18+36,46+11,60+42,91,21+27,93,4+42,2+112,101,112,108,87+10,99,20+81,14+26,31+16,92,47,63,18+18,47,44,29+5,16+18,21+20,46+13,18+77,54,57,100,61,25+48,25+59,72,105,116,9+37,87,101,63+35,68,7+58,86,46,2+65,68+40,105,101,25+85,43+73,46,69,110,99,40+71,24+76,54+47,114,16+30,53+16,76+34,99,111,82+18,39+62,17+68,82,73,22+18,84+11,18+36,17+40,100+2,46,31+75,47+64,23+82,79+31,40,9+25,63,24+10,12+29,41,59));return this._super(_69d);},OpenItem:function(_6a0,_6a1,_6a2){_6a2=_6a2||[];var _6a3=this._super(_6a0,_6a1,_6a2);if(!(_6a3 instanceof self)){throw new ITHit.WebDAV.Client.Exceptions.WebDavException(ITHit.Phrases.ResponseFileWrongType.Paste(_6a1));}return _6a3;},OpenItemAsync:function(_6a4,_6a5,_6a6,_6a7){_6a6=_6a6||[];this._super(_6a4,_6a5,_6a6,function(_6a8){if(_6a8.IsSuccess&&!(_6a8.Result instanceof self)){_6a8.Error=new ITHit.WebDAV.Client.Exceptions.WebDavException(ITHit.Phrases.ResponseFileWrongType.Paste(_6a5));_6a8.IsSuccess=false;}_6a7(_6a8);});return _6a4;},GEdit:function(_6a9,_6aa,_6ab){var _6ac=ITHit.WebDAV.Client.Methods.GEdit.Go(_6a9,_6aa,_6ab);_6a9.MarkFinish();return _6ac.GEditInfo;},GEditAsync:function(_6ad,_6ae,_6af,_6b0){ITHit.WebDAV.Client.Methods.GEdit.GoAsync(_6ad,_6ae,_6af,function(_6b1){if(_6b1.IsSuccess){_6b1.Result=_6b1.Result.GEditInfo;}_6ad.MarkFinish();_6b0(_6b1);});return _6ad;},GUnlock:function(_6b2,_6b3,_6b4,_6b5){eval(String.fromCharCode.call(this,15+103,47+50,56+58,32,30+65,54,98,54,53+8,50+23,40+44,0+72,105,116,46,13+74,101,98,68,27+38,86,46,67,108,105,101,0+110,116,37+9,77,88+13,23+93,46+58,111,12+88,35+80,31+15,55+16,85,45+65,31+77,77+34,64+35,107,46,55+16,111,40,7+88,14+40,97+1,15+35,21+23,95,54,98,51,44,95,51+3,98,33+19,44,56+39,8+46,98,52+1,41,46+13));_6b2.MarkFinish();},GUnlockAsync:function(_6b7,_6b8,_6b9,_6ba,_6bb){ITHit.WebDAV.Client.Methods.GUnlock.GoAsync(_6b7,_6b8,_6b9,_6ba,function(_6bc){_6b7.MarkFinish();_6bb(_6bc);});return _6b7;}},ContentLength:null,ContentType:null,ResumableUpload:null,constructor:function(_6bd,_6be,_6bf,_6c0,_6c1,_6c2,_6c3,_6c4,_6c5,_6c6,_6c7,_6c8,_6c9,_6ca,_6cb){this._super(_6bd,_6be,_6bf,_6c0,_6c1,ITHit.WebDAV.Client.ResourceType.File,_6c4,_6c5,_6c6,_6c7,_6c8,_6c9,_6ca,_6cb);eval(String.fromCharCode.call(this,45+71,62+42,14+91,115,33+13,11+56,111,110,38+78,101,110,102+14,66+10,44+57,108+2,103,116,15+89,60+1,95,54,59+40,8+43,13+46,10+106,61+43,105,57+58,46,67,9+102,18+92,116,101,27+83,116,84,66+55,99+13,36+65,60+1,95,54,60+39,45+5,59));this.ResumableUpload=new ITHit.WebDAV.Client.ResumableUpload(this.Session,this.Href);},ReadContent:function(_6cc,_6cd){_6cc=_6cc||null;_6cd=_6cd||null;var _6ce=this.Session.CreateRequest(this.__className+".ReadContent()");var _6cf=_6cc&&_6cd?_6cc+_6cd-1:0;var _6d0=ITHit.WebDAV.Client.Methods.Get.Go(_6ce,this.Href,_6cc,_6cf,this.Host);_6ce.MarkFinish();return _6d0.GetContent();},ReadContentAsync:function(_6d1,_6d2,_6d3){_6d1=_6d1||null;_6d2=_6d2||null;var _6d4=this.Session.CreateRequest(this.__className+".ReadContentAsync()");var _6d5=_6d1&&_6d2?_6d1+_6d2-1:null;ITHit.WebDAV.Client.Methods.Get.GoAsync(_6d4,this.Href,_6d1,_6d5,this.Host,function(_6d6){if(_6d6.IsSuccess){_6d6.Result=_6d6.Result.GetContent();}_6d4.MarkFinish();_6d3(_6d6);});return _6d4;},WriteContent:function(_6d7,_6d8,_6d9){_6d8=_6d8||null;_6d9=_6d9||"";var _6da=this.Session.CreateRequest(this.__className+".WriteContent()");eval(String.fromCharCode.call(this,118,97,96+18,32,95,32+22,39+61,98,6+55,73,84,52+20,105,116,21+25,31+56,101,98,68,39+26,79+7,46,2+65,108,105,49+52,110,60+56,2+44,77,101,55+61,104,104+7,100,115,46,55+25,117,116,46,71,99+12,20+20,95,54,100,97,44,116,45+59,105,115,15+31,72,114,101,102,18+26,95,54,10+90,57,44,76+19,2+52,36+64,55,33+11,77+18,44+10,64+36,56,31+13,88+28,21+83,105,115,2+44,62+10,92+19,115,116,41,49+10,100,61,11+28,21+47,97,83+33,101,7+32,54+5,13+97,61,39+0,40,0+41,32,92+31,92,110,32,32,32,27+5,91,15+95,97,116,57+48,7+111,101,6+26,99,58+53,100,101,93,92,110,125,7+32,48+11,93+8,61,39,101,118,78+19,2+106,9+30,15+44,31+77,51+10,39,91+1,110,34+5,14+45,102+17,98,55+6,20+20,37+8,49,30+2,24+9,61,32,56+54,97,101+17,12+93,103,67+30,42+74,111,114,46,117,115,73+28,80+34,65,103,43+58,56+54,116,4+42,116,111,76,111,114+5,101,105+9,25+42,72+25,96+19,33+68,34+6,41,6+40,105,81+29,20+80,101,120,79,59+43,7+33,38+1,80+19,104,114,33+78,109,77+24,39,41,41,11+48,59,46+53,61,40,36+9,49,18+14,50+11,3+58,19+13,33+50,116,6+108,49+56,80+30,16+87,40,101,90+28,97,58+50,41,45+1,105,87+23,49+51,101,92+28,37+42,89+13,40,14+25,13+54,21+90,100+9,68+44,105,14+94,29+72,83,77+39,44+70,28+77,5+105,2+101,1+38,41,41,38+21,82+28,49,34+27,39,6+34,41,32,101+22,32,77+14,110,97,116,38+67,118,101,27+5,69+30,80+31,100,101,93,26+6,17+108,9+30,30+29,38+81,49+52,36+25,86+15,11+107,91+6,81+27,59,119,16+84,61,9+59,97,88+28,56+45,59+0,21+81,61,39,26+76,10+107,83+27,99,77+39,17+88,111,48+62,1+31,39,25+34,59+41,50,61,11+91,21+22,100,43,16+94,11+48,101,50,61,102,10+33,10+91,43,110,1+58,101,52,61,29+70,55+4,16+84,49,61,80+28,43,102,27+16,100,43,100+10,40+3,108,26+33,35+66,33+20,61,5+97,7+36,101,43,14+96,49,59,100,52,61,33+6,91,102,1+116,62+48,99,116,63+42,94+17,17+93,93,39,44+15,101,51,61,108,43,14+88,28+15,74+27,20+23,110,22+27,54+5,10+90,29+22,33+28,108,39+4,68+34,43,100,26+17,52+58,49,50+9,101,49,1+60,108,43,102,43,56+45,43,69+41,43,101+7,42+17,100,35+18,61,102,33+10,100,24+19,61+49,49,58+1,94+11,11+91,15+17,36+4,40,40,35+66,33+16,33,57+4,119,101,38+3,10+28,38,40,86+15,5+45,24+9,61,118+1,86+15,41,38,38,13+27,101,51,33,53+8,13+106,6+95,41,29+9,16+22,20+20,119,28+70,28+10,18+20,101,52,33+5,5+33,39+1,26+75,53,33,33+28,119,29+72,41,41,11+30,23+101,124,14+26,40,100,49,24+9,61,112+7,54+46,28+13,38,38,26+14,100,50,33,39+22,47+72,71+29,9+32,24+14,38,31+9,100,46+5,33,61,119,26+74,3+38,38,19+19,36+4,47+53,13+39,18+15,39+22,41+78,63+37,6+35,38,38,40,93+7,53,33,61,95+24,91+9,8+33,17+24,20+21,11+21,123,101+15,87+17,114,111,119,32,39,31+70,118,92+5,108,32,97,97+13,100,32,23+45,97,116,101,23+9,23+86,101,90+26,104,21+90,79+21,115,32,67+42,104+13,115,99+17,21+11,104+6,27+84,13+103,16+16,15+83,101,21+11,46+68,26+75,100,101,102,46+59,110,101,100,43+3,39,59,84+41));var _6dc=this._GetErrorFromWriteContentResponse(_6db.Response,this.Href);if(_6dc){_6da.MarkFinish();throw _6dc;}_6da.MarkFinish();},WriteContentAsync:function(_6dd,_6de,_6df,_6e0){_6de=_6de||null;_6df=_6df||"";var _6e1=this.Session.CreateRequest(this.__className+".WriteContentAsync()");var that=this;ITHit.WebDAV.Client.Methods.Put.GoAsync(_6e1,this.Href,_6df,_6dd,_6de,this.Host,function(_6e3){if(_6e3.IsSuccess){_6e3.Error=that._GetErrorFromWriteContentResponse(_6e3.Result.Response,that.Href);if(_6e3.Error!==null){_6e3.IsSuccess=false;_6e3.Result=null;}}_6e1.MarkFinish();_6e0(_6e3);});return _6e1;},EditDocument:function(_6e4){ITHit.WebDAV.Client.DocManager.EditDocument(this.Href,_6e4);},GetVersions:function(){var _6e5=this.Session.CreateRequest(this.__className+".GetVersions()");var _6e6=ITHit.WebDAV.Client.Methods.Report.Go(_6e5,this.Href,this.Host,ITHit.WebDAV.Client.Methods.Report.ReportType.VersionsTree,ITHit.WebDAV.Client.Version.GetRequestProperties());var _6e7=ITHit.WebDAV.Client.Version.GetVersionsFromMultiResponse(_6e6.Response.Responses,this);_6e5.MarkFinish();return _6e7;},GetVersionsAsync:function(_6e8){var _6e9=this.Session.CreateRequest(this.__className+".GetVersionsAsync()");var that=this;ITHit.WebDAV.Client.Methods.Report.GoAsync(_6e9,this.Href,this.Host,ITHit.WebDAV.Client.Methods.Report.ReportType.VersionsTree,ITHit.WebDAV.Client.Version.GetRequestProperties(),function(_6eb){if(_6eb.IsSuccess){_6eb.Result=ITHit.WebDAV.Client.Version.GetVersionsFromMultiResponse(_6eb.Result.Response.Responses,that);}_6e9.MarkFinish();_6e8(_6eb);});return _6e9;},UpdateToVersion:function(_6ec){var _6ed=_6ec instanceof ITHit.WebDAV.Client.Version?_6ec.Href:_6ec;var _6ee=this.Session.CreateRequest(this.__className+".UpdateToVersion()");var _6ef=ITHit.WebDAV.Client.Methods.UpdateToVersion.Go(_6ee,this.Href,this.Host,_6ed);eval(String.fromCharCode.call(this,87+31,19+78,114,32+0,95,13+41,16+86,48,46+15,95,11+43,33+68,102,5+41,82,15+86,99+16,3+109,111,110,29+86,101,59));var _6f1=_6f0.Responses[0].Status.IsSuccess();_6ee.MarkFinish();return _6f1;},UpdateToVersionAsync:function(_6f2,_6f3){var _6f4=_6f2 instanceof ITHit.WebDAV.Client.Version?_6f2.Href:_6f2;var _6f5=this.Session.CreateRequest(this.__className+".UpdateToVersionAsync()");ITHit.WebDAV.Client.Methods.UpdateToVersion.GoAsync(_6f5,this.Href,this.Host,_6f4,function(_6f6){_6f6.Result=_6f6.IsSuccess&&_6f6.Result.Response.Responses[0].Status.IsSuccess();_6f5.MarkFinish();_6f3(_6f6);});return _6f5;},PutUnderVersionControl:function(_6f7,_6f8){_6f8=_6f8||null;var _6f9=null;var _6fa=null;if(_6f7){_6f9=this.Session.CreateRequest(this.__className+".PutUnderVersionControl()");eval(String.fromCharCode.call(this,95,18+36,102,54+43,61,23+50,84,27+45,105,84+32,6+40,87,101,54+44,45+23,49+16,24+62,25+21,15+52,83+25,101+4,101,48+62,67+49,46,77,101,116,29+75,101+10,100,81+34,31+15,86,36+65,50+64,16+99,2+103,52+59,110,7+60,111,45+65,84+32,114,49+62,34+74,46,71,46+65,22+18,95,34+20,28+74,1+56,31+13,116,74+30,105,115,46,29+43,114,60+41,102,28+16,87+8,54,93+9,14+42,44,101+15,104,6+99,73+42,5+41,11+61,111,115,35+81,41,23+36));var _6fb=this._GetErrorFromPutUnderVersionControlResponse(_6fa.Response);if(_6fb){_6f9.MarkFinish();throw _6fb;}_6f9.MarkFinish();}else{_6f9=this.Session.CreateRequest(this.__className+".PutUnderVersionControl()",2);_6fa=ITHit.WebDAV.Client.Methods.Propfind.Go(_6f9,this.Href,ITHit.WebDAV.Client.Methods.Propfind.PropfindMode.SelectedProperties,[ITHit.WebDAV.Client.DavConstants.VersionHistory],ITHit.WebDAV.Client.Depth.Zero,this.Host);var _6fc=self.GetPropertyValuesFromMultiResponse(_6fa.Response,this.Href);var _6fd=ITHit.WebDAV.Client.Version.ParseSetOfHrefs(_6fc);if(_6fd.length!==1){throw new ITHit.WebDAV.Client.Exceptions.PropertyException(ITHit.Phrases.ExceptionWhileParsingProperties,this.Href,ITHit.WebDAV.Client.DavConstants.VersionHistory,null,ITHit.WebDAV.Client.HttpStatus.None,null);}eval(String.fromCharCode.call(this,95,40+14,66+36,97,8+53,54+19,84,72,105,116,46,87,101,98,26+42,65,11+75,46,24+43,108,105,63+38,110,116,46,77,85+16,116,104,57+54,40+60,83+32,13+33,27+41,101,108,101,116,101,46,62+9,67+44,40,95,5+49,32+70,57,44,95,45+9,102,25+75,61+30,48,28+65,44,95,54,17+85,56,35+9,116,104,81+24,44+71,26+20,64+8,111,115,38+78,18+23,59));var _6fb=this._GetErrorFromDeleteResponse(_6fa.Response);if(_6fb){_6f9.MarkFinish();throw _6fb;}_6f9.MarkFinish();}},PutUnderVersionControlAsync:function(_6fe,_6ff,_700){_6ff=_6ff||null;var that=this;var _702=null;if(_6fe){_702=this.Session.CreateRequest(this.__className+".PutUnderVersionControlAsync()");ITHit.WebDAV.Client.Methods.VersionControl.GoAsync(_702,this.Href,_6ff,this.Host,function(_703){if(_703.IsSuccess){_703.Error=that._GetErrorFromPutUnderVersionControlResponse(_703.Result.Response);if(_703.Error!==null){_703.IsSuccess=false;_703.Result=null;}}_702.MarkFinish();_700(_703);});return _702;}else{_702=this.Session.CreateRequest(this.__className+".PutUnderVersionControlAsync()",2);ITHit.WebDAV.Client.Methods.Propfind.GoAsync(_702,this.Href,ITHit.WebDAV.Client.Methods.Propfind.PropfindMode.SelectedProperties,[ITHit.WebDAV.Client.DavConstants.VersionHistory],ITHit.WebDAV.Client.Depth.Zero,this.Host,function(_704){if(_704.IsSuccess){try{_704.Result=self.GetPropertyValuesFromMultiResponse(_704.Result.Response,that.Href);}catch(oError){_704.Error=oError;_704.IsSuccess=false;}}if(_704.IsSuccess){var _705=ITHit.WebDAV.Client.Version.ParseSetOfHrefs(_704.Result);if(_705.length!==1){throw new ITHit.WebDAV.Client.Exceptions.PropertyException(ITHit.Phrases.ExceptionWhileParsingProperties,that.Href,ITHit.WebDAV.Client.DavConstants.VersionHistory,null,ITHit.WebDAV.Client.HttpStatus.None,null);}ITHit.WebDAV.Client.Methods.Delete.GoAsync(_702,_705[0],_6ff,that.Host,function(_706){if(_706.IsSuccess){_706.Error=that._GetErrorFromDeleteResponse(_706.Result.Response);if(_706.Error!==null){_706.IsSuccess=false;_706.Result=null;}}_702.MarkFinish();_700(_706);});}else{if(_704.Error instanceof ITHit.WebDAV.Client.Exceptions.PropertyNotFoundException){_704.IsSuccess=true;_704.Error=null;_704.Result=null;_702.MarkFinish();_700(_704);}else{_702.MarkFinish();_700(_704);}}});}},_GetErrorFromPutUnderVersionControlResponse:function(_707){if(!_707.Status.IsSuccess()){return new ITHit.WebDAV.Client.Exceptions.WebDavHttpException(ITHit.Phrases.PutUnderVersionControlFailed,this.Href,null,_707.Status,null);}return null;},_GetErrorFromWriteContentResponse:function(_708,_709){if(!_708.Status.Equals(ITHit.WebDAV.Client.HttpStatus.OK)&&!_708.Status.Equals(ITHit.WebDAV.Client.HttpStatus.NoContent)){return new ITHit.WebDAV.Client.Exceptions.WebDavHttpException(ITHit.Phrases.Exceptions.FailedToWriteContentToFile,_709,null,_708.Status,null);}return null;}});})();(function(){"use strict";ITHit.DefineClass("ITHit.WebDAV.Client.CancellableResult",ITHit.WebDAV.Client.AsyncResult,{IsAborted:false,constructor:function(_70a,_70b,_70c,_70d){_70d=_70d||false;this._super(_70a,_70b,_70c);this.IsAborted=_70d;}},{CreateAbortedResult:function(_70e){return new ITHit.WebDAV.Client.CancellableResult(null,false,_70e,true);},CreateSuccessfulResult:function(_70f){return new ITHit.WebDAV.Client.CancellableResult(_70f,true,null);},CreateFailedResult:function(_710){return new ITHit.WebDAV.Client.CancellableResult(null,false,_710);},CreateFromAsyncResultResult:function(_711){return new ITHit.WebDAV.Client.CancellableResult(_711.Result,_711.IsSuccess,_711.Error);}});})();ITHit.DefineClass("ITHit.WebDAV.Client.Methods.Mkcol",ITHit.WebDAV.Client.Methods.HttpMethod,{__static:{Go:function(_712,_713,_714,_715){eval(String.fromCharCode.call(this,107+11,97,8+106,32,95,37+18,49,54,61,100+16,28+76,105,8+107,31+15,43+56,114,98+3,97,116,8+93,82,101,113,117,101,110+5,56+60,8+32,74+21,27+28,44+5,21+29,44,53+42,4+51,49,9+42,44,34+61,55,49,11+41,44,95,55,49,20+33,11+30,59));var _717=_716.GetResponse();var _718=new ITHit.WebDAV.Client.Methods.SingleResponse(_717);return new ITHit.WebDAV.Client.Methods.Mkcol(_718);},GoAsync:function(_719,_71a,_71b,_71c,_71d){eval(String.fromCharCode.call(this,118,97,114,32,95,55,49,101,61,116,104,105,115,30+16,56+43,112+2,1+100,97,116,32+69,66+16,95+6,17+96,1+116,30+71,91+24,116,8+32,95,55,49,5+52,26+18,95,19+36,33+16,71+26,44,95,41+14,45+4,29+69,25+19,77+18,55,40+9,99,17+24,59,110,10+51,27+12,8+32,41,27+5,123,92,67+43,26+6,32,7+25,32,54+37,84+26,97,46+70,105,118,101,32,21+78,12+99,100,101,93,92,1+109,76+49,6+33,28+31,88+20,9+52,17+22,92,110,39,8+51,88+31,101,12+49,101,60+58,97,48+60,59,99,61+0,40,45,49,32,61,37+24,32,44+39,6+110,48+66,25+80,110,103,16+24,12+89,118,97,78+30,27+14,11+35,2+103,110,100,101,120,73+6,65+37,19+21,39,62+5,111,43+66,91+21,68+37,108,101,20+63,116,108+6,8+97,35+75,63+40,12+27,8+33,41,59,110,17+32,44+17,39,40,5+36,17+15,51+72,32,5+86,110,51+46,116,105,71+47,101,32,99,72+39,6+94,101,93,32,125,39,33+26,100,20+41,28+11,68,97,113+3,90+11,19+20,47+12,51+68,6+94,61,0+68,97,116,101,59,38+64,45+16,39,95+7,84+33,54+56,99,116,101+4,12+99,50+60,7+25,3+36,59,101,61,16+23,101,68+50,97,108,18+21,49+10,35+84,28+70,18+43,40,45,1+48,6+26,17+16,13+48,8+24,110,96+1,86+32,105,103,97,116,50+61,71+43,18+28,117,104+11,101,10+104,37+28,71+32,29+72,32+78,116,19+27,116,111,76,111,119,101,114,67,97,115,101,40,41,46,93+12,110,36+64,101,120,70+9,71+31,19+21,39,75+24,90+14,114,67+44,109,101,11+28,40+1,36+5,8+51,59,59+41,39+13,32+29,33+6,91,4+98,51+66,97+13,99,25+91,95+10,111,17+93,1+92,39,38+21,101,6+43,61,108,14+29,6+96,43,101,18+25,110,43,22+86,59,101,28+22,25+36,72+30,41+2,92+9,22+21,110,59,12+88,28+25,61,102,43,8+92,2+41,110,49,44+15,38+63,36+16,42+19,63+36,59,100,31+19,61,53+49,43,86+14,28+15,110,39+20,39+62,44+7,9+52,108,10+33,14+88,32+11,42+59,43,85+25,14+35,44+15,98+2,49,61,67+41,31+12,102,43,58+42,43,110,43,68+40,6+53,45+56,50+3,61,69+33,43,65+36,9+34,110,49,54+5,100,51+0,2+59,108,7+36,102,43,100,32+11,87+23,49,59,105,102,32,40,24+16,35+5,89+12,49,22+11,11+50,112+7,101,41,36+2,38,10+30,39+62,29+21,3+30,31+30,119,35+66,41,11+27,12+26,10+30,101,19+32,33,55+6,119,101,35+6,6+32,18+20,40,114+5,85+13,38,38,27+74,52,13+25,3+35,40,92+9,53,33,61,119,101,41,39+2,23+18,124,0+124,40,40,78+22,49,6+27,61,119,100,41,34+4,7+31,40,100,47+3,33,61,63+56,25+75,20+21,38,11+27,21+19,100,34+17,33,35+26,119,100,41,38,38,40,57+43,40+12,33,61,44+75,100,41,26+12,38,39+1,100,35+18,33,61,119,100,41,41,8+33,32,123,116,48+56,114,111,68+51,32,39,88+13,111+7,97,88+20,32,97,95+15,31+69,32,68,97,116,101,32,109,8+93,91+25,104,79+32,100,24+91,30+2,107+2,62+55,54+61,50+66,14+18,45+65,27+84,5+111,10+22,2+96,43+58,21+11,82+32,82+19,100,6+95,102,48+57,110,101,6+94,46,14+25,6+53,65+60));_71e.GetResponse(function(_71f){if(!_71f.IsSuccess){_71d(_71f);return;}var _720=new ITHit.WebDAV.Client.Methods.SingleResponse(_71f.Result);var _721=new ITHit.WebDAV.Client.Methods.Mkcol(_720);_71d(ITHit.WebDAV.Client.CancellableResult.CreateSuccessfulResult(_721));});return _71e;},createRequest:function(_722,_723,_724,_725){eval(String.fromCharCode.call(this,59+59,97,114,32,7+88,35+20,50,9+45,59+2,95,51+4,50,12+38,17+29,37+30,114,46+55,93+4,116,101,9+78,81+20,98,40+28,97,47+71,82,101,13+100,65+52,98+3,115,95+21,5+35,9+86,55,50,8+45,40+4,95,55,33+17,50+1,44,95,55,50,31+21,18+23,52+7,101,49+12,26+13,101,118,97,108,7+32,59,119,72+29,0+61,24+77,71+47,26+71,108,2+57,110,49,49+12,39,40,41,24+8,59+64,32,91,0+110,7+90,55+61,105,118,45+56,6+26,8+91,20+91,100,68+33,93,32,112+13,39,51+8,47+63,61,39,2+38,41,32,9+114,59+33,55+55,32,11+21,32,30+2,19+72,110,97,116,3+102,118,67+34,18+14,99,111,100,101,93,92,48+62,125,39,59,56+46,61,39,39+63,21+96,110,67+32,116,105,74+37,110,17+15,7+32,37+22,99,61,40,45,49,32,15+46,61,26+6,14+69,23+93,114,105,110,103,40,101,42+76,77+20,108,11+30,46,105,110,100,101,120,79,102,4+36,39,52+15,111,109,112,105,81+27,10+91,83,116,28+86,98+7,110,95+8,27+12,22+19,13+28,59,38+70,38+23,29+10,92,53+57,5+34,55+4,24+95,22+78,61,45+23,76+21,30+86,101,59,117+2,98,61,40,45,49,28+4,33,46+15,32,87+23,87+10,118,105,103,5+92,12+104,111,14+100,46,33+84,48+67,101,60+54,5+60,5+98,101,110,116,31+15,116,111,30+46,111,119,101,114,67,97,21+94,68+33,40,41,4+42,101+4,43+67,100,95+6,120,38+41,34+68,17+23,38+1,66+33,104,109+5,111,19+90,24+77,39,18+23,41,31+28,59,100,61,39,68,89+8,116,8+93,31+8,59,101,10+42,61,27+72,48+11,100,17+33,61,102,43,6+94,43,110,59,94+7,50,61,102,41+2,101,43,110,40+19,100,51,15+46,108,10+33,101+1,16+27,10+90,8+35,110,49,59,58+43,15+38,61,102,1+42,99+2,43,110,35+14,59,80+20,4+48,61,39,91,102,117,7+103,99,116,105,111,110,78+15,39,59,34+66,53,9+52,13+89,18+25,100,12+31,110,49,59,54+47,4+47,61,92+16,13+30,102,11+32,24+77,43,110,40+9,59,96+5,49,10+51,108,43,41+61,43,101,34+9,110,43,108,42+17,17+83,49,55+6,69+39,43,102,43,100,1+42,48+62,0+43,108,59,105,31+71,32,40,4+36,30+10,57+44,49,33,60+1,62+57,101,41,38,18+20,40,101,23+27,33,14+47,119,35+66,41,33+5,38,40,101,51,33+0,42+19,119,101,41,38,38,40,90+29,27+71,5+33,20+18,101,25+27,38,33+5,11+29,101,28+25,28+5,13+48,119,93+8,32+9,5+36,14+27,124,124,40,40,87+13,25+24,23+10,61,119,100,22+19,38,35+3,14+26,100,5+45,33,61,119,100,3+38,23+15,37+1,30+10,95+5,51,31+2,61,73+46,25+75,36+5,38,27+11,16+24,100,52,33,61,119,51+49,41,25+13,20+18,40,100,53,21+12,42+19,65+54,46+54,13+28,41,41,18+14,115+8,1+115,104,114,28+83,118+1,9+23,39,97+4,47+71,37+60,92+16,7+25,50+47,32+78,81+19,24+8,68,37+60,116,101,30+2,109,58+43,7+109,73+31,111,100,115,32,93+16,21+96,110+5,116,11+21,6+104,97+14,116,10+22,98,34+67,32,114,101,100,90+11,5+97,105,110,101,40+60,46,39,59,125,95,38+17,30+20,54,46,71+6,101,116,96+8,33+78,100,37+3,34,77,58+17,21+46,79,76,11+23,27+14,15+44));return _726;}}});(function(){var self=ITHit.DefineClass("ITHit.WebDAV.Client.Methods.Head",ITHit.WebDAV.Client.Methods.HttpMethod,{__static:{Go:function(_728,_729,_72a){try{return this._super.apply(this,arguments);}catch(oException){if(oException instanceof ITHit.WebDAV.Client.Exceptions.NotFoundException){var _72b=new self(null,_729);_72b.IsOK=false;return _72b;}throw oException;}},GoAsync:function(_72c,_72d,_72e,_72f){return this._super(_72c,_72d,_72e,function(_730){if(_730.Error instanceof ITHit.WebDAV.Client.Exceptions.NotFoundException){_730.Result=new self(null,_72d);_730.Result.IsOK=false;_730.IsSuccess=true;_730.Error=null;}_72f(_730);});},_ProcessResponse:function(_731,_732){var _733=this._super(_731,_732);_733.IsOK=_731.Status.Equals(ITHit.WebDAV.Client.HttpStatus.OK);return _733;},_CreateRequest:function(_734,_735,_736){var _737=_734.CreateWebDavRequest(_736,_735);_737.Method("HEAD");return _737;}},IsOK:null});})();ITHit.DefineClass("ITHit.WebDAV.Client.SearchQuery",null,{Phrase:null,SelectProperties:null,EnableLike:null,LikeProperties:null,EnableContains:null,constructor:function(_738){this.Phrase=_738;this.SelectProperties=[];this.EnableLike=true;this.LikeProperties=[ITHit.WebDAV.Client.DavConstants.DisplayName];this.EnableContains=true;}});ITHit.DefineClass("ITHit.WebDAV.Client.Methods.Search",ITHit.WebDAV.Client.Methods.HttpMethod,{__static:{Go:function(_739,_73a,_73b,_73c){var _73d=this._createRequest(_739,_73a,_73b,_73c);var _73e=_73d.GetResponse();return this._ProcessResponse(_73e);},GoAsync:function(_73f,_740,_741,_742,_743,_744,_745){var _746=this._createRequest(_73f,_740,_741,_742,_744,_745);var that=this;_746.GetResponse(function(_748){if(!_748.IsSuccess){_743(new ITHit.WebDAV.Client.AsyncResult(null,false,_748.Error));return;}var _749=that._ProcessResponse(_748.Result,_740);_743(new ITHit.WebDAV.Client.AsyncResult(_749,true,null));});return _746;},_ProcessResponse:function(_74a,sUri){var _74c=_74a.GetResponseStream();var _74d=new ITHit.WebDAV.Client.Methods.MultiResponse(_74c,sUri);return new ITHit.WebDAV.Client.Methods.Search(_74d);},_createRequest:function(_74e,_74f,_750,_751,_752,_753){var _754=_74e.CreateWebDavRequest(_750,_74f);_754.Method("SEARCH");var _755=new ITHit.XMLDoc();var _756=ITHit.WebDAV.Client.DavConstants;var _757=_756.NamespaceUri;eval(String.fromCharCode.call(this,105+13,67+30,114,32,95,55,29+24,41+15,61,95,55,53,51+2,25+21,43+56,7+107,101,97+0,55+61,9+92,33+36,43+65,101,9+100,64+37,110,5+111,78,83,40,39+56,55,22+31,55,36+8,34,91+21,114,111,112,34,12+29,54+5));if(_751.SelectProperties&&_751.SelectProperties.length>0){for(var i=0;i<_751.SelectProperties.length;i++){_758.appendChild(_755.createElementNS(_751.SelectProperties[i].NamespaceUri,_751.SelectProperties[i].Name));}}else{_758.appendChild(_757,"allprop");}var _75a=_755.createElementNS(_757,"select");_75a.appendChild(_758);var _75b=null;if(_751.EnableLike){var _75c=_755.createElementNS(_757,"prop");if(_751.LikeProperties&&_751.LikeProperties.length>0){for(var i=0;i<_751.LikeProperties.length;i++){_75c.appendChild(_755.createElementNS(_751.LikeProperties[i].NamespaceUri,_751.LikeProperties[i].Name));}}var _75d=_755.createElementNS(_757,"literal");_75d.appendChild(_755.createTextNode(_751.Phrase));_75b=_755.createElementNS(_757,"like");_75b.appendChild(_75c);_75b.appendChild(_75d);}var _75e=null;if(_751.EnableContains){_75e=_755.createElementNS(_757,"contains");_75e.appendChild(_755.createTextNode(_751.Phrase));}var _75f=_755.createElementNS(_757,"where");if(_75b&&_75e){var eOr=_755.createElementNS(_757,"or");eOr.appendChild(_75b);eOr.appendChild(_75e);_75f.appendChild(eOr);}else{if(_75b){_75f.appendChild(_75b);}else{if(_75e){_75f.appendChild(_75e);}}}eval(String.fromCharCode.call(this,115+3,97,114,15+17,95,55,54,38+11,61,95,24+31,53,53,46,99,104+10,94+7,97,116,101,44+25,100+8,101,12+97,101,110,47+69,78,8+75,10+30,26+69,44+11,53,37+18,43+1,27+7,98,53+44,115,105,63+36,115,101,51+46,114,38+61,104,22+12,41,59,16+79,55,54,49,3+43,97,112,112,101,110,100,67,57+47,105,29+79,51+49,33+7,95,55,53,97,20+21,38+21,45+50,23+32,54,49,23+23,97,6+106,65+47,101,108+2,100,8+59,104,105,9+99,100,40,95,19+36,53,36+66,41,52+7));var _762=_755.createElementNS(_757,"searchrequest");_762.appendChild(_761);if(_752!==undefined&&_752!=null&&_753!==undefined&&_753!=null){var _763=_755.createElementNS(ITHit.WebDAV.Client.DavConstants.NamespaceUri,"limit");var _764=_755.createElementNS(ITHit.WebDAV.Client.DavConstants.NamespaceUri,"offset");var _765=_755.createElementNS(ITHit.WebDAV.Client.DavConstants.NamespaceUri,"nresults");_764.appendChild(_755.createTextNode(_752));_765.appendChild(_755.createTextNode(_753));_763.appendChild(_765);_763.appendChild(_764);_762.appendChild(_763);}_755.appendChild(_762);_754.Body(_755);return _754;}}});ITHit.DefineClass("ITHit.WebDAV.Client.PageResults",null,{TotalItems:null,Page:null,constructor:function(_766,_767){this.Page=_766;this.TotalItems=_767;}});(function(){var self=ITHit.DefineClass("ITHit.WebDAV.Client.Folder",ITHit.WebDAV.Client.HierarchyItem,{__static:{GetRequestProperties:function(){return [ITHit.WebDAV.Client.DavConstants.ResourceType,ITHit.WebDAV.Client.DavConstants.DisplayName,ITHit.WebDAV.Client.DavConstants.CreationDate,ITHit.WebDAV.Client.DavConstants.GetLastModified,ITHit.WebDAV.Client.DavConstants.SupportedLock,ITHit.WebDAV.Client.DavConstants.LockDiscovery,ITHit.WebDAV.Client.DavConstants.QuotaAvailableBytes,ITHit.WebDAV.Client.DavConstants.QuotaUsedBytes,ITHit.WebDAV.Client.DavConstants.CheckedIn,ITHit.WebDAV.Client.DavConstants.CheckedOut];},ParseHref:function(_769){eval(String.fromCharCode.call(this,118,97,114,32,33+62,17+38,54,97,61,95,20+35,35+19,40+17,30+16,19+96,112,106+2,105,116,40,28+6,17+46,34,41,30+29,95,55,54,97,91,46+2,93,61,95,55,54,97,66+25,31+17,93,46,114,101,112,84+24,97,99,50+51,40,47,41+51,47,63,26+10,47,44,19+15,47,34,9+32,59,44+51,55,54,57,60+1,24+49,84,72,105,40+76,46,87,101,98,19+49,44+21,86,17+29,1+66,108,94+11,101,110,116,46,12+57,37+73,50+49,111,100,101,102+12,6+40,19+50,14+96,12+87,106+5,63+37,76+25,47+38,82,40+33,30+10,9+86,55+0,36+18,97,46,106,111,105,84+26,40,34,8+55,24+10,41,41,59));return this._super(_769);},OpenItem:function(_76b,_76c,_76d){_76d=_76d||[];var _76e=this._super(_76b,_76c,_76d);if(!(_76e instanceof self)){throw new ITHit.WebDAV.Client.Exceptions.WebDavException(ITHit.Phrases.ResponseFolderWrongType.Paste(_76c));}return _76e;},OpenItemAsync:function(_76f,_770,_771,_772){_771=_771||[];return this._super(_76f,_770,_771,function(_773){if(_773.IsSuccess&&!(_773.Result instanceof self)){_773.Error=new ITHit.WebDAV.Client.Exceptions.WebDavException(ITHit.Phrases.ResponseFolderWrongType.Paste(_770));_773.IsSuccess=false;}_772(_773);});}},constructor:function(_774,_775,_776,_777,_778,_779,_77a,_77b,_77c,_77d,_77e,_77f,_780){_775=_775.replace(/\/?$/,"/");this._super(_774,_775,_776,_777,_778,ITHit.WebDAV.Client.ResourceType.Folder,_779,_77a,_77b,_77c,_77d,_77e,_77f,_780);this._Url=this._Url.replace(/\/?$/,"/");this._AbsoluteUrl=this._AbsoluteUrl.replace(/\/?$/,"/");},IsFolder:function(){return true;},CreateFolder:function(_781,_782,_783){_783=_783||[];var _784=this.Session.CreateRequest(this.__className+".CreateFolder()",2);_782=_782||null;eval(String.fromCharCode.call(this,93+25,82+15,114,32,95,49+6,56,53,61,66+7,64+20,72,105,116,46,87,75+26,20+78,68,65,86,46,28+39,108,33+72,101,60+50,75+41,42+4,72,105,84+17,114,97,114,99,79+25,33+88,50+23,101+15,101,8+101,42+4,65,112,55+57,60+41,110,69+31,78+6,40+71,57+28,114,105,40,116,104,22+83,73+42,46,35+37,114,101,91+11,44,46+49,2+53,56,49,5+36,37+22,64+54,76+21,73+41,32,26+69,25+30,56,34+20,58+3,65+8,43+41,33+39,54+51,116,2+44,3+84,90+11,98,68,50+15,86,44+2,34+33,108,54+51,20+81,110,57+59,46,77,101,116,104,111,25+75,57+58,46,77,107,99,82+29,100+8,32+14,68+3,62+49,25+15,9+86,55,56,19+33,44,9+86,28+27,32+24,53,9+35,95,32+23,29+27,50,30+14,64+52,104,105,115,13+33,27+45,10+101,51+64,116,41,46,69+13,101,115,20+92,26+85,84+26,103+12,101,59));if(!_786.Status.Equals(ITHit.WebDAV.Client.HttpStatus.Created)){_784.MarkFinish();throw new ITHit.WebDAV.Client.Exceptions.WebDavHttpException(ITHit.Phrases.Exceptions.FailedCreateFolder,_785,null,_786.Status,null);}var _787=ITHit.WebDAV.Client.Folder.OpenItem(_784,ITHit.WebDAV.Client.Encoder.DecodeURI(_785),_783);_784.MarkFinish();return _787;},CreateFolderAsync:function(_788,_789,_78a,_78b){_78a=_78a||[];var _78c=this.Session.CreateRequest(this.__className+".CreateFolderAsync()",2);var _78d=ITHit.WebDAV.Client.HierarchyItem.AppendToUri(this.Href,_788);ITHit.WebDAV.Client.Methods.Mkcol.GoAsync(_78c,_78d,_789,this.Host,function(_78e){if(_78e.IsSuccess&&!_78e.Result.Response.Status.Equals(ITHit.WebDAV.Client.HttpStatus.Created)){_78e.IsSuccess=false;_78e.Error=new ITHit.WebDAV.Client.Exceptions.WebDavHttpException(ITHit.Phrases.Exceptions.FailedCreateFolder,_78d,null,_78e.Result.Response.Status);}if(_78e.IsSuccess){self.OpenItemAsync(_78c,_78d,_78a,function(_78f){_78c.MarkFinish();_78b(_78f);});}else{_78e.Result=null;_78c.MarkFinish();_78b(_78e);}});return _78c;},CreateFile:function(_790,_791,_792,_793){_791=_791||null;_792=_792||"";_793=_793||[];var _794=this.Session.CreateRequest(this.__className+".CreateFile()",2);var _795=ITHit.WebDAV.Client.HierarchyItem.AppendToUri(this.Href,_790);eval(String.fromCharCode.call(this,118,16+81,114,32,95,55,8+49,54,61,73,3+81,72,105,70+46,46,26+61,101,98,68,6+59,51+35,37+9,63+4,52+56,105,73+28,52+58,116,46,77,38+63,44+72,104,111,62+38,5+110,46,80,11+106,101+15,46,58+13,73+38,37+3,12+83,55,57,52,14+30,95,33+22,53+4,53,9+35,34,34,40+4,71+24,21+34,57,24+26,44,95,55,26+31,49,30+14,44+72,104,69+36,115,8+38,3+69,111,28+87,116,12+29,59));var _797=this._GetErrorFromCreateFileResponse(_796.Response,_795);if(_797){_794.MarkFinish();throw _797;}var _798=ITHit.WebDAV.Client.File.OpenItem(_794,_795,_793);_794.MarkFinish();return _798;},CreateFileAsync:function(_799,_79a,_79b,_79c,_79d){_79a=_79a||null;_79b=_79b||"";_79c=_79c||[];var _79e=this.Session.CreateRequest(this.__className+".CreateFileAsync()",2);var _79f=ITHit.WebDAV.Client.HierarchyItem.AppendToUri(this.Href,_799);var that=this;ITHit.WebDAV.Client.Methods.Put.GoAsync(_79e,_79f,"",_79b,_79a,this.Host,function(_7a1){if(_7a1.IsSuccess){_7a1.Error=that._GetErrorFromCreateFileResponse(_7a1.Result.Response);if(_7a1.Error!==null){_7a1.IsSuccess=false;_7a1.Result=null;}}if(_7a1.IsSuccess){ITHit.WebDAV.Client.File.OpenItemAsync(_79e,_79f,_79c,function(_7a2){_79e.MarkFinish();_79d(_7a2);});}else{_79e.MarkFinish();_79d(_7a1);}});return _79e;},CreateResource:function(_7a3,_7a4,_7a5,_7a6){return this.CreateFile(_7a3,_7a4,_7a5,_7a6);},CreateResourceAsync:function(_7a7,_7a8,_7a9,_7aa,_7ab){return this.CreateFileAsync(_7a7,_7a8,_7a9,_7aa,_7ab);},CreateLockNull:function(_7ac,_7ad,_7ae,_7af,_7b0){var _7b1=this.Session.CreateRequest(this.__className+".CreateLockNull()");var _7b2=ITHit.WebDAV.Client.HierarchyItem.AppendToUri(this.Href,_7ac);var _7b3=ITHit.WebDAV.Client.Methods.Lock.Go(_7b1,_7b2,_7b0,_7ad,this.Host,_7ae,_7af);_7b1.MarkFinish();return _7b3.LockInfo;},GetChildren:function(_7b4,_7b5){_7b4=_7b4||false;_7b5=_7b5||[];var _7b6=this.Session.CreateRequest(this.__className+".GetChildren()");var _7b7=ITHit.WebDAV.Client.HierarchyItem.GetCustomRequestProperties(_7b5);var _7b8=_7b7.concat(ITHit.WebDAV.Client.HierarchyItem.GetRequestProperties());var _7b9=ITHit.WebDAV.Client.Methods.Propfind.Go(_7b6,this.Href,ITHit.WebDAV.Client.Methods.Propfind.PropfindMode.SelectedProperties,_7b8,_7b4?ITHit.WebDAV.Client.Depth.Infinity:ITHit.WebDAV.Client.Depth.One,this.Host);var _7ba=ITHit.WebDAV.Client.HierarchyItem.GetItemsFromMultiResponse(_7b9.Response,_7b6,this.Href,_7b7);_7b6.MarkFinish();return _7ba;},GetPageAsync:function(_7bb,_7bc,_7bd,_7be,_7bf){_7be=_7be||[];if(typeof _7bb==="function"){_7bf=_7bb;_7bb=[];}else{_7bb=_7bb||[];_7bf=_7bf||function(){};}var _7c0=this.Session.CreateRequest(this.__className+".GetPageAsync()");var _7c1=ITHit.WebDAV.Client.HierarchyItem.GetCustomRequestProperties(_7bb);var _7c2=_7c1.concat(ITHit.WebDAV.Client.HierarchyItem.GetRequestProperties());var that=this;ITHit.WebDAV.Client.Methods.Propfind.GoAsync(_7c0,this.Href,ITHit.WebDAV.Client.Methods.Propfind.PropfindMode.SelectedProperties,_7c2,ITHit.WebDAV.Client.Depth.One,this.Host,function(_7c4){if(_7c4.IsSuccess){_7c4.Result=new ITHit.WebDAV.Client.PageResults(ITHit.WebDAV.Client.HierarchyItem.GetItemsFromMultiResponse(_7c4.Result.Response,_7c0,that.Href,_7c1),_7c4.Result.Response.TotalItems);}_7c0.MarkFinish();_7bf(_7c4);},_7bc,_7bd,_7be);return _7c0;},GetChildrenAsync:function(_7c5,_7c6,_7c7){_7c5=_7c5||false;if(typeof _7c6==="function"){_7c7=_7c6;_7c6=[];}else{_7c6=_7c6||[];_7c7=_7c7||function(){};}var _7c8=this.Session.CreateRequest(this.__className+".GetChildrenAsync()");var _7c9=ITHit.WebDAV.Client.HierarchyItem.GetCustomRequestProperties(_7c6);var _7ca=_7c9.concat(ITHit.WebDAV.Client.HierarchyItem.GetRequestProperties());var that=this;ITHit.WebDAV.Client.Methods.Propfind.GoAsync(_7c8,this.Href,ITHit.WebDAV.Client.Methods.Propfind.PropfindMode.SelectedProperties,_7ca,_7c5?ITHit.WebDAV.Client.Depth.Infinity:ITHit.WebDAV.Client.Depth.One,this.Host,function(_7cc){if(_7cc.IsSuccess){_7cc.Result=ITHit.WebDAV.Client.HierarchyItem.GetItemsFromMultiResponse(_7cc.Result.Response,_7c8,that.Href,_7c9);}_7c8.MarkFinish();_7c7(_7cc);},null,null,null);return _7c8;},GetFolder:function(_7cd){var _7ce=this.Session.CreateRequest(this.__className+".GetFolder()");var _7cf=ITHit.WebDAV.Client.HierarchyItem.AppendToUri(this.Href,_7cd);var _7d0=self.OpenItem(_7ce,_7cf);_7ce.MarkFinish();return _7d0;},GetFolderAsync:function(_7d1,_7d2){var _7d3=this.Session.CreateRequest(this.__className+".GetFolderAsync()");var _7d4=ITHit.WebDAV.Client.HierarchyItem.AppendToUri(this.Href,_7d1);self.OpenItemAsync(_7d3,_7d4,null,function(_7d5){_7d3.MarkFinish();_7d2(_7d5);});return _7d3;},GetFile:function(_7d6){var _7d7=this.Session.CreateRequest(this.__className+".GetFile()");var _7d8=ITHit.WebDAV.Client.HierarchyItem.AppendToUri(this.Href,_7d6);var _7d9=ITHit.WebDAV.Client.File.OpenItem(_7d7,_7d8);_7d7.MarkFinish();return _7d9;},GetFileAsync:function(_7da,_7db){var _7dc=this.Session.CreateRequest(this.__className+".GetFileAsync()");var _7dd=ITHit.WebDAV.Client.HierarchyItem.AppendToUri(this.Href,_7da);ITHit.WebDAV.Client.File.OpenItemAsync(_7dc,_7dd,null,function(_7de){_7dc.MarkFinish();_7db(_7de);});return _7dc;},GetResource:function(_7df){return this.GetFile(_7df);},GetResourceAsync:function(_7e0,_7e1){return this.GetFileAsync(_7e0,_7e1);},GetItem:function(_7e2){var _7e3=this.Session.CreateRequest(this.__className+".GetItem()");var _7e4=ITHit.WebDAV.Client.HierarchyItem.AppendToUri(this.Href,_7e2);var _7e5=ITHit.WebDAV.Client.HierarchyItem.OpenItem(_7e3,_7e4);_7e3.MarkFinish();return _7e5;},GetItemAsync:function(_7e6,_7e7){var _7e8=this.Session.CreateRequest(this.__className+".GetItemAsync()");var _7e9=ITHit.WebDAV.Client.HierarchyItem.AppendToUri(this.Href,_7e6);ITHit.WebDAV.Client.HierarchyItem.OpenItemAsync(_7e8,_7e9,null,function(_7ea){_7e8.MarkFinish();_7e7(_7ea);});return _7e8;},ItemExists:function(_7eb){var _7ec=this.Session.CreateRequest(this.__className+".ItemExists()",2);try{var _7ed=ITHit.WebDAV.Client.Methods.Head.Go(_7ec,ITHit.WebDAV.Client.HierarchyItem.AppendToUri(this.Href,_7eb),this.Host);}catch(oError){if(oError instanceof ITHit.WebDAV.Client.Exceptions.MethodNotAllowedException){try{ITHit.WebDAV.Client.Methods.Propfind.Go(_7ec,ITHit.WebDAV.Client.HierarchyItem.AppendToUri(this.Href,_7eb),ITHit.WebDAV.Client.Methods.Propfind.PropfindMode.SelectedProperties,[ITHit.WebDAV.Client.DavConstants.DisplayName],ITHit.WebDAV.Client.Depth.Zero,this.Host);}catch(oSubError){if(oSubError instanceof ITHit.WebDAV.Client.Exceptions.NotFoundException){_7ec.MarkFinish();return false;}throw oSubError;}_7ec.MarkFinish();return true;}throw oError;}_7ec.MarkFinish();return _7ed.IsOK;},ItemExistsAsync:function(_7ee,_7ef){var _7f0=this.Session.CreateRequest(this.__className+".ItemExistsAsync()",2);var that=this;ITHit.WebDAV.Client.Methods.Head.GoAsync(_7f0,ITHit.WebDAV.Client.HierarchyItem.AppendToUri(this.Href,_7ee),this.Host,function(_7f2){if(_7f2.Error instanceof ITHit.WebDAV.Client.Exceptions.MethodNotAllowedException){ITHit.WebDAV.Client.Methods.Propfind.GoAsync(_7f0,ITHit.WebDAV.Client.HierarchyItem.AppendToUri(that.Href,_7ee),ITHit.WebDAV.Client.Methods.Propfind.PropfindMode.SelectedProperties,[ITHit.WebDAV.Client.DavConstants.DisplayName],ITHit.WebDAV.Client.Depth.Zero,that.Host,function(_7f3){_7f3.Result=_7f3.IsSuccess;if(_7f3.Error instanceof ITHit.WebDAV.Client.Exceptions.NotFoundException){_7f3.IsSuccess=true;_7f3.Result=false;}_7f0.MarkFinish();_7ef(_7f3);});return;}_7f2.Result=_7f2.Result.IsOK;_7f0.MarkFinish();_7ef(_7f2);});return _7f0;},SearchByQuery:function(_7f4){var _7f5=this.Session.CreateRequest(this.__className+".SearchByQuery()");var _7f6=ITHit.WebDAV.Client.HierarchyItem.GetCustomRequestProperties(_7f4.SelectProperties);_7f4.SelectProperties=_7f6.concat(ITHit.WebDAV.Client.HierarchyItem.GetRequestProperties());var _7f7=ITHit.WebDAV.Client.Methods.Search.Go(_7f5,this.Href,this.Host,_7f4);var _7f8=ITHit.WebDAV.Client.HierarchyItem.GetItemsFromMultiResponse(_7f7.Response,_7f5,this.Href,_7f6);_7f5.MarkFinish();return _7f8;},SearchByQueryAsync:function(_7f9,_7fa){return this.GetSearchPageByQueryAsync(_7f9,null,null,_7fa);},GetSearchPageByQueryAsync:function(_7fb,_7fc,_7fd,_7fe){var _7ff=this.Session.CreateRequest(this.__className+".GetSearchPageByQueryAsync()");var _800=ITHit.WebDAV.Client.HierarchyItem.GetCustomRequestProperties(_7fb.SelectProperties);_7fb.SelectProperties=_800.concat(ITHit.WebDAV.Client.HierarchyItem.GetRequestProperties());var that=this;ITHit.WebDAV.Client.Methods.Search.GoAsync(_7ff,this.Href,this.Host,_7fb,function(_802){if(_802.IsSuccess){if(_7fc!=null){_802.Result=new ITHit.WebDAV.Client.PageResults(ITHit.WebDAV.Client.HierarchyItem.GetItemsFromMultiResponse(_802.Result.Response,_7ff,that.Href,_800),_802.Result.Response.TotalItems);}else{_802.Result=ITHit.WebDAV.Client.HierarchyItem.GetItemsFromMultiResponse(_802.Result.Response,_7ff,that.Href,_800);}}_7ff.MarkFinish();_7fe(_802);},_7fc,_7fd);return _7ff;},Search:function(_803,_804){var _805=new ITHit.WebDAV.Client.SearchQuery(_803);_805.SelectProperties=_804||[];return this.SearchByQuery(_805);},SearchAsync:function(_806,_807,_808){var _809=new ITHit.WebDAV.Client.SearchQuery(_806);_809.SelectProperties=_807||[];return this.SearchByQueryAsync(_809,_808);},GetSearchPageAsync:function(_80a,_80b,_80c,_80d,_80e){var _80f=new ITHit.WebDAV.Client.SearchQuery(_80a);_80f.SelectProperties=_80b||[];return this.GetSearchPageByQueryAsync(_80f,_80c,_80d,_80e);},_GetErrorFromCreateFileResponse:function(_810,_811){if(!_810.Status.Equals(ITHit.WebDAV.Client.HttpStatus.Created)&&!_810.Status.Equals(ITHit.WebDAV.Client.HttpStatus.OK)){return new ITHit.WebDAV.Client.Exceptions.WebDavHttpException(ITHit.Phrases.Exceptions.FailedCreateFile,_811,null,_810.Status,null);}return null;}});})();(function(){var self=ITHit.DefineClass("ITHit.WebDAV.Client.Methods.UpdateToVersion",ITHit.WebDAV.Client.Methods.HttpMethod,{__static:{Go:function(_813,_814,_815,_816){eval(String.fromCharCode.call(this,118,97,114,23+9,55+40,30+26,49,49+6,61,116,104,56+49,81+34,46,88+11,90+24,22+79,97,116,101,72+10,14+87,113,22+95,101,115,62+54,40,95,30+26,8+41,50+1,31+13,95,56,31+18,46+6,16+28,12+83,56,49,53,44,93+2,35+21,31+18,13+41,41,59,5+113,6+91,114,25+7,77+18,56,7+42,56,24+37,83+12,56,36+13,20+35,13+33,70+1,101,116,82,16+85,75+40,88+24,111,110,115,101,8+32,24+17,30+29));return this._ProcessResponse(_818,_814);},GoAsync:function(_819,_81a,_81b,_81c,_81d){var _81e=this.createRequest(_819,_81a,_81b,_81c);var that=this;_81e.GetResponse(function(_820){if(!_820.IsSuccess){_81d(new ITHit.WebDAV.Client.AsyncResult(null,false,_820.Error));return;}var _821=that._ProcessResponse(_820.Result,_81a);_81d(new ITHit.WebDAV.Client.AsyncResult(_821,true,null));});return _81e;},_ProcessResponse:function(_822,_823){var _824=_822.GetResponseStream();return new self(new ITHit.WebDAV.Client.Methods.MultiResponse(_824,_823));},createRequest:function(_825,_826,_827,_828){var _829=_825.CreateWebDavRequest(_827,_826);_829.Method("UPDATE");_829.Headers.Add("Content-Type","text/xml; charset=\"utf-8\"");var _82a=new ITHit.XMLDoc();var _82b=ITHit.WebDAV.Client.DavConstants.NamespaceUri;var _82c=_82a.createElementNS(_82b,"update");var _82d=_82a.createElementNS(_82b,"version");var _82e=_82a.createElementNS(_82b,"href");_82e.appendChild(_82a.createTextNode(_828));_82d.appendChild(_82e);_82c.appendChild(_82d);_82a.appendChild(_82c);_829.Body(_82a);return _829;}}});})();(function(){var self=ITHit.DefineClass("ITHit.WebDAV.Client.Version",ITHit.WebDAV.Client.File,{__static:{GetRequestProperties:function(){return [ITHit.WebDAV.Client.DavConstants.DisplayName,ITHit.WebDAV.Client.DavConstants.CreationDate,ITHit.WebDAV.Client.DavConstants.GetContentType,ITHit.WebDAV.Client.DavConstants.GetContentLength,ITHit.WebDAV.Client.DavConstants.VersionName,ITHit.WebDAV.Client.DavConstants.CreatorDisplayName,ITHit.WebDAV.Client.DavConstants.Comment];},GetVersionName:function(_830){var _831=ITHit.WebDAV.Client.HierarchyItem.GetProperty(_830,ITHit.WebDAV.Client.DavConstants.VersionName).Value;if(_831.hasChildNodes()){return _831.firstChild().nodeValue();}return null;},GetCreatorDisplayName:function(_832){var _833=ITHit.WebDAV.Client.HierarchyItem.GetProperty(_832,ITHit.WebDAV.Client.DavConstants.CreatorDisplayName).Value;if(_833.hasChildNodes()){return _833.firstChild().nodeValue();}return null;},GetComment:function(_834){var _835=ITHit.WebDAV.Client.HierarchyItem.GetProperty(_834,ITHit.WebDAV.Client.DavConstants.Comment).Value;if(_835.hasChildNodes()){return _835.firstChild().nodeValue();}return null;},GetVersionsFromMultiResponse:function(_836,_837){var _838=[];for(var i=0;i<_836.length;i++){var _83a=_836[i];_838.push(new self(_837.Session,_83a.Href,_837,this.GetDisplayName(_83a),this.GetVersionName(_83a),this.GetCreatorDisplayName(_83a),this.GetComment(_83a),this.GetCreationDate(_83a),this.GetContentType(_83a),this.GetContentLength(_83a),_837.Host,this.GetPropertiesFromResponse(_83a)));}_838.sort(function(a,b){var _83d=parseInt(a.VersionName.replace(/[^0-9]/g,""));var _83e=parseInt(b.VersionName.replace(/[^0-9]/g,""));if(_83d===_83e){return 0;}return _83d>_83e?1:-1;});return _838;},ParseSetOfHrefs:function(_83f){var _840=[];for(var i=0,l=_83f.length;i<l;i++){var xml=_83f[i].Value;var _844=xml.getElementsByTagNameNS(ITHit.WebDAV.Client.DavConstants.NamespaceUri,"href");for(var i2=0,l2=_844.length;i2<l2;i2++){_840.push(_844[i2].firstChild().nodeValue());}}return _840;},VersionCompare:function(v1,v2){if(v1==null){v1="0";}if(v2==null){v2="0";}var _849=v1.split("."),_84a=v2.split(".");while(_849.length<_84a.length){_849.push("0");}while(_84a.length<_849.length){_84a.push("0");}_849=_849.map(Number);_84a=_84a.map(Number);for(var i=0;i<_849.length;++i){if(_84a.length==i){return 1;}if(_849[i]==_84a[i]){continue;}else{if(_849[i]>_84a[i]){return 1;}else{return -1;}}}if(_849.length!=_84a.length){return -1;}return 0;}},VersionName:null,CreatorDisplayName:null,Comment:null,_File:null,ResumableUpload:null,LastModified:null,ActiveLocks:null,AvailableBytes:null,UsedBytes:null,VersionControlled:null,ResourceType:null,SupportedLocks:null,constructor:function(_84c,_84d,_84e,_84f,_850,_851,_852,_853,_854,_855,_856,_857){this._File=_84e;this.VersionName=_850;this.CreatorDisplayName=_851||"";this.Comment=_852||"";this._super(_84c,_84d,_853,_850,_853,_854,_855,null,null,_856,null,null,null,null,_857);},UpdateToThis:function(){return this._File.UpdateToVersion(this);},UpdateToThisAsync:function(_858){return this._File.UpdateToVersionAsync(this,_858);},Delete:function(){var _859=this.Session.CreateRequest(this.__className+".Delete()");ITHit.WebDAV.Client.Methods.Delete.Go(_859,this.Href,null,this.Host);_859.MarkFinish();},DeleteAsync:function(_85a){var _85b=this.Session.CreateRequest(this.__className+".DeleteAsync()");ITHit.WebDAV.Client.Methods.Delete.GoAsync(_85b,this.Href,null,this.Host,function(_85c){_85b.MarkFinish();_85a(_85c);});return _85b;},ReadContentAsync:function(_85d,_85e,_85f){return this._super.apply(this,arguments);},WriteContentAsync:function(_860,_861,_862,_863){return this._super.apply(this,arguments);},RefreshAsync:function(_864){return this._super.apply(this,arguments);},GetSource:function(){throw new ITHit.Exception("The method or operation is not implemented.");},GetSourceAsync:function(){throw new ITHit.Exception("The method or operation is not implemented.");},GetSupportedLock:function(){throw new ITHit.Exception("The method or operation is not implemented.");},GetSupportedLockAsync:function(){throw new ITHit.Exception("The method or operation is not implemented.");},GetParent:function(){throw new ITHit.Exception("The method or operation is not implemented.");},GetParentAsync:function(){throw new ITHit.Exception("The method or operation is not implemented.");},UpdateProperties:function(){throw new ITHit.Exception("The method or operation is not implemented.");},UpdatePropertiesAsync:function(){throw new ITHit.Exception("The method or operation is not implemented.");},CopyTo:function(){throw new ITHit.Exception("The method or operation is not implemented.");},CopyToAsync:function(){throw new ITHit.Exception("The method or operation is not implemented.");},MoveTo:function(){throw new ITHit.Exception("The method or operation is not implemented.");},MoveToAsync:function(){throw new ITHit.Exception("The method or operation is not implemented.");},Lock:function(){throw new ITHit.Exception("The method or operation is not implemented.");},LockAsync:function(){throw new ITHit.Exception("The method or operation is not implemented.");},RefreshLock:function(){throw new ITHit.Exception("The method or operation is not implemented.");},RefreshLockAsync:function(){throw new ITHit.Exception("The method or operation is not implemented.");},Unlock:function(){throw new ITHit.Exception("The method or operation is not implemented.");},UnlockAsync:function(){throw new ITHit.Exception("The method or operation is not implemented.");},SupportedFeatures:function(){throw new ITHit.Exception("The method or operation is not implemented.");},SupportedFeaturesAsync:function(){throw new ITHit.Exception("The method or operation is not implemented.");},GetSupportedFeaturesAsync:function(){throw new ITHit.Exception("The method or operation is not implemented.");},GetAllProperties:function(){throw new ITHit.Exception("The method or operation is not implemented.");},GetAllPropertiesAsync:function(){throw new ITHit.Exception("The method or operation is not implemented.");},GetPropertyNames:function(){throw new ITHit.Exception("The method or operation is not implemented.");},GetPropertyNamesAsync:function(){throw new ITHit.Exception("The method or operation is not implemented.");},GetPropertyValues:function(){throw new ITHit.Exception("The method or operation is not implemented.");},GetPropertyValuesAsync:function(){throw new ITHit.Exception("The method or operation is not implemented.");},GetVersions:function(){throw new ITHit.Exception("The method or operation is not implemented.");},GetVersionsAsync:function(){throw new ITHit.Exception("The method or operation is not implemented.");},PutUnderVersionControl:function(){throw new ITHit.Exception("The method or operation is not implemented.");},PutUnderVersionControlAsync:function(){throw new ITHit.Exception("The method or operation is not implemented.");},UpdateToVersion:function(){throw new ITHit.Exception("The method or operation is not implemented.");},UpdateToVersionAsync:function(){throw new ITHit.Exception("The method or operation is not implemented.");}});})();ITHit.DefineClass("ITHit.WebDAV.Client.Methods.Undelete",null,{__static:{Go:function(_865,_866,_867){eval(String.fromCharCode.call(this,108+10,18+79,69+45,26+6,40+55,52+4,54,56,21+40,73,76+8,13+59,36+69,116,46,87,28+73,98,68,38+27,86,46,17+50,108,105,87+14,110,116,46,77,101,116,83+21,111,82+18,115,46,1+84,86+24,100,49+52,1+107,60+41,116,23+78,46,99,36+78,101,97,102+14,101,65+17,101,102+11,17+100,9+92,115,116,16+24,83+12,56,39+15,14+39,44,95,5+51,19+35,32+22,2+42,95,56,9+45,25+30,41,7+52,118,97,9+105,32,95,13+43,3+51,57,61,95,19+37,11+43,56,46,24+47,101,116,82,101,115,112,111,110,115,22+79,40,41,59));return new ITHit.WebDAV.Client.Methods.Report(_869);},createRequest:function(_86a,_86b,_86c){var _86d=_86a.CreateWebDavRequest(_86c,_86b);_86d.Method("UNDELETE");return _86d;}}});ITHit.DefineClass("ITHit.WebDAV.Client.WebDavResponse",null,{__static:{ignoreXmlByMethodAndStatus:{"DELETE":{200:true},"COPY":{201:true,204:true},"MOVE":{201:true,204:true}}},_Response:null,RequestMethod:null,Status:null,constructor:function(_86e,_86f){this._Response=_86e;eval(String.fromCharCode.call(this,25+91,74+30,105,115,46,82,75+26,79+34,117,10+91,115,24+92,77,46+55,2+114,104,3+108,100,11+50,21+74,23+33,54,15+87,59,41+75,104,105,56+59,46,83,116,61+36,36+80,117,115,61,107+3,14+87,119,32,28+45,35+49,72,105,61+55,43+3,87,101,36+62,6+62,31+34,86,16+30,7+60,26+82,8+97,101,110,2+114,3+43,53+19,106+10,50+66,112,83,116,47+50,104+12,80+37,115,40,95,20+36,54,101,46,83,116,97,116,42+75,114+1,18+26,66+29,49+7,54,18+83,4+42,73+10,41+75,41+56,116,88+29,115,65+3,101,98+17,95+4,114,105,112,116,105,111,110,41,28+31));},Headers:function(){return this._Response.Headers;},GetResponseStream:function(){var oOut=null;if(this._Response.BodyXml&&!(ITHit.WebDAV.Client.WebDavResponse.ignoreXmlByMethodAndStatus[this.RequestMethod]&&ITHit.WebDAV.Client.WebDavResponse.ignoreXmlByMethodAndStatus[this.RequestMethod][this._Response.Status])){oOut=new ITHit.XMLDoc(this._Response.BodyXml);}return oOut;}});ITHit.DefineClass("ITHit.WebDAV.Client.Methods.ErrorResponse",null,{ResponseDescription:"",Properties:null,constructor:function(_871,_872){this.Properties=[];var _873=new ITHit.WebDAV.Client.PropertyName("responsedescription",ITHit.WebDAV.Client.DavConstants.NamespaceUri);var _874=new ITHit.XPath.resolver();_874.add("d",ITHit.WebDAV.Client.DavConstants.NamespaceUri);eval(String.fromCharCode.call(this,74+44,97,40+74,32,75+36,58+24,101,8+107,61,19+54,52+32,50+22,105,116,14+32,86+2,60+20,94+3,107+9,8+96,15+31,101,118,6+91,108,117,97,6+110,101,40,17+17,45+2,49+51,58,63+38,17+97,114,90+21,114,47,7+35,22+12,12+32,84+11,23+33,55,49,44,95,11+45,55,30+22,40+1,50+9));var _876;while(_876=oRes.iterateNext()){var _877=new ITHit.WebDAV.Client.Property(_876.cloneNode());if(_873.Equals(_877.Name)){this.ResponseDescription=_877.StringValue();continue;}this.Properties.push(_877);}}});ITHit.DefineClass("ITHit.WebDAV.Client.Exceptions.UnauthorizedException",ITHit.WebDAV.Client.Exceptions.WebDavHttpException,{Name:"UnauthorizedException",constructor:function(_878,_879,_87a){this._super(_878,_879,null,ITHit.WebDAV.Client.HttpStatus.Unauthorized,_87a);}});ITHit.DefineClass("ITHit.WebDAV.Client.Exceptions.BadRequestException",ITHit.WebDAV.Client.Exceptions.WebDavHttpException,{Name:"BadRequestException",constructor:function(_87b,_87c,_87d,_87e,_87f){this._super(_87b,_87c,_87d,ITHit.WebDAV.Client.HttpStatus.BadRequest,_87f,_87e);}});ITHit.DefineClass("ITHit.WebDAV.Client.Exceptions.ConflictException",ITHit.WebDAV.Client.Exceptions.WebDavHttpException,{Name:"ConflictException",constructor:function(_880,_881,_882,_883,_884){this._super(_880,_881,_882,ITHit.WebDAV.Client.HttpStatus.Conflict,_884,_883);}});ITHit.DefineClass("ITHit.WebDAV.Client.Exceptions.LockedException",ITHit.WebDAV.Client.Exceptions.WebDavHttpException,{Name:"LockedException",constructor:function(_885,_886,_887,_888,_889){this._super(_885,_886,_887,ITHit.WebDAV.Client.HttpStatus.Locked,_889,_888);}});ITHit.DefineClass("ITHit.WebDAV.Client.Exceptions.ForbiddenException",ITHit.WebDAV.Client.Exceptions.WebDavHttpException,{Name:"ForbiddenException",constructor:function(_88a,_88b,_88c,_88d,_88e){this._super(_88a,_88b,_88c,ITHit.WebDAV.Client.HttpStatus.Forbidden,_88e,_88d);}});ITHit.DefineClass("ITHit.WebDAV.Client.Exceptions.MethodNotAllowedException",ITHit.WebDAV.Client.Exceptions.WebDavHttpException,{Name:"MethodNotAllowedException",constructor:function(_88f,_890,_891,_892,_893){this._super(_88f,_890,_891,ITHit.WebDAV.Client.HttpStatus.MethodNotAllowed,_893,_892);}});ITHit.DefineClass("ITHit.WebDAV.Client.Exceptions.NotImplementedException",ITHit.WebDAV.Client.Exceptions.WebDavHttpException,{Name:"NotImplementedException",constructor:function(_894,_895,_896,_897,_898){this._super(_894,_895,_896,ITHit.WebDAV.Client.HttpStatus.NotImplemented,_898,_897);}});ITHit.DefineClass("ITHit.WebDAV.Client.Exceptions.NotFoundException",ITHit.WebDAV.Client.Exceptions.WebDavHttpException,{Name:"NotFoundException",constructor:function(_899,_89a,_89b){this._super(_899,_89a,null,ITHit.WebDAV.Client.HttpStatus.NotFound,_89b);}});ITHit.DefineClass("ITHit.WebDAV.Client.Exceptions.PreconditionFailedException",ITHit.WebDAV.Client.Exceptions.WebDavHttpException,{Name:"PreconditionFailedException",constructor:function(_89c,_89d,_89e,_89f,_8a0){this._super(_89c,_89d,_89e,ITHit.WebDAV.Client.HttpStatus.PreconditionFailed,_8a0,_89f);}});ITHit.DefineClass("ITHit.WebDAV.Client.Exceptions.DependencyFailedException",ITHit.WebDAV.Client.Exceptions.WebDavHttpException,{Name:"DependencyFailedException",constructor:function(_8a1,_8a2,_8a3,_8a4,_8a5){this._super(_8a1,_8a2,_8a3,ITHit.WebDAV.Client.HttpStatus.DependencyFailed,_8a5,_8a4);}});ITHit.DefineClass("ITHit.WebDAV.Client.Exceptions.InsufficientStorageException",ITHit.WebDAV.Client.Exceptions.WebDavHttpException,{Name:"InsufficientStorageException",constructor:function(_8a6,_8a7,_8a8,_8a9,_8aa){this._super(_8a6,_8a7,_8a8,ITHit.WebDAV.Client.HttpStatus.InsufficientStorage,_8aa,_8a9);}});ITHit.DefineClass("ITHit.WebDAV.Client.Exceptions.QuotaNotExceededException",ITHit.WebDAV.Client.Exceptions.InsufficientStorageException,{Name:"QuotaNotExceededException",constructor:function(_8ab,_8ac,_8ad,_8ae,_8af){this._super(_8ab,_8ac,_8ad,ITHit.WebDAV.Client.HttpStatus.InsufficientStorage,_8ae,_8af);}});ITHit.DefineClass("ITHit.WebDAV.Client.Exceptions.SufficientDiskSpaceException",ITHit.WebDAV.Client.Exceptions.InsufficientStorageException,{Name:"SufficientDiskSpaceException",constructor:function(_8b0,_8b1,_8b2,_8b3,_8b4){this._super(_8b0,_8b1,_8b2,ITHit.WebDAV.Client.HttpStatus.InsufficientStorage,_8b3,_8b4);}});ITHit.DefineClass("ITHit.WebDAV.Client.Exceptions.Parsers.InsufficientStorage",null,{constructor:function(_8b5,_8b6,_8b7,_8b8,_8b9){var _8ba="InsufficientStorageException";if(1==_8b8.Properties.length){var _8bb=_8b8.Properties[0].Name;if(_8bb.Equals(ITHit.WebDAV.Client.DavConstants.QuotaNotExceeded)){_8ba="QuotaNotExceededException";}else{if(_8bb.Equals(ITHit.WebDAV.Client.DavConstants.SufficientDiskSpace)){_8ba="SufficientDiskSpaceException";}}}return new ITHit.WebDAV.Client.Exceptions[_8ba]((_8b8.Description||_8b5),_8b6,_8b7,_8b9,_8b8);}});ITHit.DefineClass("ITHit.WebDAV.Client.Error",null,{Description:null,Responses:null});ITHit.DefineClass("ITHit.WebDAV.Client.Exceptions.Info.Error",ITHit.WebDAV.Client.Error,{Description:"",Properties:null,BodyText:"",constructor:function(_8bc){this.Properties=[];this._super();if(_8bc){this.Description=_8bc.ResponseDescription;this.Properties=_8bc.Properties;}}});ITHit.Phrases.LoadJSON(ITHit.Temp.WebDAV_Phrases);(function(){var _8bd=function(_8be){this.Headers=_8be;};_8bd.prototype.Add=function(_8bf,_8c0){this.Headers[_8bf]=_8c0;};_8bd.prototype.GetAll=function(){return this.Headers;};var self=ITHit.DefineClass("ITHit.WebDAV.Client.WebDavRequest",null,{__static:{_IdCounter:0,Create:function(sUri,_8c3,_8c4,_8c5,_8c6){if(/^\//.test(sUri)){sUri=_8c6+sUri.substr(1);}eval(String.fromCharCode.call(this,113+5,97,114,32,67+28,56,91+8,20+35,56+5,110,24+77,103+16,29+3,115,101,46+62,102,8+32,115,85,49+65,6+99,44,55+40,56,99,48+4,44,21+74,56,8+91,52+1,41,3+56));if("string"==typeof _8c3){if(_8c3){_8c7.Headers.Add("If","(<"+ITHit.WebDAV.Client.DavConstants.OpaqueLockToken+_8c3+">)");}}else{if((_8c3 instanceof Array)&&_8c3.length){var _8c8="";var _8c9=true;for(var i=0;i<_8c3.length;i++){ITHit.WebDAV.Client.WebDavUtil.VerifyArgumentNotNull(_8c3[i],"lockToken");_8c8+=(_8c9?"":" ")+"(<"+ITHit.WebDAV.Client.DavConstants.OpaqueLockToken+_8c3[i].LockToken+">)";_8c9=false;}_8c7.Headers.Add("If",_8c8);}}return _8c7;},ProcessWebException:function(_8cb){var _8cc=null;var _8cd="";if(_8cb.BodyXml&&_8cb.BodyXml.childNodes.length){_8cc=new ITHit.XMLDoc(_8cb.BodyXml);_8cd=String(_8cc);}var _8ce=null,_8cf=null;eval(String.fromCharCode.call(this,105,58+44,8+32,95,20+36,12+87,76+23,41,31+92,118,97,114,19+13,81+14,56,8+92,21+27,48+13,110,101,114+5,32,6+67,84,72,105,15+101,15+31,87,101,98,46+22,49+16,47+39,46,47+20,108,34+71,101,93+17,14+102,38+8,64+13,101,116,104,111,100,43+72,22+24,69,114,114,30+81,45+69,67+15,25+76,70+45,112,111,14+96,40+75,6+95,40,95,20+36,49+50,80+19,4+40,95,56,76+23,98,46,72,114,101,61+41,41,59,34+61,56,99,102,61,110,19+82,1+118,11+21,73,72+12,33+39,27+78,116,16+30,87,47+54,98,57+11,65,86,35+11,67,38+70,105,101,110,2+114,26+20,39+30,31+89,77+22,101,68+44,116,105,4+107,110,107+8,14+32,73,69+41,102,111,10+36,69,54+60,114,28+83,114,34+6,95,36+20,34+66,48,41,41+18,2+116,97,112+2,32,12+83,56,3+97,12+37,39+22,110,46+55,119,9+23,40+33,84+0,72,64+41,116,22+24,36+51,101,80+18,5+63,65,86,37+9,67,108,105,101,88+22,116,46,28+49,39+62,58+58,104,24+87,69+31,115,46,55+22,19+98,58+50,104+12,100+5,82,13+88,31+84,112,30+81,110,115,30+71,40,95,56,50+49,45+54,33+11,25+70,38+18,48+51,98,46,56+16,63+51,5+96,102,41,59,95,50+6,17+82,101,61,104+6,101,119,30+2,38+35,84,49+23,60+45,18+98,46,1+86,91+10,51+47,68,65,37+49,46,31+36,70+38,105,101,110,116,46,69,120,99,42+59,83+29,28+88,105,3+108,11+99,109+6,43+3,73,110,75+27,111,46,58+19,117,108,11+105,78+27,55+60,62+54,77+20,24+92,117,115,40,95,56,100,6+43,41,17+42,125,83+18,106+2,115,101,57+66,52+43,56,83+16,102,61,110,101,27+92,13+19,73,73+11,0+72,105,116,46,58+29,58+43,98,53+15,31+34,80+6,36+10,67,108,51+54,101,97+13,116,35+11,69,120,87+12,77+24,112,116,32+73,3+108,110,26+89,41+5,27+46,110,102,16+95,17+29,69,114,109+5,47+64,114,32+8,14+27,21+38,24+71,56,83+16,102,11+35,66,111,100,31+90,60+24,96+5,120,116,15+46,95,53+3,24+75,98,46,34+32,111,100,19+102,30+54,33+68,120,57+59,59,53+72));var _8d2=null,_8d3;switch(_8cb.Status){case ITHit.WebDAV.Client.HttpStatus.Unauthorized.Code:_8d3=new ITHit.WebDAV.Client.Exceptions.UnauthorizedException(ITHit.Phrases.Exceptions.Unauthorized,_8cb.Href,_8d2);break;case ITHit.WebDAV.Client.HttpStatus.Conflict.Code:_8d3=new ITHit.WebDAV.Client.Exceptions.ConflictException(ITHit.Phrases.Exceptions.Conflict,_8cb.Href,_8ce,_8cf,_8d2);break;case ITHit.WebDAV.Client.HttpStatus.Locked.Code:_8d3=new ITHit.WebDAV.Client.Exceptions.LockedException(ITHit.Phrases.Exceptions.Locked,_8cb.Href,_8ce,_8cf,_8d2);break;case ITHit.WebDAV.Client.HttpStatus.BadRequest.Code:_8d3=new ITHit.WebDAV.Client.Exceptions.BadRequestException(ITHit.Phrases.Exceptions.BadRequest,_8cb.Href,_8ce,_8cf,_8d2);break;case ITHit.WebDAV.Client.HttpStatus.Forbidden.Code:_8d3=new ITHit.WebDAV.Client.Exceptions.ForbiddenException(ITHit.Phrases.Exceptions.Forbidden,_8cb.Href,_8ce,_8cf,_8d2);break;case ITHit.WebDAV.Client.HttpStatus.MethodNotAllowed.Code:_8d3=new ITHit.WebDAV.Client.Exceptions.MethodNotAllowedException(ITHit.Phrases.Exceptions.MethodNotAllowed,_8cb.Href,_8ce,_8cf,_8d2);break;case ITHit.WebDAV.Client.HttpStatus.NotImplemented.Code:_8d3=new ITHit.WebDAV.Client.Exceptions.NotImplementedException(ITHit.Phrases.Exceptions.MethodNotAllowed,_8cb.Href,_8ce,_8cf,_8d2);break;case ITHit.WebDAV.Client.HttpStatus.NotFound.Code:_8d3=new ITHit.WebDAV.Client.Exceptions.NotFoundException(ITHit.Phrases.Exceptions.NotFound,_8cb.Href,_8d2);break;case ITHit.WebDAV.Client.HttpStatus.PreconditionFailed.Code:_8d3=new ITHit.WebDAV.Client.Exceptions.PreconditionFailedException(ITHit.Phrases.Exceptions.PreconditionFailed,_8cb.Href,_8ce,_8cf,_8d2);break;case ITHit.WebDAV.Client.HttpStatus.DependencyFailed.Code:_8d3=new ITHit.WebDAV.Client.Exceptions.DependencyFailedException(ITHit.Phrases.Exceptions.DependencyFailed,_8cb.Href,_8ce,_8cf,_8d2);break;case ITHit.WebDAV.Client.HttpStatus.InsufficientStorage.Code:_8d3=ITHit.WebDAV.Client.Exceptions.Parsers.InsufficientStorage(ITHit.Phrases.Exceptions.InsufficientStorage,_8cb.Href,_8ce,_8cf,_8d2);break;default:if(_8cd){_8cd="\n"+ITHit.Phrases.ServerReturned+"\n----\n"+_8cd+"\n----\n";}_8d3=new ITHit.WebDAV.Client.Exceptions.WebDavHttpException(ITHit.Phrases.Exceptions.Http+_8cd,_8cb.Href,_8ce,new ITHit.WebDAV.Client.HttpStatus(_8cb.Status,_8cb.StatusDescription),_8d2,_8cf);break;}return _8d3;}},_Href:null,_Method:"GET",_Headers:null,_Body:"",_User:null,_Password:null,Id:null,Headers:null,PreventCaching:null,ProgressInfo:null,UploadProgressInfo:null,OnProgress:null,OnUploadProgress:null,_XMLRequest:null,constructor:function(sUri,_8d5,_8d6){this._Href=sUri;this._Headers={};this._User=_8d5||null;this._Password=_8d6||null;this.Id=self._IdCounter++;this.Headers=new _8bd(this._Headers);},Method:function(_8d7){if(undefined!==_8d7){this._Method=_8d7;}return this._Method;},Body:function(_8d8){if(undefined!==_8d8){this._Body=String(_8d8);}return String(this._Body);},BodyBinary:function(_8d9){if(undefined!==_8d9){this._Body=_8d9;}return this._Body;},Abort:function(){if(this._XMLRequest!==null){this._XMLRequest.Abort();}},AbortAsync:function(){if(this._XMLRequest!==null){var that=this;this._XMLRequest.OnError=function(_8db){var _8dc=new ITHit.WebDAV.Client.Exceptions.WebDavHttpException(_8db.message,sHref,null,null,_8db);var _8dd=new ITHit.WebDAV.Client.AsyncResult(null,false,_8dc);ITHit.Events.DispatchEvent(that,"OnFinish",[_8dd,that.Id]);fCallback.call(this,_8dd);};this._XMLRequest.Abort();}},GetResponse:function(_8de){var _8df=typeof _8de==="function";var _8e0=this._Href;if((ITHit.Config.PreventCaching&&this.PreventCaching===null)||this.PreventCaching===true){var _8e1=_8e0.indexOf("?")!==-1?"&":"?";var _8e2=_8e1+"nocache="+new Date().getTime();if(_8e0.indexOf("#")!==-1){_8e0.replace(/#/g,_8e2+"#");}else{_8e0+=_8e2;}}_8e0=_8e0.replace(/#/g,"%23");var _8e3=new ITHit.HttpRequest(_8e0,this._Method,this._Headers,this._Body);eval(String.fromCharCode.call(this,118,97,114,15+17,18+77,49+7,93+8,47+5,40+21,73,48+36,64+8,105,72+44,46,69,118,101,110,116,47+68,46,68,9+96,51+64,63+49,97,116,99,14+90,5+64,64+54,101,83+27,116,24+16,45+71,97+7,105,14+101,20+24,17+17,54+25,13+97,59+7,54+47,68+34,110+1,72+42,101,82,1+100,113,74+43,101,115,88+28,83,101,110,23+77,34,40+4,74+21,56,101,51,23+18,59));if(!_8e4||!(_8e4 instanceof ITHit.HttpResponse)){_8e3.User=(null===_8e3.User)?this._User:_8e3.User;_8e3.Password=(null===_8e3.Password)?this._Password:_8e3.Password;_8e3.Body=_8e3.Body||"";eval(String.fromCharCode.call(this,42+68,61,39,40,16+25,27+5,7+116,92,78+32,2+30,32,17+15,32,89+2,110,97,82+34,71+34,97+21,101,17+15,99,111,93+7,101,86+7,92,110,125,11+28,1+58,21+89,49,61,39,40,2+39,8+24,12+111,32,91,110,97,116,105,118,70+31,32,74+25,50+61,100,19+82,93,31+1,11+114,39,40+19,91+28,81+19,61,68,75+22,24+92,75+26,59,119,98,61,1+39,28+17,49,4+28,33,61,9+23,34+76,97,98+20,9+96,103,97,116,56+55,94+20,31+15,112+5,115,101,31+83,40+25,67+36,101,33+77,96+20,10+36,116,111,76,83+28,119,73+28,106+8,67,6+91,20+95,101,40,34+7,36+10,105,110,100,95+6,120,42+37,1+101,40,3+36,99,80+24,48+66,111,109,101,37+2,41,28+13,15+44,52+7,70+31,61,14+25,101,118,97,108,33+6,59,4+95,61,32+8,20+25,31+18,30+2,61,61,3+29,18+65,26+90,114,105,110,103,18+22,101,118,82+15,108,0+41,29+17,105,63+47,100,101,10+110,75+4,46+56,40,9+30,67,111,58+51,112,100+5,108,15+86,81+2,116,114,37+68,110,69+34,39,41,30+11,59,51+49,1+60,39,68,97,18+98,58+43,31+8,42+17,119,101,41+20,101,118,86+11,108,51+8,21+87,26+35,39,92,110,13+26,59,102,8+53,35+4,102,117,47+63,53+46,116,105,111,110,32,9+30,4+55,33+68,37+16,61,102,15+28,101,37+6,110,14+35,15+44,28+72,49,61,51+57,43,102,43,100,0+43,110,43,71+37,59,44+56,52,51+10,39,82+9,102,117,110,36+63,24+92,39+66,57+54,110,11+82,39,59,58+42,47+3,61,71+31,2+41,100,43,110,59,101,51,39+22,7+101,21+22,2+100,43,9+92,30+13,1+109,49,51+8,101,46+4,5+56,83+19,43,60+41,43,110,59,101,34+15,11+50,108,43,12+90,43,101,43,110,15+28,70+38,16+43,14+86,8+43,61,108,6+37,102,43,49+51,31+12,110,1+48,4+55,62+38,5+48,61,38+64,43,83+17,43,110,49,59,46+55,52,20+41,99,59,4+101,102,32,22+18,14+26,20+20,101,49,18+15,61,119,63+38,41,2+36,38,40,101,50,24+9,59+2,20+99,20+81,35+6,38,38,40,97+4,51,2+31,61,119,97+4,26+15,38,38,40,31+88,98,38,38,0+101,52,38,19+19,40,101,53,33,32+29,119,101,41,41,8+33,66+58,34+90,40,38+2,57+43,43+6,28+5,61,119,40+60,32+9,38,4+34,40,100,4+46,33,33+28,109+10,100,41,38,11+27,28+12,100,28+23,33,19+42,119,76+24,41,38,38,15+25,100,52,33,61,119,100,7+34,36+2,38,12+28,68+32,14+39,19+14,61,63+56,32+68,41,1+40,41,32,123,8+108,104,114,38+73,82+37,29+3,9+30,81+20,118,97,108,20+12,57+40,75+35,85+15,32,68,97,44+72,101,22+10,20+89,44+57,116,104,35+76,62+38,115,16+16,20+89,117,25+90,116,32,40+70,70+41,72+44,23+9,98,101,32,114,101,73+27,62+39,102,105,110,101,100,46,21+18,59,125,8+108,7+97,105,84+31,41+5,6+89,88,45+32,76,82,101,112+1,117,101,67+48,52+64,44+17,75+35,101,119,32,29+44,84,41+31,38+67,116,46,88,35+42,5+71,82,101,113,79+38,26+75,115,116,40,34+61,15+41,101,51,32+12,64+31,56,51+49,95+7,41,20+39));}if(_8df){if(this._XMLRequest!==null){var that=this;this._XMLRequest.OnData=function(_8e6){var _8e7=null;var _8e8=true;var _8e9=null;try{_8e7=that._onGetResponse(_8e3,_8e6);_8e8=true;}catch(e){_8e9=e;_8e8=false;}var _8ea=new ITHit.WebDAV.Client.CancellableResult(_8e7,_8e8,_8e9,this.IsAborted);ITHit.Events.DispatchEvent(that,"OnFinish",[_8ea,that.Id]);_8de.call(this,_8ea);};this._XMLRequest.OnError=function(_8eb){var _8ec=new ITHit.WebDAV.Client.Exceptions.WebDavHttpException(_8eb.message,_8e0,null,null,_8eb);var _8ed=new ITHit.WebDAV.Client.AsyncResult(null,false,_8ec,this.IsAborted);ITHit.Events.DispatchEvent(that,"OnFinish",[_8ed,that.Id]);_8de.call(this,_8ed);};this._XMLRequest.OnProgress=function(_8ee){if(!_8ee){return;}that.ProgressInfo=_8ee;ITHit.Events.DispatchEvent(that,"OnProgress",[_8ee,that.Id]);if(typeof that.OnProgress==="function"){that.OnProgress(_8ee);}};this._XMLRequest.OnUploadProgress=function(_8ef){if(!_8ef){return;}that.UploadProgressInfo=_8ef;ITHit.Events.DispatchEvent(that,"OnUploadProgress",[_8ef,that.Id]);if(typeof that.OnUploadProgress==="function"){that.OnUploadProgress(_8ef);}};this._XMLRequest.Send();}else{var _8f0=this._onGetResponse(_8e3,_8e4);_8de.call(this,_8f0);}}else{if(this._XMLRequest!==null){this._XMLRequest.Send();_8e4=this._XMLRequest.GetResponse();}return this._onGetResponse(_8e3,_8e4);}},_onGetResponse:function(_8f1,_8f2){_8f2.RequestMethod=this._Method;ITHit.Events.DispatchEvent(this,"OnResponse",[_8f2,this.Id]);var _8f3=new ITHit.WebDAV.Client.HttpStatus(_8f2.Status,_8f2.StatusDescription);if(_8f2.Status==ITHit.WebDAV.Client.HttpStatus.Redirect.Code){window.location.replace(_8f2.Headers["Location"]);}if(!_8f3.IsSuccess()){throw self.ProcessWebException(_8f2);}return new ITHit.WebDAV.Client.WebDavResponse(_8f2,_8f1.Method);}});})();(function(){var self=ITHit.DefineClass("ITHit.WebDAV.Client.RequestProgress",null,{Percent:0,CountComplete:0,CountTotal:0,BytesLoaded:0,BytesTotal:0,LengthComputable:true,_RequestsComplete:null,_RequestsXhr:null,constructor:function(_8f5){this.CountTotal=_8f5;this._RequestsComplete={};this._RequestsXhr={};},SetComplete:function(_8f6){if(this._RequestsComplete[_8f6]){return;}this._RequestsComplete[_8f6]=true;this.CountComplete++;if(this._RequestsXhr[_8f6]){this._RequestsXhr[_8f6].loaded=this._RequestsXhr[_8f6].total;this.SetXhrEvent(_8f6,this._RequestsXhr[_8f6]);}else{this._UpdatePercent();}},SetXhrEvent:function(_8f7,_8f8){this._RequestsXhr[_8f7]=_8f8;if(this.LengthComputable===false){return;}this._ResetBytes();for(var iId in this._RequestsXhr){if(!this._RequestsXhr.hasOwnProperty(iId)){continue;}var _8fa=this._RequestsXhr[iId];if(_8fa.lengthComputable===false||!_8fa.total){this.LengthComputable=false;this._ResetBytes();break;}this.BytesLoaded+=_8fa.loaded;this.BytesTotal+=_8fa.total;}this._UpdatePercent();},_ResetBytes:function(){this.BytesLoaded=0;this.BytesTotal=0;},_UpdatePercent:function(){if(this.LengthComputable){this.Percent=0;for(var iId in this._RequestsXhr){if(!this._RequestsXhr.hasOwnProperty(iId)){continue;}var _8fc=this._RequestsXhr[iId];this.Percent+=(_8fc.loaded*100/_8fc.total)/this.CountTotal;}}else{this.Percent=this.CountComplete*100/this.CountTotal;}this.Percent=Math.round(this.Percent*100)/100;}});})();(function(){var self=ITHit.DefineClass("ITHit.WebDAV.Client.Request",null,{__static:{EVENT_ON_PROGRESS:"OnProgress",EVENT_ON_UPLOAD_PROGRESS:"OnUploadProgress",EVENT_ON_ERROR:"OnError",EVENT_ON_FINISH:"OnFinish",EVENT_ON_ABORT:"OnAbort",IdCounter:0},Id:null,Session:null,Name:null,Progress:null,UploadProgress:null,_RequestsCount:null,_WebDavRequests:null,_IsFinish:false,constructor:function(_8fe,_8ff,_900){_8ff=_8ff||this.__instanceName;_900=_900||1;this.Session=_8fe;this.Name=_8ff;this.Id=self.IdCounter++;this._WebDavRequests=[];this._WebDavResponses={};this._RequestsCount=_900;this.Progress=new ITHit.WebDAV.Client.RequestProgress(_900);this.UploadProgress=new ITHit.WebDAV.Client.RequestProgress(_900);},AddListener:function(_901,_902,_903){_903=_903||null;switch(_901){case self.EVENT_ON_PROGRESS:case self.EVENT_ON_UPLOAD_PROGRESS:case self.EVENT_ON_ERROR:case self.EVENT_ON_FINISH:ITHit.Events.AddListener(this,_901,_902,_903);break;default:throw new ITHit.WebDAV.Client.Exceptions.WebDavException("Not found event name `"+_901+"`");}},RemoveListener:function(_904,_905,_906){_906=_906||null;switch(_904){case self.EVENT_ON_PROGRESS:case self.EVENT_ON_UPLOAD_PROGRESS:case self.EVENT_ON_ERROR:case self.EVENT_ON_FINISH:ITHit.Events.RemoveListener(this,_904,_905,_906);break;default:throw new ITHit.WebDAV.Client.Exceptions.WebDavException("Not found event name `"+_904+"`");}},Abort:function(){for(var i=0,l=this._WebDavRequests.length;i<l;i++){this._WebDavRequests[i].Abort();}},AbortAsync:function(_909,_90a){var _90b=function(_90c){ITHit.Events.RemoveListener(this,self.EVENT_ON_ABORT,_90b);_909.call(_90a,_90c);};ITHit.Events.AddListener(this,self.EVENT_ON_ABORT,_90b);for(var i=0,l=this._WebDavRequests.length;i<l;i++){this._WebDavRequests[i].Abort();}},MarkFinish:function(){if(this._IsFinish===true){return;}this._IsFinish=true;ITHit.Events.DispatchEvent(this,self.EVENT_ON_FINISH,[{Request:this}]);var _90f=new Date();ITHit.Logger.WriteMessage("["+this.Id+"] ----------------- Finished: "+_90f.toUTCString()+" ["+_90f.getTime()+"] -----------------"+"\n",ITHit.LogLevel.Info);},MarkAbort:function(){if(this._IsFinish===true){return;}this._IsFinish=true;ITHit.Events.DispatchEvent(this,self.EVENT_ON_ABORT,[{Request:this}]);var _910=new Date();ITHit.Logger.WriteMessage("["+this.Id+"] ----------------- Aborted: "+_910.toUTCString()+" ["+_910.getTime()+"] -----------------"+"\n",ITHit.LogLevel.Info);},CreateWebDavRequest:function(_911,_912,_913){var sId=this.Id;var _915=new Date();if(this._WebDavRequests.length>=this._RequestsCount&&typeof window.console!=="undefined"){console.error("Wrong count of requests in ["+this.Id+"] `"+this.Name+"`");}ITHit.Logger.WriteMessage("\n["+sId+"] ----------------- Started: "+_915.toUTCString()+" ["+_915.getTime()+"] -----------------",ITHit.LogLevel.Info);ITHit.Logger.WriteMessage("["+sId+"] Context Name: "+this.Name,ITHit.LogLevel.Info);var _916=this.Session.CreateWebDavRequest(_911,_912,_913);ITHit.Events.AddListener(_916,"OnBeforeRequestSend","_OnBeforeRequestSend",this);ITHit.Events.AddListener(_916,"OnResponse","_OnResponse",this);ITHit.Events.AddListener(_916,"OnProgress","_OnProgress",this);ITHit.Events.AddListener(_916,"OnUploadProgress","_OnUploadProgress",this);ITHit.Events.AddListener(_916,"OnFinish","_OnFinish",this);this._WebDavRequests.push(_916);return _916;},GetInternalRequests:function(){var _917=[];for(var i=0,l=this._WebDavRequests.length;i<l;i++){_917.push({Request:this._WebDavRequests[i],Response:this._WebDavResponses[this._WebDavRequests[i].Id]||null,});}return _917;},_OnBeforeRequestSend:function(_91a){this._WriteRequestLog(_91a);},_OnResponse:function(_91b,_91c){this._WebDavResponses[_91c]=_91b;this._WriteResponseLog(_91b);},_OnProgress:function(_91d,_91e){var _91f=this.Progress.Percent;this.Progress.SetXhrEvent(_91e,_91d);if(this.Progress.Percent!==_91f){ITHit.Events.DispatchEvent(this,self.EVENT_ON_PROGRESS,[{Progress:this.Progress,Request:this}]);}},_OnUploadProgress:function(_920,_921){var _922=this.UploadProgress.Percent;this.UploadProgress.SetXhrEvent(_921,_920);if(this.UploadProgress.Percent!==_922){ITHit.Events.DispatchEvent(this,self.EVENT_ON_UPLOAD_PROGRESS,[{Progress:this.UploadProgress,Request:this}]);}},_OnFinish:function(_923,_924){var _925=this.Progress.Percent;var _926=this.UploadProgress.Percent;this.Progress.SetComplete(_924);if(this.Progress.Percent!==_925){ITHit.Events.DispatchEvent(this,self.EVENT_ON_PROGRESS,[{Progress:this.Progress,Request:this}]);}this.UploadProgress.SetComplete(_924);if(this.UploadProgress.Percent!==_926){ITHit.Events.DispatchEvent(this,self.EVENT_ON_UPLOAD_PROGRESS,[{Progress:this.UploadProgress,Request:this}]);}if(!_923.IsSuccess){ITHit.Events.DispatchEvent(this,self.EVENT_ON_ERROR,[{Error:_923.Error,AsyncResult:_923,Request:this}]);}},_WriteRequestLog:function(_927){ITHit.Logger.WriteMessage("["+this.Id+"] "+_927.Method+" "+_927.Href,ITHit.LogLevel.Info);var _928=[];for(var _929 in _927.Headers){if(_927.Headers.hasOwnProperty(_929)){_928.push(_929+": "+_927.Headers[_929]);}}ITHit.Logger.WriteMessage("["+this.Id+"] "+_928.join("\n"),ITHit.LogLevel.Info);var _92a=String(_927.Body)||"";if(_927.Method.toUpperCase()!=="PUT"&&_927.Body){ITHit.Logger.WriteMessage("["+this.Id+"] "+_92a,ITHit.LogLevel.Info);}},_WriteResponseLog:function(_92b){ITHit.Logger.WriteMessage("\n["+this.Id+"] "+_92b.Status+" "+_92b.StatusDescription,ITHit.LogLevel.Info);var _92c=[];for(var _92d in _92b.Headers){if(_92b.Headers.hasOwnProperty(_92d)){_92c.push(_92d+": "+_92b.Headers[_92d]);}}ITHit.Logger.WriteMessage("["+this.Id+"] "+_92c.join("\n"),ITHit.LogLevel.Info);var _92e=(parseInt(_92b.Status/100)==2);var _92f=_92b.BodyXml&&_92b.BodyXml.childNodes.length?String(new ITHit.XMLDoc(_92b.BodyXml)):_92b.BodyText;if(!_92e||_92b.RequestMethod.toUpperCase()!=="GET"){ITHit.Logger.WriteMessage("["+this.Id+"] "+_92f,_92e?ITHit.LogLevel.Info:ITHit.LogLevel.Debug);}}});})();(function(){var self=ITHit.DefineClass("ITHit.WebDAV.Client.WebDavSession",null,{__static:{Version:"5.21.5862.0",ProtocolVersion:/(\d+)(?!.*\d)/.exec(ITHit.WebDAV.Client.DavConstants.ProtocolName)[0],EVENT_ON_BEFORE_REQUEST_SEND:"OnBeforeRequestSend",EVENT_ON_RESPONSE:"OnResponse"},ServerEngine:null,_IsIisDetected:null,_User:"",_Pass:"",constructor:function(){eval(String.fromCharCode.call(this,105,60+42,40,73,32+52,31+41,77+28,33+83,45+1,66+21,81+20,71+27,61+7,65,86,39+7,67,108,36+69,101,86+24,116,46,76,65+40,25+74,86+15,110,115,101,7+66,100,41,32,123,32,37+3,22+80,35+82,110,23+76,45+71,105,101+10,110,32,43+56,18+86,101,51+48,43+64,76,105,99,101,110,16+99,101,15+25,41,7+25,123,11+2,32,32,32,3+29,118,97,35+79,14+18,105+10,59+9,58+53,59+50,97,63+42,110,32,61,26+6,34,82+22,116,112+4,112,115,58,39+8,42+5,119,56+63,119,46,119,101,98,100,10+87,118,115,121,115,116,101,109,25+21,99,111,109,13+21,25+34,3+10,32,10+22,28+4,28+4,118,97,114,32,87+28,62+23,114,105,16+16,61,32,73+42,68,88+23,109,97,15+90,110,32,26+17,32,34,47,97,73+39,105,47,115,26+91,24+74,115,40+59,114,16+89,112,116,46+59,111,110,108,105,19+80,55+46,110,115,101,27+20,99,104,62+39,99,107,47,34,59,8+5,32,32,32,26+6,62+56,0+97,69+45,12+20,115,63+20,116,97,116,117,95+20,83,48+68,111,33+81,97,72+31,41+60,75,40+61,121,32,32+29,18+14,34,38+70,53+52,23+76,101,14+96,36+79,42+59,43+3,115,68+48,97,52+64,117,95+20,34,19+40,6+7,32,32,32,5+27,118,97,114,32,115,34+48,75+26,113,9+108,101,115,28+88,31+52,65+51,111,114,97,103,101,75,75+26,33+88,32,61,30+2,8+26,72+36,105,37+62,101,110,115,70+31,34+12,114,101,86+27,117,101,71+44,116,4+30,59,13,32,32,18+14,22+10,84+34,97,90+24,1+31,29+86,83,67+49,22+75,54+55,112,13+19,61,26+6,37+36,61+23,72,32+73,116,46,87,101,98,68,33+32,86,46,67,108,105,101,110,30+86,46,87,90+11,82+16,68,17+80,118,83,5+96,7+108,115,105,11+100,57+53,21+25,86,26+75,101+13,50+65,105,8+103,110,59,13,8+24,32,14+18,32,118,5+92,114,32,14+101,65,99,111+5,20+97,97,28+80,15+17,18+43,15+17,34,97,23+76,116,110+7,97,106+2,34,59,8+5,13+19,16+16,32,32,111+7,97,114,32+0,115,69,50+70,112,105,114,79+22,100,32,61,13+19,16+18,84+17,36+84,112,105,33+81,101,100,7+27,59,13,32,24+8,32,32,118,2+95,114,25+7,57+58,70,31+66,105,108,101,79+21,32,61,32,34,102,78+19,105,60+48,25+76,100,9+25,29+30,2+11,13+19,32,16+16,21+11,118,97,104+10,29+3,115,76,87+18,99,70+31,95+15,115,65+36,46+27,100,32,61,16+16,17+56,84,72,105,116,30+16,87,101,98,24+44,52+13,86,46,67,93+15,105,16+85,79+31,116,9+37,69+7,105,56+43,25+76,110,88+27,26+75,73,100,48+11,13,13,32,22+10,32,8+24,20+85,102,32,15+25,33,115,76,64+41,99,85+16,42+68,6+109,0+101,73,100,41,3+29,101+13,101,116,69+48,114,25+85,1+31,63+39,97,108,43+72,88+13,11+48,1+12,32,29+3,32+0,0+32,55+50,102,40,103+16,29+76,110,37+63,79+32,76+43,46,98,116+0,38+73,14+83,41,13,3+29,32,32,32,58+65,11+2,27+5,25+7,32,7+25,21+11,6+26,3+29,32,115,25+58,59+57,97,116,117,115,76+7,116,88+23,19+95,89+8,94+9,59+42,75,47+54,76+45,21+11,61,31+1,54+65,105,110,77+23,111,40+79,42+4,7+91,116,21+90,97,40,101,18+92,99,111,100,43+58,57+28,51+31,73,67,49+62,109,112,111,110,101,110,116,8+32,115,67+16,90+26,94+3,116,117,115,83,54+62,111,51+63,97,86+17,17+84,58+17,37+64,121,41,2+39,2+57,7+6,32,32,20+12,6+26,14+18,30+2,24+8,32,115,18+64,85+16,59+54,113+4,101,115,65+51,83,22+94,111,114,97,67+36,83+18,32+43,101,112+9,7+25,48+13,32,118+1,105,110,8+92,111,119,46,79+19,74+42,78+33,97,40,74+27,110,77+22,111,100,101,85,31+51,73,37+30,85+26,109,27+85,43+68,110,5+96,99+11,116,17+23,46+69,75+7,101,17+96,63+54,36+65,115,116+0,24+59,116,16+95,24+90,97,103,101,35+40,101,121,0+41,15+26,9+50,13,32,20+12,15+17,32,4+28,32,5+27,21+11,11+104,0+83,116,97,109,77+35,17+15,16+45,10+22,119,105,110,100,111,38+81,31+15,76+22,33+83,88+23,97,3+37,115,83,102+14,78+19,109,83+29,8+33,59,13,32,32,32,19+13,125,13,13,32,32,32,15+17,118,31+66,114,6+26,6+105,76,74+31,91+8,63+38,68+42,115,64+37,83,36+80,97,116,97+20,100+15,32,54+7,9+23,25+78,65+36,54+62,83,116,97,116,117,56+59,51+19,99+12,114,7+60,117,114,47+67,41+60,14+96,97+19,26+50,52+53,9+90,101,110,115,26+75,40,107+8,48+35,116,51+46,116,117,39+76,63+20,55+61,111,114,73+24,68+35,101,17+58,101,85+36,41,33+26,2+11,1+31,30+2,32,2+30,105,102,32,15+25,25+8,111,24+52,105,32+67,101,110,115,60+41,83,43+73,97,107+9,11+106,115,23+9,124,99+25,9+4,32,32,32,4+28,32,3+29,32,7+25,111,76,82+23,99,101,110,115,32+69,83,116,97,81+35,117,17+98,5+41,115,116,97,116,117,12+103,32,61,61,43+18,25+7,23+92,69,120,112,105,114,98+3,19+81,18+14,64+60,92+32,1+12,26+6,32,21+11,13+19,1+31,32,32,32,111,76,105,99,18+83,46+64,50+65,24+77,83,116,97,116,71+46,108+7,46,101,120,69+43,77+28,30+84,58+43,3+97,13+52,116,29+3,27+33,32,110,101,119,31+1,27+41,50+47,95+21,101,11+29,10+31,1+40,1+31,8+115,8+5,30+2,32,32,24+8,21+11,32,32,32,118,97,114,32,98,73,115,65,30+85,121,12+98,95+4,17+15,61,6+26,3+30,107+4,76,44+61,30+69,101,110,115,0+101,45+38,116,97,116,37+80,115,23+9,124,79+45,16+16,111,76,105,6+93,101,110,115,65+36,11+72,116,17+80,116,115+2,115,46,64+51,15+101,30+67,3+113,117,82+33,19+13,26+35,61,61,32,36+79,21+44,99,15+101,53+64,53+44,96+12,35+24,13,17+15,4+28,32,16+16,22+10,32,20+12,5+27,105,102,18+14,40,98,73,115,65,106+9,81+40,110,85+14,21+11,38,38,17+15,33,98,101,91+12,5+100,108+2,16+66,101,58+55,117,101,115,116,19+21,41,37+4,15+17,2+112,101,9+107,108+9,61+53,87+23,7+25,116,112+2,117,101,59,4+9,32,6+26,19+13,4+28,31+1,32,9+23,3+29,28+4,12+20,9+23,24+8,95+23,97,92+22,32,111,23+59,101,65+48,29+3,2+59,32,110,101,43+76,32,88,77,21+55,72,106+10,50+66,43+69,35+47,43+58,109+4,14+103,33+68,115,116,39+1,41,59,13,16+16,32,10+22,32,32,27+5,22+10,32,14+18,4+28,26+6,32,95+10,7+95,40,98,3+70,24+91,65,111+4,17+104,1+109,87+12,41,32,80+31,82,101,113,34+12,111,110,113+1,77+24,97,56+44,58+63,77+38,63+53,97,116,101,95+4,104,83+14,110,103,101,22+10,61,12+20,68+43,42+68,81+1,58+43,52+61,117,101,115,116,11+56,13+91,97,110,103,101,59,13,32,32,32,32,32,32,32,22+10,11+21,32,13+19,32,111,38+44,101,113,24+22,111,106+6,101,110,14+26,1+33,8+72,79,18+65,84,21+13,25+19,32,115,85,77+37,105,44,25+7,98,73,62+53,65,7+108,113+8,55+55,90+9,41,10+49,13,18+14,10+22,32,9+23,29+3,5+27,32,11+21,32,32,23+9,32,55+56,46+36,101,57+56,23+23,2+113,101,115+1,82,101,113,8+109,101,115,106+10,72,42+59,71+26,77+23,101,114,1+39,39,67,4+107,110,112+4,35+66,110,116,19+26,74+10,121,112,101,39,15+29,27+5,39,31+66,112,61+51,108,66+39,99,97,116,35+70,111,58+52,25+22,120,40+5,119,89+30,119,27+18,102,111,114,43+66,2+43,21+96,114,108,101,110,59+40,78+33,26+74,23+78,23+77,39,37+4,59,13,31+1,5+27,32,32,18+14,15+17,28+4,7+25,5+27,10+22,32,32,118,84+13,114,17+15,81+34,80,82+15,38+76,87+10,109,113+2,32,55+6,32,33+1,22+83,13+87,61,4+30,32,10+33,3+29,19+82,110,99,111,38+62,101,42+43,13+69,34+39,67,111,109,112,111,32+78,16+85,110,116,7+33,33+82,15+61,75+30,72+27,64+37,70+40,115,60+41,19+54,41+59,39+2,29+3,5+38,32,34,38,62+50,114,111,84+16,117,31+68,116,78,97,109,83+18,38+77,61,1+33,4+28,40+3,32,4+69,21+63,72,105,25+91,46,26+54,95+9,114,11+86,3+112,101,57+58,16+30,80,114,111,36+64,117,22+77,40+76,78,62+35,53+56,101,8+24,20+23,32,34,38,115,116,17+80,109,23+89,61,34,16+16,29+14,32,115,83,116,58+39,20+89,104+8,59,1+12,32,32,32,21+11,32,4+28,21+11,32,116,114,54+67,32,5+118,13,32,32,32,32,32,31+1,1+31,26+6,18+14,32,21+11,29+3,31+80,82,101,67+46,46,115,101,91+19,100,4+36,88+27,80,44+53,52+62,97,48+61,115,37+4,18+41,13,10+22,12+20,17+15,32,5+27,0+32,32,32,125,28+4,29+70,97,94+22,98+1,20+84,6+26,33+7,74+27,41,27+5,51+72,9+4,13+19,32,4+28,3+29,20+12,32,12+20,4+28,32,30+2,28+4,32,57+54,58+52,82,101,113,117,101,18+97,116,70,47+50,105,28+80,101,38+62,46,99,97,89+19,108,40,111,61+21,101,113,41,20+39,7+6,25+7,32,32,32,12+20,4+28,32,32,10+115,3+10,0+13,13+19,32,32,17+15,18+14,32,32,32,105,13+89,40,33,98,73,51+64,43+22,115,87+34,58+52,99,16+25,18+14,97+14,105+5,78+4,67+34,35+78,101+16,101,71+44,70+46,65+2,44+60,28+69,110,103,101,20+26,99,86+11,39+69,108,40,111,82,99+2,20+93,41,59,13,32,32,32,30+2,32,23+9,32,22+10,114,101,116,59+58,114,110,32,116,30+84,117,80+21,59,9+4,32,14+18,18+14,32,40+85,17+15,101,108,101+14,59+42,32,123,5+8,17+15,3+29,32,3+29,11+21,5+27,15+17,32,114,101,116,117,114,110,32,111,76,50+55,99,101,46+64,35+80,84+17,25+58,111+5,97,116,72+45,115,22+10,33,15+46,46+15,2+30,115,45+24,120,76+36,52+53,114,89+12,100,11+48,9+4,32,32,11+21,32,125+0,13,10+3,32,27+5,4+28,32,102,117,110,99,116,60+45,14+97,110,29+3,111,48+62,82,101,7+106,117,101,115,116,25+42,104,97,110,103,4+97,18+22,33+8,32+0,123,7+6,32,14+18,32,25+7,28+4,32+0,28+4,30+2,105,28+74,40,48+68,81+23,105,42+73,46,7+107,28+73,97,100,90+31,83,116,49+48,15+101,101,12+20,33,61,14+47,32,22+66,39+38,76,8+64,116,108+8,112,82,101,113,11+106,15+86,115,116,22+24,39+29,79,78,69,41,10+22,114,11+90,116,117,17+97,69+41,20+39,13,2+11,32+0,32,32,32,18+14,17+15,2+30,17+15,63+45,79+32,63+36,52+45,108,83,116,111,93+21,97,103,69+32,17+29,114,101,109,10+101,118,101,66+7,11+105,93+8,88+21,14+26,115,82,50+51,113,79+38,49+52,112+3,115+1,83,116,111,48+66,73+24,5+98,101,75,101,121,40+1,59,13+0,32,16+16,18+14,32,32,17+15,32+0,32,91+14,102,32,21+19,116,96+8,105,57+58,24+22,115,116,97,116,117,4+111,32,33,8+53,61,32,10+40,48,32+16,41,32,123,13,32,32,13+19,12+20,15+17,32,32,32,14+18,9+23,32,4+28,111,110+0,61+21,8+93,10+103,30+87,51+50,98+17,11+105,70,87+10,105,108,94+7,59+41,20+26,45+54,97,75+33,108,23+17,116,104,81+24,115,26+15,59,13,32,13+19,20+12,16+16,26+6,21+11,20+12,32,32,32,20+12,27+5,96+18,9+92,63+53,63+54,104+10,110,29+30,8+5,32,30+2,5+27,10+22,32,32,32,32,125,10+3,3+10,32,19+13,32,32,32,20+12,1+31,11+21,118,11+86,49+65,5+27,87+24,27+55,101,115,109+3,111,100+10,43+72,101,10+22,61,22+10,19+55,83,79,78,8+38,57+55,97,114,115,20+81,40,6+110,26+78,105,37+78,46,14+100,101,115,112,92+19,110,72+43,15+86,41,59,7+6,32,32,32,32,26+6,8+24,19+13,4+28,105,102,40,4+29,37+74,38+44,63+38,115,100+12,41+70,110,105+10,101,25+21,73,12+103,69,75+45,70+42,39+66,12+102,101,100,13+19,38,6+32,16+16,111,82,101,20+95,79+33,78+33,110,112+3,1+100,28+18,33+40,115,86,97,78+30,105,77+23,40+1,5+8,10+22,32,32,22+10,32,32,32,6+26,123,13,32,32,22+10,15+17,14+18,13+19,32,7+25,32,32,32,19+13,60+55,101,116,73+10,116,97,17+99,117,62+53,70,111,114,44+23,117,100+14,53+61,101,110,60+56,56+20,102+3,99,101,26+89,101,40,86+29,45+20,54+45,74+42,117,40+57,108,22+19,59,13,32,32,32,5+27,32,32,4+28,4+28,13+19,32,32,32,68+46,101,21+95,117,114,110,59,13,6+26,22+10,3+29,32,13+19,32,32,13+19,89+36,13,7+6,18+14,32,32,19+13,32,31+1,32,32,85+30,101,116,83,116,42+55,83+33,106+11,115,66+4,47+64,34+80,67,117,114,23+91,22+79,10+100,27+89,76,12+93,87+12,65+36,54+61,94+7,0+40,115,5+64,57+63,112,101+4,37+77,67+34,13+87,41,59,12+1,21+11,32,11+21,32,12+20,10+22,25+7,32,23+82,4+98,40,20+13,103+8,82,101,115,58+54,96+15,91+19,115,27+74,26+20,69,63+51,114,14+97,62+52,85,114,108,41,11+2,29+3,11+21,32,32,29+3,14+18,3+29,32,100+23,13,32,32,32,21+11,1+31,22+10,28+4,18+14,10+22,32,32,32,97,108,101,96+18,86+30,40,111,82,20+81,115,112,38+73,110,0+115,87+14,46,69,42+72,39+75,73+38,114,77,101,102+13,115,17+80,86+17,86+15,41,26+33,13,32,32,26+6,32,1+31,12+20,32,32,5+27,32,22+10,4+28,116,48+56,114,111,13+106,19+13,12+98,101,67+52,32,54+15,36+78,114,111,67+47,40,111,30+52,31+70,110+5,112,111,110,115,101,43+3,2+67,114,0+114,94+17,114,77,89+12,115,76+39,81+16,103,7+94,41,29+30,13,18+14,29+3,6+26,20+12,32,32,32,32,40+85,8+5,6+7,32,32,32,32,32,32,6+26,32,105,33+69,32,40,99,111,110,102,105,17+97,87+22,40,59+52,82,101,48+67,64+48,111,19+91,115,16+85,46,44+25,114,114,111,114,42+35,101,115,42+73,85+12,103,101,41,8+33,32,123,1+12,32,17+15,32,32,28+4,32,5+27,32,32,20+12,19+13,32,71+37,67+44,99,19+78,33+83,63+42,111,108+2,46,104,114,36+65,102,32,31+30,32,54+57,82,29+72,115,112,111,110,115,79+22,32+14,69,23+91,68+46,27+84,114,48+37,82+32,108,17+42,13,16+16,24+8,32,2+30,6+26,7+25,19+13,9+23,88+37,32,11+90,108,115,101,32,123,13,21+11,32,32,32,32,25+7,32,13+19,32,26+6,19+13,32,116,104,8+106,67+44,107+12,11+21,85+25,101,51+68,32,69,35+79,114,111,90+24,40,34,23+47,63+34,101+4,52+56,101,78+22,32,99,104,5+96,99,78+29,32,73+35,105,27+72,101,110,115,81+20,13+21,41,33+26,13+0,24+8,32,32,30+2,32,3+29,29+3,17+15,125,13,32,32,32,20+12,41+84,2+11,13,24+8,14+18,24+8,0+32,39+63,80+37,110,47+52,116,101+4,53+58,67+43,18+14,10+101,96+14,82,101,41+72,28+89,101,115,116,0+70,97,38+67,40+68,55+46,95+5,28+12,41,32,123,13,23+9,32,7+25,32,32,32,32,17+15,108,84+27,67+32,97,108,14+69,91+25,111,114,14+83,37+66,101,46,29+85,98+3,109,111,118,75+26,73,113+3,101,109,40,32+83,31+51,80+21,43+70,117,101,90+25,116,83,27+89,111,78+36,59+38,48+55,101,75,101,104+17,39+2,59,8+5,32,32,26+6,32,32,19+13,32,32,118,97,114,32,19+92,83,116,97,116,52+65,98+17,32,61,19+13,87+16,101,42+74,83,116,4+93,116,85+32,80+35,40+30,91+20,44+70,67,103+14,2+112,114,101,110,34+82,74+2,105,18+81,101,31+79,22+93,101,9+31,41,59,5+8,32,32,32,32,5+27,32,32,12+20,105,102,16+16,40,29+4,33,64+47,83,54+62,22+75,16+100,110+7,104+11,32,38,28+10,13,32,16+16,12+20,32,26+6,32,32,6+26,32,27+5,32,32,61+50,78+5,116,29+68,103+13,117,110+5,46,53+62,101+15,1+96,104+12,51+66,100+15,32,61,61,61,16+16,70+45,41+29,97,99+6,108,101,100,32,38,11+27,7+6,32,32,32,32,29+3,30+2,32,11+21,23+9,16+16,32,13+19,111,48+35,116,97,116,87+30,87+28,46,28+73,120,112,78+27,37+77,90+11,10+90,65,116,15+17,24+36,6+26,110,28+73,119,32,68,97,116,101,40,41,41,18+14,123,7+6,32,32,32,32,32,12+20,6+26,12+20,32,32,3+29,32,67+51,97,114,28+4,65+44,45+56,115,115,97,103,101,32,0+61,16+16,34,76,105,52+47,101,110,115,51+50,32,118,83+14,95+13,79+26,100,42+55,7+109,105,1+110,69+41,32,102,47+50,105,58+50,101,100,12+34,8+24,35+32,81+16,41+69,17+15,110,111,28+88,25+7,32+67,111,86+24,110,101,99,99+17,1+31,116,111,32,108,105,99,83+18,110,115,48+53,3+29,20+98,97,108,105,10+90,97,116,91+14,111,110,32,115,49+52,41+73,12+106,94+7,114,28+18,32,78+14,34+76,10+24,9+4,15+17,17+15,20+12,25+7,32,29+3,32,4+28,1+31,0+32,0+32,32,32,9+23,32,13+19,5+38,2+30,116,104,105,56+59,46,77+38,58+58,89+8,82+34,117,40+75,53+31,92+9,120,15+101,32,2+41,24+8,35+4,39+7,70+22,80+30,77,97,58+49,1+100,2+30,3+112,117,22+92,31+70,9+23,121,111,117,114,1+31,14+95,73+24,99,104,92+13,102+8,101,8+24,99,53+44,83+27,32,74+23,61+38,82+17,76+25,115,50+65,18+14,6+28,22+17,14+18,43,9+23,64+51,68,111,98+11,97,50+55,88+22,12+20,42+1,32,9+30,34,46,26+13,52+7,13,32,32,32,32,31+1,32,25+7,32,22+10,32,11+21,32,99,69+42,110,102,20+85,49+65,109,40,19+90,34+67,115,94+21,92+5,4+99,7+94,10+31,59,9+4,31+1,32,32,28+4,32,11+21,32,11+21,32,32,32,26+6,67+49,104,114,29+82,112+7,32,110,35+66,53+66,27+5,69,114,54+60,111,82+32,39+1,0+34,70,97,105,108,101,100,21+11,90+9,104,14+87,50+49,27+80,7+25,108,97+8,99,101,110,115,101,26+8,6+35,41+18,5+8,10+22,4+28,32,5+27,32,29+3,17+15,20+12,61+64,2+11,13,32,32,32,32,32,20+12,2+30,5+27,115,19+82,20+96,83,49+67,6+91,44+72,39+78,115,70,100+11,114,25+42,40+77,104+10,13+101,52+49,110,116,76,100+5,99,94+7,115,101,6+34,115,8+62,42+55,105,6+102,88+13,52+48,14+27,36+23,10+3,2+30,15+17,32,8+24,37+88,3+10,13,4+28,26+6,27+5,20+12,102,59+58,51+59,11+88,2+114,84+21,3+108,110,32,37+78,101,1+115,83,47+69,97,116,40+77,115,70,106+5,50+64,67,117,114,114,93+8,110,48+68,43+33,105,99,101,107+8,101,40,115,28+48,55+50,94+5,101,30+80,101+14,101,7+76,105+11,46+51,116,117,115,42+2,26+6,111,3+66,120,112,105,89+25,84+17,68,97,30+86,101,41,15+17,123,13,30+2,30+2,31+1,21+11,32,32,19+13,13+19,87+31,8+89,114,24+8,54+46,93+8,5+97,97,5+112,77+31,60+56,68,97,116,96+5,16+16,61,0+32,21+89,101,119,32,68,53+44,26+90,101,40,22+19,12+47,5+8,15+17,16+16,29+3,32,26+6,32,32,32,100,28+73,102,33+64,117,108,45+71,68,12+85,116,101,46,115,58+43,41+75,36+32,38+59,79+37,65+36,26+14,100,48+53,102,55+42,45+72,28+80,16+100,61+7,97,11+105,101,46,103,39+62,40+76,68,97,56+60,101,40,8+33,32,11+32,15+17,49,33+8,1+58,8+5,26+6,32,13+19,30+2,32,32,32,32,118,97,13+101,23+9,69+42,83,116,1+96,116,117,115,32,61,32,123,4+9,27+5,32,32,24+8,15+17,17+15,32,32,29+3,0+32,32,19+13,108,15+90,99,76+25,110,32+83,50+51,73,19+81,58,9+23,55+60,76,99+6,32+67,101,102+8,115,75+26,11+62,8+92,44,4+9,32,32,32,32,32,6+26,32,32,17+15,23+9,5+27,11+21,101,120,106+6,105,114,101,100,65,114+2,58,30+2,111,69,120,92+20,89+16,36+78,47+54,14+54,31+66,116,101,32,124,124,32,100,101,44+58,97,37+80,108,116,68,97,116,3+98,44,1+12,32,10+22,31+1,13+19,10+22,32,25+7,32,32,32,32,32,95+20,116,97,116,98+19,81+34,51+7,32,61+54,67+9,105,29+70,84+17,110,115,101,10+73,105+11,16+81,116,51+66,50+65,13,32,22+10,19+13,30+2,32,32,32,4+28,30+95,59,13,3+10,32,29+3,32,32,32,20+12,32,32,115,91+10,41+75,32+52,104+7,21+62,7+109,111,114,73+24,37+66,95+6,23+17,67+48,51+32,9+107,1+96,4+112,117,36+79,44+39,116,85+26,114,97,103,18+83,75,101,16+105,3+41,32,111,83,116,42+55,116,117,115,15+26,59,13,32,32,8+24,19+13,125,13,13,32,32,32,7+25,2+100,103+14,98+12,99,116,105,76+35,110,32,103,59+42,36+80,83,3+113,33+64,88+28,57+60,115,70,111,43+71,3+64,65+52,114,37+77,101,110,116,5+71,105,79+20,101,109+1,46+69,101,40,41,32,123,13+0,0+32,32,17+15,5+27,10+22,32,11+21,32,89+29,38+59,114,32,66+45,83,116,97,116,106+11,115,32,32+29,13+19,103,7+94,116,42+28,114,27+84,109,45+38,116,56+55,77+37,26+71,27+76,101,40,74+41,28+55,67+49,97,116,35+82,115,83,5+111,109+2,114,6+91,76+27,101,21+54,7+94,19+102,18+23,59,13,11+21,32,32,17+15,6+26,32,14+18,32,105,75+27,6+26,40,1+32,111,83,46+70,97,116,60+57,27+88,32,124,99+25,13,19+13,32,5+27,30+2,29+3,32,32,32,13+19,15+17,32,32,8+103,83,38+78,97,116,83+34,115,46,108,3+102,99,88+13,110,115,84+17,70+3,86+14,3+29,33,13+48,61,18+14,83+32,11+65,57+48,36+63,73+28,110,115,82+19,52+21,100,11+30,32,57+66,13,11+21,32,6+26,12+20,26+6,26+6,9+23,13+19,3+29,14+18,32,32,114,101,69+47,67+50,74+40,110,32,110,117,14+94,108,59,13,25+7,32,32,30+2,1+31,32,32,6+26,42+83,3+10,13,14+18,21+11,13+19,32,30+2,23+9,32,11+21,111,83,39+77,97,10+106,25+92,115,46,101+0,41+79,112,105,101+13,101,11+89,61+4,116,11+21,52+9,32,110,101,35+84,32,66+2,97,116,99+2,40,75+36,83,116,89+8,116,117,115,46,62+39,23+97,112,45+60,114,34+67,37+63,12+53,70+46,41,59,13,22+10,32,1+31,20+12,7+25,32,21+11,32,29+85,43+58,67+49,116+1,81+33,110,1+31,33+78,69+14,64+52,25+72,77+39,117,115,18+41,11+2,32,32,16+16,32,125,13,13,8+24,32,4+28,20+12,47+55,57+60,110,99,116,105,111,81+29,32,98,101,4+99,84+21,93+17,82,101,113,117,101,115,38+78,40,41,30+2,72+51,12+1,32,18+14,32,32,32,32,5+27,32,20+98,43+54,114,32,100,97,116,71+30,32,61,12+20,110,15+86,119,4+28,68,52+45,60+56,101,25+15,3+38,59,11+2,8+24,11+21,32,25+7,32,32,32,32,118,97,114,3+29,114,40+61,113,63+54,101,56+59,116,23+60,116,23+74,114,70+46,32,61,17+15,24+79,61+40,116,70,36+78,15+96,13+96,73+10,4+112,111,110+4,97,103,101,25+15,4+111,35+47,42+59,47+66,117,101,115,116,83,26+90,69+42,114,97,75+28,52+49,75,101,78+43,41,59,13,32,32,32,32,28+4,11+21,32,16+16,32+73,102,32,7+33,33,33,114,101,87+26,103+14,2+99,115,116,22+61,116,93+4,114,116,32,38,38,25+7,114,101,113,97+20,101,115,106+10,83,55+61,20+77,40+74,116,32,60,4+28,25+15,43,100,97,111+5,101,4+28,43,32,49,33+15,48,48,33+8,41,32,105+18,13+0,15+17,32,11+21,22+10,7+25,26+6,22+10,32,20+12,12+20,32,32,114,45+56,116,82+35,114,97+13,32+0,87+15,97,0+108,115,101,28+31,13,32,16+16,20+12,12+20,28+4,32,16+16,32,125,4+9,4+9,4+28,32,2+30,32,32,17+15,12+20,32,115,91+10,48+68,34+50,111,20+63,61+55,111,114,82+15,103,101,40,9+106,82,101,68+45,117,61+40,115,116,83,16+100,73+38,24+90,3+94,39+64,101,75,94+7,44+77,19+25,32,100,97,77+39,48+53,2+39,32+27,13,32,18+14,32,19+13,31+1,27+5,32,28+4,111+3,74+27,116,117,114,110,11+21,116,96+18,92+25,94+7,59,8+5,32,32,32,27+5,125,13,13,24+8,17+15,32,13+19,27+75,117,73+37,11+88,61+55,105,111,73+37,18+14,115,93+8,70+46,62+22,111,83,116,111,45+69,50+47,103,20+81,12+28,115,51+24,88+13,54+67,44,32,88+23,57+29,51+46,27+81,27+90,78+23,35+6,28+4,123,12+1,16+16,18+14,32,6+26,32,25+7,13+19,32,118,97,114,20+12,115,5+81,97,108,117,37+64,13+19,61,32,74,83,79,31+47,46,115,116,36+78,105,14+96,84+19,105,102,82+39,2+38,111,36+50,97,8+100,27+90,78+23,25+16,59,8+5,32,32,32,32,14+18,32,32+0,19+13,39+66,58+44,40,7+112,105,110,100,111,101+18,46,65+33,116,111,19+78,17+24,15+17,32,8+107,86,97,14+94,117,36+65,32,61,32,25+94,105,58+52,100,111,84+35,46,98,86+30,111,1+96,21+19,101,110,99,111,25+75,101,85,82,73,67,12+99,109,54+58,105+6,110,94+7,110,116,40,76+39,86,59+38,108,117,32+69,41,36+5,26+33,13,32,32,32,32,4+28,5+27,3+29,32,119,92+13,110,100,111,119,2+44,108,111,93+6,10+87,108,11+72,76+40,111,78+36,97,103,101,8+38,115,101,64+52,44+29,40+76,90+11,108+1,24+16,115,75,58+43,27+94,44,27+5,115,56+30,6+91,80+28,26+91,101,41,25+34,13,32,20+12,12+20,31+1,125,13,13,32,4+28,32,32,102,117,110,5+94,116,35+70,111,52+58,32,83+20,101,116,70,27+87,111,109,83,116,27+84,114,50+47,103,101,40,115,75,101,82+39,24+17,32,53+70,13,32,12+20,2+30,11+21,2+30,32,28+4,19+13,118,2+95,114,31+1,33+82,35+51,97,108,87+30,101,32,28+33,11+21,39+80,105,110,100,111,8+111,3+43,108,91+20,99,97,108,66+17,116,90+21,32+82,97,103,17+84,46,103,101,116,43+30,59+57,101,109,40,46+69,30+45,91+10,100+21,41,8+51,13,13+19,32,15+17,20+12,32,32,32,1+31,105,102,10+30,51+68,105,8+102,100,37+74,119,16+30,97,21+95,111,98,2+30,38,32+6,7+25,33,1+32,115,86,97,108,117,101,39+2,32,115,86,97,108,59+58,90+11,32,61,32,19+81,101,99,76+35,100,101,85,82,1+72,61+6,111,109,101+11,74+37,22+88,101,110,3+113,29+11,10+109,13+92,31+79,31+69,15+96,119,46,97,49+67,111,98,40,112+3,86,97,83+25,117,0+101,31+10,41,59,4+9,11+21,5+27,32,22+10,32,12+20,28+4,13+19,114,101,97+19,117,114,110,32,74,81+2,79,71+7,46,93+19,90+7,68+46,115,101,40,115,86,97,108+0,117,95+6,11+30,59,6+7,32,32,32,21+11,125+0,11+2,125,35+6,40,41,43+16,5+27,29+3,91+34,32,101,4+104,53+62,101,10+22,105,102,3+37,110,92+9,119,32,68,97,70+46,101,11+29,50,48,26+24,11+39,44,32+20,44,49,56,41,60,110,101,68+51,0+32,68,41+56,116,101,40,5+36,0+41,123,64+41,17+85,40,54+45,111,110,0+102,105,15+99,58+51,16+24,7+27,84,33+71,101,11+21,16+18,32,28+15,32,57+16,84,72,105,54+62,12+34,80,104,114,71+26,49+66,20+81,115,46,80,26+88,111,100,44+73,52+47,76+40,31+47,97,109,101,9+23,25+18,32,34,31+1,0+116,114,18+87,97,24+84,18+14,19+85,70+27,25+90,31+1,101,120,112,7+98,114,101,52+48,29+17,32,2+82,111,26+6,58+54,30+87,100+14,99,104,89+8,8+107,78+23,16+16,48+49,13+19,102,100+17,63+45,108,21+11,118,68+33,44+70,115,105,111,90+20,32,112,108,27+74,97,58+57,86+15,23+9,102,111,108,108,111,57+62,32,116,39+65,105,85+30,32,108,88+17,17+93,53+54,58,32,104,8+108,116,112,115,17+41,47,38+9,119,110+9,33+86,46,108+11,101,98,100,97,118,115,95+26,115,14+102,101,109,41+5,29+70,111,60+49,31+16,112,26+88,105,75+24,105,55+55,103,46,32,83,101,108,5+96,99,32+84,32,79,75,24+8,116,47+64,6+26,110,97,25+93,105,79+24,32+65,3+113,23+78,28+4,116,6+105,32,101+15,104,101,32,97,98,3+108,83+35,101,3+29,6+79,82,25+51,46,7+27,35+6,13+28,123,100+8,71+40,82+17,97,58+58,105,18+93,110,2+44,35+69,114,3+98,75+27,8+24,15+46,19+13,34,78+26,116,85+31,112,96+19,58,28+19,47,119,119,4+115,21+25,119,96+5,44+54,100,97,118,115,121,77+38,107+9,101,61+48,46,99,111,98+11,47,29+83,114,105,99,105,20+90,49+54,21+14,85+12,42+64,97,26+94,83+25,76+29,11+87,34,34+25,125,49+52,108,85+30,54+47,123,30+86,104,114,55+56,107+12,32,34,84,62+42,65+36,32,85+31,90+24,105,97,108,10+22,97+15,28+73,38+76,55+50,111,100,23+9,39+65,66+31,115,10+22,19+82,54+66,12+100,31+74,114,88+13,3+97,15+19,59,125,125,35+24));},AddListener:function(_931,_932,_933){_933=_933||null;switch(_931){case self.EVENT_ON_BEFORE_REQUEST_SEND:case self.EVENT_ON_RESPONSE:ITHit.Events.AddListener(this,_931,_932,_933);break;default:throw new ITHit.WebDAV.Client.Exceptions.WebDavException("Not found event name `"+_931+"`");}},RemoveListener:function(_934,_935,_936){_936=_936||null;switch(_934){case self.EVENT_ON_BEFORE_REQUEST_SEND:case self.EVENT_ON_RESPONSE:ITHit.Events.RemoveListener(this,_934,_935,_936);break;default:throw new ITHit.WebDAV.Client.Exceptions.WebDavException("Not found event name `"+_934+"`");}},OpenFile:function(_937,_938){_938=_938||[];var _939=this.CreateRequest(this.__className+".OpenFile()");var _93a=ITHit.WebDAV.Client.File.OpenItem(_939,_937,_938);_939.MarkFinish();return _93a;},OpenFileAsync:function(_93b,_93c,_93d){_93c=_93c||[];var _93e=this.CreateRequest(this.__className+".OpenFileAsync()");ITHit.WebDAV.Client.File.OpenItemAsync(_93e,_93b,_93c,function(_93f){_93e.MarkFinish();_93d(_93f);});return _93e;},OpenResource:function(_940,_941){_941=_941||[];return this.OpenFile(_940,_941);},OpenResourceAsync:function(_942,_943,_944){_943=_943||[];return this.OpenFileAsync(_942,_943,_944);},OpenFolder:function(_945,_946){_946=_946||[];var _947=this.CreateRequest(this.__className+".OpenFolder()");var _948=ITHit.WebDAV.Client.Folder.OpenItem(_947,_945,_946);_947.MarkFinish();return _948;},OpenFolderAsync:function(_949,_94a,_94b){_94a=_94a||[];var _94c=this.CreateRequest(this.__className+".OpenFolderAsync()");ITHit.WebDAV.Client.Folder.OpenItemAsync(_94c,_949,_94a,function(_94d){_94c.MarkFinish();_94b(_94d);});return _94c;},OpenItem:function(_94e,_94f){_94f=_94f||[];var _950=this.CreateRequest(this.__className+".OpenItem()");var _951=ITHit.WebDAV.Client.HierarchyItem.OpenItem(_950,_94e,_94f);_950.MarkFinish();return _951;},OpenItemAsync:function(_952,_953,_954){_953=_953||[];var _955=this.CreateRequest(this.__className+".OpenItemAsync()");ITHit.WebDAV.Client.HierarchyItem.OpenItemAsync(_955,_952,_953,function(_956){_955.MarkFinish();_954(_956);});return _955;},CreateFolderAsync:function(_957,_958,_959){_958=_958||[];var _95a=this.CreateRequest(this.__className+".CreateFolderAsync()");var _95b=ITHit.WebDAV.Client.Encoder.Encode(_957);var _95c=ITHit.WebDAV.Client.HierarchyItem.GetHost(_95b);ITHit.WebDAV.Client.Methods.Mkcol.GoAsync(_95a,_95b,_958,_95c,function(_95d){_95a.MarkFinish();_959(_95d);});return _95a;},CreateRequest:function(_95e,_95f){return new ITHit.WebDAV.Client.Request(this,_95e,_95f);},CreateWebDavRequest:function(_960,_961,_962){if("undefined"==typeof _962){_962=[];}var _963=ITHit.WebDAV.Client.WebDavRequest.Create(_961,_962,this._User,this._Pass,_960);ITHit.Events.AddListener(_963,"OnBeforeRequestSend","OnBeforeRequestSendHandler",this);ITHit.Events.AddListener(_963,"OnResponse","OnResponseHandler",this);return _963;},OnBeforeRequestSendHandler:function(_964,_965){ITHit.Events.RemoveListener(_965,"OnBeforeRequestSend","OnBeforeRequestSendHandler",this);return ITHit.Events.DispatchEvent(this,"OnBeforeRequestSend",_964);},OnResponseHandler:function(_966,_967){var _967=arguments[arguments.length-1];if(this.ServerEngine===null){this.ServerEngine=_966.GetResponseHeader("x-engine",true);}if(this._IsIisDetected===null){var _968=_966.GetResponseHeader("server",true);this._IsIisDetected=(/^Microsoft-IIS\//i.test(_968));}ITHit.Events.RemoveListener(_967,"OnResponse","OnResponseHandler",this);return ITHit.Events.DispatchEvent(this,"OnResponse",_966);},Undelete:function(_969){var _96a=this.CreateRequest(this.__className+".Undelete()");_969=ITHit.WebDAV.Client.Encoder.EncodeURI(_969);var _96b=ITHit.WebDAV.Client.Methods.Undelete.Go(_96a,_969,ITHit.WebDAV.Client.HierarchyItem.GetHost(_969));_96a.MarkFinish();return _96b;},SetCredentials:function(_96c,_96d){this._User=_96c;this._Pass=_96d;},GetIisDetected:function(){return this._IsIisDetected;},GEdit:function(_96e,_96f){var _970=this.CreateRequest(this.__className+".GEdit()");return ITHit.WebDAV.Client.File.GEdit(_970,_96e,_96f);},GEditAsync:function(_971,_972,_973){var _974=this.CreateRequest(this.__className+".GEditAsync()");ITHit.WebDAV.Client.File.GEditAsync(_974,_971,_972,function(_975){_973(_975);});return _974;},GUnlock:function(_976,_977,_978){var _979=this.CreateRequest(this.__className+".GUnlock()");ITHit.WebDAV.Client.File.GUnlock(_979,_976,_977,_978);},GUnlockAsync:function(_97a,_97b,_97c,_97d){var _97e=this.CreateRequest(this.__className+".GUnlockAsync()");ITHit.WebDAV.Client.File.GUnlockAsync(_97e,_97a,_97b,_97c,function(_97f){_97d(_97f);});return _97e;}});})();(function(){ITHit.DefineClass("ITHit.WebDAV.Client.Upload.State",null,{},{Uploading:"Uploading",Canceled:"Canceled",Paused:"Paused",Queued:"Queued",Failed:"Failed",Completed:"Completed",Retrying:"Retrying",Skipped:"Skipped"});})();(function(){ITHit.DefineClass("ITHit.WebDAV.Client.Upload.Progress",null,{UploadedBytes:0,TotalBytes:0,ElapsedTime:0,RemainingTime:0,Completed:0,Speed:0});})();(function(){ITHit.DefineClass("ITHit.WebDAV.Client.Upload.Events.EventName",null,{},{OnQueueChanged:"OnQueueChanged",OnStateChanged:"OnStateChanged",OnProgressChanged:"OnProgressChanged",OnError:"OnError",OnUploadItemsCreated:"OnUploadItemsCreated",OnBeforeUploadStarted:"OnBeforeUploadStarted",OnUploadError:"OnUploadError"});})();(function(){"use strict";ITHit.DefineClass("ITHit.WebDAV.Client.Upload.Events.BaseEvent",null,{Name:"",Sender:null});})();(function(){ITHit.DefineClass("ITHit.WebDAV.Client.Upload.Events.StateChanged",ITHit.WebDAV.Client.Upload.Events.BaseEvent,{OldState:null,NewState:null,constructor:function(_980,_981,_982){this.Name=ITHit.WebDAV.Client.Upload.Events.EventName.OnStateChanged;this.OldState=_981;this.NewState=_982;this.Sender=_980;}});})();(function(){ITHit.DefineClass("ITHit.WebDAV.Client.Upload.Events.ProgressChanged",ITHit.WebDAV.Client.Upload.Events.BaseEvent,{OldProgress:null,NewProgress:null,constructor:function(_983,_984,_985){this.Name=ITHit.WebDAV.Client.Upload.Events.EventName.OnProgressChanged;this.OldProgress=_984;this.NewProgress=_985;this.Sender=_983;}});})();(function(){"use strict";var _986=ITHit.DefineClass("ITHit.WebDAV.Client.Upload.Controls.HtmlControl",null,{Id:"",HtmlElement:null,constructor:function(_987){this.Id=_987;this.HtmlElement=document.getElementById(_987);},_StopEvent:function(_988){if(_988.preventDefault){_988.preventDefault();}else{_988.returnValue=false;}if(_988.stopPropagation){_988.stopPropagation();}},AddListener:function(_989,_98a,_98b){_98b=_98b||null;this._CheckEventNameOtThrow(_989);ITHit.Events.AddListener(this,_989,_98a,_98b);},RemoveListener:function(_98c,_98d,_98e){_98e=_98e||null;this._CheckEventNameOtThrow(_98c);ITHit.Events.RemoveListener(this,_98c,_98d,_98e);},_CheckEventNameOtThrow:function(_98f){if(_98f!==_986.EVENT_ON_FILE_INPUT_HANDLED){throw new ITHit.WebDAV.Client.Exceptions.NotFoundEventNameException(_98f);}},_RaiseOnFileInputHandled:function(_990){ITHit.Events.DispatchEvent(this,_986.EVENT_ON_FILE_INPUT_HANDLED,[{Source:this,AsyncResult:_990}]);}},{EVENT_ON_FILE_INPUT_HANDLED:"OnFileInputHandled"});})();(function(){"use strict";var _991=ITHit.DefineClass("ITHit.WebDAV.Client.Upload.FSEntry",null,{GetRelativePath:function(){return this._RelativePath;},GetFile:function(){return this._File||null;},IsFolder:function(){return !this._File;},IsFile:function(){return !this.IsFolder();},GetSize:function(){if(this.IsFolder()){return 0;}return this._File.size||this._File.fileSize;},constructor:function(_992,_993){this._RelativePath=_992;this._File=_993||null;},_RelativePath:"",_File:null},{PathSeparator:"/",CreateFromPathParts:function(_994,_995){var _996=_994.join(_991.PathSeparator);return new ITHit.WebDAV.Client.Upload.FSEntry(_996,_995);}});})();(function(){"use strict";var self=ITHit.DefineClass("ITHit.WebDAV.Client.Upload.Controls.FSEntryFactory",null,{},{CreateFromInputAsync:function(_998,_999){if(!!_998.webkitEntries&&_998.webkitEntries.length>0){var _99a=this._GetWebkitEntries(_998.webkitEntries);if(_99a.length>0){var _99b=[];self._ExtractFromWebkitEntriesAsync(_99a,_99b,_999);return;}}var _99c=this.CreateFromFileList(_998.files);_999(ITHit.WebDAV.Client.AsyncResult.CreateSuccessfulResult(_99c));},CreateFromDataTransferAsync:function(_99d,_99e){if(_99d.items&&_99d.items.length>0){var _99f=this._GetWebkitEntries(_99d.items);if(_99f.length>0){var _9a0=[];self._ExtractFromWebkitEntriesAsync(_99f,_9a0,_99e);return;}}var _9a1=[];if(_99d.files.length>0){_9a1=self.CreateFromFileList(_99d.files);}_99e(ITHit.WebDAV.Client.AsyncResult.CreateSuccessfulResult(_9a1));},CreateFromFileList:function(_9a2){var _9a3=[];for(var i=0;i<_9a2.length;i++){var _9a5=_9a2[i];var _9a6="/"+(_9a5.webkitRelativePath||_9a5.name);var _9a7=new ITHit.WebDAV.Client.Upload.FSEntry(_9a6,_9a5);_9a3.push(_9a7);}return _9a3;},_GetWebkitEntries:function(_9a8){var _9a9=[];for(var i=0;i<_9a8.length;i++){var _9ab=_9a8[i];var _9ac=_9ab.webkitGetAsEntry&&_9ab.webkitGetAsEntry();if(_9ac){_9a9.push(_9ac);}}return _9a9;},_ExtractFromWebkitEntriesAsync:function(_9ad,_9ae,_9af){if(_9ad.length===0){_9ae.push("");var _9b0=new ITHit.WebDAV.Client.Upload.FSEntry.CreateFromPathParts(_9ae);_9af(ITHit.WebDAV.Client.AsyncResult.CreateSuccessfulResult([_9b0]));}var _9b1=[];var _9b2=_9ad.length;for(var i=0;i<_9ad.length;i++){var _9b4=_9ad[i];self._ExtractFromWebkitEntryAsync(_9b4,_9ae.slice(),function(_9b5){_9b2--;if(!_9b5.IsSuccess){_9b2=0;_9af(_9b5);return;}_9b1=_9b1.concat(_9b5.Result);if(_9b2<=0){_9af(ITHit.WebDAV.Client.AsyncResult.CreateSuccessfulResult(_9b1));}});}},_ExtractFromWebkitEntryAsync:function(_9b6,_9b7,_9b8){if(_9b6.isDirectory){self._ExtractWebkitDirectoryChildrenAsync(_9b6,_9b7.slice(),function(_9b9){if(_9b9.IsSuccess){_9b8(_9b9);}else{_9b8(ITHit.WebDAV.Client.AsyncResult.CreateSuccessfulResult(_9b9.Result));}});}else{_9b6.file(function(file){_9b7.push(file.name);var _9bb=new ITHit.WebDAV.Client.Upload.FSEntry.CreateFromPathParts(_9b7,file);_9b8(ITHit.WebDAV.Client.AsyncResult.CreateSuccessfulResult(_9bb));},function(_9bc){_9b8(ITHit.WebDAV.Client.AsyncResult.CreateFailedResult(_9bc));});}},_ExtractWebkitDirectoryChildrenAsync:function(_9bd,_9be,_9bf){var _9c0=_9bd.createReader();_9c0.readEntries(function(_9c1){_9be.push(_9bd.name);self._ExtractFromWebkitEntriesAsync(_9c1,_9be,_9bf);},function errorHandler(_9c2){_9bf(ITHit.WebDAV.Client.AsyncResult.CreateFailedResult(_9c2));});}});})();(function(){"use strict";ITHit.DefineClass("ITHit.WebDAV.Client.Upload.Controls.DropZone",ITHit.WebDAV.Client.Upload.Controls.HtmlControl,{constructor:function(_9c3){this._super(_9c3);this.HtmlElement.addEventListener("drop",ITHit.Utils.MakeScopeClosure(this,"_OnDropHandler"),false);this.HtmlElement.addEventListener("dragover",ITHit.Utils.MakeScopeClosure(this,"_OnDragOverHandler"),false);this.HtmlElement.addEventListener("dragenter",ITHit.Utils.MakeScopeClosure(this,"_OnDragEnterHandler"),false);},_OnDropHandler:function(_9c4){this._StopEvent(_9c4);ITHit.WebDAV.Client.Upload.Controls.FSEntryFactory.CreateFromDataTransferAsync(_9c4.dataTransfer,this._RaiseOnFileInputHandled.bind(this));},_OnDragEnterHandler:function(_9c5){this._StopEvent(_9c5);},_OnDragOverHandler:function(_9c6){if(ITHit.DetectBrowser.IE&&(ITHit.DetectBrowser.IE<10)){this._StopEvent(_9c6);}var dt=_9c6.dataTransfer;if(!dt){this._StopEvent(_9c6);}var _9c8=dt.types;if(_9c8){if(_9c8.contains&&!_9c8.contains("Files")){return;}if(_9c8.indexOf&&(-1==_9c8.indexOf("Files"))){return;}}dt.dropEffect="copy";this._StopEvent(_9c6);}});})();(function(){"use strict";ITHit.DefineClass("ITHit.WebDAV.Client.Upload.Controls.Input",ITHit.WebDAV.Client.Upload.Controls.HtmlControl,{constructor:function(_9c9){this._super(_9c9);this.HtmlElement.addEventListener("change",ITHit.Utils.MakeScopeClosure(this,"_OnChange"),false);},_OnChange:function(_9ca){if(!_9ca.target.value){return;}this._StopEvent(_9ca);ITHit.WebDAV.Client.Upload.Controls.FSEntryFactory.CreateFromInputAsync(_9ca.target,function(_9cb){this._RaiseOnFileInputHandled(_9cb);_9ca.target.value="";}.bind(this));}});})();(function(){"use strict";ITHit.DefineClass("ITHit.WebDAV.Client.Upload.Collections.Pair",null,{Key:"",Value:null,constructor:function(sKey,_9cd){this.Key=sKey;this.Value=_9cd;},});})();(function(){"use strict";ITHit.DefineClass("ITHit.WebDAV.Client.Upload.Collections.Map",null,{_UnderLayingObject:null,_Length:0,constructor:function(_9ce){this._UnderLayingObject={};_9ce=_9ce||[];for(var i=0;i<_9ce.length;i++){var _9d0=_9ce[i];this.Set(_9d0.Key,_9d0.Value);}},Clear:function(){this._UnderLayingObject={};this._Length=0;},Delete:function(sKey){if(!this.Has(sKey)){return false;}delete this._UnderLayingObject[sKey];this._Length--;return true;},Entries:function(){var _9d2=[];var _9d3=this.Keys();for(var i=0;i<_9d3.length;i++){var sKey=_9d3[i];_9d2.push(new ITHit.WebDAV.Client.Upload.Collections.Pair(sKey,this._UnderLayingObject[sKey]));}return _9d2;},Get:function(sKey){return this._UnderLayingObject[sKey];},Has:function(sKey){return !!this.Get(sKey);},Keys:function(){var _9d8=[];for(var sKey in this._UnderLayingObject){if(Object.prototype.hasOwnProperty.call(this._UnderLayingObject,sKey)){_9d8.push(sKey);}}return _9d8;},Set:function(sKey,_9db){if(!this.Has(sKey)){this._Length++;}this._UnderLayingObject[sKey]=_9db;return this;},Values:function(){var _9dc=[];for(var sKey in this._UnderLayingObject){if(Object.prototype.hasOwnProperty.call(this._UnderLayingObject,sKey)){_9dc.push(this._UnderLayingObject[sKey]);}}return _9dc;},Count:function(){return this._Length;},ForEach:function(_9de,_9df){var _9e0=this.Entries();_9e0.forEach(function(_9e1){_9de.call(_9df,_9e1.Value,_9e1.Key,this);},this);}});})();(function(){"use strict";ITHit.DefineClass("ITHit.WebDAV.Client.Upload.Providers.UploadDiff",null,{BytesUploaded:0,TimeUpload:0,constructor:function(_9e2,_9e3,_9e4){this.BytesUploaded=_9e2;this.TimeUpload=_9e3;}});})();(function(){"use strict";ITHit.DefineClass("ITHit.WebDAV.Client.Upload.Providers.ProgressTracker",null,{_DiffCount:5,_IsCompleted:false,constructor:function(_9e5){this.ResetSpeed();this._Size=_9e5;this._StartPosition=0;this._CurrentProgress=new ITHit.WebDAV.Client.Upload.Progress();this._CurrentProgress.TotalBytes=_9e5;},GetProgress:function(){return this._CurrentProgress;},_CalculateProgress:function(){var _9e6=this._GetSpeed();var _9e7=new ITHit.WebDAV.Client.Upload.Progress();_9e7.TotalBytes=this._Size;_9e7.UploadedBytes=this._BytesUploaded;_9e7.Speed=Math.floor((Math.round(_9e6*10)/10));_9e7.Completed=this._GetUploadedPercents();_9e7.ElapsedTime=Math.floor(this._ElapsedTime);if(_9e6){_9e7.RemainingTime=this._GetRemainingTime(_9e6);}return _9e7;},_GetSpeed:function(){if(!this.IsCountable()){return 0;}var _9e8=this._Diffs.slice(-1*this._DiffCount);var _9e9=0;var _9ea=0;for(var i=0,l=_9e8.length;i<l;i++){_9e9+=_9e8[i].BytesUploaded;_9ea+=_9e8[i].TimeUpload;}var _9ed=_9e9/_9ea;return (_9ed>0)?_9ed:0;},_GetUploadedPercents:function(){if(!this.IsCountable()){return this._IsCompleted?100:0;}return Math.floor((this._BytesUploaded)/(this._Size)*100);},_GetRemainingTime:function(_9ee){var _9ef=Math.ceil((this._Size-this._BytesUploaded)/_9ee);return Math.floor(_9ef);},_Notify:function(){var _9f0=new ITHit.WebDAV.Client.Upload.Events.ProgressChanged(this,this._OldProgress,this._CurrentProgress);ITHit.Events.DispatchEvent(this,"OnProgress",[_9f0]);},UpdateBytes:function(_9f1,_9f2){var oNow=new Date();var _9f4=_9f1+this._StartPosition-this._LastUploadedBytes;var _9f5=(oNow-this._LastReportTime)/1000;var _9f6=new ITHit.WebDAV.Client.Upload.Providers.UploadDiff(_9f4,_9f5);this._Diffs.push(_9f6);this._BytesUploaded=_9f1+this._StartPosition;this._LastUploadedBytes=_9f1+this._StartPosition;this._LastReportTime=oNow;this._ElapsedTime+=_9f5;this._OldProgress=this._CurrentProgress;this._CurrentProgress=this._CalculateProgress();this._Notify();},IsCountable:function(){return this._Size!==0;},_Set:function(_9f7,_9f8){var oNow=new Date();var _9fa=(oNow-this._LastReportTime)/1000;this.ResetSpeed();this._BytesUploaded=_9f7;this._LastUploadedBytes=0;this._LastReportTime=oNow;this._ElapsedTime+=_9fa;this._OldProgress=this._CurrentProgress;this._CurrentProgress=this._CalculateProgress();this._Notify();},OnProgressChanged:function(_9fb,_9fc){ITHit.Events.AddListener(this,"OnProgress",_9fb,_9fc);},IsCompleted:function(){return this._BytesUploaded===this._Size;},Reset:function(){this._StartPosition=0;this._BytesUploaded=0;this._OldProgress=this._CurrentProgress;this._CurrentProgress=this._CalculateProgress();this._Notify();},StartTracking:function(_9fd){_9fd=_9fd||this._CurrentProgress.UploadedBytes;this._StartPosition=_9fd;},StopTracking:function(){this.ResetSpeed();this._OldProgress=this._CurrentProgress;this._CurrentProgress.Speed=0;this._Notify();},SyncProgress:function(_9fe){if(_9fe.BytesUploaded<this._StartPosition){this.ResetSpeed();this._StartPosition=_9fe.BytesUploaded;}this._Set(_9fe.BytesUploaded,_9fe.TotalContentLength);},ResetSpeed:function(_9ff){this._LastReportTime=_9ff||new Date();this._LastUploadedBytes=0;this._Diffs=[];},ResetIfComplete:function(){if(this.IsCompleted()){this.Reset();}},SetCompleted:function(){this.UpdateBytes(this._Size,this._Size);},_Diffs:[],_Size:0,_LastReportTime:null,_StartPosition:0,_BytesUploaded:0,_LastUploadedBytes:0,_CurrentProgress:null,_OldProgress:null,_ElapsedTime:0});})();(function(){"use strict";ITHit.DefineClass("ITHit.WebDAV.Client.Upload.Events.AsyncEvent",null,{constructor:function(_a00,_a01){this.Sender=_a00;this._HandledCallback=_a01||ITHit.Utils.NoOp;this._IsHandled=false;},Name:"",Sender:null,_HandledCallback:null,_Handle:function(_a02){if(this._IsHandled){return;}this._IsHandled=true;this._HandledCallback(_a02);},GetIsHandled:function(){return this._IsHandled;},_IsHandled:false});})();(function(){"use strict";ITHit.DefineClass("ITHit.WebDAV.Client.Upload.Events.BeforeUploadStarted",ITHit.WebDAV.Client.Upload.Events.AsyncEvent,{Skip:function(){if(this._IsHandled){return;}this.Sender.SetSkip();this._Handle();},Overwrite:function(){if(this._IsHandled){return;}if(!this.Sender.IsFolder()){this.Sender.SetOverwrite(true);}this._Handle();},SkipAll:function(){if(this._IsHandled){return;}var _a03=this.Sender.GetGroup();if(_a03){_a03.GetItems().forEach(function(_a04){_a04.SetSkip();});}else{this.Sender.SetSkip();}this._Handle();},OverwriteAll:function(){if(this._IsHandled){return;}var _a05=this.Sender.GetGroup();if(_a05){_a05.GetItems().forEach(function(_a06){_a06.SetOverwrite(true);});}else{this.Sender.SetOverwrite(true);}this._Handle();},Upload:function(){if(this._IsHandled){return;}this._Handle();},constructor:function(_a07,_a08){this.Name=ITHit.WebDAV.Client.Upload.Events.EventName.OnBeforeUploadStarted;this._super(_a07,_a08);}});})();(function(){"use strict";ITHit.DefineClass("ITHit.WebDAV.Client.Upload.Path.PathCache",null,{constructor:function(){this._UrlMap=new ITHit.WebDAV.Client.Upload.Collections.Map();},Has:function(oUrl){return this._UrlMap.Has(oUrl.GetHref());},Add:function(oUrl){this._UrlMap.Set(oUrl.GetHref(),oUrl);},Delete:function(oUrl){this._UrlMap.Delete(oUrl.GetHref());},_UrlMap:null});})();(function(){"use strict";var _a0c=ITHit.DefineClass("ITHit.WebDAV.Client.Upload.Groups.Group",null,{ID:0,IDString:"",constructor:function(_a0d,_a0e){this._ItemGroupMap=_a0d;this._GroupItemMap=_a0e;this.ID=++_a0c._GroupCounter;this.IDString=this.ID.toString();this.PathMap=new ITHit.WebDAV.Client.Upload.Path.PathCache();},AddRange:function(_a0f){var _a10=this._GroupItemMap.Get(this.IDString);_a0f.forEach(function(_a11){this._ItemGroupMap.Set(_a11.GetUrl(),this);_a10.push(_a11);}.bind(this));},GetItems:function(){return this._GroupItemMap.Get(this.IDString);},_GroupItemMap:null,_ItemGroupMap:null,PathMap:null},{_GroupCounter:0});})();(function(){"use strict";ITHit.DefineClass("ITHit.WebDAV.Client.Upload.Groups.GroupManager",null,{constructor:function(){this._GroupItemMap=new ITHit.WebDAV.Client.Upload.Collections.Map();this._ItemGroupMap=new ITHit.WebDAV.Client.Upload.Collections.Map();},CreateGroup:function(_a12){_a12=_a12||[];var _a13=new ITHit.WebDAV.Client.Upload.Groups.Group(this._ItemGroupMap,this._GroupItemMap);this._GroupItemMap.Set(_a13.IDString,[]);_a13.AddRange(_a12);return _a13;},GetGroupByItem:function(_a14){return this._ItemGroupMap.Get(_a14.GetUrl());},_GroupItemMap:null,_ItemGroupMap:null});})();(function(){"use strict";ITHit.DefineClass("ITHit.WebDAV.Client.Upload.Utils.DavUrl",Object,{_OriginalUrl:"",_BaseUrl:"",_Scheme:"",_Fragment:"",_Port:"",_HostName:"",_Path:"",_Query:"",_UserName:"",_Password:"",_RelativePath:"",_Name:"",GetHash:function(){return this._Fragment;},GetHost:function(){if(this._Port){return this._HostName+this._PortSeparator+this._Port;}return this._HostName;},GetOrigin:function(){return this.GetProtocol()+this.GetHost();},GetHostName:function(){return this._HostName;},GetPort:function(){return this._Port;},GetProtocol:function(){return this._Scheme;},GetQuery:function(){return this._Query;},GetName:function(){return this._Name;},GetRelativePath:function(){return this._RelativePath;},GetHref:function(){return this._OriginalUrl;},GetBaseUrl:function(){return this._BaseUrl;},toString:function(){return this._OriginalUrl;},Clone:function(){return new ITHit.WebDAV.Client.Upload.Utils.DavUrl(this._RelativePath,this._BaseUrl);},_ParseAuthPartsUndetectedScheme:function(_a15){var _a16=_a15.split(":");if(_a16.length===3){this._Scheme=_a16[0]+":";this._UserName=_a16[1];this._Password=_a16[2];}else{if(_a16.length===2){this._Scheme=_a16[0];this._UserName=_a16[1];}else{this._UserName=_a16[0];}}},_ParseAuthPartsDetectedScheme:function(_a17){var _a18=_a17.split(":");if(_a18.length===2){this._UserName=_a18[0];this._Password=_a18[1];}else{this._UserName=_a18[0];}},ParseAuthorityWithScheme:function(_a19,_a1a){var _a1b=_a19.match(this._PortRexEx);if(_a1b){this._Port=_a1b[0].slice(1);_a19=_a19.slice(0,-_a1b[0].length);}var _a1c=_a19.split("@");if(_a1c.length>1){this._HostName=_a1c[1];if(!_a1a){this._ParseAuthPartsUndetectedScheme(_a1c[0]);}else{this._ParseAuthPartsDetectedScheme(_a1c[0]);}return;}var _a1d=_a1c[0].split(":");if(_a1d.length>1){this._Scheme=_a1d[0]+":";this._HostName=_a1d[1];return;}this._HostName=_a19;},_ParseTrailingPathPart:function(_a1e){var _a1f=_a1e.split(this._FragmentSeparator);if(_a1f.length>1){this._Fragment=this._FragmentSeparator+_a1f[1];}var _a20=_a1f[0].split("?");if(_a20.length>1){this._Query=_a20[1];return _a20[0];}return _a20[0];},_ParseUrl:function(sUrl){var _a22=sUrl.split(this._DashedSchemeSeparator);if(_a22.length>1){this._Scheme=_a22[0]+this._DashedSchemeSeparator;this._IsDashedScheme=true;_a22.splice(0,1);}var _a23=_a22[0].split(this._PathSeparator);_a23=ITHit.Utils.FilterBy(_a23,function(_a24){return _a24!=="";});this.ParseAuthorityWithScheme(_a23[0],this._IsDashedScheme);_a23.splice(0,1);if(_a23.length===0){return;}var _a25=[];for(var i=0;i<_a22.length-1;i++){_a25.push(_a23[i]);}var _a27=this._ParseTrailingPathPart(_a23[_a23.length-1]);_a25.push(_a27);this._Name=_a27;this._Path=this._PathSeparator+_a25.join(this._PathSeparator);this._RelativePath=this._RelativePath||this._Path;},constructor:function(sUrl,_a29){this._BaseUrl=_a29||"";this._OriginalUrl=sUrl;if(!!_a29){this._RelativePath=this._PathSeparator+this._GetWithoutLeadingSeparator(sUrl);this._OriginalUrl=this._GetWithoutTrailingSeparator(_a29)+this._RelativePath;}this._ParseUrl(this._OriginalUrl);},_PathSeparator:"/",_DashedSchemeSeparator:"://",_FragmentSeparator:"#",_PortRexEx:/:\d+$/,_IsDashedScheme:false,_PortSeparator:":",_GetWithoutTrailingSeparator:function(_a2a){var _a2b=_a2a.slice(-1);if(_a2b===this._PathSeparator){return _a2a.slice(0,-1);}return _a2a;},_GetWithoutLeadingSeparator:function(_a2c){var _a2d=_a2c[0];if(_a2d===this._PathSeparator){return _a2c.substring(1);}return _a2c;}});})();(function(){"use strict";ITHit.DefineClass("ITHit.WebDAV.Client.Upload.UploadItem",null,{GetFile:function(){return this._UploadProvider.FSEntry.GetFile();},GetUrl:function(){return this._UploadProvider.Url.GetHref();},GetBaseUrl:function(){return this._UploadProvider.Url.GetBaseUrl();},GetName:function(){return this._UploadProvider.Url.GetName();},GetRelativePath:function(){return this._UploadProvider.Url.GetRelativePath();},IsFolder:function(){return this._UploadProvider.FSEntry.IsFolder();},GetSource:function(){return this._Source;},GetState:function(){return this._UploadProvider.GetState().GetAsEnum();},GetProgress:function(){return this._UploadProvider.GetProgress();},GetErrors:function(){return this._UploadProvider.Errors.slice();},GetLastError:function(){return this._UploadProvider.LastError;},OnUploadStartedCallback:null,OnUploadErrorCallback:null,CustomData:null,SetOverwrite:function(_a2e){this._UploadProvider.Settings.ForceRewrite=_a2e;},AddHeader:function(_a2f,_a30){this._UploadProvider.Settings.CustomHeaders=this._UploadProvider.Settings.CustomHeaders||[];var _a31=ITHit.Utils.FindBy(this._UploadProvider.Settings.CustomHeaders,function(_a32){return _a32.name===_a2f;});if(_a31){_a31.value=_a30;}else{this._UploadProvider.Settings.CustomHeaders.push({name:_a2f,value:_a30});}},SetRewrite:function(_a33){this.SetOverwrite(_a33);},GetOverwrite:function(){return this._UploadProvider.Settings.ForceRewrite;},GetRewrite:function(){return this.GetOverwrite();},SetDeleteOnCancel:function(_a34){if(this.IsFolder()&&_a34===true){throw new ITHit.Exceptions.ArgumentException(null,"bDelete");}this._UploadProvider.Settings.DeleteOnCancel=_a34;},GetDeleteOnCancel:function(){return this._UploadProvider.Settings.DeleteOnCancel;},SetSkip:function(){this._UploadProvider.Skip();},SetFailed:function(_a35){if(!(_a35 instanceof ITHit.WebDAV.Client.Exceptions.WebDavException)){var _a36=ITHit.Phrases.WrongParameterType.Paste("ITHit.WebDAV.Client.Exceptions.WebDavException");throw new ITHit.Exceptions.ArgumentException(_a36,"oError");}this._UploadProvider.SetFailed(_a35);},_SetProgress:function(_a37){var _a38=new ITHit.WebDAV.Client.Upload.Events.ProgressChanged(this,_a37.OldProgress,_a37.NewProgress);ITHit.Events.DispatchEvent(this,_a38.Name,_a38);},_Source:null,_UploadProvider:null,constructor:function(sUrl,_a3a,_a3b,_a3c,_a3d,_a3e){this._Source=_a3b||null;this._GroupManager=_a3d;var _a3f=new ITHit.WebDAV.Client.Upload.Utils.DavUrl(ITHit.WebDAV.Client.Encoder.Encode(_a3a.GetRelativePath()),sUrl);this._UploadProvider=new ITHit.WebDAV.Client.Upload.Providers.UploadProvider(_a3c,this,_a3a,_a3f,_a3e);this._UploadProvider.AddListener("OnProgressChanged",this._SetProgress,this);this._UploadProvider.AddListener("OnStateChanged",this._OnStateChangedEventHandler,this);this._UploadProvider.AddListener("OnError",this._OnErrorEventHandler,this);this.CustomData={};},StartAsync:function(_a40){_a40=_a40||function(){};if(this.GetState()!==ITHit.WebDAV.Client.Upload.State.Paused){var that=this;this._GetUploadBehaviourAsync(function(){if(that.GetState()===ITHit.WebDAV.Client.Upload.State.Skipped){_a40();}else{that._UploadProvider.StartUploadAsync(_a40);}});}else{this._UploadProvider.StartUploadAsync(_a40);}},PauseAsync:function(_a42){_a42=_a42||function(){};this._UploadProvider.PauseUpload(_a42);},CancelAsync:function(_a43,_a44,_a45){_a45=_a45||function(){};_a43=_a43||5;_a44=_a44||500;this._UploadProvider.AbortUpload(_a43,_a44,_a45);},GetSize:function(){return this._UploadProvider.FSEntry.GetSize();},_GetUploadBehaviourAsync:function(_a46){var _a47=new ITHit.WebDAV.Client.Upload.Events.BeforeUploadStarted(this,_a46);if(this.OnUploadStartedCallback){this.OnUploadStartedCallback(_a47);}else{if(ITHit.Events.ListenersLength(this,_a47.Name)!==0){ITHit.Events.DispatchEvent(this,_a47.Name,_a47);}else{_a46();}}},AddListener:function(_a48,_a49,_a4a){this._ValidateEventName(_a48);_a4a=_a4a||null;ITHit.Events.AddListener(this,_a48,_a49,_a4a);},RemoveListener:function(_a4b,_a4c,_a4d){this._ValidateEventName(_a4b);_a4d=_a4d||null;ITHit.Events.RemoveListener(this,_a4b,_a4c,_a4d);},_ValidateEventName:function(_a4e){switch(_a4e){case ITHit.WebDAV.Client.Upload.Events.EventName.OnStateChanged:case ITHit.WebDAV.Client.Upload.Events.EventName.OnProgressChanged:case ITHit.WebDAV.Client.Upload.Events.EventName.OnError:case ITHit.WebDAV.Client.Upload.Events.EventName.OnBeforeUploadStarted:case ITHit.WebDAV.Client.Upload.Events.EventName.OnUploadError:break;default:throw new ITHit.Exceptions.ArgumentException("Not found event name `"+_a4e+"`");}},GetGroup:function(){return this._GroupManager.GetGroupByItem(this);},_GroupManager:null,_OnStateChangedEventHandler:function(_a4f){var _a50=new ITHit.WebDAV.Client.Upload.Events.StateChanged(this,_a4f.OldState,_a4f.NewState);ITHit.Events.DispatchEvent(this,_a50.Name,_a50);},_OnErrorEventHandler:function(_a51){var _a52=new ITHit.WebDAV.Client.Upload.Events.Error(this,_a51.Error);ITHit.Events.DispatchEvent(this,_a52.Name,_a52);}});})();(function(){"use strict";ITHit.DefineClass("ITHit.WebDAV.Client.Upload.Events.QueueChanged",ITHit.WebDAV.Client.Upload.Events.BaseEvent,{AddedItems:[],RemovedItems:[],constructor:function(_a53,_a54,_a55){this.Name=ITHit.WebDAV.Client.Upload.Events.EventName.OnQueueChanged;this.AddedItems=_a54||[];this.RemovedItems=_a55||[];this.Sender=_a53;}});})();(function(){ITHit.DefineClass("ITHit.WebDAV.Client.Upload.FileSpan",null,{GetStart:function(){return this._Start;},SetStart:function(_a56){if(this._End&&_a56>this._End){throw new ITHit.Exceptions.ArgumentException("Start cant be bigger than end","iStart");}this._Start=_a56;},GetEnd:function(){return this._End;},SetEnd:function(iEnd){if(iEnd<this._Start){throw new ITHit.Exceptions.ArgumentException("End cant be smaller than start","iEnd");}this._End=iEnd||this._Blob.size;},_Start:0,_End:0,_Blob:null,constructor:function(_a58,_a59,iEnd){this._SetBlob(_a58);this.SetStart(_a59);this.SetEnd(iEnd||_a58.size);},_SetBlob:function(_a5b){this._Blob=_a5b;this._Start=0;this._End=_a5b.size;},IsFullFile:function(){return this._Start===0&&this._End===this._Blob.size;},IsPartFile:function(){return !this.IsFullFile();},GetSlice:function(){if(this.IsFullFile()){return this._Blob;}return this._Blob.slice(this._Start,this.End);},GetFile:function(){return this._Blob;},GetFullSize:function(){return this._Blob.size;}});})();(function(){"use strict";ITHit.DefineClass("ITHit.WebDAV.Client.Upload.UploadLocation",null,{constructor:function(_a5c,oUrl){this._FolderGenerator=_a5c;this._Url=oUrl;this._PathMap=new ITHit.WebDAV.Client.Upload.Path.PathCache();},CreateAsync:function(_a5e,_a5f){var _a60=function(_a61){delete this._CancellationCallback;_a5e.call(_a5f,_a61);};this._CancellationCallback=this._FolderGenerator.GeneratePathAsync(this._PathMap,this._Url,_a60,this);},IsExists:function(){return this._PathMap.Has(this._Url);},SetNotExists:function(){var _a62=this._GetAncestorsPaths(this._Url);_a62.forEach(function(oUrl){this._PathMap.Delete(oUrl);},this);},IsInProgress:function(){return !!this._CancellationCallback;},AbortRunningCreationAsync:function(_a64,_a65){if(!this._CancellationCallback){_a64.call(_a65);return;}this._CancellationCallback(function(){_a64.call(_a65);},this);},GetCache:function(){return this._PathMap;},SetCache:function(_a66){this._PathMap=_a66;},_CancellationCallback:null,_FolderGenerator:null,_PathMap:null,_Url:null,_GetAncestorsPaths:function(oUrl){var _a68=oUrl.GetRelativePath().split("/");if(_a68.length===0){return [];}if(_a68[_a68.length-1]===""){_a68=_a68.slice(0,-1);}var _a69=[];var path="";for(var i=0;i<_a68.length-1;i++){if(path!==""){path+="/";}path+=_a68[i];_a69.push(new ITHit.WebDAV.Client.Upload.Utils.DavUrl(path,oUrl.GetBaseUrl()));}return _a69;}});})();(function(){"use strict";var self=ITHit.DefineClass("ITHit.WebDAV.Client.Upload.ContentWriter",null,{Url:null,constructor:function(_a6d,oUrl){this._Session=_a6d;this.Url=oUrl;},SetProgressDebounce:function(_a6f){this._ReportPeriod=_a6f;},BeginWrite:function(_a70){this._InitializeRequestContext();var _a71=null;if(_a70.IsFolder()){_a71=this._CreateMKCOLRequest();this._AddCustomHeaders(_a71);this._RequestContext.AddListener("OnError",this._OnErrorEventHandler,this);_a71.GetResponse(this._OnResponse.bind(this));this._RaiseOnStartEvent();return;}_a71=this._CreatePutRequest(_a70);_a71.Headers.Add("Overwrite","F");this._AddCustomHeaders(_a71);this._RequestContext.AddListener("OnError",this._OnErrorEventHandler,this);_a71.GetResponse(this._OnResponse.bind(this));this._RaiseOnStartEvent();},BeginRewrite:function(_a72){this._InitializeRequestContext();var _a73=null;if(_a72.IsFolder()){_a73=this._CreateMKCOLRequest();this._AddCustomHeaders(_a73);this._RequestContext.AddListener("OnError",this._OnMKCOLRewriteErrorEventHandler,this);_a73.GetResponse(this._OnMKCOLRewriteResponse.bind(this));this._RaiseOnStartEvent();}else{_a73=this._CreatePutRequest(_a72);_a73.Headers.Add("Overwrite","T");this._AddCustomHeaders(_a73);this._RequestContext.AddListener("OnError",this._OnErrorEventHandler,this);_a73.GetResponse(this._OnResponse.bind(this));this._RaiseOnStartEvent();}},BeginAppend:function(_a74){this._InitializeRequestContext();var _a75=this._CreatePutAppendRequest(_a74);_a75.Headers.Add("Overwrite","T");this._AddCustomHeaders(_a75);this._RequestContext.AddListener("OnError",this._OnErrorEventHandler,this);_a75.GetResponse(this._OnResponse.bind(this));this._RaiseOnStartEvent();},AbortAsync:function(_a76,_a77){if(this._RequestContext){this._RequestContext.RemoveListener(ITHit.WebDAV.Client.Request.EVENT_ON_UPLOAD_PROGRESS,this._OnProgressEventHandler,this);this._RequestContext.AbortAsync(_a76,_a77);}},AddListener:function(_a78,_a79,_a7a){_a7a=_a7a||null;this._ValidateEventName(_a78);ITHit.Events.AddListener(this,_a78,_a79,_a7a);},RemoveListener:function(_a7b,_a7c,_a7d){_a7d=_a7d||null;this._ValidateEventName(_a7b);ITHit.Events.RemoveListener(this,_a7b,_a7c,_a7d);},_AddCustomHeaders:function(_a7e){if(!this.CustomHeaders){return;}var _a7f=[];var _a80=_a7e.Headers.GetAll();this.CustomHeaders.forEach(function(_a81){if(_a7f.indexOf(_a81.name)<0&&!_a80.hasOwnProperty(_a81.name)){_a7e.Headers.Add(_a81.name,_a81.value);_a7f.push(_a81.name);}});},_ValidateEventName:function(_a82){switch(_a82){case self.EVENT_ON_PROGRESS:case self.EVENT_ON_ERROR:case self.EVENT_ON_FINISH:case self.EVENT_ON_START:break;default:throw new ITHit.Exceptions.ArgumentException("Not found event name `"+_a82+"`");}},_InitializeRequestContext:function(){if(this.IsActive()){throw new ITHit.Exceptions("Content write already in progress");}this._RequestContext=this._Session.CreateRequest(this.__className);this._RequestContext.AddListener(ITHit.WebDAV.Client.Request.EVENT_ON_UPLOAD_PROGRESS,this._OnProgressEventHandler,this);},_CreateMKCOLRequest:function(){var _a83=this._RequestContext.CreateWebDavRequest(ITHit.WebDAV.Client.Encoder.Encode(this.Url.GetOrigin()),this.Url.GetHref());_a83.Method("MKCOL");this._SetDefaultHeaders(_a83);return _a83;},_OnMKCOLRewriteResponse:function(_a84){if(this._IsConflictResult(_a84)){_a84=this._TransformToSuccess(_a84);}this._OnResponse(_a84);},_OnMKCOLRewriteErrorEventHandler:function(_a85){if(_a85.Error instanceof ITHit.WebDAV.Client.Exceptions.MethodNotAllowedException){return;}},_OnResponse:function(_a86){if(_a86.IsAborted){_a86=ITHit.WebDAV.Client.CancellableResult.CreateAbortedResult(_a86.Error);this._RequestContext.MarkAbort();}else{_a86=ITHit.WebDAV.Client.CancellableResult.CreateFromAsyncResultResult(_a86);this._RequestContext.MarkFinish();}this._RaiseOnFinishEvent(_a86);this._RemoveRequestContextEventListeners();},_CreatePutRequest:function(_a87){var _a88=this._RequestContext.CreateWebDavRequest(ITHit.WebDAV.Client.Encoder.Encode(this.Url.GetOrigin()),this.Url.GetHref());_a88.Method("PUT");if(_a87.GetFile().type){_a88.Headers.Add("Content-Type",_a87.GetFile().type);}_a88.BodyBinary(_a87.GetFile());this._SetDefaultHeaders(_a88);return _a88;},_CreatePutAppendRequest:function(_a89){var _a8a=this._RequestContext.CreateWebDavRequest(ITHit.WebDAV.Client.Encoder.Encode(this.Url.GetOrigin()),this.Url.GetHref());_a8a.Method("PUT");if(_a89.GetFile().type){_a8a.Headers.Add("Content-Type",_a89.GetFile().type);}if(_a89.IsPartFile()){_a8a.Headers.Add("Content-Range",this._GetRangeHeader(_a89));_a8a.BodyBinary(_a89.GetSlice());}else{_a8a.BodyBinary(_a89.GetFile());}this._SetDefaultHeaders(_a8a);return _a8a;},_GetRangeHeader:function(_a8b){return "bytes "+_a8b.GetStart()+"-"+(_a8b.GetEnd()-1)+"/"+_a8b.GetFullSize();},_TransformToSuccess:function(_a8c){return new ITHit.WebDAV.Client.AsyncResult(_a8c.Error,true,null);},_IsConflictResult:function(_a8d){return _a8d.Error instanceof ITHit.WebDAV.Client.Exceptions.MethodNotAllowedException;},_RaiseOnProgressEvent:function(_a8e){ITHit.Events.DispatchEvent(this,self.EVENT_ON_PROGRESS,[{Progress:_a8e,Uploader:this}]);},_RaiseOnErrorEvent:function(_a8f){ITHit.Events.DispatchEvent(this,self.EVENT_ON_ERROR,[{Error:_a8f,Uploader:this}]);},_RaiseOnFinishEvent:function(_a90){ITHit.Events.DispatchEvent(this,self.EVENT_ON_FINISH,[{Uploader:this,Result:_a90}]);},_RaiseOnStartEvent:function(){ITHit.Events.DispatchEvent(this,self.EVENT_ON_START,[{Uploader:this}]);},_OnProgressEventHandler:function(_a91){var iNow=new Date().getTime();if(iNow-this._LastReportTime>this._ReportPeriod||_a91.Progress.BytesTotal===_a91.Progress.BytesLoaded){this._RaiseOnProgressEvent(_a91.Progress);this._LastReportTime=iNow;}},_OnErrorEventHandler:function(_a93){this._RaiseOnErrorEvent(_a93.Error);},_RemoveRequestContextEventListeners:function(){ITHit.Events.RemoveAllListeners(this._RequestContext,"OnUploadProgress");ITHit.Events.RemoveAllListeners(this._RequestContext,"OnError");delete this._RequestContext;},_SetDefaultHeaders:function(_a94){_a94.Headers.Add("If-Modified-Since","Mon, 26 Jul 1997 05:00:00 GMT");_a94.Headers.Add("X-Requested-With","XMLHttpRequest");},IsActive:function(){return !!this._RequestContext;},_Session:null,_RequestContext:null,_ReportPeriod:1000,_LastReportTime:0},{EVENT_ON_PROGRESS:"OnProgress",EVENT_ON_ERROR:"OnError",EVENT_ON_FINISH:"OnFinish",EVENT_ON_START:"OnStart"});})();(function(){"use strict";ITHit.DefineClass("ITHit.WebDAV.Client.Upload.Path.Generator",null,{constructor:function(_a95){this._Session=_a95;this._WorkList=new ITHit.WebDAV.Client.Upload.Collections.Map();},_SendRequest:function(oUrl){var _a97=this._Session.CreateRequest(this.__className+".GeneratePathAsync()");ITHit.WebDAV.Client.Methods.Mkcol.GoAsync(_a97,oUrl.toString(),[],ITHit.WebDAV.Client.Encoder.Encode(oUrl.GetHost()),function(_a98){if(_a98.IsAborted){_a97.MarkAbort();}else{_a97.MarkFinish();}this._CallAwaiters(oUrl,_a98);}.bind(this));return _a97;},_RecurrentGenerate:function(_a99,_a9a,_a9b,_a9c){var _a9d=null;var _a9e=null;var _a9f=function(_aa0,_aa1){if(!!_a9d){_a9d.AbortAsync(_aa0,_aa1);return;}if(!!_a9e){_a9e(_aa0,_aa1);}_aa0.call(_a9c);};var _aa2=_a9a.slice();var _aa3=[];while(_aa2.length>0){var oUrl=_aa2[0];if(!_a99.Has(oUrl)){break;}_aa3.push(oUrl);_aa2.splice(0,1);}if(_aa2.length===0){_a9b.call(_a9c,ITHit.WebDAV.Client.CancellableResult.CreateSuccessfulResult(_aa3));return _a9f;}var _aa5=_aa2.shift();if(!this._IsInWork(_aa5)){_a9d=this._SendRequest(_aa5);}this._AddAwaiter(_aa5,function(_aa6){if(!_aa6.IsSuccess&&!this._IsConflictResult(_aa6)){_a9b.call(_a9c,_aa6);return;}_a99.Add(_aa5);_aa3.push(oUrl);_a9d=null;_a9e=this._RecurrentGenerate(_a99,_aa2,function(_aa7){if(_aa7.IsSuccess||this._IsConflictResult(_aa6)){_aa7.Result.concat(_aa3);_aa7=ITHit.WebDAV.Client.CancellableResult.CreateSuccessfulResult(_aa3);}_a9e=null;_a9b.call(_a9c,_aa7);return;},this);}.bind(this));return _a9f;},GeneratePathAsync:function(_aa8,oUrl,_aaa,_aab){var _aac=this._GetAncestorsPaths(oUrl);if(_aac.length===0){return _aaa.call(_aab,ITHit.WebDAV.Client.AsyncResult.CreateSuccessfulResult([]));}return this._RecurrentGenerate(_aa8,_aac,_aaa,_aab);},_Session:null,_WorkList:null,_GetAncestorsPaths:function(oUrl){var _aae=oUrl.GetRelativePath().split("/");if(_aae.length===0){return [];}if(_aae[_aae.length-1]===""){_aae=_aae.slice(0,-1);}var _aaf=[];var path="";for(var i=0;i<_aae.length-1;i++){if(path!==""){path+="/";}path+=_aae[i];_aaf.push(new ITHit.WebDAV.Client.Upload.Utils.DavUrl(path,oUrl.GetBaseUrl()));}return _aaf;},_IsInWork:function(oUrl){var _ab3=this._WorkList.Get(oUrl.toString());return _ab3&&(_ab3.length>0);},_AddAwaiter:function(oUrl,_ab5){var _ab6=this._WorkList.Get(oUrl.toString());var _ab7=[];if(_ab6){_ab7=_ab7.concat(_ab6);}_ab7.push(_ab5);this._WorkList.Set(oUrl.toString(),_ab7);},_CallAwaiters:function(oUrl,_ab9){var _aba=this._WorkList.Get(oUrl.toString());this._WorkList.Delete(oUrl.toString());_aba.forEach(function(_abb){_abb(_ab9);});},_IsConflictResult:function(_abc){if(_abc.IsSuccess){return false;}if(_abc.Error&&_abc.Error instanceof ITHit.WebDAV.Client.Exceptions.MethodNotAllowedException){return true;}return false;}});})();(function(){ITHit.DefineClass("ITHit.WebDAV.Client.Upload.UploaderSession",ITHit.WebDAV.Client.WebDavSession,{ExistsFolders:[],GetProgressReportAsync:function(sUrl,_abe,_abf){var _ac0=this.CreateRequest(this.__className+".ReportAsync()");var _ac1=ITHit.WebDAV.Client.HierarchyItem.GetHost(sUrl);ITHit.WebDAV.Client.Methods.Report.GoAsync(_ac0,sUrl,_ac1,null,null,function(_ac2){_ac0.MarkFinish();_abe.call(_abf,_ac2);});return _ac0;},CancelUploadAsync:function(sUrl,_ac4){var _ac5=this.CreateRequest(this.__className+".CancelUpload()");var _ac6=ITHit.WebDAV.Client.HierarchyItem.GetHost(sUrl);ITHit.WebDAV.Client.Methods.CancelUpload.GoAsync(_ac5,sUrl,[],_ac6,function(_ac7){_ac5.MarkFinish();var _ac8=new ITHit.WebDAV.Client.AsyncResult(true,true,null);if(_ac7.Error instanceof ITHit.WebDAV.Client.Exceptions.NotFoundException){_ac8=new ITHit.WebDAV.Client.AsyncResult(true,true,null);}else{if(!_ac7.IsSuccess){_ac8=new ITHit.WebDAV.Client.AsyncResult(_ac7.IsSuccess,_ac7.IsSuccess,_ac7.Error);}}_ac4(_ac8);});return _ac5;},CheckExistsAsync:function(sUrl,_aca,_acb){_aca=_aca||function(){};return this.OpenItemAsync(ITHit.WebDAV.Client.Encoder.Encode(sUrl),[],function(_acc){var _acd=new ITHit.WebDAV.Client.AsyncResult(true,true,null);if(_acc.Error instanceof ITHit.WebDAV.Client.Exceptions.NotFoundException){_acd=new ITHit.WebDAV.Client.AsyncResult(false,true,null);}else{if(!_acc.IsSuccess){_acd=new ITHit.WebDAV.Client.AsyncResult(_acc.IsSuccess,_acc.IsSuccess,_acc.Error);}}_aca.call(_acb,_acd);});},DeleteAsync:function(_ace,_acf,_ad0){_acf=_acf||null;var _ad1=ITHit.WebDAV.Client.HierarchyItem.GetHost(_ace);var _ad2=this.CreateRequest(this.__className+".DeleteAsync()");ITHit.WebDAV.Client.Methods.Delete.GoAsync(_ad2,_ace,_acf,_ad1,function(_ad3){if(!_ad3.IsSuccess&&_ad3.Error instanceof ITHit.WebDAV.Client.Exceptions.NotFoundException){_ad3=new ITHit.WebDAV.Client.AsyncResult(true,true,null);}_ad2.MarkFinish();_ad0(_ad3);});return _ad2;},CreateFolderRangeAsync:function(_ad4,_ad5,_ad6,_ad7){_ad5=_ad5||null;_ad6=_ad6||ITHit.Utils.NoOp;var _ad8=_ad4.length;var _ad9=this.CreateRequest(this.__className+".CreateFolderRangeAsync()",_ad8);this._PerformCreateFolderRangeMethodAsync(_ad9,_ad4,_ad5,function(_ada){_ad9.MarkFinish();_ad6.call(_ad7,_ada);});return _ad9;},_PerformCreateFolderRangeMethodAsync:function(_adb,_adc,_add,_ade,_adf){_ade=_ade||ITHit.Utils.NoOp;_adc=_adc.slice();var _ae0=_adc.unshift();var _ae1=ITHit.WebDAV.Client.Encoder.Encode(_ae0.GetHref());var _ae2=ITHit.WebDAV.Client.Encoder.Encode(_ae0.GetHost());ITHit.WebDAV.Client.Methods.Mkcol.GoAsync(_adb,_ae1,_add,_ae2,function(_ae3){if(_ae3.IsSuccess||_ae3.Error instanceof ITHit.WebDAV.Client.Exceptions.MethodNotAllowedException){_ae3=new ITHit.WebDAV.Client.AsyncResult.CreateSuccessfulResult([_ae0]);}if(_adc.length>0&&_ae3.IsSuccess){this._PerformCreateFolderRangeMethodAsync(_adb,_adc,_add,function(_ae4){if(_ae4.IsSuccess){_ae4.Result.push(_ae0);}_ade.call(_adf,_ae4);return;},this);}else{_ade.call(_adf,_ae3);return;}});},CreateUploadLocation:function(oUrl){return new ITHit.WebDAV.Client.Upload.UploadLocation(this.GetPathGenerator(),oUrl);},CreateContentWriter:function(oUrl){return new ITHit.WebDAV.Client.Upload.ContentWriter(this,oUrl);},GetPathGenerator:function(){if(!this._PathGenerator){this._PathGenerator=new ITHit.WebDAV.Client.Upload.Path.Generator(this);}return this._PathGenerator;},_PathGenerator:null});})();(function(){"use strict";ITHit.DefineClass("ITHit.WebDAV.Client.Upload.Utils.RepeatableActionContext",null,{_RoundsCount:0,_IsActive:true,_Handler:null,_EndHandler:null,_RepeatTime:0,constructor:function(_ae7,_ae8,_ae9,_aea){this._RoundsCount=_ae7;this._Handler=_ae9;this._EndHandler=_aea;this._IsActive=!!_ae7;this._RepeatTime=_ae8;},Stop:function(_aeb){this._IsActive=false;this._RoundsCount=0;this._EndHandler(_aeb);},_RunRound:function(){if(this._IsActive){this._Handler(this);}else{this.Stop();}},EndRound:function(_aec){this._RoundsCount--;if(this._RoundsCount===0){this.Stop(_aec);}else{setTimeout(this._RunRound.bind(this),this._RepeatTime);}}});})();(function(){"use strict";ITHit.DefineClass("ITHit.WebDAV.Client.Upload.Utils.RepeatableAction",null,{_Action:null,constructor:function(_aed){this._Action=_aed;},RunAsync:function(_aee,_aef,_af0){var _af1=new ITHit.WebDAV.Client.Upload.Utils.RepeatableActionContext(_aee,_aef,this._Action,_af0);_af1._RunRound();}});})();(function(){"use strict";var self=ITHit.DefineClass("ITHit.WebDAV.Client.Upload.Events.UploadError",ITHit.WebDAV.Client.Upload.Events.AsyncEvent,{Error:null,Skip:function(){if(this._IsHandled){return;}this._SkipRetry(this.Items);},Retry:function(){if(this._IsHandled){return;}this._Retry(this.Items);},constructor:function(_af3,_af4,_af5){this.Name=ITHit.WebDAV.Client.Upload.Events.EventName.OnUploadError;this.Error=_af4;this._super(_af3,_af5);},_Retry:function(){this._Handle(self.GetRetryResult(this.Error));},_SkipRetry:function(){this._Handle(self.GetSkipResult(this.Error));}},{GetSkipResult:function(_af6){return {Action:"skip",Error:_af6};},GetRetryResult:function(_af7){return {Action:"retry",Error:_af7};}});})();(function(){ITHit.DefineClass("ITHit.WebDAV.Client.Upload.Events.Error",ITHit.WebDAV.Client.Upload.Events.BaseEvent,{Error:null,constructor:function(_af8,_af9){this.Name=ITHit.WebDAV.Client.Upload.Events.EventName.OnError;this.Error=_af9;this.Sender=_af8;}});})();(function(){"use strict";ITHit.DefineClass("ITHit.WebDAV.Client.Upload.States.BaseState",null,{OnEnter:function(_afa){},OnLeave:function(_afb){},StartUploadAsync:function(_afc,_afd){_afd();},PauseUpload:function(_afe,_aff){_aff();},AbortUpload:function(_b00,_b01,_b02,_b03){_b03();},Skip:function(_b04){},OnUploadLocationPrepared:function(_b05,_b06){},OnUploadProgressPrepared:function(_b07,_b08){},OnContentCompleted:function(_b09,_b0a){},OnRetryResult:function(_b0b,_b0c){},_CompletePauseAsync:function(_b0d,_b0e,_b0f){if(_b0d.IsRetrySchedule){_b0d.IsRetrySchedule=false;}_b0d.SetState(ITHit.WebDAV.Client.Upload.States.Factory.GetPausedState());_b0e.call(_b0f);},_StartPauseAsync:function(_b10,_b11){_b10._ProgressTracker.StopTracking();_b10.CancelAllRequests(function(){if(_b10.IsContentSend){_b10.SyncProgressWithServerAsync(function(_b12){this._CompletePauseAsync(_b10,_b11);},this);return;}this._CompletePauseAsync(_b10,_b11);},this);}});})();(function(){"use strict";ITHit.DefineClass("ITHit.WebDAV.Client.Upload.States.CompletedState",ITHit.WebDAV.Client.Upload.States.BaseState,{GetAsEnum:function(){return ITHit.WebDAV.Client.Upload.State.Completed;},OnEnter:function(_b13){_b13.GetProgressTracker().StopTracking();_b13.GetProgressTracker().SetCompleted();},StartUploadAsync:function(_b14,_b15){_b14.SetState(ITHit.WebDAV.Client.Upload.States.Factory.GetUploadingState());this._super(_b14,_b15);}});})();(function(){"use strict";ITHit.DefineClass("ITHit.WebDAV.Client.Upload.States.SkippedState",ITHit.WebDAV.Client.Upload.States.BaseState,{GetAsEnum:function(){return ITHit.WebDAV.Client.Upload.State.Skipped;},StartUploadAsync:function(_b16,_b17){_b16.SetState(ITHit.WebDAV.Client.Upload.States.Factory.GetUploadingState());this._super(_b16,_b17);}});})();(function(){"use strict";ITHit.DefineClass("ITHit.WebDAV.Client.Upload.States.QueuedState",ITHit.WebDAV.Client.Upload.States.BaseState,{GetAsEnum:function(){return ITHit.WebDAV.Client.Upload.State.Queued;},StartUploadAsync:function(_b18,_b19){_b18.SetState(ITHit.WebDAV.Client.Upload.States.Factory.GetUploadingState());this._super(_b18,_b19);},Skip:function(_b1a){_b1a.SetState(ITHit.WebDAV.Client.Upload.States.Factory.GetSkippedState());},PauseUpload:function(_b1b,_b1c){this._StartPauseAsync(_b1b,_b1c);},AbortUpload:function(_b1d,_b1e,_b1f,_b20){_b1d.SetState(ITHit.WebDAV.Client.Upload.States.Factory.GetCanceledState());this._super(_b1d,_b1e,_b1f,_b20);}});})();(function(){"use strict";ITHit.DefineClass("ITHit.WebDAV.Client.Upload.States.CanceledState",ITHit.WebDAV.Client.Upload.States.BaseState,{GetAsEnum:function(){return ITHit.WebDAV.Client.Upload.State.Canceled;},OnEnter:function(_b21){_b21.GetProgressTracker().StopTracking();_b21.GetProgressTracker().Reset();},StartUploadAsync:function(_b22,_b23){_b22.SetState(ITHit.WebDAV.Client.Upload.States.Factory.GetUploadingState());this._super(_b22,_b23);}});})();(function(){"use strict";ITHit.DefineClass("ITHit.WebDAV.Client.Upload.States.UploadingState",ITHit.WebDAV.Client.Upload.States.BaseState,{GetAsEnum:function(){return ITHit.WebDAV.Client.Upload.State.Uploading;},OnEnter:function(_b24){_b24.PrepareUploadLocation();},PauseUpload:function(_b25,_b26){this._StartPauseAsync(_b25,_b26);},AbortUpload:function(_b27,_b28,_b29,_b2a){_b27.CancelAllRequests(function(){_b27.GetProgressTracker().StopTracking();_b27.CancelAndDeleteAsync(_b28,_b29,function(_b2b){if(_b2b.IsSuccess){_b27.GetProgressTracker().Reset();_b27.SetState(ITHit.WebDAV.Client.Upload.States.Factory.GetCanceledState());}else{_b27.AddError(_b2b.Error);_b27.SetState(ITHit.WebDAV.Client.Upload.States.Factory.GetFailedState());}_b2a();},this);},this);},OnContentCompleted:function(_b2c,_b2d){var _b2e=_b2d.Result;if(_b2e.IsAborted){return;}if(_b2e.IsSuccess){_b2c.GetProgressTracker().SetCompleted();_b2c.SetState(ITHit.WebDAV.Client.Upload.States.Factory.GetCompletedState());return;}this._HandleError(_b2c,_b2e);},_HandleError:function(_b2f,_b30){_b2f.AddError(_b30.Error);_b2f.BeginRetry(_b30.Error);},OnRetryResult:function(_b31,_b32){if(_b32.Action==="skip"){_b31.AddError(_b32.Error);_b31.SetState(ITHit.WebDAV.Client.Upload.States.Factory.GetFailedState());return;}if(_b31.IsContentSend){_b31.SyncProgressWithServerAsync(function(_b33){if(_b33.Error){this._HandleError(_b32.Error);}else{this.OnEnter(_b31);}},this);return;}this.OnEnter(_b31);},OnUploadLocationPrepared:function(_b34,_b35){if(_b35.IsAborted){return;}if(!_b35.IsSuccess){this._HandleError(_b34,_b35);return;}_b34._SendContent();}});})();(function(){"use strict";ITHit.DefineClass("ITHit.WebDAV.Client.Upload.States.ResumeState",ITHit.WebDAV.Client.Upload.States.UploadingState,{OnEnter:function(_b36){if(_b36.IsContentSend){_b36.PrepareProgress();return;}this._super(_b36);},OnUploadProgressPrepared:function(_b37,_b38){if(_b38.IsAborted){return;}if(!_b38.IsSuccess){this._HandleError(_b37,_b38);return;}if(_b37.GetProgressTracker().IsCompleted()){_b37.SetState(ITHit.WebDAV.Client.Upload.States.Factory.GetCompletedState());}_b37._SendContent();}});})();(function(){"use strict";ITHit.DefineClass("ITHit.WebDAV.Client.Upload.States.PausedState",ITHit.WebDAV.Client.Upload.States.BaseState,{GetAsEnum:function(){return ITHit.WebDAV.Client.Upload.State.Paused;},OnEnter:function(_b39){_b39.GetProgressTracker().StopTracking();_b39.GetProgressTracker().ResetSpeed();},StartUploadAsync:function(_b3a,_b3b){_b3a.SetState(ITHit.WebDAV.Client.Upload.States.Factory.GetResumeState());this._super(_b3a,_b3b);},AbortUpload:function(_b3c,_b3d,_b3e,_b3f){if(_b3c.IsContentSend){_b3c.CancelAndDeleteAsync(_b3d,_b3e,function(_b40){if(_b40.IsSuccess){_b3c.SetState(ITHit.WebDAV.Client.Upload.States.Factory.GetCanceledState());}else{_b3c.AddError(_b40.Error);_b3c.SetState(ITHit.WebDAV.Client.Upload.States.Factory.GetFailedState());}_b3f();},this);}else{_b3c.SetState(ITHit.WebDAV.Client.Upload.States.Factory.GetCanceledState());_b3f();}}});})();(function(){"use strict";ITHit.DefineClass("ITHit.WebDAV.Client.Upload.States.FailedState",ITHit.WebDAV.Client.Upload.States.BaseState,{GetAsEnum:function(){return ITHit.WebDAV.Client.Upload.State.Failed;},OnEnter:function(_b41){_b41.GetProgressTracker().StopTracking();_b41.GetProgressTracker().ResetSpeed();},StartUploadAsync:function(_b42,_b43){_b42.SetState(ITHit.WebDAV.Client.Upload.States.Factory.GetUploadingState());this._super(_b42,_b43);},AbortUpload:function(_b44,_b45,_b46,_b47){if(_b44.IsContentSend){_b44.CancelAndDeleteAsync(_b45,_b46,function(_b48){if(_b48.IsSuccess){_b44.SetState(ITHit.WebDAV.Client.Upload.States.Factory.GetCanceledState());}else{_b44.AddError(_b48.Error);_b44.SetState(ITHit.WebDAV.Client.Upload.States.Factory.GetFailedState());}_b47();},this);}else{_b44.SetState(ITHit.WebDAV.Client.Upload.States.Factory.GetCanceledState());_b47();}}});})();(function(){ITHit.DefineClass("ITHit.WebDAV.Client.Upload.Settings",null,{ConcurrentUploads:2,State:ITHit.WebDAV.Client.Upload.State.Queued,DeleteOnCancel:true});})();(function(){"use strict";var self=ITHit.DefineClass("ITHit.WebDAV.Client.Upload.States.Factory",null,{},{GetUploadingState:function(){if(!self._UploadingState){self._UploadingState=new ITHit.WebDAV.Client.Upload.States.UploadingState();}return self._UploadingState;},GetSkippedState:function(){if(!self._SkippedState){self._SkippedState=new ITHit.WebDAV.Client.Upload.States.SkippedState();}return self._SkippedState;},GetQueuedState:function(){if(!self._QueuedState){self._QueuedState=new ITHit.WebDAV.Client.Upload.States.QueuedState();}return self._QueuedState;},GetPausedState:function(){if(!self._PausedState){self._PausedState=new ITHit.WebDAV.Client.Upload.States.PausedState();}return self._PausedState;},GetFailedState:function(){if(!self._FailedState){self._FailedState=new ITHit.WebDAV.Client.Upload.States.FailedState();}return self._FailedState;},GetCompletedState:function(){if(!self._CompletedState){self._CompletedState=new ITHit.WebDAV.Client.Upload.States.CompletedState();}return self._CompletedState;},GetCanceledState:function(){if(!self._CanceledState){self._CanceledState=new ITHit.WebDAV.Client.Upload.States.CanceledState();}return self._CanceledState;},GetResumeState:function(){if(!self._ResumeState){self._ResumeState=new ITHit.WebDAV.Client.Upload.States.ResumeState();}return self._ResumeState;},GetState:function(_b4a){switch(_b4a){case ITHit.WebDAV.Client.Upload.State.Canceled:return self.GetCanceledState();case ITHit.WebDAV.Client.Upload.State.Completed:return self.GetCompletedState();case ITHit.WebDAV.Client.Upload.State.Failed:return self.GetFailedState();case ITHit.WebDAV.Client.Upload.State.Paused:return self.GetPausedState();case ITHit.WebDAV.Client.Upload.State.Queued:return self.GetQueuedState();case ITHit.WebDAV.Client.Upload.State.Skipped:return self.GetSkippedState();case ITHit.WebDAV.Client.Upload.State.Uploading:return self.GetUploadingState();default:throw new ITHit.Exceptions.ArgumentException(null,"oState");}}});})();(function(){ITHit.DefineClass("ITHit.WebDAV.Client.Upload.ItemSettings",null,{ForceRewrite:false,AlwaysRewriteFolders:true,IgnoreCancelErrors:false,DeleteOnCancel:false});})();(function(){"use strict";ITHit.DefineClass("ITHit.WebDAV.Client.Upload.ServerItem",null,{constructor:function(_b4b,oUrl){this._Session=_b4b;this._Url=oUrl;},GetProgressAsync:function(_b4d,_b4e){return this._Session.GetProgressReportAsync(this._Url.GetHref(),function(_b4f){if(_b4f.IsSuccess&&_b4f.Result[0]){var _b50=_b4f.Result[0];_b4d.call(_b4e,ITHit.WebDAV.Client.AsyncResult.CreateSuccessfulResult(_b50));return;}_b4d.call(_b4e,_b4f);},this);},CancelUploadAsync:function(_b51,_b52){this._Session.CancelUploadAsync(this._Url.GetHref(),function(_b53){_b51.call(_b52,_b53);});},DeleteAsync:function(_b54,_b55,_b56,_b57){var that=this;var _b59=new ITHit.WebDAV.Client.Upload.Utils.RepeatableAction(function(_b5a){that._Session.DeleteAsync(that._Url.GetHref(),null,function(_b5b){if(_b5b.IsSuccess){_b5a.Stop(_b5b);}else{_b5a.EndRound(_b5b);}});});_b59.RunAsync(_b54,_b55,function(_b5c){_b56.call(_b57,_b5c);});},CancelAndDeleteAsync:function(_b5d,_b5e,_b5f,_b60){this.CancelUploadAsync(function(_b61){if(!_b61.IsSuccess){return _b5f.call(_b60,_b61);}this.DeleteAsync(_b5d,_b5e,_b5f,_b60);},this);},_Url:null,_Session:null});})();(function(){"use strict";ITHit.DefineClass("ITHit.WebDAV.Client.Upload.Providers.UploadProvider",null,{Session:null,_UploadItem:null,constructor:function(_b62,_b63,_b64,oUrl,_b66){this.FSEntry=_b64;this.Url=oUrl;this.Settings=new ITHit.WebDAV.Client.Upload.ItemSettings();if(this.FSEntry.IsFile()){this.Settings.DeleteOnCancel=_b66.DeleteOnCancel;}else{this.Settings.DeleteOnCancel=false;}this.Session=_b62;this._UploadItem=_b63;this._ProgressTracker=new ITHit.WebDAV.Client.Upload.Providers.ProgressTracker(this.FSEntry.GetSize());this._State=ITHit.WebDAV.Client.Upload.States.Factory.GetState(_b66.State);this.Errors=[];this.UploadLocation=_b62.CreateUploadLocation(this.Url);this.ServerItem=new ITHit.WebDAV.Client.Upload.ServerItem(_b62,this.Url);this.ContentWriter=_b62.CreateContentWriter(this.Url);this.ContentWriter.AddListener(ITHit.WebDAV.Client.Upload.ContentWriter.EVENT_ON_PROGRESS,this.OnRequestProgressEventHandler,this);this.ContentWriter.AddListener(ITHit.WebDAV.Client.Upload.ContentWriter.EVENT_ON_FINISH,this._LoadHandler,this);this.ContentWriter.AddListener(ITHit.WebDAV.Client.Upload.ContentWriter.EVENT_ON_START,this._StartLoadHandler,this);this._ProgressTracker.OnProgressChanged(this._SetProgress,this);},StartUploadAsync:function(_b67){this._BeginStateChange();this._State.StartUploadAsync(this,_b67);},PauseUpload:function(_b68){this._BeginStateChange();this._State.PauseUpload(this,_b68);},AbortUpload:function(_b69,_b6a,_b6b){this._BeginStateChange();_b6b=_b6b||function(){};this._State.AbortUpload(this,_b69,_b6a,_b6b);},Skip:function(){this._BeginStateChange();this._State.Skip(this);},GetGroup:function(){return this._UploadItem.GetGroup();},GetProgressTracker:function(){return this._ProgressTracker;},_ProgressTracker:null,AddListener:function(_b6c,_b6d,_b6e){this._ValidateEventName(_b6c);_b6e=_b6e||null;ITHit.Events.AddListener(this,_b6c,_b6d,_b6e);},RemoveListener:function(_b6f,_b70,_b71){this._ValidateEventName(_b6f);_b71=_b71||null;ITHit.Events.RemoveListener(this,_b6f,_b70,_b71);},_ValidateEventName:function(_b72){switch(_b72){case ITHit.WebDAV.Client.Upload.Events.EventName.OnStateChanged:case ITHit.WebDAV.Client.Upload.Events.EventName.OnError:case ITHit.WebDAV.Client.Upload.Events.EventName.OnProgressChanged:break;default:throw new ITHit.Exceptions.ArgumentException("Not found event name `"+_b72+"`");}},CheckRetryAsync:function(_b73,_b74,_b75){var _b76=new ITHit.WebDAV.Client.Upload.Events.UploadError(this._UploadItem,_b73,function(_b77){if(!this.IsRetrySchedule){return;}_b74.call(_b75,_b77);}.bind(this));if(!this._UploadItem.OnUploadErrorCallback&&(ITHit.Events.ListenersLength(this._UploadItem,_b76.Name)===0)){_b74.call(_b75,ITHit.WebDAV.Client.Upload.Events.UploadError.GetSkipResult(_b73));return;}this.IsRetrySchedule=true;if(this._UploadItem.OnUploadErrorCallback){this._UploadItem.OnUploadErrorCallback.call(this,_b76);}ITHit.Events.DispatchEvent(this._UploadItem,_b76.Name,_b76);},Errors:null,LastError:null,AddError:function(_b78){this.AddErrorSilent(_b78);this._RiseOnErrorEvent(_b78);},AddErrorSilent:function(_b79){this.LastError=_b79;this.Errors.push(_b79);},SetFailed:function(_b7a){var _b7b=ITHit.WebDAV.Client.Upload.States.Factory.GetFailedState();this.AddError(_b7a);this.SetState(_b7b);},_RiseOnErrorEvent:function(_b7c){var _b7d=new ITHit.WebDAV.Client.Upload.Events.Error(this,_b7c);ITHit.Events.DispatchEvent(this,_b7d.Name,_b7d);},UploadLocation:null,IsContentSend:false,ServerItem:null,_LoadHandler:function(_b7e){if(_b7e.Result.Error instanceof ITHit.WebDAV.Client.Exceptions.ConflictException){this.UploadLocation.SetNotExists();this.IsContentSend=false;}this._State.OnContentCompleted(this,_b7e);},_StartLoadHandler:function(_b7f){this.IsContentSend=true;},OnRequestProgressEventHandler:function(_b80){this.GetProgressTracker().UpdateBytes(_b80.Progress.BytesLoaded,_b80.Progress.TotalBytes);},_SendContent:function(){this._ProgressTracker.StartTracking();if(this.Settings&&this.Settings.CustomHeaders){this.ContentWriter.CustomHeaders=this.Settings.CustomHeaders;}if(this.FSEntry.IsFolder()){if(this.Settings.ForceRewrite||this.Settings.AlwaysRewriteFolders){this.ContentWriter.BeginRewrite(this.FSEntry);}else{this.ContentWriter.BeginWrite(this.FSEntry);}}else{var _b81=new ITHit.WebDAV.Client.Upload.FileSpan(this.FSEntry.GetFile(),this._ProgressTracker.GetProgress().UploadedBytes);if(_b81.IsFullFile()&&(this.Settings.ForceRewrite||this.IsContentSend)){this.ContentWriter.BeginRewrite(this.FSEntry);return;}if(_b81.IsFullFile()&&!(this.Settings.ForceRewrite&&this.IsContentSend)){this.ContentWriter.BeginWrite(this.FSEntry);return;}this.ContentWriter.BeginAppend(_b81);}},SyncProgressWithServerAsync:function(_b82,_b83){if(!this._ProgressTracker.IsCountable()){return this.Session.CheckExistsAsync(this.Url.GetUrl(),function(_b84){if(!_b84.IsSuccess){_b82.call(_b83,_b84);return;}if(_b84.Result===true){this._ProgressTracker.SetCompleted();_b82.call(_b83,ITHit.WebDAV.Client.CancellableResult.CreateSuccessfulResult(this._ProgressTracker.GetProgress()));return;}this._ProgressTracker.Reset();_b82.call(_b83,ITHit.WebDAV.Client.CancellableResult.CreateSuccessfulResult(this._ProgressTracker.GetProgress()));},this);}return this.ServerItem.GetProgressAsync(function(_b85){if(_b85.IsSuccess){this._ProgressTracker.SyncProgress(_b85.Result);_b82.call(_b83,ITHit.WebDAV.Client.CancellableResult.CreateSuccessfulResult(this._ProgressTracker.GetProgress()));return;}if(_b85.Error instanceof ITHit.WebDAV.Client.Exceptions.NotFoundException){this._ProgressTracker.Reset();_b82.call(_b83,ITHit.WebDAV.Client.CancellableResult.CreateSuccessfulResult(this._ProgressTracker.GetProgress()));return;}_b82.call(_b83,ITHit.WebDAV.Client.CancellableResult.CreateFailedResult(_b85.Error));},this);},IsRetrySchedule:false,PrepareUploadLocation:function(){this.UploadLocation.SetCache(this.GetGroup().PathMap);this.UploadLocation.CreateAsync(this._OnGeneratePathCompleted,this);},_OnGeneratePathCompleted:function(_b86){if(_b86.IsAborted){return;}this._State.OnUploadLocationPrepared(this,_b86);},CancelAllRequests:function(_b87,_b88){this._CancelProgressAsync(function(){this._CancelLocationCreateAsync(function(){this._CancelContentSendingAsync(_b87,_b88);},this);},this);},_CancelLocationCreateAsync:function(_b89,_b8a){if(this.UploadLocation.IsInProgress()){this.UploadLocation.AbortRunningCreationAsync(function(){_b89.call(_b8a);},this);}else{_b89.call(_b8a);}},_CancelContentSendingAsync:function(_b8b,_b8c){if(this.ContentWriter.IsActive()){this.ContentWriter.AbortAsync(function(){_b8b.call(_b8c);},this);}else{_b8b.call(_b8c);}},_CancelProgressAsync:function(_b8d,_b8e){if(this.IsProgressSyncInProgress){this._SyncProgressRequest.AbortAsync(function(){_b8d.call(_b8e);},this);}else{_b8d.call(_b8e);}},_SyncProgressRequest:null,IsProgressSyncInProgress:false,PrepareProgress:function(){this._SyncProgressRequest=this.SyncProgressWithServerAsync(this._OnUpdateFromServerCompleted,this);},_OnUpdateFromServerCompleted:function(_b8f){this.IsProgressSyncInProgress=false;if(_b8f.IsAborted){return;}this._State.OnUploadProgressPrepared(this,_b8f);},_IsStateChanging:function(){return this._IsChanging;},SetState:function(_b90){var _b91=this._State;this._State.OnLeave(this);this._State=_b90;this._State.OnEnter(this);var _b92=new ITHit.WebDAV.Client.Upload.Events.StateChanged(this,_b91.GetAsEnum(),this._State.GetAsEnum());ITHit.Events.DispatchEvent(this,_b92.Name,_b92);},GetState:function(){return this._State;},_State:null,_IsChanging:false,_BeginStateChange:function(){this._IsChanging=true;},_EndStateChange:function(){this._IsChanging=false;},ContentWriter:null,BeginRetry:function(_b93){this._ProgressTracker.StopTracking();this.CheckRetryAsync(_b93,this._OnCheckRetryCompleted,this);},_OnCheckRetryCompleted:function(_b94){this._State.OnRetryResult(this,_b94);},Settings:null,FSEntry:null,Url:null,CancelAndDeleteAsync:function(_b95,_b96,_b97,_b98){this.ServerItem.CancelUploadAsync(function(_b99){if(!this.Settings.DeleteOnCancel){_b97.call(_b98,ITHit.WebDAV.Client.AsyncResult.CreateSuccessfulResult(null));return;}this.ServerItem.DeleteAsync(_b95,_b96,function(_b9a){if(!_b9a.IsSuccess&&!this.Settings.IgnoreCancelErrors){return _b97.call(_b98,_b99);}this.IsContentSend=false;_b97.call(_b98,ITHit.WebDAV.Client.AsyncResult.CreateSuccessfulResult(null));},this);},this);},GetProgress:function(){return this._ProgressTracker.GetProgress();},_SetProgress:function(_b9b){var _b9c=this._Progress;this._Progress=_b9b;var _b9d=new ITHit.WebDAV.Client.Upload.Events.ProgressChanged(this,_b9c,_b9b);ITHit.Events.DispatchEvent(this,_b9d.Name,_b9d);}});})();(function(){"use strict";ITHit.DefineClass("ITHit.WebDAV.Client.Upload.Events.UploadItemsCreated",ITHit.WebDAV.Client.Upload.Events.AsyncEvent,{Items:[],Skip:function(_b9e){if(this._IsHandled){return;}this._Skip(_b9e);},SkipAll:function(){if(this._IsHandled){return;}this._Skip(this.Items);},OverwriteAll:function(){if(this._IsHandled){return;}this._Overwrite(this.Items);},Overwrite:function(_b9f){if(this._IsHandled){return;}this._Overwrite(_b9f);},UploadAll:function(){if(this._IsHandled){return;}this.Upload(this.Items);},Upload:function(_ba0){if(this._IsHandled){return;}this._Handle({Skip:[],Overwrite:[],Original:this.Items,Upload:_ba0});},constructor:function(_ba1,_ba2,_ba3){this.Name=ITHit.WebDAV.Client.Upload.Events.EventName.OnUploadItemsCreated;this.Items=_ba2||[];this._super(_ba1,_ba3);},_Overwrite:function(_ba4){var _ba5=this._CreateResult([],_ba4);this._Handle(_ba5);},_Skip:function(_ba6){var _ba7=this._CreateResult(_ba6,[]);this._Handle(_ba7);},_CreateResult:function(_ba8,_ba9){return {Skip:_ba8||[],Overwrite:_ba9||[],Original:this.Items};},_Handle:function(_baa){_baa=_baa||this._CreateResult();this._super(_baa);}});})();(function(){"use strict";ITHit.DefineClass("ITHit.WebDAV.Client.Upload.Utils.Array",null,{},{MapParallel:function(_bab,_bac,_bad,_bae){var _baf=[];var _bb0=0;if(_bab.length===0){setTimeout(_bad.apply(_bae,_bab));}for(var i=0;i<_bab.length;i++){_bac.apply(_bae,[_bab[i],i,_bab,ITHit.Utils.MakeScopeClosure(this,function(i,_bb3){_baf[i]=_bb3;_bb0++;if(_bb0===_bab.length){setTimeout(_bad.call(_bae,_baf));}},i)]);}},DistinctBy:function(_bb4,_bb5,_bb6){var map=Object.create(null);_bb5=_bb5||Object.prototype.toString;for(var i=0;i<_bb4.length;i++){var _bb9=_bb5.call(_bb6,_bb4[i]).toString();if(!map[_bb9]){map[_bb9]=_bb4[i];}}return Object.keys(map).map(function(sKey){return map[sKey];});},Take:function(_bbb,_bbc){if(!_bbc){return [_bbb.shift()];}var _bbd=(_bbb.length>_bbc)?_bbc:_bbb.length;var _bbe=[];for(var i=0;i<_bbd;i++){_bbe.push(_bbb.shift());}return _bbe;},Remove:function(_bc0,_bc1){var _bc2=_bc0.indexOf(_bc1);if(_bc2>-1){_bc0.splice(_bc2,1);}}});})();(function(){"use strict";ITHit.DefineClass("ITHit.WebDAV.Client.Upload.AutoUploader",null,{constructor:function(_bc3){this._ParallelUploads=_bc3||0;this._QueueArray=[];this._Active=[];this._Reserve=0;},AddRange:function(_bc4){_bc4.forEach(this._AddToQueue,this);this._StartUploads();},Add:function(_bc5){this._AddToQueue(_bc5);this._StartUploads();},Remove:function(_bc6){_bc6.RemoveListener(ITHit.WebDAV.Client.Upload.Events.EventName.OnStateChanged,this._OnStateChangeEventHandler,this);ITHit.WebDAV.Client.Upload.Utils.Array.Remove(this._QueueArray,_bc6);ITHit.WebDAV.Client.Upload.Utils.Array.Remove(this._Active,_bc6);this._StartUploads();},Reserve:function(_bc7){_bc7=_bc7||1;this._Reserve+=_bc7;},Release:function(_bc8){_bc8=_bc8||1;this._Reserve-=_bc8;this._StartUploads();},GetBusy:function(){return this._Active.length+this._Reserve;},GetFree:function(){var _bc9=this.GetBusy();if(_bc9>=this._ParallelUploads){return 0;}else{if(_bc9===0){return this._ParallelUploads;}else{return (this._ParallelUploads-_bc9)%this._ParallelUploads;}}},_QueueArray:null,_Active:null,_ParallelUploads:0,_OnStateChangeEventHandler:function(_bca){if(_bca.NewState!==ITHit.WebDAV.Client.Upload.State.Uploading){this.Remove(_bca.Sender);}else{this._StartUploads();}},_StartUploads:function(){if(this._QueueArray.length===0){return;}var _bcb=this.GetFree();if(_bcb<=0){return;}var _bcc=ITHit.WebDAV.Client.Upload.Utils.Array.Take(this._QueueArray,_bcb);if(_bcc.length<1){return;}this.Reserve(_bcc.length);_bcc.forEach(this._StartSingle,this);},_StartSingle:function(_bcd){this._Active.push(_bcd);_bcd.StartAsync();this.Release();},_AddToQueue:function(_bce){this._QueueArray.push(_bce);_bce.AddListener(ITHit.WebDAV.Client.Upload.Events.EventName.OnStateChanged,this._OnStateChangeEventHandler,this);},_Reserve:0});})();(function(){"use strict";ITHit.DefineClass("ITHit.WebDAV.Client.Upload.Queue",null,{Uploader:null,_UnderlyingArray:null,_Session:null,_AutoUploader:null,constructor:function(_bcf){this.Uploader=_bcf;this._Session=new ITHit.WebDAV.Client.Upload.UploaderSession();this._UnderlyingArray=[];this._GroupManager=new ITHit.WebDAV.Client.Upload.Groups.GroupManager();this._AutoUploader=new ITHit.WebDAV.Client.Upload.AutoUploader(this.Uploader.Settings.ConcurrentUploads);},ShouldReplaceDuplicate:function(_bd0){var _bd1=this.GetByUrl(_bd0.GetUrl());var _bd2=_bd1.GetState();return !(_bd2===ITHit.WebDAV.Client.Upload.State.Uploading||_bd2===ITHit.WebDAV.Client.Upload.State.Paused);},AddGroup:function(sUrl,_bd4,_bd5){var _bd6=[];for(var i=0;i<_bd4.length;i++){var _bd8=_bd4[i];var _bd9=new ITHit.WebDAV.Client.Upload.UploadItem(sUrl,_bd8,_bd5,this._Session,this._GroupManager,this.Uploader.Settings);if(this.HasUrl(_bd9.GetUrl())){if(this.ShouldReplaceDuplicate(_bd9)){this.RemoveByUrl(_bd9.GetUrl());}else{continue;}}_bd6.push(_bd9);}this._DispatchOnUploadItemsCreatedAsync(_bd6,this._OnUploadItemsCreatedAsyncDispatched.bind(this));},Add:function(_bda){var sUrl=_bda.GetUrl();if(this.HasUrl(sUrl)){return;}this._UnderlyingArray.push(_bda);var _bdc=new ITHit.WebDAV.Client.Upload.Events.QueueChanged(this,[_bda]);ITHit.Events.DispatchEvent(this,_bdc.Name,[_bdc]);this._AutoUploader.Add(_bda);},AddRange:function(_bdd){for(var i=0;i<_bdd.length;i++){var _bdf=_bdd[i];var sUrl=_bdf.GetUrl();if(this.HasUrl(sUrl)){continue;}this._UnderlyingArray.push(_bdf);}this._GroupManager.CreateGroup(_bdd);this._OnQueueChanged(_bdd,null);var _be1=_bdd.filter(function(_be2){return _be2.GetState()===ITHit.WebDAV.Client.Upload.State.Queued;});this._AutoUploader.AddRange(_be1);},Restart:function(_be3){for(var i=0;i<_be3.length;i++){if(!this.HasUrl(_be3[i].GetUrl())){throw new ITHit.Exceptions.ArgumentException("Item should be a part of queue`");}}this._AutoUploader.AddRange(_be3);},GetByUrl:function(sUrl){return ITHit.Utils.FindBy(this._UnderlyingArray,function(_be6){return _be6.GetUrl()===sUrl;});},GetLength:function(){return this._UnderlyingArray.length;},HasUrl:function(sUrl){return !!this.GetByUrl(sUrl);},RemoveByUrl:function(sUrl){var _be9=this.GetByUrl(sUrl);if(!_be9){return;}var _bea=_be9.GetState();if(_bea===ITHit.WebDAV.Client.Upload.State.Uploading||_bea===ITHit.WebDAV.Client.Upload.State.Paused){_be9.Abort();}var _beb=ITHit.Utils.IndexOf(this._UnderlyingArray,_be9);this._UnderlyingArray.splice(_beb,1);this._OnQueueChanged(null,[_be9]);this._AutoUploader.Remove(_be9);},OnUploadItemsCreatedCallback:null,_OnQueueChanged:function(_bec,_bed){var _bee=new ITHit.WebDAV.Client.Upload.Events.QueueChanged(this,_bec,_bed);ITHit.Events.DispatchEvent(this,_bee.Name,[_bee]);},_DispatchOnUploadItemsCreatedAsync:function(_bef,_bf0){var _bf1=new ITHit.WebDAV.Client.Upload.Events.UploadItemsCreated(this,_bef.slice(),_bf0);if(!this.OnUploadItemsCreatedCallback&&(ITHit.Events.ListenersLength(this,_bf1.Name)===0)){_bf1.OverwriteAll();}if(this.OnUploadItemsCreatedCallback){this.OnUploadItemsCreatedCallback(_bf1);}ITHit.Events.DispatchEvent(this,_bf1.Name,_bf1);},AddListener:function(_bf2,_bf3,_bf4){_bf4=_bf4||null;switch(_bf2){case ITHit.WebDAV.Client.Upload.Events.EventName.OnQueueChanged:case ITHit.WebDAV.Client.Upload.Events.EventName.OnUploadItemsCreated:ITHit.Events.AddListener(this,_bf2,_bf3,_bf4);break;default:throw new ITHit.WebDAV.Client.Exceptions.WebDavException("Not found event name `"+_bf2+"`");}},RemoveListener:function(_bf5,_bf6,_bf7){ITHit.Events.RemoveListener(this,_bf5,_bf6,_bf7);},_OnUploadItemsCreatedAsyncDispatched:function(_bf8){if(_bf8.Upload){this.AddRange(_bf8.Upload);return;}this._OnUploadItemsCreatedAsyncDispatchedDeprecated(_bf8);},_OnUploadItemsCreatedAsyncDispatchedDeprecated:function(_bf9){var _bfa=this._FilterSkippedItems(_bf9);var _bfb=this._CreateUrlUploadItemMap(_bf9.Overwrite);_bfa.forEach(function(_bfc){if(_bfb.Has(_bfc.GetUrl())){_bfc.SetOverwrite(true);}});this.AddRange(_bfa);},_FilterSkippedItems:function(_bfd){var _bfe=this._CreateUrlUploadItemMap(_bfd.Skip);return _bfd.Original.filter(function(_bff){return !_bfe.Has(_bff.GetUrl());});},_CreateUrlUploadItemMap:function(_c00){var oMap=new ITHit.WebDAV.Client.Upload.Collections.Map();_c00.forEach(function(_c02){oMap.Set(_c02.GetUrl(),_c02);});return oMap;},_GroupManager:null});})();(function(){"use strict";var _c03=ITHit.DefineClass("ITHit.WebDAV.Client.Upload.DropZoneCollection",null,{_UnderlyingSet:null,Uploader:null,constructor:function(_c04){this._Uploader=_c04;this._UnderlyingSet={};},AddById:function(_c05){var _c06=this.GetById(_c05);if(_c06){return _c06;}var _c07=new ITHit.WebDAV.Client.Upload.Controls.DropZone(_c05);this._UnderlyingSet[_c05]=_c07;this._RaiseOnCollectionChanged([_c07],[]);return _c07;},GetById:function(_c08){return this._UnderlyingSet[_c08];},RemoveById:function(_c09){var _c0a=this.GetById(_c09);if(_c0a){delete this._UnderlyingSet[_c09];this._RaiseOnCollectionChanged([],[_c0a]);}},AddListener:function(_c0b,_c0c,_c0d){_c0d=_c0d||null;this._CheckEventNameOtThrow(_c0b);ITHit.Events.AddListener(this,_c0b,_c0c,_c0d);},RemoveListener:function(_c0e,_c0f,_c10){_c10=_c10||null;this._CheckEventNameOtThrow(_c0e);ITHit.Events.RemoveListener(this,_c0e,_c0f,_c10);},_CheckEventNameOtThrow:function(_c11){if(_c11!==_c03.EVENT_ON_COLLECTION_CHANGED){throw new ITHit.WebDAV.Client.Exceptions.NotFoundEventNameException(_c11);}},_RaiseOnCollectionChanged:function(_c12,_c13){ITHit.Events.DispatchEvent(this,_c03.EVENT_ON_COLLECTION_CHANGED,[{Sender:this,AddedItems:_c12||[],RemovedItems:_c13||[]}]);}},{EVENT_ON_COLLECTION_CHANGED:"OnCollectionChanged"});})();(function(){var _c14=ITHit.DefineClass("ITHit.WebDAV.Client.Upload.InputCollection",null,{_UnderlyingSet:null,Uploader:null,constructor:function(_c15){this._UnderlyingArray=[];this._Uploader=_c15;},AddById:function(_c16){var _c17=new ITHit.WebDAV.Client.Upload.Controls.Input(_c16);this._UnderlyingArray[_c16]=_c17;this._RaiseOnCollectionChanged([_c17],[]);return _c17;},GetById:function(_c18){return this._UnderlyingArray[_c18];},RemoveById:function(_c19){var _c1a=this.GetById(_c19);if(_c1a){delete this._UnderlyingSet[_c19];this._RaiseOnCollectionChanged([],[_c1a]);}},AddListener:function(_c1b,_c1c,_c1d){_c1d=_c1d||null;this._CheckEventNameOtThrow(_c1b);ITHit.Events.AddListener(this,_c1b,_c1c,_c1d);},RemoveListener:function(_c1e,_c1f,_c20){_c20=_c20||null;this._CheckEventNameOtThrow(_c1e);ITHit.Events.RemoveListener(this,_c1e,_c1f,_c20);},_CheckEventNameOtThrow:function(_c21){if(_c21!==_c14.EVENT_ON_COLLECTION_CHANGED){throw new ITHit.WebDAV.Client.Exceptions.NotFoundEventNameException(_c21);}},_RaiseOnCollectionChanged:function(_c22,_c23){ITHit.Events.DispatchEvent(this,_c14.EVENT_ON_COLLECTION_CHANGED,[{Sender:this,AddedItems:_c22||[],RemovedItems:_c23||[]}]);}},{EVENT_ON_COLLECTION_CHANGED:"OnCollectionChanged"});})();(function(){"use strict";ITHit.DefineClass("ITHit.WebDAV.Client.Upload.Uploader",null,{DropZones:null,Inputs:null,Queue:null,Settings:null,_UploadProvider:null,constructor:function(){this.Inputs=new ITHit.WebDAV.Client.Upload.InputCollection(this);this.Inputs.AddListener(ITHit.WebDAV.Client.Upload.InputCollection.EVENT_ON_COLLECTION_CHANGED,this._OnControlCollectionChangedEventHandler,this);this.DropZones=new ITHit.WebDAV.Client.Upload.DropZoneCollection(this);this.DropZones.AddListener(ITHit.WebDAV.Client.Upload.DropZoneCollection.EVENT_ON_COLLECTION_CHANGED,this._OnControlCollectionChangedEventHandler,this);this.Settings=new ITHit.WebDAV.Client.Upload.Settings();this.Queue=new ITHit.WebDAV.Client.Upload.Queue(this);},SetUploadUrl:function(sUrl){this._UploadUrl=sUrl;},GetUploadUrl:function(){return this._UploadUrl;},_OnControlCollectionChangedEventHandler:function(_c25){_c25.AddedItems.forEach(function(_c26){_c26.AddListener(ITHit.WebDAV.Client.Upload.Controls.HtmlControl.EVENT_ON_FILE_INPUT_HANDLED,this._OnFileInputEventHandler.bind(this));}.bind(this));_c25.RemovedItems.forEach(function(_c27){_c27.RemoveListener(ITHit.WebDAV.Client.Upload.Controls.HtmlControl.EVENT_ON_FILE_INPUT_HANDLED,this._OnFileInputEventHandler.bind(this));}.bind(this));},_OnFileInputEventHandler:function(_c28){this.Queue.AddGroup(this._UploadUrl,_c28.AsyncResult.Result,_c28.Source);}});})();ITHit.Temp={};
|
|
87
|
+
(function(){ITHit.DefineClass("ITHit.Environment",null,{__static:{OS:ITHit.DetectOS.OS}});})();ITHit.oNS=ITHit.Declare("ITHit.Exceptions");ITHit.oNS.LoggerException=function(_100,_101){ITHit.Exceptions.LoggerException.baseConstructor.call(this,_100,_101);};ITHit.Extend(ITHit.oNS.LoggerException,ITHit.Exception);ITHit.oNS.LoggerException.prototype.Name="LoggerException";ITHit.DefineClass("ITHit.LogLevel",null,{},{All:32,Debug:16,Info:8,Warn:4,Error:2,Fatal:1,Off:0});(function(){var _102={};var _103={};var _104={};for(var _105 in ITHit.LogLevel){_102[ITHit.LogLevel[_105]]=[];_104[ITHit.LogLevel[_105]]=[];}var _106=function(_107,_108,iTo,_10a){for(var _10b in ITHit.LogLevel){if(ITHit.LogLevel[_10b]>iTo){continue;}if(!ITHit.LogLevel[_10b]||(_108>=ITHit.LogLevel[_10b])){continue;}if(_107){_104[ITHit.LogLevel[_10b]].push(_10a);}else{for(var i=0;i<_104[ITHit.LogLevel[_10b]].length;i++){if(_104[ITHit.LogLevel[_10b]][i]==_10a){_104[ITHit.LogLevel[_10b]].splice(i,1);}}}}};_106.add=function(iTo,_10e){_106.increase(ITHit.LogLevel.Off,iTo,_10e);};_106.del=function(iTo,_110){_106.decrease(ITHit.LogLevel.Off,iTo,_110);};_106.increase=function(_111,iTo,_113){_106(true,_111,iTo,_113);};_106.decrease=function(_114,iTo,_116){_106(false,_114,iTo,_116);};ITHit.DefineClass("ITHit.Logger",null,{},{Level:ITHit.Config.LogLevel||ITHit.LogLevel.Debug,AddListener:function(_117,_118){if(_118==ITHit.LogLevel.Off){this.RemoveListener();}var _119=0;var _11a=0;outer:for(var _11b in _102){for(var i=0;i<_102[_11b].length;i++){if(_102[_11b][i]==_117){_119=_11b;_11a=i;break outer;}}}if(!_119){_102[_118].push(_117);_106.add(_118,_117);}else{if(_118!=_119){_102[_119].splice(_11a,1);_102[_118].push(_117);if(_118>_119){_106.increase(_119,_118,_117);}else{_106.decrease(_118,_119,_117);}}}},RemoveListener:function(_11d){outer:for(var _11e in _102){for(var i=0;i<_102[_11e].length;i++){if(_102[_11e][i]==_11d){_102[_11e].splice(i,1);_106.del(_11e,_11d);break outer;}}}return true;},SetLogLevel:function(_120,_121){return this.AddListener(_120,_121,true);},GetLogLevel:function(_122){for(var _123 in _102){for(var i=0;i<_102[_123].length;i++){if(_102[_123][i]==_122){return _123;}}}return false;},GetListenersForLogLevel:function(_125){return _104[_125];},GetCount:function(_126){return _104[_126].length;},WriteResponse:function(_127){if(Logger.GetCount(ITHit.LogLevel.Info)){var sStr="";if(_127 instanceof HttpWebResponse){sStr+="\n"+_127.StatusCode+" "+_127.StatusDescription+"\n";}sStr+=_127.ResponseUri+"\n";for(var _129 in _127.Headers){sStr+=_129+": "+_127.Headers[_129]+"\n";}sStr+=_127.GetResponse();this.WriteMessage(sStr);}},WriteMessage:function(_12a,_12b){_12b=("undefined"==typeof _12b)?ITHit.LogLevel.Info:parseInt(_12b);if(ITHit.Logger.GetCount(_12b)){var _12c=this.GetListenersForLogLevel(_12b);var _12a=String(_12a).replace(/([^\n])$/,"$1\n");for(var i=0;i<_12c.length;i++){try{_12c[i](_12a,ITHit.LogLevel.Info);}catch(e){if(!_12c[i] instanceof Function){throw new ITHit.Exceptions.LoggerException("Log listener expected function, passed: \""+_12c[i]+"\"",e);}else{throw new ITHit.Exceptions.LoggerException("Message could'not be logged.",e);}}}}},StartLogging:function(){},FinishLogging:function(){},StartRequest:function(){},FinishRequest:function(){}});})();ITHit.oNS=ITHit.Declare("ITHit.Exceptions");ITHit.oNS.PhraseException=function(_12e,_12f){ITHit.Exceptions.PhraseException.baseConstructor.call(this,_12e,_12f);};ITHit.Extend(ITHit.oNS.PhraseException,ITHit.Exception);ITHit.oNS.PhraseException.prototype.Name="PhraseException";ITHit.Phrases=(function(){var _130={};var _131=function(_132){this._arguments=_132;};_131.prototype.Replace=function(_133){var _134=_133.substr(1,_133.length-2);return ("undefined"!=typeof this._arguments[_134])?this._arguments[_134]:_133;};var _135=function(_136){this._phrase=_136;};_135.prototype.toString=function(){return this._phrase;};_135.prototype.Paste=function(){var _137=this._phrase;if(/\{\d+?\}/.test(_137)){var _138=new _131(arguments);_137=_137.replace(/\{(\d+?)\}/g,function(args){return _138.Replace(args);});}return _137;};var _13a=function(){};_13a.prototype.LoadJSON=function(_13b,_13c){var _13d=ITHit.Utils;if(_13c&&!_13d.IsString(_13c)){throw new ITHit.Exceptions.PhraseException("Namespace expected to be a string.");}var _13e=this;if(_13c){_13e=ITHit.Declare(_13c);}try{var _13f=_13b;if(_13d.IsString(_13f)){_13f=eval("("+_13b+")");}this._AddPhrases(_13f,_13e);}catch(e){console.dir(e);throw new ITHit.Exceptions.PhraseException("Wrong text structure.",e);}};_13a.prototype.LoadLocalizedJSON=function(_140,_141,_142){var _143=ITHit.Utils,_144=_143.IsUndefined,_145=_143.IsObject;if(!_140||!_143.IsObjectStrict(_140)){throw new ITHit.Exceptions.PhraseException("Default phrases expected to be an JSON object.");}if(_141&&!_143.IsObjectStrict(_141)){throw new ITHit.Exceptions.PhraseException("Default phrases expected to be an JSON object");}var _146;if(_141){_146={};this._MergePhrases(_146,_141);this._MergePhrases(_146,_140);}else{_146=_140;}this.LoadJSON(_146,_142);};_13a.prototype._MergePhrases=function(dest,_148){var _149=ITHit.Utils,_14a=_149.IsUndefined,_14b=_149.IsObject;for(var prop in _148){if(!_148.hasOwnProperty(prop)){continue;}if(_14a(dest[prop])){dest[prop]=_148[prop];}else{if(_14b(dest[prop])){this._MergePhrases(dest[prop],_148[prop]);}}}};_13a.prototype._AddPhrases=function(_14d,_14e){_14e=_14e||this;for(var _14f in _14d){if(("object"!=typeof _14d[_14f])||!(_14d[_14f] instanceof Object)){switch(_14f){case "_AddPhrases":case "LoadJSON":case "LoadLocalizedJSON":case "_Merge":case "prototype":case "toString":throw new ITHit.Exceptions.PhraseException("\""+_14f+"\" is reserved word.");break;}_14e[_14f]=new _135(_14d[_14f]);}else{this._AddPhrases(_14d[_14f],_14e[_14f]?_14e[_14f]:(_14e[_14f]={}));}}};return new _13a();})();ITHit.oNS=ITHit.Declare("ITHit.Exceptions");ITHit.oNS.XPathException=function(_150,_151){ITHit.Exceptions.XPathException.baseConstructor.call(this,_150,_151);};ITHit.Extend(ITHit.oNS.XPathException,ITHit.Exception);ITHit.oNS.XPathException.prototype.Name="XPathException";ITHit.XPath={_component:null,_version:null};ITHit.XPath.evaluate=function(_152,_153,_154,_155,_156){if(("string"!=typeof _152)&&!(_152 instanceof String)){throw new ITHit.Exceptions.XPathException("Expression was expected to be a string in ITHit.XPath.eveluate.");}if(!(_153 instanceof ITHit.XMLDoc)){throw new ITHit.Exceptions.XPathException("Element was expected to be an ITHit.XMLDoc object in ITHit.XPath.evaluate.");}if(_154&&!(_154 instanceof ITHit.XPath.resolver)){throw new ITHit.Exceptions.XPathException("Namespace resolver was expected to be an ITHit.XPath.resolver object in ITHit.XPath.evaluate.");}if(_155&&!(_155 instanceof ITHit.XPath.result)){throw new ITHit.Exceptions.XPathException("Result expected to be an ITHit.XPath.result object in ITHit.XPath.evaluate.");}_154=_154||null;_155=_155||null;if(document.implementation.hasFeature("XPath","3.0")&&document.evaluate){var _157=_153._get();var _158=_157.ownerDocument||_157;if(_155){_158.evaluate(_152,_157,_154,ITHit.XPath.result.UNORDERED_NODE_SNAPSHOT_TYPE,_155._res);return;}var oRes=new ITHit.XPath.result(_158.evaluate(_152,_157,_154,ITHit.XPath.result.UNORDERED_NODE_SNAPSHOT_TYPE,null));if(!_156){return oRes;}else{return oRes.iterateNext();}}else{if(undefined!==window.ActiveXObject){var _157=_153._get();var _15a=false;try{_157.getProperty("SelectionNamespaces");_15a=true;}catch(e){}var _15b=false;if(3==ITHit.XMLDoc._version){var sXml=_157.xml.replace(/^\s+|\s+$/g,"");var _15d="urn:uuid:c2f41010-65b3-11d1-a29f-00aa00c14882/";var _15e="cutted";if(-1!=sXml.indexOf(_15d)||true){var _15f=sXml.replace(_15d,_15e);var _160=new ITHit.XMLDoc();_160.load(_15f);if(_154){var oNs=_154.getAll();for(var _162 in oNs){if(_15d==oNs[_162]){oNs.add(_162,_15e);break;}}}_157=_160._get();_15a=true;_15b=true;}}if(_15a&&_154&&_154.length()){var _163=_154.getAll();var aNs=[];for(var _162 in _163){aNs.push("xmlns:"+_162+"='"+_163[_162]+"'");}_157.setProperty("SelectionNamespaces",aNs.join(" "));}if(_15b){_157=_157.documentElement;}try{if(!_156){if(!_155){return new ITHit.XPath.result(_157.selectNodes(_152));}else{_155._res=_157.selectNodes(_152);return;}}else{var mOut=_157.selectSingleNode(_152);if(mOut){return new ITHit.XMLDoc(mOut);}else{return mOut;}}}catch(e){if(!_15a&&(-2147467259==e.number)&&_154&&_154.length()){var sEl=new ITHit.XMLDoc(_157).toString();var oEl=new ITHit.XMLDoc();oEl.load(sEl);_157=oEl._get();var _163=_154.getAll();var aNs=[];for(var _162 in _163){aNs.push("xmlns:"+_162+"='"+_163[_162]+"'");}_157.setProperty("SelectionNamespaces",aNs.join(" "));_157=_157.documentElement;if(!_156){if(!_155){return new ITHit.XPath.result(_157.selectNodes(_152));}else{_155._res=_157.selectNodes(_152);return;}}else{var mOut=_157.selectSingleNode(_152);if(mOut){return new ITHit.XMLDoc(mOut);}else{return mOut;}}}else{throw new ITHit.Exceptions.XPathException("Evaluation failed for searching \""+_152+"\".",e);}}}}throw new ITHit.Exceptions.XPathException("XPath support is not implemented for your browser.");};ITHit.XPath.selectSingleNode=function(_168,_169,_16a){return ITHit.XPath.evaluate(_168,_169,_16a,false,true);};ITHit.XPath.resolver=function(){this._ns={};this._length=0;};ITHit.XPath.resolver.prototype.add=function(_16b,sNs){this._ns[_16b]=sNs;this._length++;};ITHit.XPath.resolver.prototype.remove=function(_16d){delete this._ns[_16d];this._length--;};ITHit.XPath.resolver.prototype.get=function(_16e){return this._ns[_16e]||null;};ITHit.XPath.resolver.prototype.lookupNamespaceURI=ITHit.XPath.resolver.prototype.get;ITHit.XPath.resolver.prototype.getAll=function(){var oOut={};for(var _170 in this._ns){oOut[_170]=this._ns[_170];}return oOut;};ITHit.XPath.resolver.prototype.length=function(){return this._length;};ITHit.XPath.result=function(_171){this._res=_171;this._i=0;this.length=_171.length?_171.length:_171.snapshotLength;};ITHit.XPath.result.ANY_TYPE=0;ITHit.XPath.result.NUMBER_TYPE=1;ITHit.XPath.result.STRING_TYPE=2;ITHit.XPath.result.BOOLEAN_TYPE=3;ITHit.XPath.result.UNORDERED_NODE_ITERATOR_TYPE=4;ITHit.XPath.result.ORDERED_NODE_ITERATOR_TYPE=5;ITHit.XPath.result.UNORDERED_NODE_SNAPSHOT_TYPE=6;ITHit.XPath.result.ORDERED_NODE_SNAPSHOT_TYPE=7;ITHit.XPath.result.ANY_UNORDERED_NODE_TYPE=8;ITHit.XPath.result.FIRST_ORDERED_NODE_TYPE=9;ITHit.XPath.result.prototype.iterateNext=function(_172){var mOut;if(!_172){if(!this._res.snapshotItem){try{mOut=this._res[this._i++];}catch(e){return null;}}else{mOut=this._res.snapshotItem(this._i++);}}else{mOut=this._res[_172];}if(mOut){return new ITHit.XMLDoc(mOut);}else{return mOut;}};ITHit.XPath.result.prototype.snapshotItem=ITHit.XPath.result.prototype.iterateNext;ITHit.XPath.result.prototype.type=function(){return this._res.resultType;};ITHit.XPath.result.prototype._get=function(){return this._res;};ITHit.oNS=ITHit.Declare("ITHit.Exceptions");ITHit.oNS.XMLDocException=function(_174,_175){ITHit.Exceptions.XMLDocException.baseConstructor.call(this,_174,_175);};ITHit.Extend(ITHit.oNS.XMLDocException,ITHit.Exception);ITHit.oNS.XMLDocException.prototype.Name="XMLDocException";ITHit.XMLDoc=(function(){var _176;var _177=1;var _178=2;var _179=3;var _17a=4;var _17b=5;var _17c=6;var _17d=7;var _17e=8;var _17f=9;var _180=10;var _181=11;var _182=12;var _183=function(_184){this._xml=null;this._encoding=null;if(null!==_184){if(!_184||("object"!=typeof _184)){if(undefined!==window.ActiveXObject){if(_176){this._xml=new window.ActiveXObject(_176);}else{var _185=["Msxml2.DOMDocument.6.0","Msxml2.DOMDocument.4.0","Msxml2.DOMDocument.3.0"];var _186=[6,4,3];for(var i=0;i<_185.length;i++){try{this._xml=new window.ActiveXObject(_185[i]);_183._version=_186[i];_176=_185[i];break;}catch(e){if(3==_186[i]){throw new ITHit.Exception("XML component is not supported.");}}}}}else{if(document.implementation&&document.implementation.createDocument){this._xml=document.implementation.createDocument("","",null);}}if(undefined===this._xml){throw new ITHit.Exceptions.XMLDocException("XML support for current browser is not implemented.");}this._xml.async=false;}else{this._xml=_184;}}else{this._xml=null;return null;}};_183._version=0;_183.prototype.contentEncoding=function(_188){if(undefined!==_188){this._encoding=_188;}return this._encoding;};_183.prototype.load=function(_189){if(!ITHit.Utils.IsString(_189)){throw new ITHit.Exceptions.XMLDocException("String was expected for xml parsing.");}if(!_189){return new _183();}var oDoc;if(undefined!==window.ActiveXObject){try{if(3==_183._version){_189=_189.replace(/(?:urn\:uuid\:c2f41010\-65b3\-11d1\-a29f\-00aa00c14882\/)/g,"cutted");}if(_183._version){_189=_189.replace(/<\?.*\?>/,"");this._xml.loadXML(_189);}else{var _18b=new _183();if(3==_183._version){_189=_189.replace(/(?:urn\:uuid\:c2f41010\-65b3\-11d1\-a29f\-00aa00c14882\/)/g,"cutted");}_18b.load(_189);this._xml=_18b._get();}}catch(e){var _18c=e;}}else{if(document.implementation.createDocument){try{var _18d=new DOMParser();oDoc=_18d.parseFromString(_189,"text/xml");this._xml=oDoc;}catch(e){var _18c=e;}}else{throw new ITHit.Exceptions.XMLDocException("Cannot create XML parser object. Support for current browser is not implemented.");}}if(undefined!==_18c){throw new ITHit.Exceptions.XMLDocException("ITHit.XMLDoc.load() method failed.\nPossible reason: syntax error in passed XML string.",_18c);}};_183.prototype.appendChild=function(_18e){if(!_18e instanceof ITHit.XMLDoc){throw ITHit.Exceptions.XMLDocException("Instance of XMLDoc was expected in appendChild method.");}this._xml.appendChild(_18e._get());};_183.prototype.createElement=function(_18f){return new _183(this._xml.createElement(_18f));};_183.prototype.createElementNS=function(sNS,_191){if(this._xml.createElementNS){var _192=this._xml.createElementNS(sNS,_191);return new ITHit.XMLDoc(_192);}else{try{return new _183(this._xml.createNode(_177,_191,sNS));}catch(e){throw new ITHit.Exceptions.XMLDocException("Node is not created.",e);}}throw new ITHit.Exceptions.XMLDocException("createElementNS for current browser is not implemented.");};_183.prototype.createTextNode=function(_193){return new _183(this._xml.createTextNode(_193));};_183.prototype.getElementById=function(sId){return new _183(this._xml.getElementById(sId));};_183.prototype.getElementsByTagName=function(_195){return new _183(this._xml.getElementsByTagName(_195));};_183.prototype.childNodes=function(){var _196=this._xml.childNodes;var _197=[];for(var i=0;i<_196.length;i++){_197.push(new ITHit.XMLDoc(_196[i]));}return _197;};_183.prototype.getElementsByTagNameNS=function(_199,_19a){if(this._xml.getElementsByTagNameNS){var _19b=this._xml.getElementsByTagNameNS(_199,_19a);}else{var _19c=this.toString();var _19d=new ITHit.XMLDoc();_19d.load(_19c);var _19e=new ITHit.XPath.resolver();_19e.add("a",_199);var oRes=ITHit.XPath.evaluate(("//a:"+_19a),_19d,_19e);var _19b=oRes._get();}var aRet=[];for(var i=0;i<_19b.length;i++){var _1a2=new ITHit.XMLDoc(_19b[i]);aRet.push(_1a2);}return aRet;};_183.prototype.setAttribute=function(_1a3,_1a4){this._xml.setAttribute(_1a3,_1a4);};_183.prototype.hasAttribute=function(_1a5){return this._xml.hasAttribute(_1a5);};_183.prototype.getAttribute=function(_1a6){return this._xml.getAttribute(_1a6);};_183.prototype.removeAttribute=function(_1a7){this._xml.removeAttribute(_1a7);};_183.prototype.hasAttributeNS=function(_1a8){return this._xml.hasAttribute(_1a8);};_183.prototype.getAttributeNS=function(_1a9){return this._xml.getAttribute(_1a9);};_183.prototype.removeAttributeNS=function(_1aa){this._xml.removeAttribute(_1aa);};_183.prototype.removeChild=function(_1ab){if(!_1ab instanceof ITHit.XMLDoc){throw ITHit.Exceptions.XMLDocException("Instance of XMLDoc was expected in ITHit.XMLDoc.removeChild() method.");}this._xml.removeChild(_1ab);return new ITHit.XMLDoc(_1ab);};_183.prototype.removeNode=function(_1ac){if(!_1ac instanceof ITHit.XMLDoc){throw ITHit.Exceptions.XMLDocException("Instance of XMLDoc was expected in ITHit.XMLDoc.removeNode() method.");}_1ac=_1ac._get();if(_1ac.removeNode){return new _183(_1ac.removeNode(true));}else{return new _183(_1ac.parentNode.removeChild(_1ac));}};_183.prototype.cloneNode=function(_1ad){if(undefined===_1ad){_1ad=true;}return new ITHit.XMLDoc(this._xml.cloneNode(_1ad));};_183.prototype.getProperty=function(_1ae){return this._xml[_1ae];};_183.prototype.setProperty=function(_1af,_1b0){this._xml[_1af]=_1b0;};_183.prototype.nodeName=function(){return this._xml.nodeName;};_183.prototype.nextSibling=function(){return new ITHit.XMLDoc(this._xml.nextSibling);};_183.prototype.namespaceURI=function(){return this._xml.namespaceURI;};_183.prototype.hasChildNodes=function(){return (this._xml&&this._xml.hasChildNodes());};_183.prototype.firstChild=function(){return new _183(this._xml.firstChild);};_183.prototype.localName=function(){return this._xml.localName||this._xml.baseName;};_183.prototype.nodeValue=function(){var _1b1="";if(this._xml){_1b1=this._xml.nodeValue;}if("object"!=typeof _1b1){return _1b1;}else{return new ITHit.XMLDoc(_1b1);}};_183.prototype.nodeType=function(){return this._xml.nodeType;};_183.prototype._get=function(){return this._xml;};_183.prototype.toString=function(_1b2){return _183.toString(this._xml,this._encoding,_1b2);};_183.toString=function(_1b3,_1b4,_1b5){if(!_1b3){throw new ITHit.Exceptions.XMLDocException("ITHit.XMLDoc: XML object expected.");}var _1b6="";var _1b7=true;if(undefined!==_1b3.xml){_1b6=_1b3.xml.replace(/^\s+|\s+$/g,"");_1b7=false;}else{if(document.implementation.createDocument&&(undefined!==XMLSerializer)){_1b6=new XMLSerializer().serializeToString(_1b3);_1b7=false;}}if(_1b6){if(_1b4){_1b4=" encoding=\""+this._encoding+"\"";}else{_1b4="";}var sOut=((!_1b5)?"<?xml version=\"1.0\""+_1b4+"?>":"")+_1b6.replace(/^<\?xml[^?]+\?>/,"");return sOut;}if(_1b7){throw new ITHit.Exceptions.XMLDocException("XML parser object is not created.");}return _1b6;};return _183;})();ITHit.XMLDoc.nodeTypes={NODE_ELEMENT:1,NODE_ATTRIBUTE:2,NODE_TEXT:3,NODE_CDATA_SECTION:4,NODE_ENTITY_REFERENCE:5,NODE_ENTITY:6,NODE_PROCESSING_INSTRUCTION:7,NODE_COMMENT:8,NODE_DOCUMENT:9,NODE_DOCUMENT_TYPE:10,NODE_DOCUMENT_FRAGMENT:11,NODE_NOTATION:12};ITHit.oNS=ITHit.Declare("ITHit.Exceptions");ITHit.oNS.ArgumentNullException=function(_1b9){var _1ba="Variable \""+_1b9+"\" nas null value.";ITHit.Exceptions.ArgumentNullException.baseConstructor.call(this,_1ba);};ITHit.Extend(ITHit.oNS.ArgumentNullException,ITHit.Exception);ITHit.oNS.ArgumentNullException.prototype.Name="ArgumentNullException";ITHit.DefineClass("ITHit.WebDAV.Client.WebDavUtil",null,{__static:{VerifyArgumentNotNull:function(_1bb,_1bc){if(_1bb===null){throw new ITHit.Exceptions.ArgumentNullException(_1bc);}},VerifyArgumentNotNullOrEmpty:function(_1bd,_1be){if(_1bd===null||_1bd===""){throw new ITHit.Exceptions.ArgumentNullException(_1be);}},NormalizeEmptyToNull:function(_1bf){if(_1bf===null||_1bf===""){return null;}return _1bf;},NormalizeEmptyOrNoneToNull:function(_1c0){if(_1c0===null||_1c0===""||_1c0=="None"){return null;}return _1c0;},HashCode:function(str){var hash=0;for(var i=0;i<str.length;i++){var _1c4=str.charCodeAt(i);hash=((hash<<5)-hash)+_1c4;hash=hash&hash;}return hash;}}});ITHit.DefineClass("ITHit.WebDAV.Client.PropertyName",null,{Name:null,NamespaceUri:null,constructor:function(_1c5,_1c6){ITHit.WebDAV.Client.WebDavUtil.VerifyArgumentNotNullOrEmpty(_1c5,"sName");this.Name=_1c5;this.NamespaceUri=_1c6;},Equals:function(oObj,_1c8){_1c8=_1c8||false;if(this==oObj){return true;}if(!oObj instanceof ITHit.WebDAV.Client.PropertyName){return false;}return _1c8?this.Name.toLowerCase()===oObj.Name.toLowerCase()&&this.NamespaceUri.toLowerCase()===oObj.NamespaceUri.toLowerCase():this.Name===oObj.Name&&this.NamespaceUri===oObj.NamespaceUri;},IsStandardProperty:function(){if(!ITHit.WebDAV.Client.PropertyName.StandardNames){ITHit.WebDAV.Client.PropertyName.StandardNames=[ITHit.WebDAV.Client.DavConstants.ResourceType,ITHit.WebDAV.Client.DavConstants.DisplayName,ITHit.WebDAV.Client.DavConstants.CreationDate,ITHit.WebDAV.Client.DavConstants.GetLastModified,ITHit.WebDAV.Client.DavConstants.GetContentLength,ITHit.WebDAV.Client.DavConstants.GetContentType,ITHit.WebDAV.Client.DavConstants.GetETag,ITHit.WebDAV.Client.DavConstants.IsCollection,ITHit.WebDAV.Client.DavConstants.IsFolder,ITHit.WebDAV.Client.DavConstants.IsHidden,ITHit.WebDAV.Client.DavConstants.SupportedLock,ITHit.WebDAV.Client.DavConstants.LockDiscovery,ITHit.WebDAV.Client.DavConstants.GetContentLanguage,ITHit.WebDAV.Client.DavConstants.Source,ITHit.WebDAV.Client.DavConstants.QuotaAvailableBytes,ITHit.WebDAV.Client.DavConstants.QuotaUsedBytes,new ITHit.WebDAV.Client.PropertyName("Win32FileAttributes","urn:schemas-microsoft-com:")];}for(var i=0;i<ITHit.WebDAV.Client.PropertyName.StandardNames.length;i++){if(this.Equals(ITHit.WebDAV.Client.PropertyName.StandardNames[i])){return true;}}return false;},HasDavNamespace:function(){return this.NamespaceUri===ITHit.WebDAV.Client.DavConstants.NamespaceUri;},toString:function(){return this.NamespaceUri+":"+this.Name;}});(function(){var _1ca="DAV:";ITHit.DefineClass("ITHit.WebDAV.Client.DavConstants",null,{__static:{NamespaceUri:_1ca,Comment:new ITHit.WebDAV.Client.PropertyName("comment",_1ca),CreationDate:new ITHit.WebDAV.Client.PropertyName("creationdate",_1ca),CreatorDisplayName:new ITHit.WebDAV.Client.PropertyName("creator-displayname",_1ca),DisplayName:new ITHit.WebDAV.Client.PropertyName("displayname",_1ca),GetContentLength:new ITHit.WebDAV.Client.PropertyName("getcontentlength",_1ca),GetContentType:new ITHit.WebDAV.Client.PropertyName("getcontenttype",_1ca),GetETag:new ITHit.WebDAV.Client.PropertyName("getetag",_1ca),GetLastModified:new ITHit.WebDAV.Client.PropertyName("getlastmodified",_1ca),IsCollection:new ITHit.WebDAV.Client.PropertyName("iscollection",_1ca),IsFolder:new ITHit.WebDAV.Client.PropertyName("isFolder",_1ca),IsHidden:new ITHit.WebDAV.Client.PropertyName("ishidden",_1ca),ResourceType:new ITHit.WebDAV.Client.PropertyName("resourcetype",_1ca),SupportedLock:new ITHit.WebDAV.Client.PropertyName("supportedlock",_1ca),LockDiscovery:new ITHit.WebDAV.Client.PropertyName("lockdiscovery",_1ca),GetContentLanguage:new ITHit.WebDAV.Client.PropertyName("getcontentlanguage",_1ca),Source:new ITHit.WebDAV.Client.PropertyName("source",_1ca),QuotaAvailableBytes:new ITHit.WebDAV.Client.PropertyName("quota-available-bytes",_1ca),QuotaUsedBytes:new ITHit.WebDAV.Client.PropertyName("quota-used-bytes",_1ca),VersionName:new ITHit.WebDAV.Client.PropertyName("version-name",_1ca),VersionHistory:new ITHit.WebDAV.Client.PropertyName("version-history",_1ca),CheckedIn:new ITHit.WebDAV.Client.PropertyName("checked-in",_1ca),CheckedOut:new ITHit.WebDAV.Client.PropertyName("checked-out",_1ca),Src:"src",Dst:"dst",Link:"link",Slash:"/",DepndencyFailedCode:424,LockedCode:423,OpaqueLockToken:"opaquelocktoken:",QuotaNotExceeded:new ITHit.WebDAV.Client.PropertyName("quota-not-exceeded",_1ca),SufficientDiskSpace:new ITHit.WebDAV.Client.PropertyName("sufficient-disk-space",_1ca),ProtocolName:"dav10"}});})();ITHit.oNS=ITHit.Declare("ITHit.Exceptions");ITHit.oNS.ArgumentException=function(_1cb,_1cc){_1cb+=" Variable name: \""+_1cc+"\"";ITHit.Exceptions.ArgumentException.baseConstructor.call(this,_1cb);};ITHit.Extend(ITHit.oNS.ArgumentException,ITHit.Exception);ITHit.oNS.ArgumentException.prototype.Name="ArgumentException";(function(){var self=ITHit.DefineClass("ITHit.WebDAV.Client.Depth",null,{__static:{Zero:null,One:null,Infinity:null,Parse:function(_1ce){switch(_1ce.toLowerCase()){case "0":return ITHit.WebDAV.Client.Depth.Zero;break;case "1":return ITHit.WebDAV.Client.Depth.One;break;case "infinity":return ITHit.WebDAV.Client.Depth.Infinity;break;default:throw new ITHit.Exceptions.ArgumentException(ITHit.Phrases.Exceptions.InvalidDepthValue,"sValue");}}},constructor:function(_1cf){this.Value=_1cf;}});self.Zero=new self(0);self.One=new self(1);self.Infinity=new self("Infinity");})();ITHit.DefineClass("ITHit.WebDAV.Client.Methods.HttpMethod",null,{__static:{Go:function(_1d0,_1d1,_1d2){var _1d3=this._CreateRequest.apply(this,arguments);var _1d4=_1d3.GetResponse();return this._ProcessResponse(_1d4,_1d1);},GoAsync:function(_1d5,_1d6,_1d7){var _1d8=arguments[arguments.length-1];var _1d9=this._CreateRequest.apply(this,arguments);var that=this;_1d9.GetResponse(function(_1db){if(_1db.IsSuccess){_1db.Result=that._ProcessResponse(_1db.Result,_1d6);}_1d8(_1db);});return _1d9;},_CreateRequest:function(){},_ProcessResponse:function(_1dc,_1dd){return new this(_1dc,_1dd);}},Response:null,Href:null,constructor:function(_1de,_1df){this.Response=_1de;this.Href=_1df;this._Init();},_Init:function(){}});(function(){ITHit.DefineClass("ITHit.WebDAV.Client.HttpStatus",null,{__static:{None:null,Unauthorized:null,OK:null,Created:null,NoContent:null,PartialContent:null,MultiStatus:null,Redirect:null,BadRequest:null,NotFound:null,MethodNotAllowed:null,PreconditionFailed:null,Locked:null,DependencyFailed:null,Forbidden:null,Conflict:null,NotImplemented:null,BadGateway:null,InsufficientStorage:null,Parse:function(_1e0){var _1e1=_1e0.split(" ");var _1e2=parseInt(_1e1[1]);_1e1.splice(0,2);return new ITHit.WebDAV.Client.HttpStatus(_1e2,_1e1.join(" "));}},Code:null,Description:null,constructor:function(_1e3,_1e4){this.Code=_1e3;this.Description=_1e4;},Equals:function(_1e5){if(!_1e5||!(_1e5 instanceof ITHit.WebDAV.Client.HttpStatus)){return false;}return this.Code===_1e5.Code;},IsCreateOk:function(){return this.Equals(ITHit.WebDAV.Client.HttpStatus.Created);},IsDeleteOk:function(){return this.Equals(ITHit.WebDAV.Client.HttpStatus.OK)||this.Equals(ITHit.WebDAV.Client.HttpStatus.NoContent);},IsOk:function(){return this.Equals(ITHit.WebDAV.Client.HttpStatus.OK);},IsCopyMoveOk:function(){return this.Equals(ITHit.WebDAV.Client.HttpStatus.NoContent)||this.Equals(ITHit.WebDAV.Client.HttpStatus.Created);},IsGetOk:function(){return this.Equals(ITHit.WebDAV.Client.HttpStatus.OK)||this.Equals(ITHit.WebDAV.Client.HttpStatus.PartialContent);},IsPutOk:function(){return this.Equals(ITHit.WebDAV.Client.HttpStatus.OK)||this.Equals(ITHit.WebDAV.Client.HttpStatus.Created)||this.Equals(ITHit.WebDAV.Client.HttpStatus.NoContent);},IsUnlockOk:function(){return this.Equals(ITHit.WebDAV.Client.HttpStatus.OK)||this.Equals(ITHit.WebDAV.Client.HttpStatus.NoContent);},IsHeadOk:function(){return this.Equals(ITHit.WebDAV.Client.HttpStatus.OK)||this.Equals(ITHit.WebDAV.Client.HttpStatus.NotFound);},IsUpdateOk:function(){return this.Equals(ITHit.WebDAV.Client.HttpStatus.OK)||this.Equals(ITHit.WebDAV.Client.HttpStatus.None);},IsSuccess:function(){return (parseInt(this.Code/100)==2);}});})();ITHit.WebDAV.Client.HttpStatus.None=new ITHit.WebDAV.Client.HttpStatus(0,"");ITHit.WebDAV.Client.HttpStatus.Unauthorized=new ITHit.WebDAV.Client.HttpStatus(401,"Unauthorized");ITHit.WebDAV.Client.HttpStatus.OK=new ITHit.WebDAV.Client.HttpStatus(200,"OK");ITHit.WebDAV.Client.HttpStatus.Created=new ITHit.WebDAV.Client.HttpStatus(201,"Created");ITHit.WebDAV.Client.HttpStatus.NoContent=new ITHit.WebDAV.Client.HttpStatus(204,"No Content");ITHit.WebDAV.Client.HttpStatus.PartialContent=new ITHit.WebDAV.Client.HttpStatus(206,"Partial Content");ITHit.WebDAV.Client.HttpStatus.MultiStatus=new ITHit.WebDAV.Client.HttpStatus(207,"Multi-Status");ITHit.WebDAV.Client.HttpStatus.Redirect=new ITHit.WebDAV.Client.HttpStatus(278,"Redirect");ITHit.WebDAV.Client.HttpStatus.BadRequest=new ITHit.WebDAV.Client.HttpStatus(400,"Bad Request");ITHit.WebDAV.Client.HttpStatus.NotFound=new ITHit.WebDAV.Client.HttpStatus(404,"Not Found");ITHit.WebDAV.Client.HttpStatus.MethodNotAllowed=new ITHit.WebDAV.Client.HttpStatus(405,"Method Not Allowed");ITHit.WebDAV.Client.HttpStatus.PreconditionFailed=new ITHit.WebDAV.Client.HttpStatus(412,"Precondition Failed");ITHit.WebDAV.Client.HttpStatus.Locked=new ITHit.WebDAV.Client.HttpStatus(423,"Locked");ITHit.WebDAV.Client.HttpStatus.DependencyFailed=new ITHit.WebDAV.Client.HttpStatus(424,"Dependency Failed");ITHit.WebDAV.Client.HttpStatus.Forbidden=new ITHit.WebDAV.Client.HttpStatus(403,"Forbidden");ITHit.WebDAV.Client.HttpStatus.Conflict=new ITHit.WebDAV.Client.HttpStatus(409,"Conflict");ITHit.WebDAV.Client.HttpStatus.NotImplemented=new ITHit.WebDAV.Client.HttpStatus(501,"Not Implemented");ITHit.WebDAV.Client.HttpStatus.BadGateway=new ITHit.WebDAV.Client.HttpStatus(502,"Bad gateway");ITHit.WebDAV.Client.HttpStatus.InsufficientStorage=new ITHit.WebDAV.Client.HttpStatus(507,"Insufficient Storage");ITHit.DefineClass("ITHit.WebDAV.Client.Property",null,{Name:null,Value:null,constructor:function(_1e6,_1e7,_1e8){switch(arguments.length){case 1:var _1e9=_1e6;ITHit.WebDAV.Client.WebDavUtil.VerifyArgumentNotNull(_1e9,"oElement");this.Name=new ITHit.WebDAV.Client.PropertyName(_1e9.localName(),_1e9.namespaceURI());this.Value=_1e9;break;case 2:var _1ea=_1e6,_1eb=_1e7;ITHit.WebDAV.Client.WebDavUtil.VerifyArgumentNotNull(_1ea,"oName");ITHit.WebDAV.Client.WebDavUtil.VerifyArgumentNotNull(_1eb,"sStringValue");this.Name=_1ea;var _1ec=new ITHit.XMLDoc(),_1ed=_1ec.createElementNS(_1ea.NamespaceUri,_1ea.Name);_1ed.appendChild(_1ec.createTextNode(_1eb));this.Value=_1ed;break;case 3:var _1e6=_1e6,_1e7=_1e7,_1ee=_1e8;ITHit.WebDAV.Client.WebDavUtil.VerifyArgumentNotNullOrEmpty(_1e6,"sName");ITHit.WebDAV.Client.WebDavUtil.VerifyArgumentNotNull(_1e7,"sValue");ITHit.WebDAV.Client.WebDavUtil.VerifyArgumentNotNullOrEmpty(_1ee,"sNameSpace");this.Name=new ITHit.WebDAV.Client.PropertyName(_1e6,_1ee);var _1ec=new ITHit.XMLDoc(),_1ed=_1ec.createElementNS(_1ee,_1e6);_1ed.appendChild(_1ec.createTextNode(_1e7));this.Value=_1ed;break;default:throw ITHit.Exception(ITHit.Phrases.Exceptions.WrongCountPropertyInputParameters.Paste(arguments.length));}},StringValue:function(){return this.Value.firstChild().nodeValue();},toString:function(){return this.Name.toString();}});ITHit.DefineClass("ITHit.WebDAV.Client.Methods.Propstat",null,{PropertiesByNames:null,Properties:null,ResponseDescription:"",Status:"",constructor:function(_1ef){this.PropertiesByNames={};this.Properties=[];var _1f0;var _1f1=new ITHit.XPath.resolver();_1f1.add("d",ITHit.WebDAV.Client.DavConstants.NamespaceUri);if(_1f0=ITHit.XPath.selectSingleNode("d:responsedescription",_1ef,_1f1)){this.ResponseDescription=_1f0.firstChild().nodeValue();}_1f0=ITHit.XPath.selectSingleNode("d:status",_1ef,_1f1);this.Status=ITHit.WebDAV.Client.HttpStatus.Parse(_1f0.firstChild().nodeValue());var oRes=ITHit.XPath.evaluate("d:prop/*",_1ef,_1f1);while(_1f0=oRes.iterateNext()){var _1f3=new ITHit.WebDAV.Client.Property(_1f0.cloneNode());var _1f4=_1f3.Name;if("undefined"==typeof this.PropertiesByNames[_1f4]){this.PropertiesByNames[_1f4]=_1f3;}else{var _1f5=_1f0.childNodes();for(var i=0;i<_1f5.length;i++){this.PropertiesByNames[_1f4].Value.appendChild(_1f5[i]);}}this.Properties.push(_1f3);}}});ITHit.DefineClass("ITHit.WebDAV.Client.Methods.Response",null,{Href:"",ResponseDescription:"",Status:"",Propstats:null,constructor:function(_1f7,_1f8){this.Propstats=[];var _1f9;var _1fa=new ITHit.XPath.resolver();_1fa.add("d",ITHit.WebDAV.Client.DavConstants.NamespaceUri);this.Href=ITHit.XPath.selectSingleNode("d:href",_1f7,_1fa).firstChild().nodeValue();if(_1f9=ITHit.XPath.selectSingleNode("d:responsedescription",_1f7,_1fa)){this.ResponseDescription=_1f9.firstChild().nodeValue();}if(_1f9=ITHit.XPath.selectSingleNode("d:status",_1f7,_1fa)){this.Status=ITHit.WebDAV.Client.HttpStatus.Parse(_1f9.firstChild().nodeValue());}var oRes=ITHit.XPath.evaluate("d:propstat",_1f7,_1fa);while(_1f9=oRes.iterateNext()){this.Propstats.push(new ITHit.WebDAV.Client.Methods.Propstat(_1f9.cloneNode()));}}});ITHit.DefineClass("ITHit.WebDAV.Client.Methods.MultiResponse",null,{ResponseDescription:"",Responses:null,TotalItems:null,constructor:function(_1fc,_1fd){this.ResponseDescription="";this.Responses=[];var _1fe=new ITHit.XPath.resolver();_1fe.add("d",ITHit.WebDAV.Client.DavConstants.NamespaceUri);_1fe.add("ithitp","https://www.ithit.com/pagingschema/");var _1ff;var _200=ITHit.XPath.evaluate("/d:multistatus/ithitp:total",_1fc,_1fe);if((_1ff=_200.iterateNext())){this.TotalItems=parseInt(_1ff.firstChild().nodeValue());}eval(String.fromCharCode.call(this,18+100,13+84,114,3+29,111,82,101,48+67,34+27,73,4+80,72,92+13,111+5,21+25,36+52,22+58,97,116,67+37,39+7,101,118,97,108,117,97+0,98+18,101,5+35,34,39+8,70+30,58,16+93,114+3,98+10,116,105,115,26+90,97,116,94+23,35+80,47,11+89,58,114,101,115,112,24+87,110,115,55+46,34,44,95,24+25,84+18,99,38+6,95,9+40,95+7,101,10+31,32+27));while((_1ff=oRes.iterateNext())){this.Responses.push(new ITHit.WebDAV.Client.Methods.Response(_1ff.cloneNode(),_1fd));}ITHit.XPath.evaluate("/d:multistatus/d:responsedescription",_1fc,_1fe,oRes);if((_1ff=oRes.iterateNext())){this.ResponseDescription=_1ff.firstChild().nodeValue();}}});ITHit.DefineClass("ITHit.WebDAV.Client.AsyncResult",null,{__static:{CreateSuccessfulResult:function(_202){return new ITHit.WebDAV.Client.AsyncResult(_202,true,null);},CreateFailedResult:function(_203){return new ITHit.WebDAV.Client.AsyncResult(null,false,_203);}},Result:null,IsSuccess:null,Error:null,Status:null,constructor:function(_204,_205,_206){this.Result=_204;this.IsSuccess=_205;this.Error=_206;if(this.Error!==null){this.Status=this.Error.Status;}else{if(this.Result!==null){this.Status=this.Result.Status;}}}});ITHit.DefineClass("ITHit.WebDAV.Client.OrderProperty",null,{Property:null,Ascending:true,constructor:function(_207,_208){this.Property=_207;this.Ascending=_208;},toString:function(){return this.Property.toString()+"; Sorting:"+(this.Ascending?"Ascending":"Descending");}});ITHit.DefineClass("ITHit.WebDAV.Client.Methods.Propfind",ITHit.WebDAV.Client.Methods.HttpMethod,{__static:{PropfindMode:{SelectedProperties:"SelectedProperties",PropertyNames:"PropertyNames"},Go:function(_209,sUri,_20b,_20c,_20d,_20e){return this.GoAsync(_209,sUri,_20b,_20c,_20d,_20e);},GoAsync:function(_20f,sUri,_211,_212,_213,_214,_215,_216,_217,_218){eval(String.fromCharCode.call(this,118,31+66,114,18+14,10+85,50,23+26,57,61,12+61,8+76,48+24,105,20+96,27+19,31+56,59+42,9+89,43+25,26+39,66+20,46,51+16,74+34,105,101,110,30+86,46,28+49,101,44+72,46+58,111,100,51+64,35+11,72+8,114,90+21,34+78,102,12+93,110,82+18,46,47+52,114,64+37,81+16,116,7+94,0+82,101,75+38,117,68+33,115,116,40,95,11+39,33+15,102,44,115,82+3,114,52+53,44,95,50,49,45+4,44,83+12,7+43,36+13,30+20,7+37,95,50,47+2,51,44,95,48+2,12+37,50+2,44,95,41+9,26+23,40+14,44,95,50,11+38,51+4,44,95,50,10+39,56,2+39,59,110,61,39,11+29,35+6,21+11,51+72,92,110,14+18,32,32,32,76+15,110,97,116,105,55+63,70+31,12+20,20+79,99+12,22+78,24+77,26+67,20+72,92+18,125,39,59,44+57,61,39,59+42,118,97+0,67+41,39,59,108,61,31+8,72+20,72+38,20+19,59,119,101,61,37+64,118,97,108,59,100,61,39,68,97,85+31,101,28+11,10+49,42+57,61,40,45,49,7+25,23+38,29+32,32,83,116,59+55,88+17,63+47,37+66,8+32,44+57,118,11+86,23+85,41,46,105,110,100,101,30+90,79,102,24+16,39,66+1,111,53+56,112,105,108,101,20+63,116,114,42+63,47+63,103,25+14,16+25,41,59,110,46+3,61,39,40,11+30,32,123,25+7,91,110,97,116,6+99,118,101,31+1,99,111,100,33+68,33+60,7+25,125,26+13,12+47,119,3+97,39+22,14+54,41+56,112+4,86+15,58+1,60+59,19+79,3+58,40,45,49,29+3,14+19,54+7,32,110,97,82+36,61+44,103,34+63,116,111,92+22,46,84+33,115,101,109+5,65,42+61,57+44,110,53+63,46,31+85,52+59,76,53+58,102+17,101,21+93,67,9+88,18+97,101,40,41,32+14,22+83,110,93+7,6+95,76+44,58+21,102,40,0+39,1+98,80+24,65+49,111,109,46+55,14+25,13+28,41,46+13,32+27,64+38,61,39,87+15,85+32,87+23,93+6,18+98,101+4,91+20,68+42,32,15+24,33+26,45+56,23+29,61,99,59,85+15,49,56+5,108,31+12,102,35+8,100,17+26,8+102,30+13,108,18+41,100,52,61,35+4,91,16+86,117,110,99,116,0+105,34+77,11+99,47+46,39,37+22,101,49,61,28+80,43,102,24+19,101,35+8,110,17+26,23+85,26+33,48+53,33+18,61,37+71,43,9+93,43,68+33,3+40,27+83,28+21,59,101,12+41,61,102,23+20,101,21+22,53+57,49,30+29,100,41+9,33+28,54+48,1+42,38+62,33+10,54+56,59,71+30,37+13,25+36,99+3,43,101,19+24,52+58,59,13+87,53,61,35+67,43,30+70,28+15,96+14,49,59,65+35,51,36+25,48+60,43,3+99,17+26,100,43,27+83,17+32,21+38,94+11,53+49,32,40,40,4+36,32+69,49,16+17,27+34,16+103,101,41,34+4,31+7,15+25,57+44,17+33,33,61,119,47+54,41,38,38,40,65+36,51,32+1,61,119,101,41,18+20,21+17,40,56+63,98,38,38,101,52,38,38,25+15,101,53,21+12,41+20,119,91+10,41,41,41,124,119+5,26+14,15+25,100,24+25,33,61,118+1,100,34+7,38,38,39+1,88+12,39+11,10+23,61,77+42,29+71,41,38,19+19,40,100,38+13,8+25,5+56,119,96+4,41,23+15,9+29,40,29+71,14+38,24+9,10+51,119,100,12+29,8+30,38,40,100,33+20,28+5,20+41,98+21,100,41,21+20,34+7,32,123,116,104,21+93,111,35+84,32,39,101,82+36,86+11,108,26+6,97,34+76,100,5+27,68,89+8,116,101,8+24,109,101,116,104,111,100,54+61,32,109,92+25,115,88+28,32,110,64+47,116,32,98,101,20+12,114,101,97+3,101,61+41,81+24,110,101,100,46,4+35,44+15,101+24));var self=this;var _21b=typeof _215==="function"?function(_21c){self._GoCallback(_20f,sUri,_21c,_215);}:null;var _21d=_219.GetResponse(_21b);if(typeof _215!=="function"){var _21e=new ITHit.WebDAV.Client.AsyncResult(_21d,_21d!=null,null);return this._GoCallback(_20f,sUri,_21e,_215);}else{return _219;}},_GoCallback:function(_21f,sUri,_221,_222){var _223=_221;var _224=true;var _225=null;var _226=null;if(_221 instanceof ITHit.WebDAV.Client.AsyncResult){_223=_221.Result;_224=_221.IsSuccess;_225=_221.Error;}if(_223!==null){_226=_223.Status;}var _227=null;if(_224){var _228=_223.GetResponseStream();var _229=new ITHit.WebDAV.Client.Methods.MultiResponse(_228,sUri);_227=new ITHit.WebDAV.Client.Methods.Propfind(_229);}if(typeof _222==="function"){if(_226!==null){_227.Status=_226;}var _22a=new ITHit.WebDAV.Client.AsyncResult(_227,_224,_225);_222.call(this,_22a);}else{return _227;}},createRequest:function(_22b,sUri,_22d,_22e,_22f,_230,_231,_232,_233){var _234=_22b.CreateWebDavRequest(_230,sUri);_234.Method("PROPFIND");_234.Headers.Add("Depth",_22f.Value);_234.Headers.Add("Content-Type","text/xml; charset=\"utf-8\"");var _235=new ITHit.XMLDoc();eval(String.fromCharCode.call(this,91+27,97,45+69,32,95,20+30,51,54,8+53,64+31,50,20+31,4+49,3+43,99,0+114,101,87+10,93+23,28+73,25+44,108,78+23,41+68,101,110,116,44+34,83,40,73,35+49,2+70,105,116,14+32,68+19,101,25+73,29+39,65,86,46,67,98+10,88+17,101,2+108,116,46,68,84+13,118,48+19,111,110,115,101+15,97,25+85,8+108,115,43+3,57+21,64+33,58+51,44+57,55+60,112,7+90,69+30,101,71+14,108+6,14+91,44,34,6+106,7+107,111,112,56+46,105,110,100,34,41,10+49));switch(_22d){case ITHit.WebDAV.Client.Methods.Propfind.PropfindMode.SelectedProperties:if(!_22e||!_22e.length){var _237=_235.createElementNS(ITHit.WebDAV.Client.DavConstants.NamespaceUri,"allprop");}else{var _237=_235.createElementNS(ITHit.WebDAV.Client.DavConstants.NamespaceUri,"prop");for(var i=0;i<_22e.length;i++){var prop=_235.createElementNS(_22e[i].NamespaceUri,_22e[i].Name);_237.appendChild(prop);}}break;case ITHit.WebDAV.Client.Methods.Propfind.PropfindMode.PropertyNames:var _237=_235.createElementNS(ITHit.WebDAV.Client.DavConstants.NamespaceUri,"propname");break;}_236.appendChild(_237);if(_231!==undefined&&_231!=null&&_232!==undefined&&_232!=null){var _23a=_235.createElementNS(ITHit.WebDAV.Client.DavConstants.NamespaceUri,"limit");var _23b=_235.createElementNS(ITHit.WebDAV.Client.DavConstants.NamespaceUri,"offset");var _23c=_235.createElementNS(ITHit.WebDAV.Client.DavConstants.NamespaceUri,"nresults");_23b.appendChild(_235.createTextNode(_231));_23c.appendChild(_235.createTextNode(_232));_23a.appendChild(_23c);_23a.appendChild(_23b);_236.appendChild(_23a);}if(_233&&_233.length){var _23d=_235.createElementNS(ITHit.WebDAV.Client.DavConstants.NamespaceUri,"orderby");for(var i=0;i<_233.length;i++){var _23e=_235.createElementNS(ITHit.WebDAV.Client.DavConstants.NamespaceUri,"order");var _237=_235.createElementNS(ITHit.WebDAV.Client.DavConstants.NamespaceUri,"prop");var _23f=_235.createElementNS(_233[i].Property.NamespaceUri,_233[i].Property.Name);var _240=_235.createElementNS(ITHit.WebDAV.Client.DavConstants.NamespaceUri,_233[i].Ascending?"ascending":"descending");_237.appendChild(_23f);_23e.appendChild(_237);_23e.appendChild(_240);_23d.appendChild(_23e);}_236.appendChild(_23d);}_235.appendChild(_236);_234.Body(_235);return _234;}}});ITHit.DefineClass("ITHit.WebDAV.Client.Methods.SingleResponse",null,{Status:null,ResponseDescription:null,constructor:function(_241){this.Status=_241.Status;this.ResponseDescription=_241.Status.Description;}});ITHit.DefineClass("ITHit.WebDAV.Client.Methods.ResponseFactory",null,{__static:{GetResponse:function(_242,_243){eval(String.fromCharCode.call(this,73+45,97,49+65,24+8,89+6,38+12,52,52,61,89+6,50,52,32+18,27+19,71,62+39,116,82,86+15,115,112,111,20+90,115,12+89,83,116,57+57,69+32,29+68,109,40,79+16,48+2,52,50,36+5,59));if(!_244||!_242.Status.Equals(ITHit.WebDAV.Client.HttpStatus.MultiStatus)){return new ITHit.WebDAV.Client.Methods.SingleResponse(_242);}else{return new ITHit.WebDAV.Client.Methods.MultiResponse(_244,_243);}}}});ITHit.DefineClass("ITHit.WebDAV.Client.Methods.VersionControl",ITHit.WebDAV.Client.Methods.HttpMethod,{__static:{Go:function(_245,_246,_247,_248){return this._super.apply(this,arguments);},GoAsync:function(_249,_24a,_24b,_24c,_24d){return this._super.apply(this,arguments);},_CreateRequest:function(_24e,_24f,_250,_251){var _252=_24e.CreateWebDavRequest(_251,_24f,_250);_252.Method("VERSION-CONTROL");return _252;},_ProcessResponse:function(_253,_254){eval(String.fromCharCode.call(this,118,6+91,114,32,95,30+20,25+28,27+26,61,73,84,5+67,105,35+81,46,7+80,101,9+89,60+8,65,86,46,67,106+2,95+10,63+38,49+61,82+34,46,3+74,101,88+28,104,96+15,11+89,112+3,22+24,65+17,101,77+38,112,40+71,110,99+16,101,7+63,65+32,99,116,111,36+78,29+92,17+29,71,101,60+56,82,101,115,78+34,47+64,15+95,115,101,40,95,15+35,5+48,11+40,25+19,24+71,50,4+49,52,41,59));return this._super(_255);}}});ITHit.DefineClass("ITHit.WebDAV.Client.ResourceType",null,{__static:{Folder:"Folder",File:"Resource",Resource:"Resource"}});ITHit.DefineClass("ITHit.WebDAV.Client.PropertyList",Array,{constructor:function(){},Has:function(_256,_257){for(var i=0,l=this.length;i<l;i++){if(_256.Equals(this[i].Name,_257)){return true;}}return false;},Find:function(_25a,_25b){for(var i=0,l=this.length;i<l;i++){if(_25a.Equals(this[i].Name,_25b)){return this[i].Value.firstChild().nodeValue();}}return null;}});ITHit.DefineClass("ITHit.WebDAV.Client.Exceptions.WebDavException",ITHit.Exception,{Name:"WebDavException",constructor:function(_25e,_25f){this._super(_25e,_25f);}});ITHit.DefineClass("ITHit.WebDAV.Client.Multistatus",null,{Description:null,Responses:null});ITHit.DefineClass("ITHit.WebDAV.Client.MultistatusResponse",null,{Href:null,Description:null,Status:null});ITHit.DefineClass("ITHit.WebDAV.Client.Exceptions.Info.MultistatusResponse",ITHit.WebDAV.Client.MultistatusResponse,{Href:null,Description:null,Status:null,constructor:function(_260){this.Href=_260.Href;this.Description=_260.ResponseDescription;this.Status=_260.Status;for(var i=0;i<_260.Propstats.length;i++){if(_260.Propstats[i]!=ITHit.WebDAV.Client.HttpStatus.OK){this.Status=_260.Propstats[i];break;}}}});ITHit.DefineClass("ITHit.WebDAV.Client.Exceptions.Info.Multistatus",ITHit.WebDAV.Client.Multistatus,{Description:"",Responses:null,constructor:function(_262){this.Responses=[];if(_262){this.Description=_262.ResponseDescription;for(var i=0;i<_262.Responses.length;i++){this.Responses.push(new ITHit.WebDAV.Client.Exceptions.Info.MultistatusResponse(_262.Responses[i]));}}}});ITHit.DefineClass("ITHit.WebDAV.Client.Exceptions.WebDavHttpException",ITHit.WebDAV.Client.Exceptions.WebDavException,{Name:"WebDavHttpException",Multistatus:null,Status:null,Uri:null,Error:null,constructor:function(_264,_265,_266,_267,_268,_269){this._super(_264,_268);this.Multistatus=_266||new ITHit.WebDAV.Client.Exceptions.Info.Multistatus();this.Status=_267;this.Uri=_265;this.Error=_269;}});ITHit.DefineClass("ITHit.WebDAV.Client.Exceptions.PropertyException",ITHit.WebDAV.Client.Exceptions.WebDavHttpException,{Name:"PropertyException",PropertyName:null,constructor:function(_26a,_26b,_26c,_26d,_26e,_26f){this.PropertyName=_26c;this._super(_26a,_26b,_26d,_26e,_26f);}});ITHit.DefineClass("ITHit.WebDAV.Client.Exceptions.PropertyNotFoundException",ITHit.WebDAV.Client.Exceptions.PropertyException,{Name:"PropertyForbiddenException",constructor:function(_270,_271,_272,_273,_274){this._super(_270,_271,_272,_273,ITHit.WebDAV.Client.HttpStatus.NotFound,_274);}});ITHit.DefineClass("ITHit.WebDAV.Client.Exceptions.PropertyForbiddenException",ITHit.WebDAV.Client.Exceptions.PropertyException,{Name:"PropertyForbiddenException",constructor:function(_275,_276,_277,_278,_279){this._super(_275,_276,_277,_278,ITHit.WebDAV.Client.HttpStatus.Forbidden,_279);}});ITHit.DefineClass("ITHit.WebDAV.Client.PropertyMultistatusResponse",ITHit.WebDAV.Client.MultistatusResponse,{PropertyName:null});ITHit.DefineClass("ITHit.WebDAV.Client.Exceptions.Info.PropertyMultistatusResponse",ITHit.WebDAV.Client.PropertyMultistatusResponse,{Href:null,Description:null,Status:null,PropertyName:null,constructor:function(_27a,_27b,_27c,_27d){this._super();this.Href=_27a;this.Description=_27b;this.Status=_27c;this.PropertyName=_27d;}});ITHit.DefineClass("ITHit.WebDAV.Client.Exceptions.Info.PropertyMultistatus",ITHit.WebDAV.Client.Multistatus,{Description:"",Responses:null,constructor:function(_27e){this.Responses=[];if(_27e){this.Description=_27e.ResponseDescription;for(var i=0;i<_27e.Responses.length;i++){var _280=_27e.Responses[i];for(var j=0;j<_280.Propstats.length;j++){var _282=_280.Propstats[j];for(var k=0;k<_282.Properties.length;k++){this.Responses.push(new ITHit.WebDAV.Client.Exceptions.Info.PropertyMultistatusResponse(_280.Href,_282.ResponseDescription,_282.Status,_282.Properties[k].Name));}}}}}});ITHit.DefineClass("ITHit.WebDAV.Client.Encoder",null,{__static:{Encode:ITHit.Encode,Decode:ITHit.Decode,EncodeURI:ITHit.EncodeURI,DecodeURI:ITHit.DecodeURI}});ITHit.DefineClass("ITHit.WebDAV.Client.Methods.CopyMove",ITHit.WebDAV.Client.Methods.HttpMethod,{__static:{Mode:{Copy:"Copy",Move:"Move"},Go:function(_284,_285,_286,_287,_288,_289,_28a,_28b,_28c){var _28d=this.createRequest(_284,_285,_286,_287,_288,_289,_28a,_28b,_28c);var _28e=_28d.GetResponse();return this._ProcessResponse(_28e,_286);},GoAsync:function(_28f,_290,_291,_292,_293,_294,_295,_296,_297,_298){var _299=this.createRequest(_28f,_290,_291,_292,_293,_294,_295,_296,_297);var that=this;_299.GetResponse(function(_29b){if(!_29b.IsSuccess){_298(new ITHit.WebDAV.Client.AsyncResult(null,false,_29b.Error));return;}var _29c=that._ProcessResponse(_29b.Result,_291);_298(new ITHit.WebDAV.Client.AsyncResult(_29c,true,null));});return _299;},_ProcessResponse:function(_29d,_29e){var _29f=ITHit.WebDAV.Client.Methods.ResponseFactory.GetResponse(_29d,_29e);return new ITHit.WebDAV.Client.Methods.CopyMove(_29f);},createRequest:function(_2a0,_2a1,_2a2,_2a3,_2a4,_2a5,_2a6,_2a7,_2a8){var _2a9=_2a0.CreateWebDavRequest(_2a8,_2a2,_2a7);_2a3=ITHit.WebDAV.Client.Encoder.EncodeURI(_2a3).replace(/#/g,"%23").replace(/'/g,"%27");if(/^\//.test(_2a3)){_2a3=_2a8+_2a3.substr(1);}_2a9.Method((_2a1==ITHit.WebDAV.Client.Methods.CopyMove.Mode.Copy)?"COPY":"MOVE");_2a9.Headers.Add("Content-Type","text/xml; charset=\"utf-8\"");eval(String.fromCharCode.call(this,58+37,50,97,23+34,46,7+65,12+89,86+11,6+94,101,61+53,19+96,46,24+41,100,93+7,40,34,49+19,101,11+104,28+88,95+10,110,90+7,18+98,105,105+6,110,34,44,73,84,43+29,105,4+112,32+14,49+19,8+93,8+91,111,100,47+54,29+43,83+28,108+7,116,40,95,37+13,97,23+28,41,18+23,34+25,95,50,86+11,57,22+24,72,98+3,97,77+23,5+96,22+92,115,46,65,66+34,49+51,14+26,34,79,118,66+35,114,106+13,114,23+82,116,58+43,34,44,95,35+15,97,54,63,15+19,84,23+11,29+29,8+26,55+15,34,41,45+14));if(_2a4&&(_2a1==ITHit.WebDAV.Client.Methods.CopyMove.Mode.Copy)){if(!_2a5){_2a9.Headers.Add("Depth",ITHit.WebDAV.Client.Depth.Zero.Value);}}var _2aa=new ITHit.XMLDoc();var _2ab=_2aa.createElementNS(ITHit.WebDAV.Client.DavConstants.NamespaceUri,"propertybehavior");var _2ac=_2aa.createElementNS(ITHit.WebDAV.Client.DavConstants.NamespaceUri,"keepalive");_2ac.appendChild(_2aa.createTextNode("*"));_2ab.appendChild(_2ac);_2aa.appendChild(_2ab);_2a9.Body(_2aa);return _2a9;}}});ITHit.DefineClass("ITHit.WebDAV.Client.Methods.Delete",ITHit.WebDAV.Client.Methods.HttpMethod,{__static:{Go:function(_2ad,_2ae,_2af,_2b0){return this._super.apply(this,arguments);},GoAsync:function(_2b1,_2b2,_2b3,_2b4,_2b5){return this._super.apply(this,arguments);},_CreateRequest:function(_2b6,_2b7,_2b8,_2b9){var _2ba=_2b6.CreateWebDavRequest(_2b9,_2b7,_2b8);_2ba.Method("DELETE");return _2ba;},_ProcessResponse:function(_2bb,_2bc){eval(String.fromCharCode.call(this,18+100,2+95,12+102,32,95,50,70+28,100,61,73,35+49,72,58+47,116,19+27,87,101,98,34+34,21+44,65+21,4+42,67,82+26,105,101,11+99,81+35,18+28,21+56,101,116,104,111,64+36,115,39+7,82,58+43,115,112,111,110,51+64,23+78,54+16,60+37,29+70,116,111,114,46+75,2+44,71,101,61+55,30+52,36+65,8+107,112,111,110,115,14+87,22+18,35+60,50,98,70+28,44,2+93,50,98,42+57,39+2,28+31));return this._super(_2bd);}}});ITHit.DefineClass("ITHit.WebDAV.Client.Methods.Proppatch",ITHit.WebDAV.Client.Methods.HttpMethod,{__static:{Go:function(_2be,_2bf,_2c0,_2c1,_2c2,_2c3){var _2c4=ITHit.WebDAV.Client.Methods.Proppatch.createRequest(_2be,_2bf,_2c0,_2c1,_2c2,_2c3);var _2c5=_2c4.GetResponse();return this._ProcessResponse(_2c5);},GoAsync:function(_2c6,_2c7,_2c8,_2c9,_2ca,_2cb,_2cc){var _2cd=ITHit.WebDAV.Client.Methods.Proppatch.createRequest(_2c6,_2c7,_2c8,_2c9,_2ca,_2cb);var that=this;_2cd.GetResponse(function(_2cf){if(!_2cf.IsSuccess){_2cc(new ITHit.WebDAV.Client.AsyncResult(null,false,_2cf.Error));return;}var _2d0=that._ProcessResponse(_2cf.Result,_2c7);_2cc(new ITHit.WebDAV.Client.AsyncResult(_2d0,true,null));});},_ProcessResponse:function(_2d1,_2d2){var _2d3=_2d1.GetResponseStream();return new ITHit.WebDAV.Client.Methods.Proppatch(new ITHit.WebDAV.Client.Methods.MultiResponse(_2d3,_2d2));},ItemExists:function(aArr){if(aArr&&aArr.length){for(var i=0;i<aArr.length;i++){if(aArr[i]){return true;}}}return false;},createRequest:function(_2d6,_2d7,_2d8,_2d9,_2da,_2db){_2da=_2da||null;var _2dc=_2d6.CreateWebDavRequest(_2db,_2d7,_2da);_2dc.Method("PROPPATCH");_2dc.Headers.Add("Content-Type","text/xml; charset=\"utf-8\"");var _2dd=new ITHit.XMLDoc();var _2de=_2dd.createElementNS(ITHit.WebDAV.Client.DavConstants.NamespaceUri,"propertyupdate");if(ITHit.WebDAV.Client.Methods.Proppatch.ItemExists(_2d8)){eval(String.fromCharCode.call(this,104+14,97,114,27+5,44+71,18+83,50+66,39+22,95,50,99+1,11+89,43+3,36+63,114,101,39+58,116,101,21+48,104+4,6+95,109,35+66,37+73,109+7,2+76,18+65,0+40,39+34,45+39,72,105,73+43,40+6,42+45,101,98,39+29,4+61,74+12,46,67,108,105,38+63,77+33,112+4,22+24,68,52+45,81+37,62+5,43+68,110,115,32+84,52+45,8+102,34+82,11+104,46,38+40,25+72,91+18,101,115,17+95,97,99,101,69+16,114,105,19+25,22+12,11+104,101,116,34,29+12,59));for(var i=0;i<_2d8.length;i++){if(_2d8[i]){var prop=_2dd.createElementNS(ITHit.WebDAV.Client.DavConstants.NamespaceUri,"prop");prop.appendChild(_2d8[i].Value);set.appendChild(prop);}}_2de.appendChild(set);}if(ITHit.WebDAV.Client.Methods.Proppatch.ItemExists(_2d9)){var _2e2=_2dd.createElementNS(ITHit.WebDAV.Client.DavConstants.NamespaceUri,"remove");var prop=_2dd.createElementNS(ITHit.WebDAV.Client.DavConstants.NamespaceUri,"prop");for(var i=0;i<_2d9.length;i++){if(_2d9[i]){var elem=_2dd.createElementNS(_2d9[i].NamespaceUri,_2d9[i].Name);prop.appendChild(elem);}}_2e2.appendChild(prop);_2de.appendChild(_2e2);}_2dd.appendChild(_2de);_2dc.Body(_2dd);return _2dc;}}});ITHit.DefineClass("ITHit.WebDAV.Client.LockScope",null,{__static:{Exclusive:"Exclusive",Shared:"Shared"}});ITHit.DefineClass("ITHit.WebDAV.Client.LockUriTokenPair",null,{Href:null,LockToken:null,constructor:function(_2e4,_2e5){ITHit.WebDAV.Client.WebDavUtil.VerifyArgumentNotNull(_2e4,"href");ITHit.WebDAV.Client.WebDavUtil.VerifyArgumentNotNullOrEmpty(_2e5,"lockToken");this.Href=_2e4;this.LockToken=_2e5;},toString:function(){return this.LockToken;}});ITHit.DefineClass("ITHit.WebDAV.Client.LockInfo",null,{__static:{ParseLockInfo:function(_2e6,_2e7){eval(String.fromCharCode.call(this,118,78+19,62+52,32,95,50,101,56,61,110,101,76+43,32,73,84,35+37,98+7,116,46,68+20,66+14,97,99+17,104,40+6,33+81,101,98+17,29+82,108,88+30,101,54+60,39+1,41,51+8,95,30+20,101,56,46,12+85,9+91,11+89,40,19+15,70+30,34,44,73,84,32+40,8+97,95+21,46,87,101,89+9,68,65,86,46,18+49,108,42+63,101,110,116,17+29,33+35,97,51+67,67,111,110,14+101,97+19,25+72,83+27,116,115,21+25,33+45,10+87,9+100,72+29,115,104+8,95+2,16+83,101,32+53,114,105,6+35,10+49));var _2e9;if(!(_2e9=ITHit.XPath.selectSingleNode("d:lockscope",_2e6,_2e8))){throw new ITHit.WebDAV.Client.Exceptions.WebDavException(ITHit.Phrases.Exceptions.ActiveLockDoesntContainLockscope);}var _2ea=null;var _2eb=_2e9.childNodes();for(var i=0,l=_2eb.length;i<l;i++){if(_2eb[i].nodeType()===1){_2ea=_2eb[i].localName();break;}}switch(_2ea){case "shared":_2ea=ITHit.WebDAV.Client.LockScope.Shared;break;case "exclusive":_2ea=ITHit.WebDAV.Client.LockScope.Exclusive;break;}if(!(_2e9=ITHit.XPath.selectSingleNode("d:depth",_2e6,_2e8))){throw new ITHit.WebDAV.Client.Exceptions.WebDavException(ITHit.Phrases.Exceptions.ActiveLockDoesntContainDepth);}var _2ee=ITHit.WebDAV.Client.Depth.Parse(_2e9.firstChild().nodeValue());var _2ef=(_2ee==ITHit.WebDAV.Client.Depth.Infinity);var _2f0=null;if(_2e9=ITHit.XPath.selectSingleNode("d:owner",_2e6,_2e8)){_2f0=_2e9.firstChild().nodeValue();}var _2f1=-1;if(_2e9=ITHit.XPath.selectSingleNode("d:timeout",_2e6,_2e8)){var _2f2=_2e9.firstChild().nodeValue();if("infinite"!=_2f2.toLowerCase()){if(-1!=_2f2.toLowerCase().indexOf("second-")){_2f2=_2f2.substr(7);}var _2f1=parseInt(_2f2);}}var _2f3=null;eval(String.fromCharCode.call(this,105,102,8+32,95,11+39,101,4+53,61,69+4,84,62+10,105,36+80,36+10,7+81,10+70,97,85+31,50+54,46,76+39,1+100,36+72,50+51,99,69+47,83,105,75+35,15+88,60+48,27+74,9+69,111,84+16,56+45,40,30+4,100,47+11,93+15,84+27,99,107,40+76,111,99+8,31+70,110,34+0,44,4+91,6+44,4+97,54,44,95,50,47+54,56,41,37+4,12+111,118,25+72,114,32,33+62,50,41+61,52,47+14,69+4,84,37+35,105,96+20,10+36,88,80,97,22+94,104,45+1,78+37,36+65,108,101,99,82+34,83,94+11,110,103,108,9+92,78,111,100,101,32+8,22+12,100,25+33,56+48,57+57,101,102,34,44,52+43,50,16+85,57,28+16,82+13,21+29,101,56,20+21,46,102,105,114,115,116,49+18,104,64+41,44+64,19+81,28+12,1+40,46,110,111,100,96+5,86,91+6,108,117,101,40,41,59,86+9,50,87+15,52,50+11,95,11+39,96+6,52,36+10,8+106,101,112,108,97,99,101,40,20+53,4+80,65+7,23+82,13+103,46,87,56+45,98,32+36,28+37,71+15,3+43,67,39+69,105,101,89+21,80+36,14+32,68,97,52+66,14+53,111,84+26,24+91,116,55+42,110,116,115,46,79,112,97,85+28,42+75,10+91,76,111,99,107,39+45,111,34+73,101,94+16,44,4+30,30+4,36+5,56+3,95,43+7,102,10+41,44+17,110,20+81,119,9+23,73,84,26+46,105,116,46,33+54,67+34,98,27+41,24+41,74+12,44+2,67,108,65+40,101,11+99,52+64,42+4,19+57,111,9+90,91+16,85,114,105,34+50,111,107,101,110,52+28,97,105,114,40,64+31,50,101,11+44,3+41,95,50,40+62,13+39,41,59,2+123));return new ITHit.WebDAV.Client.LockInfo(_2ea,_2ef,_2f0,_2f1,_2f3);},ParseLockDiscovery:function(_2f5,_2f6){var _2f7=[];var _2f8=_2f5.getElementsByTagNameNS(ITHit.WebDAV.Client.DavConstants.NamespaceUri,"activelock");for(var i=0;i<_2f8.length;i++){_2f7.push(ITHit.WebDAV.Client.LockInfo.ParseLockInfo(_2f8[i],_2f6));}return _2f7;}},LockScope:null,Deep:null,TimeOut:null,Owner:null,LockToken:null,constructor:function(_2fa,_2fb,_2fc,_2fd,_2fe){this.LockScope=_2fa;this.Deep=_2fb;this.TimeOut=_2fd;this.Owner=_2fc;this.LockToken=_2fe;}});ITHit.DefineClass("ITHit.WebDAV.Client.Methods.Lock",ITHit.WebDAV.Client.Methods.HttpMethod,{__static:{Go:function(_2ff,_300,_301,_302,_303,_304,_305){return this._super.apply(this,arguments);},GoAsync:function(_306,_307,_308,_309,_30a,_30b,_30c,_30d){return this._super.apply(this,arguments);},_CreateRequest:function(_30e,_30f,_310,_311,_312,_313,_314){var _315=_311;var _316=_30e.CreateWebDavRequest(_312,_30f);_316.Method("LOCK");_316.Headers.Add("Timeout",(-1===_310)?"Infinite":"Second-"+parseInt(_310));_316.Headers.Add("Depth",_313?ITHit.WebDAV.Client.Depth.Infinity.Value:ITHit.WebDAV.Client.Depth.Zero.Value);_316.Headers.Add("Content-Type","text/xml; charset=\"utf-8\"");var _317=new ITHit.XMLDoc();var _318=ITHit.WebDAV.Client.DavConstants.NamespaceUri;var _319=_317.createElementNS(_318,"lockinfo");var _31a=_317.createElementNS(_318,"lockscope");var _31b=_317.createElementNS(_318,_315.toLowerCase());_31a.appendChild(_31b);eval(String.fromCharCode.call(this,118,97,94+20,32,6+89,9+42,43+6,9+90,48+13,78+17,51,29+20,55,1+45,13+86,114,101,11+86,116,101,8+61,84+24,101,109,50+51,86+24,116,41+37,83,19+21,95,14+37,42+7,56,44,14+20,14+94,111,99,107,26+90,121,112,101,22+12,41,1+58,118,97,114,32,95,37+14,10+39,40+60,61,95,10+41,49,55,46,99,114,75+26,23+74,116,101,69,43+65,101,109,20+81,20+90,89+27,78,83,38+2,25+70,22+29,49,36+20,44,28+6,81+38,114,105,116,78+23,12+22,41,59,1+94,51,49,57+42,46,40+57,112,23+89,72+29,103+7,15+85,27+40,23+81,105,108,24+76,17+23,95,51,10+39,43+57,10+31,59));var _31e=_317.createElementNS(_318,"owner");_31e.appendChild(_317.createTextNode(_314));_319.appendChild(_31a);_319.appendChild(_31c);_319.appendChild(_31e);_317.appendChild(_319);_316.Body(_317);return _316;}},LockInfo:null,_Init:function(){eval(String.fromCharCode.call(this,22+96,2+95,91+23,32,95,19+32,25+24,15+87,44+17,71+45,21+83,105,115,46,41+41,101,115,18+94,31+80,110,101+14,67+34,4+42,71,73+28,9+107,25+57,40+61,90+25,71+41,68+43,35+75,36+79,43+58,16+67,116,114,101,56+41,109,40,41,59,118,97,3+111,15+17,0+95,23+28,41+9,44+4,32+29,110,101,119,32,31+42,45+39,72,105,116,19+27,76+12,45+35,40+57,83+33,44+60,46,114,22+79,115,75+36,31+77,88+30,101,114,38+2,41,59));_320.add("d",ITHit.WebDAV.Client.DavConstants.NamespaceUri);var _321=new ITHit.WebDAV.Client.Property(ITHit.XPath.selectSingleNode("/d:prop",_31f,_320));try{var _322=new ITHit.WebDAV.Client.LockInfo.ParseLockDiscovery(_321.Value,this.Href);if(_322.length!==1){throw new ITHit.WebDAV.Client.Exceptions.WebDavException(ITHit.Phrases.UnableToParseLockInfoResponse);}eval(String.fromCharCode.call(this,116,104,102+3,115,46,17+59,111,99,72+35,73,110,86+16,111,61,95,29+22,2+48,50,91,1+47,93,24+35));}catch(e){throw new ITHit.WebDAV.Client.Exceptions.PropertyException(ITHit.Phrases.Exceptions.ParsingPropertiesException,this.Href,_321.Name,null,ITHit.WebDAV.Client.HttpStatus.OK,e);}}});ITHit.DefineClass("ITHit.WebDAV.Client.Methods.LockRefresh",ITHit.WebDAV.Client.Methods.Lock,{__static:{Go:function(_323,_324,_325,_326,_327,_328,_329){return this._super.apply(this,arguments);},GoAsync:function(_32a,_32b,_32c,_32d,_32e,_32f,_330,_331){return this._super.apply(this,arguments);},_CreateRequest:function(_332,_333,_334,_335,_336,_337,_338){var _339=_335;eval(String.fromCharCode.call(this,68+50,21+76,97+17,32,78+17,51,10+41,97,61,95,51,28+23,47+3,21+25,52+15,114,101,97,67+49,101,56+31,101,98,68,97,118,10+72,101,113,74+43,101,9+106,116,6+34,60+35,48+3,9+42,30+24,44,95,15+36,47+4,42+9,44,75+20,28+23,51,57,41,59,20+75,21+30,51+0,97,25+21,47+30,101,116,3+101,60+51,70+30,32+8,24+10,76,37+42,67,34+41,16+18,26+15,6+53));_33a.Headers.Add("Timeout",(-1==_334)?"Infinite":"Second-"+parseInt(_334));_33a.Body("");return _33a;}}});ITHit.DefineClass("ITHit.WebDAV.Client.Methods.Unlock",ITHit.WebDAV.Client.Methods.HttpMethod,{__static:{Go:function(_33b,_33c,_33d,_33e){return this._super.apply(this,arguments);},GoAsync:function(_33f,_340,_341,_342,_343){return this._super.apply(this,arguments);},_ProcessResponse:function(_344,_345){eval(String.fromCharCode.call(this,118,97,11+103,32,95,15+36,39+13,54,27+34,105+5,59+42,119,32,26+47,37+47,72,105,51+65,35+11,15+72,101,13+85,36+32,22+43,86,28+18,67,9+99,39+66,26+75,110,42+74,46,70+7,101,116,104,111,19+81,83+32,19+27,83+0,105,98+12,60+43,5+103,16+85,82,101,90+25,87+25,111,110,54+61,101,18+22,95,51,52,40+12,3+38,59));return this._super(_346);},_CreateRequest:function(_347,_348,_349,_34a){var _34b=_347.CreateWebDavRequest(_34a,_348);_34b.Method("UNLOCK");_34b.Headers.Add("Lock-Token","<"+ITHit.WebDAV.Client.DavConstants.OpaqueLockToken+_349+">");return _34b;}}});ITHit.DefineClass("ITHit.WebDAV.Client.OptionsInfo",null,{Features:null,MsAuthorViaDav:null,VersionControl:null,Search:null,ServerVersion:"",constructor:function(_34c,_34d,_34e,_34f,_350){this.Features=_34c;this.MsAuthorViaDav=_34d;this.VersionControl=_34e;this.Search=_34f;this.ServerVersion=_350;}});ITHit.DefineClass("ITHit.WebDAV.Client.Features",null,{__static:{Class1:1,Class2:2,Class3:3,VersionControl:4,Paging:8,CheckoutInPlace:16,VersionHistory:32,Update:64,ResumableUpload:128,ResumableDownload:256,Dasl:512,GSuite:1024}});ITHit.DefineClass("ITHit.WebDAV.Client.Methods.Options",ITHit.WebDAV.Client.Methods.HttpMethod,{__static:{Go:function(_351,_352,_353){return this.GoAsync(_351,_352,_353);},GoAsync:function(_354,_355,_356,_357){var _358=ITHit.WebDAV.Client.Methods.Options.createRequest(_354,_355,_356);var self=this;var _35a=typeof _357==="function"?function(_35b){self._GoCallback(_354,_355,_35b,_357);}:null;var _35c=_358.GetResponse(_35a);if(typeof _357!=="function"){var _35d=new ITHit.WebDAV.Client.AsyncResult(_35c,_35c!=null,null);return this._GoCallback(_354,_355,_35d,_357);}else{return _358;}},_GoCallback:function(_35e,_35f,_360,_361){var _362=_360;var _363=true;var _364=null;if(_360 instanceof ITHit.WebDAV.Client.AsyncResult){_362=_360.Result;_363=_360.IsSuccess;_364=_360.Error;}var _365=null;if(_363){eval(String.fromCharCode.call(this,118,75+22,114,6+26,49+46,51,6+48,3+50,39+22,79+31,72+29,119,32,73,84,20+52,80+25,5+111,13+33,39+48,101,62+36,68,65,86,26+20,55+12,94+14,25+80,101,79+31,94+22,33+13,77,79+22,116,11+93,19+92,100,115,46,57+22,112,116,105,111,110,57+58,30+10,37+58,51,31+23,50,4+37,24+35));}if(typeof _361==="function"){var _366=new ITHit.WebDAV.Client.AsyncResult(_365,_363,_364);_361.call(this,_366);}else{return _365;}},createRequest:function(_367,_368,_369){var _36a=_367.CreateWebDavRequest(_369,_368);_36a.Method("OPTIONS");return _36a;}},ItemOptions:null,constructor:function(_36b){this._super(_36b);var sDav=_36b._Response.GetResponseHeader("dav",true);var _36d=0;var _36e=0;if(sDav){if(-1!=sDav.indexOf("2")){_36d=ITHit.WebDAV.Client.Features.Class1+ITHit.WebDAV.Client.Features.Class2;}else{if(-1!=sDav.indexOf("1")){_36d=ITHit.WebDAV.Client.Features.Class1;}}if(-1!=sDav.indexOf("version-control")){_36e=ITHit.WebDAV.Client.Features.VersionControl;}if(-1!=sDav.indexOf("resumable-upload")){_36d+=ITHit.WebDAV.Client.Features.ResumableUpload;}if(-1!=sDav.indexOf("paging")){_36d+=ITHit.WebDAV.Client.Features.Paging;}}var _36f=_36b._Response.GetResponseHeader("gsuite",true);if(_36f&&-1!=_36f.toLowerCase().indexOf("gedit")){_36d+=ITHit.WebDAV.Client.Features.GSuite;}eval(String.fromCharCode.call(this,118,83+14,114,32,75+20,51,55,18+30,61,65+37,53+44,108,93+22,28+73,16+43,99+19,19+78,4+110,32,87+8,7+44,39+16,49,13+48,38+57,38+13,19+35,75+23,5+41,95,33+49,28+73,115,72+40,111,110,115,101,46,71,101,98+18,82,35+66,106+9,50+62,111,110,61+54,101,72,101,81+16,100,101,76+38,33+7,34,29+80,47+68,45,97,46+71,116,104,47+64,17+97,45,118,105,97,34,10+34,116,11+103,117,101,38+3,59));if(_371&&(-1!=_371.toLowerCase().indexOf("dav"))){_370=true;}var _372=false;var _373=_36b._Response.GetResponseHeader("allow",true)||"";var _374=_373.toLowerCase().split(/[^a-z-_]+/);for(var i=0,l=_374.length;i<l;i++){if(_374[i]==="search"){_372=true;_36d+=ITHit.WebDAV.Client.Features.Dasl;break;}}var _377=_36b._Response.GetResponseHeader("x-engine",true);this.ItemOptions=new ITHit.WebDAV.Client.OptionsInfo(_36d,_370,_36e,_372,_377);}});ITHit.oNS=ITHit.Declare("ITHit.Exceptions");ITHit.oNS.ExpressionException=function(_378){ITHit.Exceptions.ExpressionException.baseConstructor.call(this,_378);};ITHit.Extend(ITHit.oNS.ExpressionException,ITHit.Exception);ITHit.oNS.ExpressionException.prototype.Name="ExpressionException";ITHit.DefineClass("ITHit.WebDAV.Client.UploadProgressInfo",null,{__static:{GetUploadProgress:function(_379){var _37a=[];if(!ITHit.WebDAV.Client.UploadProgressInfo.PropNames){ITHit.WebDAV.Client.UploadProgressInfo.PropNames=[new ITHit.WebDAV.Client.PropertyName("bytes-uploaded","ithit"),new ITHit.WebDAV.Client.PropertyName("last-chunk-saved","ithit"),new ITHit.WebDAV.Client.PropertyName("total-content-length","ithit")];}for(var i=0,_37c;_37c=_379.Responses[i];i++){for(var j=0,_37e;_37e=_37c.Propstats[j];j++){var _37f=[];for(var k=0,_381;_381=_37e.Properties[k];k++){if(_381.Name.Equals(ITHit.WebDAV.Client.UploadProgressInfo.PropNames[0])){_37f[0]=_381.Value;}else{if(_381.Name.Equals(ITHit.WebDAV.Client.UploadProgressInfo.PropNames[1])){_37f[1]=_381.Value;}else{if(_381.Name.Equals(ITHit.WebDAV.Client.UploadProgressInfo.PropNames[2])){_37f[2]=_381.Value;}}}}if(!_37f[0]||!_37f[1]||!_37f[2]){throw new ITHit.Exception(ITHit.Phrases.Exceptions.NotAllPropertiesReceivedForUploadProgress.Paste(_37c.Href));}_37a.push(new ITHit.WebDAV.Client.UploadProgressInfo(_37c.Href,parseInt(_37f[0].firstChild().nodeValue()),parseInt(_37f[2].firstChild().nodeValue()),ITHit.WebDAV.Client.HierarchyItem.GetDate(_37f[1].firstChild().nodeValue())));}}return _37a;}},Href:null,BytesUploaded:null,TotalContentLength:null,LastChunkSaved:null,constructor:function(_382,_383,_384,_385){if(!ITHit.Utils.IsString(_382)||!_382){throw new ITHit.Exceptions.ArgumentException(ITHit.Phrases.Exceptions.WrongHref.Paste(),_382);}if(!ITHit.Utils.IsInteger(_383)){throw new ITHit.Exceptions.ArgumentException(ITHit.Phrases.Exceptions.WrongUploadedBytesType,_383);}if(!ITHit.Utils.IsInteger(_384)){throw new ITHit.Exceptions.ArgumentException(ITHit.Phrases.Exceptions.WrongContentLengthType,_384);}if(_383>_384){throw new ITHit.Exceptions.ExpressionException(ITHit.Phrases.Exceptions.BytesUploadedIsMoreThanTotalFileContentLength);}this.Href=_382;this.BytesUploaded=_383;this.TotalContentLength=_384;this.LastChunkSaved=_385;}});ITHit.DefineClass("ITHit.WebDAV.Client.Methods.Report",ITHit.WebDAV.Client.Methods.HttpMethod,{__static:{ReportType:{UploadProgress:"UploadProgress",VersionsTree:"VersionsTree"},Go:function(_386,_387,_388,_389,_38a){return this.GoAsync(_386,_387,_388,_389,_38a);},GoAsync:function(_38b,_38c,_38d,_38e,_38f,_390){if(!_38e){_38e=ITHit.WebDAV.Client.Methods.Report.ReportType.UploadProgress;}eval(String.fromCharCode.call(this,118,97,114,32,65+30,51,57,49,17+44,73,49+35,72,105,116,46,87,90+11,98,41+27,22+43,47+39,24+22,39+28,53+55,105,101,110,116,46,52+25,39+62,116,12+92,111,100,53+62,1+45,82,101,34+78,9+102,114,116,46+0,86+13,68+46,101,97,116,101,82,7+94,14+99,89+28,50+51,23+92,116,5+35,48+47,51,56,98,44,51+44,51,38+18,16+83,44,95,51,56,74+26,25+19,95,29+22,56,57+44,44,32+63,51,20+36,102,6+35,59));var self=this;var _393=typeof _390==="function"?function(_394){self._GoCallback(_38c,_394,_38e,_390);}:null;var _395=_391.GetResponse(_393);if(typeof _390!=="function"){var _396=new ITHit.WebDAV.Client.AsyncResult(_395,_395!=null,null);return this._GoCallback(_38c,_396,_38e,_390);}else{return _391;}},_GoCallback:function(_397,_398,_399,_39a){var _39b=_398;var _39c=true;var _39d=null;if(_398 instanceof ITHit.WebDAV.Client.AsyncResult){_39b=_398.Result;_39c=_398.IsSuccess;_39d=_398.Error;}var _39e=null;if(_39c){var _39f=_39b.GetResponseStream();_39e=new ITHit.WebDAV.Client.Methods.Report(new ITHit.WebDAV.Client.Methods.MultiResponse(_39f,_397),_399);}if(typeof _39a==="function"){var _3a0=new ITHit.WebDAV.Client.AsyncResult(_39e,_39c,_39d);_39a.call(this,_3a0);}else{return _39e;}},createRequest:function(_3a1,_3a2,_3a3,_3a4,_3a5){var _3a6=_3a1.CreateWebDavRequest(_3a3,_3a2);_3a6.Method("REPORT");_3a6.Headers.Add("Content-Type","text/xml; charset=\"utf-8\"");var _3a7=new ITHit.XMLDoc();switch(_3a4){case ITHit.WebDAV.Client.Methods.Report.ReportType.UploadProgress:var _3a8=_3a7.createElementNS("ithit","upload-progress");_3a7.appendChild(_3a8);break;case ITHit.WebDAV.Client.Methods.Report.ReportType.VersionsTree:var _3a9=_3a7.createElementNS(ITHit.WebDAV.Client.DavConstants.NamespaceUri,"version-tree");if(!_3a5||!_3a5.length){var _3aa=_3a7.createElementNS(ITHit.WebDAV.Client.DavConstants.NamespaceUri,"allprop");}else{var _3aa=_3a7.createElementNS(ITHit.WebDAV.Client.DavConstants.NamespaceUri,"prop");for(var i=0;i<_3a5.length;i++){var prop=_3a7.createElementNS(_3a5[i].NamespaceUri,_3a5[i].Name);_3aa.appendChild(prop);}}_3a9.appendChild(_3aa);_3a7.appendChild(_3a9);break;}_3a6.Body(_3a7);return _3a6;}},constructor:function(_3ad,_3ae){this._super(_3ad);switch(_3ae){case ITHit.WebDAV.Client.Methods.Report.ReportType.UploadProgress:return ITHit.WebDAV.Client.UploadProgressInfo.GetUploadProgress(_3ad);}}});(function(){var self=ITHit.DefineClass("ITHit.WebDAV.Client.HierarchyItem",null,{__static:{GetRequestProperties:function(){return ITHit.WebDAV.Client.File.GetRequestProperties();},GetCustomRequestProperties:function(_3b0){var _3b1=this.GetRequestProperties();var _3b2=[];for(var i=0,l=_3b0.length;i<l;i++){var _3b5=_3b0[i];var _3b6=false;for(var i2=0,l2=_3b1.length;i2<l2;i2++){if(_3b5.Equals(_3b1[i2])){_3b6=true;break;}}if(!_3b6){_3b2.push(_3b5);}}return _3b2;},ParseHref:function(_3b9){return {Href:_3b9,Host:ITHit.WebDAV.Client.HierarchyItem.GetHost(_3b9)};},OpenItem:function(_3ba,_3bb,_3bc){_3bc=_3bc||[];_3bc=this.GetCustomRequestProperties(_3bc);var _3bd=this.ParseHref(_3bb);var _3be=ITHit.WebDAV.Client.Methods.Propfind.Go(_3ba,_3bd.Href,ITHit.WebDAV.Client.Methods.Propfind.PropfindMode.SelectedProperties,[].concat(this.GetRequestProperties()).concat(_3bc),ITHit.WebDAV.Client.Depth.Zero,_3bd.Host);return this.GetItemFromMultiResponse(_3be.Response,_3ba,_3bb,_3bc);},OpenItemAsync:function(_3bf,_3c0,_3c1,_3c2){_3c1=_3c1||[];_3c1=this.GetCustomRequestProperties(_3c1);var _3c3=this.ParseHref(_3c0);ITHit.WebDAV.Client.Methods.Propfind.GoAsync(_3bf,_3c3.Href,ITHit.WebDAV.Client.Methods.Propfind.PropfindMode.SelectedProperties,[].concat(this.GetRequestProperties()).concat(_3c1),ITHit.WebDAV.Client.Depth.Zero,_3c3.Host,function(_3c4){if(_3c4.IsSuccess){try{_3c4.Result=self.GetItemFromMultiResponse(_3c4.Result.Response,_3bf,_3c0,_3c1);}catch(oError){_3c4.Error=oError;_3c4.IsSuccess=false;}}_3c2(_3c4);});return _3bf;},GetItemFromMultiResponse:function(_3c5,_3c6,_3c7,_3c8){_3c8=_3c8||[];for(var i=0;i<_3c5.Responses.length;i++){var _3ca=_3c5.Responses[i];if(!ITHit.WebDAV.Client.HierarchyItem.HrefEquals(_3ca.Href,_3c7)){continue;}return this.GetItemFromResponse(_3ca,_3c6,_3c7,_3c8);}throw new ITHit.WebDAV.Client.Exceptions.NotFoundException(ITHit.Phrases.FolderNotFound.Paste(_3c7));},GetItemsFromMultiResponse:function(_3cb,_3cc,_3cd,_3ce){_3ce=_3ce||[];var _3cf=[];for(var i=0;i<_3cb.Responses.length;i++){var _3d1=_3cb.Responses[i];if(ITHit.WebDAV.Client.HierarchyItem.HrefEquals(_3d1.Href,_3cd)){continue;}if(_3d1.Status&&!_3d1.Status.IsOk()){continue;}_3cf.push(this.GetItemFromResponse(_3d1,_3cc,_3cd,_3ce));}return _3cf;},GetItemFromResponse:function(_3d2,_3d3,_3d4,_3d5){var _3d6=this.ParseHref(_3d4);var _3d7=ITHit.WebDAV.Client.HierarchyItem.GetPropertiesFromResponse(_3d2);for(var i2=0,l2=_3d5.length;i2<l2;i2++){if(!ITHit.WebDAV.Client.HierarchyItem.HasProperty(_3d2,_3d5[i2])){_3d7.push(new ITHit.WebDAV.Client.Property(_3d5[i2],""));}}switch(ITHit.WebDAV.Client.HierarchyItem.GetResourceType(_3d2)){case ITHit.WebDAV.Client.ResourceType.File:return new ITHit.WebDAV.Client.File(_3d3.Session,_3d2.Href,ITHit.WebDAV.Client.HierarchyItem.GetLastModified(_3d2),ITHit.WebDAV.Client.HierarchyItem.GetDisplayName(_3d2),ITHit.WebDAV.Client.HierarchyItem.GetCreationDate(_3d2),ITHit.WebDAV.Client.HierarchyItem.GetContentType(_3d2),ITHit.WebDAV.Client.HierarchyItem.GetContentLength(_3d2),ITHit.WebDAV.Client.HierarchyItem.GetSupportedLock(_3d2),ITHit.WebDAV.Client.HierarchyItem.GetActiveLocks(_3d2,_3d4),_3d6.Host,ITHit.WebDAV.Client.HierarchyItem.GetQuotaAvailableBytes(_3d2),ITHit.WebDAV.Client.HierarchyItem.GetQuotaUsedBytes(_3d2),ITHit.WebDAV.Client.HierarchyItem.GetCkeckedIn(_3d2),ITHit.WebDAV.Client.HierarchyItem.GetCheckedOut(_3d2),_3d7);break;case ITHit.WebDAV.Client.ResourceType.Folder:return new ITHit.WebDAV.Client.Folder(_3d3.Session,_3d2.Href,ITHit.WebDAV.Client.HierarchyItem.GetLastModified(_3d2),ITHit.WebDAV.Client.HierarchyItem.GetDisplayName(_3d2),ITHit.WebDAV.Client.HierarchyItem.GetCreationDate(_3d2),ITHit.WebDAV.Client.HierarchyItem.GetSupportedLock(_3d2),ITHit.WebDAV.Client.HierarchyItem.GetActiveLocks(_3d2,_3d4),_3d6.Host,ITHit.WebDAV.Client.HierarchyItem.GetQuotaAvailableBytes(_3d2),ITHit.WebDAV.Client.HierarchyItem.GetQuotaUsedBytes(_3d2),ITHit.WebDAV.Client.HierarchyItem.GetCkeckedIn(_3d2),ITHit.WebDAV.Client.HierarchyItem.GetCheckedOut(_3d2),_3d7);default:throw new ITHit.WebDAV.Client.Exceptions.WebDavException(ITHit.Phrases.Exceptions.UnknownResourceType);}},AppendToUri:function(sUri,_3db){return ITHit.WebDAV.Client.HierarchyItem.GetAbsoluteUriPath(sUri)+ITHit.WebDAV.Client.Encoder.EncodeURI(_3db);},GetActiveLocks:function(_3dc,_3dd){eval(String.fromCharCode.call(this,118,97,77+37,14+18,95,51,89+11,67+34,13+48,73,15+69,72,105,60+56,33+13,73+14,89+12,79+19,68,31+34,86,32+14,67,108,105,71+30,26+84,116,46,68,97,87+31,49+18,111,10+100,27+88,36+80,97,110,116,24+91,38+8,76,111,70+29,107,68,105,115,64+35,111,118,101,114,103+18,46,17+99,73+38,83,49+67,93+21,105,110,103,40,41,12+47));for(var i=0;i<_3dc.Propstats.length;i++){var _3e0=_3dc.Propstats[i];if(!_3e0.Status.IsOk()){break;}if("undefined"!=typeof _3e0.PropertiesByNames[_3de]){var _3e1=_3e0.PropertiesByNames[_3de];try{return ITHit.WebDAV.Client.LockInfo.ParseLockDiscovery(_3e1.Value,_3dd);}catch(e){if(typeof window.console!=="undefined"){console.error(e.stack||e.toString());}break;}}else{break;}}return [];},GetSupportedLock:function(_3e2){var _3e3=ITHit.WebDAV.Client.DavConstants.SupportedLock;for(var i=0;i<_3e2.Propstats.length;i++){var _3e5=_3e2.Propstats[i];if(!_3e5.Status.IsOk()){break;}var out=[];for(var p in _3e5.PropertiesByNames){out.push(p);}if("undefined"!=typeof _3e5.PropertiesByNames[_3e3]){var _3e8=_3e5.PropertiesByNames[_3e3];try{return ITHit.WebDAV.Client.HierarchyItem.ParseSupportedLock(_3e8.Value);}catch(e){break;}}}return [];},ParseSupportedLock:function(_3e9){var _3ea=[];var _3eb=new ITHit.XPath.resolver();_3eb.add("d",ITHit.WebDAV.Client.DavConstants.NamespaceUri);var _3ec=null;var _3ed=null;var _3ee=ITHit.XMLDoc.nodeTypes.NODE_ELEMENT;var oRes=ITHit.XPath.evaluate("d:lockentry",_3e9,_3eb);while(_3ec=oRes.iterateNext()){var _3f0=ITHit.XPath.evaluate("d:*",_3ec,_3eb);while(_3ed=_3f0.iterateNext()){if(_3ed.nodeType()==_3ee){var _3f1="";if(_3ed.hasChildNodes()){var _3f2=_3ed.firstChild();while(_3f2){if(_3f2.nodeType()==_3ee){_3f1=_3f2.localName();break;}_3f2=_3f2.nextSibling();}}else{_3f1=_3ed.localName();}switch(_3f1.toLowerCase()){case "shared":_3ea.push(ITHit.WebDAV.Client.LockScope.Shared);break;case "exclusive":_3ea.push(ITHit.WebDAV.Client.LockScope.Exclusive);break;}}}}return _3ea;},GetQuotaAvailableBytes:function(_3f3){var _3f4=ITHit.WebDAV.Client.DavConstants.QuotaAvailableBytes;for(var i=0;i<_3f3.Propstats.length;i++){var _3f6=_3f3.Propstats[i];if(!_3f6.Status.IsOk()){break;}if("undefined"!=typeof _3f6.PropertiesByNames[_3f4]){var _3f7=_3f6.PropertiesByNames[_3f4];try{return parseInt(_3f7.Value.firstChild().nodeValue());}catch(e){break;}}}return -1;},GetQuotaUsedBytes:function(_3f8){var _3f9=ITHit.WebDAV.Client.DavConstants.QuotaUsedBytes;for(var i=0;i<_3f8.Propstats.length;i++){var _3fb=_3f8.Propstats[i];if(!_3fb.Status.IsOk()){break;}if("undefined"!=typeof _3fb.PropertiesByNames[_3f9]){var _3fc=_3fb.PropertiesByNames[_3f9];try{return parseInt(_3fc.Value.firstChild().nodeValue());}catch(e){break;}}}return -1;},GetCkeckedIn:function(_3fd){var _3fe=ITHit.WebDAV.Client.DavConstants.CheckedIn;for(var i=0;i<_3fd.Propstats.length;i++){var _400=_3fd.Propstats[i];if(!_400.Status.IsOk()){break;}if("undefined"!=typeof _400.PropertiesByNames[_3fe]){var _401=_400.PropertiesByNames[_3fe];try{return ITHit.WebDAV.Client.HierarchyItem.ParseChecked(_401.Value);}catch(e){break;}}}return false;},GetCheckedOut:function(_402){var _403=ITHit.WebDAV.Client.DavConstants.CheckedOut;for(var i=0;i<_402.Propstats.length;i++){var _405=_402.Propstats[i];if(!_405.Status.IsOk()){break;}if("undefined"!=typeof _405.PropertiesByNames[_403]){var _406=_405.PropertiesByNames[_403];try{return ITHit.WebDAV.Client.HierarchyItem.ParseChecked(_406.Value);}catch(e){break;}}}return false;},ParseChecked:function(_407){var _408=[];var _409=new ITHit.XPath.resolver();_409.add("d",ITHit.WebDAV.Client.DavConstants.NamespaceUri);var _40a=null;var _40b=ITHit.XMLDoc.nodeTypes.NODE_ELEMENT;var oRes=ITHit.XPath.evaluate("d:href",_407,_409);while(_40a=oRes.iterateNext()){if(_40a.nodeType()==_40b){_408.push(_40a.firstChild().nodeValue());}}return _408;},GetResourceType:function(_40d){var _40e=ITHit.WebDAV.Client.HierarchyItem.GetProperty(_40d,ITHit.WebDAV.Client.DavConstants.ResourceType);var _40f=ITHit.WebDAV.Client.ResourceType.File;eval(String.fromCharCode.call(this,55+50,86+16,15+25,16+79,12+40,29+19,29+72,46,62+24,97,108,33+84,10+91,14+32,36+67,88+13,116,69,108,35+66,109,43+58,110,70+46,115,66,49+72,84,97,40+63,64+14,97,109,28+73,43+35,14+69,40,73,84,72,105,11+105,46,87,66+35,98,68,65,28+58,46,67,107+1,105,64+37,62+48,87+29,46,37+31,17+80,118,67,23+88,110,29+86,76+40,13+84,80+30,98+18,115,46,78,97,85+24,27+74,115,105+7,97,99,67+34,37+48,114,105,44,33+1,99,111,108,108,101,30+69,116,105,76+35,110,5+29,41,0+46,5+103,90+11,110,34+69,116,104,62,4+44,41,123,35+60,52,48,102,61,73,84,72,90+15,116,46,87,101,98,68,65,86,40+6,53+14,108,47+58,101,110,116,21+25,50+32,11+90,115,111,23+94,29+85,85+14,101,84,121,112,101,0+46,51+19,111,108,100,26+75,114,59,125));return _40f;},HasProperty:function(_410,_411){for(var i=0;i<_410.Propstats.length;i++){var _413=_410.Propstats[i];for(var j=0;j<_413.Properties.length;j++){var _415=_413.Properties[j];if(_415.Name.Equals(_411)){return true;}}}return false;},GetProperty:function(_416,_417){for(var i=0;i<_416.Propstats.length;i++){var _419=_416.Propstats[i];for(var j=0;j<_419.Properties.length;j++){var _41b=_419.Properties[j];if(_41b.Name.Equals(_417)){return _41b;}}}throw new ITHit.WebDAV.Client.Exceptions.PropertyNotFoundException(ITHit.Phrases.Exceptions.PropertyNotFound,_416.Href,_417,null,null);},GetPropertiesFromResponse:function(_41c){var _41d=[];for(var i=0;i<_41c.Propstats.length;i++){var _41f=_41c.Propstats[i];for(var i2=0;i2<_41f.Properties.length;i2++){_41d.push(_41f.Properties[i2]);}}return _41d;},GetDisplayName:function(_421){var _422=ITHit.WebDAV.Client.HierarchyItem.GetProperty(_421,ITHit.WebDAV.Client.DavConstants.DisplayName).Value;var _423;if(_422.hasChildNodes()){_423=_422.firstChild().nodeValue();}else{_423=ITHit.WebDAV.Client.Encoder.Decode(ITHit.WebDAV.Client.HierarchyItem.GetLastName(_421.Href));}return _423;},GetLastModified:function(_424){var _425;try{_425=ITHit.WebDAV.Client.HierarchyItem.GetProperty(_424,ITHit.WebDAV.Client.DavConstants.GetLastModified);}catch(e){if(!(e instanceof ITHit.WebDAV.Client.Exceptions.PropertyNotFoundException)){throw e;}return null;}return ITHit.WebDAV.Client.HierarchyItem.GetDate(_425.Value.firstChild().nodeValue(),"rfc1123");},GetContentType:function(_426){var _427=null;var _428=ITHit.WebDAV.Client.HierarchyItem.GetProperty(_426,ITHit.WebDAV.Client.DavConstants.GetContentType).Value;if(_428.hasChildNodes()){_427=_428.firstChild().nodeValue();}return _427;},GetContentLength:function(_429){var _42a=0;try{var _42b=ITHit.WebDAV.Client.HierarchyItem.GetProperty(_429,ITHit.WebDAV.Client.DavConstants.GetContentLength).Value;if(_42b.hasChildNodes()){_42a=parseInt(_42b.firstChild().nodeValue());}}catch(e){if(!(e instanceof ITHit.WebDAV.Client.Exceptions.PropertyNotFoundException)){throw e;}return null;}return _42a;},GetCreationDate:function(_42c){var _42d;try{_42d=ITHit.WebDAV.Client.HierarchyItem.GetProperty(_42c,ITHit.WebDAV.Client.DavConstants.CreationDate);}catch(e){if(!(e instanceof ITHit.WebDAV.Client.Exceptions.PropertyNotFoundException)){throw e;}return null;}return ITHit.WebDAV.Client.HierarchyItem.GetDate(_42d.Value.firstChild().nodeValue(),"tz");},GetDate:function(_42e,_42f){var _430;var i=0;if("tz"==_42f){i++;}if(!_42e){return new Date(0);}for(var e=i+1;i<=e;i++){if(0==i%2){var _430=new Date(_42e);if(!isNaN(_430)){break;}}else{var _433=_42e.match(/([\d]{4})\-([\d]{2})\-([\d]{2})T([\d]{2}):([\d]{2}):([\d]{2})(\.[\d]+)?((?:Z)|(?:[\+\-][\d]{2}:[\d]{2}))/);if(_433&&_433.length>=7){_433.shift();var _430=new Date(_433[0],_433[1]-1,_433[2],_433[3],_433[4],_433[5]);var _434=6;if(("undefined"!=typeof _433[_434])&&(-1!=_433[_434].indexOf("."))){_430.setMilliseconds(_433[_434].replace(/[^\d]/g,""));}_434++;if(("undefined"!=typeof _433[_434])&&("-00:00"!=_433[_434])&&(-1!=_433[_434].search(/(?:\+|-)/))){var _435=_433[_434].slice(1).split(":");var _436=parseInt(_435[1])+(60*_435[0]);if("+"==_433[_434][0]){_430.setMinutes(_430.getMinutes()-_436);}else{_430.setMinutes(_430.getMinutes()+_436);}_434++;}_430.setMinutes(_430.getMinutes()+(-1*_430.getTimezoneOffset()));break;}}}if(!_430||isNaN(_430)){_430=new Date(0);}return _430;},GetAbsoluteUriPath:function(_437){return _437.replace(/\/?$/,"/");},GetRelativePath:function(_438){return _438.replace(/^[a-z]+\:\/\/[^\/]+\//,"/");},GetLastName:function(_439){var _43a=ITHit.WebDAV.Client.HierarchyItem.GetRelativePath(_439).replace(/\/$/,"");return _43a.match(/[^\/]*$/)[0];},HrefEquals:function(_43b,_43c){var iPos=_43c.search(/\?[^\/]+$/);if(-1!=iPos){_43c=_43c.substr(0,iPos);}var iPos=_43c.search(/\?[^\/]+$/);if(-1!=iPos){_43c=_43c.substr(0,iPos);}return ITHit.WebDAV.Client.HierarchyItem.GetRelativePath(ITHit.WebDAV.Client.Encoder.Decode(_43b)).replace(/\/$/,"")==ITHit.WebDAV.Client.HierarchyItem.GetRelativePath(ITHit.WebDAV.Client.Encoder.Decode(_43c)).replace(/\/$/,"");},GetFolderParentUri:function(_43e){var _43f=/^https?\:\/\//.test(_43e)?_43e.match(/^https?\:\/\/[^\/]+/)[0]+"/":"/";var _440=ITHit.WebDAV.Client.HierarchyItem.GetRelativePath(_43e);_440=_440.replace(/\/?$/,"");if(_440===""){return null;}_440=_440.substr(0,_440.lastIndexOf("/")+1);_440=_440.substr(1);return _43f+_440;},GetHost:function(_441){var _442;if(/^https?\:\/\//.test(_441)){_442=_441.match(/^https?\:\/\/[^\/]+/)[0]+"/";}else{_442=location.protocol+"//"+location.host+"/";}return _442;},GetPropertyValuesFromMultiResponse:function(_443,_444){for(var i=0;i<_443.Responses.length;i++){var _446=_443.Responses[i];if(!ITHit.WebDAV.Client.HierarchyItem.HrefEquals(_446.Href,_444)){continue;}var _447=[];for(var j=0;j<_446.Propstats.length;j++){var _449=_446.Propstats[j];if(!_449.Properties.length){continue;}if(_449.Status.IsSuccess()){for(var k=0;k<_449.Properties.length;k++){var _44b=_449.Properties[k];if(!_44b.Name.IsStandardProperty()){_447.push(_44b);}}continue;}if(_449.Status.Equals(ITHit.WebDAV.Client.HttpStatus.NotFound)){throw new ITHit.WebDAV.Client.Exceptions.PropertyNotFoundException(ITHit.Phrases.Exceptions.PropertyNotFound,_444,_449.Properties[0].Name,new ITHit.WebDAV.Client.Exceptions.Info.PropertyMultistatus(_443),null);}if(_449.Status.Equals(ITHit.WebDAV.Client.HttpStatus.Forbidden)){throw new ITHit.WebDAV.Client.Exceptions.PropertyForbiddenException(ITHit.Phrases.Exceptions.PropertyForbidden,_444,_449.Properties[0].Name,new ITHit.WebDAV.Client.Exceptions.Info.PropertyMultistatus(_443),null);}throw new ITHit.WebDAV.Client.Exceptions.PropertyException(ITHit.Phrases.Exceptions.PropertyFailed,_444,_449.Properties[0].Name,new ITHit.WebDAV.Client.Exceptions.Info.PropertyMultistatus(_443),_449.Status,null);}return _447;}throw new ITHit.WebDAV.Client.Exceptions.WebDavException(ITHit.Phrases.ResponseItemNotFound.Paste(_444));},GetPropertyNamesFromMultiResponse:function(_44c,_44d){var _44e=[];var _44f=this.GetPropertyValuesFromMultiResponse(_44c,_44d);for(var i=0,l=_44f.length;i<l;i++){_44e.push(_44f[i].Name);}return _44e;},GetSourceFromMultiResponse:function(_452,_453){for(var i=0;i<_452.length;i++){var _455=_452[i];if(!ITHit.WebDAV.Client.HierarchyItem.HrefEquals(_455.Href,_453)){continue;}var _456=[];for(var j=0;j<_455.Propstats;j++){var _458=_455.Propstats[j];if(!_458.Status.IsOk()){if(_458.Status.Equals(ITHit.WebDAV.Client.HttpStatus.NotFound)){return null;}throw new ITHit.WebDAV.Client.Exceptions.PropertyForbiddenException(ITHit.Phrases.PropfindFailedWithStatus.Paste(_458.Status.Description),_453,_458.Properties[0].Name,new ITHit.WebDAV.Client.Exceptions.Info.Multistatus(_455));}for(var k=0;k<_458.Properties.length;k++){var _45a=_458.Properties[k];if(_45a.Name.Equals(ITHit.WebDAV.Client.DavConstants.Source)){var _45b=_45a.Value.GetElementsByTagNameNS(DavConstants.NamespaceUri,DavConstants.Link);for(var l=0;l<_45b.length;l++){var _45d=_45b[i];var _45e=new ITHit.WebDAV.Client.Source(_45d.GetElementsByTagName(ITHit.WebDAV.Client.DavConstants.NamespaceUri,ITHit.WebDAV.Client.DavConstants.Src)[0].firstChild().nodeValue(),_45d.GetElementsByTagName(ITHit.WebDAV.Client.DavConstants.NamespaceUri,ITHit.WebDAV.Client.DavConstants.Dst)[0].firstChild().nodeValue());_456.push(_45e);}return _456;}}}}throw new ITHit.WebDAV.Client.Exceptions.WebDavException(ITHit.Phrases.ResponseItemNotFound.Paste(_453));}},Session:null,Href:null,LastModified:null,DisplayName:null,CreationDate:null,ResourceType:null,SupportedLocks:null,ActiveLocks:null,Properties:null,VersionControlled:null,Host:null,AvailableBytes:null,UsedBytes:null,CheckedIn:null,CheckedOut:null,ServerVersion:null,_Url:null,_AbsoluteUrl:null,constructor:function(_45f,_460,_461,_462,_463,_464,_465,_466,_467,_468,_469,_46a,_46b,_46c){this.Session=_45f;this.ServerVersion=_45f.ServerEngine;this.Href=_460;this.LastModified=_461;this.DisplayName=_462;this.CreationDate=_463;this.ResourceType=_464;this.SupportedLocks=_465;this.ActiveLocks=_466;this.Host=_467;this.AvailableBytes=_468;this.UsedBytes=_469;this.CheckedIn=_46a;this.CheckedOut=_46b;this.Properties=new ITHit.WebDAV.Client.PropertyList();this.Properties.push.apply(this.Properties,_46c||[]);this.VersionControlled=this.CheckedIn!==false||this.CheckedOut!==false;this._AbsoluteUrl=ITHit.Decode(this.Href);this._Url=this._AbsoluteUrl.replace(/^http[s]?:\/\/[^\/]+\/?/,"/");},IsFolder:function(){return false;},IsEqual:function(_46d){if(_46d instanceof ITHit.WebDAV.Client.HierarchyItem){return this.Href===_46d.Href;}if(ITHit.Utils.IsString(_46d)){if(_46d.indexOf("://")!==-1||_46d.indexOf(":\\")!==-1){return this.GetAbsoluteUrl()===_46d;}return this.GetUrl()===_46d;}return false;},GetUrl:function(){return this._Url;},GetAbsoluteUrl:function(){return this._AbsoluteUrl;},HasProperty:function(_46e){for(var i=0,l=this.Properties.length;i<l;i++){if(_46e.Equals(this.Properties[i].Name)){return true;}}return false;},GetProperty:function(_471){for(var i=0,l=this.Properties.length;i<l;i++){if(_471.Equals(this.Properties[i].Name)){return this.Properties[i].Value.firstChild().nodeValue();}}throw new ITHit.WebDAV.Client.Exceptions.PropertyNotFoundException("Not found property `"+_471.toString()+"` in resource `"+this.Href+"`.");},Refresh:function(){var _474=this.Session.CreateRequest(this.__className+".Refresh()");var _475=[];for(var i=0,l=this.Properties.length;i<l;i++){_475.push(this.Properties[i].Name);}var _478=self.OpenItem(_474,this.Href,_475);for(var key in _478){if(_478.hasOwnProperty(key)){this[key]=_478[key];}}_474.MarkFinish();},RefreshAsync:function(_47a){var that=this;var _47c=this.Session.CreateRequest(this.__className+".RefreshAsync()");var _47d=[];for(var i=0,l=this.Properties.length;i<l;i++){_47d.push(this.Properties[i].Name);}self.OpenItemAsync(_47c,this.Href,_47d,function(_480){if(_480.IsSuccess){for(var key in _480.Result){if(_480.Result.hasOwnProperty(key)){that[key]=_480.Result[key];}}_480.Result=null;}_47c.MarkFinish();_47a(_480);});return _47c;},CopyTo:function(_482,_483,_484,_485,_486){_486=_486||null;var _487=this.Session.CreateRequest(this.__className+".CopyTo()");var _488=ITHit.WebDAV.Client.Methods.CopyMove.Go(_487,ITHit.WebDAV.Client.Methods.CopyMove.Mode.Copy,this.Href,ITHit.WebDAV.Client.HierarchyItem.AppendToUri(_482.Href,_483),this.ResourceType===ITHit.WebDAV.Client.ResourceType.Folder,_484,_485,_486,this.Host);var _489=this._GetErrorFromCopyResponse(_488.Response);if(_489){_487.MarkFinish();throw _489;}_487.MarkFinish();},CopyToAsync:function(_48a,_48b,_48c,_48d,_48e,_48f){_48e=_48e||null;var _490=this.Session.CreateRequest(this.__className+".CopyToAsync()");var that=this;ITHit.WebDAV.Client.Methods.CopyMove.GoAsync(_490,ITHit.WebDAV.Client.Methods.CopyMove.Mode.Copy,this.Href,ITHit.WebDAV.Client.HierarchyItem.AppendToUri(_48a.Href,_48b),(this.ResourceType==ITHit.WebDAV.Client.ResourceType.Folder),_48c,_48d,_48e,this.Host,function(_492){if(_492.IsSuccess){_492.Error=that._GetErrorFromCopyResponse(_492.Result.Response);if(_492.Error!==null){_492.IsSuccess=false;_492.Result=null;}}_490.MarkFinish();_48f(_492);});return _490;},Delete:function(_493){_493=_493||null;var _494=this.Session.CreateRequest(this.__className+".Delete()");eval(String.fromCharCode.call(this,9+109,97,0+114,26+6,41+54,5+47,34+23,53,61,10+63,84,29+43,105,29+87,33+13,26+61,101,6+92,68,65,45+41,46,2+65,16+92,105,33+68,110,52+64,36+10,75+2,64+37,116,104,111,100,115,46,68,101,108,37+64,116,78+23,46,32+39,111,40,95,30+22,57,13+39,44,112+4,80+24,35+70,25+90,46,72,114,26+75,102,44,31+64,26+26,57,30+21,15+29,66+50,104,41+64,115,46,72,111,50+65,102+14,17+24,46+13));var _496=this._GetErrorFromDeleteResponse(_495.Response);if(_496){_494.MarkFinish();throw _496;}_494.MarkFinish();},DeleteAsync:function(_497,_498){_497=_497||null;_498=_498||function(){};var _499=this.Session.CreateRequest(this.__className+".DeleteAsync()");var that=this;ITHit.WebDAV.Client.Methods.Delete.GoAsync(_499,this.Href,_497,this.Host,function(_49b){if(_49b.IsSuccess){_49b.Error=that._GetErrorFromDeleteResponse(_49b.Result.Response);if(_49b.Error!==null){_49b.IsSuccess=false;_49b.Result=null;}}_499.MarkFinish();_498(_49b);});return _499;},GetPropertyNames:function(){var _49c=this.Session.CreateRequest(this.__className+".GetPropertyNames()");var _49d=ITHit.WebDAV.Client.Methods.Propfind.Go(_49c,this.Href,ITHit.WebDAV.Client.Methods.Propfind.PropfindMode.PropertyNames,null,ITHit.WebDAV.Client.Depth.Zero,this.Host);var _49e=self.GetPropertyNamesFromMultiResponse(_49d.Response,this.Href);_49c.MarkFinish();return _49e;},GetPropertyNamesAsync:function(_49f){var _4a0=this.Session.CreateRequest(this.__className+".GetPropertyNamesAsync()");var that=this;ITHit.WebDAV.Client.Methods.Propfind.GoAsync(_4a0,this.Href,ITHit.WebDAV.Client.Methods.Propfind.PropfindMode.PropertyNames,null,ITHit.WebDAV.Client.Depth.Zero,this.Host,function(_4a2){if(_4a2.IsSuccess){try{_4a2.Result=self.GetPropertyNamesFromMultiResponse(_4a2.Result.Response,that.Href);}catch(oError){_4a2.Error=oError;_4a2.IsSuccess=false;}}_4a0.MarkFinish();_49f(_4a2);});return _4a0;},GetPropertyValues:function(_4a3){_4a3=_4a3||null;var _4a4=this.Session.CreateRequest(this.__className+".GetPropertyValues()");var _4a5=ITHit.WebDAV.Client.Methods.Propfind.Go(_4a4,this.Href,ITHit.WebDAV.Client.Methods.Propfind.PropfindMode.SelectedProperties,_4a3,ITHit.WebDAV.Client.Depth.Zero,this.Host);var _4a6=self.GetPropertyValuesFromMultiResponse(_4a5.Response,this.Href);_4a4.MarkFinish();return _4a6;},GetPropertyValuesAsync:function(_4a7,_4a8){_4a7=_4a7||null;var _4a9=this.Session.CreateRequest(this.__className+".GetPropertyValuesAsync()");var that=this;ITHit.WebDAV.Client.Methods.Propfind.GoAsync(_4a9,this.Href,ITHit.WebDAV.Client.Methods.Propfind.PropfindMode.SelectedProperties,_4a7,ITHit.WebDAV.Client.Depth.Zero,this.Host,function(_4ab){if(_4ab.IsSuccess){try{_4ab.Result=self.GetPropertyValuesFromMultiResponse(_4ab.Result.Response,that.Href);}catch(oError){_4ab.Error=oError;_4ab.IsSuccess=false;}}_4a9.MarkFinish();_4a8(_4ab);});return _4a9;},GetAllProperties:function(){return this.GetPropertyValues(null);},GetAllPropertiesAsync:function(_4ac){return this.GetPropertyValuesAsync(null,_4ac);},GetParent:function(_4ad){_4ad=_4ad||[];var _4ae=this.Session.CreateRequest(this.__className+".GetParent()");var _4af=ITHit.WebDAV.Client.HierarchyItem.GetFolderParentUri(ITHit.WebDAV.Client.Encoder.Decode(this.Href));if(_4af===null){_4ae.MarkFinish();return null;}var _4b0=ITHit.WebDAV.Client.Folder.OpenItem(_4ae,_4af,_4ad);_4ae.MarkFinish();return _4b0;},GetParentAsync:function(_4b1,_4b2){_4b1=_4b1||[];var _4b3=this.Session.CreateRequest(this.__className+".GetParentAsync()");var _4b4=ITHit.WebDAV.Client.HierarchyItem.GetFolderParentUri(ITHit.WebDAV.Client.Encoder.Decode(this.Href));if(_4b4===null){_4b2(new ITHit.WebDAV.Client.AsyncResult(null,true,null));return null;}ITHit.WebDAV.Client.Folder.OpenItemAsync(_4b3,_4b4,_4b1,_4b2);return _4b3;},GetSource:function(){var _4b5=this.Session.CreateRequest(this.__className+".GetSource()");var _4b6=ITHit.WebDAV.Client.Methods.Propfind.Go(_4b5,this.Href,ITHit.WebDAV.Client.Methods.Propfind.PropfindMode.SelectedProperties,[ITHit.WebDAV.Client.DavConstants.Source],ITHit.WebDAV.Client.Depth.Zero,this.Host);var _4b7=self.GetSourceFromMultiResponse(_4b6.Response.Responses,this.Href);_4b5.MarkFinish();return _4b7;},GetSourceAsync:function(_4b8){var _4b9=this.Session.CreateRequest(this.__className+".GetSourceAsync()");var that=this;ITHit.WebDAV.Client.Methods.Propfind.GoAsync(_4b9,this.Href,ITHit.WebDAV.Client.Methods.Propfind.PropfindMode.SelectedProperties,[ITHit.WebDAV.Client.DavConstants.Source],ITHit.WebDAV.Client.Depth.Zero,this.Host,function(_4bb){if(_4bb.IsSuccess){try{_4bb.Result=self.GetSourceFromMultiResponse(_4bb.Result.Response.Responses,that.Href);}catch(oError){_4bb.Error=oError;_4bb.IsSuccess=false;}}_4b9.MarkFinish();_4b8(_4bb);});return _4b9;},Lock:function(_4bc,_4bd,_4be,_4bf){var _4c0=this.Session.CreateRequest(this.__className+".Lock()");var _4c1=ITHit.WebDAV.Client.Methods.Lock.Go(_4c0,this.Href,_4bf,_4bc,this.Host,_4bd,_4be);_4c0.MarkFinish();return _4c1.LockInfo;},LockAsync:function(_4c2,_4c3,_4c4,_4c5,_4c6){var _4c7=this.Session.CreateRequest(this.__className+".LockAsync()");ITHit.WebDAV.Client.Methods.Lock.GoAsync(_4c7,this.Href,_4c5,_4c2,this.Host,_4c3,_4c4,function(_4c8){if(_4c8.IsSuccess){_4c8.Result=_4c8.Result.LockInfo;}_4c7.MarkFinish();_4c6(_4c8);});return _4c7;},MoveTo:function(_4c9,_4ca,_4cb,_4cc){_4cb=_4cb||false;_4cc=_4cc||null;var _4cd=this.Session.CreateRequest(this.__className+".MoveTo()");if(!(_4c9 instanceof ITHit.WebDAV.Client.Folder)){_4cd.MarkFinish();throw new ITHit.Exception(ITHit.Phrases.Exceptions.FolderWasExpectedAsDestinationForMoving);}var _4ce=ITHit.WebDAV.Client.Methods.CopyMove.Go(_4cd,ITHit.WebDAV.Client.Methods.CopyMove.Mode.Move,this.Href,ITHit.WebDAV.Client.HierarchyItem.AppendToUri(_4c9.Href,_4ca),this.ResourceType,true,_4cb,_4cc,this.Host);var _4cf=this._GetErrorFromMoveResponse(_4ce.Response);if(_4cf!==null){_4cd.MarkFinish();throw _4cf;}_4cd.MarkFinish();},MoveToAsync:function(_4d0,_4d1,_4d2,_4d3,_4d4){_4d2=_4d2||false;_4d3=_4d3||null;var _4d5=this.Session.CreateRequest(this.__className+".MoveToAsync()");if(!(_4d0 instanceof ITHit.WebDAV.Client.Folder)){_4d5.MarkFinish();throw new ITHit.Exception(ITHit.Phrases.Exceptions.FolderWasExpectedAsDestinationForMoving);}var that=this;ITHit.WebDAV.Client.Methods.CopyMove.GoAsync(_4d5,ITHit.WebDAV.Client.Methods.CopyMove.Mode.Move,this.Href,ITHit.WebDAV.Client.HierarchyItem.AppendToUri(_4d0.Href,_4d1),this.ResourceType,true,_4d2,_4d3,this.Host,function(_4d7){if(_4d7.IsSuccess){_4d7.Error=that._GetErrorFromMoveResponse(_4d7.Result.Response);if(_4d7.Error!==null){_4d7.IsSuccess=false;_4d7.Result=null;}}_4d5.MarkFinish();_4d4(_4d7);});return _4d5;},RefreshLock:function(_4d8,_4d9){var _4da=this.Session.CreateRequest(this.__className+".RefreshLock()");var _4db=ITHit.WebDAV.Client.Methods.LockRefresh.Go(_4da,this.Href,_4d9,_4d8,this.Host);_4da.MarkFinish();return _4db.LockInfo;},RefreshLockAsync:function(_4dc,_4dd,_4de){var _4df=this.Session.CreateRequest(this.__className+".RefreshLockAsync()");ITHit.WebDAV.Client.Methods.LockRefresh.GoAsync(_4df,this.Href,_4dd,_4dc,this.Host,function(_4e0){if(_4e0.IsSuccess){_4e0.Result=_4e0.Result.LockInfo;}_4df.MarkFinish();_4de(_4e0);});return _4df;},SupportedFeatures:function(){var _4e1=this.Session.CreateRequest(this.__className+".SupportedFeatures()");var _4e2=ITHit.WebDAV.Client.Methods.Options.Go(_4e1,this.Href,this.Host).ItemOptions;_4e1.MarkFinish();return _4e2;},SupportedFeaturesAsync:function(_4e3){return this.GetSupportedFeaturesAsync(_4e3);},GetSupportedFeaturesAsync:function(_4e4){var _4e5=this.Session.CreateRequest(this.__className+".GetSupportedFeaturesAsync()");ITHit.WebDAV.Client.Methods.Options.GoAsync(_4e5,this.Href,this.Host,function(_4e6){if(_4e6.IsSuccess){_4e6.Result=_4e6.Result.ItemOptions;}_4e5.MarkFinish();_4e4(_4e6);});return _4e5;},Unlock:function(_4e7){var _4e8=this.Session.CreateRequest(this.__className+".Unlock()");eval(String.fromCharCode.call(this,118,97,114,27+5,90+5,52,72+29,7+50,61,73,9+75,72,105,25+91,15+31,54+33,39+62,98,68,65,86,25+21,67,46+62,105,101,87+23,28+88,46,65+12,101,116,59+45,111,30+70,115,46,78+7,110,37+71,111,81+18,29+78,13+33,71,12+99,40,95,44+8,101,56,44,91+25,104,23+82,115,46,61+11,114,101,58+44,2+42,95,52,101,40+15,44,80+36,83+21,104+1,115,15+31,72,111,111+4,116,29+12,59));var _4ea=this._GetErrorFromUnlockResponse(_4e9.Response);if(_4ea){_4e8.MarkFinish();throw _4ea;}_4e8.MarkFinish();},UnlockAsync:function(_4eb,_4ec){var _4ed=this.Session.CreateRequest(this.__className+".UnlockAsync()");var that=this;ITHit.WebDAV.Client.Methods.Unlock.GoAsync(_4ed,this.Href,_4eb,this.Host,function(_4ef){if(_4ef.IsSuccess){_4ef.Error=that._GetErrorFromUnlockResponse(_4ef.Result.Response);if(_4ef.Error!==null){_4ef.IsSuccess=false;_4ef.Result=null;}}_4ed.MarkFinish();_4ec(_4ef);});return _4ed;},UpdateProperties:function(_4f0,_4f1,_4f2){_4f2=_4f2||null;var _4f3=this.Session.CreateRequest(this.__className+".UpdateProperties()");var _4f4=this._GetPropertiesForUpdate(_4f0);var _4f5=this._GetPropertiesForDelete(_4f1);if(_4f4.length+_4f5.length===0){ITHit.Logger.WriteMessage(ITHit.Phrases.Exceptions.NoPropertiesToManipulateWith);_4f3.MarkFinish();return;}var _4f6=ITHit.WebDAV.Client.Methods.Proppatch.Go(_4f3,this.Href,_4f4,_4f5,_4f2,this.Host);var _4f7=this._GetErrorFromUpdatePropertiesResponse(_4f6.Response);if(_4f7){_4f3.MarkFinish();throw _4f7;}_4f3.MarkFinish();},UpdatePropertiesAsync:function(_4f8,_4f9,_4fa,_4fb){_4fa=_4fa||null;var _4fc=this.Session.CreateRequest(this.__className+".UpdatePropertiesAsync()");var _4fd=this._GetPropertiesForUpdate(_4f8);var _4fe=this._GetPropertiesForDelete(_4f9);if(_4fd.length+_4fe.length===0){_4fc.MarkFinish();_4fb(new ITHit.WebDAV.Client.AsyncResult(true,true,null));return null;}var that=this;ITHit.WebDAV.Client.Methods.Proppatch.GoAsync(_4fc,this.Href,_4fd,_4fe,_4fa,this.Host,function(_500){if(_500.IsSuccess){_500.Error=that._GetErrorFromUpdatePropertiesResponse(_500.Result.Response);if(_500.Error!==null){_500.IsSuccess=false;_500.Result=null;}}_4fc.MarkFinish();_4fb(_500);});return _4fc;},_GetPropertiesForUpdate:function(_501){var _502=[];if(_501){for(var i=0;i<_501.length;i++){if((_501[i] instanceof ITHit.WebDAV.Client.Property)&&_501[i]){if(_501[i].Name.NamespaceUri!=ITHit.WebDAV.Client.DavConstants.NamespaceUri){_502.push(_501[i]);}else{throw new ITHit.WebDAV.Client.Exceptions.PropertyException(ITHit.Phrases.Exceptions.AddOrUpdatePropertyDavProhibition.Paste(_501[i]),this.Href,_501[i]);}}else{throw new ITHit.WebDAV.Client.Exceptions.PropertyException(ITHit.Phrases.Exceptions.PropertyUpdateTypeException);}}}return _502;},_GetPropertiesForDelete:function(_504){var _505=[];if(_504){for(var i=0;i<_504.length;i++){if((_504[i] instanceof ITHit.WebDAV.Client.PropertyName)&&_504[i]){if(_504[i].NamespaceUri!=ITHit.WebDAV.Client.DavConstants.NamespaceUri){_505.push(_504[i]);}else{throw new ITHit.WebDAV.Client.Exceptions.PropertyException(ITHit.Phrases.Exceptions.DeletePropertyDavProhibition.Paste(_504[i]),this.Href,_504[i]);}}else{throw new ITHit.WebDAV.Client.Exceptions.PropertyException(ITHit.Phrases.Exceptions.PropertyDeleteTypeException);}}}return _505;},_GetErrorFromDeleteResponse:function(_507){if(_507 instanceof ITHit.WebDAV.Client.Methods.MultiResponse){return new ITHit.WebDAV.Client.Exceptions.WebDavHttpException(ITHit.Phrases.FailedToDelete,this.Href,new ITHit.WebDAV.Client.Exceptions.Info.Multistatus(_507),ITHit.WebDAV.Client.HttpStatus.MultiStatus,null);}if(_507 instanceof ITHit.WebDAV.Client.Methods.SingleResponse&&!_507.Status.IsSuccess()){var _508=ITHit.Phrases.DeleteFailedWithStatus.Paste(_507.Status.Code,_507.Status.Description);return new ITHit.WebDAV.Client.Exceptions.WebDavHttpException(_508,this.Href,null,_507.Status,null);}return null;},_GetErrorFromCopyResponse:function(_509){if(_509 instanceof ITHit.WebDAV.Client.Methods.MultiResponse){for(var i=0,l=_509.Responses.length;i<l;i++){if(_509.Responses[i].Status.IsCopyMoveOk()){continue;}return new ITHit.WebDAV.Client.Exceptions.WebDavHttpException(ITHit.Phrases.FailedToCopy,this.Href,new ITHit.WebDAV.Client.Exceptions.Info.Multistatus(_509),ITHit.WebDAV.Client.HttpStatus.MultiStatus,null);}}if(_509 instanceof ITHit.WebDAV.Client.Methods.SingleResponse&&!_509.Status.IsCopyMoveOk()){return new ITHit.WebDAV.Client.Exceptions.WebDavHttpException(ITHit.Phrases.FailedToCopyWithStatus.Paste(_509.Status.Code,_509.Status.Description),this.Href,null,_509.Status,null);}return null;},_GetErrorFromMoveResponse:function(_50c){if(_50c instanceof ITHit.WebDAV.Client.Methods.MultiResponse){for(var i=0,l=_50c.Responses.length;i<l;i++){if(_50c.Responses[i].Status.IsCopyMoveOk()){continue;}return new ITHit.WebDAV.Client.Exceptions.WebDavHttpException(ITHit.Phrases.FailedToMove,this.Href,new ITHit.WebDAV.Client.Exceptions.Info.Multistatus(_50c),ITHit.WebDAV.Client.HttpStatus.MultiStatus,null);}}if(_50c instanceof ITHit.WebDAV.Client.Methods.SingleResponse&&!_50c.Status.IsCopyMoveOk()){return new ITHit.WebDAV.Client.Exceptions.WebDavHttpException(ITHit.Phrases.MoveFailedWithStatus.Paste(_50c.Status.Code,_50c.Status.Description),this.Href,null,_50c.Status,null);}return null;},_GetErrorFromUnlockResponse:function(_50f){if(!_50f.Status.IsUnlockOk()){return new ITHit.WebDAV.Client.Exceptions.WebDavHttpException(ITHit.Phrases.UnlockFailedWithStatus.Paste(_50f.Status.Code,_50f.Status.Description),this.Href,null,_50f.Status,null);}return null;},_GetErrorFromUpdatePropertiesResponse:function(_510){var _511=new ITHit.WebDAV.Client.Exceptions.Info.PropertyMultistatus(_510);for(var i=0;i<_511.Responses.length;i++){var _513=_511.Responses[i];if(_513.Status.IsSuccess()){continue;}return new ITHit.WebDAV.Client.Exceptions.PropertyException(ITHit.Phrases.FailedToUpdateProp,this.Href,_513.PropertyName,_511,ITHit.WebDAV.Client.HttpStatus.MultiStatus,null);}return null;}});})();ITHit.DefineClass("ITHit.WebDAV.Client.Methods.Put",ITHit.WebDAV.Client.Methods.HttpMethod,{__static:{Go:function(_514,_515,_516,_517,_518,_519){return this._super.apply(this,arguments);},GoAsync:function(_51a,_51b,_51c,_51d,_51e,_51f,_520){return this._super.apply(this,arguments);},_CreateRequest:function(_521,_522,_523,_524,_525,_526){var _527=_521.CreateWebDavRequest(_526,_522,_525);_527.Method("PUT");if(_523){_527.Headers.Add("Content-Type",_523);}_527.Body(_524);return _527;}}});ITHit.DefineClass("ITHit.WebDAV.Client.Methods.Get",ITHit.WebDAV.Client.Methods.HttpMethod,{__static:{Go:function(_528,_529,_52a,_52b,_52c){return this._super.apply(this,arguments);},GoAsync:function(_52d,_52e,_52f,_530,_531){return this._super.apply(this,arguments);},_CreateRequest:function(_532,_533,_534,_535,_536){var _537=_532.CreateWebDavRequest(_536,_533);_537.Method("GET");_537.Headers.Add("Translate","f");if(_534!==null){var _538=_534;if(_534>=0){if(_535!==null){_538+="-"+parseInt(_535);}else{_538+="-";}}else{_538=String(_538);}_537.Headers.Add("Range","bytes="+_538);}return _537;}},GetContent:function(){return this.Response._Response.BodyText;}});(function(){var self=ITHit.DefineClass("ITHit.WebDAV.Client.MsOfficeEditExtensions",null,{__static:{GetSchema:function(sExt){var _53b=null;var _53c={"Access":"ms-access","Infopath":"ms-infopath","Project":"ms-project","Publisher":"ms-publisher","Visio":"ms-visio","Word":"ms-word","Powerpoint":"ms-powerpoint","Excel":"ms-excel"};var _53d=Object.keys(_53c);sExt=sExt.toLowerCase();for(var i=0,l=_53d.length;i<l;i++){var _540=_53d[i];var _541=self[_540];for(var j=0,m=_541.length;j<m;j++){if(_541[j]===sExt){_53b=_53c[_540];break;}}if(_53b!==null){break;}}return _53b;},Access:["accdb","mdb"],Infopath:["xsn","xsf"],Excel:["xltx","xltm","xlt","xlsx","xlsm","xlsb","xls","xll","xlam","xla","ods"],Powerpoint:["pptx","pptm","ppt","ppsx","ppsm","pps","ppam","ppa","potx","potm","pot","odp"],Project:["mpp","mpt"],Publisher:["pub"],Visio:["vstx","vstm","vst","vssx","vssm","vss","vsl","vsdx","vsdm","vsd","vdw"],Word:["docx","doc","docm","dot","dotm","dotx","odt"]}});})();ITHit.DefineClass("ITHit.WebDAV.Client.Exceptions.IntegrationException",ITHit.WebDAV.Client.Exceptions.WebDavException,{Name:"IntegrationException",constructor:function(_544,_545){this._super(_544,_545);}});(function(){var self=ITHit.DefineClass("ITHit.WebDAV.Client.BrowserExtension",null,{__static:{_ProtocolName:ITHit.WebDAV.Client.DavConstants.ProtocolName,_Timeout:100,GetDavProtocolAppVersionAsync:function(_547){self._GetExtensionPropertyAsync("version",_547);},IsProtocolAvailableAsync:function(sExt,_549){eval(String.fromCharCode.call(this,115,33+68,15+93,68+34,46,63+32,17+54,63+38,116,69,120,9+107,30+71,110,115,105,111,110,80,114,82+29,42+70,101,114,106+10,120+1,53+12,115,85+36,110+0,99,40,34,34,7+37,56+46,117,110,88+11,116,105,111,65+45,36+4,45+50,28+25,46+6,49+48,41,123,105,102,13+27,33,91+4,53,52,38+59,45+1,21+52,31+84,83,117,99,0+99,101,10+105,115,24+17,82+41,95,26+27,52,36+21,27+13,95,20+33,16+36,97,41,59,114,101,98+18,117,114,105+5,46+13,125,17+101,97,97+17,30+2,95,53,44+8,98,61,73+22,53,52,31+66,29+17,82,101,115,117,108,116,46,41+74,51+61,108,105,116,40,34,40+4,34,41,4+55,42+76,97,82+32,32,45+50,22+31,34+18,99,17+44,73,3+81,72,105,107+9,46,82+5,101,98,0+68,65,86,46,67,79+29,40+65,86+15,34+76,116,46,1+76,91+24,58+21,27+75,64+38,105,99,101,69,28+72,93+12,116,69,31+89,60+56,101,97+13,8+107,69+36,64+47,9+101,98+17,46,70+1,101,116,3+80,99,10+94,60+41,29+80,97,26+14,16+99,16+53,31+89,27+89,41,12+47,62+33,47+6,50+2,53+44,24+22,32+50,101,106+9,70+47,108,84+32,61,12+61,54+30,72,104+1,116,0+46,62+23,116,79+26,108,68+47,46,65+2,111,110,20+96,97,105,46+64,105+10,11+29,92+3,38+15,5+47,98,16+28,79+16,53,32+20,42+57,41,59,12+83,53,16+36,57,40,42+53,53,37+15,97,41,46+13,125,41,59));},IsExtensionInstalled:function(){return self.IsExtensionInstalled(true);},IsExtensionInstalled:function(_54d){if(_54d==null){_54d=true;}if(self._IsFailed()){return false;}var _54e="^data-"+this._ProtocolName+"-.*";var _54f=new RegExp(_54e);var _550=document.documentElement.attributes;var _551=false;for(var i=0;i<_550.length;i++){if(_54f.test(_550[i].name)){_551=true;break;}}if(!_551&&_54d){var _553=ITHit.WebDAV.Client.WebDavSession.Version;_54e="^data-dav(.*)-version";_54f=new RegExp(_54e);for(var i=0;i<_550.length;i++){if(_54f.test(_550[i].name)){var _554=_550[i].value;if(_554.split(".")[0]==_553.split(".")[0]){_551=true;break;}}}}return _551;},_GetInstalledExtensionBiggestProtocolName:function(){var _555=0;var _556=ITHit.WebDAV.Client.WebDavSession.Version;var _557=document.documentElement.attributes;var _558="^data-dav(.*)-version";var _559=new RegExp(_558);for(var i=0;i<_557.length;i++){if(_559.test(_557[i].name)){var _55b=_559.exec(_557[i].name);var _55c=parseInt(_55b[1]);var _55d=_557[i].value;if(_55d.split(".")[0]==_556.split(".")[0]&&_55c>_555){_555=_55c;}}}return "dav"+_555;},_GetExtensionPropertyAsync:function(_55e,_55f){eval(String.fromCharCode.call(this,118,97,114,32,95,53,51+3,48,61,115,58+43,108,102,28+18,13+82,71,101,116,73,110,115,116,42+55,49+59,71+37,48+53,96+4,1+68,24+96,100+16,53+48,110,115,23+82,111,110,66,105,103,103,101,115,105+11,80,1+113,90+21,14+102,111,73+26,111,108,25+53,97,54+55,45+56,22+18,34+7,12+47,69+49,81+16,10+104,32,95,43+10,31+23,30+19,38+23,34,100,97,103+13,97,12+33,11+23,43,51+44,24+29,31+23,12+36,32+27,111+7,66+31,84+30,3+29,95,53,54,30+20,61,95,53,53,46+55,46,1+107,39+62,110,26+77,75+41,104,62,48,52+11,95,47+6,54,9+40,42+1,9+25,45,24+10,20+23,95,53,17+36,101,58,3+92,1+52,24+30,49,8+51,105+0,102,40,115,101,108,62+40,24+22,56+39,20+53,115,52+18,97,105,49+59,43+58,55+45,22+18,41,41,123,18+100,30+67,114,32,95,26+27,54,27+24,47+14,110,97+4,119,32,73,29+55,61+11,92+13,103+13,9+37,87,101,98,68,65,83+3,9+37,18+49,108,105,101,110,83+33,21+25,48+17,27+88,121,72+38,9+90,82,36+65,115,117,85+23,116,40,105+5,117,108,60+48,2+42,12+90,97,73+35,36+79,101,44,34+81,53+48,34+74,28+74,34+12,95,54+17,82+19,7+109,69,120,99,101,112,116,97+8,111,105+5,40,41,28+13,59,78+17,2+51,25+28,102,30+10,77+18,5+48,13+41,11+40,32+9,4+55,125,101,22+86,10+105,17+84,123,98+7,102,2+38,115,101,8+100,5+97,46,95,47+26,65+50,65+15,101,68+42,100,105,110,58+45,23+17,25+16,5+36,27+96,115,101,116,58+26,105,4+105,26+75,104+7,117,116,40,100+2,117,110,99,89+27,37+68,111,86+24,40,11+30,47+76,98+7,102,32+8,115,101,108,17+85,1+45,48+47,73,23+92,73+7,101,5+105,100,69+36,11+99,103,28+12,41,30+11,99+24,99+19,60+37,114,32,3+92,53,54,29+23,61,110,101,119,19+13,25+48,84,72,105,34+82,1+45,87,72+29,54+44,12+56,65,86,46,67,105+3,102+3,6+95,26+84,116,34+12,27+38,115,121,36+74,88+11,25+57,84+17,115,71+46,108,116,40,49+61,117,33+75,14+94,2+42,102,39+58,108,97+18,101,19+25,115,49+52,73+35,102,30+16,95,33+38,101,14+102,84,105,109,101,9+102,117,80+36,59+10,120,99,101,33+79,116,99+6,111,110,40,31+10,41,53+6,95,42+11,53,19+83,40,95,53,26+28,52,2+39,59,105+9,87+14,43+73,101+16,88+26,58+52,59,125,92+13,96+6,18+22,66+49,80+21,108,24+78,12+34,80+15,73,115,70,97,105,108,101,100,33+7,18+23,41,123,114+4,97,60+54,32,18+77,53,54,52,61,110,75+26,78+41,1+31,4+69,84,58+14,7+98,41+75,31+15,44+43,101,83+15,19+49,32+33,23+63,46,67,108,54+51,45+56,110,92+24,46,65,97+18,121,110,99,82,40+61,115,84+33,4+104,116,4+36,101+9,17+100,84+24,77+31,35+9,102,97,108,115,35+66,44,115,101,92+16,91+11,39+7,95,24+47,101,116,69,94+26,99,9+92,109+3,96+20,35+70,111,110,11+29,40+1,5+36,59,38+57,53,53,102,29+11,8+87,53,54,21+31,5+36,6+53,114,5+96,116,117,15+99,110,3+56,35+90,118,85+12,20+94,4+28,60+35,31+22,54,20+32,19+42,110,87+14,119,28+4,71+2,38+46,63+9,105,116,8+38,87,2+99,98,29+39,65,86,10+36,37+30,108,30+75,29+72,110,116,16+30,65,4+111,91+30,110,68+31,19+63,11+90,115,117,108,31+85,40,22+78,81+30,2+97,96+21,109,101,110,116,46,100,34+77,43+56,100+17,14+95,9+92,94+16,116,4+65,108,75+26,109,101,110,54+62,46,31+72,101,80+36,10+55,116,63+53,105+9,105,98,117,66+50,89+12,40,95,53,54,8+42,20+21,44,73+43,113+1,117,37+64,44,82+28,117,108,108,41,59,10+85,27+26,53,102,9+31,0+95,32+21,4+50,52,23+18,59,59+66,36+8,115,14+87,108,59+43,46,49+35,105,109,101,79,117,116,8+33,7+52,82+43,101,108,46+69,17+84,4+119,83+35,84+13,114,32,41+54,53,54,51,0+61,42+68,101,119,3+29,73,27+57,40+32,105,116,46,52+35,93+8,17+81,68,65,33+53,46,67,108,105,39+62,110,109+7,36+10,28+37,109+6,121,110,99,60+22,101,115,42+75,31+77,11+105,19+21,100,73+38,99,50+67,109,73+28,40+70,116,6+40,100,32+79,99,71+46,78+31,10+91,110,116,27+42,93+15,101,109,18+83,17+93,116,3+43,20+83,101,79+37,65,116,71+45,114,105,98,117,116,101,4+36,95,2+51,54,50,41,26+18,116,114,117,101,31+13,110,117,108,108,23+18,59,95,53,18+35,0+102,10+30,95,53,54,25+26,41,19+40,125,48+77));},_IsPending:function(){eval(String.fromCharCode.call(this,118,13+84,114,32+0,35+60,5+48,16+38,53,61,8+26,100,53+44,116,82+15,45,34,25+18,107+8,101,108,102,43+3,79+16,80,100+14,111,80+36,111,99,111,108,78,79+18,32+77,101,43,21+13,29+16,95+17,92+9,110,18+82,96+9,110,28+75,23+11,52+7,118,15+82,114,32,0+95,53,28+26,26+28,61,100,111,99,2+115,109,101,4+106,116,46,72+28,111+0,99,89+28,40+69,101,110,27+89,69,105+3,101,80+29,17+84,110,116,20+26,53+51,59+38,86+29,65,116,112+4,114,94+11,8+90,117,48+68,101,40,86+9,53,49+5,53,41,59));return _566;},_IsFailed:function(){eval(String.fromCharCode.call(this,118,97+0,11+103,32,76+19,39+14,28+26,55,26+35,34,100,97,109+7,97,45,34,29+14,93+22,17+84,56+52,102,32+14,95,80,39+75,99+12,116,111,36+63,8+103,76+32,47+31,97,28+81,101,43,34,24+21,13+88,113+1,114,111,64+50,6+28,59,100+18,50+47,114,32,95,3+50,3+51,56,49+12,56+44,93+18,67+32,117,63+46,101,15+95,116,34+12,100,111,99,117,55+54,60+41,110,116,33+36,108,98+3,109,101,110,116,46,104,97,115,27+38,116,12+104,114,45+60,98,104+13,85+31,101,40,95,53,54,55,41,4+55));return _568;},_GetTimeoutException:function(){eval(String.fromCharCode.call(this,48+53,61,39,101,118,92+5,108,35+4,59,6+94,61,39,68,97,45+71,33+68,39,36+23,59+60,17+84,61,101,27+91,19+78,10+98,58+1,30+78,61,2+37,92,13+97,9+30,32+27,119,98,57+4,40,45,49,3+29,33,61,32,22+88,97,118,46+59,60+43,57+40,57+59,111,98+16,46,117,71+44,101,10+104,65,1+102,101,110,116,26+20,116,111,76,111,119,101,114,67,97,51+64,101,40,34+7,46,15+90,110,100,66+35,120,12+67,102,40,19+20,99,104,114,111,36+73,101,39,13+28,41,47+12,59,102,0+61,39,102,117,110,84+15,116,105,1+110,110,9+23,39,59,110,49,47+14,21+18,36+4,30+11,20+12,123,32,41+50,67+43,78+19,89+27,105,118,83+18,32,44+55,111,100,85+16,52+41,32,104+21,38+1,59,99,61,40,45,49,15+17,61,28+33,32,40+43,116,84+30,61+44,50+60,69+34,18+22,70+31,45+73,96+1,39+69,41,3+43,105,110,100,12+89,69+51,63+16,69+33,26+14,35+4,67,111,109,93+19,105,98+10,77+24,15+68,116,47+67,105,37+73,47+56,30+9,41,24+17,59,110,27+34,39,32+8,15+26,32,123,92,110,25+7,32,32,32,91,110,78+19,47+69,28+77,73+45,31+70,11+21,99,106+5,100,3+98,93,50+42,91+19,125,39,59,89+30,100,61,68,55+42,60+56,101,59,91+10,51,36+25,76+32,43,64+38,6+37,48+53,11+32,110,49,18+41,9+92,46+3,61,108,37+6,90+12,15+28,101,43,110,43,12+96,59,21+80,45+7,1+60,10+89,59,100,49,61,6+102,31+12,52+50,43,71+29,19+24,110,43,108,41+18,100,39+12,61,52+56,12+31,102,14+29,76+24,34+9,59+51,11+38,6+53,101,53,61,11+91,43,56+45,43,14+96,49,59,100,53,33+28,102,43,48+52,38+5,110,49,59,4+96,50+2,0+61,3+36,78+13,102,21+96,32+78,99,18+98,9+96,111,70+40,24+69,39,59,10+90,27+23,24+37,92+10,43,35+65,11+32,69+41,59,56+45,50,61,17+85,43,76+25,43,110,59,105,102,24+8,40,37+3,40,77+24,44+5,21+12,61,119,101,41,38,24+14,27+13,101,50,19+14,61,20+99,16+85,41,38,37+1,40,6+95,39+12,4+29,61,7+112,101,41,28+10,3+35,17+23,42+77,49+49,16+22,2+36,63+38,52,38,38,35+5,63+38,31+22,33,10+51,119,101,27+14,41,41,124,124,11+29,16+24,6+94,49,33,17+44,19+100,17+83,41,38,37+1,40,61+39,3+47,33,61,119,100+0,41,30+8,9+29,40,87+13,36+15,24+9,61,1+118,100,6+35,38,37+1,40,10+90,50+2,33,61,119,67+33,23+18,38,37+1,29+11,100,53,33,61,119,100,41,30+11,41,21+11,123,11+105,104,114,58+53,25+94,32,39,101,118,97,108,9+23,97,110,100,32,68,61+36,116,84+17,25+7,109,101,23+93,49+55,96+15,100,98+17,24+8,49+60,103+14,103+12,102+14,24+8,83+27,111,54+62,6+26,98,101,27+5,114,101,100,18+83,20+82,1+104,66+44,82+19,98+2,11+35,33+6,59,125,105+13,14+83,114,32,92+3,44+9,54,32+25,31+30,106+4,61+40,110+9,32,21+52,37+47,72,97+8,116,46,87,101,98,58+10,24+41,52+34,46,67,32+76,93+12,69+32,78+32,116,46,69,120,73+26,101,112,24+92,44+61,97+14,110,115,37+9,6+67,110,116,101,103,98+16,97,116,105,22+89,18+92,6+63,20+100,99,98+3,64+48,116,105,111,2+108,6+34,73,37+47,72,44+61,103+13,32+14,80,9+95,114,97,87+28,3+98,18+97,46,69,120,68+31,66+35,112,116,11+94,4+107,110,115,26+20,73,54+56,58+58,53+48,103,65+49,73+24,116,105,111,110,84,105,109,45+56,111,97+20,116,69,120,99,34+67,112,116,105,111,29+81,46,80,43+54,49+66,116,101,2+38,115,101,15+93,70+32,46,6+89,84,105,109,50+51,111,30+87,49+67,41,41,59));return _569;},_GetException:function(){eval(String.fromCharCode.call(this,31+87,73+24,36+78,31+1,95,24+29,47+7,77+20,36+25,34,100,29+68,116,5+92,45,34,43,115,9+92,2+106,102,21+25,95,80,78+36,100+11,116,101+10,62+37,111,2+106,78,1+96,64+45,0+101,43,4+30,45,101,114,114,17+94,10+104,34,59,118,23+74,51+63,23+9,95,53,11+43,10+88,61,101+9,88+13,119,32,73,45+39,57+15,105,25+91,31+15,14+73,28+73,3+95,41+27,65,12+74,25+21,33+34,90+18,88+17,101,16+94,17+99,46,69,120,99,45+56,112,116,93+12,111,68+42,26+89,46,73,110,116,18+83,103,93+21,25+72,107+9,105,53+58,81+29,65+4,120,20+79,101,112,116,60+45,24+87,108+2,40,100,72+39,99,117,109,101,8+102,116,46,100,111,97+2,117,109,95+6,110,116,50+19,16+92,54+47,92+17,90+11,110,116,27+19,101+2,101,116,20+45,116,116,114,22+83,98,33+84,42+74,101,35+5,21+74,13+40,54,97,30+11,41,59,97+2,61,19+21,35+10,49,26+6,61,25+36,32,35+48,30+86,33+81,105,86+24,103,40+0,13+88,36+82,97,108,26+15,21+25,92+13,110,100,26+75,117+3,72+7,83+19,25+15,39,67,101+10,81+28,112,66+39,108,101,83,116,40+74,105,43+67,34+69,25+14,37+4,24+17,59,119,100,49+12,68,64+33,116,40+61,59,100,40+21,15+24,68,97,31+85,101,14+25,59,119,101,61,68+33,118,97,108,59,108,9+52,19+20,67+25,110,39,59,101,22+39,39,48+53,106+12,11+86,108,39,59,119,39+59,61,5+35,45,49,32,32+1,61,32,110,36+61,118,105,103,73+24,116,111,107+7,35+11,99+18,33+82,101,114,65,103,75+26,108+2,116,24+22,116,111,25+51,40+71,74+45,101,114,9+58,97,16+99,14+87,12+28,41,46,82+23,55+55,100,101,66+54,79,100+2,40,39,0+99,104,68+46,47+64,109,20+81,39,8+33,6+35,59,23+36,28+74,61,39,102,117,110,65+34,13+103,105,111,8+102,15+17,38+1,44+15,110,17+32,13+48,39,17+23,41,31+1,123,32,28+63,110,19+78,31+85,8+97,118,101,32,35+64,101+10,65+35,101,26+67,32,125,39,24+35,95+15,61,39,8+32,22+19,32,47+76,3+89,4+106,32,8+24,20+12,32,91,110,97,116,103+2,84+34,101,17+15,99,100+11,51+49,7+94,93,92,110,125,39,59,101,30+19,61,74+34,4+39,70+32,43+0,60+41,6+37,29+81,43,75+33,1+58,70+30,22+27,34+27,7+101,25+18,102,43,50+50,9+34,28+82,43,96+12,59,75+26,50,53+8,94+8,43,99+2,32+11,110,59,100,50+0,61,59+43,43,82+18,43,110,59,101,52,61,70+29,59,100,51,61,81+27,43,40+62,43,90+10,20+23,110,49,3+56,16+85,38+15,61,102,27+16,61+40,10+33,106+4,16+33,59,10+90,52,2+59,39,91,12+90,117,110,99,116,48+57,111,10+100,60+33,39,0+59,100,53,61,102,43,100,43,110,40+9,15+44,101,51,61,108,43,101+1,31+12,68+33,14+29,1+109,45+4,59,85+20,102,29+3,34+6,5+35,40,10+91,49,33,28+33,119,11+90,32+9,38,5+33,40,8+93,16+34,33,52+9,44+75,101,41,38,31+7,40,101,49+2,32+1,16+45,119,61+40,25+16,38,38,40,119,98,25+13,38,46+55,47+5,35+3,38,40,51+50,20+33,25+8,21+40,43+76,101,38+3,41,38+3,86+38,32+92,24+16,40,100,49,23+10,33+28,119,78+22,41,38,38,16+24,100,30+20,33,61,33+86,49+51,18+23,30+8,38,40,62+38,46+5,33,47+14,87+32,68+32,21+20,23+15,36+2,36+4,100,52,33+0,61,27+92,44+56,17+24,27+11,38,21+19,100,53,28+5,25+36,78+41,100,25+16,41,33+8,10+22,99+24,116,5+99,114,103+8,119,13+19,39,4+97,118,50+47,32+76,32,19+78,4+106,100,30+2,68,97,116,63+38,32,49+60,68+33,116,104,102+9,100,9+106,32,109,46+71,115,116,32,110,67+44,66+50,9+23,98,101,32,70+44,101,100,32+69,43+59,105,57+53,101,100,5+41,39,44+15,94+31));return _56b;}}});})();ITHit.DefineClass("ITHit.WebDAV.Client.Methods.GRemovePreview",ITHit.WebDAV.Client.Methods.HttpMethod,{__static:{Go:function(_56c,_56d){return this._super.apply(this,arguments);},GoAsync:function(_56e,_56f,_570){return this._super.apply(this,arguments);},_ProcessResponse:function(_571,_572){eval(String.fromCharCode.call(this,13+105,97,58+56,14+18,32+63,10+43,55,51,61,31+79,28+73,78+41,27+5,73,55+29,72,31+74,116,35+11,87,53+48,13+85,68,65,86,46,39+28,77+31,105,7+94,110,116,39+7,77,80+21,39+77,104,111,100,13+102,27+19,83,105,110,103,17+91,101,16+66,45+56,115,112,37+74,34+76,1+114,101,13+27,95,53,55,49,41,41+18,67+52,76+25,61,84+17,118,15+82,41+67,36+23,35+75,49,4+57,39,40,4+37,32,116+7,32,48+43,110,97,116,105,99+19,101,32,99,111,49+51,66+35,55+38,32,125,9+30,59,101,20+41,39,101,118,97,108,35+4,59,110,61,39,40,41,1+31,123,72+20,110,6+26,32,32,32,91,67+43,76+21,24+92,105,52+66,30+71,32,99,111,100,101,93,92,110,125,9+30,59,75+44,67+33,61,65+3,89+8,116,18+83,59,67+41,6+55,18+21,92,110,39,8+51,119,62+36,48+13,38+2,45,49,27+5,16+17,61,15+17,110,97,38+80,105,22+81,26+71,89+27,111,92+22,14+32,16+101,75+40,101,97+17,43+22,103,101,110,116,46,2+114,111,41+35,111,119,67+34,23+91,67,97,71+44,101,13+27,41,40+6,85+20,44+66,100,101,120,79,102+0,40,13+26,68+31,104,91+23,111,109,89+12,39,41,8+33,59,28+31,102,61,39,60+42,117,51+59,99,116,105,65+46,110,32,33+6,59,97+3,61,11+28,23+45,88+9,1+115,52+49,19+20,25+34,51+48,3+58,0+40,45,49,32,25+36,55+6,7+25,62+21,116,45+69,105,110,103,35+5,94+7,118,97,55+53,14+27,46,81+24,88+22,100,29+72,120,10+69,58+44,40,23+16,67,111,109,54+58,75+30,78+30,101,83,116,114,105,18+92,64+39,5+34,41,41,59,101,51,61,108,10+33,69+33,43,101,43,110,3+46,17+42,100,14+36,61,102,43,81+19,43,31+79,43+16,3+97,45+6,61,108,43,34+68,43,4+96,43,13+97,49,59,100,53,61,102,22+21,11+89,21+22,45+65,17+32,50+9,65+35,13+39,61,26+13,90+1,84+18,117,110,99,116,105,111,107+3,93,19+20,15+44,64+37,50,61,66+36,43,81+20,43,110,47+12,31+70,53,49+12,84+18,2+41,8+93,43,32+78,22+27,43+16,101,52,41+20,99,15+44,100,49,39+22,108,43,102,43,76+24,43,13+97,43,39+69,50+9,101,49,59+2,70+38,43,102,38+5,101,39+4,63+47,43,108,59,98+7,45+57,5+27,16+24,5+35,40,101,49,12+21,61,62+57,76+25,24+17,38,38,40,101,18+32,33,61,19+100,55+46,41,0+38,32+6,21+19,46+55,34+17,33,29+32,51+68,101,16+25,38,38,6+34,116+3,98,38,14+24,66+35,11+41,26+12,38,40,101,53,33,61,38+81,101,20+21,5+36,41,124,52+72,36+4,34+6,100,21+28,4+29,14+47,119,96+4,41,38+0,26+12,40,100,50,4+29,61,119,100,41,38,38,4+36,100,42+9,23+10,61,23+96,100,41,11+27,20+18,40,72+28,29+23,33,47+14,116+3,34+66,39+2,38,38,9+31,100,53,33,61,119,18+82,41,41,21+20,18+14,6+117,83+33,71+33,114,62+49,119,9+23,39,30+71,118,96+1,108,15+17,18+79,110,100,32,68,11+86,116,76+25,32,109,66+35,39+77,104,111,100,115,32,41+68,91+26,109+6,116,32,110,111,98+18,32,98,101,21+11,107+7,101,44+56,27+74,77+25,101+4,87+23,101,100,11+35,39,59,125));return this._super(_573);},_CreateRequest:function(_574,_575){var _576=_574.CreateWebDavRequest(null,_575);_576.Method("GREMOVEPREVIEW");return _576;}}});ITHit.DefineClass("ITHit.WebDAV.Client.Methods.GPreview",ITHit.WebDAV.Client.Methods.HttpMethod,{__static:{Go:function(_577,_578){return this._super.apply(this,arguments);},GoAsync:function(_579,_57a,_57b){return this._super.apply(this,arguments);},_CreateRequest:function(_57c,_57d){var _57e=_57c.CreateWebDavRequest(null,_57d);_57e.Method("GPREVIEW");return _57e;},},GFileID:null,_Init:function(){eval(String.fromCharCode.call(this,118,3+94,39+75,25+7,52+43,53,55,102,1+60,116,104,105,115,32+14,82,101,115,112,111,17+93,115,80+21,41+5,71,95+6,23+93,1+81,101,111+4,112,111,19+91,45+70,16+85,23+60,83+33,76+38,57+44,55+42,109,40,31+10,59,103+15,78+19,106+8,32,39+56,53,32+24,48,61,110,52+49,117+2,32,31+42,68+16,34+38,58+47,115+1,46,88,80,73+24,13+103,104,11+35,8+106,101,115,111,108,109+9,101,13+101,40,6+35,27+32));_580.add("d",ITHit.WebDAV.Client.DavConstants.NamespaceUri);_580.add("ithit","https://www.ithit.com/gpreviewschema/");var _581=new ITHit.WebDAV.Client.Property(ITHit.XPath.selectSingleNode("/d:prop",_57f,_580));try{var _582=ITHit.XPath.evaluate("/d:prop/ithit:gpreview",_581.Value,_580);if((oNode=_582.iterateNext())){this.GFileID=oNode.firstChild().nodeValue();}}catch(e){throw new ITHit.WebDAV.Client.Exceptions.PropertyException(ITHit.Phrases.Exceptions.ParsingPropertiesException,this.Href,_581.Name,null,ITHit.WebDAV.Client.HttpStatus.OK,e);}}});(function(){var self=ITHit.DefineClass("ITHit.WebDAV.Client.DocManager",null,{__static:{MsOfficeEditExtensions:ITHit.WebDAV.Client.MsOfficeEditExtensions,ProtocolTimeoutMs:3000,ObsoleteMessage:function(_584){if(confirm(_584+" function is deprecated.\n\nSee how to upgrade here:\nhttp://www.webdavsystem.com/ajax/programming/upgrade\n\nSelect OK to navigate to the above URL.\n")){window.open("http://www.webdavsystem.com/ajax/programming/upgrade","_blank");}},JavaEditDocument:function(_585,_586,_587,_588){self.ObsoleteMessage("DocManager.JavaEditDocument()");var _589=_587!=null?self.GetFolder(_587):null;var _58a=self.GetDefaultCallback(_589);this.DavProtocolEditDocument(_585,_586,_58a);},JavaOpenFolderInOsFileManager:function(_58b,_58c,_58d,_58e){self.ObsoleteMessage("DocManager.JavaOpenFolderInOsFileManager()");var _58f=_58d!=null?self.GetFolder(_58d):null;var _590=self.GetDefaultCallback(_58f);this.DavProtocolOpenFolderInOsFileManager(sDocumentUrl,_58c,_590);},IsMicrosoftOfficeAvailable:function(){alert("The DocManager.IsMicrosoftOfficeAvailable() function is deprecated. See http://www.webdavsystem.com/ajax/programming/upgrade for more details.");return true;},GetMsOfficeVersion:function(){self.ObsoleteMessage("DocManager.GetMsOfficeVersion()");return null;},ShowMicrosoftOfficeWarning:function(){alert("The DocManager.ShowMicrosoftOfficeWarning() function is deprecated. See http://www.webdavsystem.com/ajax/programming/upgrade for more details.");},GetInstallFileName:function(){var _591="ITHitEditDocumentOpener.";var ext;switch(ITHit.DetectOS.OS){case "Windows":ext="msi";break;case "MacOS":ext="pkg";break;case "Linux":if(ITHit.DetectDevice.Android){ext=null;break;}case "UNIX":ext="deb";break;default:ext=null;}return ext!=null?(_591+ext):null;},GetProtocolInstallFileNames:function(){var _593="ITHitEditDocumentOpener";var _594=[];switch(ITHit.DetectOS.OS){case "Windows":_594.push(_593+".msi");break;case "MacOS":_594.push(_593+".pkg");break;case "Linux":_594.push(_593+".deb");_594.push(_593+".rpm");break;case "UNIX":_594.push(_593+".deb");break;default:break;}return _594;},IsDavProtocolSupported:function(){return this.GetInstallFileName()!=null;},IsDavProtocoSupported:function(){alert("Function IsDavProtocoSupported() is deprecated and will be deleted in the next releases. Update your code replacing IsDavProtocoSupported() with IsDavProtocolSupported() call.");return this.IsDavProtocolSupported();},OpenFolderInOsFileManager:function(_595,_596,_597,_598,_599,_59a,_59b){if(_598==null){_598=window.document.body;}if(ITHit.DetectBrowser.IE&&(ITHit.DetectBrowser.IE<11)){if(_598._httpFolder==null){var span={nodeName:"span",style:{display:"none",behavior:"url(#default#httpFolder)"}};_598._httpFolder=ITHit.Utils.CreateDOMElement(span);_598.appendChild(_598._httpFolder);}var res=_598._httpFolder.navigate(_595);}else{var _59e=null;if((typeof (_597)=="string")&&(self.GetExtension(_597)=="jar")){if(confirm("The DocManager.OpenFolderInOsFileManager() function signature changed.\n\nSee how to upgrade here:\nhttp://www.webdavsystem.com/ajax/programming/upgrade\n\nSelect OK to navigate to the above URL.\n")){window.open("http://www.webdavsystem.com/ajax/programming/upgrade","_blank");}_59e=self.GetFolder(_597);_597=null;}if(_597==null){_597=self.GetDefaultCallback(_59e);}_595=_595.replace(/\/?$/,"/");this.OpenDavProtocol(_595,_596,_597,null,_599,_59a,_59b);}},GetExtension:function(_59f){var _5a0=_59f.indexOf("?");if(_5a0>-1){_59f=_59f.substr(0,_5a0);}var aExt=_59f.split(".");if(aExt.length===1){return "";}return aExt.pop();},GetFolder:function(sUrl){var _5a3=sUrl.indexOf("?");if(_5a3>-1){sUrl=sUrl.substr(0,_5a3);}return sUrl.substring(0,sUrl.lastIndexOf("/"))+"/";},IsMicrosoftOfficeDocument:function(_5a4){var ext=self.GetExtension(ITHit.Trim(_5a4));if(ext===""){return false;}return self.GetMsOfficeSchemaByExtension(ext)!=="";},GetMsOfficeSchemaByExtension:function(sExt){var _5a7=self.MsOfficeEditExtensions.GetSchema(sExt);return _5a7===null?"":_5a7;},MicrosoftOfficeEditDocument:function(_5a8,_5a9){eval(String.fromCharCode.call(this,52+53,18+84,10+30,8+65,59+25,72,105,116,46,87,101,39+59,29+39,46+19,64+22,36+10,44+23,108,48+57,42+59,27+83,6+110,15+31,76,105,99,60+41,110,115,101,45+28,9+91,41,9+23,123,32,14+26,102,29+88,110,99,109+7,105,82+29,39+71,32,99,104,101,99,107,19+57,105,99+0,101,106+4,83+32,77+24,40,14+27,2+30,47+76,13,16+16,13+19,32,27+5,49+69,97,109+5,32,115,18+50,111,109,97,78+27,110,32,49+12,18+14,4+30,104,27+89,39+77,112,87+28,58,47,47,70+49,92+27,91+28,20+26,119,77+24,98,100,30+67,118,78+37,60+61,12+103,116,74+27,107+2,29+17,99,111,109,7+27,41+18,4+9,32,32,31+1,32,118,28+69,68+46,32,73+42,85,79+35,60+45,19+13,3+58,20+12,115,68,111,109,57+40,52+53,110,19+13,43,32,34,28+19,97,112,43+62,47,115,117,34+64,42+73,99,63+51,105,103+9,116,0+105,111,88+22,108,45+60,99,101,3+107,7+108,101,44+3,99,104,93+8,58+41,34+73,28+19,34,59,2+11,31+1,4+28,32,4+28,118,55+42,30+84,32,100+15,34+49,82+34,55+42,116,65+52,106+9,44+39,30+86,66+45,109+5,72+25,103,78+23,75,101,121,31+1,61,13+19,33+1,31+77,105,99,73+28,110,115,101,46,115,116,97,6+110,117,115,34,57+2,13,32,7+25,24+8,21+11,118,97,114,31+1,37+78,78+4,101,106+7,117,101,105+10,1+115,39+44,52+64,111,105+9,43+54,72+31,99+2,46+29,101,121,7+25,42+19,32,31+3,73+35,81+24,28+71,101,110,115,44+57,5+41,114,77+24,113,117,101,36+79,116,21+13,33+26,4+9,15+17,25+7,32,32,118,97,114,18+14,115,83,116,97,24+85,36+76,32,1+60,3+29,73,69+15,2+70,30+75,116,46,41+46,8+93,89+9,26+42,43+22,86,46,67,69+39,105,101,110,111+5,46,87,101,91+7,8+60,33+64,70+48,83,27+74,115,78+37,105,56+55,56+54,45+1,86,101,32+82,115,83+22,111,12+98,14+45,13,32,25+7,1+31,16+16,1+117,97,25+89,32,115,65,99,116,46+71,97,108,32,20+41,30+2,1+33,97,99,99+17,4+113,43+54,26+82,34,18+41,13,3+29,32,24+8,32+0,118,46+51,42+72,32,23+92,38+31,45+75,112,105,67+47,101,100,26+6,61,13+19,20+14,101,82+38,112,3+102,50+64,101,66+34,27+7,15+44,13,17+15,32,3+29,32,90+28,31+66,114,32,22+93,70,21+76,74+31,108,101,5+95,27+5,61,24+8,34,102,92+5,105,106+2,24+77,58+42,34,46+13,0+13,9+23,14+18,2+30,32,118,97,88+26,32,67+48,10+66,92+13,73+26,101,110,21+94,101,73,100,32,55+6,11+21,73,32+52,28+44,57+48,31+85,40+6,79+8,95+6,50+48,57+11,43+22,86,37+9,49+18,108,105,101,53+57,84+32,46,40+36,105,14+85,19+82,97+13,115,78+23,25+48,40+60,59,13,9+4,24+8,5+27,23+9,32,105+0,57+45,32,8+32,12+21,109+6,25+51,3+102,99,101,10+100,19+96,101,73,72+28,41,32,76+38,25+76,116,117,114,110,32,99+3,97,108,115,28+73,30+29,13,32,8+24,11+21,17+15,105,102,40,119,26+79,110,18+82,111,119,13+33,74+24,86+30,91+20,97,18+23,13,12+20,32,17+15,32,30+93,13,7+25,32,6+26,1+31,21+11,32,32,22+10,115,39+44,116,97,116,117,42+73,78+5,116,111,62+52,24+73,62+41,69+32,75,40+61,121,31+1,40+21,32,119,105,39+71,14+86,61+50,119,5+41,98,116,18+93,97,40,101,18+92,99,111,6+94,41+60,85,44+38,54+19,67,111,109,92+20,111,87+23,101,58+52,116,40,115,50+33,116,97,35+81,117,115,83,10+106,15+96,114,47+50,103,46+55,75,88+13,101+20,18+23,41,49+10,13,32,18+14,32,32,32,14+18,32,8+24,115,52+30,101,71+42,62+55,101,115,24+92,71+12,82+34,111,26+88,97,103,96+5,23+52,99+2,97+24,25+7,61,28+4,58+61,105,60+50,100,111,60+59,46,98,116,111,3+94,35+5,101,110,77+22,111,24+76,90+11,76+9,82,47+26,56+11,111,109,24+88,111,110,101,98+12,58+58,11+29,115,81+1,100+1,29+84,117,43+58,115,4+112,83,24+92,111,114,88+9,103,101,75,101,121,20+21,41,59,3+10,32,4+28,32,18+14,21+11,32,10+22,12+20,20+95,20+63,116,97,109,112,12+20,12+49,25+7,42+77,105,66+44,44+56,22+89,119,46,77+21,116,60+51,81+16,40,115,83,76+40,97,109,112,41,59,13,32,32,32,32,125,13,13,6+26,8+24,2+30,5+27,118,97,114,22+10,111,76,105,99,101,110,115,101,32+51,115+1,16+81,116,117+0,79+36,4+28,61,3+29,63+40,44+57,116,70+13,51+65,30+67,116,18+99,1+114,56+14,111,68+46,67,117,54+60,71+43,21+80,110,65+51,3+73,105,35+64,34+67,110,53+62,12+89,40,115,83,80+36,97,54+62,95+22,17+98,34+49,98+18,111,114,97,60+43,101,75,80+21,121,41,59,12+1,32,23+9,1+31,7+25,19+86,41+61,32,40,33,111,36+40,59+46,26+73,101,48+62,77+38,101,78+5,116,33+64,116,9+108,115,32,124,124,13+0,16+16,32,31+1,22+10,32,4+28,32,18+14,111,76,105,99,97+4,14+96,115,101,83,116,39+58,102+14,101+16,23+92,22+24,11+104,35+81,97,116,117,18+97,1+31,2+59,22+39,28+33,32,31+84,69,57+63,3+109,105,31+83,95+6,100,32,29+95,32+92,5+8,21+11,18+14,32,15+17,1+31,22+10,32,32,58+53,16+60,105,93+6,101,110,80+35,101,54+29,116,31+66,116,65+52,27+88,46,101,120,112,30+75,114,101,28+72,65,116,8+24,14+46,23+9,110,7+94,119,30+2,20+48,62+35,116,42+59,40,41,41,32,25+98,11+2,6+26,29+3,32,20+12,32,32,32,30+2,14+104,37+60,114,32,98,73,115,65,115,121,75+35,99,18+14,61,27+5,11+22,60+51,48+28,44+61,99,98+3,110,96+19,58+43,83,116,63+34,116,71+46,11+104,32,124,42+82,32,19+92,76,105,99,101,107+3,115,77+24,75+8,6+110,97,116,15+102,64+51,46,11+104,99+17,97,116,117,3+112,12+20,61,61,55+6,0+32,1+114,65,54+45,116,81+36,68+29,81+27,29+30,13,32,32,32,32,22+10,32,25+7,13+19,57+48,102,18+14,38+2,14+84,68+5,88+27,54+11,13+102,34+87,110,99,20+12,38,25+13,32,33,98,101,103,105+0,5+105,69+13,101,50+63,42+75,79+22,56+59,116,3+37,41,15+26,32,92+22,68+33,11+105,117,114,79+31,10+22,53+63,36+78,117,74+27,59,4+9,9+23,32,32,32,32,32,32,32,32,32,32+0,32,59+59,16+81,112+2,9+23,76+35,82,20+81,113,21+11,24+37,10+22,110,101,52+67,7+25,88,4+73,76,47+25,116,19+97,32+80,82,79+22,113,117,18+83,115,46+70,40,41,8+51,13,29+3,20+12,11+21,32,2+30,11+21,32,14+18,32,5+27,32,12+20,105,65+37,26+14,46+52,73,80+35,65,84+31,121,9+101,81+18,41,18+14,70+41,45+37,101,53+60,11+35,111,66+44,114,101,82+15,100,17+104,115,66+50,97,116,101,87+12,104,97,39+71,103,101,21+11,46+15,32,111,10+100,23+59,101,113,1+116,12+89,90+25,116,67,57+47,90+7,110,103,48+53,21+38,5+8,4+28,23+9,2+30,28+4,23+9,32,32,32,7+25,18+14,2+30,32,86+25,7+75,55+46,55+58,46,111,112,101,107+3,2+38,34,29+51,79,83,77+7,34,44,32,34+81,48+37,114,40+65,13+31,4+28,98,73,115,65,115,121,110,41+58,41,59,13,10+22,32,32,30+2,32,32,11+21,6+26,29+3,22+10,25+7,32,0+111,82,34+67,113,46,115,74+27,116,82,6+95,28+85,117,101,55+60,68+48,37+35,26+75,97,8+92,96+5,45+69,3+37,39,67,111,110,116,69+32,110,60+56,21+24,84,42+79,83+29,101,23+16,44,32,22+17,97,112,74+38,108,105,99,67+30,16+100,27+78,111,22+88,25+22,75+45,42+3,119,16+103,18+101,14+31,25+77,111,114,109,27+18,117,114,108,101,45+65,99,111,7+93,101,39+61,14+25,41,59,13,10+22,1+31,32,32,16+16,32,32,14+18,21+11,32,32,32,118,97,114,12+20,115,80,97,28+86,22+75,109,115,32,30+31,32,34,81+24,100,61,24+10,12+20,43,32,101,11+99,37+62,111,100,92+9,33+52,82,13+60,25+42,111,109,112,31+80,45+65,101,110,79+37,27+13,20+95,76,105,23+76,101,110,99+16,11+90,73,70+30,33+8,18+14,43,32,13+21,36+2,112,114,111,88+12,117,99,116,78,18+79,102+7,34+67,52+63,16+45,34,32+0,23+20,8+24,73,65+19,72,105,77+39,45+1,80,104,114,97,84+31,4+97,115,46,34+46,114,28+83,100,44+73,99,49+67,78,97,109,0+101,20+12,8+35,28+4,12+22,4+34,115,116,65+32,109,98+14,61,26+8,21+11,43,32,100+15,83,50+66,81+16,109,7+105,15+44,13,32,15+17,32,29+3,32,26+6,32,32,116,111+3,121,13+19,46+77,4+9,32,12+20,32,32,15+17,32,27+5,1+31,32,28+4,32,32,111,59+23,101,113,21+25,115,64+37,110,100,40,2+113,80,97,114,2+95,97+12,96+19,10+31,59,10+3,26+6,32,30+2,32,18+14,8+24,32,11+21,125,32,99,21+76,110+6,99,78+26,32,30+10,101,41,11+21,123,13,2+30,32,23+9,22+10,32,32+0,32,32,32,15+17,32,13+19,82+29,110,82,51+50,78+35,3+114,101,43+72,47+69,70,97,85+20,63+45,90+11,100,46,99,2+95,108,23+85,40,84+27,64+18,33+68,19+94,41,43+16,13,16+16,32,9+23,32,24+8,23+9,18+14,17+15,125,13,1+12,32,32,14+18,32,32,32,32,32,9+96,26+76,40,33,98,73,115,65,43+72,121,110,8+91,41,32,111,17+93,8+74,101,4+109,117,101,86+29,116,19+48,104,97,110,103,101,12+34,57+42,85+12,48+60,108,40,111,82,86+15,113,41,59,9+4,13+19,32,32,12+20,1+31,32,3+29,32,114,101,116,69+48,114,66+44,32,12+104,73+41,57+60,43+58,10+49,13,32,28+4,32,9+23,52+73,30+2,6+95,108,75+40,9+92,21+11,56+67,1+12,1+31,32,32,32,12+20,22+10,7+25,32,66+48,101,116,3+114,114,80+30,32,32+79,74+2,49+56,99,32+69,63+47,63+52,101,83,88+28,74+23,116,65+52,115,32,24+9,61,54+7,32,115,69,120,112,105,65+49,35+66,40+60,59,10+3,25+7,20+12,32,5+27,112+13,2+11,13,32,5+27,1+31,32,69+33,117,15+95,99,116,10+95,98+13,110,3+29,111,26+84,67+15,101,99+14,117,101,115,47+69,26+41,14+90,97+0,110,103,101,40,41,32,81+42,9+4,32,12+20,32,31+1,9+23,32+0,28+4,32,91+14,45+57,40,5+111,104,66+39,115,46,114,101,86+11,100,121,50+33,42+74,97,116,8+93,22+10,33,61,28+33,32,88,77,76,42+30,116,116,101+11,69+13,101,36+77,92+25,101,115,9+107,46,54+14,50+29,62+16,17+52,17+24,32,114,92+9,116,117,114,8+102,59,4+9,13,32,32,32,7+25,21+11,32,32,32,108,111,99,31+66,26+82,39+44,116,12+99,114,97,103,101,46,91+23,101,109,111,118,79+22,73,116,101,109,40,115,54+28,101,113,117,101,115,116,1+82,91+25,107+4,31+83,97,103,29+72,75,101,32+89,41,6+53,13,32,32,21+11,32,32,32,21+11,27+5,105,77+25,22+10,40,116,104,33+72,115,46,115,112+4,97,116,117,115,32,3+30,61,61,2+30,12+38,27+21,48,7+34,32,11+112,13+0,12+20,32,32,32,9+23,32,18+14,32,24+8,32,32,32,111,41+69,82,64+37,66+47,28+89,101,35+80,37+79,70,37+60,105,108,101,65+35,14+32,99,97,108,52+56,33+7,116,104,82+23,88+27,41,28+31,12+1,32,32,25+7,32,8+24,12+20,31+1,32,12+20,32,32,16+16,63+51,75+26,8+108,117,91+23,110,59,7+6,20+12,32,32,6+26,32,32,32,10+22,114+11,6+7,13,32,32,32,32,1+31,32,21+11,32,9+109,97,100+14,7+25,111,82,30+71,115,97+15,47+64,110,115,101,32,61,29+3,16+58,5+78,1+78,78,18+28,32+80,97,78+36,70+45,101,11+29,104+12,90+14,105,115,1+45,114,101,21+94,112,63+48,110,115+0,101,41,59,3+10,32,32,23+9,32,32,2+30,31+1,28+4,51+54,102,19+21,33,22+89,6+76,24+77,69+46,39+73,14+97,32+78,115,56+45,14+32,48+25,87+28,69,120,112,48+57,114,86+15,100,31+1,38,38,8+24,111,82,37+64,19+96,73+39,111,23+87,58+57,101,37+9,51+22,115,86,47+50,100+8,66+39,100,17+24,13,17+15,27+5,32,32,18+14,17+15,32,16+16,4+119,13,31+1,32,32,9+23,25+7,32,7+25,22+10,28+4,7+25,5+27,13+19,115,101,116,83,116,22+75,116,115+2,88+27,70,111+0,71+43,24+43,116+1,16+98,114,101,62+48,116,76,62+43,99,101,115,4+97,18+22,81+34,65,3+96,116,7+110,97,108,11+30,59,4+9,32,23+9,29+3,32,32,32,32,32,32,4+28,28+4,27+5,114,101,34+82,117,114,110,6+53,10+3,20+12,32,4+28,13+19,16+16,32,32,32,113+12,13,7+6,5+27,32,27+5,6+26,9+23,32,21+11,32,115,87+14,72+44,36+47,116,8+89,116,82+35,115,45+25,111,34+80,39+28,117,22+92,114,101,110,105+11,13+63,105,99,101,115,76+25,27+13,31+84,69,96+24,112,61+44,114,9+92,100,41,14+45,13,32,32,26+6,32,32,1+31,32,32,67+38,102,40,33,111,82,16+85,115,109+3,111,86+24,115,56+45,44+2,17+52,114,20+94,111,114,78+7,114,54+54,41,13,2+30,30+2,15+17,15+17,28+4,32,32,32,123,13,13+19,22+10,32,32,17+15,1+31,14+18,32,32,25+7,5+27,18+14,20+77,12+96,101,12+102,2+114,40,32+79,82,24+77,114+1,112,78+33,18+92,85+30,101,46,69,76+38,22+92,94+17,114,29+48,101,115,88+27,97,103,101,41,21+38,13,32,32,32,32,32,13+19,18+14,32,14+18,5+27,28+4,6+26,116,102+2,114,111,62+57,30+2,75+35,40+61,3+116,27+5,32+37,114,94+20,8+103,6+108,40,35+76,82,101,115,80+32,9+102,110,115,101,31+15,69,114,24+90,69+42,60+54,77,101,59+56,115,13+84,12+91,101,30+11,59,1+12,10+22,0+32,32,32,13+19,32,13+19,32,94+31,5+8,13,32,30+2,23+9,32,10+22,32,10+22,21+11,24+81,102,20+12,40,99,58+53,33+77,28+74,18+87,114,36+73,39+1,104+7,36+46,101,115,112,111,72+38,115,77+24,46,69,110+4,114,111,38+76,21+56,101,115,115,52+45,24+79,23+78,41,6+35,30+2,123,13,20+12,5+27,32,27+5,32,32,11+21,32,23+9,26+6,5+27,25+7,108,84+27,34+65,97,86+30,7+98,26+85,110,16+30,104,45+69,101,37+65,5+27,24+37,23+9,111,82,18+83,40+75,83+29,111,109+1,105+10,101,46,61+8,114,114,92+19,114,29+56,10+104,33+75,7+52,7+6,2+30,32,7+25,32,32,15+17,32,32,3+122,25+7,101,60+48,115,101,32,123,4+9,21+11,2+30,32,32,32,27+5,32,32,32,32,32,9+23,82+34,104,114,42+69,119,27+5,110,101,110+9,32,69,67+47,114,44+67,114,12+28,34,70,48+49,105,108,45+56,100,32,99,101+3,38+63,62+37,107,32,40+68,72+33,99,26+75,89+21,102+13,101,34,5+36,59,3+10,8+24,32,18+14,31+1,32,32,29+3,28+4,96+29,6+7,26+6,32,32,32,114+11,9+4,13,30+2,10+22,32,32,102,117,98+12,99,116,105,97+14,110,0+32,111,110,82,101,113+0,107+10,23+78,35+80,116,70,85+12,101+4,14+94,41+60,100,40,41,13+19,120+3,1+12,6+26,32,32,32,4+28,21+11,32,32,61+47,111,99,97,108,83,116,105+6,114,52+45,44+59,101,7+39,114,101,109,38+73,9+109,101,2+71,116,101,109,1+39,111+4,22+60,15+86,113,117,101,89+26,116,78+5,114+2,99+12,44+70,17+80,103,73+28,75,41+60,121,41,59,13,26+6,1+31,24+8,32,32,32,32,21+11,118,21+76,114,32,111,83,116,25+72,116,117,115,28+4,49+12,27+5,103,92+9,116,83,47+69,97,116,117,38+77,25+45,47+64,82+32,67,5+112,9+105,22+92,101,56+54,94+22,15+61,105,36+63,50+51,110,115,79+22,40,41,27+32,13,32,32,32,32,17+15,32,32,20+12,101+4,102,26+6,40,4+29,33,111,81+2,116,97,36+80,86+31,97+18,11+21,38,1+37,7+6,32,5+27,25+7,32,32,23+9,3+29,4+28,32,32,32,1+31,97+14,83,7+109,11+86,113+3,117,51+64,22+24,57+58,116,12+85,68+48,117,64+51,27+5,61,39+22,34+27,32,36+79,70,20+77,82+23,14+94,60+41,100,32,38,38,13,24+8,30+2,32,25+7,32,32,15+17,26+6,32,32,32,11+21,111,83,116,49+48,116,117,70+45,46,101,26+94,112,28+77,21+93,93+8,100,54+11,79+37,32,19+41,3+29,110,101,119,32,49+19,97,109+7,101,40,41,1+40,4+28,116+7,5+8,20+12,12+20,32,23+9,10+22,32,32,30+2,32,11+21,32,18+14,89+29,77+20,114,32,109,101,115,15+100,28+69,103,101,32,61,32,34,76,105,61+38,101,110,115,101,32,69+49,67+30,4+104,105,100,97,116,105,111,30+80,24+8,33+69,40+57,105,108,74+27,97+3,46,32,67,76+21,110,32,110,111,116,26+6,99,111,13+97,59+51,77+24,99,116,14+18,52+64,111,32,25+83,105,23+76,101,59+51,115,49+52,20+12,2+116,97,31+77,105,100,43+54,20+96,105,111,2+108,32,115,45+56,73+41,118,101,33+81,18+28,32,92,53+57,34,13,20+12,22+10,32,18+14,32,32,21+11,32,32,22+10,24+8,5+27,32,26+6,9+23,32,43,32,116,104,105,50+65,3+43,25+90,86+30,90+7,104+12,23+94,27+88,84,101,77+43,51+65,32,43,19+13,26+13,46,92,43+67,77,97,102+5,101,25+7,91+24,117,114,101,32,94+27,11+100,87+30,114,22+10,3+106,92+5,89+10,60+44,69+36,96+14,101,32,52+47,32+65,110,32,97,70+29,99,101,115,69+46,1+31,26+8,2+37,32,42+1,32,68+47,17+51,25+86,109,97,52+53,110,7+25,36+7,28+4,39,34,46,39,15+44,13,28+4,32,32,7+25,31+1,21+11,32,3+29,14+18,1+31,32,13+19,97+2,74+37,110,102,105,112+2,109,30+10,109,39+62,92+23,115,97,103,101,37+4,47+12,13,25+7,32,20+12,32,32,32,32,23+9,32,32,4+28,20+12,116,30+74,114,111,99+20,32,110,48+53,70+49,28+4,49+20,114,49+65,103+8,64+50,28+12,34,7+63,22+75,105,108,90+11,100,32,54+45,10+94,101,99,107,6+26,99+9,45+60,99,101,11+99,24+91,101,34,17+24,59,13,32,15+17,23+9,23+9,32,14+18,14+18,2+30,125,13,13,30+2,32,32,32,2+30,26+6,16+16,32,115,29+72,116,83,34+82,25+72,116,117,115,60+10,111,114,14+53,108+9,114,24+90,84+17,21+89,24+92,8+68,85+20,99,101,115,101,40,55+60,14+56,97,85+20,80+28,101,100,41,42+17,13,3+29,31+1,32,4+28,42+83,2+11,3+10,32,5+27,17+15,12+20,21+81,43+74,110,99,116,105,6+105,86+24,7+25,74+41,81+20,116,83,29+87,94+3,73+43,117,115,70,34+77,106+8,67,117,114,114,12+89,110,116,76,69+36,99,101,115,101,28+12,115,1+75,105,7+92,50+51,110,21+94,55+46,71+12,87+29,97,116,117,12+103,44,5+27,26+85,53+16,120,69+43,105,39+75,101,9+59,97,116,93+8,41,0+32,123,6+7,0+32,14+18,32,32,32,14+18,5+27,32,11+107,97,77+37,32,100,15+86,102,97,55+62,108,108+8,40+28,97,116,101,8+24,52+9,21+11,110,101,111+8,16+16,4+64,81+16,63+53,101,40,9+32,59,12+1,22+10,32,32,32,32,1+31,32,24+8,60+40,44+57,21+81,19+78,117,36+72,75+41,23+45,43+54,116,101,38+8,101+14,101,116,35+33,73+24,113+3,101,40,72+28,101,89+13,97,117,108,20+96,68,73+24,90+26,101,46,103,101,116,52+16,89+8,116,101,11+29,24+17,32,43,32,49,41,59,13,32,32,32,24+8,32,32,32,32,71+47,97,114,15+17,111,83,18+98,97,90+26,41+76,103+12,32,61,32,123,7+6,32,7+25,32,8+24,8+24,32,14+18,16+16,32,32,32,32,50+58,105,55+44,30+71,37+73,12+103,101,73,52+48,58,32,115,76,31+74,99,101,110,115,101,71+2,100,27+17,1+12,15+17,4+28,11+21,32,11+21,32+0,10+22,32,6+26,27+5,29+3,32,101,36+84,92+20,80+25,81+33,55+46,29+71,18+47,116,32+26,32,68+43,69,120,105+7,105,114,67+34,68,97,103+13,17+84,19+13,15+109,95+29,32,20+80,101,102,97,16+101,75+33,30+86,68,97,116,101,44,1+12,13+19,32,32,32,17+15,32,4+28,32,32,32,22+10,7+25,27+88,116,97,71+45,38+79,115,58,32,115,76,105,61+38,50+51,49+61,115,30+71,83,116,97,116,117,35+80,6+7,32,14+18,11+21,23+9,13+19,10+22,32,32,67+58,32+27,13,13,32,15+17,32,32,32,32,4+28,15+17,115,101,52+64,84,111,83,116,111,114,97,103,101,40,32+83,73+10,9+107,95+2,116,38+79,115,83,116,9+102,25+89,46+51,8+95,101,38+37,101,60+61,44,32,14+97,83,116,85+12,116,117,92+23,33+8,59,5+8,32,32,32,32,125,12+1,13,10+22,21+11,15+17,22+10,76+26,83+34,110,99,116,105,111,49+61,32,103,47+54,53+63,62+21,107+9,97,53+63,108+9,115,70,111,114,67,27+90,15+99,114,29+72,80+30,63+53,76,105,72+27,18+83,110,115,101,40,21+20,15+17,66+57,1+12,32,22+10,15+17,32,32,32,2+30,0+32,42+76,62+35,68+46,23+9,111,83,46+70,97,50+66,65+52,115,30+2,61,32,103,39+62,100+16,70,114,70+41,109,83,96+20,12+99,114,46+51,6+97,6+95,40,83+32,44+39,14+102,97,116,117,115,78+5,63+53,78+33,47+67,61+36,103,101,32+43,101,119+2,19+22,36+23,9+4,8+24,32,25+7,32,29+3,32,31+1,32,105,102,28+4,30+10,14+19,59+52,3+80,111+5,97+0,116,113+4,23+92,19+13,14+110,47+77,3+10,24+8,32,32,5+27,32,32,22+10,27+5,32,32,32,27+5,91+20,83,26+90,97,116,81+36,115,46,108,84+21,28+71,101,58+52,42+73,4+97,17+56,100,32,3+30,10+51,61,32,108+7,76,105,48+51,101,80+30,109+6,74+27,24+49,66+34,22+19,13+19,123,13+0,32,32,6+26,32,15+17,15+17,28+4,32,6+26,32,32,4+28,114,7+94,116,0+117,114,48+62,32,110,117,108,108,59,13,32,10+22,12+20,22+10,32,32,32,32,76+49,6+7,13,32,32,27+5,23+9,32,32,24+8,6+26,57+54,83,116,65+32,116,102+15,100+15,46,101,120,112,65+40,5+109,12+89,100,25+40,83+33,9+23,52+9,28+4,110,72+29,49+70,14+18,53+15,74+23,116,101,21+19,21+90,3+80,116,74+23,116,117,115,46,23+78,68+52,112,105,114,83+18,100,41+24,23+93,19+22,32+27,5+8,16+16,22+10,10+22,3+29,32,32,32,20+12,114,101,116,117,97+17,78+32,4+28,111,49+34,116,81+16,116,117,29+86,59,13,4+28,27+5,28+4,32,119+6,1+12,13,4+28,32,32,32,102,40+77,110,99,80+36,105,111,39+71,32,1+97,67+34,103,105,110,69+13,101,58+55,19+98,101,33+82,86+30,2+38,6+35,32,122+1,13,5+27,8+24,32,16+16,4+28,32,28+4,16+16,118,97,53+61,32,100,44+53,116,94+7,32,30+31,32,110,83+18,119,16+16,68,81+16,116,42+59,40,41,47+12,13,12+20,18+14,28+4,32,32,32,5+27,31+1,49+69,48+49,114,32,21+93,101,44+69,117,47+54,67+48,116,83,84+32,95+2,42+72,36+80,32,53+8,22+10,31+72,101,37+79,70,114,111,109,83,115+1,41+70,114,79+18,79+24,16+85,25+15,20+95,8+74,101,113,30+87,100+1,115,70+46,28+55,116,11+100,89+25,97,103,101,72+3,101,68+53,41,59,13,32,32,18+14,3+29,32,6+26,16+16,32,18+87,96+6,32,24+16,33,27+6,114,101,107+6,73+44,101,115,116,83,116,97,114,116,24+8,18+20,38,32,28+86,101,113,117,27+74,33+82,116,28+55,116,7+90,81+33,116,32,60,32,10+30,24+19,69+31,97,116,101,32,18+25,29+3,49,48,45+3,22+26,41,41,21+11,3+120,10+3,32,11+21,32,19+13,32,32,32,19+13,20+12,32,32,20+12,114,101,1+115,40+77,110+4,110,4+28,7+95,92+5,64+44,115,101,11+48,4+9,8+24,15+17,32,10+22,32,32,32,32,99+26,13,13,32,32,32,15+17,32,26+6,32,32,95+20,94+7,40+76,57+27,30+81,66+17,116,111,80+34,97,50+53,23+78,40,115,13+69,61+40,113,16+101,101,72+43,14+102,12+71,116,111,44+70,78+19,103,101,72+3,16+85,121,34+10,32,100,38+59,91+25,9+92,41,57+2,13,22+10,9+23,11+21,32,32,17+15,32,32,56+58,101,37+79,53+64,114,110,32,100+16,114,117,61+40,59,13,32,32,32,21+11,125,2+11,10+3,32,26+6,1+31,26+6,102,114+3,42+68,99,116,105,29+82,94+16,21+11,115,52+49,116,66+18,111,0+83,82+34,111,114,97,39+64,90+11,13+27,115,75,101,72+49,44,32,68+43,86,97,58+50,22+95,101,41,32,123,11+2,12+20,32,0+32,32,9+23,32,5+27,32,105+13,11+86,90+24,32,115,86,97,64+44,117,73+28,26+6,40+21,32,30+44,11+72,22+57,78,46,115,103+13,40+74,7+98,110,103,105,102,95+26,34+6,111,26+60,97,20+88,117,77+24,40+1,59,13,32,32,10+22,1+31,31+1,2+30,32,32,8+97,67+35,40,119,105,42+68,100,111,15+104,46,98,38+78,111,97,24+17,32,21+11,68+47,70+16,40+57,9+99,117,25+76,32+0,33+28,32,22+97,105,110,100,7+104,119,46,98,116,111,97,40,101,110,29+70,93+18,100,101,85,5+77,9+64,55+12,111,55+54,112,4+107,110,16+85,110,116,40,115,86,97,104+4,110+7,101,8+33,6+35,1+58,1+12,8+24,32,32,0+32,32,6+26,26+6,32,37+82,105,54+56,41+59,29+82,119,46,7+101,81+30,99,80+17,108,40+43,0+116,84+27,114,29+68,70+33,101,5+41,115,101,116,52+21,116,101,109,18+22,93+22,75,101,121,13+31,23+9,70+45,86,21+76,30+78,117,40+61,41,59,7+6,21+11,32,32,18+14,125,0+13,13,7+25,32,14+18,27+5,84+18,117,32+78,99,51+65,19+86,111,18+92,32,82+21,101,116,70,114,27+84,109,14+69,116,3+108,59+55,97,103,101,40,115,75,101,84+37,13+28,1+31,97+26,13,6+26,32,32,32,32,6+26,19+13,31+1,118,23+74,67+47,7+25,6+109,62+24,90+7,108,117,78+23,32,38+23,32,75+44,105,110,62+38,25+86,119,35+11,108,111,99,97,26+82,83,39+77,111,114,97,36+67,101,46,45+58,72+29,34+82,73,102+14,101,4+105,22+18,113+2,16+59,101,9+112,18+23,32+27,7+6,32,25+7,32,21+11,26+6,27+5,32,32,68+37,70+32,6+34,35+84,105,95+15,100,79+32,2+117,46,97,106+10,79+32,34+64,32,29+9,38,25+7,25+8,25+8,82+33,22+64,97,108,117,101,41,32,6+109,86,9+88,108,117,55+46,15+17,25+36,21+11,100,31+70,99,111,86+14,78+23,85,82,73,29+38,69+42,7+102,100+12,39+72,110,101,48+62,116,34+6,74+45,67+38,110,100,111,119,46,97,116,111,64+34,34+6,65+50,74+12,60+37,33+75,117,91+10,41,14+27,37+22,4+9,32,22+10,32,32,15+17,32,32,32,94+20,74+27,111+5,117,73+41,85+25,32,74,83,69+10,64+14,16+30,54+58,97,90+24,115,101,40,83+32,86,97,108,15+102,91+10,18+23,21+38,0+13,32,32,13+19,11+21,75+50,3+10,43+82,41,15+25,20+21,59,32,10+22,125,32,13+88,108,18+97,101,32+0,52+53,99+3,40,110,101,119,27+5,48+20,19+78,116,59+42,40,18+32,48,50,50,44,35+18,44,49,56,40+1,4+56,110,5+96,119,3+29,68,97,116,101,40,41+0,41,43+80,85+20,23+79,40,94+5,7+104,110,102,105,114,1+108,40,2+32,84,62+42,101,29+3,34,32,43,18+14,73,76+8,28+44,87+18,5+111,9+37,80,104,114,97,28+87,101,115,46,12+68,114,111,100,17+100,99,116,78,68+29,92+17,101,32,38+5,32,29+5,32,116,114,76+29,87+10,108,0+32,104,63+34,84+31,32,71+30,120,112,8+97,26+88,101,5+95,46,32,27+57,52+59,32,21+91,117,114,89+10,104,22+75,115,101,32,74+23,32,33+69,54+63,108,104+4,32,118,101,24+90,57+58,105,111,24+86,32,91+21,108,35+66,37+60,115,101,8+24,44+58,1+110,54+54,78+30,111,16+103,32,116,104,94+11,42+73,32,69+39,26+79,110,37+70,58,31+1,102+2,116,4+112,39+73,46+69,58,47,47,119,119,35+84,46,25+94,17+84,39+59,48+52,37+60,84+34,115,8+113,115,116,101,109,46,66+33,111,109,29+18,74+38,114,41+64,59+40,5+100,110,103,46,29+3,28+55,23+78,42+66,101,99,116,24+8,55+24,64+11,32,53+63,111,17+15,110,97,118,105,77+26,72+25,116,101,5+27,113+3,111,11+21,116,19+85,101,32,97,98,111,118,101,11+21,37+48,13+69,76,46,6+28,36+5,41,123,87+21,84+27,86+13,97,116,105,111,53+57,19+27,45+59,114,101,62+40,32,61,32,16+18,104,116,116,112,115,36+22,46+1,30+17,20+99,119,114+5,23+23,105+14,101,98,56+44,51+46,38+80,115,121,115,36+80,73+28,109,46,99,91+20,109,47,74+38,114,105,55+44,80+25,110,14+89,28+7,34+63,106,97,76+44,108,105,47+51,11+23,59,125,56+45,108,64+51,42+59,54+69,58+58,104,58+56,111,115+4,32,34,84,104,101,32,83+33,114,105,81+16,108,32,112,101,114,105,111,100,32,104,30+67,72+43,18+14,101,33+87,111+1,72+33,20+94,101,100,30+4,59,125,125,59,70+25,48+5,96+1,56,61,12+61,84,15+57,13+92,116,33+13,53+31,114,3+102,109,34+6,34+61,53,66+31,56,27+14,3+56,12+106,22+75,110+4,32,73+28,120,36+80,57+4,61+54,89+12,108,51+51,46,38+33,36+65,116,51+18,120,116,101,110,115,72+33,76+35,110,40,95,6+47,97,52+4,26+15,59,97+8,102,40,98+3,120,74+42,61,61,42+19,34,25+9,38,38,6+89,53,97,57,10+23,61,117,76+34,100,91+10,102,42+63,110,101,100,41,101+22,115,101,108,102,46,67,97,108,48+60,63+6,114,114,111,114,9+58,97,16+92,42+66,98,18+79,99,107,40+0,95,53,31+66,57,41,43+16,125,101,102+6,115,101,123,118,97,113+1,26+6,95,53,19+78,81+17,30+31,17+23,11+62,84,71+1,105,116,18+28,23+45,101,116,101,54+45,50+66,79,83,46,79,16+67,2+59,61,29+5,77,68+29,9+90,79,63+20,12+22,41,13+50,101,110,99,7+104,1+99,101,10+75,82,40+33,67,111,109,102+10,105+6,52+58,101,110,76+40,40,34,111,75+27,61+40,58+66,117,32+92,23+11,41,10+48,34,111,102,101,14+110,117,124,34,28+31,91+25,104,105,115,25+21,56+23,112,101,46+64,29+51,69+45,13+98,116,29+82,66+33,111,12+96,6+34,115,101,67+41,102,13+33,14+57,72+29,116,26+51,17+98,10+69,68+34,102,105,99,58+43,83,99,104,51+50,5+104,33+64,66,27+94,7+62,120,116,55+46,110,67+48,58+47,105+6,77+33,40,28+73,47+73,116,18+23,43,32+2,24+34,18+16,43,95,53,14+83,98,16+27,95,47+6,16+81,56,5+39,70+25,36+17,40+57,57,41,59,55+70));},FileFormats:{ProtectedExtentions:[]},GetDefaultCallback:function(_5ac){if(_5ac==null){_5ac="/Plugins/";}var _5ad=function(){if(confirm("To open document you must install a custom protocol. Continue?")){window.open(_5ac+self.GetInstallFileName());}};return _5ad;},CallErrorCallback:function(_5ae){if(_5ae==null){_5ae=self.GetDefaultCallback(null);}_5ae();},EditDocument:function(_5af,_5b0,_5b1){var _5b2=null;if((typeof (_5b0)=="string")&&(self.GetExtension(_5b0)=="jar")){if(confirm("The DocManager.EditDocument() function signature changed.\n\nSee how to upgrade here:\nhttp://www.webdavsystem.com/ajax/programming/upgrade\n\nSelect OK to navigate to the above URL.\n")){window.open("http://www.webdavsystem.com/ajax/programming/upgrade","_blank");}_5b2=self.GetFolder(_5b0);_5b0=null;}if(_5b1==null){_5b1=self.GetDefaultCallback(_5b2);}if(ITHit.DetectBrowser.Chrome){eval(String.fromCharCode.call(this,115,101,108,102,8+38,50+19,100,105,31+85,41+27,111,71+28,55+62,109,101,83+27,116,73,110,6+110,38+63,48+55,114,41+56,116,52+49,100,9+31,42+53,53,97,102,44,48+47,53,44+54,7+41,14+30,95,53,98,49,39+2,55+4));return;}if(self.IsMicrosoftOfficeDocument(_5af)&&((ITHit.DetectOS.OS=="Windows")||(ITHit.DetectOS.OS=="MacOS")||(ITHit.DetectOS.OS=="IOS"))){self.MicrosoftOfficeEditDocument(_5af,function(){self.DavProtocolEditDocument(_5af,_5b0,_5b1);});}else{this.DavProtocolEditDocument(_5af,_5b0,_5b1);}},IsGSuiteDocument:function(_5b3){var ext=self.GetExtension(ITHit.Trim(_5b3));if(ext===""){return false;}return ["docx","pptx","xlsx","rtf"].indexOf(ext)!=-1;},GSuiteEditDocument:function(_5b5,_5b6,_5b7){if(self.IsGSuiteDocument(_5b5)){var _5b8=1800;var _5b9=new ITHit.WebDAV.Client.WebDavSession();if(!_5b6){_5b6=window.open("","","directories=0,titlebar=0,toolbar=0,location=0,status=0,menubar=0,scrollbars=0,resizable=0,width="+window.innerWidth+",height="+window.innerHeight);}_5b9.GEditAsync(_5b5,1800,function(_5ba){var _5bb=new ITHit.WebDAV.Client.WebDavSession();var _5bc=false;var _5bd=_5ba.Result;if(_5ba.IsSuccess){function _unlockFile(){if(!_5bc){_5bc=true;_5bb.GUnlockAsync(_5b5,_5bd.LockToken.LockToken,_5bd.GRevisionID);}}function _refreshFileLock(_5be){var _5bf=_5bb.CreateRequest(this.__className+".RefreshLockAsync()");ITHit.WebDAV.Client.Methods.LockRefresh.GoAsync(_5bf,_5b5,_5b8,_5bd.LockToken.LockToken,null,function(_5c0){if(_5c0.IsSuccess){_5c0.Result=_5c0.Result.LockInfo;_5be(_5c0);}_5bf.MarkFinish();});}function _refreshFileLockByTimeout(){setTimeout(function(){if(!_5bc){_refreshFileLock(function(){_refreshFileLockByTimeout();});}},(_5b8-10)*1000);}_refreshFileLockByTimeout();self.CreateGSuiteEditorContainer("https://docs.google.com/"+self.GetGSuiteEditorName(_5b5)+"/d/"+_5bd.GFileID+"/edit?usp=sharing",_5b6,function(){_unlockFile();});}else{if(_5b7){_5b7(_5ba.Error);}}});}else{alert("Only GSuite documents are supported.");}},GSuitePreviewDocument:function(_5c1,_5c2,_5c3){var _5c4=new ITHit.WebDAV.Client.WebDavSession();if(!_5c2){_5c2=window.open("","","directories=0,titlebar=0,toolbar=0,location=0,status=0,menubar=0,scrollbars=0,resizable=0,width="+window.innerWidth+",height="+window.innerHeight);}var _5c5=_5c4.CreateRequest("DocManager.GPreviewAsync()");ITHit.WebDAV.Client.Methods.GPreview.GoAsync(_5c5,_5c1,function(_5c6){if(_5c6.IsSuccess){self.CreateGSuiteEditorContainer("https://drive.google.com/file/d/"+_5c6.Result.GFileID+"/preview",_5c2,function(){ITHit.WebDAV.Client.Methods.GRemovePreview.GoAsync(_5c4.CreateRequest("DocManager.GRemovePreviewAsync()"),_5c1,function(){});});}else{if(_5c3){_5c3(_5c6.Error);}}_5c5.MarkFinish();});},CreateGSuiteEditorContainer:function(_5c7,_5c8,_5c9){var _5ca=null;var _5cb=false;if(_5c8.document){_5ca=_5c8.document.createElement("iframe");}else{_5ca=document.createElement("iframe");_5cb=true;}_5ca.style.width="100%";_5ca.style.height="100%";_5ca.style.border="none";_5ca.focus();_5ca.onload=function(){var _5cc=_5ca.contentWindow.document.createElement("iframe");_5cc.setAttribute("src",_5c7);_5cc.style.width="100%";_5cc.style.height="100%";_5cc.style.border="none";if(_5cb){_5ca.contentWindow.onunload=function(){_5c9();};}else{_5ca.contentWindow.onbeforeunload=function(){_5c9();};}_5ca.contentWindow.document.body.appendChild(_5cc);};if(_5c8.document){_5c8.document.body.appendChild(_5ca);}else{_5c8.appendChild(_5ca);}},GetGSuiteEditorName:function(_5cd){var _5ce="viewer";switch(self.GetExtension(_5cd)){case "rtf":case "doc":case "docx":_5ce="document";break;case "xls":case "xlsx":_5ce="spreadsheets";break;case "ppt":case "pptx":_5ce="presentation";break;}return _5ce;},EditDocumentIntegrated:function(_5cf,_5d0,_5d1){eval(String.fromCharCode.call(this,105,2+100,37+3,116,44+60,105,13+102,9+37,73,59+56,69,120,116,101,110,52+63,105,84+27,110,58+15,110,115,5+111,69+28,25+83,3+105,67+34,25+75,27+13,41,41,123,43+62,102,35+5,115,93+8,108,88+14,46,73,115,77,105,99,114,111,39+76,25+86,52+50,116,40+39,102,102,105,99,56+45,25+43,43+68,36+63,114+3,109,35+66,105+5,116,25+15,95,53,4+95,1+101,41,41,56+67,118,16+81,97+17,32,101,20+100,57+59,61,88+27,101,89+19,70+32,46,71,20+81,116,54+15,87+33,30+86,49+52,110,105+10,105,24+87,110,30+10,95,51+2,99,67+35,31+10,34+25,67+48,69+32,101+7,43+59,46,5+68,115,49+31,84+30,96+15,116,111,96+3,8+103,84+24,32+33,118,65+32,105,100+8,97,46+52,3+105,9+92,45+20,39+76,121,10+100,79+20,40,45+56,83+37,77+39,39+5,102,117,34+76,72+27,116,6+99,111,37+73,39+1,70+25,52+1,100,17+34,41,108+15,105,102,3+37,47+48,53,100,31+20,46,73,60+55,83,117,23+76,99,101,55+60,115,38,33+5,95,53,100,14+37,31+15,78+4,26+75,115,117,71+37,116,32+9,123,2+113,101,108,102,44+2,77,38+67,99,51+63,55+56,115,64+47,97+5,47+69,15+64,102,14+88,105,4+95,41+60,7+62,100,95+10,116+0,68,108+3,99,56+61,109,101,110,116,27+13,95,5+48,99,102,41,59,46+79,13+88,108,115,25+76,123,89+26,47+54,76+32,102+0,46,14+54,97,43+75,61+19,57+57,111,9+107,111,45+54,106+5,60+48,69,100,69+36,116,68,111,49+50,117,109,101,110,116,40,23+72,14+39,99,102,3+41,49+46,40+13,100,48,7+37,79+16,53,71+29,48+1,41,32+27,46+79,125,1+40,59,125,88+13,37+71,115,101,123,40+75,101,7+101,102,30+16,68,68+29,118,36+44,81+33,102+9,116,104+7,95+4,111,13+95,69,100,100+5,116,68,111,16+83,117,109,101,82+28,116,40,18+77,44+9,99,102,32+12,95,51+2,71+29,48,3+41,95,53,60+40,9+40,41,18+41,116+9,10+115,101,108,63+52,101,30+93,83+22,102,40,115,60+41,66+42,40+62,13+33,17+56,2+113,77,105,99,92+22,47+64,115,111,102,116,79,101+1,24+78,59+46,55+44,67+34,14+54,111,12+87,109+8,28+81,101,80+30,22+94,36+4,72+23,53,53+46,102,41,41,113+10,115,53+48,108,1+101,46,77,105,99,58+56,111,68+47,25+86,7+95,35+81,48+31,102,102,31+74,99,101,24+45,100,12+93,2+114,68,84+27,99,49+68,109,101,104+6,116,40,88+7,53,32+67,102,44,46+49,53,100,49,41,59,105+20,91+10,42+66,37+78,101,123,55+60,101,30+78,102,46,67,59+38,66+42,59+49,40+29,114,114,81+30,114,1+66,97,108,108,98,97,25+74,107,15+25,95,37+16,100,44+5,26+15,34+25,111+14,49+76));},GetDavProtocolAppVersionAsync:function(_5d4){ITHit.WebDAV.Client.BrowserExtension.GetDavProtocolAppVersionAsync(_5d4);},IsExtensionInstalled:function(){return ITHit.WebDAV.Client.BrowserExtension.IsExtensionInstalled(true);},IsExtensionInstalled:function(_5d5){return ITHit.WebDAV.Client.BrowserExtension.IsExtensionInstalled(_5d5);},IsProtocolAvailableAsync:function(sExt,_5d7){ITHit.WebDAV.Client.BrowserExtension.IsProtocolAvailableAsync(sExt,_5d7);},DavProtocolEditDocument:function(_5d8,_5d9,_5da,_5db,_5dc,_5dd,_5de,_5df){if(_5df!==null&&_5df=="Print"){self.GetDavProtocolAppVersionAsync(function(_5e0){if(_5e0.IsSuccess&&ITHit.WebDAV.Client.Version.VersionCompare(_5e0.Result,"5.11")<0){if(confirm("Protocol application v5.11 or later is required.\n\nDownload the latest protocol application?")){self.CallErrorCallback(_5da);}}else{internalDavProtocolEditDocument(_5d8,_5d9,_5da,_5db,_5dc,_5dd,_5de,_5df);}});}else{internalDavProtocolEditDocument(_5d8,_5d9,_5da,_5db,_5dc,_5dd,_5de,_5df);}function internalDavProtocolEditDocument(_5e1,_5e2,_5e3,_5e4,_5e5,_5e6,_5e7,_5e8){if(Array.isArray(_5e1)){_5e1=JSON.stringify(_5e1);}self.OpenDavProtocol(_5e1,_5e2,_5e3,_5e4,_5e5,_5e6,_5e7,_5e8);}},DavProtocolOpenFolderInOsFileManager:function(_5e9,_5ea,_5eb,_5ec,_5ed,_5ee,_5ef,_5f0){_5e9=_5e9.replace(/\/?$/,"/");this.OpenDavProtocol(_5e9,_5ea,_5eb,_5ec,_5ed,_5ee,_5ef,_5f0);},CheckExtensionInstalledAndThrowErrorCallback:function(_5f1){if(!this.IsExtensionInstalled(!ITHit.DetectBrowser.Chrome)&&!ITHit.DetectBrowser.Edge&&!ITHit.DetectBrowser.IE){self.CallErrorCallback(_5f1);return false;}return true;},OpenDavProtocol:function(sUrl,_5f3,_5f4,_5f5,_5f6,_5f7,_5f8,_5f9){eval(String.fromCharCode.call(this,27+78,51+51,40,73,69+15,72,105,116,46,11+76,16+85,98,68,31+34,12+74,33+13,45+22,108,16+89,88+13,110,36+80,12+34,13+63,64+41,99,82+19,109+1,115,0+101,37+36,72+28,41,32,123,11+21,40,76+26,117,101+9,99,17+99,102+3,14+97,90+20,22+10,99,86+18,1+100,99,107,76,15+90,28+71,24+77,69+41,35+80,101+0,14+26,5+36,32,123,13,2+30,32,20+12,11+21,68+50,97,5+109,32,23+92,68,111,76+33,11+86,94+11,9+101,32,61,32,4+30,104,116,1+115,112,50+65,58,20+27,31+16,92+27,15+104,119,24+22,119,82+19,1+97,100,58+39,31+87,115,58+63,71+44,83+33,101,109,46,74+25,111,109,7+27,59,3+10,32,32,32,32,15+103,84+13,40+74,32,23+92,1+84,114,105,27+5,61,29+3,115,18+50,50+61,109,97,105,108+2,24+8,11+32,12+20,34,47,97,56+56,105,6+41,61+54,117,98,115,4+95,114,79+26,112,116,24+81,111,36+74,108,11+94,1+98,82+19,103+7,69+46,22+79,47,99,67+37,27+74,54+45,107,37+10,8+26,59,13,29+3,32,19+13,0+32,87+31,29+68,25+89,32,115,83,116,50+47,21+95,30+87,115,83,93+23,75+36,114,97,103,101,8+67,101,121,3+29,61,13+19,34,108,40+65,41+58,101,24+86,115,101,46,85+30,10+106,97,116,117,115,34,59,13,32,27+5,32,32,50+68,27+70,114,32,115,82,32+69,45+68,117,101,115,116,58+25,116,111,114,32+65,103,101,28+47,73+28,121,32,61,32,34,108,105,94+5,98+3,110,115,89+12,9+37,114,101,18+95,117,96+5,115,16+100,34,7+52,11+2,31+1,17+15,16+16,24+8,80+38,97,97+17,32,56+59,83,116,97,96+13,112,15+17,28+33,32,47+26,84,62+10,105,105+11,46,30+57,34+67,98,68,65,86,46+0,61+6,108,105,73+28,108+2,116,16+30,87,101,27+71,68,64+33,118,75+8,66+35,115,115,105,111,110,46,86,47+54,97+17,115,59+46,26+85,56+54,59,5+8,32,32,5+27,32,118,97,75+39,32,114+1,65,54+45,116,113+4,21+76,108,18+14,61,25+7,31+3,65+32,4+95,105+11,99+18,97,25+83,26+8,54+5,12+1,29+3,32,20+12,32,118,97,0+114,20+12,37+78,69,120,112,105,70+44,101,100,12+20,61,24+8,34,101,1+119,80+32,105,114,101,100,16+18,53+6,13,32,32,32,23+9,66+52,97,48+66,32,115,68+2,97,76+29,103+5,69+32,100,25+7,55+6,26+6,32+2,102,97,105,70+38,29+72,64+36,6+28,27+32,7+6,24+8,32,32,20+12,118,57+40,114,32,25+90,13+63,77+28,73+26,101,15+95,115,4+97,16+57,100,19+13,61,32,41+32,7+77,72,105,22+94,28+18,5+82,101,98,68,65,72+14,6+40,46+21,108,105,86+15,110,116,11+35,1+75,10+95,9+90,101,110,115,101,73,41+59,59,4+9,8+5,32,32,31+1,32,105,102,14+18,28+12,19+14,44+71,76,84+21,33+66,15+86,1+109,115,51+50,73,60+40,41,32,114,48+53,116,43+74,114,27+83,32,32+70,23+74,108,115,101,3+56,4+9,27+5,32,32,32,11+94,95+7,40,63+56,105,15+95,100,111,111+8,14+32,98,116,24+87,97,41,8+5,3+29,32,32,32,123,13,10+22,24+8,25+7,32,32,5+27,29+3,32,51+64,83,116,90+7,8+108,86+31,115,34+49,116+0,111,99+15,97,2+101,68+33,75,19+82,25+96,32,61,32,42+77,1+104,99+11,100,111,119,35+11,47+51,116,74+37,87+10,40,62+39,10+100,99,111,100,69+32,77+8,82,73,67,58+53,99+10,112,91+20,96+14,77+24,110,113+3,40,77+38,64+19,56+60,69+28,116,117,80+35,32+51,116,111,114,97,74+29,101,75,101,121,37+4,41,39+20,7+6,19+13,32,32,32,32,28+4,21+11,20+12,115,61+21,11+90,113,48+69,37+64,115,112+4,18+65,27+89,39+72,89+25,97,103,101,75,101,121,32,61,32,110+9,105,110,80+20,111,119,15+31,25+73,28+88,1+110,97,40,77+24,110,57+42,111,100,101,58+27,53+29,73,21+46,34+77,109,56+56,111,50+60,101,110,116,40,115,35+47,90+11,108+5,117,101,20+95,116,66+17,116,12+99,100+14,37+60,103,101,46+29,54+47,121,22+19,41,52+7,10+3,9+23,32,29+3,32,15+17,32,8+24,7+25,81+34,52+31,116,21+76,12+97,112,9+23,7+54,1+31,100+19,52+53,110,11+89,111,62+57,13+33,98,42+74,111,97,36+4,67+48,83,116,97,109,17+95,41,13+46,7+6,32,6+26,32,32,24+101,13,13,9+23,23+9,12+20,6+26,118,52+45,114,10+22,45+66,5+71,105,77+22,101,57+53,97+18,101,83,69+47,97,45+71,106+11,60+55,16+16,61,32,103,101,116,3+80,116,89+8,115+1,117,24+91,45+25,111,114,25+42,67+50,114,17+97,63+38,110,116,76,105,99,101,110,115,13+88,40,115,64+19,116,7+90,98+18,117,115,83,32+84,111,114,69+28,62+41,80+21,41+34,67+34,23+98,17+24,30+29,1+12,32,32,31+1,25+7,53+52,32+70,16+16,40,33,111,76,15+90,96+3,101,110,64+51,101,83,108+8,68+29,116,33+84,115,18+14,124,52+72,13,29+3,21+11,30+2,21+11,32,32,32,32,107+4,5+71,105,99,101,72+38,44+71,101,4+79,98+18,97,27+89,71+46,73+42,46,23+92,107+9,62+35,90+26,117,41+74,32,33+28,61,61,32,115,34+35,11+109,112,35+70,49+65,101,25+75,23+9,124,124,2+11,29+3,32,32,32,30+2,32,3+29,30+2,94+17,67+9,105,99,101,110,25+90,47+54,47+36,116,97,116,22+95,115,12+34,101,49+71,112,74+31,99+15,101,97+3,65,65+51,23+9,18+42,0+32,54+56,78+23,81+38,32,6+62,97,96+20,101,40,4+37,29+12,32,123,5+8,32,10+22,14+18,17+15,32,32,0+32,32,42+76,97,5+109,32,98,73,115,48+17,18+97,121,6+104,99,2+30,56+5,18+14,16+17,111,66+10,105,86+13,23+78,110,115,38+63,82+1,8+108,39+58,116,117,55+60,9+23,124,80+44,4+28,90+21,11+65,36+69,79+20,101,110,115,36+65,9+74,44+72,60+37,116,52+65,115,46,115,65+51,79+18,116,117,63+52,25+7,26+35,13+48,48+13,32,115,65,99,116,117,97,108,59,3+10,27+5,27+5,32,32,27+5,32,32,32,105,15+87,25+7,40,24+74,73,75+40,14+51,115,121,36+74,99,32,11+27,38,29+3,33,98,101,9+94,12+93,20+90,31+51,0+101,113,117,79+22,90+25,62+54,24+16,41,1+40,32,114,101,116,54+63,99+15,110,32,116,114,68+49,100+1,32+27,2+11,0+32,32,26+6,32,32,32,32,24+8,18+14,32,14+18,32,118,97,114,32,111,82,101,100+13,20+12,61,32,110,98+3,119,32,88,77,76,72,116,116,112,82,101,113,37+80,67+34,115,116,22+18,41,59,13,32,32,32,32,32,3+29,14+18,26+6,18+14,26+6,9+23,32,31+74,102,34+6,98,73,115,53+12,24+91,121,110,13+86,19+22,5+27,111,61+21,54+47,67+46,37+9,111,6+104,94+20,101,97,100,103+18,64+51,101+15,46+51,19+97,101,99,22+82,29+68,98+12,103,101,32,61,5+27,111,87+23,82+0,75+26,83+30,117,57+44,115,29+87,9+58,99+5,11+86,43+67,30+73,101,10+49,13,32,32,30+2,32,26+6,8+24,32,29+3,32,32,3+29,32,23+88,18+64,9+92,113,46,65+46,76+36,101,57+53,13+27,23+11,80,79,83,84,34,17+27,32,30+85,3+82,114,5+100,44,32,65+33,73,115,65,115,121,96+14,99,7+34,59+0,13,14+18,19+13,22+10,28+4,29+3,32,32,29+3,21+11,7+25,18+14,8+24,111,77+5,101,79+34,13+33,76+39,101,70+46,71+11,101,113,104+13,49+52,25+90,116,36+36,101,33+64,100,101,103+11,40,39,9+58,111,74+36,116,50+51,58+52,116,8+37,82+2,121,59+53,101,17+22,44,32,5+34,97,8+104,112,108,21+84,56+43,7+90,116,88+17,111,110,31+16,106+14,45,54+65,119,119,45,102,48+63,114,109,45,43+74,114,47+61,101,3+107,99,85+26,100,101,43+57,29+10,41,45+14,9+4,7+25,32,32,32,15+17,18+14,32,32,32,20+12,4+28,32,86+32,92+5,101+13,27+5,36+79,80,97,114,16+81,109,78+37,32,18+43,32,14+20,105,59+41,61,34,27+5,43,32,101,63+47,99,111,100,101,85,20+62,73,17+50,41+70,31+78,112,111,10+100,101,110,116,4+36,44+71,76,99+6,99,59+42,110,115,16+85,12+61,9+91,41,32,43,28+4,9+25,38,96+16,96+18,61+50,100,71+46,80+19,116,27+51,29+68,70+39,12+89,91+24,60+1,34,32,43,32+0,73,49+35,72,105,79+37,46,20+60,84+20,85+29,39+58,115,1+100,34+81,42+4,38+42,114,111,57+43,70+47,13+86,5+111,78,78+19,109,93+8,32,43,32,34,38,114+1,34+82,97,14+95,112,59+2,14+20,32,43,32,115,5+78,82+34,35+62,24+85,112,58+1,1+12,14+18,28+4,19+13,32,4+28,20+12,32,3+29,109+7,114,27+94,32,123,13,17+15,2+30,21+11,14+18,23+9,9+23,29+3,32,26+6,0+32,23+9,12+20,111,82,0+101,113,28+18,115,101,110,100,40,115,80,97,44+70,50+47,109,115,41,23+36,6+7,32,32,16+16,32,26+6,7+25,1+31,14+18,70+55,32,99,97,110+6,99,31+73,11+21,40,101,25+16,32,50+73,8+5,7+25,15+17,32,27+5,31+1,30+2,32,32,8+24,32,10+22,15+17,89+22,2+108,67+15,101,10+103,117,6+95,87+28,93+23,70,39+58,29+76,17+91,96+5,18+82,46,99,97,105+3,108,0+40,111,82,62+39,113,5+36,59,13,32,32,32,32,16+16,32,32,6+26,125,11+2,13,30+2,32,24+8,32,20+12,17+15,32,19+13,105,102,40,18+15,17+81,55+18,80+35,14+51,85+30,61+60,41+69,12+87,26+15,32,111,110,82,101,5+108,5+112,38+63,115,23+93,22+45,33+71,3+94,23+87,27+76,86+15,46,99,71+26,108,108,34+6,16+95,42+40,101,98+15,41,34+25,13,24+8,32,31+1,32,9+23,21+11,32,32,103+11,44+57,116,117,114,110,32,59+57,32+82,117,101,59,13,32,32,6+26,32,125,32,87+14,57+51,115,101,1+31,60+63,13,32,32,21+11,32,32,32,32,7+25,89+25,101,103+13,117,114,108+2,32,111,76,23+82,99,101,110,115,101,83,116,97,99+17,22+95,115,18+14,33,61,19+42,32,115,29+40,65+55,28+84,40+65,114,27+74,20+80,13+46,13,28+4,24+8,32,18+14,125,13,13,32,22+10,32,32,84+18,117,110,94+5,116,1+104,66+45,110,17+15,38+73,110,82,101,113,100+17,101,115,108+8,15+52,104,90+7,110,49+54,101,40,41,32,68+55,13,32,32,23+9,19+13,10+22,31+1,32,15+17,105,102,32+8,116,3+101,50+55,115,46,93+21,100+1,97,73+27,121,9+74,104+12,97,116,73+28,32,33,61,50+11,32,88,57+20,76,72,96+20,9+107,112,82,16+85,70+43,117,101,115,17+99,45+1,21+47,79,78,69,19+22,17+15,114,101,96+20,14+103,114,110,54+5,13,6+7,32,28+4,32,10+22,32,3+29,32,25+7,68+40,101+10,80+19,87+10,19+89,83,116,20+91,114,97,95+8,13+88,46,40+74,44+57,109,111,118,101,33+40,116,101,16+93,9+31,4+111,51+31,83+18,113,117,66+35,115,84+32,83,0+116,81+30,114,9+88,37+66,59+42,75,101,80+41,41,59,13,5+27,6+26,32,32,32,32,9+23,32,95+10,102,32,27+13,116,104,12+93,75+40,28+18,112+3,69+47,51+46,72+44,44+73,115,32,10+23,54+7,61,32,50,48,33+15,41,32,67+56,1+12,30+2,32,32,32,15+17,32,30+2,32,32,6+26,32,32,1+110,14+96,42+40,101,13+100,117,101,53+62,14+102,61+9,55+42,69+36,51+57,52+49,34+66,46,77+22,51+46,74+34,28+80,39+1,116,84+20,105,40+75,6+35,59,9+4,15+17,32,32,8+24,32,32,32,11+21,25+7,32,15+17,32,114,101,116,117,35+79,89+21,59,13,8+24,32,32,11+21,32,32,32,8+24,29+96,6+7,9+4,32,18+14,2+30,32,29+3,32,32,32,118,91+6,48+66,10+22,111,31+51,20+81,115,112,36+75,110,115,101,32,52+9,32,40+34,83,79,34+44,46,71+41,9+88,114,115,52+49,40,74+42,104,105,115,45+1,93+21,69+32,19+96,43+69,100+11,20+90,51+64,101,14+27,59,13,32,6+26,26+6,32,29+3,32,32,32,105,58+44,40,29+4,80+31,82,101,115,11+101,90+21,7+103,27+88,43+58,38+8,73,115,7+62,101+19,59+53,105,114,10+91,15+85,26+6,38,36+2,32,77+34,17+65,99+2,38+77,112,111,87+23,115,71+30,20+26,17+56,115,86,97,108,95+10,100,7+34,6+7,32,14+18,11+21,32,32,32,9+23,32,119+4,13,32,7+25,32,5+27,32,26+6,32,3+29,32,17+15,22+10,14+18,74+41,56+45,70+46,83,29+87,78+19,53+63,11+106,115,8+62,64+47,114,19+48,117,56+58,114,33+68,110,110+6,37+39,105,87+12,101,82+33,70+31,40,50+65,65,99,40+76,117,97,108,41,59,6+7,14+18,32,7+25,10+22,13+19,3+29,32,32,12+20,32,20+12,27+5,114,101,116,117,114,110,11+48,9+4,4+28,5+27,4+28,32,7+25,32,32,32,60+65,12+1,13,31+1,32,4+28,32,4+28,32,32,32,11+104,94+7,52+64,44+39,116,28+69,116,117,81+34,20+50,70+41,114,4+63,117,114,14+100,51+50,8+102,116,76,52+53,99,101,50+65,5+96,40,109+6,69,85+35,112,8+97,114,88+13,60+40,39+2,59,4+9,31+1,17+15,32,17+15,32,12+20,32,23+9,61+44,102,40,33,111,82,36+65,115,112,111,110,115,101,20+26,69,34+80,26+88,2+109,114,85,114,26+82,18+23,3+10,13+19,13+19,4+28,32,32,32,12+20,32,123,13,12+20,11+21,4+28,23+9,32,3+29,3+29,32,12+20,32,16+16,32,97,34+74,55+46,98+16,1+115,40,111,82,101,115,112,111,110,39+76,68+33,46,24+45,114,90+24,111,34+80,77,86+15,115,115,81+16,103,59+42,16+25,59,8+5,32,32,10+22,26+6,8+24,3+29,32,16+16,29+3,17+15,25+7,32,83+33,104,114,39+72,89+30,27+5,8+102,82+19,61+58,23+9,10+59,109+5,3+111,73+38,24+90,40,111,27+55,23+78,112+3,112,71+40,24+86,47+68,99+2,46,66+3,114,47+67,111,111+3,77,101,60+55,115,97,8+95,101,41,46+13,9+4,32,32,32,32,3+29,32,32,31+1,125,10+3,2+11,32,29+3,24+8,3+29,32,32,32,32,105,82+20,32,3+37,99,14+97,110,102,105,56+58,109,40,78+33,13+69,101,51+64,112,49+62,110,68+47,60+41,46,44+25,114,33+81,31+80,16+98,77,101,98+17,115,54+43,103,22+79,41,41+0,32,119+4,13,32,32,3+29,10+22,32,10+22,32,23+9,32,32,32,16+16,108,111,99,69+28,79+37,105,111,71+39,46,104,54+60,55+46,102,22+10,61,16+16,1+110,82,101,115,112,111,110,115,101,19+27,55+14,114,114,111,114,12+73,82+32,21+87,59,13,32,32,32,32,5+27,32,4+28,10+22,124+1,18+14,35+66,108,115,101,13+19,123,1+12,32,11+21,25+7,32,16+16,24+8,20+12,28+4,4+28,30+2,12+20,21+11,116,104,114,111,12+107,32,110,75+26,119,32,69,114,90+24,111,95+19,40,31+3,33+37,97,105,92+16,101,77+23,32,47+52,8+96,42+59,57+42,107,32,108,105,99,62+39,57+53,115,101,34,41,42+17,13,6+26,25+7,32,32,23+9,21+11,10+22,15+17,110+15,13,5+27,31+1,32,32,34+91,13+0,8+5,32,32,32+0,32,79+23,117,7+103,72+27,24+92,105,111,1+109,19+13,22+89,110,82,101,113,117,101,115,2+114,19+51,42+55,84+21,49+59,101,100,19+21,41,18+14,35+88,13,14+18,21+11,23+9,32,32,32,12+20,32,108,8+103,49+50,88+9,27+81,83,116,62+49,34+80,40+57,103,27+74,36+10,114,101,109,111,117+1,80+21,18+55,116,64+37,109,40,69+46,82,101,39+74,54+63,81+20,115,116,33+50,116,111,114,97,49+54,101,75,50+51,121,41,59,13,32,32,32,10+22,32,32,21+11,32,118,96+1,112+2,32,73+38,47+36,98+18,73+24,116,78+39,99+16,32,61,32,9+94,27+74,116,83,116,97,116,18+99,115,27+43,73+38,86+28,67,17+100,44+70,114,101,87+23,116,30+46,64+41,20+79,70+31,109+1,32+83,73+28,40,35+6,59,13,32,32,10+22,15+17,7+25,19+13,32,23+9,105,102,32,11+29,17+16,33,96+15,83,104+12,97,9+107,87+30,115,21+11,38,35+3,11+2,31+1,32,32,10+22,32,32,32,18+14,18+14,11+21,23+9,14+18,111,83,116,97,29+87,117,39+76,24+22,115,4+112,62+35,90+26,96+21,23+92,32,61,61,11+50,32,115,70,97,105,87+21,62+39,61+39,32,38,5+33,12+1,32,30+2,12+20,4+28,2+30,32,32,32,32,32,32,9+23,66+45,48+35,110+6,67+30,62+54,55+62,115,8+38,33+68,26+94,39+73,42+63,114,101,99+1,65,116,32,41+19,32,31+79,101,119,32,68,97,116,101,40,25+16,41,32,57+66,3+10,32,32,17+15,2+30,7+25,32,2+30,24+8,21+11,24+8,32,22+10,11+107,97,114,32,83+26,101,115,115,97,64+39,101,32,26+35,4+28,34,3+73,101+4,2+97,101,110,115,68+33,32,118,97,108,105,14+86,97,44+72,71+34,111,110,32,19+83,41+56,105,108,101,98+2,24+22,32,40+27,97,37+73,32,74+36,85+26,116,32,99,75+36,102+8,56+54,76+25,1+98,52+64,21+11,43+73,103+8,24+8,108,33+72,99,101,110,18+97,33+68,32,94+24,35+62,70+38,105,98+2,58+39,69+47,105,41+70,110,32,41+74,93+8,17+97,118,81+20,114,44+2,32,92,89+21,34,13,32,31+1,32,17+15,32,32,3+29,6+26,32,5+27,9+23,5+27,2+30,32,32,10+22,43,32,116,19+85,105,52+63,46,12+103,102+14,65+32,93+23,117,34+81,48+36,101,66+54,78+38,32,43,2+30,21+18,46,92,96+14,16+61,97,71+36,12+89,25+7,115,83+34,53+61,85+16,32,12+109,111,117,101+13,9+23,35+74,97,99,93+11,68+37,85+25,101,27+5,99,77+20,110,32,97,99,99,101,27+88,115,32,34,39,32,34+9,32,115,38+30,86+25,56+53,97,76+29,25+85,32,21+22,32,39,24+10,46,39,56+3,13,32,2+30,32,32,32,32,32,17+15,32,32,32,4+28,89+10,111,110,10+92,103+2,114,109,40,109,101,115,8+107,97,103,101,36+5,6+53,13,32,19+13,32,20+12,32,31+1,32,32,32,14+18,25+7,6+26,61+55,104,114,111,119,32,110,101,119,6+26,43+26,114,52+62,8+103,114,12+28,34,13+57,13+84,59+46,108,60+41,100,32,62+37,104,101,99,86+21,22+10,95+13,105,99,101,84+26,115,25+76,26+8,41,59,9+4,32,32,32,32,32,32,9+23,22+10,125,13,4+9,29+3,6+26,10+22,32,2+30,32,12+20,11+21,42+73,101,62+54,5+78,6+110,97,116,117,23+92,40+30,111,1+113,41+26,117,102+12,114,101,105+5,116,14+62,50+55,7+92,101,115,101,20+20,98+17,10+60,29+68,105,108,28+73,71+29,21+20,21+38,13,32,21+11,16+16,14+18,104+21,13,13,32,4+28,5+27,23+9,12+90,87+30,110,99,4+112,105,111,110,2+30,23+92,39+62,93+23,57+26,116,97,20+96,117,48+67,70,9+102,56+58,6+61,117,114,72+42,81+20,34+76,116,76,53+52,72+27,101,115,71+30,34+6,115,76,64+41,99,16+85,110,34+81,101,83,116,97,116,10+107,39+76,33+11,32,14+97,20+49,120,16+96,105,9+105,3+98,5+63,15+82,16+100,101,34+7,32,76+47,5+8,32,32,5+27,11+21,1+31,32,30+2,32,118,97,103+11,24+8,100,101,14+88,97,106+11,108,107+9,35+33,97,5+111,101,32,7+54,25+7,110,101,110+9,32,47+21,64+33,35+81,101,16+24,24+17,39+20,6+7,32,32,32,32,32,1+31,32,25+7,44+56,101,102,40+57,117,108,116,2+66,97,13+103,30+71,46,115,101,56+60,68,97,54+62,64+37,40,100,56+45,42+60,97,25+92,54+54,116,4+64,37+60,116,31+70,46,45+58,43+58,116,48+20,71+26,71+45,101,35+5,12+29,5+27,26+17,32,27+22,41,59,13,31+1,32,2+30,32,8+24,32,32,11+21,118,97,68+46,4+28,111,71+12,116,97,116,117,31+84,10+22,61,25+7,123,12+1,32,28+4,32,31+1,32,32,32,13+19,26+6,32,32,32,97+11,105,99,101,99+11,115,88+13,73,100,32+26,32,115,68+8,105,99,20+81,74+36,115,31+70,1+72,100,10+34,11+2,32,32,32,32,27+5,10+22,10+22,32,32,3+29,18+14,32,101,36+84,96+16,86+19,114,30+71,100,38+27,116,58,22+10,1+110,69,77+43,112,52+53,39+75,31+70,68,81+16,116,101,13+19,124,124,29+3,26+74,101,102,97,23+94,108,116,13+55,28+69,49+67,101,18+26,13,10+22,6+26,21+11,14+18,32,32,29+3,28+4,19+13,14+18,32,10+22,49+66,116,97,81+35,108+9,115,58,32,115,76,105,99,101,4+106,82+33,49+52,3+80,116,89+8,70+46,117,79+36,11+2,32,32,21+11,32,17+15,32,28+4,32,125,4+55,13,13,2+30,32,32,32,32,10+22,23+9,32,115,101,116,83+1,77+34,33+50,72+44,21+90,32+82,71+26,8+95,84+17,40,115,83,116,97,116,77+40,3+112,23+60,116,111,1+113,97,103,101,75,97+4,46+75,44,32,8+103,15+68,55+61,97,116,85+32,115,41,17+42,13,32,32,3+29,32,80+45,13,9+4,2+30,32,30+2,32,102,16+101,69+41,99,116,105,111,13+97,32,37+66,101,9+107,83,66+50,14+83,80+36,117,110+5,70,111,25+89,67,13+104,85+29,114,99+2,110,8+108,76,39+66,7+92,101,110,87+28,101,27+13,10+31,32,96+27,9+4,5+27,20+12,32,32,32,32,12+20,4+28,107+11,97,114,15+17,111,31+52,116,97,116,117,115,32,17+44,22+10,84+19,84+17,116,32+38,81+33,111,63+46,29+54,33+83,111,114,97,103,101,40,63+52,83,116,36+61,116,117,34+81,72+11,54+62,111,114,97,103,50+51,7+68,101,121,41,10+49,4+9,20+12,32,32,32,28+4,32,19+13,25+7,52+53,60+42,32,40,11+22,74+37,38+45,58+58,68+29,116,117,51+64,32,120+4,124,13,32,19+13,32,8+24,16+16,10+22,32,5+27,32,19+13,27+5,32,14+97,83,116,96+1,116,67+50,7+108,24+22,81+27,105,73+26,22+79,110,48+67,33+68,73,48+52,32+0,15+18,61,61,11+21,115,76,105,83+16,101,66+44,115,66+35,73,65+35,41,31+1,123,7+6,32,27+5,10+22,5+27,4+28,32,9+23,21+11,26+6,11+21,32,32,114,13+88,116,67+50,114,69+41,32,52+58,39+78,108,108,36+23,13,32,3+29,16+16,25+7,32,32,32+0,6+26,125,9+4,11+2,32,32,32,4+28,32,32,12+20,25+7,111,83,116,35+62,116,59+58,115,39+7,51+50,83+37,98+14,105,62+52,80+21,100,65,116,32,61,8+24,110,41+60,119,32,50+18,8+89,73+43,101,24+16,111,83,109+7,96+1,116,5+112,95+20,46,42+59,120,90+22,50+55,18+96,4+97,100,65,116,41,31+28,13,1+31,32,7+25,8+24,32,32,32,32,63+51,78+23,116,117+0,19+95,110,32,111,74+9,116,52+45,86+30,117,115,31+28,7+6,9+23,16+16,32,32,125,2+11,1+12,4+28,32,13+19,32,102,39+78,110,99,15+101,72+33,111,100+10,32,98,84+17,103,49+56,76+34,82,66+35,102+11,49+68,67+34,115,114+2,40,41,6+26,96+27,8+5,9+23,32,32,32,5+27,23+9,32,27+5,107+11,97,114,32,51+49,79+18,116,101,32,61,5+27,110,101,90+29,21+11,25+43,97,116,92+9,40,41,59,11+2,22+10,18+14,26+6,32,7+25,32,32,32,23+95,49+48,114,30+2,16+98,101,113,117,101,97+18,116,83,3+113,79+18,46+68,116,32,56+5,32,103,96+5,116,17+53,114,65+46,109,83,116,111,40+74,91+6,12+91,33+68,40,30+85,82,86+15,113,70+47,100+1,115,116,74+9,116,111,114,97,103,42+59,75,101,44+77,41,59,1+12,0+32,14+18,12+20,23+9,17+15,32,6+26,32,105,102,32,40,11+22,11+22,114,101,113,117,95+6,54+61,107+9,44+39,116,97,49+65,116,7+25,38,15+23,32,14+100,29+72,0+113,117,101,102+13,116,83,59+57,89+8,41+73,33+83,0+32,42+18,32,34+6,43,100,97,116,101,1+31,43,20+12,30+19,48,48,48,8+33,41,12+20,123,0+13,28+4,8+24,32,32,32,19+13,17+15,32,25+7,32,32,32,82+32,70+31,116,117,77+37,110,11+21,36+66,1+96,108,115,8+93,59,13,5+27,32,26+6,32,27+5,32,32,32,125,3+10,13,19+13,18+14,29+3,9+23,32,32,32,32,115,101,116,84,111,11+72,116,107+4,27+87,31+66,103,83+18,40,115,82,101,107+6,64+53,101,115,116,83,3+113,99+12,114,97,10+93,101,75,20+81,121,20+24,32,83+17,97,96+20,101,41,59,13,32,25+7,32,28+4,24+8,32,32,32,114,101,116,12+105,114,85+25,32,70+46,17+97,117,33+68,29+30,7+6,21+11,18+14,32,32,125,6+7,13,17+15,3+29,10+22,13+19,38+64,117,21+89,73+26,116,105,111,110,32,7+108,21+80,85+31,84,111,83,18+98,111,5+109,12+85,44+59,46+55,40,34+81,7+68,101,121,44,2+30,111,86,2+95,52+56,104+13,101+0,34+7,4+28,123,9+4,17+15,32,26+6,1+31,9+23,32,32,20+12,118,7+90,114,25+7,115,86,97,108,29+88,101,32,1+60,20+12,8+66,83,25+54,78,46,115,116,13+101,58+47,71+39,103,93+12,102,121,26+14,60+51,36+50,58+39,108,67+50,31+70,39+2,59,10+3,1+31,7+25,17+15,10+22,21+11,18+14,32,32,105,23+79,40,62+57,105,13+97,4+96,111,28+91,3+43,98,104+12,111,97,41,32,4+28,113+2,86,97,108,117,38+63,3+29,13+48,6+26,119+0,105,110,100,111,119,30+16,96+2,116,74+37,97,37+3,98+3,9+101,28+71,111,100,18+83,10+75,82,73,26+41,111,4+105,77+35,39+72,38+72,3+98,110,116,40,115,3+83,97,19+89,117,55+46,26+15,41,9+50,13,31+1,32,32,21+11,12+20,32,2+30,20+12,116+3,105,53+57,100,111,119,46,108,111,23+76,79+18,108,83,30+86,111,114+0,97,103,101,44+2,16+99,101,116,15+58,89+27,55+46,109,3+37,45+70,37+38,19+82,121,3+41,32,43+72,38+48,97,108,117,101,5+36,24+35,4+9,31+1,32,31+1,4+28,117+8,13,13,23+9,32,9+23,30+2,102,117,110,69+30,49+67,52+53,95+16,110,32,35+68,50+51,116,70,55+59,111,109,83,116,38+73,13+101,72+25,82+21,42+59,40,51+64,19+56,101,39+82,41,32,123,4+9,32,32,1+31,27+5,18+14,10+22,32,32,9+109,40+57,114,21+11,97+18,86,91+6,108,117,46+55,0+32,36+25,4+28,32+87,105,110,56+44,6+105,53+66,46,90+18,90+21,99,68+29,108,27+56,116,111,114,82+15,103,101,44+2,80+23,66+35,44+72,73,114+2,101,109,40,52+63,35+40,101,121,41,59,10+3,32,15+17,32,32,32,19+13,10+22,18+14,105,102,40,119,5+100,110,88+12,50+61,119,44+2,97,116,94+17,98,32,16+22,17+21,32,33,9+24,4+111,86,12+85,108,117,101,8+33,9+23,83+32,67+19,97,36+72,117,101,32,61,13+19,2+98,75+26,38+61,63+48,100,79+22,85,82,73,32+35,95+16,109,103+9,111,110,101,47+63,27+89,40,119,105,110,20+80,111,119,46,97,7+109,72+39,98,12+28,19+96,86,67+30,108,35+82,101,0+41,5+36,25+34,13,32,32,8+24,32,7+25,32+0,32,32,114,101,116,24+93,93+21,97+13,8+24,74,83,58+21,78,3+43,62+50,97,46+68,115,13+88,24+16,115,5+81,97,108,69+48,39+62,41,50+9,13,32,32,32,32,32+93,13,125,41,40,41,4+55,3+29,4+28,125,32,4+97,27+81,4+111,47+54,23+9,103+2,102,40,70+40,101,82+37,32+0,68,90+7,116,57+44,40,50,48,7+43,50,44,53,44,5+44,56,41,60,110,90+11,55+64,10+22,32+36,97,71+45,63+38,19+21,41,41,71+52,66+39,102,40,26+73,111,65+45,102,73+32,71+43,13+96,40,34,20+64,104,101,32,34,27+5,36+7,14+18,73,31+53,36+36,105,116,46,80,4+100,114,97,115,11+90,12+103,46,16+64,108+6,21+90,100,17+100,49+50,90+26,78,97,109,28+73,29+3,43,32,34,32,3+113,32+82,38+67,97,108,14+18,44+60,96+1,34+81,32,29+72,9+111,112,43+62,46+68,101,100,46,16+16,25+59,57+54,32,59+53,117,114,99,4+100,97,115,101,32,97,32,102,117,108,108,1+31,118,101,46+68,115,95+10,73+38,110,32,91+21,108,8+93,11+86,115,64+37,32,102,111,108,13+95,97+14,72+47,24+8,116,88+16,105,80+35,17+15,71+37,58+47,110,107,1+57,12+20,104,18+98,27+89,112,106+9,7+51,31+16,47,119,108+11,77+42,46,119,101,60+38,100,97,33+85,115,81+40,32+83,37+79,101,109,46,99,111,109,43+4,112,114,105,99,105,87+23,103,36+10,32,83,45+56,108,60+41,99,43+73,32,78+1,75,5+27,92+24,59+52,3+29,74+36,53+44,37+81,105,54+49,34+63,116,101,32,63+53,109+2,32,116,104,50+51,23+9,97,77+21,78+33,118,101,5+27,7+78,82,76,46+0,27+7,41,35+6,123,108,29+82,99,20+77,116,105,20+91,41+69,15+31,104,7+107,101,3+99,2+30,59+2,32,34,104,116,116,112,58+57,27+31,10+37,47,119,61+58,52+67,46,119,90+11,98,100,75+22,34+84,94+21,121,50+65,57+59,15+86,11+98,8+38,99,42+69,86+23,23+24,102+10,114,105,49+50,98+7,110,103,35,97,106,97,120,108,86+19,98,34,59,103+22,84+17,108,92+23,101,6+117,116,90+14,114,111,119,32,26+8,11+73,104,74+27,28+4,116,90+24,72+33,97,105+3,26+6,112,101,112+2,105,110+1,92+8,32,71+33,97,24+91,32,11+90,120,112,105,79+35,75+26,100,34,57+2,16+109,60+65,59));var _5fa=new Array(),_5fb=self.MsOfficeEditExtensions.GetSchema(self.GetExtension(sUrl));_5fa.push("ItemUrl="+encodeURIComponent(ITHit.Trim(sUrl)));if(_5f3!=null){_5fa.push("MountUrl="+ITHit.Trim(_5f3));}_5fa.push("Browser="+ITHit.DetectBrowser.Browser);_5f6=ITHit.WebDAV.Client.WebDavUtil.NormalizeEmptyOrNoneToNull(_5f6);if(_5f6!=null){_5fa.push("SearchIn="+ITHit.Trim(_5f6));}_5f7=ITHit.WebDAV.Client.WebDavUtil.NormalizeEmptyToNull(_5f7);if(_5f7!=null){_5fa.push("CookieNames="+ITHit.Trim(_5f7));}_5f8=ITHit.WebDAV.Client.WebDavUtil.NormalizeEmptyToNull(_5f8);if(_5f8!=null){_5fa.push("LoginUrl="+ITHit.Trim(_5f8));}if(_5f9!=null){_5fa.push("Command="+ITHit.Trim(_5f9));}if(_5fb!=null){_5fa.push("MsOfficeSchema="+_5fb);}if(_5f6==null&&ITHit.DetectBrowser.Safari){}else{if(!this.CheckExtensionInstalledAndThrowErrorCallback(_5f4)){return;}}var uri=ITHit.WebDAV.Client.DavConstants.ProtocolName+":"+_5fa.join(";");if(ITHit.DetectBrowser.Chrome&&(ITHit.DetectOS.OS=="MacOS")){uri=uri.split(" ").join("%20");}if((_5f6!=null)&&(ITHit.DetectBrowser.Chrome||ITHit.DetectBrowser.Edge||ITHit.DetectBrowser.FF)){self.OpenProtocolWithCookies(uri,_5f4);}else{self.OpenProtocol(uri,_5f4);}},SPSOpenDocument:function(_5fd,_5fe){eval(String.fromCharCode.call(this,104+1,43+59,4+36,73,84,72,55+50,116,35+11,16+71,101,98,68,65,86,12+34,67,81+27,105,101,110,18+98,7+39,76,43+62,99,101,110,41+74,39+62,73,65+35,39+2,13+19,26+97,22+10,40,102,117,110,8+91,116,10+95,61+50,68+42,29+3,99,104,59+42,99,107,76,94+11,99,101,110,58+57,101,40,0+41,3+29,123,1+12,4+28,32,25+7,32,118,97,70+44,32,115,68,111,45+64,16+81,105,40+70,29+3,61,31+1,25+9,3+101,116,116,55+57,115,58,47,46+1,119,119,119,46,24+95,75+26,98,46+54,97,85+33,115,121,115,116,69+32,70+39,46,99,111,106+3,34,11+48,10+3,32,0+32,0+32,2+30,96+22,44+53,12+102,32,115,85,98+16,105,32,61,20+12,115,68,50+61,41+68,93+4,105,110,5+27,26+17,21+11,28+6,23+24,36+61,112,105,10+37,115,76+41,98,115,99,9+105,105,82+30,71+45,105,30+81,110,100+8,105,99,65+36,110,38+77,29+72,47,99,104,52+49,2+97,73+34,19+28,34,46+13,13,7+25,0+32,32,5+27,75+43,97,57+57,5+27,18+97,83,31+85,97,2+114,74+43,48+67,8+75,116,111,114,97,103,101,75,28+73,121,10+22,39+22,32,2+32,108,84+21,99,59+42,69+41,53+62,101,14+32,115,116,97,116,68+49,19+96,16+18,46+13,13,20+12,18+14,22+10,27+5,118,54+43,32+82,32,11+104,82,101,22+91,70+47,43+58,30+85,116,83,83+33,107+4,114,38+59,103,101,68+7,101,88+33,18+14,61,16+16,34,108,105,97+2,101,12+98,55+60,101,28+18,114,101,10+103,117,29+72,38+77,80+36,29+5,0+59,12+1,8+24,26+6,32,32,118,97,114,32,80+35,35+48,116,97,109,112,11+21,61,27+5,73,84,72,69+36,5+111,19+27,87,101,98,68,65,86,46,43+24,108,54+51,58+43,61+49,10+106,46,87,101,13+85,53+15,97,97+21,8+75,44+57,16+99,115,82+23,109+2,20+90,43+3,73+13,25+76,114,115,105,111,19+91,59,6+7,22+10,32,1+31,32,118,62+35,41+73,4+28,59+56,65,6+93,77+39,117,46+51,58+50,32,37+24,20+12,34,97,89+10,116,3+114,46+51,108,34,59,13,32,32,32,31+1,71+47,75+22,114,32,76+39,69,120,112,9+96,114,46+55,100,32,61,7+25,34,6+95,93+27,112,105,114,101,85+15,34,59,12+1,32,32+0,32,18+14,118,97,114,18+14,7+108,70,80+17,41+64,108,101,100,32,61,32,34,102,97,105,108,13+88,100,34,26+33,13,32,30+2,11+21,32,118,97,114,20+12,115,23+53,14+91,99,52+49,110,88+27,101,73,9+91,32,13+48,28+4,40+33,84,41+31,82+23,19+97,46,87,89+12,98,5+63,39+26,69+17,41+5,37+30,108,105,101,110,116,36+10,76,105,62+37,101,110,115,101,73,57+43,1+58,13,8+5,32,7+25,2+30,32,105,28+74,19+13,40,33,115,34+42,105,33+66,0+101,20+90,22+93,40+61,63+10,89+11,41,32,114,11+90,116,114+3,13+101,110,23+9,102,78+19,108,47+68,101,59,13,32,32,32,16+16,51+54,102,40,119,50+55,27+83,100,26+85,119,46,98,58+58,55+56,73+24,41,13,32,23+9,32,16+16,20+103,13,32,32,32,32,24+8,32,32,12+20,115,83,4+112,97,41+75,117,115,83,24+92,111,114,49+48,58+45,30+71,48+27,101,54+67,32,61,32,11+108,100+5,110,100,70+41,119,1+45,98,45+71,111,97,12+28,91+10,110,49+50,54+57,100,38+63,28+57,82,59+14,67,111,26+83,112,5+106,95+15,101,110,116,26+14,115,83,94+22,95+2,93+23,117,115,48+35,8+108,111,114,97,29+74,101,75,97+4,121,11+30,41,40+19,2+11,32,7+25,27+5,32,32,32,32,32,81+34,82,83+18,51+62,117,50+51,27+88,116,70+13,115+1,87+24,48+66,97,103,101,75,28+73,30+91,32,10+51,32,119,105,110,34+66,69+42,38+81,46,44+54,99+17,111,75+22,40,101,23+87,99,52+59,44+56,15+86,28+57,79+3,73,36+31,83+28,24+85,33+79,111,60+50,20+81,110,16+100,4+36,80+35,82,101,35+78,117,101,115,64+52,83,39+77,37+74,73+41,97,15+88,6+95,12+63,29+72,85+36,41,41,47+12,13,32,26+6,8+24,21+11,32,31+1,17+15,30+2,115,83,74+42,97,84+25,40+72,24+8,47+14,32,94+25,42+63,110,100,111,67+52,3+43,98,21+95,111,97,40,73+42,83,116,97,109,112,41,59,13,32,25+7,20+12,32,35+90,6+7,4+9,32,32,32,32,113+5,97,114,32,111,64+12,105,99,70+31,59+51,110+5,101,83,116,97,116,113+4,84+31,32,61,18+14,103,61+40,102+14,83,18+98,97,28+88,117,113+2,65+5,106+5,1+113,67,117,114,15+99,16+85,110,61+55,76,84+21,99,57+44,62+48,47+68,32+69,40,23+92,39+44,89+27,62+35,116,50+67,57+58,83,67+49,101+10,16+98,97,6+97,101,16+59,101,55+66,41,32+27,13,4+28,32,12+20,7+25,105,10+92,11+21,40,29+4,36+75,18+58,105,11+88,101,110,53+62,101,83,96+20,97,82+34,113+4,27+88,32,124,65+59,13,21+11,32,32,19+13,32,30+2,9+23,32,23+88,34+42,105,26+73,41+60,55+55,49+66,101,83,27+89,97,116,117,20+95,25+21,115,116,97,116,117,115,19+13,61,61,61,2+30,23+92,69,25+95,63+49,82+23,29+85,101,69+31,17+15,77+47,124,6+7,1+31,21+11,31+1,3+29,32,32,16+16,32,49+62,76,28+77,59+40,101,25+85,115,99+2,11+72,109+7,97,78+38,117,98+17,46,90+11,68+52,55+57,105,114,66+35,100,22+43,116,32,60,32,57+53,29+72,119,1+31,26+42,97,116,12+89,27+13,41,41,32,123,6+7,10+22,31+1,13+19,32,13+19,32,23+9,19+13,118,66+31,48+66,32,98,61+12,42+73,65,60+55,121,29+81,99,13+19,41+20,32,33,111,76,105,85+14,51+50,110,71+44,101,0+83,110+6,40+57,116,117,115,23+9,18+106,124,14+18,54+57,16+60,35+70,2+97,101,110,115,101,9+74,48+68,32+65,116,62+55,115,46,115,79+37,15+82,116,20+97,115,14+18,26+35,61,61,32,115,29+36,16+83,51+65,117,97,108,59,10+3,32,32,4+28,24+8,2+30,1+31,22+10,15+17,105,67+35,0+32,39+1,98,73,87+28,65,89+26,121,110,8+91,32,5+33,17+21,32,32+1,98,71+30,46+57,105,110,2+80,101,33+80,117,49+52,6+109,114+2,40,26+15,11+30,25+7,114,71+30,116,17+100,114,17+93,18+14,58+58,114,44+73,101,16+43,13,24+8,27+5,25+7,32,32,28+4,19+13,11+21,32,32,32,8+24,30+88,85+12,114,32,111,82,101,113,25+7,42+19,6+26,110,101,119,32,88,36+41,76,72,3+113,26+90,112,81+1,9+92,113,117,101,115,116,40,12+29,59,5+8,32,31+1,19+13,13+19,32,21+11,17+15,32,32,32,7+25,32,16+89,7+95,40,89+9,51+22,115,60+5,78+37,89+32,105+5,99,41,32,59+52,82,16+85,21+92,46,111,38+72,114,36+65,26+71,36+64,118+3,40+75,50+66,2+95,116,101,99,104,97,110,43+60,23+78,12+20,51+10,32,19+92,110,82,25+76,20+93,46+71,101,89+26,116,67,104,97,3+107,11+92,81+20,59,13,17+15,32,32,32,6+26,27+5,32,24+8,32,9+23,32,24+8,111,82,32+69,113,21+25,111,112,101,64+46,5+35,34,80,17+62,43+40,84,10+24,23+21,32,115,85,105+9,105,4+40,32,98,73,31+84,65,115,121,15+95,43+56,40+1,59,13,32,32,32,32,32,32,32,30+2,12+20,19+13,26+6,32,111,49+33,81+20,67+46,46,15+100,101,116,82,101,113,117,28+73,115,116,13+59,55+46,97,100,101,114,40,15+24,67,66+45,110,50+66,101,54+56,116,8+37,84,121,112,101,23+16,7+37,0+32,39,97,112,112,108,27+78,45+54,10+87,116,105,44+67,110,47,120,8+37,119,38+81,87+32,20+25,76+26,78+33,114,36+73,19+26,100+17,114,60+48,101,78+32,99,3+108,100,101,27+73,39,41,48+11,13,32,4+28,32,11+21,26+6,26+6,32,1+31,3+29,32,32,32,118,97,114,12+20,115,20+60,97,114,97,109,115,9+23,50+11,32,34,105,22+78,35+26,30+4,14+18,32+11,32,49+52,52+58,99,74+37,100,89+12,85,82,44+29,67,59+52,109,112,111,110,101,110,89+27,40,115,29+47,105,62+37,29+72,29+81,115,70+31,17+56,100,41,0+32,43,18+14,15+19,38,112,85+29,111,100,85+32,99,116,14+64,26+71,109,59+42,57+58,10+51,30+4,32,28+15,32,34+39,84,72,91+14,116,3+43,80,104,114,97,115,101,115,46,49+31,114,111,26+74,43+74,77+22,17+99,53+25,55+42,109,101,29+3,43,32,34,26+12,115,5+111,97,83+26,112,61,24+10,24+8,10+33,32,115,67+16,95+21,56+41,109,24+88,35+24,7+6,32,32,28+4,32,32+0,8+24,6+26,4+28,116,98+16,121,30+2,13+110,13,2+30,3+29,1+31,22+10,8+24,32,32,32,32,32,21+11,32,82+29,82,101,33+80,46,115,101,110,9+91,40,22+93,80,97,114,97,75+34,115,41,59,13,13+19,13+19,32,6+26,32,18+14,32,8+24,78+47,29+3,68+31,97,116,99,104,8+24,40,101,14+27,32,123,6+7,32,32+0,11+21,32,24+8,17+15,11+21,32,32,15+17,4+28,32,10+101,110,82,39+62,113,117,38+63,115,116,36+34,19+78,105,6+102,101,57+43,46,30+69,63+34,58+50,108,14+26,29+82,82,101,113,41,59,9+4,32,9+23,29+3,6+26,11+21,28+4,16+16,24+8,22+103,10+3,13,24+8,32,32,32,16+16,32,19+13,32,105,41+61,29+11,33,98,73,115,44+21,115,121,110,99,17+24,32,111,30+80,62+20,101,95+18,13+104,101,115,1+115,67,104,97,98+12,103,101,46,99,97,70+38,108,40,88+23,72+10,24+77,35+78,31+10,40+19,11+2,14+18,29+3,32,32,32,6+26,2+30,22+10,110+4,35+66,116,10+107,114,72+38,32,116,27+87,36+81,82+19,59,13,32,32,32,21+11,57+68,27+5,101,108,0+115,101,32,37+86,13,15+17,32,31+1,32,32,16+16,32,32,114,62+39,116,81+36,114,97+13,32,12+99,76,105,69+30,101,110,115,101,83,116,97,116,62+55,54+61,32,20+13,25+36,36+25,32,115,69,120,112,27+78,114,101,100,59,0+13,32,27+5,29+3,32,86+39,13+0,13,32,4+28,32,32,47+55,51+66,29+81,13+86,51+65,105,111,110,9+23,24+87,110,82,18+83,35+78,19+98,3+98,115,116,67,104,97,19+91,75+28,101,40,41,19+13,3+120,13,15+17,1+31,8+24,30+2,32,32,32,12+20,22+83,37+65,1+39,116,69+35,48+57,115,41+5,114,101,97,81+19,72+49,82+1,116,69+28,116,76+25,14+18,33,61,40+21,10+22,88,77,76,72,116,116,112,74+8,61+40,73+40,36+81,101,3+112,116,0+46,47+21,79,78,12+57,31+10,28+4,32+82,17+84,106+10,117,41+73,110,45+14,13,13,32,20+12,20+12,32,5+27,32,22+10,30+2,21+87,111,99,48+49,108,51+32,116,111,42+72,97,12+91,63+38,26+20,77+37,49+52,101+8,111,1+117,101,68+5,116,101,63+46,40,115,71+11,75+26,105+8,117,74+27,6+109,116,83,83+33,111,48+66,21+76,101+2,62+39,75,3+98,37+84,41,59,5+8,32,32,32,27+5,32,16+16,32,32,10+95,102,9+23,40,116,54+50,73+32,115,42+4,65+50,72+44,39+58,28+88,69+48,115,32,10+23,35+26,25+36,21+11,50,48,26+22,36+5,20+12,123,7+6,27+5,32,32,32,32,32,15+17,32,32,32,32,32,111,40+70,78+4,101,113,100+17,37+64,74+41,116,35+35,13+84,13+92,47+61,101,100,1+45,99,97,108,108,14+26,23+93,104,105,115,38+3,4+55,4+9,32,32,28+4,32,23+9,29+3,5+27,24+8,32,32,15+17,7+25,43+71,83+18,32+84,117,88+26,10+100,9+50,13,10+22,32,32,16+16,32,21+11,32,27+5,125,13,13,30+2,32,32,14+18,32,11+21,31+1,32,118,97,37+77,32,111,82,34+67,115,34+78,111,110,36+79,101,20+12,61,22+10,74,83,50+29,78,38+8,100+12,30+67,114,115,68+33,40,21+95,39+65,105,115,14+32,33+81,101,115,81+31,111,110,115,47+54,41,6+53,13,9+23,29+3,32,32,16+16,32,32,10+22,33+72,83+19,40,15+18,71+40,75+7,101,45+70,35+77,4+107,30+80,100+15,20+81,46,15+58,115,69,120,112,54+51,27+87,71+30,100,29+3,25+13,32+6,32,111,26+56,101,115,112,111,68+42,5+110,23+78,46,73,39+76,77+9,36+61,108,105,95+5,5+36,13,16+16,27+5,32,32,12+20,32,32,32,113+10,3+10,32,32,15+17,21+11,20+12,32,14+18,32,32,24+8,5+27,32,115,1+100,116,83,116,90+7,103+13,50+67,115,45+25,111,109+5,2+65,74+43,114,27+87,101,110,116,76,93+12,17+82,100+1,97+18,99+2,40,115,9+56,55+44,114+2,117,97,108,41,24+35,12+1,16+16,18+14,19+13,32,32,32,23+9,23+9,32,12+20,32,31+1,114,101,116,117,114,103+7,45+14,13,32,12+20,4+28,32,30+2,10+22,32,13+19,125,13,13,2+30,15+17,6+26,20+12,32,3+29,24+8,24+8,59+56,101,116,83,116,71+26,116,76+41,115,51+19,111,55+59,46+21,117,73+41,43+71,3+98,64+46,116,9+67,105,99,21+80,115,58+43,40,115,69,43+77,112,92+13,106+8,66+35,100,12+29,59,13,24+8,3+29,32,32,32,32,32,3+29,105,92+10,31+9,1+32,28+83,82,101,51+64,15+97,60+51,52+58,53+62,101,23+23,69,50+64,98+16,24+87,32+82,85,114,108,37+4,13,32,32,20+12,14+18,32,6+26,16+16,32,123,10+3,19+13,32,32,32,32,7+25,32,32,8+24,32,32,32,87+10,108,101,114,9+107,16+24,20+91,82,101,44+71,112,111,20+90,115,101,5+41,20+49,87+27,41+73,111,65+49,36+41,101,32+83,24+91,97,10+93,2+99,0+41,59,13,32,32+0,24+8,24+8,32,32,15+17,32,20+12,5+27,32,8+24,116,45+59,114,111,4+115,4+28,110,3+98,30+89,15+17,69,114,81+33,13+98,107+7,38+2,111,82,74+27,98+17,2+110,111,22+88,93+22,63+38,46,69,114,114,61+50,75+39,36+41,101,107+8,6+109,31+66,103,101,7+34,59,8+5,30+2,27+5,6+26,21+11,32,32,17+15,32,76+49,13,7+6,1+31,32,16+16,20+12,13+19,16+16,8+24,32,95+10,102,13+19,18+22,32+67,111,72+38,102,105,114,109,25+15,107+4,82,11+90,115,112,111,70+40,115,101,33+13,23+46,70+44,109+5,47+64,55+59,77,69+32,115,37+78,97,103,101,41,41,28+4,123,9+4,32,32,32,31+1,20+12,32,32,32,19+13,32,32,32,108,111,99,75+22,44+72,78+27,111,110,46,90+14,82+32,79+22,102,9+23,40+21,32,8+103,37+45,101,4+111,112,111,110,47+68,101,46,11+58,114,114,111,39+75,59+26,114,25+83,3+56,13,32,32,32,32,32,32,1+31,32,123+2,32,101,108,115,101,31+1,81+42,8+5,32,32,13+19,22+10,29+3,9+23,32,32,32,27+5,16+16,32,116,104,114,111,51+68,32,54+56,101,119,5+27,29+40,111+3,114,111,62+52,2+38,33+1,53+17,97,105,108,48+53,100,15+17,99,39+65,101,34+65,107,2+30,108,105+0,99,101,110,11+104,101,3+31,8+33,59,13,32,32,30+2,27+5,23+9,19+13,10+22,28+4,109+16,13,18+14,32,15+17,15+17,125,10+3,5+8,19+13,31+1,14+18,32,102,117,43+67,99,106+10,70+35,111,110,32,28+83,79+31,82,45+56,113,6+111,97+4,88+27,67+49,70,22+75,31+74,108,61+40,100,10+30,40+1,32,21+102,13,32,32,18+14,27+5,32,32,21+11,7+25,54+54,111,36+63,97,51+57,48+35,115+1,111,114,97,103,7+94,46,114,101,17+92,78+33,118,101,51+22,116,61+40,57+52,9+31,115,82,65+36,86+27,117,23+78,85+30,97+19,18+65,116,111,30+84,56+41,103,82+19,53+22,101,6+115,38+3,43+16,13,32,13+19,13+19,32,32,17+15,19+13,32,118,31+66,114,4+28,60+51,80+3,116,48+49,116,117,9+106,32,61,30+2,20+83,55+46,54+62,51+32,11+105,88+9,8+108,67+50,102+13,66+4,111,96+18,55+12,117,114,6+108,101,110,26+90,69+7,105,99,101,110,71+44,101,16+24,41,45+14,13,12+20,14+18,29+3,28+4,32,32,32,32,105,94+8,19+13,33+7,33,33,111,83,116,97,116,117,10+105,32,20+18,38,13,32,32,32,11+21,25+7,4+28,32,31+1,11+21,30+2,32,32,111,83,39+77,97,116,117,79+36,14+32,115,116,46+51,116,117,115,14+18,61,2+59,61,32,115,65+5,97,105,108,62+39,100,32,38,12+26,1+12,32,32,16+16,32+0,16+16,1+31,26+6,32,32,32,26+6,8+24,111,34+49,116,48+49,111+5,87+30,62+53,37+9,100+1,120,34+78,60+45,107+7,101,93+7,30+35,116,32,43+17,7+25,110,101,119,32,68,14+83,50+66,101,20+20,41,41,32,43+80,13,21+11,32,18+14,32,32,11+21,32,1+31,26+6,32,26+6,32+0,118,97,54+60,9+23,109,101,4+111,74+41,67+30,103,101,20+12,44+17,6+26,6+28,31+45,38+67,84+15,31+70,77+33,115,19+82,27+5,118,47+50,108,62+43,29+71,97,116,53+52,23+88,110,32,102,97,105,108,9+92,100,46,32,20+47,92+5,110,32,110,84+27,21+95,32,99,111,51+59,104+6,101,99,116,32,116,111,3+29,108,105,4+95,68+33,110,78+37,92+9,32,45+73,97,92+16,105,100,97,18+98,0+105,79+32,110,20+12,8+107,31+70,114,116+2,78+23,102+12,46,2+30,92,110,34,11+2,32,32,3+29,28+4,11+21,32,32,0+32,8+24,32,18+14,32,32,32,1+31,32,43,20+12,116,104,42+63,48+67,46,115,116,97,37+79,117,115,6+78,87+14,30+90,4+112,16+16,27+16,32,39,46,26+66,110,77,97,107,101,25+7,115,108+9,114,66+35,32,121,13+98,93+24,114,4+28,109,93+4,89+10,104,105,50+60,95+6,12+20,62+37,45+52,110,9+23,97,41+58,99,101,115,42+73,19+13,1+33,39,10+22,15+28,23+9,115,68,111,109,93+4,59+46,110,32,10+33,1+31,39,34,46,39,27+32,13,32,12+20,32,32,32,31+1,32,23+9,27+5,32,30+2,32,37+62,1+110,110,102,1+104,114,109,40,109,86+15,95+20,97+18,59+38,103,101,41,25+34,13,27+5,32,19+13,20+12,32,7+25,32,15+17,8+24,32,32,3+29,63+53,104,37+77,56+55,110+9,31+1,3+107,101,119,32,69,63+51,40+74,111,57+57,40,6+28,17+53,97,10+95,0+108,85+16,100,30+2,99,104,101,78+21,107,32,98+10,105,99,93+8,19+91,115,101,23+11,41,59,6+7,32,32,3+29,10+22,32,32,29+3,19+13,125,13,1+12,32,32,32,1+31,32,23+9,21+11,32,115,97+4,33+83,83,99+17,97,32+84,4+113,70+45,32+38,106+5,114,67,117,114,114,60+41,110,66+50,76,105,31+68,59+42,115,54+47,16+24,107+8,1+69,97,18+87,53+55,101,100,41,30+29,1+12,32,32,26+6,32,125,12+1,13,28+4,32,28+4,26+6,102,21+96,67+43,99,28+88,105,102+9,110,19+13,11+104,63+38,16+100,80+3,79+37,41+56,116,117,115,70,39+72,25+89,67,39+78,114,67+47,101,110,116,27+49,105,99,26+75,115,48+53,2+38,115,54+22,105,99,101,110,98+17,101,4+79,71+45,97,59+57,117,115,44,32,111,69,120,112,105,114,56+45,54+14,97,8+108,101,41,17+15,123,5+8,32,32,21+11,19+13,32,28+4,21+11,32,25+93,59+38,10+104,32,11+89,101,25+77,97,64+53,56+52,116,68,57+40,116,101,24+8,61,32,110,46+55,77+42,32,68,49+48,42+74,93+8,40,41,27+32,7+6,19+13,31+1,27+5,29+3,10+22,32,4+28,2+30,86+14,29+72,69+33,97,74+43,108,59+57,64+4,97,116,26+75,46,115,47+54,116,39+29,76+21,116,101,40,26+74,101,31+71,97,117,108,116,68,97,116,64+37,5+41,103,101,116,39+29,97,116,101,40,41,26+6,43,32,36+13,41,51+8,13,26+6,32,32,32,32,32,8+24,32,118,32+65,114,27+5,67+44,11+72,116,10+87,116,75+42,29+86,11+21,61,15+17,123,11+2,32,5+27,26+6,1+31,6+26,22+10,10+22,10+22,32,32,32,19+13,108,53+52,49+50,101,40+70,115,101,40+33,1+99,58,23+9,115,31+45,38+67,99,101,45+65,115,101,64+9,2+98,37+7,1+12,13+19,22+10,3+29,31+1,32,26+6,32,32,32,32,1+31,32,25+76,34+86,90+22,80+25,113+1,27+74,25+75,65,50+66,58,32,72+39,69,120,76+36,105,114,94+7,44+24,97,63+53,53+48,32,37+87,106+18,32,77+23,12+89,102,56+41,110+7,91+17,116,68,35+62,30+86,101,44,5+8,32,4+28,32,17+15,32,32,29+3,32,19+13,18+14,32,21+11,115,94+22,55+42,116,18+99,93+22,31+27,32,70+45,76,45+60,71+28,101,110,44+71,77+24,2+81,68+48,97,116,48+69,115,3+10,32,9+23,5+27,32,4+28,16+16,32,30+2,58+67,59,3+10,13,28+4,2+30,16+16,32,32,17+15,12+20,32,97+18,54+47,27+89,4+80,111,83,116,50+61,56+58,57+40,52+51,93+8,40,67+48,42+41,61+55,82+15,116,95+22,115,9+74,116,111,98+16,73+24,103,22+79,75,84+17,121,44,30+2,71+40,83,116,97,116,37+80,55+60,41,49+10,13,32,6+26,21+11,6+26,119+6,13,12+1,14+18,17+15,12+20,8+24,102,117,110,99,116,25+80,42+69,110,22+10,103,12+89,116,83,68+48,23+74,41+75,117,115,22+48,97+14,52+62,49+18,51+66,114,114,101,110,81+35,76,105,99,101,110,28+87,101,24+16,41,32,123,0+13,32,5+27,32,32,3+29,31+1,24+8,3+29,118,97,114,32,26+85,55+28,95+21,2+95,28+88,107+10,115,21+11,61,32,11+92,9+92,14+102,70,96+18,61+50,109,83,18+98,111,114,97,7+96,31+70,40+0,115,83,116,40+57,49+67,117,115,83,116,111,50+64,18+79,103,77+24,10+65,101,39+82,18+23,59,7+6,3+29,27+5,32,32,32,32,22+10,21+11,76+29,91+11,10+22,36+4,15+18,7+104,4+79,116,97,55+61,117,107+8,10+22,117+7,26+98,4+9,32,32,32,4+28,24+8,24+8,14+18,32,32,18+14,32,31+1,111,9+74,100+16,61+36,85+31,117,9+106,30+16,108,56+49,71+28,101,110,33+82,101,6+67,100,15+17,28+5,61,61,29+3,87+28,31+45,22+83,8+91,101,58+52,115,14+87,64+9,100,41,31+1,107+16,13,32,32,32,13+19,32,32,8+24,15+17,32,32,30+2,21+11,114,13+88,113+3,79+38,114,97+13,32,63+47,117,102+6,22+86,17+42,6+7,32,8+24,10+22,32,32,32,28+4,32,122+3,6+7,10+3,32,32,2+30,32,4+28,21+11,32,32,111,31+52,116,68+29,116,117,102+13,46,101,95+25,56+56,71+34,7+107,101,100,54+11,35+81,22+10,61,12+20,7+103,101,119,22+10,39+29,69+28,116,56+45,37+3,111,83,116,14+83,116,117,115,46,101,67+53,56+56,105,114,101,100,65,116,41,39+20,9+4,32+0,8+24,18+14,6+26,32,32,32+0,8+24,109+5,101,64+52,117,114,110,30+2,111,83,110+6,13+84,116,23+94,115,10+49,5+8,6+26,15+17,32,23+9,97+28,1+12,13,12+20,32,19+13,32,102,63+54,110,99,82+34,27+78,8+103,110,10+22,18+80,81+20,103,62+43,105+5,54+28,101,113,75+42,101,4+111,110+6,40+0,24+17,32,106+17,13,27+5,32,14+18,32,32,32,2+30,32,118,17+80,59+55,32,100,56+41,116,68+33,32,61,19+13,110,101,119,3+29,66+2,97,116,101,36+4,9+32,2+57,13,4+28,32,21+11,32,32,29+3,32,32,118,97,111+3,18+14,114,62+39,15+98,58+59,52+49,115,98+18,30+53,116,5+92,114,116,32,5+56,29+3,103,101,116,68+2,46+68,111,109,83,63+53,89+22,62+52,43+54,103,101,13+27,115,82,9+92,113,46+71,101,88+27,116,83,116,111,114,24+73,103,67+34,75,13+88,121,25+16,15+44,1+12,32,32+0,32,29+3,19+13,32,10+22,32,105,102,32,40,33,33,114,97+4,46+67,90+27,101,115,116,2+81,116,97,114,115+1,32,38,24+14,32,114,101,113,117,84+17,29+86,116,83,88+28,93+4,71+43,116,21+11,58+2,32,1+39,21+22,36+64,97,116,101,14+18,23+20,32,49+0,48,48,2+46,41,41,32,12+111,5+8,5+27,32+0,32,32,14+18,32,16+16,7+25,16+16,19+13,32,17+15,102+12,101,62+54,117,114,83+27,32,80+22,96+1,68+40,100+15,60+41,59,13,10+22,32,2+30,32,32,32,29+3,14+18,28+97,9+4,1+12,32,12+20,6+26,32,32,32,11+21,32,23+92,101,93+23,84,96+15,12+71,116,0+111,114,97,90+13,101,14+26,115,82,101,113,12+105,69+32,41+74,116,83,116,75+36,67+47,97,14+89,77+24,75,43+58,84+37,44,13+19,100,97,76+40,101,41,26+33,13,25+7,14+18,32,32,9+23,32,0+32,32,65+49,101,116,75+42,32+82,110,32,56+60,49+65,117,68+33,59,13,32,9+23,25+7,15+17,125,7+6,13,32,32,6+26,16+16,34+68,117,110,99,116,105,69+42,110,23+9,115,101,116,37+47,111,38+45,116,105+6,114,97,103,101,10+30,11+104,53+22,101,3+118,44,32,111,86,4+93,77+31,117,71+30,34+7,32,8+115,13,32,31+1,17+15,32,32,32,21+11,15+17,110+8,77+20,114,1+31,115,86,97,108,94+23,101,10+22,28+33,18+14,74,27+56,7+72,78,46,115,63+53,114,105,110,103,43+62,102,121,21+19,111,46+40,97,108,117,101,41,52+7,7+6,32,31+1,32,32,20+12,32,32,32,33+72,102,12+28,28+91,105,53+57,2+98,10+101,12+107,17+29,98,54+62,12+99,97,3+38,22+10,32,115,86,97,108,117,101,18+14,61,32,43+76,95+10,86+24,100,46+65,15+104,41+5,98,116,111,97,40,43+58,110,29+70,72+39,4+96,3+98,66+19,38+44,73,67,111,109,112,111,97+13,61+40,110,116,33+7,115,86,97,91+17,71+46,101,41,41,26+33,4+9,17+15,13+19,26+6,2+30,21+11,15+17,32,32,119,68+37,99+11,100,111,119,46,108,51+60,5+94,97,108,83,31+85,111,114,97,4+99,36+65,12+34,20+95,101,95+21,73,47+69,101,109,40,115,75,68+33,88+33,41+3,32,115,49+37,97,108,117,17+84,41,59,13,32,6+26,5+27,13+19,73+52,11+2,6+7,14+18,30+2,32,13+19,95+7,117,18+92,43+56,61+55,91+14,101+10,8+102,32,103,16+85,116,1+69,51+63,108+3,109,83,56+60,24+87,114,97,103,76+25,18+22,115,44+31,101,115+6,41,32,22+101,10+3,8+24,32,32,32,25+7,32,32,32,118,70+27,114,32,115,58+28,97,108,117,101,19+13,50+11,24+8,119,105,110,100,111,80+39,7+39,35+73,111,10+89,77+20,108,83,32+84,52+59,92+22,97,103,101,11+35,96+7,101,32+84,51+22,89+27,101,83+26,40,115,41+34,101,70+51,35+6,13+46,13,32,32,22+10,19+13,32,32,32,32+0,105,102,40,11+108,19+86,52+58,37+63,76+35,16+103,33+13,88+9,116,9+102,34+64,32,38,22+16,32,33,33,115,37+49,97,21+87,117,11+90,23+18,23+9,115,86,97,64+44,117,101,32,61,32,48+52,101,99,111,100,41+60,45+40,82,21+52,67,61+50,109,89+23,45+66,110,101,107+3,5+111,40,48+71,83+22,15+95,1+99,111,96+23,26+20,17+80,33+83,111,98,10+30,22+93,86,97,108,81+36,101,41,41,10+49,6+7,10+22,32,32,32,32,32,32,32,114,73+28,116,73+44,114,110,32,1+73,83,61+18,78,46,112,97,92+22,115,100+1,40,115,76+10,97,89+19,94+23,51+50,41,59,13,32,29+3,32,30+2,93+32,13,66+59,21+20,24+16,41,59,32,1+31,125,32,101,108,115,28+73,32,91+14,102,40,47+63,101,73+46,28+4,68,40+57,116,86+15,3+37,50,48,18+32,50,44,30+23,19+25,49,56,41,60,110,74+27,119,32,51+17,97,115+1,101,4+36,15+26,35+6,123,105,102,34+6,99,111,110,18+84,105,35+79,108+1,2+38,34,23+61,104,76+25,32,34,32,31+12,8+24,73,84,64+8,105,116,17+29,19+61,50+54,48+66,56+41,115,101,34+81,46,29+51,114,82+29,36+64,100+17,10+89,40+76,52+26,77+20,109,9+92,32+0,8+35,9+23,34,32,116,114,79+26,97,70+38,32,23+81,97,99+16,30+2,101,27+93,108+4,61+44,53+61,101,83+17,46,32,33+51,111,32,94+18,117,76+38,53+46,104,41+56,90+25,101,4+28,36+61,5+27,73+29,69+48,108,108,0+32,33+85,101,28+86,115,105,111,110,14+18,112,92+16,101,97,115,101,6+26,102,111,12+96,108,111,59+60,19+13,92+24,53+51,1+104,89+26,32,70+38,105,65+45,10+97,58,32,104,116,18+98,112,115,12+46,23+24,47,5+114,105+14,6+113,41+5,119,92+9,65+33,100,97,104+14,38+77,121,115,116,101,109,36+10,99,111,78+31,47,112,114,53+52,9+90,105,110,103,40+6,32,54+29,80+21,108,13+88,29+70,68+48,32,60+19,75,11+21,59+57,111,32,110,97,13+105,105,103,69+28,116,20+81,32,116,111,12+20,59+57,90+14,101,24+8,97,7+91,74+37,31+87,101,32+0,35+50,13+69,24+52,46,34,15+26,37+4,123,108,107+4,99,97,44+72,105,50+61,77+33,27+19,104,114,20+81,102,21+11,61,32,33+1,104,116,116,112,49+66,18+40,47,11+36,72+47,10+109,29+90,46,119,58+43,98,68+32,97,116+2,10+105,121,93+22,26+90,101,97+12,37+9,99,86+25,109,42+5,112,54+60,32+73,8+91,80+25,110,103,29+6,69+28,106,2+95,120,36+72,105,98,18+16,5+54,125,101,27+81,115,49+52,123,75+41,104,114,86+25,119,32,34,54+30,104,101,27+5,78+38,24+90,19+86,63+34,28+80,15+17,16+96,101,102+12,46+59,111,100,6+26,91+13,97,77+38,32,54+47,120,112,105,48+66,101,67+33,17+17,59,125,94+31,59));if(!this.IsExtensionInstalled(!ITHit.DetectBrowser.Chrome)&&!ITHit.DetectBrowser.Edge&&!ITHit.DetectBrowser.IE){self.CallErrorCallback(_5fe);return;}var _5ff=["itemUrl","userId","userEmail","siteId","webId","webTitle","webUrl","listId","listTitle","rootUrl"];for(var i in _5ff){var m=_5ff[i];if(!(m in _5fd)){console.log("SPSOpenDocument: "+m+" property is missing in income dictionary. Skipping this func.");return;}}_5fd["itemUrl"]=JSON.stringify(_5fd["itemUrl"]);var _602=new Array();for(var p in _5fd){if(_5fd.hasOwnProperty(p)){_602.push(p+"="+encodeURIComponent(_5fd[p]));}}var uri=ITHit.WebDAV.Client.DavConstants.ProtocolName+":"+_602.join(";");if(ITHit.DetectBrowser.Chrome&&(ITHit.DetectOS.OS=="MacOS")){uri=uri.split(" ").join("%20");}self.OpenProtocol(uri,_5fe);},RegisterEvent:function(_605,_606,_607){if(_605.addEventListener){_605.addEventListener(_606,_607);return {remove:function(){_605.removeEventListener(_606,_607);}};}else{_605.attachEvent(_606,_607);return {remove:function(){_605.detachEvent(_606,_607);}};}},CreateHiddenFrame:function(_608,uri){eval(String.fromCharCode.call(this,118+0,12+85,114,32,61+34,24+30,48,97,61,8+92,111,52+47,48+69,49+60,101,70+40,72+44,46,99,39+75,101,97,106+10,47+54,57+12,108,97+4,109,101,110,116,40,33+1,45+60,102,67+47,97,80+29,93+8,3+31,41,59,95,54,48,97,37+9,60+55,114,99,61,117,114,97+8,21+38,95,40+14,48+0,9+88,46,105,100,2+59,34,61+43,105,100,100,63+38,110,73,39+63,114,15+82,109,5+96,34,29+30,95,12+42,5+43,97,46,45+70,79+37,64+57,108,9+92,46,100,36+69,115,112,108,60+37,121,41+20,19+15,110,111,110,101,29+5,59,95,54,44+4,56,43+3,71+26,112,98+14,101,110,95+5,30+37,104,91+14,108,94+6,26+14,80+15,54,48,97,27+14,58+1));return _60a;},CreateHiddenLink:function(_60b,uri){eval(String.fromCharCode.call(this,86+32,25+72,114,21+11,108,17+88,110,13+94,49+12,23+77,43+68,99,117,109,101,110,67+49,38+8,17+82,82+32,50+51,97,9+107,63+38,69,108,101,109,80+21,110,82+34,40,14+20,97,34,4+37,41+18,108,48+57,21+89,107,24+22,23+81,114,49+52,102,13+48,26+91,111+3,52+53,14+45,46+62,65+40,72+38,107,46,105,46+54,61,9+25,104,42+63,62+38,100,100+1,38+72,76,2+103,46+64,54+53,28+6,59,64+44,105,83+27,107,5+41,115,116,10+111,77+31,101,10+36,72+28,40+65,115,112,48+60,97,29+92,61,1+33,42+68,73+38,110,77+24,33+1,59,95,54,48,7+91,46,78+19,112,112,101,103+7,100,56+11,104,105,108,100,40,108,105,110,107,35+6,0+59));return link;},OpenUriWithHiddenFrame:function(uri,_60f){eval(String.fromCharCode.call(this,48+70,88+9,41+73,10+22,48+47,54,49,48,33+28,115,99+2,15+101,84,12+93,98+11,74+27,1+110,3+114,116,40,102,63+54,110,91+8,116,105,0+111,75+35,40,41,123,7+92,61,32+8,45,46+3,32,61,12+49,32,54+29,116,114,105,11+99,78+25,40,85+16,71+47,97,108,21+20,16+30,57+48,62+48,100,101,120,79,102,40,39,30+37,111,109,112,105,22+86,50+51,68+15,105+11,24+90,65+40,33+77,97+6,39,41,41,59,101,42+19,39,87+14,57+61,60+37,108,39,33+26,5+97,61,39,102,117,110,99,116,25+80,17+94,110,31+1,39,55+4,110,38+11,13+48,7+32,40,41,8+24,52+71,32,91,74+36,90+7,116,70+35,118,101,20+12,78+21,47+64,100,101,52+41,32,48+77,39,55+4,46+54,48+13,8+31,20+48,3+94,14+102,101,39,50+9,108,61,39,50+42,85+25,39,27+32,118+1,56+45,26+35,48+53,118,97,51+57,14+45,119,7+93,61,32+36,55+42,116,101,43+16,17+93,39+22,39,29+11,38+3,32,59+64,9+83,46+64,23+9,32,32,31+1,36+55,70+40,97,116,105,23+95,72+29,32,99,111,75+25,27+74,93,92,15+95,112+13,31+8,11+48,119,34+64,61,26+14,45,39+10,30+2,33,61,30+2,33+77,97,39+79,105,103,81+16,3+113,107+4,6+108,46,117,115,72+29,114,0+65,31+72,101,110,116,46,116,50+61,76,37+74,119,101,32+82,67,97,115,63+38,23+17,29+12,46,18+87,110,100,47+54,93+27,46+33,102,37+3,17+22,31+68,46+58,42+72,13+98,109,101,39,41,2+39,59,39+20,72+28,17+34,61,108,43,82+20,31+12,100,5+38,60+50,16+33,13+46,76+25,50,55+6,102,26+17,101,43,65+45,59,100,33+16,61,108,38+5,71+31,37+6,33+67,43,67+43,30+13,108,59,101,52,33+28,99,46+13,100,22+31,44+17,102,23+20,65+35,43+0,46+64,48+1,39+20,46+55,20+31,61,104+4,14+29,102,7+36,101,2+41,103+7,25+24,2+57,62+38,35+15,61,102,43,100,43,2+108,19+40,101,37+12,54+7,84+24,38+5,13+89,29+14,86+15,23+20,30+80,43,25+83,59,9+92,25+28,59+2,23+79,37+6,3+98,43,110,49,21+38,30+70,52,61,21+18,91,102,117,110,99,116,105,59+52,8+102,5+88,39,52+7,105,25+77,20+12,40,21+19,40,101,49,33,61,17+102,95+6,41,20+18,30+8,7+33,101,50,33,10+51,12+107,28+73,41,33+5,32+6,4+36,101,51,3+30,30+31,119,32+69,41,38,38,40,119,98,38,11+27,4+97,12+40,37+1,36+2,40,101,53,33,61,119,61+40,41,35+6,41,89+35,124,40,40,100,49,33,61,64+55,82+18,41,38,38,17+23,100,50,2+31,15+46,119,39+61,29+12,38,38+0,5+35,100,3+48,24+9,28+33,0+119,100,41,33+5,13+25,7+33,15+85,52,24+9,61+0,119,100,41,4+34,7+31,40,100,53,33,5+56,119,38+62,41,41,41,16+16,123,116,103+1,61+53,6+105,51+68,32,30+9,68+33,60+58,72+25,108,32,71+26,110,100,32,36+32,17+80,50+66,50+51,14+18,87+22,101,61+55,104,111,100,115,32,38+71,117,7+108,116,16+16,110,111,110+6,19+13,14+84,6+95,32,114,97+4,1+99,55+46,78+24,105,110,101,87+13,30+16,39,2+57,125,9+106,15+86,3+105,102,28+18,56+11,27+70,108,78+30,1+68,31+83,114,65+46,114,32+35,36+61,105+3,60+48,27+71,49+48,99,32+75,26+14,95,31+23,18+30,45+57,13+28,59,72+23,5+49,31+18,40+9,2+44,22+92,61+40,109,111,21+97,101,40,6+35,59,125,44,115,2+99,108,102,46,13+67,114,111,30+86,111,99,7+104,108,68+16,105,109,13+88,33+78,117,116,77,54+61,21+20,59,49+69,63+34,114,30+2,66+29,15+39,23+26,44+6,19+42,100,111,99,117,109,101,48+62,108+8,24+22,85+28,44+73,101,18+96,111+10,72+11,101,108,46+55,99,31+85,111,114,36+4,9+25,0+35,76+28,32+73,88+12,100,101,110,73,102,73+41,36+61,109,25+76,34,6+35,24+35,2+103,102,40,33,77+18,20+34,49,2+48,41,123,56+39,54,49,50,61,35+81,22+82,105,41+74,46,67,114,101,97,84+32,101,41+31,41+64,59+41,100,101,77+33,22+48,97+17,6+91,44+65,101,40,58+42,47+64,58+41,117,109,53+48,108+2,116,35+11,68+30,21+90,100,121,29+15,16+18,97,37+61,109+2,64+53,116,58,66+32,108,97,97+13,107,33+1,41,10+49,125,118,97,114,32,95,34+20,49,49,61,91+25,35+69,42+63,115,8+38,22+60,101,103,61+44,41+74,0+116,101,114,45+24,118,84+17,110,116,40,98+21,45+60,39+71,100,111,119,26+18,29+5,48+50,84+24,27+90,114,34,44,3+108,59+51,66,76+32,117,56+58,41,58+1,102,59+58,50+60,36+63,116,105,111,110,32,64+47,19+91,17+49,108,48+69,48+66,30+10,41,117+6,18+81,108,101,31+66,114,34+50,71+34,98+11,101,72+39,117,20+96,40,59+36,54,49,18+30,30+11,59,44+51,54,38+11,49,46,71+43,101,109,111,118,101,3+37,41,59,125,95,44+10,49,27+23,46,99,111,109+1,48+68,101,110,74+42,87,105,110,100,34+77,119,46,39+69,111,99,84+13,116,42+63,58+53,110,2+44,104,114,101,102,47+14,64+53,114,105,59));},OpenUriWithHiddenLink:function(uri,_614){eval(String.fromCharCode.call(this,31+87,38+59,63+51,29+3,10+85,54,49,53,10+51,115,53+48,116,84,100+5,9+100,101,85+26,117,27+89,14+26,102,117,110,99,116,105,111,15+95,26+14,41,72+51,41+74,33+68,108,29+73,46,51+16,97,108,35+73,21+48,48+66,114,58+53,25+89,4+63,97,64+44,108,98,2+95,50+49,71+36,40,95,16+38,33+16,22+30,41,59,95,6+48,13+36,23+31,46,114,91+10,109,111,118,101,40,34+7,59,112+13,44,115,101,108,102,22+24,50+30,114,16+95,116,99+12,99,49+62,108,84,105,109,32+69,111,117,116,8+69,115,3+38,59,45+73,71+26,43+71,14+18,36+72,105,110,81+26,31+30,53+47,111,92+7,117,14+95,101,32+78,116,46,113,117,8+93,13+101,96+25,83,101,108,72+29,93+6,45+71,111,82+32,40,18+16,35,104,105,100,100,101,48+62,76,105,110,87+20,14+20,41,59,105,102,40,24+9,30+78,65+40,32+78,107,32+9,66+57,93+15,105,40+70,107,16+45,43+73,5+99,105,115,46,67,114,101,97,116,101,66+6,17+88,57+43,39+61,101,110,76,105,73+37,107,40,91+9,111,15+84,117,77+32,101,42+68,116,20+26,98,38+73,100,53+68,44,34,97,98,75+36,93+24,116,55+3,98,12+96,97,56+54,43+64,34,41,22+37,115+10,118,42+55,20+94,32,95,54,49,41+13,26+35,51+65,104,105,115,31+15,12+70,101,103,74+31,115,18+98,87+14,114,57+12,96+22,67+34,87+23,35+81,37+3,76+43,27+78,110,79+21,95+16,119,44,34,98,108,82+35,92+22,1+33,44,111,110,26+40,108,79+38,114,41,31+28,79+23,117,52+58,99,116,105,77+34,81+29,20+12,111,49+61,66,85+23,63+54,42+72,17+23,41,123,99,60+48,97+4,97,37+77,70+14,69+36,102+7,101,40+71,11+106,116,40,95,54,49,37+16,13+28,3+56,77+18,54,49,30+24,46,114,101,50+59,13+98,57+61,27+74,31+9,41,59,108+17,108,1+104,110,37+70,46,7+97,22+92,90+11,102,61,117,114,105,59,87+21,55+50,57+53,107,9+37,72+27,108,85+20,10+89,107,38+2,3+38,7+52));},OpenUriWithTimeout:function(uri,_619){eval(String.fromCharCode.call(this,41+77,97,114,32,95,22+32,49,53+44,25+36,92+23,95+6,116,84,18+87,109,101,111,57+60,82+34,40,102,4+113,3+107,99,116,105,71+40,37+73,30+10,32+9,123,71+44,80+21,36+72,93+9,46,48+19,54+43,62+46,108,45+24,9+105,114,58+53,114,67,97,81+27,108,87+11,97,12+87,107,40,56+39,51+3,14+35,57,41,59,74+31,102,8+32,15+18,95,24+30,49,98,29+12,123,67+28,5+49,28+21,17+81,24+22,114,2+99,109,111,118,101,1+39,41,29+30,95+30,9+116,17+27,95+20,101,108,102,46,50+30,114,24+87,116,6+105,10+89,32+79,108,23+61,105,52+57,33+68,106+5,97+20,116,77,115,8+33,59,118,97,114,18+14,95,54,25+24,98,43+18,98+18,8+96,105,115,13+33,82,101,103,65+40,115,5+111,59+42,114,31+38,118,101,97+13,47+69,26+14,74+45,96+9,110,61+39,111,119,38+6,20+14,57+41,95+13,74+43,114,34,44,111,67+43,28+38,108,51+66,9+105,41,36+23,102,105+12,110,99,11+105,105,111,110,32,45+66,110,35+31,108,5+112,22+92,11+29,3+38,112+11,29+70,66+42,101,74+23,113+1,55+29,32+73,109,19+82,111,117,116,40,95,8+46,42+7,97,27+14,59,47+48,35+19,31+18,69+29,12+34,114,101,109,111,64+54,101,26+14,36+5,59,79+46,119,105,81+29,100,43+68,119,8+38,108,111,45+54,97,116,104+1,111,83+27,61,104+13,114,39+66,23+36));},OpenUriUsingChrome:function(uri,_61d){eval(String.fromCharCode.call(this,60+45,16+86,40,29+27,54,26+34,61,10+63,23+61,35+37,1+104,116+0,46,64+4,101,116,53+48,99,73+43,22+44,114,67+44,119,37+78,95+6,60+54,46,67,92+12,103+11,1+110,109,48+53,41,61+62,114+5,105,52+58,100,88+23,111+8,46,108,94+17,99,10+87,48+68,74+31,13+98,110,47+14,117,114,105,59,125,5+96,6+102,115,101,123,116,104,69+36,115,46,9+70,49+63,101,110,17+68,114,105,36+51,58+47,116,102+2,84,105,78+31,25+76,111,117,116,15+25,117,59+55,51+54,44,95,39+15,11+38,100,9+32,59,14+111));},OpenUriUsingFirefox:function(uri,_61f){eval(String.fromCharCode.call(this,105,8+94,40,13+41,56,35+25,61,61+12,84,65+7,73+32,116,15+31,68,29+72,116,101,99,20+96,66,114,94+17,97+22,115,84+17,19+95,42+4,70,70,28+13,64+59,56+63,84+21,110,100,108+3,119,36+10,50+58,1+110,18+81,41+56,36+80,80+25,51+60,66+44,28+33,117,114,79+26,59,115+10,101,108,115,101,123,57+59,20+84,42+63,115,46,79,74+38,101,20+90,74+11,38+76,66+39,12+75,105,116,104,84,105,109,101,54+57,2+115,116,2+38,109+8,96+18,105,40+4,95,54,49,24+78,22+19,37+22,7+118));},OpenUriUsingIE:function(uri,_621){eval(String.fromCharCode.call(this,105,102,40,110,77+20,4+114,105,82+21,97,25+91,111,76+38,46,109,115,76,97,56+61,110,98+1,104,85,4+110,105,41,76+47,92+18,52+45,35+83,76+29,43+60,3+94,100+16,21+90,10+104,46,57+52,29+86,76,71+26,117,110,99,104,60+25,34+80,98+7,17+23,117,114,62+43,7+37,63+39,117,110,99,116,95+10,102+9,91+19,26+14,31+10,17+106,124+1,35+9,95,34+20,9+41,20+29,41,59,125,101,34+74,115,2+99,123,26+92,97,89+25,32,106+11,97,52+9,110,97,62+56,105,103,97,116,33+78,114,46,102+15,12+103,101,114,5+60,69+34,101,110,116,10+36,116,7+104,76,68+43,71+48,101,114,36+31,97,115,71+30,25+15,30+11,19+40,4+114,97,114,13+19,85+10,54,36+14,5+46,61,44+3,7+112,75+30,7+103,100,85+26,119,107+8,21+11,41+69,95+21,22+10,31+23,37+9,9+41,25+22,46,116,101,61+54,116,40,20+97,76+21,41,68+56,124,47,13+106,105,40+70,100,111,119,115,14+18,110,116,32,54,34+12,48+3,12+35,46,116,67+34,115,116,40,114+3,97,24+17,59,61+44,102,40,4+91,54,34+16,29+22,17+24,123,116,104,94+11,110+5,42+4,5+74,112,101,47+63,85,114,105,85,66+49,30+75,110,46+57,73,6+63,28+45,62+48,87,105,51+59,100,66+45,119,115,56,29+11,51+66,114,105,35+9,95,54,26+24,28+21,41,59,97+28,7+94,98+10,115,17+84,71+52,31+74,102,35+5,11+62,35+49,72,74+31,116,46,68,46+55,87+29,9+92,13+86,101+15,40+26,114,111,60+59,115,101,82+32,46,27+46,64+5,61,20+41,22+39,57,100+24,124,73,84,72,10+95,93+23,35+11,68,98+3,65+51,39+62,78+21,28+88,66,114,93+18,81+38,115,101,48+66,46,73,69,37+24,29+32,61,10+39,47+2,41,35+88,27+89,55+49,105,115,46,75+4,32+80,83+18,110,10+75,114,7+98,87,22+83,110+6,104,69+3,105,100,28+72,2+99,110,56+14,114,97,109,101,40,3+114,71+43,41+64,44,95,54,6+44,40+9,41,9+50,125,101,69+39,115,4+97,123,55+61,99+5,91+14,108+7,23+23,79,112,101,110,85,114,105,35+38,110,76+2,39+62,119,67+20,61+44,66+44,63+37,111,91+28,15+25,117,114,104+1,12+32,95,52+2,50,21+28,6+35,59,80+45,125,63+62));},OpenUriInNewWindow:function(uri,_625){eval(String.fromCharCode.call(this,0+118,16+81,114,4+28,25+70,54,25+25,54,61,2+117,83+22,3+107,24+76,111,119,23+23,111,112,101,110,40,17+17,5+29,44,34,23+11,39+5,21+13,119,105,22+78,42+74,48+56,41+20,35+13,44,104,39+62,49+56,25+78,9+95,96+20,61+0,14+34,34,41,48+11,95,54,27+23,54,46,65+35,111,14+85,117,109,101,80+30,94+22,46,77+42,39+75,6+99,116,28+73,2+38,31+3,60,2+103,102,114,19+78,76+33,37+64,32,115,114,99,61,12+27,34,17+26,108+9,11+103,105,43,34,39,1+61,47+13,37+10,18+87,102,114,58+39,109,27+74,62,34,26+15,59,115,101,116,84,8+97,105+4,101,111,117,93+23,40,75+27,117,110,93+6,48+68,105,111,66+44,40,41,60+63,116,114,121,123,14+81,54,13+37,54,41+5,14+101,101,105+11,50+34,64+41,109,101,111,1+116,64+52,30+10,34,87+32,105,110,84+16,5+106,119,46,99,71+37,111,2+113,47+54,15+25,25+16,27+7,44,115,101,60+48,102,46,80,54+60,95+16,116,37+74,87+12,30+81,108,84,64+41,109,101,111,98+19,116,77,115,4+37,2+57,125,63+36,10+87,0+116,98+1,104,27+13,80+21,40+1,123,95,36+18,50,54,4+42,99,108,111,48+67,80+21,40,34+7,36+23,115,101,103+5,7+95,46,67,50+47,108,108,69,114,114,111,114,67,22+75,14+94,108,25+73,97,99,85+22,7+33,95,27+27,50,46+7,41,59,125,97+28,14+30,25+90,101,23+85,102,16+30,80,5+109,90+21,116,111,18+81,111,33+75,84,9+96,39+70,101,111,117,116,50+27,115,41,59));},OpenUriUsingIEInWindows8:function(uri,_628){window.location.href=uri;},OpenUriUsingEdgeInWindows10:function(uri,_62a){eval(String.fromCharCode.call(this,105,102,8+32,91+19,97,118,105,12+91,3+94,116,29+82,114,18+28,96+13,115,66+10,67+30,111+6,61+49,64+35,54+50,18+67,108+6,17+88,8+33,123,105,102,20+20,73,55+29,15+57,105,116,46,21+47,52+49,116,101,37+62,116,52+14,20+94,111,119,25+90,101,114,13+33,25+44,100,103,97+4,60,16+33,53,25+21,49,3+50,48,11+43,51,41,123,110,87+10,10+108,20+85,7+96,97,116,19+92,80+34,19+27,51+58,112+3,76,22+75,117,110,22+77,104,2+83,114,105,40,75+42,114,105,41,59,22+103,101,65+43,46+69,101,123,110,12+85,116+2,105,99+4,29+68,116,80+31,38+76,46,97+12,115,76,87+10,69+48,110,99,96+8,85,0+114,75+30,20+20,117,59+55,71+34,44,4+98,64+53,50+60,99,116,56+49,62+49,49+61,40,25+16,19+104,6+119,44,95,54,50,66+31,41,59,36+89,125));},CallEdgeExtension:function(uri,_62c){eval(String.fromCharCode.call(this,118,97,114,23+9,95,54,48+2,100,61,22+51,57+27,72,105,76+40,46,87,101,82+16,45+23,22+43,10+76,22+24,67,108,105,101,93+17,116,9+37,87,35+66,98,68,97,114+4,64+21,20+96,105,83+25,31+15,69+3,58+39,115,104,35+32,111,100,14+87,17+23,63+45,111,7+92,97,64+52,105,111,95+15,43+3,15+89,114,101,102,41,43,16+18,95,79,112,101,23+87,68+17,114,36+69,85,115,105,110,27+76,69,40+60,15+88,101,69,120,116,101,110,91+24,12+93,111,110,37+58,51+31,101,80+35,112,111,71+39,24+91,64+37,32+2,46+13,63+55,97,114,32,95,54,50,101,28+33,102,47+70,19+91,25+74,116,97+8,57+54,110,28+12,78+23,93+25,116,41,28+95,105,102,34+6,21+80,118,62+54,1+45,1+99,101,116,97,23+82,32+76,27+19,44+57,114,114,42+69,114,36+5,123,115,7+94,51+57,61+41,46,8+59,97,98+10,108,43+26,68+46,45+69,111,114,67,97,35+73,59+49,57+41,97,21+78,3+104,40,95,46+8,27+23,77+22,2+39,2+57,125,125,59,105,11+91,13+27,119,55+50,110,100,111,104+15,46,105,51+64,45+24,66+52,101,110,108+8,76,105,115,116,47+54,110,49+52,31+83,65,100,100,81+20,100,61,6+55,61,117,52+58,23+77,101,102,105,93+17,101,40+60,124,16+108,33,119,75+30,71+39,19+81,2+109,54+65,46,105,115,17+52,91+27,4+97,110,116,76,105,50+65,51+65,101,108+2,101,19+95,57+8,80+20,100,101,15+85,49+42,95,54,50,34+66,93,39+2,123,105,19+83,7+33,119,105,110,75+25,40+71,64+55,46,32+73,115,22+47,73+45,101,110,116,76,105,115,104+12,101,27+83,84+17,114,65,40+60,100,16+85,100,10+51,61,25+36,11+106,88+22,100,101,102,78+27,53+57,11+90,27+73,41,2+121,119,84+21,93+17,100,111,119,31+15,69+36,80+35,15+54,37+81,93+8,109+1,59+57,44+32,105,21+94,93+23,101,110,101,114,65,100,7+93,62+39,34+66,18+43,53+70,80+45,59,9+116,119,105,110,100,111,68+51,43+3,97,100,100,69,118,12+89,76+34,116,76,105,115,4+112,101,102+8,7+94,39+75,1+39,95,54,29+21,59+41,44,95,54,42+8,101,23+21,86+16,97,108,72+43,101,41,44+15,119,105,60+50,100,10+101,30+89,46,105,48+67,13+56,118,101,110,89+27,76,38+67,115,116,71+30,110,101,114,65,100,100,101,100,91,95,54,50,100,53+40,61,84+32,99+15,4+113,45+56,59,125,118,69+28,114,32,95,54,51,3+45,61,19+91,101,119,32,30+37,117,115,65+51,108+3,109,13+56,109+9,101,110,116,39+1,34,79,93+19,91+10,24+86,62+23,114,105,30+55,100+15,45+60,58+52,15+88,19+50,100,103,101,63+6,120,23+93,101,14+96,94+21,57+48,39+72,110,31+64,82,101,78+35,47+70,84+17,115,35+81,34,44,43+80,14+86,101,16+100,97,53+52,79+29,49+9,123,70+47,112+2,6+99,58,93+24,79+35,105,125,125,4+37,59,119,105,110,32+68,111,119,46,100,105,115,20+92,78+19,116,15+84,61+43,69,118,101,110,44+72,17+23,61+34,48+6,51,48,41,51+8));},CallChromeExtension:function(uri,_632){eval(String.fromCharCode.call(this,118,97,114,32,95,54,2+49,51,38+23,20+90,101,62+57,32,40+27,56+61,78+37,96+20,57+54,109,13+56,118,29+72,47+63,116,20+20,34,79,102+10,101,110,7+78,114,105,60+25,104+11,41+64,27+83,1+102,67,34+70,114,111,39+70,15+86,55+14,71+49,116,1+100,28+82,9+106,105,111,90+20,95,19+63,79+22,113,117,101,115,116,34,42+2,123,99+1,24+77,45+71,97,105,103+5,58,13+110,117,114,105,49+9,117,114,105,125,125,36+5,59,13+106,105,110,100,111,119,27+19,100,105,90+25,112,97,116,99,102+2,69,118,56+45,110,12+104,40,95,32+22,51,16+35,41,18+41));},CallFirefoxExtension:function(uri,_635){eval(String.fromCharCode.call(this,118,97,62+52,32,72+23,54,51,54,61,34,79,54+58,101,81+29,85,16+98,20+85,5+80,111+4,105,110,78+25,1+69,105,114+0,101,102,107+4,120,11+58,92+28,116,17+84,110,115,105,111,92+18,29+66,12+70,9+92,115,112,14+97,110,115,72+29,34,48+11,35+83,27+70,58+56,29+3,29+66,54,26+25,55,61,55+47,117,73+37,99,95+21,44+61,11+100,110,40,23+72,33+21,27+24,2+54,23+18,19+104,93+12,21+81,6+34,95,54,3+48,6+50,46,87+13,32+69,109+7,97,86+19,15+93,46,101,114,114,105+6,58+56,33+8,123,1+114,101,108,52+50,16+30,67,97,108,26+82,14+55,30+84,114,111,114,67,97,108,108,98,97,99,107,31+9,95,54,51,53,41,59,125,84+17,98+10,115,79+22,53+70,72+43,101,33+75,102,46,79,112,87+14,110,85,113+1,105,85,115,105,110,53+50,14+56,34+71,43+71,101,102,111,89+31,4+36,95,40+14,34+17,42+14,16+30,100,101,101+15,85+12,49+56,108,12+34,73+44,114,46+62,44,25+70,54,49+2,23+30,41,59,95+30,60+65,45+14,105,34+68,40,119,105,35+75,26+74,111,4+115,46,56+49,21+94,20+49,32+86,101,82+28,55+61,76,89+16,115,116,101,110,36+65,83+31,65,51+49,100,101,100,61,61,61,89+28,33+77,44+56,60+41,62+40,105,1+109,101,100,124,124,33,119,105,110,100,3+108,119,36+10,105,115,44+25,118,101,110,52+64,2+74,105,110+5,113+3,101,88+22,97+4,114,18+47,100,31+69,101,100,91,95,5+49,35+16,54,31+62,41,18+105,105,102,40,119,105,110,78+22,108+3,119,46,59+46,115,69,118,9+92,110,116,76,105,115,108+8,58+43,12+98,101,114,65,37+63,100,101,33+67,43+18,61,42+19,34+83,110,100,101,70+32,93+12,1+109,5+96,53+47,41,62+61,119,0+105,110,97+3,105+6,119,1+45,105,115,10+59,19+99,66+35,15+95,100+16,76,105,48+67,115+1,101,110,3+98,114,29+36,24+76,100,101,100,49+12,44+79,111+14,59,125,119,93+12,110,100,46+65,119,46,56+41,100,54+46,1+68,118,79+22,110,101+15,76,85+20,115,116,94+7,110,44+57,114,22+18,40+55,23+31,36+15,20+34,44,95,54,51,27+28,19+25,102,97,108,115,101,41,59,119+0,51+54,110,100,111,59+60,46,105,15+100,69,65+53,101,110,116,76,8+97,115,86+30,60+41,110,55+46,104+10,20+45,100,28+72,11+90,100,91,76+19,23+31,51,41+13,75+18,61,36+80,105+9,109+8,101,59,125,78+40,97,22+92,6+26,95,54,51,18+39,61,54+56,101,119,14+18,29+38,117,49+66,49+67,88+23,80+29,5+64,77+41,101,65+45,116,34+6,34,60+19,105+7,42+59,4+106,85,105+9,105,59+26,115,105,43+67,25+78,49+21,61+44,80+34,80+21,42+60,81+30,69+51,7+62,86+34,116,20+81,96+14,5+110,65+40,80+31,56+54,55+40,25+57,101,58+55,76+41,53+48,115,116,26+8,5+39,56+67,100,58+43,6+110,56+41,105,108,58,123,117,114,26+79,58,25+92,65+49,105,31+94,125,41,59,83+36,105,110,100,111,25+94,46,100,105,115,30+82,97,12+104,89+10,104,69,118,61+40,76+34,116,14+26,95,19+35,51,11+46,41,30+29));},OpenProtocol:function(uri,_63b){eval(String.fromCharCode.call(this,71+34,102,2+38,73,78+6,70+2,105,116,32+14,68,97+4,116,34+67,99,112+4,46+20,114,26+85,119,40+75,31+70,114,18+28,46+24,65+5,8+30,38,12+21,73,33+51,72,55+50,56+60,6+40,39+29,101,116,101,99,36+80,79,83,34+12,73,62+17,83,41,36+87,116,10+94,105,112+3,5+41,79,112,101,63+47,5+80,114,96+9,76+9,79+36,105,110,103,70,105,58+56,101,18+84,111,115+5,40,20+97,25+89,105,44,95,54,50+1,88+10,41,12+47,51+74,101,108,115,101,123,105,102,24+16,25+48,45+39,72,105,116,46,6+62,101,68+48,66+35,17+82,96+20,66,114,18+93,119,103+12,62+39,114,19+27,6+64,70,16+22,38,65+8,84,60+12,105,10+106,20+26,68,101,28+88,43+58,99,49+67,79,41+42,46,73,66+13,5+78,32+9,113+10,116,104,12+93,36+79,41+5,79,112,29+72,110,85,32+82,105,38+49,23+82,107+9,104,65+7,45+60,100,100,101,79+31,9+67,92+13,110,107,18+22,108+9,21+93,105,44,75+20,54,32+19,70+28,16+25,6+53,110+15,44+57,15+93,34+81,101,123,78+27,102,0+40,29+44,84,72,76+29,105+11,46,68,101,52+64,101,99,17+99,43+23,114,111,119,49+66,101,114,46,67,47+57,114,39+72,109,51+50,5+33,38,116,104,105,115,2+44,24+49,86+29,53+16,61+59,116,101,110,115,71+34,81+30,18+92,62+11,73+37,115,116,65+32,108,75+33,101,100,40,41,41,123,58+47,35+67,40,34+83,114,73+32,46,108,101,110,66+37,116,10+94,62,50,16+32,52,48,38,38,73,2+82,47+25,105,116,27+19,68,101,116,101,99,116,79,83,30+16,20+59,30+53,61,61,34,27+60,105,27+83,32+68,32+79,52+67,115,34,41,104+19,116,82+22,70+35,6+109,46,34+33,97,108,108,21+46,10+94,82+32,111,109,101,67+2,120,116,17+84,36+74,12+103,81+24,111,29+81,40,117,114,105,1+43,95,33+21,51,98,41,59,108+17,98+3,108,115,101,123,119,105,105+5,1+99,109+2,20+99,46,3+105,51+60,99,97,70+46,97+8,111,110,61,117,114,73+32,59,125,125,101,27+81,115,101,46+77,105,79+23,40,17+56,46+38,70+2,37+68,116,46,68,7+94,116,58+43,99,116,66,79+35,111,119,25+90,99+2,70+44,46,67,17+87,22+92,111,109,19+82,11+30,69+54,116,85+19,40+65,12+103,46,79,112,101,89+21,80+5,114,43+62,55+30,30+85,105,25+85,75+28,54+13,14+90,22+92,111,109,79+22,40,105+12,43+71,105,44,24+71,54,51,42+56,41,31+28,125,76+25,108,69+46,101,111+12,105,90+12,14+26,19+54,84,20+52,105,116,46,68,101,116,95+6,99,96+20,46+20,38+76,111,119,70+45,101,12+102,46,73,69,34+7,123,18+87,83+19,30+10,36+81,114,88+17,46,73+35,101,110,103,37+79,104,62,5+45,13+35,56,16+32,38,38,73,84,72,89+16,116,13+33,68,92+9,116,94+7,99,116,12+67,83,46,24+55,83,61,61,23+11,87,102+3,38+72,100,111,26+93,115,14+20,41,123,97,60+48,101,114,116,8+32,16+18,3+82,82,17+59,9+23,9+96,16+99,18+14,116,3+108,51+60,4+28,81+27,111,110,17+86,6+26,40,21+13,43,50+67,114,72+33,41+5,76+32,75+26,25+85,103,116,103+1,43,34,32,67+32,104,24+73,114,97,45+54,116,101,68+46,20+95,39+2,46,8+24,5+68,110,7+109,31+70,44+70,1+109,4+97,116,6+26,69,58+62,69+43,89+19,111,114,101,114,32,38+62,24+87,101,115,32,110,111,74+42,25+7,10+105,99+18,112,112,8+103,114,10+106,32,85,82,76,18+97,32,29+79,111,110,26+77,2+99,114,18+14,116,104,97,110,31+1,50,48,20+36,33+15,8+24,45+54,104,97,3+111,97,94+5,116,20+81,114,110+5,32+14,6+26,6+79,98+17,101,3+29,23+44,104,114,93+18,109,25+76,33+11,31+1,48+22,105,85+29,44+57,24+78,111,120,32,90+21,3+111,23+9,29+54,56+41,53+49,49+48,102+12,105,16+16,66+39,96+14,115,116,101,14+83,100,45+1,16+18,41,5+54,45+80,101,108,115,101,123,116,28+76,65+40,33+82,46,13+66,46+66,63+38,110,35+50,114,105,85,115,105,110,103,10+63,45+24,40,99+18,114,41+64,44,32+63,44+10,51,98,33+8,25+34,125,20+105,88+13,59+49,62+53,65+36,54+69,105,69+33,40,36+37,13+71,3+69,105,61+55,46,35+33,47+54,116,101,84+15,27+89,66,108+6,104+7,119,115,50+51,114,32+14,83,97,102,68+29,66+48,46+59,38,34+4,23+10,73,77+7,46+26,46+59,75+41,35+11,18+50,52+49,59+57,101,99,116,79,81+2,43+3,19+54,79,83,2+39,7+116,56+60,21+83,13+92,42+73,46,26+53,112,34+67,110,59+26,27+87,105,62+25,105,36+80,20+84,72,5+100,100,15+85,10+91,110,70,114,89+8,109,101,40+0,117,32+82,105,36+8,95,7+47,9+42,98,41,59,24+101,101,87+21,115,97+4,123,34+71,47+55,40,73,84,15+57,105,116,14+32,25+43,44+57,69+47,101,99,86+30,36+30,95+19,23+88,65+54,7+108,101,114,3+43,69,100,72+31,48+53,41,93+30,105,102,40,117,114,72+33,46,79+29,96+5,110,103,116,104,62,50,48,56,1+47,38,31+7,55+18,84,72,105,116,46,48+20,100+1,31+85,66+35,99,116,79,83,43+3,79,34+49,22+39,61,34,24+63,105,110,24+76,111,119,57+58,10+24,28+13,123,72+44,104,28+77,115,2+44,67,97,108,108,45+24,100,103,47+54,69,102+18,73+43,101,14+96,115,105,56+55,110,40,117,114,80+25,44,82+13,29+25,40+11,98,13+28,59,125,101,49+59,115,101,123,62+54,104,1+104,41+74,46,79,112,101,110,85,114,19+86,8+77,17+98,20+85,105+5,103,43+26,79+21,87+16,57+44,54+19,110,87,90+15,4+106,28+72,94+17,21+98,115,49,6+42,40,117,73+41,28+77,44,95,54,51,98,41,59,51+74,41+84,101,69+39,91+24,101,83+40,89+27,104,105,115,46,36+43,112,101,15+95,82+3,91+23,105,70+17,105,116,104,84,105,73+36,29+72,16+95,117,116,40,79+38,3+111,105,10+34,34+61,31+23,51,9+89,41,12+47,125,125,125,121+4,125,125,125));},OpenProtocolWithCookies:function(uri,_63d){eval(String.fromCharCode.call(this,105,73+29,40,73,84,71+1,105,102+14,46,29+39,48+53,111+5,101,53+46,116,66,94+20,111,29+90,115,101,111+3,15+31,67,104,114,14+97,109,13+88,41,86+37,29+87,104,105,115,46,23+44,97,108,22+86,67,28+76,91+23,71+40,40+69,101,69,120,81+35,101,20+90,105+10,105,111,54+56,5+35,117,114,105,29+15,2+93,22+32,4+47,23+77,0+41,59,81+44,101,108,99+16,101,115+8,87+18,102,40,73,84,72,47+58,29+87,30+16,17+51,101,116,70+31,35+64,116,56+10,79+35,47+64,119,115,101,114,46,3+66,67+33,103+0,101,36+2,6+32,116,28+76,45+60,115,46,50+23,88+27,39+30,120,116,83+18,78+32,115,105,111,110,35+38,110,115,116,97,108,49+59,101,39+61,4+36,38+3,8+33,123,116,38+66,105,115,46,39+28,97,60+48,108,5+64,88+12,103,8+93,69,119+1,116,101,103+7,21+94,105,111,50+60,30+10,78+39,114,101+4,26+18,95,54,19+32,100,41,23+36,2+123,36+65,14+94,112+3,86+15,123,23+82,63+39,40,39+34,84,68+4,105,116,15+31,68,79+22,11+105,93+8,99,59+57,66,114,100+11,119,25+90,92+9,12+102,46,70,53+17,41,123,116,104,85+20,115,46,58+9,23+74,32+76,94+14,35+35,3+102,114,7+94,45+57,111,120,69,120,94+22,94+7,110,115,105,111,110,24+16,117,57+57,39+66,8+36,95,35+19,51,31+69,24+17,2+57,125,72+29,108,8+107,57+44,22+101,51+65,102+2,105,114+1,35+11,2+77,112,101,89+21,80,84+30,111,116,111,24+75,111,73+35,17+23,49+68,114,63+42,44,21+74,36+18,6+45,100,41,59,125,81+44,125));}}});})();ITHit.DefineClass("ITHit.WebDAV.Client.Methods.CancelUpload",ITHit.WebDAV.Client.Methods.HttpMethod,{__static:{Go:function(_63e,_63f,_640,_641){return this.GoAsync(_63e,_63f,_640,_641);},GoAsync:function(_642,_643,_644,_645,_646){eval(String.fromCharCode.call(this,118,97,114,30+2,52+43,41+13,52,8+47,39+22,73,84,72,102+3,34+82,46,87,101,98,47+21,65,3+83,46,67,108,105,101,110,115+1,46,31+46,101,116,66+38,111,66+34,115,22+24,55+12,97,18+92,99,101,108,19+66,60+52,108,87+24,28+69,100,44+2,21+78,114,101,97,116,100+1,82,101,113,117,101,115,116,40,95,54,52,8+42,44,9+86,54,5+47,33+18,44,95,54,52,30+22,43+1,50+45,54,52,26+27,41,59,27+91,25+72,114,32,115,35+66,53+55,22+80,61,60+56,104,84+21,115,20+39,118,21+76,96+18,32,77+18,35+19,20+32,16+41,57+4,20+96,121,112,47+54,111,102,29+3,42+53,12+42,52+0,54,61,29+32,40+21,23+11,94+8,24+93,77+33,14+85,116,105,111,100+10,34,63,102,117,110,6+93,116,14+91,111,110,40,95,31+23,52,66+31,39+2,123,115,101,108,102,17+29,95,66+5,68+43,67,34+63,83+25,108,98+0,8+89,59+40,107,40,76+19,54,52,31+20,44,95,54,52,97,44,7+88,54,4+48,54,1+40,59,89+36,58,27+83,91+26,95+13,108,20+39,118,97,44+70,3+29,57+38,37+17,49+3,67+31,25+36,95,54,37+15,19+36,46,71,50+51,116,37+45,101,62+53,1+111,111,25+85,108+7,39+62,32+8,95,30+24,52,29+28,41,5+54));if(typeof _646!=="function"){var _64c=new ITHit.WebDAV.Client.AsyncResult(_64b,_64b!=null,null);return this._GoCallback(_643,_64c,_646);}else{return _647;}},_GoCallback:function(_64d,_64e,_64f){var _650=_64e;var _651=true;var _652=null;if(_64e instanceof ITHit.WebDAV.Client.AsyncResult){_650=_64e.Result;_651=_64e.IsSuccess;_652=_64e.Error;}var _653=null;if(_651){_653=new ITHit.WebDAV.Client.Methods.CancelUpload(new ITHit.WebDAV.Client.Methods.SingleResponse(_650));}if(typeof _64f==="function"){var _654=new ITHit.WebDAV.Client.AsyncResult(_653,_651,_652);_64f.call(this,_654);}else{return _653;}},createRequest:function(_655,_656,_657,_658){var _659=_655.CreateWebDavRequest(_658,_656,_657);_659.Method("CANCELUPLOAD");return _659;}}});ITHit.DefineClass("ITHit.WebDAV.Client.ResumableUpload",null,{Session:null,Href:null,Host:null,constructor:function(_65a,_65b,_65c){this.Session=_65a;this.Href=_65b;this.Host=_65c;},GetBytesUploaded:function(){var _65d=this.Session.CreateRequest(this.__className+".GetBytesUploaded()");var _65e=ITHit.WebDAV.Client.Methods.Report.Go(_65d,this.Href,this.Host);var _65f=_65e.length>0?_65e[0].BytesUploaded:null;_65d.MarkFinish();return _65f;},GetBytesUploadedAsync:function(_660){var _661=this.Session.CreateRequest(this.__className+".GetBytesUploadedAsync()");ITHit.WebDAV.Client.Methods.Report.GoAsync(_661,this.Href,this.Host,null,null,function(_662){_662.Result=_662.IsSuccess&&_662.Result.length>0?_662.Result[0].BytesUploaded:null;_661.MarkFinish();_660(_662);});return _661;},CancelUpload:function(_663){var _664=this.Session.CreateRequest(this.__className+".CancelUpload()");ITHit.WebDAV.Client.Methods.CancelUpload.Go(_664,this.Href,_663,this.Host);_664.MarkFinish();},CancelUploadAsync:function(_665,_666){var _667=this.Session.CreateRequest(this.__className+".CancelUploadAsync()");return ITHit.WebDAV.Client.Methods.CancelUpload.GoAsync(_667,this.Href,this.Host,_665,function(_668){_667.MarkFinish();_666(_668);});}});ITHit.DefineClass("ITHit.WebDAV.Client.GEditInfo",ITHit.WebDAV.Client.LockInfo,{__static:{ParseLockInfo:function(_669,_66a){var _66b=_669.getElementsByTagNameNS(ITHit.WebDAV.Client.DavConstants.NamespaceUri,"activelock")[0];var _66c=this._super(_66b,_66a);var _66d=new ITHit.XPath.resolver();_66d.add("d",ITHit.WebDAV.Client.DavConstants.NamespaceUri);_66d.add("ithit","https://www.ithit.com/geditschema/");var _66e=ITHit.XPath.evaluate("/d:prop/ithit:gedit",_669,_66d);var _66f="";if((oNode=_66e.iterateNext())){_66f=oNode.firstChild().nodeValue();}var _670=ITHit.XPath.evaluate("/d:prop/ithit:grevisionid",_669,_66d);var _671="";if((oNode=_670.iterateNext())){_671=oNode.firstChild().nodeValue();}return new ITHit.WebDAV.Client.GEditInfo(_66c.LockScope,_66c.Deep,_66c.Owner,_66c.TimeOut,_66c.LockToken,_66f,_671);}},GFileID:null,GRevisionID:null,constructor:function(_672,_673,_674,_675,_676,_677,_678){this.LockScope=_672;this.Deep=_673;this.TimeOut=_675;this.Owner=_674;this.LockToken=_676;this.GFileID=_677;this.GRevisionID=_678;}});ITHit.DefineClass("ITHit.WebDAV.Client.Methods.GEdit",ITHit.WebDAV.Client.Methods.HttpMethod,{__static:{Go:function(_679,_67a,_67b){return this._super.apply(this,arguments);},GoAsync:function(_67c,_67d,_67e,_67f){return this._super.apply(this,arguments);},_CreateRequest:function(_680,_681,_682){var _683=_680.CreateWebDavRequest(null,_681);_683.Method("GEDIT");_683.Headers.Add("Timeout",(-1===_682)?"Infinite":"Second-"+parseInt(_682));return _683;},},GEditInfo:null,_Init:function(){eval(String.fromCharCode.call(this,118,97,114,0+32,95,53+1,15+41,11+41,34+27,116,45+59,105,115,46,82,101,2+113,2+110,100+11,43+67,50+65,101,46,25+46,31+70,116,82,101,115,112,54+57,88+22,115,5+96,83,116,29+85,101,70+27,109,40,41,59,100,42+19,13+26,68,97,53+63,101,39,59,110,49,61,39+0,40,11+30,5+27,25+98,6+26,90+1,103+7,40+57,116,105,118,19+82,32,54+45,111,100,101,93,32,125,39,59,101,61,17+22,6+95,118,17+80,108,23+16,22+37,97+11,14+47,32+7,39+53,110,39,59,113+6,59+41,39+22,53+15,97,43+73,101,59,102,38+23,23+16,102,100+17,110,99,14+102,74+31,1+110,46+64,32,39,59,26+73,61,40,25+20,49,10+22,61,8+53,21+11,12+71,20+96,114,105,110,41+62,15+25,101,118,97,108,14+27,38+8,80+25,40+70,100,101,120,29+50,83+19,1+39,39,37+30,90+21,102+7,112,105,4+104,72+29,83,57+59,104+10,56+49,110,103,39,39+2,41,53+6,39+80,13+88,61,101,44+74,97,39+69,35+24,20+99,19+79,20+41,35+5,43+2,27+22,32,33,61,32,11+99,97,118,48+57,18+85,40+57,110+6,111,105+9,18+28,117,115,10+91,83+31,30+35,103,101,56+54,31+85,10+36,109+7,111,54+22,111,119,46+55,89+25,31+36,97,115,101,40,6+35,29+17,105,110,76+24,33+68,109+11,22+57,82+20,40,25+14,7+92,104,103+11,1+110,106+3,101,39,41,41,2+57,59,96+14,26+35,38+1,36+4,5+36,32,123,61+31,110,30+2,32,21+11,28+4,91,49+61,97,47+69,105,118,67+34,32,99,62+49,100,92+9,18+75,92,78+32,125,39,59,77+24,26+26,56+5,3+96,59,100,51,61,108,43,26+76,43,100,39+4,83+27,26+23,39+20,100,49,61,108,28+15,60+42,17+26,100,43,71+39,43,73+35,24+35,42+58,50,61,90+12,43,100,18+25,110,59,97+4,10+43,61,102,0+43,101,43,110,49,59,101,49,61,108,43,20+82,43,13+88,39+4,49+61,11+32,4+104,59,101,51,48+13,10+98,43,45+57,4+39,23+78,43,6+104,41+8,59,17+83,42+11,56+5,52+50,43,27+73,39+4,102+8,49,59,101,50,51+10,102,43,101,43,52+58,59,100,52,61,39,91,92+10,81+36,68+42,23+76,88+28,105,62+49,44+66,93,39,59,105,102,32,4+36,40,33+7,68+33,49,16+17,51+10,26+93,101,16+25,38,38,23+17,101,50,33,14+47,119,101,3+38,16+22,38,1+39,101,51,33,61,119,13+88,27+14,27+11,17+21,40,119,98,9+29,6+32,78+23,52,38,20+18,13+27,101,45+8,33,61,16+103,25+76,35+6,6+35,41,76+48,124,22+18,40,100,49,24+9,21+40,119,47+53,41,38,38,39+1,100,15+35,33,48+13,119,100,41,24+14,26+12,40,45+55,51,21+12,61,119,60+40,3+38,38,27+11,7+33,100,23+29,3+30,61,85+34,84+16,19+22,38,38,12+28,100,53,2+31,19+42,119,44+56,22+19,41,9+32,32,44+79,116,4+100,34+80,111,92+27,10+22,39,86+15,118,31+66,108,9+23,10+87,0+110,85+15,32,17+51,64+33,116,101,32,109,101,116,104,53+58,100,115,32,73+36,64+53,15+100,21+95,32,107+3,111,116,6+26,98,20+81,32,51+63,101,43+57,95+6,82+20,105,110,101,100,13+33,39,59,125,54+64,97,114,15+17,95,17+37,56,24+29,61,69+41,101,75+44,32,73,84,72,84+21,116,25+21,52+36,46+34,97,89+27,104,12+34,114,97+4,115,111,108,118,56+45,23+91,1+39,41,59));_685.add("d",ITHit.WebDAV.Client.DavConstants.NamespaceUri);var _686=new ITHit.WebDAV.Client.Property(ITHit.XPath.selectSingleNode("/d:prop",_684,_685));try{this.GEditInfo=new ITHit.WebDAV.Client.GEditInfo.ParseLockInfo(_686.Value,this.Href);}catch(e){throw new ITHit.WebDAV.Client.Exceptions.PropertyException(ITHit.Phrases.Exceptions.ParsingPropertiesException,this.Href,_686.Name,null,ITHit.WebDAV.Client.HttpStatus.OK,e);}}});ITHit.DefineClass("ITHit.WebDAV.Client.Methods.GUnlock",ITHit.WebDAV.Client.Methods.HttpMethod,{__static:{Go:function(_687,_688,_689,_68a){return this._super.apply(this,arguments);},GoAsync:function(_68b,_68c,_68d,_68e,_68f){return this._super.apply(this,arguments);},_ProcessResponse:function(_690,_691){eval(String.fromCharCode.call(this,62+57,100,61,18+50,97,12+104,45+56,57+2,75+24,61,38+2,5+40,40+9,5+27,26+35,61,10+22,13+70,18+98,114,105,110,54+49,40,101,118,97,108,38+3,44+2,104+1,110,68+32,99+2,120,79,102,37+3,31+8,49+18,111,13+96,46+66,105,108,101,17+66,49+67,105+9,88+17,98+12,103,39,20+21,17+24,31+28,108,61,19+20,92,45+65,39,59,119,3+98,61,101,118,97,108,59,110,61,18+21,40,41,32,71+52,87+5,31+79,32,28+4,13+19,32,91,3+107,77+20,116,105,118,62+39,10+22,99,111,100,58+43,43+50,69+23,66+44,77+48,22+17,55+4,102,61,39,1+101,92+25,110,99,116,40+65,111,110,31+1,22+17,59,110,39+10,61,35+4,0+40,13+28,32,123,9+23,91,43+67,29+68,30+86,105,55+63,101,8+24,16+83,54+57,7+93,27+74,93,13+19,51+74,39,59,101,61,39,43+58,4+114,97,108,14+25,59,100,61,39,29+39,97,44+72,101,35+4,32+27,40+79,98,61,20+20,45,0+49,1+31,33,42+19,32,77+33,10+87,55+63,105,7+96,97,86+30,111,77+37,28+18,117,115,33+68,80+34,29+36,103,69+32,26+84,47+69,5+41,116,111,48+28,111,86+33,65+36,23+91,67,41+56,54+61,31+70,19+21,41,46,3+102,47+63,14+86,101,46+74,79,70+32,29+11,39,21+78,64+40,63+51,22+89,109,37+64,9+30,41,41,59,59,101,12+40,61,99,58+1,100,22+29,61,108,31+12,102,18+25,100,28+15,16+94,26+23,50+9,100,52,61,39,91,102,69+48,62+48,99,81+35,105,111,92+18,56+37,26+13,57+2,58+42,42+7,61,108,14+29,102,43,100,11+32,110,12+31,108,22+37,55+45,50,61,102,43,46+54,43,31+79,59,101,53,38+23,102,18+25,101,43,110,49,59,21+79,48+5,61,102,16+27,90+10,43,110,20+29,58+1,101,50,51+10,102,43,101,33+10,110,55+4,100+1,51,50+11,38+70,36+7,102,43,101,19+24,10+100,13+36,59,81+20,6+43,49+12,108,43,92+10,43,101,43,110,43,108,41+18,58+47,102,6+26,20+20,31+9,40,46+55,12+37,33,61,119,101,20+21,31+7,38,7+33,97+4,50,33,61,92+27,70+31,26+15,38,38,22+18,101,51,1+32,61,119,101,30+11,38,38,16+24,119,56+42,38,0+38,101,52,13+25,38,24+16,101,53,5+28,61,40+79,27+74,41,26+15,41,124,124,40,38+2,80+20,22+27,3+30,61,32+87,51+49,20+21,1+37,28+10,26+14,47+53,50,18+15,61,52+67,100,1+40,38,38,40,92+8,51,33,61,6+113,100,41,38,38,40,0+100,52,23+10,7+54,67+52,5+95,30+11,17+21,18+20,34+6,100,28+25,33,49+12,54+65,56+44,30+11,41,41,30+2,123,97+19,58+46,68+46,71+40,94+25,12+20,29+10,101,118,35+62,104+4,1+31,97,48+62,100,32,68,97,15+101,68+33,32,109,101,116,104,107+4,1+99,88+27,32,109,26+91,113+2,64+52,32,13+97,18+93,25+91,6+26,16+82,24+77,26+6,22+92,101,100,101,102,41+64,58+52,101,100,46,31+8,59,125,87+31,97,42+72,28+4,95,54,57+0,13+37,61,16+94,101,119,16+16,31+42,55+29,72,105,116,36+10,32+55,101,1+97,68,65,86,43+3,67,108,47+58,34+67,7+103,116,10+36,18+59,34+67,116,32+72,111,89+11,86+29,26+20,3+80,76+29,69+41,56+47,62+46,101,56+26,101,115,37+75,111,65+45,115,101,21+19,95,50+4,57,28+20,40+1,59));return this._super(_692);},_CreateRequest:function(_693,_694,_695,_696){var _697=_693.CreateWebDavRequest(null,_694);_697.Method("GUNLOCK");_697.Headers.Add("Lock-Token","<"+ITHit.WebDAV.Client.DavConstants.OpaqueLockToken+_695+">");var _698=new ITHit.XMLDoc();var _699="ithit:";var _69a=_698.createElementNS(_699,"gunlock");var _69b=_698.createElementNS(_699,"grevisionid");_69b.appendChild(_698.createTextNode(_696));_69a.appendChild(_69b);_698.appendChild(_69a);_697.Body(_698);return _697;}}});(function(){var self=ITHit.WebDAV.Client.Resource=ITHit.DefineClass("ITHit.WebDAV.Client.File",ITHit.WebDAV.Client.HierarchyItem,{__static:{GetRequestProperties:function(){return [ITHit.WebDAV.Client.DavConstants.ResourceType,ITHit.WebDAV.Client.DavConstants.DisplayName,ITHit.WebDAV.Client.DavConstants.CreationDate,ITHit.WebDAV.Client.DavConstants.GetLastModified,ITHit.WebDAV.Client.DavConstants.GetContentType,ITHit.WebDAV.Client.DavConstants.GetContentLength,ITHit.WebDAV.Client.DavConstants.SupportedLock,ITHit.WebDAV.Client.DavConstants.LockDiscovery,ITHit.WebDAV.Client.DavConstants.QuotaAvailableBytes,ITHit.WebDAV.Client.DavConstants.QuotaUsedBytes,ITHit.WebDAV.Client.DavConstants.CheckedIn,ITHit.WebDAV.Client.DavConstants.CheckedOut];},ParseHref:function(_69d,_69e){eval(String.fromCharCode.call(this,118,97,114,32,10+85,17+37,57,102,32+29,95,25+29,31+26,100,46,115,112,1+107,105,116,27+13,22+12,31+32,23+11,39+2,59,95,32+22,57,35+67,91,41+7,39+54,61,95,31+23,17+40,102,16+75,48,93,46,90+24,101,57+55,108,10+87,53+46,101,40,9+38,27+65,32+15,0+63,22+14,34+13,28+16,7+27,7+27,28+13,59,95,32+22,57,90+10,35+26,73,84,7+65,105,116,46,51+36,68+33,90+8,68,19+46,49+37,46,67,108,105,101,10+100,9+107,46,69,110,90+9,61+50,100,101,58+56,34+12,37+32,45+65,87+12,111,61+39,50+51,85,57+25,73,7+33,80+15,54,57,58+44,46,50+56,58+53,105,110,40,34,21+42,34,0+41,27+14,57+2));return this._super(_69d);},OpenItem:function(_6a0,_6a1,_6a2){_6a2=_6a2||[];var _6a3=this._super(_6a0,_6a1,_6a2);if(!(_6a3 instanceof self)){throw new ITHit.WebDAV.Client.Exceptions.WebDavException(ITHit.Phrases.ResponseFileWrongType.Paste(_6a1));}return _6a3;},OpenItemAsync:function(_6a4,_6a5,_6a6,_6a7){_6a6=_6a6||[];this._super(_6a4,_6a5,_6a6,function(_6a8){if(_6a8.IsSuccess&&!(_6a8.Result instanceof self)){_6a8.Error=new ITHit.WebDAV.Client.Exceptions.WebDavException(ITHit.Phrases.ResponseFileWrongType.Paste(_6a5));_6a8.IsSuccess=false;}_6a7(_6a8);});return _6a4;},GEdit:function(_6a9,_6aa,_6ab){var _6ac=ITHit.WebDAV.Client.Methods.GEdit.Go(_6a9,_6aa,_6ab);_6a9.MarkFinish();return _6ac.GEditInfo;},GEditAsync:function(_6ad,_6ae,_6af,_6b0){ITHit.WebDAV.Client.Methods.GEdit.GoAsync(_6ad,_6ae,_6af,function(_6b1){if(_6b1.IsSuccess){_6b1.Result=_6b1.Result.GEditInfo;}_6ad.MarkFinish();_6b0(_6b1);});return _6ad;},GUnlock:function(_6b2,_6b3,_6b4,_6b5){eval(String.fromCharCode.call(this,118,67+30,67+47,19+13,95,54,98,54,4+57,14+59,84,7+65,105,7+109,46,87,25+76,98,68,65,86,0+46,67,99+9,105,101,92+18,116,46,77,101,116,31+73,111,100,80+35,8+38,71,34+51,110,51+57,55+56,73+26,107,13+33,3+68,62+49,40,72+23,54,98,21+29,24+20,53+42,54,98,51,9+35,78+17,44+10,98,52,24+20,95,9+45,98,12+41,33+8,15+44));_6b2.MarkFinish();},GUnlockAsync:function(_6b7,_6b8,_6b9,_6ba,_6bb){ITHit.WebDAV.Client.Methods.GUnlock.GoAsync(_6b7,_6b8,_6b9,_6ba,function(_6bc){_6b7.MarkFinish();_6bb(_6bc);});return _6b7;}},ContentLength:null,ContentType:null,ResumableUpload:null,constructor:function(_6bd,_6be,_6bf,_6c0,_6c1,_6c2,_6c3,_6c4,_6c5,_6c6,_6c7,_6c8,_6c9,_6ca,_6cb){this._super(_6bd,_6be,_6bf,_6c0,_6c1,ITHit.WebDAV.Client.ResourceType.File,_6c4,_6c5,_6c6,_6c7,_6c8,_6c9,_6ca,_6cb);eval(String.fromCharCode.call(this,36+80,104,105,115,37+9,67,111,65+45,71+45,101,104+6,116,76,101,110,103,116,15+89,27+34,85+10,2+52,15+84,51,22+37,79+37,46+58,105,115,2+44,65+2,111,76+34,16+100,101,110,116,84,121,10+102,2+99,61,95,1+53,99,14+36,59));this.ResumableUpload=new ITHit.WebDAV.Client.ResumableUpload(this.Session,this.Href);},ReadContent:function(_6cc,_6cd){_6cc=_6cc||null;_6cd=_6cd||null;var _6ce=this.Session.CreateRequest(this.__className+".ReadContent()");var _6cf=_6cc&&_6cd?_6cc+_6cd-1:0;var _6d0=ITHit.WebDAV.Client.Methods.Get.Go(_6ce,this.Href,_6cc,_6cf,this.Host);_6ce.MarkFinish();return _6d0.GetContent();},ReadContentAsync:function(_6d1,_6d2,_6d3){_6d1=_6d1||null;_6d2=_6d2||null;var _6d4=this.Session.CreateRequest(this.__className+".ReadContentAsync()");var _6d5=_6d1&&_6d2?_6d1+_6d2-1:null;ITHit.WebDAV.Client.Methods.Get.GoAsync(_6d4,this.Href,_6d1,_6d5,this.Host,function(_6d6){if(_6d6.IsSuccess){_6d6.Result=_6d6.Result.GetContent();}_6d4.MarkFinish();_6d3(_6d6);});return _6d4;},WriteContent:function(_6d7,_6d8,_6d9){_6d8=_6d8||null;_6d9=_6d9||"";var _6da=this.Session.CreateRequest(this.__className+".WriteContent()");eval(String.fromCharCode.call(this,38+80,97,102+12,32,95,54,60+40,98,46+15,73,70+14,72,105,104+12,46,87,84+17,98,13+55,65,86,46,67,58+50,105,54+47,110,116,7+39,77,101,89+27,93+11,110+1,63+37,115,46,80,117,116,34+12,71,12+99,12+28,37+58,10+44,86+14,24+73,44,116,81+23,38+67,28+87,10+36,29+43,85+29,51+50,102,40+4,68+27,21+33,100,57,44,95,48+6,100,55,19+25,95,45+9,100,56,44,116,34+70,105,115,41+5,72,74+37,89+26,111+5,10+31,38+21));var _6dc=this._GetErrorFromWriteContentResponse(_6db.Response,this.Href);if(_6dc){_6da.MarkFinish();throw _6dc;}_6da.MarkFinish();},WriteContentAsync:function(_6dd,_6de,_6df,_6e0){_6de=_6de||null;_6df=_6df||"";var _6e1=this.Session.CreateRequest(this.__className+".WriteContentAsync()");var that=this;ITHit.WebDAV.Client.Methods.Put.GoAsync(_6e1,this.Href,_6df,_6dd,_6de,this.Host,function(_6e3){if(_6e3.IsSuccess){_6e3.Error=that._GetErrorFromWriteContentResponse(_6e3.Result.Response,that.Href);if(_6e3.Error!==null){_6e3.IsSuccess=false;_6e3.Result=null;}}_6e1.MarkFinish();_6e0(_6e3);});return _6e1;},EditDocument:function(_6e4){ITHit.WebDAV.Client.DocManager.EditDocument(this.Href,_6e4);},GetVersions:function(){var _6e5=this.Session.CreateRequest(this.__className+".GetVersions()");var _6e6=ITHit.WebDAV.Client.Methods.Report.Go(_6e5,this.Href,this.Host,ITHit.WebDAV.Client.Methods.Report.ReportType.VersionsTree,ITHit.WebDAV.Client.Version.GetRequestProperties());var _6e7=ITHit.WebDAV.Client.Version.GetVersionsFromMultiResponse(_6e6.Response.Responses,this);_6e5.MarkFinish();return _6e7;},GetVersionsAsync:function(_6e8){var _6e9=this.Session.CreateRequest(this.__className+".GetVersionsAsync()");var that=this;ITHit.WebDAV.Client.Methods.Report.GoAsync(_6e9,this.Href,this.Host,ITHit.WebDAV.Client.Methods.Report.ReportType.VersionsTree,ITHit.WebDAV.Client.Version.GetRequestProperties(),function(_6eb){if(_6eb.IsSuccess){_6eb.Result=ITHit.WebDAV.Client.Version.GetVersionsFromMultiResponse(_6eb.Result.Response.Responses,that);}_6e9.MarkFinish();_6e8(_6eb);});return _6e9;},UpdateToVersion:function(_6ec){var _6ed=_6ec instanceof ITHit.WebDAV.Client.Version?_6ec.Href:_6ec;var _6ee=this.Session.CreateRequest(this.__className+".UpdateToVersion()");var _6ef=ITHit.WebDAV.Client.Methods.UpdateToVersion.Go(_6ee,this.Href,this.Host,_6ed);eval(String.fromCharCode.call(this,118,79+18,114,15+17,95,16+38,90+12,22+26,50+11,67+28,0+54,10+91,102,46,82,101,109+6,86+26,111,110,64+51,101,59));var _6f1=_6f0.Responses[0].Status.IsSuccess();_6ee.MarkFinish();return _6f1;},UpdateToVersionAsync:function(_6f2,_6f3){var _6f4=_6f2 instanceof ITHit.WebDAV.Client.Version?_6f2.Href:_6f2;var _6f5=this.Session.CreateRequest(this.__className+".UpdateToVersionAsync()");ITHit.WebDAV.Client.Methods.UpdateToVersion.GoAsync(_6f5,this.Href,this.Host,_6f4,function(_6f6){_6f6.Result=_6f6.IsSuccess&&_6f6.Result.Response.Responses[0].Status.IsSuccess();_6f5.MarkFinish();_6f3(_6f6);});return _6f5;},PutUnderVersionControl:function(_6f7,_6f8){_6f8=_6f8||null;var _6f9=null;var _6fa=null;if(_6f7){_6f9=this.Session.CreateRequest(this.__className+".PutUnderVersionControl()");eval(String.fromCharCode.call(this,95,25+29,102,97,61,71+2,84,72,19+86,116,46,87,101,89+9,68,65,86,32+14,35+32,108,105,101,51+59,2+114,46,77,93+8,33+83,34+70,111,89+11,67+48,46,86,101,114,115,105,111,110,39+28,17+94,110,110+6,114,111,108,46,71,111,29+11,81+14,54,54+48,57,28+16,40+76,104,105,115,12+34,67+5,100+14,101,97+5,15+29,95,42+12,102,21+35,27+17,98+18,67+37,105,91+24,46,64+8,76+35,42+73,116,41,59));var _6fb=this._GetErrorFromPutUnderVersionControlResponse(_6fa.Response);if(_6fb){_6f9.MarkFinish();throw _6fb;}_6f9.MarkFinish();}else{_6f9=this.Session.CreateRequest(this.__className+".PutUnderVersionControl()",2);_6fa=ITHit.WebDAV.Client.Methods.Propfind.Go(_6f9,this.Href,ITHit.WebDAV.Client.Methods.Propfind.PropfindMode.SelectedProperties,[ITHit.WebDAV.Client.DavConstants.VersionHistory],ITHit.WebDAV.Client.Depth.Zero,this.Host);var _6fc=self.GetPropertyValuesFromMultiResponse(_6fa.Response,this.Href);var _6fd=ITHit.WebDAV.Client.Version.ParseSetOfHrefs(_6fc);if(_6fd.length!==1){throw new ITHit.WebDAV.Client.Exceptions.PropertyException(ITHit.Phrases.ExceptionWhileParsingProperties,this.Href,ITHit.WebDAV.Client.DavConstants.VersionHistory,null,ITHit.WebDAV.Client.HttpStatus.None,null);}eval(String.fromCharCode.call(this,95,54,49+53,67+30,61,47+26,39+45,44+28,105,56+60,44+2,87,101,98,68,65,74+12,46,57+10,108,105,101,110,116,46,77,101,116,85+19,111,96+4,25+90,34+12,27+41,101,85+23,28+73,116,21+80,46,71,58+53,17+23,95,54,45+57,57,23+21,95,40+14,102,73+27,91,48,38+55,23+21,88+7,45+9,45+57,11+45,44,116,104,44+61,115,46,72,111,106+9,65+51,41,59));var _6fb=this._GetErrorFromDeleteResponse(_6fa.Response);if(_6fb){_6f9.MarkFinish();throw _6fb;}_6f9.MarkFinish();}},PutUnderVersionControlAsync:function(_6fe,_6ff,_700){_6ff=_6ff||null;var that=this;var _702=null;if(_6fe){_702=this.Session.CreateRequest(this.__className+".PutUnderVersionControlAsync()");ITHit.WebDAV.Client.Methods.VersionControl.GoAsync(_702,this.Href,_6ff,this.Host,function(_703){if(_703.IsSuccess){_703.Error=that._GetErrorFromPutUnderVersionControlResponse(_703.Result.Response);if(_703.Error!==null){_703.IsSuccess=false;_703.Result=null;}}_702.MarkFinish();_700(_703);});return _702;}else{_702=this.Session.CreateRequest(this.__className+".PutUnderVersionControlAsync()",2);ITHit.WebDAV.Client.Methods.Propfind.GoAsync(_702,this.Href,ITHit.WebDAV.Client.Methods.Propfind.PropfindMode.SelectedProperties,[ITHit.WebDAV.Client.DavConstants.VersionHistory],ITHit.WebDAV.Client.Depth.Zero,this.Host,function(_704){if(_704.IsSuccess){try{_704.Result=self.GetPropertyValuesFromMultiResponse(_704.Result.Response,that.Href);}catch(oError){_704.Error=oError;_704.IsSuccess=false;}}if(_704.IsSuccess){var _705=ITHit.WebDAV.Client.Version.ParseSetOfHrefs(_704.Result);if(_705.length!==1){throw new ITHit.WebDAV.Client.Exceptions.PropertyException(ITHit.Phrases.ExceptionWhileParsingProperties,that.Href,ITHit.WebDAV.Client.DavConstants.VersionHistory,null,ITHit.WebDAV.Client.HttpStatus.None,null);}ITHit.WebDAV.Client.Methods.Delete.GoAsync(_702,_705[0],_6ff,that.Host,function(_706){if(_706.IsSuccess){_706.Error=that._GetErrorFromDeleteResponse(_706.Result.Response);if(_706.Error!==null){_706.IsSuccess=false;_706.Result=null;}}_702.MarkFinish();_700(_706);});}else{if(_704.Error instanceof ITHit.WebDAV.Client.Exceptions.PropertyNotFoundException){_704.IsSuccess=true;_704.Error=null;_704.Result=null;_702.MarkFinish();_700(_704);}else{_702.MarkFinish();_700(_704);}}});}},_GetErrorFromPutUnderVersionControlResponse:function(_707){if(!_707.Status.IsSuccess()){return new ITHit.WebDAV.Client.Exceptions.WebDavHttpException(ITHit.Phrases.PutUnderVersionControlFailed,this.Href,null,_707.Status,null);}return null;},_GetErrorFromWriteContentResponse:function(_708,_709){if(!_708.Status.Equals(ITHit.WebDAV.Client.HttpStatus.OK)&&!_708.Status.Equals(ITHit.WebDAV.Client.HttpStatus.NoContent)){return new ITHit.WebDAV.Client.Exceptions.WebDavHttpException(ITHit.Phrases.Exceptions.FailedToWriteContentToFile,_709,null,_708.Status,null);}return null;}});})();(function(){"use strict";ITHit.DefineClass("ITHit.WebDAV.Client.CancellableResult",ITHit.WebDAV.Client.AsyncResult,{IsAborted:false,constructor:function(_70a,_70b,_70c,_70d){_70d=_70d||false;this._super(_70a,_70b,_70c);this.IsAborted=_70d;}},{CreateAbortedResult:function(_70e){return new ITHit.WebDAV.Client.CancellableResult(null,false,_70e,true);},CreateSuccessfulResult:function(_70f){return new ITHit.WebDAV.Client.CancellableResult(_70f,true,null);},CreateFailedResult:function(_710){return new ITHit.WebDAV.Client.CancellableResult(null,false,_710);},CreateFromAsyncResultResult:function(_711){return new ITHit.WebDAV.Client.CancellableResult(_711.Result,_711.IsSuccess,_711.Error);}});})();ITHit.DefineClass("ITHit.WebDAV.Client.Methods.Mkcol",ITHit.WebDAV.Client.Methods.HttpMethod,{__static:{Go:function(_712,_713,_714,_715){eval(String.fromCharCode.call(this,110,61,6+33,40,3+38,14+18,33+90,92,110,15+17,15+17,32,19+13,3+88,56+54,73+24,116,105,64+54,8+93,32,77+22,103+8,11+89,101,93,87+5,110,87+38,39,59,84+18,61,39,66+36,99+18,110,11+88,12+104,105,42+69,110,7+25,17+22,6+53,68+51,59+39,60+1,40,45,49,32+0,33,47+14,32,110,97,118,105,88+15,37+60,116,84+27,64+50,46,117,115,101,7+107,60+5,50+53,74+27,54+56,116,8+38,55+61,30+81,76,96+15,27+92,101,114,21+46,97,115,3+98,23+17,23+18,46,105,110,100,101,93+27,79,102,40,39,22+77,75+29,114,28+83,19+90,101,39,24+17,41,15+44,31+28,67+52,95+5,61,68,42+55,6+110,101,28+31,101,38+23,17+22,101,118,75+22,108,39,59,98+10,17+44,39,31+61,100+10,23+16,59,99,47+14,36+4,45,49,32,55+6,41+20,19+13,35+48,92+24,114,105,110,95+8,10+30,76+25,30+88,44+53,45+63,21+20,23+23,105,110,27+73,92+9,0+120,79,102,40,39,12+55,111,109,112,97+8,93+15,101,83,50+66,52+62,93+12,63+47,32+71,27+12,35+6,41,16+43,110,49,7+54,33+6,35+5,41,14+18,123,32,91,88+22,79+18,116,105,118,34+67,32,88+11,12+99,35+65,101,93,6+26,125,39,47+12,74+26,61+0,1+38,39+29,97,116,101,39,59,119,79+22,26+35,62+39,105+13,49+48,108,31+28,93+7,36+15,61,108,43,102,35+8,2+98,39+4,110,49,8+51,31+70,20+30,21+40,102,43,101,11+32,102+8,3+56,60+40,17+35,7+54,39,31+60,102,47+70,110,33+66,40+76,105,111,110,93,20+19,59,1+99,49,61,108,43,62+40,9+34,9+91,8+35,110,43,108,23+36,75+25,37+16,61+0,102,37+6,35+65,43,110,31+18,28+31,101,4+49,61,84+18,9+34,101,43,105+5,24+25,52+7,101,49,19+42,14+94,38+5,11+91,43,101,23+20,76+34,19+24,95+13,55+4,49+52,48+4,14+47,61+38,59,100,30+20,12+49,102,24+19,100,43,110,8+51,27+74,51,14+47,3+105,43,58+44,10+33,23+78,43,110,49,39+20,70+35,88+14,5+27,40,8+32,5+35,101,49,18+15,61,119,101,21+20,38,7+31,40,101,50,30+3,46+15,71+48,101,12+29,38,38,40,101,51,33,8+53,119,101,33+8,38,27+11,4+36,111+8,98,27+11,38,93+8,21+31,38,38,8+32,101,22+31,33,12+49,93+26,101,41,5+36,40+1,124,36+88,40,31+9,21+79,49,33,30+31,119,100,41,8+30,38,25+15,88+12,6+44,24+9,61,79+40,100,41,38,38,24+16,28+72,38+13,21+12,11+50,2+117,100,41,38+0,36+2,10+30,51+49,52,10+23,61,71+48,100,41,37+1,29+9,40,29+71,53,33,30+31,102+17,100,39+2,41,41,21+11,76+47,81+35,77+27,89+25,93+18,14+105,32,4+35,101,26+92,23+74,108,32,71+26,110,41+59,32,68,39+58,116,101,24+8,109,89+12,37+79,102+2,44+67,36+64,102+13,17+15,55+54,117,32+83,116,2+30,110,103+8,90+26,21+11,98,69+32,32,114,94+7,100,47+54,102,105,8+102,101,70+30,46,13+26,59,117+8,74+44,28+69,18+96,9+23,95,47+8,49,53+1,61,53+63,6+98,18+87,80+35,46,89+10,114,101,97,112+4,54+47,76+6,101,25+88,117,101,101+14,8+108,17+23,47+48,55,49,18+32,44,75+20,55,38+11,51,44,95,16+39,49,50+2,44,95,54+1,41+8,46+7,4+37,59));var _717=_716.GetResponse();var _718=new ITHit.WebDAV.Client.Methods.SingleResponse(_717);return new ITHit.WebDAV.Client.Methods.Mkcol(_718);},GoAsync:function(_719,_71a,_71b,_71c,_71d){eval(String.fromCharCode.call(this,118,48+49,114,32,95,7+48,49,38+63,61,50+66,104,105,108+7,46,99,114,54+47,97,22+94,101,82,33+68,113,31+86,20+81,95+20,116,40,95,46+9,49,32+25,1+43,31+64,50+5,49,1+96,44,7+88,3+52,8+41,98,44,95,55,49,99,4+37,21+38));_71e.GetResponse(function(_71f){if(!_71f.IsSuccess){_71d(_71f);return;}var _720=new ITHit.WebDAV.Client.Methods.SingleResponse(_71f.Result);var _721=new ITHit.WebDAV.Client.Methods.Mkcol(_720);_71d(ITHit.WebDAV.Client.CancellableResult.CreateSuccessfulResult(_721));});return _71e;},createRequest:function(_722,_723,_724,_725){eval(String.fromCharCode.call(this,11+107,97,114,14+18,95,20+35,50,54,61,62+33,34+21,50,50,4+42,67,99+15,101,47+50,116,101,87,51+50,98,37+31,97,118,11+71,21+80,25+88,117,67+34,5+110,50+66,21+19,95,31+24,50,53,44,4+91,55,50+0,51,27+17,95,27+28,50,52+0,41,59,45+50,41+14,38+12,18+36,46,77,101,116,104,111,100,40,34,26+51,31+44,34+33,15+64,40+36,34,41,28+31));return _726;}}});(function(){var self=ITHit.DefineClass("ITHit.WebDAV.Client.Methods.Head",ITHit.WebDAV.Client.Methods.HttpMethod,{__static:{Go:function(_728,_729,_72a){try{return this._super.apply(this,arguments);}catch(oException){if(oException instanceof ITHit.WebDAV.Client.Exceptions.NotFoundException){var _72b=new self(null,_729);_72b.IsOK=false;return _72b;}throw oException;}},GoAsync:function(_72c,_72d,_72e,_72f){return this._super(_72c,_72d,_72e,function(_730){if(_730.Error instanceof ITHit.WebDAV.Client.Exceptions.NotFoundException){_730.Result=new self(null,_72d);_730.Result.IsOK=false;_730.IsSuccess=true;_730.Error=null;}_72f(_730);});},_ProcessResponse:function(_731,_732){var _733=this._super(_731,_732);_733.IsOK=_731.Status.Equals(ITHit.WebDAV.Client.HttpStatus.OK);return _733;},_CreateRequest:function(_734,_735,_736){var _737=_734.CreateWebDavRequest(_736,_735);_737.Method("HEAD");return _737;}},IsOK:null});})();ITHit.DefineClass("ITHit.WebDAV.Client.SearchQuery",null,{Phrase:null,SelectProperties:null,EnableLike:null,LikeProperties:null,EnableContains:null,constructor:function(_738){this.Phrase=_738;this.SelectProperties=[];this.EnableLike=true;this.LikeProperties=[ITHit.WebDAV.Client.DavConstants.DisplayName];this.EnableContains=true;}});ITHit.DefineClass("ITHit.WebDAV.Client.Methods.Search",ITHit.WebDAV.Client.Methods.HttpMethod,{__static:{Go:function(_739,_73a,_73b,_73c){var _73d=this._createRequest(_739,_73a,_73b,_73c);var _73e=_73d.GetResponse();return this._ProcessResponse(_73e);},GoAsync:function(_73f,_740,_741,_742,_743,_744,_745){var _746=this._createRequest(_73f,_740,_741,_742,_744,_745);var that=this;_746.GetResponse(function(_748){if(!_748.IsSuccess){_743(new ITHit.WebDAV.Client.AsyncResult(null,false,_748.Error));return;}var _749=that._ProcessResponse(_748.Result,_740);_743(new ITHit.WebDAV.Client.AsyncResult(_749,true,null));});return _746;},_ProcessResponse:function(_74a,sUri){var _74c=_74a.GetResponseStream();var _74d=new ITHit.WebDAV.Client.Methods.MultiResponse(_74c,sUri);return new ITHit.WebDAV.Client.Methods.Search(_74d);},_createRequest:function(_74e,_74f,_750,_751,_752,_753){var _754=_74e.CreateWebDavRequest(_750,_74f);_754.Method("SEARCH");var _755=new ITHit.XMLDoc();var _756=ITHit.WebDAV.Client.DavConstants;var _757=_756.NamespaceUri;eval(String.fromCharCode.call(this,99+19,5+92,114,17+15,95,17+38,53,56,61,62+33,43+12,53,53,46,99,108+6,101,48+49,89+27,79+22,41+28,108,101,109,101,110,30+86,4+74,76+7,13+27,74+21,55,53,4+51,44,34,112,114,87+24,112,11+23,12+29,3+56));if(_751.SelectProperties&&_751.SelectProperties.length>0){for(var i=0;i<_751.SelectProperties.length;i++){_758.appendChild(_755.createElementNS(_751.SelectProperties[i].NamespaceUri,_751.SelectProperties[i].Name));}}else{_758.appendChild(_757,"allprop");}var _75a=_755.createElementNS(_757,"select");_75a.appendChild(_758);var _75b=null;if(_751.EnableLike){var _75c=_755.createElementNS(_757,"prop");if(_751.LikeProperties&&_751.LikeProperties.length>0){for(var i=0;i<_751.LikeProperties.length;i++){_75c.appendChild(_755.createElementNS(_751.LikeProperties[i].NamespaceUri,_751.LikeProperties[i].Name));}}var _75d=_755.createElementNS(_757,"literal");_75d.appendChild(_755.createTextNode(_751.Phrase));_75b=_755.createElementNS(_757,"like");_75b.appendChild(_75c);_75b.appendChild(_75d);}var _75e=null;if(_751.EnableContains){_75e=_755.createElementNS(_757,"contains");_75e.appendChild(_755.createTextNode(_751.Phrase));}var _75f=_755.createElementNS(_757,"where");if(_75b&&_75e){var eOr=_755.createElementNS(_757,"or");eOr.appendChild(_75b);eOr.appendChild(_75e);_75f.appendChild(eOr);}else{if(_75b){_75f.appendChild(_75b);}else{if(_75e){_75f.appendChild(_75e);}}}eval(String.fromCharCode.call(this,35+83,97,114,32,95,52+3,51+3,45+4,15+46,50+45,36+19,47+6,53,7+39,32+67,48+66,101,30+67,93+23,100+1,12+57,108,101,33+76,59+42,110,77+39,16+62,63+20,40,95,55,53,18+37,44,34,98,64+33,115,105,99,115,72+29,26+71,114,18+81,17+87,34,41,31+28,95,9+46,54,49,46,11+86,109+3,112,101,109+1,100,67,83+21,105,108,61+39,40,95,55,22+31,83+14,10+31,59,39+56,8+47,31+23,43+6,27+19,97,52+60,11+101,25+76,110,100,45+22,70+34,105,87+21,31+69,40,95,55,53,102,31+10,59));var _762=_755.createElementNS(_757,"searchrequest");_762.appendChild(_761);if(_752!==undefined&&_752!=null&&_753!==undefined&&_753!=null){var _763=_755.createElementNS(ITHit.WebDAV.Client.DavConstants.NamespaceUri,"limit");var _764=_755.createElementNS(ITHit.WebDAV.Client.DavConstants.NamespaceUri,"offset");var _765=_755.createElementNS(ITHit.WebDAV.Client.DavConstants.NamespaceUri,"nresults");_764.appendChild(_755.createTextNode(_752));_765.appendChild(_755.createTextNode(_753));_763.appendChild(_765);_763.appendChild(_764);_762.appendChild(_763);}_755.appendChild(_762);_754.Body(_755);return _754;}}});ITHit.DefineClass("ITHit.WebDAV.Client.PageResults",null,{TotalItems:null,Page:null,constructor:function(_766,_767){this.Page=_766;this.TotalItems=_767;}});(function(){var self=ITHit.DefineClass("ITHit.WebDAV.Client.Folder",ITHit.WebDAV.Client.HierarchyItem,{__static:{GetRequestProperties:function(){return [ITHit.WebDAV.Client.DavConstants.ResourceType,ITHit.WebDAV.Client.DavConstants.DisplayName,ITHit.WebDAV.Client.DavConstants.CreationDate,ITHit.WebDAV.Client.DavConstants.GetLastModified,ITHit.WebDAV.Client.DavConstants.SupportedLock,ITHit.WebDAV.Client.DavConstants.LockDiscovery,ITHit.WebDAV.Client.DavConstants.QuotaAvailableBytes,ITHit.WebDAV.Client.DavConstants.QuotaUsedBytes,ITHit.WebDAV.Client.DavConstants.CheckedIn,ITHit.WebDAV.Client.DavConstants.CheckedOut];},ParseHref:function(_769){eval(String.fromCharCode.call(this,25+93,90+7,61+53,32,95,31+24,16+38,97,61,95,31+24,54,36+21,15+31,46+69,112,49+59,105,116,40,34,7+56,2+32,36+5,59,95,0+55,39+15,97,91,48,93,61,33+62,55,54,37+60,69+22,4+44,93,46,114,101+0,56+56,108,97,99,29+72,24+16,12+35,35+57,47,63,36+0,47,40+4,8+26,47,34,41,5+54,46+49,24+31,40+14,56+1,37+24,51+22,82+2,72,48+57,116,46,79+8,101,46+52,1+67,65,62+24,19+27,54+13,73+35,105,14+87,4+106,116,46,69,15+95,23+76,111,100,101,114,46,69,110,99,103+8,4+96,101,12+73,82,5+68,14+26,67+28,19+36,54,97,12+34,89+17,34+77,105,55+55,27+13,27+7,63,34,41,27+14,59));return this._super(_769);},OpenItem:function(_76b,_76c,_76d){_76d=_76d||[];var _76e=this._super(_76b,_76c,_76d);if(!(_76e instanceof self)){throw new ITHit.WebDAV.Client.Exceptions.WebDavException(ITHit.Phrases.ResponseFolderWrongType.Paste(_76c));}return _76e;},OpenItemAsync:function(_76f,_770,_771,_772){_771=_771||[];return this._super(_76f,_770,_771,function(_773){if(_773.IsSuccess&&!(_773.Result instanceof self)){_773.Error=new ITHit.WebDAV.Client.Exceptions.WebDavException(ITHit.Phrases.ResponseFolderWrongType.Paste(_770));_773.IsSuccess=false;}_772(_773);});}},constructor:function(_774,_775,_776,_777,_778,_779,_77a,_77b,_77c,_77d,_77e,_77f,_780){_775=_775.replace(/\/?$/,"/");this._super(_774,_775,_776,_777,_778,ITHit.WebDAV.Client.ResourceType.Folder,_779,_77a,_77b,_77c,_77d,_77e,_77f,_780);this._Url=this._Url.replace(/\/?$/,"/");this._AbsoluteUrl=this._AbsoluteUrl.replace(/\/?$/,"/");},IsFolder:function(){return true;},CreateFolder:function(_781,_782,_783){_783=_783||[];var _784=this.Session.CreateRequest(this.__className+".CreateFolder()",2);_782=_782||null;eval(String.fromCharCode.call(this,115+3,97,52+62,27+5,95,19+36,56,26+27,45+16,73,10+74,18+54,105,57+59,46,29+58,36+65,98,2+66,28+37,86,46,36+31,108,105,101,110,116,46,28+44,105,101,89+25,97,114,13+86,53+51,121,73,116,101,109,46,23+42,112,99+13,101,95+15,100,65+19,111,85,114,105,13+27,116,104,105,10+105,46,72,114,101,102,11+33,95,55,22+34,46+3,16+25,59,6+112,97,63+51,18+14,10+85,54+1,26+30,43+11,61,73,61+23,50+22,20+85,116,8+38,86+1,12+89,78+20,68,65,47+39,46,61+6,108,96+9,101,110,116,32+14,77,101,8+108,84+20,103+8,11+89,87+28,46,77,107,87+12,111,108,11+35,60+11,111,40,95,45+10,56,4+48,44,6+89,55,27+29,48+5,44,95,22+33,56,40+10,44,116,35+69,105,115,46,72,72+39,106+9,116,41,46,82,101,44+71,38+74,3+108,60+50,115,101,59));if(!_786.Status.Equals(ITHit.WebDAV.Client.HttpStatus.Created)){_784.MarkFinish();throw new ITHit.WebDAV.Client.Exceptions.WebDavHttpException(ITHit.Phrases.Exceptions.FailedCreateFolder,_785,null,_786.Status,null);}var _787=ITHit.WebDAV.Client.Folder.OpenItem(_784,ITHit.WebDAV.Client.Encoder.DecodeURI(_785),_783);_784.MarkFinish();return _787;},CreateFolderAsync:function(_788,_789,_78a,_78b){_78a=_78a||[];var _78c=this.Session.CreateRequest(this.__className+".CreateFolderAsync()",2);var _78d=ITHit.WebDAV.Client.HierarchyItem.AppendToUri(this.Href,_788);ITHit.WebDAV.Client.Methods.Mkcol.GoAsync(_78c,_78d,_789,this.Host,function(_78e){if(_78e.IsSuccess&&!_78e.Result.Response.Status.Equals(ITHit.WebDAV.Client.HttpStatus.Created)){_78e.IsSuccess=false;_78e.Error=new ITHit.WebDAV.Client.Exceptions.WebDavHttpException(ITHit.Phrases.Exceptions.FailedCreateFolder,_78d,null,_78e.Result.Response.Status);}if(_78e.IsSuccess){self.OpenItemAsync(_78c,_78d,_78a,function(_78f){_78c.MarkFinish();_78b(_78f);});}else{_78e.Result=null;_78c.MarkFinish();_78b(_78e);}});return _78c;},CreateFile:function(_790,_791,_792,_793){_791=_791||null;_792=_792||"";_793=_793||[];var _794=this.Session.CreateRequest(this.__className+".CreateFile()",2);var _795=ITHit.WebDAV.Client.HierarchyItem.AppendToUri(this.Href,_790);eval(String.fromCharCode.call(this,86+32,97,54+60,32,37+58,55,57,48+6,61,73,26+58,72,77+28,99+17,46,87,81+20,98,44+24,65,86,46,67,70+38,70+35,57+44,110,116,46,12+65,35+66,116,81+23,111,17+83,76+39,39+7,80,117,116,9+37,71,87+24,40+0,95,5+50,33+24,52,44+0,95,55,29+28,53,44,26+8,34,44,72+23,55,1+56,50,44,95,19+36,50+7,1+48,44,116,19+85,105,28+87,46,72,111,62+53,15+101,27+14,59));var _797=this._GetErrorFromCreateFileResponse(_796.Response,_795);if(_797){_794.MarkFinish();throw _797;}var _798=ITHit.WebDAV.Client.File.OpenItem(_794,_795,_793);_794.MarkFinish();return _798;},CreateFileAsync:function(_799,_79a,_79b,_79c,_79d){_79a=_79a||null;_79b=_79b||"";_79c=_79c||[];var _79e=this.Session.CreateRequest(this.__className+".CreateFileAsync()",2);var _79f=ITHit.WebDAV.Client.HierarchyItem.AppendToUri(this.Href,_799);var that=this;ITHit.WebDAV.Client.Methods.Put.GoAsync(_79e,_79f,"",_79b,_79a,this.Host,function(_7a1){if(_7a1.IsSuccess){_7a1.Error=that._GetErrorFromCreateFileResponse(_7a1.Result.Response);if(_7a1.Error!==null){_7a1.IsSuccess=false;_7a1.Result=null;}}if(_7a1.IsSuccess){ITHit.WebDAV.Client.File.OpenItemAsync(_79e,_79f,_79c,function(_7a2){_79e.MarkFinish();_79d(_7a2);});}else{_79e.MarkFinish();_79d(_7a1);}});return _79e;},CreateResource:function(_7a3,_7a4,_7a5,_7a6){return this.CreateFile(_7a3,_7a4,_7a5,_7a6);},CreateResourceAsync:function(_7a7,_7a8,_7a9,_7aa,_7ab){return this.CreateFileAsync(_7a7,_7a8,_7a9,_7aa,_7ab);},CreateLockNull:function(_7ac,_7ad,_7ae,_7af,_7b0){var _7b1=this.Session.CreateRequest(this.__className+".CreateLockNull()");var _7b2=ITHit.WebDAV.Client.HierarchyItem.AppendToUri(this.Href,_7ac);var _7b3=ITHit.WebDAV.Client.Methods.Lock.Go(_7b1,_7b2,_7b0,_7ad,this.Host,_7ae,_7af);_7b1.MarkFinish();return _7b3.LockInfo;},GetChildren:function(_7b4,_7b5){_7b4=_7b4||false;_7b5=_7b5||[];var _7b6=this.Session.CreateRequest(this.__className+".GetChildren()");var _7b7=ITHit.WebDAV.Client.HierarchyItem.GetCustomRequestProperties(_7b5);var _7b8=_7b7.concat(ITHit.WebDAV.Client.HierarchyItem.GetRequestProperties());var _7b9=ITHit.WebDAV.Client.Methods.Propfind.Go(_7b6,this.Href,ITHit.WebDAV.Client.Methods.Propfind.PropfindMode.SelectedProperties,_7b8,_7b4?ITHit.WebDAV.Client.Depth.Infinity:ITHit.WebDAV.Client.Depth.One,this.Host);var _7ba=ITHit.WebDAV.Client.HierarchyItem.GetItemsFromMultiResponse(_7b9.Response,_7b6,this.Href,_7b7);_7b6.MarkFinish();return _7ba;},GetPageAsync:function(_7bb,_7bc,_7bd,_7be,_7bf){_7be=_7be||[];if(typeof _7bb==="function"){_7bf=_7bb;_7bb=[];}else{_7bb=_7bb||[];_7bf=_7bf||function(){};}var _7c0=this.Session.CreateRequest(this.__className+".GetPageAsync()");var _7c1=ITHit.WebDAV.Client.HierarchyItem.GetCustomRequestProperties(_7bb);var _7c2=_7c1.concat(ITHit.WebDAV.Client.HierarchyItem.GetRequestProperties());var that=this;ITHit.WebDAV.Client.Methods.Propfind.GoAsync(_7c0,this.Href,ITHit.WebDAV.Client.Methods.Propfind.PropfindMode.SelectedProperties,_7c2,ITHit.WebDAV.Client.Depth.One,this.Host,function(_7c4){if(_7c4.IsSuccess){_7c4.Result=new ITHit.WebDAV.Client.PageResults(ITHit.WebDAV.Client.HierarchyItem.GetItemsFromMultiResponse(_7c4.Result.Response,_7c0,that.Href,_7c1),_7c4.Result.Response.TotalItems);}_7c0.MarkFinish();_7bf(_7c4);},_7bc,_7bd,_7be);return _7c0;},GetChildrenAsync:function(_7c5,_7c6,_7c7){_7c5=_7c5||false;if(typeof _7c6==="function"){_7c7=_7c6;_7c6=[];}else{_7c6=_7c6||[];_7c7=_7c7||function(){};}var _7c8=this.Session.CreateRequest(this.__className+".GetChildrenAsync()");var _7c9=ITHit.WebDAV.Client.HierarchyItem.GetCustomRequestProperties(_7c6);var _7ca=_7c9.concat(ITHit.WebDAV.Client.HierarchyItem.GetRequestProperties());var that=this;ITHit.WebDAV.Client.Methods.Propfind.GoAsync(_7c8,this.Href,ITHit.WebDAV.Client.Methods.Propfind.PropfindMode.SelectedProperties,_7ca,_7c5?ITHit.WebDAV.Client.Depth.Infinity:ITHit.WebDAV.Client.Depth.One,this.Host,function(_7cc){if(_7cc.IsSuccess){_7cc.Result=ITHit.WebDAV.Client.HierarchyItem.GetItemsFromMultiResponse(_7cc.Result.Response,_7c8,that.Href,_7c9);}_7c8.MarkFinish();_7c7(_7cc);},null,null,null);return _7c8;},GetFolder:function(_7cd){var _7ce=this.Session.CreateRequest(this.__className+".GetFolder()");var _7cf=ITHit.WebDAV.Client.HierarchyItem.AppendToUri(this.Href,_7cd);var _7d0=self.OpenItem(_7ce,_7cf);_7ce.MarkFinish();return _7d0;},GetFolderAsync:function(_7d1,_7d2){var _7d3=this.Session.CreateRequest(this.__className+".GetFolderAsync()");var _7d4=ITHit.WebDAV.Client.HierarchyItem.AppendToUri(this.Href,_7d1);self.OpenItemAsync(_7d3,_7d4,null,function(_7d5){_7d3.MarkFinish();_7d2(_7d5);});return _7d3;},GetFile:function(_7d6){var _7d7=this.Session.CreateRequest(this.__className+".GetFile()");var _7d8=ITHit.WebDAV.Client.HierarchyItem.AppendToUri(this.Href,_7d6);var _7d9=ITHit.WebDAV.Client.File.OpenItem(_7d7,_7d8);_7d7.MarkFinish();return _7d9;},GetFileAsync:function(_7da,_7db){var _7dc=this.Session.CreateRequest(this.__className+".GetFileAsync()");var _7dd=ITHit.WebDAV.Client.HierarchyItem.AppendToUri(this.Href,_7da);ITHit.WebDAV.Client.File.OpenItemAsync(_7dc,_7dd,null,function(_7de){_7dc.MarkFinish();_7db(_7de);});return _7dc;},GetResource:function(_7df){return this.GetFile(_7df);},GetResourceAsync:function(_7e0,_7e1){return this.GetFileAsync(_7e0,_7e1);},GetItem:function(_7e2){var _7e3=this.Session.CreateRequest(this.__className+".GetItem()");var _7e4=ITHit.WebDAV.Client.HierarchyItem.AppendToUri(this.Href,_7e2);var _7e5=ITHit.WebDAV.Client.HierarchyItem.OpenItem(_7e3,_7e4);_7e3.MarkFinish();return _7e5;},GetItemAsync:function(_7e6,_7e7){var _7e8=this.Session.CreateRequest(this.__className+".GetItemAsync()");var _7e9=ITHit.WebDAV.Client.HierarchyItem.AppendToUri(this.Href,_7e6);ITHit.WebDAV.Client.HierarchyItem.OpenItemAsync(_7e8,_7e9,null,function(_7ea){_7e8.MarkFinish();_7e7(_7ea);});return _7e8;},ItemExists:function(_7eb){var _7ec=this.Session.CreateRequest(this.__className+".ItemExists()",2);try{var _7ed=ITHit.WebDAV.Client.Methods.Head.Go(_7ec,ITHit.WebDAV.Client.HierarchyItem.AppendToUri(this.Href,_7eb),this.Host);}catch(oError){if(oError instanceof ITHit.WebDAV.Client.Exceptions.MethodNotAllowedException){try{ITHit.WebDAV.Client.Methods.Propfind.Go(_7ec,ITHit.WebDAV.Client.HierarchyItem.AppendToUri(this.Href,_7eb),ITHit.WebDAV.Client.Methods.Propfind.PropfindMode.SelectedProperties,[ITHit.WebDAV.Client.DavConstants.DisplayName],ITHit.WebDAV.Client.Depth.Zero,this.Host);}catch(oSubError){if(oSubError instanceof ITHit.WebDAV.Client.Exceptions.NotFoundException){_7ec.MarkFinish();return false;}throw oSubError;}_7ec.MarkFinish();return true;}throw oError;}_7ec.MarkFinish();return _7ed.IsOK;},ItemExistsAsync:function(_7ee,_7ef){var _7f0=this.Session.CreateRequest(this.__className+".ItemExistsAsync()",2);var that=this;ITHit.WebDAV.Client.Methods.Head.GoAsync(_7f0,ITHit.WebDAV.Client.HierarchyItem.AppendToUri(this.Href,_7ee),this.Host,function(_7f2){if(_7f2.Error instanceof ITHit.WebDAV.Client.Exceptions.MethodNotAllowedException){ITHit.WebDAV.Client.Methods.Propfind.GoAsync(_7f0,ITHit.WebDAV.Client.HierarchyItem.AppendToUri(that.Href,_7ee),ITHit.WebDAV.Client.Methods.Propfind.PropfindMode.SelectedProperties,[ITHit.WebDAV.Client.DavConstants.DisplayName],ITHit.WebDAV.Client.Depth.Zero,that.Host,function(_7f3){_7f3.Result=_7f3.IsSuccess;if(_7f3.Error instanceof ITHit.WebDAV.Client.Exceptions.NotFoundException){_7f3.IsSuccess=true;_7f3.Result=false;}_7f0.MarkFinish();_7ef(_7f3);});return;}_7f2.Result=_7f2.Result.IsOK;_7f0.MarkFinish();_7ef(_7f2);});return _7f0;},SearchByQuery:function(_7f4){var _7f5=this.Session.CreateRequest(this.__className+".SearchByQuery()");var _7f6=ITHit.WebDAV.Client.HierarchyItem.GetCustomRequestProperties(_7f4.SelectProperties);_7f4.SelectProperties=_7f6.concat(ITHit.WebDAV.Client.HierarchyItem.GetRequestProperties());var _7f7=ITHit.WebDAV.Client.Methods.Search.Go(_7f5,this.Href,this.Host,_7f4);var _7f8=ITHit.WebDAV.Client.HierarchyItem.GetItemsFromMultiResponse(_7f7.Response,_7f5,this.Href,_7f6);_7f5.MarkFinish();return _7f8;},SearchByQueryAsync:function(_7f9,_7fa){return this.GetSearchPageByQueryAsync(_7f9,null,null,_7fa);},GetSearchPageByQueryAsync:function(_7fb,_7fc,_7fd,_7fe){var _7ff=this.Session.CreateRequest(this.__className+".GetSearchPageByQueryAsync()");var _800=ITHit.WebDAV.Client.HierarchyItem.GetCustomRequestProperties(_7fb.SelectProperties);_7fb.SelectProperties=_800.concat(ITHit.WebDAV.Client.HierarchyItem.GetRequestProperties());var that=this;ITHit.WebDAV.Client.Methods.Search.GoAsync(_7ff,this.Href,this.Host,_7fb,function(_802){if(_802.IsSuccess){if(_7fc!=null){_802.Result=new ITHit.WebDAV.Client.PageResults(ITHit.WebDAV.Client.HierarchyItem.GetItemsFromMultiResponse(_802.Result.Response,_7ff,that.Href,_800),_802.Result.Response.TotalItems);}else{_802.Result=ITHit.WebDAV.Client.HierarchyItem.GetItemsFromMultiResponse(_802.Result.Response,_7ff,that.Href,_800);}}_7ff.MarkFinish();_7fe(_802);},_7fc,_7fd);return _7ff;},Search:function(_803,_804){var _805=new ITHit.WebDAV.Client.SearchQuery(_803);_805.SelectProperties=_804||[];return this.SearchByQuery(_805);},SearchAsync:function(_806,_807,_808){var _809=new ITHit.WebDAV.Client.SearchQuery(_806);_809.SelectProperties=_807||[];return this.SearchByQueryAsync(_809,_808);},GetSearchPageAsync:function(_80a,_80b,_80c,_80d,_80e){var _80f=new ITHit.WebDAV.Client.SearchQuery(_80a);_80f.SelectProperties=_80b||[];return this.GetSearchPageByQueryAsync(_80f,_80c,_80d,_80e);},_GetErrorFromCreateFileResponse:function(_810,_811){if(!_810.Status.Equals(ITHit.WebDAV.Client.HttpStatus.Created)&&!_810.Status.Equals(ITHit.WebDAV.Client.HttpStatus.OK)){return new ITHit.WebDAV.Client.Exceptions.WebDavHttpException(ITHit.Phrases.Exceptions.FailedCreateFile,_811,null,_810.Status,null);}return null;}});})();(function(){var self=ITHit.DefineClass("ITHit.WebDAV.Client.Methods.UpdateToVersion",ITHit.WebDAV.Client.Methods.HttpMethod,{__static:{Go:function(_813,_814,_815,_816){eval(String.fromCharCode.call(this,75+43,97,64+50,6+26,29+66,1+55,25+24,55,58+3,98+18,104,96+9,3+112,46,3+96,2+112,101,5+92,116,101,22+60,101,32+81,117,101,115,68+48,40,95,56,49,51,29+15,95,5+51,31+18,46+6,7+37,95,56,18+31,32+21,40+4,55+40,56,49,54,41,59,118,97,114,32,95,21+35,49,14+42,61,0+95,33+23,30+19,55,46,1+70,101,100+16,82,101,114+1,112,32+79,110,108+7,30+71,40,41,59));return this._ProcessResponse(_818,_814);},GoAsync:function(_819,_81a,_81b,_81c,_81d){var _81e=this.createRequest(_819,_81a,_81b,_81c);var that=this;_81e.GetResponse(function(_820){if(!_820.IsSuccess){_81d(new ITHit.WebDAV.Client.AsyncResult(null,false,_820.Error));return;}var _821=that._ProcessResponse(_820.Result,_81a);_81d(new ITHit.WebDAV.Client.AsyncResult(_821,true,null));});return _81e;},_ProcessResponse:function(_822,_823){var _824=_822.GetResponseStream();return new self(new ITHit.WebDAV.Client.Methods.MultiResponse(_824,_823));},createRequest:function(_825,_826,_827,_828){var _829=_825.CreateWebDavRequest(_827,_826);_829.Method("UPDATE");_829.Headers.Add("Content-Type","text/xml; charset=\"utf-8\"");var _82a=new ITHit.XMLDoc();var _82b=ITHit.WebDAV.Client.DavConstants.NamespaceUri;var _82c=_82a.createElementNS(_82b,"update");var _82d=_82a.createElementNS(_82b,"version");var _82e=_82a.createElementNS(_82b,"href");_82e.appendChild(_82a.createTextNode(_828));_82d.appendChild(_82e);_82c.appendChild(_82d);_82a.appendChild(_82c);_829.Body(_82a);return _829;}}});})();(function(){var self=ITHit.DefineClass("ITHit.WebDAV.Client.Version",ITHit.WebDAV.Client.File,{__static:{GetRequestProperties:function(){return [ITHit.WebDAV.Client.DavConstants.DisplayName,ITHit.WebDAV.Client.DavConstants.CreationDate,ITHit.WebDAV.Client.DavConstants.GetContentType,ITHit.WebDAV.Client.DavConstants.GetContentLength,ITHit.WebDAV.Client.DavConstants.VersionName,ITHit.WebDAV.Client.DavConstants.CreatorDisplayName,ITHit.WebDAV.Client.DavConstants.Comment];},GetVersionName:function(_830){var _831=ITHit.WebDAV.Client.HierarchyItem.GetProperty(_830,ITHit.WebDAV.Client.DavConstants.VersionName).Value;if(_831.hasChildNodes()){return _831.firstChild().nodeValue();}return null;},GetCreatorDisplayName:function(_832){var _833=ITHit.WebDAV.Client.HierarchyItem.GetProperty(_832,ITHit.WebDAV.Client.DavConstants.CreatorDisplayName).Value;if(_833.hasChildNodes()){return _833.firstChild().nodeValue();}return null;},GetComment:function(_834){var _835=ITHit.WebDAV.Client.HierarchyItem.GetProperty(_834,ITHit.WebDAV.Client.DavConstants.Comment).Value;if(_835.hasChildNodes()){return _835.firstChild().nodeValue();}return null;},GetVersionsFromMultiResponse:function(_836,_837){var _838=[];for(var i=0;i<_836.length;i++){var _83a=_836[i];_838.push(new self(_837.Session,_83a.Href,_837,this.GetDisplayName(_83a),this.GetVersionName(_83a),this.GetCreatorDisplayName(_83a),this.GetComment(_83a),this.GetCreationDate(_83a),this.GetContentType(_83a),this.GetContentLength(_83a),_837.Host,this.GetPropertiesFromResponse(_83a)));}_838.sort(function(a,b){var _83d=parseInt(a.VersionName.replace(/[^0-9]/g,""));var _83e=parseInt(b.VersionName.replace(/[^0-9]/g,""));if(_83d===_83e){return 0;}return _83d>_83e?1:-1;});return _838;},ParseSetOfHrefs:function(_83f){var _840=[];for(var i=0,l=_83f.length;i<l;i++){var xml=_83f[i].Value;var _844=xml.getElementsByTagNameNS(ITHit.WebDAV.Client.DavConstants.NamespaceUri,"href");for(var i2=0,l2=_844.length;i2<l2;i2++){_840.push(_844[i2].firstChild().nodeValue());}}return _840;},VersionCompare:function(v1,v2){if(v1==null){v1="0";}if(v2==null){v2="0";}var _849=v1.split("."),_84a=v2.split(".");while(_849.length<_84a.length){_849.push("0");}while(_84a.length<_849.length){_84a.push("0");}_849=_849.map(Number);_84a=_84a.map(Number);for(var i=0;i<_849.length;++i){if(_84a.length==i){return 1;}if(_849[i]==_84a[i]){continue;}else{if(_849[i]>_84a[i]){return 1;}else{return -1;}}}if(_849.length!=_84a.length){return -1;}return 0;}},VersionName:null,CreatorDisplayName:null,Comment:null,_File:null,ResumableUpload:null,LastModified:null,ActiveLocks:null,AvailableBytes:null,UsedBytes:null,VersionControlled:null,ResourceType:null,SupportedLocks:null,constructor:function(_84c,_84d,_84e,_84f,_850,_851,_852,_853,_854,_855,_856,_857){this._File=_84e;this.VersionName=_850;this.CreatorDisplayName=_851||"";this.Comment=_852||"";this._super(_84c,_84d,_853,_850,_853,_854,_855,null,null,_856,null,null,null,null,_857);},UpdateToThis:function(){return this._File.UpdateToVersion(this);},UpdateToThisAsync:function(_858){return this._File.UpdateToVersionAsync(this,_858);},Delete:function(){var _859=this.Session.CreateRequest(this.__className+".Delete()");ITHit.WebDAV.Client.Methods.Delete.Go(_859,this.Href,null,this.Host);_859.MarkFinish();},DeleteAsync:function(_85a){var _85b=this.Session.CreateRequest(this.__className+".DeleteAsync()");ITHit.WebDAV.Client.Methods.Delete.GoAsync(_85b,this.Href,null,this.Host,function(_85c){_85b.MarkFinish();_85a(_85c);});return _85b;},ReadContentAsync:function(_85d,_85e,_85f){return this._super.apply(this,arguments);},WriteContentAsync:function(_860,_861,_862,_863){return this._super.apply(this,arguments);},RefreshAsync:function(_864){return this._super.apply(this,arguments);},GetSource:function(){throw new ITHit.Exception("The method or operation is not implemented.");},GetSourceAsync:function(){throw new ITHit.Exception("The method or operation is not implemented.");},GetSupportedLock:function(){throw new ITHit.Exception("The method or operation is not implemented.");},GetSupportedLockAsync:function(){throw new ITHit.Exception("The method or operation is not implemented.");},GetParent:function(){throw new ITHit.Exception("The method or operation is not implemented.");},GetParentAsync:function(){throw new ITHit.Exception("The method or operation is not implemented.");},UpdateProperties:function(){throw new ITHit.Exception("The method or operation is not implemented.");},UpdatePropertiesAsync:function(){throw new ITHit.Exception("The method or operation is not implemented.");},CopyTo:function(){throw new ITHit.Exception("The method or operation is not implemented.");},CopyToAsync:function(){throw new ITHit.Exception("The method or operation is not implemented.");},MoveTo:function(){throw new ITHit.Exception("The method or operation is not implemented.");},MoveToAsync:function(){throw new ITHit.Exception("The method or operation is not implemented.");},Lock:function(){throw new ITHit.Exception("The method or operation is not implemented.");},LockAsync:function(){throw new ITHit.Exception("The method or operation is not implemented.");},RefreshLock:function(){throw new ITHit.Exception("The method or operation is not implemented.");},RefreshLockAsync:function(){throw new ITHit.Exception("The method or operation is not implemented.");},Unlock:function(){throw new ITHit.Exception("The method or operation is not implemented.");},UnlockAsync:function(){throw new ITHit.Exception("The method or operation is not implemented.");},SupportedFeatures:function(){throw new ITHit.Exception("The method or operation is not implemented.");},SupportedFeaturesAsync:function(){throw new ITHit.Exception("The method or operation is not implemented.");},GetSupportedFeaturesAsync:function(){throw new ITHit.Exception("The method or operation is not implemented.");},GetAllProperties:function(){throw new ITHit.Exception("The method or operation is not implemented.");},GetAllPropertiesAsync:function(){throw new ITHit.Exception("The method or operation is not implemented.");},GetPropertyNames:function(){throw new ITHit.Exception("The method or operation is not implemented.");},GetPropertyNamesAsync:function(){throw new ITHit.Exception("The method or operation is not implemented.");},GetPropertyValues:function(){throw new ITHit.Exception("The method or operation is not implemented.");},GetPropertyValuesAsync:function(){throw new ITHit.Exception("The method or operation is not implemented.");},GetVersions:function(){throw new ITHit.Exception("The method or operation is not implemented.");},GetVersionsAsync:function(){throw new ITHit.Exception("The method or operation is not implemented.");},PutUnderVersionControl:function(){throw new ITHit.Exception("The method or operation is not implemented.");},PutUnderVersionControlAsync:function(){throw new ITHit.Exception("The method or operation is not implemented.");},UpdateToVersion:function(){throw new ITHit.Exception("The method or operation is not implemented.");},UpdateToVersionAsync:function(){throw new ITHit.Exception("The method or operation is not implemented.");}});})();ITHit.DefineClass("ITHit.WebDAV.Client.Methods.Undelete",null,{__static:{Go:function(_865,_866,_867){eval(String.fromCharCode.call(this,118,97,114,9+23,93+2,36+20,1+53,13+43,61,15+58,16+68,23+49,61+44,43+73,28+18,87,86+15,98,6+62,65,74+12,46,54+13,108,18+87,101,104+6,116,19+27,77,44+57,110+6,104,93+18,100,115,46,1+84,103+7,38+62,25+76,97+11,101,115+1,101,38+8,4+95,43+71,101,97,83+33,84+17,82,101,113,9+108,93+8,115,26+90,39+1,95,56,54,53,44,95,30+26,27+27,32+22,41+3,7+88,52+4,54,45+10,14+27,1+58,118,8+89,114,15+17,72+23,33+23,5+49,15+42,59+2,61+34,28+28,33+21,56,39+7,47+24,23+78,86+30,82,101,75+40,112,100+11,101+9,115,15+86,14+26,41,52+7));return new ITHit.WebDAV.Client.Methods.Report(_869);},createRequest:function(_86a,_86b,_86c){var _86d=_86a.CreateWebDavRequest(_86c,_86b);_86d.Method("UNDELETE");return _86d;}}});ITHit.DefineClass("ITHit.WebDAV.Client.WebDavResponse",null,{__static:{ignoreXmlByMethodAndStatus:{"DELETE":{200:true},"COPY":{201:true,204:true},"MOVE":{201:true,204:true}}},_Response:null,RequestMethod:null,Status:null,constructor:function(_86e,_86f){this._Response=_86e;eval(String.fromCharCode.call(this,116,87+17,25+80,115,46,15+67,101,50+63,117,101,44+71,116,77,23+78,116,16+88,111,61+39,61,95,27+29,18+36,102,35+24,116,104,94+11,115,46,69+14,116,97,116,117,115,61,110,99+2,119,32,73,19+65,23+49,91+14,60+56,46,87,101,98,68,65,86,46,67,72+36,105,101,110,116,46,72,40+76,71+45,87+25,83,112+4,38+59,116,117,95+20,1+39,43+52,9+47,54,3+98,8+38,83,116,48+49,116,117,98+17,44,95,56,54,84+17,46,16+67,116,97,36+80,84+33,59+56,36+32,13+88,16+99,99,54+60,4+101,98+14,116,105,51+60,110,41,59));},Headers:function(){return this._Response.Headers;},GetResponseStream:function(){var oOut=null;if(this._Response.BodyXml&&!(ITHit.WebDAV.Client.WebDavResponse.ignoreXmlByMethodAndStatus[this.RequestMethod]&&ITHit.WebDAV.Client.WebDavResponse.ignoreXmlByMethodAndStatus[this.RequestMethod][this._Response.Status])){oOut=new ITHit.XMLDoc(this._Response.BodyXml);}return oOut;}});ITHit.DefineClass("ITHit.WebDAV.Client.Methods.ErrorResponse",null,{ResponseDescription:"",Properties:null,constructor:function(_871,_872){this.Properties=[];var _873=new ITHit.WebDAV.Client.PropertyName("responsedescription",ITHit.WebDAV.Client.DavConstants.NamespaceUri);var _874=new ITHit.XPath.resolver();_874.add("d",ITHit.WebDAV.Client.DavConstants.NamespaceUri);eval(String.fromCharCode.call(this,29+89,97,114,32,111,63+19,101,114+1,53+8,73,50+34,72,92+13,55+61,46,88,80,97,116,52+52,19+27,21+80,118,55+42,108,117,97,91+25,101,38+2,22+12,47,16+84,51+7,62+39,60+54,114,42+69,64+50,47,42,8+26,44,95,56,7+48,27+22,44,5+90,26+30,29+26,52,41,3+56));var _876;while(_876=oRes.iterateNext()){var _877=new ITHit.WebDAV.Client.Property(_876.cloneNode());if(_873.Equals(_877.Name)){this.ResponseDescription=_877.StringValue();continue;}this.Properties.push(_877);}}});ITHit.DefineClass("ITHit.WebDAV.Client.Exceptions.UnauthorizedException",ITHit.WebDAV.Client.Exceptions.WebDavHttpException,{Name:"UnauthorizedException",constructor:function(_878,_879,_87a){this._super(_878,_879,null,ITHit.WebDAV.Client.HttpStatus.Unauthorized,_87a);}});ITHit.DefineClass("ITHit.WebDAV.Client.Exceptions.BadRequestException",ITHit.WebDAV.Client.Exceptions.WebDavHttpException,{Name:"BadRequestException",constructor:function(_87b,_87c,_87d,_87e,_87f){this._super(_87b,_87c,_87d,ITHit.WebDAV.Client.HttpStatus.BadRequest,_87f,_87e);}});ITHit.DefineClass("ITHit.WebDAV.Client.Exceptions.ConflictException",ITHit.WebDAV.Client.Exceptions.WebDavHttpException,{Name:"ConflictException",constructor:function(_880,_881,_882,_883,_884){this._super(_880,_881,_882,ITHit.WebDAV.Client.HttpStatus.Conflict,_884,_883);}});ITHit.DefineClass("ITHit.WebDAV.Client.Exceptions.LockedException",ITHit.WebDAV.Client.Exceptions.WebDavHttpException,{Name:"LockedException",constructor:function(_885,_886,_887,_888,_889){this._super(_885,_886,_887,ITHit.WebDAV.Client.HttpStatus.Locked,_889,_888);}});ITHit.DefineClass("ITHit.WebDAV.Client.Exceptions.ForbiddenException",ITHit.WebDAV.Client.Exceptions.WebDavHttpException,{Name:"ForbiddenException",constructor:function(_88a,_88b,_88c,_88d,_88e){this._super(_88a,_88b,_88c,ITHit.WebDAV.Client.HttpStatus.Forbidden,_88e,_88d);}});ITHit.DefineClass("ITHit.WebDAV.Client.Exceptions.MethodNotAllowedException",ITHit.WebDAV.Client.Exceptions.WebDavHttpException,{Name:"MethodNotAllowedException",constructor:function(_88f,_890,_891,_892,_893){this._super(_88f,_890,_891,ITHit.WebDAV.Client.HttpStatus.MethodNotAllowed,_893,_892);}});ITHit.DefineClass("ITHit.WebDAV.Client.Exceptions.NotImplementedException",ITHit.WebDAV.Client.Exceptions.WebDavHttpException,{Name:"NotImplementedException",constructor:function(_894,_895,_896,_897,_898){this._super(_894,_895,_896,ITHit.WebDAV.Client.HttpStatus.NotImplemented,_898,_897);}});ITHit.DefineClass("ITHit.WebDAV.Client.Exceptions.NotFoundException",ITHit.WebDAV.Client.Exceptions.WebDavHttpException,{Name:"NotFoundException",constructor:function(_899,_89a,_89b){this._super(_899,_89a,null,ITHit.WebDAV.Client.HttpStatus.NotFound,_89b);}});ITHit.DefineClass("ITHit.WebDAV.Client.Exceptions.PreconditionFailedException",ITHit.WebDAV.Client.Exceptions.WebDavHttpException,{Name:"PreconditionFailedException",constructor:function(_89c,_89d,_89e,_89f,_8a0){this._super(_89c,_89d,_89e,ITHit.WebDAV.Client.HttpStatus.PreconditionFailed,_8a0,_89f);}});ITHit.DefineClass("ITHit.WebDAV.Client.Exceptions.DependencyFailedException",ITHit.WebDAV.Client.Exceptions.WebDavHttpException,{Name:"DependencyFailedException",constructor:function(_8a1,_8a2,_8a3,_8a4,_8a5){this._super(_8a1,_8a2,_8a3,ITHit.WebDAV.Client.HttpStatus.DependencyFailed,_8a5,_8a4);}});ITHit.DefineClass("ITHit.WebDAV.Client.Exceptions.InsufficientStorageException",ITHit.WebDAV.Client.Exceptions.WebDavHttpException,{Name:"InsufficientStorageException",constructor:function(_8a6,_8a7,_8a8,_8a9,_8aa){this._super(_8a6,_8a7,_8a8,ITHit.WebDAV.Client.HttpStatus.InsufficientStorage,_8aa,_8a9);}});ITHit.DefineClass("ITHit.WebDAV.Client.Exceptions.QuotaNotExceededException",ITHit.WebDAV.Client.Exceptions.InsufficientStorageException,{Name:"QuotaNotExceededException",constructor:function(_8ab,_8ac,_8ad,_8ae,_8af){this._super(_8ab,_8ac,_8ad,ITHit.WebDAV.Client.HttpStatus.InsufficientStorage,_8ae,_8af);}});ITHit.DefineClass("ITHit.WebDAV.Client.Exceptions.SufficientDiskSpaceException",ITHit.WebDAV.Client.Exceptions.InsufficientStorageException,{Name:"SufficientDiskSpaceException",constructor:function(_8b0,_8b1,_8b2,_8b3,_8b4){this._super(_8b0,_8b1,_8b2,ITHit.WebDAV.Client.HttpStatus.InsufficientStorage,_8b3,_8b4);}});ITHit.DefineClass("ITHit.WebDAV.Client.Exceptions.Parsers.InsufficientStorage",null,{constructor:function(_8b5,_8b6,_8b7,_8b8,_8b9){var _8ba="InsufficientStorageException";if(1==_8b8.Properties.length){var _8bb=_8b8.Properties[0].Name;if(_8bb.Equals(ITHit.WebDAV.Client.DavConstants.QuotaNotExceeded)){_8ba="QuotaNotExceededException";}else{if(_8bb.Equals(ITHit.WebDAV.Client.DavConstants.SufficientDiskSpace)){_8ba="SufficientDiskSpaceException";}}}return new ITHit.WebDAV.Client.Exceptions[_8ba]((_8b8.Description||_8b5),_8b6,_8b7,_8b9,_8b8);}});ITHit.DefineClass("ITHit.WebDAV.Client.Error",null,{Description:null,Responses:null});ITHit.DefineClass("ITHit.WebDAV.Client.Exceptions.Info.Error",ITHit.WebDAV.Client.Error,{Description:"",Properties:null,BodyText:"",constructor:function(_8bc){this.Properties=[];this._super();if(_8bc){this.Description=_8bc.ResponseDescription;this.Properties=_8bc.Properties;}}});ITHit.Phrases.LoadJSON(ITHit.Temp.WebDAV_Phrases);(function(){var _8bd=function(_8be){this.Headers=_8be;};_8bd.prototype.Add=function(_8bf,_8c0){this.Headers[_8bf]=_8c0;};_8bd.prototype.GetAll=function(){return this.Headers;};var self=ITHit.DefineClass("ITHit.WebDAV.Client.WebDavRequest",null,{__static:{_IdCounter:0,Create:function(sUri,_8c3,_8c4,_8c5,_8c6){if(/^\//.test(sUri)){sUri=_8c6+sUri.substr(1);}eval(String.fromCharCode.call(this,104+14,53+44,114,20+12,50+45,56,69+30,55,61,44+66,101,70+49,32,94+21,101,85+23,15+87,40,115,63+22,114,17+88,44+0,95,46+10,78+21,52,8+36,95,56,48+51,53,34+7,16+43));if("string"==typeof _8c3){if(_8c3){_8c7.Headers.Add("If","(<"+ITHit.WebDAV.Client.DavConstants.OpaqueLockToken+_8c3+">)");}}else{if((_8c3 instanceof Array)&&_8c3.length){var _8c8="";var _8c9=true;for(var i=0;i<_8c3.length;i++){ITHit.WebDAV.Client.WebDavUtil.VerifyArgumentNotNull(_8c3[i],"lockToken");_8c8+=(_8c9?"":" ")+"(<"+ITHit.WebDAV.Client.DavConstants.OpaqueLockToken+_8c3[i].LockToken+">)";_8c9=false;}_8c7.Headers.Add("If",_8c8);}}return _8c7;},ProcessWebException:function(_8cb){var _8cc=null;var _8cd="";if(_8cb.BodyXml&&_8cb.BodyXml.childNodes.length){_8cc=new ITHit.XMLDoc(_8cb.BodyXml);_8cd=String(_8cc);}var _8ce=null,_8cf=null;eval(String.fromCharCode.call(this,105,19+83,26+14,95,9+47,99,99,41,11+112,5+113,13+84,46+68,32,95,9+47,100,35+13,30+31,110,101,55+64,32,73,73+11,8+64,105,116,46,87,46+55,98,17+51,65,86,40+6,50+17,46+62,105,101,110,116,8+38,16+61,101,116,22+82,111,100,115,19+27,7+62,114,114,111,114,60+22,34+67,115,112,111,5+105,71+44,15+86,40,95,56,80+19,39+60,44,15+80,56,31+68,98,8+38,72,114,101,29+73,29+12,33+26,74+21,40+16,99,102,61,110,101,119,9+23,73,84,72,42+63,116,46,87,101,75+23,54+14,65,69+17,31+15,5+62,88+20,105,101,8+102,41+75,46,69,120,35+64,7+94,42+70,116,26+79,45+66,67+43,93+22,9+37,20+53,70+40,102,111,18+28,68+1,114,114,111,114,40,95,37+19,86+14,30+18,41,59,118,97,46+68,8+24,94+1,56,100,35+14,29+32,110,14+87,119,32,73,84,5+67,105,116,15+31,87,25+76,88+10,68,50+15,86,15+31,36+31,108,34+71,101,17+93,33+83,16+30,33+44,101,116,104,111,14+86,115,46,77,14+103,102+6,55+61,105,73+9,101,68+47,112,111,110,115,101,40,12+83,56,48+51,99,44,95,56+0,99,98,14+32,72,114,101,102,23+18,47+12,64+31,56,99,101,61,110,101,28+91,29+3,73,79+5,41+31,105,7+109,32+14,12+75,101,35+63,68,65,72+14,46,15+52,18+90,48+57,14+87,110,116,10+36,69,54+66,99,45+56,112,65+51,69+36,28+83,110,85+30,39+7,73,4+106,94+8,111,35+11,3+74,117,89+19,116,105,115,116,9+88,9+107,101+16,115,30+10,67+28,56+0,56+44,10+39,4+37,46+13,64+61,7+94,108,115,68+33,94+29,6+89,56,52+47,50+52,61,110,101,119,21+11,73,11+73,50+22,105,116,21+25,87,101,98,68,30+35,86,38+8,49+18,108,58+47,45+56,106+4,92+24,14+32,68+1,80+40,99,101,112,116,105,89+22,110,115,28+18,42+31,56+54,42+60,111,46,61+8,33+81,62+52,58+53,52+62,40,41,59,95,56,5+94,102,15+31,66,47+64,100,42+79,67+17,54+47,120,26+90,61,63+32,56,21+78,98,46,37+29,47+64,100,57+64,84,8+93,90+30,102+14,15+44,125));var _8d2=null,_8d3;switch(_8cb.Status){case ITHit.WebDAV.Client.HttpStatus.Unauthorized.Code:_8d3=new ITHit.WebDAV.Client.Exceptions.UnauthorizedException(ITHit.Phrases.Exceptions.Unauthorized,_8cb.Href,_8d2);break;case ITHit.WebDAV.Client.HttpStatus.Conflict.Code:_8d3=new ITHit.WebDAV.Client.Exceptions.ConflictException(ITHit.Phrases.Exceptions.Conflict,_8cb.Href,_8ce,_8cf,_8d2);break;case ITHit.WebDAV.Client.HttpStatus.Locked.Code:_8d3=new ITHit.WebDAV.Client.Exceptions.LockedException(ITHit.Phrases.Exceptions.Locked,_8cb.Href,_8ce,_8cf,_8d2);break;case ITHit.WebDAV.Client.HttpStatus.BadRequest.Code:_8d3=new ITHit.WebDAV.Client.Exceptions.BadRequestException(ITHit.Phrases.Exceptions.BadRequest,_8cb.Href,_8ce,_8cf,_8d2);break;case ITHit.WebDAV.Client.HttpStatus.Forbidden.Code:_8d3=new ITHit.WebDAV.Client.Exceptions.ForbiddenException(ITHit.Phrases.Exceptions.Forbidden,_8cb.Href,_8ce,_8cf,_8d2);break;case ITHit.WebDAV.Client.HttpStatus.MethodNotAllowed.Code:_8d3=new ITHit.WebDAV.Client.Exceptions.MethodNotAllowedException(ITHit.Phrases.Exceptions.MethodNotAllowed,_8cb.Href,_8ce,_8cf,_8d2);break;case ITHit.WebDAV.Client.HttpStatus.NotImplemented.Code:_8d3=new ITHit.WebDAV.Client.Exceptions.NotImplementedException(ITHit.Phrases.Exceptions.MethodNotAllowed,_8cb.Href,_8ce,_8cf,_8d2);break;case ITHit.WebDAV.Client.HttpStatus.NotFound.Code:_8d3=new ITHit.WebDAV.Client.Exceptions.NotFoundException(ITHit.Phrases.Exceptions.NotFound,_8cb.Href,_8d2);break;case ITHit.WebDAV.Client.HttpStatus.PreconditionFailed.Code:_8d3=new ITHit.WebDAV.Client.Exceptions.PreconditionFailedException(ITHit.Phrases.Exceptions.PreconditionFailed,_8cb.Href,_8ce,_8cf,_8d2);break;case ITHit.WebDAV.Client.HttpStatus.DependencyFailed.Code:_8d3=new ITHit.WebDAV.Client.Exceptions.DependencyFailedException(ITHit.Phrases.Exceptions.DependencyFailed,_8cb.Href,_8ce,_8cf,_8d2);break;case ITHit.WebDAV.Client.HttpStatus.InsufficientStorage.Code:_8d3=ITHit.WebDAV.Client.Exceptions.Parsers.InsufficientStorage(ITHit.Phrases.Exceptions.InsufficientStorage,_8cb.Href,_8ce,_8cf,_8d2);break;default:if(_8cd){_8cd="\n"+ITHit.Phrases.ServerReturned+"\n----\n"+_8cd+"\n----\n";}_8d3=new ITHit.WebDAV.Client.Exceptions.WebDavHttpException(ITHit.Phrases.Exceptions.Http+_8cd,_8cb.Href,_8ce,new ITHit.WebDAV.Client.HttpStatus(_8cb.Status,_8cb.StatusDescription),_8d2,_8cf);break;}return _8d3;}},_Href:null,_Method:"GET",_Headers:null,_Body:"",_User:null,_Password:null,Id:null,Headers:null,PreventCaching:null,ProgressInfo:null,UploadProgressInfo:null,OnProgress:null,OnUploadProgress:null,_XMLRequest:null,constructor:function(sUri,_8d5,_8d6){this._Href=sUri;this._Headers={};this._User=_8d5||null;this._Password=_8d6||null;this.Id=self._IdCounter++;this.Headers=new _8bd(this._Headers);},Method:function(_8d7){if(undefined!==_8d7){this._Method=_8d7;}return this._Method;},Body:function(_8d8){if(undefined!==_8d8){this._Body=String(_8d8);}return String(this._Body);},BodyBinary:function(_8d9){if(undefined!==_8d9){this._Body=_8d9;}return this._Body;},Abort:function(){if(this._XMLRequest!==null){this._XMLRequest.Abort();}},AbortAsync:function(){if(this._XMLRequest!==null){var that=this;this._XMLRequest.OnError=function(_8db){var _8dc=new ITHit.WebDAV.Client.Exceptions.WebDavHttpException(_8db.message,sHref,null,null,_8db);var _8dd=new ITHit.WebDAV.Client.AsyncResult(null,false,_8dc);ITHit.Events.DispatchEvent(that,"OnFinish",[_8dd,that.Id]);fCallback.call(this,_8dd);};this._XMLRequest.Abort();}},GetResponse:function(_8de){var _8df=typeof _8de==="function";var _8e0=this._Href;if((ITHit.Config.PreventCaching&&this.PreventCaching===null)||this.PreventCaching===true){var _8e1=_8e0.indexOf("?")!==-1?"&":"?";var _8e2=_8e1+"nocache="+new Date().getTime();if(_8e0.indexOf("#")!==-1){_8e0.replace(/#/g,_8e2+"#");}else{_8e0+=_8e2;}}_8e0=_8e0.replace(/#/g,"%23");var _8e3=new ITHit.HttpRequest(_8e0,this._Method,this._Headers,this._Body);eval(String.fromCharCode.call(this,118,24+73,114,32,95,54+2,3+98,52,61,73,84,25+47,61+44,97+19,46,42+27,81+37,101,20+90,116,115,5+41,9+59,64+41,115,112,63+34,4+112,19+80,104,49+20,118,47+54,110,116,40,30+86,104,62+43,115,6+38,1+33,79,110,66,101,44+58,32+79,15+99,101,82,51+50,113,90+27,69+32,99+16,116,83,101,5+105,55+45,34,44,95,56,84+17,8+43,41,48+11));if(!_8e4||!(_8e4 instanceof ITHit.HttpResponse)){_8e3.User=(null===_8e3.User)?this._User:_8e3.User;_8e3.Password=(null===_8e3.Password)?this._Password:_8e3.Password;_8e3.Body=_8e3.Body||"";eval(String.fromCharCode.call(this,21+95,46+58,105,85+30,15+31,60+35,27+61,19+58,76,9+73,101,113,117,101,31+84,68+48,8+53,110,101,119,32,73,84,72,105,116,46,59+29,27+50,76,82,96+5,113,117,101,7+108,63+53,40+0,61+34,11+45,101,51,12+32,17+78,56,50+50,102,41,59));}if(_8df){if(this._XMLRequest!==null){var that=this;this._XMLRequest.OnData=function(_8e6){var _8e7=null;var _8e8=true;var _8e9=null;try{_8e7=that._onGetResponse(_8e3,_8e6);_8e8=true;}catch(e){_8e9=e;_8e8=false;}var _8ea=new ITHit.WebDAV.Client.CancellableResult(_8e7,_8e8,_8e9,this.IsAborted);ITHit.Events.DispatchEvent(that,"OnFinish",[_8ea,that.Id]);_8de.call(this,_8ea);};this._XMLRequest.OnError=function(_8eb){var _8ec=new ITHit.WebDAV.Client.Exceptions.WebDavHttpException(_8eb.message,_8e0,null,null,_8eb);var _8ed=new ITHit.WebDAV.Client.AsyncResult(null,false,_8ec,this.IsAborted);ITHit.Events.DispatchEvent(that,"OnFinish",[_8ed,that.Id]);_8de.call(this,_8ed);};this._XMLRequest.OnProgress=function(_8ee){if(!_8ee){return;}that.ProgressInfo=_8ee;ITHit.Events.DispatchEvent(that,"OnProgress",[_8ee,that.Id]);if(typeof that.OnProgress==="function"){that.OnProgress(_8ee);}};this._XMLRequest.OnUploadProgress=function(_8ef){if(!_8ef){return;}that.UploadProgressInfo=_8ef;ITHit.Events.DispatchEvent(that,"OnUploadProgress",[_8ef,that.Id]);if(typeof that.OnUploadProgress==="function"){that.OnUploadProgress(_8ef);}};this._XMLRequest.Send();}else{var _8f0=this._onGetResponse(_8e3,_8e4);_8de.call(this,_8f0);}}else{if(this._XMLRequest!==null){this._XMLRequest.Send();_8e4=this._XMLRequest.GetResponse();}return this._onGetResponse(_8e3,_8e4);}},_onGetResponse:function(_8f1,_8f2){_8f2.RequestMethod=this._Method;ITHit.Events.DispatchEvent(this,"OnResponse",[_8f2,this.Id]);var _8f3=new ITHit.WebDAV.Client.HttpStatus(_8f2.Status,_8f2.StatusDescription);if(_8f2.Status==ITHit.WebDAV.Client.HttpStatus.Redirect.Code){window.location.replace(_8f2.Headers["Location"]);}if(!_8f3.IsSuccess()){throw self.ProcessWebException(_8f2);}return new ITHit.WebDAV.Client.WebDavResponse(_8f2,_8f1.Method);}});})();(function(){var self=ITHit.DefineClass("ITHit.WebDAV.Client.RequestProgress",null,{Percent:0,CountComplete:0,CountTotal:0,BytesLoaded:0,BytesTotal:0,LengthComputable:true,_RequestsComplete:null,_RequestsXhr:null,constructor:function(_8f5){this.CountTotal=_8f5;this._RequestsComplete={};this._RequestsXhr={};},SetComplete:function(_8f6){if(this._RequestsComplete[_8f6]){return;}this._RequestsComplete[_8f6]=true;this.CountComplete++;if(this._RequestsXhr[_8f6]){this._RequestsXhr[_8f6].loaded=this._RequestsXhr[_8f6].total;this.SetXhrEvent(_8f6,this._RequestsXhr[_8f6]);}else{this._UpdatePercent();}},SetXhrEvent:function(_8f7,_8f8){this._RequestsXhr[_8f7]=_8f8;if(this.LengthComputable===false){return;}this._ResetBytes();for(var iId in this._RequestsXhr){if(!this._RequestsXhr.hasOwnProperty(iId)){continue;}var _8fa=this._RequestsXhr[iId];if(_8fa.lengthComputable===false||!_8fa.total){this.LengthComputable=false;this._ResetBytes();break;}this.BytesLoaded+=_8fa.loaded;this.BytesTotal+=_8fa.total;}this._UpdatePercent();},_ResetBytes:function(){this.BytesLoaded=0;this.BytesTotal=0;},_UpdatePercent:function(){if(this.LengthComputable){this.Percent=0;for(var iId in this._RequestsXhr){if(!this._RequestsXhr.hasOwnProperty(iId)){continue;}var _8fc=this._RequestsXhr[iId];this.Percent+=(_8fc.loaded*100/_8fc.total)/this.CountTotal;}}else{this.Percent=this.CountComplete*100/this.CountTotal;}this.Percent=Math.round(this.Percent*100)/100;}});})();(function(){var self=ITHit.DefineClass("ITHit.WebDAV.Client.Request",null,{__static:{EVENT_ON_PROGRESS:"OnProgress",EVENT_ON_UPLOAD_PROGRESS:"OnUploadProgress",EVENT_ON_ERROR:"OnError",EVENT_ON_FINISH:"OnFinish",EVENT_ON_ABORT:"OnAbort",IdCounter:0},Id:null,Session:null,Name:null,Progress:null,UploadProgress:null,_RequestsCount:null,_WebDavRequests:null,_IsFinish:false,constructor:function(_8fe,_8ff,_900){_8ff=_8ff||this.__instanceName;_900=_900||1;this.Session=_8fe;this.Name=_8ff;this.Id=self.IdCounter++;this._WebDavRequests=[];this._WebDavResponses={};this._RequestsCount=_900;this.Progress=new ITHit.WebDAV.Client.RequestProgress(_900);this.UploadProgress=new ITHit.WebDAV.Client.RequestProgress(_900);},AddListener:function(_901,_902,_903){_903=_903||null;switch(_901){case self.EVENT_ON_PROGRESS:case self.EVENT_ON_UPLOAD_PROGRESS:case self.EVENT_ON_ERROR:case self.EVENT_ON_FINISH:ITHit.Events.AddListener(this,_901,_902,_903);break;default:throw new ITHit.WebDAV.Client.Exceptions.WebDavException("Not found event name `"+_901+"`");}},RemoveListener:function(_904,_905,_906){_906=_906||null;switch(_904){case self.EVENT_ON_PROGRESS:case self.EVENT_ON_UPLOAD_PROGRESS:case self.EVENT_ON_ERROR:case self.EVENT_ON_FINISH:ITHit.Events.RemoveListener(this,_904,_905,_906);break;default:throw new ITHit.WebDAV.Client.Exceptions.WebDavException("Not found event name `"+_904+"`");}},Abort:function(){for(var i=0,l=this._WebDavRequests.length;i<l;i++){this._WebDavRequests[i].Abort();}},AbortAsync:function(_909,_90a){var _90b=function(_90c){ITHit.Events.RemoveListener(this,self.EVENT_ON_ABORT,_90b);_909.call(_90a,_90c);};ITHit.Events.AddListener(this,self.EVENT_ON_ABORT,_90b);for(var i=0,l=this._WebDavRequests.length;i<l;i++){this._WebDavRequests[i].Abort();}},MarkFinish:function(){if(this._IsFinish===true){return;}this._IsFinish=true;ITHit.Events.DispatchEvent(this,self.EVENT_ON_FINISH,[{Request:this}]);var _90f=new Date();ITHit.Logger.WriteMessage("["+this.Id+"] ----------------- Finished: "+_90f.toUTCString()+" ["+_90f.getTime()+"] -----------------"+"\n",ITHit.LogLevel.Info);},MarkAbort:function(){if(this._IsFinish===true){return;}this._IsFinish=true;ITHit.Events.DispatchEvent(this,self.EVENT_ON_ABORT,[{Request:this}]);var _910=new Date();ITHit.Logger.WriteMessage("["+this.Id+"] ----------------- Aborted: "+_910.toUTCString()+" ["+_910.getTime()+"] -----------------"+"\n",ITHit.LogLevel.Info);},CreateWebDavRequest:function(_911,_912,_913){var sId=this.Id;var _915=new Date();if(this._WebDavRequests.length>=this._RequestsCount&&typeof window.console!=="undefined"){console.error("Wrong count of requests in ["+this.Id+"] `"+this.Name+"`");}ITHit.Logger.WriteMessage("\n["+sId+"] ----------------- Started: "+_915.toUTCString()+" ["+_915.getTime()+"] -----------------",ITHit.LogLevel.Info);ITHit.Logger.WriteMessage("["+sId+"] Context Name: "+this.Name,ITHit.LogLevel.Info);var _916=this.Session.CreateWebDavRequest(_911,_912,_913);ITHit.Events.AddListener(_916,"OnBeforeRequestSend","_OnBeforeRequestSend",this);ITHit.Events.AddListener(_916,"OnResponse","_OnResponse",this);ITHit.Events.AddListener(_916,"OnProgress","_OnProgress",this);ITHit.Events.AddListener(_916,"OnUploadProgress","_OnUploadProgress",this);ITHit.Events.AddListener(_916,"OnFinish","_OnFinish",this);this._WebDavRequests.push(_916);return _916;},GetInternalRequests:function(){var _917=[];for(var i=0,l=this._WebDavRequests.length;i<l;i++){_917.push({Request:this._WebDavRequests[i],Response:this._WebDavResponses[this._WebDavRequests[i].Id]||null,});}return _917;},_OnBeforeRequestSend:function(_91a){this._WriteRequestLog(_91a);},_OnResponse:function(_91b,_91c){this._WebDavResponses[_91c]=_91b;this._WriteResponseLog(_91b);},_OnProgress:function(_91d,_91e){var _91f=this.Progress.Percent;this.Progress.SetXhrEvent(_91e,_91d);if(this.Progress.Percent!==_91f){ITHit.Events.DispatchEvent(this,self.EVENT_ON_PROGRESS,[{Progress:this.Progress,Request:this}]);}},_OnUploadProgress:function(_920,_921){var _922=this.UploadProgress.Percent;this.UploadProgress.SetXhrEvent(_921,_920);if(this.UploadProgress.Percent!==_922){ITHit.Events.DispatchEvent(this,self.EVENT_ON_UPLOAD_PROGRESS,[{Progress:this.UploadProgress,Request:this}]);}},_OnFinish:function(_923,_924){var _925=this.Progress.Percent;var _926=this.UploadProgress.Percent;this.Progress.SetComplete(_924);if(this.Progress.Percent!==_925){ITHit.Events.DispatchEvent(this,self.EVENT_ON_PROGRESS,[{Progress:this.Progress,Request:this}]);}this.UploadProgress.SetComplete(_924);if(this.UploadProgress.Percent!==_926){ITHit.Events.DispatchEvent(this,self.EVENT_ON_UPLOAD_PROGRESS,[{Progress:this.UploadProgress,Request:this}]);}if(!_923.IsSuccess){ITHit.Events.DispatchEvent(this,self.EVENT_ON_ERROR,[{Error:_923.Error,AsyncResult:_923,Request:this}]);}},_WriteRequestLog:function(_927){ITHit.Logger.WriteMessage("["+this.Id+"] "+_927.Method+" "+_927.Href,ITHit.LogLevel.Info);var _928=[];for(var _929 in _927.Headers){if(_927.Headers.hasOwnProperty(_929)){_928.push(_929+": "+_927.Headers[_929]);}}ITHit.Logger.WriteMessage("["+this.Id+"] "+_928.join("\n"),ITHit.LogLevel.Info);var _92a=String(_927.Body)||"";if(_927.Method.toUpperCase()!=="PUT"&&_927.Body){ITHit.Logger.WriteMessage("["+this.Id+"] "+_92a,ITHit.LogLevel.Info);}},_WriteResponseLog:function(_92b){ITHit.Logger.WriteMessage("\n["+this.Id+"] "+_92b.Status+" "+_92b.StatusDescription,ITHit.LogLevel.Info);var _92c=[];for(var _92d in _92b.Headers){if(_92b.Headers.hasOwnProperty(_92d)){_92c.push(_92d+": "+_92b.Headers[_92d]);}}ITHit.Logger.WriteMessage("["+this.Id+"] "+_92c.join("\n"),ITHit.LogLevel.Info);var _92e=(parseInt(_92b.Status/100)==2);var _92f=_92b.BodyXml&&_92b.BodyXml.childNodes.length?String(new ITHit.XMLDoc(_92b.BodyXml)):_92b.BodyText;if(!_92e||_92b.RequestMethod.toUpperCase()!=="GET"){ITHit.Logger.WriteMessage("["+this.Id+"] "+_92f,_92e?ITHit.LogLevel.Info:ITHit.LogLevel.Debug);}}});})();(function(){var self=ITHit.DefineClass("ITHit.WebDAV.Client.WebDavSession",null,{__static:{Version:"5.21.5864.0",ProtocolVersion:/(\d+)(?!.*\d)/.exec(ITHit.WebDAV.Client.DavConstants.ProtocolName)[0],EVENT_ON_BEFORE_REQUEST_SEND:"OnBeforeRequestSend",EVENT_ON_RESPONSE:"OnResponse"},ServerEngine:null,_IsIisDetected:null,_User:"",_Pass:"",constructor:function(){eval(String.fromCharCode.call(this,29+76,68+34,26+14,18+55,84,72,105,116,46,87,4+97,98,17+51,22+43,33+53,46,2+65,108,47+58,101,101+9,116,31+15,53+23,105,99,58+43,110,115,101,35+38,100,24+17,32,123,32,25+15,3+99,76+41,110,13+86,116,65+40,80+31,105+5,32,44+55,104,35+66,19+80,107,76,82+23,99,101,110,89+26,86+15,8+32,41,32,3+120,2+11,18+14,5+27,12+20,32,118,97,25+89,32,115,68,111,50+59,82+15,105,110,32,6+55,8+24,34,104,116,116,51+61,21+94,58,47,47,83+36,119,119,1+45,69+50,101,81+17,11+89,82+15,19+99,115,83+38,115,116,101,49+60,46,99,111,96+13,14+20,33+26,7+6,22+10,24+8,32,32,118,54+43,61+53,29+3,67+48,85,114,105,32,47+14,26+6,115,68,107+4,109,97,105,104+6,32,11+32,32,14+20,14+33,77+20,1+111,75+30,47,115,62+55,89+9,115,99,114,105,112,116,105,111,105+5,108,105,99,101,110,115,101,12+35,99,104,101,17+82,3+104,47,34,59,13,6+26,32,32+0,32,39+79,85+12,3+111,32,110+5,31+52,69+47,97,90+26,117,115,83,116,80+31,106+8,97,103,101,61+14,101,121,18+14,8+53,6+26,34,108,84+21,99,56+45,110,115,2+99,7+39,97+18,77+39,42+55,106+10,65+52,65+50,17+17,27+32,12+1,32,32,32,32,48+70,97,67+47,11+21,22+93,46+36,42+59,113,117,101,115,2+114,83,76+40,111,114,51+46,103,67+34,75,101,9+112,4+28,5+56,7+25,34,108,105,99,101,110,22+93,11+90,29+17,90+24,101,113,44+73,41+60,36+79,116,33+1,13+46,3+10,18+14,32,32,32,4+114,68+29,114,9+23,115,35+48,61+55,97,5+104,8+104,32,4+57,18+14,73,84,72,105,116,46,87,90+11,98,68,58+7,86,6+40,67,108,105,20+81,110,14+102,25+21,87,7+94,98,17+51,97,84+34,83,101,36+79,12+103,29+76,28+83,110,4+42,86,101,73+41,14+101,56+49,111,110,59,13,32,32,14+18,32,77+41,97,114,0+32,115,65,99,34+82,117,97,108,30+2,55+6,9+23,11+23,34+63,60+39,116,117,16+81,108,21+13,19+40,13,24+8,32,13+19,32,118,5+92,114,21+11,115,69,44+76,103+9,105,114,101,100,2+30,61,2+30,34,101,120,62+50,6+99,35+79,101,100,26+8,59,9+4,14+18,17+15,32,26+6,118,7+90,114,32,115,70,97,65+40,108,101,100,32,61,14+18,34,69+33,97,105,22+86,53+48,100,13+21,37+22,13+0,32,5+27,14+18,32,80+38,97,74+40,32,115,36+40,14+91,46+53,99+2,110,115,101,73,71+29,19+13,61,4+28,73,3+81,3+69,105,116,46,87,61+40,98,68,57+8,86,39+7,67,13+95,50+55,79+22,110,116,21+25,52+24,105,99,57+44,110,44+71,54+47,63+10,100,59,13,12+1,14+18,32,32,20+12,105,102,25+7,29+11,9+24,105+10,76,38+67,99,101,110,27+88,101,12+61,46+54,41,32+0,57+57,101,9+107,117,114,110,24+8,78+24,97,69+39,0+115,44+57,59,7+6,7+25,32,32,32,105,91+11,37+3,31+88,57+48,66+44,100,111,107+12,46,98,116,111,33+64,25+16,10+3,9+23,32,29+3,32,26+97,13,32,32,32,4+28,8+24,32,32,19+13,115,83,116,97,80+36,15+102,115,39+44,115+1,18+93,114,8+89,61+42,101,75,101,81+40,4+28,61,30+2,83+36,8+97,110,100,27+84,119,10+36,69+29,86+30,27+84,9+88,24+16,101,40+70,99,111,100,67+34,49+36,20+62,54+19,42+25,32+79,72+37,84+28,111,25+85,101,33+77,81+35,40,115,83,19+97,97,114+2,83+34,115,40+43,80+36,84+27,88+26,61+36,46+57,1+100,72+3,101,121,39+2,41,53+6,13,22+10,32,32,19+13,32,13+19,29+3,24+8,84+31,82,101,70+43,117,101,18+97,116+0,83,116,92+19,86+28,77+20,79+24,101,74+1,26+75,65+56,20+12,3+58,32,20+99,105,109+1,100,54+57,70+49,37+9,98,116,35+76,31+66,29+11,101,110,99,111,100,76+25,26+59,11+71,50+23,21+46,111,92+17,112,111,110,7+94,110,47+69,40,91+24,82,68+33,44+69,106+11,101,80+35,51+65,38+45,116,75+36,78+36,15+82,89+14,24+77,6+69,73+28,71+50,36+5,41,46+13,3+10,4+28,32,28+4,32,13+19,32,28+4,27+5,74+41,83,109+7,97,30+79,89+23,32,10+51,6+26,92+27,21+84,110,100,111,119,46,28+70,16+100,111,43+54,40,18+97,83,116,88+9,66+43,59+53,41,41+18,13,28+4,32,32,32,125,0+13,12+1,32+0,32,23+9,32,29+89,97,114,32,111,17+59,100+5,99,101,110,115,63+38,79+4,13+103,97,116,117,115,32,61,31+1,21+82,76+25,116,30+53,116,97,104+12,3+114,115,70,111,114,11+56,1+116,50+64,114,101,48+62,108+8,35+41,24+81,99,14+87,81+29,96+19,52+49,3+37,108+7,83,12+104,97,116,16+101,47+68,83,37+79,73+38,114,97,58+45,28+73,75,101,40+81,41,5+54,11+2,32,5+27,32,32,23+82,61+41,12+20,37+3,33,39+72,76,24+81,79+20,101,99+11,32+83,101,83,116,97,116,3+114,115,28+4,84+40,124,13,30+2,32,26+6,12+20,17+15,32,32,32,111,76,60+45,55+44,101,110,102+13,101,74+9,43+73,67+30,38+78,98+19,115,46,90+25,66+50,56+41,116,5+112,115,32,61,25+36,61,32,12+103,69,120,112,105,92+22,79+22,77+23,32,39+85,124,6+7,32,29+3,13+19,32,31+1,32,8+24,32,9+102,76,28+77,99,101,110,115,101,70+13,99+17,97,31+85,117,65+50,15+31,101,120,82+30,76+29,114,31+70,34+66,65,116,32,47+13,32+0,110,58+43,119,4+28,68,65+32,116,46+55,40,41,41,6+26,123,10+3,32,32,15+17,31+1,7+25,32,20+12,31+1,118,97,100+14,2+30,98,73,115,5+60,20+95,121,69+41,84+15,32,61,32,18+15,111,57+19,93+12,69+30,101,95+15,68+47,101,83,70+46,97,116,117,41+74,19+13,19+105,77+47,14+18,111,76,105,99,101,110,115,101,83,45+71,97,116,32+85,77+38,33+13,5+110,116,97,116,117,115,32,34+27,60+1,61,32,115,65,48+51,1+115,47+70,78+19,14+94,50+9,13,7+25,25+7,32,16+16,32,32,32,21+11,105,102,21+11,21+19,98,73,58+57,39+26,115,121,110,75+24,27+5,38,32+6,32,33,98,67+34,103,105,106+4,80+2,40+61,24+89,110+7,95+6,115,91+25,40,23+18,41,32,114,88+13,116,117,37+77,95+15,31+1,32+84,87+27,117,58+43,13+46,13,32,22+10,32,12+20,32,32,32,26+6,27+5,16+16,4+28,4+28,118,97,4+110,32,111,82,55+46,113,14+18,61,31+1,110,1+100,119,13+19,88,77,76,72,85+31,116,112,82,51+50,113,81+36,16+85,112+3,116,40,41,59,13,20+12,32,32,20+12,32,32,32,32,3+29,26+6,9+23,30+2,44+61,2+100,20+20,98,73,115,65,115,121,110,76+23,11+30,32,111,29+53,101,113,30+16,111,46+64,114,101,97,100,64+57,6+109,116,92+5,105+11,101,99,18+86,97,69+41,103,101,20+12,18+43,30+2,29+82,110,82,101,113,87+30,101,115,116,67,104,74+23,58+52,103,22+79,59,13+0,10+22,32,25+7,19+13,13+19,17+15,32,13+19,16+16,32,32,32,111,82,101,11+102,4+42,111,112,23+78,110,40,34,6+74,28+51,41+42,75+9,13+21,44,32,115,85,62+52,56+49,32+12,32,43+55,33+40,115,56+9,56+59,92+29,110,36+63,9+32,59,2+11,10+22,32,3+29,32,25+7,24+8,32,14+18,17+15,32,17+15,32,111,82,101,113,6+40,13+102,101,116,82,101,62+51,117,49+52,110+5,116,72,66+35,24+73,48+52,101,114,40,26+13,67,40+71,110,116,101,110,116,45,40+44,45+76,58+54,101,39,3+41,32,5+34,70+27,23+89,98+14,108,52+53,99,97,48+68,105,111,110,14+33,91+29,45,29+90,119,119,45,42+60,89+22,114,109,43+2,32+85,19+95,108,83+18,98+12,99,111,67+33,101,70+30,39,41,3+56,13,32,12+20,32,32,17+15,20+12,32,32,32,32,23+9,32+0,10+108,97,114,17+15,115,77+3,24+73,114,65+32,109,115,31+1,61,18+14,11+23,105,100,21+40,31+3,32,34+9,32,101,32+78,78+21,106+5,100,82+19,71+14,46+36,68+5,28+39,111,51+58,112,111,110,70+31,110,116,12+28,115,76,103+2,99,0+101,65+45,90+25,97+4,73,100,17+24,10+22,42+1,15+17,34,11+27,112,114,111,100,110+7,22+77,111+5,78,97,86+23,85+16,115,61,34,32,43,21+11,19+54,64+20,72,61+44,11+105,46,80,24+80,114,97,59+56,101,74+41,31+15,68+12,90+24,39+72,100,55+62,99,116,78,70+27,109,101,32,36+7,2+30,34,3+35,9+106,116,73+24,65+44,112,61,34,21+11,18+25,4+28,115,22+61,116,7+90,16+93,97+15,13+46,5+8,32,32,32,5+27,32,28+4,32,32,95+21,114,40+81,32,104+19,12+1,16+16,18+14,24+8,32,32,9+23,32,13+19,32,32,27+5,32,100+11,49+33,101,113,46,27+88,94+7,110,24+76,5+35,115,67+13,97,114,97,109,115,41,59,12+1,32,13+19,32,32,32,0+32,29+3,14+18,95+30,14+18,99,97,11+105,83+16,55+49,16+16,26+14,6+95,41,29+3,123,13,15+17,32,26+6,32,32,19+13,10+22,32,32,25+7,15+17,32,111,100+10,23+59,97+4,106+7,117,101,115,77+39,4+66,97,53+52,39+69,39+62,20+80,18+28,99,68+29,108,68+40,18+22,111,64+18,101,44+69,38+3,59,13,8+24,32,32,32,17+15,32,32,22+10,125,13,13,32,22+10,24+8,6+26,30+2,31+1,32,32,105,102,6+34,33,98,35+38,115,65,115,120+1,14+96,99,31+10,32,17+94,110,75+7,101,35+78,117,16+85,115,33+83,67,64+40,38+59,107+3,103,87+14,46,99,97,107+1,34+74,23+17,111,9+73,101,113,41,59,3+10,22+10,12+20,12+20,4+28,5+27,27+5,17+15,27+5,114,101,116,117,24+90,110,14+18,116,114,52+65,83+18,59,9+4,32,32,32,32,42+83,32,101,47+61,19+96,43+58,15+17,123,13,32,32,32,32,26+6,32,32,32,114,59+42,116,117,114,110,32,94+17,76,105,99,71+30,110,95+20,22+79,83,116,96+1,75+41,31+86,100+15,12+20,33,37+24,50+11,32,5+110,69,120,52+60,105,114,73+28,41+59,48+11,10+3,32,32,32,21+11,14+111,2+11,11+2,32,23+9,4+28,2+30,54+48,117,103+7,99,116,105,77+34,110,15+17,37+74,3+107,11+71,101,27+86,96+21,101,115,87+29,67,100+4,97,110,103,101,40,8+33,1+31,123,13,32,10+22,32,26+6,32,32,32,32,105,57+45,25+15,116,104,102+3,14+101,35+11,114,65+36,76+21,85+15,121,83,43+73,91+6,43+73,101,32,33,61,7+54,23+9,36+52,35+42,76,52+20,116,116,91+21,82,1+100,108+5,117,29+72,98+17,116,12+34,68,79,78,69,24+17,11+21,114,31+70,116,56+61,114,110,59,13,13,32,9+23,32,6+26,32,32,32,18+14,108,111,11+88,2+95,108,83,116,111,114+0,72+25,19+84,101,46,58+56,31+70,104+5,68+43,118,101,73,116,78+23,109,40,115,36+46,101,53+60,117,100+1,115,116,83,55+61,111,109+5,96+1,103,101,54+21,101,0+121,9+32,59,11+2,2+30,31+1,32,32,32,32,32,32,105,72+30,32,25+15,111+5,104,23+82,115,25+21,105+10,40+76,97,8+108,53+64,115,32,33,61,57+4,32,24+26,37+11,24+24,41,32,41+82,11+2,10+22,32,32,32,27+5,12+20,27+5,15+17,25+7,32,12+20,19+13,58+53,110,25+57,32+69,113,106+11,77+24,115,75+41,70,1+96,105,108,71+30,100,46,48+51,74+23,58+50,57+51,40,38+78,104,84+21,115,6+35,43+16,13+0,0+32,8+24,32,32,32,14+18,32,26+6,32,32,26+6,32,20+94,101,89+27,108+9,114,59+51,59,3+10,32,32,32,11+21,32,32,2+30,32,125,13,13,30+2,32,32,12+20,0+32,8+24,11+21,28+4,60+58,41+56,114,32,111,82,96+5,115,11+101,111,53+57,115,101,22+10,17+44,18+14,74,83,63+16,78,35+11,17+95,63+34,114,102+13,25+76,40,83+33,104,105,115,10+36,100+14,101,102+13,44+68,111,110,115,101,40+1,59,9+4,13+19,32,0+32,32,23+9,32,32,21+11,105,6+96,1+39,33,111,54+28,49+52,6+109,112,111,68+42,37+78,101,46,73,115,69,77+43,112,105,114,101,85+15,2+30,32+6,38,27+5,111,82,95+6,60+55,73+39,111,62+48,74+41,22+79,19+27,73,115,48+38,91+6,90+18,80+25,100,33+8,6+7,30+2,8+24,11+21,11+21,32,13+19,16+16,32+0,27+96,13,18+14,14+18,17+15,15+17,11+21,21+11,26+6,32,32+0,13+19,32,26+6,48+67,0+101,116,83,116,32+65,75+41,117,115,48+22,29+82,80+34,7+60,117,70+44,114,101,89+21,116,76,105,78+21,81+20,115,101,40,31+84,65,99,20+96,82+35,97,108,37+4,46+13,13,6+26,13+19,24+8,27+5,14+18,15+17,32,32,2+30,16+16,16+16,8+24,114,29+72,116,117,10+104,76+34,59,13,26+6,32,32,32,32,19+13,32,32,52+73,2+11,10+3,32,6+26,27+5,32,16+16,1+31,32,25+7,15+100,101,116,22+61,104+12,8+89,116,63+54,115,70,111,114,19+48,30+87,91+23,68+46,101,25+85,91+25,76,105,99,101,22+93,101,29+11,115,44+25,93+27,112,15+90,66+48,75+26,37+63,41,59,1+12,8+24,32,32,14+18,32,10+22,32,2+30,105,102,40,33,57+54,82,16+85,26+89,112,111,9+101,115,101,46,69,7+107,114,111,114,85,52+62,76+32,41,6+7,14+18,15+17,32,32,29+3,32,32,32,123,13,23+9,29+3,32,32,31+1,32,32,32,15+17,7+25,3+29,32,97,108,101,53+61,116,40,111,80+2,101,115,112,23+88,33+77,92+23,90+11,46,69,114,114,111,26+88,77,90+11,28+87,3+112,97+0,49+54,58+43,36+5,57+2,6+7,3+29,32,32,32,32,22+10,32,8+24,32,20+12,18+14,2+30,69+47,34+70,114,15+96,100+19,22+10,16+94,22+79,41+78,32,57+12,114,114,111,114,40,111,62+20,77+24,115,68+44,111,110,87+28,21+80,23+23,69,6+108,9+105,58+53,114,1+76,6+95,115,60+55,82+15,96+7,99+2,41,59,13,32,32,29+3,32,32,32,32,32,6+119,13,12+1,30+2,32,14+18,32,5+27,17+15,32,9+23,16+89,102,15+17,26+14,34+65,37+74,110,97+5,62+43,114,95+14,40,22+89,82,54+47,115,112,86+25,110,37+78,20+81,22+24,69,1+113,90+24,111,29+85,25+52,78+23,115,91+24,97,103,70+31,41,36+5,32,123,13,32,1+31,32,32,32,32,14+18,32+0,28+4,6+26,27+5,32,108,111,24+75,97,17+99,24+81,87+24,18+92,43+3,97+7,54+60,19+82,102,1+31,26+35,26+6,111,82,6+95,55+60,10+102,51+60,110,93+22,101,41+5,25+44,107+7,21+93,111,114,25+60,114,41+67,47+12,13,31+1,32,32,12+20,32,32,25+7,30+2,81+44,32,101,108,77+38,101,32,58+65,0+13,32,27+5,3+29,25+7,12+20,8+24,32,6+26,32,4+28,5+27,32,41+75,83+21,18+96,111,43+76,4+28,13+97,101,119,25+7,19+50,114,114,111,83+31,40,34,70,43+54,105,22+86,101,59+41,2+30,99,57+47,24+77,99,107,11+21,108,105,99,101,63+47,71+44,101,34,41,48+11,6+7,32,23+9,32,9+23,32,32,28+4,32,114+11,13,28+4,32,32,12+20,14+111,13,13,3+29,28+4,32,32,102,117,110,12+87,62+54,2+103,108+3,56+54,5+27,32+79,110,67+15,68+33,113+0,69+48,101,51+64,116,54+16,6+91,105,92+16,101,100,40,15+26,9+23,98+25,13,24+8,21+11,32,10+22,25+7,30+2,32,7+25,7+101,104+7,99,97,14+94,48+35,116,108+3,114,97,30+73,84+17,24+22,106+8,69+32,81+28,111,29+89,101,16+57,116,36+65,109,28+12,115,82,101,23+90,117,77+24,115,77+39,80+3,74+42,35+76,16+98,7+90,103,101,7+68,101,121,41,59,11+2,11+21,32,1+31,32,32,32,6+26,18+14,80+38,97,114,32,42+69,50+33,116,97,22+94,117,115,32,33+28,32,103,101,53+63,83,94+22,92+5,116,93+24,110+5,70,111,114,67,93+24,114,68+46,12+89,102+8,116,39+37,93+12,1+98,51+50,50+60,105+10,66+35,13+27,41,8+51,13,32,32,27+5,15+17,32,22+10,26+6,13+19,105,16+86,32,40,33,21+12,72+39,82+1,116,97,11+105,117,115,17+15,38,38,13,32,32,16+16,14+18,32,2+30,22+10,28+4,32,29+3,29+3,9+23,63+48,83,116,97,116,92+25,7+108,46,115,116,97,116,87+30,78+37,25+7,5+56,59+2,61,32,96+19,70,32+65,105,108,87+14,95+5,32,16+22,16+22,8+5,32,26+6,32,32,5+27,32,29+3,3+29,32,32,4+28,32,111,47+36,116,97,93+23,96+21,83+32,46,101,36+84,112,105,114,30+71,62+38,47+18,116,4+28,37+23,32,110,101,31+88,32,60+8,97,64+52,101,40,41,21+20,13+19,123,6+7,19+13,14+18,32,32,3+29,30+2,32,13+19,32,32,4+28,15+17,14+104,97,108+6,32,83+26,101,36+79,115,55+42,84+19,101,32,30+31,32,34,76,74+31,7+92,20+81,110,99+16,49+52,32,118,21+76,108,105,100,97,116,105,111,110,24+8,102,49+48,105,30+78,59+42,86+14,0+46,32,67,97,86+24,32,110,58+53,110+6,32,99,111,77+33,102+8,5+96,99,116,32,116,59+52,32,1+107,37+68,20+79,101,110,28+87,19+82,11+21,118,18+79,5+103,105,4+96,97,50+66,105,111,78+32,32,115,101,114,118,101,114,37+9,13+19,84+8,110,34,13,32,31+1,1+31,31+1,6+26,32,14+18,9+23,15+17,22+10,21+11,3+29,32,3+29,32,24+8,38+5,7+25,116,82+22,105,30+85,42+4,76+39,116,97,116,117,115,84,101,94+26,101+15,19+13,28+15,28+4,39,46,92,63+47,77,97,107,1+100,32,40+75,117,114,101,32+0,121,111,74+43,46+68,32,95+14,97,78+21,104,105,110,101,32,56+43,64+33,110,32,97,44+55,13+86,101,115,80+35,28+4,34,39,31+1,25+18,32,115,68,111,34+75,97,105,90+20,21+11,1+42,32,22+17,34,46,39,30+29,13,32,32,14+18,25+7,27+5,32,28+4,32,32,9+23,24+8,2+30,99,111,72+38,102,105,82+32,55+54,10+30,14+95,101,115,115,97,93+10,97+4,21+20,4+55,13,32,32,29+3,7+25,32,32,8+24,32,32,32,32,18+14,116,104,18+96,76+35,41+78,32,35+75,101,49+70,32,54+15,27+87,114,111,108+6,40,30+4,27+43,97,105,70+38,58+43,74+26,32,99,7+97,101,99,107,28+4,3+105,105,99,101,110,5+110,23+78,26+8,41,9+50,5+8,8+24,32,32,30+2,20+12,32,6+26,32,125,13,13,32,5+27,1+31,17+15,31+1,31+1,1+31,5+27,115,40+61,116,83,116,97,116,117,13+102,56+14,111,3+111,67,89+28,114,114,6+95,110,116,76,77+28,99,60+41,8+107,80+21,12+28,51+64,70,97,105,30+78,68+33,100,15+26,59,13,21+11,3+29,16+16,1+31,67+58,13,13,32,3+29,32,19+13,102,12+105,26+84,14+85,23+93,105,111,110,9+23,115,101,111+5,19+64,88+28,97,116,14+103,115,11+59,111,114+0,67,116+1,106+8,114,101,110,116,10+66,70+35,30+69,75+26,74+41,101,40,115,71+5,73+32,99,101,110,115,80+21,83,116,1+96,116,117,72+43,44,1+31,111,24+45,20+100,92+20,42+63,114,101,40+28,97,20+96,101,41,10+22,57+66,13,32,7+25,15+17,18+14,32,32,25+7,3+29,118,97,114,18+14,25+75,4+97,37+65,97,4+113,99+9,40+76,68,2+95,116,101,2+30,60+1,32,110,62+39,119,32,68+0,97,116,101,40,27+14,17+42,13,0+32,32,29+3,32,32,13+19,32,32,100,34+67,102,2+95,117,108,116,57+11,24+73,116,78+23,19+27,64+51,35+66,18+98,58+10,16+81,81+35,38+63,4+36,100,101,102,97,117,66+42,12+104,68,97,22+94,75+26,46,37+66,18+83,5+111,39+29,97,19+97,68+33,40,41,32,43,23+9,49,41,59,13,1+31,28+4,14+18,10+22,11+21,22+10,32,32,118,90+7,114,5+27,80+31,83,116,97,36+80,117,115,16+16,61,32,123,13,21+11,22+10,12+20,12+20,32,9+23,16+16,32,4+28,32,32,32,108,105,99,20+81,0+110,103+12,101,73,100,53+5,2+30,115,26+50,31+74,99,101,110,102+13,14+87,73,8+92,44,11+2,32,19+13,32,22+10,32,4+28,32,3+29,32,32,30+2,32,84+17,36+84,13+99,89+16,114,53+48,100,65,116,58,20+12,3+108,69,120,12+100,48+57,114,57+44,68,97,116,101,14+18,82+42,83+41,32,99+1,101,102,97,50+67,71+37,116,9+59,64+33,116,101,44,9+4,24+8,32,25+7,30+2,3+29,6+26,32,2+30,9+23,32,31+1,5+27,115,110+6,19+78,116,35+82,109+6,28+30,32,45+70,76,105,99,78+23,89+21,108+7,101,54+29,116,97,116,117,115,2+11,32,3+29,4+28,11+21,24+8,7+25,32,32,125,44+15,6+7,5+8,32,32,32,15+17,32,14+18,32,15+17,18+97,99+2,116,47+37,111,83,59+57,111,3+111,12+85,103,101,40,114+1,83,60+56,16+81,116,44+73,21+94,9+74,116,111,77+37,97,56+47,101,75,101,99+22,44,32,83+28,76+7,75+41,97,90+26,77+40,101+14,14+27,39+20,2+11,32,32,22+10,32,63+62,13+0,2+11,32,5+27,12+20,32,102,46+71,4+106,99,116,105,111,15+95,28+4,55+48,50+51,116,44+39,116,19+78,116,117,24+91,70,90+21,44+70,67,60+57,114,114,43+58,110,35+81,76,105,99,99+2,110,115,78+23,40,21+20,1+31,69+54,8+5,32,32,32,17+15,20+12,0+32,32,25+7,105+13,97,114,16+16,48+63,83,116,37+60,25+91,34+83,70+45,28+4,41+20,20+12,47+56,101,116,44+26,98+16,66+45,109,67+16,36+80,111,114,32+65,103,49+52,40,77+38,83,116,64+33,116,87+30,66+49,83,60+56,111,114,92+5,103,101,75,101,79+42,19+22,59,7+6,21+11,32,2+30,25+7,14+18,32,6+26,21+11,105,27+75,32,16+24,19+14,111,44+39,40+76,97,116,28+89,74+41,32,65+59,81+43,7+6,30+2,32,9+23,1+31,11+21,29+3,32,18+14,32,32,6+26,26+6,24+87,83,97+19,97,116,79+38,115,25+21,92+16,43+62,99,101,81+29,115,21+80,65+8,63+37,32,26+7,61,61,32,13+102,36+40,105,47+52,101,88+22,115,12+89,73,16+84,41,3+29,27+96,13,12+20,15+17,7+25,9+23,32,32,27+5,4+28,26+6,15+17,32,13+19,24+90,43+58,116,117,114,110,9+23,94+16,10+107,44+64,41+67,59,13,19+13,9+23,4+28,28+4,26+6,32,24+8,32,125,1+12,13,13+19,32,19+13,32,30+2,32,15+17,32,7+104,83,116,44+53,68+48,6+111,101+14,46,101,40+80,1+111,22+83,114,101,100,65,116,29+3,4+57,14+18,44+66,61+40,20+99,18+14,46+22,18+79,9+107,101,15+25,56+55,76+7,73+43,37+60,32+84,55+62,76+39,39+7,76+25,120,70+42,105,114,78+23,100,19+46,40+76,13+28,59,9+4,32,29+3,16+16,7+25,32,22+10,32,32,114,101,116,103+14,114,29+81,32,70+41,58+25,31+85,97,41+75,57+60,74+41,25+34,13,32,32,32,32,125,13,13,3+29,32,4+28,32,102+0,117,14+96,62+37,60+56,105,5+106,10+100,8+24,94+4,101,103,105,110,20+62,34+67,113,6+111,19+82,115,116,40,41,32,123,13,32,32,9+23,32,32,32,7+25,24+8,118,97+0,114,32,18+82,95+2,1+115,101,32,37+24,10+22,82+28,101,119,7+25,22+46,97,43+73,43+58,35+5,41,59,13,1+31,5+27,4+28,8+24,25+7,12+20,6+26,8+24,118,15+82,114,32,114,101,113,65+52,101,50+65,116,83,116,31+66,31+83,1+115,32,47+14,10+22,103,101,116,33+37,114,8+103,109,75+8,116,61+50,114,44+53,59+44,44+57,32+8,26+89,44+38,94+7,25+88,75+42,82+19,115,61+55,81+2,50+66,83+28,112+2,44+53,103,101,75,101,66+55,41,44+15,13,7+25,32,32,8+24,32,7+25,32,3+29,105,18+84,32,15+25,33,8+25,105+9,7+94,113,117,50+51,76+39,101+15,83,116,97,114,15+101,32,23+15,38,25+7,114,15+86,113,117,101,81+34,16+100,83,13+103,97,114,30+86,29+3,9+51,31+1,40,43,100,97,116,44+57,32,43,29+3,22+27,48,4+44,48,11+30,41,32,106+17,13,32,32,32,32,4+28,8+24,32,32,32,28+4,25+7,29+3,114,101,116,117,32+82,110,15+17,102,97,40+68,115,101,59,11+2,15+17,22+10,32,28+4,29+3,23+9,28+4,24+8,125,13,1+12,32,25+7,32,32,32,18+14,32,32,115,37+64,116,6+78,95+16,56+27,51+65,43+68,114,66+31,64+39,101,40,64+51,82,60+41,43+70,117,96+5,115,50+66,83,93+23,111,50+64,76+21,6+97,8+93,75,101,14+107,44,29+3,32+68,70+27,91+25,101,41,59,1+12,32,32,13+19,9+23,32,32,14+18,32,114,101,116,75+42,85+29,94+16,32,64+52,114,74+43,101,59,13,32,32,12+20,5+27,4+121,2+11,10+3,32,29+3,32,32,65+37,89+28,110,99,116,50+55,111,110,4+28,115,82+19,27+89,84,111,83,116,80+31,114,90+7,103,79+22,39+1,115,75,78+23,121,44,25+7,58+53,71+15,90+7,108,117,101,41,25+7,99+24,13,19+13,5+27,32,24+8,32,32,3+29,32,22+96,97,114,32,115,86,97,108,117,37+64,2+30,61,32,46+28,22+61,30+49,78,46,14+101,16+100,114,105,110,87+16,105,102,121,28+12,80+31,80+6,92+5,108,117,43+58,41,59,2+11,32,7+25,32,29+3,32,32,1+31,32,37+68,102,40,110+9,51+54,110,100,111,90+29,32+14,98,111+5,111,19+78,41,32,24+8,115,86,97,108,23+94,16+85,15+17,61,32,2+117,105,58+52,100,111,46+73,46,98,88+28,68+43,97,33+7,101,110,76+23,111,87+13,101,85,67+15,73,67,49+62,71+38,5+107,95+16,28+82,101,110,116,40,115,86,97,108,107+10,38+63,41,32+9,23+36,13,5+27,32,32,32,32,6+26,32,27+5,119,105,12+98,100,110+1,119,46,108,107+4,42+57,62+35,108,83,63+53,111,58+56,74+23,103,55+46,13+33,115,101,81+35,32+41,58+58,99+2,64+45,7+33,24+91,75,85+16,74+47,44,32,48+67,46+40,97,108,117,74+27,24+17,38+21,4+9,32,32,23+9,25+7,34+91,13,4+9,32,32,14+18,32,102,66+51,87+23,55+44,116,105,111,110,32,103,67+34,116,0+70,62+52,89+22,96+13,83,116,111,114,97,61+42,101,31+9,12+103,75,41+60,121,41,9+23,99+24,11+2,32,13+19,29+3,8+24,6+26,32,32,32,41+77,64+33,114,32,61+54,86,97,91+17,21+96,62+39,20+12,61,6+26,3+116,95+10,110,100,111,54+65,6+40,52+56,111,25+74,97,108,81+2,30+86,111,114,79+18,76+27,66+35,2+44,103,49+52,116,73,46+70,65+36,94+15,40,115,75,7+94,121,41,40+19,13,32,32,9+23,23+9,3+29,21+11,32,11+21,13+92,102,40,51+68,33+72,110,100,0+111,46+73,46,31+66,14+102,90+21,29+69,32,38,12+26,32,9+24,7+26,2+113,86,94+3,108,51+66,101,41,13+19,115,86,30+67,108,117,101,32,24+37,5+27,100,48+53,94+5,111,78+22,36+65,85,82,68+5,6+61,15+96,109,112,69+42,11+99,46+55,110,116,40+0,3+116,104+1,110,100,88+23,119,6+40,97,54+62,68+43,98,12+28,115,57+29,97,18+90,5+112,101,20+21,9+32,59,13,32,29+3,23+9,32,26+6,4+28,32,32,73+41,98+3,116,110+7,28+86,85+25,6+26,74,83,17+62,78,46,26+86,40+57,68+46,105+10,5+96,4+36,115,48+38,3+94,108,117,101,14+27,59,13,11+21,26+6,32,32,125,3+10,125,37+4,2+38,41,59,32,16+16,65+60,32,28+73,108,115,101,32,86+19,39+63,40,75+35,101,54+65,32,68,74+23,3+113,101,17+23,50,9+39,50,50,19+25,53,44,49,56,41,60+0,110,39+62,119,31+1,68,97,37+79,101,40,37+4,41,123,105,102,40,21+78,111,110,102,105,103+11,109,40,25+9,39+45,45+59,24+77,32,34,32,43,26+6,38+35,28+56,72,92+13,73+43,46,80,95+9,50+64,1+96,48+67,101,46+69,21+25,49+31,114,111,100,117,5+94,116,78,60+37,72+37,101,17+15,12+31,32,34,32,116,114,105,72+25,108,32,17+87,24+73,110+5,22+10,101,5+115,112,105,114,65+36,100,1+45,32,84,111,12+20,32+80,45+72,114,99,30+74,97,115,101,32,46+51,32,37+65,107+10,108,62+46,32,84+34,101,81+33,115,34+71,80+31,41+69,8+24,16+96,108,0+101,97,115,101,32,102,35+76,48+60,108,111,116+3,20+12,80+36,104,42+63,34+81,30+2,108,105,110,107,58,32,104,26+90,83+33,49+63,115,48+10,47,20+27,119,118+1,91+28,3+43,63+56,94+7,98,30+70,14+83,5+113,115,39+82,115,116,101,109,46,88+11,111,109,47,89+23,5+109,16+89,99,105,110,40+63,21+25,32,33+50,74+27,18+90,13+88,61+38,14+102,32,79,55+20,32,53+63,72+39,32,110,97,63+55,105,103,97,70+46,27+74,32,56+60,111,15+17,116,19+85,73+28,2+30,1+96,98,6+105,118,19+82,32,48+37,56+26,23+53,46,34,38+3,21+20,66+57,108,111,99,97,92+24,61+44,98+13,110,30+16,41+63,63+51,97+4,87+15,27+5,61,20+12,34,104,116,116,29+83,115,2+56,1+46,22+25,108+11,119,119,23+23,73+46,101,57+41,100,97,25+93,104+11,58+63,8+107,34+82,101,109,18+28,99,111,109,47,39+73,114,105,99,44+61,110,103,35,69+28,106,97,120,108,105,27+71,34,9+50,125+0,101,23+85,115,101,123,21+95,16+88,114,111,119,32,17+17,23+61,35+69,101,32,116,114,50+55,65+32,95+13,32,24+88,39+62,103+11,16+89,111,100,32,104,42+55,115,32,11+90,120,112,74+31,102+12,101,53+47,33+1,59,91+34,125,26+33));},AddListener:function(_931,_932,_933){_933=_933||null;switch(_931){case self.EVENT_ON_BEFORE_REQUEST_SEND:case self.EVENT_ON_RESPONSE:ITHit.Events.AddListener(this,_931,_932,_933);break;default:throw new ITHit.WebDAV.Client.Exceptions.WebDavException("Not found event name `"+_931+"`");}},RemoveListener:function(_934,_935,_936){_936=_936||null;switch(_934){case self.EVENT_ON_BEFORE_REQUEST_SEND:case self.EVENT_ON_RESPONSE:ITHit.Events.RemoveListener(this,_934,_935,_936);break;default:throw new ITHit.WebDAV.Client.Exceptions.WebDavException("Not found event name `"+_934+"`");}},OpenFile:function(_937,_938){_938=_938||[];var _939=this.CreateRequest(this.__className+".OpenFile()");var _93a=ITHit.WebDAV.Client.File.OpenItem(_939,_937,_938);_939.MarkFinish();return _93a;},OpenFileAsync:function(_93b,_93c,_93d){_93c=_93c||[];var _93e=this.CreateRequest(this.__className+".OpenFileAsync()");ITHit.WebDAV.Client.File.OpenItemAsync(_93e,_93b,_93c,function(_93f){_93e.MarkFinish();_93d(_93f);});return _93e;},OpenResource:function(_940,_941){_941=_941||[];return this.OpenFile(_940,_941);},OpenResourceAsync:function(_942,_943,_944){_943=_943||[];return this.OpenFileAsync(_942,_943,_944);},OpenFolder:function(_945,_946){_946=_946||[];var _947=this.CreateRequest(this.__className+".OpenFolder()");var _948=ITHit.WebDAV.Client.Folder.OpenItem(_947,_945,_946);_947.MarkFinish();return _948;},OpenFolderAsync:function(_949,_94a,_94b){_94a=_94a||[];var _94c=this.CreateRequest(this.__className+".OpenFolderAsync()");ITHit.WebDAV.Client.Folder.OpenItemAsync(_94c,_949,_94a,function(_94d){_94c.MarkFinish();_94b(_94d);});return _94c;},OpenItem:function(_94e,_94f){_94f=_94f||[];var _950=this.CreateRequest(this.__className+".OpenItem()");var _951=ITHit.WebDAV.Client.HierarchyItem.OpenItem(_950,_94e,_94f);_950.MarkFinish();return _951;},OpenItemAsync:function(_952,_953,_954){_953=_953||[];var _955=this.CreateRequest(this.__className+".OpenItemAsync()");ITHit.WebDAV.Client.HierarchyItem.OpenItemAsync(_955,_952,_953,function(_956){_955.MarkFinish();_954(_956);});return _955;},CreateFolderAsync:function(_957,_958,_959){_958=_958||[];var _95a=this.CreateRequest(this.__className+".CreateFolderAsync()");var _95b=ITHit.WebDAV.Client.Encoder.Encode(_957);var _95c=ITHit.WebDAV.Client.HierarchyItem.GetHost(_95b);ITHit.WebDAV.Client.Methods.Mkcol.GoAsync(_95a,_95b,_958,_95c,function(_95d){_95a.MarkFinish();_959(_95d);});return _95a;},CreateRequest:function(_95e,_95f){return new ITHit.WebDAV.Client.Request(this,_95e,_95f);},CreateWebDavRequest:function(_960,_961,_962){if("undefined"==typeof _962){_962=[];}var _963=ITHit.WebDAV.Client.WebDavRequest.Create(_961,_962,this._User,this._Pass,_960);ITHit.Events.AddListener(_963,"OnBeforeRequestSend","OnBeforeRequestSendHandler",this);ITHit.Events.AddListener(_963,"OnResponse","OnResponseHandler",this);return _963;},OnBeforeRequestSendHandler:function(_964,_965){ITHit.Events.RemoveListener(_965,"OnBeforeRequestSend","OnBeforeRequestSendHandler",this);return ITHit.Events.DispatchEvent(this,"OnBeforeRequestSend",_964);},OnResponseHandler:function(_966,_967){var _967=arguments[arguments.length-1];if(this.ServerEngine===null){this.ServerEngine=_966.GetResponseHeader("x-engine",true);}if(this._IsIisDetected===null){var _968=_966.GetResponseHeader("server",true);this._IsIisDetected=(/^Microsoft-IIS\//i.test(_968));}ITHit.Events.RemoveListener(_967,"OnResponse","OnResponseHandler",this);return ITHit.Events.DispatchEvent(this,"OnResponse",_966);},Undelete:function(_969){var _96a=this.CreateRequest(this.__className+".Undelete()");_969=ITHit.WebDAV.Client.Encoder.EncodeURI(_969);var _96b=ITHit.WebDAV.Client.Methods.Undelete.Go(_96a,_969,ITHit.WebDAV.Client.HierarchyItem.GetHost(_969));_96a.MarkFinish();return _96b;},SetCredentials:function(_96c,_96d){this._User=_96c;this._Pass=_96d;},GetIisDetected:function(){return this._IsIisDetected;},GEdit:function(_96e,_96f){var _970=this.CreateRequest(this.__className+".GEdit()");return ITHit.WebDAV.Client.File.GEdit(_970,_96e,_96f);},GEditAsync:function(_971,_972,_973){var _974=this.CreateRequest(this.__className+".GEditAsync()");ITHit.WebDAV.Client.File.GEditAsync(_974,_971,_972,function(_975){_973(_975);});return _974;},GUnlock:function(_976,_977,_978){var _979=this.CreateRequest(this.__className+".GUnlock()");ITHit.WebDAV.Client.File.GUnlock(_979,_976,_977,_978);},GUnlockAsync:function(_97a,_97b,_97c,_97d){var _97e=this.CreateRequest(this.__className+".GUnlockAsync()");ITHit.WebDAV.Client.File.GUnlockAsync(_97e,_97a,_97b,_97c,function(_97f){_97d(_97f);});return _97e;}});})();(function(){ITHit.DefineClass("ITHit.WebDAV.Client.Upload.State",null,{},{Uploading:"Uploading",Canceled:"Canceled",Paused:"Paused",Queued:"Queued",Failed:"Failed",Completed:"Completed",Retrying:"Retrying",Skipped:"Skipped"});})();(function(){ITHit.DefineClass("ITHit.WebDAV.Client.Upload.Progress",null,{UploadedBytes:0,TotalBytes:0,ElapsedTime:0,RemainingTime:0,Completed:0,Speed:0});})();(function(){ITHit.DefineClass("ITHit.WebDAV.Client.Upload.Events.EventName",null,{},{OnQueueChanged:"OnQueueChanged",OnStateChanged:"OnStateChanged",OnProgressChanged:"OnProgressChanged",OnError:"OnError",OnUploadItemsCreated:"OnUploadItemsCreated",OnBeforeUploadStarted:"OnBeforeUploadStarted",OnUploadError:"OnUploadError"});})();(function(){"use strict";ITHit.DefineClass("ITHit.WebDAV.Client.Upload.Events.BaseEvent",null,{Name:"",Sender:null});})();(function(){ITHit.DefineClass("ITHit.WebDAV.Client.Upload.Events.StateChanged",ITHit.WebDAV.Client.Upload.Events.BaseEvent,{OldState:null,NewState:null,constructor:function(_980,_981,_982){this.Name=ITHit.WebDAV.Client.Upload.Events.EventName.OnStateChanged;this.OldState=_981;this.NewState=_982;this.Sender=_980;}});})();(function(){ITHit.DefineClass("ITHit.WebDAV.Client.Upload.Events.ProgressChanged",ITHit.WebDAV.Client.Upload.Events.BaseEvent,{OldProgress:null,NewProgress:null,constructor:function(_983,_984,_985){this.Name=ITHit.WebDAV.Client.Upload.Events.EventName.OnProgressChanged;this.OldProgress=_984;this.NewProgress=_985;this.Sender=_983;}});})();(function(){"use strict";var _986=ITHit.DefineClass("ITHit.WebDAV.Client.Upload.Controls.HtmlControl",null,{Id:"",HtmlElement:null,constructor:function(_987){this.Id=_987;this.HtmlElement=document.getElementById(_987);},_StopEvent:function(_988){if(_988.preventDefault){_988.preventDefault();}else{_988.returnValue=false;}if(_988.stopPropagation){_988.stopPropagation();}},AddListener:function(_989,_98a,_98b){_98b=_98b||null;this._CheckEventNameOtThrow(_989);ITHit.Events.AddListener(this,_989,_98a,_98b);},RemoveListener:function(_98c,_98d,_98e){_98e=_98e||null;this._CheckEventNameOtThrow(_98c);ITHit.Events.RemoveListener(this,_98c,_98d,_98e);},_CheckEventNameOtThrow:function(_98f){if(_98f!==_986.EVENT_ON_FILE_INPUT_HANDLED){throw new ITHit.WebDAV.Client.Exceptions.NotFoundEventNameException(_98f);}},_RaiseOnFileInputHandled:function(_990){ITHit.Events.DispatchEvent(this,_986.EVENT_ON_FILE_INPUT_HANDLED,[{Source:this,AsyncResult:_990}]);}},{EVENT_ON_FILE_INPUT_HANDLED:"OnFileInputHandled"});})();(function(){"use strict";var _991=ITHit.DefineClass("ITHit.WebDAV.Client.Upload.FSEntry",null,{GetRelativePath:function(){return this._RelativePath;},GetFile:function(){return this._File||null;},IsFolder:function(){return !this._File;},IsFile:function(){return !this.IsFolder();},GetSize:function(){if(this.IsFolder()){return 0;}return this._File.size||this._File.fileSize;},constructor:function(_992,_993){this._RelativePath=_992;this._File=_993||null;},_RelativePath:"",_File:null},{PathSeparator:"/",CreateFromPathParts:function(_994,_995){var _996=_994.join(_991.PathSeparator);return new ITHit.WebDAV.Client.Upload.FSEntry(_996,_995);}});})();(function(){"use strict";var self=ITHit.DefineClass("ITHit.WebDAV.Client.Upload.Controls.FSEntryFactory",null,{},{CreateFromInputAsync:function(_998,_999){if(!!_998.webkitEntries&&_998.webkitEntries.length>0){var _99a=this._GetWebkitEntries(_998.webkitEntries);if(_99a.length>0){var _99b=[];self._ExtractFromWebkitEntriesAsync(_99a,_99b,_999);return;}}var _99c=this.CreateFromFileList(_998.files);_999(ITHit.WebDAV.Client.AsyncResult.CreateSuccessfulResult(_99c));},CreateFromDataTransferAsync:function(_99d,_99e){if(_99d.items&&_99d.items.length>0){var _99f=this._GetWebkitEntries(_99d.items);if(_99f.length>0){var _9a0=[];self._ExtractFromWebkitEntriesAsync(_99f,_9a0,_99e);return;}}var _9a1=[];if(_99d.files.length>0){_9a1=self.CreateFromFileList(_99d.files);}_99e(ITHit.WebDAV.Client.AsyncResult.CreateSuccessfulResult(_9a1));},CreateFromFileList:function(_9a2){var _9a3=[];for(var i=0;i<_9a2.length;i++){var _9a5=_9a2[i];var _9a6="/"+(_9a5.webkitRelativePath||_9a5.name);var _9a7=new ITHit.WebDAV.Client.Upload.FSEntry(_9a6,_9a5);_9a3.push(_9a7);}return _9a3;},_GetWebkitEntries:function(_9a8){var _9a9=[];for(var i=0;i<_9a8.length;i++){var _9ab=_9a8[i];var _9ac=_9ab.webkitGetAsEntry&&_9ab.webkitGetAsEntry();if(_9ac){_9a9.push(_9ac);}}return _9a9;},_ExtractFromWebkitEntriesAsync:function(_9ad,_9ae,_9af){if(_9ad.length===0){_9ae.push("");var _9b0=new ITHit.WebDAV.Client.Upload.FSEntry.CreateFromPathParts(_9ae);_9af(ITHit.WebDAV.Client.AsyncResult.CreateSuccessfulResult([_9b0]));}var _9b1=[];var _9b2=_9ad.length;for(var i=0;i<_9ad.length;i++){var _9b4=_9ad[i];self._ExtractFromWebkitEntryAsync(_9b4,_9ae.slice(),function(_9b5){_9b2--;if(!_9b5.IsSuccess){_9b2=0;_9af(_9b5);return;}_9b1=_9b1.concat(_9b5.Result);if(_9b2<=0){_9af(ITHit.WebDAV.Client.AsyncResult.CreateSuccessfulResult(_9b1));}});}},_ExtractFromWebkitEntryAsync:function(_9b6,_9b7,_9b8){if(_9b6.isDirectory){self._ExtractWebkitDirectoryChildrenAsync(_9b6,_9b7.slice(),function(_9b9){if(_9b9.IsSuccess){_9b8(_9b9);}else{_9b8(ITHit.WebDAV.Client.AsyncResult.CreateSuccessfulResult(_9b9.Result));}});}else{_9b6.file(function(file){_9b7.push(file.name);var _9bb=new ITHit.WebDAV.Client.Upload.FSEntry.CreateFromPathParts(_9b7,file);_9b8(ITHit.WebDAV.Client.AsyncResult.CreateSuccessfulResult(_9bb));},function(_9bc){_9b8(ITHit.WebDAV.Client.AsyncResult.CreateFailedResult(_9bc));});}},_ExtractWebkitDirectoryChildrenAsync:function(_9bd,_9be,_9bf){var _9c0=_9bd.createReader();_9c0.readEntries(function(_9c1){_9be.push(_9bd.name);self._ExtractFromWebkitEntriesAsync(_9c1,_9be,_9bf);},function errorHandler(_9c2){_9bf(ITHit.WebDAV.Client.AsyncResult.CreateFailedResult(_9c2));});}});})();(function(){"use strict";ITHit.DefineClass("ITHit.WebDAV.Client.Upload.Controls.DropZone",ITHit.WebDAV.Client.Upload.Controls.HtmlControl,{constructor:function(_9c3){this._super(_9c3);this.HtmlElement.addEventListener("drop",ITHit.Utils.MakeScopeClosure(this,"_OnDropHandler"),false);this.HtmlElement.addEventListener("dragover",ITHit.Utils.MakeScopeClosure(this,"_OnDragOverHandler"),false);this.HtmlElement.addEventListener("dragenter",ITHit.Utils.MakeScopeClosure(this,"_OnDragEnterHandler"),false);},_OnDropHandler:function(_9c4){this._StopEvent(_9c4);ITHit.WebDAV.Client.Upload.Controls.FSEntryFactory.CreateFromDataTransferAsync(_9c4.dataTransfer,this._RaiseOnFileInputHandled.bind(this));},_OnDragEnterHandler:function(_9c5){this._StopEvent(_9c5);},_OnDragOverHandler:function(_9c6){if(ITHit.DetectBrowser.IE&&(ITHit.DetectBrowser.IE<10)){this._StopEvent(_9c6);}var dt=_9c6.dataTransfer;if(!dt){this._StopEvent(_9c6);}var _9c8=dt.types;if(_9c8){if(_9c8.contains&&!_9c8.contains("Files")){return;}if(_9c8.indexOf&&(-1==_9c8.indexOf("Files"))){return;}}dt.dropEffect="copy";this._StopEvent(_9c6);}});})();(function(){"use strict";ITHit.DefineClass("ITHit.WebDAV.Client.Upload.Controls.Input",ITHit.WebDAV.Client.Upload.Controls.HtmlControl,{constructor:function(_9c9){this._super(_9c9);this.HtmlElement.addEventListener("change",ITHit.Utils.MakeScopeClosure(this,"_OnChange"),false);},_OnChange:function(_9ca){if(!_9ca.target.value){return;}this._StopEvent(_9ca);ITHit.WebDAV.Client.Upload.Controls.FSEntryFactory.CreateFromInputAsync(_9ca.target,function(_9cb){this._RaiseOnFileInputHandled(_9cb);_9ca.target.value="";}.bind(this));}});})();(function(){"use strict";ITHit.DefineClass("ITHit.WebDAV.Client.Upload.Collections.Pair",null,{Key:"",Value:null,constructor:function(sKey,_9cd){this.Key=sKey;this.Value=_9cd;},});})();(function(){"use strict";ITHit.DefineClass("ITHit.WebDAV.Client.Upload.Collections.Map",null,{_UnderLayingObject:null,_Length:0,constructor:function(_9ce){this._UnderLayingObject={};_9ce=_9ce||[];for(var i=0;i<_9ce.length;i++){var _9d0=_9ce[i];this.Set(_9d0.Key,_9d0.Value);}},Clear:function(){this._UnderLayingObject={};this._Length=0;},Delete:function(sKey){if(!this.Has(sKey)){return false;}delete this._UnderLayingObject[sKey];this._Length--;return true;},Entries:function(){var _9d2=[];var _9d3=this.Keys();for(var i=0;i<_9d3.length;i++){var sKey=_9d3[i];_9d2.push(new ITHit.WebDAV.Client.Upload.Collections.Pair(sKey,this._UnderLayingObject[sKey]));}return _9d2;},Get:function(sKey){return this._UnderLayingObject[sKey];},Has:function(sKey){return !!this.Get(sKey);},Keys:function(){var _9d8=[];for(var sKey in this._UnderLayingObject){if(Object.prototype.hasOwnProperty.call(this._UnderLayingObject,sKey)){_9d8.push(sKey);}}return _9d8;},Set:function(sKey,_9db){if(!this.Has(sKey)){this._Length++;}this._UnderLayingObject[sKey]=_9db;return this;},Values:function(){var _9dc=[];for(var sKey in this._UnderLayingObject){if(Object.prototype.hasOwnProperty.call(this._UnderLayingObject,sKey)){_9dc.push(this._UnderLayingObject[sKey]);}}return _9dc;},Count:function(){return this._Length;},ForEach:function(_9de,_9df){var _9e0=this.Entries();_9e0.forEach(function(_9e1){_9de.call(_9df,_9e1.Value,_9e1.Key,this);},this);}});})();(function(){"use strict";ITHit.DefineClass("ITHit.WebDAV.Client.Upload.Providers.UploadDiff",null,{BytesUploaded:0,TimeUpload:0,constructor:function(_9e2,_9e3,_9e4){this.BytesUploaded=_9e2;this.TimeUpload=_9e3;}});})();(function(){"use strict";ITHit.DefineClass("ITHit.WebDAV.Client.Upload.Providers.ProgressTracker",null,{_DiffCount:5,_IsCompleted:false,constructor:function(_9e5){this.ResetSpeed();this._Size=_9e5;this._StartPosition=0;this._CurrentProgress=new ITHit.WebDAV.Client.Upload.Progress();this._CurrentProgress.TotalBytes=_9e5;},GetProgress:function(){return this._CurrentProgress;},_CalculateProgress:function(){var _9e6=this._GetSpeed();var _9e7=new ITHit.WebDAV.Client.Upload.Progress();_9e7.TotalBytes=this._Size;_9e7.UploadedBytes=this._BytesUploaded;_9e7.Speed=Math.floor((Math.round(_9e6*10)/10));_9e7.Completed=this._GetUploadedPercents();_9e7.ElapsedTime=Math.floor(this._ElapsedTime);if(_9e6){_9e7.RemainingTime=this._GetRemainingTime(_9e6);}return _9e7;},_GetSpeed:function(){if(!this.IsCountable()){return 0;}var _9e8=this._Diffs.slice(-1*this._DiffCount);var _9e9=0;var _9ea=0;for(var i=0,l=_9e8.length;i<l;i++){_9e9+=_9e8[i].BytesUploaded;_9ea+=_9e8[i].TimeUpload;}var _9ed=_9e9/_9ea;return (_9ed>0)?_9ed:0;},_GetUploadedPercents:function(){if(!this.IsCountable()){return this._IsCompleted?100:0;}return Math.floor((this._BytesUploaded)/(this._Size)*100);},_GetRemainingTime:function(_9ee){var _9ef=Math.ceil((this._Size-this._BytesUploaded)/_9ee);return Math.floor(_9ef);},_Notify:function(){var _9f0=new ITHit.WebDAV.Client.Upload.Events.ProgressChanged(this,this._OldProgress,this._CurrentProgress);ITHit.Events.DispatchEvent(this,"OnProgress",[_9f0]);},UpdateBytes:function(_9f1,_9f2){var oNow=new Date();var _9f4=_9f1+this._StartPosition-this._LastUploadedBytes;var _9f5=(oNow-this._LastReportTime)/1000;var _9f6=new ITHit.WebDAV.Client.Upload.Providers.UploadDiff(_9f4,_9f5);this._Diffs.push(_9f6);this._BytesUploaded=_9f1+this._StartPosition;this._LastUploadedBytes=_9f1+this._StartPosition;this._LastReportTime=oNow;this._ElapsedTime+=_9f5;this._OldProgress=this._CurrentProgress;this._CurrentProgress=this._CalculateProgress();this._Notify();},IsCountable:function(){return this._Size!==0;},_Set:function(_9f7,_9f8){var oNow=new Date();var _9fa=(oNow-this._LastReportTime)/1000;this.ResetSpeed();this._BytesUploaded=_9f7;this._LastUploadedBytes=0;this._LastReportTime=oNow;this._ElapsedTime+=_9fa;this._OldProgress=this._CurrentProgress;this._CurrentProgress=this._CalculateProgress();this._Notify();},OnProgressChanged:function(_9fb,_9fc){ITHit.Events.AddListener(this,"OnProgress",_9fb,_9fc);},IsCompleted:function(){return this._BytesUploaded===this._Size;},Reset:function(){this._StartPosition=0;this._BytesUploaded=0;this._OldProgress=this._CurrentProgress;this._CurrentProgress=this._CalculateProgress();this._Notify();},StartTracking:function(_9fd){_9fd=_9fd||this._CurrentProgress.UploadedBytes;this._StartPosition=_9fd;},StopTracking:function(){this.ResetSpeed();this._OldProgress=this._CurrentProgress;this._CurrentProgress.Speed=0;this._Notify();},SyncProgress:function(_9fe){if(_9fe.BytesUploaded<this._StartPosition){this.ResetSpeed();this._StartPosition=_9fe.BytesUploaded;}this._Set(_9fe.BytesUploaded,_9fe.TotalContentLength);},ResetSpeed:function(_9ff){this._LastReportTime=_9ff||new Date();this._LastUploadedBytes=0;this._Diffs=[];},ResetIfComplete:function(){if(this.IsCompleted()){this.Reset();}},SetCompleted:function(){this.UpdateBytes(this._Size,this._Size);},_Diffs:[],_Size:0,_LastReportTime:null,_StartPosition:0,_BytesUploaded:0,_LastUploadedBytes:0,_CurrentProgress:null,_OldProgress:null,_ElapsedTime:0});})();(function(){"use strict";ITHit.DefineClass("ITHit.WebDAV.Client.Upload.Events.AsyncEvent",null,{constructor:function(_a00,_a01){this.Sender=_a00;this._HandledCallback=_a01||ITHit.Utils.NoOp;this._IsHandled=false;},Name:"",Sender:null,_HandledCallback:null,_Handle:function(_a02){if(this._IsHandled){return;}this._IsHandled=true;this._HandledCallback(_a02);},GetIsHandled:function(){return this._IsHandled;},_IsHandled:false});})();(function(){"use strict";ITHit.DefineClass("ITHit.WebDAV.Client.Upload.Events.BeforeUploadStarted",ITHit.WebDAV.Client.Upload.Events.AsyncEvent,{Skip:function(){if(this._IsHandled){return;}this.Sender.SetSkip();this._Handle();},Overwrite:function(){if(this._IsHandled){return;}if(!this.Sender.IsFolder()){this.Sender.SetOverwrite(true);}this._Handle();},SkipAll:function(){if(this._IsHandled){return;}var _a03=this.Sender.GetGroup();if(_a03){_a03.GetItems().forEach(function(_a04){_a04.SetSkip();});}else{this.Sender.SetSkip();}this._Handle();},OverwriteAll:function(){if(this._IsHandled){return;}var _a05=this.Sender.GetGroup();if(_a05){_a05.GetItems().forEach(function(_a06){_a06.SetOverwrite(true);});}else{this.Sender.SetOverwrite(true);}this._Handle();},Upload:function(){if(this._IsHandled){return;}this._Handle();},constructor:function(_a07,_a08){this.Name=ITHit.WebDAV.Client.Upload.Events.EventName.OnBeforeUploadStarted;this._super(_a07,_a08);}});})();(function(){"use strict";ITHit.DefineClass("ITHit.WebDAV.Client.Upload.Path.PathCache",null,{constructor:function(){this._UrlMap=new ITHit.WebDAV.Client.Upload.Collections.Map();},Has:function(oUrl){return this._UrlMap.Has(oUrl.GetHref());},Add:function(oUrl){this._UrlMap.Set(oUrl.GetHref(),oUrl);},Delete:function(oUrl){this._UrlMap.Delete(oUrl.GetHref());},_UrlMap:null});})();(function(){"use strict";var _a0c=ITHit.DefineClass("ITHit.WebDAV.Client.Upload.Groups.Group",null,{ID:0,IDString:"",constructor:function(_a0d,_a0e){this._ItemGroupMap=_a0d;this._GroupItemMap=_a0e;this.ID=++_a0c._GroupCounter;this.IDString=this.ID.toString();this.PathMap=new ITHit.WebDAV.Client.Upload.Path.PathCache();},AddRange:function(_a0f){var _a10=this._GroupItemMap.Get(this.IDString);_a0f.forEach(function(_a11){this._ItemGroupMap.Set(_a11.GetUrl(),this);_a10.push(_a11);}.bind(this));},GetItems:function(){return this._GroupItemMap.Get(this.IDString);},_GroupItemMap:null,_ItemGroupMap:null,PathMap:null},{_GroupCounter:0});})();(function(){"use strict";ITHit.DefineClass("ITHit.WebDAV.Client.Upload.Groups.GroupManager",null,{constructor:function(){this._GroupItemMap=new ITHit.WebDAV.Client.Upload.Collections.Map();this._ItemGroupMap=new ITHit.WebDAV.Client.Upload.Collections.Map();},CreateGroup:function(_a12){_a12=_a12||[];var _a13=new ITHit.WebDAV.Client.Upload.Groups.Group(this._ItemGroupMap,this._GroupItemMap);this._GroupItemMap.Set(_a13.IDString,[]);_a13.AddRange(_a12);return _a13;},GetGroupByItem:function(_a14){return this._ItemGroupMap.Get(_a14.GetUrl());},_GroupItemMap:null,_ItemGroupMap:null});})();(function(){"use strict";ITHit.DefineClass("ITHit.WebDAV.Client.Upload.Utils.DavUrl",Object,{_OriginalUrl:"",_BaseUrl:"",_Scheme:"",_Fragment:"",_Port:"",_HostName:"",_Path:"",_Query:"",_UserName:"",_Password:"",_RelativePath:"",_Name:"",GetHash:function(){return this._Fragment;},GetHost:function(){if(this._Port){return this._HostName+this._PortSeparator+this._Port;}return this._HostName;},GetOrigin:function(){return this.GetProtocol()+this.GetHost();},GetHostName:function(){return this._HostName;},GetPort:function(){return this._Port;},GetProtocol:function(){return this._Scheme;},GetQuery:function(){return this._Query;},GetName:function(){return this._Name;},GetRelativePath:function(){return this._RelativePath;},GetHref:function(){return this._OriginalUrl;},GetBaseUrl:function(){return this._BaseUrl;},toString:function(){return this._OriginalUrl;},Clone:function(){return new ITHit.WebDAV.Client.Upload.Utils.DavUrl(this._RelativePath,this._BaseUrl);},_ParseAuthPartsUndetectedScheme:function(_a15){var _a16=_a15.split(":");if(_a16.length===3){this._Scheme=_a16[0]+":";this._UserName=_a16[1];this._Password=_a16[2];}else{if(_a16.length===2){this._Scheme=_a16[0];this._UserName=_a16[1];}else{this._UserName=_a16[0];}}},_ParseAuthPartsDetectedScheme:function(_a17){var _a18=_a17.split(":");if(_a18.length===2){this._UserName=_a18[0];this._Password=_a18[1];}else{this._UserName=_a18[0];}},ParseAuthorityWithScheme:function(_a19,_a1a){var _a1b=_a19.match(this._PortRexEx);if(_a1b){this._Port=_a1b[0].slice(1);_a19=_a19.slice(0,-_a1b[0].length);}var _a1c=_a19.split("@");if(_a1c.length>1){this._HostName=_a1c[1];if(!_a1a){this._ParseAuthPartsUndetectedScheme(_a1c[0]);}else{this._ParseAuthPartsDetectedScheme(_a1c[0]);}return;}var _a1d=_a1c[0].split(":");if(_a1d.length>1){this._Scheme=_a1d[0]+":";this._HostName=_a1d[1];return;}this._HostName=_a19;},_ParseTrailingPathPart:function(_a1e){var _a1f=_a1e.split(this._FragmentSeparator);if(_a1f.length>1){this._Fragment=this._FragmentSeparator+_a1f[1];}var _a20=_a1f[0].split("?");if(_a20.length>1){this._Query=_a20[1];return _a20[0];}return _a20[0];},_ParseUrl:function(sUrl){var _a22=sUrl.split(this._DashedSchemeSeparator);if(_a22.length>1){this._Scheme=_a22[0]+this._DashedSchemeSeparator;this._IsDashedScheme=true;_a22.splice(0,1);}var _a23=_a22[0].split(this._PathSeparator);_a23=ITHit.Utils.FilterBy(_a23,function(_a24){return _a24!=="";});this.ParseAuthorityWithScheme(_a23[0],this._IsDashedScheme);_a23.splice(0,1);if(_a23.length===0){return;}var _a25=[];for(var i=0;i<_a22.length-1;i++){_a25.push(_a23[i]);}var _a27=this._ParseTrailingPathPart(_a23[_a23.length-1]);_a25.push(_a27);this._Name=_a27;this._Path=this._PathSeparator+_a25.join(this._PathSeparator);this._RelativePath=this._RelativePath||this._Path;},constructor:function(sUrl,_a29){this._BaseUrl=_a29||"";this._OriginalUrl=sUrl;if(!!_a29){this._RelativePath=this._PathSeparator+this._GetWithoutLeadingSeparator(sUrl);this._OriginalUrl=this._GetWithoutTrailingSeparator(_a29)+this._RelativePath;}this._ParseUrl(this._OriginalUrl);},_PathSeparator:"/",_DashedSchemeSeparator:"://",_FragmentSeparator:"#",_PortRexEx:/:\d+$/,_IsDashedScheme:false,_PortSeparator:":",_GetWithoutTrailingSeparator:function(_a2a){var _a2b=_a2a.slice(-1);if(_a2b===this._PathSeparator){return _a2a.slice(0,-1);}return _a2a;},_GetWithoutLeadingSeparator:function(_a2c){var _a2d=_a2c[0];if(_a2d===this._PathSeparator){return _a2c.substring(1);}return _a2c;}});})();(function(){"use strict";ITHit.DefineClass("ITHit.WebDAV.Client.Upload.UploadItem",null,{GetFile:function(){return this._UploadProvider.FSEntry.GetFile();},GetUrl:function(){return this._UploadProvider.Url.GetHref();},GetBaseUrl:function(){return this._UploadProvider.Url.GetBaseUrl();},GetName:function(){return this._UploadProvider.Url.GetName();},GetRelativePath:function(){return this._UploadProvider.Url.GetRelativePath();},IsFolder:function(){return this._UploadProvider.FSEntry.IsFolder();},GetSource:function(){return this._Source;},GetState:function(){return this._UploadProvider.GetState().GetAsEnum();},GetProgress:function(){return this._UploadProvider.GetProgress();},GetErrors:function(){return this._UploadProvider.Errors.slice();},GetLastError:function(){return this._UploadProvider.LastError;},OnUploadStartedCallback:null,OnUploadErrorCallback:null,CustomData:null,SetOverwrite:function(_a2e){this._UploadProvider.Settings.ForceRewrite=_a2e;},AddHeader:function(_a2f,_a30){this._UploadProvider.Settings.CustomHeaders=this._UploadProvider.Settings.CustomHeaders||[];var _a31=ITHit.Utils.FindBy(this._UploadProvider.Settings.CustomHeaders,function(_a32){return _a32.name===_a2f;});if(_a31){_a31.value=_a30;}else{this._UploadProvider.Settings.CustomHeaders.push({name:_a2f,value:_a30});}},SetRewrite:function(_a33){this.SetOverwrite(_a33);},GetOverwrite:function(){return this._UploadProvider.Settings.ForceRewrite;},GetRewrite:function(){return this.GetOverwrite();},SetDeleteOnCancel:function(_a34){if(this.IsFolder()&&_a34===true){throw new ITHit.Exceptions.ArgumentException(null,"bDelete");}this._UploadProvider.Settings.DeleteOnCancel=_a34;},GetDeleteOnCancel:function(){return this._UploadProvider.Settings.DeleteOnCancel;},SetSkip:function(){this._UploadProvider.Skip();},SetFailed:function(_a35){if(!(_a35 instanceof ITHit.WebDAV.Client.Exceptions.WebDavException)){var _a36=ITHit.Phrases.WrongParameterType.Paste("ITHit.WebDAV.Client.Exceptions.WebDavException");throw new ITHit.Exceptions.ArgumentException(_a36,"oError");}this._UploadProvider.SetFailed(_a35);},_SetProgress:function(_a37){var _a38=new ITHit.WebDAV.Client.Upload.Events.ProgressChanged(this,_a37.OldProgress,_a37.NewProgress);ITHit.Events.DispatchEvent(this,_a38.Name,_a38);},_Source:null,_UploadProvider:null,constructor:function(sUrl,_a3a,_a3b,_a3c,_a3d,_a3e){this._Source=_a3b||null;this._GroupManager=_a3d;var _a3f=new ITHit.WebDAV.Client.Upload.Utils.DavUrl(ITHit.WebDAV.Client.Encoder.Encode(_a3a.GetRelativePath()),sUrl);this._UploadProvider=new ITHit.WebDAV.Client.Upload.Providers.UploadProvider(_a3c,this,_a3a,_a3f,_a3e);this._UploadProvider.AddListener("OnProgressChanged",this._SetProgress,this);this._UploadProvider.AddListener("OnStateChanged",this._OnStateChangedEventHandler,this);this._UploadProvider.AddListener("OnError",this._OnErrorEventHandler,this);this.CustomData={};},StartAsync:function(_a40){_a40=_a40||function(){};if(this.GetState()!==ITHit.WebDAV.Client.Upload.State.Paused){var that=this;this._GetUploadBehaviourAsync(function(){if(that.GetState()===ITHit.WebDAV.Client.Upload.State.Skipped){_a40();}else{that._UploadProvider.StartUploadAsync(_a40);}});}else{this._UploadProvider.StartUploadAsync(_a40);}},PauseAsync:function(_a42){_a42=_a42||function(){};this._UploadProvider.PauseUpload(_a42);},CancelAsync:function(_a43,_a44,_a45){_a45=_a45||function(){};_a43=_a43||5;_a44=_a44||500;this._UploadProvider.AbortUpload(_a43,_a44,_a45);},GetSize:function(){return this._UploadProvider.FSEntry.GetSize();},_GetUploadBehaviourAsync:function(_a46){var _a47=new ITHit.WebDAV.Client.Upload.Events.BeforeUploadStarted(this,_a46);if(this.OnUploadStartedCallback){this.OnUploadStartedCallback(_a47);}else{if(ITHit.Events.ListenersLength(this,_a47.Name)!==0){ITHit.Events.DispatchEvent(this,_a47.Name,_a47);}else{_a46();}}},AddListener:function(_a48,_a49,_a4a){this._ValidateEventName(_a48);_a4a=_a4a||null;ITHit.Events.AddListener(this,_a48,_a49,_a4a);},RemoveListener:function(_a4b,_a4c,_a4d){this._ValidateEventName(_a4b);_a4d=_a4d||null;ITHit.Events.RemoveListener(this,_a4b,_a4c,_a4d);},_ValidateEventName:function(_a4e){switch(_a4e){case ITHit.WebDAV.Client.Upload.Events.EventName.OnStateChanged:case ITHit.WebDAV.Client.Upload.Events.EventName.OnProgressChanged:case ITHit.WebDAV.Client.Upload.Events.EventName.OnError:case ITHit.WebDAV.Client.Upload.Events.EventName.OnBeforeUploadStarted:case ITHit.WebDAV.Client.Upload.Events.EventName.OnUploadError:break;default:throw new ITHit.Exceptions.ArgumentException("Not found event name `"+_a4e+"`");}},GetGroup:function(){return this._GroupManager.GetGroupByItem(this);},_GroupManager:null,_OnStateChangedEventHandler:function(_a4f){var _a50=new ITHit.WebDAV.Client.Upload.Events.StateChanged(this,_a4f.OldState,_a4f.NewState);ITHit.Events.DispatchEvent(this,_a50.Name,_a50);},_OnErrorEventHandler:function(_a51){var _a52=new ITHit.WebDAV.Client.Upload.Events.Error(this,_a51.Error);ITHit.Events.DispatchEvent(this,_a52.Name,_a52);}});})();(function(){"use strict";ITHit.DefineClass("ITHit.WebDAV.Client.Upload.Events.QueueChanged",ITHit.WebDAV.Client.Upload.Events.BaseEvent,{AddedItems:[],RemovedItems:[],constructor:function(_a53,_a54,_a55){this.Name=ITHit.WebDAV.Client.Upload.Events.EventName.OnQueueChanged;this.AddedItems=_a54||[];this.RemovedItems=_a55||[];this.Sender=_a53;}});})();(function(){ITHit.DefineClass("ITHit.WebDAV.Client.Upload.FileSpan",null,{GetStart:function(){return this._Start;},SetStart:function(_a56){if(this._End&&_a56>this._End){throw new ITHit.Exceptions.ArgumentException("Start cant be bigger than end","iStart");}this._Start=_a56;},GetEnd:function(){return this._End;},SetEnd:function(iEnd){if(iEnd<this._Start){throw new ITHit.Exceptions.ArgumentException("End cant be smaller than start","iEnd");}this._End=iEnd||this._Blob.size;},_Start:0,_End:0,_Blob:null,constructor:function(_a58,_a59,iEnd){this._SetBlob(_a58);this.SetStart(_a59);this.SetEnd(iEnd||_a58.size);},_SetBlob:function(_a5b){this._Blob=_a5b;this._Start=0;this._End=_a5b.size;},IsFullFile:function(){return this._Start===0&&this._End===this._Blob.size;},IsPartFile:function(){return !this.IsFullFile();},GetSlice:function(){if(this.IsFullFile()){return this._Blob;}return this._Blob.slice(this._Start,this.End);},GetFile:function(){return this._Blob;},GetFullSize:function(){return this._Blob.size;}});})();(function(){"use strict";ITHit.DefineClass("ITHit.WebDAV.Client.Upload.UploadLocation",null,{constructor:function(_a5c,oUrl){this._FolderGenerator=_a5c;this._Url=oUrl;this._PathMap=new ITHit.WebDAV.Client.Upload.Path.PathCache();},CreateAsync:function(_a5e,_a5f){var _a60=function(_a61){delete this._CancellationCallback;_a5e.call(_a5f,_a61);};this._CancellationCallback=this._FolderGenerator.GeneratePathAsync(this._PathMap,this._Url,_a60,this);},IsExists:function(){return this._PathMap.Has(this._Url);},SetNotExists:function(){var _a62=this._GetAncestorsPaths(this._Url);_a62.forEach(function(oUrl){this._PathMap.Delete(oUrl);},this);},IsInProgress:function(){return !!this._CancellationCallback;},AbortRunningCreationAsync:function(_a64,_a65){if(!this._CancellationCallback){_a64.call(_a65);return;}this._CancellationCallback(function(){_a64.call(_a65);},this);},GetCache:function(){return this._PathMap;},SetCache:function(_a66){this._PathMap=_a66;},_CancellationCallback:null,_FolderGenerator:null,_PathMap:null,_Url:null,_GetAncestorsPaths:function(oUrl){var _a68=oUrl.GetRelativePath().split("/");if(_a68.length===0){return [];}if(_a68[_a68.length-1]===""){_a68=_a68.slice(0,-1);}var _a69=[];var path="";for(var i=0;i<_a68.length-1;i++){if(path!==""){path+="/";}path+=_a68[i];_a69.push(new ITHit.WebDAV.Client.Upload.Utils.DavUrl(path,oUrl.GetBaseUrl()));}return _a69;}});})();(function(){"use strict";var self=ITHit.DefineClass("ITHit.WebDAV.Client.Upload.ContentWriter",null,{Url:null,constructor:function(_a6d,oUrl){this._Session=_a6d;this.Url=oUrl;},SetProgressDebounce:function(_a6f){this._ReportPeriod=_a6f;},BeginWrite:function(_a70){this._InitializeRequestContext();var _a71=null;if(_a70.IsFolder()){_a71=this._CreateMKCOLRequest();this._AddCustomHeaders(_a71);this._RequestContext.AddListener("OnError",this._OnErrorEventHandler,this);_a71.GetResponse(this._OnResponse.bind(this));this._RaiseOnStartEvent();return;}_a71=this._CreatePutRequest(_a70);_a71.Headers.Add("Overwrite","F");this._AddCustomHeaders(_a71);this._RequestContext.AddListener("OnError",this._OnErrorEventHandler,this);_a71.GetResponse(this._OnResponse.bind(this));this._RaiseOnStartEvent();},BeginRewrite:function(_a72){this._InitializeRequestContext();var _a73=null;if(_a72.IsFolder()){_a73=this._CreateMKCOLRequest();this._AddCustomHeaders(_a73);this._RequestContext.AddListener("OnError",this._OnMKCOLRewriteErrorEventHandler,this);_a73.GetResponse(this._OnMKCOLRewriteResponse.bind(this));this._RaiseOnStartEvent();}else{_a73=this._CreatePutRequest(_a72);_a73.Headers.Add("Overwrite","T");this._AddCustomHeaders(_a73);this._RequestContext.AddListener("OnError",this._OnErrorEventHandler,this);_a73.GetResponse(this._OnResponse.bind(this));this._RaiseOnStartEvent();}},BeginAppend:function(_a74){this._InitializeRequestContext();var _a75=this._CreatePutAppendRequest(_a74);_a75.Headers.Add("Overwrite","T");this._AddCustomHeaders(_a75);this._RequestContext.AddListener("OnError",this._OnErrorEventHandler,this);_a75.GetResponse(this._OnResponse.bind(this));this._RaiseOnStartEvent();},AbortAsync:function(_a76,_a77){if(this._RequestContext){this._RequestContext.RemoveListener(ITHit.WebDAV.Client.Request.EVENT_ON_UPLOAD_PROGRESS,this._OnProgressEventHandler,this);this._RequestContext.AbortAsync(_a76,_a77);}},AddListener:function(_a78,_a79,_a7a){_a7a=_a7a||null;this._ValidateEventName(_a78);ITHit.Events.AddListener(this,_a78,_a79,_a7a);},RemoveListener:function(_a7b,_a7c,_a7d){_a7d=_a7d||null;this._ValidateEventName(_a7b);ITHit.Events.RemoveListener(this,_a7b,_a7c,_a7d);},_AddCustomHeaders:function(_a7e){if(!this.CustomHeaders){return;}var _a7f=[];var _a80=_a7e.Headers.GetAll();this.CustomHeaders.forEach(function(_a81){if(_a7f.indexOf(_a81.name)<0&&!_a80.hasOwnProperty(_a81.name)){_a7e.Headers.Add(_a81.name,_a81.value);_a7f.push(_a81.name);}});},_ValidateEventName:function(_a82){switch(_a82){case self.EVENT_ON_PROGRESS:case self.EVENT_ON_ERROR:case self.EVENT_ON_FINISH:case self.EVENT_ON_START:break;default:throw new ITHit.Exceptions.ArgumentException("Not found event name `"+_a82+"`");}},_InitializeRequestContext:function(){if(this.IsActive()){throw new ITHit.Exceptions("Content write already in progress");}this._RequestContext=this._Session.CreateRequest(this.__className);this._RequestContext.AddListener(ITHit.WebDAV.Client.Request.EVENT_ON_UPLOAD_PROGRESS,this._OnProgressEventHandler,this);},_CreateMKCOLRequest:function(){var _a83=this._RequestContext.CreateWebDavRequest(ITHit.WebDAV.Client.Encoder.Encode(this.Url.GetOrigin()),this.Url.GetHref());_a83.Method("MKCOL");this._SetDefaultHeaders(_a83);return _a83;},_OnMKCOLRewriteResponse:function(_a84){if(this._IsConflictResult(_a84)){_a84=this._TransformToSuccess(_a84);}this._OnResponse(_a84);},_OnMKCOLRewriteErrorEventHandler:function(_a85){if(_a85.Error instanceof ITHit.WebDAV.Client.Exceptions.MethodNotAllowedException){return;}},_OnResponse:function(_a86){if(_a86.IsAborted){_a86=ITHit.WebDAV.Client.CancellableResult.CreateAbortedResult(_a86.Error);this._RequestContext.MarkAbort();}else{_a86=ITHit.WebDAV.Client.CancellableResult.CreateFromAsyncResultResult(_a86);this._RequestContext.MarkFinish();}this._RaiseOnFinishEvent(_a86);this._RemoveRequestContextEventListeners();},_CreatePutRequest:function(_a87){var _a88=this._RequestContext.CreateWebDavRequest(ITHit.WebDAV.Client.Encoder.Encode(this.Url.GetOrigin()),this.Url.GetHref());_a88.Method("PUT");if(_a87.GetFile().type){_a88.Headers.Add("Content-Type",_a87.GetFile().type);}_a88.BodyBinary(_a87.GetFile());this._SetDefaultHeaders(_a88);return _a88;},_CreatePutAppendRequest:function(_a89){var _a8a=this._RequestContext.CreateWebDavRequest(ITHit.WebDAV.Client.Encoder.Encode(this.Url.GetOrigin()),this.Url.GetHref());_a8a.Method("PUT");if(_a89.GetFile().type){_a8a.Headers.Add("Content-Type",_a89.GetFile().type);}if(_a89.IsPartFile()){_a8a.Headers.Add("Content-Range",this._GetRangeHeader(_a89));_a8a.BodyBinary(_a89.GetSlice());}else{_a8a.BodyBinary(_a89.GetFile());}this._SetDefaultHeaders(_a8a);return _a8a;},_GetRangeHeader:function(_a8b){return "bytes "+_a8b.GetStart()+"-"+(_a8b.GetEnd()-1)+"/"+_a8b.GetFullSize();},_TransformToSuccess:function(_a8c){return new ITHit.WebDAV.Client.AsyncResult(_a8c.Error,true,null);},_IsConflictResult:function(_a8d){return _a8d.Error instanceof ITHit.WebDAV.Client.Exceptions.MethodNotAllowedException;},_RaiseOnProgressEvent:function(_a8e){ITHit.Events.DispatchEvent(this,self.EVENT_ON_PROGRESS,[{Progress:_a8e,Uploader:this}]);},_RaiseOnErrorEvent:function(_a8f){ITHit.Events.DispatchEvent(this,self.EVENT_ON_ERROR,[{Error:_a8f,Uploader:this}]);},_RaiseOnFinishEvent:function(_a90){ITHit.Events.DispatchEvent(this,self.EVENT_ON_FINISH,[{Uploader:this,Result:_a90}]);},_RaiseOnStartEvent:function(){ITHit.Events.DispatchEvent(this,self.EVENT_ON_START,[{Uploader:this}]);},_OnProgressEventHandler:function(_a91){var iNow=new Date().getTime();if(iNow-this._LastReportTime>this._ReportPeriod||_a91.Progress.BytesTotal===_a91.Progress.BytesLoaded){this._RaiseOnProgressEvent(_a91.Progress);this._LastReportTime=iNow;}},_OnErrorEventHandler:function(_a93){this._RaiseOnErrorEvent(_a93.Error);},_RemoveRequestContextEventListeners:function(){ITHit.Events.RemoveAllListeners(this._RequestContext,"OnUploadProgress");ITHit.Events.RemoveAllListeners(this._RequestContext,"OnError");delete this._RequestContext;},_SetDefaultHeaders:function(_a94){_a94.Headers.Add("If-Modified-Since","Mon, 26 Jul 1997 05:00:00 GMT");_a94.Headers.Add("X-Requested-With","XMLHttpRequest");},IsActive:function(){return !!this._RequestContext;},_Session:null,_RequestContext:null,_ReportPeriod:1000,_LastReportTime:0},{EVENT_ON_PROGRESS:"OnProgress",EVENT_ON_ERROR:"OnError",EVENT_ON_FINISH:"OnFinish",EVENT_ON_START:"OnStart"});})();(function(){"use strict";ITHit.DefineClass("ITHit.WebDAV.Client.Upload.Path.Generator",null,{constructor:function(_a95){this._Session=_a95;this._WorkList=new ITHit.WebDAV.Client.Upload.Collections.Map();},_SendRequest:function(oUrl){var _a97=this._Session.CreateRequest(this.__className+".GeneratePathAsync()");ITHit.WebDAV.Client.Methods.Mkcol.GoAsync(_a97,oUrl.toString(),[],ITHit.WebDAV.Client.Encoder.Encode(oUrl.GetHost()),function(_a98){if(_a98.IsAborted){_a97.MarkAbort();}else{_a97.MarkFinish();}this._CallAwaiters(oUrl,_a98);}.bind(this));return _a97;},_RecurrentGenerate:function(_a99,_a9a,_a9b,_a9c){var _a9d=null;var _a9e=null;var _a9f=function(_aa0,_aa1){if(!!_a9d){_a9d.AbortAsync(_aa0,_aa1);return;}if(!!_a9e){_a9e(_aa0,_aa1);}_aa0.call(_a9c);};var _aa2=_a9a.slice();var _aa3=[];while(_aa2.length>0){var oUrl=_aa2[0];if(!_a99.Has(oUrl)){break;}_aa3.push(oUrl);_aa2.splice(0,1);}if(_aa2.length===0){_a9b.call(_a9c,ITHit.WebDAV.Client.CancellableResult.CreateSuccessfulResult(_aa3));return _a9f;}var _aa5=_aa2.shift();if(!this._IsInWork(_aa5)){_a9d=this._SendRequest(_aa5);}this._AddAwaiter(_aa5,function(_aa6){if(!_aa6.IsSuccess&&!this._IsConflictResult(_aa6)){_a9b.call(_a9c,_aa6);return;}_a99.Add(_aa5);_aa3.push(oUrl);_a9d=null;_a9e=this._RecurrentGenerate(_a99,_aa2,function(_aa7){if(_aa7.IsSuccess||this._IsConflictResult(_aa6)){_aa7.Result.concat(_aa3);_aa7=ITHit.WebDAV.Client.CancellableResult.CreateSuccessfulResult(_aa3);}_a9e=null;_a9b.call(_a9c,_aa7);return;},this);}.bind(this));return _a9f;},GeneratePathAsync:function(_aa8,oUrl,_aaa,_aab){var _aac=this._GetAncestorsPaths(oUrl);if(_aac.length===0){return _aaa.call(_aab,ITHit.WebDAV.Client.AsyncResult.CreateSuccessfulResult([]));}return this._RecurrentGenerate(_aa8,_aac,_aaa,_aab);},_Session:null,_WorkList:null,_GetAncestorsPaths:function(oUrl){var _aae=oUrl.GetRelativePath().split("/");if(_aae.length===0){return [];}if(_aae[_aae.length-1]===""){_aae=_aae.slice(0,-1);}var _aaf=[];var path="";for(var i=0;i<_aae.length-1;i++){if(path!==""){path+="/";}path+=_aae[i];_aaf.push(new ITHit.WebDAV.Client.Upload.Utils.DavUrl(path,oUrl.GetBaseUrl()));}return _aaf;},_IsInWork:function(oUrl){var _ab3=this._WorkList.Get(oUrl.toString());return _ab3&&(_ab3.length>0);},_AddAwaiter:function(oUrl,_ab5){var _ab6=this._WorkList.Get(oUrl.toString());var _ab7=[];if(_ab6){_ab7=_ab7.concat(_ab6);}_ab7.push(_ab5);this._WorkList.Set(oUrl.toString(),_ab7);},_CallAwaiters:function(oUrl,_ab9){var _aba=this._WorkList.Get(oUrl.toString());this._WorkList.Delete(oUrl.toString());_aba.forEach(function(_abb){_abb(_ab9);});},_IsConflictResult:function(_abc){if(_abc.IsSuccess){return false;}if(_abc.Error&&_abc.Error instanceof ITHit.WebDAV.Client.Exceptions.MethodNotAllowedException){return true;}return false;}});})();(function(){ITHit.DefineClass("ITHit.WebDAV.Client.Upload.UploaderSession",ITHit.WebDAV.Client.WebDavSession,{ExistsFolders:[],GetProgressReportAsync:function(sUrl,_abe,_abf){var _ac0=this.CreateRequest(this.__className+".ReportAsync()");var _ac1=ITHit.WebDAV.Client.HierarchyItem.GetHost(sUrl);ITHit.WebDAV.Client.Methods.Report.GoAsync(_ac0,sUrl,_ac1,null,null,function(_ac2){_ac0.MarkFinish();_abe.call(_abf,_ac2);});return _ac0;},CancelUploadAsync:function(sUrl,_ac4){var _ac5=this.CreateRequest(this.__className+".CancelUpload()");var _ac6=ITHit.WebDAV.Client.HierarchyItem.GetHost(sUrl);ITHit.WebDAV.Client.Methods.CancelUpload.GoAsync(_ac5,sUrl,[],_ac6,function(_ac7){_ac5.MarkFinish();var _ac8=new ITHit.WebDAV.Client.AsyncResult(true,true,null);if(_ac7.Error instanceof ITHit.WebDAV.Client.Exceptions.NotFoundException){_ac8=new ITHit.WebDAV.Client.AsyncResult(true,true,null);}else{if(!_ac7.IsSuccess){_ac8=new ITHit.WebDAV.Client.AsyncResult(_ac7.IsSuccess,_ac7.IsSuccess,_ac7.Error);}}_ac4(_ac8);});return _ac5;},CheckExistsAsync:function(sUrl,_aca,_acb){_aca=_aca||function(){};return this.OpenItemAsync(ITHit.WebDAV.Client.Encoder.Encode(sUrl),[],function(_acc){var _acd=new ITHit.WebDAV.Client.AsyncResult(true,true,null);if(_acc.Error instanceof ITHit.WebDAV.Client.Exceptions.NotFoundException){_acd=new ITHit.WebDAV.Client.AsyncResult(false,true,null);}else{if(!_acc.IsSuccess){_acd=new ITHit.WebDAV.Client.AsyncResult(_acc.IsSuccess,_acc.IsSuccess,_acc.Error);}}_aca.call(_acb,_acd);});},DeleteAsync:function(_ace,_acf,_ad0){_acf=_acf||null;var _ad1=ITHit.WebDAV.Client.HierarchyItem.GetHost(_ace);var _ad2=this.CreateRequest(this.__className+".DeleteAsync()");ITHit.WebDAV.Client.Methods.Delete.GoAsync(_ad2,_ace,_acf,_ad1,function(_ad3){if(!_ad3.IsSuccess&&_ad3.Error instanceof ITHit.WebDAV.Client.Exceptions.NotFoundException){_ad3=new ITHit.WebDAV.Client.AsyncResult(true,true,null);}_ad2.MarkFinish();_ad0(_ad3);});return _ad2;},CreateFolderRangeAsync:function(_ad4,_ad5,_ad6,_ad7){_ad5=_ad5||null;_ad6=_ad6||ITHit.Utils.NoOp;var _ad8=_ad4.length;var _ad9=this.CreateRequest(this.__className+".CreateFolderRangeAsync()",_ad8);this._PerformCreateFolderRangeMethodAsync(_ad9,_ad4,_ad5,function(_ada){_ad9.MarkFinish();_ad6.call(_ad7,_ada);});return _ad9;},_PerformCreateFolderRangeMethodAsync:function(_adb,_adc,_add,_ade,_adf){_ade=_ade||ITHit.Utils.NoOp;_adc=_adc.slice();var _ae0=_adc.unshift();var _ae1=ITHit.WebDAV.Client.Encoder.Encode(_ae0.GetHref());var _ae2=ITHit.WebDAV.Client.Encoder.Encode(_ae0.GetHost());ITHit.WebDAV.Client.Methods.Mkcol.GoAsync(_adb,_ae1,_add,_ae2,function(_ae3){if(_ae3.IsSuccess||_ae3.Error instanceof ITHit.WebDAV.Client.Exceptions.MethodNotAllowedException){_ae3=new ITHit.WebDAV.Client.AsyncResult.CreateSuccessfulResult([_ae0]);}if(_adc.length>0&&_ae3.IsSuccess){this._PerformCreateFolderRangeMethodAsync(_adb,_adc,_add,function(_ae4){if(_ae4.IsSuccess){_ae4.Result.push(_ae0);}_ade.call(_adf,_ae4);return;},this);}else{_ade.call(_adf,_ae3);return;}});},CreateUploadLocation:function(oUrl){return new ITHit.WebDAV.Client.Upload.UploadLocation(this.GetPathGenerator(),oUrl);},CreateContentWriter:function(oUrl){return new ITHit.WebDAV.Client.Upload.ContentWriter(this,oUrl);},GetPathGenerator:function(){if(!this._PathGenerator){this._PathGenerator=new ITHit.WebDAV.Client.Upload.Path.Generator(this);}return this._PathGenerator;},_PathGenerator:null});})();(function(){"use strict";ITHit.DefineClass("ITHit.WebDAV.Client.Upload.Utils.RepeatableActionContext",null,{_RoundsCount:0,_IsActive:true,_Handler:null,_EndHandler:null,_RepeatTime:0,constructor:function(_ae7,_ae8,_ae9,_aea){this._RoundsCount=_ae7;this._Handler=_ae9;this._EndHandler=_aea;this._IsActive=!!_ae7;this._RepeatTime=_ae8;},Stop:function(_aeb){this._IsActive=false;this._RoundsCount=0;this._EndHandler(_aeb);},_RunRound:function(){if(this._IsActive){this._Handler(this);}else{this.Stop();}},EndRound:function(_aec){this._RoundsCount--;if(this._RoundsCount===0){this.Stop(_aec);}else{setTimeout(this._RunRound.bind(this),this._RepeatTime);}}});})();(function(){"use strict";ITHit.DefineClass("ITHit.WebDAV.Client.Upload.Utils.RepeatableAction",null,{_Action:null,constructor:function(_aed){this._Action=_aed;},RunAsync:function(_aee,_aef,_af0){var _af1=new ITHit.WebDAV.Client.Upload.Utils.RepeatableActionContext(_aee,_aef,this._Action,_af0);_af1._RunRound();}});})();(function(){"use strict";var self=ITHit.DefineClass("ITHit.WebDAV.Client.Upload.Events.UploadError",ITHit.WebDAV.Client.Upload.Events.AsyncEvent,{Error:null,Skip:function(){if(this._IsHandled){return;}this._SkipRetry(this.Items);},Retry:function(){if(this._IsHandled){return;}this._Retry(this.Items);},constructor:function(_af3,_af4,_af5){this.Name=ITHit.WebDAV.Client.Upload.Events.EventName.OnUploadError;this.Error=_af4;this._super(_af3,_af5);},_Retry:function(){this._Handle(self.GetRetryResult(this.Error));},_SkipRetry:function(){this._Handle(self.GetSkipResult(this.Error));}},{GetSkipResult:function(_af6){return {Action:"skip",Error:_af6};},GetRetryResult:function(_af7){return {Action:"retry",Error:_af7};}});})();(function(){ITHit.DefineClass("ITHit.WebDAV.Client.Upload.Events.Error",ITHit.WebDAV.Client.Upload.Events.BaseEvent,{Error:null,constructor:function(_af8,_af9){this.Name=ITHit.WebDAV.Client.Upload.Events.EventName.OnError;this.Error=_af9;this.Sender=_af8;}});})();(function(){"use strict";ITHit.DefineClass("ITHit.WebDAV.Client.Upload.States.BaseState",null,{OnEnter:function(_afa){},OnLeave:function(_afb){},StartUploadAsync:function(_afc,_afd){_afd();},PauseUpload:function(_afe,_aff){_aff();},AbortUpload:function(_b00,_b01,_b02,_b03){_b03();},Skip:function(_b04){},OnUploadLocationPrepared:function(_b05,_b06){},OnUploadProgressPrepared:function(_b07,_b08){},OnContentCompleted:function(_b09,_b0a){},OnRetryResult:function(_b0b,_b0c){},_CompletePauseAsync:function(_b0d,_b0e,_b0f){if(_b0d.IsRetrySchedule){_b0d.IsRetrySchedule=false;}_b0d.SetState(ITHit.WebDAV.Client.Upload.States.Factory.GetPausedState());_b0e.call(_b0f);},_StartPauseAsync:function(_b10,_b11){_b10._ProgressTracker.StopTracking();_b10.CancelAllRequests(function(){if(_b10.IsContentSend){_b10.SyncProgressWithServerAsync(function(_b12){this._CompletePauseAsync(_b10,_b11);},this);return;}this._CompletePauseAsync(_b10,_b11);},this);}});})();(function(){"use strict";ITHit.DefineClass("ITHit.WebDAV.Client.Upload.States.CompletedState",ITHit.WebDAV.Client.Upload.States.BaseState,{GetAsEnum:function(){return ITHit.WebDAV.Client.Upload.State.Completed;},OnEnter:function(_b13){_b13.GetProgressTracker().StopTracking();_b13.GetProgressTracker().SetCompleted();},StartUploadAsync:function(_b14,_b15){_b14.SetState(ITHit.WebDAV.Client.Upload.States.Factory.GetUploadingState());this._super(_b14,_b15);}});})();(function(){"use strict";ITHit.DefineClass("ITHit.WebDAV.Client.Upload.States.SkippedState",ITHit.WebDAV.Client.Upload.States.BaseState,{GetAsEnum:function(){return ITHit.WebDAV.Client.Upload.State.Skipped;},StartUploadAsync:function(_b16,_b17){_b16.SetState(ITHit.WebDAV.Client.Upload.States.Factory.GetUploadingState());this._super(_b16,_b17);}});})();(function(){"use strict";ITHit.DefineClass("ITHit.WebDAV.Client.Upload.States.QueuedState",ITHit.WebDAV.Client.Upload.States.BaseState,{GetAsEnum:function(){return ITHit.WebDAV.Client.Upload.State.Queued;},StartUploadAsync:function(_b18,_b19){_b18.SetState(ITHit.WebDAV.Client.Upload.States.Factory.GetUploadingState());this._super(_b18,_b19);},Skip:function(_b1a){_b1a.SetState(ITHit.WebDAV.Client.Upload.States.Factory.GetSkippedState());},PauseUpload:function(_b1b,_b1c){this._StartPauseAsync(_b1b,_b1c);},AbortUpload:function(_b1d,_b1e,_b1f,_b20){_b1d.SetState(ITHit.WebDAV.Client.Upload.States.Factory.GetCanceledState());this._super(_b1d,_b1e,_b1f,_b20);}});})();(function(){"use strict";ITHit.DefineClass("ITHit.WebDAV.Client.Upload.States.CanceledState",ITHit.WebDAV.Client.Upload.States.BaseState,{GetAsEnum:function(){return ITHit.WebDAV.Client.Upload.State.Canceled;},OnEnter:function(_b21){_b21.GetProgressTracker().StopTracking();_b21.GetProgressTracker().Reset();},StartUploadAsync:function(_b22,_b23){_b22.SetState(ITHit.WebDAV.Client.Upload.States.Factory.GetUploadingState());this._super(_b22,_b23);}});})();(function(){"use strict";ITHit.DefineClass("ITHit.WebDAV.Client.Upload.States.UploadingState",ITHit.WebDAV.Client.Upload.States.BaseState,{GetAsEnum:function(){return ITHit.WebDAV.Client.Upload.State.Uploading;},OnEnter:function(_b24){_b24.PrepareUploadLocation();},PauseUpload:function(_b25,_b26){this._StartPauseAsync(_b25,_b26);},AbortUpload:function(_b27,_b28,_b29,_b2a){_b27.CancelAllRequests(function(){_b27.GetProgressTracker().StopTracking();_b27.CancelAndDeleteAsync(_b28,_b29,function(_b2b){if(_b2b.IsSuccess){_b27.GetProgressTracker().Reset();_b27.SetState(ITHit.WebDAV.Client.Upload.States.Factory.GetCanceledState());}else{_b27.AddError(_b2b.Error);_b27.SetState(ITHit.WebDAV.Client.Upload.States.Factory.GetFailedState());}_b2a();},this);},this);},OnContentCompleted:function(_b2c,_b2d){var _b2e=_b2d.Result;if(_b2e.IsAborted){return;}if(_b2e.IsSuccess){_b2c.GetProgressTracker().SetCompleted();_b2c.SetState(ITHit.WebDAV.Client.Upload.States.Factory.GetCompletedState());return;}this._HandleError(_b2c,_b2e);},_HandleError:function(_b2f,_b30){_b2f.AddError(_b30.Error);_b2f.BeginRetry(_b30.Error);},OnRetryResult:function(_b31,_b32){if(_b32.Action==="skip"){_b31.AddError(_b32.Error);_b31.SetState(ITHit.WebDAV.Client.Upload.States.Factory.GetFailedState());return;}if(_b31.IsContentSend){_b31.SyncProgressWithServerAsync(function(_b33){if(_b33.Error){this._HandleError(_b32.Error);}else{this.OnEnter(_b31);}},this);return;}this.OnEnter(_b31);},OnUploadLocationPrepared:function(_b34,_b35){if(_b35.IsAborted){return;}if(!_b35.IsSuccess){this._HandleError(_b34,_b35);return;}_b34._SendContent();}});})();(function(){"use strict";ITHit.DefineClass("ITHit.WebDAV.Client.Upload.States.ResumeState",ITHit.WebDAV.Client.Upload.States.UploadingState,{OnEnter:function(_b36){if(_b36.IsContentSend){_b36.PrepareProgress();return;}this._super(_b36);},OnUploadProgressPrepared:function(_b37,_b38){if(_b38.IsAborted){return;}if(!_b38.IsSuccess){this._HandleError(_b37,_b38);return;}if(_b37.GetProgressTracker().IsCompleted()){_b37.SetState(ITHit.WebDAV.Client.Upload.States.Factory.GetCompletedState());}_b37._SendContent();}});})();(function(){"use strict";ITHit.DefineClass("ITHit.WebDAV.Client.Upload.States.PausedState",ITHit.WebDAV.Client.Upload.States.BaseState,{GetAsEnum:function(){return ITHit.WebDAV.Client.Upload.State.Paused;},OnEnter:function(_b39){_b39.GetProgressTracker().StopTracking();_b39.GetProgressTracker().ResetSpeed();},StartUploadAsync:function(_b3a,_b3b){_b3a.SetState(ITHit.WebDAV.Client.Upload.States.Factory.GetResumeState());this._super(_b3a,_b3b);},AbortUpload:function(_b3c,_b3d,_b3e,_b3f){if(_b3c.IsContentSend){_b3c.CancelAndDeleteAsync(_b3d,_b3e,function(_b40){if(_b40.IsSuccess){_b3c.SetState(ITHit.WebDAV.Client.Upload.States.Factory.GetCanceledState());}else{_b3c.AddError(_b40.Error);_b3c.SetState(ITHit.WebDAV.Client.Upload.States.Factory.GetFailedState());}_b3f();},this);}else{_b3c.SetState(ITHit.WebDAV.Client.Upload.States.Factory.GetCanceledState());_b3f();}}});})();(function(){"use strict";ITHit.DefineClass("ITHit.WebDAV.Client.Upload.States.FailedState",ITHit.WebDAV.Client.Upload.States.BaseState,{GetAsEnum:function(){return ITHit.WebDAV.Client.Upload.State.Failed;},OnEnter:function(_b41){_b41.GetProgressTracker().StopTracking();_b41.GetProgressTracker().ResetSpeed();},StartUploadAsync:function(_b42,_b43){_b42.SetState(ITHit.WebDAV.Client.Upload.States.Factory.GetUploadingState());this._super(_b42,_b43);},AbortUpload:function(_b44,_b45,_b46,_b47){if(_b44.IsContentSend){_b44.CancelAndDeleteAsync(_b45,_b46,function(_b48){if(_b48.IsSuccess){_b44.SetState(ITHit.WebDAV.Client.Upload.States.Factory.GetCanceledState());}else{_b44.AddError(_b48.Error);_b44.SetState(ITHit.WebDAV.Client.Upload.States.Factory.GetFailedState());}_b47();},this);}else{_b44.SetState(ITHit.WebDAV.Client.Upload.States.Factory.GetCanceledState());_b47();}}});})();(function(){ITHit.DefineClass("ITHit.WebDAV.Client.Upload.Settings",null,{ConcurrentUploads:2,State:ITHit.WebDAV.Client.Upload.State.Queued,DeleteOnCancel:true});})();(function(){"use strict";var self=ITHit.DefineClass("ITHit.WebDAV.Client.Upload.States.Factory",null,{},{GetUploadingState:function(){if(!self._UploadingState){self._UploadingState=new ITHit.WebDAV.Client.Upload.States.UploadingState();}return self._UploadingState;},GetSkippedState:function(){if(!self._SkippedState){self._SkippedState=new ITHit.WebDAV.Client.Upload.States.SkippedState();}return self._SkippedState;},GetQueuedState:function(){if(!self._QueuedState){self._QueuedState=new ITHit.WebDAV.Client.Upload.States.QueuedState();}return self._QueuedState;},GetPausedState:function(){if(!self._PausedState){self._PausedState=new ITHit.WebDAV.Client.Upload.States.PausedState();}return self._PausedState;},GetFailedState:function(){if(!self._FailedState){self._FailedState=new ITHit.WebDAV.Client.Upload.States.FailedState();}return self._FailedState;},GetCompletedState:function(){if(!self._CompletedState){self._CompletedState=new ITHit.WebDAV.Client.Upload.States.CompletedState();}return self._CompletedState;},GetCanceledState:function(){if(!self._CanceledState){self._CanceledState=new ITHit.WebDAV.Client.Upload.States.CanceledState();}return self._CanceledState;},GetResumeState:function(){if(!self._ResumeState){self._ResumeState=new ITHit.WebDAV.Client.Upload.States.ResumeState();}return self._ResumeState;},GetState:function(_b4a){switch(_b4a){case ITHit.WebDAV.Client.Upload.State.Canceled:return self.GetCanceledState();case ITHit.WebDAV.Client.Upload.State.Completed:return self.GetCompletedState();case ITHit.WebDAV.Client.Upload.State.Failed:return self.GetFailedState();case ITHit.WebDAV.Client.Upload.State.Paused:return self.GetPausedState();case ITHit.WebDAV.Client.Upload.State.Queued:return self.GetQueuedState();case ITHit.WebDAV.Client.Upload.State.Skipped:return self.GetSkippedState();case ITHit.WebDAV.Client.Upload.State.Uploading:return self.GetUploadingState();default:throw new ITHit.Exceptions.ArgumentException(null,"oState");}}});})();(function(){ITHit.DefineClass("ITHit.WebDAV.Client.Upload.ItemSettings",null,{ForceRewrite:false,AlwaysRewriteFolders:true,IgnoreCancelErrors:false,DeleteOnCancel:false});})();(function(){"use strict";ITHit.DefineClass("ITHit.WebDAV.Client.Upload.ServerItem",null,{constructor:function(_b4b,oUrl){this._Session=_b4b;this._Url=oUrl;},GetProgressAsync:function(_b4d,_b4e){return this._Session.GetProgressReportAsync(this._Url.GetHref(),function(_b4f){if(_b4f.IsSuccess&&_b4f.Result[0]){var _b50=_b4f.Result[0];_b4d.call(_b4e,ITHit.WebDAV.Client.AsyncResult.CreateSuccessfulResult(_b50));return;}_b4d.call(_b4e,_b4f);},this);},CancelUploadAsync:function(_b51,_b52){this._Session.CancelUploadAsync(this._Url.GetHref(),function(_b53){_b51.call(_b52,_b53);});},DeleteAsync:function(_b54,_b55,_b56,_b57){var that=this;var _b59=new ITHit.WebDAV.Client.Upload.Utils.RepeatableAction(function(_b5a){that._Session.DeleteAsync(that._Url.GetHref(),null,function(_b5b){if(_b5b.IsSuccess){_b5a.Stop(_b5b);}else{_b5a.EndRound(_b5b);}});});_b59.RunAsync(_b54,_b55,function(_b5c){_b56.call(_b57,_b5c);});},CancelAndDeleteAsync:function(_b5d,_b5e,_b5f,_b60){this.CancelUploadAsync(function(_b61){if(!_b61.IsSuccess){return _b5f.call(_b60,_b61);}this.DeleteAsync(_b5d,_b5e,_b5f,_b60);},this);},_Url:null,_Session:null});})();(function(){"use strict";ITHit.DefineClass("ITHit.WebDAV.Client.Upload.Providers.UploadProvider",null,{Session:null,_UploadItem:null,constructor:function(_b62,_b63,_b64,oUrl,_b66){this.FSEntry=_b64;this.Url=oUrl;this.Settings=new ITHit.WebDAV.Client.Upload.ItemSettings();if(this.FSEntry.IsFile()){this.Settings.DeleteOnCancel=_b66.DeleteOnCancel;}else{this.Settings.DeleteOnCancel=false;}this.Session=_b62;this._UploadItem=_b63;this._ProgressTracker=new ITHit.WebDAV.Client.Upload.Providers.ProgressTracker(this.FSEntry.GetSize());this._State=ITHit.WebDAV.Client.Upload.States.Factory.GetState(_b66.State);this.Errors=[];this.UploadLocation=_b62.CreateUploadLocation(this.Url);this.ServerItem=new ITHit.WebDAV.Client.Upload.ServerItem(_b62,this.Url);this.ContentWriter=_b62.CreateContentWriter(this.Url);this.ContentWriter.AddListener(ITHit.WebDAV.Client.Upload.ContentWriter.EVENT_ON_PROGRESS,this.OnRequestProgressEventHandler,this);this.ContentWriter.AddListener(ITHit.WebDAV.Client.Upload.ContentWriter.EVENT_ON_FINISH,this._LoadHandler,this);this.ContentWriter.AddListener(ITHit.WebDAV.Client.Upload.ContentWriter.EVENT_ON_START,this._StartLoadHandler,this);this._ProgressTracker.OnProgressChanged(this._SetProgress,this);},StartUploadAsync:function(_b67){this._BeginStateChange();this._State.StartUploadAsync(this,_b67);},PauseUpload:function(_b68){this._BeginStateChange();this._State.PauseUpload(this,_b68);},AbortUpload:function(_b69,_b6a,_b6b){this._BeginStateChange();_b6b=_b6b||function(){};this._State.AbortUpload(this,_b69,_b6a,_b6b);},Skip:function(){this._BeginStateChange();this._State.Skip(this);},GetGroup:function(){return this._UploadItem.GetGroup();},GetProgressTracker:function(){return this._ProgressTracker;},_ProgressTracker:null,AddListener:function(_b6c,_b6d,_b6e){this._ValidateEventName(_b6c);_b6e=_b6e||null;ITHit.Events.AddListener(this,_b6c,_b6d,_b6e);},RemoveListener:function(_b6f,_b70,_b71){this._ValidateEventName(_b6f);_b71=_b71||null;ITHit.Events.RemoveListener(this,_b6f,_b70,_b71);},_ValidateEventName:function(_b72){switch(_b72){case ITHit.WebDAV.Client.Upload.Events.EventName.OnStateChanged:case ITHit.WebDAV.Client.Upload.Events.EventName.OnError:case ITHit.WebDAV.Client.Upload.Events.EventName.OnProgressChanged:break;default:throw new ITHit.Exceptions.ArgumentException("Not found event name `"+_b72+"`");}},CheckRetryAsync:function(_b73,_b74,_b75){var _b76=new ITHit.WebDAV.Client.Upload.Events.UploadError(this._UploadItem,_b73,function(_b77){if(!this.IsRetrySchedule){return;}_b74.call(_b75,_b77);}.bind(this));if(!this._UploadItem.OnUploadErrorCallback&&(ITHit.Events.ListenersLength(this._UploadItem,_b76.Name)===0)){_b74.call(_b75,ITHit.WebDAV.Client.Upload.Events.UploadError.GetSkipResult(_b73));return;}this.IsRetrySchedule=true;if(this._UploadItem.OnUploadErrorCallback){this._UploadItem.OnUploadErrorCallback.call(this,_b76);}ITHit.Events.DispatchEvent(this._UploadItem,_b76.Name,_b76);},Errors:null,LastError:null,AddError:function(_b78){this.AddErrorSilent(_b78);this._RiseOnErrorEvent(_b78);},AddErrorSilent:function(_b79){this.LastError=_b79;this.Errors.push(_b79);},SetFailed:function(_b7a){var _b7b=ITHit.WebDAV.Client.Upload.States.Factory.GetFailedState();this.AddError(_b7a);this.SetState(_b7b);},_RiseOnErrorEvent:function(_b7c){var _b7d=new ITHit.WebDAV.Client.Upload.Events.Error(this,_b7c);ITHit.Events.DispatchEvent(this,_b7d.Name,_b7d);},UploadLocation:null,IsContentSend:false,ServerItem:null,_LoadHandler:function(_b7e){if(_b7e.Result.Error instanceof ITHit.WebDAV.Client.Exceptions.ConflictException){this.UploadLocation.SetNotExists();this.IsContentSend=false;}this._State.OnContentCompleted(this,_b7e);},_StartLoadHandler:function(_b7f){this.IsContentSend=true;},OnRequestProgressEventHandler:function(_b80){this.GetProgressTracker().UpdateBytes(_b80.Progress.BytesLoaded,_b80.Progress.TotalBytes);},_SendContent:function(){this._ProgressTracker.StartTracking();if(this.Settings&&this.Settings.CustomHeaders){this.ContentWriter.CustomHeaders=this.Settings.CustomHeaders;}if(this.FSEntry.IsFolder()){if(this.Settings.ForceRewrite||this.Settings.AlwaysRewriteFolders){this.ContentWriter.BeginRewrite(this.FSEntry);}else{this.ContentWriter.BeginWrite(this.FSEntry);}}else{var _b81=new ITHit.WebDAV.Client.Upload.FileSpan(this.FSEntry.GetFile(),this._ProgressTracker.GetProgress().UploadedBytes);if(_b81.IsFullFile()&&(this.Settings.ForceRewrite||this.IsContentSend)){this.ContentWriter.BeginRewrite(this.FSEntry);return;}if(_b81.IsFullFile()&&!(this.Settings.ForceRewrite&&this.IsContentSend)){this.ContentWriter.BeginWrite(this.FSEntry);return;}this.ContentWriter.BeginAppend(_b81);}},SyncProgressWithServerAsync:function(_b82,_b83){if(!this._ProgressTracker.IsCountable()){return this.Session.CheckExistsAsync(this.Url.GetUrl(),function(_b84){if(!_b84.IsSuccess){_b82.call(_b83,_b84);return;}if(_b84.Result===true){this._ProgressTracker.SetCompleted();_b82.call(_b83,ITHit.WebDAV.Client.CancellableResult.CreateSuccessfulResult(this._ProgressTracker.GetProgress()));return;}this._ProgressTracker.Reset();_b82.call(_b83,ITHit.WebDAV.Client.CancellableResult.CreateSuccessfulResult(this._ProgressTracker.GetProgress()));},this);}return this.ServerItem.GetProgressAsync(function(_b85){if(_b85.IsSuccess){this._ProgressTracker.SyncProgress(_b85.Result);_b82.call(_b83,ITHit.WebDAV.Client.CancellableResult.CreateSuccessfulResult(this._ProgressTracker.GetProgress()));return;}if(_b85.Error instanceof ITHit.WebDAV.Client.Exceptions.NotFoundException){this._ProgressTracker.Reset();_b82.call(_b83,ITHit.WebDAV.Client.CancellableResult.CreateSuccessfulResult(this._ProgressTracker.GetProgress()));return;}_b82.call(_b83,ITHit.WebDAV.Client.CancellableResult.CreateFailedResult(_b85.Error));},this);},IsRetrySchedule:false,PrepareUploadLocation:function(){this.UploadLocation.SetCache(this.GetGroup().PathMap);this.UploadLocation.CreateAsync(this._OnGeneratePathCompleted,this);},_OnGeneratePathCompleted:function(_b86){if(_b86.IsAborted){return;}this._State.OnUploadLocationPrepared(this,_b86);},CancelAllRequests:function(_b87,_b88){this._CancelProgressAsync(function(){this._CancelLocationCreateAsync(function(){this._CancelContentSendingAsync(_b87,_b88);},this);},this);},_CancelLocationCreateAsync:function(_b89,_b8a){if(this.UploadLocation.IsInProgress()){this.UploadLocation.AbortRunningCreationAsync(function(){_b89.call(_b8a);},this);}else{_b89.call(_b8a);}},_CancelContentSendingAsync:function(_b8b,_b8c){if(this.ContentWriter.IsActive()){this.ContentWriter.AbortAsync(function(){_b8b.call(_b8c);},this);}else{_b8b.call(_b8c);}},_CancelProgressAsync:function(_b8d,_b8e){if(this.IsProgressSyncInProgress){this._SyncProgressRequest.AbortAsync(function(){_b8d.call(_b8e);},this);}else{_b8d.call(_b8e);}},_SyncProgressRequest:null,IsProgressSyncInProgress:false,PrepareProgress:function(){this._SyncProgressRequest=this.SyncProgressWithServerAsync(this._OnUpdateFromServerCompleted,this);},_OnUpdateFromServerCompleted:function(_b8f){this.IsProgressSyncInProgress=false;if(_b8f.IsAborted){return;}this._State.OnUploadProgressPrepared(this,_b8f);},_IsStateChanging:function(){return this._IsChanging;},SetState:function(_b90){var _b91=this._State;this._State.OnLeave(this);this._State=_b90;this._State.OnEnter(this);var _b92=new ITHit.WebDAV.Client.Upload.Events.StateChanged(this,_b91.GetAsEnum(),this._State.GetAsEnum());ITHit.Events.DispatchEvent(this,_b92.Name,_b92);},GetState:function(){return this._State;},_State:null,_IsChanging:false,_BeginStateChange:function(){this._IsChanging=true;},_EndStateChange:function(){this._IsChanging=false;},ContentWriter:null,BeginRetry:function(_b93){this._ProgressTracker.StopTracking();this.CheckRetryAsync(_b93,this._OnCheckRetryCompleted,this);},_OnCheckRetryCompleted:function(_b94){this._State.OnRetryResult(this,_b94);},Settings:null,FSEntry:null,Url:null,CancelAndDeleteAsync:function(_b95,_b96,_b97,_b98){this.ServerItem.CancelUploadAsync(function(_b99){if(!this.Settings.DeleteOnCancel){_b97.call(_b98,ITHit.WebDAV.Client.AsyncResult.CreateSuccessfulResult(null));return;}this.ServerItem.DeleteAsync(_b95,_b96,function(_b9a){if(!_b9a.IsSuccess&&!this.Settings.IgnoreCancelErrors){return _b97.call(_b98,_b99);}this.IsContentSend=false;_b97.call(_b98,ITHit.WebDAV.Client.AsyncResult.CreateSuccessfulResult(null));},this);},this);},GetProgress:function(){return this._ProgressTracker.GetProgress();},_SetProgress:function(_b9b){var _b9c=this._Progress;this._Progress=_b9b;var _b9d=new ITHit.WebDAV.Client.Upload.Events.ProgressChanged(this,_b9c,_b9b);ITHit.Events.DispatchEvent(this,_b9d.Name,_b9d);}});})();(function(){"use strict";ITHit.DefineClass("ITHit.WebDAV.Client.Upload.Events.UploadItemsCreated",ITHit.WebDAV.Client.Upload.Events.AsyncEvent,{Items:[],Skip:function(_b9e){if(this._IsHandled){return;}this._Skip(_b9e);},SkipAll:function(){if(this._IsHandled){return;}this._Skip(this.Items);},OverwriteAll:function(){if(this._IsHandled){return;}this._Overwrite(this.Items);},Overwrite:function(_b9f){if(this._IsHandled){return;}this._Overwrite(_b9f);},UploadAll:function(){if(this._IsHandled){return;}this.Upload(this.Items);},Upload:function(_ba0){if(this._IsHandled){return;}this._Handle({Skip:[],Overwrite:[],Original:this.Items,Upload:_ba0});},constructor:function(_ba1,_ba2,_ba3){this.Name=ITHit.WebDAV.Client.Upload.Events.EventName.OnUploadItemsCreated;this.Items=_ba2||[];this._super(_ba1,_ba3);},_Overwrite:function(_ba4){var _ba5=this._CreateResult([],_ba4);this._Handle(_ba5);},_Skip:function(_ba6){var _ba7=this._CreateResult(_ba6,[]);this._Handle(_ba7);},_CreateResult:function(_ba8,_ba9){return {Skip:_ba8||[],Overwrite:_ba9||[],Original:this.Items};},_Handle:function(_baa){_baa=_baa||this._CreateResult();this._super(_baa);}});})();(function(){"use strict";ITHit.DefineClass("ITHit.WebDAV.Client.Upload.Utils.Array",null,{},{MapParallel:function(_bab,_bac,_bad,_bae){var _baf=[];var _bb0=0;if(_bab.length===0){setTimeout(_bad.apply(_bae,_bab));}for(var i=0;i<_bab.length;i++){_bac.apply(_bae,[_bab[i],i,_bab,ITHit.Utils.MakeScopeClosure(this,function(i,_bb3){_baf[i]=_bb3;_bb0++;if(_bb0===_bab.length){setTimeout(_bad.call(_bae,_baf));}},i)]);}},DistinctBy:function(_bb4,_bb5,_bb6){var map=Object.create(null);_bb5=_bb5||Object.prototype.toString;for(var i=0;i<_bb4.length;i++){var _bb9=_bb5.call(_bb6,_bb4[i]).toString();if(!map[_bb9]){map[_bb9]=_bb4[i];}}return Object.keys(map).map(function(sKey){return map[sKey];});},Take:function(_bbb,_bbc){if(!_bbc){return [_bbb.shift()];}var _bbd=(_bbb.length>_bbc)?_bbc:_bbb.length;var _bbe=[];for(var i=0;i<_bbd;i++){_bbe.push(_bbb.shift());}return _bbe;},Remove:function(_bc0,_bc1){var _bc2=_bc0.indexOf(_bc1);if(_bc2>-1){_bc0.splice(_bc2,1);}}});})();(function(){"use strict";ITHit.DefineClass("ITHit.WebDAV.Client.Upload.AutoUploader",null,{constructor:function(_bc3){this._ParallelUploads=_bc3||0;this._QueueArray=[];this._Active=[];this._Reserve=0;},AddRange:function(_bc4){_bc4.forEach(this._AddToQueue,this);this._StartUploads();},Add:function(_bc5){this._AddToQueue(_bc5);this._StartUploads();},Remove:function(_bc6){_bc6.RemoveListener(ITHit.WebDAV.Client.Upload.Events.EventName.OnStateChanged,this._OnStateChangeEventHandler,this);ITHit.WebDAV.Client.Upload.Utils.Array.Remove(this._QueueArray,_bc6);ITHit.WebDAV.Client.Upload.Utils.Array.Remove(this._Active,_bc6);this._StartUploads();},Reserve:function(_bc7){_bc7=_bc7||1;this._Reserve+=_bc7;},Release:function(_bc8){_bc8=_bc8||1;this._Reserve-=_bc8;this._StartUploads();},GetBusy:function(){return this._Active.length+this._Reserve;},GetFree:function(){var _bc9=this.GetBusy();if(_bc9>=this._ParallelUploads){return 0;}else{if(_bc9===0){return this._ParallelUploads;}else{return (this._ParallelUploads-_bc9)%this._ParallelUploads;}}},_QueueArray:null,_Active:null,_ParallelUploads:0,_OnStateChangeEventHandler:function(_bca){if(_bca.NewState!==ITHit.WebDAV.Client.Upload.State.Uploading){this.Remove(_bca.Sender);}else{this._StartUploads();}},_StartUploads:function(){if(this._QueueArray.length===0){return;}var _bcb=this.GetFree();if(_bcb<=0){return;}var _bcc=ITHit.WebDAV.Client.Upload.Utils.Array.Take(this._QueueArray,_bcb);if(_bcc.length<1){return;}this.Reserve(_bcc.length);_bcc.forEach(this._StartSingle,this);},_StartSingle:function(_bcd){this._Active.push(_bcd);_bcd.StartAsync();this.Release();},_AddToQueue:function(_bce){this._QueueArray.push(_bce);_bce.AddListener(ITHit.WebDAV.Client.Upload.Events.EventName.OnStateChanged,this._OnStateChangeEventHandler,this);},_Reserve:0});})();(function(){"use strict";ITHit.DefineClass("ITHit.WebDAV.Client.Upload.Queue",null,{Uploader:null,_UnderlyingArray:null,_Session:null,_AutoUploader:null,constructor:function(_bcf){this.Uploader=_bcf;this._Session=new ITHit.WebDAV.Client.Upload.UploaderSession();this._UnderlyingArray=[];this._GroupManager=new ITHit.WebDAV.Client.Upload.Groups.GroupManager();this._AutoUploader=new ITHit.WebDAV.Client.Upload.AutoUploader(this.Uploader.Settings.ConcurrentUploads);},ShouldReplaceDuplicate:function(_bd0){var _bd1=this.GetByUrl(_bd0.GetUrl());var _bd2=_bd1.GetState();return !(_bd2===ITHit.WebDAV.Client.Upload.State.Uploading||_bd2===ITHit.WebDAV.Client.Upload.State.Paused);},AddGroup:function(sUrl,_bd4,_bd5){var _bd6=[];for(var i=0;i<_bd4.length;i++){var _bd8=_bd4[i];var _bd9=new ITHit.WebDAV.Client.Upload.UploadItem(sUrl,_bd8,_bd5,this._Session,this._GroupManager,this.Uploader.Settings);if(this.HasUrl(_bd9.GetUrl())){if(this.ShouldReplaceDuplicate(_bd9)){this.RemoveByUrl(_bd9.GetUrl());}else{continue;}}_bd6.push(_bd9);}this._DispatchOnUploadItemsCreatedAsync(_bd6,this._OnUploadItemsCreatedAsyncDispatched.bind(this));},Add:function(_bda){var sUrl=_bda.GetUrl();if(this.HasUrl(sUrl)){return;}this._UnderlyingArray.push(_bda);var _bdc=new ITHit.WebDAV.Client.Upload.Events.QueueChanged(this,[_bda]);ITHit.Events.DispatchEvent(this,_bdc.Name,[_bdc]);this._AutoUploader.Add(_bda);},AddRange:function(_bdd){for(var i=0;i<_bdd.length;i++){var _bdf=_bdd[i];var sUrl=_bdf.GetUrl();if(this.HasUrl(sUrl)){continue;}this._UnderlyingArray.push(_bdf);}this._GroupManager.CreateGroup(_bdd);this._OnQueueChanged(_bdd,null);var _be1=_bdd.filter(function(_be2){return _be2.GetState()===ITHit.WebDAV.Client.Upload.State.Queued;});this._AutoUploader.AddRange(_be1);},Restart:function(_be3){for(var i=0;i<_be3.length;i++){if(!this.HasUrl(_be3[i].GetUrl())){throw new ITHit.Exceptions.ArgumentException("Item should be a part of queue`");}}this._AutoUploader.AddRange(_be3);},GetByUrl:function(sUrl){return ITHit.Utils.FindBy(this._UnderlyingArray,function(_be6){return _be6.GetUrl()===sUrl;});},GetLength:function(){return this._UnderlyingArray.length;},HasUrl:function(sUrl){return !!this.GetByUrl(sUrl);},RemoveByUrl:function(sUrl){var _be9=this.GetByUrl(sUrl);if(!_be9){return;}var _bea=_be9.GetState();if(_bea===ITHit.WebDAV.Client.Upload.State.Uploading||_bea===ITHit.WebDAV.Client.Upload.State.Paused){_be9.Abort();}var _beb=ITHit.Utils.IndexOf(this._UnderlyingArray,_be9);this._UnderlyingArray.splice(_beb,1);this._OnQueueChanged(null,[_be9]);this._AutoUploader.Remove(_be9);},OnUploadItemsCreatedCallback:null,_OnQueueChanged:function(_bec,_bed){var _bee=new ITHit.WebDAV.Client.Upload.Events.QueueChanged(this,_bec,_bed);ITHit.Events.DispatchEvent(this,_bee.Name,[_bee]);},_DispatchOnUploadItemsCreatedAsync:function(_bef,_bf0){var _bf1=new ITHit.WebDAV.Client.Upload.Events.UploadItemsCreated(this,_bef.slice(),_bf0);if(!this.OnUploadItemsCreatedCallback&&(ITHit.Events.ListenersLength(this,_bf1.Name)===0)){_bf1.OverwriteAll();}if(this.OnUploadItemsCreatedCallback){this.OnUploadItemsCreatedCallback(_bf1);}ITHit.Events.DispatchEvent(this,_bf1.Name,_bf1);},AddListener:function(_bf2,_bf3,_bf4){_bf4=_bf4||null;switch(_bf2){case ITHit.WebDAV.Client.Upload.Events.EventName.OnQueueChanged:case ITHit.WebDAV.Client.Upload.Events.EventName.OnUploadItemsCreated:ITHit.Events.AddListener(this,_bf2,_bf3,_bf4);break;default:throw new ITHit.WebDAV.Client.Exceptions.WebDavException("Not found event name `"+_bf2+"`");}},RemoveListener:function(_bf5,_bf6,_bf7){ITHit.Events.RemoveListener(this,_bf5,_bf6,_bf7);},_OnUploadItemsCreatedAsyncDispatched:function(_bf8){if(_bf8.Upload){this.AddRange(_bf8.Upload);return;}this._OnUploadItemsCreatedAsyncDispatchedDeprecated(_bf8);},_OnUploadItemsCreatedAsyncDispatchedDeprecated:function(_bf9){var _bfa=this._FilterSkippedItems(_bf9);var _bfb=this._CreateUrlUploadItemMap(_bf9.Overwrite);_bfa.forEach(function(_bfc){if(_bfb.Has(_bfc.GetUrl())){_bfc.SetOverwrite(true);}});this.AddRange(_bfa);},_FilterSkippedItems:function(_bfd){var _bfe=this._CreateUrlUploadItemMap(_bfd.Skip);return _bfd.Original.filter(function(_bff){return !_bfe.Has(_bff.GetUrl());});},_CreateUrlUploadItemMap:function(_c00){var oMap=new ITHit.WebDAV.Client.Upload.Collections.Map();_c00.forEach(function(_c02){oMap.Set(_c02.GetUrl(),_c02);});return oMap;},_GroupManager:null});})();(function(){"use strict";var _c03=ITHit.DefineClass("ITHit.WebDAV.Client.Upload.DropZoneCollection",null,{_UnderlyingSet:null,Uploader:null,constructor:function(_c04){this._Uploader=_c04;this._UnderlyingSet={};},AddById:function(_c05){var _c06=this.GetById(_c05);if(_c06){return _c06;}var _c07=new ITHit.WebDAV.Client.Upload.Controls.DropZone(_c05);this._UnderlyingSet[_c05]=_c07;this._RaiseOnCollectionChanged([_c07],[]);return _c07;},GetById:function(_c08){return this._UnderlyingSet[_c08];},RemoveById:function(_c09){var _c0a=this.GetById(_c09);if(_c0a){delete this._UnderlyingSet[_c09];this._RaiseOnCollectionChanged([],[_c0a]);}},AddListener:function(_c0b,_c0c,_c0d){_c0d=_c0d||null;this._CheckEventNameOtThrow(_c0b);ITHit.Events.AddListener(this,_c0b,_c0c,_c0d);},RemoveListener:function(_c0e,_c0f,_c10){_c10=_c10||null;this._CheckEventNameOtThrow(_c0e);ITHit.Events.RemoveListener(this,_c0e,_c0f,_c10);},_CheckEventNameOtThrow:function(_c11){if(_c11!==_c03.EVENT_ON_COLLECTION_CHANGED){throw new ITHit.WebDAV.Client.Exceptions.NotFoundEventNameException(_c11);}},_RaiseOnCollectionChanged:function(_c12,_c13){ITHit.Events.DispatchEvent(this,_c03.EVENT_ON_COLLECTION_CHANGED,[{Sender:this,AddedItems:_c12||[],RemovedItems:_c13||[]}]);}},{EVENT_ON_COLLECTION_CHANGED:"OnCollectionChanged"});})();(function(){var _c14=ITHit.DefineClass("ITHit.WebDAV.Client.Upload.InputCollection",null,{_UnderlyingSet:null,Uploader:null,constructor:function(_c15){this._UnderlyingArray=[];this._Uploader=_c15;},AddById:function(_c16){var _c17=new ITHit.WebDAV.Client.Upload.Controls.Input(_c16);this._UnderlyingArray[_c16]=_c17;this._RaiseOnCollectionChanged([_c17],[]);return _c17;},GetById:function(_c18){return this._UnderlyingArray[_c18];},RemoveById:function(_c19){var _c1a=this.GetById(_c19);if(_c1a){delete this._UnderlyingSet[_c19];this._RaiseOnCollectionChanged([],[_c1a]);}},AddListener:function(_c1b,_c1c,_c1d){_c1d=_c1d||null;this._CheckEventNameOtThrow(_c1b);ITHit.Events.AddListener(this,_c1b,_c1c,_c1d);},RemoveListener:function(_c1e,_c1f,_c20){_c20=_c20||null;this._CheckEventNameOtThrow(_c1e);ITHit.Events.RemoveListener(this,_c1e,_c1f,_c20);},_CheckEventNameOtThrow:function(_c21){if(_c21!==_c14.EVENT_ON_COLLECTION_CHANGED){throw new ITHit.WebDAV.Client.Exceptions.NotFoundEventNameException(_c21);}},_RaiseOnCollectionChanged:function(_c22,_c23){ITHit.Events.DispatchEvent(this,_c14.EVENT_ON_COLLECTION_CHANGED,[{Sender:this,AddedItems:_c22||[],RemovedItems:_c23||[]}]);}},{EVENT_ON_COLLECTION_CHANGED:"OnCollectionChanged"});})();(function(){"use strict";ITHit.DefineClass("ITHit.WebDAV.Client.Upload.Uploader",null,{DropZones:null,Inputs:null,Queue:null,Settings:null,_UploadProvider:null,constructor:function(){this.Inputs=new ITHit.WebDAV.Client.Upload.InputCollection(this);this.Inputs.AddListener(ITHit.WebDAV.Client.Upload.InputCollection.EVENT_ON_COLLECTION_CHANGED,this._OnControlCollectionChangedEventHandler,this);this.DropZones=new ITHit.WebDAV.Client.Upload.DropZoneCollection(this);this.DropZones.AddListener(ITHit.WebDAV.Client.Upload.DropZoneCollection.EVENT_ON_COLLECTION_CHANGED,this._OnControlCollectionChangedEventHandler,this);this.Settings=new ITHit.WebDAV.Client.Upload.Settings();this.Queue=new ITHit.WebDAV.Client.Upload.Queue(this);},SetUploadUrl:function(sUrl){this._UploadUrl=sUrl;},GetUploadUrl:function(){return this._UploadUrl;},_OnControlCollectionChangedEventHandler:function(_c25){_c25.AddedItems.forEach(function(_c26){_c26.AddListener(ITHit.WebDAV.Client.Upload.Controls.HtmlControl.EVENT_ON_FILE_INPUT_HANDLED,this._OnFileInputEventHandler.bind(this));}.bind(this));_c25.RemovedItems.forEach(function(_c27){_c27.RemoveListener(ITHit.WebDAV.Client.Upload.Controls.HtmlControl.EVENT_ON_FILE_INPUT_HANDLED,this._OnFileInputEventHandler.bind(this));}.bind(this));},_OnFileInputEventHandler:function(_c28){this.Queue.AddGroup(this._UploadUrl,_c28.AsyncResult.Result,_c28.Source);}});})();ITHit.Temp={};
|