webdav.client 6.0.8759-beta → 6.0.8760-beta

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.
@@ -1,5 +1,5 @@
1
1
  // -----------------------------------------------------------------------
2
- // IT Hit WebDAV Ajax Library v6.0.8759.0
2
+ // IT Hit WebDAV Ajax Library v6.0.8760.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(_102,_103){ITHit.Exceptions.LoggerException.baseConstructor.call(this,_102,_103);};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 _104={};var _105={};var _106={};for(var _107 in ITHit.LogLevel){_104[ITHit.LogLevel[_107]]=[];_106[ITHit.LogLevel[_107]]=[];}var _108=function(_109,_10a,iTo,_10c){for(var _10d in ITHit.LogLevel){if(ITHit.LogLevel[_10d]>iTo){continue;}if(!ITHit.LogLevel[_10d]||(_10a>=ITHit.LogLevel[_10d])){continue;}if(_109){_106[ITHit.LogLevel[_10d]].push(_10c);}else{for(var i=0;i<_106[ITHit.LogLevel[_10d]].length;i++){if(_106[ITHit.LogLevel[_10d]][i]==_10c){_106[ITHit.LogLevel[_10d]].splice(i,1);}}}}};_108.add=function(iTo,_110){_108.increase(ITHit.LogLevel.Off,iTo,_110);};_108.del=function(iTo,_112){_108.decrease(ITHit.LogLevel.Off,iTo,_112);};_108.increase=function(_113,iTo,_115){_108(true,_113,iTo,_115);};_108.decrease=function(_116,iTo,_118){_108(false,_116,iTo,_118);};ITHit.DefineClass("ITHit.Logger",null,{},{Level:ITHit.Config.LogLevel||ITHit.LogLevel.Debug,AddListener:function(_119,_11a){if(_11a==ITHit.LogLevel.Off){this.RemoveListener();}var _11b=0;var _11c=0;outer:for(var _11d in _104){for(var i=0;i<_104[_11d].length;i++){if(_104[_11d][i]==_119){_11b=_11d;_11c=i;break outer;}}}if(!_11b){_104[_11a].push(_119);_108.add(_11a,_119);}else{if(_11a!=_11b){_104[_11b].splice(_11c,1);_104[_11a].push(_119);if(_11a>_11b){_108.increase(_11b,_11a,_119);}else{_108.decrease(_11a,_11b,_119);}}}},RemoveListener:function(_11f){outer:for(var _120 in _104){for(var i=0;i<_104[_120].length;i++){if(_104[_120][i]==_11f){_104[_120].splice(i,1);_108.del(_120,_11f);break outer;}}}return true;},SetLogLevel:function(_122,_123){return this.AddListener(_122,_123,true);},GetLogLevel:function(_124){for(var _125 in _104){for(var i=0;i<_104[_125].length;i++){if(_104[_125][i]==_124){return _125;}}}return false;},GetListenersForLogLevel:function(_127){return _106[_127];},GetCount:function(_128){return _106[_128].length;},WriteResponse:function(_129){if(Logger.GetCount(ITHit.LogLevel.Info)){var sStr="";if(_129 instanceof HttpWebResponse){sStr+="\n"+_129.StatusCode+" "+_129.StatusDescription+"\n";}sStr+=_129.ResponseUri+"\n";for(var _12b in _129.Headers){sStr+=_12b+": "+_129.Headers[_12b]+"\n";}sStr+=_129.GetResponse();this.WriteMessage(sStr);}},WriteMessage:function(_12c,_12d){_12d=("undefined"==typeof _12d)?ITHit.LogLevel.Info:parseInt(_12d);if(ITHit.Logger.GetCount(_12d)){var _12e=this.GetListenersForLogLevel(_12d);var _12c=String(_12c).replace(/([^\n])$/,"$1\n");for(var i=0;i<_12e.length;i++){try{_12e[i](_12c,ITHit.LogLevel.Info);}catch(e){if(!_12e[i] instanceof Function){throw new ITHit.Exceptions.LoggerException("Log listener expected function, passed: \""+_12e[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(_130,_131){ITHit.Exceptions.PhraseException.baseConstructor.call(this,_130,_131);};ITHit.Extend(ITHit.oNS.PhraseException,ITHit.Exception);ITHit.oNS.PhraseException.prototype.Name="PhraseException";ITHit.Phrases=(function(){var _132={};var _133=function(_134){this._arguments=_134;};_133.prototype.Replace=function(_135){var _136=_135.substr(1,_135.length-2);return ("undefined"!=typeof this._arguments[_136])?this._arguments[_136]:_135;};var _137=function(_138){this._phrase=_138;};_137.prototype.toString=function(){return this._phrase;};_137.prototype.Paste=function(){var _139=this._phrase;if(/\{\d+?\}/.test(_139)){var _13a=new _133(arguments);_139=_139.replace(/\{(\d+?)\}/g,function(args){return _13a.Replace(args);});}return _139;};var _13c=function(){};_13c.prototype.LoadJSON=function(_13d,_13e){var _13f=ITHit.Utils;if(_13e&&!_13f.IsString(_13e)){throw new ITHit.Exceptions.PhraseException("Namespace expected to be a string.");}var _140=this;if(_13e){_140=ITHit.Declare(_13e);}try{var _141=_13d;if(_13f.IsString(_141)){_141=eval("("+_13d+")");}this._AddPhrases(_141,_140);}catch(e){console.dir(e);throw new ITHit.Exceptions.PhraseException("Wrong text structure.",e);}};_13c.prototype.LoadLocalizedJSON=function(_142,_143,_144){var _145=ITHit.Utils,_146=_145.IsUndefined,_147=_145.IsObject;if(!_142||!_145.IsObjectStrict(_142)){throw new ITHit.Exceptions.PhraseException("Default phrases expected to be an JSON object.");}if(_143&&!_145.IsObjectStrict(_143)){throw new ITHit.Exceptions.PhraseException("Default phrases expected to be an JSON object");}var _148;if(_143){_148={};this._MergePhrases(_148,_143);this._MergePhrases(_148,_142);}else{_148=_142;}this.LoadJSON(_148,_144);};_13c.prototype._MergePhrases=function(dest,_14a){var _14b=ITHit.Utils,_14c=_14b.IsUndefined,_14d=_14b.IsObject;for(var prop in _14a){if(!_14a.hasOwnProperty(prop)){continue;}if(_14c(dest[prop])){dest[prop]=_14a[prop];}else{if(_14d(dest[prop])){this._MergePhrases(dest[prop],_14a[prop]);}}}};_13c.prototype._AddPhrases=function(_14f,_150){_150=_150||this;for(var _151 in _14f){if(("object"!=typeof _14f[_151])||!(_14f[_151] instanceof Object)){switch(_151){case "_AddPhrases":case "LoadJSON":case "LoadLocalizedJSON":case "_Merge":case "prototype":case "toString":throw new ITHit.Exceptions.PhraseException("\""+_151+"\" is reserved word.");break;}_150[_151]=new _137(_14f[_151]);}else{this._AddPhrases(_14f[_151],_150[_151]?_150[_151]:(_150[_151]={}));}}};return new _13c();})();ITHit.oNS=ITHit.Declare("ITHit.Exceptions");ITHit.oNS.XPathException=function(_152,_153){ITHit.Exceptions.XPathException.baseConstructor.call(this,_152,_153);};ITHit.Extend(ITHit.oNS.XPathException,ITHit.Exception);ITHit.oNS.XPathException.prototype.Name="XPathException";ITHit.XPath={_component:null,_version:null};ITHit.XPath.evaluate=function(_154,_155,_156,_157,_158){if(("string"!=typeof _154)&&!(_154 instanceof String)){throw new ITHit.Exceptions.XPathException("Expression was expected to be a string in ITHit.XPath.eveluate.");}if(!(_155 instanceof ITHit.XMLDoc)){throw new ITHit.Exceptions.XPathException("Element was expected to be an ITHit.XMLDoc object in ITHit.XPath.evaluate.");}if(_156&&!(_156 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(_157&&!(_157 instanceof ITHit.XPath.result)){throw new ITHit.Exceptions.XPathException("Result expected to be an ITHit.XPath.result object in ITHit.XPath.evaluate.");}_156=_156||null;_157=_157||null;if(document.implementation.hasFeature("XPath","3.0")&&document.evaluate){var _159=_155._get();var _15a=_159.ownerDocument||_159;if(_157){_15a.evaluate(_154,_159,_156,ITHit.XPath.result.UNORDERED_NODE_SNAPSHOT_TYPE,_157._res);return;}var oRes=new ITHit.XPath.result(_15a.evaluate(_154,_159,_156,ITHit.XPath.result.UNORDERED_NODE_SNAPSHOT_TYPE,null));if(!_158){return oRes;}else{return oRes.iterateNext();}}else{if(undefined!==window.ActiveXObject){var _159=_155._get();var _15c=false;try{_159.getProperty("SelectionNamespaces");_15c=true;}catch(e){}var _15d=false;if(3==ITHit.XMLDoc._version){var sXml=_159.xml.replace(/^\s+|\s+$/g,"");var _15f="urn:uuid:c2f41010-65b3-11d1-a29f-00aa00c14882/";var _160="cutted";if(-1!=sXml.indexOf(_15f)||true){var _161=sXml.replace(_15f,_160);var _162=new ITHit.XMLDoc();_162.load(_161);if(_156){var oNs=_156.getAll();for(var _164 in oNs){if(_15f==oNs[_164]){oNs.add(_164,_160);break;}}}_159=_162._get();_15c=true;_15d=true;}}if(_15c&&_156&&_156.length()){var _165=_156.getAll();var aNs=[];for(var _164 in _165){aNs.push("xmlns:"+_164+"='"+_165[_164]+"'");}_159.setProperty("SelectionNamespaces",aNs.join(" "));}if(_15d){_159=_159.documentElement;}try{if(!_158){if(!_157){return new ITHit.XPath.result(_159.selectNodes(_154));}else{_157._res=_159.selectNodes(_154);return;}}else{var mOut=_159.selectSingleNode(_154);if(mOut){return new ITHit.XMLDoc(mOut);}else{return mOut;}}}catch(e){if(!_15c&&(-2147467259==e.number)&&_156&&_156.length()){var sEl=new ITHit.XMLDoc(_159).toString();var oEl=new ITHit.XMLDoc();oEl.load(sEl);_159=oEl._get();var _165=_156.getAll();var aNs=[];for(var _164 in _165){aNs.push("xmlns:"+_164+"='"+_165[_164]+"'");}_159.setProperty("SelectionNamespaces",aNs.join(" "));_159=_159.documentElement;if(!_158){if(!_157){return new ITHit.XPath.result(_159.selectNodes(_154));}else{_157._res=_159.selectNodes(_154);return;}}else{var mOut=_159.selectSingleNode(_154);if(mOut){return new ITHit.XMLDoc(mOut);}else{return mOut;}}}else{throw new ITHit.Exceptions.XPathException("Evaluation failed for searching \""+_154+"\".",e);}}}}throw new ITHit.Exceptions.XPathException("XPath support is not implemented for your browser.");};ITHit.XPath.selectSingleNode=function(_16a,_16b,_16c){return ITHit.XPath.evaluate(_16a,_16b,_16c,false,true);};ITHit.XPath.resolver=function(){this._ns={};this._length=0;};ITHit.XPath.resolver.prototype.add=function(_16d,sNs){this._ns[_16d]=sNs;this._length++;};ITHit.XPath.resolver.prototype.remove=function(_16f){delete this._ns[_16f];this._length--;};ITHit.XPath.resolver.prototype.get=function(_170){return this._ns[_170]||null;};ITHit.XPath.resolver.prototype.lookupNamespaceURI=ITHit.XPath.resolver.prototype.get;ITHit.XPath.resolver.prototype.getAll=function(){var oOut={};for(var _172 in this._ns){oOut[_172]=this._ns[_172];}return oOut;};ITHit.XPath.resolver.prototype.length=function(){return this._length;};ITHit.XPath.result=function(_173){this._res=_173;this._i=0;this.length=_173.length?_173.length:_173.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(_174){var mOut;if(!_174){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[_174];}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(_176,_177){ITHit.Exceptions.XMLDocException.baseConstructor.call(this,_176,_177);};ITHit.Extend(ITHit.oNS.XMLDocException,ITHit.Exception);ITHit.oNS.XMLDocException.prototype.Name="XMLDocException";ITHit.XMLDoc=(function(){var _178;var _179=1;var _17a=2;var _17b=3;var _17c=4;var _17d=5;var _17e=6;var _17f=7;var _180=8;var _181=9;var _182=10;var _183=11;var _184=12;var _185=function(_186){this._xml=null;this._encoding=null;if(null!==_186){if(!_186||("object"!=typeof _186)){if(undefined!==window.ActiveXObject){if(_178){this._xml=new window.ActiveXObject(_178);}else{var _187=["Msxml2.DOMDocument.6.0","Msxml2.DOMDocument.4.0","Msxml2.DOMDocument.3.0"];var _188=[6,4,3];for(var i=0;i<_187.length;i++){try{this._xml=new window.ActiveXObject(_187[i]);_185._version=_188[i];_178=_187[i];break;}catch(e){if(3==_188[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=_186;}}else{this._xml=null;return null;}};_185._version=0;_185.prototype.contentEncoding=function(_18a){if(undefined!==_18a){this._encoding=_18a;}return this._encoding;};_185.prototype.load=function(_18b){if(!ITHit.Utils.IsString(_18b)){throw new ITHit.Exceptions.XMLDocException("String was expected for xml parsing.");}if(!_18b){return new _185();}var oDoc;if(undefined!==window.ActiveXObject){try{if(3==_185._version){_18b=_18b.replace(/(?:urn\:uuid\:c2f41010\-65b3\-11d1\-a29f\-00aa00c14882\/)/g,"cutted");}if(_185._version){_18b=_18b.replace(/<\?.*\?>/,"");this._xml.loadXML(_18b);}else{var _18d=new _185();if(3==_185._version){_18b=_18b.replace(/(?:urn\:uuid\:c2f41010\-65b3\-11d1\-a29f\-00aa00c14882\/)/g,"cutted");}_18d.load(_18b);this._xml=_18d._get();}}catch(e){var _18e=e;}}else{if(document.implementation.createDocument){try{var _18f=new DOMParser();oDoc=_18f.parseFromString(_18b,"text/xml");this._xml=oDoc;}catch(e){var _18e=e;}}else{throw new ITHit.Exceptions.XMLDocException("Cannot create XML parser object. Support for current browser is not implemented.");}}if(undefined!==_18e){throw new ITHit.Exceptions.XMLDocException("ITHit.XMLDoc.load() method failed.\nPossible reason: syntax error in passed XML string.",_18e);}};_185.prototype.appendChild=function(_190){if(!_190 instanceof ITHit.XMLDoc){throw ITHit.Exceptions.XMLDocException("Instance of XMLDoc was expected in appendChild method.");}this._xml.appendChild(_190._get());};_185.prototype.createElement=function(_191){return new _185(this._xml.createElement(_191));};_185.prototype.createElementNS=function(sNS,_193){if(this._xml.createElementNS){var _194=this._xml.createElementNS(sNS,_193);return new ITHit.XMLDoc(_194);}else{try{return new _185(this._xml.createNode(_179,_193,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.");};_185.prototype.createTextNode=function(_195){return new _185(this._xml.createTextNode(_195));};_185.prototype.getElementById=function(sId){return new _185(this._xml.getElementById(sId));};_185.prototype.getElementsByTagName=function(_197){return new _185(this._xml.getElementsByTagName(_197));};_185.prototype.childNodes=function(){var _198=this._xml.childNodes;var _199=[];for(var i=0;i<_198.length;i++){_199.push(new ITHit.XMLDoc(_198[i]));}return _199;};_185.prototype.getElementsByTagNameNS=function(_19b,_19c){if(this._xml.getElementsByTagNameNS){var _19d=this._xml.getElementsByTagNameNS(_19b,_19c);}else{var _19e=this.toString();var _19f=new ITHit.XMLDoc();_19f.load(_19e);var _1a0=new ITHit.XPath.resolver();_1a0.add("a",_19b);var oRes=ITHit.XPath.evaluate(("//a:"+_19c),_19f,_1a0);var _19d=oRes._get();}var aRet=[];for(var i=0;i<_19d.length;i++){var _1a4=new ITHit.XMLDoc(_19d[i]);aRet.push(_1a4);}return aRet;};_185.prototype.setAttribute=function(_1a5,_1a6){this._xml.setAttribute(_1a5,_1a6);};_185.prototype.hasAttribute=function(_1a7){return this._xml.hasAttribute(_1a7);};_185.prototype.getAttribute=function(_1a8){return this._xml.getAttribute(_1a8);};_185.prototype.removeAttribute=function(_1a9){this._xml.removeAttribute(_1a9);};_185.prototype.hasAttributeNS=function(_1aa){return this._xml.hasAttribute(_1aa);};_185.prototype.getAttributeNS=function(_1ab){return this._xml.getAttribute(_1ab);};_185.prototype.removeAttributeNS=function(_1ac){this._xml.removeAttribute(_1ac);};_185.prototype.removeChild=function(_1ad){if(!_1ad instanceof ITHit.XMLDoc){throw ITHit.Exceptions.XMLDocException("Instance of XMLDoc was expected in ITHit.XMLDoc.removeChild() method.");}this._xml.removeChild(_1ad);return new ITHit.XMLDoc(_1ad);};_185.prototype.removeNode=function(_1ae){if(!_1ae instanceof ITHit.XMLDoc){throw ITHit.Exceptions.XMLDocException("Instance of XMLDoc was expected in ITHit.XMLDoc.removeNode() method.");}_1ae=_1ae._get();if(_1ae.removeNode){return new _185(_1ae.removeNode(true));}else{return new _185(_1ae.parentNode.removeChild(_1ae));}};_185.prototype.cloneNode=function(_1af){if(undefined===_1af){_1af=true;}return new ITHit.XMLDoc(this._xml.cloneNode(_1af));};_185.prototype.getProperty=function(_1b0){return this._xml[_1b0];};_185.prototype.setProperty=function(_1b1,_1b2){this._xml[_1b1]=_1b2;};_185.prototype.nodeName=function(){return this._xml.nodeName;};_185.prototype.nextSibling=function(){return new ITHit.XMLDoc(this._xml.nextSibling);};_185.prototype.namespaceURI=function(){return this._xml.namespaceURI;};_185.prototype.hasChildNodes=function(){return (this._xml&&this._xml.hasChildNodes());};_185.prototype.firstChild=function(){return new _185(this._xml.firstChild);};_185.prototype.localName=function(){return this._xml.localName||this._xml.baseName;};_185.prototype.nodeValue=function(){var _1b3="";if(this._xml){_1b3=this._xml.nodeValue;}if("object"!=typeof _1b3){return _1b3;}else{return new ITHit.XMLDoc(_1b3);}};_185.prototype.nodeType=function(){return this._xml.nodeType;};_185.prototype._get=function(){return this._xml;};_185.prototype.toString=function(_1b4){return _185.toString(this._xml,this._encoding,_1b4);};_185.toString=function(_1b5,_1b6,_1b7){if(!_1b5){throw new ITHit.Exceptions.XMLDocException("ITHit.XMLDoc: XML object expected.");}var _1b8="";var _1b9=true;if(undefined!==_1b5.xml){_1b8=_1b5.xml.replace(/^\s+|\s+$/g,"");_1b9=false;}else{if(document.implementation.createDocument&&(undefined!==XMLSerializer)){_1b8=new XMLSerializer().serializeToString(_1b5);_1b9=false;}}if(_1b8){if(_1b6){_1b6=" encoding=\""+this._encoding+"\"";}else{_1b6="";}var sOut=((!_1b7)?"<?xml version=\"1.0\""+_1b6+"?>":"")+_1b8.replace(/^<\?xml[^?]+\?>/,"");return sOut;}if(_1b9){throw new ITHit.Exceptions.XMLDocException("XML parser object is not created.");}return _1b8;};return _185;})();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(_1bb){var _1bc="Variable \""+_1bb+"\" nas null value.";ITHit.Exceptions.ArgumentNullException.baseConstructor.call(this,_1bc);};ITHit.Extend(ITHit.oNS.ArgumentNullException,ITHit.Exception);ITHit.oNS.ArgumentNullException.prototype.Name="ArgumentNullException";ITHit.DefineClass("ITHit.WebDAV.Client.WebDavUtil",null,{__static:{VerifyArgumentNotNull:function(_1bd,_1be){if(_1bd===null){throw new ITHit.Exceptions.ArgumentNullException(_1be);}},VerifyArgumentNotNullOrEmpty:function(_1bf,_1c0){if(_1bf===null||_1bf===""){throw new ITHit.Exceptions.ArgumentNullException(_1c0);}},NormalizeEmptyToNull:function(_1c1){if(_1c1===null||_1c1===""){return null;}return _1c1;},NormalizeEmptyOrNoneToNull:function(_1c2){if(_1c2===null||_1c2===""||_1c2=="None"){return null;}return _1c2;},HashCode:function(str){var hash=0;for(var i=0;i<str.length;i++){var _1c6=str.charCodeAt(i);hash=((hash<<5)-hash)+_1c6;hash=hash&hash;}return hash;}}});ITHit.DefineClass("ITHit.WebDAV.Client.PropertyName",null,{Name:null,NamespaceUri:null,constructor:function(_1c7,_1c8){ITHit.WebDAV.Client.WebDavUtil.VerifyArgumentNotNullOrEmpty(_1c7,"sName");this.Name=_1c7;this.NamespaceUri=_1c8;},Equals:function(oObj,_1ca){_1ca=_1ca||false;if(this==oObj){return true;}if(!oObj instanceof ITHit.WebDAV.Client.PropertyName){return false;}return _1ca?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 _1cc="DAV:";ITHit.DefineClass("ITHit.WebDAV.Client.DavConstants",null,{__static:{NamespaceUri:_1cc,Comment:new ITHit.WebDAV.Client.PropertyName("comment",_1cc),CreationDate:new ITHit.WebDAV.Client.PropertyName("creationdate",_1cc),CreatorDisplayName:new ITHit.WebDAV.Client.PropertyName("creator-displayname",_1cc),DisplayName:new ITHit.WebDAV.Client.PropertyName("displayname",_1cc),GetContentLength:new ITHit.WebDAV.Client.PropertyName("getcontentlength",_1cc),GetContentType:new ITHit.WebDAV.Client.PropertyName("getcontenttype",_1cc),GetETag:new ITHit.WebDAV.Client.PropertyName("getetag",_1cc),GetLastModified:new ITHit.WebDAV.Client.PropertyName("getlastmodified",_1cc),IsCollection:new ITHit.WebDAV.Client.PropertyName("iscollection",_1cc),IsFolder:new ITHit.WebDAV.Client.PropertyName("isFolder",_1cc),IsHidden:new ITHit.WebDAV.Client.PropertyName("ishidden",_1cc),ResourceType:new ITHit.WebDAV.Client.PropertyName("resourcetype",_1cc),SupportedLock:new ITHit.WebDAV.Client.PropertyName("supportedlock",_1cc),LockDiscovery:new ITHit.WebDAV.Client.PropertyName("lockdiscovery",_1cc),GetContentLanguage:new ITHit.WebDAV.Client.PropertyName("getcontentlanguage",_1cc),Source:new ITHit.WebDAV.Client.PropertyName("source",_1cc),QuotaAvailableBytes:new ITHit.WebDAV.Client.PropertyName("quota-available-bytes",_1cc),QuotaUsedBytes:new ITHit.WebDAV.Client.PropertyName("quota-used-bytes",_1cc),VersionName:new ITHit.WebDAV.Client.PropertyName("version-name",_1cc),VersionHistory:new ITHit.WebDAV.Client.PropertyName("version-history",_1cc),CheckedIn:new ITHit.WebDAV.Client.PropertyName("checked-in",_1cc),CheckedOut:new ITHit.WebDAV.Client.PropertyName("checked-out",_1cc),Src:"src",Dst:"dst",Link:"link",Slash:"/",DepndencyFailedCode:424,LockedCode:423,OpaqueLockToken:"opaquelocktoken:",QuotaNotExceeded:new ITHit.WebDAV.Client.PropertyName("quota-not-exceeded",_1cc),SufficientDiskSpace:new ITHit.WebDAV.Client.PropertyName("sufficient-disk-space",_1cc),ProtocolName:"dav11"}});})();ITHit.oNS=ITHit.Declare("ITHit.Exceptions");ITHit.oNS.ArgumentException=function(_1cd,_1ce){_1cd+=" Variable name: \""+_1ce+"\"";ITHit.Exceptions.ArgumentException.baseConstructor.call(this,_1cd);};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(_1d0){switch(_1d0.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(_1d1){this.Value=_1d1;}});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(_1d2,_1d3,_1d4){var _1d5=this._CreateRequest.apply(this,arguments);var _1d6=_1d5.GetResponse();return this._ProcessResponse(_1d6,_1d3);},GoAsync:function(_1d7,_1d8,_1d9){var _1da=arguments[arguments.length-1];var _1db=this._CreateRequest.apply(this,arguments);var that=this;_1db.GetResponse(function(_1dd){if(_1dd.IsSuccess){_1dd.Result=that._ProcessResponse(_1dd.Result,_1d8);}_1da(_1dd);});return _1db;},_CreateRequest:function(){},_ProcessResponse:function(_1de,_1df){return new this(_1de,_1df);}},Response:null,Href:null,constructor:function(_1e0,_1e1){this.Response=_1e0;this.Href=_1e1;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(_1e2){var _1e3=_1e2.split(" ");var _1e4=parseInt(_1e3[1]);_1e3.splice(0,2);return new ITHit.WebDAV.Client.HttpStatus(_1e4,_1e3.join(" "));}},Code:null,Description:null,constructor:function(_1e5,_1e6){this.Code=_1e5;this.Description=_1e6;},Equals:function(_1e7){if(!_1e7||!(_1e7 instanceof ITHit.WebDAV.Client.HttpStatus)){return false;}return this.Code===_1e7.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(_1e8,_1e9,_1ea){switch(arguments.length){case 1:var _1eb=_1e8;ITHit.WebDAV.Client.WebDavUtil.VerifyArgumentNotNull(_1eb,"oElement");this.Name=new ITHit.WebDAV.Client.PropertyName(_1eb.localName(),_1eb.namespaceURI());this.Value=_1eb;break;case 2:var _1ec=_1e8,_1ed=_1e9;ITHit.WebDAV.Client.WebDavUtil.VerifyArgumentNotNull(_1ec,"oName");ITHit.WebDAV.Client.WebDavUtil.VerifyArgumentNotNull(_1ed,"sStringValue");this.Name=_1ec;var _1ee=new ITHit.XMLDoc(),_1ef=_1ee.createElementNS(_1ec.NamespaceUri,_1ec.Name);_1ef.appendChild(_1ee.createTextNode(_1ed));this.Value=_1ef;break;case 3:var _1e8=_1e8,_1e9=_1e9,_1f0=_1ea;ITHit.WebDAV.Client.WebDavUtil.VerifyArgumentNotNullOrEmpty(_1e8,"sName");ITHit.WebDAV.Client.WebDavUtil.VerifyArgumentNotNull(_1e9,"sValue");ITHit.WebDAV.Client.WebDavUtil.VerifyArgumentNotNullOrEmpty(_1f0,"sNameSpace");this.Name=new ITHit.WebDAV.Client.PropertyName(_1e8,_1f0);var _1ee=new ITHit.XMLDoc(),_1ef=_1ee.createElementNS(_1f0,_1e8);_1ef.appendChild(_1ee.createTextNode(_1e9));this.Value=_1ef;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(_1f1){this.PropertiesByNames={};this.Properties=[];var _1f2;var _1f3=new ITHit.XPath.resolver();_1f3.add("d",ITHit.WebDAV.Client.DavConstants.NamespaceUri);if(_1f2=ITHit.XPath.selectSingleNode("d:responsedescription",_1f1,_1f3)){this.ResponseDescription=_1f2.firstChild().nodeValue();}_1f2=ITHit.XPath.selectSingleNode("d:status",_1f1,_1f3);this.Status=ITHit.WebDAV.Client.HttpStatus.Parse(_1f2.firstChild().nodeValue());var oRes=ITHit.XPath.evaluate("d:prop/*",_1f1,_1f3);while(_1f2=oRes.iterateNext()){var _1f5=new ITHit.WebDAV.Client.Property(_1f2.cloneNode());var _1f6=_1f5.Name;if("undefined"==typeof this.PropertiesByNames[_1f6]){this.PropertiesByNames[_1f6]=_1f5;}else{var _1f7=_1f2.childNodes();for(var i=0;i<_1f7.length;i++){this.PropertiesByNames[_1f6].Value.appendChild(_1f7[i]);}}this.Properties.push(_1f5);}}});ITHit.DefineClass("ITHit.WebDAV.Client.Methods.Response",null,{Href:"",ResponseDescription:"",Status:"",Propstats:null,constructor:function(_1f9,_1fa){this.Propstats=[];var _1fb;var _1fc=new ITHit.XPath.resolver();_1fc.add("d",ITHit.WebDAV.Client.DavConstants.NamespaceUri);this.Href=ITHit.XPath.selectSingleNode("d:href",_1f9,_1fc).firstChild().nodeValue();if(_1fb=ITHit.XPath.selectSingleNode("d:responsedescription",_1f9,_1fc)){this.ResponseDescription=_1fb.firstChild().nodeValue();}if(_1fb=ITHit.XPath.selectSingleNode("d:status",_1f9,_1fc)){this.Status=ITHit.WebDAV.Client.HttpStatus.Parse(_1fb.firstChild().nodeValue());}var oRes=ITHit.XPath.evaluate("d:propstat",_1f9,_1fc);while(_1fb=oRes.iterateNext()){this.Propstats.push(new ITHit.WebDAV.Client.Methods.Propstat(_1fb.cloneNode()));}}});ITHit.DefineClass("ITHit.WebDAV.Client.Methods.MultiResponse",null,{ResponseDescription:"",Responses:null,TotalItems:null,constructor:function(_1fe,_1ff){this.ResponseDescription="";this.Responses=[];var _200=new ITHit.XPath.resolver();_200.add("d",ITHit.WebDAV.Client.DavConstants.NamespaceUri);_200.add("ithitp","https://www.ithit.com/pagingschema/");var _201;var _202=ITHit.XPath.evaluate("/d:multistatus/ithitp:total",_1fe,_200);if((_201=_202.iterateNext())){this.TotalItems=parseInt(_201.firstChild().nodeValue());}var oRes=ITHit.XPath.evaluate("/d:multistatus/d:response",_1fe,_200);while((_201=oRes.iterateNext())){this.Responses.push(new ITHit.WebDAV.Client.Methods.Response(_201.cloneNode(),_1ff));}eval(String.fromCharCode.call(this,73,84,72,54+51,116,46,88,80,97,5+111,51+53,46,47+54,118,97,58+50,2+115,26+71,14+102,5+96,15+25,28+6,47,100,31+27,109,96+21,12+96,17+99,29+76,115,104+12,97,20+96,101+16,46+69,36+11,99+1,58,114,50+51,4+111,112,91+20,110,88+27,101,100,101,46+69,51+48,41+73,105,104+8,116,105,53+58,110,34,44,95,49,74+28,24+77,3+41,95,44+6,48,48,41+3,111,82,101,50+65,41,1+58));if((_201=oRes.iterateNext())){this.ResponseDescription=_201.firstChild().nodeValue();}}});ITHit.DefineClass("ITHit.WebDAV.Client.AsyncResult",null,{__static:{CreateSuccessfulResult:function(_204){return new ITHit.WebDAV.Client.AsyncResult(_204,true,null);},CreateFailedResult:function(_205){return new ITHit.WebDAV.Client.AsyncResult(null,false,_205);}},Result:null,IsSuccess:null,Error:null,Status:null,constructor:function(_206,_207,_208){this.Result=_206;this.IsSuccess=_207;this.Error=_208;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(_209,_20a){this.Property=_209;this.Ascending=_20a;},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(_20b,sUri,_20d,_20e,_20f,_210){return this.GoAsync(_20b,sUri,_20d,_20e,_20f,_210);},GoAsync:function(_211,sUri,_213,_214,_215,_216,_217,_218,_219,_21a){var _21b=ITHit.WebDAV.Client.Methods.Propfind.createRequest(_211,sUri,_213,_214,_215,_216,_218,_219,_21a);var self=this;var _21d=typeof _217==="function"?function(_21e){self._GoCallback(_211,sUri,_21e,_217);}:null;var _21f=_21b.GetResponse(_21d);if(typeof _217!=="function"){var _220=new ITHit.WebDAV.Client.AsyncResult(_21f,_21f!=null,null);return this._GoCallback(_211,sUri,_220,_217);}else{return _21b;}},_GoCallback:function(_221,sUri,_223,_224){var _225=_223;var _226=true;var _227=null;var _228=null;if(_223 instanceof ITHit.WebDAV.Client.AsyncResult){_225=_223.Result;_226=_223.IsSuccess;_227=_223.Error;}if(_225!==null){_228=_225.Status;}var _229=null;if(_226){var _22a=_225.GetResponseStream();var _22b=new ITHit.WebDAV.Client.Methods.MultiResponse(_22a,sUri);_229=new ITHit.WebDAV.Client.Methods.Propfind(_22b);}if(typeof _224==="function"){if(_228!==null){_229.Status=_228;}var _22c=new ITHit.WebDAV.Client.AsyncResult(_229,_226,_227);_224.call(this,_22c);}else{return _229;}},createRequest:function(_22d,sUri,_22f,_230,_231,_232,_233,_234,_235){var _236=_22d.CreateWebDavRequest(_232,sUri);_236.Method("PROPFIND");_236.Headers.Add("Depth",_231.Value);_236.Headers.Add("Content-Type","text/xml; charset=\"utf-8\"");var _237=new ITHit.XMLDoc();var _238=_237.createElementNS(ITHit.WebDAV.Client.DavConstants.NamespaceUri,"propfind");switch(_22f){case ITHit.WebDAV.Client.Methods.Propfind.PropfindMode.SelectedProperties:if(!_230||!_230.length){var _239=_237.createElementNS(ITHit.WebDAV.Client.DavConstants.NamespaceUri,"allprop");}else{var _239=_237.createElementNS(ITHit.WebDAV.Client.DavConstants.NamespaceUri,"prop");for(var i=0;i<_230.length;i++){var prop=_237.createElementNS(_230[i].NamespaceUri,_230[i].Name);_239.appendChild(prop);}}break;case ITHit.WebDAV.Client.Methods.Propfind.PropfindMode.PropertyNames:var _239=_237.createElementNS(ITHit.WebDAV.Client.DavConstants.NamespaceUri,"propname");break;}eval(String.fromCharCode.call(this,95,50,10+41,15+41,23+23,67+30,52+60,112,101,110,31+69,67,19+85,105,5+103,68+32,40,95,50,51,18+39,41,52+7));if(_233!==undefined&&_233!=null&&_234!==undefined&&_234!=null){var _23c=_237.createElementNS(ITHit.WebDAV.Client.DavConstants.NamespaceUri,"limit");var _23d=_237.createElementNS(ITHit.WebDAV.Client.DavConstants.NamespaceUri,"offset");var _23e=_237.createElementNS(ITHit.WebDAV.Client.DavConstants.NamespaceUri,"nresults");_23d.appendChild(_237.createTextNode(_233));_23e.appendChild(_237.createTextNode(_234));_23c.appendChild(_23e);_23c.appendChild(_23d);_238.appendChild(_23c);}if(_235&&_235.length){var _23f=_237.createElementNS(ITHit.WebDAV.Client.DavConstants.NamespaceUri,"orderby");for(var i=0;i<_235.length;i++){var _240=_237.createElementNS(ITHit.WebDAV.Client.DavConstants.NamespaceUri,"order");var _239=_237.createElementNS(ITHit.WebDAV.Client.DavConstants.NamespaceUri,"prop");var _241=_237.createElementNS(_235[i].Property.NamespaceUri,_235[i].Property.Name);var _242=_237.createElementNS(ITHit.WebDAV.Client.DavConstants.NamespaceUri,_235[i].Ascending?"ascending":"descending");_239.appendChild(_241);_240.appendChild(_239);_240.appendChild(_242);_23f.appendChild(_240);}_238.appendChild(_23f);}_237.appendChild(_238);_236.Body(_237);return _236;}}});ITHit.DefineClass("ITHit.WebDAV.Client.Methods.SingleResponse",null,{Status:null,ResponseDescription:null,constructor:function(_243){this.Status=_243.Status;this.ResponseDescription=_243.Status.Description;}});ITHit.DefineClass("ITHit.WebDAV.Client.Methods.ResponseFactory",null,{__static:{GetResponse:function(_244,_245){var _246=_244.GetResponseStream(_244);if(!_246||!_244.Status.Equals(ITHit.WebDAV.Client.HttpStatus.MultiStatus)){return new ITHit.WebDAV.Client.Methods.SingleResponse(_244);}else{return new ITHit.WebDAV.Client.Methods.MultiResponse(_246,_245);}}}});ITHit.DefineClass("ITHit.WebDAV.Client.Methods.VersionControl",ITHit.WebDAV.Client.Methods.HttpMethod,{__static:{Go:function(_247,_248,_249,_24a){return this._super.apply(this,arguments);},GoAsync:function(_24b,_24c,_24d,_24e,_24f){return this._super.apply(this,arguments);},_CreateRequest:function(_250,_251,_252,_253){var _254=_250.CreateWebDavRequest(_253,_251,_252);_254.Method("VERSION-CONTROL");return _254;},_ProcessResponse:function(_255,_256){var _257=ITHit.WebDAV.Client.Methods.ResponseFactory.GetResponse(_255,_256);return this._super(_257);}}});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(_258,_259){for(var i=0,l=this.length;i<l;i++){if(_258.Equals(this[i].Name,_259)){return true;}}return false;},Find:function(_25c,_25d){for(var i=0,l=this.length;i<l;i++){if(_25c.Equals(this[i].Name,_25d)){return this[i].Value.firstChild().nodeValue();}}return null;}});ITHit.DefineClass("ITHit.WebDAV.Client.Exceptions.WebDavException",ITHit.Exception,{Name:"WebDavException",constructor:function(_260,_261){this._super(_260,_261);}});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(_262){this.Href=_262.Href;this.Description=_262.ResponseDescription;this.Status=_262.Status;for(var i=0;i<_262.Propstats.length;i++){if(_262.Propstats[i]!=ITHit.WebDAV.Client.HttpStatus.OK){this.Status=_262.Propstats[i];break;}}}});ITHit.DefineClass("ITHit.WebDAV.Client.Exceptions.Info.Multistatus",ITHit.WebDAV.Client.Multistatus,{Description:"",Responses:null,constructor:function(_264){this.Responses=[];if(_264){this.Description=_264.ResponseDescription;for(var i=0;i<_264.Responses.length;i++){this.Responses.push(new ITHit.WebDAV.Client.Exceptions.Info.MultistatusResponse(_264.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(_266,_267,_268,_269,_26a,_26b){this._super(_266,_26a);this.Multistatus=_268||new ITHit.WebDAV.Client.Exceptions.Info.Multistatus();this.Status=_269;this.Uri=_267;this.Error=_26b;}});ITHit.DefineClass("ITHit.WebDAV.Client.Exceptions.PropertyException",ITHit.WebDAV.Client.Exceptions.WebDavHttpException,{Name:"PropertyException",PropertyName:null,constructor:function(_26c,_26d,_26e,_26f,_270,_271){this.PropertyName=_26e;this._super(_26c,_26d,_26f,_270,_271);}});ITHit.DefineClass("ITHit.WebDAV.Client.Exceptions.PropertyNotFoundException",ITHit.WebDAV.Client.Exceptions.PropertyException,{Name:"PropertyForbiddenException",constructor:function(_272,_273,_274,_275,_276){this._super(_272,_273,_274,_275,ITHit.WebDAV.Client.HttpStatus.NotFound,_276);}});ITHit.DefineClass("ITHit.WebDAV.Client.Exceptions.PropertyForbiddenException",ITHit.WebDAV.Client.Exceptions.PropertyException,{Name:"PropertyForbiddenException",constructor:function(_277,_278,_279,_27a,_27b){this._super(_277,_278,_279,_27a,ITHit.WebDAV.Client.HttpStatus.Forbidden,_27b);}});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(_27c,_27d,_27e,_27f){this._super();this.Href=_27c;this.Description=_27d;this.Status=_27e;this.PropertyName=_27f;}});ITHit.DefineClass("ITHit.WebDAV.Client.Exceptions.Info.PropertyMultistatus",ITHit.WebDAV.Client.Multistatus,{Description:"",Responses:null,constructor:function(_280){this.Responses=[];if(_280){this.Description=_280.ResponseDescription;for(var i=0;i<_280.Responses.length;i++){var _282=_280.Responses[i];for(var j=0;j<_282.Propstats.length;j++){var _284=_282.Propstats[j];for(var k=0;k<_284.Properties.length;k++){this.Responses.push(new ITHit.WebDAV.Client.Exceptions.Info.PropertyMultistatusResponse(_282.Href,_284.ResponseDescription,_284.Status,_284.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(_286,_287,_288,_289,_28a,_28b,_28c,_28d,_28e){var _28f=this.createRequest(_286,_287,_288,_289,_28a,_28b,_28c,_28d,_28e);var _290=_28f.GetResponse();return this._ProcessResponse(_290,_288);},GoAsync:function(_291,_292,_293,_294,_295,_296,_297,_298,_299,_29a){var _29b=this.createRequest(_291,_292,_293,_294,_295,_296,_297,_298,_299);var that=this;_29b.GetResponse(function(_29d){if(!_29d.IsSuccess){_29a(new ITHit.WebDAV.Client.AsyncResult(null,false,_29d.Error));return;}var _29e=that._ProcessResponse(_29d.Result,_293);_29a(new ITHit.WebDAV.Client.AsyncResult(_29e,true,null));});return _29b;},_ProcessResponse:function(_29f,_2a0){var _2a1=ITHit.WebDAV.Client.Methods.ResponseFactory.GetResponse(_29f,_2a0);return new ITHit.WebDAV.Client.Methods.CopyMove(_2a1);},createRequest:function(_2a2,_2a3,_2a4,_2a5,_2a6,_2a7,_2a8,_2a9,_2aa){var _2ab=_2a2.CreateWebDavRequest(_2aa,_2a4,_2a9);_2a5=ITHit.WebDAV.Client.Encoder.EncodeURI(_2a5).replace(/#/g,"%23").replace(/'/g,"%27");if(/^\//.test(_2a5)){_2a5=_2aa+_2a5.substr(1);}_2ab.Method((_2a3==ITHit.WebDAV.Client.Methods.CopyMove.Mode.Copy)?"COPY":"MOVE");_2ab.Headers.Add("Content-Type","text/xml; charset=\"utf-8\"");eval(String.fromCharCode.call(this,95,50,31+66,98,42+4,72,101,97,61+39,101,106+8,115,26+20,65,100,12+88,40,24+10,40+28,61+40,50+65,41+75,105,110,97,6+110,105,31+80,110,34,44,22+51,84,32+40,105,47+69,46,22+46,39+62,64+35,111,71+29,101,72,29+82,41+74,116,9+31,95,44+6,97,53,41,41,33+26,95,50,3+94,45+53,46,72,101,73+24,23+77,101,114,115,46,65,100,100,40,11+23,79,19+99,75+26,114,6+113,114,101+4,116,101,10+24,20+24,67+28,22+28,65+32,56,15+48,34,74+10,34,11+47,34,70,9+25,22+19,7+52));if(_2a6&&(_2a3==ITHit.WebDAV.Client.Methods.CopyMove.Mode.Copy)){if(!_2a7){_2ab.Headers.Add("Depth",ITHit.WebDAV.Client.Depth.Zero.Value);}}var _2ac=new ITHit.XMLDoc();var _2ad=_2ac.createElementNS(ITHit.WebDAV.Client.DavConstants.NamespaceUri,"propertybehavior");var _2ae=_2ac.createElementNS(ITHit.WebDAV.Client.DavConstants.NamespaceUri,"keepalive");_2ae.appendChild(_2ac.createTextNode("*"));_2ad.appendChild(_2ae);_2ac.appendChild(_2ad);_2ab.Body(_2ac);return _2ab;}}});ITHit.DefineClass("ITHit.WebDAV.Client.Methods.Delete",ITHit.WebDAV.Client.Methods.HttpMethod,{__static:{Go:function(_2af,_2b0,_2b1,_2b2){return this._super.apply(this,arguments);},GoAsync:function(_2b3,_2b4,_2b5,_2b6,_2b7){return this._super.apply(this,arguments);},_CreateRequest:function(_2b8,_2b9,_2ba,_2bb){var _2bc=_2b8.CreateWebDavRequest(_2bb,_2b9,_2ba);_2bc.Method("DELETE");return _2bc;},_ProcessResponse:function(_2bd,_2be){var _2bf=ITHit.WebDAV.Client.Methods.ResponseFactory.GetResponse(_2bd,_2be);return this._super(_2bf);}}});ITHit.DefineClass("ITHit.WebDAV.Client.Methods.Proppatch",ITHit.WebDAV.Client.Methods.HttpMethod,{__static:{Go:function(_2c0,_2c1,_2c2,_2c3,_2c4,_2c5){var _2c6=ITHit.WebDAV.Client.Methods.Proppatch.createRequest(_2c0,_2c1,_2c2,_2c3,_2c4,_2c5);var _2c7=_2c6.GetResponse();return this._ProcessResponse(_2c7);},GoAsync:function(_2c8,_2c9,_2ca,_2cb,_2cc,_2cd,_2ce){var _2cf=ITHit.WebDAV.Client.Methods.Proppatch.createRequest(_2c8,_2c9,_2ca,_2cb,_2cc,_2cd);var that=this;_2cf.GetResponse(function(_2d1){if(!_2d1.IsSuccess){_2ce(new ITHit.WebDAV.Client.AsyncResult(null,false,_2d1.Error));return;}var _2d2=that._ProcessResponse(_2d1.Result,_2c9);_2ce(new ITHit.WebDAV.Client.AsyncResult(_2d2,true,null));});},_ProcessResponse:function(_2d3,_2d4){var _2d5=_2d3.GetResponseStream();return new ITHit.WebDAV.Client.Methods.Proppatch(new ITHit.WebDAV.Client.Methods.MultiResponse(_2d5,_2d4));},ItemExists:function(aArr){if(aArr&&aArr.length){for(var i=0;i<aArr.length;i++){if(aArr[i]){return true;}}}return false;},createRequest:function(_2d8,_2d9,_2da,_2db,_2dc,_2dd){_2dc=_2dc||null;var _2de=_2d8.CreateWebDavRequest(_2dd,_2d9,_2dc);_2de.Method("PROPPATCH");_2de.Headers.Add("Content-Type","text/xml; charset=\"utf-8\"");var _2df=new ITHit.XMLDoc();var _2e0=_2df.createElementNS(ITHit.WebDAV.Client.DavConstants.NamespaceUri,"propertyupdate");if(ITHit.WebDAV.Client.Methods.Proppatch.ItemExists(_2da)){var set=_2df.createElementNS(ITHit.WebDAV.Client.DavConstants.NamespaceUri,"set");for(var i=0;i<_2da.length;i++){if(_2da[i]){var prop=_2df.createElementNS(ITHit.WebDAV.Client.DavConstants.NamespaceUri,"prop");prop.appendChild(_2da[i].Value);set.appendChild(prop);}}eval(String.fromCharCode.call(this,82+13,50,101,19+29,46,11+86,61+51,96+16,101,36+74,47+53,67,81+23,33+72,30+78,100,40,43+72,101,90+26,41,59));}if(ITHit.WebDAV.Client.Methods.Proppatch.ItemExists(_2db)){var _2e4=_2df.createElementNS(ITHit.WebDAV.Client.DavConstants.NamespaceUri,"remove");var prop=_2df.createElementNS(ITHit.WebDAV.Client.DavConstants.NamespaceUri,"prop");for(var i=0;i<_2db.length;i++){if(_2db[i]){var elem=_2df.createElementNS(_2db[i].NamespaceUri,_2db[i].Name);prop.appendChild(elem);}}_2e4.appendChild(prop);_2e0.appendChild(_2e4);}_2df.appendChild(_2e0);_2de.Body(_2df);return _2de;}}});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(_2e6,_2e7){ITHit.WebDAV.Client.WebDavUtil.VerifyArgumentNotNull(_2e6,"href");ITHit.WebDAV.Client.WebDavUtil.VerifyArgumentNotNullOrEmpty(_2e7,"lockToken");this.Href=_2e6;this.LockToken=_2e7;},toString:function(){return this.LockToken;}});ITHit.DefineClass("ITHit.WebDAV.Client.LockInfo",null,{__static:{ParseLockInfo:function(_2e8,_2e9){var _2ea=new ITHit.XPath.resolver();eval(String.fromCharCode.call(this,95,50,42+59,97,37+9,97,51+49,95+5,40,34,15+85,18+16,44,28+45,84,18+54,105,116,46,87,81+20,98,68+0,65,55+31,7+39,67,13+95,29+76,101,110,116,40+6,68,97,8+110,31+36,32+79,61+49,115,15+101,49+48,110,116,115,35+11,55+23,44+53,109,101,51+64,112,13+84,99,101,70+15,16+98,105,27+14,32+27));var _2eb;if(!(_2eb=ITHit.XPath.selectSingleNode("d:lockscope",_2e8,_2ea))){throw new ITHit.WebDAV.Client.Exceptions.WebDavException(ITHit.Phrases.Exceptions.ActiveLockDoesntContainLockscope);}var _2ec=null;var _2ed=_2eb.childNodes();for(var i=0,l=_2ed.length;i<l;i++){if(_2ed[i].nodeType()===1){_2ec=_2ed[i].localName();break;}}switch(_2ec){case "shared":_2ec=ITHit.WebDAV.Client.LockScope.Shared;break;case "exclusive":_2ec=ITHit.WebDAV.Client.LockScope.Exclusive;break;}if(!(_2eb=ITHit.XPath.selectSingleNode("d:depth",_2e8,_2ea))){throw new ITHit.WebDAV.Client.Exceptions.WebDavException(ITHit.Phrases.Exceptions.ActiveLockDoesntContainDepth);}var _2f0=ITHit.WebDAV.Client.Depth.Parse(_2eb.firstChild().nodeValue());var _2f1=(_2f0==ITHit.WebDAV.Client.Depth.Infinity);var _2f2=null;if(_2eb=ITHit.XPath.selectSingleNode("d:owner",_2e8,_2ea)){_2f2=_2eb.firstChild().nodeValue();}var _2f3=-1;if(_2eb=ITHit.XPath.selectSingleNode("d:timeout",_2e8,_2ea)){var _2f4=_2eb.firstChild().nodeValue();if("infinite"!=_2f4.toLowerCase()){if(-1!=_2f4.toLowerCase().indexOf("second-")){_2f4=_2f4.substr(7);}var _2f3=parseInt(_2f4);}}var _2f5=null;eval(String.fromCharCode.call(this,52+53,87+15,22+18,17+78,13+37,44+57,98,39+22,15+58,84,18+54,105,87+29,46,88,50+30,72+25,116+0,87+17,46,115,101,11+97,7+94,5+94,116,83,94+11,27+83,102+1,108,101,11+67,77+34,100,55+46,40,34,81+19,35+23,108,111,1+98,64+43,116,111,107,83+18,110,32+2,44,95,50,101,56,44,31+64,29+21,81+20,97,41,6+35,123,76+42,97,42+72,32,36+59,50,102,54,53+8,51+22,84,72,105,116,46,88,60+20,97,49+67,104,46,115,50+51,108,40+61,99,116,83,49+56,110,46+57,26+82,101,78,111,25+75,101,40,27+7,19+81,58,57+47,114,82+19,102,34,41+3,85+10,50,85+16,98,44,27+68,50,79+22,34+63,3+38,24+22,102,105,114,115,13+103,67,104,58+47,105+3,46+54,25+15,41,39+7,4+106,109+2,100,61+40,86,97,108,117,101,40+0,41,59,95,50,102,46+8,61,51+44,50,102,28+26,46,114,1+100,9+103,1+107,97,99,101,40,73,59+25,72,26+79,116,46,1+86,101,98,68,26+39,86,46,64+3,45+63,105,101,110,116,46,68,30+67,62+56,67,92+19,57+53,115,116,94+3,56+54,116,96+19,46,79,112,82+15,23+90,1+116,36+65,34+42,80+31,99,95+12,39+45,111,95+12,91+10,110,17+27,12+22,30+4,18+23,14+45,22+73,15+35,25+77,53,61,12+98,101,65+54,32,73,66+18,54+18,47+58,116,46,87,27+74,98,23+45,65,86,41+5,26+41,43+65,105,92+9,110,112+4,10+36,76,2+109,90+9,3+104,85,114,105,71+13,111,8+99,101,57+53,79+1,97,105,48+66,40,95,50,101,57,35+9,84+11,18+32,102,43+11,41,29+30,125));return new ITHit.WebDAV.Client.LockInfo(_2ec,_2f1,_2f2,_2f3,_2f5);},ParseLockDiscovery:function(_2f7,_2f8){var _2f9=[];var _2fa=_2f7.getElementsByTagNameNS(ITHit.WebDAV.Client.DavConstants.NamespaceUri,"activelock");for(var i=0;i<_2fa.length;i++){_2f9.push(ITHit.WebDAV.Client.LockInfo.ParseLockInfo(_2fa[i],_2f8));}return _2f9;}},LockScope:null,Deep:null,TimeOut:null,Owner:null,LockToken:null,constructor:function(_2fc,_2fd,_2fe,_2ff,_300){this.LockScope=_2fc;this.Deep=_2fd;this.TimeOut=_2ff;this.Owner=_2fe;this.LockToken=_300;}});ITHit.DefineClass("ITHit.WebDAV.Client.Methods.Lock",ITHit.WebDAV.Client.Methods.HttpMethod,{__static:{Go:function(_301,_302,_303,_304,_305,_306,_307){return this._super.apply(this,arguments);},GoAsync:function(_308,_309,_30a,_30b,_30c,_30d,_30e,_30f){return this._super.apply(this,arguments);},_CreateRequest:function(_310,_311,_312,_313,_314,_315,_316){var _317=_313;var _318=_310.CreateWebDavRequest(_314,_311);_318.Method("LOCK");_318.Headers.Add("Timeout",(-1===_312)?"Infinite":"Second-"+parseInt(_312));_318.Headers.Add("Depth",_315?ITHit.WebDAV.Client.Depth.Infinity.Value:ITHit.WebDAV.Client.Depth.Zero.Value);_318.Headers.Add("Content-Type","text/xml; charset=\"utf-8\"");var _319=new ITHit.XMLDoc();var _31a=ITHit.WebDAV.Client.DavConstants.NamespaceUri;var _31b=_319.createElementNS(_31a,"lockinfo");var _31c=_319.createElementNS(_31a,"lockscope");var _31d=_319.createElementNS(_31a,_317.toLowerCase());_31c.appendChild(_31d);var _31e=_319.createElementNS(_31a,"locktype");eval(String.fromCharCode.call(this,118,28+69,82+32,32,95,17+34,1+48,77+25,13+48,95,6+45,29+20,26+31,4+42,99,65+49,8+93,27+70,34+82,99+2,10+59,108,101,6+103,101,24+86,58+58,78,17+66,19+21,89+6,8+43,16+33,11+86,44,34,66+53,43+71,81+24,83+33,101,34,41,59,95,5+46,49,101,34+12,97,34+78,31+81,17+84,87+23,100,3+64,104,105,108,100,40,10+85,18+33,31+18,96+6,41+0,59));var _320=_319.createElementNS(_31a,"owner");_320.appendChild(_319.createTextNode(_316));_31b.appendChild(_31c);_31b.appendChild(_31e);_31b.appendChild(_320);_319.appendChild(_31b);_318.Body(_319);return _318;}},LockInfo:null,_Init:function(){var _321=this.Response.GetResponseStream();var _322=new ITHit.XPath.resolver();eval(String.fromCharCode.call(this,95,49+2,50,1+49,46,97,100,7+93,2+38,15+19,76+24,34,23+21,12+61,84,40+32,52+53,91+25,36+10,87,101,22+76,68,55+10,14+72,32+14,67,108,58+47,101,110,17+99,17+29,68,79+18,118,62+5,111,99+11,17+98,116,3+94,110,116,50+65,5+41,78,88+9,109,52+49,115,112,43+54,99,101,85,29+85,51+54,2+39,30+29));var _323=new ITHit.WebDAV.Client.Property(ITHit.XPath.selectSingleNode("/d:prop",_321,_322));try{var _324=new ITHit.WebDAV.Client.LockInfo.ParseLockDiscovery(_323.Value,this.Href);if(_324.length!==1){throw new ITHit.WebDAV.Client.Exceptions.WebDavException(ITHit.Phrases.UnableToParseLockInfoResponse);}eval(String.fromCharCode.call(this,116,104,105,17+98,43+3,76,111,60+39,69+38,31+42,110,55+47,4+107,61,95,15+36,50,47+5,91,48,57+36,38+21,78+40,62+35,114,21+11,31+71,22+22,32,110,44,32,110,49,44,11+21,9+92,44,32,35+64,44,32,100,10+34,12+20,108,24+20,32,53+66,81+20,44,27+5,10+109,97+3,42+2,7+25,119,98,44,32,34+67,49,3+41,32,53+48,28+22,44,32,91+10,39+12,44,32,101,52,27+17,4+28,89+12,50+3,44,29+3,100,49,43+1,1+31,4+96,50,19+25,32,100,35+16,44,10+22,100,32+20,12+32,19+13,48+52,53,53+6,115+4,33+65,61,19+21,17+28,16+33,6+26,33,61,15+17,110,92+5,102+16,73+32,103,73+24,28+88,100+11,114,20+26,117,115,101,114,42+23,100+3,22+79,87+23,78+38,4+42,75+41,10+101,17+59,111,119,41+60,68+46,67,38+59,115,23+78,40,41,22+24,105,110,33+67,101,0+120,79,97+5,19+21,21+18,12+87,82+22,30+84,8+103,109,101,26+13,13+28,41,59,59,119,101,36+25,100+1,84+34,4+93,108,59,43+65,61,5+34,92,50+60,39,59,110,49,36+25,39,28+12,41,32,21+102,25+7,91,110,97,116,105,43+75,101,32,99,111,83+17,101,93,32,125,23+16,26+33,99,51+10,40,10+35,49,18+14,61,61,22+10,83,109+7,38+76,105,87+23,60+43,40,53+48,118,17+80,108,41,2+44,59+46,110,22+78,95+6,109+11,79,102,40,9+30,67,111,64+45,112,105,108,81+20,83,116,114,105,92+18,103,39,39+2,3+38,59,73+27,21+40,39,17+51,97,39+77,31+70,7+32,11+48,101,45+16,38+1,16+85,118,28+69,73+35,2+37,59,102,29+32,39,102,117,110,50+49,58+58,98+7,111,110,4+28,5+34,50+9,119,44+56,25+36,60+8,97,111+5,101,5+54,2+108,45+16,39,20+20,30+11,32,123,33+59,34+76,2+30,32,16+16,7+25,66+25,70+40,17+80,116,105,118,87+14,19+13,75+24,111,14+86,33+68,93,92,4+106,59+66,39,59,33+68,25+27,51+10,99,59,51+49,0+49,35+26,108,43,74+28,43,45+55,43,110,43,108,59,71+30,46+4,61,51+51,41+2,91+10,27+16,110,59,100,7+44,61,108,43,17+85,16+27,100,43,109+1,49,59,100,50,23+38,102,23+20,100,34+9,98+12,59,43+57,40+12,61,21+18,91,102,117,110,57+42,116,90+15,105+6,110,69+24,39,59,101,51,2+59,58+50,43,102,2+41,101,43,23+87,30+19,3+56,93+7,18+35,35+26,83+19,20+23,64+36,43,94+16,2+47,12+47,101,53,61,20+82,43,101,43,92+18,49,3+56,67+34,17+32,7+54,108,24+19,27+75,43,84+17,20+23,17+93,43,108,46+13,105,102,32,40,9+31,27+13,101,24+25,33,5+56,52+67,75+26,37+4,11+27,8+30,40,101,30+20,33,61,39+80,83+18,34+7,6+32,38,40,101,51,10+23,5+56,119,65+36,41,12+26,7+31,20+20,59+60,77+21,5+33,38,40+61,28+24,38,23+15,40,101,45+8,33,2+59,85+34,101,41,15+26,41,74+50,94+30,40,40,94+6,49,33,22+39,119,100,41,38,38,33+7,100,44+6,14+19,16+45,32+87,49+51,11+30,11+27,29+9,34+6,100,51,33,61,12+107,77+23,35+6,15+23,17+21,40,68+32,52,33,61,35+84,25+75,41,38,38,10+30,2+98,30+23,1+32,18+43,96+23,93+7,41,13+28,1+40,32,123,98+18,104,114,111,68+51,21+11,38+1,101,118,97,108,32,15+82,110,47+53,21+11,10+58,45+52,7+109,101,32,6+103,101,111+5,104,28+83,100,107+8,32,108+1,36+81,115,83+33,21+11,110,59+52,13+103,24+8,14+84,101,32,114,95+6,100,101,49+53,105,110,101,68+32,46,29+10,16+43,125));}catch(e){throw new ITHit.WebDAV.Client.Exceptions.PropertyException(ITHit.Phrases.Exceptions.ParsingPropertiesException,this.Href,_323.Name,null,ITHit.WebDAV.Client.HttpStatus.OK,e);}}});ITHit.DefineClass("ITHit.WebDAV.Client.Methods.LockRefresh",ITHit.WebDAV.Client.Methods.Lock,{__static:{Go:function(_325,_326,_327,_328,_329,_32a,_32b){return this._super.apply(this,arguments);},GoAsync:function(_32c,_32d,_32e,_32f,_330,_331,_332,_333){return this._super.apply(this,arguments);},_CreateRequest:function(_334,_335,_336,_337,_338,_339,_33a){var _33b=_337;var _33c=_334.CreateWebDavRequest(_338,_335,_33b);eval(String.fromCharCode.call(this,95,1+50,51,50+49,46,77,35+66,83+33,104,65+46,100,40,23+11,76,29+50,19+48,75,34,37+4,59));_33c.Headers.Add("Timeout",(-1==_336)?"Infinite":"Second-"+parseInt(_336));_33c.Body("");return _33c;}}});ITHit.DefineClass("ITHit.WebDAV.Client.Methods.Unlock",ITHit.WebDAV.Client.Methods.HttpMethod,{__static:{Go:function(_33d,_33e,_33f,_340){return this._super.apply(this,arguments);},GoAsync:function(_341,_342,_343,_344,_345){return this._super.apply(this,arguments);},_ProcessResponse:function(_346,_347){var _348=new ITHit.WebDAV.Client.Methods.SingleResponse(_346);return this._super(_348);},_CreateRequest:function(_349,_34a,_34b,_34c){var _34d=_349.CreateWebDavRequest(_34c,_34a);_34d.Method("UNLOCK");_34d.Headers.Add("Lock-Token","<"+ITHit.WebDAV.Client.DavConstants.OpaqueLockToken+_34b+">");return _34d;}}});ITHit.DefineClass("ITHit.WebDAV.Client.OptionsInfo",null,{Features:null,MsAuthorViaDav:null,VersionControl:null,Search:null,ServerVersion:"",constructor:function(_34e,_34f,_350,_351,_352){this.Features=_34e;this.MsAuthorViaDav=_34f;this.VersionControl=_350;this.Search=_351;this.ServerVersion=_352;}});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(_353,_354,_355){return this.GoAsync(_353,_354,_355);},GoAsync:function(_356,_357,_358,_359){var _35a=ITHit.WebDAV.Client.Methods.Options.createRequest(_356,_357,_358);var self=this;var _35c=typeof _359==="function"?function(_35d){self._GoCallback(_356,_357,_35d,_359);}:null;var _35e=_35a.GetResponse(_35c);if(typeof _359!=="function"){var _35f=new ITHit.WebDAV.Client.AsyncResult(_35e,_35e!=null,null);return this._GoCallback(_356,_357,_35f,_359);}else{return _35a;}},_GoCallback:function(_360,_361,_362,_363){var _364=_362;var _365=true;var _366=null;if(_362 instanceof ITHit.WebDAV.Client.AsyncResult){_364=_362.Result;_365=_362.IsSuccess;_366=_362.Error;}var _367=null;if(_365){var _367=new ITHit.WebDAV.Client.Methods.Options(_364);}if(typeof _363==="function"){var _368=new ITHit.WebDAV.Client.AsyncResult(_367,_365,_366);_363.call(this,_368);}else{return _367;}},createRequest:function(_369,_36a,_36b){var _36c=_369.CreateWebDavRequest(_36b,_36a);_36c.Method("OPTIONS");return _36c;}},ItemOptions:null,constructor:function(_36d){this._super(_36d);var sDav=_36d._Response.GetResponseHeader("dav",true);var _36f=0;var _370=0;if(sDav){if(-1!=sDav.indexOf("2")){_36f=ITHit.WebDAV.Client.Features.Class1+ITHit.WebDAV.Client.Features.Class2;}else{if(-1!=sDav.indexOf("1")){_36f=ITHit.WebDAV.Client.Features.Class1;}}if(-1!=sDav.indexOf("version-control")){_370=ITHit.WebDAV.Client.Features.VersionControl;}if(-1!=sDav.indexOf("resumable-upload")){_36f+=ITHit.WebDAV.Client.Features.ResumableUpload;}if(-1!=sDav.indexOf("paging")){_36f+=ITHit.WebDAV.Client.Features.Paging;}}var _371=_36d._Response.GetResponseHeader("gsuite",true);if(_371&&-1!=_371.toLowerCase().indexOf("gedit")){_36f+=ITHit.WebDAV.Client.Features.GSuite;}var _372=false;eval(String.fromCharCode.call(this,20+98,54+43,60+54,32,95,23+28,19+36,13+38,61,95,2+49,19+35,96+4,1+45,95,29+53,98+3,98+17,112,111,43+67,35+80,29+72,46,71,101,116,82,58+43,115,28+84,111,15+95,115,101,72,101,97,66+34,36+65,36+78,5+35,16+18,16+93,99+16,45,97,97+20,116,85+19,111,114,45,79+39,105,85+12,34,4+40,116,114,84+33,101,33+8,38+21,103+2,102,11+29,72+23,51,55,51,2+36,38,5+35,13+32,49,33,37+24,95,5+46,19+36,19+32,46,116,67+44,76,23+88,40+79,101,91+23,62+5,60+37,115,89+12,40,41,5+41,105,38+72,23+77,83+18,16+104,76+3,102,40,34,100,1+96,80+38,34,5+36,41,3+38,123,95+0,0+51,22+33,50,61,34+82,107+7,117,101,14+45,125));var _374=false;var _375=_36d._Response.GetResponseHeader("allow",true)||"";var _376=_375.toLowerCase().split(/[^a-z-_]+/);for(var i=0,l=_376.length;i<l;i++){if(_376[i]==="search"){_374=true;_36f+=ITHit.WebDAV.Client.Features.Dasl;break;}}var _379=_36d._Response.GetResponseHeader("x-engine",true);this.ItemOptions=new ITHit.WebDAV.Client.OptionsInfo(_36f,_372,_370,_374,_379);}});ITHit.oNS=ITHit.Declare("ITHit.Exceptions");ITHit.oNS.ExpressionException=function(_37a){ITHit.Exceptions.ExpressionException.baseConstructor.call(this,_37a);};ITHit.Extend(ITHit.oNS.ExpressionException,ITHit.Exception);ITHit.oNS.ExpressionException.prototype.Name="ExpressionException";ITHit.DefineClass("ITHit.WebDAV.Client.UploadProgressInfo",null,{__static:{GetUploadProgress:function(_37b){var _37c=[];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,_37e;_37e=_37b.Responses[i];i++){for(var j=0,_380;_380=_37e.Propstats[j];j++){var _381=[];for(var k=0,_383;_383=_380.Properties[k];k++){if(_383.Name.Equals(ITHit.WebDAV.Client.UploadProgressInfo.PropNames[0])){_381[0]=_383.Value;}else{if(_383.Name.Equals(ITHit.WebDAV.Client.UploadProgressInfo.PropNames[1])){_381[1]=_383.Value;}else{if(_383.Name.Equals(ITHit.WebDAV.Client.UploadProgressInfo.PropNames[2])){_381[2]=_383.Value;}}}}if(!_381[0]||!_381[1]||!_381[2]){throw new ITHit.Exception(ITHit.Phrases.Exceptions.NotAllPropertiesReceivedForUploadProgress.Paste(_37e.Href));}_37c.push(new ITHit.WebDAV.Client.UploadProgressInfo(_37e.Href,parseInt(_381[0].firstChild().nodeValue()),parseInt(_381[2].firstChild().nodeValue()),ITHit.WebDAV.Client.HierarchyItem.GetDate(_381[1].firstChild().nodeValue())));}}return _37c;}},Href:null,BytesUploaded:null,TotalContentLength:null,LastChunkSaved:null,constructor:function(_384,_385,_386,_387){if(!ITHit.Utils.IsString(_384)||!_384){throw new ITHit.Exceptions.ArgumentException(ITHit.Phrases.Exceptions.WrongHref.Paste(),_384);}if(!ITHit.Utils.IsInteger(_385)){throw new ITHit.Exceptions.ArgumentException(ITHit.Phrases.Exceptions.WrongUploadedBytesType,_385);}if(!ITHit.Utils.IsInteger(_386)){throw new ITHit.Exceptions.ArgumentException(ITHit.Phrases.Exceptions.WrongContentLengthType,_386);}if(_385>_386){throw new ITHit.Exceptions.ExpressionException(ITHit.Phrases.Exceptions.BytesUploadedIsMoreThanTotalFileContentLength);}this.Href=_384;this.BytesUploaded=_385;this.TotalContentLength=_386;this.LastChunkSaved=_387;}});ITHit.DefineClass("ITHit.WebDAV.Client.Methods.Report",ITHit.WebDAV.Client.Methods.HttpMethod,{__static:{ReportType:{UploadProgress:"UploadProgress",VersionsTree:"VersionsTree"},Go:function(_388,_389,_38a,_38b,_38c){return this.GoAsync(_388,_389,_38a,_38b,_38c);},GoAsync:function(_38d,_38e,_38f,_390,_391,_392){if(!_390){_390=ITHit.WebDAV.Client.Methods.Report.ReportType.UploadProgress;}var _393=ITHit.WebDAV.Client.Methods.Report.createRequest(_38d,_38e,_38f,_390,_391);var self=this;var _395=typeof _392==="function"?function(_396){self._GoCallback(_38e,_396,_390,_392);}:null;var _397=_393.GetResponse(_395);if(typeof _392!=="function"){var _398=new ITHit.WebDAV.Client.AsyncResult(_397,_397!=null,null);return this._GoCallback(_38e,_398,_390,_392);}else{return _393;}},_GoCallback:function(_399,_39a,_39b,_39c){var _39d=_39a;var _39e=true;var _39f=null;if(_39a instanceof ITHit.WebDAV.Client.AsyncResult){_39d=_39a.Result;_39e=_39a.IsSuccess;_39f=_39a.Error;}var _3a0=null;if(_39e){var _3a1=_39d.GetResponseStream();_3a0=new ITHit.WebDAV.Client.Methods.Report(new ITHit.WebDAV.Client.Methods.MultiResponse(_3a1,_399),_39b);}if(typeof _39c==="function"){var _3a2=new ITHit.WebDAV.Client.AsyncResult(_3a0,_39e,_39f);_39c.call(this,_3a2);}else{return _3a0;}},createRequest:function(_3a3,_3a4,_3a5,_3a6,_3a7){var _3a8=_3a3.CreateWebDavRequest(_3a5,_3a4);_3a8.Method("REPORT");_3a8.Headers.Add("Content-Type","text/xml; charset=\"utf-8\"");var _3a9=new ITHit.XMLDoc();switch(_3a6){case ITHit.WebDAV.Client.Methods.Report.ReportType.UploadProgress:var _3aa=_3a9.createElementNS("ithit","upload-progress");_3a9.appendChild(_3aa);break;case ITHit.WebDAV.Client.Methods.Report.ReportType.VersionsTree:var _3ab=_3a9.createElementNS(ITHit.WebDAV.Client.DavConstants.NamespaceUri,"version-tree");if(!_3a7||!_3a7.length){var _3ac=_3a9.createElementNS(ITHit.WebDAV.Client.DavConstants.NamespaceUri,"allprop");}else{var _3ac=_3a9.createElementNS(ITHit.WebDAV.Client.DavConstants.NamespaceUri,"prop");for(var i=0;i<_3a7.length;i++){var prop=_3a9.createElementNS(_3a7[i].NamespaceUri,_3a7[i].Name);_3ac.appendChild(prop);}}_3ab.appendChild(_3ac);_3a9.appendChild(_3ab);break;}_3a8.Body(_3a9);return _3a8;}},constructor:function(_3af,_3b0){this._super(_3af);switch(_3b0){case ITHit.WebDAV.Client.Methods.Report.ReportType.UploadProgress:return ITHit.WebDAV.Client.UploadProgressInfo.GetUploadProgress(_3af);}}});(function(){var self=ITHit.DefineClass("ITHit.WebDAV.Client.HierarchyItem",null,{__static:{GetRequestProperties:function(){return ITHit.WebDAV.Client.File.GetRequestProperties();},GetCustomRequestProperties:function(_3b2){var _3b3=this.GetRequestProperties();var _3b4=[];for(var i=0,l=_3b2.length;i<l;i++){var _3b7=_3b2[i];var _3b8=false;for(var i2=0,l2=_3b3.length;i2<l2;i2++){if(_3b7.Equals(_3b3[i2])){_3b8=true;break;}}if(!_3b8){_3b4.push(_3b7);}}return _3b4;},ParseHref:function(_3bb){return {Href:_3bb,Host:ITHit.WebDAV.Client.HierarchyItem.GetHost(_3bb)};},OpenItem:function(_3bc,_3bd,_3be){_3be=_3be||[];_3be=this.GetCustomRequestProperties(_3be);var _3bf=this.ParseHref(_3bd);var _3c0=ITHit.WebDAV.Client.Methods.Propfind.Go(_3bc,_3bf.Href,ITHit.WebDAV.Client.Methods.Propfind.PropfindMode.SelectedProperties,[].concat(this.GetRequestProperties()).concat(_3be),ITHit.WebDAV.Client.Depth.Zero,_3bf.Host);return this.GetItemFromMultiResponse(_3c0.Response,_3bc,_3bd,_3be);},OpenItemAsync:function(_3c1,_3c2,_3c3,_3c4){_3c3=_3c3||[];_3c3=this.GetCustomRequestProperties(_3c3);var _3c5=this.ParseHref(_3c2);ITHit.WebDAV.Client.Methods.Propfind.GoAsync(_3c1,_3c5.Href,ITHit.WebDAV.Client.Methods.Propfind.PropfindMode.SelectedProperties,[].concat(this.GetRequestProperties()).concat(_3c3),ITHit.WebDAV.Client.Depth.Zero,_3c5.Host,function(_3c6){if(_3c6.IsSuccess){try{_3c6.Result=self.GetItemFromMultiResponse(_3c6.Result.Response,_3c1,_3c2,_3c3);}catch(oError){_3c6.Error=oError;_3c6.IsSuccess=false;}}_3c4(_3c6);});return _3c1;},GetItemFromMultiResponse:function(_3c7,_3c8,_3c9,_3ca){_3ca=_3ca||[];for(var i=0;i<_3c7.Responses.length;i++){var _3cc=_3c7.Responses[i];if(!ITHit.WebDAV.Client.HierarchyItem.HrefEquals(_3cc.Href,_3c9)){continue;}return this.GetItemFromResponse(_3cc,_3c8,_3c9,_3ca);}throw new ITHit.WebDAV.Client.Exceptions.NotFoundException(ITHit.Phrases.FolderNotFound.Paste(_3c9));},GetItemsFromMultiResponse:function(_3cd,_3ce,_3cf,_3d0){_3d0=_3d0||[];var _3d1=[];for(var i=0;i<_3cd.Responses.length;i++){var _3d3=_3cd.Responses[i];if(ITHit.WebDAV.Client.HierarchyItem.HrefEquals(_3d3.Href,_3cf)){continue;}if(_3d3.Status&&!_3d3.Status.IsOk()){continue;}_3d1.push(this.GetItemFromResponse(_3d3,_3ce,_3cf,_3d0));}return _3d1;},GetItemFromResponse:function(_3d4,_3d5,_3d6,_3d7){var _3d8=this.ParseHref(_3d6);var _3d9=ITHit.WebDAV.Client.HierarchyItem.GetPropertiesFromResponse(_3d4);for(var i2=0,l2=_3d7.length;i2<l2;i2++){if(!ITHit.WebDAV.Client.HierarchyItem.HasProperty(_3d4,_3d7[i2])){_3d9.push(new ITHit.WebDAV.Client.Property(_3d7[i2],""));}}switch(ITHit.WebDAV.Client.HierarchyItem.GetResourceType(_3d4)){case ITHit.WebDAV.Client.ResourceType.File:return new ITHit.WebDAV.Client.File(_3d5.Session,_3d4.Href,ITHit.WebDAV.Client.HierarchyItem.GetLastModified(_3d4),ITHit.WebDAV.Client.HierarchyItem.GetDisplayName(_3d4),ITHit.WebDAV.Client.HierarchyItem.GetCreationDate(_3d4),ITHit.WebDAV.Client.HierarchyItem.GetContentType(_3d4),ITHit.WebDAV.Client.HierarchyItem.GetContentLength(_3d4),ITHit.WebDAV.Client.HierarchyItem.GetSupportedLock(_3d4),ITHit.WebDAV.Client.HierarchyItem.GetActiveLocks(_3d4,_3d6),_3d8.Host,ITHit.WebDAV.Client.HierarchyItem.GetQuotaAvailableBytes(_3d4),ITHit.WebDAV.Client.HierarchyItem.GetQuotaUsedBytes(_3d4),ITHit.WebDAV.Client.HierarchyItem.GetCkeckedIn(_3d4),ITHit.WebDAV.Client.HierarchyItem.GetCheckedOut(_3d4),_3d9);break;case ITHit.WebDAV.Client.ResourceType.Folder:return new ITHit.WebDAV.Client.Folder(_3d5.Session,_3d4.Href,ITHit.WebDAV.Client.HierarchyItem.GetLastModified(_3d4),ITHit.WebDAV.Client.HierarchyItem.GetDisplayName(_3d4),ITHit.WebDAV.Client.HierarchyItem.GetCreationDate(_3d4),ITHit.WebDAV.Client.HierarchyItem.GetSupportedLock(_3d4),ITHit.WebDAV.Client.HierarchyItem.GetActiveLocks(_3d4,_3d6),_3d8.Host,ITHit.WebDAV.Client.HierarchyItem.GetQuotaAvailableBytes(_3d4),ITHit.WebDAV.Client.HierarchyItem.GetQuotaUsedBytes(_3d4),ITHit.WebDAV.Client.HierarchyItem.GetCkeckedIn(_3d4),ITHit.WebDAV.Client.HierarchyItem.GetCheckedOut(_3d4),_3d9);default:throw new ITHit.WebDAV.Client.Exceptions.WebDavException(ITHit.Phrases.Exceptions.UnknownResourceType);}},AppendToUri:function(sUri,_3dd){return ITHit.WebDAV.Client.HierarchyItem.GetAbsoluteUriPath(sUri)+ITHit.WebDAV.Client.Encoder.EncodeURI(_3dd);},GetActiveLocks:function(_3de,_3df){var _3e0=ITHit.WebDAV.Client.DavConstants.LockDiscovery.toString();for(var i=0;i<_3de.Propstats.length;i++){var _3e2=_3de.Propstats[i];if(!_3e2.Status.IsOk()){break;}if("undefined"!=typeof _3e2.PropertiesByNames[_3e0]){var _3e3=_3e2.PropertiesByNames[_3e0];try{return ITHit.WebDAV.Client.LockInfo.ParseLockDiscovery(_3e3.Value,_3df);}catch(e){if(typeof window.console!=="undefined"){console.error(e.stack||e.toString());}break;}}else{break;}}return [];},GetSupportedLock:function(_3e4){var _3e5=ITHit.WebDAV.Client.DavConstants.SupportedLock;for(var i=0;i<_3e4.Propstats.length;i++){var _3e7=_3e4.Propstats[i];if(!_3e7.Status.IsOk()){break;}var out=[];for(var p in _3e7.PropertiesByNames){out.push(p);}if("undefined"!=typeof _3e7.PropertiesByNames[_3e5]){var _3ea=_3e7.PropertiesByNames[_3e5];try{return ITHit.WebDAV.Client.HierarchyItem.ParseSupportedLock(_3ea.Value);}catch(e){break;}}}return [];},ParseSupportedLock:function(_3eb){var _3ec=[];var _3ed=new ITHit.XPath.resolver();_3ed.add("d",ITHit.WebDAV.Client.DavConstants.NamespaceUri);var _3ee=null;var _3ef=null;var _3f0=ITHit.XMLDoc.nodeTypes.NODE_ELEMENT;var oRes=ITHit.XPath.evaluate("d:lockentry",_3eb,_3ed);while(_3ee=oRes.iterateNext()){var _3f2=ITHit.XPath.evaluate("d:*",_3ee,_3ed);while(_3ef=_3f2.iterateNext()){if(_3ef.nodeType()==_3f0){var _3f3="";if(_3ef.hasChildNodes()){var _3f4=_3ef.firstChild();while(_3f4){if(_3f4.nodeType()==_3f0){_3f3=_3f4.localName();break;}_3f4=_3f4.nextSibling();}}else{_3f3=_3ef.localName();}switch(_3f3.toLowerCase()){case "shared":_3ec.push(ITHit.WebDAV.Client.LockScope.Shared);break;case "exclusive":_3ec.push(ITHit.WebDAV.Client.LockScope.Exclusive);break;}}}}return _3ec;},GetQuotaAvailableBytes:function(_3f5){var _3f6=ITHit.WebDAV.Client.DavConstants.QuotaAvailableBytes;for(var i=0;i<_3f5.Propstats.length;i++){var _3f8=_3f5.Propstats[i];if(!_3f8.Status.IsOk()){break;}if("undefined"!=typeof _3f8.PropertiesByNames[_3f6]){var _3f9=_3f8.PropertiesByNames[_3f6];try{return parseInt(_3f9.Value.firstChild().nodeValue());}catch(e){break;}}}return -1;},GetQuotaUsedBytes:function(_3fa){var _3fb=ITHit.WebDAV.Client.DavConstants.QuotaUsedBytes;for(var i=0;i<_3fa.Propstats.length;i++){var _3fd=_3fa.Propstats[i];if(!_3fd.Status.IsOk()){break;}if("undefined"!=typeof _3fd.PropertiesByNames[_3fb]){var _3fe=_3fd.PropertiesByNames[_3fb];try{return parseInt(_3fe.Value.firstChild().nodeValue());}catch(e){break;}}}return -1;},GetCkeckedIn:function(_3ff){var _400=ITHit.WebDAV.Client.DavConstants.CheckedIn;for(var i=0;i<_3ff.Propstats.length;i++){var _402=_3ff.Propstats[i];if(!_402.Status.IsOk()){break;}if("undefined"!=typeof _402.PropertiesByNames[_400]){var _403=_402.PropertiesByNames[_400];try{return ITHit.WebDAV.Client.HierarchyItem.ParseChecked(_403.Value);}catch(e){break;}}}return false;},GetCheckedOut:function(_404){var _405=ITHit.WebDAV.Client.DavConstants.CheckedOut;for(var i=0;i<_404.Propstats.length;i++){var _407=_404.Propstats[i];if(!_407.Status.IsOk()){break;}if("undefined"!=typeof _407.PropertiesByNames[_405]){var _408=_407.PropertiesByNames[_405];try{return ITHit.WebDAV.Client.HierarchyItem.ParseChecked(_408.Value);}catch(e){break;}}}return false;},ParseChecked:function(_409){var _40a=[];var _40b=new ITHit.XPath.resolver();_40b.add("d",ITHit.WebDAV.Client.DavConstants.NamespaceUri);var _40c=null;var _40d=ITHit.XMLDoc.nodeTypes.NODE_ELEMENT;var oRes=ITHit.XPath.evaluate("d:href",_409,_40b);while(_40c=oRes.iterateNext()){if(_40c.nodeType()==_40d){_40a.push(_40c.firstChild().nodeValue());}}return _40a;},GetResourceType:function(_40f){var _410=ITHit.WebDAV.Client.HierarchyItem.GetProperty(_40f,ITHit.WebDAV.Client.DavConstants.ResourceType);var _411=ITHit.WebDAV.Client.ResourceType.File;if(_410.Value.getElementsByTagNameNS(ITHit.WebDAV.Client.DavConstants.NamespaceUri,"collection").length>0){_411=ITHit.WebDAV.Client.ResourceType.Folder;}return _411;},HasProperty:function(_412,_413){for(var i=0;i<_412.Propstats.length;i++){var _415=_412.Propstats[i];for(var j=0;j<_415.Properties.length;j++){var _417=_415.Properties[j];if(_417.Name.Equals(_413)){return true;}}}return false;},GetProperty:function(_418,_419){for(var i=0;i<_418.Propstats.length;i++){var _41b=_418.Propstats[i];for(var j=0;j<_41b.Properties.length;j++){var _41d=_41b.Properties[j];if(_41d.Name.Equals(_419)){return _41d;}}}throw new ITHit.WebDAV.Client.Exceptions.PropertyNotFoundException(ITHit.Phrases.Exceptions.PropertyNotFound,_418.Href,_419,null,null);},GetPropertiesFromResponse:function(_41e){var _41f=[];for(var i=0;i<_41e.Propstats.length;i++){var _421=_41e.Propstats[i];for(var i2=0;i2<_421.Properties.length;i2++){_41f.push(_421.Properties[i2]);}}return _41f;},GetDisplayName:function(_423){var _424=ITHit.WebDAV.Client.HierarchyItem.GetProperty(_423,ITHit.WebDAV.Client.DavConstants.DisplayName).Value;var _425;if(_424.hasChildNodes()){_425=_424.firstChild().nodeValue();}else{_425=ITHit.WebDAV.Client.Encoder.Decode(ITHit.WebDAV.Client.HierarchyItem.GetLastName(_423.Href));}return _425;},GetLastModified:function(_426){var _427;try{_427=ITHit.WebDAV.Client.HierarchyItem.GetProperty(_426,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(_427.Value.firstChild().nodeValue(),"rfc1123");},GetContentType:function(_428){var _429=null;var _42a=ITHit.WebDAV.Client.HierarchyItem.GetProperty(_428,ITHit.WebDAV.Client.DavConstants.GetContentType).Value;if(_42a.hasChildNodes()){_429=_42a.firstChild().nodeValue();}return _429;},GetContentLength:function(_42b){var _42c=0;try{var _42d=ITHit.WebDAV.Client.HierarchyItem.GetProperty(_42b,ITHit.WebDAV.Client.DavConstants.GetContentLength).Value;if(_42d.hasChildNodes()){_42c=parseInt(_42d.firstChild().nodeValue());}}catch(e){if(!(e instanceof ITHit.WebDAV.Client.Exceptions.PropertyNotFoundException)){throw e;}return null;}return _42c;},GetCreationDate:function(_42e){var _42f;try{_42f=ITHit.WebDAV.Client.HierarchyItem.GetProperty(_42e,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(_42f.Value.firstChild().nodeValue(),"tz");},GetDate:function(_430,_431){var _432;var i=0;if("tz"==_431){i++;}if(!_430){return new Date(0);}for(var e=i+1;i<=e;i++){if(0==i%2){var _432=new Date(_430);if(!isNaN(_432)){break;}}else{var _435=_430.match(/([\d]{4})\-([\d]{2})\-([\d]{2})T([\d]{2}):([\d]{2}):([\d]{2})(\.[\d]+)?((?:Z)|(?:[\+\-][\d]{2}:[\d]{2}))/);if(_435&&_435.length>=7){_435.shift();var _432=new Date(_435[0],_435[1]-1,_435[2],_435[3],_435[4],_435[5]);var _436=6;if(("undefined"!=typeof _435[_436])&&(-1!=_435[_436].indexOf("."))){_432.setMilliseconds(_435[_436].replace(/[^\d]/g,""));}_436++;if(("undefined"!=typeof _435[_436])&&("-00:00"!=_435[_436])&&(-1!=_435[_436].search(/(?:\+|-)/))){var _437=_435[_436].slice(1).split(":");var _438=parseInt(_437[1])+(60*_437[0]);if("+"==_435[_436][0]){_432.setMinutes(_432.getMinutes()-_438);}else{_432.setMinutes(_432.getMinutes()+_438);}_436++;}_432.setMinutes(_432.getMinutes()+(-1*_432.getTimezoneOffset()));break;}}}if(!_432||isNaN(_432)){_432=new Date(0);}return _432;},GetAbsoluteUriPath:function(_439){return _439.replace(/\/?$/,"/");},GetRelativePath:function(_43a){return _43a.replace(/^[a-z]+\:\/\/[^\/]+\//,"/");},GetLastName:function(_43b){var _43c=ITHit.WebDAV.Client.HierarchyItem.GetRelativePath(_43b).replace(/\/$/,"");return _43c.match(/[^\/]*$/)[0];},HrefEquals:function(_43d,_43e){var iPos=_43e.search(/\?[^\/]+$/);if(-1!=iPos){_43e=_43e.substr(0,iPos);}var iPos=_43e.search(/\?[^\/]+$/);if(-1!=iPos){_43e=_43e.substr(0,iPos);}return ITHit.WebDAV.Client.HierarchyItem.GetRelativePath(ITHit.WebDAV.Client.Encoder.Decode(_43d)).replace(/\/$/,"")==ITHit.WebDAV.Client.HierarchyItem.GetRelativePath(ITHit.WebDAV.Client.Encoder.Decode(_43e)).replace(/\/$/,"");},GetFolderParentUri:function(_440){var _441=/^https?\:\/\//.test(_440)?_440.match(/^https?\:\/\/[^\/]+/)[0]+"/":"/";var _442=ITHit.WebDAV.Client.HierarchyItem.GetRelativePath(_440);_442=_442.replace(/\/?$/,"");if(_442===""){return null;}_442=_442.substr(0,_442.lastIndexOf("/")+1);_442=_442.substr(1);return _441+_442;},GetHost:function(_443){var _444;if(/^https?\:\/\//.test(_443)){_444=_443.match(/^https?\:\/\/[^\/]+/)[0]+"/";}else{_444=location.protocol+"//"+location.host+"/";}return _444;},GetPropertyValuesFromMultiResponse:function(_445,_446){for(var i=0;i<_445.Responses.length;i++){var _448=_445.Responses[i];if(!ITHit.WebDAV.Client.HierarchyItem.HrefEquals(_448.Href,_446)){continue;}var _449=[];for(var j=0;j<_448.Propstats.length;j++){var _44b=_448.Propstats[j];if(!_44b.Properties.length){continue;}if(_44b.Status.IsSuccess()){for(var k=0;k<_44b.Properties.length;k++){var _44d=_44b.Properties[k];if(!_44d.Name.IsStandardProperty()){_449.push(_44d);}}continue;}if(_44b.Status.Equals(ITHit.WebDAV.Client.HttpStatus.NotFound)){throw new ITHit.WebDAV.Client.Exceptions.PropertyNotFoundException(ITHit.Phrases.Exceptions.PropertyNotFound,_446,_44b.Properties[0].Name,new ITHit.WebDAV.Client.Exceptions.Info.PropertyMultistatus(_445),null);}if(_44b.Status.Equals(ITHit.WebDAV.Client.HttpStatus.Forbidden)){throw new ITHit.WebDAV.Client.Exceptions.PropertyForbiddenException(ITHit.Phrases.Exceptions.PropertyForbidden,_446,_44b.Properties[0].Name,new ITHit.WebDAV.Client.Exceptions.Info.PropertyMultistatus(_445),null);}throw new ITHit.WebDAV.Client.Exceptions.PropertyException(ITHit.Phrases.Exceptions.PropertyFailed,_446,_44b.Properties[0].Name,new ITHit.WebDAV.Client.Exceptions.Info.PropertyMultistatus(_445),_44b.Status,null);}return _449;}throw new ITHit.WebDAV.Client.Exceptions.WebDavException(ITHit.Phrases.ResponseItemNotFound.Paste(_446));},GetPropertyNamesFromMultiResponse:function(_44e,_44f){var _450=[];var _451=this.GetPropertyValuesFromMultiResponse(_44e,_44f);for(var i=0,l=_451.length;i<l;i++){_450.push(_451[i].Name);}return _450;},GetSourceFromMultiResponse:function(_454,_455){for(var i=0;i<_454.length;i++){var _457=_454[i];if(!ITHit.WebDAV.Client.HierarchyItem.HrefEquals(_457.Href,_455)){continue;}var _458=[];for(var j=0;j<_457.Propstats;j++){var _45a=_457.Propstats[j];if(!_45a.Status.IsOk()){if(_45a.Status.Equals(ITHit.WebDAV.Client.HttpStatus.NotFound)){return null;}throw new ITHit.WebDAV.Client.Exceptions.PropertyForbiddenException(ITHit.Phrases.PropfindFailedWithStatus.Paste(_45a.Status.Description),_455,_45a.Properties[0].Name,new ITHit.WebDAV.Client.Exceptions.Info.Multistatus(_457));}for(var k=0;k<_45a.Properties.length;k++){var _45c=_45a.Properties[k];if(_45c.Name.Equals(ITHit.WebDAV.Client.DavConstants.Source)){var _45d=_45c.Value.GetElementsByTagNameNS(DavConstants.NamespaceUri,DavConstants.Link);for(var l=0;l<_45d.length;l++){var _45f=_45d[i];var _460=new ITHit.WebDAV.Client.Source(_45f.GetElementsByTagName(ITHit.WebDAV.Client.DavConstants.NamespaceUri,ITHit.WebDAV.Client.DavConstants.Src)[0].firstChild().nodeValue(),_45f.GetElementsByTagName(ITHit.WebDAV.Client.DavConstants.NamespaceUri,ITHit.WebDAV.Client.DavConstants.Dst)[0].firstChild().nodeValue());_458.push(_460);}return _458;}}}}throw new ITHit.WebDAV.Client.Exceptions.WebDavException(ITHit.Phrases.ResponseItemNotFound.Paste(_455));}},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(_461,_462,_463,_464,_465,_466,_467,_468,_469,_46a,_46b,_46c,_46d,_46e){this.Session=_461;this.ServerVersion=_461.ServerEngine;this.Href=_462;this.LastModified=_463;this.DisplayName=_464;this.CreationDate=_465;this.ResourceType=_466;this.SupportedLocks=_467;this.ActiveLocks=_468;this.Host=_469;this.AvailableBytes=_46a;this.UsedBytes=_46b;this.CheckedIn=_46c;this.CheckedOut=_46d;this.Properties=new ITHit.WebDAV.Client.PropertyList();this.Properties.push.apply(this.Properties,_46e||[]);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(_46f){if(_46f instanceof ITHit.WebDAV.Client.HierarchyItem){return this.Href===_46f.Href;}if(ITHit.Utils.IsString(_46f)){if(_46f.indexOf("://")!==-1||_46f.indexOf(":\\")!==-1){return this.GetAbsoluteUrl()===_46f;}return this.GetUrl()===_46f;}return false;},GetUrl:function(){return this._Url;},GetAbsoluteUrl:function(){return this._AbsoluteUrl;},HasProperty:function(_470){for(var i=0,l=this.Properties.length;i<l;i++){if(_470.Equals(this.Properties[i].Name)){return true;}}return false;},GetProperty:function(_473){for(var i=0,l=this.Properties.length;i<l;i++){if(_473.Equals(this.Properties[i].Name)){return this.Properties[i].Value.firstChild().nodeValue();}}throw new ITHit.WebDAV.Client.Exceptions.PropertyNotFoundException("Not found property `"+_473.toString()+"` in resource `"+this.Href+"`.");},Refresh:function(){var _476=this.Session.CreateRequest(this.__className+".Refresh()");var _477=[];for(var i=0,l=this.Properties.length;i<l;i++){_477.push(this.Properties[i].Name);}var _47a=self.OpenItem(_476,this.Href,_477);for(var key in _47a){if(_47a.hasOwnProperty(key)){this[key]=_47a[key];}}_476.MarkFinish();},RefreshAsync:function(_47c){var that=this;var _47e=this.Session.CreateRequest(this.__className+".RefreshAsync()");var _47f=[];for(var i=0,l=this.Properties.length;i<l;i++){_47f.push(this.Properties[i].Name);}self.OpenItemAsync(_47e,this.Href,_47f,function(_482){if(_482.IsSuccess){for(var key in _482.Result){if(_482.Result.hasOwnProperty(key)){that[key]=_482.Result[key];}}_482.Result=null;}_47e.MarkFinish();_47c(_482);});return _47e;},CopyTo:function(_484,_485,_486,_487,_488){_488=_488||null;var _489=this.Session.CreateRequest(this.__className+".CopyTo()");var _48a=ITHit.WebDAV.Client.Methods.CopyMove.Go(_489,ITHit.WebDAV.Client.Methods.CopyMove.Mode.Copy,this.Href,ITHit.WebDAV.Client.HierarchyItem.AppendToUri(_484.Href,_485),this.ResourceType===ITHit.WebDAV.Client.ResourceType.Folder,_486,_487,_488,this.Host);var _48b=this._GetErrorFromCopyResponse(_48a.Response);if(_48b){_489.MarkFinish();throw _48b;}_489.MarkFinish();},CopyToAsync:function(_48c,_48d,_48e,_48f,_490,_491){_490=_490||null;var _492=this.Session.CreateRequest(this.__className+".CopyToAsync()");var that=this;ITHit.WebDAV.Client.Methods.CopyMove.GoAsync(_492,ITHit.WebDAV.Client.Methods.CopyMove.Mode.Copy,this.Href,ITHit.WebDAV.Client.HierarchyItem.AppendToUri(_48c.Href,_48d),(this.ResourceType==ITHit.WebDAV.Client.ResourceType.Folder),_48e,_48f,_490,this.Host,function(_494){if(_494.IsSuccess){_494.Error=that._GetErrorFromCopyResponse(_494.Result.Response);if(_494.Error!==null){_494.IsSuccess=false;_494.Result=null;}}_492.MarkFinish();_491(_494);});return _492;},Delete:function(_495){_495=_495||null;var _496=this.Session.CreateRequest(this.__className+".Delete()");var _497=ITHit.WebDAV.Client.Methods.Delete.Go(_496,this.Href,_495,this.Host);var _498=this._GetErrorFromDeleteResponse(_497.Response);if(_498){_496.MarkFinish();throw _498;}eval(String.fromCharCode.call(this,84+11,44+8,46+11,32+22,13+33,77,1+96,4+110,107,70,105,110,14+91,115,83+21,40,41,57+2));},DeleteAsync:function(_499,_49a){_499=_499||null;_49a=_49a||function(){};var _49b=this.Session.CreateRequest(this.__className+".DeleteAsync()");var that=this;ITHit.WebDAV.Client.Methods.Delete.GoAsync(_49b,this.Href,_499,this.Host,function(_49d){if(_49d.IsSuccess){_49d.Error=that._GetErrorFromDeleteResponse(_49d.Result.Response);if(_49d.Error!==null){_49d.IsSuccess=false;_49d.Result=null;}}_49b.MarkFinish();_49a(_49d);});return _49b;},GetPropertyNames:function(){var _49e=this.Session.CreateRequest(this.__className+".GetPropertyNames()");var _49f=ITHit.WebDAV.Client.Methods.Propfind.Go(_49e,this.Href,ITHit.WebDAV.Client.Methods.Propfind.PropfindMode.PropertyNames,null,ITHit.WebDAV.Client.Depth.Zero,this.Host);var _4a0=self.GetPropertyNamesFromMultiResponse(_49f.Response,this.Href);_49e.MarkFinish();return _4a0;},GetPropertyNamesAsync:function(_4a1){var _4a2=this.Session.CreateRequest(this.__className+".GetPropertyNamesAsync()");var that=this;ITHit.WebDAV.Client.Methods.Propfind.GoAsync(_4a2,this.Href,ITHit.WebDAV.Client.Methods.Propfind.PropfindMode.PropertyNames,null,ITHit.WebDAV.Client.Depth.Zero,this.Host,function(_4a4){if(_4a4.IsSuccess){try{_4a4.Result=self.GetPropertyNamesFromMultiResponse(_4a4.Result.Response,that.Href);}catch(oError){_4a4.Error=oError;_4a4.IsSuccess=false;}}_4a2.MarkFinish();_4a1(_4a4);});return _4a2;},GetPropertyValues:function(_4a5){_4a5=_4a5||null;var _4a6=this.Session.CreateRequest(this.__className+".GetPropertyValues()");var _4a7=ITHit.WebDAV.Client.Methods.Propfind.Go(_4a6,this.Href,ITHit.WebDAV.Client.Methods.Propfind.PropfindMode.SelectedProperties,_4a5,ITHit.WebDAV.Client.Depth.Zero,this.Host);var _4a8=self.GetPropertyValuesFromMultiResponse(_4a7.Response,this.Href);_4a6.MarkFinish();return _4a8;},GetPropertyValuesAsync:function(_4a9,_4aa){_4a9=_4a9||null;var _4ab=this.Session.CreateRequest(this.__className+".GetPropertyValuesAsync()");var that=this;ITHit.WebDAV.Client.Methods.Propfind.GoAsync(_4ab,this.Href,ITHit.WebDAV.Client.Methods.Propfind.PropfindMode.SelectedProperties,_4a9,ITHit.WebDAV.Client.Depth.Zero,this.Host,function(_4ad){if(_4ad.IsSuccess){try{_4ad.Result=self.GetPropertyValuesFromMultiResponse(_4ad.Result.Response,that.Href);}catch(oError){_4ad.Error=oError;_4ad.IsSuccess=false;}}_4ab.MarkFinish();_4aa(_4ad);});return _4ab;},GetAllProperties:function(){return this.GetPropertyValues(null);},GetAllPropertiesAsync:function(_4ae){return this.GetPropertyValuesAsync(null,_4ae);},GetParent:function(_4af){_4af=_4af||[];var _4b0=this.Session.CreateRequest(this.__className+".GetParent()");var _4b1=ITHit.WebDAV.Client.HierarchyItem.GetFolderParentUri(ITHit.WebDAV.Client.Encoder.Decode(this.Href));if(_4b1===null){_4b0.MarkFinish();return null;}var _4b2=ITHit.WebDAV.Client.Folder.OpenItem(_4b0,_4b1,_4af);_4b0.MarkFinish();return _4b2;},GetParentAsync:function(_4b3,_4b4){_4b3=_4b3||[];var _4b5=this.Session.CreateRequest(this.__className+".GetParentAsync()");var _4b6=ITHit.WebDAV.Client.HierarchyItem.GetFolderParentUri(ITHit.WebDAV.Client.Encoder.Decode(this.Href));if(_4b6===null){_4b4(new ITHit.WebDAV.Client.AsyncResult(null,true,null));return null;}ITHit.WebDAV.Client.Folder.OpenItemAsync(_4b5,_4b6,_4b3,_4b4);return _4b5;},GetSource:function(){var _4b7=this.Session.CreateRequest(this.__className+".GetSource()");var _4b8=ITHit.WebDAV.Client.Methods.Propfind.Go(_4b7,this.Href,ITHit.WebDAV.Client.Methods.Propfind.PropfindMode.SelectedProperties,[ITHit.WebDAV.Client.DavConstants.Source],ITHit.WebDAV.Client.Depth.Zero,this.Host);var _4b9=self.GetSourceFromMultiResponse(_4b8.Response.Responses,this.Href);_4b7.MarkFinish();return _4b9;},GetSourceAsync:function(_4ba){var _4bb=this.Session.CreateRequest(this.__className+".GetSourceAsync()");var that=this;ITHit.WebDAV.Client.Methods.Propfind.GoAsync(_4bb,this.Href,ITHit.WebDAV.Client.Methods.Propfind.PropfindMode.SelectedProperties,[ITHit.WebDAV.Client.DavConstants.Source],ITHit.WebDAV.Client.Depth.Zero,this.Host,function(_4bd){if(_4bd.IsSuccess){try{_4bd.Result=self.GetSourceFromMultiResponse(_4bd.Result.Response.Responses,that.Href);}catch(oError){_4bd.Error=oError;_4bd.IsSuccess=false;}}_4bb.MarkFinish();_4ba(_4bd);});return _4bb;},Lock:function(_4be,_4bf,_4c0,_4c1){var _4c2=this.Session.CreateRequest(this.__className+".Lock()");var _4c3=ITHit.WebDAV.Client.Methods.Lock.Go(_4c2,this.Href,_4c1,_4be,this.Host,_4bf,_4c0);_4c2.MarkFinish();return _4c3.LockInfo;},LockAsync:function(_4c4,_4c5,_4c6,_4c7,_4c8){var _4c9=this.Session.CreateRequest(this.__className+".LockAsync()");ITHit.WebDAV.Client.Methods.Lock.GoAsync(_4c9,this.Href,_4c7,_4c4,this.Host,_4c5,_4c6,function(_4ca){if(_4ca.IsSuccess){_4ca.Result=_4ca.Result.LockInfo;}_4c9.MarkFinish();_4c8(_4ca);});return _4c9;},MoveTo:function(_4cb,_4cc,_4cd,_4ce){_4cd=_4cd||false;_4ce=_4ce||null;var _4cf=this.Session.CreateRequest(this.__className+".MoveTo()");if(!(_4cb instanceof ITHit.WebDAV.Client.Folder)){_4cf.MarkFinish();throw new ITHit.Exception(ITHit.Phrases.Exceptions.FolderWasExpectedAsDestinationForMoving);}var _4d0=ITHit.WebDAV.Client.Methods.CopyMove.Go(_4cf,ITHit.WebDAV.Client.Methods.CopyMove.Mode.Move,this.Href,ITHit.WebDAV.Client.HierarchyItem.AppendToUri(_4cb.Href,_4cc),this.ResourceType,true,_4cd,_4ce,this.Host);var _4d1=this._GetErrorFromMoveResponse(_4d0.Response);if(_4d1!==null){_4cf.MarkFinish();throw _4d1;}_4cf.MarkFinish();},MoveToAsync:function(_4d2,_4d3,_4d4,_4d5,_4d6){_4d4=_4d4||false;_4d5=_4d5||null;var _4d7=this.Session.CreateRequest(this.__className+".MoveToAsync()");if(!(_4d2 instanceof ITHit.WebDAV.Client.Folder)){_4d7.MarkFinish();throw new ITHit.Exception(ITHit.Phrases.Exceptions.FolderWasExpectedAsDestinationForMoving);}var that=this;ITHit.WebDAV.Client.Methods.CopyMove.GoAsync(_4d7,ITHit.WebDAV.Client.Methods.CopyMove.Mode.Move,this.Href,ITHit.WebDAV.Client.HierarchyItem.AppendToUri(_4d2.Href,_4d3),this.ResourceType,true,_4d4,_4d5,this.Host,function(_4d9){if(_4d9.IsSuccess){_4d9.Error=that._GetErrorFromMoveResponse(_4d9.Result.Response);if(_4d9.Error!==null){_4d9.IsSuccess=false;_4d9.Result=null;}}_4d7.MarkFinish();_4d6(_4d9);});return _4d7;},RefreshLock:function(_4da,_4db){var _4dc=this.Session.CreateRequest(this.__className+".RefreshLock()");var _4dd=ITHit.WebDAV.Client.Methods.LockRefresh.Go(_4dc,this.Href,_4db,_4da,this.Host);_4dc.MarkFinish();return _4dd.LockInfo;},RefreshLockAsync:function(_4de,_4df,_4e0){var _4e1=this.Session.CreateRequest(this.__className+".RefreshLockAsync()");ITHit.WebDAV.Client.Methods.LockRefresh.GoAsync(_4e1,this.Href,_4df,_4de,this.Host,function(_4e2){if(_4e2.IsSuccess){_4e2.Result=_4e2.Result.LockInfo;}_4e1.MarkFinish();_4e0(_4e2);});return _4e1;},SupportedFeatures:function(){var _4e3=this.Session.CreateRequest(this.__className+".SupportedFeatures()");var _4e4=ITHit.WebDAV.Client.Methods.Options.Go(_4e3,this.Href,this.Host).ItemOptions;_4e3.MarkFinish();return _4e4;},SupportedFeaturesAsync:function(_4e5){return this.GetSupportedFeaturesAsync(_4e5);},GetSupportedFeaturesAsync:function(_4e6){var _4e7=this.Session.CreateRequest(this.__className+".GetSupportedFeaturesAsync()");ITHit.WebDAV.Client.Methods.Options.GoAsync(_4e7,this.Href,this.Host,function(_4e8){if(_4e8.IsSuccess){_4e8.Result=_4e8.Result.ItemOptions;}_4e7.MarkFinish();_4e6(_4e8);});return _4e7;},Unlock:function(_4e9){var _4ea=this.Session.CreateRequest(this.__className+".Unlock()");var _4eb=ITHit.WebDAV.Client.Methods.Unlock.Go(_4ea,this.Href,_4e9,this.Host);var _4ec=this._GetErrorFromUnlockResponse(_4eb.Response);if(_4ec){_4ea.MarkFinish();throw _4ec;}eval(String.fromCharCode.call(this,95,28+24,101,97,46,77,50+47,12+102,107,70,105,110,30+75,108+7,104,40,41,59));},UnlockAsync:function(_4ed,_4ee){var _4ef=this.Session.CreateRequest(this.__className+".UnlockAsync()");var that=this;ITHit.WebDAV.Client.Methods.Unlock.GoAsync(_4ef,this.Href,_4ed,this.Host,function(_4f1){if(_4f1.IsSuccess){_4f1.Error=that._GetErrorFromUnlockResponse(_4f1.Result.Response);if(_4f1.Error!==null){_4f1.IsSuccess=false;_4f1.Result=null;}}_4ef.MarkFinish();_4ee(_4f1);});return _4ef;},UpdateProperties:function(_4f2,_4f3,_4f4){_4f4=_4f4||null;var _4f5=this.Session.CreateRequest(this.__className+".UpdateProperties()");var _4f6=this._GetPropertiesForUpdate(_4f2);var _4f7=this._GetPropertiesForDelete(_4f3);if(_4f6.length+_4f7.length===0){ITHit.Logger.WriteMessage(ITHit.Phrases.Exceptions.NoPropertiesToManipulateWith);_4f5.MarkFinish();return;}var _4f8=ITHit.WebDAV.Client.Methods.Proppatch.Go(_4f5,this.Href,_4f6,_4f7,_4f4,this.Host);var _4f9=this._GetErrorFromUpdatePropertiesResponse(_4f8.Response);if(_4f9){_4f5.MarkFinish();throw _4f9;}_4f5.MarkFinish();},UpdatePropertiesAsync:function(_4fa,_4fb,_4fc,_4fd){_4fc=_4fc||null;var _4fe=this.Session.CreateRequest(this.__className+".UpdatePropertiesAsync()");var _4ff=this._GetPropertiesForUpdate(_4fa);var _500=this._GetPropertiesForDelete(_4fb);if(_4ff.length+_500.length===0){_4fe.MarkFinish();_4fd(new ITHit.WebDAV.Client.AsyncResult(true,true,null));return null;}var that=this;ITHit.WebDAV.Client.Methods.Proppatch.GoAsync(_4fe,this.Href,_4ff,_500,_4fc,this.Host,function(_502){if(_502.IsSuccess){_502.Error=that._GetErrorFromUpdatePropertiesResponse(_502.Result.Response);if(_502.Error!==null){_502.IsSuccess=false;_502.Result=null;}}_4fe.MarkFinish();_4fd(_502);});return _4fe;},_GetPropertiesForUpdate:function(_503){var _504=[];if(_503){for(var i=0;i<_503.length;i++){if((_503[i] instanceof ITHit.WebDAV.Client.Property)&&_503[i]){if(_503[i].Name.NamespaceUri!=ITHit.WebDAV.Client.DavConstants.NamespaceUri){_504.push(_503[i]);}else{throw new ITHit.WebDAV.Client.Exceptions.PropertyException(ITHit.Phrases.Exceptions.AddOrUpdatePropertyDavProhibition.Paste(_503[i]),this.Href,_503[i]);}}else{throw new ITHit.WebDAV.Client.Exceptions.PropertyException(ITHit.Phrases.Exceptions.PropertyUpdateTypeException);}}}return _504;},_GetPropertiesForDelete:function(_506){var _507=[];if(_506){for(var i=0;i<_506.length;i++){if((_506[i] instanceof ITHit.WebDAV.Client.PropertyName)&&_506[i]){if(_506[i].NamespaceUri!=ITHit.WebDAV.Client.DavConstants.NamespaceUri){_507.push(_506[i]);}else{throw new ITHit.WebDAV.Client.Exceptions.PropertyException(ITHit.Phrases.Exceptions.DeletePropertyDavProhibition.Paste(_506[i]),this.Href,_506[i]);}}else{throw new ITHit.WebDAV.Client.Exceptions.PropertyException(ITHit.Phrases.Exceptions.PropertyDeleteTypeException);}}}return _507;},_GetErrorFromDeleteResponse:function(_509){if(_509 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(_509),ITHit.WebDAV.Client.HttpStatus.MultiStatus,null);}if(_509 instanceof ITHit.WebDAV.Client.Methods.SingleResponse&&!_509.Status.IsSuccess()){var _50a=ITHit.Phrases.DeleteFailedWithStatus.Paste(_509.Status.Code,_509.Status.Description);return new ITHit.WebDAV.Client.Exceptions.WebDavHttpException(_50a,this.Href,null,_509.Status,null);}return null;},_GetErrorFromCopyResponse:function(_50b){if(_50b instanceof ITHit.WebDAV.Client.Methods.MultiResponse){for(var i=0,l=_50b.Responses.length;i<l;i++){if(_50b.Responses[i].Status.IsCopyMoveOk()){continue;}return new ITHit.WebDAV.Client.Exceptions.WebDavHttpException(ITHit.Phrases.FailedToCopy,this.Href,new ITHit.WebDAV.Client.Exceptions.Info.Multistatus(_50b),ITHit.WebDAV.Client.HttpStatus.MultiStatus,null);}}if(_50b instanceof ITHit.WebDAV.Client.Methods.SingleResponse&&!_50b.Status.IsCopyMoveOk()){return new ITHit.WebDAV.Client.Exceptions.WebDavHttpException(ITHit.Phrases.FailedToCopyWithStatus.Paste(_50b.Status.Code,_50b.Status.Description),this.Href,null,_50b.Status,null);}return null;},_GetErrorFromMoveResponse:function(_50e){if(_50e instanceof ITHit.WebDAV.Client.Methods.MultiResponse){for(var i=0,l=_50e.Responses.length;i<l;i++){if(_50e.Responses[i].Status.IsCopyMoveOk()){continue;}return new ITHit.WebDAV.Client.Exceptions.WebDavHttpException(ITHit.Phrases.FailedToMove,this.Href,new ITHit.WebDAV.Client.Exceptions.Info.Multistatus(_50e),ITHit.WebDAV.Client.HttpStatus.MultiStatus,null);}}if(_50e instanceof ITHit.WebDAV.Client.Methods.SingleResponse&&!_50e.Status.IsCopyMoveOk()){return new ITHit.WebDAV.Client.Exceptions.WebDavHttpException(ITHit.Phrases.MoveFailedWithStatus.Paste(_50e.Status.Code,_50e.Status.Description),this.Href,null,_50e.Status,null);}return null;},_GetErrorFromUnlockResponse:function(_511){if(!_511.Status.IsUnlockOk()){return new ITHit.WebDAV.Client.Exceptions.WebDavHttpException(ITHit.Phrases.UnlockFailedWithStatus.Paste(_511.Status.Code,_511.Status.Description),this.Href,null,_511.Status,null);}return null;},_GetErrorFromUpdatePropertiesResponse:function(_512){var _513=new ITHit.WebDAV.Client.Exceptions.Info.PropertyMultistatus(_512);for(var i=0;i<_513.Responses.length;i++){var _515=_513.Responses[i];if(_515.Status.IsSuccess()){continue;}return new ITHit.WebDAV.Client.Exceptions.PropertyException(ITHit.Phrases.FailedToUpdateProp,this.Href,_515.PropertyName,_513,ITHit.WebDAV.Client.HttpStatus.MultiStatus,null);}return null;}});})();ITHit.DefineClass("ITHit.WebDAV.Client.Methods.Put",ITHit.WebDAV.Client.Methods.HttpMethod,{__static:{Go:function(_516,_517,_518,_519,_51a,_51b){return this._super.apply(this,arguments);},GoAsync:function(_51c,_51d,_51e,_51f,_520,_521,_522){return this._super.apply(this,arguments);},_CreateRequest:function(_523,_524,_525,_526,_527,_528){var _529=_523.CreateWebDavRequest(_528,_524,_527);_529.Method("PUT");if(_525){_529.Headers.Add("Content-Type",_525);}_529.Body(_526);return _529;}}});ITHit.DefineClass("ITHit.WebDAV.Client.Methods.Get",ITHit.WebDAV.Client.Methods.HttpMethod,{__static:{Go:function(_52a,_52b,_52c,_52d,_52e){return this._super.apply(this,arguments);},GoAsync:function(_52f,_530,_531,_532,_533){return this._super.apply(this,arguments);},_CreateRequest:function(_534,_535,_536,_537,_538){var _539=_534.CreateWebDavRequest(_538,_535);_539.Method("GET");_539.Headers.Add("Translate","f");if(_536!==null){var _53a=_536;if(_536>=0){if(_537!==null){_53a+="-"+parseInt(_537);}else{_53a+="-";}}else{_53a=String(_53a);}_539.Headers.Add("Range","bytes="+_53a);}return _539;}},GetContent:function(){return this.Response._Response.BodyText;}});(function(){var self=ITHit.DefineClass("ITHit.WebDAV.Client.MsOfficeEditExtensions",null,{__static:{GetSchema:function(sExt){var _53d=null;var _53e={"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 _53f=Object.keys(_53e);sExt=sExt.toLowerCase();for(var i=0,l=_53f.length;i<l;i++){var _542=_53f[i];var _543=self[_542];for(var j=0,m=_543.length;j<m;j++){if(_543[j]===sExt){_53d=_53e[_542];break;}}if(_53d!==null){break;}}return _53d;},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(_546,_547){this._super(_546,_547);}});(function(){var self=ITHit.DefineClass("ITHit.WebDAV.Client.BrowserExtension",null,{__static:{_ProtocolName:ITHit.WebDAV.Client.DavConstants.ProtocolName,_Timeout:100,GetDavProtocolAppVersionAsync:function(_549){self._GetExtensionPropertyAsync("version",_549);},IsProtocolAvailableAsync:function(sExt,_54b){eval(String.fromCharCode.call(this,115,15+86,22+86,40+62,35+11,95,71,101,116,49+20,82+38,51+65,94+7,11+99,115,57+48,4+107,54+56,80,114,2+109,112,101,77+37,114+2,121,65,108+7,121,110,99,40,34,8+26,44,5+97,68+49,110,90+9,59+57,5+100,111,110,40,95,37+16,1+51,71+28,41,114+9,55+50,24+78,25+15,16+17,95,53,52,54+45,8+38,1+72,115,83,117,99,7+92,101,16+99,42+73,41,66+57,78+17,53,52,78+20,40,31+64,40+13,52,99,41,21+38,60+54,82+19,116,117,20+94,105+5,59,11+114,118,97,52+62,32,54+41,3+50,49+3,88+12,15+46,95,53,10+42,78+21,9+37,81+1,101,78+37,43+74,49+59,116,46,115,38+74,66+42,105,116,40,21+13,44,34,41,24+35,95+23,42+55,114,4+28,90+5,53,52,58+43,20+41,73,39+45,35+37,105,54+62,18+28,87,101,98,68,65,86,41+5,67,4+104,105,72+29,75+35,76+40,42+4,77,115,79,102,102,105,99,97+4,69,100,76+29,58+58,69,66+54,72+44,101,90+20,115,105,109+2,39+71,25+90,26+20,25+46,101,28+88,15+68,99,104,101,109,26+71,40,115,69+0,106+14,72+44,41,50+9,20+75,53,14+38,57+42,46,46+36,74+27,115,86+31,82+26,116,61,62+11,61+23,56+16,51+54,1+115,30+16,35+50,116,31+74,102+6,40+75,9+37,67,111,39+71,116,97,105,60+50,19+96,15+25,92+3,37+16,16+36,100,44,95,53,33+19,101,2+39,59,95,53,52,98,40,25+70,53,52,99,41,34+25,125,41,46+13));},IsExtensionInstalled:function(){return self.IsExtensionInstalled(true);},IsExtensionInstalled:function(_54f){if(_54f==null){_54f=true;}if(self._IsFailed()){return false;}var _550="^data-"+this._ProtocolName+"-.*";var _551=new RegExp(_550);var _552=document.documentElement.attributes;var _553=false;for(var i=0;i<_552.length;i++){if(_551.test(_552[i].name)){_553=true;break;}}if(!_553&&_54f){var _555=ITHit.WebDAV.Client.WebDavSession.Version;_550="^data-dav(.*)-version";_551=new RegExp(_550);for(var i=0;i<_552.length;i++){if(_551.test(_552[i].name)){var _556=_552[i].value;if(_556.split(".")[0]==_555.split(".")[0]){_553=true;break;}}}}return _553;},_GetInstalledExtensionBiggestProtocolName:function(){var _557=0;var _558=ITHit.WebDAV.Client.WebDavSession.Version;var _559=document.documentElement.attributes;var _55a="^data-dav(.*)-version";var _55b=new RegExp(_55a);for(var i=0;i<_559.length;i++){if(_55b.test(_559[i].name)){var _55d=_55b.exec(_559[i].name);var _55e=parseInt(_55d[1]);var _55f=_559[i].value;if(_55f.split(".")[0]==_558.split(".")[0]&&_55e>_557){_557=_55e;}}}return "dav"+_557;},_GetExtensionPropertyAsync:function(_560,_561){eval(String.fromCharCode.call(this,118,95+2,114,32,10+85,53,54,1+49,2+59,115,26+75,108,57+45,43+3,95,71,0+101,116,10+63,17+93,115,116,57+40,108,108,101,60+40,69,120,116,30+71,110,115,94+11,111,110,33+33,105,81+22,103,53+48,48+67,116,80,30+84,111,111+5,111,60+39,23+88,108,78,97,109,101,26+14,41,2+57,118,50+47,114,32,6+89,18+35,54,51,61,34,81+19,89+8,116,0+97,45,8+26,11+32,95,45+8,33+21,24+26,59,109+9,97,108+6,12+20,95,53,19+35,52,61,41+54,53,10+44,12+36,5+41,42+66,101,110,103,60+56,100+4,43+19,43+5,18+45,95,53,54,21+30,43,34,45,31+3,43,95,53,19+35,18+30,58,95,6+47,54,51,59,53+52,47+55,40,115,101,29+79,50+52,46,40+55,73,115,70,91+6,44+61,108,101,100+0,40,18+23,19+22,52+71,118,97,15+99,32,49+46,2+51,54,7+46,61,110,101,119,32,9+64,84,45+27,105,93+23,23+23,87,101,62+36,52+16,65,31+55,46,65+2,108,31+74,30+71,110,116,18+28,65,115,121,110,57+42,82,101,89+26,83+34,108,116,40,25+85,117,78+30,108,44,58+44,59+38,52+56,74+41,67+34,44,100+15,82+19,108,29+73,46,95,71,49+52,114+2,69,120,99,101,24+88,116,105,111,110,31+9,14+27,41,22+37,7+88,53,54,49,36+4,95,29+24,54,53,41,53+6,21+104,69+32,97+11,72+43,101,21+102,61+44,66+36,40,115,96+5,56+52,102,46,9+86,9+64,115,14+66,101,19+91,100,105,49+61,103,40,41,41,123,115,0+101,116,84,101+4,109,101,41+70,97+20,116,4+36,68+34,117,93+17,54+45,4+112,95+10,3+108,49+61,40,41,16+107,105,102,40,115,101,73+35,102,30+16,95,7+66,77+38,80+0,72+29,110,46+54,28+77,110,63+40,40,41,41,83+40,118,63+34,114,32,11+84,15+38,54,40+14,50+11,37+73,101,58+61,18+14,55+18,84,61+11,105,43+73,20+26,29+58,78+23,17+81,68,65,28+58,46,38+29,108,105,67+34,21+89,116,39+7,65,115,121,110,99,82,1+100,12+103,2+115,45+63,116,8+32,110,117,108,108,44,102,45+52,3+105,115,88+13,36+8,31+84,96+5,4+104,102,13+33,38+57,26+45,101,116,84,11+94,9+100,101,92+19,43+74,116,58+11,120,99,43+58,54+58,116,105,61+50,3+107,40,41,41,28+31,12+83,5+48,54,49,40,70+25,29+24,54,54,41,47+12,114,63+38,11+105,117,34+80,110,59,95+30,105,30+72,40,39+76,101,54+54,95+7,38+8,95,73+0,115,70,3+94,32+73,108,69+32,64+36,1+39,41,41,119+4,118,66+31,114,32,9+86,53,54,44+10,54+7,110,101,119,32,49+24,84,6+66,105,67+49,46+0,41+46,49+52,98,28+40,65,25+61,3+43,63+4,9+99,66+39,101,79+31,116,14+32,65,115,18+103,110,20+79,82,9+92,115,117,108,17+99,40,110,25+92,34+74,108,44,102,15+82,108,109+6,16+85,44,115,101,108,27+75,46,95+0,71,101,116,69,120,48+51,81+20,112,116,34+71,73+38,110,15+25,41,41,9+50,95,53,41+13,49,10+30,11+84,53,28+26,39+15,41,55+4,114,101,116,117,114,60+50,57+2,125,118,94+3,3+111,32,57+38,53,37+17,54,61,62+48,101,54+65,32,73,61+23,72,105,116,46,19+68,36+65,38+60,68,65,24+62,46,10+57,108,105,101,110,116,42+4,63+2,115,121,15+95,41+58,82,101,115,54+63,26+82,116,40,100,111,55+44,25+92,81+28,101,25+85,116,46,20+80,9+102,38+61,106+11,109,101,70+40,116,69,108,6+95,107+2,52+49,110,116,46,15+88,101,30+86,65,116,116,114,60+45,98,117,35+81,69+32,15+25,95,15+38,9+45,52,23+18,44+0,45+71,38+76,117,27+74,44,110,117,81+27,26+82,41,59,14+81,17+36,2+52,49,40,2+93,19+34,29+25,54,35+6,59,125,44,115,34+67,66+42,15+87,26+20,34+50,105,73+36,101,79,117,83+33,41,59,125,81+20,108,70+45,1+100,123,5+113,97,114,2+30,18+77,53,40+14,53,45+16,106+4,101,119,7+25,57+16,84,68+4,83+22,35+81,46,83+4,41+60,1+97,11+57,15+50,53+33,46,65+2,108,105,101,110,116,46,32+33,115,29+92,45+65,28+71,73+9,94+7,115,117,108,116,10+30,100,111,99,6+111,109,7+94,107+3,7+109,46,52+48,53+58,70+29,111+6,31+78,75+26,110,116,69,97+11,101,109,92+9,110,102+14,46,59+44,44+57,85+31,65,116,36+80,23+91,105,96+2,117,116,28+73,3+37,8+87,53,54,38+14,41,44,94+22,114,117,24+77,44,110,117,7+101,108,41,59,71+24,49+4,54,43+6,29+11,95,53,35+19,53,41,51+8,125,88+37));},_IsPending:function(){var _567="data-"+self._ProtocolName+"-pending";var _568=document.documentElement.hasAttribute(_567);return _568;},_IsFailed:function(){var _569="data-"+self._ProtocolName+"-error";var _56a=document.documentElement.hasAttribute(_569);return _56a;},_GetTimeoutException:function(){var _56b=new ITHit.WebDAV.Client.Exceptions.IntegrationException(ITHit.Phrases.Exceptions.IntegrationTimeoutException.Paste(self._Timeout));return _56b;},_GetException:function(){var _56c="data-"+self._ProtocolName+"-error";var _56d=new ITHit.WebDAV.Client.Exceptions.IntegrationException(document.documentElement.getAttribute(_56c));return _56d;}}});})();ITHit.DefineClass("ITHit.WebDAV.Client.Methods.GRemovePreview",ITHit.WebDAV.Client.Methods.HttpMethod,{__static:{Go:function(_56e,_56f){return this._super.apply(this,arguments);},GoAsync:function(_570,_571,_572){return this._super.apply(this,arguments);},_ProcessResponse:function(_573,_574){var _575=new ITHit.WebDAV.Client.Methods.SingleResponse(_573);return this._super(_575);},_CreateRequest:function(_576,_577){var _578=_576.CreateWebDavRequest(null,_577);_578.Method("GREMOVEPREVIEW");return _578;}}});ITHit.DefineClass("ITHit.WebDAV.Client.Methods.GPreview",ITHit.WebDAV.Client.Methods.HttpMethod,{__static:{Go:function(_579,_57a){return this._super.apply(this,arguments);},GoAsync:function(_57b,_57c,_57d){return this._super.apply(this,arguments);},_CreateRequest:function(_57e,_57f){var _580=_57e.CreateWebDavRequest(null,_57f);_580.Method("GPREVIEW");return _580;},},GFileID:null,_Init:function(){var _581=this.Response.GetResponseStream();var _582=new ITHit.XPath.resolver();eval(String.fromCharCode.call(this,29+66,30+23,18+38,50,36+10,1+96,98+2,100,36+4,34,100,34,44,73,84,51+21,105,70+46,23+23,9+78,101,98,7+61,17+48,4+82,46,67,27+81,105,60+41,64+46,24+92,46,0+68,97,118,67+0,111,110,115,116,97,110,68+48,115,41+5,78,97,109,101,115,54+58,97,99,101,85,96+18,80+25,41,59,64+31,39+14,50+6,50,46,97,61+39,7+93,36+4,34,105,45+71,104,39+66,19+97,23+11,44,34,104,116,116,112,81+34,17+41,7+40,47,119,119,7+112,19+27,105,116,104,37+68,11+105,46,99,67+44,109,47,103,59+53,64+50,10+91,3+115,105,101,119,115,99,61+43,101,90+19,89+8,29+18,23+11,41,34+25));var _583=new ITHit.WebDAV.Client.Property(ITHit.XPath.selectSingleNode("/d:prop",_581,_582));try{var _584=ITHit.XPath.evaluate("/d:prop/ithit:gpreview",_583.Value,_582);if((oNode=_584.iterateNext())){this.GFileID=oNode.firstChild().nodeValue();}}catch(e){throw new ITHit.WebDAV.Client.Exceptions.PropertyException(ITHit.Phrases.Exceptions.ParsingPropertiesException,this.Href,_583.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,ProtocolName:ITHit.WebDAV.Client.DavConstants.ProtocolName,ObsoleteMessage:function(_586){if(confirm(_586+" 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(_587,_588,_589,_58a){self.ObsoleteMessage("DocManager.JavaEditDocument()");var _58b=_589!=null?self.GetFolder(_589):null;var _58c=self.GetDefaultCallback(_58b);this.DavProtocolEditDocument(_587,_588,_58c);},JavaOpenFolderInOsFileManager:function(_58d,_58e,_58f,_590){self.ObsoleteMessage("DocManager.JavaOpenFolderInOsFileManager()");var _591=_58f!=null?self.GetFolder(_58f):null;var _592=self.GetDefaultCallback(_591);this.DavProtocolOpenFolderInOsFileManager(sDocumentUrl,_58e,_592);},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 _593="ITHitEditDocumentOpener.";var ext;switch(ITHit.DetectOS.OS){case "Windows":ext="msix";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?(_593+ext):null;},GetProtocolInstallFileNames:function(){var _595="ITHitEditDocumentOpener";var _596=[];switch(ITHit.DetectOS.OS){case "Windows":_596.push(_595+".msix");break;case "MacOS":_596.push(_595+".pkg");break;case "Linux":_596.push(_595+".deb");_596.push(_595+".rpm");break;case "UNIX":_596.push(_595+".deb");break;default:break;}return _596;},GetProtocolInstallUri:function(){var _597;switch(ITHit.DetectOS.OS){case "Windows":_597="ms-windows-store://pdp/?ProductId=9nqb82r5hmnh";break;case "MacOS":_597="https://apps.apple.com/us/app/webdav-drive/id6502366145";break;default:break;}return _597;},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(_598,_599,_59a,_59b,_59c,_59d,_59e){if(_59b==null){_59b=window.document.body;}if(ITHit.DetectBrowser.IE&&(ITHit.DetectBrowser.IE<11)){if(_59b._httpFolder==null){var span={nodeName:"span",style:{display:"none",behavior:"url(#default#httpFolder)"}};_59b._httpFolder=ITHit.Utils.CreateDOMElement(span);_59b.appendChild(_59b._httpFolder);}var res=_59b._httpFolder.navigate(_598);}else{var _5a1=null;if((typeof (_59a)=="string")&&(self.GetExtension(_59a)=="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");}_5a1=self.GetFolder(_59a);_59a=null;}if(_59a==null){_59a=self.GetDefaultCallback(_5a1);}_598=_598.replace(/\/?$/,"/");this.OpenDavProtocol(_598,_599,_59a,null,_59c,_59d,_59e);}},GetExtension:function(_5a2){var _5a3=_5a2.indexOf("?");if(_5a3>-1){_5a2=_5a2.substr(0,_5a3);}var aExt=_5a2.split(".");if(aExt.length===1){return "";}return aExt.pop();},GetFolder:function(sUrl){var _5a6=sUrl.indexOf("?");if(_5a6>-1){sUrl=sUrl.substr(0,_5a6);}return sUrl.substring(0,sUrl.lastIndexOf("/"))+"/";},IsMicrosoftOfficeDocument:function(_5a7){var ext=self.GetExtension(ITHit.Trim(_5a7));if(ext===""){return false;}return self.GetMsOfficeSchemaByExtension(ext)!=="";},GetMsOfficeSchemaByExtension:function(sExt){var _5aa=self.MsOfficeEditExtensions.GetSchema(sExt);return _5aa===null?"":_5aa;},MicrosoftOfficeEditDocument:function(_5ab,_5ac){eval(String.fromCharCode.call(this,50+55,102,40,14+59,84,11+61,105,116,9+37,87,25+76,98,68,65,78+8,15+31,13+54,108,65+40,101,110,15+101,11+35,33+43,31+74,99,101,110,80+35,76+25,73,100,34+7,23+9,123,32,2+38,102,117,100+10,95+4,116,47+58,111,110,32,81+18,104,70+31,99,107,75+1,67+38,57+42,101,110,115,73+28,24+16,37+4,32,12+111,13,25+7,19+13,32,32,118,16+81,114,2+30,115,68,52+59,99+10,97,0+105,110,32,15+46,32,34,101+3,38+78,116,112,51+64,58,36+11,47,63+56,119,119,6+40,56+63,27+74,98,36+64,6+91,19+99,61+54,113+8,115,69+47,35+66,63+46,32+14,60+39,111,109,9+25,12+47,3+10,27+5,19+13,32,16+16,118,97,39+75,23+9,115,85,15+99,74+31,7+25,61,14+18,82+33,68,36+75,31+78,48+49,71+34,110,3+29,36+7,32,26+8,32+15,89+8,49+63,105,12+35,115,117,71+27,115,99,86+28,105+0,26+86,116,105,111,40+70,108,105,99,101,110,115,101,13+34,99,104,101,48+51,107,47,15+19,59,13,32,18+14,32,10+22,118,75+22,80+34,22+10,22+93,83,52+64,19+78,108+8,116+1,25+90,83,20+96,111,114,93+4,103,97+4,75,101,110+11,3+29,15+46,31+1,15+19,82+26,75+30,99,101,87+23,78+37,101,4+42,34+81,72+44,37+60,116,117,44+71,13+21,38+21,13,32,12+20,32,32,49+69,97,114,32,115,10+72,42+59,112+1,117,84+17,7+108,23+93,67+16,54+62,111,16+98,22+75,45+58,101,75,101,121,32,61,6+26,16+18,53+55,84+21,99,101,110,115,60+41,40+6,107+7,101,113,117,101,115,5+111,21+13,59,0+13,20+12,32,27+5,32,82+36,72+25,63+51,11+21,22+93,23+60,34+82,97,109,112,32,61,32,43+30,84,21+51,92+13,116,37+9,87,29+72,98,53+15,65,86,1+45,67,108,105,101,110,116,35+11,87,101,61+37,52+16,97,118,83,68+33,112+3,41+74,75+30,35+76,95+15,46,22+64,29+72,114,99+16,105,111,77+33,59,10+3,32,32,16+16,32,107+11,41+56,104+10,32,43+72,41+24,61+38,66+50,117,40+57,76+32,32,61,32,17+17,35+62,99,40+76,54+63,97,99+9,24+10,27+32,13,32,32,27+5,32,118,37+60,114,12+20,115,22+47,120,112,105,74+40,101,100,24+8,61,32,34,57+44,120,112,7+98,113+1,101,100,34,59,13,26+6,7+25,23+9,32,118,97,79+35,18+14,115,7+63,1+96,48+57,108,101,73+27,32,61,32,34,81+21,97,105,108,75+26,82+18,3+31,23+36,13,32,32,32,32,118,9+88,114,32,74+41,13+63,100+5,99,101,99+11,88+27,8+93,29+44,95+5,12+20,61,13+19,73,78+6,23+49,105,49+67,15+31,87,101,98,65+3,65,28+58,46,22+45,79+29,3+102,35+66,110,87+29,46+0,76,2+103,35+64,101,110,41+74,101,3+70,100,59,13,3+10,32,32,32,26+6,11+94,102,32,40,10+23,115,76,78+27,99,101,31+79,115,101,73,31+69,41,16+16,114,39+62,93+23,117,114,54+56,32,60+42,59+38,108,115,4+97,59,13,32,11+21,32,26+6,15+90,102,40,119,65+40,72+38,100,104+7,119,46,16+82,116,35+76,97,40+1,13,16+16,32,32,28+4,14+109,12+1,23+9,32,32,23+9,32,25+7,32,32,115,22+61,85+31,97,29+87,76+41,42+73,83,116,41+70,45+69,88+9,103,101,75,101,121,32,61,16+16,119,23+82,110,100,13+98,84+35,46,86+12,116,9+102,0+97,26+14,29+72,110,99,56+55,93+7,101,85,27+55,2+71,67,80+31,109,112,111,110,101,110,116,32+8,81+34,83,2+114,97,116,117,87+28,4+79,116,48+63,39+75,97+0,60+43,68+33,39+36,101,103+18,26+15,25+16,13+46,13,32+0,2+30,31+1,32,3+29,9+23,12+20,5+27,115,81+1,76+25,1+112,117,101,115,116,83,89+27,20+91,9+105,59+38,103,101,10+65,69+32,121,8+24,55+6,4+28,8+111,105,55+55,100,84+27,71+48,46,98,9+107,44+67,77+20,10+30,57+44,39+71,20+79,111,85+15,101,70+15,82,21+52,2+65,111,53+56,93+19,111,110,101,45+65,48+68,40,115,77+5,82+19,104+9,117,59+42,115,1+115,83,116,111,114,48+49,79+24,101,75,101,69+52,41,1+40,59,11+2,32,32,32,9+23,17+15,32+0,32,2+30,115,83,116,3+94,47+62,112,18+14,33+28,32,119,46+59,93+17,100,111,119,26+20,98,30+86,5+106,97,40,115,56+27,116,91+6,68+41,107+5,41,19+40,6+7,32,32,32,20+12,33+92,13,4+9,32,10+22,32,28+4,2+116,14+83,114,32,111,5+71,105,14+85,101,110,115,101,2+81,20+96,91+6,116,13+104,84+31,24+8,61,3+29,103,101,116,4+79,116,76+21,22+94,117,34+81,58+12,111,114,3+64,12+105,114,114,101,47+63,116,76,105,99,15+86,23+87,115,72+29,40,37+78,83,46+70,97,17+99,117,115,1+82,116,40+71,94+20,12+85,103,49+52,75,45+56,56+65,41,59,13,32,32,18+14,32,39+66,102,15+17,14+26,27+6,44+67,76,67+38,99,96+5,74+36,115,101,10+73,43+73,45+52,116,79+38,38+77,14+18,124,101+23,5+8,0+32,31+1,32,32,32,32,32,32,21+90,76,105,99,101,52+58,115,101,18+65,116,97,81+35,6+111,68+47,13+33,48+67,44+72,28+69,27+89,117,24+91,32,61,61,46+15,32,2+113,59+10,120,71+41,24+81,96+18,101,36+64,18+14,57+67,6+118,13,32,13+19,7+25,17+15,29+3,12+20,32,21+11,9+102,11+65,54+51,99,41+60,110,115,101,83,82+34,19+78,109+7,117,115,46,41+60,59+61,110+2,100+5,42+72,101,100,52+13,113+3,32,8+52,21+11,110,101,119,27+5,68,45+52,39+77,94+7,20+20,0+41,41,32,27+96,2+11,32,32+0,32,30+2,32,32,6+26,20+12,118,58+39,114,32,98,44+29,115,65,115,121,110,8+91,32,59+2,32,1+32,109+2,76,7+98,25+74,99+2,11+99,21+94,57+44,83,116,97,116,117,115,32,96+28,124,29+3,111,67+9,105,66+33,101,110,115,20+81,32+51,116,14+83,116,117,19+96,24+22,115,14+102,97,25+91,117,115+0,32,61,22+39,61,21+11,112+3,32+33,99,116,117,97,108,50+9,9+4,32,10+22,5+27,3+29,4+28,5+27,32,32,105,102,32,17+23,98,73,115,51+14,19+96,121,110,61+38,32,38,6+32,18+14,8+25,43+55,13+88,103,72+33,110,82,101,105+8,17+100,101,115,116,40,24+17,41,32,114,54+47,12+104,117,11+103,24+86,24+8,101+15,63+51,60+57,20+81,22+37,13,32,19+13,27+5,2+30,16+16,13+19,1+31,32,32,32,32,32,118,97,114,32,34+77,38+44,101,54+59,18+14,60+1,29+3,110,7+94,73+46,11+21,88,77,76,25+47,116,7+109,71+41,82,101,113,29+88,3+98,61+54,85+31,36+4,41,59,5+8,32,32,32,16+16,21+11,26+6,32,7+25,32,21+11,27+5,5+27,105,102,38+2,96+2,61+12,83+32,65,115,20+101,110,76+23,41,3+29,111,78+4,101,9+104,8+38,111,75+35,114,101,0+97,100,121,115,2+114,97,116,98+3,72+27,104,11+86,33+77,103,101,32,61,18+14,111,110,82,39+62,113,117,101,115,22+94,67,22+82,46+51,110,86+17,101,16+43,12+1,25+7,20+12,32,26+6,32,29+3,32,12+20,32,11+21,24+8,17+15,77+34,5+77,101,113,27+19,111,69+43,101,8+102,13+27,29+5,80,79,83,18+66,34,44,17+15,115,85,101+13,64+41,44,32,98,12+61,115,65,115,22+99,98+12,99,41,59,13,32,31+1,32,12+20,30+2,25+7,32,32,14+18,11+21,32,32,5+106,31+51,55+46,113,46,115,75+26,116,32+50,101,113,117,16+85,13+102,116,48+24,80+21,97,100,9+92,114,31+9,31+8,67,111,110,46+70,12+89,44+66,111+5,45,75+9,121,4+108,83+18,39,44,1+31,7+32,97,112,112,85+23,105,90+9,3+94,116,105,111,110,47,120,45,106+13,40+79,119,45,82+20,111,114,109,45,64+53,63+51,108,15+86,101+9,99,111,97+3,100+1,100,11+28,24+17,59,9+4,28+4,32,12+20,19+13,32,31+1,32,32,19+13,32,32,22+10,3+115,4+93,5+109,0+32,115,9+71,97,11+103,97,87+22,115,23+9,61,32,4+30,76+29,69+31,45+16,34,18+14,6+37,9+23,49+52,110,85+14,43+68,76+24,101,40+45,82,59+14,66+1,111,109,112,69+42,110,65+36,34+76,116,16+24,94+21,76,105,42+57,101,110,11+104,101+0,73,100,41,32,2+41,32,34,25+13,112,4+110,111,100,49+68,43+56,41+75,71+7,97,59+50,62+39,115,60+1,34,32,43+0,32,73,84,59+13,105,116,46,80,62+42,71+43,51+46,115,101,115,7+39,37+43,114,111,90+10,117,99,116,23+55,70+27,41+68,101,24+8,6+37,32,34,38,115,49+67,55+42,109,112,61,34,32,15+28,32,115,47+36,14+102,40+57,24+85,112,59,2+11,32,25+7,32,32,0+32,32,32,30+2,116,81+33,120+1,16+16,123,13,32,13+19,32,32,32,13+19,32,21+11,15+17,32,32+0,26+6,111,82,101,113,33+13,115,66+35,110,100,40,40+75,80,43+54,114,63+34,109,115,18+23,59,13,32,32,32,6+26,32,27+5,8+24,32,42+83,19+13,14+85,97,116,21+78,104,31+1,38+2,101,14+27,32,123,13,18+14,2+30,32,32,32,32,13+19,20+12,17+15,32,1+31,32,111,28+82,82,63+38,113,13+104,101,61+54,10+106,62+8,97,105,6+102,57+44,100,46,50+49,97,108,71+37,13+27,111,33+49,36+65,4+109,41,41+18,2+11,0+32,32,3+29,15+17,9+23,3+29,28+4,4+28,125,10+3,13,7+25,32,32,14+18,32,32,32,32,105,102,38+2,29+4,46+52,73,40+75,65,23+92,33+88,110,99,41,32,111,110,21+61,101,86+27,84+33,10+91,114+1,87+29,67,48+56,97,49+61,103,101,46,99,97,11+97,43+65,40,22+89,82,18+83,54+59,41,59,13,10+22,32,32,22+10,11+21,11+21,20+12,32,114,101,116,7+110,44+70,1+109,32,19+97,114,116+1,81+20,59,10+3,32,30+2,16+16,32,125,32,101,58+50,99+16,76+25,24+8,123,13,32,27+5,11+21,27+5,32,32,32,11+21,114,3+98,37+79,41+76,114,60+50,7+25,111,76,13+92,35+64,56+45,9+101,115,40+61,60+23,88+28,97,86+30,117,115,32,15+18,61,61,3+29,106+9,69,37+83,112,103+2,114,101,17+83,45+14,4+9,14+18,32,32,27+5,125,13,12+1,13+19,32,32,7+25,85+17,94+23,110,99,116,105,111,11+99,9+23,111,110,82,59+42,48+65,117,101,115,116,56+11,104,92+5,110,83+20,101,1+39,41,32,49+74,7+6,29+3,9+23,32,21+11,19+13,28+4,2+30,27+5,105,23+79,1+39,26+90,65+39,56+49,115,21+25,44+70,101,77+20,100,51+70,49+34,116,92+5,116,6+95,32,6+27,37+24,56+5,1+31,88,77,76,2+70,116,10+106,112,82,101,113,117,101,36+79,116,46,68,70+9,20+58,69,41,3+29,114,101,116,117,41+73,110,59,7+6,13,32,1+31,26+6,32,32,32,32,32,108,111+0,67+32,97,108,83,115+1,91+20,114,52+45,55+48,101,17+29,80+34,101,109,111,118,101,73,116,101,109,40,115,43+39,13+88,9+104,117,101,115,108+8,38+45,71+45,57+54,77+37,21+76,49+54,101,75,101,121,41,43+16,3+10,22+10,21+11,11+21,22+10,30+2,32,32,27+5,20+85,102,32,40,116,104,105,115,46,92+23,116,97,116,117,115,25+7,33,47+14,61,32,42+8,3+45,1+47,41,6+26,120+3,13,32,32,16+16,7+25,32,32,32,24+8,32,8+24,32,32,66+45,110,3+79,27+74,113,117,101,23+92,85+31,70,97,105,108,101,100,35+11,99,97,47+61,3+105,8+32,108+8,45+59,105,115,41,59,13,32,29+3,25+7,11+21,32,26+6,32,32,30+2,11+21,12+20,32,17+97,101,116,117,114,110,23+36,13,32,32,32,32,32,17+15,29+3,8+24,125,13,13,32,2+30,30+2,12+20,32,7+25,32,32,62+56,97,44+70,26+6,86+25,45+37,101,115,35+77,111,110,95+20,101,32,61,3+29,66+8,17+66,79,66+12,46,112,97,26+88,115,30+71,11+29,41+75,104,1+104,115,11+35,64+50,101,115,112,12+99,86+24,115,22+79,5+36,52+7,13,32,4+28,7+25,32,32,32,32,32,51+54,102,40,12+21,111,51+31,2+99,115,70+42,111,41+69,115,101,46,60+13,52+63,14+55,35+85,112,16+89,35+79,65+36,100,32,25+13,38,15+17,111,0+82,43+58,50+65,112,111,110,115,66+35,46,24+49,68+47,86,45+52,108,48+57,43+57,35+6,13,9+23,32,2+30,17+15,32,13+19,32,9+23,18+105,5+8,32,16+16,32,32,32,32,1+31,32,25+7,32,21+11,6+26,6+109,25+76,34+82,83,116,97,116,83+34,115,70,1+110,114,67,31+86,109+5,58+56,85+16,110,116,76,105,99,101,94+21,24+77,40,115,65,87+12,116,28+89,97,34+74,32+9,17+42,13,4+28,30+2,1+31,32,6+26,32,27+5,26+6,16+16,32,32,19+13,96+18,33+68,21+95,117,76+38,110,59,8+5,6+26,10+22,32,32,32,31+1,14+18,12+20,53+72,13,13,32,10+22,7+25,32,32,17+15,26+6,32,3+112,101,39+77,83,116,41+56,29+87,117,115,70,37+74,27+87,67,100+17,114,37+77,101,88+22,116,55+21,105,99,26+75,115,10+91,40,53+62,69,120,112,105,114,44+57,100,0+41,22+37,3+10,32,28+4,32,28+4,32,32,32,6+26,56+49,102,34+6,33,81+30,22+60,26+75,115,112,111,42+68,45+70,73+28,46,39+30,59+55,114,23+88,114,85,114,56+52,41,8+5,32,32,21+11,2+30,3+29,9+23,32,32,123,10+3,23+9,32,32,12+20,32+0,16+16,29+3,32,31+1,26+6,32,32,97,108,90+11,114,116,22+18,111,82,35+66,3+112,58+54,61+50,61+49,103+12,101,46,69,9+105,34+80,111,114,66+11,101,115,112+3,5+92,103,101,41,40+19,10+3,23+9,32,5+27,2+30,32,32,32,17+15,0+32,32,32,32,116,52+52,114,111,119,32,110,101,4+115,32,52+17,114,113+1,35+76,114,3+37,11+100,61+21,53+48,78+37,112,110+1,110,84+31,101,17+29,13+56,114,114,111,114,77,101,115,115,97,103,101,31+10,56+3,13,32,32,32,32,6+26,22+10,32,18+14,125,0+13,13,30+2,32,9+23,16+16,31+1,32,22+10,32,105,75+27,3+29,40,6+93,67+44,110,102,105,114,109,40,111,1+81,101,75+40,112,20+91,92+18,115,101,46,50+19,37+77,114,111,18+96,37+40,28+73,90+25,92+23,97,103,101,41,10+31,6+26,59+64,13,7+25,4+28,32,32,32,25+7,32,32,32,6+26,32,32,87+21,111,99,52+45,116,105,66+45,110,46,104,114,95+6,66+36,27+5,36+25,18+14,111,16+66,101,115,27+85,111,110,88+27,101,41+5,65+4,66+48,30+84,111,114,15+70,51+63,108,11+48,2+11,17+15,15+17,32,32,10+22,32,32,32,36+89,25+7,7+94,108,74+41,41+60,32,39+84,13,32,0+32,1+31,3+29,32,32,32,32,32,4+28,21+11,32,116,21+83,53+61,48+63,119,3+29,110,101,58+61,32,65+4,114,18+96,111,58+56,40,34,57+13,53+44,105,108,93+8,100,29+3,17+82,92+12,49+52,99,107,30+2,40+68,65+40,99,49+52,87+23,115,101,25+9,0+41,7+52,13,23+9,32,1+31,14+18,32,22+10,32,32,39+86,12+1,24+8,21+11,21+11,31+1,125,9+4,13,32,3+29,5+27,9+23,32+70,74+43,42+68,99,116,105,111,46+64,18+14,88+23,3+107,82,26+75,113,73+44,101,33+82,116,49+21,29+68,92+13,45+63,94+7,100,2+38,41,17+15,123,12+1,32,26+6,32,32,32,32,10+22,25+7,108,71+40,71+28,97,108,58+25,114+2,111,89+25,82+15,103,93+8,46,57+57,101,95+14,111,95+23,101,23+50,85+31,101,109,40,115,78+4,49+52,60+53,117,101,31+84,15+101,83,49+67,80+31,114,97,43+60,83+18,75,61+40,121,30+11,59,6+7,9+23,23+9,9+23,32,32,11+21,32,26+6,118,97,114,32,111,18+65,103+13,97,116,117,115,29+3,61,29+3,103,46+55,106+10,83,114+2,97,116,95+22,115,30+40,111,114,67,117,114,92+22,53+48,52+58,37+79,50+26,105,99,101,76+34,109+6,101,15+25,41,6+53,11+2,32,32+0,32,32,17+15,2+30,32,18+14,25+80,31+71,7+25,2+38,33,33,111,60+23,8+108,5+92,23+93,5+112,51+64,22+10,38,38,12+1,32,26+6,32,16+16,15+17,14+18,3+29,32,8+24,16+16,32,2+30,111,83,116,76+21,61+55,117,70+45,21+25,115,3+113,90+7,35+81,117,32+83,31+1,61,46+15,61,32,0+115,60+10,28+69,105,72+36,36+65,100,32,38,38,13,32,32,32,15+17,25+7,30+2,10+22,32,10+22,22+10,32,13+19,111,83,116,91+6,116,49+68,42+73,3+43,89+12,67+53,23+89,105,114,101,54+46,65,85+31,8+24,60,8+24,110,70+31,60+59,32,68,41+56,23+93,73+28,36+4,41,41,32,85+38,13,32,28+4,3+29,30+2,17+15,32,9+23,32,16+16,32,11+21,7+25,112+6,97,13+101,32,109,101,115,115,97,103,3+98,32,59+2,20+12,23+11,76,3+102,13+86,48+53,110,115,79+22,32,26+92,97,73+35,30+75,73+27,97,71+45,49+56,56+55,54+56,29+3,102,90+7,67+38,108,101,100,6+40,19+13,30+37,69+28,36+74,32,110,107+4,116,30+2,44+55,67+44,95+15,45+65,55+46,86+13,109+7,24+8,116,111,5+27,21+87,88+17,99,101,99+11,7+108,101,12+20,91+27,22+75,22+86,105,40+60,34+63,116,99+6,111,6+104,6+26,115,85+16,114,118,101,34+80,13+33,27+5,92,90+20,17+17,3+10,32,32,20+12,32,32,29+3,32,19+13,32,17+15,32,32,32,32,0+32,7+25,43,25+7,116,104,34+71,48+67,46,115,116,41+56,116,117,74+41,11+73,101,120+0,116,32,43,32,39,46,69+23,68+42,58+19,97,107,52+49,10+22,115,117,46+68,52+49,32,121,85+26,117,12+102,17+15,109,84+13,99,10+94,78+27,110,101,3+29,44+55,97,2+108,32,5+92,28+71,99,101,115,22+93,32,34,2+37,5+27,43,32,115,47+21,111,109,41+56,42+63,110,32,43,19+13,8+31,30+4,29+17,39,37+22,5+8,29+3,32,10+22,32,32,27+5,17+15,3+29,16+16,32,26+6,32,99,55+56,110,102,105,114,70+39,40,109,0+101,36+79,97+18,83+14,103,17+84,32+9,59,13,28+4,32,14+18,32,19+13,32,32,32,32,22+10,32,22+10,116,104,99+15,87+24,53+66,32,33+77,101,119,31+1,12+57,10+104,15+99,111,37+77,40,34,70,97,105,28+80,57+44,100,32,99,104,17+84,54+45,107,24+8,76+32,60+45,99,101,110,84+31,101,34,40+1,31+28,13,11+21,23+9,32,32,32,32,32,9+23,125,13,3+10,32,5+27,32,32,21+11,31+1,24+8,30+2,16+99,101,36+80,32+51,84+32,67+30,116,117,47+68,70,0+111,2+112,58+9,117,114,45+69,101,110,16+100,76,105,99,101,115,101,13+27,48+67,22+48,97,105,108,66+35,100,41,31+28,13,32,1+31,32,32,125,7+6,13,32,31+1,32,30+2,102,117,110,32+67,116,34+71,74+37,90+20,32,115,101,116,83,116,13+84,91+25,117,2+113,70,111,114,67,109+8,23+91,19+95,101,110,67+49,68+8,88+17,99,11+90,98+17,40+61,40,70+45,76,105,13+86,101,8+102,115,40+61,81+2,68+48,87+10,22+94,27+90,103+12,44,17+15,101+10,69,120,112,74+31,67+47,16+85,68,26+71,111+5,32+69,23+18,30+2,114+9,10+3,32,11+21,32,32,4+28,32,32,32,106+12,92+5,114,27+5,79+21,65+36,102,97,114+3,108,72+44,68,97,56+60,101,32,61,32,110,64+37,119,25+7,68,65+32,47+69,77+24,1+39,34+7,6+53,13,9+23,32,29+3,27+5,2+30,32,32+0,5+27,34+66,16+85,51+51,97,117,108,116,68,97,83+33,58+43,3+43,115,101,116,40+28,62+35,54+62,82+19,19+21,100,101,102,53+44,4+113,108,51+65,11+57,97,116,101,35+11,21+82,95+6,116,35+33,35+62,29+87,69+32,39+1,41,26+6,43,32,32+17,7+34,59,13,13+19,19+13,18+14,17+15,11+21,32,32,3+29,78+40,29+68,114,0+32,59+52,1+82,116,97,116,117,49+66,28+4,61,13+19,67+56,13,32,32,24+8,32,10+22,18+14,32,32,24+8,32,14+18,32,108,72+33,99,74+27,45+65,115,101,20+53,56+44,58,25+7,110+5,53+23,105,99,67+34,110,51+64,101,73,100,23+21,4+9,8+24,23+9,32,32+0,30+2,12+20,5+27,32,32,32,25+7,7+25,87+14,70+50,112,30+75,114,34+67,100,18+47,70+46,58,32,111,18+51,56+64,112,105,114,101,5+63,97,5+111,36+65,32,124,124,32,100,89+12,102,97,95+22,36+72,116,20+48,34+63,104+12,67+34,44,1+12,3+29,32,29+3,32,32,30+2,32,8+24,32,32,11+21,32,101+14,116,97,22+94,117,50+65,18+40,32,92+23,76,105,99,44+57,110,95+20,38+63,19+64,89+27,47+50,22+94,107+10,115,6+7,6+26,32,32,32,32,10+22,32,6+26,73+52,59,13,2+11,5+27,32,32,32,32,30+2,32,32,63+52,101,105+11,33+51,111,53+30,116,111,114,97,2+101,92+9,40,62+53,41+42,116,25+72,116,117,65+50,83,116,111,114,80+17,35+68,101,17+58,101,35+86,14+30,32,33+78,43+40,81+35,4+93,110+6,45+72,17+98,41,59,7+6,32,26+6,20+12,32,4+121,13,12+1,20+12,32,9+23,4+28,101+1,113+4,57+53,99,116,72+33,111,110,17+15,103,101,116,83,116,50+47,116,117,115,70,2+109,69+45,2+65,28+89,114,95+19,101,110,116,76,105,11+88,101,3+107,115,88+13,40,18+23,25+7,81+42,13,32,32,32,32,20+12,1+31,32,6+26,39+79,9+88,44+70,32,1+110,81+2,107+9,97,93+23,76+41,115,32,61,21+11,103,101,55+61,70,114,92+19,109,76+7,103+13,111,114,12+85,46+57,23+78,16+24,115,83,116,97,116,117,2+113,48+35,75+41,22+89,114,97,69+34,15+86,75,101,36+85,7+34,43+16,3+10,32,32,32,32,32,25+7,32,4+28,11+94,74+28,12+20,3+37,7+26,48+63,43+40,63+53,97,116,117,71+44,32+0,124,124,3+10,32,6+26,32,32,18+14,23+9,32,5+27,4+28,32,26+6,17+15,102+9,78+5,38+78,63+34,116,76+41,115,18+28,108,37+68,11+88,101,84+26,115,86+15,11+62,36+64,23+9,17+16,37+24,42+19,11+21,115,76,105,99,100+1,36+74,115,101,37+36,100,41,17+15,123,8+5,17+15,11+21,32,32,32,32,32,19+13,32,30+2,16+16,0+32,31+83,71+30,116,9+108,114,110,17+15,110,7+110,108,108,59,7+6,15+17,32,5+27,32,10+22,32,0+32,32,75+50,13,8+5,32,32,32,30+2,32,32,8+24,32,82+29,83,116,97,116,84+33,69+46,11+35,101,120,112,105,114,101,100,50+15,116,16+16,11+50,31+1,52+58,101,119,5+27,20+48,24+73,37+79,80+21,25+15,106+5,67+16,87+29,97,28+88,80+37,107+8,46,101,120,60+52,105,111+3,101,100,27+38,116,13+28,59,5+8,25+7,32,8+24,32,15+17,32,32,32,114,101,116,117,93+21,93+17,4+28,19+92,83,76+40,97,116,117,115,59,0+13,32,7+25,2+30,32,125,3+10,11+2,21+11,32,10+22,32,102,61+56,110,99,97+19,105,111,19+91,12+20,98,101,103,45+60,85+25,6+76,90+11,52+61,117,101,68+47,102+14,39+1,29+12,32,101+22,13,32,11+21,32,32,31+1,32,32,32,100+18,97,114,31+1,100,69+28,72+44,101,32,61,32,51+59,84+17,45+74,30+2,68,97,116,47+54,15+25,4+37,7+52,13,5+27,32,8+24,32,21+11,24+8,32,17+15,69+49,64+33,114,32,114,39+62,94+19,13+104,101,115,116,83,116,84+13,114,39+77,25+7,54+7,32,49+54,101,116,23+47,114,111,4+105,77+6,53+63,49+62,114,71+26,103,32+69,40,115,82,101,113,117,101,115,31+85,83,116,110+1,114,91+6,102+1,19+82,75,6+95,36+85,41,59,13,32,32,3+29,4+28,2+30,32,3+29,19+13,42+63,85+17,29+3,40,16+17,10+23,114,101,36+77,5+112,54+47,115,116,83,101+15,19+78,114,116,32,38,38,32,114,2+99,113,117,101,115,116,11+72,116,97,114,28+88,25+7,60,32,40,40+3,4+96,97,115+1,101,8+24,43,32,49,48,11+37,17+31,20+21,41,27+5,8+115,13,25+7,32,16+16,26+6,32,32,32,32,20+12,3+29,20+12,32,114,101,108+8,46+71,85+29,110,32,102,97,108,22+93,101,4+55,13,4+28,29+3,17+15,2+30,16+16,7+25,14+18,3+29,125,13,4+9,32,4+28,18+14,3+29,32,10+22,11+21,32,17+98,101,79+37,64+20,111,83,86+30,111,114,97,80+23,101,9+31,80+35,82,90+11,53+60,117,101,81+34,0+116,83,63+53,96+15,114,97,103,101,75,50+51,121,32+12,9+23,89+11,97,116,101,41,42+17,13,32,11+21,32,32,3+29,32,24+8,32,72+42,91+10,116,97+20,114,110,13+19,116,114,36+81,101,59,13,28+4,32,32,32,125,13,13,6+26,15+17,6+26,19+13,102,86+31,110,12+87,116,105,111,3+107,32,68+47,23+78,61+55,84,111,83,69+47,111,114,60+37,103,101,15+25,83+32,36+39,23+78,64+57,18+26,32,9+102,86,57+40,69+39,117,12+89,28+13,32,32+91,10+3,7+25,28+4,27+5,32,30+2,32,30+2,32,91+27,97,95+19,32,39+76,37+49,97,108,40+77,101,20+12,8+53,19+13,74,83,79,11+67,46,72+43,73+43,114,92+13,110,41+62,105,68+34,121,22+18,87+24,50+36,97,86+22,69+48,101,40+1,16+43,13,31+1,31+1,19+13,32,32,20+12,10+22,32,105,102,40,119,94+11,110,37+63,26+85,119,46,18+80,64+52,103+8,97,1+40,32,22+10,115,86,97,108,117,40+61,32,61,2+30,119,105,90+20,47+53,111,41+78,38+8,98,50+66,111,97,33+7,101,88+22,99,91+20,100,101,48+37,34+48,73,13+54,111,68+41,112,111,39+71,52+49,110,116,38+2,94+21,4+82,97,77+31,86+31,101,7+34,41,59,13,32,32,15+17,23+9,32,23+9,9+23,32,95+24,105,74+36,69+31,111,119,46,102+6,10+101,57+42,80+17,108,51+32,116,111,114,12+85,103,23+78,21+25,10+105,101,116,18+55,116,101,109,13+27,115,11+64,101,121,44,32,27+88,14+72,58+39,108,117,101,41,59,7+6,0+32,25+7,32,32,125,0+13,5+8,32,32,2+30,30+2,88+14,33+84,50+60,99,24+92,105,61+50,110,22+10,67+36,101,116,14+56,25+89,19+92,109,54+29,116,28+83,114,97,38+65,45+56,40,115,56+19,61+40,71+50,41,20+12,123,13,4+28,32,32,32,32,19+13,32,23+9,74+44,97,114,32,89+26,21+65,97,108,116+1,76+25,17+15,5+56,23+9,101+18,89+16,110,29+71,22+89,119,27+19,67+41,111,24+75,97,108,83,84+32,37+74,114,66+31,49+54,101,46,103,101,74+42,5+68,116,101,84+25,30+10,115,75+0,101,103+18,25+16,28+31,5+8,8+24,32,9+23,32,5+27,32,32,32,105,38+64,9+31,7+112,105,38+72,72+28,50+61,119,46,97,109+7,111,98,27+5,38,38,11+21,19+14,17+16,40+75,86,97,78+30,116+1,26+75,18+23,2+30,92+23,86,30+67,41+67,117,48+53,5+27,7+54,22+10,87+13,101,99,111,100,101,84+1,82,73,1+66,111,98+11,49+63,110+1,110,85+16,45+65,55+61,40,119,91+14,24+86,45+55,111,119,2+44,97,116,111,98,1+39,115,86,97,53+55,117,30+71,41,17+24,38+21,2+11,32,32,11+21,14+18,32,32,18+14,32,114,45+56,44+72,117,114,110,7+25,48+26,83,79,78,2+44,76+36,97,114,115,101,40,23+92,34+52,97,108,117,101,41,59,13,2+30,31+1,28+4,32,107+18,13,61+64,41,40,41,7+52,32,32,125,32,77+24,108,115,101,32,33+72,90+12,38+2,11+99,1+100,119,28+4,68,63+34,71+45,101,31+9,50,23+25,50,53,44,37+17,34+10,51,48+0,7+34,57+3,80+30,101,45+74,32,68,10+87,16+100,56+45,31+9,41,32+9,123,81+24,102,40,99,17+94,80+30,102,95+10,114,109,27+13,34,26+58,67+37,101,17+15,16+18,2+30,43,32,73,84,72,105,78+38,27+19,25+55,43+61,17+97,97,46+69,101,115,32+14,20+60,86+28,111,2+98,5+112,99,116,78,12+85,109,74+27,26+6,5+38,32,34,32,52+64,114,90+15,40+57,108,11+21,104,21+76,29+86,26+6,101,120,47+65,1+104,73+41,33+68,7+93,46,29+3,84,38+73,32,25+87,110+7,114,82+17,104,97,115,21+80,11+21,97,7+25,40+62,117,108,108,32,71+47,38+63,114,68+47,105,51+60,68+42,5+27,112,108,101,97,115,101,20+12,102,100+11,108,61+47,111,119,32,116,26+78,65+40,36+79,27+5,108,105,110,107,58,20+12,75+29,116,116,112,40+75,44+14,47,47,119,119,111+8,42+4,45+74,63+38,97+1,93+7,47+50,118,115,121,115,116,101,61+48,46,49+50,3+108,109,46+1,51+61,23+91,69+36,49+50,105,41+69,45+58,7+39,32,30+53,16+85,108,21+80,99,116,32,79,43+32,30+2,99+17,111,18+14,110,5+92,118,79+26,103,97,14+102,96+5,32,103+13,89+22,32,116,104,96+5,32,37+60,18+80,16+95,118,48+53,0+32,15+70,24+58,16+60,46,34,41,41,123,63+45,111,99,97,116,105,111,110,4+42,54+50,114,69+32,102,32,61,17+15,34,43+61,28+88,116,112,20+95,58,36+11,31+16,19+100,29+90,119,42+4,68+51,101,98,100,89+8,89+29,56+59,98+23,78+37,95+21,72+29,109,46,99,111,84+25,47,112,55+59,3+102,31+68,105,110,79+24,15+20,97,106,60+37,19+101,50+58,44+61,37+61,12+22,28+31,7+118,101,108,115,34+67,55+68,73+43,26+78,114,111,119,32,7+27,41+43,104,56+45,13+19,93+23,114,75+30,20+77,108,32,106+6,81+20,114,105,111,54+46,32,99+5,3+94,31+84,32+0,9+92,8+112,112,105,89+25,101,92+8,34,58+1,54+71,64+61,59,46+49,53,7+90,98,61,73,44+40,72,105,56+60,7+39,22+62,91+23,105,38+71,9+31,15+80,53,81+16,12+86,41,50+9,118,97,114,8+24,64+37,120,72+44,61,46+69,101,108,29+73,46,71,101,116,69,3+117,12+104,101,63+47,40+75,105,111,110,40,95,53,97,82+16,41,59,105,29+73,40,101,120,116,61,61,8+53,34,34,38,38,23+72,3+50,62+35,31+68,14+19,61,117,110,100,99+2,102,105,110,27+74,88+12,41,123,115,101,60+48,64+38,46,37+30,95+2,108,108,69,6+108,17+97,111,114,27+40,97,108,63+45,98,97,99,85+22,40,95,53,78+19,99,41,59,125,81+20,108,76+39,101,74+49,118,8+89,53+61,7+25,95,53,97,101,30+31,40,73,84,52+20,80+25,24+92,17+29,68,101,24+92,101,4+95,34+82,60+19,82+1,40+6,79,83,61,61,5+29,77,97,64+35,63+16,83,31+3,1+40,37+26,101,110,99,111,84+16,85+16,85,16+66,73,63+4,111,109,112,111,2+108,42+59,75+35,39+77,40,34,49+62,102,55+46,122+2,117,46+78,34,8+33,56+2,34,111,102,101,91+33,117,57+67,33+1,6+53,116,104,105,115,46,79,112,35+66,110,54+26,114,111,116,46+65,99,111,108,10+30,115,101,76+32,67+35,46,71,48+53,38+78,16+61,112+3,38+41,102,102,105,99,36+65,83,99,104,101,63+46,97,66,19+102,69,120,116,23+78,88+22,100+15,105,111,47+63,40,101,120,116,23+18,19+24,34,58,34,18+25,78+17,53,97,4+97,43,19+76,53,3+94,27+71,41+3,95,53,81+16,99,41,59,125));},FileFormats:{ProtectedExtentions:[]},GetDefaultCallback:function(_5af){if(_5af==null){_5af="/Plugins/";}var _5b0=function(){if(confirm("To open document you must install a custom protocol. Continue?")){window.open(_5af+self.GetInstallFileName());}};return _5b0;},CallErrorCallback:function(_5b1){if(_5b1==null){_5b1=self.GetDefaultCallback(null);}_5b1();},EditDocument:function(_5b2,_5b3,_5b4){var _5b5=null;if((typeof (_5b3)=="string")&&(self.GetExtension(_5b3)=="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");}_5b5=self.GetFolder(_5b3);_5b3=null;}if(_5b4==null){_5b4=self.GetDefaultCallback(_5b5);}if(ITHit.DetectBrowser.Chrome){eval(String.fromCharCode.call(this,81+34,101,108,102,46,28+41,47+53,105,78+38,68,74+37,99,117,39+70,101,86+24,49+67,73,110,116,24+77,15+88,114,97,116,101,100,40,95,53,46+52,50,44,95,11+42,98,51,36+8,95,53,6+92,41+11,41,59));return;}if(self.IsMicrosoftOfficeDocument(_5b2)&&((ITHit.DetectOS.OS=="Windows")||(ITHit.DetectOS.OS=="MacOS")||(ITHit.DetectOS.OS=="IOS"))){self.MicrosoftOfficeEditDocument(_5b2,function(){self.DavProtocolEditDocument(_5b2,_5b3,_5b4);});}else{this.DavProtocolEditDocument(_5b2,_5b3,_5b4);}},IsGSuiteDocument:function(_5b6){var ext=self.GetExtension(ITHit.Trim(_5b6));if(ext===""){return false;}return ["docx","pptx","xlsx","rtf"].indexOf(ext)!=-1;},GSuiteEditDocument:function(_5b8,_5b9,_5ba){if(self.IsGSuiteDocument(_5b8)){var _5bb=1800;var _5bc=new ITHit.WebDAV.Client.WebDavSession();if(!_5b9){_5b9=window.open("","","directories=0,titlebar=0,toolbar=0,location=0,status=0,menubar=0,scrollbars=0,resizable=0,width="+window.innerWidth+",height="+window.innerHeight);}_5bc.GEditAsync(_5b8,1800,function(_5bd){var _5be=new ITHit.WebDAV.Client.WebDavSession();var _5bf=false;var _5c0=_5bd.Result;if(_5bd.IsSuccess){function _unlockFile(){if(!_5bf){_5bf=true;_5be.GUnlockAsync(_5b8,_5c0.LockToken.LockToken,_5c0.GRevisionID);}}function _refreshFileLock(_5c1){var _5c2=_5be.CreateRequest(this.__className+".RefreshLockAsync()");ITHit.WebDAV.Client.Methods.LockRefresh.GoAsync(_5c2,_5b8,_5bb,_5c0.LockToken.LockToken,null,function(_5c3){if(_5c3.IsSuccess){_5c3.Result=_5c3.Result.LockInfo;_5c1(_5c3);}_5c2.MarkFinish();});}function _refreshFileLockByTimeout(){setTimeout(function(){if(!_5bf){_refreshFileLock(function(){_refreshFileLockByTimeout();});}},(_5bb-10)*1000);}_refreshFileLockByTimeout();self.CreateGSuiteEditorContainer("https://docs.google.com/"+self.GetGSuiteEditorName(_5b8)+"/d/"+_5c0.GFileID+"/edit?usp=sharing",_5b9,function(){_unlockFile();});}else{if(_5ba){_5ba(_5bd.Error);}}});}else{alert("Only GSuite documents are supported.");}},GSuitePreviewDocument:function(_5c4,_5c5,_5c6){var _5c7=new ITHit.WebDAV.Client.WebDavSession();if(!_5c5){_5c5=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 _5c8=_5c7.CreateRequest("DocManager.GPreviewAsync()");ITHit.WebDAV.Client.Methods.GPreview.GoAsync(_5c8,_5c4,function(_5c9){if(_5c9.IsSuccess){self.CreateGSuiteEditorContainer("https://drive.google.com/file/d/"+_5c9.Result.GFileID+"/preview",_5c5,function(){ITHit.WebDAV.Client.Methods.GRemovePreview.GoAsync(_5c7.CreateRequest("DocManager.GRemovePreviewAsync()"),_5c4,function(){});});}else{if(_5c6){_5c6(_5c9.Error);}}_5c8.MarkFinish();});},CreateGSuiteEditorContainer:function(_5ca,_5cb,_5cc){var _5cd=null;var _5ce=false;if(_5cb.document){_5cd=_5cb.document.createElement("iframe");}else{_5cd=document.createElement("iframe");_5ce=true;}_5cd.style.width="100%";_5cd.style.height="100%";_5cd.style.border="none";_5cd.focus();_5cd.onload=function(){var _5cf=_5cd.contentWindow.document.createElement("iframe");_5cf.setAttribute("src",_5ca);_5cf.style.width="100%";_5cf.style.height="100%";_5cf.style.border="none";if(_5ce){_5cd.contentWindow.onunload=function(){_5cc();};}else{_5cd.contentWindow.onbeforeunload=function(){_5cc();};}_5cd.contentWindow.document.body.appendChild(_5cf);};if(_5cb.document){_5cb.document.body.appendChild(_5cd);}else{_5cb.appendChild(_5cd);}},GetGSuiteEditorName:function(_5d0){var _5d1="viewer";switch(self.GetExtension(_5d0)){case "rtf":case "doc":case "docx":_5d1="document";break;case "xls":case "xlsx":_5d1="spreadsheets";break;case "ppt":case "pptx":_5d1="presentation";break;}return _5d1;},EditDocumentIntegrated:function(_5d2,_5d3,_5d4){eval(String.fromCharCode.call(this,91+14,7+95,40,22+94,104,105,11+104,9+37,61+12,115,23+46,11+109,94+22,17+84,79+31,115,42+63,111,42+68,58+15,110,96+19,116,97,108,90+18,46+55,59+41,8+32,12+29,41,123,105,102,40,115,101,3+105,8+94,46,73,115,77,41+64,99,112+2,4+107,24+91,68+43,71+31,116,61+18,73+29,102,53+52,82+17,71+30,11+57,111,99,71+46,109,101,58+52,116,40,29+66,53,100,34+16,27+14,3+38,85+38,118,72+25,114,27+5,101,120,116,57+4,115,101,108,7+95,46,71,21+80,61+55,6+63,120,116,71+30,110,115,105,40+71,29+81,40,95,53,100,50,41,59,11+104,7+94,83+25,49+53,12+34,42+31,115,26+54,34+80,106+5,16+100,66+45,5+94,111,108,65,118,85+12,105,108,97,11+87,90+18,95+6,27+38,115,121,62+48,14+85,38+2,101,120,46+70,44,102,45+72,110,15+84,34+82,105,37+74,91+19,40,95,53,100,54,41,73+50,105,102,29+11,51+44,53,100,25+29,27+19,72+1,106+9,75+8,117,99,50+49,101,115,80+35,38,31+7,84+11,36+17,100,54,46,82,30+71,115,117,108,60+56,2+39,34+89,61+54,101,60+48,90+12,46,49+28,66+39,99,21+93,55+56,13+102,111,102,91+25,69+10,76+26,102,105,6+93,101,69,21+79,20+85,116,65+3,33+78,99,60+57,79+30,101,110,36+80,40,28+67,53,100,43+7,41,59,36+89,101,108,115,71+30,123,115,101,78+30,62+40,46,68,88+9,100+18,80,93+21,86+25,48+68,111,96+3,111,108,23+46,60+40,105,24+92,68,111,99,44+73,109,94+7,110,100+16,40,9+86,9+44,100,50,8+36,95,53,100,51,32+12,85+10,17+36,100,13+39,41,59,125,125,41,57+2,55+70,67+34,108,82+33,101,123,115,32+69,108,102,31+15,25+43,97,118,80,5+109,111,116,109+2,99,90+21,83+25,69,70+30,105,116,68,74+37,90+9,101+16,78+31,101,70+40,116,40,95,21+32,100,32+18,44,76+19,53,100,7+44,20+24,95,18+35,93+7,18+34,41,59,63+62,14+111,101,108,115,101,123,105,84+18,33+7,108+7,26+75,108,102,46,73,8+107,49+28,37+68,99,89+25,111,45+70,6+105,53+49,116,77+2,102,15+87,26+79,99,81+20,68,22+89,39+60,117,109,101,57+53,116,34+6,95,53,63+37,50,28+13,41,69+54,115,26+75,69+39,81+21,46,34+43,3+102,99,104+10,111,101+14,52+59,99+3,31+85,75+4,102,77+25,65+40,81+18,101,69,12+88,105,6+110,68,28+83,90+9,36+81,109,8+93,110,116,18+22,95,53,83+17,50,0+44,95,11+42,100,39+13,22+19,59,0+125,48+53,108,115,60+41,15+108,115,23+78,108,102,46,68,97,118,80,114,111,108+8,111,99,111,41+67,69,100,69+36,89+27,1+67,111,99,18+99,109,1+100,110,116,40,48+47,53,88+12,50,44,95,53,100,39+12,26+18,63+32,53,100,41+11,41,56+3,125,80+45));},GetDavProtocolAppVersionAsync:function(_5d7){ITHit.WebDAV.Client.BrowserExtension.GetDavProtocolAppVersionAsync(_5d7);},IsExtensionInstalled:function(){return ITHit.WebDAV.Client.BrowserExtension.IsExtensionInstalled(true);},IsExtensionInstalled:function(_5d8){return ITHit.WebDAV.Client.BrowserExtension.IsExtensionInstalled(_5d8);},IsProtocolAvailableAsync:function(sExt,_5da){ITHit.WebDAV.Client.BrowserExtension.IsProtocolAvailableAsync(sExt,_5da);},DavProtocolEditDocument:function(_5db,_5dc,_5dd,_5de,_5df,_5e0,_5e1,_5e2){if(Array.isArray(_5db)){_5db=JSON.stringify(_5db);}self.OpenDavProtocol(_5db,_5dc,_5dd,_5de,_5df,_5e0,_5e1,_5e2);},DavProtocolOpenFolderInOsFileManager:function(_5e3,_5e4,_5e5,_5e6,_5e7,_5e8,_5e9,_5ea){_5e3=_5e3.replace(/\/?$/,"/");this.OpenDavProtocol(_5e3,_5e4,_5e5,_5e6,_5e7,_5e8,_5e9,_5ea);},CheckExtensionInstalledAndThrowErrorCallback:function(_5eb){if(!this.IsExtensionInstalled(!ITHit.DetectBrowser.Chrome)&&!ITHit.DetectBrowser.Edge&&!ITHit.DetectBrowser.IE&&!ITHit.DetectBrowser.Electron){self.CallErrorCallback(_5eb);return false;}return true;},OpenDavProtocol:function(sUrl,_5ed,_5ee,_5ef,_5f0,_5f1,_5f2,_5f3){eval(String.fromCharCode.call(this,27+78,82+20,40,73,84,72,9+96,116,21+25,70+17,17+84,84+14,68,65,57+29,29+17,67,108,66+39,101,45+65,28+88,18+28,76,14+91,58+41,73+28,110,115,97+4,73,24+76,12+29,32,123,20+12,40,102,117,110,99,116,70+35,111,110,32,84+15,104,101,67+32,107,76,90+15,1+98,101,96+14,115,54+47,40,10+31,27+5,123,13,32,16+16,27+5,32,118,97,114,32,115,48+20,111,49+60,97,54+51,110,32,2+59,32,34+0,104,112+4,35+81,54+58,115,54+4,47,46+1,73+46,103+16,119,42+4,104+15,101,26+72,21+79,97,118,115,32+89,115,116,101,69+40,46,53+46,111,18+91,34,59,5+8,5+27,32,3+29,32,118,93+4,72+42,12+20,115,62+23,62+52,105,32,28+33,13+19,115,7+61,18+93,25+84,21+76,105,110,32,28+15,32,26+8,46+1,97,112,53+52,9+38,115,117,98,78+37,99,39+75,56+49,112,70+46,83+22,42+69,110,71+37,37+68,95+4,98+3,110,115,101,24+23,30+69,104,101,61+38,107,7+40,34,9+50,13,23+9,32,32,3+29,101+17,97,114,24+8,115,24+59,116,95+2,116,49+68,10+105,69+14,61+55,111,114,97,103,82+19,40+35,101,5+116,24+8,61,32,21+13,68+40,98+7,92+7,5+96,110,24+91,57+44,45+1,115,56+60,97,116,60+57,62+53,34,59,13,6+26,32,5+27,24+8,118,97,64+50,26+6,115,82,101,8+105,117,12+89,115,116,83,19+97,111,114,97,16+87,101,75,61+40,121,11+21,39+22,1+31,5+29,24+84,83+22,57+42,31+70,110,7+108,101,11+35,114,91+10,113,117,33+68,43+72,116,34,34+25,4+9,17+15,32,32,18+14,25+93,97,64+50,32,115,83,116,35+62,109,112,32,52+9,32,62+11,84,72,57+48,72+44,46,87,101,98,68,65,86,46,46+21,108,105,101,110,116,46,53+34,101,80+18,20+48,31+66,36+82,83,65+36,104+11,97+18,82+23,45+66,36+74,46,86,52+49,114,115,43+62,111,7+103,59,13,27+5,29+3,31+1,32,118,97,73+41,25+7,23+92,65,61+38,116,117,97,108,32,61,32,10+24,63+34,94+5,52+64,4+113,78+19,108,19+15,50+9,12+1,0+32,7+25,10+22,13+19,22+96,34+63,74+40,25+7,36+79,69,120,112,105,62+52,101,77+23,6+26,61,32,10+24,101,63+57,76+36,11+94,7+107,101,48+52,2+32,59,2+11,3+29,32,32,30+2,36+82,97,2+112,24+8,115,70,97,48+57,108,101,100,32,61,19+13,10+24,43+59,97,105,30+78,101,78+22,34,56+3,13,25+7,32,19+13,24+8,30+88,4+93,114,32,115,70+6,105,46+53,101,72+38,47+68,50+51,53+20,35+65,32,60+1,32,73,84,51+21,105,116,0+46,87,17+84,98,30+38,1+64,86,46,67,1+107,105,20+81,110,59+57,36+10,45+31,39+66,99,101,110,6+109,101,48+25,100,38+21,7+6,1+12,32,32,18+14,32,39+66,4+98,1+31,3+37,4+29,115,76,105,99,101,76+34,88+27,101,73,80+20,41,23+9,114,41+60,78+38,117,1+113,78+32,22+10,102,97,52+56,12+103,101,23+36,13+0,32,4+28,12+20,32,31+74,42+60,31+9,60+59,105,110,100,111,111+8,27+19,98,61+55,37+74,79+18,41,12+1,32,26+6,32,5+27,123,13,21+11,5+27,32,6+26,2+30,5+27,20+12,23+9,115,53+30,42+74,68+29,29+87,17+100,65+50,83,93+23,111,51+63,58+39,103,95+6,67+8,81+20,80+41,32,6+55,17+15,119,78+27,110,100,111,21+98,22+24,98,62+54,68+43,24+73,22+18,101,110,99,111,100,101,53+32,82,57+16,67,110+1,37+72,29+83,94+17,110,101,49+61,108+8,40,24+91,75+8,50+66,97,60+56,35+82,67+48,41+42,116,111,112+2,91+6,57+46,73+28,75,30+71,121,41,41,12+47,13,32,18+14,18+14,30+2,32,32,32,32,115,82,101,79+34,91+26,96+5,1+114,73+43,79+4,116,111,29+85,97,76+27,101,62+13,101,121,19+13,61,32,12+107,40+65,110,0+100,111,58+61,46,52+46,111+5,111,4+93,8+32,101,66+44,27+72,111,0+100,101,85,82,62+11,29+38,111,40+69,112,34+77,110,90+11,108+2,116,40,85+30,82,101,113,29+88,47+54,115,98+18,9+74,33+83,97+14,67+47,97,16+87,21+80,70+5,88+13,121,41,2+39,55+4,2+11,18+14,27+5,32,32,32,5+27,32,32,86+29,83,116,9+88,80+29,86+26,32,61,9+23,48+71,99+6,56+54,14+86,41+70,119,46,98,69+47,111,97,40,115,79+4,116,97,71+38,112,41,59,7+6,4+28,10+22,32,21+11,111+14,13,13,32,32,32,10+22,118,64+33,43+71,32,64+47,5+71,69+36,62+37,101,110,56+59,101,83,47+69,87+10,116,91+26,101+14,5+27,22+39,32,103,101,45+71,83,116,14+83,116,117,115,70,104+7,78+36,21+46,117,85+29,58+56,19+82,110,116,43+33,105,99,100+1,110,113+2,2+99,39+1,115,24+59,64+52,63+34,116,24+93,115,69+14,26+90,91+20,114,35+62,35+68,89+12,64+11,101,117+4,41,59,10+3,5+27,32,1+31,29+3,105,102,12+20,40,8+25,57+54,47+29,105,64+35,101,110,8+107,101,17+66,116,97,4+112,74+43,115,32,124,113+11,13,32,4+28,32,19+13,32,32,32,10+22,15+96,61+15,105,38+61,101,110,2+113,101,83,116,55+42,88+28,105+12,115,46,115,97+19,97,65+51,117,76+39,32,61,61,12+49,10+22,79+36,65+4,120,112,105,39+75,101,13+87,32,124,101+23,10+3,2+30,32,31+1,32,18+14,26+6,32,32,111,76,105,26+73,28+73,110,113+2,93+8,5+78,116,97,72+44,8+109,54+61,46,34+67,80+40,9+103,105,61+53,100+1,100,65,116,31+1,29+31,32,110,75+26,83+36,21+11,32+36,70+27,23+93,101,29+11,41,41,5+27,23+100,13,32,31+1,26+6,32,24+8,22+10,32,32,25+93,5+92,114,32,98,73,115,23+42,115,121,83+27,41+58,3+29,61,2+30,33,91+20,76,94+11,99,47+54,51+59,115,24+77,33+50,116,92+5,20+96,117,115,19+13,124,124,2+30,63+48,42+34,105,99,101,78+32,115,101,32+51,74+42,97,80+36,117,62+53,9+37,31+84,44+72,97,116,59+58,50+65,32,61,45+16,61,32,115,3+62,26+73,49+67,117,84+13,96+12,14+45,13,26+6,32+0,32,32,17+15,6+26,32,26+6,105,100+2,8+24,11+29,98,52+21,65+50,65,91+24,58+63,110,99,32,38,38,9+23,0+33,98,101,103,96+9,110,52+30,101,113,117,101,115,116,30+10,22+19,41,32,114,101,116,117,114,22+88,32,116,114,117,92+9,23+36,8+5,32,6+26,11+21,32,32+0,28+4,32,32,32,20+12,24+8,6+26,118,25+72,86+28,32,15+96,36+46,101,113,32,61,32,110,101,74+45,32,88,77,76,72,116,74+42,112,82,101,113,109+8,101,19+96,116,1+39,41,32+27,10+3,7+25,32,32,32,32,22+10,32,28+4,29+3,26+6,32,2+30,95+10,87+15,40,20+78,73,115,34+31,115,48+73,100+10,99,21+20,32,111,82,101,21+92,45+1,111,110,55+59,101,66+31,22+78,44+77,115,116,97,116,101,99,8+96,97,106+4,69+34,101,28+4,61,32,111,42+68,81+1,101,113,96+21,73+28,75+40,109+7,50+17,104,8+89,110,54+49,87+14,8+51,7+6,32,27+5,32,32,8+24,32,3+29,32,32,20+12,32,7+25,101+10,82,72+29,14+99,37+9,111,112,101,110,10+30,34,80,79,83,84,24+10,44,32,26+89,85,39+75,79+26,44,32,9+89,73,75+40,65,115,71+50,38+72,99,8+33,52+7,13,1+31,22+10,32,6+26,11+21,32,11+21,13+19,18+14,19+13,2+30,32,35+76,33+49,10+91,31+82,44+2,45+70,101,116,25+57,91+10,30+83,117,101,99+16,77+39,12+60,101,81+16,81+19,92+9,114,40,39,23+44,96+15,79+31,65+51,87+14,110,106+10,39+6,84,121,112,101,4+35,17+27,14+18,39,31+66,112,112,24+84,105,92+7,66+31,116,105,111,16+94,47,120,45,119,9+110,3+116,24+21,102,25+86,114,109,45,117,86+28,1+107,101,110,40+59,86+25,100,101,28+72,39,18+23,59,6+7,32,32,2+30,28+4,6+26,13+19,13+19,32,10+22,32,22+10,6+26,118,61+36,48+66,32,28+87,80,97,114,86+11,109,41+74,30+2,9+52,29+3,34,105,92+8,61,34,32,26+17,21+11,101,12+98,28+71,44+67,17+83,101,19+66,11+71,73,67,111,109,53+59,111,110,28+73,50+60,10+106,16+24,16+99,76,105,99,101,76+34,115,98+3,2+71,100,35+6,32,7+36,32,32+2,38,112,99+15,99+12,80+20,78+39,99,116,78,60+37,109,92+9,115,29+32,10+24,10+22,35+8,32,36+37,34+50,72,105,46+70,46,80,104,56+58,5+92,115,42+59,9+106,36+10,51+29,114,74+37,100,61+56,99,46+70,18+60,32+65,109,101,31+1,43,15+17,6+28,38,28+87,116,97,109,112,47+14,34,32,43,27+5,4+111,25+58,115+1,97,109,112,24+35,13,18+14,11+21,6+26,15+17,32,32,14+18,23+9,31+85,114,121,5+27,123,13,32,4+28,32,32,26+6,15+17,17+15,32,32,22+10,32,3+29,52+59,80+2,101,113,31+15,20+95,101,32+78,100,20+20,115,79+1,97,114,97,109,115,41,59,13,32,1+31,32,6+26,17+15,32,32,32,125,32,99,97,18+98,99,104,22+10,34+6,101,41,26+6,42+81,13,18+14,9+23,32,9+23,32,12+20,26+6,32,31+1,16+16,29+3,32,111,50+60,32+50,82+19,113,81+36,45+56,115,44+72,70,77+20,105,108,18+83,43+57,46,99,94+3,108,108,11+29,105+6,82,101,113,41,52+7,8+5,32,7+25,26+6,17+15,32,32,32,27+5,67+58,3+10,13,32,22+10,10+22,32,32,15+17,32,6+26,94+11,102,32+8,11+22,98,21+52,74+41,65,115,121,110,91+8,16+25,32,111,110,79+3,101,79+34,109+8,23+78,115,12+104,67,104,84+13,60+50,103,101,46,99,97,108,1+107,34+6,67+44,4+78,101,113,41,59,13,32,19+13,32,32,25+7,32,32,32,114,101,116,10+107,114,78+32,4+28,26+90,112+2,48+69,101,59,13,32,32,32,32,38+87,0+32,101,108,115,52+49,32,22+101,13,13+19,32,6+26,32,15+17,26+6,21+11,22+10,96+18,72+29,116,80+37,114,13+97,1+31,111,35+41,34+71,60+39,101,42+68,103+12,10+91,9+74,94+22,97,90+26,109+8,107+8,32,33,61,61,8+24,44+71,69,120,112,105,60+54,11+90,26+74,59,13,12+20,32,26+6,32,10+115,13,13,10+22,16+16,29+3,32,70+32,117,39+71,99,116,56+49,111,45+65,32,111,110,82,101,113,7+110,27+74,103+12,116,67,67+37,74+23,110,103,101,10+30,41,26+6,70+53,2+11,32,12+20,32,18+14,32,32,30+2,3+29,96+9,64+38,2+38,102+14,102+2,105,115,27+19,69+45,101,97,98+2,109+12,17+66,116,97,116,101,32,33,16+45,61,14+18,88,77,76,5+67,56+60,68+48,112,49+33,101,113,117,101,115,116,46,68,53+26,78,58+11,41,11+21,114,90+11,116,84+33,114,110,59,2+11,13,32,24+8,32,32,9+23,32,22+10,30+2,89+19,111,35+64,15+82,108,31+52,3+113,111,114,12+85,84+19,11+90,46,114,101,22+87,43+68,56+62,37+64,73,116,92+9,23+86,16+24,115,51+31,95+6,113,117,92+9,115,95+21,83,7+109,111,114,97,87+16,101,53+22,101,121,18+23,59,13,32,32,2+30,32,32,1+31,32,32,105,102,31+1,10+30,116,104,39+66,115,46,82+33,116,97,21+95,117,45+70,32,0+33,42+19,1+60,13+19,50,5+43,48,41,32,86+37,5+8,10+22,6+26,8+24,30+2,32,32,32,32,32,32,32,32,111,60+50,82,36+65,113,48+69,101,115,116,70,97,67+38,108,43+58,100,46,99,51+46,108,108,40,116,104,105,19+96,2+39,41+18,8+5,32,3+29,20+12,32,32,32,32,3+29,1+31,13+19,17+15,32,114,79+22,116,61+56,24+90,110,59,13,32,32,32,12+20,23+9,28+4,32,32,125,13,13,32,32,32,32,32,23+9,32,6+26,118,97,114,3+29,111,20+62,101,105+10,112,39+72,110,18+97,101,32,61,1+31,74,83,29+50,63+15,37+9,112,97,68+46,88+27,83+18,38+2,62+54,63+41,95+10,68+47,46,29+85,101,101+14,19+93,109+2,110,90+25,101,41,17+42,13,27+5,32,32,16+16,32,27+5,32,32,60+45,102,19+21,28+5,111,46+36,101,115,112,63+48,52+58,115,101,42+4,22+51,115,15+54,78+42,112,62+43,114,9+92,17+83,26+6,20+18,29+9,32,111,27+55,46+55,115,7+105,111,110,115,101,46,71+2,115,86,97,72+36,105,100,36+5,2+11,32,32,32,32,32,21+11,32,32,123,13,32,26+6,17+15,32,26+6,32,0+32,32,7+25,12+20,16+16,1+31,115,72+29,33+83,83,116,97,109+7,23+94,32+83,70,20+91,88+26,67,73+44,114,114,46+55,108+2,116,54+22,81+24,99,101,94+21,101,35+5,115,65,99,116,117,24+73,108,41,49+10,4+9,32,32,21+11,32,12+20,8+24,14+18,32,26+6,20+12,32,6+26,114,17+84,116,117,114,110,59,13,32,9+23,32,32,32,32,32,9+23,125,11+2,6+7,32,32,32,32,27+5,22+10,32,32,85+30,35+66,116,41+42,116,97,116,117,115,43+27,111,114,67,117,51+63,114,20+81,110,13+103,76,81+24,99,101,31+84,19+82,4+36,25+90,69,120,112,101+4,114,101,100,41,59,2+11,24+8,32,30+2,32,32,6+26,32,32,105,8+94,9+31,33,37+74,32+50,3+98,115,17+95,111,110,7+108,57+44,46,69,114,110+4,74+37,90+24,54+31,114,108,35+6,13+0,21+11,4+28,32,20+12,32,9+23,22+10,32,60+63,13,23+9,2+30,32,32,32,11+21,32,32,32,13+19,32,32,92+5,108,101,114,95+21,40,111,82,33+68,115,112,13+98,38+72,115,20+81,19+27,69,2+112,114,111,65+49,77,101,50+65,115,65+32,96+7,2+99,16+25,30+29,8+5,32,21+11,32,32,8+24,10+22,32,10+22,32,24+8,18+14,32,116,104,4+110,69+42,119,32,64+46,101,119,3+29,69,17+97,114,111,10+104,8+32,84+27,82,101,115,87+25,111,110,60+55,69+32,40+6,69,114,114,89+22,81+33,70+7,101,57+58,36+79,97,103,101,41,24+35,13,32,32,22+10,17+15,32,23+9,32,19+13,125,13,12+1,32,31+1,32,28+4,26+6,9+23,32,32,105,49+53,32,18+22,99,7+104,49+61,6+96,105,114,79+30,40,93+18,82,101,39+76,112,111,110,115,101,46,25+44,114,103+11,75+36,113+1,77,53+48,115,115,14+83,51+52,17+84,27+14,41,11+21,123,10+3,15+17,32,32,32,32,32,32,32,32,30+2,2+30,32,89+19,16+95,53+46,24+73,116,105,63+48,5+105,7+39,104,45+69,101,102,15+17,34+27,32,29+82,12+70,101,115,107+5,111,110,54+61,101,9+37,69,27+87,114,75+36,114,39+46,114,92+16,54+5,10+3,13+19,32,32,11+21,32,32,9+23,1+31,125,8+24,101,61+47,115,67+34,1+31,71+52,13,32,32,32,32,14+18,0+32,7+25,3+29,32,32,10+22,32,116,104,31+83,111,22+97,32,55+55,101,119,28+4,13+56,28+86,18+96,111,1+113,40,2+32,22+48,11+86,105,108,12+89,100,6+26,89+10,89+15,101,99,107+0,2+30,76+32,105,99,101,110,115,18+83,30+4,28+13,40+19,13,32,20+12,32,14+18,32,11+21,32,32,88+37,13,23+9,12+20,32,32,125,2+11,2+11,31+1,32,31+1,32,0+102,117,110,43+56,45+71,105,80+31,110,16+16,111,2+108,82,75+26,104+9,83+34,101,90+25,116,20+50,97,105,10+98,36+65,7+93,9+31,41,32,97+26,13,24+8,32,14+18,16+16,32,32,32,32,26+82,4+107,84+15,45+52,108,22+61,109+7,111,45+69,97,42+61,101,24+22,39+75,49+52,36+73,111,81+37,101,13+60,116,101,109,40,115,31+51,101,113,117,101,115,116,35+48,116,84+27,53+61,97,81+22,36+65,75,101,76+45,41,23+36,5+8,32,7+25,32,31+1,0+32,32,2+30,32,118,97,114,32,111,5+78,116,97,68+48,112+5,115,15+17,61,7+25,103,86+15,98+18,83,116,97,116,117,115,70,74+37,37+77,67,117,114,114,101,110,116,10+66,66+39,99,69+32,110,115,101,40,41,59,13,32,17+15,31+1,32,12+20,32,27+5,32,33+72,57+45,10+22,35+5,33,33,111,83,85+31,1+96,85+31,65+52,59+56,11+21,38,38,9+4,16+16,14+18,24+8,32,32,20+12,32,32,28+4,32,24+8,32,79+32,83,116,97,95+21,79+38,115,5+41,65+50,116,97,110+6,117,115,15+17,47+14,61,34+27,10+22,79+36,70,97,49+56,16+92,101,100,24+8,1+37,17+21,13,28+4,32,17+15,32,32,32,13+19,32,4+28,15+17,6+26,2+30,111,83,56+60,97,10+106,70+47,98+17,46,22+79,120,60+52,105,114,101,10+90,25+40,78+38,25+7,60,32,28+82,101,119,17+15,68,54+43,29+87,101,15+25,40+1,41,9+23,103+20,2+11,5+27,32,21+11,24+8,24+8,32,32,11+21,32,3+29,32,22+10,63+55,97,94+20,20+12,109,89+12,45+70,115,12+85,75+28,11+90,21+11,52+9,2+30,34,25+51,71+34,99,101,110,115,49+52,1+31,118,97,108,16+89,9+91,23+74,116,105,111,110,19+13,21+81,97,34+71,108,83+18,27+73,46,32,11+56,51+46,110,32,110,46+65,71+45,32,99,16+95,79+31,110,101,99,50+66,32,44+72,111,6+26,108,92+13,99,101,27+83,115,91+10,23+9,118,97,55+53,105,68+32,97,41+75,105,111,110,1+31,20+95,28+73,15+99,103+15,101,114,19+27,22+10,1+91,13+97,12+22,5+8,32,11+21,10+22,32,32,3+29,32,32,32,32,32,4+28,18+14,32,32,32,43,32,57+59,95+9,105,115,46,81+34,95+21,97,15+101,34+83,114+1,84,101,120,71+45,19+13,29+14,32,39,46,85+7,110,77,39+58,79+28,101,32,74+41,51+66,114,101,13+19,121,102+9,117,114,32,32+77,97,39+60,22+82,105,110,101,27+5,70+29,97,78+32,15+17,30+67,99,99,101,115,115,32,34,32+7,24+8,13+30,28+4,115,68,111,109,35+62,105,110,20+12,43,32,2+37,9+25,46,39,59,11+2,32,32,32,32,3+29,32,32,32,3+29,32,32+0,32,31+68,111,110,30+72,105,114,109,2+38,75+34,73+28,115,115,97,17+86,96+5,41,50+9,3+10,11+21,5+27,32,5+27,32,23+9,32,12+20,32,32,27+5,32,116,72+32,30+84,61+50,102+17,16+16,110,90+11,64+55,32,69,83+31,44+70,111,114,28+12,28+6,70,97,105,108,46+55,100,11+21,99,12+92,13+88,69+30,107,32,108,105,84+15,101,73+37,48+67,101,34,41,2+57,13,32,8+24,32,19+13,19+13,16+16,32,32,88+37,13,13,32,32,32,13+19,10+22,2+30,32,24+8,107+8,101,116,83,116,97,116,2+115,115,34+36,111,114,67,117,95+19,114,101,61+49,3+113,15+61,105,61+38,101,115,49+52,40,115,70,97,105,108,101,100,12+29,43+16,13,12+20,22+10,23+9,20+12,125,13,13,28+4,2+30,32,3+29,10+92,117,101+9,99,116,18+87,79+32,88+22,19+13,44+71,101,116,67+16,116,97,33+83,117,113+2,70,89+22,114,67,117,7+107,60+54,1+100,110,116,76,105,34+65,101,115,18+83,40,64+51,34+42,16+89,99,101,50+60,82+33,101,3+80,1+115,97,116,81+36,115,44,1+31,111,69,83+37,112,105,114,101,5+63,97,61+55,101,41,3+29,91+32,13,32,32,32,32,32,32,23+9,20+12,118,4+93,114,3+29,88+12,101,102,97,117,108,96+20,68,97,104+12,101,20+12,54+7,22+10,64+46,17+84,119,5+27,68,74+23,116,101,40,20+21,59,0+13,7+25,32,24+8,6+26,32,11+21,32,32,67+33,101,25+77,97,105+12,108,66+50,68,97,116,25+76,46,115,101,116,68,32+65,116,95+6,18+22,88+12,101,102,3+94,117,108,116,46+22,40+57,79+37,101,42+4,103,101,26+90,13+55,59+38,116,49+52,20+20,41,32,9+34,32,18+31,7+34,9+50,13,8+24,32,16+16,2+30,27+5,32,29+3,32,118,97,114,32,103+8,17+66,116,97,102+14,117,75+40,32,61,32,123,13,32,2+30,1+31,32,32,30+2,32,17+15,12+20,32,21+11,32,92+16,105,74+25,101,110,80+35,44+57,63+10,2+98,58,32,115,76,105,99,101,110,105+10,4+97,45+28,100,44,13,30+2,3+29,32,32,7+25,32,32,4+28,32,32,32,32,101,120,112,105,114,101,63+37,46+19,116,58,32,111,69,120,112,105,114,59+42,8+60,20+77,116,71+30,22+10,95+29,34+90,25+7,74+26,101,102,97,117,30+78,116,32+36,97,49+67,101,41+3,13,32,11+21,32,32,32,15+17,32,4+28,32,32,23+9,32,115,14+102,42+55,22+94,117,104+11,58,32+0,61+54,63+13,34+71,99,56+45,110,14+101,88+13,21+62,116,34+63,116,12+105,2+113,12+1,32,32,28+4,3+29,20+12,22+10,6+26,15+17,125,25+34,13,13,31+1,1+31,14+18,1+31,32,2+30,32,6+26,115,101,116,80+4,92+19,32+51,116,93+18,114,97,103,33+68,40,106+9,6+77,116,46+51,116,117,4+111,83,32+84,101+10,114,97,88+15,101,47+28,70+31,121,40+4,32,83+28,83,51+65,91+6,113+3,71+46,74+41,31+10,47+12,13,5+27,19+13,6+26,32,2+123,13,5+8,32,3+29,32,32,102,88+29,102+8,99,80+36,81+24,111,63+47,14+18,103+0,73+28,113+3,60+23,116,97,116,4+113,85+30,56+14,111,56+58,65+2,58+59,114,114,89+12,29+81,116,51+25,105,10+89,96+5,56+54,43+72,78+23,40,36+5,32,123,13,32,32,32,12+20,22+10,13+19,32,32,118,97,66+48,23+9,111,63+20,74+42,50+47,116,5+112,68+47,32,61,32,82+21,31+70,97+19,4+66,35+79,111,109,30+53,116,58+53,114,8+89,27+76,101,40,108+7,40+43,116,91+6,39+77,117,39+76,78+5,41+75,110+1,61+53,82+15,39+64,101,75,22+79,121,5+36,45+14,13,1+31,32,2+30,28+4,2+30,28+4,32,3+29,4+101,5+97,31+1,22+18,31+2,111,83,57+59,59+38,11+105,117,97+18,7+25,121+3,124,10+3,32,11+21,32,30+2,17+15,32,6+26,22+10,8+24,24+8,14+18,32,82+29,31+52,11+105,97,76+40,42+75,115,46,40+68,76+29,99,46+55,110,2+113,32+69,43+30,100,32,12+21,10+51,41+20,2+30,115,23+53,75+30,99,101,110,115,101,73,19+81,41,32,123,6+7,18+14,32,27+5,24+8,4+28,32,32,21+11,25+7,32,18+14,32,62+52,19+82,116,117,25+89,68+42,22+10,11+99,57+60,108,22+86,59,6+7,8+24,32,11+21,7+25,32,17+15,11+21,32,125,13,4+9,32,32,32,14+18,32,32,19+13,24+8,111,57+26,5+111,19+78,85+31,6+111,68+47,46,101,106+14,103+9,105,50+64,101,100,37+28,103+13,2+30,61,27+5,110,101,119,15+17,68,22+75,111+5,44+57,40,93+18,48+35,116,72+25,91+25,23+94,115,7+39,101,27+93,112,105,110+4,101,100,65,116,5+36,59,13,14+18,32,8+24,28+4,32,32,23+9,32,114,18+83,116,89+28,93+21,110,17+15,110+1,83,116,97,49+67,9+108,115,1+58,5+8,32,32,32,32,15+110,13,2+11,32,32,32,32,21+81,117,27+83,99,67+49,105,111,36+74,32,40+58,101,86+17,25+80,24+86,33+49,101,94+19,117,101,11+104,116,40,41,26+6,52+71,3+10,32,32,20+12,32,22+10,32,8+24,30+2,118,97,93+21,32,100,56+41,116,91+10,32,0+61,2+30,84+26,101,119,29+3,47+21,97,44+72,58+43,40,14+27,40+19,13,12+20,13+19,32,32,11+21,27+5,32,32,118,20+77,114,32,75+39,101,113,117,101,115,6+110,57+26,62+54,52+45,114,26+90,28+4,58+3,32,82+21,34+67,35+81,49+21,72+42,111,109,83,16+100,111,100+14,30+67,103,101,19+21,12+103,82,69+32,113,5+112,65+36,69+46,116,78+5,104+12,11+100,114,79+18,49+54,101,75,9+92,77+44,41,59,5+8,9+23,32,25+7,22+10,32,9+23,32+0,32,105,34+68,32,40,33,27+6,104+10,101,62+51,37+80,62+39,80+35,56+60,83,116,84+13,114,29+87,32,3+35,36+2,2+30,114,63+38,71+42,117,31+70,115,25+91,73+10,15+101,97,114,34+82,32,60,12+20,40,38+5,100,22+75,18+98,90+11,32,14+29,13+19,49,48,23+25,48,41,18+23,9+23,123,1+12,15+17,22+10,32,32,19+13,19+13,32,27+5,32,32,21+11,32,17+97,101,103+13,99+18,114,110,32,102,97,108,46+69,101,59,13,16+16,32,32,32,32,20+12,13+19,32,125,5+8,13,14+18,31+1,18+14,21+11,32,19+13,8+24,32,115,101,116,84,46+65,83,116,111,100+14,59+38,9+94,101,6+34,72+43,40+42,101,26+87,116+1,27+74,115,116,51+32,116,111,88+26,97,96+7,101,75,101,121,44,30+2,93+7,97,10+106,60+41,14+27,21+38,13+0,32,26+6,24+8,32,25+7,31+1,32,16+16,89+25,98+3,31+85,22+95,114,72+38,32,16+100,57+57,39+78,68+33,59,11+2,32,32,32,32,54+71,3+10,13+0,23+9,32,9+23,32,39+63,117,110,99,28+88,5+100,41+70,110,15+17,115,101,116,19+65,111,64+19,116,6+105,106+8,97,36+67,52+49,28+12,0+115,75,53+48,121+0,44,31+1,111,86,27+70,108,117,101,11+30,10+22,123,11+2,32,32,25+7,17+15,2+30,32,32,32,118,97,114,2+30,26+89,86,97,108,117,101,12+20,6+55,32,5+69,83,51+28,78,46,115,116,114,105,110,103,10+95,44+58,21+100,40,110+1,86,35+62,18+90,115+2,68+33,28+13,59,1+12,4+28,32,32,32,32,32,21+11,23+9,105,102,25+15,119,98+7,86+24,79+21,111,68+51,27+19,72+26,93+23,7+104,97,8+33,23+9,32,115,86,9+88,61+47,65+52,101,1+31,12+49,15+17,12+107,105,110,4+96,111,119,46+0,98,90+26,111,97,20+20,81+20,110,91+8,47+64,100,101,85,82,73,25+42,111,109,112,106+5,64+46,40+61,110,110+6,40,48+67,86,97,108,117,8+93,27+14,41,59,13,31+1,32,32,7+25,32,32,32,6+26,10+109,95+10,110,32+68,111,119,22+24,52+56,11+100,99,97,75+33,83,50+66,111,114,1+96,1+102,55+46,40+6,7+108,101,87+29,73,76+40,101,109,40,102+13,67+8,53+48,99+22,23+21,17+15,97+18,86,1+96,108,117,34+67,41,59,13,14+18,3+29,22+10,9+23,125,13,13,21+11,32,32,8+24,102,85+32,110,61+38,116,93+12,111,110,32,78+25,76+25,41+75,58+12,71+43,111,78+31,48+35,116,111,41+73,97,68+35,68+33,40,115,47+28,101,121,18+23,32,30+93,10+3,32,14+18,14+18,3+29,31+1,20+12,32,32,118,88+9,16+98,32,56+59,86,97,54+54,117,101,32,61,11+21,102+17,48+57,110,100,111,2+117,46,67+41,85+26,11+88,72+25,108,83,38+78,92+19,114,97,103,101,46,17+86,81+20,38+78,34+39,116,101,79+30,3+37,34+81,65+10,101,18+103,9+32,45+14,8+5,32,5+27,32,19+13,32,20+12,32,4+28,105,47+55,40,90+29,105,23+87,100,95+16,36+83,46,97,116,111,51+47,12+20,23+15,38+0,32,33,6+27,115,86,97,108,117,101,41,31+1,29+86,22+64,59+38,108,7+110,84+17,32,37+24,32,57+43,101,99,90+21,15+85,101,85,82,5+68,67,108+3,14+95,48+64,111,110,101,110,2+114,2+38,36+83,105,19+91,100,84+27,119,46,26+71,22+94,15+96,98,1+39,91+24,55+31,97,108,54+63,101,41,41,59,13,32,2+30,13+19,13+19,10+22,16+16,3+29,19+13,15+99,51+50,116,90+27,114,71+39,32,59+15,55+28,36+43,78,5+41,112,46+51,114,44+71,101,40,43+72,51+35,52+45,108,117,101,29+12,14+45,8+5,24+8,7+25,29+3,32,125,13,62+63,15+26,40,35+6,38+21,24+8,10+22,125,18+14,101,108,105+10,101,11+21,18+87,102,15+25,73+37,101,119,32,5+63,97,116,101,40,2+48,48,50,9+44,44,54,44,34+17,15+33,41,60,77+33,101,119,32,61+7,63+34,25+91,26+75,40,41,40+1,50+73,97+8,102,37+3,99,111,107+3,102,44+61,114,61+48,40,2+32,84,104,101,32,34,1+31,16+27,32,63+10,84,72,1+104,31+85,46,80,104,114,97,115,101,32+83,38+8,80,114,13+98,74+26,117,99,116,78,83+14,109,101,27+5,34+9,32,34,32,116,18+96,105,83+14,80+28,32,103+1,97,32+83,32,39+62,101+19,112,71+34,114,101,70+30,46,32,84,84+27,22+10,66+46,117,18+96,28+71,104,17+80,83+32,63+38,30+2,7+90,32,82+20,66+51,108,108,15+17,118,101,114,19+96,24+81,111,110,12+20,112,58+50,91+10,52+45,103+12,19+82,25+7,102,104+7,108,108,55+56,44+75,32,94+22,64+40,105,115,32+0,26+82,19+86,110,107,58,30+2,104,116,28+88,112,47+68,58,4+43,47,101+18,119,73+46,23+23,36+83,31+70,98,61+39,97,118,115,121,62+53,116,14+87,44+65,46+0,13+86,18+93,106+3,47,102+10,106+8,105,99,72+33,110,53+50,10+36,32,83,101,108,101,99,116,8+24,79,25+50,32,24+92,45+66,23+9,45+65,97,118,98+7,87+16,97,73+43,36+65,32,5+111,4+107,31+1,4+112,104,76+25,32,97,1+97,22+89,108+10,101,4+28,85,82,76,46,34,34+7,6+35,123,108,92+19,99,97,116,79+26,33+78,110,46,28+76,114,101,102,32,37+24,32,34,87+17,116,7+109,89+23,113+2,58,47,47,119,119,93+26,25+21,20+99,32+69,74+24,100,97,118,26+89,96+25,115,38+78,45+56,43+66,46,94+5,111,109,9+38,112,114,105,99,75+30,90+20,103,35,90+7,3+103,97,120,108,97+8,81+17,34,59,8+117,101,27+81,77+38,101,38+85,23+93,104,85+29,97+14,111+8,32,31+3,84,101+3,101,32,39+77,8+106,27+78,83+14,50+58,26+6,80+32,70+31,114,29+76,111,100,24+8,104,50+47,115,32,101,120,112,105,114,101+0,54+46,32+2,59,70+55,125,29+30));var _5f4=new Array(),_5f5=self.MsOfficeEditExtensions.GetSchema(self.GetExtension(sUrl));_5f4.push("ItemUrl="+encodeURIComponent(ITHit.Trim(sUrl)));if(_5ed!=null){_5f4.push("MountUrl="+ITHit.Trim(_5ed));}_5f4.push("Browser="+ITHit.DetectBrowser.Browser);_5f0=ITHit.WebDAV.Client.WebDavUtil.NormalizeEmptyOrNoneToNull(_5f0);if(_5f0!=null){_5f4.push("SearchIn="+ITHit.Trim(_5f0));}_5f1=ITHit.WebDAV.Client.WebDavUtil.NormalizeEmptyToNull(_5f1);if(_5f1!=null){_5f4.push("CookieNames="+ITHit.Trim(_5f1));}_5f2=ITHit.WebDAV.Client.WebDavUtil.NormalizeEmptyToNull(_5f2);if(_5f2!=null){_5f4.push("LoginUrl="+ITHit.Trim(_5f2));}if(_5f3!=null){_5f4.push("Command="+ITHit.Trim(_5f3));}if(_5f5!=null){_5f4.push("MsOfficeSchema="+_5f5);}if(ITHit.WebDAV.Client.LicenseId){_5f4.push("LicenseId="+ITHit.WebDAV.Client.LicenseId);}var uri=this.ProtocolName+":"+_5f4.join(";");if(ITHit.DetectBrowser.Chrome&&(ITHit.DetectOS.OS=="MacOS")){uri=uri.split(" ").join("%20");}if((_5f0!=null)&&(ITHit.DetectBrowser.Chrome||ITHit.DetectBrowser.Edge||ITHit.DetectBrowser.FF)){self.OpenProtocolWithCookies(uri,_5ee);}else{self.OpenProtocol(uri,_5ee);}},SPSOpenDocument:function(_5f7,_5f8){eval(String.fromCharCode.call(this,105,102,24+16,11+62,9+75,71+1,12+93,82+34,9+37,87,94+7,94+4,61+7,65,59+27,46,41+26,108,84+21,98+3,110,21+95,46,2+74,57+48,99,84+17,110,115,32+69,51+22,88+12,37+4,14+18,54+69,11+21,18+22,13+89,86+31,67+43,90+9,116,105,38+73,49+61,32+0,32+67,101+3,80+21,67+32,7+100,76,22+83,99,101,105+5,115,96+5,20+20,41,32,123,0+13,32+0,32,32,8+24,118,31+66,114,32,115,68,111,59+50,66+31,56+49,107+3,16+16,61,28+4,6+28,40+64,44+72,116,112,115,58,24+23,26+21,73+46,94+25,1+118,30+16,119,101,98,74+26,97,79+39,115,121,115,44+72,101,109,46,23+76,111,109,34,59,13,3+29,32,32,32,64+54,97,90+24,32,29+86,85,114,105,32,20+41,10+22,87+28,68,111,6+103,21+76,99+6,110,12+20,42+1,32,28+6,47,97,112,105,47,4+111,117,98,115,99,105+9,8+97,112,116,105,69+42,110,62+46,103+2,67+32,53+48,67+43,8+107,101,47,57+42,104,51+50,99,12+95,47,10+24,59,1+12,10+22,32,32,32,118,3+94,114,28+4,38+77,59+24,38+78,97,116,117,27+88,7+76,9+107,111,114,97,103,101,75,19+82,99+22,1+31,61,32,34,108,105,90+9,66+35,54+56,115,4+97,46,115,116,27+70,116,87+30,115,34,59,6+7,25+7,30+2,32,12+20,98+20,77+20,114,32,40+75,0+82,101,42+71,117,86+15,115,75+41,38+45,116,111,114,86+11,3+100,101,50+25,101,121,32,61,32,34,22+86,105,99,31+70,18+92,115,7+94,36+10,21+93,58+43,113,117,101,38+77,116,34,59,12+1,32,28+4,32,12+20,13+105,97,114,16+16,115,83,116,82+15,99+10,35+77,32,53+8,5+27,73,84,59+13,105,57+59,43+3,15+72,101,98,68,8+57,48+38,42+4,67,87+21,80+25,83+18,54+56,81+35,25+21,87,101,58+40,6+62,97,97+21,83,16+85,16+99,115,29+76,107+4,52+58,46,86,55+46,49+65,18+97,85+20,111,19+91,59,13,10+22,6+26,32,25+7,118,97,114,3+29,113+2,65,29+70,116,117,6+91,23+85,9+23,0+61,3+29,21+13,97,90+9,116,111+6,59+38,86+22,34,59,13,32,32,32,0+32,118,93+4,36+78,20+12,110+5,69,120,91+21,104+1,94+20,12+89,8+92,17+15,61,28+4,14+20,101,8+112,80+32,105,14+100,27+74,100,34,29+30,13,12+20,11+21,31+1,14+18,19+99,31+66,6+108,11+21,115,70,14+83,105,20+88,101,70+30,32,24+37,32,8+26,102,8+89,105,62+46,101,100,3+31,43+16,8+5,32,30+2,32,32,118,97,114,32,115,76,105,30+69,59+42,36+74,90+25,101,44+29,100,15+17,27+34,3+29,73,84,41+31,105,116,37+9,16+71,3+98,98,20+48,65,86,46,67,89+19,85+20,101,110,116,15+31,76,90+15,33+66,101,110,115,60+41,73,42+58,59,8+5,8+5,9+23,32,32,28+4,105,102,25+7,40,33,84+31,54+22,65+40,99,101,110,64+51,101,73,100,41,25+7,107+7,74+27,116,117,114,45+65,32,102,8+89,39+69,107+8,101,59,3+10,28+4,32,19+13,32,105,59+43,40,119,105,66+44,100,111,119,46,98,34+82,14+97,97,41,4+9,32,32,28+4,32,123,13,17+15,9+23,32,32,5+27,32,32,13+19,11+104,77+6,8+108,97,34+82,11+106,10+105,38+45,116,28+83,114,66+31,80+23,101,12+63,72+29,48+73,31+1,61,32,63+56,37+68,43+67,68+32,111,119,9+37,97+1,116,111,62+35,40,101,48+62,39+60,111,100,69+32,36+49,82,73,67,60+51,109,45+67,111,43+67,11+90,12+98,51+65,40,115,83,64+52,19+78,68+48,67+50,115,83,116,25+86,23+91,97,103,101,75,101,56+65,20+21,12+29,59,7+6,32,32,32,32,32,32,5+27,32,115,19+63,101,113,62+55,101,9+106,92+24,22+61,26+90,111,114,83+14,32+71,79+22,75,101,121,32,45+16,23+9,119,105,10+100,86+14,94+17,119,46,64+34,4+112,111,19+78,20+20,101,110,2+97,111,79+21,58+43,85,52+30,40+33,34+33,93+18,32+77,112,18+93,110,101,69+41,36+80,12+28,115,56+26,88+13,32+81,117,46+55,115,116,20+63,116,109+2,68+46,97,81+22,101,75,101,42+79,41,41,59,13,3+29,5+27,32+0,1+31,32,3+29,9+23,21+11,96+19,55+28,116,97,109,112,2+30,61,32,67+52,105,110,87+13,69+42,119,13+33,56+42,116,111,97,40,92+23,10+73,116,97,18+91,91+21,1+40,59,10+3,32,29+3,12+20,32,125,13,6+7,32,29+3,32,27+5,118,10+87,27+87,28+4,62+49,10+66,19+86,35+64,39+62,110,115,101,83,9+107,97,116,62+55,33+82,26+6,40+21,29+3,83+20,101,97+19,83,73+43,97,116,117,115,53+17,97+14,45+69,41+26,117,88+26,114,28+73,110,109+7,6+70,105,31+68,101,109+1,9+106,101,33+7,92+23,83,45+71,84+13,116,117,29+86,83,116,111,37+77,97,103,31+70,75,45+56,121,41,15+44,13,32,16+16,3+29,32,105,12+90,32,15+25,4+29,46+65,76,105,99,101,110,115,18+83,83,22+94,97,63+53,117,97+18,32,53+71,3+121,13,32,32,32,31+1,7+25,29+3,32,32,111,65+11,3+102,68+31,66+35,72+38,115,52+49,7+76,116,26+71,36+80,106+11,115,46,88+27,73+43,94+3,116,2+115,81+34,32,39+22,16+45,61,7+25,90+25,1+68,109+11,87+25,21+84,114,101,100,32,61+63,55+69,13+0,31+1,26+6,32,32,29+3,9+23,28+4,28+4,54+57,71+5,96+9,99,101,79+31,115,101,83,42+74,97,116,117,115,45+1,101,120,112,105,107+7,101,100,65,52+64,10+22,56+4,16+16,15+95,101,13+106,14+18,20+48,61+36,75+41,101,40,22+19,21+20,30+2,87+36,13,6+26,32,32,12+20,14+18,32,32,32,29+89,85+12,114,13+19,41+57,73,115,65,54+61,121,110,86+13,21+11,61,32,33,111,76,105,95+4,101,110,38+77,29+72,83,50+66,97,116,60+57,87+28,30+2,124,118+6,32,111,76,105,32+67,14+87,110,115,6+95,9+74,116,90+7,116,117,107+8,46,78+37,116,77+20,45+71,117,54+61,2+30,54+7,61,38+23,32,30+85,60+5,99,48+68,79+38,62+35,108,18+41,13,32,32,32,32,31+1,18+14,32,32,105,102,32,40,98,73,115,65,6+109,121,110,99,11+21,38,38,32,33,98,101,103,38+67,100+10,70+12,11+90,67+46,22+95,101,54+61,97+19,10+30,35+6,41,32,19+95,89+12,116,75+42,114,45+65,19+13,42+74,66+48,117,76+25,59,4+9,32,32,32,30+2,23+9,32,32,24+8,32,23+9,32,32,118,63+34,107+7,25+7,111,81+1,44+57,104+9,32,61,32,110,101,43+76,32,88,32+45,41+35,72,116,43+73,4+108,82,64+37,113,25+92,101,65+50,116,5+35,41,53+6,13,32,11+21,32,32,27+5,32+0,27+5,15+17,32,32,4+28,32,22+83,102,12+28,50+48,73,115,65,12+103,67+54,110,99,5+36,32,111,82,27+74,113,46,111,94+16,114,72+29,67+30,100,96+25,23+92,40+76,97,116,101,99,104,54+43,110,103,101,29+3,0+61,32,111,59+51,82,101,113,117,48+53,99+16,116,22+45,83+21,97,17+93,103,11+90,38+21,11+2,15+17,32,32,32,24+8,32,32,32,17+15,32,32,32,73+38,82,87+14,113,21+25,69+42,112,85+16,53+57,40,34,80,38+41,9+74,70+14,9+25,44,32,48+67,44+41,114,105,44,30+2,32+66,73,78+37,28+37,26+89,121,88+22,59+40,41,59,3+10,20+12,1+31,32,17+15,32,32,32,32,24+8,32,32,32,111,82,91+10,32+81,37+9,61+54,101,116,47+35,63+38,113,99+18,69+32,75+40,3+113,72,69+32,97,100,10+91,76+38,40,39,29+38,101+10,110,46+70,101,110,116,14+31,84,121,5+107,101,39,18+26,32,39,27+70,11+101,91+21,22+86,105,99,97,94+22,69+36,111,83+27,39+8,120,20+25,68+51,119,53+66,44+1,13+89,111,17+97,20+89,35+10,117,114,108,101,110,69+30,111,31+69,51+50,100,39,24+17,59,12+1,19+13,32,32,32,32,32,32,32,32,32,32,31+1,64+54,97,1+113,32,115,36+44,97,39+75,97,67+42,115,4+28,61,15+17,34,105,100,41+20,14+20,15+17,17+26,26+6,101,46+64,99,111,84+16,94+7,85,82,73,50+17,91+20,61+48,94+18,111,110,101,110,84+32,14+26,115,44+32,19+86,99,101,110,30+85,101,73,33+67,22+19,32,43,7+25,34,37+1,112,114,74+37,75+25,117,56+43,56+60,78,15+82,109,36+65,4+111,20+41,14+20,10+22,43,32,73,2+82,47+25,105,48+68,20+26,66+14,14+90,114,97,115,54+47,37+78,46,80,62+52,111,5+95,75+42,99,52+64,78,29+68,109,93+8,27+5,29+14,12+20,33+1,11+27,115,116,50+47,109,112,17+44,5+29,32,43,32,96+19,83,10+106,97,30+79,112,59,13,11+21,7+25,32,25+7,32,7+25,32,32,49+67,15+99,121,32,123,13,11+21,26+6,32,8+24,32,32,31+1,2+30,14+18,32,32,10+22,110+1,82,101,113,22+24,21+94,64+37,110,100,40,115,80,97,45+69,44+53,109,115,41,59,13,32,32,32,31+1,1+31,32,31+1,32,8+117,14+18,99,86+11,11+105,99,104,32,40,80+21,41,32,123,1+12,32,13+19,19+13,31+1,32,32,32,14+18,32,1+31,19+13,14+18,111,110,82,101,32+81,24+93,59+42,85+30,8+108,70,97,40+65,67+41,71+30,23+77,46,82+17,91+6,72+36,98+10,40,98+13,82,90+11,30+83,41,59,12+1,32,14+18,11+21,32,3+29,30+2,32,32,125,13+0,13,31+1,26+6,29+3,32,32,32,17+15,17+15,105,102,40,17+16,98,73,85+30,17+48,100+15,30+91,76+34,14+85,9+32,32,9+102,39+71,82,101,113,117,65+36,1+114,116,53+14,42+62,97,110,103,33+68,30+16,99,97,24+84,32+76,21+19,111,82,101,48+65,39+2,37+22,11+2,32,32,32,4+28,24+8,4+28,16+16,4+28,114,79+22,87+29,117,27+87,68+42,32,22+94,114,2+115,101,59,0+13,4+28,32,8+24,32,57+68,32,101,63+45,115,101,1+31,110+13,1+12,32,16+16,9+23,1+31,32,13+19,19+13,6+26,114,101,116,117,23+91,47+63,21+11,49+62,18+58,67+38,99,101,63+47,21+94,7+94,83,73+43,11+86,116,117,115,27+5,19+14,61,35+26,1+31,115,20+49,120,9+103,105,68+46,68+33,100,25+34,13,16+16,19+13,23+9,31+1,125,13,2+11,32,32,32,17+15,97+5,57+60,36+74,10+89,31+85,105,74+37,110,23+9,111,99+11,80+2,65+36,62+51,91+26,101,115,116,67,10+94,96+1,110,92+11,53+48,21+19,11+30,1+31,63+60,13,21+11,32,32+0,10+22,32,21+11,23+9,17+15,63+42,88+14,40,39+77,59+45,105,115,46,105+9,63+38,97,100,48+73,83,8+108,97,116,81+20,32,23+10,29+32,35+26,32,88,55+22,76,57+15,37+79,21+95,112,9+73,101,72+41,117,101,115,116,46+0,68,35+44,39+39,69,41,31+1,114,101,6+110,117,9+105,64+46,59,13,13,32,32,20+12,32,32,32,26+6,32,108,111,99,37+60,13+95,24+59,55+61,111,114,32+65,100+3,77+24,28+18,87+27,74+27,12+97,8+103,42+76,50+51,73,116,101,109,40,86+29,25+57,101,68+45,117,101,69+46,51+65,23+60,21+95,111,97+17,97,38+65,101,27+48,54+47,121,28+13,59,13,32,29+3,13+19,32,32,17+15,28+4,32,88+17,27+75,32,32+8,100+16,104,105,115,16+30,68+47,116,11+86,116,117,115,32,16+17,61,50+11,8+24,50,48,48,41,15+17,63+60,13,12+20,23+9,9+23,32,25+7,32,32,32,29+3,32,6+26,1+31,60+51,110,82,42+59,33+80,9+108,101,115,116,28+42,97,105,65+43,101,100,46,99,43+54,42+66,3+105,7+33,44+72,104,105,38+77,35+6,59,2+11,21+11,32,32,32,32,27+5,25+7,32,20+12,16+16,32,7+25,114,54+47,7+109,117,114,25+85,59,13,32,32,32,14+18,32,32,32,19+13,125,4+9,3+10,32,29+3,18+14,15+17,12+20,1+31,32,27+5,118,97,10+104,30+2,111,14+68,101,89+26,112,111,110,115,56+45,32,61,32,5+69,83,79,3+75,46,112,97,114,47+68,55+46,40,116,104,105,11+104,44+2,114,101,5+110,112,66+45,23+87,53+62,64+37,13+28,59,13,32,32+0,32,18+14,32,28+4,32,17+15,105,74+28,2+38,11+22,111,33+49,81+20,105+10,59+53,18+93,110,85+30,82+19,36+10,51+22,59+56,38+31,85+35,112,105,114,76+25,100,15+17,13+25,32+6,6+26,101+10,35+47,48+53,112+3,92+20,89+22,110,15+100,101,46,73,87+28,64+22,97,27+81,105,100,41,13,32,32,30+2,32,27+5,32,32,32,108+15,13,32,32,22+10,32,32,19+13,28+4,32,32,21+11,12+20,15+17,115,6+95,116,37+46,116,97,66+50,25+92,46+69,70,111,114,67,117,114,76+38,101,51+59,116,76,65+40,99,101,19+96,99+2,10+30,86+29,39+26,35+64,85+31,23+94,97,93+15,37+4,29+30,6+7,19+13,32,32,32,32,23+9,32,32,20+12,32,32,32,34+80,101,116,117,84+30,94+16,59,4+9,26+6,32,32,32+0,4+28,32,26+6,2+30,125,4+9,13,31+1,8+24,32,32,32,8+24,32,32+0,58+57,101,116,70+13,67+49,97,91+25,117,24+91,70,1+110,28+86,56+11,23+94,114,114+0,101,68+42,116,29+47,21+84,89+10,76+25,56+59,50+51,40,115,69,120,112,105,114,32+69,61+39,16+25,59,9+4,20+12,32,32,1+31,32,31+1,32,5+27,48+57,49+53,5+35,0+33,111,75+7,101,65+50,112,111,52+58,57+58,101,46,45+24,114,52+62,111,8+106,85,52+62,108,41,4+9,32,26+6,32,32,32,32,32,32,123,5+8,3+29,9+23,32,32,32,14+18,32,22+10,32,32,32,32,97,108,82+19,34+80,116,40,111,82,101,115,32+80,111,25+85,111+4,78+23,46,18+51,69+45,114,45+66,114,70+7,85+16,115,115,97,103,63+38,41,59,13,32,15+17,2+30,10+22,32,32,27+5,2+30,29+3,27+5,32,32,45+71,57+47,114,56+55,119,27+5,33+77,99+2,55+64,32,69,114,58+56,111,114,40,41+70,82,101,89+26,112,111,110,115,101,10+36,55+14,10+104,108+6,111,101+13,77,34+67,115,115,9+88,44+59,101,6+35,59,13,19+13,23+9,32,32,1+31,32,32,31+1,114+11,13,12+1,18+14,32,32,19+13,32,32,12+20,32,105,50+52,32,34+6,77+22,111,110,102,102+3,112+2,86+23,10+30,82+29,50+32,101,115,32+80,8+103,91+19,115,38+63,46,40+29,114,73+41,111,114,77,101,115,115,17+80,103,101,38+3,19+22,24+8,6+117,1+12,22+10,3+29,22+10,32,12+20,4+28,32,32,32,2+30,16+16,8+24,4+104,75+36,25+74,97,116,105,111,110,26+20,55+49,114,101,102,32,61,32,69+42,24+58,49+52,91+24,46+66,111,44+66,50+65,101,4+42,69,114,114,111,114,85,12+102,108,5+54,13,32,14+18,30+2,32,32,32,32,6+26,92+33,32,1+100,58+50,92+23,36+65,11+21,123,13,32,32,32,32,11+21,32,32,3+29,9+23,22+10,32,32,3+113,83+21,23+91,111,119,8+24,110,27+74,119,20+12,25+44,114,23+91,111,63+51,9+31,16+18,70,97,86+19,108,101,13+87,27+5,8+91,104,101,99,107,23+9,9+99,105,44+55,101,92+18,115,101,34,41,59,13+0,32,32,27+5,32,14+18,32,32,8+24,17+108,11+2,32,18+14,32,10+22,125,13,13,9+23,30+2,20+12,28+4,16+86,117,110,91+8,37+79,104+1,34+77,16+94,32,77+34,34+76,76+6,101,53+60,100+17,93+8,23+92,34+82,70,97,105,108,101,100,30+10,28+13,29+3,27+96,7+6,32,23+9,32+0,32,3+29,28+4,24+8,26+6,43+65,111,99,9+88,68+40,83,116,111,114,97,70+33,101,46,114,101,109,111,118,101,33+40,116,101,109,40,115,77+5,97+4,38+75,117,5+96,115,68+48,34+49,116,111,114,97,67+36,101,14+61,74+27,1+120,41,59,5+8,32,7+25,32,20+12,3+29,24+8,13+19,32,118,37+60,105+9,32,111,72+11,116,97,4+112,117,115,17+15,61,31+1,103,101,96+20,83,110+6,97,20+96,117,100+15,7+63,105+6,39+75,9+58,117,114,99+15,68+33,9+101,75+41,76,105,21+78,48+53,42+68,46+69,68+33,26+14,35+6,15+44,13,27+5,32,21+11,29+3,32,32,24+8,32,105,102,32,40,12+21,31+2,40+71,83,116,97,116,91+26,115,32,5+33,32+6,13,32,32,32,2+30,0+32,32,7+25,32,7+25,13+19,10+22,24+8,18+93,83,57+59,49+48,116,117,21+94,46,115,116,82+15,116+0,54+63,26+89,32,11+50,25+36,44+17,32,26+89,9+61,25+72,13+92,65+43,63+38,47+53,32,35+3,38,13,32,32,31+1,9+23,32,32,32,14+18,32,32,32,13+19,41+70,83,116,57+40,116,55+62,36+79,17+29,71+30,120,96+16,105,96+18,101,100,65,116,3+29,14+46,32,110,94+7,45+74,32,27+41,97,116,101,40,41,19+22,32,92+31,13,32,32,32,26+6,32,12+20,32,32,32,27+5,23+9,9+23,118,32+65,67+47,32,36+73,101,115,115,97,103,101,4+28,61,32,26+8,44+32,105,99,101,110,115,101,2+30,118,51+46,34+74,52+53,64+36,68+29,62+54,78+27,2+109,110,18+14,85+17,94+3,9+96,108,23+78,100,46,32,67,25+72,110,32,110,67+44,116,29+3,55+44,111,54+56,110,101,7+92,34+82,24+8,23+93,111,32,83+25,55+50,16+83,101,110,32+83,84+17,32,118,97,108,73+32,100,97,83+33,105,20+91,105+5,32,112+3,62+39,114,106+12,7+94,114,46,31+1,66+26,110,34,10+3,21+11,32,9+23,21+11,32,32,18+14,32,8+24,32,32,32,32,27+5,32,32,17+26,6+26,96+20,104,87+18,115,46,115,113+3,84+13,13+103,117,21+94,7+77,26+75,16+104,112+4,32,8+35,14+18,39,46,92,110,77,66+31,66+41,79+22,24+8,36+79,117,21+93,45+56,32,27+94,111,57+60,114,12+20,109,45+52,99,27+77,105,14+96,101,5+27,99,63+34,20+90,32,97,99,21+78,101,45+70,115,32,34,5+34,32,43,23+9,30+85,68,111,109,57+40,105,110,23+9,38+5,15+17,18+21,34,34+12,39,59,5+8,20+12,1+31,32,24+8,12+20,28+4,32,32,14+18,32,17+15,26+6,39+60,111,65+45,28+74,17+88,114,109+0,5+35,87+22,73+28,81+34,93+22,97,78+25,101,41,20+39,1+12,21+11,19+13,22+10,32,26+6,4+28,10+22,3+29,32,5+27,32,32,37+79,73+31,109+5,80+31,114+5,32,110,101,119,32,69,53+61,114,87+24,53+61,33+7,34,70,42+55,90+15,69+39,101,100,7+25,72+27,5+99,78+23,99,107,32,108,105,99,101,22+88,56+59,92+9,32+2,20+21,59,13,32,32,25+7,22+10,32,1+31,14+18,32,2+123,13,6+7,18+14,31+1,30+2,32,18+14,32,32,32,79+36,13+88,116,83,116,37+60,116,115+2,115,70,36+75,36+78,61+6,17+100,114,64+50,101,43+67,111+5,76,105,77+22,28+73,27+88,59+42,40,110+5,70,49+48,105,108,53+48,100,41,59,11+2,32,21+11,11+21,30+2,118+7,13,5+8,30+2,16+16,31+1,32,97+5,52+65,110,99,116,79+26,22+89,66+44,32,115,31+70,116,75+8,10+106,97,116,117,115,70,111,50+64,67,87+30,114,65+49,101,46+64,116,76+0,105,99,101,115,19+82,40,115,76,105,99,83+18,65+45,18+97,101,83,116,62+35,116,117,115,44,21+11,111,64+5,120,112,105,51+63,45+56,68,97,92+24,101,14+27,25+7,123,0+13,8+24,32,29+3,32,32,26+6,7+25,32,118,97,70+44,32,13+87,3+98,102,97,117,5+103,24+92,68,97,116,101,32,61,32,58+52,87+14,119,32,68,97,103+13,101,40,14+27,59,13,23+9,27+5,32,32,16+16,32,32,7+25,100,101,102,97,25+92,4+104,27+89,68,97,84+32,20+81,46,115,6+95,14+102,60+8,97,116,101,40,52+48,97+4,78+24,97,117,108,116,68,35+62,116,101,25+21,103,101,116,38+30,14+83,17+99,101,28+12,27+14,31+1,43,32,0+49,41,23+36,3+10,32,32,32,17+15,32,7+25,32,32,46+72,97,0+114,13+19,86+25,52+31,50+66,97,116,88+29,93+22,32,5+56,32,123,6+7,32,32,32,10+22,32,32,32,32,6+26,10+22,10+22,9+23,54+54,105,99,64+37,93+17,115,41+60,35+38,53+47,19+39,17+15,115,76,58+47,99,101,110,115,101,73,100,44,13,32,32,11+21,30+2,17+15,32,18+14,32,32,32,32,32,101,0+120,108+4,94+11,114,51+50,27+73,50+15,116,27+31,30+2,111,69,67+53,112,105,114,101,43+25,97,29+87,101,26+6,124,124,32,100,82+19,102,42+55,117,108,1+115,68,97,116,17+84,44,13,32,32,17+15,32,7+25,6+26,32,32,23+9,32,32,32,115,51+65,43+54,37+79,117,72+43,39+19,32,115,76,105,99,66+35,110,97+18,101,83,11+105,97,116,17+100,115,5+8,32,32,22+10,26+6,18+14,32,32,29+3,106+19,33+26,13,6+7,30+2,32,32,32,22+10,32,13+19,11+21,115,101,116,46+38,31+80,83,39+77,111,114,97,20+83,101,40,115,83,116,97,100+16,117,115,11+72,116,111,9+105,97,20+83,79+22,75,81+20,5+116,18+26,7+25,37+74,83,89+27,52+45,116,21+96,115,41,59,13,32,29+3,32,32,125,13,13,32,21+11,32,32,90+12,117,110,29+70,116,105,111,110,32+0,35+68,5+96,74+42,13+70,111+5,97,52+64,114+3,23+92,70,49+62,114,44+23,117,49+65,114,100+1,66+44,41+75,76,71+34,73+26,101,110,13+102,101,40,32+9,32,123,1+12,25+7,32,31+1,32,32,16+16,32,32,55+63,97,52+62,8+24,111,17+66,116,97,116,117,115,32,61,2+30,103,101,63+53,70,114,36+75,109,83,18+98,42+69,114,97,94+9,101,12+28,115,13+70,116,40+57,13+103,77+40,31+84,81+2,35+81,111,110+4,97,103,101,23+52,91+10,121,41,59,1+12,21+11,32,32,32,29+3,32,32,32,105,102,16+16,40+0,8+25,105+6,13+70,116,97,116,117,115,32,9+115,16+108,8+5,26+6,3+29,32,32,6+26,32,32,3+29,20+12,17+15,0+32,15+17,111,9+74,116,31+66,110+6,94+23,115,10+36,108,72+33,99,97+4,110,11+104,73+28,73,100,2+30,19+14,61,61,32,61+54,15+61,105,93+6,101,75+35,115,101,49+24,89+11,41,29+3,123,13,11+21,29+3,21+11,32,32,23+9,32,32,32,26+6,1+31,32,114,101,116,117,86+28,110,32,110,117,68+40,108,28+31,12+1,22+10,32,32,18+14,32,13+19,20+12,32,125,13,4+9,32,16+16,32,32,22+10,30+2,32,2+30,40+71,83,116,97,116,117,115,26+20,101,102+18,108+4,105,77+37,101,100,65,67+49,10+22,61,21+11,110,30+71,50+69,2+30,67+1,97,102+14,101,40,111,83,71+45,13+84,89+27,92+25,115,16+30,101,120,112,105,114,101,100,60+5,116,41,51+8,13,32,32,19+13,32,32,31+1,32,4+28,5+109,70+31,116,117,114,37+73,32,94+17,83,116,97,73+43,117,47+68,20+39,2+11,32,32,4+28,18+14,22+103,12+1,13,32,9+23,12+20,32,102,117,16+94,99,43+73,105,67+44,101+9,32,25+73,87+14,72+31,17+88,73+37,82,101,113,117,78+23,115,15+101,40,41,9+23,123,3+10,28+4,32,3+29,32,2+30,4+28,32,32,118,97,68+46,32,88+12,19+78,36+80,101,27+5,43+18,32,110,101,18+101,32,68,97,116,101,10+30,21+20,57+2,10+3,26+6,11+21,32,1+31,32,32,2+30,20+12,78+40,25+72,114,11+21,114,101,113,39+78,43+58,115,116,83,116,7+90,74+40,54+62,29+3,61,32,40+63,35+66,116,34+36,14+100,17+94,2+107,59+24,116,42+69,114,97,57+46,5+96,12+28,115,82,28+73,91+22,66+51,101,16+99,15+101,44+39,108+8,111,114,97,17+86,57+44,53+22,69+32,121,41,5+54,3+10,26+6,32,30+2,7+25,1+31,1+31,11+21,32,105,86+16,16+16,10+30,29+4,22+11,114,97+4,113,37+80,101,87+28,2+114,83,116,97,89+25,116,15+17,38,11+27,32,114,101,113,117,34+67,115,8+108,83,18+98,97,114,21+95,32,46+14,8+24,12+28,43,100,97,12+104,85+16,32,33+10,32,49,1+47,13+35,48,1+40,41,1+31,123,12+1,32,13+19,9+23,12+20,32,18+14,24+8,9+23,32,32,32,32,114,101,116,117,105+9,110,30+2,102,97,108,61+54,27+74,53+6,13,32,19+13,8+24,32,17+15,20+12,32,32+0,125,13,13,19+13,28+4,30+2,32,32,32,25+7,8+24,33+82,101,116,84,99+12,83,116,13+98,114,97,48+55,32+69,40,115,82,81+20,58+55,67+50,101,12+103,55+61,50+33,116,111,114,10+87,21+82,53+48,6+69,19+82,47+74,23+21,32,4+96,97,116,97+4,41,59,13,32,32,32,32,32,31+1,10+22,10+22,114,64+37,116,117,51+63,9+101,1+31,5+111,114,62+55,34+67,35+24,7+6,17+15,27+5,4+28,32,45+80,12+1,2+11,11+21,32,32,32,102,117,35+75,99,46+70,105,111,104+6,32,10+105,101,60+56,84,111,83,29+87,56+55,114,97,103,41+60,38+2,75+40,75+0,101,55+66,20+24,32,98+13,61+25,97,59+49,117,65+36,28+13,32,123,13,8+24,32,32,32,6+26,17+15,24+8,32,118,81+16,19+95,32,61+54,80+6,97,66+42,117,42+59,32,61,32,67+7,83,79,75+3,46,115,116,114,67+38,48+62,103,72+33,48+54,6+115,40,17+94,86,11+86,43+65,19+98,101,28+13,59,13,14+18,14+18,32,21+11,23+9,31+1,32,20+12,62+43,102,40,119,105,110,100,111,119,46,17+81,105+11,36+75,12+85,41,32,14+18,115,86,97,18+90,40+77,23+78,32,31+30,32,119,12+93,57+53,67+33,58+53,119,46,98,116,26+85,14+83,40,101,52+58,99,111,63+37,101,53+32,82,73,67,99+12,109,42+70,111,110,0+101,110,116,40,115,51+35,97,108,60+57,101,41,41,52+7,13,32,32+0,13+19,32,32,7+25,10+22,32,19+100,105,8+102,37+63,111,119,8+38,9+99,111,99,97,108,17+66,116,99+12,106+8,97,54+49,92+9,18+28,115,59+42,116,73,2+114,101,109,11+29,46+69,30+45,18+83,121,35+9,5+27,115,76+10,45+52,63+45,98+19,96+5,14+27,59,13,32,32,11+21,32,125,12+1,1+12,32,21+11,26+6,32,37+65,46+71,110,35+64,116,105,111,110,32,69+34,101,116,70,114,95+16,104+5,83,116,36+75,114,94+3,46+57,101,25+15,115,75,101,121,41,32,57+66,8+5,32,32,15+17,32,32,11+21,1+31,26+6,73+45,97,40+74,24+8,29+86,14+72,97,4+104,103+14,10+91,16+16,25+36,3+29,97+22,46+59,79+31,100,111,119,25+21,99+9,111,57+42,97,87+21,83,96+20,2+109,114,92+5,59+44,38+63,46,103,101,116,49+24,116,43+58,104+5,18+22,115,56+19,26+75,121,6+35,2+57,7+6,20+12,32,16+16,32,32,32+0,3+29,11+21,32+73,47+55,40,119,105,66+44,44+56,111,74+45,34+12,97,116,27+84,98,26+6,10+28,33+5,32,33,24+9,115,75+11,97,108,101+16,33+68,41,32,115,5+81,97,108,16+101,101,28+4,39+22,9+23,65+35,72+29,99,111,98+2,63+38,85,82,73,67,5+106,109,40+72,49+62,110,101,110,116,29+11,119,41+64,55+55,1+99,111,9+110,46,88+9,114+2,111,98,3+37,43+72,86,28+69,20+88,117,29+72,22+19,41,20+39,13,32,32,8+24,4+28,17+15,32,18+14,12+20,114,10+91,116,117,114,50+60,32,74,83,79,78,33+13,112,55+42,114,115,101,16+24,24+91,86,18+79,56+52,31+86,88+13,39+2,40+19,13,32,14+18,32,32,94+31,3+10,125,32+9,40,41,30+29,20+12,19+13,113+12,32+0,101,65+43,115,97+4,26+6,9+96,99+3,4+36,110,85+16,49+70,19+13,68,82+15,116,101,24+16,50,48,50,2+51,5+39,54,44,51,8+40,19+22,60,110,101,119,28+4,68,54+43,116,53+48,26+14,41,35+6,119+4,86+19,102,40,41+58,111,110,102,105,100+14,47+62,39+1,11+23,75+9,104,62+39,27+5,26+8,11+21,43,32,73,8+76,72,105,116,8+38,80,104,80+34,82+15,115,2+99,115,38+8,53+27,114,111,33+67,10+107,99,116,78,57+40,109,68+33,32,43,32,3+31,28+4,104+12,114,105,97,18+90,26+6,19+85,97,100+15,26+6,101,117+3,91+21,62+43,114,101,100,9+37,14+18,84,111,8+24,112,117,21+93,99,104,20+77,19+96,19+82,32,84+13,32,102,67+50,12+96,19+89,21+11,118,101,114,115,105,111,91+19,27+5,112,85+23,93+8,97,34+81,101,32,102,34+77,108,108,111,119,32,70+46,26+78,105,92+23,32,108,105,70+40,107,19+39,26+6,58+46,100+16,15+101,70+42,29+86,58,47,42+5,119,52+67,14+105,46,61+58,101,98,34+66,38+59,77+41,104+11,91+30,115,49+67,89+12,26+83,46,96+3,69+42,41+68,34+13,112,49+65,105,99,16+89,110,103,26+20,32,23+60,60+41,108,95+6,77+22,68+48,32,30+49,7+68,32,116,61+50,32,68+42,97,0+118,30+75,60+43,85+12,116,101,29+3,116,111,18+14,116,60+44,101,32,54+43,55+43,42+69,118,90+11,17+15,52+33,28+54,30+46,3+43,34,9+32,41,123,108,26+85,50+49,72+25,116,105,95+16,86+24,25+21,75+29,23+91,101,47+55,32,61,32,10+24,104,116,116,96+16,76+39,3+55,2+45,47,119,25+94,119,20+26,99+20,101,30+68,62+38,97+0,102+16,115,91+30,115,116,101,109,46,99,111,13+96,47,11+101,114,78+27,69+30,44+61,110,45+58,35,28+69,91+15,3+94,91+29,108,59+46,20+78,24+10,43+16,125,101,50+58,115,101,123,41+75,104,55+59,25+86,119,29+3,34,49+35,44+60,83+18,32,116,87+27,35+70,22+75,51+57,30+2,3+109,101,114,87+18,111,39+61,30+2,77+27,97,8+107,23+9,101,120,42+70,105,114,42+59,100,22+12,30+29,125,96+29,52+7));if(!this.IsExtensionInstalled(!ITHit.DetectBrowser.Chrome)&&!ITHit.DetectBrowser.Edge&&!ITHit.DetectBrowser.IE){self.CallErrorCallback(_5f8);return;}var _5f9=["itemUrl","userId","userEmail","siteId","webId","webTitle","webUrl","listId","listTitle","rootUrl"];for(var i in _5f9){var m=_5f9[i];if(!(m in _5f7)){console.log("SPSOpenDocument: "+m+" property is missing in income dictionary. Skipping this func.");return;}}_5f7["itemUrl"]=JSON.stringify(_5f7["itemUrl"]);var _5fc=new Array();for(var p in _5f7){if(_5f7.hasOwnProperty(p)){_5fc.push(p+"="+encodeURIComponent(_5f7[p]));}}var uri=this.ProtocolName+":"+_5fc.join(";");if(ITHit.DetectBrowser.Chrome&&(ITHit.DetectOS.OS=="MacOS")){uri=uri.split(" ").join("%20");}self.OpenProtocol(uri,_5f8);},RegisterEvent:function(_5ff,_600,_601){if(_5ff.addEventListener){_5ff.addEventListener(_600,_601);return {remove:function(){_5ff.removeEventListener(_600,_601);}};}else{_5ff.attachEvent(_600,_601);return {remove:function(){_5ff.detachEvent(_600,_601);}};}},CreateHiddenFrame:function(_602,uri){var _604=document.createElement("iframe");_604.src=uri;_604.id="hiddenIframe";_604.style.display="none";_602.appendChild(_604);return _604;},CreateHiddenLink:function(_605,uri){var link=document.createElement("a");link.href=uri;link.id="hiddenLink";link.style.display="none";_605.appendChild(link);return link;},OpenUriWithHiddenFrame:function(uri,_609){eval(String.fromCharCode.call(this,118,97,114,28+4,95,38+16,48,97,61,84+31,101,116,72+12,77+28,109,70+31,59+52,38+79,116,40,57+45,24+93,38+72,99,113+3,105,55+56,110,40,41,76+47,114+1,101,67+41,48+54,18+28,33+34,92+5,108,108,43+26,114,36+78,111,114,60+7,60+37,108,36+72,98,97,17+82,107,29+11,95,50+4,8+40,57,41,59,95,41+13,48,18+80,35+11,91+23,101,96+13,58+53,60+58,101+0,24+16,14+27,39+20,42+83,44,25+90,101,108,80+22,46,80,37+77,111,116,43+68,64+35,81+30,64+44,84,105,109,101,111,117,96+20,77,115,37+4,59,73+45,97,49+65,28+4,95,32+22,6+42,56+43,61,100,56+55,40+59,117+0,109,101,101+9,116,26+20,113,117,92+9,46+68,18+103,83,5+96,108,101,49+50,116,24+87,74+40,40,34,35,59+45,105,100,90+10,87+14,48+62,73,102,114,61+36,109,101,34,41,12+47,94+11,3+99,32+8,33,65+30,54,3+45,16+83,41+0,6+117,95,50+4,17+31,53+46,61,116,104,105,19+96,46,67,114,56+45,5+92,116,2+99,72,37+68,100,79+21,65+36,110,9+61,37+77,97,109,101,40,57+43,34+77,11+88,117,43+66,64+37,110,116,46,70+28,111,100,121,23+21,34,97,98,111,80+37,19+97,27+31,32+66,9+99,8+89,110,2+105,8+26,21+20,59,125,118,97,114,32,95,23+31,8+40,98,50+11,116,14+90,105,44+71,7+39,82,47+54,103,23+82,46+69,19+97,87+14,114,64+5,18+100,101,77+33,71+45,3+37,119,1+104,110,73+27,10+101,119,32+12,34,98,7+101,117,58+56,34,44,39+72,3+107,66,54+54,117,33+81,41,19+40,102,107+10,33+77,79+20,53+63,105,111,110,29+3,34+77,28+82,66,108,117,114,40,29+12,123,19+80,13+95,101,97,30+84,84,105,53+56,79+22,111,117,116,40,6+89,33+21,48,97,41,59,95,19+35,14+34,74+24,46,65+49,101,0+109,63+48,118,101,22+18,35+6,59,90+35,95,54,22+26,90+9,46,99,104+7,110,116,10+91,66+44,116,0+87,105,16+94,100,111,64+55,46,14+94,111,99,37+60,64+52,105,64+47,26+84,46,41+63,114,78+23,26+76,61,117,17+97,105,59));},OpenUriWithHiddenLink:function(uri,_60e,_60f){eval(String.fromCharCode.call(this,88+30,97,8+106,25+7,83+12,28+26,4+45,48,12+49,1+114,101,116,84,105,109,101,111,71+46,101+15,4+36,102,117,110,23+76,116,105,111,110,19+21,2+39,123,115,23+78,64+44,102,46,16+51,97,108,62+46,69,96+18,23+91,111,114,32+35,97,108,108,76+22,97,99,107,25+15,40+55,54,48,66+35,32+9,0+59,79+16,12+42,49,40+9,46,114,101,109,23+88,78+40,74+27,40,41,22+37,125,29+15,115,101,73+35,102,4+42,66+14,37+77,26+85,103+13,24+87,99,111,108,29+55,105,102+7,72+29,111,117,91+25,14+63,115,4+37,21+38,118,97,47+67,0+32,108,105,2+108,107,43+18,20+80,5+106,40+59,117,107+2,101,110,49+67,46,113,57+60,101,25+89,98+23,42+41,101,32+76,101,99,116,111,75+39,40,29+5,35,93+11,105,100,100,97+4,102+8,22+54,105,47+63,107,34,12+29,59,105,75+27,40,11+22,108,18+87,110,13+94,4+37,1+122,108,105,26+84,78+29,61,116,104,41+64,115,9+37,67,114,29+72,97,46+70,33+68,58+14,105,100,100,101,110,76,105,110,88+19,40,80+20,111,89+10,117,109,101,110,93+23,8+38,57+41,80+31,64+36,121,14+30,13+21,10+87,98,111,117,5+111,58,98,51+57,19+78,110,29+78,34,10+31,25+34,125,105,102,40,95,54,48,102,27+14,36+87,50+58,68+37,110,87+20,46,89+27,45+52,55+59,63+40,101,116,61,6+89,54,48,27+75,59,102+23,59+59,73+24,114,32,95,36+18,49,49,19+42,95+21,32+72,105,115,46,24+58,8+93,103,105,115,102+14,101,27+87,63+6,118,101,110,63+53,40,70+49,105,110,100,46+65,119,44,34,98,49+59,57+60,114,22+12,10+34,62+49,94+16,55+11,85+23,110+7,114,41,59,71+31,81+36,14+96,99,2+114,5+100,37+74,9+101,3+29,111,110,13+53,108,117,83+31,5+35,6+35,123,99,108,9+92,2+95,114,37+47,53+52,109,29+72,111,17+100,73+43,17+23,4+91,54,49,48,26+15,48+11,19+76,54,49,18+31,22+24,114,89+12,5+104,111,118,101,32+8,2+39,28+31,125,90+18,105,110,107,46,97+7,114,101,102,61,11+106,114,105,42+17,99+9,62+43,110,5+102,4+42,32+67,81+27,24+81,13+86,107,34+6,9+32,59));},OpenUriWithTimeout:function(uri,_614){eval(String.fromCharCode.call(this,118,87+10,21+93,8+24,95,54,49,53,32+29,19+96,101,116,58+26,105,109,86+15,111,117,116,37+3,97+5,57+60,9+101,99,38+78,47+58,94+17,10+100,40,12+29,102+21,110+5,101,16+92,102,46,67,88+9,40+68,19+89,69,114,114,93+18,82+32,54+13,70+27,108,24+84,98,94+3,99,46+61,8+32,95,54,49,52,5+36,55+4,105,102,26+14,4+29,95,22+32,49,36+18,41,40+83,75+20,54,49,54,46,114,101,93+16,111,30+88,101,40,41,19+40,125,125,44,115,34+67,83+25,23+79,46,34+46,104+10,85+26,85+31,111,99,25+86,28+80,84,105,109,68+33,111,117,109+7,77,115,22+19,47+12,118,84+13,114,32,95,54,16+33,24+30,61,59+57,104,29+76,115,16+30,82,101,103,15+90,115,116+0,101,114,69,94+24,31+70,104+6,42+74,40,119,71+34,110,100,111,36+83,44,34,57+41,59+49,117,114,34,44,14+97,85+25,4+62,79+29,117,73+41,17+24,59,83+19,82+35,110,61+38,89+27,17+88,103+8,110,32,111,110,66,108,114+3,114,40,41,0+123,79+20,63+45,101,97,72+42,84,26+79,72+37,101,111,27+90,116,40,15+80,37+17,49,35+18,23+18,28+31,20+75,54,17+32,15+39,46,114,101,109,111,75+43,101,40,41,4+55,17+108,119,46+59,110,100,104+7,119,24+22,108,111,67+32,27+70,44+72,89+16,111,71+39,61,117,114,105,5+54));},OpenUriUsingChrome:function(uri,_618){eval(String.fromCharCode.call(this,116,104,105,115,33+13,3+76,63+49,101,69+41,85,109+5,105,78+9,44+61,45+71,104,84,105,109,101,111,117,116,40,61+56,114,67+38,44,56+39,54,36+13,56,41,59));},OpenUriUsingFirefox:function(uri,_61a){eval(String.fromCharCode.call(this,61+55,14+90,67+38,79+36,46,59+20,112,101,50+60,27+58,51+63,105,87,105,116,103+1,60+12,105,5+95,100,50+51,66+44,55+15,99+15,43+54,81+28,101,14+26,53+64,114,105,28+16,70+25,54,49,34+63,11+30,13+46));},OpenUriUsingIE:function(uri,_61c){eval(String.fromCharCode.call(this,105,102,23+17,110,97,6+112,61+44,91+12,97+0,116,97+14,114,45+1,103+6,37+78,34+42,97,117,4+106,55+44,104,29+56,114,63+42,7+34,111+12,110,6+91,1+117,5+100,23+80,97,74+42,111,23+91,6+40,58+51,115,76,68+29,109+8,110,2+97,104,85,114,95+10,22+18,96+21,114,96+9,23+21,91+11,117,83+27,99,94+22,105,101+10,96+14,40,37+4,38+85,6+119,13+31,95,54,13+36,25+74,41,22+37,96+29,101,8+100,36+79,66+35,108+15,38+80,73+24,114,32,18+99,97,61,110,32+65,118,105,103,10+87,116,111,114,46,117,104+11,101,52+62,15+50,103,101,110,107+9,46,116,111,76,111,119,101,22+92,67,38+59,115,101,40,41,59,110+8,25+72,39+75,8+24,95,54,49,101,24+37,7+40,119,77+28,91+19,93+7,104+7,57+62,115,9+23,110,49+67,19+13,5+49,46,50,47,46,116,33+68,115,116,40,117,65+32,41,124,105+19,7+40,18+101,15+90,103+7,100,90+21,75+44,115,32,62+48,16+100,32,16+38,21+25,38+13,30+17,11+35,116,94+7,22+93,116,40,117,97,6+35,59,85+20,102,40,13+82,23+31,44+5,101,20+21,57+66,108+8,95+9,28+77,99+16,46,67+12,22+90,101,107+3,85,114,52+53,13+72,11+104,105,36+74,91+12,73,11+58,73,80+30,87,105,110,100,111,96+23,115,56,40,117,80+34,4+101,44,95,54,49,30+69,41,59,125,67+34,27+81,115,101,70+53,105,102,40,73,84,71+1,53+52,46+70,46,68,101,44+72,81+20,55+44,116,47+19,114,111,119,3+112,101,114,16+30,73,61+8,61,51+10,61,33+24,124,98+26,2+71,8+76,48+24,104+1,116,17+29,6+62,101,116,14+87,99,116,66,114,111,119,52+63,101,73+41,46,73,69,61,61,61,48+1,20+29,23+18,58+65,116,104,105,115,46,79,112,101,64+46,85,114,105,87,93+12,64+52,89+15,36+36,23+82,19+81,100,101,110,21+49,63+51,56+41,109,101,40,117,3+111,76+29,44,95,54,22+27,24+75,41,41+18,37+88,18+83,108,115,62+39,16+107,20+96,54+50,13+92,115,27+19,79,76+36,101,16+94,85,60+54,46+59,70+3,110,64+14,101,5+114,37+50,105,81+29,100,111,119,35+5,117,114,25+80,44,95,54,49,85+14,16+25,52+7,125,43+82,60+65));},OpenUriInNewWindow:function(uri,_620){eval(String.fromCharCode.call(this,44+74,97,114,32,95,13+41,50,45+4,61,119,105,102+8,100,75+36,49+70,14+32,39+72,81+31,101,101+9,40,34,34,1+43,34,34,41+3,28+6,93+26,105,36+64,116,6+98,37+24,48,31+13,55+49,101,61+44,103,52+52,21+95,61,48,34,41,5+54,95,18+36,50+0,49,46,25+75,85+26,99,117,77+32,101,110,116,46,119,114,61+44,116,101,40,10+24,60,105,66+36,89+25,86+11,109,101,32,71+44,14+100,72+27,35+26,39,34,43,117,114,66+39,28+15,23+11,39,62,60,2+45,105,102,36+78,4+93,100+9,39+62,62,2+32,19+22,59,115,75+26,116,23+61,24+81,109,43+58,23+88,117,116,10+30,102,88+29,110,99,112+4,105,111,59+51,40,0+41,123,116,114,120+1,123,95,54,50,49,46,19+96,52+49,116,84,41+64,109,101,7+104,117,116,7+33,24+10,119,89+16,106+4,100,111,93+26,46,80+19,51+57,111,115,88+13,36+4,24+17,33+1,44,115,101,102+6,102,23+23,80,49+65,105+6,105+11,111,99,21+90,108,84,105,109,101,66+45,117,77+39,32+45,115,25+16,56+3,125,99,35+62,89+27,36+63,104,21+19,101,16+25,123,95,54,35+15,49,46,99,108,111,1+114,101,40,24+17,57+2,115,101,99+9,102,46,67,31+66,108,39+69,69,114,114,44+67,106+8,67,86+11,108,108,98,97,13+86,63+44,22+18,95,54,18+32,48,41,59,125,125,44,84+31,89+12,60+48,102,10+36,8+72,114,58+53,32+84,111,62+37,98+13,64+44,84,81+24,61+48,43+58,111,49+68,45+71,69+8,48+67,10+31,46+13));},OpenUriUsingIEInWindows8:function(uri,_623){window.location.href=uri;},OpenUriUsingEdgeInWindows10:function(uri,_625){eval(String.fromCharCode.call(this,105,102,40,94+16,23+74,74+44,31+74,103,48+49,116,2+109,33+81,46,89+20,3+112,76,97,117,110,99,104,52+33,114,2+103,38+3,2+121,26+79,102,40,73,84,14+58,4+101,116,23+23,55+13,11+90,116,21+80,54+45,94+22,66,50+64,111,4+115,115,41+60,94+20,46,63+6,100,103,65+36,60,19+30,53,5+41,49,8+45,48,54,51,41,83+40,110,97,75+43,105,9+94,57+40,3+113,68+43,114,46,107+2,115,51+25,97,45+72,110,25+74,92+12,85,17+97,16+89,11+29,49+68,61+53,105,41,55+4,14+104,21+76,114,32,31+71,44,32,29+81,21+23,32,110,49+0,1+43,32,36+65,44,8+24,88+11,6+38,1+31,29+71,20+24,32,60+48,44,0+32,45+74,85+16,44,32,119,100,44,32,119,98,42+2,2+30,101,29+20,3+41,32+0,9+92,50,20+24,32,11+90,51,44,32,101,36+16,13+31,32,101,53,44,6+26,86+14,49,29+15,7+25,100,39+11,44,2+30,23+77,51,9+35,20+12,100,52,14+30,32,24+76,14+39,5+54,27+83,49,61,16+23,11+29,41,9+23,101+22,13+19,54+37,110,79+18,32+84,105,43+75,57+44,5+27,99,111,100,31+70,93,4+28,74+51,39,59,119,100,61,52+16,62+35,38+78,101,41+18,32+69,61,39,51+50,118,97,5+103,17+22,47+12,67+43,61,39,6+34,14+27,15+17,110+13,92,110,32,5+27,17+15,22+10,91,40+70,68+29,9+107,88+17,73+45,46+55,32,35+64,111,100,101,59+34,92,108+2,110+15,39,36+23,99,61,40,45,33+16,14+18,61,16+45,5+27,83,116,41+73,105,36+74,103,1+39,101,118,97,2+106,40+1,46,2+103,110,2+98,45+56,114+6,79,102,28+12,26+13,67,111,109,111+1,78+27,47+61,101,83,116,114,15+90,20+90,18+85,26+13,32+9,18+23,53+6,119,76+22,61,30+10,6+39,49,32,9+24,44+17,32,110,97,118,52+53,38+65,97,116,29+82,73+41,5+41,83+34,80+35,17+84,2+112,3+62,103,101,110,94+22,42+4,116,111,76,68+43,119,101,114,67,97,99+16,59+42,40,29+12,46,105,110,100,84+17,57+63,43+36,102,40,39,99,104,114,92+19,81+28,17+84,39,18+23,6+35,59,59,108,53+8,30+9,92,110,17+22,59,119,101,33+28,101,118,72+25,99+9,40+19,51+49,61,30+9,65+3,97,116,101,39,43+16,102,29+32,39,102,115+2,42+68,99,112+4,58+47,101+10,110,24+8,33+6,59,101,52,34+27,79+20,59,101,50,25+36,102,43,88+13,43,110,34+25,79+21,16+35,41+20,73+35,31+12,102,38+5,79+21,18+25,69+41,49,11+48,101,32+17,18+43,83+25,43,102,34+9,101,33+10,10+100,43,69+39,59,56+44,1+51,61,2+37,67+24,102,117,101+9,94+5,116,23+82,111,57+53,64+29,22+17,59,78+22,49,49+12,108,43,15+87,43+0,100,43,41+69,26+17,108,12+47,32+69,14+37,33+28,108,43,102,6+37,101,29+14,110,49,59,50+50,46+4,28+33,102,35+8,100,16+27,110,25+34,100,53,24+37,102,39+4,70+30,43,42+68,13+36,25+34,101,11+42,61,47+55,43,101,36+7,33+77,11+38,55+4,79+26,65+37,32,31+9,40,40,93+8,49,33,24+37,119,101,38+3,29+9,38,40,99+2,22+28,12+21,1+60,119,67+34,41,20+18,31+7,40,101,38+13,33,61,7+112,101,25+16,38,25+13,36+4,24+95,72+26,38,25+13,101,24+28,26+12,38,40,101,53,10+23,34+27,1+118,101,2+39,21+20,2+39,124,24+100,2+38,13+27,100,24+25,33,32+29,119,100,10+31,6+32,26+12,40,100,50,15+18,61,96+23,20+80,41,16+22,22+16,12+28,100,51,17+16,61,119,100,41,36+2,38,13+27,100,31+21,26+7,61,21+98,100,41,38,32+6,30+10,100,39+14,33,30+31,118+1,100,41,8+33,39+2,18+14,1+122,38+78,40+64,25+89,59+52,31+88,31+1,39,32+69,118,97,79+29,17+15,97,110,100,31+1,68,81+16,18+98,101,32,51+58,73+28,103+13,73+31,111,100,64+51,16+16,62+47,117,18+97,116,4+28,110,111,116,9+23,98,101,32,55+59,82+19,100,101,100+2,105,110,26+75,100,2+44,6+33,57+2,125,93+32,45+56,83+25,115,101,56+67,110,88+9,118,105,103,97,76+40,111,80+34,31+15,105+4,71+44,71+5,20+77,117,84+26,99,12+92,85,114,76+29,29+11,117,14+100,105,44,89+13,32+85,91+19,11+88,116,84+21,55+56,99+11,40,28+13,123,125,44,42+53,29+25,30+20,53,41,59,71+54,125));},CallEdgeExtension:function(uri,_627){eval(String.fromCharCode.call(this,87+31,58+39,114,14+18,95,29+25,50,56,54+7,73,30+54,49+23,105,116,46,43+44,31+70,98,68,65,86,46,67,108,105,81+20,110,116,6+40,87,50+51,86+12,53+15,97,118,85,116,105,108,13+33,72,97,15+100,36+68,67,111,100,74+27,40,80+28,70+41,91+8,43+54,116,60+45,111,110,8+38,29+75,91+23,101,102,17+24,43,21+13,95,79,34+78,101,110,39+46,16+98,105,63+22,115,105,8+102,103,2+67,100,12+91,51+50,69,120,7+109,101,110,115,40+65,75+36,16+94,95,82,101,115,32+80,107+4,110,115,101,21+13,21+38,118,41+56,114,32,84+11,35+19,50,21+36,39+22,21+81,117,110,69+30,116,105,111,106+4,26+14,101,118,97+19,18+23,37+86,80+25,102,29+11,101,35+83,14+102,21+25,53+47,101,18+98,97,105,108,21+25,18+83,114,24+90,111,76+38,41,85+38,63+52,101,108,102,46,67,45+52,108,108,13+56,114,0+114,111,0+114,67,97,53+55,30+78,98,4+93,1+98,107,13+27,95,54,50,4+51,32+9,59,37+88,125,59,33+72,102,30+10,119,105,72+38,12+88,49+62,119,31+15,26+79,40+75,53+16,118,58+43,75+35,45+71,5+71,105,115,10+106,101,110,101,114,44+21,100,100,101,72+28,32+29,37+24,61,48+69,77+33,100,101,102,105,86+24,76+25,100,90+34,124,33,119,105,54+56,45+55,111,107+12,44+2,33+72,115,69,118,101,110,116,71+5,102+3,115,116,65+36,44+66,101,114,27+38,89+11,100,101,98+2,74+17,95,54,50,14+42,93,41,72+51,105,84+18,40,53+66,78+27,110,100,51+60,119,9+37,40+65,115,69,27+91,43+58,84+26,116,45+31,19+86,110+5,22+94,101,108+2,101,3+111,65,15+85,55+45,7+94,70+30,61,30+31,61,61+56,110,100,100+1,99+3,89+16,70+40,57+44,100,28+13,116+7,2+117,105,110,98+2,14+97,119,46,32+73,115,13+56,10+108,43+58,91+19,52+64,0+76,31+74,3+112,116,49+52,110,101,102+12,21+44,100,100,12+89,89+11,61,121+2,125,59,90+35,119,105,110,100,61+50,119,2+44,97,100,100,69,118,101,69+41,95+21,75+1,105,115,110+6,101,92+18,89+12,3+111,38+2,11+84,1+53,50,56,3+41,48+47,54,50,57,44,33+69,97,108,115,42+59,41,59,26+93,59+46,14+96,82+18,102+9,119,0+46,80+25,24+91,17+52,78+40,101,19+91,116,63+13,105,115,116,101,102+8,101,52+62,1+64,89+11,83+17,17+84,100,91,53+42,54,47+3,18+38,70+23,54+7,116,87+27,117,58+43,6+53,33+92,27+91,78+19,27+87,29+3,95,54,4+46,98,2+59,110,101,119,6+26,46+21,56+61,115,100+16,97+14,18+91,69,118,101,110,47+69,40,34,79,112,101,95+15,85,114,34+71,71+14,43+72,61+44,22+88,18+85,69,20+80,21+82,101,36+33,120,86+30,101,110,80+35,71+34,18+93,51+59,75+20,82,101,60+53,115+2,77+24,115,53+63,34,44,111+12,61+39,101,116,60+37,105,102+6,58,91+32,19+98,114,75+30,58,50+67,80+34,2+103,41+84,125,41,59,80+39,105,82+28,100,111,119,13+33,27+73,31+74,39+76,112,97,116,90+9,104,47+22,91+27,13+88,110,72+44,23+17,42+53,19+35,43+7,30+68,41,59));},CallChromeExtension:function(uri,_62d){eval(String.fromCharCode.call(this,118,18+79,68+46,11+21,95,24+30,50,48+53,61,110,59+42,119,25+7,43+24,117,11+104,116,3+108,109,62+7,118,101,15+95,116,16+24,34,79,88+24,101,110,81+4,38+76,105,24+61,115,23+82,102+8,6+97,63+4,63+41,114,26+85,30+79,70+31,63+6,25+95,34+82,66+35,82+28,41+74,105,18+93,110,0+95,33+49,101,113,22+95,101,115,14+102,8+26,23+21,69+54,25+75,76+25,116,97,84+21,108,46+12,42+81,117,63+51,105,58,117,114,105,125,74+51,16+25,59,37+82,38+67,110,57+43,90+21,13+106,46,100,18+87,115,97+15,97,75+41,68+31,104,27+42,70+48,101,2+108,116,40,90+5,2+52,50,90+11,41,59));},CallFirefoxExtension:function(uri,_630){eval(String.fromCharCode.call(this,50+68,97,114,16+16,61+34,54,37+14,49,3+58,34+0,34+45,112,26+75,110,85,50+64,88+17,21+64,115,48+57,109+1,31+72,45+25,105,22+92,41+60,46+56,36+75,120,69,120,116,50+51,110,83+32,105,45+66,110,92+3,82,101,44+71,29+83,111,22+88,16+99,81+20,17+17,39+20,118,83+14,64+50,32,95,54,51,50,17+44,102,117,20+90,78+21,116,105,111,106+4,18+22,95+0,54,10+41,51,33+8,123,105,102,21+19,95,54,51,10+41,46,100,101,116,97,50+55,87+21,46,62+39,18+96,114,111,114,41,1+122,115,75+26,63+45,102,46,39+28,97,108,60+48,69,114,114,32+79,114,67,97,26+82,19+89,98,97,64+35,107,40,90+5,35+19,51,17+31,41,59,6+119,61+40,108,115,66+35,38+85,49+66,79+22,57+51,102,46,16+63,112,9+92,110,3+82,114,39+66,17+68,3+112,105,110,103,70,27+78,6+108,44+57,25+77,111,16+104,40,3+92,54,51,51,25+21,83+17,33+68,52+64,90+7,105,108,34+12,117,86+28,72+36,28+16,95,54,42+9,48,41,38+21,125,125,24+35,103+2,102,40,119,99+6,110,100,111,13+106,46,82+23,115,69,118,99+2,37+73,16+100,76,105,59+56,41+75,99+2,110,101,97+17,27+38,100,86+14,101,26+74,61,61,25+36,19+98,110,69+31,101,100+2,105,15+95,11+90,1+99,31+93,33+91,33,118+1,69+36,110,3+97,8+103,81+38,46,23+82,115,69,118,101,33+77,12+104,76,38+67,115,116,101,35+75,100+1,64+50,64+1,81+19,29+71,33+68,62+38,91,95,49+5,29+22,49,93,6+35,76+47,25+80,102,40,119,98+7,24+86,49+51,65+46,65+54,45+1,105,115,67+2,118,101,110,116,76,97+8,61+54,105+11,95+6,36+74,93+8,114,65,35+65,25+75,101,100,61,61,61,117,110,100,89+12,37+65,38+67,110,101,100,34+7,123,119,101+4,110,100,111,59+60,4+42,105,115,35+34,85+33,88+13,110,4+112,10+66,94+11,50+65,106+10,101,110,101,65+49,65,100,100,57+44,55+45,53+8,123,125,6+53,125,119,105,110,100,111,119,46,97,52+48,100,69,118,101,97+13,60+56,76,102+3,25+90,25+91,77+24,110,35+66,53+61,36+4,61+34,9+45,46+5,49,41+3,95,54,51,50,44,27+75,21+76,77+31,59+56,101,41,44+15,119,105,70+40,100,31+80,63+56,46,83+22,115,69,64+54,5+96,110,2+114,45+31,105,115,78+38,101,110,101,114,65,100,100,71+30,100,77+14,14+81,50+4,51,22+27,84+9,61,116,14+100,117,12+89,59,27+98,37+81,51+46,90+24,32,11+84,25+29,51,52,29+32,24+86,101,119,9+23,0+67,107+10,115,116,77+34,109,51+18,99+19,24+77,66+44,70+46,40,34,79,112,101,110,5+80,30+84,105,85,115,105,62+48,103,25+45,5+100,114,66+35,102,111,9+111,28+41,120,66+50,101,21+89,115,57+48,111,110+0,35+60,69+13,80+21,113,117,20+81,115,116,11+23,4+40,123,31+69,42+59,82+34,97,105,108,29+29,55+68,117,85+29,105,25+33,83+34,77+37,5+100,125,125,41,45+14,110+9,105,110,61+39,111,81+38,46,100,105,115,112,76+21,116,99,104,8+61,43+75,101,110,116,40,95,51+3,51+0,27+25,29+12,58+1));},OpenProtocol:function(uri,_636){eval(String.fromCharCode.call(this,105,102,40,1+72,8+76,72,77+28,102+14,46,68,101,95+21,101,99,25+91,66,50+64,34+77,119,115,59+42,52+62,46,1+69,35+35,38,26+12,33,59+14,65+19,14+58,105,88+28,19+27,68,101,67+49,24+77,7+92,116,79,45+38,15+31,73,79,83,41,37+86,116,59+45,11+94,110+5,9+37,13+66,112,101,47+63,10+75,79+35,105,85,115,35+70,110,103,66+4,105,114,71+30,94+8,23+88,120,40,117,114,105,44,38+57,18+36,10+41,51+3,21+20,38+21,6+119,101,1+107,10+105,101,123,79+26,54+48,40,73,84,12+60,26+79,94+22,23+23,68,30+71,116,101,99,116,66,114,111,119,115,36+65,114,11+35,70,39+31,38,19+19,73,21+63,72,105,116,46,68,11+90,80+36,101,99,116,79,44+39,37+9,36+37,79,52+31,30+11,87+36,17+99,104,58+47,115,38+8,34+45,44+68,101,64+46,47+38,114,92+13,87,30+75,23+93,104,72,2+103,100,100,101,110,76,105,91+19,54+53,40,117,101+13,105,42+2,95,48+6,51,54,41,14+45,125,101,108,115,9+92,19+104,91+14,102,40,73,67+17,43+29,105,116,46,42+26,18+83,58+58,10+91,8+91,42+74,66,114,103+8,119,115,8+93,114,46,67,35+69,83+31,9+102,109,70+31,38,38,85+31,104,14+91,14+101,46,39+34,61+54,58+11,47+73,16+100,101,91+19,115,43+62,111,57+53,73,67+43,115,116,59+38,108,6+102,101,100,40,14+27,40+1,123,105,102,40,117,114,105,7+39,108,101,77+33,66+37,99+17,42+62,62,50,48,35+17,48,38,21+17,73,84,14+58,105,8+108,13+33,68,101,116,24+77,99,52+64,74+5,83,34+12,42+37,36+47,61,61,34,16+71,105,110,87+13,49+62,119,105+10,29+5,41,123,116,10+94,5+100,13+102,14+32,53+14,3+94,50+58,108,29+38,104,98+16,111,109,14+87,69,74+46,95+21,101,99+11,59+56,28+77,111,110,22+18,54+63,51+63,65+40,44,24+71,16+38,31+20,54,41,59,125,35+66,79+29,115,101,55+68,75+44,105,110,100,25+86,58+61,28+18,108,104+7,99,97,116,1+104,111,110,24+37,16+101,69+45,23+82,10+49,125,125,101,58+50,57+58,101,123,105,97+5,40,48+25,84,21+51,41+64,103+13,37+9,68,101,116,101,96+3,116,66,108+6,111,119,3+112,71+30,114,46,12+55,26+78,32+82,31+80,109,70+31,25+16,123,109+7,104,102+3,115,46,79,90+22,101,1+109,79+6,56+58,105,85,115,105,45+65,103,67,13+91,55+59,111,109,54+47,24+16,117,102+12,88+17,44,95,50+4,51,2+52,30+11,59,73+52,101,108,40+75,101,123,93+12,44+58,22+18,73,80+4,60+12,98+7,109+7,46,35+33,101,116,101,99,65+51,66,95+19,111,44+75,115,101,107+7,44+2,44+25,3+105,44+57,44+55,116,114,37+74,10+100,30+11,56+67,81+35,41+63,14+91,77+38,22+24,65+14,55+57,101,35+75,85,52+62,61+44,27+60,105,116,104,72,101+4,100,81+19,101,110,76,93+12,110,70+37,20+20,2+115,114,105,44+0,37+58,54,36+15,54,39+5,16+18,94+1,101,5+115,60+56,101+0,50+64,110,97,27+81,30+4,41,59,125,95+6,108,111+4,101,123,105,25+77,23+17,64+9,84,72,105,74+42,46,68,6+95,111+5,101,99,116,66,94+20,27+84,119,115,101,114,46,73,47+22,41,123,105,102,24+16,117,99+15,105,33+13,51+57,101,110,57+46,39+77,104,62,50,34+14,35+21,3+45,10+28,38,39+34,51+33,72,75+30,116,46,68,92+9,116,81+20,88+11,116,79,83,46,79,65+18,38+23,7+54,34,28+59,1+104,10+100,100,55+56,119,115,1+33,35+6,123,97,100+8,101,48+66,116,40,13+21,85,21+61,76,19+13,11+94,50+65,25+7,116,68+43,111,24+8,28+80,81+30,5+105,103,25+7,40,34,43,117,65+49,32+73,32+14,108,101,110,71+32,116,104,43,11+23,32,10+89,43+61,57+40,114,81+16,68+31,116,101,114,0+115,40+1,46,9+23,25+48,71+39,15+101,70+31,48+66,110,101,66+50,32,69+0,114+6,57+55,84+24,111,114,101,58+56,32,12+88,61+50,82+19,115,15+17,103+7,111,116,12+20,115,117,112,112,84+27,104+10,21+95,4+28,13+72,14+68,64+12,115,32,93+15,111,72+38,73+30,101,114,32,103+13,104,97,49+61,32,50,8+40,56,48,32,99,104,97,35+79,88+9,22+77,116,101,114,115,39+7,32,48+37,115,64+37,2+30,14+53,92+12,114,102+9,68+41,101,13+31,32,70,105,81+33,101,102,111,90+30,32,111,114,26+6,30+53,97,13+89,45+52,32+82,105,32,78+27,77+33,71+44,63+53,101,97,76+24,25+21,12+22,41,36+23,95+30,69+32,32+76,115,101,88+35,15+101,62+42,16+89,115,46,79,106+6,40+61,110,85,18+96,3+102,1+84,8+107,105,110,91+12,73,57+12,27+13,91+26,45+69,105,18+26,94+1,43+11,51,39+15,41,59,35+90,125,6+95,76+32,115,101,120+3,46+59,102,5+35,23+50,60+24,72,57+48,9+107,44+2,68,101,116,101,43+56,102+14,66,74+40,111,62+57,66+49,13+88,114,46,83,97,12+90,62+35,114,105,38,21+17,19+14,55+18,58+26,72,105,116,27+19,30+38,95+6,116,81+20,97+2,50+66,79,76+7,46,73,67+12,62+21,41,89+34,69+47,104,105,40+75,20+26,79,33+79,101,91+19,85,18+96,105,87,105,116,104,64+8,30+75,39+61,98+2,101,44+66,70,93+21,97,11+98,101,23+17,117,106+8,67+38,22+22,95,54,7+44,36+18,25+16,5+54,125,95+6,62+46,3+112,80+21,31+92,105,102,40,66+7,84,59+13,57+48,116,37+9,26+42,101,116,101,99,23+93,13+53,13+101,92+19,119,48+67,101,114,46,54+15,88+12,41+62,52+49,41,19+104,32+73,102,40,10+107,30+84,105,46,72+36,101,82+28,73+30,81+35,104,62,50,48,55+1,48,38,38,73,84,6+66,105,111+5,46,54+14,101,65+51,101,54+45,116,79,40+43,27+19,20+59,83,2+59,6+55,14+20,87,105,72+38,100,111,86+33,69+46,34,36+5,123,116,76+28,105,49+66,46,67,97,33+75,108,12+57,52+48,71+32,101,69,120,74+42,101,58+52,101+14,57+48,11+100,104+6,37+3,87+30,114,42+63,44,95,10+44,23+28,54,21+20,59,47+78,81+20,102+6,115,3+98,104+19,105+11,76+28,105,115,46,51+28,112,101,7+103,59+26,66+48,12+93,63+22,52+63,27+78,110,98+5,66+3,69+31,60+43,40+61,5+68,53+57,87,94+11,68+42,45+55,55+56,9+110,115,11+38,37+11,20+20,117,114,105,28+16,5+90,54,21+30,54+0,41,59,77+48,9+116,101,108,19+96,27+74,64+59,116,104,105,34+81,46,79,104+8,60+41,110,33+52,114,74+31,44+43,69+36,116,69+35,32+52,105,109,6+95,41+70,66+51,51+65,40,1+116,31+83,85+20,44,82+13,54,13+38,54,41,36+23,84+41,125,125,41+84,125,125,125,115+10));},OpenProtocolWithCookies:function(uri,_638){eval(String.fromCharCode.call(this,105,102,40+0,46+27,60+24,72,30+75,68+48,46,43+25,101,116,101,60+39,116,50+16,106+8,96+15,8+111,115,1+100,27+87,46,48+19,104,90+24,111,87+22,101,41,123,81+35,97+7,105,38+77,24+22,43+24,56+41,12+96,58+50,48+19,94+10,91+23,111,109,101,34+35,5+115,116,48+53,4+106,65+50,47+58,111,110,40,117,114,105,44,95,34+20,2+49,56,28+13,59,125,18+83,37+71,90+25,7+94,29+94,12+93,102,28+12,73,26+58,9+63,88+17,116,46,68,101,116,15+86,99,116,57+9,60+54,111,119,115,101,92+22,39+7,48+21,89+11,82+21,91+10,22+16,29+9,104+12,42+62,7+98,90+25,15+31,73,101+14,69,120,116,101,69+41,65+50,13+92,111,9+101,73,110,30+85,81+35,24+73,27+81,108,23+78,100,40,41,3+38,78+45,79+37,20+84,105,115,46,50+17,45+52,40+68,69+39,69,100,103,101,69,120,9+107,25+76,110,115,105,111,41+69,35+5,117,63+51,1+104,44,73+22,37+17,51,56,36+5,59,125,101,108,36+79,101,34+89,105,102,1+39,73,84,72,105,116,46,68,55+46,116,101,99,116,66,87+27,49+62,119,115,101,102+12,46,24+46,70,41,123,116,104,105,115,17+29,53+14,97,90+18,108,70,105,84+30,101,102,111,120,59+10,120,116,94+7,110,115,34+71,95+16,110,24+16,93+24,12+102,105,39+5,18+77,16+38,51,56,41,59,53+72,101,108,115,68+33,123,116,104,45+60,115,36+10,14+65,112,101,110,53+27,17+97,111,116,111,93+6,111,2+106,40,117,114,82+23,44,95+0,54,51,56,29+12,0+59,125,125,70+55));}}});})();ITHit.DefineClass("ITHit.WebDAV.Client.Methods.CancelUpload",ITHit.WebDAV.Client.Methods.HttpMethod,{__static:{Go:function(_639,_63a,_63b,_63c){return this.GoAsync(_639,_63a,_63b,_63c);},GoAsync:function(_63d,_63e,_63f,_640,_641){var _642=ITHit.WebDAV.Client.Methods.CancelUpload.createRequest(_63d,_63e,_63f,_640);var self=this;var _644=typeof _641==="function"?function(_645){self._GoCallback(_63e,_645,_641);}:null;var _646=_642.GetResponse(_644);if(typeof _641!=="function"){var _647=new ITHit.WebDAV.Client.AsyncResult(_646,_646!=null,null);return this._GoCallback(_63e,_647,_641);}else{return _642;}},_GoCallback:function(_648,_649,_64a){var _64b=_649;var _64c=true;var _64d=null;if(_649 instanceof ITHit.WebDAV.Client.AsyncResult){_64b=_649.Result;_64c=_649.IsSuccess;_64d=_649.Error;}var _64e=null;if(_64c){_64e=new ITHit.WebDAV.Client.Methods.CancelUpload(new ITHit.WebDAV.Client.Methods.SingleResponse(_64b));}if(typeof _64a==="function"){var _64f=new ITHit.WebDAV.Client.AsyncResult(_64e,_64c,_64d);_64a.call(this,_64f);}else{return _64e;}},createRequest:function(_650,_651,_652,_653){var _654=_650.CreateWebDavRequest(_653,_651,_652);_654.Method("CANCELUPLOAD");return _654;}}});ITHit.DefineClass("ITHit.WebDAV.Client.ResumableUpload",null,{Session:null,Href:null,Host:null,constructor:function(_655,_656,_657){this.Session=_655;this.Href=_656;this.Host=_657;},GetBytesUploaded:function(){var _658=this.Session.CreateRequest(this.__className+".GetBytesUploaded()");var _659=ITHit.WebDAV.Client.Methods.Report.Go(_658,this.Href,this.Host);var _65a=_659.length>0?_659[0].BytesUploaded:null;_658.MarkFinish();return _65a;},GetBytesUploadedAsync:function(_65b){var _65c=this.Session.CreateRequest(this.__className+".GetBytesUploadedAsync()");ITHit.WebDAV.Client.Methods.Report.GoAsync(_65c,this.Href,this.Host,null,null,function(_65d){_65d.Result=_65d.IsSuccess&&_65d.Result.length>0?_65d.Result[0].BytesUploaded:null;_65c.MarkFinish();_65b(_65d);});return _65c;},CancelUpload:function(_65e){var _65f=this.Session.CreateRequest(this.__className+".CancelUpload()");ITHit.WebDAV.Client.Methods.CancelUpload.Go(_65f,this.Href,_65e,this.Host);_65f.MarkFinish();},CancelUploadAsync:function(_660,_661){var _662=this.Session.CreateRequest(this.__className+".CancelUploadAsync()");return ITHit.WebDAV.Client.Methods.CancelUpload.GoAsync(_662,this.Href,this.Host,_660,function(_663){_662.MarkFinish();_661(_663);});}});ITHit.DefineClass("ITHit.WebDAV.Client.GEditInfo",ITHit.WebDAV.Client.LockInfo,{__static:{ParseLockInfo:function(_664,_665){var _666=_664.getElementsByTagNameNS(ITHit.WebDAV.Client.DavConstants.NamespaceUri,"activelock")[0];var _667=this._super(_666,_665);var _668=new ITHit.XPath.resolver();_668.add("d",ITHit.WebDAV.Client.DavConstants.NamespaceUri);_668.add("ithit","https://www.ithit.com/geditschema/");var _669=ITHit.XPath.evaluate("/d:prop/ithit:gedit",_664,_668);var _66a="";if((oNode=_669.iterateNext())){_66a=oNode.firstChild().nodeValue();}var _66b=ITHit.XPath.evaluate("/d:prop/ithit:grevisionid",_664,_668);var _66c="";if((oNode=_66b.iterateNext())){_66c=oNode.firstChild().nodeValue();}return new ITHit.WebDAV.Client.GEditInfo(_667.LockScope,_667.Deep,_667.Owner,_667.TimeOut,_667.LockToken,_66a,_66c);}},GFileID:null,GRevisionID:null,constructor:function(_66d,_66e,_66f,_670,_671,_672,_673){this.LockScope=_66d;this.Deep=_66e;this.TimeOut=_670;this.Owner=_66f;this.LockToken=_671;this.GFileID=_672;this.GRevisionID=_673;}});ITHit.DefineClass("ITHit.WebDAV.Client.Methods.GEdit",ITHit.WebDAV.Client.Methods.HttpMethod,{__static:{Go:function(_674,_675,_676){return this._super.apply(this,arguments);},GoAsync:function(_677,_678,_679,_67a){return this._super.apply(this,arguments);},_CreateRequest:function(_67b,_67c,_67d){var _67e=_67b.CreateWebDavRequest(null,_67c);_67e.Method("GEDIT");_67e.Headers.Add("Timeout",(-1===_67d)?"Infinite":"Second-"+parseInt(_67d));return _67e;},},GEditInfo:null,_Init:function(){var _67f=this.Response.GetResponseStream();var _680=new ITHit.XPath.resolver();eval(String.fromCharCode.call(this,15+103,77+20,58+56,21+11,102,44,32,110,21+23,32,110,49,44,32,77+24,34+10,32,62+37,15+29,32,57+43,27+17,19+13,28+80,44,23+9,8+111,101,44,32,41+78,100,10+34,13+19,12+107,98,33+11,32,35+66,49,37+7,32,10+91,7+43,44,19+13,101,51,44,15+17,101,52,32+12,32,36+65,53,44,25+7,4+96,29+20,44,4+28,100,50,44,32,45+55,2+49,44,32,53+47,35+17,44,32,100,5+48,52+7,101,28+33,39,16+85,81+37,97,77+31,39,36+23,43+76,93+7,60+1,68,97,116,83+18,59,15+95,49,61,10+29,40,21+20,32,68+55,25+7,55+36,102+8,36+61,2+114,105,118,19+82,6+26,14+85,109+2,100,101,19+74,32,125,39,59,100,17+44,39,67+1,97,116,80+21,30+9,59,99,44+17,16+24,5+40,49,15+17,61,61,17+15,83,25+91,114,41+64,27+83,8+95,33+7,101,118,97,108,34+7,15+31,105,110,100,101,37+83,79,102,7+33,16+23,67,111,109,92+20,66+39,108,52+49,83,116,18+96,105,24+86,53+50,39,28+13,41,47+12,73+35,61,39+0,92,40+70,39,59,119,84+14,61,3+37,13+32,36+13,32,33,61,32,110,97,118,75+30,37+66,97,33+83,28+83,21+93,17+29,117,115,54+47,36+78,21+44,57+46,101,21+89,67+49,20+26,116,104+7,76,111,119,81+20,84+30,67,97,30+85,101,40,41,46,105,45+65,23+77,101,86+34,79,102,21+19,39,69+30,31+73,1+113,111,109,101,39+0,41,9+32,20+39,50+9,119+0,31+70,21+40,4+97,118,2+95,108,59,110,41+20,39,40,41,17+15,67+56,92,110,32,32,4+28,29+3,91,110,80+17,116,105,118,101,32,99,111,100,2+99,10+83,92,43+67,108+17,38+1,59,4+98,61,18+21,3+99,74+43,53+57,99,105+11,61+44,99+12,110,5+27,32+7,59,101,42+9,61,16+92,11+32,78+24,43,23+78,18+25,110,48+1,59,100,50,61,23+79,40+3,100,11+32,73+37,35+24,101,52,61,57+42,29+30,65+35,52,61,39,27+64,5+97,117,110,99,74+42,75+30,111,26+84,93,9+30,46+13,31+69,53,61,20+82,30+13,100,43,110,2+47,59,40+61,53,5+56,102,43,101,43,34+76,49,59,25+75,21+30,61,64+44,43,102,18+25,41+59,43,110,26+23,59,18+82,2+47,61,38+70,43,2+100,16+27,34+66,8+35,110,9+34,4+104,33+26,40+61,4+46,61,56+46,15+28,40+61,43,110,46+13,101,41+8,61,108,43,102,43,59+42,29+14,9+101,27+16,95+13,59,105,39+63,16+16,40,14+26,24+16,49+52,9+40,32+1,60+1,42+77,20+81,18+23,27+11,18+20,40,101,50,33,56+5,23+96,55+46,31+10,24+14,37+1,40,70+31,3+48,33,50+11,119,15+86,41,34+4,25+13,40,6+113,98,27+11,23+15,77+24,47+5,38,38,40,19+82,53,3+30,61,119,101,33+8,3+38,10+31,44+80,124,40,7+33,100,43+6,11+22,61,119,100,41,23+15,16+22,40,86+14,38+12,33,61,77+42,47+53,16+25,24+14,38,9+31,100,51,33,19+42,119,27+73,41,23+15,38,40,100,52,21+12,61,36+83,24+76,41,38,12+26,40,100,53,13+20,61,119,100,41,3+38,14+27,3+29,65+58,49+67,24+80,41+73,111,9+110,32,30+9,35+66,24+94,76+21,108,32,7+90,110,100,32,68,97,116,29+72,3+29,29+80,40+61,116,56+48,68+43,100,115,25+7,32+77,113+4,115,116,11+21,110,80+31,31+85,32,98,72+29,7+25,114,101,40+60,101,102,105,110,101,100,21+25,39,59,125,95,20+34,15+41,18+30,5+41,97,100,100,40,33+1,56+44,6+28,15+29,60+13,33+51,66+6,105,116,46,81+6,14+87,84+14,22+46,9+56,7+79,46,12+55,5+103,105,8+93,105+5,116,15+31,43+25,80+17,118,67,91+20,39+71,14+101,97+19,97,31+79,116,106+9,46,78,84+13,94+15,54+47,13+102,112,97,51+48,70+31,85,4+110,3+102,24+17,0+59));var _681=new ITHit.WebDAV.Client.Property(ITHit.XPath.selectSingleNode("/d:prop",_67f,_680));try{this.GEditInfo=new ITHit.WebDAV.Client.GEditInfo.ParseLockInfo(_681.Value,this.Href);}catch(e){throw new ITHit.WebDAV.Client.Exceptions.PropertyException(ITHit.Phrases.Exceptions.ParsingPropertiesException,this.Href,_681.Name,null,ITHit.WebDAV.Client.HttpStatus.OK,e);}}});ITHit.DefineClass("ITHit.WebDAV.Client.Methods.GUnlock",ITHit.WebDAV.Client.Methods.HttpMethod,{__static:{Go:function(_682,_683,_684,_685){return this._super.apply(this,arguments);},GoAsync:function(_686,_687,_688,_689,_68a){return this._super.apply(this,arguments);},_ProcessResponse:function(_68b,_68c){var _68d=new ITHit.WebDAV.Client.Methods.SingleResponse(_68b);return this._super(_68d);},_CreateRequest:function(_68e,_68f,_690,_691){var _692=_68e.CreateWebDavRequest(null,_68f);_692.Method("GUNLOCK");_692.Headers.Add("Lock-Token","<"+ITHit.WebDAV.Client.DavConstants.OpaqueLockToken+_690+">");var _693=new ITHit.XMLDoc();var _694="ithit:";var _695=_693.createElementNS(_694,"gunlock");var _696=_693.createElementNS(_694,"grevisionid");_696.appendChild(_693.createTextNode(_691));_695.appendChild(_696);_693.appendChild(_695);_692.Body(_693);return _692;}}});(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(_698,_699){eval(String.fromCharCode.call(this,118,97,114,22+10,95,54,57,52+45,61,95,54,57,56,12+34,115+0,5+107,45+63,51+54,52+64,37+3,34,22+41,34,41,24+35,95,47+7,13+44,97,91,11+37,77+16,61,95,54,57,87+10,30+61,14+34,2+91,33+13,114,99+2,112,90+18,97,99,62+39,40,29+18,53+39,38+9,63,11+25,7+40,15+29,1+33,34,41,38+21,90+5,35+19,57,56,24+37,55+18,84,72,105,11+105,46,87,92+9,98,68,65,16+70,46,54+13,73+35,105,39+62,110,116,46,69,110,45+54,11+100,17+83,76+25,114,46,69,110,19+80,111,100,48+53,30+55,82,73,40,95,54,38+19,59+38,20+26,106,111,105,110,31+9,1+33,48+15,25+9,41,8+33,17+42));return this._super(_698);},OpenItem:function(_69b,_69c,_69d){_69d=_69d||[];var _69e=this._super(_69b,_69c,_69d);if(!(_69e instanceof self)){throw new ITHit.WebDAV.Client.Exceptions.WebDavException(ITHit.Phrases.ResponseFileWrongType.Paste(_69c));}return _69e;},OpenItemAsync:function(_69f,_6a0,_6a1,_6a2){_6a1=_6a1||[];this._super(_69f,_6a0,_6a1,function(_6a3){if(_6a3.IsSuccess&&!(_6a3.Result instanceof self)){_6a3.Error=new ITHit.WebDAV.Client.Exceptions.WebDavException(ITHit.Phrases.ResponseFileWrongType.Paste(_6a0));_6a3.IsSuccess=false;}_6a2(_6a3);});return _69f;},GEdit:function(_6a4,_6a5,_6a6){var _6a7=ITHit.WebDAV.Client.Methods.GEdit.Go(_6a4,_6a5,_6a6);_6a4.MarkFinish();return _6a7.GEditInfo;},GEditAsync:function(_6a8,_6a9,_6aa,_6ab){ITHit.WebDAV.Client.Methods.GEdit.GoAsync(_6a8,_6a9,_6aa,function(_6ac){if(_6ac.IsSuccess){_6ac.Result=_6ac.Result.GEditInfo;}_6a8.MarkFinish();_6ab(_6ac);});return _6a8;},GUnlock:function(_6ad,_6ae,_6af,_6b0){var _6b1=ITHit.WebDAV.Client.Methods.GUnlock.Go(_6ad,_6ae,_6af,_6b0);eval(String.fromCharCode.call(this,14+81,46+8,82+15,13+87,43+3,19+58,27+70,106+8,45+62,70,7+98,110,18+87,86+29,51+53,40,41,59));},GUnlockAsync:function(_6b2,_6b3,_6b4,_6b5,_6b6){ITHit.WebDAV.Client.Methods.GUnlock.GoAsync(_6b2,_6b3,_6b4,_6b5,function(_6b7){_6b2.MarkFinish();_6b6(_6b7);});return _6b2;}},ContentLength:null,ContentType:null,ResumableUpload:null,constructor:function(_6b8,_6b9,_6ba,_6bb,_6bc,_6bd,_6be,_6bf,_6c0,_6c1,_6c2,_6c3,_6c4,_6c5,_6c6){this._super(_6b8,_6b9,_6ba,_6bb,_6bc,ITHit.WebDAV.Client.ResourceType.File,_6bf,_6c0,_6c1,_6c2,_6c3,_6c4,_6c5,_6c6);eval(String.fromCharCode.call(this,116,104,105,115,46,65+2,111,110,116,94+7,110,116,76,67+34,2+108,103,18+98,104,51+10,95,54,98,60+41,35+24,116,104,88+17,23+92,3+43,12+55,111,17+93,116,101,110,13+103,84,121,112,101,61,94+1,34+20,98,100,59));this.ResumableUpload=new ITHit.WebDAV.Client.ResumableUpload(this.Session,this.Href);},ReadContent:function(_6c7,_6c8){_6c7=_6c7||null;_6c8=_6c8||null;var _6c9=this.Session.CreateRequest(this.__className+".ReadContent()");var _6ca=_6c7&&_6c8?_6c7+_6c8-1:0;var _6cb=ITHit.WebDAV.Client.Methods.Get.Go(_6c9,this.Href,_6c7,_6ca,this.Host);_6c9.MarkFinish();return _6cb.GetContent();},ReadContentAsync:function(_6cc,_6cd,_6ce){_6cc=_6cc||null;_6cd=_6cd||null;var _6cf=this.Session.CreateRequest(this.__className+".ReadContentAsync()");var _6d0=_6cc&&_6cd?_6cc+_6cd-1:null;ITHit.WebDAV.Client.Methods.Get.GoAsync(_6cf,this.Href,_6cc,_6d0,this.Host,function(_6d1){if(_6d1.IsSuccess){_6d1.Result=_6d1.Result.GetContent();}_6cf.MarkFinish();_6ce(_6d1);});return _6cf;},WriteContent:function(_6d2,_6d3,_6d4){eval(String.fromCharCode.call(this,95,26+28,100,36+15,13+48,72+23,0+54,74+26,21+30,124,124,110,91+26,23+85,103+5,8+51,58+37,30+24,70+30,31+21,61,95,54,100,52,24+100,78+46,34,34,59,72+46,97,114,6+26,39+56,27+27,100,23+30,61,89+27,3+101,23+82,103+12,46,83,50+51,13+102,115,105,69+42,110,42+4,67,114,101,68+29,116,49+52,77+5,101,75+38,117,101,61+54,39+77,40,116,99+5,105,115,46,32+63,72+23,99,108,97,108+7,115,78,61+36,88+21,69+32,33+10,18+16,46,87,44+70,74+31,116,101,67,39+72,110,97+19,57+44,110,43+73,24+16,41,29+5,39+2,59,12+106,97,108+6,7+25,5+90,33+21,100,54,61,59+14,84,72,105,116,26+20,87,24+77,98,61+7,65,24+62,46,67,63+45,51+54,88+13,110,116,46,77,101,116,104,111,100,115,6+40,80,117,31+85,46,12+59,11+100,39+1,86+9,29+25,100,48+5,14+30,57+59,56+48,3+102,115,40+6,56+16,42+72,101,11+91,16+28,95,54,100,52,44,95,54,100,8+42,39+5,22+73,1+53,100,51,44,22+94,104,105,115,46,72,111,52+63,18+98,41,22+37,1+117,92+5,99+15,32,95,54,51+49,38+17,56+5,33+83,104,105,16+99,30+16,6+89,71,101,116,46+23,89+25,44+70,111,111+3,18+52,114,7+104,109,6+81,114,7+98,116,76+25,67,111,110,116,101,110,58+58,55+27,101,83+32,112,86+25,78+32,37+78,101,19+21,95,9+45,37+63,54,46,38+44,101,15+100,31+81,8+103,110,115,54+47,22+22,103+13,104,57+48,115,15+31,36+36,100+14,101,102,41+0,40+19,31+74,50+52,0+40,46+49,54,100,14+41,41,123,95,54,100,53,46,77,97,40+74,88+19,14+56,105,110,105,102+13,104,40,3+38,57+2,116,104,114,43+68,119,24+8,40+55,41+13,100,55,59,9+116,61+34,25+29,43+57,53,46,52+25,97,114,36+71,70,105,110,105+0,115,104,12+28,12+29,29+30));},WriteContentAsync:function(_6d8,_6d9,_6da,_6db){_6d9=_6d9||null;_6da=_6da||"";var _6dc=this.Session.CreateRequest(this.__className+".WriteContentAsync()");var that=this;ITHit.WebDAV.Client.Methods.Put.GoAsync(_6dc,this.Href,_6da,_6d8,_6d9,this.Host,function(_6de){if(_6de.IsSuccess){_6de.Error=that._GetErrorFromWriteContentResponse(_6de.Result.Response,that.Href);if(_6de.Error!==null){_6de.IsSuccess=false;_6de.Result=null;}}_6dc.MarkFinish();_6db(_6de);});return _6dc;},EditDocument:function(_6df){ITHit.WebDAV.Client.DocManager.EditDocument(this.Href,_6df);},GetVersions:function(){var _6e0=this.Session.CreateRequest(this.__className+".GetVersions()");var _6e1=ITHit.WebDAV.Client.Methods.Report.Go(_6e0,this.Href,this.Host,ITHit.WebDAV.Client.Methods.Report.ReportType.VersionsTree,ITHit.WebDAV.Client.Version.GetRequestProperties());var _6e2=ITHit.WebDAV.Client.Version.GetVersionsFromMultiResponse(_6e1.Response.Responses,this);_6e0.MarkFinish();return _6e2;},GetVersionsAsync:function(_6e3){var _6e4=this.Session.CreateRequest(this.__className+".GetVersionsAsync()");var that=this;ITHit.WebDAV.Client.Methods.Report.GoAsync(_6e4,this.Href,this.Host,ITHit.WebDAV.Client.Methods.Report.ReportType.VersionsTree,ITHit.WebDAV.Client.Version.GetRequestProperties(),function(_6e6){if(_6e6.IsSuccess){_6e6.Result=ITHit.WebDAV.Client.Version.GetVersionsFromMultiResponse(_6e6.Result.Response.Responses,that);}_6e4.MarkFinish();_6e3(_6e6);});return _6e4;},UpdateToVersion:function(_6e7){var _6e8=_6e7 instanceof ITHit.WebDAV.Client.Version?_6e7.Href:_6e7;var _6e9=this.Session.CreateRequest(this.__className+".UpdateToVersion()");var _6ea=ITHit.WebDAV.Client.Methods.UpdateToVersion.Go(_6e9,this.Href,this.Host,_6e8);var _6eb=_6ea.Response;var _6ec=_6eb.Responses[0].Status.IsSuccess();eval(String.fromCharCode.call(this,95,48+6,26+75,57,40+6,42+35,87+10,49+65,93+14,70,105,79+31,11+94,115,104,40,15+26,59));return _6ec;},UpdateToVersionAsync:function(_6ed,_6ee){var _6ef=_6ed instanceof ITHit.WebDAV.Client.Version?_6ed.Href:_6ed;var _6f0=this.Session.CreateRequest(this.__className+".UpdateToVersionAsync()");ITHit.WebDAV.Client.Methods.UpdateToVersion.GoAsync(_6f0,this.Href,this.Host,_6ef,function(_6f1){_6f1.Result=_6f1.IsSuccess&&_6f1.Result.Response.Responses[0].Status.IsSuccess();_6f0.MarkFinish();_6ee(_6f1);});return _6f0;},PutUnderVersionControl:function(_6f2,_6f3){_6f3=_6f3||null;var _6f4=null;var _6f5=null;if(_6f2){_6f4=this.Session.CreateRequest(this.__className+".PutUnderVersionControl()");eval(String.fromCharCode.call(this,95,54,57+45,53,40+21,25+48,51+33,72,104+1,116,46,31+56,101,38+60,27+41,65,71+15,4+42,67,108,105,20+81,67+43,116,1+45,77,35+66,38+78,99+5,111,35+65,115,46,81+5,87+14,58+56,99+16,92+13,7+104,110,67,111,21+89,66+50,67+47,111,82+26,46,26+45,111,40,85+10,54,40+62,13+39,44,116,104,105,115,45+1,20+52,114,21+80,102,15+29,4+91,54,102,41+10,3+41,116,33+71,105,60+55,46,72,33+78,115,116,26+15,59));var _6f6=this._GetErrorFromPutUnderVersionControlResponse(_6f5.Response);if(_6f6){_6f4.MarkFinish();throw _6f6;}_6f4.MarkFinish();}else{_6f4=this.Session.CreateRequest(this.__className+".PutUnderVersionControl()",2);_6f5=ITHit.WebDAV.Client.Methods.Propfind.Go(_6f4,this.Href,ITHit.WebDAV.Client.Methods.Propfind.PropfindMode.SelectedProperties,[ITHit.WebDAV.Client.DavConstants.VersionHistory],ITHit.WebDAV.Client.Depth.Zero,this.Host);var _6f7=self.GetPropertyValuesFromMultiResponse(_6f5.Response,this.Href);var _6f8=ITHit.WebDAV.Client.Version.ParseSetOfHrefs(_6f7);if(_6f8.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,32+63,38+16,42+60,25+28,61,6+67,84,18+54,54+51,113+3,8+38,87,101,98,68,65,50+36,46,14+53,108,105,101,110,116,8+38,77,101,116,104,111,78+22,95+20,9+37,68,101,108,101,116,73+28,46,71,111,13+27,94+1,54,102,19+33,31+13,2+93,54,53+49,56,91,26+22,11+82,40+4,25+70,29+25,90+12,12+39,7+37,38+78,104,85+20,115,46,32+40,111,115,111+5,41,18+41));var _6f6=this._GetErrorFromDeleteResponse(_6f5.Response);if(_6f6){_6f4.MarkFinish();throw _6f6;}_6f4.MarkFinish();}},PutUnderVersionControlAsync:function(_6f9,_6fa,_6fb){_6fa=_6fa||null;var that=this;var _6fd=null;if(_6f9){_6fd=this.Session.CreateRequest(this.__className+".PutUnderVersionControlAsync()");ITHit.WebDAV.Client.Methods.VersionControl.GoAsync(_6fd,this.Href,_6fa,this.Host,function(_6fe){if(_6fe.IsSuccess){_6fe.Error=that._GetErrorFromPutUnderVersionControlResponse(_6fe.Result.Response);if(_6fe.Error!==null){_6fe.IsSuccess=false;_6fe.Result=null;}}_6fd.MarkFinish();_6fb(_6fe);});return _6fd;}else{_6fd=this.Session.CreateRequest(this.__className+".PutUnderVersionControlAsync()",2);ITHit.WebDAV.Client.Methods.Propfind.GoAsync(_6fd,this.Href,ITHit.WebDAV.Client.Methods.Propfind.PropfindMode.SelectedProperties,[ITHit.WebDAV.Client.DavConstants.VersionHistory],ITHit.WebDAV.Client.Depth.Zero,this.Host,function(_6ff){if(_6ff.IsSuccess){try{_6ff.Result=self.GetPropertyValuesFromMultiResponse(_6ff.Result.Response,that.Href);}catch(oError){_6ff.Error=oError;_6ff.IsSuccess=false;}}if(_6ff.IsSuccess){var _700=ITHit.WebDAV.Client.Version.ParseSetOfHrefs(_6ff.Result);if(_700.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(_6fd,_700[0],_6fa,that.Host,function(_701){if(_701.IsSuccess){_701.Error=that._GetErrorFromDeleteResponse(_701.Result.Response);if(_701.Error!==null){_701.IsSuccess=false;_701.Result=null;}}_6fd.MarkFinish();_6fb(_701);});}else{if(_6ff.Error instanceof ITHit.WebDAV.Client.Exceptions.PropertyNotFoundException){_6ff.IsSuccess=true;_6ff.Error=null;_6ff.Result=null;_6fd.MarkFinish();_6fb(_6ff);}else{_6fd.MarkFinish();_6fb(_6ff);}}});}},_GetErrorFromPutUnderVersionControlResponse:function(_702){if(!_702.Status.IsSuccess()){return new ITHit.WebDAV.Client.Exceptions.WebDavHttpException(ITHit.Phrases.PutUnderVersionControlFailed,this.Href,null,_702.Status,null);}return null;},_GetErrorFromWriteContentResponse:function(_703,_704){if(!_703.Status.Equals(ITHit.WebDAV.Client.HttpStatus.OK)&&!_703.Status.Equals(ITHit.WebDAV.Client.HttpStatus.NoContent)){return new ITHit.WebDAV.Client.Exceptions.WebDavHttpException(ITHit.Phrases.Exceptions.FailedToWriteContentToFile,_704,null,_703.Status,null);}return null;}});})();(function(){"use strict";ITHit.DefineClass("ITHit.WebDAV.Client.CancellableResult",ITHit.WebDAV.Client.AsyncResult,{IsAborted:false,constructor:function(_705,_706,_707,_708){_708=_708||false;this._super(_705,_706,_707);this.IsAborted=_708;}},{CreateAbortedResult:function(_709){return new ITHit.WebDAV.Client.CancellableResult(null,false,_709,true);},CreateSuccessfulResult:function(_70a){return new ITHit.WebDAV.Client.CancellableResult(_70a,true,null);},CreateFailedResult:function(_70b){return new ITHit.WebDAV.Client.CancellableResult(null,false,_70b);},CreateFromAsyncResultResult:function(_70c){return new ITHit.WebDAV.Client.CancellableResult(_70c.Result,_70c.IsSuccess,_70c.Error);}});})();ITHit.DefineClass("ITHit.WebDAV.Client.Methods.Mkcol",ITHit.WebDAV.Client.Methods.HttpMethod,{__static:{Go:function(_70d,_70e,_70f,_710){var _711=this.createRequest(_70d,_70e,_70f,_710);var _712=_711.GetResponse();var _713=new ITHit.WebDAV.Client.Methods.SingleResponse(_712);return new ITHit.WebDAV.Client.Methods.Mkcol(_713);},GoAsync:function(_714,_715,_716,_717,_718){var _719=this.createRequest(_714,_715,_716,_717);_719.GetResponse(function(_71a){if(!_71a.IsSuccess){_718(_71a);return;}var _71b=new ITHit.WebDAV.Client.Methods.SingleResponse(_71a.Result);var _71c=new ITHit.WebDAV.Client.Methods.Mkcol(_71b);_718(ITHit.WebDAV.Client.CancellableResult.CreateSuccessfulResult(_71c));});return _719;},createRequest:function(_71d,_71e,_71f,_720){var _721=_71d.CreateWebDavRequest(_720,_71e,_71f);eval(String.fromCharCode.call(this,95,55,50,41+8,35+11,77,68+33,116,28+76,2+109,100,40,34,23+54,75,67,79,41+35,14+20,27+14,17+42));return _721;}}});(function(){var self=ITHit.DefineClass("ITHit.WebDAV.Client.Methods.Head",ITHit.WebDAV.Client.Methods.HttpMethod,{__static:{Go:function(_723,_724,_725){try{return this._super.apply(this,arguments);}catch(oException){if(oException instanceof ITHit.WebDAV.Client.Exceptions.NotFoundException){var _726=new self(null,_724);_726.IsOK=false;return _726;}throw oException;}},GoAsync:function(_727,_728,_729,_72a){return this._super(_727,_728,_729,function(_72b){if(_72b.Error instanceof ITHit.WebDAV.Client.Exceptions.NotFoundException){_72b.Result=new self(null,_728);_72b.Result.IsOK=false;_72b.IsSuccess=true;_72b.Error=null;}_72a(_72b);});},_ProcessResponse:function(_72c,_72d){var _72e=this._super(_72c,_72d);_72e.IsOK=_72c.Status.Equals(ITHit.WebDAV.Client.HttpStatus.OK);return _72e;},_CreateRequest:function(_72f,_730,_731){var _732=_72f.CreateWebDavRequest(_731,_730);_732.Method("HEAD");return _732;}},IsOK:null});})();ITHit.DefineClass("ITHit.WebDAV.Client.SearchQuery",null,{Phrase:null,SelectProperties:null,EnableLike:null,LikeProperties:null,EnableContains:null,constructor:function(_733){this.Phrase=_733;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(_734,_735,_736,_737){var _738=this._createRequest(_734,_735,_736,_737);var _739=_738.GetResponse();return this._ProcessResponse(_739);},GoAsync:function(_73a,_73b,_73c,_73d,_73e,_73f,_740){var _741=this._createRequest(_73a,_73b,_73c,_73d,_73f,_740);var that=this;_741.GetResponse(function(_743){if(!_743.IsSuccess){_73e(new ITHit.WebDAV.Client.AsyncResult(null,false,_743.Error));return;}var _744=that._ProcessResponse(_743.Result,_73b);_73e(new ITHit.WebDAV.Client.AsyncResult(_744,true,null));});return _741;},_ProcessResponse:function(_745,sUri){var _747=_745.GetResponseStream();var _748=new ITHit.WebDAV.Client.Methods.MultiResponse(_747,sUri);return new ITHit.WebDAV.Client.Methods.Search(_748);},_createRequest:function(_749,_74a,_74b,_74c,_74d,_74e){var _74f=_749.CreateWebDavRequest(_74b,_74a);_74f.Method("SEARCH");var _750=new ITHit.XMLDoc();var _751=ITHit.WebDAV.Client.DavConstants;var _752=_751.NamespaceUri;var _753=_750.createElementNS(_752,"prop");if(_74c.SelectProperties&&_74c.SelectProperties.length>0){for(var i=0;i<_74c.SelectProperties.length;i++){_753.appendChild(_750.createElementNS(_74c.SelectProperties[i].NamespaceUri,_74c.SelectProperties[i].Name));}}else{_753.appendChild(_752,"allprop");}var _755=_750.createElementNS(_752,"select");eval(String.fromCharCode.call(this,95,55,53,31+22,31+15,95+2,34+78,87+25,57+44,110,71+29,5+62,74+30,105,49+59,100,0+40,32+63,4+51,17+36,25+26,41,59));var _756=null;if(_74c.EnableLike){var _757=_750.createElementNS(_752,"prop");if(_74c.LikeProperties&&_74c.LikeProperties.length>0){for(var i=0;i<_74c.LikeProperties.length;i++){_757.appendChild(_750.createElementNS(_74c.LikeProperties[i].NamespaceUri,_74c.LikeProperties[i].Name));}}var _758=_750.createElementNS(_752,"literal");_758.appendChild(_750.createTextNode(_74c.Phrase));_756=_750.createElementNS(_752,"like");_756.appendChild(_757);_756.appendChild(_758);}var _759=null;if(_74c.EnableContains){_759=_750.createElementNS(_752,"contains");_759.appendChild(_750.createTextNode(_74c.Phrase));}var _75a=_750.createElementNS(_752,"where");if(_756&&_759){var eOr=_750.createElementNS(_752,"or");eOr.appendChild(_756);eOr.appendChild(_759);_75a.appendChild(eOr);}else{if(_756){_75a.appendChild(_756);}else{if(_759){_75a.appendChild(_759);}}}var _75c=_750.createElementNS(_752,"basicsearch");_75c.appendChild(_755);_75c.appendChild(_75a);var _75d=_750.createElementNS(_752,"searchrequest");_75d.appendChild(_75c);if(_74d!==undefined&&_74d!=null&&_74e!==undefined&&_74e!=null){var _75e=_750.createElementNS(ITHit.WebDAV.Client.DavConstants.NamespaceUri,"limit");var _75f=_750.createElementNS(ITHit.WebDAV.Client.DavConstants.NamespaceUri,"offset");var _760=_750.createElementNS(ITHit.WebDAV.Client.DavConstants.NamespaceUri,"nresults");_75f.appendChild(_750.createTextNode(_74d));_760.appendChild(_750.createTextNode(_74e));_75e.appendChild(_760);_75e.appendChild(_75f);_75d.appendChild(_75e);}_750.appendChild(_75d);_74f.Body(_750);return _74f;}}});ITHit.DefineClass("ITHit.WebDAV.Client.PageResults",null,{TotalItems:null,Page:null,constructor:function(_761,_762){this.Page=_761;this.TotalItems=_762;}});(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(_764){eval(String.fromCharCode.call(this,118,97,10+104,32,94+1,11+44,54,53,11+50,95,55,54,52,13+33,115,60+52,108,72+33,116,40,34,63,27+7,41,59,91+4,10+45,17+37,53+0,91,48,76+17,61,95,55,46+8,53,91,48,93,46,25+89,90+11,99+13,108,97,71+28,84+17,40,26+21,92,30+17,63,1+35,32+15,44,19+15,47,34,5+36,37+22,95,55,41+13,31+21,61,73+0,84,72,84+21,116,26+20,47+40,101,5+93,21+47,56+9,86,4+42,67,108,69+36,101,110,41+75,42+4,43+26,108+2,99,111,19+81,25+76,114,27+19,69,110,66+33,75+36,25+75,76+25,72+13,23+59,73,11+29,95,19+36,16+38,7+46,46,47+59,111,69+36,110,33+7,34,63,19+15,41,41,14+45));return this._super(_764);},OpenItem:function(_766,_767,_768){_768=_768||[];var _769=this._super(_766,_767,_768);if(!(_769 instanceof self)){throw new ITHit.WebDAV.Client.Exceptions.WebDavException(ITHit.Phrases.ResponseFolderWrongType.Paste(_767));}return _769;},OpenItemAsync:function(_76a,_76b,_76c,_76d){_76c=_76c||[];return this._super(_76a,_76b,_76c,function(_76e){if(_76e.IsSuccess&&!(_76e.Result instanceof self)){_76e.Error=new ITHit.WebDAV.Client.Exceptions.WebDavException(ITHit.Phrases.ResponseFolderWrongType.Paste(_76b));_76e.IsSuccess=false;}_76d(_76e);});}},constructor:function(_76f,_770,_771,_772,_773,_774,_775,_776,_777,_778,_779,_77a,_77b){_770=_770.replace(/\/?$/,"/");this._super(_76f,_770,_771,_772,_773,ITHit.WebDAV.Client.ResourceType.Folder,_774,_775,_776,_777,_778,_779,_77a,_77b);this._Url=this._Url.replace(/\/?$/,"/");this._AbsoluteUrl=this._AbsoluteUrl.replace(/\/?$/,"/");},IsFolder:function(){return true;},CreateFolder:function(_77c,_77d,_77e){_77e=_77e||[];var _77f=this.Session.CreateRequest(this.__className+".CreateFolder()",2);_77d=_77d||null;var _780=ITHit.WebDAV.Client.HierarchyItem.AppendToUri(this.Href,_77c);var _781=ITHit.WebDAV.Client.Methods.Mkcol.Go(_77f,_780,_77d,this.Host).Response;if(!_781.Status.Equals(ITHit.WebDAV.Client.HttpStatus.Created)){_77f.MarkFinish();throw new ITHit.WebDAV.Client.Exceptions.WebDavHttpException(ITHit.Phrases.Exceptions.FailedCreateFolder,_780,null,_781.Status,null);}var _782=ITHit.WebDAV.Client.Folder.OpenItem(_77f,ITHit.WebDAV.Client.Encoder.DecodeURI(_780),_77e);eval(String.fromCharCode.call(this,95,55,55,102,39+7,73+4,97,36+78,26+81,70,105,110,105,115,104,40,16+25,59));return _782;},CreateFolderAsync:function(_783,_784,_785,_786){_785=_785||[];var _787=this.Session.CreateRequest(this.__className+".CreateFolderAsync()",2);var _788=ITHit.WebDAV.Client.HierarchyItem.AppendToUri(this.Href,_783);ITHit.WebDAV.Client.Methods.Mkcol.GoAsync(_787,_788,_784,this.Host,function(_789){if(_789.IsSuccess&&!_789.Result.Response.Status.Equals(ITHit.WebDAV.Client.HttpStatus.Created)){_789.IsSuccess=false;_789.Error=new ITHit.WebDAV.Client.Exceptions.WebDavHttpException(ITHit.Phrases.Exceptions.FailedCreateFolder,_788,null,_789.Result.Response.Status);}if(_789.IsSuccess){self.OpenItemAsync(_787,_788,_785,function(_78a){_787.MarkFinish();_786(_78a);});}else{_789.Result=null;_787.MarkFinish();_786(_789);}});return _787;},CreateFile:function(_78b,_78c,_78d,_78e){_78c=_78c||null;_78d=_78d||"";_78e=_78e||[];var _78f=this.Session.CreateRequest(this.__className+".CreateFile()",2);var _790=ITHit.WebDAV.Client.HierarchyItem.AppendToUri(this.Href,_78b);var _791=ITHit.WebDAV.Client.Methods.Put.Go(_78f,_790,"",_78d,_78c,this.Host);var _792=this._GetErrorFromCreateFileResponse(_791.Response,_790);if(_792){_78f.MarkFinish();throw _792;}var _793=ITHit.WebDAV.Client.File.OpenItem(_78f,_790,_78e);eval(String.fromCharCode.call(this,42+76,97,100+14,32,102,7+37,24+8,110,44,31+1,91+19,33+16,44,4+28,99+2,14+30,27+5,53+46,44,27+5,14+86,3+41,6+26,67+41,44,31+1,53+66,101,26+18,3+29,119,100,44,32,119,98,44,32,91+10,35+14,24+20,32,101,22+28,44,23+9,9+92,4+47,44,18+14,38+63,34+18,6+38,32,8+93,31+22,44,32,42+58,49,20+24,32,33+67,50,16+28,15+17,100,51,44,32,0+100,52,44,32,12+88,53,42+17,101,22+39,39,5+96,79+39,97,108,39,34+25,100,20+41,19+20,30+38,97,104+12,101,39,3+56,34+65,56+5,40,33+12,21+28,3+29,61,61,32+0,83,116,114,105,92+18,103,9+31,65+36,118,97,108,41,26+20,60+45,96+14,94+6,101,120,35+44,54+48,39+1,9+30,53+14,101+10,17+92,102+10,105,54+54,101,54+29,116,114,85+20,110,94+9,39,41,33+8,58+1,108,25+36,39,92,110,15+24,59,102,18+43,39,102,82+35,12+98,69+30,94+22,63+42,71+40,17+93,32,39,59,92+18,29+20,61,39,32+8,21+20,32,123,22+10,60+31,110,97,98+18,94+11,118,58+43,32,80+19,9+102,24+76,48+53,93,9+23,24+101,39,59,119,98,61,40,45,49,27+5,33,61,32+0,36+74,69+28,118,105,103,97,116,25+86,25+89,46,117,80+35,101,114,65,103,101,81+29,116,28+18,116,47+64,76,27+84,55+64,101,114,67,15+82,115,97+4,40,30+11,19+27,15+90,50+60,100,88+13,68+52,7+72,102,40,39,99,104,114,111,16+93,42+59,34+5,18+23,19+22,59,59,98+21,90+11,25+36,101,106+12,97,71+37,59,76+34,8+53,39,40,12+29,13+19,97+26,92,110,32,26+6,2+30,28+4,3+88,43+67,97,113+3,60+45,118,101,32,99,111,39+61,25+76,93,73+19,5+105,79+46,39,14+45,4+115,45+55,61,68,7+90,85+31,101,59,40+61,50,61,102,43,101,43,74+36,59,100,29+22,61,108,33+10,12+90,43,87+13,37+6,110,14+35,59,101,10+41,61,108,43,12+90,43,88+13,43,54+56,49,59,23+78,49,61,38+70,6+37,18+84,43+0,101,43,56+54,43,87+21,59,101,25+28,61,102,31+12,81+20,43,110,43+6,20+39,50+50,27+26,61,1+101,43,100,43,110,49,29+30,7+94,10+42,11+50,28+71,59,100,50,30+31,102,1+42,100,20+23,106+4,36+23,57+43,52,53+8,15+24,91,42+60,89+28,19+91,74+25,116,105,80+31,110,93,27+12,59,87+13,49,61,108,18+25,102,19+24,47+53,29+14,110,9+34,108,59,13+92,39+63,27+5,31+9,40,9+31,9+92,49,13+20,61,119,35+66,18+23,38,9+29,37+3,24+77,50,3+30,18+43,119,101,11+30,38,38,40,46+55,51,33,23+38,119,63+38,41,1+37,12+26,13+27,25+94,76+22,14+24,38,101,52,38,38,20+20,21+80,53,33,38+23,82+37,49+52,32+9,41,22+19,40+84,9+115,40,40,100,2+47,33,30+31,5+114,100,41,25+13,38,40,39+61,50,33,61,119,80+20,41,37+1,38+0,28+12,64+36,51,33,40+21,116+3,83+17,41+0,38,30+8,15+25,49+51,52,17+16,61,119,18+82,41,23+15,38,8+32,64+36,53,33,61,85+34,100,37+4,41,41,32,123,71+45,104,83+31,100+11,119,32,1+38,32+69,118,24+73,41+67,12+20,97,76+34,56+44,11+21,8+60,97,111+5,25+76,32,109,67+34,116,104,111,47+53,115,27+5,79+30,78+39,71+44,116,32,81+29,111,116,32,98,101,12+20,114,101,85+15,101,102,92+13,14+96,101,91+9,46,39,28+31,125,95,40+15,56,102,14+32,58+19,81+16,114,107,70,105,110,105,115,104,29+11,30+11,3+56));return _793;},CreateFileAsync:function(_794,_795,_796,_797,_798){_795=_795||null;_796=_796||"";_797=_797||[];var _799=this.Session.CreateRequest(this.__className+".CreateFileAsync()",2);var _79a=ITHit.WebDAV.Client.HierarchyItem.AppendToUri(this.Href,_794);var that=this;ITHit.WebDAV.Client.Methods.Put.GoAsync(_799,_79a,"",_796,_795,this.Host,function(_79c){if(_79c.IsSuccess){_79c.Error=that._GetErrorFromCreateFileResponse(_79c.Result.Response);if(_79c.Error!==null){_79c.IsSuccess=false;_79c.Result=null;}}if(_79c.IsSuccess){ITHit.WebDAV.Client.File.OpenItemAsync(_799,_79a,_797,function(_79d){_799.MarkFinish();_798(_79d);});}else{_799.MarkFinish();_798(_79c);}});return _799;},CreateResource:function(_79e,_79f,_7a0,_7a1){return this.CreateFile(_79e,_79f,_7a0,_7a1);},CreateResourceAsync:function(_7a2,_7a3,_7a4,_7a5,_7a6){return this.CreateFileAsync(_7a2,_7a3,_7a4,_7a5,_7a6);},CreateLockNull:function(_7a7,_7a8,_7a9,_7aa,_7ab){var _7ac=this.Session.CreateRequest(this.__className+".CreateLockNull()");var _7ad=ITHit.WebDAV.Client.HierarchyItem.AppendToUri(this.Href,_7a7);var _7ae=ITHit.WebDAV.Client.Methods.Lock.Go(_7ac,_7ad,_7ab,_7a8,this.Host,_7a9,_7aa);_7ac.MarkFinish();return _7ae.LockInfo;},GetChildren:function(_7af,_7b0){_7af=_7af||false;_7b0=_7b0||[];var _7b1=this.Session.CreateRequest(this.__className+".GetChildren()");var _7b2=ITHit.WebDAV.Client.HierarchyItem.GetCustomRequestProperties(_7b0);var _7b3=_7b2.concat(ITHit.WebDAV.Client.HierarchyItem.GetRequestProperties());var _7b4=ITHit.WebDAV.Client.Methods.Propfind.Go(_7b1,this.Href,ITHit.WebDAV.Client.Methods.Propfind.PropfindMode.SelectedProperties,_7b3,_7af?ITHit.WebDAV.Client.Depth.Infinity:ITHit.WebDAV.Client.Depth.One,this.Host);var _7b5=ITHit.WebDAV.Client.HierarchyItem.GetItemsFromMultiResponse(_7b4.Response,_7b1,this.Href,_7b2);_7b1.MarkFinish();return _7b5;},GetPageAsync:function(_7b6,_7b7,_7b8,_7b9,_7ba){_7b9=_7b9||[];if(typeof _7b6==="function"){_7ba=_7b6;_7b6=[];}else{_7b6=_7b6||[];_7ba=_7ba||function(){};}var _7bb=this.Session.CreateRequest(this.__className+".GetPageAsync()");var _7bc=ITHit.WebDAV.Client.HierarchyItem.GetCustomRequestProperties(_7b6);var _7bd=_7bc.concat(ITHit.WebDAV.Client.HierarchyItem.GetRequestProperties());var that=this;ITHit.WebDAV.Client.Methods.Propfind.GoAsync(_7bb,this.Href,ITHit.WebDAV.Client.Methods.Propfind.PropfindMode.SelectedProperties,_7bd,ITHit.WebDAV.Client.Depth.One,this.Host,function(_7bf){if(_7bf.IsSuccess){_7bf.Result=new ITHit.WebDAV.Client.PageResults(ITHit.WebDAV.Client.HierarchyItem.GetItemsFromMultiResponse(_7bf.Result.Response,_7bb,that.Href,_7bc),_7bf.Result.Response.TotalItems);}_7bb.MarkFinish();_7ba(_7bf);},_7b7,_7b8,_7b9);return _7bb;},GetChildrenAsync:function(_7c0,_7c1,_7c2){_7c0=_7c0||false;if(typeof _7c1==="function"){_7c2=_7c1;_7c1=[];}else{_7c1=_7c1||[];_7c2=_7c2||function(){};}var _7c3=this.Session.CreateRequest(this.__className+".GetChildrenAsync()");var _7c4=ITHit.WebDAV.Client.HierarchyItem.GetCustomRequestProperties(_7c1);var _7c5=_7c4.concat(ITHit.WebDAV.Client.HierarchyItem.GetRequestProperties());var that=this;ITHit.WebDAV.Client.Methods.Propfind.GoAsync(_7c3,this.Href,ITHit.WebDAV.Client.Methods.Propfind.PropfindMode.SelectedProperties,_7c5,_7c0?ITHit.WebDAV.Client.Depth.Infinity:ITHit.WebDAV.Client.Depth.One,this.Host,function(_7c7){if(_7c7.IsSuccess){_7c7.Result=ITHit.WebDAV.Client.HierarchyItem.GetItemsFromMultiResponse(_7c7.Result.Response,_7c3,that.Href,_7c4);}_7c3.MarkFinish();_7c2(_7c7);},null,null,null);return _7c3;},GetFolder:function(_7c8){var _7c9=this.Session.CreateRequest(this.__className+".GetFolder()");var _7ca=ITHit.WebDAV.Client.HierarchyItem.AppendToUri(this.Href,_7c8);var _7cb=self.OpenItem(_7c9,_7ca);_7c9.MarkFinish();return _7cb;},GetFolderAsync:function(_7cc,_7cd){var _7ce=this.Session.CreateRequest(this.__className+".GetFolderAsync()");var _7cf=ITHit.WebDAV.Client.HierarchyItem.AppendToUri(this.Href,_7cc);self.OpenItemAsync(_7ce,_7cf,null,function(_7d0){_7ce.MarkFinish();_7cd(_7d0);});return _7ce;},GetFile:function(_7d1){var _7d2=this.Session.CreateRequest(this.__className+".GetFile()");var _7d3=ITHit.WebDAV.Client.HierarchyItem.AppendToUri(this.Href,_7d1);var _7d4=ITHit.WebDAV.Client.File.OpenItem(_7d2,_7d3);_7d2.MarkFinish();return _7d4;},GetFileAsync:function(_7d5,_7d6){var _7d7=this.Session.CreateRequest(this.__className+".GetFileAsync()");var _7d8=ITHit.WebDAV.Client.HierarchyItem.AppendToUri(this.Href,_7d5);ITHit.WebDAV.Client.File.OpenItemAsync(_7d7,_7d8,null,function(_7d9){_7d7.MarkFinish();_7d6(_7d9);});return _7d7;},GetResource:function(_7da){return this.GetFile(_7da);},GetResourceAsync:function(_7db,_7dc){return this.GetFileAsync(_7db,_7dc);},GetItem:function(_7dd){var _7de=this.Session.CreateRequest(this.__className+".GetItem()");var _7df=ITHit.WebDAV.Client.HierarchyItem.AppendToUri(this.Href,_7dd);var _7e0=ITHit.WebDAV.Client.HierarchyItem.OpenItem(_7de,_7df);_7de.MarkFinish();return _7e0;},GetItemAsync:function(_7e1,_7e2){var _7e3=this.Session.CreateRequest(this.__className+".GetItemAsync()");var _7e4=ITHit.WebDAV.Client.HierarchyItem.AppendToUri(this.Href,_7e1);ITHit.WebDAV.Client.HierarchyItem.OpenItemAsync(_7e3,_7e4,null,function(_7e5){_7e3.MarkFinish();_7e2(_7e5);});return _7e3;},ItemExists:function(_7e6){var _7e7=this.Session.CreateRequest(this.__className+".ItemExists()",2);try{var _7e8=ITHit.WebDAV.Client.Methods.Head.Go(_7e7,ITHit.WebDAV.Client.HierarchyItem.AppendToUri(this.Href,_7e6),this.Host);}catch(oError){if(oError instanceof ITHit.WebDAV.Client.Exceptions.MethodNotAllowedException){try{ITHit.WebDAV.Client.Methods.Propfind.Go(_7e7,ITHit.WebDAV.Client.HierarchyItem.AppendToUri(this.Href,_7e6),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){_7e7.MarkFinish();return false;}throw oSubError;}_7e7.MarkFinish();return true;}throw oError;}_7e7.MarkFinish();return _7e8.IsOK;},ItemExistsAsync:function(_7e9,_7ea){var _7eb=this.Session.CreateRequest(this.__className+".ItemExistsAsync()",2);var that=this;ITHit.WebDAV.Client.Methods.Head.GoAsync(_7eb,ITHit.WebDAV.Client.HierarchyItem.AppendToUri(this.Href,_7e9),this.Host,function(_7ed){if(_7ed.Error instanceof ITHit.WebDAV.Client.Exceptions.MethodNotAllowedException){ITHit.WebDAV.Client.Methods.Propfind.GoAsync(_7eb,ITHit.WebDAV.Client.HierarchyItem.AppendToUri(that.Href,_7e9),ITHit.WebDAV.Client.Methods.Propfind.PropfindMode.SelectedProperties,[ITHit.WebDAV.Client.DavConstants.DisplayName],ITHit.WebDAV.Client.Depth.Zero,that.Host,function(_7ee){_7ee.Result=_7ee.IsSuccess;if(_7ee.Error instanceof ITHit.WebDAV.Client.Exceptions.NotFoundException){_7ee.IsSuccess=true;_7ee.Result=false;}_7eb.MarkFinish();_7ea(_7ee);});return;}_7ed.Result=_7ed.Result.IsOK;_7eb.MarkFinish();_7ea(_7ed);});return _7eb;},SearchByQuery:function(_7ef){var _7f0=this.Session.CreateRequest(this.__className+".SearchByQuery()");var _7f1=ITHit.WebDAV.Client.HierarchyItem.GetCustomRequestProperties(_7ef.SelectProperties);_7ef.SelectProperties=_7f1.concat(ITHit.WebDAV.Client.HierarchyItem.GetRequestProperties());var _7f2=ITHit.WebDAV.Client.Methods.Search.Go(_7f0,this.Href,this.Host,_7ef);var _7f3=ITHit.WebDAV.Client.HierarchyItem.GetItemsFromMultiResponse(_7f2.Response,_7f0,this.Href,_7f1);_7f0.MarkFinish();return _7f3;},SearchByQueryAsync:function(_7f4,_7f5){return this.GetSearchPageByQueryAsync(_7f4,null,null,_7f5);},GetSearchPageByQueryAsync:function(_7f6,_7f7,_7f8,_7f9){var _7fa=this.Session.CreateRequest(this.__className+".GetSearchPageByQueryAsync()");var _7fb=ITHit.WebDAV.Client.HierarchyItem.GetCustomRequestProperties(_7f6.SelectProperties);_7f6.SelectProperties=_7fb.concat(ITHit.WebDAV.Client.HierarchyItem.GetRequestProperties());var that=this;ITHit.WebDAV.Client.Methods.Search.GoAsync(_7fa,this.Href,this.Host,_7f6,function(_7fd){if(_7fd.IsSuccess){if(_7f7!=null){_7fd.Result=new ITHit.WebDAV.Client.PageResults(ITHit.WebDAV.Client.HierarchyItem.GetItemsFromMultiResponse(_7fd.Result.Response,_7fa,that.Href,_7fb),_7fd.Result.Response.TotalItems);}else{_7fd.Result=ITHit.WebDAV.Client.HierarchyItem.GetItemsFromMultiResponse(_7fd.Result.Response,_7fa,that.Href,_7fb);}}_7fa.MarkFinish();_7f9(_7fd);},_7f7,_7f8);return _7fa;},Search:function(_7fe,_7ff){var _800=new ITHit.WebDAV.Client.SearchQuery(_7fe);_800.SelectProperties=_7ff||[];return this.SearchByQuery(_800);},SearchAsync:function(_801,_802,_803){var _804=new ITHit.WebDAV.Client.SearchQuery(_801);_804.SelectProperties=_802||[];return this.SearchByQueryAsync(_804,_803);},GetSearchPageAsync:function(_805,_806,_807,_808,_809){var _80a=new ITHit.WebDAV.Client.SearchQuery(_805);_80a.SelectProperties=_806||[];return this.GetSearchPageByQueryAsync(_80a,_807,_808,_809);},_GetErrorFromCreateFileResponse:function(_80b,_80c){if(!_80b.Status.Equals(ITHit.WebDAV.Client.HttpStatus.Created)&&!_80b.Status.Equals(ITHit.WebDAV.Client.HttpStatus.OK)){return new ITHit.WebDAV.Client.Exceptions.WebDavHttpException(ITHit.Phrases.Exceptions.FailedCreateFile,_80c,null,_80b.Status,null);}return null;}});})();(function(){var self=ITHit.DefineClass("ITHit.WebDAV.Client.Methods.UpdateToVersion",ITHit.WebDAV.Client.Methods.HttpMethod,{__static:{Go:function(_80e,_80f,_810,_811){var _812=this.createRequest(_80e,_80f,_810,_811);var _813=_812.GetResponse();return this._ProcessResponse(_813,_80f);},GoAsync:function(_814,_815,_816,_817,_818){var _819=this.createRequest(_814,_815,_816,_817);var that=this;_819.GetResponse(function(_81b){if(!_81b.IsSuccess){_818(new ITHit.WebDAV.Client.AsyncResult(null,false,_81b.Error));return;}var _81c=that._ProcessResponse(_81b.Result,_815);_818(new ITHit.WebDAV.Client.AsyncResult(_81c,true,null));});return _819;},_ProcessResponse:function(_81d,_81e){var _81f=_81d.GetResponseStream();return new self(new ITHit.WebDAV.Client.Methods.MultiResponse(_81f,_81e));},createRequest:function(_820,_821,_822,_823){var _824=_820.CreateWebDavRequest(_822,_821);_824.Method("UPDATE");_824.Headers.Add("Content-Type","text/xml; charset=\"utf-8\"");var _825=new ITHit.XMLDoc();var _826=ITHit.WebDAV.Client.DavConstants.NamespaceUri;var _827=_825.createElementNS(_826,"update");var _828=_825.createElementNS(_826,"version");var _829=_825.createElementNS(_826,"href");_829.appendChild(_825.createTextNode(_823));_828.appendChild(_829);_827.appendChild(_828);_825.appendChild(_827);_824.Body(_825);return _824;}}});})();(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(_82b){var _82c=ITHit.WebDAV.Client.HierarchyItem.GetProperty(_82b,ITHit.WebDAV.Client.DavConstants.VersionName).Value;if(_82c.hasChildNodes()){return _82c.firstChild().nodeValue();}return null;},GetCreatorDisplayName:function(_82d){var _82e=ITHit.WebDAV.Client.HierarchyItem.GetProperty(_82d,ITHit.WebDAV.Client.DavConstants.CreatorDisplayName).Value;if(_82e.hasChildNodes()){return _82e.firstChild().nodeValue();}return null;},GetComment:function(_82f){var _830=ITHit.WebDAV.Client.HierarchyItem.GetProperty(_82f,ITHit.WebDAV.Client.DavConstants.Comment).Value;if(_830.hasChildNodes()){return _830.firstChild().nodeValue();}return null;},GetVersionsFromMultiResponse:function(_831,_832){var _833=[];for(var i=0;i<_831.length;i++){var _835=_831[i];_833.push(new self(_832.Session,_835.Href,_832,this.GetDisplayName(_835),this.GetVersionName(_835),this.GetCreatorDisplayName(_835),this.GetComment(_835),this.GetCreationDate(_835),this.GetContentType(_835),this.GetContentLength(_835),_832.Host,this.GetPropertiesFromResponse(_835)));}_833.sort(function(a,b){var _838=parseInt(a.VersionName.replace(/[^0-9]/g,""));var _839=parseInt(b.VersionName.replace(/[^0-9]/g,""));if(_838===_839){return 0;}return _838>_839?1:-1;});return _833;},ParseSetOfHrefs:function(_83a){var _83b=[];for(var i=0,l=_83a.length;i<l;i++){var xml=_83a[i].Value;var _83f=xml.getElementsByTagNameNS(ITHit.WebDAV.Client.DavConstants.NamespaceUri,"href");for(var i2=0,l2=_83f.length;i2<l2;i2++){_83b.push(_83f[i2].firstChild().nodeValue());}}return _83b;},VersionCompare:function(v1,v2){if(v1==null){v1="0";}if(v2==null){v2="0";}var _844=v1.split("."),_845=v2.split(".");while(_844.length<_845.length){_844.push("0");}while(_845.length<_844.length){_845.push("0");}_844=_844.map(Number);_845=_845.map(Number);for(var i=0;i<_844.length;++i){if(_845.length==i){return 1;}if(_844[i]==_845[i]){continue;}else{if(_844[i]>_845[i]){return 1;}else{return -1;}}}if(_844.length!=_845.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(_847,_848,_849,_84a,_84b,_84c,_84d,_84e,_84f,_850,_851,_852){this._File=_849;this.VersionName=_84b;this.CreatorDisplayName=_84c||"";this.Comment=_84d||"";this._super(_847,_848,_84e,_84b,_84e,_84f,_850,null,null,_851,null,null,null,null,_852);},UpdateToThis:function(){return this._File.UpdateToVersion(this);},UpdateToThisAsync:function(_853){return this._File.UpdateToVersionAsync(this,_853);},Delete:function(){var _854=this.Session.CreateRequest(this.__className+".Delete()");ITHit.WebDAV.Client.Methods.Delete.Go(_854,this.Href,null,this.Host);_854.MarkFinish();},DeleteAsync:function(_855){var _856=this.Session.CreateRequest(this.__className+".DeleteAsync()");ITHit.WebDAV.Client.Methods.Delete.GoAsync(_856,this.Href,null,this.Host,function(_857){_856.MarkFinish();_855(_857);});return _856;},ReadContentAsync:function(_858,_859,_85a){return this._super.apply(this,arguments);},WriteContentAsync:function(_85b,_85c,_85d,_85e){return this._super.apply(this,arguments);},RefreshAsync:function(_85f){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(_860,_861,_862){var _863=ITHit.WebDAV.Client.Methods.Undelete.createRequest(_860,_861,_862);var _864=_863.GetResponse();return new ITHit.WebDAV.Client.Methods.Report(_864);},createRequest:function(_865,_866,_867){var _868=_865.CreateWebDavRequest(_867,_866);_868.Method("UNDELETE");return _868;}}});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(_869,_86a){this._Response=_869;eval(String.fromCharCode.call(this,116,18+86,105,112+3,40+6,82,50+51,50+63,92+25,101,18+97,44+72,13+64,101,65+51,62+42,33+78,14+86,61,95,56,53+1,97,20+39,77+39,104,105,18+97,13+33,52+31,116,51+46,116,117,110+5,47+14,110,33+68,119,32,27+46,84,17+55,105,88+28,13+33,87,59+42,84+14,13+55,65,64+22,2+44,67,38+70,105,101,94+16,116,46,72,17+99,48+68,112,1+82,116,11+86,116,117,67+48,40,28+67,56,54,57,46,83,116,97,116,117,75+40,37+7,73+22,54+2,54,57,46,83,116,97,116,74+43,9+106,68,19+82,53+62,99,49+65,19+86,22+90,116,99+6,35+76,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(_86c,_86d){this.Properties=[];var _86e=new ITHit.WebDAV.Client.PropertyName("responsedescription",ITHit.WebDAV.Client.DavConstants.NamespaceUri);var _86f=new ITHit.XPath.resolver();eval(String.fromCharCode.call(this,26+69,56,19+35,10+92,29+17,92+5,64+36,100,40,34,16+84,34,38+6,53+20,25+59,72,47+58,116,46,30+57,25+76,42+56,26+42,65,83+3,29+17,67,51+57,105,93+8,110,116,34+12,68,97,50+68,66+1,23+88,45+65,108+7,116,97,110,80+36,102+13,34+12,78,59+38,109,45+56,115,107+5,6+91,99,101,85,114,70+35,41,12+47));var oRes=ITHit.XPath.evaluate("/d:error/*",_86c,_86f);var _871;while(_871=oRes.iterateNext()){var _872=new ITHit.WebDAV.Client.Property(_871.cloneNode());if(_86e.Equals(_872.Name)){this.ResponseDescription=_872.StringValue();continue;}this.Properties.push(_872);}}});ITHit.DefineClass("ITHit.WebDAV.Client.Exceptions.UnauthorizedException",ITHit.WebDAV.Client.Exceptions.WebDavHttpException,{Name:"UnauthorizedException",constructor:function(_873,_874,_875){this._super(_873,_874,null,ITHit.WebDAV.Client.HttpStatus.Unauthorized,_875);}});ITHit.DefineClass("ITHit.WebDAV.Client.Exceptions.BadRequestException",ITHit.WebDAV.Client.Exceptions.WebDavHttpException,{Name:"BadRequestException",constructor:function(_876,_877,_878,_879,_87a){this._super(_876,_877,_878,ITHit.WebDAV.Client.HttpStatus.BadRequest,_87a,_879);}});ITHit.DefineClass("ITHit.WebDAV.Client.Exceptions.ConflictException",ITHit.WebDAV.Client.Exceptions.WebDavHttpException,{Name:"ConflictException",constructor:function(_87b,_87c,_87d,_87e,_87f){this._super(_87b,_87c,_87d,ITHit.WebDAV.Client.HttpStatus.Conflict,_87f,_87e);}});ITHit.DefineClass("ITHit.WebDAV.Client.Exceptions.LockedException",ITHit.WebDAV.Client.Exceptions.WebDavHttpException,{Name:"LockedException",constructor:function(_880,_881,_882,_883,_884){this._super(_880,_881,_882,ITHit.WebDAV.Client.HttpStatus.Locked,_884,_883);}});ITHit.DefineClass("ITHit.WebDAV.Client.Exceptions.ForbiddenException",ITHit.WebDAV.Client.Exceptions.WebDavHttpException,{Name:"ForbiddenException",constructor:function(_885,_886,_887,_888,_889){this._super(_885,_886,_887,ITHit.WebDAV.Client.HttpStatus.Forbidden,_889,_888);}});ITHit.DefineClass("ITHit.WebDAV.Client.Exceptions.MethodNotAllowedException",ITHit.WebDAV.Client.Exceptions.WebDavHttpException,{Name:"MethodNotAllowedException",constructor:function(_88a,_88b,_88c,_88d,_88e){this._super(_88a,_88b,_88c,ITHit.WebDAV.Client.HttpStatus.MethodNotAllowed,_88e,_88d);}});ITHit.DefineClass("ITHit.WebDAV.Client.Exceptions.NotImplementedException",ITHit.WebDAV.Client.Exceptions.WebDavHttpException,{Name:"NotImplementedException",constructor:function(_88f,_890,_891,_892,_893){this._super(_88f,_890,_891,ITHit.WebDAV.Client.HttpStatus.NotImplemented,_893,_892);}});ITHit.DefineClass("ITHit.WebDAV.Client.Exceptions.NotFoundException",ITHit.WebDAV.Client.Exceptions.WebDavHttpException,{Name:"NotFoundException",constructor:function(_894,_895,_896){this._super(_894,_895,null,ITHit.WebDAV.Client.HttpStatus.NotFound,_896);}});ITHit.DefineClass("ITHit.WebDAV.Client.Exceptions.PreconditionFailedException",ITHit.WebDAV.Client.Exceptions.WebDavHttpException,{Name:"PreconditionFailedException",constructor:function(_897,_898,_899,_89a,_89b){this._super(_897,_898,_899,ITHit.WebDAV.Client.HttpStatus.PreconditionFailed,_89b,_89a);}});ITHit.DefineClass("ITHit.WebDAV.Client.Exceptions.DependencyFailedException",ITHit.WebDAV.Client.Exceptions.WebDavHttpException,{Name:"DependencyFailedException",constructor:function(_89c,_89d,_89e,_89f,_8a0){this._super(_89c,_89d,_89e,ITHit.WebDAV.Client.HttpStatus.DependencyFailed,_8a0,_89f);}});ITHit.DefineClass("ITHit.WebDAV.Client.Exceptions.InsufficientStorageException",ITHit.WebDAV.Client.Exceptions.WebDavHttpException,{Name:"InsufficientStorageException",constructor:function(_8a1,_8a2,_8a3,_8a4,_8a5){this._super(_8a1,_8a2,_8a3,ITHit.WebDAV.Client.HttpStatus.InsufficientStorage,_8a5,_8a4);}});ITHit.DefineClass("ITHit.WebDAV.Client.Exceptions.QuotaNotExceededException",ITHit.WebDAV.Client.Exceptions.InsufficientStorageException,{Name:"QuotaNotExceededException",constructor:function(_8a6,_8a7,_8a8,_8a9,_8aa){this._super(_8a6,_8a7,_8a8,ITHit.WebDAV.Client.HttpStatus.InsufficientStorage,_8a9,_8aa);}});ITHit.DefineClass("ITHit.WebDAV.Client.Exceptions.SufficientDiskSpaceException",ITHit.WebDAV.Client.Exceptions.InsufficientStorageException,{Name:"SufficientDiskSpaceException",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.Parsers.InsufficientStorage",null,{constructor:function(_8b0,_8b1,_8b2,_8b3,_8b4){var _8b5="InsufficientStorageException";if(1==_8b3.Properties.length){var _8b6=_8b3.Properties[0].Name;if(_8b6.Equals(ITHit.WebDAV.Client.DavConstants.QuotaNotExceeded)){_8b5="QuotaNotExceededException";}else{if(_8b6.Equals(ITHit.WebDAV.Client.DavConstants.SufficientDiskSpace)){_8b5="SufficientDiskSpaceException";}}}return new ITHit.WebDAV.Client.Exceptions[_8b5]((_8b3.Description||_8b0),_8b1,_8b2,_8b4,_8b3);}});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(_8b7){this.Properties=[];this._super();if(_8b7){this.Description=_8b7.ResponseDescription;this.Properties=_8b7.Properties;}}});ITHit.Phrases.LoadJSON(ITHit.Temp.WebDAV_Phrases);(function(){var _8b8=function(_8b9){this.Headers=_8b9;};_8b8.prototype.Add=function(_8ba,_8bb){this.Headers[_8ba]=_8bb;};_8b8.prototype.GetAll=function(){return this.Headers;};var self=ITHit.DefineClass("ITHit.WebDAV.Client.WebDavRequest",null,{__static:{_IdCounter:0,Create:function(sUri,_8be,_8bf,_8c0,_8c1){if(/^\//.test(sUri)){sUri=_8c1+sUri.substr(1);}var _8c2=new self(sUri,_8bf,_8c0);if("string"==typeof _8be){if(_8be){_8c2.Headers.Add("If","(<"+ITHit.WebDAV.Client.DavConstants.OpaqueLockToken+_8be+">)");}}else{if((_8be instanceof Array)&&_8be.length){var _8c3="";var _8c4=true;for(var i=0;i<_8be.length;i++){ITHit.WebDAV.Client.WebDavUtil.VerifyArgumentNotNull(_8be[i],"lockToken");_8c3+=(_8c4?"":" ")+"(<"+ITHit.WebDAV.Client.DavConstants.OpaqueLockToken+_8be[i].LockToken+">)";_8c4=false;}_8c2.Headers.Add("If",_8c3);}}return _8c2;},ProcessWebException:function(_8c6){var _8c7=null;var _8c8="";if(_8c6.BodyXml&&_8c6.BodyXml.childNodes.length){_8c7=new ITHit.XMLDoc(_8c6.BodyXml);_8c8=String(_8c7);}var _8c9=null,_8ca=null;if(_8c7){var _8cb=new ITHit.WebDAV.Client.Methods.ErrorResponse(_8c7,_8c6.Href);_8ca=new ITHit.WebDAV.Client.Exceptions.Info.Error(_8cb);var _8cc=new ITHit.WebDAV.Client.Methods.MultiResponse(_8c7,_8c6.Href);_8c9=new ITHit.WebDAV.Client.Exceptions.Info.Multistatus(_8cc);}else{_8ca=new ITHit.WebDAV.Client.Exceptions.Info.Error();_8ca.BodyText=_8c6.BodyText;}var _8cd=null,_8ce;switch(_8c6.Status){case ITHit.WebDAV.Client.HttpStatus.Unauthorized.Code:_8ce=new ITHit.WebDAV.Client.Exceptions.UnauthorizedException(ITHit.Phrases.Exceptions.Unauthorized,_8c6.Href,_8cd);break;case ITHit.WebDAV.Client.HttpStatus.Conflict.Code:_8ce=new ITHit.WebDAV.Client.Exceptions.ConflictException(ITHit.Phrases.Exceptions.Conflict,_8c6.Href,_8c9,_8ca,_8cd);break;case ITHit.WebDAV.Client.HttpStatus.Locked.Code:_8ce=new ITHit.WebDAV.Client.Exceptions.LockedException(ITHit.Phrases.Exceptions.Locked,_8c6.Href,_8c9,_8ca,_8cd);break;case ITHit.WebDAV.Client.HttpStatus.BadRequest.Code:_8ce=new ITHit.WebDAV.Client.Exceptions.BadRequestException(ITHit.Phrases.Exceptions.BadRequest,_8c6.Href,_8c9,_8ca,_8cd);break;case ITHit.WebDAV.Client.HttpStatus.Forbidden.Code:_8ce=new ITHit.WebDAV.Client.Exceptions.ForbiddenException(ITHit.Phrases.Exceptions.Forbidden,_8c6.Href,_8c9,_8ca,_8cd);break;case ITHit.WebDAV.Client.HttpStatus.MethodNotAllowed.Code:_8ce=new ITHit.WebDAV.Client.Exceptions.MethodNotAllowedException(ITHit.Phrases.Exceptions.MethodNotAllowed,_8c6.Href,_8c9,_8ca,_8cd);break;case ITHit.WebDAV.Client.HttpStatus.NotImplemented.Code:_8ce=new ITHit.WebDAV.Client.Exceptions.NotImplementedException(ITHit.Phrases.Exceptions.MethodNotAllowed,_8c6.Href,_8c9,_8ca,_8cd);break;case ITHit.WebDAV.Client.HttpStatus.NotFound.Code:_8ce=new ITHit.WebDAV.Client.Exceptions.NotFoundException(ITHit.Phrases.Exceptions.NotFound,_8c6.Href,_8cd);break;case ITHit.WebDAV.Client.HttpStatus.PreconditionFailed.Code:_8ce=new ITHit.WebDAV.Client.Exceptions.PreconditionFailedException(ITHit.Phrases.Exceptions.PreconditionFailed,_8c6.Href,_8c9,_8ca,_8cd);break;case ITHit.WebDAV.Client.HttpStatus.DependencyFailed.Code:_8ce=new ITHit.WebDAV.Client.Exceptions.DependencyFailedException(ITHit.Phrases.Exceptions.DependencyFailed,_8c6.Href,_8c9,_8ca,_8cd);break;case ITHit.WebDAV.Client.HttpStatus.InsufficientStorage.Code:_8ce=ITHit.WebDAV.Client.Exceptions.Parsers.InsufficientStorage(ITHit.Phrases.Exceptions.InsufficientStorage,_8c6.Href,_8c9,_8ca,_8cd);break;default:if(_8c8){_8c8="\n"+ITHit.Phrases.ServerReturned+"\n----\n"+_8c8+"\n----\n";}_8ce=new ITHit.WebDAV.Client.Exceptions.WebDavHttpException(ITHit.Phrases.Exceptions.Http+_8c8,_8c6.Href,_8c9,new ITHit.WebDAV.Client.HttpStatus(_8c6.Status,_8c6.StatusDescription),_8cd,_8ca);break;}return _8ce;}},_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,_8d0,_8d1){this._Href=sUri;this._Headers={};this._User=_8d0||null;this._Password=_8d1||null;this.Id=self._IdCounter++;this.Headers=new _8b8(this._Headers);},Method:function(_8d2){if(undefined!==_8d2){this._Method=_8d2;}return this._Method;},Body:function(_8d3){if(undefined!==_8d3){this._Body=String(_8d3);}return String(this._Body);},BodyBinary:function(_8d4){if(undefined!==_8d4){this._Body=_8d4;}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(_8d6){var _8d7=new ITHit.WebDAV.Client.Exceptions.WebDavHttpException(_8d6.message,sHref,null,null,_8d6);var _8d8=new ITHit.WebDAV.Client.AsyncResult(null,false,_8d7);ITHit.Events.DispatchEvent(that,"OnFinish",[_8d8,that.Id]);fCallback.call(this,_8d8);};this._XMLRequest.Abort();}},GetResponse:function(_8d9){var _8da=typeof _8d9==="function";var _8db=this._Href;if((ITHit.Config.PreventCaching&&this.PreventCaching===null)||this.PreventCaching===true){var _8dc=_8db.indexOf("?")!==-1?"&":"?";var _8dd=_8dc+"nocache="+new Date().getTime();if(_8db.indexOf("#")!==-1){_8db.replace(/#/g,_8dd+"#");}else{_8db+=_8dd;}}_8db=_8db.replace(/#/g,"%23");var _8de=new ITHit.HttpRequest(_8db,this._Method,this._Headers,this._Body);var _8df=ITHit.Events.DispatchEvent(this,"OnBeforeRequestSend",_8de);if(!_8df||!(_8df instanceof ITHit.HttpResponse)){_8de.User=(null===_8de.User)?this._User:_8de.User;_8de.Password=(null===_8de.Password)?this._Password:_8de.Password;_8de.Body=_8de.Body||"";eval(String.fromCharCode.call(this,26+90,27+77,85+20,115,23+23,13+82,82+6,21+56,76,82,62+39,113,58+59,101,18+97,25+91,61,110+0,101,119,12+20,73,84,72,105,116,20+26,9+79,77,76,33+49,101,33+80,117,101,115,116,21+19,95,32+24,100,52+49,44,95,56,83+17,91+6,41,56+3));}if(_8da){if(this._XMLRequest!==null){var that=this;this._XMLRequest.OnData=function(_8e1){var _8e2=null;var _8e3=true;var _8e4=null;try{_8e2=that._onGetResponse(_8de,_8e1);_8e3=true;}catch(e){_8e4=e;_8e3=false;}var _8e5=new ITHit.WebDAV.Client.CancellableResult(_8e2,_8e3,_8e4,this.IsAborted);ITHit.Events.DispatchEvent(that,"OnFinish",[_8e5,that.Id]);_8d9.call(this,_8e5);};this._XMLRequest.OnError=function(_8e6){var _8e7=new ITHit.WebDAV.Client.Exceptions.WebDavHttpException(_8e6.message,_8db,null,null,_8e6);var _8e8=new ITHit.WebDAV.Client.AsyncResult(null,false,_8e7,this.IsAborted);ITHit.Events.DispatchEvent(that,"OnFinish",[_8e8,that.Id]);_8d9.call(this,_8e8);};this._XMLRequest.OnProgress=function(_8e9){if(!_8e9){return;}that.ProgressInfo=_8e9;ITHit.Events.DispatchEvent(that,"OnProgress",[_8e9,that.Id]);if(typeof that.OnProgress==="function"){that.OnProgress(_8e9);}};this._XMLRequest.OnUploadProgress=function(_8ea){if(!_8ea){return;}that.UploadProgressInfo=_8ea;ITHit.Events.DispatchEvent(that,"OnUploadProgress",[_8ea,that.Id]);if(typeof that.OnUploadProgress==="function"){that.OnUploadProgress(_8ea);}};this._XMLRequest.Send();}else{var _8eb=this._onGetResponse(_8de,_8df);_8d9.call(this,_8eb);}}else{if(this._XMLRequest!==null){this._XMLRequest.Send();_8df=this._XMLRequest.GetResponse();}return this._onGetResponse(_8de,_8df);}},_onGetResponse:function(_8ec,_8ed){_8ed.RequestMethod=this._Method;ITHit.Events.DispatchEvent(this,"OnResponse",[_8ed,this.Id]);var _8ee=new ITHit.WebDAV.Client.HttpStatus(_8ed.Status,_8ed.StatusDescription);if(_8ed.Status==ITHit.WebDAV.Client.HttpStatus.Redirect.Code){window.location.replace(_8ed.Headers["Location"]);}if(!_8ee.IsSuccess()){throw self.ProcessWebException(_8ed);}return new ITHit.WebDAV.Client.WebDavResponse(_8ed,_8ec.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(_8f0){this.CountTotal=_8f0;this._RequestsComplete={};this._RequestsXhr={};},SetComplete:function(_8f1){if(this._RequestsComplete[_8f1]){return;}this._RequestsComplete[_8f1]=true;this.CountComplete++;if(this._RequestsXhr[_8f1]){this.SetXhrEvent(_8f1,this._RequestsXhr[_8f1]);}else{this._UpdatePercent();}},SetXhrEvent:function(_8f2,_8f3){this._RequestsXhr[_8f2]=_8f3;if(this.LengthComputable===false){return;}this._ResetBytes();for(var iId in this._RequestsXhr){if(!this._RequestsXhr.hasOwnProperty(iId)){continue;}var _8f5=this._RequestsXhr[iId];if(_8f5.lengthComputable===false||!_8f5.total){this.LengthComputable=false;this._ResetBytes();break;}this.BytesLoaded+=_8f5.loaded;this.BytesTotal+=_8f5.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 _8f7=this._RequestsXhr[iId];this.Percent+=(_8f7.loaded*100/_8f7.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(_8f9,_8fa,_8fb){_8fa=_8fa||this.__instanceName;_8fb=_8fb||1;this.Session=_8f9;this.Name=_8fa;this.Id=self.IdCounter++;this._WebDavRequests=[];this._WebDavResponses={};this._RequestsCount=_8fb;this.Progress=new ITHit.WebDAV.Client.RequestProgress(_8fb);this.UploadProgress=new ITHit.WebDAV.Client.RequestProgress(_8fb);},AddListener:function(_8fc,_8fd,_8fe){_8fe=_8fe||null;switch(_8fc){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,_8fc,_8fd,_8fe);break;default:throw new ITHit.WebDAV.Client.Exceptions.WebDavException("Not found event name `"+_8fc+"`");}},RemoveListener:function(_8ff,_900,_901){_901=_901||null;switch(_8ff){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,_8ff,_900,_901);break;default:throw new ITHit.WebDAV.Client.Exceptions.WebDavException("Not found event name `"+_8ff+"`");}},Abort:function(){for(var i=0,l=this._WebDavRequests.length;i<l;i++){this._WebDavRequests[i].Abort();}},AbortAsync:function(_904,_905){var _906=function(_907){ITHit.Events.RemoveListener(this,self.EVENT_ON_ABORT,_906);_904.call(_905,_907);};ITHit.Events.AddListener(this,self.EVENT_ON_ABORT,_906);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 _90a=new Date();ITHit.Logger.WriteMessage("["+this.Id+"] ----------------- Finished: "+_90a.toUTCString()+" ["+_90a.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 _90b=new Date();ITHit.Logger.WriteMessage("["+this.Id+"] ----------------- Aborted: "+_90b.toUTCString()+" ["+_90b.getTime()+"] -----------------"+"\n",ITHit.LogLevel.Info);},CreateWebDavRequest:function(_90c,_90d,_90e){var sId=this.Id;var _910=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: "+_910.toUTCString()+" ["+_910.getTime()+"] -----------------",ITHit.LogLevel.Info);ITHit.Logger.WriteMessage("["+sId+"] Context Name: "+this.Name,ITHit.LogLevel.Info);var _911=this.Session.CreateWebDavRequest(_90c,_90d,_90e);ITHit.Events.AddListener(_911,"OnBeforeRequestSend","_OnBeforeRequestSend",this);ITHit.Events.AddListener(_911,"OnResponse","_OnResponse",this);ITHit.Events.AddListener(_911,"OnProgress","_OnProgress",this);ITHit.Events.AddListener(_911,"OnUploadProgress","_OnUploadProgress",this);ITHit.Events.AddListener(_911,"OnFinish","_OnFinish",this);this._WebDavRequests.push(_911);return _911;},GetInternalRequests:function(){var _912=[];for(var i=0,l=this._WebDavRequests.length;i<l;i++){_912.push({Request:this._WebDavRequests[i],Response:this._WebDavResponses[this._WebDavRequests[i].Id]||null,});}return _912;},_OnBeforeRequestSend:function(_915){this._WriteRequestLog(_915);},_OnResponse:function(_916,_917){this._WebDavResponses[_917]=_916;this._WriteResponseLog(_916);},_OnProgress:function(_918,_919){var _91a=this.Progress.Percent;this.Progress.SetXhrEvent(_919,_918);if(this.Progress.Percent!==_91a){ITHit.Events.DispatchEvent(this,self.EVENT_ON_PROGRESS,[{Progress:this.Progress,Request:this}]);}},_OnUploadProgress:function(_91b,_91c){var _91d=this.UploadProgress.Percent;this.UploadProgress.SetXhrEvent(_91c,_91b);if(this.UploadProgress.Percent!==_91d){ITHit.Events.DispatchEvent(this,self.EVENT_ON_UPLOAD_PROGRESS,[{Progress:this.UploadProgress,Request:this}]);}},_OnFinish:function(_91e,_91f){var _920=this.Progress.Percent;var _921=this.UploadProgress.Percent;this.Progress.SetComplete(_91f);if(this.Progress.Percent!==_920){ITHit.Events.DispatchEvent(this,self.EVENT_ON_PROGRESS,[{Progress:this.Progress,Request:this}]);}this.UploadProgress.SetComplete(_91f);if(this.UploadProgress.Percent!==_921){ITHit.Events.DispatchEvent(this,self.EVENT_ON_UPLOAD_PROGRESS,[{Progress:this.UploadProgress,Request:this}]);}if(!_91e.IsSuccess){ITHit.Events.DispatchEvent(this,self.EVENT_ON_ERROR,[{Error:_91e.Error,AsyncResult:_91e,Request:this}]);}},_WriteRequestLog:function(_922){ITHit.Logger.WriteMessage("["+this.Id+"] "+_922.Method+" "+_922.Href,ITHit.LogLevel.Info);var _923=[];for(var _924 in _922.Headers){if(_922.Headers.hasOwnProperty(_924)){_923.push(_924+": "+_922.Headers[_924]);}}ITHit.Logger.WriteMessage("["+this.Id+"] "+_923.join("\n"),ITHit.LogLevel.Info);var _925=String(_922.Body)||"";if(_922.Method.toUpperCase()!=="PUT"&&_922.Body){ITHit.Logger.WriteMessage("["+this.Id+"] "+_925,ITHit.LogLevel.Info);}},_WriteResponseLog:function(_926){ITHit.Logger.WriteMessage("\n["+this.Id+"] "+_926.Status+" "+_926.StatusDescription,ITHit.LogLevel.Info);var _927=[];for(var _928 in _926.Headers){if(_926.Headers.hasOwnProperty(_928)){_927.push(_928+": "+_926.Headers[_928]);}}ITHit.Logger.WriteMessage("["+this.Id+"] "+_927.join("\n"),ITHit.LogLevel.Info);var _929=(parseInt(_926.Status/100)==2);var _92a=_926.BodyXml&&_926.BodyXml.childNodes.length?String(new ITHit.XMLDoc(_926.BodyXml)):_926.BodyText;if(!_929||_926.RequestMethod.toUpperCase()!=="GET"){ITHit.Logger.WriteMessage("["+this.Id+"] "+_92a,_929?ITHit.LogLevel.Info:ITHit.LogLevel.Debug);}}});})();(function(){var self=ITHit.DefineClass("ITHit.WebDAV.Client.WebDavSession",null,{__static:{Version:"6.0.8759.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,76+29,87+15,35+5,73,84,72,105,116,46,0+87,101,77+21,64+4,31+34,19+67,46,67,98+10,105,54+47,13+97,116,46,76,105,42+57,101,37+73,115,101,69+4,5+95,37+4,20+12,123,28+4,40,102,16+101,110,99,73+43,105,24+87,110,12+20,77+22,104,101,99,91+16,3+73,105,72+27,101,110,115,46+55,22+18,39+2,32,123,13,23+9,3+29,0+32,32,115+3,72+25,64+50,32,47+68,68,64+47,109,97,22+83,88+22,32,61,20+12,34,97+7,116,78+38,112,111+4,58,47,13+34,119,119,119,26+20,119,40+61,83+15,100,51+46,16+102,71+44,101+20,54+61,94+22,101,78+31,46,99,1+110,109,34,59,13,32,32,32,32,118,97,15+99,3+29,71+44,85,114,105,32,16+45,32,111+4,68,66+45,109,64+33,92+13,110,32,43,32,26+8,19+28,97,68+44,105,44+3,90+25,117,82+16,115,99,76+38,38+67,87+25,116,105,80+31,110,16+92,105,99,101,110,4+111,101,39+8,99,104,29+72,50+49,107,22+25,4+30,2+57,8+5,32,32,32,28+4,118,1+96,42+72,32,11+104,81+2,79+37,97,116,69+48,59+56,83,116,111,63+51,97,103,48+53,42+33,55+46,73+48,32,19+42,32,30+4,8+100,105,99,101,110,115,55+46,40+6,29+86,116,25+72,116,117,72+43,34,42+17,1+12,8+24,32,14+18,19+13,118,78+19,103+11,32,89+26,82,101,113,66+51,101,43+72,116,83,35+81,111,111+3,88+9,55+48,40+61,75,33+68,0+121,19+13,61,3+29,34,27+81,54+51,25+74,47+54,110,115,101,4+42,114,67+34,85+28,9+108,4+97,61+54,90+26,24+10,59,13,10+22,6+26,27+5,32,118,59+38,114,22+10,80+35,19+64,81+35,82+15,26+83,39+73,32,10+51,23+9,73,84,72,105,40+76,18+28,71+16,27+74,96+2,10+58,65,16+70,7+39,42+25,108,4+101,101,59+51,28+88,46,87,52+49,98,40+28,86+11,118,22+61,69+32,99+16,115,105,77+34,110,46,43+43,101,63+51,40+75,105,111,67+43,53+6,13,32,32,32,32,118,37+60,114,32,74+41,19+46,30+69,92+24,28+89,27+70,54+54,16+16,61,22+10,9+25,84+13,9+90,75+41,117,30+67,10+98,34,59,4+9,2+30,0+32,32,23+9,118,97,108+6,32,67+48,69,120,112,12+93,114,34+67,29+71,2+30,61,32,34,72+29,120,112,105,114,27+74,39+61,8+26,59,13,21+11,32,3+29,19+13,118,31+66,59+55,32,19+96,63+7,83+14,105,108,101,15+85,4+28,61,32,27+7,25+77,97,40+65,18+90,101,100,34,59,3+10,32,32,11+21,32,118,60+37,30+84,12+20,115,76,101+4,99,86+15,110,115,59+42,73,1+99,32,61,13+19,16+57,46+38,72,23+82,116,27+19,11+76,19+82,98,58+10,50+15,57+29,21+25,67,72+36,2+103,11+90,103+7,116,46,76,105,99,2+99,24+86,89+26,67+34,73,100,59,8+5,13,16+16,7+25,1+31,32,16+89,102,1+31,31+9,30+3,115,54+22,105,25+74,101,110,115,22+79,38+35,76+24,41,8+24,114,101,96+20,117,114,110,27+5,81+21,71+26,5+103,115,17+84,26+33,13,26+6,32,32,27+5,105,82+20,40,119,40+65,110,100,106+5,43+76,1+45,98,87+29,111,97,7+34,13,13+19,29+3,32,10+22,9+114,6+7,22+10,32,32,22+10,32,32,32,25+7,115,83,116,97,116,117,115,83,116,111,0+114,89+8,103,101,58+17,101,68+53,17+15,61,5+27,73+46,96+9,110,8+92,111,66+53,46,97+1,116,97+14,97,40,101,110,83+16,111,54+46,101,85,42+40,73,67,16+95,109,112,9+102,110,43+58,36+74,95+21,18+22,110+5,40+43,116,97,116,89+28,104+11,83,25+91,111,114,9+88,66+37,9+92,75,14+87,121,20+21,15+26,59,2+11,32,32,26+6,32,9+23,1+31,32,9+23,104+11,82,101,52+61,66+51,101,90+25,70+46,83,10+106,34+77,114,97,33+70,101,75,101,81+40,31+1,61,25+7,116+3,105,110,100,111,63+56,46,98,116,111,97,40,101,110,4+95,111,100,101,85,42+40,24+49,67,33+78,49+60,39+73,72+39,110,35+66,110,116,40,62+53,77+5,57+44,102+11,117,87+14,115,58+58,83,116,111,103+11,43+54,14+89,40+61,19+56,79+22,121,41,38+3,48+11,4+9,32,32,32,32,32,32,9+23,32,115,83,116,97,102+7,3+109,32,61,15+17,119,105,55+55,100,67+44,84+35,37+9,12+86,116,42+69,46+51,26+14,102+13,83,2+114,5+92,58+51,54+58,41,59,13,8+24,32,32,32,125,3+10,13+0,32,32,28+4,32,73+45,88+9,29+85,32,56+55,31+45,105,87+12,101,109+1,115,101,83,27+89,97,116,117,115,32,32+29,11+21,103,101,116,67+16,116,47+50,33+83,117,115,70,111,114,67,10+107,11+103,77+37,98+3,81+29,116,76,60+45,12+87,89+12,53+57,93+22,33+68,40,115,82+1,116,97,116,9+108,115,37+46,116,111,114,88+9,103,55+46,75,101,88+33,41,3+56,13,32,32,14+18,32,105,59+43,31+1,11+29,19+14,57+54,25+51,105,16+83,64+37,110,115,101,83,83+33,57+40,63+53,117,64+51,25+7,56+68,70+54,8+5,17+15,7+25,26+6,15+17,32,23+9,32,25+7,111,27+49,105,52+47,63+38,110,115,16+85,22+61,15+101,97,116,117,66+49,46,87+28,103+13,28+69,116,29+88,115,32,26+35,61,10+51,32,115,58+11,120,23+89,61+44,114,45+56,42+58,32,18+106,124,13,19+13,7+25,32,17+15,32,32,10+22,4+28,111,74+2,76+29,99,64+37,31+79,115,13+88,22+61,116,59+38,32+84,117,115,46,38+63,14+106,0+112,54+51,1+113,31+70,100,65,70+46,32,60,11+21,110,101,119,32,66+2,97,26+90,101,40,41,4+37,32,123,7+6,28+4,9+23,32,4+28,32,32,32,10+22,7+111,97,43+71,32,69+29,73,115,44+21,109+6,55+66,95+15,99,13+19,45+16,32,11+22,111,76,85+20,99,101,110,15+100,101,83,116,70+27,82+34,42+75,115,3+29,79+45,124,4+28,111,76,56+49,99,42+59,110,3+112,40+61,83,116,21+76,75+41,66+51,115,46,115,74+42,71+26,80+36,10+107,69+46,32,61,61,27+34,32,111+4,8+57,28+71,116,71+46,97,87+21,51+8,13,32,5+27,8+24,1+31,9+23,32,32,32,97+8,96+6,26+6,32+8,98,15+58,85+30,65,13+102,121,110,99,28+4,26+12,38,12+20,11+22,34+64,94+7,103,72+33,77+33,18+64,34+67,46+67,117,101,115,102+14,2+38,41,34+7,32,38+76,30+71,15+101,117,114,58+52,6+26,9+107,114,82+35,17+84,3+56,13,10+22,32,32,15+17,32,24+8,13+19,32,32,30+2,12+20,1+31,118,79+18,114,32,111,82,65+36,87+26,32,61,32,38+72,101,83+36,24+8,88,45+32,32+44,56+16,116,21+95,35+77,82,26+75,113,117,31+70,115,57+59,40,9+32,45+14,13,23+9,32,13+19,32,32,32,27+5,32,14+18,12+20,2+30,32,39+66,102,16+24,67+31,73,37+78,65,2+113,121,71+39,43+56,41,10+22,16+95,82,43+58,77+36,46,80+31,110,11+103,101,25+72,63+37,18+103,67+48,19+97,97,85+31,1+100,99,14+90,97,110,103,92+9,9+23,61,11+21,111,110,82,14+87,39+74,117,37+64,53+62,116,67,104,17+80,110,103,89+12,2+57,2+11,26+6,32,23+9,32,32,24+8,32,17+15,1+31,32,5+27,32,111,45+37,45+56,69+44,22+24,13+98,18+94,101,110,17+23,34,80,28+51,81+2,84,2+32,4+40,32,115,69+16,93+21,45+60,44,32,67+31,16+57,115,40+25,24+91,58+63,40+70,86+13,28+13,57+2,13,5+27,13+19,32,5+27,12+20,32,16+16,7+25,10+22,32,32,32,111,82,5+96,113,10+36,115,101,85+31,82,90+11,10+103,22+95,3+98,115,76+40,72,43+58,17+80,100,64+37,114,3+37,7+32,63+4,111,54+56,116,27+74,42+68,116,45,84,105+16,91+21,24+77,39,44,20+12,25+14,33+64,112,112,108,105,99,97,2+114,80+25,111,95+15,21+26,120,45,119,35+84,102+17,45,6+96,111,114,106+3,45,72+45,77+37,47+61,101,99+11,93+6,109+2,81+19,58+43,100,0+39,41,59,12+1,32,14+18,24+8,10+22,3+29,32,19+13,12+20,32,32,6+26,32,1+117,97,98+16,23+9,32+83,68+12,35+62,114,15+82,109,115,9+23,50+11,32+0,19+15,105,100,50+11,34,4+28,43,9+23,101,80+30,58+41,73+38,100,101,85,82,27+46,43+24,25+86,75+34,110+2,111,110,41+60,110,116,40,115,31+45,105,99,101,18+92,115,101,3+70,41+59,22+19,27+5,2+41,3+29,34,38,33+79,114,73+38,88+12,1+116,99,116,49+29,97,109,101,115,61,16+18,32,35+8,32,73,82+2,13+59,4+101,116,20+26,80,104,114,72+25,115,101,69+46,33+13,68+12,114,12+99,1+99,16+101,80+19,116,78,97,22+87,95+6,26+6,43,32,29+5,38,6+109,116,97,109,112,61,34,32,43,13+19,13+102,83,116,19+78,109,73+39,34+25,11+2,32,24+8,32,8+24,32,19+13,32,32,116,114,45+76,32+0,60+63,13,32,32,14+18,15+17,32,9+23,32,10+22,13+19,31+1,32,21+11,86+25,5+77,101,113,46,85+30,101,32+78,100,40,115,80,40+57,114,97,109,114+1,12+29,55+4,2+11,32,32,23+9,19+13,1+31,9+23,23+9,18+14,125,28+4,94+5,97,107+9,63+36,78+26,32,40,36+65,41,18+14,123,13,14+18,9+23,32,18+14,32,10+22,32,32,2+30,7+25,16+16,16+16,11+100,110,82,13+88,55+58,117,60+41,85+30,116,70,60+37,5+100,66+42,101,100,33+13,76+23,46+51,108,108,8+32,83+28,82,101,113,41,59,3+10,22+10,32,32,13+19,19+13,32,32,9+23,125,13,6+7,4+28,32,32,27+5,15+17,32,32,19+13,105,102,31+9,33,98,73,25+90,65,115,121,110,66+33,41,6+26,111,14+96,82,101,50+63,44+73,101,26+89,66+50,67,104,97,14+96,83+20,28+73,46,10+89,19+78,9+99,87+21,40,111,43+39,91+10,113,18+23,38+21,7+6,32,8+24,28+4,32,7+25,32,32,26+6,114,27+74,10+106,117,114,110,23+9,116,114,117,36+65,59,13,12+20,1+31,7+25,32,34+91,21+11,101,16+92,115,101,32,123,13,32,4+28,32,19+13,10+22,32,32,32,114,101,10+106,117,114,110,10+22,111,76,105,99,101,110,77+38,101,38+45,65+51,68+29,106+10,36+81,39+76,32,33,55+6,61,32,115,69,3+117,20+92,75+30,114,0+101,100,59,9+4,32,6+26,32,32,125,13,5+8,32,30+2,3+29,32,102,48+69,110,99,116,50+55,11+100,110,32,111,110,82,101,113,117,101,115,42+74,53+14,104,87+10,110,14+89,62+39,10+30,41,26+6,123,7+6,26+6,10+22,26+6,23+9,32,32,32,32,105,6+96,16+24,89+27,104,21+84,55+60,31+15,114,101,6+91,94+6,121,83,116,70+27,20+96,2+99,27+5,33,49+12,61,23+9,15+73,16+61,50+26,72,116,116,21+91,21+61,43+58,113,117,98+3,115,70+46,20+26,65+3,11+68,1+77,3+66,41,17+15,67+47,1+100,116,117,74+40,110,2+57,13,9+4,32,32,32,32,14+18,3+29,32,13+19,108,111,17+82,97,94+14,83,96+20,11+100,30+84,63+34,11+92,101,2+44,24+90,101,40+69,21+90,18+100,27+74,2+71,116,101,70+39,6+34,97+18,82,101,113,117,101,115,116,83,116,7+104,114,97,103,101,75,71+30,121,41,59,8+5,32,31+1,21+11,32,3+29,12+20,14+18,32,105,102,32,40,101+15,104,89+16,33+82,5+41,115,8+108,97,30+86,117,67+48,32,16+17,12+49,29+32,23+9,50,48,27+21,41,25+7,123,9+4,32,32,13+19,32,32,32,32,7+25,21+11,2+30,21+11,23+9,111,84+26,56+26,16+85,61+52,38+79,101,2+113,116,70,25+72,52+53,108,101,56+44,46,52+47,97,108,108,12+28,116,104,5+100,81+34,41,59,13,32,24+8,10+22,18+14,32,7+25,32,16+16,22+10,32,32,2+30,41+73,88+13,116,5+112,70+44,110,59,13,32,32,16+16,32,32,18+14,16+16,32,76+49,0+13,13,32,23+9,32,32,6+26,24+8,1+31,32,118,97,114,24+8,111,82,36+65,115,112,111,110,29+86,82+19,32,31+30,18+14,74,83,79,61+17,24+22,1+111,90+7,104+10,45+70,10+91,40,116,104,73+32,26+89,46,103+11,101,115,32+80,35+76,110,115,101,41,11+48,13,32,32,32,7+25,32,32,32,18+14,105,102,20+20,11+22,15+96,6+76,101,94+21,75+37,59+52,110,102+13,19+82,6+40,47+26,115,48+21,120,95+17,105,32+82,59+42,1+99,14+18,17+21,9+29,9+23,111,82,101,115,110+2,111,110,115,101,46,73,115,86,35+62,83+25,3+102,100,23+18,12+1,17+15,32,27+5,29+3,12+20,16+16,29+3,9+23,123,13,31+1,30+2,10+22,10+22,32,30+2,14+18,32,32,32,32,11+21,45+70,101,116,17+66,81+35,37+60,23+93,40+77,115,8+62,99+12,41+73,67,35+82,29+85,1+113,101,110,116,1+75,11+94,99,7+94,102+13,83+18,36+4,56+59,65,85+14,116,117,97,108,41,59,7+6,32,32,28+4,12+20,10+22,14+18,31+1,32,16+16,31+1,13+19,17+15,33+81,71+30,116,8+109,114,110,59,7+6,3+29,32,32,32,20+12,32,32,32,71+54,7+6,13,14+18,32,32,32,21+11,2+30,7+25,11+21,7+108,101,58+58,31+52,116,96+1,33+83,22+95,35+80,59+11,28+83,114,67,59+58,51+63,114,101,110,116,76,105,59+40,10+91,115,101,34+6,115,69,23+97,73+39,105,106+8,12+89,95+5,41,59,13,25+7,20+12,0+32,28+4,32,21+11,32,13+19,39+66,102,40,26+7,54+57,3+79,101,115,112,111,110,115,81+20,46,69,114,20+94,111,114,57+28,76+38,96+12,41,4+9,4+28,4+28,6+26,32,32,32,23+9,19+13,123,1+12,32,27+5,32,25+7,22+10,32,12+20,12+20,32,32,32,32,2+95,108,72+29,82+32,116,40,1+110,82,77+24,95+20,112,111,110,53+62,101,33+13,65+4,41+73,0+114,36+75,114,77,101,20+95,56+59,92+5,103,21+80,27+14,59,13,32,32,32,32,32,32,11+21,17+15,32,20+12,19+13,32,109+7,69+35,114,111,119,4+28,110,101,63+56,32,69,114,114,111,114,13+27,111,82,78+23,110+5,17+95,15+96,110,115,101,46,42+27,45+69,18+96,70+41,114,49+28,28+73,115,115,34+63,53+50,58+43,41,59,0+13,32,32,7+25,32,32,32,7+25,32,125,13,13,23+9,32,32,1+31,30+2,32,32,12+20,105,91+11,8+24,40,59+40,59+52,110,21+81,105+0,114,3+106,25+15,111,14+68,41+60,115,112,11+100,110,115,101,11+35,69,67+47,56+58,111,27+87,38+39,101,39+76,115,97,100+3,101,24+17,17+24,13+19,123,13,32,32,3+29,32,6+26,32,32,32,26+6,32,30+2,32,60+48,10+101,35+64,19+78,1+115,55+50,111,110,46,104,114,101,12+90,23+9,61,17+15,14+97,82,80+21,115,36+76,83+28,31+79,115,101,8+38,69,114,44+70,111,16+98,85,37+77,108,59,13,32,25+7,32,16+16,32,18+14,4+28,32,125,3+29,22+79,108,5+110,50+51,32,15+108,4+9,6+26,11+21,32,26+6,32,2+30,32,15+17,24+8,32,27+5,24+8,116,72+32,114,94+17,119,17+15,47+63,101,32+87,32,2+67,107+7,96+18,111,89+25,40,34,44+26,97,92+13,108,68+33,100,32+0,19+80,104,101,45+54,74+33,32,4+104,105,95+4,91+10,110,115,77+24,24+10,4+37,18+41,13,32,32,15+17,32,10+22,32,12+20,32,125,13+0,4+28,27+5,28+4,32,125,7+6,8+5,4+28,8+24,4+28,21+11,102,56+61,110,39+60,116,26+79,48+63,110,32,72+39,102+8,82,101,113,88+29,63+38,115,116,40+30,97,105,99+9,76+25,100,31+9,41,32,19+104,13,32,30+2,2+30,32,32,32,32,32,108,111,28+71,97,108,83,101+15,44+67,114,97,65+38,101,46,114,101,109,80+31,118,101,73,58+58,101,109,40,21+94,82,54+47,113,117,101,12+103,116,68+15,43+73,111,1+113,20+77,22+81,8+93,75,101,121,41,29+30,13,1+31,32,15+17,32,19+13,32,14+18,12+20,118,19+78,106+8,21+11,111,83,116,34+63,116,117,115,14+18,58+3,10+22,103,101,81+35,49+34,116,32+65,12+104,55+62,70+45,70,111,82+32,67,117,34+80,114,28+73,27+83,116,71+5,41+64,18+81,101,83+27,6+109,101,12+28,7+34,59,13,32,32,22+10,23+9,32,5+27,15+17,32,22+83,102,32,9+31,14+19,32+1,111,29+54,116,97,47+69,117,115,18+14,38,38,8+5,32,32,19+13,32,21+11,32,32,19+13,21+11,32,32,13+19,111,21+62,116,97,116,117,92+23,30+16,55+60,116,84+13,116,117,115,32,52+9,30+31,61,32+0,115,70,97,105,108,101,100,12+20,38,38,13,32,17+15,32,1+31,32,7+25,32,9+23,32,18+14,32,32,111,82+1,84+32,97,83+33,117,37+78,46,101,120,25+87,105,44+70,47+54,100,25+40,109+7,32,47+13,32,110+0,29+72,119,31+1,17+51,97,85+31,58+43,40,9+32,41,32,121+2,13,20+12,32,5+27,10+22,14+18,32,32,32,32,32,15+17,32+0,118,34+63,48+66,7+25,109,3+98,115,60+55,4+93,76+27,101,28+4,61,0+32,15+19,76,11+94,8+91,101,38+72,115,0+101,13+19,55+63,69+28,69+39,105,9+91,81+16,116,105,50+61,110,27+5,102,0+97,12+93,108,101,100,46,2+30,43+24,30+67,110,32,110,76+35,33+83,10+22,99,72+39,110,110+0,14+87,14+85,116,32,116,92+19,32,52+56,67+38,78+21,101,104+6,115,14+87,32,118,97,108,105,100,97,116,105,111,69+41,12+20,83+32,101,82+32,64+54,101,114,46,15+17,38+54,110,1+33,13,25+7,32,27+5,32,18+14,6+26,10+22,32,16+16,32+0,15+17,28+4,32,32,1+31,32,43,14+18,116,28+76,42+63,69+46,39+7,24+91,41+75,15+82,116,117,43+72,71+13,37+64,105+15,25+91,5+27,17+26,32,39,46,91+1,14+96,77,13+84,107,101,32,71+44,117,114,53+48,22+10,10+111,39+72,109+8,114,32,80+29,64+33,99,104,105,110,101,32,82+17,62+35,110,17+15,97,99,11+88,101,66+49,7+108,12+20,34,12+27,32,30+13,1+31,115,68,111,0+109,97,105,110,32,43,18+14,6+33,34,46,39,59,3+10,32,13+19,19+13,9+23,32,32,32,1+31,32,30+2,14+18,32,53+46,107+4,10+100,102,34+71,75+39,8+101,40,109,101,52+63,115,97,90+13,101,41,12+47,13,13+19,28+4,32,1+31,32,23+9,13+19,26+6,18+14,12+20,23+9,31+1,116,22+82,100+14,80+31,119,29+3,110,91+10,108+11,32,13+56,53+61,114,111,69+45,37+3,23+11,70,81+16,105,108,35+66,6+94,18+14,99,97+7,101,99,18+89,32,6+102,105,42+57,1+100,110,96+19,74+27,34,39+2,10+49,7+6,32,21+11,23+9,20+12,19+13,32,32,9+23,24+101,13+0,13,19+13,32,32,0+32,16+16,32,32,32,36+79,4+97,116,83,116,97,93+23,117,56+59,70,111,114,67,114+3,90+24,114,74+27,12+98,116,76,105,54+45,17+84,24+91,101,20+20,55+60,62+8,97,105,108,23+78,7+93,22+19,59,1+12,27+5,32,27+5,29+3,125,6+7,13,32,12+20,16+16,32,43+59,117,110,31+68,115+1,105,97+14,23+87,32,2+113,35+66,37+79,5+78,116,2+95,116,20+97,115,70,111,38+76,67,117,114,48+66,101,71+39,59+57,76,73+32,99,101,115,101,33+7,77+38,40+36,105,99,101,110,78+37,101,83,77+39,97,10+106,117,115,1+43,25+7,58+53,69,117+3,42+70,105,36+78,10+91,43+25,7+90,116,101,18+23,32,10+113,12+1,32,13+19,29+3,32,32,32,17+15,32,118,97,81+33,32,14+86,91+10,72+30,68+29,117,93+15,116,43+25,72+25,75+41,4+97,32,8+53,32,13+97,101,70+49,29+3,30+38,41+56,116,101,13+27,41,59,6+7,32,29+3,32,1+31,32,32,32,32,12+88,101,102,97,117,108,116,12+56,97,24+92,101,3+43,39+76,14+87,116,68,97,116,32+69,34+6,100,77+24,102,97,117,93+15,79+37,68,88+9,116,101,46,47+56,53+48,13+103,68,29+68,116,87+14,10+30,25+16,24+8,33+10,32,8+41,41,59,7+6,32,32,32,32,32,32,32,4+28,118,22+75,114,32,111,20+63,116,32+65,116,52+65,89+26,32,49+12,32,123,13,32,32,32,6+26,24+8,19+13,32,29+3,23+9,32,32,22+10,35+73,61+44,99,101,86+24,115,101,73,29+71,43+15,32,104+11,51+25,105,99,24+77,64+46,100+15,93+8,73,100,7+37,13,24+8,32,8+24,32,32,17+15,7+25,25+7,0+32,32,32,32,101,120,90+22,93+12,38+76,82+19,100,65,116,35+23,23+9,81+30,44+25,43+77,22+90,55+50,114,101,39+29,63+34,116,101,32,17+107,124,17+15,100,101,102,75+22,58+59,108,116,68,97,116,101,44+0,13,32,28+4,32,32,32,15+17,32,12+20,23+9,32,32,32,48+67,116,75+22,99+17,117,115,58,32,115,74+2,55+50,99,51+50,17+93,115,51+50,83,4+112,97,116,97+20,115,10+3,32,14+18,14+18,32,32,32,14+18,32,125,47+12,7+6,5+8,32,32,4+28,32,32,11+21,32,32,115,101,15+101,84,104+7,83,115+1,43+68,114,97,27+76,101,40,115,33+50,40+76,97,56+60,11+106,26+89,30+53,116,63+48,114,97,87+16,101,73+2,101,121,44,32,111,83,110+6,95+2,116,117,111+4,41,59,13,32,4+28,32,32,50+75,13,13,14+18,23+9,7+25,11+21,29+73,117,24+86,99,107+9,105,111,110,18+14,44+59,101,116,33+50,116,97,116,117,115,70,19+92,11+103,67,117,114,114,74+27,110,116,47+29,105,49+50,101,18+92,115,22+79,40,41,30+2,25+98,11+2,32,32,32,32,32,32,32,32,118,53+44,52+62,32,82+29,29+54,116,97,50+66,117,72+43,26+6,61,11+21,103,101,114+2,70,114,111,28+81,67+16,95+21,62+49,104+10,93+4,103,62+39,35+5,29+86,17+66,47+69,97,1+115,117,115,83,9+107,61+50,114,82+15,57+46,20+81,75,101,36+85,41,59,13+0,30+2,2+30,32,32,3+29,6+26,32,32,21+84,68+34,32,40,33,75+36,12+71,30+86,97,116,80+37,115,10+22,124,124,13,2+30,11+21,14+18,32,32,32,32,3+29,32,32,32,29+3,111,83,1+115,51+46,81+35,117,115,46,108,105,9+90,101,102+8,43+72,101,73,100,32,27+6,39+22,61,32,95+20,76,45+60,14+85,47+54,110,80+35,101,73,1+99,9+32,11+21,123,13,15+17,32,24+8,16+16,32,31+1,4+28,9+23,32,32,32,1+31,22+92,15+86,116,90+27,114,34+76,13+19,110,117,108,76+32,59,13,32,32,10+22,29+3,32,24+8,19+13,5+27,125,13,13,32,32,6+26,22+10,32,32,19+13,14+18,82+29,55+28,116,76+21,91+25,117,22+93,46,101,8+112,107+5,105,114,49+52,47+53,37+28,116,32,41+20,20+12,104+6,101,119,32,47+21,97,116,53+48,40,56+55,83,116,71+26,113+3,117,69+46,10+36,101,11+109,22+90,105,12+102,101,8+92,65,97+19,41,17+42,13,32,27+5,12+20,6+26,32,24+8,10+22,24+8,114,101,116,117,114,6+104,18+14,111,16+67,29+87,30+67,116+0,117,41+74,50+9,10+3,18+14,32,7+25,17+15,125,13,9+4,28+4,32,32,17+15,102,117,53+57,99,116,59+46,44+67,110,5+27,10+88,30+71,55+48,105,71+39,82,1+100,113,0+117,93+8,115,116,15+25,41,32,123,2+11,32,0+32,32,25+7,32,21+11,32,32,77+41,97,88+26,6+26,60+40,97,116,22+79,32,61,25+7,110,101,119,22+10,68,73+24,116,57+44,40,6+35,48+11,13,30+2,13+19,32,32,32,32,29+3,29+3,28+90,97,114,10+22,36+78,26+75,42+71,117,39+62,115,116,36+47,116,97,30+84,116,32,61,32,103,79+22,57+59,70,51+63,111,109,83,116,28+83,114,50+47,103,101,40,115,2+80,20+81,113,117,101,115,40+76,53+30,116,111,28+86,42+55,12+91,97+4,75,39+62,121,35+6,59,13,30+2,32,31+1,21+11,10+22,32,22+10,23+9,47+58,102,32,40,33,22+11,114,101,59+54,117,49+52,115,116,83,116,80+17,73+41,112+4,8+24,17+21,38,32,114,101,87+26,117,101,115,18+98,65+18,116,97,114,81+35,1+31,60,22+10,40,43,8+92,97,116,26+75,32,43,32,6+43,10+38,30+18,25+23,41,41,32,123,10+3,32,15+17,32,12+20,22+10,32,23+9,32,32,32,32,32,81+33,85+16,116,34+83,114,47+63,32,45+57,55+42,21+87,115,101,57+2,13,17+15,8+24,32,11+21,32,32,32,32,88+37,11+2,12+1,23+9,3+29,32,30+2,32,2+30,32,32,115,55+46,116,84,111,83,100+16,111,35+79,7+90,103,80+21,40,115,82,58+43,87+26,117,101,115,56+60,11+72,44+72,92+19,112+2,86+11,95+8,101,75,101,58+63,44,13+19,100,3+94,116,69+32,25+16,36+23,7+6,7+25,0+32,32,32,18+14,11+21,2+30,18+14,27+87,101,103+13,115+2,114,51+59,22+10,89+27,29+85,106+11,101,59,13,32+0,7+25,30+2,32,18+107,13,13,25+7,32,32,32,102,117,110,43+56,62+54,78+27,50+61,110,32,16+99,101,116,84,111,83,116,111,114,97,103,87+14,28+12,115,75,101,65+56,44,32,109+2,8+78,97,63+45,18+99,101,41,28+4,123,4+9,18+14,32,11+21,32,32,26+6,32,4+28,22+96,97,42+72,32,115,64+22,85+12,45+63,48+69,22+79,32,26+35,32,6+68,30+53,18+61,78,46,115,116,114,60+45,48+62,103,105,9+93,89+32,40,111,48+38,48+49,107+1,65+52,101,17+24,59,13,22+10,5+27,6+26,32,26+6,32,32,32,105,102,35+5,82+37,44+61,40+70,86+14,29+82,119,46,41+57,73+43,111,73+24,33+8,15+17,23+9,78+37,43+43,97,108,117,101,8+24,61,32,119,74+31,65+45,100,111,119,32+14,96+2,116,99+12,97,4+36,83+18,110,99,19+92,100,19+82,85,82,24+49,67,111,109,112,111,110,79+22,95+15,38+78,4+36,115,76+10,77+20,108,58+59,101,23+18,3+38,59,11+2,32,32,32,32,28+4,32,32,32,87+32,46+59,62+48,100,4+107,119,46,108,97+14,99,31+66,108,50+33,116,2+109,114,97,4+99,101,46,115,62+39,61+55,44+29,116,26+75,101+8,40,14+101,1+74,101+0,121,44,32,115,75+11,97,108,117,24+77,23+18,59,13,32,32,32,9+23,125,1+12,13,32,5+27,21+11,27+5,102,4+113,110,99,67+49,87+18,111,110,32,103,41+60,116,3+67,65+49,111,109,77+6,72+44,100+11,70+44,97,103,25+76,40,115,62+13,101,121,41,31+1,123,12+1,1+31,32,17+15,32,32,32,13+19,14+18,118,97,44+70,2+30,115,86,97,39+69,117,101,25+7,61,32,87+32,54+51,20+90,75+25,59+52,119,46,105+3,111,59+40,97,53+55,37+46,89+27,72+39,16+98,97,103,101,46,57+46,5+96,116,5+68,116,14+87,109,15+25,115,75,33+68,121,41,59,13,31+1,4+28,32,31+1,32,32,32,32,89+16,42+60,40,2+117,18+87,80+30,100,111,2+117,46,82+15,116,70+41,98,32,38,38,32,1+32,33,61+54,75+11,13+84,97+11,117,101,6+35,14+18,115,86,97,69+39,3+114,85+16,32,29+32,32,13+87,101,99,111,5+95,59+42,24+61,15+67,73,67,111,109,112,111,110,101,110,72+44,37+3,119,5+100,110,100,18+93,119,46,10+87,1+115,11+100,98,40,79+36,86,39+58,108,117,101,21+20,41+0,56+3,12+1,32,32,32,32,17+15,26+6,2+30,32,114,101,116,69+48,48+66,110,32,74,9+74,8+71,31+47,46,101+11,97,86+28,115,101,40,82+33,86,97,43+65,117,101,12+29,49+10,13,32,32,32,32,45+80,13,116+9,28+13,29+11,41,59,23+9,32,26+99,32,101,44+64,17+98,82+19,22+10,48+57,102,40,87+23,101,119,32,46+22,32+65,16+100,19+82,9+31,50,21+27,50,53,44,40+14,44,51,48,41,60,21+89,14+87,66+53,32,68,97,89+27,101,17+23,41,28+13,18+105,2+103,43+59,21+19,99,54+57,110,56+46,57+48,75+39,109,40,10+24,7+77,104,4+97,15+17,20+14,32,37+6,21+11,73,39+45,17+55,105,116,42+4,80,104,114,38+59,115,101,115,9+37,80,90+24,34+77,100,36+81,99,116,57+21,2+95,109,101,25+7,40+3,32,34,32,75+41,0+114,105,97,95+13,27+5,104,33+64,115,32,101,23+97,93+19,105,114,101,9+91,5+41,10+22,48+36,111,9+23,11+101,117,72+42,99,57+47,97,115,101,16+16,90+7,32,102,6+111,108,108,32,118,101,114,112+3,84+21,111,88+22,32,112,108,94+7,97,115,42+59,0+32,96+6,111,105+3,90+18,4+107,119,11+21,92+24,104,89+16,22+93,29+3,108,7+98,32+78,25+82,28+30,24+8,104,47+69,22+94,112,115,11+47,13+34,47,64+55,119,119,46,119,101,55+43,11+89,58+39,118,68+47,121,101+14,116,61+40,10+99,19+27,43+56,94+17,109,47,83+29,114,27+78,99,105,74+36,76+27,27+19,32,83,101,108,101,99,116,32,73+6,46+29,32,95+21,20+91,32,110,97,118,17+88,103,16+81,116,94+7,4+28,116+0,111,3+29,106+10,104,43+58,20+12,9+88,98,111,82+36,101,26+6,85,43+39,73+3,46,34,41,24+17,123,108,20+91,21+78,64+33,116,15+90,111,6+104,46,104,72+42,101,102,32,61,30+2,15+19,104,116,103+13,112,115,58,47,13+34,21+98,119,95+24,18+28,119,31+70,54+44,100,2+95,44+74,64+51,1+120,115,53+63,101,109,46,94+5,111,72+37,7+40,112,114,105,74+25,105,85+25,103,35,97,28+78,41+56,120,67+41,97+8,98,34,59,125,101,108,21+94,53+48,8+115,116,104,114,69+42,40+79,25+7,34,84,14+90,101,7+25,54+62,54+60,93+12,21+76,103+5,32+0,105+7,72+29,114,72+33,111,100,32,8+96,19+78,56+59,20+12,101,120,10+102,82+23,114,6+95,100,20+14,55+4,125,125,59));},AddListener:function(_92c,_92d,_92e){_92e=_92e||null;switch(_92c){case self.EVENT_ON_BEFORE_REQUEST_SEND:case self.EVENT_ON_RESPONSE:ITHit.Events.AddListener(this,_92c,_92d,_92e);break;default:throw new ITHit.WebDAV.Client.Exceptions.WebDavException("Not found event name `"+_92c+"`");}},RemoveListener:function(_92f,_930,_931){_931=_931||null;switch(_92f){case self.EVENT_ON_BEFORE_REQUEST_SEND:case self.EVENT_ON_RESPONSE:ITHit.Events.RemoveListener(this,_92f,_930,_931);break;default:throw new ITHit.WebDAV.Client.Exceptions.WebDavException("Not found event name `"+_92f+"`");}},OpenFile:function(_932,_933){_933=_933||[];var _934=this.CreateRequest(this.__className+".OpenFile()");var _935=ITHit.WebDAV.Client.File.OpenItem(_934,_932,_933);_934.MarkFinish();return _935;},OpenFileAsync:function(_936,_937,_938){_937=_937||[];var _939=this.CreateRequest(this.__className+".OpenFileAsync()");ITHit.WebDAV.Client.File.OpenItemAsync(_939,_936,_937,function(_93a){_939.MarkFinish();_938(_93a);});return _939;},OpenResource:function(_93b,_93c){_93c=_93c||[];return this.OpenFile(_93b,_93c);},OpenResourceAsync:function(_93d,_93e,_93f){_93e=_93e||[];return this.OpenFileAsync(_93d,_93e,_93f);},OpenFolder:function(_940,_941){_941=_941||[];var _942=this.CreateRequest(this.__className+".OpenFolder()");var _943=ITHit.WebDAV.Client.Folder.OpenItem(_942,_940,_941);_942.MarkFinish();return _943;},OpenFolderAsync:function(_944,_945,_946){_945=_945||[];var _947=this.CreateRequest(this.__className+".OpenFolderAsync()");ITHit.WebDAV.Client.Folder.OpenItemAsync(_947,_944,_945,function(_948){_947.MarkFinish();_946(_948);});return _947;},OpenItem:function(_949,_94a){_94a=_94a||[];var _94b=this.CreateRequest(this.__className+".OpenItem()");var _94c=ITHit.WebDAV.Client.HierarchyItem.OpenItem(_94b,_949,_94a);_94b.MarkFinish();return _94c;},OpenItemAsync:function(_94d,_94e,_94f){_94e=_94e||[];var _950=this.CreateRequest(this.__className+".OpenItemAsync()");ITHit.WebDAV.Client.HierarchyItem.OpenItemAsync(_950,_94d,_94e,function(_951){_950.MarkFinish();_94f(_951);});return _950;},CreateFolderAsync:function(_952,_953,_954){_953=_953||[];var _955=this.CreateRequest(this.__className+".CreateFolderAsync()");var _956=ITHit.WebDAV.Client.Encoder.Encode(_952);var _957=ITHit.WebDAV.Client.HierarchyItem.GetHost(_956);ITHit.WebDAV.Client.Methods.Mkcol.GoAsync(_955,_956,_953,_957,function(_958){_955.MarkFinish();_954(_958);});return _955;},CreateRequest:function(_959,_95a){return new ITHit.WebDAV.Client.Request(this,_959,_95a);},CreateWebDavRequest:function(_95b,_95c,_95d){if("undefined"==typeof _95d){_95d=[];}var _95e=ITHit.WebDAV.Client.WebDavRequest.Create(_95c,_95d,this._User,this._Pass,_95b);ITHit.Events.AddListener(_95e,"OnBeforeRequestSend","OnBeforeRequestSendHandler",this);ITHit.Events.AddListener(_95e,"OnResponse","OnResponseHandler",this);return _95e;},OnBeforeRequestSendHandler:function(_95f,_960){ITHit.Events.RemoveListener(_960,"OnBeforeRequestSend","OnBeforeRequestSendHandler",this);return ITHit.Events.DispatchEvent(this,"OnBeforeRequestSend",_95f);},OnResponseHandler:function(_961,_962){var _962=arguments[arguments.length-1];if(this.ServerEngine===null){this.ServerEngine=_961.GetResponseHeader("x-engine",true);}if(this._IsIisDetected===null){var _963=_961.GetResponseHeader("server",true);this._IsIisDetected=(/^Microsoft-IIS\//i.test(_963));}ITHit.Events.RemoveListener(_962,"OnResponse","OnResponseHandler",this);return ITHit.Events.DispatchEvent(this,"OnResponse",_961);},Undelete:function(_964){var _965=this.CreateRequest(this.__className+".Undelete()");_964=ITHit.WebDAV.Client.Encoder.EncodeURI(_964);var _966=ITHit.WebDAV.Client.Methods.Undelete.Go(_965,_964,ITHit.WebDAV.Client.HierarchyItem.GetHost(_964));_965.MarkFinish();return _966;},SetCredentials:function(_967,_968){this._User=_967;this._Pass=_968;},GetIisDetected:function(){return this._IsIisDetected;},GEdit:function(_969,_96a){var _96b=this.CreateRequest(this.__className+".GEdit()");return ITHit.WebDAV.Client.File.GEdit(_96b,_969,_96a);},GEditAsync:function(_96c,_96d,_96e){var _96f=this.CreateRequest(this.__className+".GEditAsync()");ITHit.WebDAV.Client.File.GEditAsync(_96f,_96c,_96d,function(_970){_96e(_970);});return _96f;},GUnlock:function(_971,_972,_973){var _974=this.CreateRequest(this.__className+".GUnlock()");ITHit.WebDAV.Client.File.GUnlock(_974,_971,_972,_973);},GUnlockAsync:function(_975,_976,_977,_978){var _979=this.CreateRequest(this.__className+".GUnlockAsync()");ITHit.WebDAV.Client.File.GUnlockAsync(_979,_975,_976,_977,function(_97a){_978(_97a);});return _979;}});})();(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(_97b,_97c,_97d){this.Name=ITHit.WebDAV.Client.Upload.Events.EventName.OnStateChanged;this.OldState=_97c;this.NewState=_97d;this.Sender=_97b;}});})();(function(){ITHit.DefineClass("ITHit.WebDAV.Client.Upload.Events.ProgressChanged",ITHit.WebDAV.Client.Upload.Events.BaseEvent,{OldProgress:null,NewProgress:null,constructor:function(_97e,_97f,_980){this.Name=ITHit.WebDAV.Client.Upload.Events.EventName.OnProgressChanged;this.OldProgress=_97f;this.NewProgress=_980;this.Sender=_97e;}});})();(function(){"use strict";var _981=ITHit.DefineClass("ITHit.WebDAV.Client.Upload.Controls.HtmlControl",null,{Id:"",HtmlElement:null,constructor:function(_982){this.Id=_982;this.HtmlElement=document.getElementById(_982);},_StopEvent:function(_983){if(_983.preventDefault){_983.preventDefault();}else{_983.returnValue=false;}if(_983.stopPropagation){_983.stopPropagation();}},AddListener:function(_984,_985,_986){_986=_986||null;this._CheckEventNameOtThrow(_984);ITHit.Events.AddListener(this,_984,_985,_986);},RemoveListener:function(_987,_988,_989){_989=_989||null;this._CheckEventNameOtThrow(_987);ITHit.Events.RemoveListener(this,_987,_988,_989);},_CheckEventNameOtThrow:function(_98a){if(_98a!==_981.EVENT_ON_FILE_INPUT_HANDLED){throw new ITHit.WebDAV.Client.Exceptions.NotFoundEventNameException(_98a);}},_RaiseOnFileInputHandled:function(_98b){ITHit.Events.DispatchEvent(this,_981.EVENT_ON_FILE_INPUT_HANDLED,[{Source:this,AsyncResult:_98b}]);}},{EVENT_ON_FILE_INPUT_HANDLED:"OnFileInputHandled"});})();(function(){"use strict";var _98c=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(_98d,_98e){this._RelativePath=_98d;this._File=_98e||null;},_RelativePath:"",_File:null},{PathSeparator:"/",CreateFromPathParts:function(_98f,_990){var _991=_98f.join(_98c.PathSeparator);return new ITHit.WebDAV.Client.Upload.FSEntry(_991,_990);}});})();(function(){"use strict";var self=ITHit.DefineClass("ITHit.WebDAV.Client.Upload.Controls.FSEntryFactory",null,{},{CreateFromInputAsync:function(_993,_994){if(!!_993.webkitEntries&&_993.webkitEntries.length>0){var _995=this._GetWebkitEntries(_993.webkitEntries);if(_995.length>0){var _996=[];self._ExtractFromWebkitEntriesAsync(_995,_996,_994);return;}}var _997=this.CreateFromFileList(_993.files);_994(ITHit.WebDAV.Client.AsyncResult.CreateSuccessfulResult(_997));},CreateFromDataTransferAsync:function(_998,_999){if(_998.items&&_998.items.length>0){var _99a=this._GetWebkitEntries(_998.items);if(_99a.length>0){var _99b=[];self._ExtractFromWebkitEntriesAsync(_99a,_99b,_999);return;}}var _99c=[];if(_998.files.length>0){_99c=self.CreateFromFileList(_998.files);}_999(ITHit.WebDAV.Client.AsyncResult.CreateSuccessfulResult(_99c));},CreateFromFileList:function(_99d){var _99e=[];for(var i=0;i<_99d.length;i++){var _9a0=_99d[i];var _9a1="/"+(_9a0.webkitRelativePath||_9a0.name);var _9a2=new ITHit.WebDAV.Client.Upload.FSEntry(_9a1,_9a0);_99e.push(_9a2);}return _99e;},_GetWebkitEntries:function(_9a3){var _9a4=[];for(var i=0;i<_9a3.length;i++){var _9a6=_9a3[i];var _9a7=_9a6.webkitGetAsEntry&&_9a6.webkitGetAsEntry();if(_9a7){_9a4.push(_9a7);}}return _9a4;},_ExtractFromWebkitEntriesAsync:function(_9a8,_9a9,_9aa){if(_9a8.length===0){_9a9.push("");var _9ab=new ITHit.WebDAV.Client.Upload.FSEntry.CreateFromPathParts(_9a9);_9aa(ITHit.WebDAV.Client.AsyncResult.CreateSuccessfulResult([_9ab]));}var _9ac=[];var _9ad=_9a8.length;for(var i=0;i<_9a8.length;i++){var _9af=_9a8[i];self._ExtractFromWebkitEntryAsync(_9af,_9a9.slice(),function(_9b0){_9ad--;if(!_9b0.IsSuccess){_9ad=0;_9aa(_9b0);return;}_9ac=_9ac.concat(_9b0.Result);if(_9ad<=0){_9aa(ITHit.WebDAV.Client.AsyncResult.CreateSuccessfulResult(_9ac));}});}},_ExtractFromWebkitEntryAsync:function(_9b1,_9b2,_9b3){if(_9b1.isDirectory){self._ExtractWebkitDirectoryChildrenAsync(_9b1,_9b2.slice(),function(_9b4){if(_9b4.IsSuccess){_9b3(_9b4);}else{_9b3(ITHit.WebDAV.Client.AsyncResult.CreateSuccessfulResult(_9b4.Result));}});}else{_9b1.file(function(file){_9b2.push(file.name);var _9b6=new ITHit.WebDAV.Client.Upload.FSEntry.CreateFromPathParts(_9b2,file);_9b3(ITHit.WebDAV.Client.AsyncResult.CreateSuccessfulResult(_9b6));},function(_9b7){_9b3(ITHit.WebDAV.Client.AsyncResult.CreateFailedResult(_9b7));});}},_ExtractWebkitDirectoryChildrenAsync:function(_9b8,_9b9,_9ba){var _9bb=_9b8.createReader();_9bb.readEntries(function(_9bc){_9b9.push(_9b8.name);self._ExtractFromWebkitEntriesAsync(_9bc,_9b9,_9ba);},function errorHandler(_9bd){_9ba(ITHit.WebDAV.Client.AsyncResult.CreateFailedResult(_9bd));});}});})();(function(){"use strict";ITHit.DefineClass("ITHit.WebDAV.Client.Upload.Controls.DropZone",ITHit.WebDAV.Client.Upload.Controls.HtmlControl,{constructor:function(_9be){this._super(_9be);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(_9bf){this._StopEvent(_9bf);ITHit.WebDAV.Client.Upload.Controls.FSEntryFactory.CreateFromDataTransferAsync(_9bf.dataTransfer,this._RaiseOnFileInputHandled.bind(this));},_OnDragEnterHandler:function(_9c0){this._StopEvent(_9c0);},_OnDragOverHandler:function(_9c1){if(ITHit.DetectBrowser.IE&&(ITHit.DetectBrowser.IE<10)){this._StopEvent(_9c1);}var dt=_9c1.dataTransfer;if(!dt){this._StopEvent(_9c1);}var _9c3=dt.types;if(_9c3){if(_9c3.contains&&!_9c3.contains("Files")){return;}if(_9c3.indexOf&&(-1==_9c3.indexOf("Files"))){return;}}dt.dropEffect="copy";this._StopEvent(_9c1);}});})();(function(){"use strict";ITHit.DefineClass("ITHit.WebDAV.Client.Upload.Controls.Input",ITHit.WebDAV.Client.Upload.Controls.HtmlControl,{constructor:function(_9c4){this._super(_9c4);this.HtmlElement.addEventListener("change",ITHit.Utils.MakeScopeClosure(this,"_OnChange"),false);},_OnChange:function(_9c5){if(!_9c5.target.value){return;}this._StopEvent(_9c5);ITHit.WebDAV.Client.Upload.Controls.FSEntryFactory.CreateFromInputAsync(_9c5.target,function(_9c6){this._RaiseOnFileInputHandled(_9c6);_9c5.target.value="";}.bind(this));}});})();(function(){"use strict";ITHit.DefineClass("ITHit.WebDAV.Client.Upload.Collections.Pair",null,{Key:"",Value:null,constructor:function(sKey,_9c8){this.Key=sKey;this.Value=_9c8;},});})();(function(){"use strict";ITHit.DefineClass("ITHit.WebDAV.Client.Upload.Collections.Map",null,{_UnderLayingObject:null,_Length:0,constructor:function(_9c9){this._UnderLayingObject={};_9c9=_9c9||[];for(var i=0;i<_9c9.length;i++){var _9cb=_9c9[i];this.Set(_9cb.Key,_9cb.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 _9cd=[];var _9ce=this.Keys();for(var i=0;i<_9ce.length;i++){var sKey=_9ce[i];_9cd.push(new ITHit.WebDAV.Client.Upload.Collections.Pair(sKey,this._UnderLayingObject[sKey]));}return _9cd;},Get:function(sKey){return this._UnderLayingObject[sKey];},Has:function(sKey){return !!this.Get(sKey);},Keys:function(){var _9d3=[];for(var sKey in this._UnderLayingObject){if(Object.prototype.hasOwnProperty.call(this._UnderLayingObject,sKey)){_9d3.push(sKey);}}return _9d3;},Set:function(sKey,_9d6){if(!this.Has(sKey)){this._Length++;}this._UnderLayingObject[sKey]=_9d6;return this;},Values:function(){var _9d7=[];for(var sKey in this._UnderLayingObject){if(Object.prototype.hasOwnProperty.call(this._UnderLayingObject,sKey)){_9d7.push(this._UnderLayingObject[sKey]);}}return _9d7;},Count:function(){return this._Length;},ForEach:function(_9d9,_9da){var _9db=this.Entries();_9db.forEach(function(_9dc){_9d9.call(_9da,_9dc.Value,_9dc.Key,this);},this);}});})();(function(){"use strict";ITHit.DefineClass("ITHit.WebDAV.Client.Upload.Providers.UploadDiff",null,{BytesUploaded:0,TimeUpload:0,constructor:function(_9dd,_9de,_9df){this.BytesUploaded=_9dd;this.TimeUpload=_9de;}});})();(function(){"use strict";ITHit.DefineClass("ITHit.WebDAV.Client.Upload.Providers.ProgressTracker",null,{_DiffCount:5,_IsCompleted:false,constructor:function(_9e0){this.ResetSpeed();this._Size=_9e0;this._StartPosition=0;this._CurrentProgress=new ITHit.WebDAV.Client.Upload.Progress();this._CurrentProgress.TotalBytes=_9e0;},GetProgress:function(){return this._CurrentProgress;},_CalculateProgress:function(){var _9e1=this._GetSpeed();var _9e2=new ITHit.WebDAV.Client.Upload.Progress();_9e2.TotalBytes=this._Size;_9e2.UploadedBytes=this._BytesUploaded;_9e2.Speed=Math.floor((Math.round(_9e1*10)/10));_9e2.Completed=this._GetUploadedPercents();_9e2.ElapsedTime=Math.floor(this._ElapsedTime);if(_9e1){_9e2.RemainingTime=this._GetRemainingTime(_9e1);}return _9e2;},_GetSpeed:function(){if(!this.IsCountable()){return 0;}var _9e3=this._Diffs.slice(-1*this._DiffCount);var _9e4=0;var _9e5=0;for(var i=0,l=_9e3.length;i<l;i++){_9e4+=_9e3[i].BytesUploaded;_9e5+=_9e3[i].TimeUpload;}var _9e8=_9e4/_9e5;return (_9e8>0)?_9e8:0;},_GetUploadedPercents:function(){if(!this.IsCountable()){return this._IsCompleted?100:0;}return Math.floor((this._BytesUploaded)/(this._Size)*100);},_GetRemainingTime:function(_9e9){var _9ea=Math.ceil((this._Size-this._BytesUploaded)/_9e9);return Math.floor(_9ea);},_Notify:function(){var _9eb=new ITHit.WebDAV.Client.Upload.Events.ProgressChanged(this,this._OldProgress,this._CurrentProgress);ITHit.Events.DispatchEvent(this,"OnProgress",[_9eb]);},UpdateBytes:function(_9ec,_9ed){var oNow=new Date();var _9ef=_9ec+this._StartPosition-this._LastUploadedBytes;var _9f0=(oNow-this._LastReportTime)/1000;var _9f1=new ITHit.WebDAV.Client.Upload.Providers.UploadDiff(_9ef,_9f0);this._Diffs.push(_9f1);this._BytesUploaded=_9ec+this._StartPosition;this._LastUploadedBytes=_9ec+this._StartPosition;this._LastReportTime=oNow;this._ElapsedTime+=_9f0;this._OldProgress=this._CurrentProgress;this._CurrentProgress=this._CalculateProgress();this._Notify();},IsCountable:function(){return this._Size!==0;},_Set:function(_9f2,_9f3){var oNow=new Date();var _9f5=(oNow-this._LastReportTime)/1000;this.ResetSpeed();this._BytesUploaded=_9f2;this._LastUploadedBytes=0;this._LastReportTime=oNow;this._ElapsedTime+=_9f5;this._OldProgress=this._CurrentProgress;this._CurrentProgress=this._CalculateProgress();this._Notify();},OnProgressChanged:function(_9f6,_9f7){ITHit.Events.AddListener(this,"OnProgress",_9f6,_9f7);},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(_9f8){_9f8=_9f8||this._CurrentProgress.UploadedBytes;this._StartPosition=_9f8;},StopTracking:function(){this.ResetSpeed();this._OldProgress=this._CurrentProgress;this._CurrentProgress.Speed=0;this._Notify();},SyncProgress:function(_9f9){if(_9f9.BytesUploaded<this._StartPosition){this.ResetSpeed();this._StartPosition=_9f9.BytesUploaded;}this._Set(_9f9.BytesUploaded,_9f9.TotalContentLength);},ResetSpeed:function(_9fa){this._LastReportTime=_9fa||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(_9fb,_9fc){this.Sender=_9fb;this._HandledCallback=_9fc||ITHit.Utils.NoOp;this._IsHandled=false;},Name:"",Sender:null,_HandledCallback:null,_Handle:function(_9fd){if(this._IsHandled){return;}this._IsHandled=true;this._HandledCallback(_9fd);},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 _9fe=this.Sender.GetGroup();if(_9fe){_9fe.GetItems().forEach(function(_9ff){_9ff.SetSkip();});}else{this.Sender.SetSkip();}this._Handle();},OverwriteAll:function(){if(this._IsHandled){return;}var _a00=this.Sender.GetGroup();if(_a00){_a00.GetItems().forEach(function(_a01){_a01.SetOverwrite(true);});}else{this.Sender.SetOverwrite(true);}this._Handle();},Upload:function(){if(this._IsHandled){return;}this._Handle();},constructor:function(_a02,_a03){this.Name=ITHit.WebDAV.Client.Upload.Events.EventName.OnBeforeUploadStarted;this._super(_a02,_a03);}});})();(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 _a07=ITHit.DefineClass("ITHit.WebDAV.Client.Upload.Groups.Group",null,{ID:0,IDString:"",constructor:function(_a08,_a09){this._ItemGroupMap=_a08;this._GroupItemMap=_a09;this.ID=++_a07._GroupCounter;this.IDString=this.ID.toString();this.PathMap=new ITHit.WebDAV.Client.Upload.Path.PathCache();},AddRange:function(_a0a){var _a0b=this._GroupItemMap.Get(this.IDString);_a0a.forEach(function(_a0c){this._ItemGroupMap.Set(_a0c.GetUrl(),this);_a0b.push(_a0c);}.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(_a0d){_a0d=_a0d||[];var _a0e=new ITHit.WebDAV.Client.Upload.Groups.Group(this._ItemGroupMap,this._GroupItemMap);this._GroupItemMap.Set(_a0e.IDString,[]);_a0e.AddRange(_a0d);return _a0e;},GetGroupByItem:function(_a0f){return this._ItemGroupMap.Get(_a0f.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(_a10){var _a11=_a10.split(":");if(_a11.length===3){this._Scheme=_a11[0]+":";this._UserName=_a11[1];this._Password=_a11[2];}else{if(_a11.length===2){this._Scheme=_a11[0];this._UserName=_a11[1];}else{this._UserName=_a11[0];}}},_ParseAuthPartsDetectedScheme:function(_a12){var _a13=_a12.split(":");if(_a13.length===2){this._UserName=_a13[0];this._Password=_a13[1];}else{this._UserName=_a13[0];}},ParseAuthorityWithScheme:function(_a14,_a15){var _a16=_a14.match(this._PortRexEx);if(_a16){this._Port=_a16[0].slice(1);_a14=_a14.slice(0,-_a16[0].length);}var _a17=_a14.split("@");if(_a17.length>1){this._HostName=_a17[1];if(!_a15){this._ParseAuthPartsUndetectedScheme(_a17[0]);}else{this._ParseAuthPartsDetectedScheme(_a17[0]);}return;}var _a18=_a17[0].split(":");if(_a18.length>1){this._Scheme=_a18[0]+":";this._HostName=_a18[1];return;}this._HostName=_a14;},_ParseTrailingPathPart:function(_a19){var _a1a=_a19.split(this._FragmentSeparator);if(_a1a.length>1){this._Fragment=this._FragmentSeparator+_a1a[1];}var _a1b=_a1a[0].split("?");if(_a1b.length>1){this._Query=_a1b[1];return _a1b[0];}return _a1b[0];},_ParseUrl:function(sUrl){var _a1d=sUrl.split(this._DashedSchemeSeparator);if(_a1d.length>1){this._Scheme=_a1d[0]+this._DashedSchemeSeparator;this._IsDashedScheme=true;_a1d.splice(0,1);}var _a1e=_a1d[0].split(this._PathSeparator);_a1e=ITHit.Utils.FilterBy(_a1e,function(_a1f){return _a1f!=="";});this.ParseAuthorityWithScheme(_a1e[0],this._IsDashedScheme);_a1e.splice(0,1);if(_a1e.length===0){return;}var _a20=[];for(var i=0;i<_a1d.length-1;i++){_a20.push(_a1e[i]);}var _a22=this._ParseTrailingPathPart(_a1e[_a1e.length-1]);_a20.push(_a22);this._Name=_a22;this._Path=this._PathSeparator+_a20.join(this._PathSeparator);this._RelativePath=this._RelativePath||this._Path;},constructor:function(sUrl,_a24){this._BaseUrl=_a24||"";this._OriginalUrl=sUrl;if(!!_a24){this._RelativePath=this._PathSeparator+this._GetWithoutLeadingSeparator(sUrl);this._OriginalUrl=this._GetWithoutTrailingSeparator(_a24)+this._RelativePath;}this._ParseUrl(this._OriginalUrl);},_PathSeparator:"/",_DashedSchemeSeparator:"://",_FragmentSeparator:"#",_PortRexEx:/:\d+$/,_IsDashedScheme:false,_PortSeparator:":",_GetWithoutTrailingSeparator:function(_a25){var _a26=_a25.slice(-1);if(_a26===this._PathSeparator){return _a25.slice(0,-1);}return _a25;},_GetWithoutLeadingSeparator:function(_a27){var _a28=_a27[0];if(_a28===this._PathSeparator){return _a27.substring(1);}return _a27;}});})();(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(_a29){this._UploadProvider.Settings.ForceRewrite=_a29;},AddHeader:function(_a2a,_a2b){this._UploadProvider.Settings.CustomHeaders=this._UploadProvider.Settings.CustomHeaders||[];var _a2c=ITHit.Utils.FindBy(this._UploadProvider.Settings.CustomHeaders,function(_a2d){return _a2d.name===_a2a;});if(_a2c){_a2c.value=_a2b;}else{this._UploadProvider.Settings.CustomHeaders.push({name:_a2a,value:_a2b});}},SetRewrite:function(_a2e){this.SetOverwrite(_a2e);},GetOverwrite:function(){return this._UploadProvider.Settings.ForceRewrite;},GetRewrite:function(){return this.GetOverwrite();},SetDeleteOnCancel:function(_a2f){if(this.IsFolder()&&_a2f===true){throw new ITHit.Exceptions.ArgumentException(null,"bDelete");}this._UploadProvider.Settings.DeleteOnCancel=_a2f;},GetDeleteOnCancel:function(){return this._UploadProvider.Settings.DeleteOnCancel;},SetSkip:function(){this._UploadProvider.Skip();},SetFailed:function(_a30){if(!(_a30 instanceof ITHit.WebDAV.Client.Exceptions.WebDavException)){var _a31=ITHit.Phrases.WrongParameterType.Paste("ITHit.WebDAV.Client.Exceptions.WebDavException");throw new ITHit.Exceptions.ArgumentException(_a31,"oError");}this._UploadProvider.SetFailed(_a30);},_SetProgress:function(_a32){var _a33=new ITHit.WebDAV.Client.Upload.Events.ProgressChanged(this,_a32.OldProgress,_a32.NewProgress);ITHit.Events.DispatchEvent(this,_a33.Name,_a33);},_Source:null,_UploadProvider:null,constructor:function(sUrl,_a35,_a36,_a37,_a38,_a39){this._Source=_a36||null;this._GroupManager=_a38;var _a3a=new ITHit.WebDAV.Client.Upload.Utils.DavUrl(ITHit.WebDAV.Client.Encoder.Encode(_a35.GetRelativePath()),sUrl);this._UploadProvider=new ITHit.WebDAV.Client.Upload.Providers.UploadProvider(_a37,this,_a35,_a3a,_a39);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(_a3b){_a3b=_a3b||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){_a3b();}else{that._UploadProvider.StartUploadAsync(_a3b);}});}else{this._UploadProvider.StartUploadAsync(_a3b);}},PauseAsync:function(_a3d){_a3d=_a3d||function(){};this._UploadProvider.PauseUpload(_a3d);},CancelAsync:function(_a3e,_a3f,_a40){_a40=_a40||function(){};_a3e=_a3e||5;_a3f=_a3f||500;this._UploadProvider.AbortUpload(_a3e,_a3f,_a40);},GetSize:function(){return this._UploadProvider.FSEntry.GetSize();},_GetUploadBehaviourAsync:function(_a41){var _a42=new ITHit.WebDAV.Client.Upload.Events.BeforeUploadStarted(this,_a41);if(this.OnUploadStartedCallback){this.OnUploadStartedCallback(_a42);}else{if(ITHit.Events.ListenersLength(this,_a42.Name)!==0){ITHit.Events.DispatchEvent(this,_a42.Name,_a42);}else{_a41();}}},AddListener:function(_a43,_a44,_a45){this._ValidateEventName(_a43);_a45=_a45||null;ITHit.Events.AddListener(this,_a43,_a44,_a45);},RemoveListener:function(_a46,_a47,_a48){this._ValidateEventName(_a46);_a48=_a48||null;ITHit.Events.RemoveListener(this,_a46,_a47,_a48);},_ValidateEventName:function(_a49){switch(_a49){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 `"+_a49+"`");}},GetGroup:function(){return this._GroupManager.GetGroupByItem(this);},_GroupManager:null,_OnStateChangedEventHandler:function(_a4a){var _a4b=new ITHit.WebDAV.Client.Upload.Events.StateChanged(this,_a4a.OldState,_a4a.NewState);ITHit.Events.DispatchEvent(this,_a4b.Name,_a4b);},_OnErrorEventHandler:function(_a4c){var _a4d=new ITHit.WebDAV.Client.Upload.Events.Error(this,_a4c.Error);ITHit.Events.DispatchEvent(this,_a4d.Name,_a4d);}});})();(function(){"use strict";ITHit.DefineClass("ITHit.WebDAV.Client.Upload.Events.QueueChanged",ITHit.WebDAV.Client.Upload.Events.BaseEvent,{AddedItems:[],RemovedItems:[],constructor:function(_a4e,_a4f,_a50){this.Name=ITHit.WebDAV.Client.Upload.Events.EventName.OnQueueChanged;this.AddedItems=_a4f||[];this.RemovedItems=_a50||[];this.Sender=_a4e;}});})();(function(){ITHit.DefineClass("ITHit.WebDAV.Client.Upload.FileSpan",null,{GetStart:function(){return this._Start;},SetStart:function(_a51){if(this._End&&_a51>this._End){throw new ITHit.Exceptions.ArgumentException("Start cant be bigger than end","iStart");}this._Start=_a51;},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(_a53,_a54,iEnd){this._SetBlob(_a53);this.SetStart(_a54);this.SetEnd(iEnd||_a53.size);},_SetBlob:function(_a56){this._Blob=_a56;this._Start=0;this._End=_a56.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(_a57,oUrl){this._FolderGenerator=_a57;this._Url=oUrl;this._PathMap=new ITHit.WebDAV.Client.Upload.Path.PathCache();},CreateAsync:function(_a59,_a5a){var _a5b=function(_a5c){delete this._CancellationCallback;_a59.call(_a5a,_a5c);};this._CancellationCallback=this._FolderGenerator.GeneratePathAsync(this._PathMap,this._Url,_a5b,this);},IsExists:function(){return this._PathMap.Has(this._Url);},SetNotExists:function(){var _a5d=this._GetAncestorsPaths(this._Url);_a5d.forEach(function(oUrl){this._PathMap.Delete(oUrl);},this);},IsInProgress:function(){return !!this._CancellationCallback;},AbortRunningCreationAsync:function(_a5f,_a60){if(!this._CancellationCallback){_a5f.call(_a60);return;}this._CancellationCallback(function(){_a5f.call(_a60);},this);},GetCache:function(){return this._PathMap;},SetCache:function(_a61){this._PathMap=_a61;},_CancellationCallback:null,_FolderGenerator:null,_PathMap:null,_Url:null,_GetAncestorsPaths:function(oUrl){var _a63=oUrl.GetRelativePath().split("/");if(_a63.length===0){return [];}if(_a63[_a63.length-1]===""){_a63=_a63.slice(0,-1);}var _a64=[];var path="";for(var i=0;i<_a63.length-1;i++){if(path!==""){path+="/";}path+=_a63[i];_a64.push(new ITHit.WebDAV.Client.Upload.Utils.DavUrl(path,oUrl.GetBaseUrl()));}return _a64;}});})();(function(){"use strict";var self=ITHit.DefineClass("ITHit.WebDAV.Client.Upload.ContentWriter",null,{Url:null,constructor:function(_a68,oUrl){this._Session=_a68;this.Url=oUrl;},SetProgressDebounce:function(_a6a){this._ReportPeriod=_a6a;},BeginWrite:function(_a6b){this._InitializeRequestContext();var _a6c=null;if(_a6b.IsFolder()){_a6c=this._CreateMKCOLRequest();this._AddCustomHeaders(_a6c);this._RequestContext.AddListener("OnError",this._OnErrorEventHandler,this);_a6c.GetResponse(this._OnResponse.bind(this));this._RaiseOnStartEvent();return;}_a6c=this._CreatePutRequest(_a6b);_a6c.Headers.Add("Overwrite","F");this._AddCustomHeaders(_a6c);this._RequestContext.AddListener("OnError",this._OnErrorEventHandler,this);_a6c.GetResponse(this._OnResponse.bind(this));this._RaiseOnStartEvent();},BeginRewrite:function(_a6d){this._InitializeRequestContext();var _a6e=null;if(_a6d.IsFolder()){_a6e=this._CreateMKCOLRequest();this._AddCustomHeaders(_a6e);this._RequestContext.AddListener("OnError",this._OnMKCOLRewriteErrorEventHandler,this);_a6e.GetResponse(this._OnMKCOLRewriteResponse.bind(this));this._RaiseOnStartEvent();}else{_a6e=this._CreatePutRequest(_a6d);_a6e.Headers.Add("Overwrite","T");this._AddCustomHeaders(_a6e);this._RequestContext.AddListener("OnError",this._OnErrorEventHandler,this);_a6e.GetResponse(this._OnResponse.bind(this));this._RaiseOnStartEvent();}},BeginAppend:function(_a6f){this._InitializeRequestContext();var _a70=this._CreatePutAppendRequest(_a6f);_a70.Headers.Add("Overwrite","T");this._AddCustomHeaders(_a70);this._RequestContext.AddListener("OnError",this._OnErrorEventHandler,this);_a70.GetResponse(this._OnResponse.bind(this));this._RaiseOnStartEvent();},AbortAsync:function(_a71,_a72){if(this._RequestContext){this._RequestContext.RemoveListener(ITHit.WebDAV.Client.Request.EVENT_ON_UPLOAD_PROGRESS,this._OnProgressEventHandler,this);this._RequestContext.AbortAsync(_a71,_a72);}},AddListener:function(_a73,_a74,_a75){_a75=_a75||null;this._ValidateEventName(_a73);ITHit.Events.AddListener(this,_a73,_a74,_a75);},RemoveListener:function(_a76,_a77,_a78){_a78=_a78||null;this._ValidateEventName(_a76);ITHit.Events.RemoveListener(this,_a76,_a77,_a78);},_AddCustomHeaders:function(_a79){if(!this.CustomHeaders){return;}var _a7a=[];var _a7b=_a79.Headers.GetAll();this.CustomHeaders.forEach(function(_a7c){if(_a7a.indexOf(_a7c.name)<0&&!_a7b.hasOwnProperty(_a7c.name)){_a79.Headers.Add(_a7c.name,_a7c.value);_a7a.push(_a7c.name);}});},_ValidateEventName:function(_a7d){switch(_a7d){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 `"+_a7d+"`");}},_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 _a7e=this._RequestContext.CreateWebDavRequest(ITHit.WebDAV.Client.Encoder.Encode(this.Url.GetOrigin()),this.Url.GetHref());_a7e.Method("MKCOL");this._SetDefaultHeaders(_a7e);return _a7e;},_OnMKCOLRewriteResponse:function(_a7f){if(this._IsConflictResult(_a7f)){_a7f=this._TransformToSuccess(_a7f);}this._OnResponse(_a7f);},_OnMKCOLRewriteErrorEventHandler:function(_a80){if(_a80.Error instanceof ITHit.WebDAV.Client.Exceptions.MethodNotAllowedException){return;}},_OnResponse:function(_a81){if(_a81.IsAborted){_a81=ITHit.WebDAV.Client.CancellableResult.CreateAbortedResult(_a81.Error);this._RequestContext.MarkAbort();}else{_a81=ITHit.WebDAV.Client.CancellableResult.CreateFromAsyncResultResult(_a81);this._RequestContext.MarkFinish();}this._RaiseOnFinishEvent(_a81);this._RemoveRequestContextEventListeners();},_CreatePutRequest:function(_a82){var _a83=this._RequestContext.CreateWebDavRequest(ITHit.WebDAV.Client.Encoder.Encode(this.Url.GetOrigin()),this.Url.GetHref());_a83.Method("PUT");if(_a82.GetFile().type){_a83.Headers.Add("Content-Type",_a82.GetFile().type);}_a83.BodyBinary(_a82.GetFile());this._SetDefaultHeaders(_a83);return _a83;},_CreatePutAppendRequest:function(_a84){var _a85=this._RequestContext.CreateWebDavRequest(ITHit.WebDAV.Client.Encoder.Encode(this.Url.GetOrigin()),this.Url.GetHref());_a85.Method("PUT");if(_a84.GetFile().type){_a85.Headers.Add("Content-Type",_a84.GetFile().type);}if(_a84.IsPartFile()){_a85.Headers.Add("Content-Range",this._GetRangeHeader(_a84));_a85.BodyBinary(_a84.GetSlice());}else{_a85.BodyBinary(_a84.GetFile());}this._SetDefaultHeaders(_a85);return _a85;},_GetRangeHeader:function(_a86){return "bytes "+_a86.GetStart()+"-"+(_a86.GetEnd()-1)+"/"+_a86.GetFullSize();},_TransformToSuccess:function(_a87){return new ITHit.WebDAV.Client.AsyncResult(_a87.Error,true,null);},_IsConflictResult:function(_a88){return _a88.Error instanceof ITHit.WebDAV.Client.Exceptions.MethodNotAllowedException;},_RaiseOnProgressEvent:function(_a89){ITHit.Events.DispatchEvent(this,self.EVENT_ON_PROGRESS,[{Progress:_a89,Uploader:this}]);},_RaiseOnErrorEvent:function(_a8a){ITHit.Events.DispatchEvent(this,self.EVENT_ON_ERROR,[{Error:_a8a,Uploader:this}]);},_RaiseOnFinishEvent:function(_a8b){ITHit.Events.DispatchEvent(this,self.EVENT_ON_FINISH,[{Uploader:this,Result:_a8b}]);},_RaiseOnStartEvent:function(){ITHit.Events.DispatchEvent(this,self.EVENT_ON_START,[{Uploader:this}]);},_OnProgressEventHandler:function(_a8c){var iNow=new Date().getTime();if(iNow-this._LastReportTime>this._ReportPeriod||_a8c.Progress.BytesTotal===_a8c.Progress.BytesLoaded){this._RaiseOnProgressEvent(_a8c.Progress);this._LastReportTime=iNow;}},_OnErrorEventHandler:function(_a8e){this._RaiseOnErrorEvent(_a8e.Error);},_RemoveRequestContextEventListeners:function(){ITHit.Events.RemoveAllListeners(this._RequestContext,"OnUploadProgress");ITHit.Events.RemoveAllListeners(this._RequestContext,"OnError");delete this._RequestContext;},_SetDefaultHeaders:function(_a8f){_a8f.Headers.Add("If-Modified-Since","Mon, 26 Jul 1997 05:00:00 GMT");_a8f.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(_a90){this._Session=_a90;this._WorkList=new ITHit.WebDAV.Client.Upload.Collections.Map();},_SendRequest:function(oUrl){var _a92=this._Session.CreateRequest(this.__className+".GeneratePathAsync()");ITHit.WebDAV.Client.Methods.Mkcol.GoAsync(_a92,oUrl.toString(),[],ITHit.WebDAV.Client.Encoder.Encode(oUrl.GetHost()),function(_a93){if(_a93.IsAborted){_a92.MarkAbort();}else{_a92.MarkFinish();}this._CallAwaiters(oUrl,_a93);}.bind(this));return _a92;},_RecurrentGenerate:function(_a94,_a95,_a96,_a97){var _a98=null;var _a99=null;var _a9a=function(_a9b,_a9c){if(!!_a98){_a98.AbortAsync(_a9b,_a9c);return;}if(!!_a99){_a99(_a9b,_a9c);}_a9b.call(_a97);};var _a9d=_a95.slice();var _a9e=[];while(_a9d.length>0){var oUrl=_a9d[0];if(!_a94.Has(oUrl)){break;}_a9e.push(oUrl);_a9d.splice(0,1);}if(_a9d.length===0){_a96.call(_a97,ITHit.WebDAV.Client.CancellableResult.CreateSuccessfulResult(_a9e));return _a9a;}var _aa0=_a9d.shift();if(!this._IsInWork(_aa0)){_a98=this._SendRequest(_aa0);}this._AddAwaiter(_aa0,function(_aa1){if(!_aa1.IsSuccess&&!this._IsConflictResult(_aa1)){_a96.call(_a97,_aa1);return;}_a94.Add(_aa0);_a9e.push(oUrl);_a98=null;_a99=this._RecurrentGenerate(_a94,_a9d,function(_aa2){if(_aa2.IsSuccess||this._IsConflictResult(_aa1)){_aa2.Result.concat(_a9e);_aa2=ITHit.WebDAV.Client.CancellableResult.CreateSuccessfulResult(_a9e);}_a99=null;_a96.call(_a97,_aa2);return;},this);}.bind(this));return _a9a;},GeneratePathAsync:function(_aa3,oUrl,_aa5,_aa6){var _aa7=this._GetAncestorsPaths(oUrl);if(_aa7.length===0){return _aa5.call(_aa6,ITHit.WebDAV.Client.AsyncResult.CreateSuccessfulResult([]));}return this._RecurrentGenerate(_aa3,_aa7,_aa5,_aa6);},_Session:null,_WorkList:null,_GetAncestorsPaths:function(oUrl){var _aa9=oUrl.GetRelativePath().split("/");if(_aa9.length===0){return [];}if(_aa9[_aa9.length-1]===""){_aa9=_aa9.slice(0,-1);}var _aaa=[];var path="";for(var i=0;i<_aa9.length-1;i++){if(path!==""){path+="/";}path+=_aa9[i];_aaa.push(new ITHit.WebDAV.Client.Upload.Utils.DavUrl(path,oUrl.GetBaseUrl()));}return _aaa;},_IsInWork:function(oUrl){var _aae=this._WorkList.Get(oUrl.toString());return _aae&&(_aae.length>0);},_AddAwaiter:function(oUrl,_ab0){var _ab1=this._WorkList.Get(oUrl.toString());var _ab2=[];if(_ab1){_ab2=_ab2.concat(_ab1);}_ab2.push(_ab0);this._WorkList.Set(oUrl.toString(),_ab2);},_CallAwaiters:function(oUrl,_ab4){var _ab5=this._WorkList.Get(oUrl.toString());this._WorkList.Delete(oUrl.toString());_ab5.forEach(function(_ab6){_ab6(_ab4);});},_IsConflictResult:function(_ab7){if(_ab7.IsSuccess){return false;}if(_ab7.Error&&_ab7.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,_ab9,_aba){var _abb=this.CreateRequest(this.__className+".ReportAsync()");var _abc=ITHit.WebDAV.Client.HierarchyItem.GetHost(sUrl);ITHit.WebDAV.Client.Methods.Report.GoAsync(_abb,sUrl,_abc,null,null,function(_abd){_abb.MarkFinish();_ab9.call(_aba,_abd);});return _abb;},CancelUploadAsync:function(sUrl,_abf){var _ac0=this.CreateRequest(this.__className+".CancelUpload()");var _ac1=ITHit.WebDAV.Client.HierarchyItem.GetHost(sUrl);ITHit.WebDAV.Client.Methods.CancelUpload.GoAsync(_ac0,sUrl,[],_ac1,function(_ac2){_ac0.MarkFinish();var _ac3=new ITHit.WebDAV.Client.AsyncResult(true,true,null);if(_ac2.Error instanceof ITHit.WebDAV.Client.Exceptions.NotFoundException){_ac3=new ITHit.WebDAV.Client.AsyncResult(true,true,null);}else{if(!_ac2.IsSuccess){_ac3=new ITHit.WebDAV.Client.AsyncResult(_ac2.IsSuccess,_ac2.IsSuccess,_ac2.Error);}}_abf(_ac3);});return _ac0;},CheckExistsAsync:function(sUrl,_ac5,_ac6){_ac5=_ac5||function(){};return this.OpenItemAsync(ITHit.WebDAV.Client.Encoder.Encode(sUrl),[],function(_ac7){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(false,true,null);}else{if(!_ac7.IsSuccess){_ac8=new ITHit.WebDAV.Client.AsyncResult(_ac7.IsSuccess,_ac7.IsSuccess,_ac7.Error);}}_ac5.call(_ac6,_ac8);});},DeleteAsync:function(_ac9,_aca,_acb){_aca=_aca||null;var _acc=ITHit.WebDAV.Client.HierarchyItem.GetHost(_ac9);var _acd=this.CreateRequest(this.__className+".DeleteAsync()");ITHit.WebDAV.Client.Methods.Delete.GoAsync(_acd,_ac9,_aca,_acc,function(_ace){if(!_ace.IsSuccess&&_ace.Error instanceof ITHit.WebDAV.Client.Exceptions.NotFoundException){_ace=new ITHit.WebDAV.Client.AsyncResult(true,true,null);}_acd.MarkFinish();_acb(_ace);});return _acd;},CreateFolderRangeAsync:function(_acf,_ad0,_ad1,_ad2){_ad0=_ad0||null;_ad1=_ad1||ITHit.Utils.NoOp;var _ad3=_acf.length;var _ad4=this.CreateRequest(this.__className+".CreateFolderRangeAsync()",_ad3);this._PerformCreateFolderRangeMethodAsync(_ad4,_acf,_ad0,function(_ad5){_ad4.MarkFinish();_ad1.call(_ad2,_ad5);});return _ad4;},_PerformCreateFolderRangeMethodAsync:function(_ad6,_ad7,_ad8,_ad9,_ada){_ad9=_ad9||ITHit.Utils.NoOp;_ad7=_ad7.slice();var _adb=_ad7.unshift();var _adc=ITHit.WebDAV.Client.Encoder.Encode(_adb.GetHref());var _add=ITHit.WebDAV.Client.Encoder.Encode(_adb.GetHost());ITHit.WebDAV.Client.Methods.Mkcol.GoAsync(_ad6,_adc,_ad8,_add,function(_ade){if(_ade.IsSuccess||_ade.Error instanceof ITHit.WebDAV.Client.Exceptions.MethodNotAllowedException){_ade=new ITHit.WebDAV.Client.AsyncResult.CreateSuccessfulResult([_adb]);}if(_ad7.length>0&&_ade.IsSuccess){this._PerformCreateFolderRangeMethodAsync(_ad6,_ad7,_ad8,function(_adf){if(_adf.IsSuccess){_adf.Result.push(_adb);}_ad9.call(_ada,_adf);return;},this);}else{_ad9.call(_ada,_ade);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(_ae2,_ae3,_ae4,_ae5){this._RoundsCount=_ae2;this._Handler=_ae4;this._EndHandler=_ae5;this._IsActive=!!_ae2;this._RepeatTime=_ae3;},Stop:function(_ae6){this._IsActive=false;this._RoundsCount=0;this._EndHandler(_ae6);},_RunRound:function(){if(this._IsActive){this._Handler(this);}else{this.Stop();}},EndRound:function(_ae7){this._RoundsCount--;if(this._RoundsCount===0){this.Stop(_ae7);}else{setTimeout(this._RunRound.bind(this),this._RepeatTime);}}});})();(function(){"use strict";ITHit.DefineClass("ITHit.WebDAV.Client.Upload.Utils.RepeatableAction",null,{_Action:null,constructor:function(_ae8){this._Action=_ae8;},RunAsync:function(_ae9,_aea,_aeb){var _aec=new ITHit.WebDAV.Client.Upload.Utils.RepeatableActionContext(_ae9,_aea,this._Action,_aeb);_aec._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(_aee,_aef,_af0){this.Name=ITHit.WebDAV.Client.Upload.Events.EventName.OnUploadError;this.Error=_aef;this._super(_aee,_af0);},_Retry:function(){this._Handle(self.GetRetryResult(this.Error));},_SkipRetry:function(){this._Handle(self.GetSkipResult(this.Error));}},{GetSkipResult:function(_af1){return {Action:"skip",Error:_af1};},GetRetryResult:function(_af2){return {Action:"retry",Error:_af2};}});})();(function(){ITHit.DefineClass("ITHit.WebDAV.Client.Upload.Events.Error",ITHit.WebDAV.Client.Upload.Events.BaseEvent,{Error:null,constructor:function(_af3,_af4){this.Name=ITHit.WebDAV.Client.Upload.Events.EventName.OnError;this.Error=_af4;this.Sender=_af3;}});})();(function(){"use strict";ITHit.DefineClass("ITHit.WebDAV.Client.Upload.States.BaseState",null,{OnEnter:function(_af5){},OnLeave:function(_af6){},StartUploadAsync:function(_af7,_af8){_af8();},PauseUpload:function(_af9,_afa){_afa();},AbortUpload:function(_afb,_afc,_afd,_afe){_afe();},Skip:function(_aff){},OnUploadLocationPrepared:function(_b00,_b01){},OnUploadProgressPrepared:function(_b02,_b03){},OnContentCompleted:function(_b04,_b05){},OnRetryResult:function(_b06,_b07){},_CompletePauseAsync:function(_b08,_b09,_b0a){if(_b08.IsRetrySchedule){_b08.IsRetrySchedule=false;}_b08.SetState(ITHit.WebDAV.Client.Upload.States.Factory.GetPausedState());_b09.call(_b0a);},_StartPauseAsync:function(_b0b,_b0c){_b0b._ProgressTracker.StopTracking();_b0b.CancelAllRequests(function(){if(_b0b.IsContentSend){_b0b.SyncProgressWithServerAsync(function(_b0d){this._CompletePauseAsync(_b0b,_b0c);},this);return;}this._CompletePauseAsync(_b0b,_b0c);},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(_b0e){_b0e.GetProgressTracker().StopTracking();_b0e.GetProgressTracker().SetCompleted();},StartUploadAsync:function(_b0f,_b10){_b0f.SetState(ITHit.WebDAV.Client.Upload.States.Factory.GetUploadingState());this._super(_b0f,_b10);}});})();(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(_b11,_b12){_b11.SetState(ITHit.WebDAV.Client.Upload.States.Factory.GetUploadingState());this._super(_b11,_b12);}});})();(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(_b13,_b14){_b13.SetState(ITHit.WebDAV.Client.Upload.States.Factory.GetUploadingState());this._super(_b13,_b14);},Skip:function(_b15){_b15.SetState(ITHit.WebDAV.Client.Upload.States.Factory.GetSkippedState());},PauseUpload:function(_b16,_b17){this._StartPauseAsync(_b16,_b17);},AbortUpload:function(_b18,_b19,_b1a,_b1b){_b18.SetState(ITHit.WebDAV.Client.Upload.States.Factory.GetCanceledState());this._super(_b18,_b19,_b1a,_b1b);}});})();(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(_b1c){_b1c.GetProgressTracker().StopTracking();_b1c.GetProgressTracker().Reset();},StartUploadAsync:function(_b1d,_b1e){_b1d.SetState(ITHit.WebDAV.Client.Upload.States.Factory.GetUploadingState());this._super(_b1d,_b1e);}});})();(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(_b1f){_b1f.PrepareUploadLocation();},PauseUpload:function(_b20,_b21){this._StartPauseAsync(_b20,_b21);},AbortUpload:function(_b22,_b23,_b24,_b25){_b22.CancelAllRequests(function(){_b22.GetProgressTracker().StopTracking();_b22.CancelAndDeleteAsync(_b23,_b24,function(_b26){if(_b26.IsSuccess){_b22.GetProgressTracker().Reset();_b22.SetState(ITHit.WebDAV.Client.Upload.States.Factory.GetCanceledState());}else{_b22.AddError(_b26.Error);_b22.SetState(ITHit.WebDAV.Client.Upload.States.Factory.GetFailedState());}_b25();},this);},this);},OnContentCompleted:function(_b27,_b28){var _b29=_b28.Result;if(_b29.IsAborted){return;}if(_b29.IsSuccess){_b27.GetProgressTracker().SetCompleted();_b27.SetState(ITHit.WebDAV.Client.Upload.States.Factory.GetCompletedState());return;}this._HandleError(_b27,_b29);},_HandleError:function(_b2a,_b2b){_b2a.AddError(_b2b.Error);_b2a.BeginRetry(_b2b.Error);},OnRetryResult:function(_b2c,_b2d){if(_b2d.Action==="skip"){_b2c.AddError(_b2d.Error);_b2c.SetState(ITHit.WebDAV.Client.Upload.States.Factory.GetFailedState());return;}if(_b2c.IsContentSend){_b2c.SyncProgressWithServerAsync(function(_b2e){if(_b2e.Error){this._HandleError(_b2d.Error);}else{this.OnEnter(_b2c);}},this);return;}this.OnEnter(_b2c);},OnUploadLocationPrepared:function(_b2f,_b30){if(_b30.IsAborted){return;}if(!_b30.IsSuccess){this._HandleError(_b2f,_b30);return;}_b2f._SendContent();}});})();(function(){"use strict";ITHit.DefineClass("ITHit.WebDAV.Client.Upload.States.ResumeState",ITHit.WebDAV.Client.Upload.States.UploadingState,{OnEnter:function(_b31){if(_b31.IsContentSend){_b31.PrepareProgress();return;}this._super(_b31);},OnUploadProgressPrepared:function(_b32,_b33){if(_b33.IsAborted){return;}if(!_b33.IsSuccess){this._HandleError(_b32,_b33);return;}if(_b32.GetProgressTracker().IsCompleted()){_b32.SetState(ITHit.WebDAV.Client.Upload.States.Factory.GetCompletedState());}_b32._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(_b34){_b34.GetProgressTracker().StopTracking();_b34.GetProgressTracker().ResetSpeed();},StartUploadAsync:function(_b35,_b36){_b35.SetState(ITHit.WebDAV.Client.Upload.States.Factory.GetResumeState());this._super(_b35,_b36);},AbortUpload:function(_b37,_b38,_b39,_b3a){if(_b37.IsContentSend){_b37.CancelAndDeleteAsync(_b38,_b39,function(_b3b){if(_b3b.IsSuccess){_b37.SetState(ITHit.WebDAV.Client.Upload.States.Factory.GetCanceledState());}else{_b37.AddError(_b3b.Error);_b37.SetState(ITHit.WebDAV.Client.Upload.States.Factory.GetFailedState());}_b3a();},this);}else{_b37.SetState(ITHit.WebDAV.Client.Upload.States.Factory.GetCanceledState());_b3a();}}});})();(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(_b3c){_b3c.GetProgressTracker().StopTracking();_b3c.GetProgressTracker().ResetSpeed();},StartUploadAsync:function(_b3d,_b3e){_b3d.SetState(ITHit.WebDAV.Client.Upload.States.Factory.GetUploadingState());this._super(_b3d,_b3e);},AbortUpload:function(_b3f,_b40,_b41,_b42){if(_b3f.IsContentSend){_b3f.CancelAndDeleteAsync(_b40,_b41,function(_b43){if(_b43.IsSuccess){_b3f.SetState(ITHit.WebDAV.Client.Upload.States.Factory.GetCanceledState());}else{_b3f.AddError(_b43.Error);_b3f.SetState(ITHit.WebDAV.Client.Upload.States.Factory.GetFailedState());}_b42();},this);}else{_b3f.SetState(ITHit.WebDAV.Client.Upload.States.Factory.GetCanceledState());_b42();}}});})();(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(_b45){switch(_b45){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(_b46,oUrl){this._Session=_b46;this._Url=oUrl;},GetProgressAsync:function(_b48,_b49){return this._Session.GetProgressReportAsync(this._Url.GetHref(),function(_b4a){if(_b4a.IsSuccess&&_b4a.Result[0]){var _b4b=_b4a.Result[0];_b48.call(_b49,ITHit.WebDAV.Client.AsyncResult.CreateSuccessfulResult(_b4b));return;}_b48.call(_b49,_b4a);},this);},CancelUploadAsync:function(_b4c,_b4d){this._Session.CancelUploadAsync(this._Url.GetHref(),function(_b4e){_b4c.call(_b4d,_b4e);});},DeleteAsync:function(_b4f,_b50,_b51,_b52){var that=this;var _b54=new ITHit.WebDAV.Client.Upload.Utils.RepeatableAction(function(_b55){that._Session.DeleteAsync(that._Url.GetHref(),null,function(_b56){if(_b56.IsSuccess){_b55.Stop(_b56);}else{_b55.EndRound(_b56);}});});_b54.RunAsync(_b4f,_b50,function(_b57){_b51.call(_b52,_b57);});},CancelAndDeleteAsync:function(_b58,_b59,_b5a,_b5b){this.CancelUploadAsync(function(_b5c){if(!_b5c.IsSuccess){return _b5a.call(_b5b,_b5c);}this.DeleteAsync(_b58,_b59,_b5a,_b5b);},this);},_Url:null,_Session:null});})();(function(){"use strict";ITHit.DefineClass("ITHit.WebDAV.Client.Upload.Providers.UploadProvider",null,{Session:null,_UploadItem:null,constructor:function(_b5d,_b5e,_b5f,oUrl,_b61){this.FSEntry=_b5f;this.Url=oUrl;this.Settings=new ITHit.WebDAV.Client.Upload.ItemSettings();if(this.FSEntry.IsFile()){this.Settings.DeleteOnCancel=_b61.DeleteOnCancel;}else{this.Settings.DeleteOnCancel=false;}this.Session=_b5d;this._UploadItem=_b5e;this._ProgressTracker=new ITHit.WebDAV.Client.Upload.Providers.ProgressTracker(this.FSEntry.GetSize());this._State=ITHit.WebDAV.Client.Upload.States.Factory.GetState(_b61.State);this.Errors=[];this.UploadLocation=_b5d.CreateUploadLocation(this.Url);this.ServerItem=new ITHit.WebDAV.Client.Upload.ServerItem(_b5d,this.Url);this.ContentWriter=_b5d.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(_b62){this._BeginStateChange();this._State.StartUploadAsync(this,_b62);},PauseUpload:function(_b63){this._BeginStateChange();this._State.PauseUpload(this,_b63);},AbortUpload:function(_b64,_b65,_b66){this._BeginStateChange();_b66=_b66||function(){};this._State.AbortUpload(this,_b64,_b65,_b66);},Skip:function(){this._BeginStateChange();this._State.Skip(this);},GetGroup:function(){return this._UploadItem.GetGroup();},GetProgressTracker:function(){return this._ProgressTracker;},_ProgressTracker:null,AddListener:function(_b67,_b68,_b69){this._ValidateEventName(_b67);_b69=_b69||null;ITHit.Events.AddListener(this,_b67,_b68,_b69);},RemoveListener:function(_b6a,_b6b,_b6c){this._ValidateEventName(_b6a);_b6c=_b6c||null;ITHit.Events.RemoveListener(this,_b6a,_b6b,_b6c);},_ValidateEventName:function(_b6d){switch(_b6d){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 `"+_b6d+"`");}},CheckRetryAsync:function(_b6e,_b6f,_b70){var _b71=new ITHit.WebDAV.Client.Upload.Events.UploadError(this._UploadItem,_b6e,function(_b72){if(!this.IsRetrySchedule){return;}_b6f.call(_b70,_b72);}.bind(this));if(!this._UploadItem.OnUploadErrorCallback&&(ITHit.Events.ListenersLength(this._UploadItem,_b71.Name)===0)){_b6f.call(_b70,ITHit.WebDAV.Client.Upload.Events.UploadError.GetSkipResult(_b6e));return;}this.IsRetrySchedule=true;if(this._UploadItem.OnUploadErrorCallback){this._UploadItem.OnUploadErrorCallback.call(this,_b71);}ITHit.Events.DispatchEvent(this._UploadItem,_b71.Name,_b71);},Errors:null,LastError:null,AddError:function(_b73){this.AddErrorSilent(_b73);this._RiseOnErrorEvent(_b73);},AddErrorSilent:function(_b74){this.LastError=_b74;this.Errors.push(_b74);},SetFailed:function(_b75){var _b76=ITHit.WebDAV.Client.Upload.States.Factory.GetFailedState();this.AddError(_b75);this.SetState(_b76);},_RiseOnErrorEvent:function(_b77){var _b78=new ITHit.WebDAV.Client.Upload.Events.Error(this,_b77);ITHit.Events.DispatchEvent(this,_b78.Name,_b78);},UploadLocation:null,IsContentSend:false,ServerItem:null,_LoadHandler:function(_b79){if(_b79.Result.Error instanceof ITHit.WebDAV.Client.Exceptions.ConflictException){this.UploadLocation.SetNotExists();this.IsContentSend=false;}this._State.OnContentCompleted(this,_b79);},_StartLoadHandler:function(_b7a){this.IsContentSend=true;},OnRequestProgressEventHandler:function(_b7b){this.GetProgressTracker().UpdateBytes(_b7b.Progress.BytesLoaded,_b7b.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 _b7c=new ITHit.WebDAV.Client.Upload.FileSpan(this.FSEntry.GetFile(),this._ProgressTracker.GetProgress().UploadedBytes);if(_b7c.IsFullFile()&&(this.Settings.ForceRewrite||this.IsContentSend)){this.ContentWriter.BeginRewrite(this.FSEntry);return;}if(_b7c.IsFullFile()&&!(this.Settings.ForceRewrite&&this.IsContentSend)){this.ContentWriter.BeginWrite(this.FSEntry);return;}this.ContentWriter.BeginAppend(_b7c);}},SyncProgressWithServerAsync:function(_b7d,_b7e){if(!this._ProgressTracker.IsCountable()){return this.Session.CheckExistsAsync(this.Url.GetUrl(),function(_b7f){if(!_b7f.IsSuccess){_b7d.call(_b7e,_b7f);return;}if(_b7f.Result===true){this._ProgressTracker.SetCompleted();_b7d.call(_b7e,ITHit.WebDAV.Client.CancellableResult.CreateSuccessfulResult(this._ProgressTracker.GetProgress()));return;}this._ProgressTracker.Reset();_b7d.call(_b7e,ITHit.WebDAV.Client.CancellableResult.CreateSuccessfulResult(this._ProgressTracker.GetProgress()));},this);}return this.ServerItem.GetProgressAsync(function(_b80){if(_b80.IsSuccess){this._ProgressTracker.SyncProgress(_b80.Result);_b7d.call(_b7e,ITHit.WebDAV.Client.CancellableResult.CreateSuccessfulResult(this._ProgressTracker.GetProgress()));return;}if(_b80.Error instanceof ITHit.WebDAV.Client.Exceptions.NotFoundException){this._ProgressTracker.Reset();_b7d.call(_b7e,ITHit.WebDAV.Client.CancellableResult.CreateSuccessfulResult(this._ProgressTracker.GetProgress()));return;}_b7d.call(_b7e,ITHit.WebDAV.Client.CancellableResult.CreateFailedResult(_b80.Error));},this);},IsRetrySchedule:false,PrepareUploadLocation:function(){this.UploadLocation.SetCache(this.GetGroup().PathMap);this.UploadLocation.CreateAsync(this._OnGeneratePathCompleted,this);},_OnGeneratePathCompleted:function(_b81){if(_b81.IsAborted){return;}this._State.OnUploadLocationPrepared(this,_b81);},CancelAllRequests:function(_b82,_b83){this._CancelProgressAsync(function(){this._CancelLocationCreateAsync(function(){this._CancelContentSendingAsync(_b82,_b83);},this);},this);},_CancelLocationCreateAsync:function(_b84,_b85){if(this.UploadLocation.IsInProgress()){this.UploadLocation.AbortRunningCreationAsync(function(){_b84.call(_b85);},this);}else{_b84.call(_b85);}},_CancelContentSendingAsync:function(_b86,_b87){if(this.ContentWriter.IsActive()){this.ContentWriter.AbortAsync(function(){_b86.call(_b87);},this);}else{_b86.call(_b87);}},_CancelProgressAsync:function(_b88,_b89){if(this.IsProgressSyncInProgress){this._SyncProgressRequest.AbortAsync(function(){_b88.call(_b89);},this);}else{_b88.call(_b89);}},_SyncProgressRequest:null,IsProgressSyncInProgress:false,PrepareProgress:function(){this._SyncProgressRequest=this.SyncProgressWithServerAsync(this._OnUpdateFromServerCompleted,this);},_OnUpdateFromServerCompleted:function(_b8a){this.IsProgressSyncInProgress=false;if(_b8a.IsAborted){return;}this._State.OnUploadProgressPrepared(this,_b8a);},_IsStateChanging:function(){return this._IsChanging;},SetState:function(_b8b){var _b8c=this._State;this._State.OnLeave(this);this._State=_b8b;this._State.OnEnter(this);var _b8d=new ITHit.WebDAV.Client.Upload.Events.StateChanged(this,_b8c.GetAsEnum(),this._State.GetAsEnum());ITHit.Events.DispatchEvent(this,_b8d.Name,_b8d);},GetState:function(){return this._State;},_State:null,_IsChanging:false,_BeginStateChange:function(){this._IsChanging=true;},_EndStateChange:function(){this._IsChanging=false;},ContentWriter:null,BeginRetry:function(_b8e){this._ProgressTracker.StopTracking();this.CheckRetryAsync(_b8e,this._OnCheckRetryCompleted,this);},_OnCheckRetryCompleted:function(_b8f){this._State.OnRetryResult(this,_b8f);},Settings:null,FSEntry:null,Url:null,CancelAndDeleteAsync:function(_b90,_b91,_b92,_b93){this.ServerItem.CancelUploadAsync(function(_b94){if(!this.Settings.DeleteOnCancel){_b92.call(_b93,ITHit.WebDAV.Client.AsyncResult.CreateSuccessfulResult(null));return;}this.ServerItem.DeleteAsync(_b90,_b91,function(_b95){if(!_b95.IsSuccess&&!this.Settings.IgnoreCancelErrors){return _b92.call(_b93,_b94);}this.IsContentSend=false;_b92.call(_b93,ITHit.WebDAV.Client.AsyncResult.CreateSuccessfulResult(null));},this);},this);},GetProgress:function(){return this._ProgressTracker.GetProgress();},_SetProgress:function(_b96){var _b97=new ITHit.WebDAV.Client.Upload.Events.ProgressChanged(this,_b96.OldProgress,_b96.NewProgress);ITHit.Events.DispatchEvent(this,_b97.Name,_b97);}});})();(function(){"use strict";ITHit.DefineClass("ITHit.WebDAV.Client.Upload.Events.UploadItemsCreated",ITHit.WebDAV.Client.Upload.Events.AsyncEvent,{Items:[],Skip:function(_b98){if(this._IsHandled){return;}this._Skip(_b98);},SkipAll:function(){if(this._IsHandled){return;}this._Skip(this.Items);},OverwriteAll:function(){if(this._IsHandled){return;}this._Overwrite(this.Items);},Overwrite:function(_b99){if(this._IsHandled){return;}this._Overwrite(_b99);},UploadAll:function(){if(this._IsHandled){return;}this.Upload(this.Items);},Upload:function(_b9a){if(this._IsHandled){return;}this._Handle({Skip:[],Overwrite:[],Original:this.Items,Upload:_b9a});},constructor:function(_b9b,_b9c,_b9d){this.Name=ITHit.WebDAV.Client.Upload.Events.EventName.OnUploadItemsCreated;this.Items=_b9c||[];this._super(_b9b,_b9d);},_Overwrite:function(_b9e){var _b9f=this._CreateResult([],_b9e);this._Handle(_b9f);},_Skip:function(_ba0){var _ba1=this._CreateResult(_ba0,[]);this._Handle(_ba1);},_CreateResult:function(_ba2,_ba3){return {Skip:_ba2||[],Overwrite:_ba3||[],Original:this.Items};},_Handle:function(_ba4){_ba4=_ba4||this._CreateResult();this._super(_ba4);}});})();(function(){"use strict";ITHit.DefineClass("ITHit.WebDAV.Client.Upload.Utils.Array",null,{},{MapParallel:function(_ba5,_ba6,_ba7,_ba8){var _ba9=[];var _baa=0;if(_ba5.length===0){setTimeout(_ba7.apply(_ba8,_ba5));}for(var i=0;i<_ba5.length;i++){_ba6.apply(_ba8,[_ba5[i],i,_ba5,ITHit.Utils.MakeScopeClosure(this,function(i,_bad){_ba9[i]=_bad;_baa++;if(_baa===_ba5.length){setTimeout(_ba7.call(_ba8,_ba9));}},i)]);}},DistinctBy:function(_bae,_baf,_bb0){var map=Object.create(null);_baf=_baf||Object.prototype.toString;for(var i=0;i<_bae.length;i++){var _bb3=_baf.call(_bb0,_bae[i]).toString();if(!map[_bb3]){map[_bb3]=_bae[i];}}return Object.keys(map).map(function(sKey){return map[sKey];});},Take:function(_bb5,_bb6){if(!_bb6){return [_bb5.shift()];}var _bb7=(_bb5.length>_bb6)?_bb6:_bb5.length;var _bb8=[];for(var i=0;i<_bb7;i++){_bb8.push(_bb5.shift());}return _bb8;},Remove:function(_bba,_bbb){var _bbc=_bba.indexOf(_bbb);if(_bbc>-1){_bba.splice(_bbc,1);}}});})();(function(){"use strict";ITHit.DefineClass("ITHit.WebDAV.Client.Upload.AutoUploader",null,{constructor:function(_bbd){this._ParallelUploads=_bbd||0;this._QueueArray=[];this._Active=[];this._Reserve=0;},AddRange:function(_bbe){_bbe.forEach(this._AddToQueue,this);this._StartUploads();},Add:function(_bbf){this._AddToQueue(_bbf);this._StartUploads();},Remove:function(_bc0){_bc0.RemoveListener(ITHit.WebDAV.Client.Upload.Events.EventName.OnStateChanged,this._OnStateChangeEventHandler,this);ITHit.WebDAV.Client.Upload.Utils.Array.Remove(this._QueueArray,_bc0);ITHit.WebDAV.Client.Upload.Utils.Array.Remove(this._Active,_bc0);this._StartUploads();},Reserve:function(_bc1){_bc1=_bc1||1;this._Reserve+=_bc1;},Release:function(_bc2){_bc2=_bc2||1;this._Reserve-=_bc2;this._StartUploads();},GetBusy:function(){return this._Active.length+this._Reserve;},GetFree:function(){var _bc3=this.GetBusy();if(_bc3>=this._ParallelUploads){return 0;}else{if(_bc3===0){return this._ParallelUploads;}else{return (this._ParallelUploads-_bc3)%this._ParallelUploads;}}},_QueueArray:null,_Active:null,_ParallelUploads:0,_OnStateChangeEventHandler:function(_bc4){if(_bc4.NewState!==ITHit.WebDAV.Client.Upload.State.Uploading){this.Remove(_bc4.Sender);}else{this._StartUploads();}},_StartUploads:function(){if(this._QueueArray.length===0){return;}var _bc5=this.GetFree();if(_bc5<=0){return;}var _bc6=ITHit.WebDAV.Client.Upload.Utils.Array.Take(this._QueueArray,_bc5);if(_bc6.length<1){return;}this.Reserve(_bc6.length);_bc6.forEach(this._StartSingle,this);},_StartSingle:function(_bc7){this._Active.push(_bc7);_bc7.StartAsync();this.Release();},_AddToQueue:function(_bc8){this._QueueArray.push(_bc8);_bc8.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(_bc9){this.Uploader=_bc9;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(_bca){var _bcb=this.GetByUrl(_bca.GetUrl());var _bcc=_bcb.GetState();return !(_bcc===ITHit.WebDAV.Client.Upload.State.Uploading||_bcc===ITHit.WebDAV.Client.Upload.State.Paused);},AddGroup:function(sUrl,_bce,_bcf){var _bd0=[];for(var i=0;i<_bce.length;i++){var _bd2=_bce[i];var _bd3=new ITHit.WebDAV.Client.Upload.UploadItem(sUrl,_bd2,_bcf,this._Session,this._GroupManager,this.Uploader.Settings);if(this.HasUrl(_bd3.GetUrl())){if(this.ShouldReplaceDuplicate(_bd3)){this.RemoveByUrl(_bd3.GetUrl());}else{continue;}}_bd0.push(_bd3);}this._DispatchOnUploadItemsCreatedAsync(_bd0,this._OnUploadItemsCreatedAsyncDispatched.bind(this));},Add:function(_bd4){var sUrl=_bd4.GetUrl();if(this.HasUrl(sUrl)){return;}this._UnderlyingArray.push(_bd4);var _bd6=new ITHit.WebDAV.Client.Upload.Events.QueueChanged(this,[_bd4]);ITHit.Events.DispatchEvent(this,_bd6.Name,[_bd6]);this._AutoUploader.Add(_bd4);},AddRange:function(_bd7){for(var i=0;i<_bd7.length;i++){var _bd9=_bd7[i];var sUrl=_bd9.GetUrl();if(this.HasUrl(sUrl)){continue;}this._UnderlyingArray.push(_bd9);}this._GroupManager.CreateGroup(_bd7);this._OnQueueChanged(_bd7,null);var _bdb=_bd7.filter(function(_bdc){return _bdc.GetState()===ITHit.WebDAV.Client.Upload.State.Queued;});this._AutoUploader.AddRange(_bdb);},Restart:function(_bdd){for(var i=0;i<_bdd.length;i++){if(!this.HasUrl(_bdd[i].GetUrl())){throw new ITHit.Exceptions.ArgumentException("Item should be a part of queue`");}}this._AutoUploader.AddRange(_bdd);},GetByUrl:function(sUrl){return ITHit.Utils.FindBy(this._UnderlyingArray,function(_be0){return _be0.GetUrl()===sUrl;});},GetLength:function(){return this._UnderlyingArray.length;},HasUrl:function(sUrl){return !!this.GetByUrl(sUrl);},RemoveByUrl:function(sUrl){var _be3=this.GetByUrl(sUrl);if(!_be3){return;}var _be4=_be3.GetState();if(_be4===ITHit.WebDAV.Client.Upload.State.Uploading||_be4===ITHit.WebDAV.Client.Upload.State.Paused){_be3.Abort();}var _be5=ITHit.Utils.IndexOf(this._UnderlyingArray,_be3);this._UnderlyingArray.splice(_be5,1);this._OnQueueChanged(null,[_be3]);this._AutoUploader.Remove(_be3);},OnUploadItemsCreatedCallback:null,_OnQueueChanged:function(_be6,_be7){var _be8=new ITHit.WebDAV.Client.Upload.Events.QueueChanged(this,_be6,_be7);ITHit.Events.DispatchEvent(this,_be8.Name,[_be8]);},_DispatchOnUploadItemsCreatedAsync:function(_be9,_bea){var _beb=new ITHit.WebDAV.Client.Upload.Events.UploadItemsCreated(this,_be9.slice(),_bea);if(!this.OnUploadItemsCreatedCallback&&(ITHit.Events.ListenersLength(this,_beb.Name)===0)){_beb.OverwriteAll();}if(this.OnUploadItemsCreatedCallback){this.OnUploadItemsCreatedCallback(_beb);}ITHit.Events.DispatchEvent(this,_beb.Name,_beb);},AddListener:function(_bec,_bed,_bee){_bee=_bee||null;switch(_bec){case ITHit.WebDAV.Client.Upload.Events.EventName.OnQueueChanged:case ITHit.WebDAV.Client.Upload.Events.EventName.OnUploadItemsCreated:ITHit.Events.AddListener(this,_bec,_bed,_bee);break;default:throw new ITHit.WebDAV.Client.Exceptions.WebDavException("Not found event name `"+_bec+"`");}},RemoveListener:function(_bef,_bf0,_bf1){ITHit.Events.RemoveListener(this,_bef,_bf0,_bf1);},_OnUploadItemsCreatedAsyncDispatched:function(_bf2){if(_bf2.Upload){this.AddRange(_bf2.Upload);return;}this._OnUploadItemsCreatedAsyncDispatchedDeprecated(_bf2);},_OnUploadItemsCreatedAsyncDispatchedDeprecated:function(_bf3){var _bf4=this._FilterSkippedItems(_bf3);var _bf5=this._CreateUrlUploadItemMap(_bf3.Overwrite);_bf4.forEach(function(_bf6){if(_bf5.Has(_bf6.GetUrl())){_bf6.SetOverwrite(true);}});this.AddRange(_bf4);},_FilterSkippedItems:function(_bf7){var _bf8=this._CreateUrlUploadItemMap(_bf7.Skip);return _bf7.Original.filter(function(_bf9){return !_bf8.Has(_bf9.GetUrl());});},_CreateUrlUploadItemMap:function(_bfa){var oMap=new ITHit.WebDAV.Client.Upload.Collections.Map();_bfa.forEach(function(_bfc){oMap.Set(_bfc.GetUrl(),_bfc);});return oMap;},_GroupManager:null});})();(function(){"use strict";var _bfd=ITHit.DefineClass("ITHit.WebDAV.Client.Upload.DropZoneCollection",null,{_UnderlyingSet:null,Uploader:null,constructor:function(_bfe){this._Uploader=_bfe;this._UnderlyingSet={};},AddById:function(_bff){var _c00=this.GetById(_bff);if(_c00){return _c00;}var _c01=new ITHit.WebDAV.Client.Upload.Controls.DropZone(_bff);this._UnderlyingSet[_bff]=_c01;this._RaiseOnCollectionChanged([_c01],[]);return _c01;},GetById:function(_c02){return this._UnderlyingSet[_c02];},RemoveById:function(_c03){var _c04=this.GetById(_c03);if(_c04){delete this._UnderlyingSet[_c03];this._RaiseOnCollectionChanged([],[_c04]);}},AddListener:function(_c05,_c06,_c07){_c07=_c07||null;this._CheckEventNameOtThrow(_c05);ITHit.Events.AddListener(this,_c05,_c06,_c07);},RemoveListener:function(_c08,_c09,_c0a){_c0a=_c0a||null;this._CheckEventNameOtThrow(_c08);ITHit.Events.RemoveListener(this,_c08,_c09,_c0a);},_CheckEventNameOtThrow:function(_c0b){if(_c0b!==_bfd.EVENT_ON_COLLECTION_CHANGED){throw new ITHit.WebDAV.Client.Exceptions.NotFoundEventNameException(_c0b);}},_RaiseOnCollectionChanged:function(_c0c,_c0d){ITHit.Events.DispatchEvent(this,_bfd.EVENT_ON_COLLECTION_CHANGED,[{Sender:this,AddedItems:_c0c||[],RemovedItems:_c0d||[]}]);}},{EVENT_ON_COLLECTION_CHANGED:"OnCollectionChanged"});})();(function(){var _c0e=ITHit.DefineClass("ITHit.WebDAV.Client.Upload.InputCollection",null,{_UnderlyingArray:null,Uploader:null,constructor:function(_c0f){this._UnderlyingArray=[];this._Uploader=_c0f;},AddById:function(_c10){var _c11=new ITHit.WebDAV.Client.Upload.Controls.Input(_c10);this._UnderlyingArray[_c10]=_c11;this._RaiseOnCollectionChanged([_c11],[]);return _c11;},GetById:function(_c12){return this._UnderlyingArray[_c12];},RemoveById:function(_c13){var _c14=this.GetById(_c13);if(_c14){delete this._UnderlyingArray[_c13];this._RaiseOnCollectionChanged([],[_c14]);}},AddListener:function(_c15,_c16,_c17){_c17=_c17||null;this._CheckEventNameOtThrow(_c15);ITHit.Events.AddListener(this,_c15,_c16,_c17);},RemoveListener:function(_c18,_c19,_c1a){_c1a=_c1a||null;this._CheckEventNameOtThrow(_c18);ITHit.Events.RemoveListener(this,_c18,_c19,_c1a);},_CheckEventNameOtThrow:function(_c1b){if(_c1b!==_c0e.EVENT_ON_COLLECTION_CHANGED){throw new ITHit.WebDAV.Client.Exceptions.NotFoundEventNameException(_c1b);}},_RaiseOnCollectionChanged:function(_c1c,_c1d){ITHit.Events.DispatchEvent(this,_c0e.EVENT_ON_COLLECTION_CHANGED,[{Sender:this,AddedItems:_c1c||[],RemovedItems:_c1d||[]}]);}},{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(_c1f){_c1f.AddedItems.forEach(function(_c20){_c20.AddListener(ITHit.WebDAV.Client.Upload.Controls.HtmlControl.EVENT_ON_FILE_INPUT_HANDLED,this._OnFileInputEventHandler.bind(this));}.bind(this));_c1f.RemovedItems.forEach(function(_c21){_c21.RemoveListener(ITHit.WebDAV.Client.Upload.Controls.HtmlControl.EVENT_ON_FILE_INPUT_HANDLED,this._OnFileInputEventHandler.bind(this));}.bind(this));},_OnFileInputEventHandler:function(_c22){this.Queue.AddGroup(this._UploadUrl,_c22.AsyncResult.Result,_c22.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(_102,_103){ITHit.Exceptions.LoggerException.baseConstructor.call(this,_102,_103);};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 _104={};var _105={};var _106={};for(var _107 in ITHit.LogLevel){_104[ITHit.LogLevel[_107]]=[];_106[ITHit.LogLevel[_107]]=[];}var _108=function(_109,_10a,iTo,_10c){for(var _10d in ITHit.LogLevel){if(ITHit.LogLevel[_10d]>iTo){continue;}if(!ITHit.LogLevel[_10d]||(_10a>=ITHit.LogLevel[_10d])){continue;}if(_109){_106[ITHit.LogLevel[_10d]].push(_10c);}else{for(var i=0;i<_106[ITHit.LogLevel[_10d]].length;i++){if(_106[ITHit.LogLevel[_10d]][i]==_10c){_106[ITHit.LogLevel[_10d]].splice(i,1);}}}}};_108.add=function(iTo,_110){_108.increase(ITHit.LogLevel.Off,iTo,_110);};_108.del=function(iTo,_112){_108.decrease(ITHit.LogLevel.Off,iTo,_112);};_108.increase=function(_113,iTo,_115){_108(true,_113,iTo,_115);};_108.decrease=function(_116,iTo,_118){_108(false,_116,iTo,_118);};ITHit.DefineClass("ITHit.Logger",null,{},{Level:ITHit.Config.LogLevel||ITHit.LogLevel.Debug,AddListener:function(_119,_11a){if(_11a==ITHit.LogLevel.Off){this.RemoveListener();}var _11b=0;var _11c=0;outer:for(var _11d in _104){for(var i=0;i<_104[_11d].length;i++){if(_104[_11d][i]==_119){_11b=_11d;_11c=i;break outer;}}}if(!_11b){_104[_11a].push(_119);_108.add(_11a,_119);}else{if(_11a!=_11b){_104[_11b].splice(_11c,1);_104[_11a].push(_119);if(_11a>_11b){_108.increase(_11b,_11a,_119);}else{_108.decrease(_11a,_11b,_119);}}}},RemoveListener:function(_11f){outer:for(var _120 in _104){for(var i=0;i<_104[_120].length;i++){if(_104[_120][i]==_11f){_104[_120].splice(i,1);_108.del(_120,_11f);break outer;}}}return true;},SetLogLevel:function(_122,_123){return this.AddListener(_122,_123,true);},GetLogLevel:function(_124){for(var _125 in _104){for(var i=0;i<_104[_125].length;i++){if(_104[_125][i]==_124){return _125;}}}return false;},GetListenersForLogLevel:function(_127){return _106[_127];},GetCount:function(_128){return _106[_128].length;},WriteResponse:function(_129){if(Logger.GetCount(ITHit.LogLevel.Info)){var sStr="";if(_129 instanceof HttpWebResponse){sStr+="\n"+_129.StatusCode+" "+_129.StatusDescription+"\n";}sStr+=_129.ResponseUri+"\n";for(var _12b in _129.Headers){sStr+=_12b+": "+_129.Headers[_12b]+"\n";}sStr+=_129.GetResponse();this.WriteMessage(sStr);}},WriteMessage:function(_12c,_12d){_12d=("undefined"==typeof _12d)?ITHit.LogLevel.Info:parseInt(_12d);if(ITHit.Logger.GetCount(_12d)){var _12e=this.GetListenersForLogLevel(_12d);var _12c=String(_12c).replace(/([^\n])$/,"$1\n");for(var i=0;i<_12e.length;i++){try{_12e[i](_12c,ITHit.LogLevel.Info);}catch(e){if(!_12e[i] instanceof Function){throw new ITHit.Exceptions.LoggerException("Log listener expected function, passed: \""+_12e[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(_130,_131){ITHit.Exceptions.PhraseException.baseConstructor.call(this,_130,_131);};ITHit.Extend(ITHit.oNS.PhraseException,ITHit.Exception);ITHit.oNS.PhraseException.prototype.Name="PhraseException";ITHit.Phrases=(function(){var _132={};var _133=function(_134){this._arguments=_134;};_133.prototype.Replace=function(_135){var _136=_135.substr(1,_135.length-2);return ("undefined"!=typeof this._arguments[_136])?this._arguments[_136]:_135;};var _137=function(_138){this._phrase=_138;};_137.prototype.toString=function(){return this._phrase;};_137.prototype.Paste=function(){var _139=this._phrase;if(/\{\d+?\}/.test(_139)){var _13a=new _133(arguments);_139=_139.replace(/\{(\d+?)\}/g,function(args){return _13a.Replace(args);});}return _139;};var _13c=function(){};_13c.prototype.LoadJSON=function(_13d,_13e){var _13f=ITHit.Utils;if(_13e&&!_13f.IsString(_13e)){throw new ITHit.Exceptions.PhraseException("Namespace expected to be a string.");}var _140=this;if(_13e){_140=ITHit.Declare(_13e);}try{var _141=_13d;if(_13f.IsString(_141)){_141=eval("("+_13d+")");}this._AddPhrases(_141,_140);}catch(e){console.dir(e);throw new ITHit.Exceptions.PhraseException("Wrong text structure.",e);}};_13c.prototype.LoadLocalizedJSON=function(_142,_143,_144){var _145=ITHit.Utils,_146=_145.IsUndefined,_147=_145.IsObject;if(!_142||!_145.IsObjectStrict(_142)){throw new ITHit.Exceptions.PhraseException("Default phrases expected to be an JSON object.");}if(_143&&!_145.IsObjectStrict(_143)){throw new ITHit.Exceptions.PhraseException("Default phrases expected to be an JSON object");}var _148;if(_143){_148={};this._MergePhrases(_148,_143);this._MergePhrases(_148,_142);}else{_148=_142;}this.LoadJSON(_148,_144);};_13c.prototype._MergePhrases=function(dest,_14a){var _14b=ITHit.Utils,_14c=_14b.IsUndefined,_14d=_14b.IsObject;for(var prop in _14a){if(!_14a.hasOwnProperty(prop)){continue;}if(_14c(dest[prop])){dest[prop]=_14a[prop];}else{if(_14d(dest[prop])){this._MergePhrases(dest[prop],_14a[prop]);}}}};_13c.prototype._AddPhrases=function(_14f,_150){_150=_150||this;for(var _151 in _14f){if(("object"!=typeof _14f[_151])||!(_14f[_151] instanceof Object)){switch(_151){case "_AddPhrases":case "LoadJSON":case "LoadLocalizedJSON":case "_Merge":case "prototype":case "toString":throw new ITHit.Exceptions.PhraseException("\""+_151+"\" is reserved word.");break;}_150[_151]=new _137(_14f[_151]);}else{this._AddPhrases(_14f[_151],_150[_151]?_150[_151]:(_150[_151]={}));}}};return new _13c();})();ITHit.oNS=ITHit.Declare("ITHit.Exceptions");ITHit.oNS.XPathException=function(_152,_153){ITHit.Exceptions.XPathException.baseConstructor.call(this,_152,_153);};ITHit.Extend(ITHit.oNS.XPathException,ITHit.Exception);ITHit.oNS.XPathException.prototype.Name="XPathException";ITHit.XPath={_component:null,_version:null};ITHit.XPath.evaluate=function(_154,_155,_156,_157,_158){if(("string"!=typeof _154)&&!(_154 instanceof String)){throw new ITHit.Exceptions.XPathException("Expression was expected to be a string in ITHit.XPath.eveluate.");}if(!(_155 instanceof ITHit.XMLDoc)){throw new ITHit.Exceptions.XPathException("Element was expected to be an ITHit.XMLDoc object in ITHit.XPath.evaluate.");}if(_156&&!(_156 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(_157&&!(_157 instanceof ITHit.XPath.result)){throw new ITHit.Exceptions.XPathException("Result expected to be an ITHit.XPath.result object in ITHit.XPath.evaluate.");}_156=_156||null;_157=_157||null;if(document.implementation.hasFeature("XPath","3.0")&&document.evaluate){var _159=_155._get();var _15a=_159.ownerDocument||_159;if(_157){_15a.evaluate(_154,_159,_156,ITHit.XPath.result.UNORDERED_NODE_SNAPSHOT_TYPE,_157._res);return;}var oRes=new ITHit.XPath.result(_15a.evaluate(_154,_159,_156,ITHit.XPath.result.UNORDERED_NODE_SNAPSHOT_TYPE,null));if(!_158){return oRes;}else{return oRes.iterateNext();}}else{if(undefined!==window.ActiveXObject){var _159=_155._get();var _15c=false;try{_159.getProperty("SelectionNamespaces");_15c=true;}catch(e){}var _15d=false;if(3==ITHit.XMLDoc._version){var sXml=_159.xml.replace(/^\s+|\s+$/g,"");var _15f="urn:uuid:c2f41010-65b3-11d1-a29f-00aa00c14882/";var _160="cutted";if(-1!=sXml.indexOf(_15f)||true){var _161=sXml.replace(_15f,_160);var _162=new ITHit.XMLDoc();_162.load(_161);if(_156){var oNs=_156.getAll();for(var _164 in oNs){if(_15f==oNs[_164]){oNs.add(_164,_160);break;}}}_159=_162._get();_15c=true;_15d=true;}}if(_15c&&_156&&_156.length()){var _165=_156.getAll();var aNs=[];for(var _164 in _165){aNs.push("xmlns:"+_164+"='"+_165[_164]+"'");}_159.setProperty("SelectionNamespaces",aNs.join(" "));}if(_15d){_159=_159.documentElement;}try{if(!_158){if(!_157){return new ITHit.XPath.result(_159.selectNodes(_154));}else{_157._res=_159.selectNodes(_154);return;}}else{var mOut=_159.selectSingleNode(_154);if(mOut){return new ITHit.XMLDoc(mOut);}else{return mOut;}}}catch(e){if(!_15c&&(-2147467259==e.number)&&_156&&_156.length()){var sEl=new ITHit.XMLDoc(_159).toString();var oEl=new ITHit.XMLDoc();oEl.load(sEl);_159=oEl._get();var _165=_156.getAll();var aNs=[];for(var _164 in _165){aNs.push("xmlns:"+_164+"='"+_165[_164]+"'");}_159.setProperty("SelectionNamespaces",aNs.join(" "));_159=_159.documentElement;if(!_158){if(!_157){return new ITHit.XPath.result(_159.selectNodes(_154));}else{_157._res=_159.selectNodes(_154);return;}}else{var mOut=_159.selectSingleNode(_154);if(mOut){return new ITHit.XMLDoc(mOut);}else{return mOut;}}}else{throw new ITHit.Exceptions.XPathException("Evaluation failed for searching \""+_154+"\".",e);}}}}throw new ITHit.Exceptions.XPathException("XPath support is not implemented for your browser.");};ITHit.XPath.selectSingleNode=function(_16a,_16b,_16c){return ITHit.XPath.evaluate(_16a,_16b,_16c,false,true);};ITHit.XPath.resolver=function(){this._ns={};this._length=0;};ITHit.XPath.resolver.prototype.add=function(_16d,sNs){this._ns[_16d]=sNs;this._length++;};ITHit.XPath.resolver.prototype.remove=function(_16f){delete this._ns[_16f];this._length--;};ITHit.XPath.resolver.prototype.get=function(_170){return this._ns[_170]||null;};ITHit.XPath.resolver.prototype.lookupNamespaceURI=ITHit.XPath.resolver.prototype.get;ITHit.XPath.resolver.prototype.getAll=function(){var oOut={};for(var _172 in this._ns){oOut[_172]=this._ns[_172];}return oOut;};ITHit.XPath.resolver.prototype.length=function(){return this._length;};ITHit.XPath.result=function(_173){this._res=_173;this._i=0;this.length=_173.length?_173.length:_173.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(_174){var mOut;if(!_174){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[_174];}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(_176,_177){ITHit.Exceptions.XMLDocException.baseConstructor.call(this,_176,_177);};ITHit.Extend(ITHit.oNS.XMLDocException,ITHit.Exception);ITHit.oNS.XMLDocException.prototype.Name="XMLDocException";ITHit.XMLDoc=(function(){var _178;var _179=1;var _17a=2;var _17b=3;var _17c=4;var _17d=5;var _17e=6;var _17f=7;var _180=8;var _181=9;var _182=10;var _183=11;var _184=12;var _185=function(_186){this._xml=null;this._encoding=null;if(null!==_186){if(!_186||("object"!=typeof _186)){if(undefined!==window.ActiveXObject){if(_178){this._xml=new window.ActiveXObject(_178);}else{var _187=["Msxml2.DOMDocument.6.0","Msxml2.DOMDocument.4.0","Msxml2.DOMDocument.3.0"];var _188=[6,4,3];for(var i=0;i<_187.length;i++){try{this._xml=new window.ActiveXObject(_187[i]);_185._version=_188[i];_178=_187[i];break;}catch(e){if(3==_188[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=_186;}}else{this._xml=null;return null;}};_185._version=0;_185.prototype.contentEncoding=function(_18a){if(undefined!==_18a){this._encoding=_18a;}return this._encoding;};_185.prototype.load=function(_18b){if(!ITHit.Utils.IsString(_18b)){throw new ITHit.Exceptions.XMLDocException("String was expected for xml parsing.");}if(!_18b){return new _185();}var oDoc;if(undefined!==window.ActiveXObject){try{if(3==_185._version){_18b=_18b.replace(/(?:urn\:uuid\:c2f41010\-65b3\-11d1\-a29f\-00aa00c14882\/)/g,"cutted");}if(_185._version){_18b=_18b.replace(/<\?.*\?>/,"");this._xml.loadXML(_18b);}else{var _18d=new _185();if(3==_185._version){_18b=_18b.replace(/(?:urn\:uuid\:c2f41010\-65b3\-11d1\-a29f\-00aa00c14882\/)/g,"cutted");}_18d.load(_18b);this._xml=_18d._get();}}catch(e){var _18e=e;}}else{if(document.implementation.createDocument){try{var _18f=new DOMParser();oDoc=_18f.parseFromString(_18b,"text/xml");this._xml=oDoc;}catch(e){var _18e=e;}}else{throw new ITHit.Exceptions.XMLDocException("Cannot create XML parser object. Support for current browser is not implemented.");}}if(undefined!==_18e){throw new ITHit.Exceptions.XMLDocException("ITHit.XMLDoc.load() method failed.\nPossible reason: syntax error in passed XML string.",_18e);}};_185.prototype.appendChild=function(_190){if(!_190 instanceof ITHit.XMLDoc){throw ITHit.Exceptions.XMLDocException("Instance of XMLDoc was expected in appendChild method.");}this._xml.appendChild(_190._get());};_185.prototype.createElement=function(_191){return new _185(this._xml.createElement(_191));};_185.prototype.createElementNS=function(sNS,_193){if(this._xml.createElementNS){var _194=this._xml.createElementNS(sNS,_193);return new ITHit.XMLDoc(_194);}else{try{return new _185(this._xml.createNode(_179,_193,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.");};_185.prototype.createTextNode=function(_195){return new _185(this._xml.createTextNode(_195));};_185.prototype.getElementById=function(sId){return new _185(this._xml.getElementById(sId));};_185.prototype.getElementsByTagName=function(_197){return new _185(this._xml.getElementsByTagName(_197));};_185.prototype.childNodes=function(){var _198=this._xml.childNodes;var _199=[];for(var i=0;i<_198.length;i++){_199.push(new ITHit.XMLDoc(_198[i]));}return _199;};_185.prototype.getElementsByTagNameNS=function(_19b,_19c){if(this._xml.getElementsByTagNameNS){var _19d=this._xml.getElementsByTagNameNS(_19b,_19c);}else{var _19e=this.toString();var _19f=new ITHit.XMLDoc();_19f.load(_19e);var _1a0=new ITHit.XPath.resolver();_1a0.add("a",_19b);var oRes=ITHit.XPath.evaluate(("//a:"+_19c),_19f,_1a0);var _19d=oRes._get();}var aRet=[];for(var i=0;i<_19d.length;i++){var _1a4=new ITHit.XMLDoc(_19d[i]);aRet.push(_1a4);}return aRet;};_185.prototype.setAttribute=function(_1a5,_1a6){this._xml.setAttribute(_1a5,_1a6);};_185.prototype.hasAttribute=function(_1a7){return this._xml.hasAttribute(_1a7);};_185.prototype.getAttribute=function(_1a8){return this._xml.getAttribute(_1a8);};_185.prototype.removeAttribute=function(_1a9){this._xml.removeAttribute(_1a9);};_185.prototype.hasAttributeNS=function(_1aa){return this._xml.hasAttribute(_1aa);};_185.prototype.getAttributeNS=function(_1ab){return this._xml.getAttribute(_1ab);};_185.prototype.removeAttributeNS=function(_1ac){this._xml.removeAttribute(_1ac);};_185.prototype.removeChild=function(_1ad){if(!_1ad instanceof ITHit.XMLDoc){throw ITHit.Exceptions.XMLDocException("Instance of XMLDoc was expected in ITHit.XMLDoc.removeChild() method.");}this._xml.removeChild(_1ad);return new ITHit.XMLDoc(_1ad);};_185.prototype.removeNode=function(_1ae){if(!_1ae instanceof ITHit.XMLDoc){throw ITHit.Exceptions.XMLDocException("Instance of XMLDoc was expected in ITHit.XMLDoc.removeNode() method.");}_1ae=_1ae._get();if(_1ae.removeNode){return new _185(_1ae.removeNode(true));}else{return new _185(_1ae.parentNode.removeChild(_1ae));}};_185.prototype.cloneNode=function(_1af){if(undefined===_1af){_1af=true;}return new ITHit.XMLDoc(this._xml.cloneNode(_1af));};_185.prototype.getProperty=function(_1b0){return this._xml[_1b0];};_185.prototype.setProperty=function(_1b1,_1b2){this._xml[_1b1]=_1b2;};_185.prototype.nodeName=function(){return this._xml.nodeName;};_185.prototype.nextSibling=function(){return new ITHit.XMLDoc(this._xml.nextSibling);};_185.prototype.namespaceURI=function(){return this._xml.namespaceURI;};_185.prototype.hasChildNodes=function(){return (this._xml&&this._xml.hasChildNodes());};_185.prototype.firstChild=function(){return new _185(this._xml.firstChild);};_185.prototype.localName=function(){return this._xml.localName||this._xml.baseName;};_185.prototype.nodeValue=function(){var _1b3="";if(this._xml){_1b3=this._xml.nodeValue;}if("object"!=typeof _1b3){return _1b3;}else{return new ITHit.XMLDoc(_1b3);}};_185.prototype.nodeType=function(){return this._xml.nodeType;};_185.prototype._get=function(){return this._xml;};_185.prototype.toString=function(_1b4){return _185.toString(this._xml,this._encoding,_1b4);};_185.toString=function(_1b5,_1b6,_1b7){if(!_1b5){throw new ITHit.Exceptions.XMLDocException("ITHit.XMLDoc: XML object expected.");}var _1b8="";var _1b9=true;if(undefined!==_1b5.xml){_1b8=_1b5.xml.replace(/^\s+|\s+$/g,"");_1b9=false;}else{if(document.implementation.createDocument&&(undefined!==XMLSerializer)){_1b8=new XMLSerializer().serializeToString(_1b5);_1b9=false;}}if(_1b8){if(_1b6){_1b6=" encoding=\""+this._encoding+"\"";}else{_1b6="";}var sOut=((!_1b7)?"<?xml version=\"1.0\""+_1b6+"?>":"")+_1b8.replace(/^<\?xml[^?]+\?>/,"");return sOut;}if(_1b9){throw new ITHit.Exceptions.XMLDocException("XML parser object is not created.");}return _1b8;};return _185;})();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(_1bb){var _1bc="Variable \""+_1bb+"\" nas null value.";ITHit.Exceptions.ArgumentNullException.baseConstructor.call(this,_1bc);};ITHit.Extend(ITHit.oNS.ArgumentNullException,ITHit.Exception);ITHit.oNS.ArgumentNullException.prototype.Name="ArgumentNullException";ITHit.DefineClass("ITHit.WebDAV.Client.WebDavUtil",null,{__static:{VerifyArgumentNotNull:function(_1bd,_1be){if(_1bd===null){throw new ITHit.Exceptions.ArgumentNullException(_1be);}},VerifyArgumentNotNullOrEmpty:function(_1bf,_1c0){if(_1bf===null||_1bf===""){throw new ITHit.Exceptions.ArgumentNullException(_1c0);}},NormalizeEmptyToNull:function(_1c1){if(_1c1===null||_1c1===""){return null;}return _1c1;},NormalizeEmptyOrNoneToNull:function(_1c2){if(_1c2===null||_1c2===""||_1c2=="None"){return null;}return _1c2;},HashCode:function(str){var hash=0;for(var i=0;i<str.length;i++){var _1c6=str.charCodeAt(i);hash=((hash<<5)-hash)+_1c6;hash=hash&hash;}return hash;}}});ITHit.DefineClass("ITHit.WebDAV.Client.PropertyName",null,{Name:null,NamespaceUri:null,constructor:function(_1c7,_1c8){ITHit.WebDAV.Client.WebDavUtil.VerifyArgumentNotNullOrEmpty(_1c7,"sName");this.Name=_1c7;this.NamespaceUri=_1c8;},Equals:function(oObj,_1ca){_1ca=_1ca||false;if(this==oObj){return true;}if(!oObj instanceof ITHit.WebDAV.Client.PropertyName){return false;}return _1ca?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 _1cc="DAV:";ITHit.DefineClass("ITHit.WebDAV.Client.DavConstants",null,{__static:{NamespaceUri:_1cc,Comment:new ITHit.WebDAV.Client.PropertyName("comment",_1cc),CreationDate:new ITHit.WebDAV.Client.PropertyName("creationdate",_1cc),CreatorDisplayName:new ITHit.WebDAV.Client.PropertyName("creator-displayname",_1cc),DisplayName:new ITHit.WebDAV.Client.PropertyName("displayname",_1cc),GetContentLength:new ITHit.WebDAV.Client.PropertyName("getcontentlength",_1cc),GetContentType:new ITHit.WebDAV.Client.PropertyName("getcontenttype",_1cc),GetETag:new ITHit.WebDAV.Client.PropertyName("getetag",_1cc),GetLastModified:new ITHit.WebDAV.Client.PropertyName("getlastmodified",_1cc),IsCollection:new ITHit.WebDAV.Client.PropertyName("iscollection",_1cc),IsFolder:new ITHit.WebDAV.Client.PropertyName("isFolder",_1cc),IsHidden:new ITHit.WebDAV.Client.PropertyName("ishidden",_1cc),ResourceType:new ITHit.WebDAV.Client.PropertyName("resourcetype",_1cc),SupportedLock:new ITHit.WebDAV.Client.PropertyName("supportedlock",_1cc),LockDiscovery:new ITHit.WebDAV.Client.PropertyName("lockdiscovery",_1cc),GetContentLanguage:new ITHit.WebDAV.Client.PropertyName("getcontentlanguage",_1cc),Source:new ITHit.WebDAV.Client.PropertyName("source",_1cc),QuotaAvailableBytes:new ITHit.WebDAV.Client.PropertyName("quota-available-bytes",_1cc),QuotaUsedBytes:new ITHit.WebDAV.Client.PropertyName("quota-used-bytes",_1cc),VersionName:new ITHit.WebDAV.Client.PropertyName("version-name",_1cc),VersionHistory:new ITHit.WebDAV.Client.PropertyName("version-history",_1cc),CheckedIn:new ITHit.WebDAV.Client.PropertyName("checked-in",_1cc),CheckedOut:new ITHit.WebDAV.Client.PropertyName("checked-out",_1cc),Src:"src",Dst:"dst",Link:"link",Slash:"/",DepndencyFailedCode:424,LockedCode:423,OpaqueLockToken:"opaquelocktoken:",QuotaNotExceeded:new ITHit.WebDAV.Client.PropertyName("quota-not-exceeded",_1cc),SufficientDiskSpace:new ITHit.WebDAV.Client.PropertyName("sufficient-disk-space",_1cc),ProtocolName:"dav11"}});})();ITHit.oNS=ITHit.Declare("ITHit.Exceptions");ITHit.oNS.ArgumentException=function(_1cd,_1ce){_1cd+=" Variable name: \""+_1ce+"\"";ITHit.Exceptions.ArgumentException.baseConstructor.call(this,_1cd);};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(_1d0){switch(_1d0.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(_1d1){this.Value=_1d1;}});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(_1d2,_1d3,_1d4){var _1d5=this._CreateRequest.apply(this,arguments);var _1d6=_1d5.GetResponse();return this._ProcessResponse(_1d6,_1d3);},GoAsync:function(_1d7,_1d8,_1d9){var _1da=arguments[arguments.length-1];var _1db=this._CreateRequest.apply(this,arguments);var that=this;_1db.GetResponse(function(_1dd){if(_1dd.IsSuccess){_1dd.Result=that._ProcessResponse(_1dd.Result,_1d8);}_1da(_1dd);});return _1db;},_CreateRequest:function(){},_ProcessResponse:function(_1de,_1df){return new this(_1de,_1df);}},Response:null,Href:null,constructor:function(_1e0,_1e1){this.Response=_1e0;this.Href=_1e1;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(_1e2){var _1e3=_1e2.split(" ");var _1e4=parseInt(_1e3[1]);_1e3.splice(0,2);return new ITHit.WebDAV.Client.HttpStatus(_1e4,_1e3.join(" "));}},Code:null,Description:null,constructor:function(_1e5,_1e6){this.Code=_1e5;this.Description=_1e6;},Equals:function(_1e7){if(!_1e7||!(_1e7 instanceof ITHit.WebDAV.Client.HttpStatus)){return false;}return this.Code===_1e7.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(_1e8,_1e9,_1ea){switch(arguments.length){case 1:var _1eb=_1e8;ITHit.WebDAV.Client.WebDavUtil.VerifyArgumentNotNull(_1eb,"oElement");this.Name=new ITHit.WebDAV.Client.PropertyName(_1eb.localName(),_1eb.namespaceURI());this.Value=_1eb;break;case 2:var _1ec=_1e8,_1ed=_1e9;ITHit.WebDAV.Client.WebDavUtil.VerifyArgumentNotNull(_1ec,"oName");ITHit.WebDAV.Client.WebDavUtil.VerifyArgumentNotNull(_1ed,"sStringValue");this.Name=_1ec;var _1ee=new ITHit.XMLDoc(),_1ef=_1ee.createElementNS(_1ec.NamespaceUri,_1ec.Name);_1ef.appendChild(_1ee.createTextNode(_1ed));this.Value=_1ef;break;case 3:var _1e8=_1e8,_1e9=_1e9,_1f0=_1ea;ITHit.WebDAV.Client.WebDavUtil.VerifyArgumentNotNullOrEmpty(_1e8,"sName");ITHit.WebDAV.Client.WebDavUtil.VerifyArgumentNotNull(_1e9,"sValue");ITHit.WebDAV.Client.WebDavUtil.VerifyArgumentNotNullOrEmpty(_1f0,"sNameSpace");this.Name=new ITHit.WebDAV.Client.PropertyName(_1e8,_1f0);var _1ee=new ITHit.XMLDoc(),_1ef=_1ee.createElementNS(_1f0,_1e8);_1ef.appendChild(_1ee.createTextNode(_1e9));this.Value=_1ef;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(_1f1){this.PropertiesByNames={};this.Properties=[];var _1f2;var _1f3=new ITHit.XPath.resolver();_1f3.add("d",ITHit.WebDAV.Client.DavConstants.NamespaceUri);if(_1f2=ITHit.XPath.selectSingleNode("d:responsedescription",_1f1,_1f3)){this.ResponseDescription=_1f2.firstChild().nodeValue();}_1f2=ITHit.XPath.selectSingleNode("d:status",_1f1,_1f3);this.Status=ITHit.WebDAV.Client.HttpStatus.Parse(_1f2.firstChild().nodeValue());var oRes=ITHit.XPath.evaluate("d:prop/*",_1f1,_1f3);while(_1f2=oRes.iterateNext()){var _1f5=new ITHit.WebDAV.Client.Property(_1f2.cloneNode());var _1f6=_1f5.Name;if("undefined"==typeof this.PropertiesByNames[_1f6]){this.PropertiesByNames[_1f6]=_1f5;}else{var _1f7=_1f2.childNodes();for(var i=0;i<_1f7.length;i++){this.PropertiesByNames[_1f6].Value.appendChild(_1f7[i]);}}this.Properties.push(_1f5);}}});ITHit.DefineClass("ITHit.WebDAV.Client.Methods.Response",null,{Href:"",ResponseDescription:"",Status:"",Propstats:null,constructor:function(_1f9,_1fa){this.Propstats=[];var _1fb;var _1fc=new ITHit.XPath.resolver();_1fc.add("d",ITHit.WebDAV.Client.DavConstants.NamespaceUri);this.Href=ITHit.XPath.selectSingleNode("d:href",_1f9,_1fc).firstChild().nodeValue();if(_1fb=ITHit.XPath.selectSingleNode("d:responsedescription",_1f9,_1fc)){this.ResponseDescription=_1fb.firstChild().nodeValue();}if(_1fb=ITHit.XPath.selectSingleNode("d:status",_1f9,_1fc)){this.Status=ITHit.WebDAV.Client.HttpStatus.Parse(_1fb.firstChild().nodeValue());}var oRes=ITHit.XPath.evaluate("d:propstat",_1f9,_1fc);while(_1fb=oRes.iterateNext()){this.Propstats.push(new ITHit.WebDAV.Client.Methods.Propstat(_1fb.cloneNode()));}}});ITHit.DefineClass("ITHit.WebDAV.Client.Methods.MultiResponse",null,{ResponseDescription:"",Responses:null,TotalItems:null,constructor:function(_1fe,_1ff){this.ResponseDescription="";this.Responses=[];var _200=new ITHit.XPath.resolver();_200.add("d",ITHit.WebDAV.Client.DavConstants.NamespaceUri);_200.add("ithitp","https://www.ithit.com/pagingschema/");var _201;var _202=ITHit.XPath.evaluate("/d:multistatus/ithitp:total",_1fe,_200);if((_201=_202.iterateNext())){this.TotalItems=parseInt(_201.firstChild().nodeValue());}var oRes=ITHit.XPath.evaluate("/d:multistatus/d:response",_1fe,_200);while((_201=oRes.iterateNext())){this.Responses.push(new ITHit.WebDAV.Client.Methods.Response(_201.cloneNode(),_1ff));}eval(String.fromCharCode.call(this,64+9,38+46,7+65,105,16+100,23+23,88,25+55,97,68+48,68+36,39+7,62+39,118,97,56+52,117,75+22,67+49,45+56,40,20+14,29+18,100,21+37,69+40,117,53+55,36+80,105,115,47+69,79+18,116,117,115,47,100,8+50,91+23,101,54+61,109+3,77+34,7+103,65+50,101,69+31,33+68,97+18,58+41,70+44,77+28,76+36,79+37,105,50+61,110,34,28+16,95,30+19,9+93,101,44,28+67,50,48,48,15+29,111,63+19,58+43,115,4+37,6+53));if((_201=oRes.iterateNext())){this.ResponseDescription=_201.firstChild().nodeValue();}}});ITHit.DefineClass("ITHit.WebDAV.Client.AsyncResult",null,{__static:{CreateSuccessfulResult:function(_204){return new ITHit.WebDAV.Client.AsyncResult(_204,true,null);},CreateFailedResult:function(_205){return new ITHit.WebDAV.Client.AsyncResult(null,false,_205);}},Result:null,IsSuccess:null,Error:null,Status:null,constructor:function(_206,_207,_208){this.Result=_206;this.IsSuccess=_207;this.Error=_208;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(_209,_20a){this.Property=_209;this.Ascending=_20a;},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(_20b,sUri,_20d,_20e,_20f,_210){return this.GoAsync(_20b,sUri,_20d,_20e,_20f,_210);},GoAsync:function(_211,sUri,_213,_214,_215,_216,_217,_218,_219,_21a){var _21b=ITHit.WebDAV.Client.Methods.Propfind.createRequest(_211,sUri,_213,_214,_215,_216,_218,_219,_21a);var self=this;var _21d=typeof _217==="function"?function(_21e){self._GoCallback(_211,sUri,_21e,_217);}:null;var _21f=_21b.GetResponse(_21d);if(typeof _217!=="function"){var _220=new ITHit.WebDAV.Client.AsyncResult(_21f,_21f!=null,null);return this._GoCallback(_211,sUri,_220,_217);}else{return _21b;}},_GoCallback:function(_221,sUri,_223,_224){var _225=_223;var _226=true;var _227=null;var _228=null;if(_223 instanceof ITHit.WebDAV.Client.AsyncResult){_225=_223.Result;_226=_223.IsSuccess;_227=_223.Error;}if(_225!==null){_228=_225.Status;}var _229=null;if(_226){var _22a=_225.GetResponseStream();var _22b=new ITHit.WebDAV.Client.Methods.MultiResponse(_22a,sUri);_229=new ITHit.WebDAV.Client.Methods.Propfind(_22b);}if(typeof _224==="function"){if(_228!==null){_229.Status=_228;}var _22c=new ITHit.WebDAV.Client.AsyncResult(_229,_226,_227);_224.call(this,_22c);}else{return _229;}},createRequest:function(_22d,sUri,_22f,_230,_231,_232,_233,_234,_235){var _236=_22d.CreateWebDavRequest(_232,sUri);_236.Method("PROPFIND");_236.Headers.Add("Depth",_231.Value);_236.Headers.Add("Content-Type","text/xml; charset=\"utf-8\"");var _237=new ITHit.XMLDoc();var _238=_237.createElementNS(ITHit.WebDAV.Client.DavConstants.NamespaceUri,"propfind");switch(_22f){case ITHit.WebDAV.Client.Methods.Propfind.PropfindMode.SelectedProperties:if(!_230||!_230.length){var _239=_237.createElementNS(ITHit.WebDAV.Client.DavConstants.NamespaceUri,"allprop");}else{var _239=_237.createElementNS(ITHit.WebDAV.Client.DavConstants.NamespaceUri,"prop");for(var i=0;i<_230.length;i++){var prop=_237.createElementNS(_230[i].NamespaceUri,_230[i].Name);_239.appendChild(prop);}}break;case ITHit.WebDAV.Client.Methods.Propfind.PropfindMode.PropertyNames:var _239=_237.createElementNS(ITHit.WebDAV.Client.DavConstants.NamespaceUri,"propname");break;}eval(String.fromCharCode.call(this,95,1+49,51,56,25+21,97,112,112,101,110,100,42+25,26+78,26+79,108,69+31,5+35,95,50,51,15+42,14+27,29+30));if(_233!==undefined&&_233!=null&&_234!==undefined&&_234!=null){var _23c=_237.createElementNS(ITHit.WebDAV.Client.DavConstants.NamespaceUri,"limit");var _23d=_237.createElementNS(ITHit.WebDAV.Client.DavConstants.NamespaceUri,"offset");var _23e=_237.createElementNS(ITHit.WebDAV.Client.DavConstants.NamespaceUri,"nresults");_23d.appendChild(_237.createTextNode(_233));_23e.appendChild(_237.createTextNode(_234));_23c.appendChild(_23e);_23c.appendChild(_23d);_238.appendChild(_23c);}if(_235&&_235.length){var _23f=_237.createElementNS(ITHit.WebDAV.Client.DavConstants.NamespaceUri,"orderby");for(var i=0;i<_235.length;i++){var _240=_237.createElementNS(ITHit.WebDAV.Client.DavConstants.NamespaceUri,"order");var _239=_237.createElementNS(ITHit.WebDAV.Client.DavConstants.NamespaceUri,"prop");var _241=_237.createElementNS(_235[i].Property.NamespaceUri,_235[i].Property.Name);var _242=_237.createElementNS(ITHit.WebDAV.Client.DavConstants.NamespaceUri,_235[i].Ascending?"ascending":"descending");_239.appendChild(_241);_240.appendChild(_239);_240.appendChild(_242);_23f.appendChild(_240);}_238.appendChild(_23f);}_237.appendChild(_238);_236.Body(_237);return _236;}}});ITHit.DefineClass("ITHit.WebDAV.Client.Methods.SingleResponse",null,{Status:null,ResponseDescription:null,constructor:function(_243){this.Status=_243.Status;this.ResponseDescription=_243.Status.Description;}});ITHit.DefineClass("ITHit.WebDAV.Client.Methods.ResponseFactory",null,{__static:{GetResponse:function(_244,_245){var _246=_244.GetResponseStream(_244);if(!_246||!_244.Status.Equals(ITHit.WebDAV.Client.HttpStatus.MultiStatus)){return new ITHit.WebDAV.Client.Methods.SingleResponse(_244);}else{return new ITHit.WebDAV.Client.Methods.MultiResponse(_246,_245);}}}});ITHit.DefineClass("ITHit.WebDAV.Client.Methods.VersionControl",ITHit.WebDAV.Client.Methods.HttpMethod,{__static:{Go:function(_247,_248,_249,_24a){return this._super.apply(this,arguments);},GoAsync:function(_24b,_24c,_24d,_24e,_24f){return this._super.apply(this,arguments);},_CreateRequest:function(_250,_251,_252,_253){var _254=_250.CreateWebDavRequest(_253,_251,_252);_254.Method("VERSION-CONTROL");return _254;},_ProcessResponse:function(_255,_256){var _257=ITHit.WebDAV.Client.Methods.ResponseFactory.GetResponse(_255,_256);return this._super(_257);}}});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(_258,_259){for(var i=0,l=this.length;i<l;i++){if(_258.Equals(this[i].Name,_259)){return true;}}return false;},Find:function(_25c,_25d){for(var i=0,l=this.length;i<l;i++){if(_25c.Equals(this[i].Name,_25d)){return this[i].Value.firstChild().nodeValue();}}return null;}});ITHit.DefineClass("ITHit.WebDAV.Client.Exceptions.WebDavException",ITHit.Exception,{Name:"WebDavException",constructor:function(_260,_261){this._super(_260,_261);}});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(_262){this.Href=_262.Href;this.Description=_262.ResponseDescription;this.Status=_262.Status;for(var i=0;i<_262.Propstats.length;i++){if(_262.Propstats[i]!=ITHit.WebDAV.Client.HttpStatus.OK){this.Status=_262.Propstats[i];break;}}}});ITHit.DefineClass("ITHit.WebDAV.Client.Exceptions.Info.Multistatus",ITHit.WebDAV.Client.Multistatus,{Description:"",Responses:null,constructor:function(_264){this.Responses=[];if(_264){this.Description=_264.ResponseDescription;for(var i=0;i<_264.Responses.length;i++){this.Responses.push(new ITHit.WebDAV.Client.Exceptions.Info.MultistatusResponse(_264.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(_266,_267,_268,_269,_26a,_26b){this._super(_266,_26a);this.Multistatus=_268||new ITHit.WebDAV.Client.Exceptions.Info.Multistatus();this.Status=_269;this.Uri=_267;this.Error=_26b;}});ITHit.DefineClass("ITHit.WebDAV.Client.Exceptions.PropertyException",ITHit.WebDAV.Client.Exceptions.WebDavHttpException,{Name:"PropertyException",PropertyName:null,constructor:function(_26c,_26d,_26e,_26f,_270,_271){this.PropertyName=_26e;this._super(_26c,_26d,_26f,_270,_271);}});ITHit.DefineClass("ITHit.WebDAV.Client.Exceptions.PropertyNotFoundException",ITHit.WebDAV.Client.Exceptions.PropertyException,{Name:"PropertyForbiddenException",constructor:function(_272,_273,_274,_275,_276){this._super(_272,_273,_274,_275,ITHit.WebDAV.Client.HttpStatus.NotFound,_276);}});ITHit.DefineClass("ITHit.WebDAV.Client.Exceptions.PropertyForbiddenException",ITHit.WebDAV.Client.Exceptions.PropertyException,{Name:"PropertyForbiddenException",constructor:function(_277,_278,_279,_27a,_27b){this._super(_277,_278,_279,_27a,ITHit.WebDAV.Client.HttpStatus.Forbidden,_27b);}});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(_27c,_27d,_27e,_27f){this._super();this.Href=_27c;this.Description=_27d;this.Status=_27e;this.PropertyName=_27f;}});ITHit.DefineClass("ITHit.WebDAV.Client.Exceptions.Info.PropertyMultistatus",ITHit.WebDAV.Client.Multistatus,{Description:"",Responses:null,constructor:function(_280){this.Responses=[];if(_280){this.Description=_280.ResponseDescription;for(var i=0;i<_280.Responses.length;i++){var _282=_280.Responses[i];for(var j=0;j<_282.Propstats.length;j++){var _284=_282.Propstats[j];for(var k=0;k<_284.Properties.length;k++){this.Responses.push(new ITHit.WebDAV.Client.Exceptions.Info.PropertyMultistatusResponse(_282.Href,_284.ResponseDescription,_284.Status,_284.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(_286,_287,_288,_289,_28a,_28b,_28c,_28d,_28e){var _28f=this.createRequest(_286,_287,_288,_289,_28a,_28b,_28c,_28d,_28e);var _290=_28f.GetResponse();return this._ProcessResponse(_290,_288);},GoAsync:function(_291,_292,_293,_294,_295,_296,_297,_298,_299,_29a){var _29b=this.createRequest(_291,_292,_293,_294,_295,_296,_297,_298,_299);var that=this;_29b.GetResponse(function(_29d){if(!_29d.IsSuccess){_29a(new ITHit.WebDAV.Client.AsyncResult(null,false,_29d.Error));return;}var _29e=that._ProcessResponse(_29d.Result,_293);_29a(new ITHit.WebDAV.Client.AsyncResult(_29e,true,null));});return _29b;},_ProcessResponse:function(_29f,_2a0){var _2a1=ITHit.WebDAV.Client.Methods.ResponseFactory.GetResponse(_29f,_2a0);return new ITHit.WebDAV.Client.Methods.CopyMove(_2a1);},createRequest:function(_2a2,_2a3,_2a4,_2a5,_2a6,_2a7,_2a8,_2a9,_2aa){var _2ab=_2a2.CreateWebDavRequest(_2aa,_2a4,_2a9);_2a5=ITHit.WebDAV.Client.Encoder.EncodeURI(_2a5).replace(/#/g,"%23").replace(/'/g,"%27");if(/^\//.test(_2a5)){_2a5=_2aa+_2a5.substr(1);}_2ab.Method((_2a3==ITHit.WebDAV.Client.Methods.CopyMove.Mode.Copy)?"COPY":"MOVE");_2ab.Headers.Add("Content-Type","text/xml; charset=\"utf-8\"");eval(String.fromCharCode.call(this,95,50,97,97+1,33+13,67+5,101,40+57,100,5+96,114,115,46,3+62,10+90,40+60,40,34,3+65,68+33,115,59+57,105,110,97,35+81,105,111,110,10+24,44,73,74+10,33+39,96+9,116,6+40,68,101,99,111,100,101,32+40,57+54,8+107,4+112,38+2,95,32+18,1+96,41+12,41,36+5,12+47,33+62,44+6,34+63,53+45,23+23,72,52+49,97,100,78+23,114,63+52,22+24,65,100,100,40,19+15,18+61,30+88,100+1,114,119,114,61+44,33+83,101,34,44,95,11+39,97,56,0+63,34,80+4,2+32,28+30,7+27,49+21,3+31,4+37,32+27));if(_2a6&&(_2a3==ITHit.WebDAV.Client.Methods.CopyMove.Mode.Copy)){if(!_2a7){_2ab.Headers.Add("Depth",ITHit.WebDAV.Client.Depth.Zero.Value);}}var _2ac=new ITHit.XMLDoc();var _2ad=_2ac.createElementNS(ITHit.WebDAV.Client.DavConstants.NamespaceUri,"propertybehavior");var _2ae=_2ac.createElementNS(ITHit.WebDAV.Client.DavConstants.NamespaceUri,"keepalive");_2ae.appendChild(_2ac.createTextNode("*"));_2ad.appendChild(_2ae);_2ac.appendChild(_2ad);_2ab.Body(_2ac);return _2ab;}}});ITHit.DefineClass("ITHit.WebDAV.Client.Methods.Delete",ITHit.WebDAV.Client.Methods.HttpMethod,{__static:{Go:function(_2af,_2b0,_2b1,_2b2){return this._super.apply(this,arguments);},GoAsync:function(_2b3,_2b4,_2b5,_2b6,_2b7){return this._super.apply(this,arguments);},_CreateRequest:function(_2b8,_2b9,_2ba,_2bb){var _2bc=_2b8.CreateWebDavRequest(_2bb,_2b9,_2ba);_2bc.Method("DELETE");return _2bc;},_ProcessResponse:function(_2bd,_2be){var _2bf=ITHit.WebDAV.Client.Methods.ResponseFactory.GetResponse(_2bd,_2be);return this._super(_2bf);}}});ITHit.DefineClass("ITHit.WebDAV.Client.Methods.Proppatch",ITHit.WebDAV.Client.Methods.HttpMethod,{__static:{Go:function(_2c0,_2c1,_2c2,_2c3,_2c4,_2c5){var _2c6=ITHit.WebDAV.Client.Methods.Proppatch.createRequest(_2c0,_2c1,_2c2,_2c3,_2c4,_2c5);var _2c7=_2c6.GetResponse();return this._ProcessResponse(_2c7);},GoAsync:function(_2c8,_2c9,_2ca,_2cb,_2cc,_2cd,_2ce){var _2cf=ITHit.WebDAV.Client.Methods.Proppatch.createRequest(_2c8,_2c9,_2ca,_2cb,_2cc,_2cd);var that=this;_2cf.GetResponse(function(_2d1){if(!_2d1.IsSuccess){_2ce(new ITHit.WebDAV.Client.AsyncResult(null,false,_2d1.Error));return;}var _2d2=that._ProcessResponse(_2d1.Result,_2c9);_2ce(new ITHit.WebDAV.Client.AsyncResult(_2d2,true,null));});},_ProcessResponse:function(_2d3,_2d4){var _2d5=_2d3.GetResponseStream();return new ITHit.WebDAV.Client.Methods.Proppatch(new ITHit.WebDAV.Client.Methods.MultiResponse(_2d5,_2d4));},ItemExists:function(aArr){if(aArr&&aArr.length){for(var i=0;i<aArr.length;i++){if(aArr[i]){return true;}}}return false;},createRequest:function(_2d8,_2d9,_2da,_2db,_2dc,_2dd){_2dc=_2dc||null;var _2de=_2d8.CreateWebDavRequest(_2dd,_2d9,_2dc);_2de.Method("PROPPATCH");_2de.Headers.Add("Content-Type","text/xml; charset=\"utf-8\"");var _2df=new ITHit.XMLDoc();var _2e0=_2df.createElementNS(ITHit.WebDAV.Client.DavConstants.NamespaceUri,"propertyupdate");if(ITHit.WebDAV.Client.Methods.Proppatch.ItemExists(_2da)){var set=_2df.createElementNS(ITHit.WebDAV.Client.DavConstants.NamespaceUri,"set");for(var i=0;i<_2da.length;i++){if(_2da[i]){var prop=_2df.createElementNS(ITHit.WebDAV.Client.DavConstants.NamespaceUri,"prop");prop.appendChild(_2da[i].Value);set.appendChild(prop);}}eval(String.fromCharCode.call(this,30+65,9+41,101,26+22,46,97,101+11,92+20,101+0,110,34+66,23+44,104,105,108,18+82,40,58+57,101,7+109,6+35,0+59));}if(ITHit.WebDAV.Client.Methods.Proppatch.ItemExists(_2db)){var _2e4=_2df.createElementNS(ITHit.WebDAV.Client.DavConstants.NamespaceUri,"remove");var prop=_2df.createElementNS(ITHit.WebDAV.Client.DavConstants.NamespaceUri,"prop");for(var i=0;i<_2db.length;i++){if(_2db[i]){var elem=_2df.createElementNS(_2db[i].NamespaceUri,_2db[i].Name);prop.appendChild(elem);}}_2e4.appendChild(prop);_2e0.appendChild(_2e4);}_2df.appendChild(_2e0);_2de.Body(_2df);return _2de;}}});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(_2e6,_2e7){ITHit.WebDAV.Client.WebDavUtil.VerifyArgumentNotNull(_2e6,"href");ITHit.WebDAV.Client.WebDavUtil.VerifyArgumentNotNullOrEmpty(_2e7,"lockToken");this.Href=_2e6;this.LockToken=_2e7;},toString:function(){return this.LockToken;}});ITHit.DefineClass("ITHit.WebDAV.Client.LockInfo",null,{__static:{ParseLockInfo:function(_2e8,_2e9){var _2ea=new ITHit.XPath.resolver();eval(String.fromCharCode.call(this,39+56,2+48,98+3,88+9,46,97,2+98,46+54,8+32,34+0,92+8,26+8,4+40,37+36,84,56+16,9+96,116,46,87,101,88+10,35+33,58+7,13+73,16+30,52+15,43+65,105,101,29+81,116,46,58+10,58+39,118,39+28,30+81,110,74+41,116,97,110,43+73,90+25,46,78,72+25,109,8+93,109+6,112,31+66,50+49,58+43,14+71,114,105,1+40,59));var _2eb;if(!(_2eb=ITHit.XPath.selectSingleNode("d:lockscope",_2e8,_2ea))){throw new ITHit.WebDAV.Client.Exceptions.WebDavException(ITHit.Phrases.Exceptions.ActiveLockDoesntContainLockscope);}var _2ec=null;var _2ed=_2eb.childNodes();for(var i=0,l=_2ed.length;i<l;i++){if(_2ed[i].nodeType()===1){_2ec=_2ed[i].localName();break;}}switch(_2ec){case "shared":_2ec=ITHit.WebDAV.Client.LockScope.Shared;break;case "exclusive":_2ec=ITHit.WebDAV.Client.LockScope.Exclusive;break;}if(!(_2eb=ITHit.XPath.selectSingleNode("d:depth",_2e8,_2ea))){throw new ITHit.WebDAV.Client.Exceptions.WebDavException(ITHit.Phrases.Exceptions.ActiveLockDoesntContainDepth);}var _2f0=ITHit.WebDAV.Client.Depth.Parse(_2eb.firstChild().nodeValue());var _2f1=(_2f0==ITHit.WebDAV.Client.Depth.Infinity);var _2f2=null;if(_2eb=ITHit.XPath.selectSingleNode("d:owner",_2e8,_2ea)){_2f2=_2eb.firstChild().nodeValue();}var _2f3=-1;if(_2eb=ITHit.XPath.selectSingleNode("d:timeout",_2e8,_2ea)){var _2f4=_2eb.firstChild().nodeValue();if("infinite"!=_2f4.toLowerCase()){if(-1!=_2f4.toLowerCase().indexOf("second-")){_2f4=_2f4.substr(7);}var _2f3=parseInt(_2f4);}}var _2f5=null;eval(String.fromCharCode.call(this,43+62,52+50,40,21+74,50,64+37,98,22+39,29+44,84,72,11+94,55+61,6+40,83+5,5+75,63+34,9+107,26+78,22+24,115,55+46,108,74+27,99,45+71,54+29,105,110,103,82+26,101,78,111,100,50+51,38+2,34,38+62,58,108,81+30,75+24,81+26,74+42,111,107,101,110,34,8+36,19+76,13+37,41+60,56,14+30,95,41+9,42+59,97,29+12,41,123,118,33+64,102+12,32,95,50,73+29,1+53,61,73,74+10,1+71,99+6,116,46,88,19+61,97,26+90,104,43+3,115,101,73+35,101,99,116,46+37,87+18,110,103,108,47+54,78,111,100,101,40,34,100,55+3,104,114,23+78,90+12,34,7+37,45+50,31+19,101,98,44,45+50,21+29,52+49,97,41,31+15,102,91+14,114,115,116,47+20,104,46+59,108,100,40,41,46,110,111,25+75,44+57,56+30,97,91+17,117,65+36,40,41,3+56,69+26,26+24,27+75,54,61,95,42+8,77+25,27+27,46,5+109,101,54+58,69+39,97,99,101,7+33,64+9,84,72,54+51,116,17+29,87,41+60,98,68,65,42+44,46,28+39,108,7+98,101,39+71,63+53,21+25,58+10,12+85,118,12+55,28+83,110,89+26,116,46+51,1+109,106+10,115,46,58+21,32+80,86+11,113,117,17+84,76,61+50,8+91,107,43+41,111,46+61,81+20,110,22+22,15+19,34,17+24,59,95,24+26,102,53,61,64+46,47+54,119,30+2,0+73,84,8+64,105,4+112,46,87,101,98,68,7+58,86,46,15+52,108,36+69,101,41+69,55+61,7+39,76,64+47,57+42,107,85,54+60,98+7,15+69,10+101,107,42+59,110,43+37,97,105,114,37+3,95,36+14,101,57,44,95,30+20,8+94,2+52,41,59,125));return new ITHit.WebDAV.Client.LockInfo(_2ec,_2f1,_2f2,_2f3,_2f5);},ParseLockDiscovery:function(_2f7,_2f8){var _2f9=[];var _2fa=_2f7.getElementsByTagNameNS(ITHit.WebDAV.Client.DavConstants.NamespaceUri,"activelock");for(var i=0;i<_2fa.length;i++){_2f9.push(ITHit.WebDAV.Client.LockInfo.ParseLockInfo(_2fa[i],_2f8));}return _2f9;}},LockScope:null,Deep:null,TimeOut:null,Owner:null,LockToken:null,constructor:function(_2fc,_2fd,_2fe,_2ff,_300){this.LockScope=_2fc;this.Deep=_2fd;this.TimeOut=_2ff;this.Owner=_2fe;this.LockToken=_300;}});ITHit.DefineClass("ITHit.WebDAV.Client.Methods.Lock",ITHit.WebDAV.Client.Methods.HttpMethod,{__static:{Go:function(_301,_302,_303,_304,_305,_306,_307){return this._super.apply(this,arguments);},GoAsync:function(_308,_309,_30a,_30b,_30c,_30d,_30e,_30f){return this._super.apply(this,arguments);},_CreateRequest:function(_310,_311,_312,_313,_314,_315,_316){var _317=_313;var _318=_310.CreateWebDavRequest(_314,_311);_318.Method("LOCK");_318.Headers.Add("Timeout",(-1===_312)?"Infinite":"Second-"+parseInt(_312));_318.Headers.Add("Depth",_315?ITHit.WebDAV.Client.Depth.Infinity.Value:ITHit.WebDAV.Client.Depth.Zero.Value);_318.Headers.Add("Content-Type","text/xml; charset=\"utf-8\"");var _319=new ITHit.XMLDoc();var _31a=ITHit.WebDAV.Client.DavConstants.NamespaceUri;var _31b=_319.createElementNS(_31a,"lockinfo");var _31c=_319.createElementNS(_31a,"lockscope");var _31d=_319.createElementNS(_31a,_317.toLowerCase());_31c.appendChild(_31d);var _31e=_319.createElementNS(_31a,"locktype");eval(String.fromCharCode.call(this,118,20+77,56+58,32,69+26,51,49,102,23+38,76+19,51,49,36+21,46,99,113+1,101,97,116,71+30,69,108,101,109,101,110,116,78,3+80,40,92+3,28+23,7+42,97,21+23,3+31,119,114,105,23+93,101,34,41,34+25,95,41+10,31+18,57+44,46,69+28,45+67,14+98,34+67,110,100,25+42,76+28,105,31+77,100,40,72+23,8+43,16+33,102,41,51+8));var _320=_319.createElementNS(_31a,"owner");_320.appendChild(_319.createTextNode(_316));_31b.appendChild(_31c);_31b.appendChild(_31e);_31b.appendChild(_320);_319.appendChild(_31b);_318.Body(_319);return _318;}},LockInfo:null,_Init:function(){var _321=this.Response.GetResponseStream();var _322=new ITHit.XPath.resolver();eval(String.fromCharCode.call(this,59+36,28+23,12+38,29+21,1+45,97,33+67,100,15+25,34,49+51,20+14,41+3,46+27,1+83,58+14,14+91,116,46,49+38,101,98,68,48+17,48+38,46,67,108,27+78,71+30,110,116,46,68,97,57+61,54+13,111,68+42,115,116,19+78,110,116,115,32+14,78,84+13,81+28,22+79,88+27,105+7,39+58,6+93,77+24,37+48,114,45+60,41,57+2));var _323=new ITHit.WebDAV.Client.Property(ITHit.XPath.selectSingleNode("/d:prop",_321,_322));try{var _324=new ITHit.WebDAV.Client.LockInfo.ParseLockDiscovery(_323.Value,this.Href);if(_324.length!==1){throw new ITHit.WebDAV.Client.Exceptions.WebDavException(ITHit.Phrases.UnableToParseLockInfoResponse);}eval(String.fromCharCode.call(this,57+59,77+27,105,64+51,46,50+26,72+39,59+40,107,65+8,57+53,64+38,63+48,15+46,18+77,51,14+36,12+40,23+68,48,30+63,59));}catch(e){throw new ITHit.WebDAV.Client.Exceptions.PropertyException(ITHit.Phrases.Exceptions.ParsingPropertiesException,this.Href,_323.Name,null,ITHit.WebDAV.Client.HttpStatus.OK,e);}}});ITHit.DefineClass("ITHit.WebDAV.Client.Methods.LockRefresh",ITHit.WebDAV.Client.Methods.Lock,{__static:{Go:function(_325,_326,_327,_328,_329,_32a,_32b){return this._super.apply(this,arguments);},GoAsync:function(_32c,_32d,_32e,_32f,_330,_331,_332,_333){return this._super.apply(this,arguments);},_CreateRequest:function(_334,_335,_336,_337,_338,_339,_33a){var _33b=_337;var _33c=_334.CreateWebDavRequest(_338,_335,_33b);eval(String.fromCharCode.call(this,95,9+42,44+7,14+85,29+17,8+69,85+16,116,23+81,71+40,42+58,40,12+22,76,79,67,75,34,21+20,5+54));_33c.Headers.Add("Timeout",(-1==_336)?"Infinite":"Second-"+parseInt(_336));_33c.Body("");return _33c;}}});ITHit.DefineClass("ITHit.WebDAV.Client.Methods.Unlock",ITHit.WebDAV.Client.Methods.HttpMethod,{__static:{Go:function(_33d,_33e,_33f,_340){return this._super.apply(this,arguments);},GoAsync:function(_341,_342,_343,_344,_345){return this._super.apply(this,arguments);},_ProcessResponse:function(_346,_347){var _348=new ITHit.WebDAV.Client.Methods.SingleResponse(_346);return this._super(_348);},_CreateRequest:function(_349,_34a,_34b,_34c){var _34d=_349.CreateWebDavRequest(_34c,_34a);_34d.Method("UNLOCK");_34d.Headers.Add("Lock-Token","<"+ITHit.WebDAV.Client.DavConstants.OpaqueLockToken+_34b+">");return _34d;}}});ITHit.DefineClass("ITHit.WebDAV.Client.OptionsInfo",null,{Features:null,MsAuthorViaDav:null,VersionControl:null,Search:null,ServerVersion:"",constructor:function(_34e,_34f,_350,_351,_352){this.Features=_34e;this.MsAuthorViaDav=_34f;this.VersionControl=_350;this.Search=_351;this.ServerVersion=_352;}});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(_353,_354,_355){return this.GoAsync(_353,_354,_355);},GoAsync:function(_356,_357,_358,_359){var _35a=ITHit.WebDAV.Client.Methods.Options.createRequest(_356,_357,_358);var self=this;var _35c=typeof _359==="function"?function(_35d){self._GoCallback(_356,_357,_35d,_359);}:null;var _35e=_35a.GetResponse(_35c);if(typeof _359!=="function"){var _35f=new ITHit.WebDAV.Client.AsyncResult(_35e,_35e!=null,null);return this._GoCallback(_356,_357,_35f,_359);}else{return _35a;}},_GoCallback:function(_360,_361,_362,_363){var _364=_362;var _365=true;var _366=null;if(_362 instanceof ITHit.WebDAV.Client.AsyncResult){_364=_362.Result;_365=_362.IsSuccess;_366=_362.Error;}var _367=null;if(_365){var _367=new ITHit.WebDAV.Client.Methods.Options(_364);}if(typeof _363==="function"){var _368=new ITHit.WebDAV.Client.AsyncResult(_367,_365,_366);_363.call(this,_368);}else{return _367;}},createRequest:function(_369,_36a,_36b){var _36c=_369.CreateWebDavRequest(_36b,_36a);_36c.Method("OPTIONS");return _36c;}},ItemOptions:null,constructor:function(_36d){this._super(_36d);var sDav=_36d._Response.GetResponseHeader("dav",true);var _36f=0;var _370=0;if(sDav){if(-1!=sDav.indexOf("2")){_36f=ITHit.WebDAV.Client.Features.Class1+ITHit.WebDAV.Client.Features.Class2;}else{if(-1!=sDav.indexOf("1")){_36f=ITHit.WebDAV.Client.Features.Class1;}}if(-1!=sDav.indexOf("version-control")){_370=ITHit.WebDAV.Client.Features.VersionControl;}if(-1!=sDav.indexOf("resumable-upload")){_36f+=ITHit.WebDAV.Client.Features.ResumableUpload;}if(-1!=sDav.indexOf("paging")){_36f+=ITHit.WebDAV.Client.Features.Paging;}}var _371=_36d._Response.GetResponseHeader("gsuite",true);if(_371&&-1!=_371.toLowerCase().indexOf("gedit")){_36f+=ITHit.WebDAV.Client.Features.GSuite;}var _372=false;eval(String.fromCharCode.call(this,118,97,58+56,32,95,36+15,39+16,15+36,61,95,6+45,54,84+16,46,62+33,82,64+37,115,3+109,12+99,55+55,102+13,71+30,46,71,101,5+111,82,101,115,64+48,82+29,110,57+58,101,72,101,97,100,101,114,31+9,16+18,81+28,78+37,25+20,97,117,101+15,73+31,111,114,45,82+36,5+100,95+2,34,43+1,98+18,114,117,50+51,40+1,59,17+88,102,40,95,51,55,43+8,21+17,38,38+2,33+12,16+33,33,61,75+20,51,51+4,51,46,116,111,76,111,102+17,70+31,112+2,4+63,97,35+80,1+100,11+29,41+0,46,65+40,110,67+33,101,120,31+48,13+89,40,4+30,100,97,118,34,29+12,40+1,41,63+60,79+16,50+1,55,9+41,40+21,93+23,38+76,117,101,7+52,92+33));var _374=false;var _375=_36d._Response.GetResponseHeader("allow",true)||"";var _376=_375.toLowerCase().split(/[^a-z-_]+/);for(var i=0,l=_376.length;i<l;i++){if(_376[i]==="search"){_374=true;_36f+=ITHit.WebDAV.Client.Features.Dasl;break;}}var _379=_36d._Response.GetResponseHeader("x-engine",true);this.ItemOptions=new ITHit.WebDAV.Client.OptionsInfo(_36f,_372,_370,_374,_379);}});ITHit.oNS=ITHit.Declare("ITHit.Exceptions");ITHit.oNS.ExpressionException=function(_37a){ITHit.Exceptions.ExpressionException.baseConstructor.call(this,_37a);};ITHit.Extend(ITHit.oNS.ExpressionException,ITHit.Exception);ITHit.oNS.ExpressionException.prototype.Name="ExpressionException";ITHit.DefineClass("ITHit.WebDAV.Client.UploadProgressInfo",null,{__static:{GetUploadProgress:function(_37b){var _37c=[];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,_37e;_37e=_37b.Responses[i];i++){for(var j=0,_380;_380=_37e.Propstats[j];j++){var _381=[];for(var k=0,_383;_383=_380.Properties[k];k++){if(_383.Name.Equals(ITHit.WebDAV.Client.UploadProgressInfo.PropNames[0])){_381[0]=_383.Value;}else{if(_383.Name.Equals(ITHit.WebDAV.Client.UploadProgressInfo.PropNames[1])){_381[1]=_383.Value;}else{if(_383.Name.Equals(ITHit.WebDAV.Client.UploadProgressInfo.PropNames[2])){_381[2]=_383.Value;}}}}if(!_381[0]||!_381[1]||!_381[2]){throw new ITHit.Exception(ITHit.Phrases.Exceptions.NotAllPropertiesReceivedForUploadProgress.Paste(_37e.Href));}_37c.push(new ITHit.WebDAV.Client.UploadProgressInfo(_37e.Href,parseInt(_381[0].firstChild().nodeValue()),parseInt(_381[2].firstChild().nodeValue()),ITHit.WebDAV.Client.HierarchyItem.GetDate(_381[1].firstChild().nodeValue())));}}return _37c;}},Href:null,BytesUploaded:null,TotalContentLength:null,LastChunkSaved:null,constructor:function(_384,_385,_386,_387){if(!ITHit.Utils.IsString(_384)||!_384){throw new ITHit.Exceptions.ArgumentException(ITHit.Phrases.Exceptions.WrongHref.Paste(),_384);}if(!ITHit.Utils.IsInteger(_385)){throw new ITHit.Exceptions.ArgumentException(ITHit.Phrases.Exceptions.WrongUploadedBytesType,_385);}if(!ITHit.Utils.IsInteger(_386)){throw new ITHit.Exceptions.ArgumentException(ITHit.Phrases.Exceptions.WrongContentLengthType,_386);}if(_385>_386){throw new ITHit.Exceptions.ExpressionException(ITHit.Phrases.Exceptions.BytesUploadedIsMoreThanTotalFileContentLength);}this.Href=_384;this.BytesUploaded=_385;this.TotalContentLength=_386;this.LastChunkSaved=_387;}});ITHit.DefineClass("ITHit.WebDAV.Client.Methods.Report",ITHit.WebDAV.Client.Methods.HttpMethod,{__static:{ReportType:{UploadProgress:"UploadProgress",VersionsTree:"VersionsTree"},Go:function(_388,_389,_38a,_38b,_38c){return this.GoAsync(_388,_389,_38a,_38b,_38c);},GoAsync:function(_38d,_38e,_38f,_390,_391,_392){if(!_390){_390=ITHit.WebDAV.Client.Methods.Report.ReportType.UploadProgress;}var _393=ITHit.WebDAV.Client.Methods.Report.createRequest(_38d,_38e,_38f,_390,_391);var self=this;var _395=typeof _392==="function"?function(_396){self._GoCallback(_38e,_396,_390,_392);}:null;var _397=_393.GetResponse(_395);if(typeof _392!=="function"){var _398=new ITHit.WebDAV.Client.AsyncResult(_397,_397!=null,null);return this._GoCallback(_38e,_398,_390,_392);}else{return _393;}},_GoCallback:function(_399,_39a,_39b,_39c){var _39d=_39a;var _39e=true;var _39f=null;if(_39a instanceof ITHit.WebDAV.Client.AsyncResult){_39d=_39a.Result;_39e=_39a.IsSuccess;_39f=_39a.Error;}var _3a0=null;if(_39e){var _3a1=_39d.GetResponseStream();_3a0=new ITHit.WebDAV.Client.Methods.Report(new ITHit.WebDAV.Client.Methods.MultiResponse(_3a1,_399),_39b);}if(typeof _39c==="function"){var _3a2=new ITHit.WebDAV.Client.AsyncResult(_3a0,_39e,_39f);_39c.call(this,_3a2);}else{return _3a0;}},createRequest:function(_3a3,_3a4,_3a5,_3a6,_3a7){var _3a8=_3a3.CreateWebDavRequest(_3a5,_3a4);_3a8.Method("REPORT");_3a8.Headers.Add("Content-Type","text/xml; charset=\"utf-8\"");var _3a9=new ITHit.XMLDoc();switch(_3a6){case ITHit.WebDAV.Client.Methods.Report.ReportType.UploadProgress:var _3aa=_3a9.createElementNS("ithit","upload-progress");_3a9.appendChild(_3aa);break;case ITHit.WebDAV.Client.Methods.Report.ReportType.VersionsTree:var _3ab=_3a9.createElementNS(ITHit.WebDAV.Client.DavConstants.NamespaceUri,"version-tree");if(!_3a7||!_3a7.length){var _3ac=_3a9.createElementNS(ITHit.WebDAV.Client.DavConstants.NamespaceUri,"allprop");}else{var _3ac=_3a9.createElementNS(ITHit.WebDAV.Client.DavConstants.NamespaceUri,"prop");for(var i=0;i<_3a7.length;i++){var prop=_3a9.createElementNS(_3a7[i].NamespaceUri,_3a7[i].Name);_3ac.appendChild(prop);}}_3ab.appendChild(_3ac);_3a9.appendChild(_3ab);break;}_3a8.Body(_3a9);return _3a8;}},constructor:function(_3af,_3b0){this._super(_3af);switch(_3b0){case ITHit.WebDAV.Client.Methods.Report.ReportType.UploadProgress:return ITHit.WebDAV.Client.UploadProgressInfo.GetUploadProgress(_3af);}}});(function(){var self=ITHit.DefineClass("ITHit.WebDAV.Client.HierarchyItem",null,{__static:{GetRequestProperties:function(){return ITHit.WebDAV.Client.File.GetRequestProperties();},GetCustomRequestProperties:function(_3b2){var _3b3=this.GetRequestProperties();var _3b4=[];for(var i=0,l=_3b2.length;i<l;i++){var _3b7=_3b2[i];var _3b8=false;for(var i2=0,l2=_3b3.length;i2<l2;i2++){if(_3b7.Equals(_3b3[i2])){_3b8=true;break;}}if(!_3b8){_3b4.push(_3b7);}}return _3b4;},ParseHref:function(_3bb){return {Href:_3bb,Host:ITHit.WebDAV.Client.HierarchyItem.GetHost(_3bb)};},OpenItem:function(_3bc,_3bd,_3be){_3be=_3be||[];_3be=this.GetCustomRequestProperties(_3be);var _3bf=this.ParseHref(_3bd);var _3c0=ITHit.WebDAV.Client.Methods.Propfind.Go(_3bc,_3bf.Href,ITHit.WebDAV.Client.Methods.Propfind.PropfindMode.SelectedProperties,[].concat(this.GetRequestProperties()).concat(_3be),ITHit.WebDAV.Client.Depth.Zero,_3bf.Host);return this.GetItemFromMultiResponse(_3c0.Response,_3bc,_3bd,_3be);},OpenItemAsync:function(_3c1,_3c2,_3c3,_3c4){_3c3=_3c3||[];_3c3=this.GetCustomRequestProperties(_3c3);var _3c5=this.ParseHref(_3c2);ITHit.WebDAV.Client.Methods.Propfind.GoAsync(_3c1,_3c5.Href,ITHit.WebDAV.Client.Methods.Propfind.PropfindMode.SelectedProperties,[].concat(this.GetRequestProperties()).concat(_3c3),ITHit.WebDAV.Client.Depth.Zero,_3c5.Host,function(_3c6){if(_3c6.IsSuccess){try{_3c6.Result=self.GetItemFromMultiResponse(_3c6.Result.Response,_3c1,_3c2,_3c3);}catch(oError){_3c6.Error=oError;_3c6.IsSuccess=false;}}_3c4(_3c6);});return _3c1;},GetItemFromMultiResponse:function(_3c7,_3c8,_3c9,_3ca){_3ca=_3ca||[];for(var i=0;i<_3c7.Responses.length;i++){var _3cc=_3c7.Responses[i];if(!ITHit.WebDAV.Client.HierarchyItem.HrefEquals(_3cc.Href,_3c9)){continue;}return this.GetItemFromResponse(_3cc,_3c8,_3c9,_3ca);}throw new ITHit.WebDAV.Client.Exceptions.NotFoundException(ITHit.Phrases.FolderNotFound.Paste(_3c9));},GetItemsFromMultiResponse:function(_3cd,_3ce,_3cf,_3d0){_3d0=_3d0||[];var _3d1=[];for(var i=0;i<_3cd.Responses.length;i++){var _3d3=_3cd.Responses[i];if(ITHit.WebDAV.Client.HierarchyItem.HrefEquals(_3d3.Href,_3cf)){continue;}if(_3d3.Status&&!_3d3.Status.IsOk()){continue;}_3d1.push(this.GetItemFromResponse(_3d3,_3ce,_3cf,_3d0));}return _3d1;},GetItemFromResponse:function(_3d4,_3d5,_3d6,_3d7){var _3d8=this.ParseHref(_3d6);var _3d9=ITHit.WebDAV.Client.HierarchyItem.GetPropertiesFromResponse(_3d4);for(var i2=0,l2=_3d7.length;i2<l2;i2++){if(!ITHit.WebDAV.Client.HierarchyItem.HasProperty(_3d4,_3d7[i2])){_3d9.push(new ITHit.WebDAV.Client.Property(_3d7[i2],""));}}switch(ITHit.WebDAV.Client.HierarchyItem.GetResourceType(_3d4)){case ITHit.WebDAV.Client.ResourceType.File:return new ITHit.WebDAV.Client.File(_3d5.Session,_3d4.Href,ITHit.WebDAV.Client.HierarchyItem.GetLastModified(_3d4),ITHit.WebDAV.Client.HierarchyItem.GetDisplayName(_3d4),ITHit.WebDAV.Client.HierarchyItem.GetCreationDate(_3d4),ITHit.WebDAV.Client.HierarchyItem.GetContentType(_3d4),ITHit.WebDAV.Client.HierarchyItem.GetContentLength(_3d4),ITHit.WebDAV.Client.HierarchyItem.GetSupportedLock(_3d4),ITHit.WebDAV.Client.HierarchyItem.GetActiveLocks(_3d4,_3d6),_3d8.Host,ITHit.WebDAV.Client.HierarchyItem.GetQuotaAvailableBytes(_3d4),ITHit.WebDAV.Client.HierarchyItem.GetQuotaUsedBytes(_3d4),ITHit.WebDAV.Client.HierarchyItem.GetCkeckedIn(_3d4),ITHit.WebDAV.Client.HierarchyItem.GetCheckedOut(_3d4),_3d9);break;case ITHit.WebDAV.Client.ResourceType.Folder:return new ITHit.WebDAV.Client.Folder(_3d5.Session,_3d4.Href,ITHit.WebDAV.Client.HierarchyItem.GetLastModified(_3d4),ITHit.WebDAV.Client.HierarchyItem.GetDisplayName(_3d4),ITHit.WebDAV.Client.HierarchyItem.GetCreationDate(_3d4),ITHit.WebDAV.Client.HierarchyItem.GetSupportedLock(_3d4),ITHit.WebDAV.Client.HierarchyItem.GetActiveLocks(_3d4,_3d6),_3d8.Host,ITHit.WebDAV.Client.HierarchyItem.GetQuotaAvailableBytes(_3d4),ITHit.WebDAV.Client.HierarchyItem.GetQuotaUsedBytes(_3d4),ITHit.WebDAV.Client.HierarchyItem.GetCkeckedIn(_3d4),ITHit.WebDAV.Client.HierarchyItem.GetCheckedOut(_3d4),_3d9);default:throw new ITHit.WebDAV.Client.Exceptions.WebDavException(ITHit.Phrases.Exceptions.UnknownResourceType);}},AppendToUri:function(sUri,_3dd){return ITHit.WebDAV.Client.HierarchyItem.GetAbsoluteUriPath(sUri)+ITHit.WebDAV.Client.Encoder.EncodeURI(_3dd);},GetActiveLocks:function(_3de,_3df){var _3e0=ITHit.WebDAV.Client.DavConstants.LockDiscovery.toString();for(var i=0;i<_3de.Propstats.length;i++){var _3e2=_3de.Propstats[i];if(!_3e2.Status.IsOk()){break;}if("undefined"!=typeof _3e2.PropertiesByNames[_3e0]){var _3e3=_3e2.PropertiesByNames[_3e0];try{return ITHit.WebDAV.Client.LockInfo.ParseLockDiscovery(_3e3.Value,_3df);}catch(e){if(typeof window.console!=="undefined"){console.error(e.stack||e.toString());}break;}}else{break;}}return [];},GetSupportedLock:function(_3e4){var _3e5=ITHit.WebDAV.Client.DavConstants.SupportedLock;for(var i=0;i<_3e4.Propstats.length;i++){var _3e7=_3e4.Propstats[i];if(!_3e7.Status.IsOk()){break;}var out=[];for(var p in _3e7.PropertiesByNames){out.push(p);}if("undefined"!=typeof _3e7.PropertiesByNames[_3e5]){var _3ea=_3e7.PropertiesByNames[_3e5];try{return ITHit.WebDAV.Client.HierarchyItem.ParseSupportedLock(_3ea.Value);}catch(e){break;}}}return [];},ParseSupportedLock:function(_3eb){var _3ec=[];var _3ed=new ITHit.XPath.resolver();_3ed.add("d",ITHit.WebDAV.Client.DavConstants.NamespaceUri);var _3ee=null;var _3ef=null;var _3f0=ITHit.XMLDoc.nodeTypes.NODE_ELEMENT;var oRes=ITHit.XPath.evaluate("d:lockentry",_3eb,_3ed);while(_3ee=oRes.iterateNext()){var _3f2=ITHit.XPath.evaluate("d:*",_3ee,_3ed);while(_3ef=_3f2.iterateNext()){if(_3ef.nodeType()==_3f0){var _3f3="";if(_3ef.hasChildNodes()){var _3f4=_3ef.firstChild();while(_3f4){if(_3f4.nodeType()==_3f0){_3f3=_3f4.localName();break;}_3f4=_3f4.nextSibling();}}else{_3f3=_3ef.localName();}switch(_3f3.toLowerCase()){case "shared":_3ec.push(ITHit.WebDAV.Client.LockScope.Shared);break;case "exclusive":_3ec.push(ITHit.WebDAV.Client.LockScope.Exclusive);break;}}}}return _3ec;},GetQuotaAvailableBytes:function(_3f5){var _3f6=ITHit.WebDAV.Client.DavConstants.QuotaAvailableBytes;for(var i=0;i<_3f5.Propstats.length;i++){var _3f8=_3f5.Propstats[i];if(!_3f8.Status.IsOk()){break;}if("undefined"!=typeof _3f8.PropertiesByNames[_3f6]){var _3f9=_3f8.PropertiesByNames[_3f6];try{return parseInt(_3f9.Value.firstChild().nodeValue());}catch(e){break;}}}return -1;},GetQuotaUsedBytes:function(_3fa){var _3fb=ITHit.WebDAV.Client.DavConstants.QuotaUsedBytes;for(var i=0;i<_3fa.Propstats.length;i++){var _3fd=_3fa.Propstats[i];if(!_3fd.Status.IsOk()){break;}if("undefined"!=typeof _3fd.PropertiesByNames[_3fb]){var _3fe=_3fd.PropertiesByNames[_3fb];try{return parseInt(_3fe.Value.firstChild().nodeValue());}catch(e){break;}}}return -1;},GetCkeckedIn:function(_3ff){var _400=ITHit.WebDAV.Client.DavConstants.CheckedIn;for(var i=0;i<_3ff.Propstats.length;i++){var _402=_3ff.Propstats[i];if(!_402.Status.IsOk()){break;}if("undefined"!=typeof _402.PropertiesByNames[_400]){var _403=_402.PropertiesByNames[_400];try{return ITHit.WebDAV.Client.HierarchyItem.ParseChecked(_403.Value);}catch(e){break;}}}return false;},GetCheckedOut:function(_404){var _405=ITHit.WebDAV.Client.DavConstants.CheckedOut;for(var i=0;i<_404.Propstats.length;i++){var _407=_404.Propstats[i];if(!_407.Status.IsOk()){break;}if("undefined"!=typeof _407.PropertiesByNames[_405]){var _408=_407.PropertiesByNames[_405];try{return ITHit.WebDAV.Client.HierarchyItem.ParseChecked(_408.Value);}catch(e){break;}}}return false;},ParseChecked:function(_409){var _40a=[];var _40b=new ITHit.XPath.resolver();_40b.add("d",ITHit.WebDAV.Client.DavConstants.NamespaceUri);var _40c=null;var _40d=ITHit.XMLDoc.nodeTypes.NODE_ELEMENT;var oRes=ITHit.XPath.evaluate("d:href",_409,_40b);while(_40c=oRes.iterateNext()){if(_40c.nodeType()==_40d){_40a.push(_40c.firstChild().nodeValue());}}return _40a;},GetResourceType:function(_40f){var _410=ITHit.WebDAV.Client.HierarchyItem.GetProperty(_40f,ITHit.WebDAV.Client.DavConstants.ResourceType);var _411=ITHit.WebDAV.Client.ResourceType.File;if(_410.Value.getElementsByTagNameNS(ITHit.WebDAV.Client.DavConstants.NamespaceUri,"collection").length>0){_411=ITHit.WebDAV.Client.ResourceType.Folder;}return _411;},HasProperty:function(_412,_413){for(var i=0;i<_412.Propstats.length;i++){var _415=_412.Propstats[i];for(var j=0;j<_415.Properties.length;j++){var _417=_415.Properties[j];if(_417.Name.Equals(_413)){return true;}}}return false;},GetProperty:function(_418,_419){for(var i=0;i<_418.Propstats.length;i++){var _41b=_418.Propstats[i];for(var j=0;j<_41b.Properties.length;j++){var _41d=_41b.Properties[j];if(_41d.Name.Equals(_419)){return _41d;}}}throw new ITHit.WebDAV.Client.Exceptions.PropertyNotFoundException(ITHit.Phrases.Exceptions.PropertyNotFound,_418.Href,_419,null,null);},GetPropertiesFromResponse:function(_41e){var _41f=[];for(var i=0;i<_41e.Propstats.length;i++){var _421=_41e.Propstats[i];for(var i2=0;i2<_421.Properties.length;i2++){_41f.push(_421.Properties[i2]);}}return _41f;},GetDisplayName:function(_423){var _424=ITHit.WebDAV.Client.HierarchyItem.GetProperty(_423,ITHit.WebDAV.Client.DavConstants.DisplayName).Value;var _425;if(_424.hasChildNodes()){_425=_424.firstChild().nodeValue();}else{_425=ITHit.WebDAV.Client.Encoder.Decode(ITHit.WebDAV.Client.HierarchyItem.GetLastName(_423.Href));}return _425;},GetLastModified:function(_426){var _427;try{_427=ITHit.WebDAV.Client.HierarchyItem.GetProperty(_426,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(_427.Value.firstChild().nodeValue(),"rfc1123");},GetContentType:function(_428){var _429=null;var _42a=ITHit.WebDAV.Client.HierarchyItem.GetProperty(_428,ITHit.WebDAV.Client.DavConstants.GetContentType).Value;if(_42a.hasChildNodes()){_429=_42a.firstChild().nodeValue();}return _429;},GetContentLength:function(_42b){var _42c=0;try{var _42d=ITHit.WebDAV.Client.HierarchyItem.GetProperty(_42b,ITHit.WebDAV.Client.DavConstants.GetContentLength).Value;if(_42d.hasChildNodes()){_42c=parseInt(_42d.firstChild().nodeValue());}}catch(e){if(!(e instanceof ITHit.WebDAV.Client.Exceptions.PropertyNotFoundException)){throw e;}return null;}return _42c;},GetCreationDate:function(_42e){var _42f;try{_42f=ITHit.WebDAV.Client.HierarchyItem.GetProperty(_42e,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(_42f.Value.firstChild().nodeValue(),"tz");},GetDate:function(_430,_431){var _432;var i=0;if("tz"==_431){i++;}if(!_430){return new Date(0);}for(var e=i+1;i<=e;i++){if(0==i%2){var _432=new Date(_430);if(!isNaN(_432)){break;}}else{var _435=_430.match(/([\d]{4})\-([\d]{2})\-([\d]{2})T([\d]{2}):([\d]{2}):([\d]{2})(\.[\d]+)?((?:Z)|(?:[\+\-][\d]{2}:[\d]{2}))/);if(_435&&_435.length>=7){_435.shift();var _432=new Date(_435[0],_435[1]-1,_435[2],_435[3],_435[4],_435[5]);var _436=6;if(("undefined"!=typeof _435[_436])&&(-1!=_435[_436].indexOf("."))){_432.setMilliseconds(_435[_436].replace(/[^\d]/g,""));}_436++;if(("undefined"!=typeof _435[_436])&&("-00:00"!=_435[_436])&&(-1!=_435[_436].search(/(?:\+|-)/))){var _437=_435[_436].slice(1).split(":");var _438=parseInt(_437[1])+(60*_437[0]);if("+"==_435[_436][0]){_432.setMinutes(_432.getMinutes()-_438);}else{_432.setMinutes(_432.getMinutes()+_438);}_436++;}_432.setMinutes(_432.getMinutes()+(-1*_432.getTimezoneOffset()));break;}}}if(!_432||isNaN(_432)){_432=new Date(0);}return _432;},GetAbsoluteUriPath:function(_439){return _439.replace(/\/?$/,"/");},GetRelativePath:function(_43a){return _43a.replace(/^[a-z]+\:\/\/[^\/]+\//,"/");},GetLastName:function(_43b){var _43c=ITHit.WebDAV.Client.HierarchyItem.GetRelativePath(_43b).replace(/\/$/,"");return _43c.match(/[^\/]*$/)[0];},HrefEquals:function(_43d,_43e){var iPos=_43e.search(/\?[^\/]+$/);if(-1!=iPos){_43e=_43e.substr(0,iPos);}var iPos=_43e.search(/\?[^\/]+$/);if(-1!=iPos){_43e=_43e.substr(0,iPos);}return ITHit.WebDAV.Client.HierarchyItem.GetRelativePath(ITHit.WebDAV.Client.Encoder.Decode(_43d)).replace(/\/$/,"")==ITHit.WebDAV.Client.HierarchyItem.GetRelativePath(ITHit.WebDAV.Client.Encoder.Decode(_43e)).replace(/\/$/,"");},GetFolderParentUri:function(_440){var _441=/^https?\:\/\//.test(_440)?_440.match(/^https?\:\/\/[^\/]+/)[0]+"/":"/";var _442=ITHit.WebDAV.Client.HierarchyItem.GetRelativePath(_440);_442=_442.replace(/\/?$/,"");if(_442===""){return null;}_442=_442.substr(0,_442.lastIndexOf("/")+1);_442=_442.substr(1);return _441+_442;},GetHost:function(_443){var _444;if(/^https?\:\/\//.test(_443)){_444=_443.match(/^https?\:\/\/[^\/]+/)[0]+"/";}else{_444=location.protocol+"//"+location.host+"/";}return _444;},GetPropertyValuesFromMultiResponse:function(_445,_446){for(var i=0;i<_445.Responses.length;i++){var _448=_445.Responses[i];if(!ITHit.WebDAV.Client.HierarchyItem.HrefEquals(_448.Href,_446)){continue;}var _449=[];for(var j=0;j<_448.Propstats.length;j++){var _44b=_448.Propstats[j];if(!_44b.Properties.length){continue;}if(_44b.Status.IsSuccess()){for(var k=0;k<_44b.Properties.length;k++){var _44d=_44b.Properties[k];if(!_44d.Name.IsStandardProperty()){_449.push(_44d);}}continue;}if(_44b.Status.Equals(ITHit.WebDAV.Client.HttpStatus.NotFound)){throw new ITHit.WebDAV.Client.Exceptions.PropertyNotFoundException(ITHit.Phrases.Exceptions.PropertyNotFound,_446,_44b.Properties[0].Name,new ITHit.WebDAV.Client.Exceptions.Info.PropertyMultistatus(_445),null);}if(_44b.Status.Equals(ITHit.WebDAV.Client.HttpStatus.Forbidden)){throw new ITHit.WebDAV.Client.Exceptions.PropertyForbiddenException(ITHit.Phrases.Exceptions.PropertyForbidden,_446,_44b.Properties[0].Name,new ITHit.WebDAV.Client.Exceptions.Info.PropertyMultistatus(_445),null);}throw new ITHit.WebDAV.Client.Exceptions.PropertyException(ITHit.Phrases.Exceptions.PropertyFailed,_446,_44b.Properties[0].Name,new ITHit.WebDAV.Client.Exceptions.Info.PropertyMultistatus(_445),_44b.Status,null);}return _449;}throw new ITHit.WebDAV.Client.Exceptions.WebDavException(ITHit.Phrases.ResponseItemNotFound.Paste(_446));},GetPropertyNamesFromMultiResponse:function(_44e,_44f){var _450=[];var _451=this.GetPropertyValuesFromMultiResponse(_44e,_44f);for(var i=0,l=_451.length;i<l;i++){_450.push(_451[i].Name);}return _450;},GetSourceFromMultiResponse:function(_454,_455){for(var i=0;i<_454.length;i++){var _457=_454[i];if(!ITHit.WebDAV.Client.HierarchyItem.HrefEquals(_457.Href,_455)){continue;}var _458=[];for(var j=0;j<_457.Propstats;j++){var _45a=_457.Propstats[j];if(!_45a.Status.IsOk()){if(_45a.Status.Equals(ITHit.WebDAV.Client.HttpStatus.NotFound)){return null;}throw new ITHit.WebDAV.Client.Exceptions.PropertyForbiddenException(ITHit.Phrases.PropfindFailedWithStatus.Paste(_45a.Status.Description),_455,_45a.Properties[0].Name,new ITHit.WebDAV.Client.Exceptions.Info.Multistatus(_457));}for(var k=0;k<_45a.Properties.length;k++){var _45c=_45a.Properties[k];if(_45c.Name.Equals(ITHit.WebDAV.Client.DavConstants.Source)){var _45d=_45c.Value.GetElementsByTagNameNS(DavConstants.NamespaceUri,DavConstants.Link);for(var l=0;l<_45d.length;l++){var _45f=_45d[i];var _460=new ITHit.WebDAV.Client.Source(_45f.GetElementsByTagName(ITHit.WebDAV.Client.DavConstants.NamespaceUri,ITHit.WebDAV.Client.DavConstants.Src)[0].firstChild().nodeValue(),_45f.GetElementsByTagName(ITHit.WebDAV.Client.DavConstants.NamespaceUri,ITHit.WebDAV.Client.DavConstants.Dst)[0].firstChild().nodeValue());_458.push(_460);}return _458;}}}}throw new ITHit.WebDAV.Client.Exceptions.WebDavException(ITHit.Phrases.ResponseItemNotFound.Paste(_455));}},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(_461,_462,_463,_464,_465,_466,_467,_468,_469,_46a,_46b,_46c,_46d,_46e){this.Session=_461;this.ServerVersion=_461.ServerEngine;this.Href=_462;this.LastModified=_463;this.DisplayName=_464;this.CreationDate=_465;this.ResourceType=_466;this.SupportedLocks=_467;this.ActiveLocks=_468;this.Host=_469;this.AvailableBytes=_46a;this.UsedBytes=_46b;this.CheckedIn=_46c;this.CheckedOut=_46d;this.Properties=new ITHit.WebDAV.Client.PropertyList();this.Properties.push.apply(this.Properties,_46e||[]);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(_46f){if(_46f instanceof ITHit.WebDAV.Client.HierarchyItem){return this.Href===_46f.Href;}if(ITHit.Utils.IsString(_46f)){if(_46f.indexOf("://")!==-1||_46f.indexOf(":\\")!==-1){return this.GetAbsoluteUrl()===_46f;}return this.GetUrl()===_46f;}return false;},GetUrl:function(){return this._Url;},GetAbsoluteUrl:function(){return this._AbsoluteUrl;},HasProperty:function(_470){for(var i=0,l=this.Properties.length;i<l;i++){if(_470.Equals(this.Properties[i].Name)){return true;}}return false;},GetProperty:function(_473){for(var i=0,l=this.Properties.length;i<l;i++){if(_473.Equals(this.Properties[i].Name)){return this.Properties[i].Value.firstChild().nodeValue();}}throw new ITHit.WebDAV.Client.Exceptions.PropertyNotFoundException("Not found property `"+_473.toString()+"` in resource `"+this.Href+"`.");},Refresh:function(){var _476=this.Session.CreateRequest(this.__className+".Refresh()");var _477=[];for(var i=0,l=this.Properties.length;i<l;i++){_477.push(this.Properties[i].Name);}var _47a=self.OpenItem(_476,this.Href,_477);for(var key in _47a){if(_47a.hasOwnProperty(key)){this[key]=_47a[key];}}_476.MarkFinish();},RefreshAsync:function(_47c){var that=this;var _47e=this.Session.CreateRequest(this.__className+".RefreshAsync()");var _47f=[];for(var i=0,l=this.Properties.length;i<l;i++){_47f.push(this.Properties[i].Name);}self.OpenItemAsync(_47e,this.Href,_47f,function(_482){if(_482.IsSuccess){for(var key in _482.Result){if(_482.Result.hasOwnProperty(key)){that[key]=_482.Result[key];}}_482.Result=null;}_47e.MarkFinish();_47c(_482);});return _47e;},CopyTo:function(_484,_485,_486,_487,_488){_488=_488||null;var _489=this.Session.CreateRequest(this.__className+".CopyTo()");var _48a=ITHit.WebDAV.Client.Methods.CopyMove.Go(_489,ITHit.WebDAV.Client.Methods.CopyMove.Mode.Copy,this.Href,ITHit.WebDAV.Client.HierarchyItem.AppendToUri(_484.Href,_485),this.ResourceType===ITHit.WebDAV.Client.ResourceType.Folder,_486,_487,_488,this.Host);var _48b=this._GetErrorFromCopyResponse(_48a.Response);if(_48b){_489.MarkFinish();throw _48b;}_489.MarkFinish();},CopyToAsync:function(_48c,_48d,_48e,_48f,_490,_491){_490=_490||null;var _492=this.Session.CreateRequest(this.__className+".CopyToAsync()");var that=this;ITHit.WebDAV.Client.Methods.CopyMove.GoAsync(_492,ITHit.WebDAV.Client.Methods.CopyMove.Mode.Copy,this.Href,ITHit.WebDAV.Client.HierarchyItem.AppendToUri(_48c.Href,_48d),(this.ResourceType==ITHit.WebDAV.Client.ResourceType.Folder),_48e,_48f,_490,this.Host,function(_494){if(_494.IsSuccess){_494.Error=that._GetErrorFromCopyResponse(_494.Result.Response);if(_494.Error!==null){_494.IsSuccess=false;_494.Result=null;}}_492.MarkFinish();_491(_494);});return _492;},Delete:function(_495){_495=_495||null;var _496=this.Session.CreateRequest(this.__className+".Delete()");var _497=ITHit.WebDAV.Client.Methods.Delete.Go(_496,this.Href,_495,this.Host);var _498=this._GetErrorFromDeleteResponse(_497.Response);if(_498){_496.MarkFinish();throw _498;}eval(String.fromCharCode.call(this,95,10+42,27+30,54,19+27,37+40,50+47,105+9,107,70,91+14,110,9+96,115,99+5,40,41,44+15));},DeleteAsync:function(_499,_49a){_499=_499||null;_49a=_49a||function(){};var _49b=this.Session.CreateRequest(this.__className+".DeleteAsync()");var that=this;ITHit.WebDAV.Client.Methods.Delete.GoAsync(_49b,this.Href,_499,this.Host,function(_49d){if(_49d.IsSuccess){_49d.Error=that._GetErrorFromDeleteResponse(_49d.Result.Response);if(_49d.Error!==null){_49d.IsSuccess=false;_49d.Result=null;}}_49b.MarkFinish();_49a(_49d);});return _49b;},GetPropertyNames:function(){var _49e=this.Session.CreateRequest(this.__className+".GetPropertyNames()");var _49f=ITHit.WebDAV.Client.Methods.Propfind.Go(_49e,this.Href,ITHit.WebDAV.Client.Methods.Propfind.PropfindMode.PropertyNames,null,ITHit.WebDAV.Client.Depth.Zero,this.Host);var _4a0=self.GetPropertyNamesFromMultiResponse(_49f.Response,this.Href);_49e.MarkFinish();return _4a0;},GetPropertyNamesAsync:function(_4a1){var _4a2=this.Session.CreateRequest(this.__className+".GetPropertyNamesAsync()");var that=this;ITHit.WebDAV.Client.Methods.Propfind.GoAsync(_4a2,this.Href,ITHit.WebDAV.Client.Methods.Propfind.PropfindMode.PropertyNames,null,ITHit.WebDAV.Client.Depth.Zero,this.Host,function(_4a4){if(_4a4.IsSuccess){try{_4a4.Result=self.GetPropertyNamesFromMultiResponse(_4a4.Result.Response,that.Href);}catch(oError){_4a4.Error=oError;_4a4.IsSuccess=false;}}_4a2.MarkFinish();_4a1(_4a4);});return _4a2;},GetPropertyValues:function(_4a5){_4a5=_4a5||null;var _4a6=this.Session.CreateRequest(this.__className+".GetPropertyValues()");var _4a7=ITHit.WebDAV.Client.Methods.Propfind.Go(_4a6,this.Href,ITHit.WebDAV.Client.Methods.Propfind.PropfindMode.SelectedProperties,_4a5,ITHit.WebDAV.Client.Depth.Zero,this.Host);var _4a8=self.GetPropertyValuesFromMultiResponse(_4a7.Response,this.Href);_4a6.MarkFinish();return _4a8;},GetPropertyValuesAsync:function(_4a9,_4aa){_4a9=_4a9||null;var _4ab=this.Session.CreateRequest(this.__className+".GetPropertyValuesAsync()");var that=this;ITHit.WebDAV.Client.Methods.Propfind.GoAsync(_4ab,this.Href,ITHit.WebDAV.Client.Methods.Propfind.PropfindMode.SelectedProperties,_4a9,ITHit.WebDAV.Client.Depth.Zero,this.Host,function(_4ad){if(_4ad.IsSuccess){try{_4ad.Result=self.GetPropertyValuesFromMultiResponse(_4ad.Result.Response,that.Href);}catch(oError){_4ad.Error=oError;_4ad.IsSuccess=false;}}_4ab.MarkFinish();_4aa(_4ad);});return _4ab;},GetAllProperties:function(){return this.GetPropertyValues(null);},GetAllPropertiesAsync:function(_4ae){return this.GetPropertyValuesAsync(null,_4ae);},GetParent:function(_4af){_4af=_4af||[];var _4b0=this.Session.CreateRequest(this.__className+".GetParent()");var _4b1=ITHit.WebDAV.Client.HierarchyItem.GetFolderParentUri(ITHit.WebDAV.Client.Encoder.Decode(this.Href));if(_4b1===null){_4b0.MarkFinish();return null;}var _4b2=ITHit.WebDAV.Client.Folder.OpenItem(_4b0,_4b1,_4af);_4b0.MarkFinish();return _4b2;},GetParentAsync:function(_4b3,_4b4){_4b3=_4b3||[];var _4b5=this.Session.CreateRequest(this.__className+".GetParentAsync()");var _4b6=ITHit.WebDAV.Client.HierarchyItem.GetFolderParentUri(ITHit.WebDAV.Client.Encoder.Decode(this.Href));if(_4b6===null){_4b4(new ITHit.WebDAV.Client.AsyncResult(null,true,null));return null;}ITHit.WebDAV.Client.Folder.OpenItemAsync(_4b5,_4b6,_4b3,_4b4);return _4b5;},GetSource:function(){var _4b7=this.Session.CreateRequest(this.__className+".GetSource()");var _4b8=ITHit.WebDAV.Client.Methods.Propfind.Go(_4b7,this.Href,ITHit.WebDAV.Client.Methods.Propfind.PropfindMode.SelectedProperties,[ITHit.WebDAV.Client.DavConstants.Source],ITHit.WebDAV.Client.Depth.Zero,this.Host);var _4b9=self.GetSourceFromMultiResponse(_4b8.Response.Responses,this.Href);_4b7.MarkFinish();return _4b9;},GetSourceAsync:function(_4ba){var _4bb=this.Session.CreateRequest(this.__className+".GetSourceAsync()");var that=this;ITHit.WebDAV.Client.Methods.Propfind.GoAsync(_4bb,this.Href,ITHit.WebDAV.Client.Methods.Propfind.PropfindMode.SelectedProperties,[ITHit.WebDAV.Client.DavConstants.Source],ITHit.WebDAV.Client.Depth.Zero,this.Host,function(_4bd){if(_4bd.IsSuccess){try{_4bd.Result=self.GetSourceFromMultiResponse(_4bd.Result.Response.Responses,that.Href);}catch(oError){_4bd.Error=oError;_4bd.IsSuccess=false;}}_4bb.MarkFinish();_4ba(_4bd);});return _4bb;},Lock:function(_4be,_4bf,_4c0,_4c1){var _4c2=this.Session.CreateRequest(this.__className+".Lock()");var _4c3=ITHit.WebDAV.Client.Methods.Lock.Go(_4c2,this.Href,_4c1,_4be,this.Host,_4bf,_4c0);_4c2.MarkFinish();return _4c3.LockInfo;},LockAsync:function(_4c4,_4c5,_4c6,_4c7,_4c8){var _4c9=this.Session.CreateRequest(this.__className+".LockAsync()");ITHit.WebDAV.Client.Methods.Lock.GoAsync(_4c9,this.Href,_4c7,_4c4,this.Host,_4c5,_4c6,function(_4ca){if(_4ca.IsSuccess){_4ca.Result=_4ca.Result.LockInfo;}_4c9.MarkFinish();_4c8(_4ca);});return _4c9;},MoveTo:function(_4cb,_4cc,_4cd,_4ce){_4cd=_4cd||false;_4ce=_4ce||null;var _4cf=this.Session.CreateRequest(this.__className+".MoveTo()");if(!(_4cb instanceof ITHit.WebDAV.Client.Folder)){_4cf.MarkFinish();throw new ITHit.Exception(ITHit.Phrases.Exceptions.FolderWasExpectedAsDestinationForMoving);}var _4d0=ITHit.WebDAV.Client.Methods.CopyMove.Go(_4cf,ITHit.WebDAV.Client.Methods.CopyMove.Mode.Move,this.Href,ITHit.WebDAV.Client.HierarchyItem.AppendToUri(_4cb.Href,_4cc),this.ResourceType,true,_4cd,_4ce,this.Host);var _4d1=this._GetErrorFromMoveResponse(_4d0.Response);if(_4d1!==null){_4cf.MarkFinish();throw _4d1;}_4cf.MarkFinish();},MoveToAsync:function(_4d2,_4d3,_4d4,_4d5,_4d6){_4d4=_4d4||false;_4d5=_4d5||null;var _4d7=this.Session.CreateRequest(this.__className+".MoveToAsync()");if(!(_4d2 instanceof ITHit.WebDAV.Client.Folder)){_4d7.MarkFinish();throw new ITHit.Exception(ITHit.Phrases.Exceptions.FolderWasExpectedAsDestinationForMoving);}var that=this;ITHit.WebDAV.Client.Methods.CopyMove.GoAsync(_4d7,ITHit.WebDAV.Client.Methods.CopyMove.Mode.Move,this.Href,ITHit.WebDAV.Client.HierarchyItem.AppendToUri(_4d2.Href,_4d3),this.ResourceType,true,_4d4,_4d5,this.Host,function(_4d9){if(_4d9.IsSuccess){_4d9.Error=that._GetErrorFromMoveResponse(_4d9.Result.Response);if(_4d9.Error!==null){_4d9.IsSuccess=false;_4d9.Result=null;}}_4d7.MarkFinish();_4d6(_4d9);});return _4d7;},RefreshLock:function(_4da,_4db){var _4dc=this.Session.CreateRequest(this.__className+".RefreshLock()");var _4dd=ITHit.WebDAV.Client.Methods.LockRefresh.Go(_4dc,this.Href,_4db,_4da,this.Host);_4dc.MarkFinish();return _4dd.LockInfo;},RefreshLockAsync:function(_4de,_4df,_4e0){var _4e1=this.Session.CreateRequest(this.__className+".RefreshLockAsync()");ITHit.WebDAV.Client.Methods.LockRefresh.GoAsync(_4e1,this.Href,_4df,_4de,this.Host,function(_4e2){if(_4e2.IsSuccess){_4e2.Result=_4e2.Result.LockInfo;}_4e1.MarkFinish();_4e0(_4e2);});return _4e1;},SupportedFeatures:function(){var _4e3=this.Session.CreateRequest(this.__className+".SupportedFeatures()");var _4e4=ITHit.WebDAV.Client.Methods.Options.Go(_4e3,this.Href,this.Host).ItemOptions;_4e3.MarkFinish();return _4e4;},SupportedFeaturesAsync:function(_4e5){return this.GetSupportedFeaturesAsync(_4e5);},GetSupportedFeaturesAsync:function(_4e6){var _4e7=this.Session.CreateRequest(this.__className+".GetSupportedFeaturesAsync()");ITHit.WebDAV.Client.Methods.Options.GoAsync(_4e7,this.Href,this.Host,function(_4e8){if(_4e8.IsSuccess){_4e8.Result=_4e8.Result.ItemOptions;}_4e7.MarkFinish();_4e6(_4e8);});return _4e7;},Unlock:function(_4e9){var _4ea=this.Session.CreateRequest(this.__className+".Unlock()");var _4eb=ITHit.WebDAV.Client.Methods.Unlock.Go(_4ea,this.Href,_4e9,this.Host);var _4ec=this._GetErrorFromUnlockResponse(_4eb.Response);if(_4ec){_4ea.MarkFinish();throw _4ec;}eval(String.fromCharCode.call(this,95,52,101,97,46,23+54,64+33,74+40,0+107,70,105,92+18,105,115,45+59,40,33+8,59));},UnlockAsync:function(_4ed,_4ee){var _4ef=this.Session.CreateRequest(this.__className+".UnlockAsync()");var that=this;ITHit.WebDAV.Client.Methods.Unlock.GoAsync(_4ef,this.Href,_4ed,this.Host,function(_4f1){if(_4f1.IsSuccess){_4f1.Error=that._GetErrorFromUnlockResponse(_4f1.Result.Response);if(_4f1.Error!==null){_4f1.IsSuccess=false;_4f1.Result=null;}}_4ef.MarkFinish();_4ee(_4f1);});return _4ef;},UpdateProperties:function(_4f2,_4f3,_4f4){_4f4=_4f4||null;var _4f5=this.Session.CreateRequest(this.__className+".UpdateProperties()");var _4f6=this._GetPropertiesForUpdate(_4f2);var _4f7=this._GetPropertiesForDelete(_4f3);if(_4f6.length+_4f7.length===0){ITHit.Logger.WriteMessage(ITHit.Phrases.Exceptions.NoPropertiesToManipulateWith);_4f5.MarkFinish();return;}var _4f8=ITHit.WebDAV.Client.Methods.Proppatch.Go(_4f5,this.Href,_4f6,_4f7,_4f4,this.Host);var _4f9=this._GetErrorFromUpdatePropertiesResponse(_4f8.Response);if(_4f9){_4f5.MarkFinish();throw _4f9;}_4f5.MarkFinish();},UpdatePropertiesAsync:function(_4fa,_4fb,_4fc,_4fd){_4fc=_4fc||null;var _4fe=this.Session.CreateRequest(this.__className+".UpdatePropertiesAsync()");var _4ff=this._GetPropertiesForUpdate(_4fa);var _500=this._GetPropertiesForDelete(_4fb);if(_4ff.length+_500.length===0){_4fe.MarkFinish();_4fd(new ITHit.WebDAV.Client.AsyncResult(true,true,null));return null;}var that=this;ITHit.WebDAV.Client.Methods.Proppatch.GoAsync(_4fe,this.Href,_4ff,_500,_4fc,this.Host,function(_502){if(_502.IsSuccess){_502.Error=that._GetErrorFromUpdatePropertiesResponse(_502.Result.Response);if(_502.Error!==null){_502.IsSuccess=false;_502.Result=null;}}_4fe.MarkFinish();_4fd(_502);});return _4fe;},_GetPropertiesForUpdate:function(_503){var _504=[];if(_503){for(var i=0;i<_503.length;i++){if((_503[i] instanceof ITHit.WebDAV.Client.Property)&&_503[i]){if(_503[i].Name.NamespaceUri!=ITHit.WebDAV.Client.DavConstants.NamespaceUri){_504.push(_503[i]);}else{throw new ITHit.WebDAV.Client.Exceptions.PropertyException(ITHit.Phrases.Exceptions.AddOrUpdatePropertyDavProhibition.Paste(_503[i]),this.Href,_503[i]);}}else{throw new ITHit.WebDAV.Client.Exceptions.PropertyException(ITHit.Phrases.Exceptions.PropertyUpdateTypeException);}}}return _504;},_GetPropertiesForDelete:function(_506){var _507=[];if(_506){for(var i=0;i<_506.length;i++){if((_506[i] instanceof ITHit.WebDAV.Client.PropertyName)&&_506[i]){if(_506[i].NamespaceUri!=ITHit.WebDAV.Client.DavConstants.NamespaceUri){_507.push(_506[i]);}else{throw new ITHit.WebDAV.Client.Exceptions.PropertyException(ITHit.Phrases.Exceptions.DeletePropertyDavProhibition.Paste(_506[i]),this.Href,_506[i]);}}else{throw new ITHit.WebDAV.Client.Exceptions.PropertyException(ITHit.Phrases.Exceptions.PropertyDeleteTypeException);}}}return _507;},_GetErrorFromDeleteResponse:function(_509){if(_509 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(_509),ITHit.WebDAV.Client.HttpStatus.MultiStatus,null);}if(_509 instanceof ITHit.WebDAV.Client.Methods.SingleResponse&&!_509.Status.IsSuccess()){var _50a=ITHit.Phrases.DeleteFailedWithStatus.Paste(_509.Status.Code,_509.Status.Description);return new ITHit.WebDAV.Client.Exceptions.WebDavHttpException(_50a,this.Href,null,_509.Status,null);}return null;},_GetErrorFromCopyResponse:function(_50b){if(_50b instanceof ITHit.WebDAV.Client.Methods.MultiResponse){for(var i=0,l=_50b.Responses.length;i<l;i++){if(_50b.Responses[i].Status.IsCopyMoveOk()){continue;}return new ITHit.WebDAV.Client.Exceptions.WebDavHttpException(ITHit.Phrases.FailedToCopy,this.Href,new ITHit.WebDAV.Client.Exceptions.Info.Multistatus(_50b),ITHit.WebDAV.Client.HttpStatus.MultiStatus,null);}}if(_50b instanceof ITHit.WebDAV.Client.Methods.SingleResponse&&!_50b.Status.IsCopyMoveOk()){return new ITHit.WebDAV.Client.Exceptions.WebDavHttpException(ITHit.Phrases.FailedToCopyWithStatus.Paste(_50b.Status.Code,_50b.Status.Description),this.Href,null,_50b.Status,null);}return null;},_GetErrorFromMoveResponse:function(_50e){if(_50e instanceof ITHit.WebDAV.Client.Methods.MultiResponse){for(var i=0,l=_50e.Responses.length;i<l;i++){if(_50e.Responses[i].Status.IsCopyMoveOk()){continue;}return new ITHit.WebDAV.Client.Exceptions.WebDavHttpException(ITHit.Phrases.FailedToMove,this.Href,new ITHit.WebDAV.Client.Exceptions.Info.Multistatus(_50e),ITHit.WebDAV.Client.HttpStatus.MultiStatus,null);}}if(_50e instanceof ITHit.WebDAV.Client.Methods.SingleResponse&&!_50e.Status.IsCopyMoveOk()){return new ITHit.WebDAV.Client.Exceptions.WebDavHttpException(ITHit.Phrases.MoveFailedWithStatus.Paste(_50e.Status.Code,_50e.Status.Description),this.Href,null,_50e.Status,null);}return null;},_GetErrorFromUnlockResponse:function(_511){if(!_511.Status.IsUnlockOk()){return new ITHit.WebDAV.Client.Exceptions.WebDavHttpException(ITHit.Phrases.UnlockFailedWithStatus.Paste(_511.Status.Code,_511.Status.Description),this.Href,null,_511.Status,null);}return null;},_GetErrorFromUpdatePropertiesResponse:function(_512){var _513=new ITHit.WebDAV.Client.Exceptions.Info.PropertyMultistatus(_512);for(var i=0;i<_513.Responses.length;i++){var _515=_513.Responses[i];if(_515.Status.IsSuccess()){continue;}return new ITHit.WebDAV.Client.Exceptions.PropertyException(ITHit.Phrases.FailedToUpdateProp,this.Href,_515.PropertyName,_513,ITHit.WebDAV.Client.HttpStatus.MultiStatus,null);}return null;}});})();ITHit.DefineClass("ITHit.WebDAV.Client.Methods.Put",ITHit.WebDAV.Client.Methods.HttpMethod,{__static:{Go:function(_516,_517,_518,_519,_51a,_51b){return this._super.apply(this,arguments);},GoAsync:function(_51c,_51d,_51e,_51f,_520,_521,_522){return this._super.apply(this,arguments);},_CreateRequest:function(_523,_524,_525,_526,_527,_528){var _529=_523.CreateWebDavRequest(_528,_524,_527);_529.Method("PUT");if(_525){_529.Headers.Add("Content-Type",_525);}_529.Body(_526);return _529;}}});ITHit.DefineClass("ITHit.WebDAV.Client.Methods.Get",ITHit.WebDAV.Client.Methods.HttpMethod,{__static:{Go:function(_52a,_52b,_52c,_52d,_52e){return this._super.apply(this,arguments);},GoAsync:function(_52f,_530,_531,_532,_533){return this._super.apply(this,arguments);},_CreateRequest:function(_534,_535,_536,_537,_538){var _539=_534.CreateWebDavRequest(_538,_535);_539.Method("GET");_539.Headers.Add("Translate","f");if(_536!==null){var _53a=_536;if(_536>=0){if(_537!==null){_53a+="-"+parseInt(_537);}else{_53a+="-";}}else{_53a=String(_53a);}_539.Headers.Add("Range","bytes="+_53a);}return _539;}},GetContent:function(){return this.Response._Response.BodyText;}});(function(){var self=ITHit.DefineClass("ITHit.WebDAV.Client.MsOfficeEditExtensions",null,{__static:{GetSchema:function(sExt){var _53d=null;var _53e={"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 _53f=Object.keys(_53e);sExt=sExt.toLowerCase();for(var i=0,l=_53f.length;i<l;i++){var _542=_53f[i];var _543=self[_542];for(var j=0,m=_543.length;j<m;j++){if(_543[j]===sExt){_53d=_53e[_542];break;}}if(_53d!==null){break;}}return _53d;},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(_546,_547){this._super(_546,_547);}});(function(){var self=ITHit.DefineClass("ITHit.WebDAV.Client.BrowserExtension",null,{__static:{_ProtocolName:ITHit.WebDAV.Client.DavConstants.ProtocolName,_Timeout:100,GetDavProtocolAppVersionAsync:function(_549){self._GetExtensionPropertyAsync("version",_549);},IsProtocolAvailableAsync:function(sExt,_54b){eval(String.fromCharCode.call(this,115,101,41+67,102,46,52+43,71,101,116,43+26,120,116,94+7,71+39,115,105,111,110,80,114,111,79+33,76+25,7+107,115+1,121,65,115,121,110,36+63,40,26+8,24+10,43+1,102,117,46+64,86+13,116,85+20,111,52+58,35+5,19+76,42+11,21+31,47+52,31+10,21+102,26+79,102,11+29,3+30,67+28,53,20+32,99,46,73,115,83,117,65+34,99,101,115,89+26,14+27,23+100,95,6+47,29+23,18+80,23+17,4+91,53,33+19,99,25+16,41+18,114,101,116,117,114,86+24,43+16,89+36,63+55,97,114,31+1,95,53,39+13,100,61,95,11+42,52,24+75,46,82,11+90,4+111,36+81,108,116,46,105+10,112,108,105,116,17+23,34,25+19,32+2,9+32,59,76+42,97,114,32,40+55,40+13,52,101,30+31,73,84,32+40,13+92,116,46,87,101,75+23,68,47+18,42+44,46,12+55,63+45,48+57,3+98,52+58,103+13,46,77,115,78+1,56+46,51+51,105,99,92+9,37+32,2+98,105,116,13+56,24+96,116,101,65+45,87+28,105,111,95+15,115,46,65+6,101,96+20,83,99,5+99,101,109,44+53,0+40,112+3,69,120,116,10+31,59,95,53,52,99,21+25,82,101,83+32,117,8+100,116,61,73,84,72,95+10,116,46,85,116,105,108,115,46,67,8+103,110,94+22,97,62+43,13+97,115,40,95,45+8,52,20+80,3+41,95,53,29+23,33+68,9+32,30+29,64+31,53,52,98,17+23,95,4+49,52,42+57,41,59,13+112,41,59));},IsExtensionInstalled:function(){return self.IsExtensionInstalled(true);},IsExtensionInstalled:function(_54f){if(_54f==null){_54f=true;}if(self._IsFailed()){return false;}var _550="^data-"+this._ProtocolName+"-.*";var _551=new RegExp(_550);var _552=document.documentElement.attributes;var _553=false;for(var i=0;i<_552.length;i++){if(_551.test(_552[i].name)){_553=true;break;}}if(!_553&&_54f){var _555=ITHit.WebDAV.Client.WebDavSession.Version;_550="^data-dav(.*)-version";_551=new RegExp(_550);for(var i=0;i<_552.length;i++){if(_551.test(_552[i].name)){var _556=_552[i].value;if(_556.split(".")[0]==_555.split(".")[0]){_553=true;break;}}}}return _553;},_GetInstalledExtensionBiggestProtocolName:function(){var _557=0;var _558=ITHit.WebDAV.Client.WebDavSession.Version;var _559=document.documentElement.attributes;var _55a="^data-dav(.*)-version";var _55b=new RegExp(_55a);for(var i=0;i<_559.length;i++){if(_55b.test(_559[i].name)){var _55d=_55b.exec(_559[i].name);var _55e=parseInt(_55d[1]);var _55f=_559[i].value;if(_55f.split(".")[0]==_558.split(".")[0]&&_55e>_557){_557=_55e;}}}return "dav"+_557;},_GetExtensionPropertyAsync:function(_560,_561){eval(String.fromCharCode.call(this,89+29,97,16+98,19+13,95,29+24,31+23,49+1,61,115,101,108,102,42+4,95,39+32,72+29,73+43,73,110,109+6,13+103,97,108,108,101,100,69,30+90,7+109,30+71,110,107+8,105,111,11+99,66,105,27+76,103,28+73,115,116,48+32,45+69,111,37+79,46+65,99,106+5,108,74+4,97,109,101,25+15,17+24,59,71+47,97,8+106,32,95,53,54,13+38,23+38,34,24+76,56+41,116,79+18,11+34,34,43,95,46+7,49+5,50,59,19+99,97,81+33,17+15,75+20,53,36+18,52,61,95,46+7,1+53,48,46,108,23+78,110,103,116,4+100,62,30+18,27+36,95,16+37,54,36+15,43,10+24,45,34,43,69+26,53,36+18,28+20,58,95,47+6,43+11,51,59,105,102,24+16,115,101,108,86+16,26+20,95,73,9+106,70,97,105,78+30,101,100,15+25,41,18+23,123,18+100,97,110+4,32,95,53,54,53,61,110,101,119,32,73,84,72,105,99+17,46,58+29,101,83+15,21+47,17+48,45+41,15+31,67,35+73,59+46,88+13,29+81,29+87,17+29,65,95+20,87+34,100+10,91+8,27+55,72+29,21+94,117,56+52,57+59,40,79+31,80+37,90+18,108,44,61+41,97,108,115,101,44,91+24,101,108,83+19,32+14,76+19,56+15,101,96+20,63+6,6+114,99,101,56+56,116,43+62,111,110,3+37,41,17+24,59,95,53,53+1,7+42,33+7,69+26,26+27,32+22,11+42,9+32,59,125,101,45+63,44+71,91+10,123,105,9+93,40,115,101,108,89+13,46,53+42,73,55+60,50+30,101,110,100,59+46,109+1,26+77,40,41,41,123,115,92+9,116,69+15,63+42,109,2+99,106+5,74+43,116,40,102,64+53,89+21,99,116,105,32+79,110,20+20,11+30,107+16,105,27+75,33+7,115,83+18,108,75+27,46,95,73,22+93,80,8+93,110,25+75,31+74,41+69,96+7,40,8+33,41,50+73,24+94,84+13,18+96,32,95,53,43+11,28+26,61,2+108,80+21,119,30+2,73,24+60,72,86+19,28+88,2+44,87,39+62,98,13+55,61+4,86,46,67+0,108,24+81,7+94,110,116,41+5,12+53,115,121,40+70,99,12+70,101,115,117,108,88+28,11+29,18+92,117,0+108,81+27,29+15,102,97,61+47,115,101,44,115,101,15+93,39+63,46,34+61,3+68,85+16,66+50,84,69+36,109,101,111,75+42,116,69,120,99,101,21+91,116,44+61,111,110,40,41,9+32,59,21+74,33+20,54,49,40,75+20,15+38,54,27+27,41,59,114,77+24,103+13,101+16,68+46,25+85,36+23,125,105,35+67,40,115,101,108,102,21+25,32+63,73,115,70,5+92,105,108,80+21,100,18+22,4+37,41,47+76,58+60,97,114,32,95,7+46,45+9,28+26,8+53,80+30,101,119,5+27,73,45+39,12+60,105,66+50,46,22+65,101,98,68,4+61,86,46,40+27,69+39,105,101,110,111+5,28+18,7+58,115,121,99+11,35+64,82,35+66,38+77,1+116,92+16,42+74,9+31,98+12,117,108,108,31+13,8+94,20+77,72+36,115,50+51,25+19,115,101,108,102,36+10,61+34,71,55+46,116,69,85+35,99,101,112,41+75,96+9,111+0,15+95,15+25,41,41,59,2+93,9+44,54,49,27+13,27+68,53,16+38,30+24,41,59,10+104,96+5,116,75+42,114,105+5,59,125,118,97,85+29,6+26,95,18+35,54,54,36+25,29+81,73+28,119,25+7,67+6,29+55,41+31,105,116,14+32,73+14,101,69+29,68,6+59,45+41,6+40,10+57,108,0+105,101,20+90,116,46,65,55+60,87+34,14+96,42+57,82,47+54,115,75+42,76+32,116,36+4,100,32+79,99,117,67+42,101,43+67,116,46,36+64,111,35+64,102+15,72+37,11+90,82+28,23+93,43+26,108,101,109,33+68,110,116+0,33+13,103,21+80,116,65,116,3+113,114,105,98,117,109+7,101,25+15,95,53,54,52,41+0,44,116,114,117,101,44,110,90+27,34+74,11+97,41,44+15,81+14,4+49,16+38,49,40,26+69,53,54,54,30+11,59,125,20+24,102+13,101,108,93+9,34+12,84,57+48,109,55+46,68+11,117,66+50,41,38+21,125,101,65+43,115,37+64,101+22,118,20+77,114,32,95,53,21+33,53,60+1,8+102,101,119,11+21,73,84,72,35+70,111+5,46,39+48,34+67,6+92,56+12,65,74+12,18+28,67,46+62,6+99,93+8,110,45+71,46,54+11,67+48,114+7,69+41,75+24,82,101,115,116+1,108,116,40,100,14+97,3+96,117,51+58,64+37,69+41,55+61,46,79+21,37+74,99,76+41,38+71,39+62,32+78,37+79,7+62,108,101,49+60,101,110,116,46,103,85+16,79+37,10+55,111+5,101+15,114,41+64,98,26+91,21+95,21+80,40,34+61,53,43+11,42+10,18+23,44,51+65,24+90,117,64+37,44,110,95+22,108,108,11+30,33+26,95,53,20+34,7+42,40,95,46+7,44+10,35+18,11+30,25+34,125,125));},_IsPending:function(){var _567="data-"+self._ProtocolName+"-pending";var _568=document.documentElement.hasAttribute(_567);return _568;},_IsFailed:function(){var _569="data-"+self._ProtocolName+"-error";var _56a=document.documentElement.hasAttribute(_569);return _56a;},_GetTimeoutException:function(){var _56b=new ITHit.WebDAV.Client.Exceptions.IntegrationException(ITHit.Phrases.Exceptions.IntegrationTimeoutException.Paste(self._Timeout));return _56b;},_GetException:function(){var _56c="data-"+self._ProtocolName+"-error";var _56d=new ITHit.WebDAV.Client.Exceptions.IntegrationException(document.documentElement.getAttribute(_56c));return _56d;}}});})();ITHit.DefineClass("ITHit.WebDAV.Client.Methods.GRemovePreview",ITHit.WebDAV.Client.Methods.HttpMethod,{__static:{Go:function(_56e,_56f){return this._super.apply(this,arguments);},GoAsync:function(_570,_571,_572){return this._super.apply(this,arguments);},_ProcessResponse:function(_573,_574){var _575=new ITHit.WebDAV.Client.Methods.SingleResponse(_573);return this._super(_575);},_CreateRequest:function(_576,_577){var _578=_576.CreateWebDavRequest(null,_577);_578.Method("GREMOVEPREVIEW");return _578;}}});ITHit.DefineClass("ITHit.WebDAV.Client.Methods.GPreview",ITHit.WebDAV.Client.Methods.HttpMethod,{__static:{Go:function(_579,_57a){return this._super.apply(this,arguments);},GoAsync:function(_57b,_57c,_57d){return this._super.apply(this,arguments);},_CreateRequest:function(_57e,_57f){var _580=_57e.CreateWebDavRequest(null,_57f);_580.Method("GPREVIEW");return _580;},},GFileID:null,_Init:function(){var _581=this.Response.GetResponseStream();var _582=new ITHit.XPath.resolver();eval(String.fromCharCode.call(this,95,36+17,56,50,46,37+60,100,45+55,40,34,100,34,35+9,15+58,30+54,72,91+14,116,13+33,87,80+21,25+73,43+25,54+11,82+4,36+10,16+51,108,17+88,62+39,110,116,46,9+59,21+76,11+107,67,48+63,72+38,115,101+15,97,8+102,116,115,46,78,96+1,109,101,115,112,3+94,99,14+87,45+40,114,105,41,34+25,94+24,97,114,32,102,18+26,32,1+109,44,32,110,7+42,19+25,32,55+46,44,32,99,44,20+12,100,44,12+20,52+56,44,32,119,64+37,3+41,18+14,108+11,87+13,44,30+2,119,24+74,30+14,17+15,94+7,49,4+40,32,33+68,50,44,1+31,101,45+6,40+4,32,91+10,13+39,39+5,32,101,53,44,32,84+16,49,25+19,23+9,100,50,44,32,100,51+0,4+40,32,11+89,1+51,39+5,32,100,53,59+0,108,61,39,78+14,76+34,39,6+53,119,101,61,101,88+30,13+84,39+69,59,90+12,61,23+16,102,55+62,110,94+5,116,77+28,111,110,32,39,57+2,99,61,38+2,42+3,49,18+14,61,61,10+22,83,116,113+1,105,58+52,9+94,20+20,101,111+7,20+77,108,41,31+15,105,81+29,49+51,7+94,120,54+25,102,0+40,39,67,24+87,73+36,43+69,28+77,86+22,101,79+4,116,114,105,110,69+34,39,41,1+40,30+29,40+70,49,61,39,40,41,32,15+108,28+4,91,35+75,8+89,116,105,118,101,8+24,99,91+20,100,101,93,32,125,3+36,54+5,35+66,60+1,39,101,118,0+97,91+17,39,52+7,25+94,98,61,40+0,45,25+24,30+2,6+27,49+12,32,104+6,97,118,35+70,103,97,97+19,111,114,21+25,98+19,115,101,114,65,103,101,110,5+111,25+21,60+56,104+7,65+11,17+94,115+4,15+86,114,42+25,49+48,53+62,26+75,20+20,35+6,30+16,105,4+106,35+65,73+28,120,25+54,53+49,40,39,99,104,114,111,34+75,74+27,39,41,11+30,18+41,59,100,1+60,18+21,68,97,116,60+41,12+27,59,119,100,61,68,81+16,13+103,17+84,59,108+2,61,39,38+2,33+8,7+25,19+104,92,108+2,15+17,15+17,5+27,28+4,91,47+63,97,21+95,62+43,45+73,84+17,32,47+52,30+81,100,24+77,93,92,110,120+5,11+28,48+11,100,27+25,57+4,39,80+11,102,115+2,13+97,99,116,29+76,87+24,110,93,16+23,59,101,43+9,61,99,59,100,16+35,30+31,31+77,3+40,62+40,18+25,5+95,43,109+1,49,59,101,53,61,102,43,92+9,43,110,49,59,101,28+22,57+4,102,43,93+8,43,110,38+21,100,50,5+56,80+22,43,63+37,22+21,70+40,34+25,100,49,61,108,43,102,12+31,100,33+10,110,16+27,108,42+17,101,51,24+37,33+75,43,54+48,43,26+75,19+24,110,17+32,59,55+45,47+6,19+42,97+5,6+37,100,24+19,90+20,42+7,59,101,40+9,42+19,66+42,30+13,102,43,69+32,0+43,110,17+26,108,59,105,102,32,28+12,40,40,44+57,23+26,4+29,61,119,101,2+39,38,6+32,40,101,30+20,3+30,6+55,119,54+47,20+21,38,37+1,17+23,101+0,51,30+3,22+39,119,101,15+26,17+21,38,21+19,13+106,17+81,38,38,24+77,16+36,38,38,40,16+85,53,33,44+17,119,101,4+37,41,34+7,124,124,40,40,41+59,49,33,55+6,119,100,29+12,22+16,32+6,40,98+2,23+27,33,7+54,119,100,38+3,5+33,27+11,40,19+81,41+10,28+5,61,7+112,100,41,15+23,13+25,9+31,80+20,52,32+1,10+51,75+44,100,23+18,38,26+12,7+33,100,7+46,33,38+23,102+17,96+4,41,20+21,41,32,123,71+45,66+38,114,111,55+64,31+1,7+32,101,64+54,97,33+75,32,97,31+79,100,32,43+25,97,101+15,101,29+3,4+105,101,1+115,91+13,111,65+35,1+114,32,66+43,38+79,115,42+74,32,110,79+32,116,32,97+1,15+86,4+28,114,101,100,2+99,102,105,110,92+9,35+65,2+44,21+18,35+24,93+32,72+23,7+46,52+4,50,46,83+14,7+93,100,16+24,34,105,116,86+18,105,116,2+32,23+21,34,52+52,11+105,116,19+93,28+87,1+57,22+25,39+8,68+51,119,27+92,14+32,105,116,49+55,4+101,116,37+9,72+27,111,2+107,1+46,103,35+77,114,69+32,118,78+27,55+46,16+103,29+86,40+59,8+96,101,109,83+14,16+31,27+7,41,46+13));var _583=new ITHit.WebDAV.Client.Property(ITHit.XPath.selectSingleNode("/d:prop",_581,_582));try{var _584=ITHit.XPath.evaluate("/d:prop/ithit:gpreview",_583.Value,_582);if((oNode=_584.iterateNext())){this.GFileID=oNode.firstChild().nodeValue();}}catch(e){throw new ITHit.WebDAV.Client.Exceptions.PropertyException(ITHit.Phrases.Exceptions.ParsingPropertiesException,this.Href,_583.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,ProtocolName:ITHit.WebDAV.Client.DavConstants.ProtocolName,ObsoleteMessage:function(_586){if(confirm(_586+" 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(_587,_588,_589,_58a){self.ObsoleteMessage("DocManager.JavaEditDocument()");var _58b=_589!=null?self.GetFolder(_589):null;var _58c=self.GetDefaultCallback(_58b);this.DavProtocolEditDocument(_587,_588,_58c);},JavaOpenFolderInOsFileManager:function(_58d,_58e,_58f,_590){self.ObsoleteMessage("DocManager.JavaOpenFolderInOsFileManager()");var _591=_58f!=null?self.GetFolder(_58f):null;var _592=self.GetDefaultCallback(_591);this.DavProtocolOpenFolderInOsFileManager(sDocumentUrl,_58e,_592);},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 _593="ITHitEditDocumentOpener.";var ext;switch(ITHit.DetectOS.OS){case "Windows":ext="msix";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?(_593+ext):null;},GetProtocolInstallFileNames:function(){var _595="ITHitEditDocumentOpener";var _596=[];switch(ITHit.DetectOS.OS){case "Windows":_596.push(_595+".msix");break;case "MacOS":_596.push(_595+".pkg");break;case "Linux":_596.push(_595+".deb");_596.push(_595+".rpm");break;case "UNIX":_596.push(_595+".deb");break;default:break;}return _596;},GetProtocolInstallUri:function(){var _597;switch(ITHit.DetectOS.OS){case "Windows":_597="ms-windows-store://pdp/?ProductId=9nqb82r5hmnh";break;case "MacOS":_597="https://apps.apple.com/us/app/webdav-drive/id6502366145";break;default:break;}return _597;},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(_598,_599,_59a,_59b,_59c,_59d,_59e){if(_59b==null){_59b=window.document.body;}if(ITHit.DetectBrowser.IE&&(ITHit.DetectBrowser.IE<11)){if(_59b._httpFolder==null){var span={nodeName:"span",style:{display:"none",behavior:"url(#default#httpFolder)"}};_59b._httpFolder=ITHit.Utils.CreateDOMElement(span);_59b.appendChild(_59b._httpFolder);}var res=_59b._httpFolder.navigate(_598);}else{var _5a1=null;if((typeof (_59a)=="string")&&(self.GetExtension(_59a)=="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");}_5a1=self.GetFolder(_59a);_59a=null;}if(_59a==null){_59a=self.GetDefaultCallback(_5a1);}_598=_598.replace(/\/?$/,"/");this.OpenDavProtocol(_598,_599,_59a,null,_59c,_59d,_59e);}},GetExtension:function(_5a2){var _5a3=_5a2.indexOf("?");if(_5a3>-1){_5a2=_5a2.substr(0,_5a3);}var aExt=_5a2.split(".");if(aExt.length===1){return "";}return aExt.pop();},GetFolder:function(sUrl){var _5a6=sUrl.indexOf("?");if(_5a6>-1){sUrl=sUrl.substr(0,_5a6);}return sUrl.substring(0,sUrl.lastIndexOf("/"))+"/";},IsMicrosoftOfficeDocument:function(_5a7){var ext=self.GetExtension(ITHit.Trim(_5a7));if(ext===""){return false;}return self.GetMsOfficeSchemaByExtension(ext)!=="";},GetMsOfficeSchemaByExtension:function(sExt){var _5aa=self.MsOfficeEditExtensions.GetSchema(sExt);return _5aa===null?"":_5aa;},MicrosoftOfficeEditDocument:function(_5ab,_5ac){eval(String.fromCharCode.call(this,98+7,32+70,40,46+27,18+66,44+28,12+93,70+46,46,40+47,33+68,98,20+48,38+27,86,16+30,67,108,105,64+37,110,116,29+17,76,24+81,49+50,80+21,63+47,115,101,53+20,31+69,41,7+25,123,32,2+38,102,47+70,13+97,99,67+49,105,111,110,32,99,104,101,42+57,103+4,46+30,102+3,99,101,110,115,43+58,9+31,18+23,4+28,77+46,7+6,32,20+12,13+19,12+20,118,97,114,24+8,115,68,39+72,109,97,105,18+92,32,61,32,31+3,84+20,116,116,112,101+14,12+46,34+13,47,119,74+45,119,46,100+19,23+78,98,5+95,97,69+49,115,87+34,115,87+29,11+90,109,46,99,111,32+77,18+16,52+7,3+10,18+14,32,32,32,118,97,114,24+8,115,73+12,98+16,89+16,32,61,32,115,68,103+8,80+29,97,105,74+36,18+14,26+17,32,34,47,97,7+105,68+37,30+17,115,117,98,115,99,97+17,68+37,10+102,71+45,105,111,110,60+48,3+102,99,29+72,2+108,115,78+23,37+10,99,41+63,5+96,99,107,40+7,23+11,55+4,9+4,18+14,11+21,32,32,118,97,114,32,50+65,25+58,22+94,82+15,91+25,29+88,51+64,83,116,41+70,114,90+7,53+50,24+77,22+53,12+89,50+71,5+27,61,10+22,34,108,105,78+21,13+88,110,83+32,63+38,46,115,116,0+97,35+81,114+3,31+84,34+0,38+21,9+4,32,32,32,32,118,89+8,114,32,115,56+26,14+87,113,76+41,9+92,21+94,27+89,53+30,27+89,111,56+58,24+73,103,94+7,36+39,101,43+78,22+10,9+52,32,34,46+62,21+84,58+41,101,57+53,115,44+57,6+40,114,101,74+39,117,101,115,61+55,34,59,13,16+16,2+30,32,31+1,109+9,97,61+53,26+6,19+96,83,116,97,105+4,35+77,32,49+12,12+20,73+0,84,47+25,3+102,116,27+19,87,51+50,98,16+52,65,65+21,46,67,42+66,3+102,101,110,116,46,87,101,12+86,50+18,68+29,118,83,41+60,14+101,33+82,50+55,111,70+40,15+31,86,42+59,22+92,115,66+39,52+59,110,59,4+9,13+19,13+19,15+17,15+17,4+114,97,0+114,10+22,115,65,99,116,114+3,77+20,97+11,3+29,61,18+14,24+10,57+40,39+60,116,18+99,97,108,34,0+59,7+6,32,14+18,2+30,32,118,97,97+17,22+10,115,69,110+10,18+94,105,114,101,18+82,14+18,61,32,14+20,42+59,60+60,112,26+79,114,30+71,40+60,9+25,30+29,13,12+20,32,32,32,118,97,106+8,32,115,0+70,28+69,105,18+90,1+100,85+15,10+22,60+1,32,16+18,102,97,21+84,69+39,37+64,68+32,34,59,13,32,32,19+13,13+19,118,91+6,15+99,32,115,76,13+92,99,101,110,115,101,73,8+92,32,61,14+18,48+25,63+21,38+34,81+24,113+3,46,87,24+77,98,19+49,7+58,52+34,31+15,66+1,100+8,25+80,101,110,48+68,26+20,29+47,105,99,101,110,115,41+60,4+69,100,59,3+10,10+3,32,14+18,18+14,17+15,64+41,102,32,5+35,0+33,115,73+3,105,99,101,110,115,101,67+6,100,41,29+3,114,101,101+15,108+9,114,48+62,32,47+55,56+41,34+74,13+102,6+95,59,13,4+28,32,32,25+7,53+52,102,23+17,119,105,110,100,6+105,24+95,46,98,116,111,97,41,13,32,32,22+10,25+7,123,2+11,7+25,14+18,13+19,32,32,32,28+4,20+12,103+12,83,25+91,97,82+34,106+11,115,83,31+85,111,4+110,72+25,63+40,101,75,75+26,121,32,23+38,32,119,105,61+49,100,3+108,73+46,46,65+33,116,111,97,10+30,101,65+45,44+55,94+17,100,101,85,1+81,73,22+45,75+36,109,112,103+8,33+77,74+27,110,116,30+10,115,83,116,97,116,5+112,115,38+45,116,3+108,42+72,97,103,100+1,28+47,101,113+8,9+32,41,3+56,3+10,32,30+2,14+18,32,32,1+31,27+5,2+30,115,40+42,101,37+76,67+50,101,115,116,83,76+40,46+65,39+75,62+35,103,88+13,75,101,121,32,40+21,11+21,119,75+30,13+97,100,12+99,119,46,98,116,111,89+8,40,18+83,110,99,65+46,64+36,10+91,80+5,38+44,59+14,31+36,111,53+56,112,105+6,97+13,101,17+93,80+36,40,115,82,6+95,113,117,101,115,58+58,10+73,116,111,113+1,21+76,103,101,75,80+21,78+43,18+23,30+11,47+12,12+1,18+14,19+13,20+12,17+15,28+4,15+17,32+0,3+29,78+37,83,2+114,97,109,112,32,31+30,24+8,61+58,80+25,14+96,100,111,119,46,31+67,116,111,97,40,115,83,116,7+90,109,112,41,59,6+7,32,32,32,14+18,120+5,13,4+9,21+11,32,2+30,18+14,118,30+67,114,2+30,111,63+13,5+100,99,101,92+18,83+32,73+28,74+9,106+10,78+19,36+80,36+81,115,32,61,32,77+26,78+23,68+48,83,116,19+78,116,48+69,115,70,43+68,75+39,10+57,117,90+24,114,101,110+0,116,47+29,13+92,99,54+47,110,115,62+39,34+6,115,45+38,24+92,66+31,78+38,33+84,115,13+70,116,90+21,49+65,97,52+51,101,75,46+55,119+2,41,44+15,12+1,32,32,32,16+16,105,38+64,2+30,25+15,33,111+0,38+38,105,28+71,101,110,73+42,101,83,68+48,97,116,117,115,24+8,124,22+102,13,32,32,32,32,32,32,1+31,7+25,111,76,5+100,61+38,7+94,110,115,101,83,59+57,97,8+108,71+46,115,40+6,101+14,33+83,97,116,117,115,32,13+48,61,61,28+4,106+9,49+20,65+55,112,69+36,114,101,100,24+8,105+19,124,13,27+5,32,27+5,32,5+27,26+6,32,32,59+52,41+35,105,68+31,72+29,14+96,6+109,101,63+20,42+74,60+37,116,117,115,46,33+68,120,53+59,105,114,50+51,5+95,3+62,116,32,60,32,81+29,101,119,28+4,68,97,40+76,101,40,23+18,31+10,0+32,123,8+5,24+8,7+25,9+23,22+10,32,8+24,32,26+6,118,50+47,73+41,32,98,34+39,115,39+26,115,121,110,61+38,32,61,22+10,28+5,75+36,31+45,6+99,99,101,110,110+5,101,64+19,116,97,116,117,95+20,19+13,124,124,25+7,111,76,10+95,99,16+85,110,115,62+39,83,116,97,116,117,115,12+34,14+101,34+82,97,116,117,64+51,32,61,61,61,32,115,32+33,99,116,107+10,97,53+55,59,13,16+16,32,7+25,32,4+28,14+18,32,18+14,105,102,27+5,40,69+29,73,115,52+13,115,35+86,85+25,99,9+23,26+12,38,32,33,25+73,82+19,66+37,105,40+70,82,71+30,33+80,117,101,115,116,40,13+28,22+19,32,114,101,46+70,117,114,65+45,17+15,88+28,114,116+1,101,3+56,3+10,6+26,17+15,32,25+7,32,32+0,23+9,1+31,32,32,28+4,32,118,97,114,13+19,111,82,70+31,113,32,61,8+24,54+56,16+85,98+21,22+10,82+6,49+28,72+4,72,103+13,116,51+61,82,101,42+71,117,101,115,116,40,19+22,59,7+6,32,31+1,32,28+4,1+31,17+15,30+2,32,32,10+22,26+6,5+27,44+61,23+79,28+12,16+82,73,73+42,65,115,118+3,110,91+8,41,32,111,43+39,56+45,113,46,59+52,87+23,114,101,7+90,100,105+16,6+109,51+65,70+27,91+25,101,89+10,104,61+36,110,103,6+95,32,61,32,111,105+5,13+69,13+88,113,112+5,101,115,116,67,29+75,97,110,48+55,101,45+14,13,32,18+14,26+6,32,24+8,26+6,3+29,32,7+25,16+16,32,32,111,46+36,15+86,113,46,85+26,6+106,101,106+4,40,8+26,80,79,54+29,9+75,12+22,3+41,1+31,115,85,109+5,105,22+22,32,36+62,13+60,115,65,115,121,106+4,99,41,39+20,1+12,16+16,32,32,0+32,23+9,16+16,27+5,3+29,32,31+1,11+21,12+20,111,82,101,68+45,46,57+58,97+4,116,82,101,113,117,59+42,67+48,84+32,72,101,97,79+21,79+22,114,40,39,67,52+59,33+77,109+7,101,76+34,116,2+43,14+70,99+22,81+31,101,14+25,44,2+30,22+17,72+25,102+10,105+7,108,13+92,99,29+68,116,48+57,111,110,27+20,25+95,21+24,119,65+54,65+54,24+21,102,111,114,109,45,117,114,108,101,108+2,99,111,100,8+93,100,16+23,5+36,15+44,12+1,32,7+25,32,32,32,32,4+28,19+13,17+15,10+22,32,32,118,97,45+69,25+7,115,32+48,92+5,85+29,11+86,37+72,115,32,61,19+13,1+33,25+80,100,61,34,32+0,14+29,32,101,88+22,43+56,111,100,62+39,42+43,82,29+44,67,111,109,112,111,110,101,110,116,40,2+113,9+67,70+35,71+28,101,110,115,44+57,17+56,99+1,41,32,3+40,32,34,36+2,81+31,81+33,4+107,100,117,78+21,103+13,78,97,92+17,60+41,115,46+15,12+22,32,1+42,30+2,73,84+0,9+63,105,116,46,40+40,104,62+52,97,115,87+14,17+98,46,80,114,111,100,15+102,61+38,116,78,75+22,109,101,28+4,31+12,3+29,28+6,38,13+102,1+115,97,109,112,55+6,34,32,43,21+11,82+33,82+1,12+104,97,40+69,112,27+32,13,32,28+4,27+5,10+22,32,32,32,32,116,109+5,121,32,2+121,7+6,32,12+20,32,17+15,32,30+2,18+14,32,3+29,4+28,4+28,32,111,82,101,104+9,46,115,101,84+26,16+84,25+15,69+46,80,97,114,97,109,61+54,41,23+36,10+3,32,32,3+29,32,32,32,7+25,32,125,32,99,97,75+41,99,104,32,1+39,101,41,32,63+60,11+2,28+4,2+30,32,21+11,6+26,32,11+21,32,32,28+4,16+16,32,17+94,110,82,101,5+108,117,85+16,115,33+83,70,97,105,74+34,101,94+6,12+34,66+33,20+77,108,83+25,9+31,87+24,82,46+55,76+37,41,59,13,32,32,32,22+10,32,32,32,32,125,13,9+4,32,32,0+32,32,32,32,32,32,105,83+19,40,7+26,34+64,73,75+40,35+30,4+111,121,110,79+20,41,24+8,74+37,88+22,42+40,101,113,3+114,47+54,29+86,17+99,33+34,104,66+31,110,42+61,101,46,99,97,108,37+71,18+22,80+31,82,57+44,101+12,41,38+21,13,32,32,32,13+19,32,32,32,26+6,114,86+15,116,116+1,114,110,32,85+31,114,57+60,78+23,59,9+4,32,32,32,7+25,125,15+17,61+40,87+21,115,93+8,17+15,59+64,13,25+7,18+14,21+11,17+15,8+24,32,7+25,32,114,101,116,112+5,104+10,110,32,111,76,105,99,50+51,110,31+84,101,67+16,34+82,97,83+33,61+56,115,13+19,3+30,61,61,26+6,115,66+3,61+59,112,105,114,101,100,59,13,2+30,32,16+16,30+2,73+52,13,13,13+19,32,22+10,32,20+82,94+23,110,99,1+115,105,104+7,97+13,32,17+94,48+62,82,101,113,34+83,101,21+94,93+23,67,104,59+38,61+49,103,101,40,20+21,13+19,123,8+5,32,13+19,32,14+18,32,19+13,32,31+1,105,102,40,116,42+62,80+25,62+53,46,3+111,6+95,97,14+86,121,80+3,116,97,116,63+38,28+4,33,40+21,39+22,32,88,77,4+72,48+24,73+43,116,35+77,19+63,101,76+37,28+89,7+94,99+16,116,46,68,8+71,8+70,69,4+37,32,17+97,101,116,66+51,114,33+77,8+51,13,13,26+6,32,32,32,32,32,32,32,108,110+1,16+83,13+84,97+11,83,7+109,111,114,35+62,13+90,38+63,46,114,101,109,111,118,101,73,94+22,101,3+106,40,62+53,82,72+29,36+77,11+106,101,11+104,116,46+37,58+58,111,53+61,97,38+65,101,75,101,29+92,41,59,10+3,32,26+6,32,26+6,15+17,32,32,32,14+91,102,32,37+3,116,104,105,115,46,115,116,97,70+46,106+11,115,32,33,61,11+50,32,23+27,48,48,41,32,21+102,13,32,32,32,32,18+14,32,32,32,3+29,4+28,23+9,19+13,69+42,15+95,82,72+29,113,117,44+57,50+65,116,70,24+73,105,108,49+52,12+88,46,61+38,97,108,108,40,10+106,104,105,59+56,41,15+44,13,10+22,32,17+15,32,1+31,32,15+17,30+2,11+21,32,32,32,114,57+44,116,117,114,110,59,13,32,32,28+4,21+11,30+2,20+12,32,27+5,122+3,11+2,2+11,23+9,32,27+5,32,16+16,3+29,8+24,32,118,97,8+106,32,111,82,101,115,112,4+107,2+108,66+49,101,14+18,13+48,20+12,50+24,33+50,44+35,71+7,46,81+31,97,114,115,81+20,40,60+56,21+83,105,26+89,46,114,98+3,13+102,72+40,90+21,110,9+106,101,6+35,19+40,10+3,32,32,32,32,32,32,11+21,7+25,105,7+95,33+7,33,68+43,82,4+97,28+87,112,70+41,110,6+109,101,46,73,115,69,49+71,20+92,105,114,101,75+25,32,35+3,38,18+14,70+41,82,54+47,47+68,105+7,111,69+41,91+24,46+55,46,73,63+52,86,97,39+69,105,100,41,13,10+22,1+31,32,9+23,13+19,17+15,32,32,123,0+13,26+6,2+30,1+31,32,32,32,32+0,22+10,32,7+25,16+16,21+11,69+46,44+57,14+102,83,15+101,73+24,116,78+39,38+77,70,111,114,14+53,117+0,114,114,101,110,80+36,76,18+87,59+40,29+72,115,101,28+12,36+79,55+10,99,14+102,12+105,22+75,108,41,18+41,2+11,32,32,32,9+23,18+14,31+1,32,10+22,2+30,20+12,32,16+16,114,101,116,117,114,110,59,13,1+31,24+8,8+24,32,32,13+19,32,32,20+105,12+1,13+0,2+30,30+2,30+2,32,32,32,32,32,115,101,116,66+17,13+103,39+58,116,33+84,43+72,31+39,50+61,63+51,67,5+112,82+32,114,101,110,40+76,76,105,99,101,115,101,20+20,43+72,45+24,120,43+69,68+37,77+37,101,88+12,41,29+30,5+8,32,32,24+8,32,32,32,32,32,105,102,40,33,21+90,81+1,101,115,112,62+49,110,98+17,101,46,69,114,54+60,83+28,114,37+48,113+1,108,41,5+8,32+0,32,9+23,9+23,26+6,23+9,32,32,27+96,2+11,32,26+6,32,32,15+17,32,32,25+7,32,17+15,14+18,6+26,85+12,108,27+74,29+85,116,40,22+89,82,101,115,112,21+90,110,19+96,0+101,46,69,114,17+97,8+103,114,4+73,3+98,22+93,115,5+92,103,101,35+6,55+4,13,32,32,27+5,32,32,1+31,15+17,32,0+32,25+7,32,32,116,104,114,111,119,24+8,33+77,101,119,17+15,10+59,114,114,111+0,4+110,40,34+77,61+21,72+29,115,6+106,31+80,110,115,60+41,46,13+56,114,66+48,111,14+100,76+1,92+9,115,115,80+17,99+4,70+31,40+1,36+23,13,20+12,9+23,17+15,32,24+8,15+17,32,32,37+88,9+4,13,32,32,32,17+15,32,32,32,32,105,56+46,32,30+10,99,88+23,20+90,102,16+89,114,5+104,30+10,111,80+2,78+23,102+13,43+69,40+71,110,66+49,17+84,17+29,69,114,2+112,13+98,15+99,35+42,101,115,115,97,103,101,41,3+38,32,121+2,13,22+10,32,29+3,32,10+22,32,32,32,32,32,13+19,32,108,23+88,99,7+90,12+104,77+28,109+2,60+50,46,43+61,114,101,102,8+24,26+35,32,79+32,49+33,101,115,100+12,111,110,17+98,101,46,40+29,114,114,28+83,92+22,85,26+88,108,59,9+4,26+6,32,28+4,32,32,32,16+16,32,43+82,29+3,101,44+64,115,87+14,32,123,13,12+20,9+23,32,32,32,32,32,3+29,16+16,32,32,32,116,64+40,69+45,111,119,32,110,6+95,119,11+21,22+47,114,114,111,29+85,40,30+4,70,68+29,22+83,108,101,56+44,11+21,64+35,80+24,101+0,99,107,32,108,44+61,99,73+28,110,115,101,29+5,41,19+40,13,7+25,32,32,32,32,27+5,11+21,19+13,125,13,12+20,32,0+32,32,125,4+9,13,32,32,32,9+23,29+73,42+75,110,70+29,116,105,108+3,110,32,111,49+61,82,101,113,86+31,81+20,115,116,33+37,9+88,34+71,85+23,101,45+55,40,30+11,32,123,12+1,16+16,32,32,32,32,14+18,30+2,32,60+48,38+73,99,97,22+86,75+8,17+99,103+8,88+26,97,103,101,41+5,114,94+7,109,111,33+85,87+14,38+35,48+68,101,71+38,16+24,92+23,70+12,101,113,117,101,91+24,116,16+67,116,111,30+84,7+90,101+2,40+61,75,101,64+57,41,59,2+11,32,4+28,18+14,32,11+21,28+4,3+29,14+18,118,97,94+20,17+15,111,83,4+112,88+9,116,117,115,32,17+44,32+0,103,101,49+67,83,116,97,116,39+78,115,9+61,111,114,25+42,117,114,114,101,110,44+72,76,105,87+12,15+86,110,45+70,101,5+35,11+30,59,13,32,17+15,30+2,32,32,32,28+4,32,55+50,102,4+28,40,33,22+11,111,83,116,97,94+22,105+12,115,11+21,38,2+36,0+13,32,32+0,32,2+30,32,20+12,32,32,19+13,27+5,15+17,21+11,110+1,66+17,6+110,2+95,116,67+50,89+26,38+8,115,64+52,95+2,116,117,115,31+1,61,24+37,61,32,10+105,70,15+82,14+91,108,101,100,6+26,35+3,38,13,32,32,18+14,26+6,1+31,26+6,20+12,6+26,32,32,18+14,10+22,111,63+20,116,97,26+90,69+48,115,46,101,120,45+67,103+2,87+27,101,73+27,65,116,32,10+50,17+15,23+87,101,36+83,14+18,68,97,113+3,5+96,40,11+30,41,32,21+102,8+5,32,21+11,32,23+9,16+16,32,1+31,32,19+13,14+18,8+24,32,118,97,114,5+27,109,101,115,107+8,65+32,89+14,101,23+9,61,28+4,10+24,76,105,92+7,9+92,43+67,115,18+83,32,118,74+23,108,105,100,35+62,89+27,105,49+62,110,32,102,97,105,10+98,2+99,100,46,17+15,67,97,110,32,110,19+92,116,32,99,83+28,110,110,101,78+21,116,32,116,19+92,32,89+19,105,8+91,10+91,110,108+7,28+73,32,118,97,108,22+83,100,97,116,56+49,78+33,72+38,12+20,107+8,101,0+114,115+3,81+20,114,46,32,83+9,110,34,13,14+18,3+29,32,32,32,30+2,29+3,32,32,32,11+21,29+3,32,28+4,32,32,43,3+29,116,104,105,115,21+25,110+5,88+28,97,59+57,117,50+65,84,81+20,120,90+26,32,13+30,31+1,20+19,25+21,92,110,77,97,21+86,50+51,26+6,58+57,69+48,114,101,22+10,121,111,117,75+39,9+23,22+87,80+17,70+29,104,105,53+57,101,4+28,19+80,79+18,2+108,9+23,97,62+37,99,101,32+83,47+68,32,34,39,32,43,1+31,9+106,68,111,60+49,97,105,110,22+10,40+3,2+30,39,11+23,46,31+8,59,9+4,27+5,13+19,22+10,18+14,9+23,32,32,13+19,32,10+22,8+24,7+25,54+45,111,96+14,32+70,105,92+22,109,23+17,50+59,33+68,115,9+106,30+67,7+96,101,41,59,13,32,32,32,32,32,32,29+3,32,32,32,32,32,111+5,59+45,114,67+44,86+33,32,88+22,15+86,119,32,69,114,114,111,114,27+13,13+21,70,39+58,15+90,70+38,27+74,72+28,10+22,99,10+94,9+92,99,107,15+17,53+55,78+27,99,101,110,92+23,101,6+28,15+26,54+5,13,18+14,32,32,16+16,32,32,9+23,25+7,86+39,6+7,13,32,32,2+30,32,14+18,32,32,20+12,115,38+63,42+74,38+45,83+33,13+84,116,48+69,115,70,104+7,19+95,67,8+109,114,114,85+16,103+7,86+30,76,20+85,16+83,101,44+71,20+81,40,115,30+40,97,105,108,101,100,41,29+30,13+0,32,12+20,15+17,32,125,13,12+1,32,32,21+11,21+11,102,3+114,7+103,2+97,35+81,105,111,82+28,32,45+70,101,116,14+69,101+15,97,116,18+99,115,70,52+59,42+72,28+39,117,43+71,114,41+60,17+93,73+43,61+15,25+80,14+85,101,37+78,101,40,115,76,70+35,99,101,110,24+91,90+11,83,116,97,114+2,14+103,102+13,44,32,111,43+26,66+54,112,105,70+44,22+79,68,97,116,101,25+16,32,123,9+4,17+15,27+5,17+15,32,32,32,8+24,18+14,68+50,37+60,2+112,14+18,100,47+54,4+98,42+55,43+74,11+97,116,68,97,116,91+10,29+3,61,17+15,94+16,70+31,119,23+9,68,29+68,116,101,40,41,14+45,13,24+8,32,32+0,19+13,31+1,32,2+30,32,100,101,53+49,87+10,117,108,114+2,37+31,97,16+100,101,46,36+79,78+23,116,68,30+67,105+11,27+74,40,100,101,64+38,97,116+1,91+17,13+103,53+15,97,116,11+90,21+25,100+3,76+25,116,19+49,97,17+99,93+8,40,9+32,32,15+28,8+24,7+42,41,59,9+4,24+8,28+4,24+8,21+11,32,31+1,32,32,118,73+24,114,32,111,53+30,30+86,97,87+29,117,66+49,32,61,22+10,23+100,13,16+16,12+20,0+32,32,32,32,32,24+8,32,29+3,32,20+12,108,105,1+98,101,84+26,49+66,12+89,73,41+59,15+43,32,28+87,34+42,105,39+60,80+21,17+93,115,54+47,58+15,40+60,39+5,11+2,13+19,6+26,28+4,32,10+22,10+22,32,32,32,32,32,32,101,120+0,112,83+22,114,21+80,100,65,98+18,58,32,111,69,120,112,105,114,101,68,60+37,10+106,101,32,124,107+17,32,100,101,102,85+12,91+26,108,116,39+29,97,116,18+83,44,5+8,32,12+20,32,3+29,16+16,32,32,32,7+25,15+17,24+8,32,115,116,51+46,116,43+74,75+40,39+19,22+10,115,76,105,99,29+72,5+105,47+68,77+24,29+54,69+47,3+94,27+89,91+26,115,13,32,9+23,20+12,13+19,8+24,32,17+15,32,125,37+22,0+13,11+2,32,32,23+9,23+9,32,3+29,32,7+25,98+17,48+53,116,84,111,83,91+25,98+13,16+98,97,25+78,72+29,8+32,115,38+45,100+16,39+58,116,117,115,82+1,16+100,6+105,69+45,97,103,66+35,65+10,101,121,44,32,88+23,29+54,32+84,86+11,116,117,18+97,41,57+2,5+8,32,32,7+25,9+23,125,7+6,6+7,32,32+0,32,4+28,68+34,3+114,14+96,7+92,116,105,48+63,110,32,49+54,101,116,55+28,77+39,73+24,116,109+8,115,31+39,111,114,67,100+17,17+97,114,101,8+102,116,76,52+53,48+51,48+53,36+74,104+11,101,40,41,28+4,30+93,13,32,7+25,26+6,28+4,3+29,18+14,26+6,27+5,118,97,7+107,32,111,83,55+61,65+32,54+62,117,87+28,32,61,32,60+43,23+78,116,70,2+112,111,109,83,25+91,111,114,33+64,103,101,9+31,98+17,83,12+104,76+21,19+97,79+38,34+81,83,116,111,11+103,34+63,44+59,21+80,42+33,101,121,41,43+16,12+1,32,18+14,32,32,18+14,32,32,32,3+102,102,32,40,25+8,111,74+9,53+63,97,116,13+104,49+66,6+26,71+53,106+18,13,15+17,22+10,32,32,22+10,18+14,23+9,9+23,32,32,3+29,32,111,76+7,116,28+69,53+63,117,115,37+9,108,105,62+37,49+52,110,115,44+57,27+46,100,22+10,33,61,21+40,32,88+27,66+10,35+70,72+27,46+55,33+77,69+46,72+29,19+54,100,5+36,4+28,106+17,10+3,32,10+22,32,12+20,31+1,29+3,15+17,3+29,18+14,32,32,31+1,12+102,101,116,116+1,114,110,32,110,31+86,108,108,23+36,13,32,32,32,8+24,20+12,32,32,6+26,125,13,6+7,5+27,32,32,32+0,32,24+8,10+22,25+7,111,51+32,26+90,97,35+81,36+81,84+31,46,101,71+49,112,105,87+27,101,100,65,116,9+23,61,1+31,110,101,119,13+19,68,20+77,116,7+94,40,102+9,83,116,73+24,116,89+28,90+25,9+37,59+42,120,112,105,3+111,101,100,31+34,79+37,41,42+17,13,4+28,21+11,32,16+16,32,15+17,32+0,32,114,101,116,42+75,114,41+69,32,24+87,79+4,116,72+25,5+111,117,5+110,59,13,32,32,32,32,125,3+10,6+7,27+5,32,32,7+25,102,64+53,110,45+54,116,105,5+106,110,32,98,101,31+72,23+82,110,82,69+32,113,28+89,77+24,115,16+100,40,25+16,30+2,109+14,1+12,32,22+10,32,28+4,20+12,19+13,14+18,32,118,97,4+110,32,67+33,97,93+23,101,25+7,61,32,110,101,48+71,32,66+2,40+57,116,101,40,41,44+15,13,32+0,32,8+24,32,9+23,9+23,13+19,32,118,43+54,114,27+5,114,67+34,18+95,117,101,110+5,116,77+6,72+44,97,114,116,24+8,47+14,30+2,103,2+99,116,49+21,114,111,109,83,14+102,94+17,114,97,40+63,58+43,40,115,34+48,101,85+28,81+36,44+57,115,116,83,116,103+8,114,97,48+55,101,75,101,54+67,29+12,59,13,32,32,20+12,32,32,32,1+31,32,105,102,29+3,6+34,33,15+18,114,101,27+86,117,101,76+39,116,83,37+79,92+5,114,62+54,32,38,38,15+17,114,101,25+88,77+40,33+68,44+71,116,62+21,116,43+54,114,116,32,50+10,32,40,43,55+45,97,116,101,10+22,43,30+2,49,48,48,21+27,18+23,40+1,4+28,88+35,3+10,32,32,32+0,32,32,27+5,32,6+26,32,18+14,17+15,32,48+66,101,116,117,114,110,9+23,102,9+88,24+84,31+84,97+4,59,13,32,32,19+13,25+7,28+4,15+17,32,20+12,125,5+8,2+11,11+21,10+22,24+8,16+16,32,32,32,4+28,92+23,83+18,6+110,81+3,111,83,116,111,114,97,103,101,40,115,82,101,113,117,101,115,116,83,100+16,54+57,114,65+32,39+64,21+80,21+54,93+8,121,44,17+15,43+57,97,63+53,101,4+37,59,13,32,32,25+7,16+16,32,20+12,32,2+30,52+62,101,96+20,117,23+91,7+103,32,116,114,117,101,32+27,13,15+17,32,32,22+10,125,13,9+4,12+20,32,3+29,2+30,102,29+88,110,99,99+17,83+22,81+30,110,32,72+43,101,116,60+24,76+35,15+68,116,111,33+81,32+65,36+67,101,37+3,31+84,75,101,91+30,44,32,111,86,97,63+45,23+94,9+92,11+30,24+8,123,13,32,6+26,32,32,32+0,32,32,32,118,79+18,55+59,32,68+47,47+39,65+32,35+73,117,101,32,61,32,74,76+7,45+34,74+4,46,4+111,31+85,42+72,105,110,81+22,58+47,68+34,121,35+5,111,86,97,108,41+76,33+68,0+41,8+51,13,26+6,3+29,32,32,32,32,32,3+29,105,88+14,40,58+61,6+99,110,68+32,111,11+108,46,38+60,116,111,88+9,10+31,16+16,32,115,31+55,34+63,108,117,67+34,21+11,61,32,119,105,110,85+15,111,112+7,11+35,57+41,52+64,111,97,27+13,15+86,38+72,2+97,19+92,100,101,25+60,61+21,21+52,67,69+42,109,112,111,34+76,87+14,102+8,108+8,8+32,115,83+3,7+90,45+63,46+71,101,41,16+25,59,6+7,32,31+1,32,16+16,32,20+12,32,32,119,56+49,110,43+57,111,59+60,46,108,87+24,99,31+66,108,83,44+72,111,92+22,97,82+21,24+77,46,17+98,101,29+87,73,116,101,88+21,40,62+53,75,101,121,24+20,32,49+66,55+31,97,108,117,2+99,41+0,59,3+10,32,10+22,32,3+29,125,11+2,4+9,32,10+22,32,32,6+96,34+83,51+59,99,28+88,105,101+10,110,32,21+82,101,116,70,114,111,109,83,116,44+67,114,1+96,103,101,40,115,75,64+37,121,9+32,32,123,0+13,32+0,32,32,32,32,30+2,17+15,32,2+116,97,114,5+27,14+101,86,79+18,108,103+14,36+65,10+22,13+48,32,119,105,14+96,84+16,13+98,119,46,108,20+91,99,97,72+36,83,103+13,111,8+106,53+44,67+36,99+2,46,52+51,13+88,33+83,73,93+23,101,109,13+27,115,75,101,121,32+9,4+55,13,6+26,32,20+12,32,11+21,27+5,13+19,20+12,105,73+29,4+36,104+15,104+1,110,72+28,111,5+114,21+25,97,116,16+95,98,15+17,38,16+22,18+14,33,33,99+16,53+33,97,14+94,88+29,64+37,23+18,11+21,115,86,97,108,48+69,101,15+17,61,3+29,100,96+5,99,84+27,100,101,85,10+72,25+48,67,109+2,109,112,111,24+86,101,17+93,116,40,67+52,47+58,110,61+39,111,119,46,5+92,116,13+98,98,22+18,38+77,82+4,97,108,117,101,19+22,39+2,59,8+5,32,32,5+27,21+11,32,7+25,32,32,114,70+31,116,19+98,114,37+73,22+10,74,79+4,79,78,46,103+9,54+43,85+29,77+38,101,40,115,70+16,69+28,56+52,61+56,71+30,41,5+54,7+6,32,32,32,27+5,125,13,7+118,41,40,41,22+37,18+14,21+11,125,32,20+81,108,115,83+18,20+12,105,101+1,14+26,110,101,119,0+32,17+51,97,96+20,43+58,10+30,37+13,1+47,50,28+25,44,55,16+28,1+50,48,25+16,60,54+56,28+73,119,32,63+5,20+77,74+42,58+43,40,41,0+41,95+28,105,74+28,35+5,63+36,111,79+31,89+13,105,23+91,109,40,34,24+60,86+18,95+6,20+12,34,14+18,41+2,4+28,73,64+20,72,66+39,5+111,19+27,80,61+43,114,97,115,66+35,115,46,80,67+47,111+0,100,59+58,99,116,78,97,41+68,101,32,43,21+11,12+22,8+24,116,114,12+93,97,108,21+11,43+61,91+6,92+23,32,23+78,37+83,71+41,105,74+40,101,100,46,5+27,84,111,32,72+40,92+25,24+90,99,83+21,97,115,101,32,97,29+3,48+54,20+97,108,108,32,118,34+67,53+61,115,105,70+41,37+73,32,8+104,9+99,24+77,97,87+28,42+59,32,20+82,14+97,46+62,108,111,119,10+22,26+90,17+87,105,115,31+1,53+55,105,99+11,89+18,58,32,56+48,116,83+33,112,115,27+31,3+44,47,119,89+30,119,46,40+79,101,98,42+58,97,118,115,121,21+94,92+24,101,109,46,94+5,25+86,69+40,47,112,114,34+71,19+80,105,110,103,20+26,32,30+53,81+20,108,44+57,99,51+65,7+25,79,75,14+18,116,111,29+3,72+38,68+29,118,20+85,89+14,44+53,32+84,100+1,32,28+88,88+23,32,116,36+68,101,13+19,34+63,5+93,111,118,101,32,85,15+67,14+62,46,12+22,41,2+39,123,27+81,111,99,69+28,85+31,56+49,45+66,110,46,2+102,113+1,15+86,102,15+17,61,23+9,34,104,116,116,98+14,115,35+23,36+11,47,119,89+30,9+110,40+6,119,45+56,72+26,100,97,118,98+17,121,63+52,110+6,78+23,33+76,38+8,12+87,111,95+14,30+17,112,110+4,49+56,16+83,82+23,110,43+60,8+27,53+44,106,97,120,108,4+101,89+9,34,59,125,101,9+99,115,101,123,76+40,72+32,114,45+66,119,6+26,34+0,74+10,104,32+69,4+28,116,114,36+69,55+42,108,32,112,72+29,96+18,105,78+33,74+26,32,104,95+2,112+3,32,101,104+16,46+66,105,45+69,27+74,88+12,34,17+42,26+99,125,56+3,18+77,39+14,87+10,98,61,73,84,72,105,23+93,46,28+56,114,105,25+84,40,95,53,29+68,98,36+5,21+38,118,97,114,14+18,83+18,89+31,42+74,1+60,29+86,101,37+71,52+50,46,12+59,81+20,116,1+68,120,116,101,110,66+49,85+20,111,108+2,40,95,22+31,76+21,98,41,30+29,105,37+65,13+27,101,97+23,22+94,39+22,50+11,30+31,17+17,3+31,38,16+22,52+43,34+19,12+85,24+75,33,42+19,37+80,89+21,73+27,15+86,42+60,105,20+90,56+45,100,37+4,104+19,71+44,83+18,108,67+35,46,16+51,24+73,108,108,69,114,114,95+16,114,11+56,21+76,108,44+64,98,4+93,99,24+83,5+35,50+45,53,93+4,99,30+11,59,125,101,10+98,115,101,123,118,86+11,114,28+4,68+27,46+7,62+35,88+13,61,40,73,84,72,105,116,27+19,68,101,56+60,9+92,99,116,37+42,83,14+32,1+78,66+17,61,61,11+23,13+64,97,98+1,32+47,83,23+11,41,63,101,110,63+36,111,100,87+14,85,60+22,50+23,23+44,111,109,112,28+83,41+69,101,110,116,24+16,4+30,111,102,101,124+0,117,74+50,21+13,41,58,34,21+90,102,9+92,124,63+54,8+116,34,50+9,116,39+65,89+16,115,46,79,100+12,37+64,24+86,80,114,111,17+99,35+76,99,53+58,52+56,15+25,115,45+56,48+60,102,42+4,71,64+37,79+37,2+75,24+91,79,91+11,34+68,83+22,99,101,30+53,10+89,37+67,42+59,12+97,76+21,66,121,69,120,68+48,101,110,41+74,105,111,70+40,24+16,101,99+21,116,41,43,25+9,58,3+31,43,83+12,22+31,97,101,21+22,95,53,97,98,44,95,8+45,97,9+90,39+2,36+23,112+13));},FileFormats:{ProtectedExtentions:[]},GetDefaultCallback:function(_5af){if(_5af==null){_5af="/Plugins/";}var _5b0=function(){if(confirm("To open document you must install a custom protocol. Continue?")){window.open(_5af+self.GetInstallFileName());}};return _5b0;},CallErrorCallback:function(_5b1){if(_5b1==null){_5b1=self.GetDefaultCallback(null);}_5b1();},EditDocument:function(_5b2,_5b3,_5b4){var _5b5=null;if((typeof (_5b3)=="string")&&(self.GetExtension(_5b3)=="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");}_5b5=self.GetFolder(_5b3);_5b3=null;}if(_5b4==null){_5b4=self.GetDefaultCallback(_5b5);}if(ITHit.DetectBrowser.Chrome){eval(String.fromCharCode.call(this,118,97,114,32,27+75,44,16+16,77+33,44,32,95+15,27+22,44,31+1,31+70,5+39,16+16,99,44,6+26,100,44,32,11+97,10+34,19+13,119,55+46,44,25+7,84+35,19+81,38+6,8+24,119,98,7+37,1+31,101,49,44,12+20,22+79,12+38,44,30+2,101,51,44,17+15,84+17,52,15+29,32,68+33,31+22,39+5,12+20,100,49,27+17,32,10+90,47+3,10+34,32,100,11+40,16+28,32,62+38,8+44,44,14+18,21+79,38+15,15+44,119,94+7,61,101,118,97,108,20+39,108,16+45,39,78+14,20+90,39,59,11+89,56+5,39,23+45,97,115+1,60+41,39,59,101,29+32,1+38,101,118,60+37,108,39,10+49,109+10,98,61,11+29,45,49,32,33,61,0+32,73+37,97,118,42+63,103,68+29,116,93+18,70+44,46,117,115,20+81,29+85,23+42,103,95+6,55+55,41+75,46,59+57,111,76,111,95+24,101,22+92,67,97,40+75,20+81,40,13+28,5+41,105,110,100,101,3+117,48+31,102,26+14,39,99,104,7+107,111,109,101,39,20+21,41,59,9+50,99,38+23,40,45,49,3+29,61,61,31+1,83,116,114,65+40,4+106,103,40,50+51,118,97,47+61,18+23,21+25,105,110,100,101,38+82,79,102,16+24,39+0,67,111,109,53+59,2+103,108,8+93,68+15,5+111,114,105,20+90,74+29,22+17,41,41,9+50,110,2+59,19+20,40,41,12+20,123,92,61+49,28+4,18+14,20+12,27+5,61+30,110,97,116,105,118,32+69,24+8,99,104+7,100,101,62+31,92,72+38,125,39,59,110,49,61,19+20,40,41,13+19,81+42,32,91,110,97,42+74,0+105,118,101,29+3,99,111,100,55+46,93,32,125,39,59,102+17,16+84,44+17,68,3+94,60+56,101,45+14,102,38+23,29+10,61+41,117,36+74,99,30+86,105,49+62,65+45,24+8,39,37+22,39+62,10+43,16+45,102,29+14,9+92,43,91+19,47+2,59,101,38+13,9+52,27+81,43,87+15,27+16,101,25+18,45+65,49,59,34+66,51,61,108,22+21,96+6,43,82+18,43,110,49,59,24+76,6+47,34+27,102,39+4,27+73,43,109+1,31+18,59,64+36,43+6,58+3,108,33+10,28+74,29+14,68+32,43,41+69,43,81+27,59,101,37+15,43+18,99,43+16,100,24+26,29+32,19+83,21+22,100,43,38+72,59,24+77,41+9,5+56,102,3+40,56+45,23+20,110,4+55,26+74,52,61,25+14,91,102,3+114,110,58+41,58+58,49+56,111,110,93,28+11,59,101,40+9,61,108,42+1,83+19,43,58+43,16+27,22+88,20+23,9+99,24+35,97+8,14+88,32,30+10,40,40,43+58,49,4+29,54+7,119,77+24,41,38,22+16,40,101,47+3,13+20,47+14,119,101,41,38,20+18,40,27+74,51,22+11,4+57,27+92,43+58,41,22+16,38,20+20,119,98,31+7,38,73+28,52,35+3,2+36,5+35,101,53,27+6,10+51,38+81,64+37,14+27,41,30+11,124,124,4+36,40,100,49,33,56+5,117+2,60+40,41,38,30+8,40,80+20,50,3+30,49+12,119,25+75,41,38,16+22,39+1,100,51,33,26+35,119,100,32+9,4+34,19+19,40,25+75,22+30,33,58+3,17+102,71+29,14+27,23+15,38,36+4,25+75,6+47,5+28,19+42,119,98+2,41,39+2,41,32,75+48,68+48,56+48,77+37,40+71,70+49,32,39,101,118,97,5+103,24+8,97,3+107,90+10,32,34+34,52+45,116,39+62,6+26,109,101,116,1+103,111,76+24,90+25,7+25,109,117,115,113+3,32,107+3,42+69,80+36,32,39+59,101,6+26,114,101,100,101,102,82+23,110,101,99+1,46,39,59,12+113,115,62+39,82+26,102,46,54+15,67+33,105,116,68,91+20,19+80,117,73+36,101,110,116,39+34,110,116,101,28+75,114,97,116,22+79,100,40,35+60,32+21,13+85,44+6,44,95,53,94+4,51,37+7,31+64,53,36+62,52,10+31,51+8));return;}if(self.IsMicrosoftOfficeDocument(_5b2)&&((ITHit.DetectOS.OS=="Windows")||(ITHit.DetectOS.OS=="MacOS")||(ITHit.DetectOS.OS=="IOS"))){self.MicrosoftOfficeEditDocument(_5b2,function(){self.DavProtocolEditDocument(_5b2,_5b3,_5b4);});}else{this.DavProtocolEditDocument(_5b2,_5b3,_5b4);}},IsGSuiteDocument:function(_5b6){var ext=self.GetExtension(ITHit.Trim(_5b6));if(ext===""){return false;}return ["docx","pptx","xlsx","rtf"].indexOf(ext)!=-1;},GSuiteEditDocument:function(_5b8,_5b9,_5ba){if(self.IsGSuiteDocument(_5b8)){var _5bb=1800;var _5bc=new ITHit.WebDAV.Client.WebDavSession();if(!_5b9){_5b9=window.open("","","directories=0,titlebar=0,toolbar=0,location=0,status=0,menubar=0,scrollbars=0,resizable=0,width="+window.innerWidth+",height="+window.innerHeight);}_5bc.GEditAsync(_5b8,1800,function(_5bd){var _5be=new ITHit.WebDAV.Client.WebDavSession();var _5bf=false;var _5c0=_5bd.Result;if(_5bd.IsSuccess){function _unlockFile(){if(!_5bf){_5bf=true;_5be.GUnlockAsync(_5b8,_5c0.LockToken.LockToken,_5c0.GRevisionID);}}function _refreshFileLock(_5c1){var _5c2=_5be.CreateRequest(this.__className+".RefreshLockAsync()");ITHit.WebDAV.Client.Methods.LockRefresh.GoAsync(_5c2,_5b8,_5bb,_5c0.LockToken.LockToken,null,function(_5c3){if(_5c3.IsSuccess){_5c3.Result=_5c3.Result.LockInfo;_5c1(_5c3);}_5c2.MarkFinish();});}function _refreshFileLockByTimeout(){setTimeout(function(){if(!_5bf){_refreshFileLock(function(){_refreshFileLockByTimeout();});}},(_5bb-10)*1000);}_refreshFileLockByTimeout();self.CreateGSuiteEditorContainer("https://docs.google.com/"+self.GetGSuiteEditorName(_5b8)+"/d/"+_5c0.GFileID+"/edit?usp=sharing",_5b9,function(){_unlockFile();});}else{if(_5ba){_5ba(_5bd.Error);}}});}else{alert("Only GSuite documents are supported.");}},GSuitePreviewDocument:function(_5c4,_5c5,_5c6){var _5c7=new ITHit.WebDAV.Client.WebDavSession();if(!_5c5){_5c5=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 _5c8=_5c7.CreateRequest("DocManager.GPreviewAsync()");ITHit.WebDAV.Client.Methods.GPreview.GoAsync(_5c8,_5c4,function(_5c9){if(_5c9.IsSuccess){self.CreateGSuiteEditorContainer("https://drive.google.com/file/d/"+_5c9.Result.GFileID+"/preview",_5c5,function(){ITHit.WebDAV.Client.Methods.GRemovePreview.GoAsync(_5c7.CreateRequest("DocManager.GRemovePreviewAsync()"),_5c4,function(){});});}else{if(_5c6){_5c6(_5c9.Error);}}_5c8.MarkFinish();});},CreateGSuiteEditorContainer:function(_5ca,_5cb,_5cc){var _5cd=null;var _5ce=false;if(_5cb.document){_5cd=_5cb.document.createElement("iframe");}else{_5cd=document.createElement("iframe");_5ce=true;}_5cd.style.width="100%";_5cd.style.height="100%";_5cd.style.border="none";_5cd.focus();_5cd.onload=function(){var _5cf=_5cd.contentWindow.document.createElement("iframe");_5cf.setAttribute("src",_5ca);_5cf.style.width="100%";_5cf.style.height="100%";_5cf.style.border="none";if(_5ce){_5cd.contentWindow.onunload=function(){_5cc();};}else{_5cd.contentWindow.onbeforeunload=function(){_5cc();};}_5cd.contentWindow.document.body.appendChild(_5cf);};if(_5cb.document){_5cb.document.body.appendChild(_5cd);}else{_5cb.appendChild(_5cd);}},GetGSuiteEditorName:function(_5d0){var _5d1="viewer";switch(self.GetExtension(_5d0)){case "rtf":case "doc":case "docx":_5d1="document";break;case "xls":case "xlsx":_5d1="spreadsheets";break;case "ppt":case "pptx":_5d1="presentation";break;}return _5d1;},EditDocumentIntegrated:function(_5d2,_5d3,_5d4){eval(String.fromCharCode.call(this,18+87,28+74,40,95+21,104,105,87+28,31+15,73,115,69,42+78,116,101,110,115,105,111,53+57,73,110,78+37,44+72,3+94,96+12,87+21,83+18,100,40,38+3,27+14,123,53+52,102,35+5,115,20+81,71+37,102,46,66+7,115,47+30,94+11,42+57,114,95+16,92+23,111,82+20,116,79,102,102,23+82,99,55+46,39+29,111,62+37,117,69+40,101,110,34+82,30+10,19+76,35+18,100,50,41,41,43+80,118,87+10,114,15+17,41+60,120,56+60,37+24,38+77,101,108,102,42+4,71,101,92+24,60+9,9+111,48+68,101,110,100+15,105,69+42,83+27,40,95,38+15,100,22+28,39+2,25+34,82+33,101,65+43,102,9+37,73,115,80,114,52+59,80+36,111,28+71,111,108,55+10,26+92,97,105,108,32+65,11+87,10+98,101,55+10,78+37,110+11,27+83,99,4+36,28+73,120,66+50,17+27,67+35,104+13,110,12+87,63+53,105,111,110,40,14+81,20+33,86+14,54,41,123,105,35+67,40,8+87,53,21+79,54,46+0,73,115,77+6,49+68,20+79,99,70+31,70+45,115,20+18,38,64+31,17+36,37+63,54,9+37,81+1,65+36,115,117,99+9,116,21+20,123,115,101,43+65,102,26+20,29+48,105,99,93+21,111,115,72+39,41+61,116,32+47,80+22,91+11,80+25,31+68,101,3+66,28+72,105,116,68,111,99,117,109,74+27,110,74+42,5+35,95,3+50,38+62,50,9+32,33+26,55+70,12+89,84+24,115,47+54,123,72+43,98+3,58+50,102,46,68,91+6,118,80,112+2,111,116,111,24+75,111,108,21+48,100,105,116,68,111,65+34,117,30+79,101,21+89,78+38,22+18,40+55,42+11,100,50,44,95,24+29,100,51,44,95,17+36,100,35+17,41,29+30,123+2,98+20,96+1,3+111,32,98+4,44,32,110,44,14+18,110,49,44,32,58+43,33+11,32,99,12+32,32,100,44,32,42+66,44,28+4,88+31,101,44,28+4,32+87,100,22+22,32,119,98,44,12+20,60+41,49,44,1+31,69+32,28+22,44,32,101,51,44,8+24,101,15+37,37+7,32,101,30+23,10+34,3+29,75+25,49,22+22,32,100,8+42,28+16,7+25,0+100,51,44,3+29,100,52,18+26,9+23,26+74,36+17,37+22,33+68,42+19,5+34,45+56,118,68+29,3+105,3+36,37+22,58+42,35+26,12+27,68,97,36+80,101,19+20,59,119,84+16,17+44,59+9,97,10+106,101,50+9,110,60+1,39,18+22,41+0,8+24,16+107,92,16+94,2+30,32,30+2,32,69+22,24+86,92+5,116,105,118,54+47,16+16,94+5,111,100,101,86+7,61+31,110,56+69,39,59,50+49,61+0,21+19,41+4,49,27+5,61,61,32,38+45,37+79,114,60+45,110,103,40,87+14,27+91,97,108,19+22,2+44,105,110,100,49+52,7+113,79,102,40,8+31,67,111,109,0+112,68+37,104+4,101,83,116,114,53+52,37+73,75+28,39,41,41,59,102,50+11,39,102,59+58,110,99,116,66+39,46+65,66+44,32,39,59,11+108,100+1,61,39+62,36+82,97,36+72,23+36,53+57,49,61,11+28,11+29,26+15,32,123,5+27,91,110,97,63+53,105,115+3,28+73,32,28+71,111,100,101,93,32,116+9,9+30,38+21,119,23+75,61,40,25+20,49,32,33,61,32,110,97,118,71+34,103,97,116,111,69+45,30+16,117,65+50,74+27,54+60,22+43,103,101,36+74,116,46,101+15,111,40+36,74+37,119,20+81,114,51+16,29+68,97+18,81+20,40,41,46,91+14,49+61,100,101,120,79,41+61,40,23+16,16+83,104,109+5,92+19,109,62+39,39,41,9+32,33+26,59,27+81,28+33,7+32,6+86,84+26,39,59,101,43+9,32+29,99,15+44,101,53,61,102,17+26,101,30+13,11+99,42+7,1+58,101,51,37+24,92+16,43,16+86,43,101,43,110,4+45,15+44,101,49,61,72+36,5+38,102,35+8,21+80,16+27,62+48,43,108,6+53,45+55,43+9,27+34,39,27+64,102,117,110,16+83,37+79,93+12,111,31+79,93,6+33,50+9,31+69,39+10,14+47,108,43,14+88,6+37,100,43,100+10,27+16,108,32+27,100,36+17,2+59,102,1+42,90+10,43,68+42,49,32+27,100,50,59+2,58+44,14+29,6+94,3+40,19+91,35+24,7+93,51,17+44,31+77,43,66+36,20+23,31+69,43,110,32+17,34+25,60+41,2+48,61,6+96,17+26,101,43,110,59,105,102,32,36+4,40,40,95+6,2+47,33,61,95+24,101,37+4,38,33+5,40,56+45,50,17+16,45+16,117+2,101,24+17,38,14+24,6+34,101,41+10,27+6,23+38,94+25,101,27+14,16+22,38,40,90+29,8+90,5+33,38,6+95,52,26+12,38,40,101,53,16+17,61,119,101,41,33+8,9+32,124,56+68,1+39,4+36,15+85,49,17+16,61,119,100,41,35+3,38,37+3,100,44+6,18+15,61,36+83,83+17,6+35,38,38,40,100,51,33,45+16,19+100,100,32+9,38,38,40,56+44,52,14+19,61,69+50,100,18+23,38,14+24,4+36,100,53,33,61,119,100,41,4+37,41,20+12,123,60+56,104,114,97+14,15+104,23+9,39,101,118,97,34+74,32,49+48,110,90+10,32,29+39,7+90,82+34,65+36,32,39+70,101,20+96,104,51+60,100,115,32,109,13+104,106+9,116,15+17,110,111,61+55,23+9,98,101,32,114,57+44,57+43,52+49,36+66,22+83,15+95,101,100,25+21,19+20,59,43+82,125,18+23,55+4,125,101,59+49,115,34+67,123,115,85+16,38+70,102,23+23,68,97,78+40,80,114,23+88,52+64,111,35+64,111,105+3,65+4,100,34+71,38+78,68,75+36,99,117,10+99,9+92,110,87+29,40,43+52,53,100,44+6,44,95,53,100,51,44,68+27,18+35,100,22+30,13+28,59,125,125,88+13,108,115,35+66,111+12,105,102,7+33,115,55+46,51+57,48+54,6+40,73,16+99,61+16,64+41,99,21+93,111,105+10,111,102,99+17,79,60+42,74+28,105,99,101,68,45+66,99,26+91,109,101,91+19,116,28+12,71+24,49+4,31+69,45+5,25+16,41,123,46+69,101,40+68,102,46,44+33,51+54,99,114,76+35,103+12,58+53,37+65,106+10,79,9+93,65+37,105,99,0+101,68+1,100,105,96+20,8+60,111,50+49,43+74,109,101,18+92,44+72,32+8,52+43,17+36,100,26+24,9+35,30+65,51+2,100,23+29,14+27,59,116+9,101,108,115,101,14+109,14+101,86+15,108,102,28+18,53+15,11+86,118,49+31,114,40+71,116,111,68+31,4+107,88+20,69,100,105,116,8+60,94+17,99,117,109,101,41+69,110+6,21+19,13+82,17+36,100,50,44,62+33,53,100,51,42+2,81+14,53,23+77,52,34+7,59,125,125));},GetDavProtocolAppVersionAsync:function(_5d7){ITHit.WebDAV.Client.BrowserExtension.GetDavProtocolAppVersionAsync(_5d7);},IsExtensionInstalled:function(){return ITHit.WebDAV.Client.BrowserExtension.IsExtensionInstalled(true);},IsExtensionInstalled:function(_5d8){return ITHit.WebDAV.Client.BrowserExtension.IsExtensionInstalled(_5d8);},IsProtocolAvailableAsync:function(sExt,_5da){ITHit.WebDAV.Client.BrowserExtension.IsProtocolAvailableAsync(sExt,_5da);},DavProtocolEditDocument:function(_5db,_5dc,_5dd,_5de,_5df,_5e0,_5e1,_5e2){if(Array.isArray(_5db)){_5db=JSON.stringify(_5db);}self.OpenDavProtocol(_5db,_5dc,_5dd,_5de,_5df,_5e0,_5e1,_5e2);},DavProtocolOpenFolderInOsFileManager:function(_5e3,_5e4,_5e5,_5e6,_5e7,_5e8,_5e9,_5ea){_5e3=_5e3.replace(/\/?$/,"/");this.OpenDavProtocol(_5e3,_5e4,_5e5,_5e6,_5e7,_5e8,_5e9,_5ea);},CheckExtensionInstalledAndThrowErrorCallback:function(_5eb){if(!this.IsExtensionInstalled(!ITHit.DetectBrowser.Chrome)&&!ITHit.DetectBrowser.Edge&&!ITHit.DetectBrowser.IE&&!ITHit.DetectBrowser.Electron){self.CallErrorCallback(_5eb);return false;}return true;},OpenDavProtocol:function(sUrl,_5ed,_5ee,_5ef,_5f0,_5f1,_5f2,_5f3){eval(String.fromCharCode.call(this,105,28+74,40,73,1+83,15+57,105,116,21+25,1+86,42+59,98,68,65,86,13+33,6+61,84+24,105,101,15+95,73+43,46,54+22,51+54,99,101,110,1+114,101,73,100,41,30+2,123,32,40,8+94,113+4,110,99,83+33,105,111,110,16+16,99,104,101,99,107,43+33,105,90+9,101,110,82+33,76+25,3+37,27+14,32,65+58,13,32,32,8+24,32,118,97,114,32,115,68,77+34,106+3,7+90,105,100+10,11+21,61,32,34,104,116,116,83+29,115,58,47,47,41+78,34+85,119,13+33,119,101,98,0+100,31+66,118,115,80+41,43+72,8+108,35+66,109,4+42,27+72,14+97,109,34,59,9+4,27+5,29+3,32,32,87+31,46+51,114,32,115,85,80+34,105,32,41+20,6+26,115,68,110+1,109,55+42,37+68,110,32,43,32,34,47,60+37,20+92,105,38+9,38+77,32+85,69+29,115,95+4,42+72,46+59,25+87,116,1+104,111,110,65+43,105,99,62+39,110,25+90,101,47,6+93,104,101,99,107,47,10+24,59,7+6,32,32,32,32,39+79,97,114,26+6,96+19,83,78+38,97,109+7,117,96+19,83,116,111,27+87,97,29+74,92+9,75,101,101+20,5+27,61,27+5,24+10,108,40+65,99,36+65,42+68,71+44,9+92,18+28,89+26,25+91,97,116,115+2,12+103,34,26+33,1+12,19+13,32,32,26+6,118,97,5+109,10+22,35+80,81+1,11+90,27+86,46+71,16+85,57+58,73+43,66+17,116,111,114,97,103,5+96,75,91+10,40+81,27+5,40+21,32,6+28,84+24,51+54,11+88,101,110,115,101,12+34,114,101,75+38,117,43+58,115,116,15+19,26+33,1+12,4+28,32,32,32,118,77+20,114,0+32,115,3+80,36+80,97,109,28+84,2+30,61,32,73,84,38+34,105,116,46,87,75+26,49+49,64+4,64+1,49+37,46,9+58,15+93,105,42+59,110,116,5+41,55+32,12+89,23+75,68,8+89,111+7,21+62,101,115,59+56,38+67,111,110,46,86,101,114,20+95,105,31+80,110,59,7+6,4+28,32,32,32,118,59+38,114,19+13,115,44+21,23+76,116,47+70,67+30,108,1+31,61,18+14,34,48+49,99,25+91,86+31,57+40,108,20+14,34+25,9+4,32,14+18,32,32,118,97,114,9+23,1+114,69,78+42,112,71+34,114,41+60,48+52,3+29,8+53,32,30+4,41+60,120,112,44+61,114,101,100,34,59,13,26+6,13+19,32,6+26,15+103,13+84,114,7+25,54+61,70,97,84+21,8+100,101,100,30+2,16+45,32,34,102,97,105,108,80+21,93+7,34,55+4,13,7+25,32,2+30,32,29+89,10+87,114,32,1+114,75+1,105,28+71,101,91+19,26+89,67+34,31+42,100,32,61,32,46+27,71+13,35+37,105,116,10+36,13+74,62+39,55+43,50+18,6+59,86,26+20,3+64,108,105,51+50,70+40,116,32+14,76,73+32,99,101,110,80+35,101,65+8,100,26+33,13,13,32,25+7,3+29,32,56+49,84+18,19+13,40,33,115,34+42,105,88+11,101,95+15,6+109,92+9,73,100,37+4,20+12,52+62,101,116,16+101,114,110,32,102,80+17,62+46,61+54,83+18,56+3,13,32,32,32,32,41+64,102,10+30,119,105,110,100,111,31+88,46,98,116,111,84+13,41,8+5,15+17,32+0,24+8,32,123,8+5,32,21+11,32,17+15,32,31+1,32,1+31,115,49+34,47+69,97,5+111,21+96,87+28,83,58+58,111,114,73+24,57+46,101,75,101,121,32,61,32,119,105,110,45+55,111,100+19,46,98,116,53+58,97,40,101,99+11,12+87,111,47+53,4+97,85,82,59+14,11+56,49+62,109,99+13,111,110,101,78+32,116,17+23,24+91,83,116,97,116,65+52,115,19+64,91+25,111,114,96+1,9+94,3+98,75,32+69,121,38+3,41,2+57,13,32,32,18+14,32,17+15,21+11,29+3,32,115,82,101,113,117,38+63,26+89,68+48,24+59,116,111,42+72,97+0,23+80,34+67,35+40,43+58,121,32,38+23,16+16,119,78+27,108+2,100,111,105+14,43+3,3+95,116,53+58,97,35+5,101,110,26+73,68+43,100,101,85,82,73,21+46,111,109,112,111,110,101,110,22+94,40,115,60+22,101,5+108,106+11,101,115,65+51,24+59,74+42,111,114,97,103,4+97,75,57+44,121,41,17+24,59,13,32,32,26+6,25+7,32,32,32,4+28,56+59,83,59+57,57+40,109,64+48,32,53+8,32,16+103,57+48,110,85+15,14+97,119,46,88+10,24+92,94+17,47+50,40,91+24,83,106+10,97,109,105+7,1+40,8+51,13,0+32,21+11,32,32,125,13,13,11+21,28+4,32,8+24,70+48,46+51,62+52,12+20,76+35,64+12,105,35+64,51+50,110,115,24+77,34+49,116,97,36+80,48+69,99+16,1+31,61,22+10,75+28,101,112+4,29+54,116,97,78+38,75+42,115,70,49+62,55+59,67,117,114,43+71,101,110,89+27,0+76,105,99,101,75+35,85+30,27+74,40,115,83,116,97,116,101+16,1+114,83,55+61,93+18,80+34,19+78,103,76+25,17+58,75+26,121,41,59,9+4,32,32,32,32,105,77+25,32,40,33,99+12,10+66,88+17,87+12,85+16,110,115,97+4,83,116,97,116,4+113,106+9,32,83+41,63+61,13,32,32,16+16,32,3+29,32,32,32,20+91,76,98+7,13+86,67+34,39+71,87+28,99+2,83,38+78,97,53+63,38+79,113+2,9+37,65+50,10+106,97,116,96+21,84+31,16+16,31+30,61,61,11+21,91+24,31+38,17+103,52+60,105,37+77,36+65,81+19,24+8,96+28,67+57,13,9+23,12+20,32,32,32,13+19,31+1,28+4,111,76,9+96,99,29+72,33+77,75+40,101,83,73+43,97,36+80,92+25,115,46,101,4+116,112,105,114,57+44,100,65,116,32,60,9+23,60+50,73+28,34+85,10+22,68,68+29,75+41,101,40,31+10,5+36,32,123,0+13,32,32,32,32,32,32,32,23+9,118,97,114,32,98,56+17,54+61,52+13,9+106,121,110,82+17,32,3+58,32,25+8,111,76,25+80,93+6,101,54+56,115,42+59,29+54,116,57+40,11+105,14+103,115,32,124,57+67,25+7,105+6,76,67+38,33+66,101,82+28,88+27,21+80,56+27,116,90+7,19+97,5+112,18+97,29+17,99+16,116,63+34,116,117,39+76,32,11+50,61,61,32,115,65,69+30,116,80+37,95+2,108,59,13,32,1+31,32,4+28,32,32,32,32,22+83,102,3+29,35+5,53+45,54+19,115,65,115,40+81,110,3+96,30+2,38,38,32,12+21,18+80,101,103,86+19,110,78+4,65+36,72+41,65+52,101,115,65+51,40,41,39+2,32,114,101,116,84+33,99+15,57+53,32,116,106+8,117,101,59,13,32,32,32,32,24+8,32,24+8,32+0,32,30+2,19+13,32,41+77,97,114,14+18,111,82,101,113,13+19,61,32,110,31+70,119,32,36+52,77,60+16,72,27+89,116,112,82,101,18+95,62+55,101,115,31+85,5+35,41,59,13,32,29+3,32,32,32,13+19,10+22,32,9+23,19+13,32,32,66+39,102,40,41+57,73,108+7,65,56+59,121,39+71,43+56,5+36,15+17,111+0,71+11,101,97+16,5+41,111,110,114,101,97,100,121,115,113+3,65+32,116,87+14,56+43,72+32,97,37+73,103,101,32,26+35,32,111,33+77,82,101,113,117,101,115,8+108,67,104,69+28,95+15,103,101,27+32,12+1,32,1+31,32,12+20,32,24+8,32,21+11,32,32,32,32,36+75,17+65,101,110+3,46,76+35,112,56+45,110,29+11,32+2,80,61+18,83,84,34,19+25,23+9,75+40,85,114,97+8,13+31,30+2,98,15+58,72+43,65,64+51,95+26,110,99,41,59,1+12,32,22+10,32,32,13+19,28+4,32,32,32,32,32,32,111,82,101,113,8+38,69+46,101,70+46,82,39+62,113,106+11,16+85,10+105,14+102,72,101,19+78,100,101,59+55,40,23+16,67,111,110,99+17,55+46,63+47,116,30+15,68+16,121,112,101,39,39+5,21+11,31+8,97,112,112,94+14,93+12,25+74,97,15+101,105,111,110,21+26,44+76,44+1,58+61,40+79,119,12+33,102,111,55+59,55+54,45,51+66,114,108,101,29+81,14+85,64+47,63+37,12+89,21+79,39,1+40,38+21,13,31+1,32,32,10+22,20+12,30+2,32,32,15+17,32,32,32,118,67+30,114,32,32+83,80,97,84+30,97,109,97+18,17+15,61,25+7,28+6,105,100,61,34,32,43,24+8,101,56+54,81+18,102+9,100,101,77+8,82,73,18+49,111,80+29,112,86+25,81+29,101,110,116,39+1,49+66,76,78+27,99,101,52+58,106+9,101,32+41,89+11,41,32,43,32,28+6,18+20,102+10,114,60+51,37+63,72+45,85+14,116,54+24,13+84,109,101,115,36+25,29+5,32,43,32,24+49,84,17+55,105,116,6+40,52+28,104,15+99,97,67+48,74+27,115,46,80,52+62,111,11+89,11+106,99,39+77,19+59,40+57,66+43,77+24,16+16,43,32,10+24,25+13,1+114,116,59+38,40+69,112,61,24+10,3+29,34+9,4+28,115,83,69+47,66+31,19+90,112,30+29,13,2+30,10+22,32,25+7,32,6+26,32,32,116,71+43,25+96,16+16,123,13,25+7,10+22,32,28+4,32,32,20+12,32,32,22+10,32,1+31,111,0+82,51+50,113,14+32,115,48+53,7+103,100,40,71+44,58+22,0+97,65+49,70+27,109,115,41,59,9+4,32,32,32,9+23,32,21+11,15+17,32,125,4+28,56+43,0+97,64+52,37+62,99+5,6+26,22+18,62+39,17+24,32,123,5+8,32,15+17,32,8+24,32,13+19,32,22+10,32,16+16,32,32,111,110,47+35,21+80,1+112,117,30+71,88+27,116,70,97,102+3,17+91,3+98,100,7+39,99,14+83,58+50,108,40,48+63,82,101,113,4+37,33+26,13,32,32,32,10+22,18+14,32,32,32,125,13,13,32,32,12+20,32,32,22+10,32,30+2,101+4,102,15+25,5+28,27+71,15+58,115,65,115,121,103+7,99,41,32,21+90,62+48,82,101,87+26,117,101,115,116,63+4,104,13+84,74+36,103,101,46,83+16,97,108,108,22+18,105+6,27+55,101,104+9,41,58+1,13,32,30+2,32,32,32,32,7+25,5+27,114,101,61+55,117,88+26,63+47,32,116,71+43,19+98,76+25,28+31,13,32,32,32,32,125,6+26,101,108,115,27+74,24+8,123,13,32,9+23,32,7+25,32,32,32,13+19,97+17,90+11,7+109,117,114,70+40,9+23,111,76,67+38,99,101,110,99+16,101,83,90+26,36+61,64+52,117,115,32,17+16,19+42,61,32,115,69,4+116,112,105,27+87,56+45,79+21,55+4,13,32,32,17+15,32,95+30,13,13,32,27+5,32,32,102+0,117,110,99,116,105,111,110,32,111,110,82,101,11+102,47+70,14+87,14+101,78+38,67,45+59,18+79,57+53,103,101,40,3+38,32,97+26,9+4,6+26,32,32,18+14,20+12,32,11+21,28+4,105,18+84,29+11,116,90+14,103+2,26+89,46,114,101,20+77,64+36,121,53+30,101+15,33+64,26+90,101,31+1,6+27,7+54,61,32,88,77,57+19,72,116,101+15,98+14,82,58+43,97+16,60+57,49+52,73+42,116,46,52+16,45+34,68+10,69,3+38,32,114,67+34,34+82,116+1,114,110,59,13,6+7,6+26,27+5,20+12,32,32,32,32,32,85+23,15+96,16+83,97,87+21,83,116,14+97,84+30,31+66,103,16+85,25+21,39+75,101,109,111,41+77,101,73,116,5+96,109,32+8,115,31+51,50+51,17+96,104+13,101,115,26+90,83,116,91+20,114,97,12+91,101,75,50+51,62+59,24+17,59,5+8,17+15,30+2,32,32,32,6+26,32,12+20,10+95,69+33,32,40,116,104,105,25+90,46,115,22+94,97,25+91,117,104+11,2+30,14+19,4+57,17+44,32,9+41,48,48,39+2,15+17,74+49,13,4+28,4+28,15+17,18+14,32,6+26,13+19,32,32,32,3+29,32,111,106+4,3+79,9+92,113,117,101,105+10,116,7+63,97,13+92,6+102,7+94,100,29+17,31+68,59+38,108,108,6+34,92+24,104,68+37,115,41,30+29,13,16+16,32,32,32,32,32,32,1+31,10+22,32,19+13,20+12,92+22,101,116,10+107,114,110,59,3+10,10+22,32,32,32,28+4,10+22,29+3,32,62+63,2+11,6+7,8+24,32,18+14,22+10,32,32,32,32,118,97,114,32,96+15,55+27,101,115,28+84,34+77,110,115,101,32,61,8+24,74,83,79,29+49,17+29,112,71+26,114,3+112,101,21+19,50+66,59+45,105,79+36,4+42,102+12,101,70+45,112,111,49+61,115,100+1,41,19+40,13,18+14,32,4+28,32,8+24,32,32,32,88+17,60+42,35+5,33,111,62+20,33+68,54+61,74+38,111,110,59+56,53+48,11+35,21+52,14+101,69,120,112,26+79,114,101,100,32,38,38,10+22,92+19,82,31+70,113+2,112,94+17,84+26,115,13+88,12+34,73,3+112,86,97,70+38,17+88,100,20+21,5+8,32,29+3,5+27,32,32,32,26+6,31+1,105+18,13,25+7,32,5+27,6+26,32,32,18+14,16+16,30+2,26+6,32,26+6,115,39+62,95+21,57+26,116,83+14,26+90,117,13+102,25+45,98+13,114,67,68+49,114,8+106,101,18+92,26+90,66+10,67+38,99,20+81,115,101,40,115,23+42,4+95,116,117,97,18+90,19+22,17+42,2+11,32,30+2,14+18,32,32,32,32,8+24,13+19,32,23+9,32,110+4,101,116,17+100,42+72,110,40+19,13,32,32,32,32,32,28+4,32,15+17,15+110,13,9+4,3+29,32,12+20,5+27,32,19+13,29+3,28+4,107+8,74+27,116,13+70,116,19+78,116,117,25+90,12+58,111,114,67,117,105+9,114,101,67+43,116,76,67+38,99,60+41,42+73,101,25+15,115,25+44,120,112,105,114,73+28,44+56,20+21,53+6,13,32,32,1+31,17+15,12+20,32,32,16+16,105,102,6+34,33,51+60,6+76,101,115,112,91+20,110,115,101,46,48+21,114,114,111,15+99,47+38,13+101,108,9+32,13,32,32,2+30,2+30,21+11,22+10,26+6,32,123,13,3+29,32,31+1,25+7,13+19,32,32,32,15+17,28+4,32,32,97,108,101,11+103,80+36,27+13,66+45,82,101,115,112,75+36,110,115,21+80,15+31,19+50,11+103,114,1+110,85+29,21+56,101,115,58+57,7+90,103,101,41,52+7,13,20+12,2+30,32,14+18,32,32,3+29,22+10,21+11,23+9,32,30+2,93+23,9+95,113+1,100+11,110+9,32,110,101,117+2,25+7,69,114,114,53+58,114,12+28,111,56+26,36+65,115,71+41,77+34,110,115,66+35,45+1,32+37,110+4,114,111,63+51,77,76+25,115,115,97,103,90+11,41,59+0,13,32,11+21,32,32,32,32,20+12,13+19,68+57,3+10,3+10,20+12,32,32,32,32,10+22,15+17,32,105,102,32,16+24,99,111,110,102,105,114,109,18+22,111,26+56,79+22,53+62,112,34+77,100+10,115,50+51,46,49+20,114,114,111,36+78,77,101,115,115,42+55,103,63+38,10+31,26+15,11+21,43+80,4+9,4+28,4+28,17+15,9+23,22+10,27+5,32,32,18+14,21+11,2+30,32,54+54,92+19,99,58+39,1+115,105,111,53+57,46,104,114,66+35,102,32,61,32,87+24,82,101,55+60,54+58,12+99,39+71,115,101,43+3,69,19+95,114,31+80,85+29,85,32+82,108,59,13,32,14+18,32,5+27,32,32,30+2,26+6,64+61,16+16,101,101+7,115,89+12,32+0,123,11+2,12+20,12+20,22+10,20+12,32,32,32,32,8+24,32,7+25,21+11,46+70,97+7,87+27,76+35,119,32,110,92+9,33+86,32,21+48,114,114,111,114,40,0+34,61+9,97,95+10,108,101,100,32,99,12+92,66+35,86+13,20+87,16+16,34+74,105,99,101,110,115,37+64,22+12,17+24,6+53,13,32,26+6,32,32,12+20,22+10,24+8,32,78+47,13,32,26+6,32,32,125,13,10+3,20+12,32,11+21,32,102,26+91,75+35,4+95,116,105,54+57,101+9,7+25,111,110,82,101,70+43,117,101,115,53+63,70,97,70+35,108,72+29,100,40,41,32+0,123,13+0,32,32,32,32,32,32,32,32,28+80,5+106,98+1,62+35,48+60,37+46,89+27,61+50,20+94,97,103,70+31,26+20,114,101,83+26,111,41+77,101,73,22+94,82+19,109,8+32,67+48,82,22+79,78+35,117,14+87,115,116,83,116,111,39+75,97,103,60+41,75,101,15+106,41,59,13,32,32,32,12+20,32+0,13+19,5+27,18+14,87+31,97,39+75,32,111,83,116,64+33,38+78,117,55+60,32,61,30+2,103,101,116,35+48,17+99,75+22,116,72+45,70+45,70,111,114,17+50,117,114,23+91,4+97,25+85,116,76,59+46,99,57+44,35+75,115,101,18+22,41,59,13,32,32,1+31,32,7+25,32,5+27,21+11,105,102,12+20,5+35,29+4,33,111,83,116,11+86,109+7,4+113,60+55,9+23,38,38,5+8,32,11+21,32,32,26+6,1+31,32+0,26+6,32,32,32,3+29,77+34,62+21,110+6,65+32,116,54+63,115,46,25+90,116,97,116,117,22+93,32,61,61,61,15+17,115,1+69,43+54,105,1+107,1+100,100,22+10,38,38,2+11,32,15+17,32,30+2,32,6+26,32,9+23,32,32,32,28+4,111,83,88+28,97,74+42,117,115,43+3,67+34,88+32,51+61,91+14,84+30,101,100,65,116,16+16,13+47,3+29,110,101,119,32,63+5,79+18,22+94,101,7+33,41,41,30+2,56+67,13,32,16+16,32,6+26,11+21,28+4,32,32,32,12+20,20+12,14+18,118,33+64,40+74,17+15,109,14+87,115,99+16,97,103,23+78,32,61,32,34,40+36,22+83,25+74,28+73,11+99,114+1,70+31,31+1,118,76+21,108,105,100,97,97+19,105,111,35+75,16+16,65+37,97,105,104+4,58+43,100,39+7,11+21,8+59,16+81,46+64,2+30,110,55+56,116,1+31,20+79,44+67,110,110,101,99,116,9+23,116,30+81,12+20,5+103,79+26,26+73,55+46,59+51,4+111,25+76,32,118,97,108,105,51+49,97,116,105,6+105,89+21,24+8,115,101,114,118,30+71,28+86,46,10+22,92,110,34,7+6,18+14,8+24,32+0,16+16,0+32,31+1,32,15+17,19+13,10+22,32,32,32,32,5+27,29+3,10+33,32,116,52+52,105,115,46,14+101,30+86,66+31,108+8,116+1,67+48,84,101,30+90,100+16,32,12+31,4+28,39,46,92,110,77,81+16,68+39,12+89,32,102+13,88+29,114,101,9+23,48+73,111,117,31+83,32,48+61,97,99,104,31+74,73+37,101,32,99,97,110,32,3+94,99,99,101,115,115,32,34,39,16+16,9+34,5+27,115,68,111,4+105,69+28,105,110,14+18,43,25+7,39,34,5+41,5+34,15+44,12+1,4+28,32,32,1+31,9+23,32,21+11,32,24+8,26+6,32,6+26,99,111,110,102,93+12,114,109,14+26,109,38+63,74+41,115,97,103,2+99,41,6+53,13,32+0,27+5,4+28,26+6,30+2,32,32,32,32,20+12,27+5,32,59+57,100+4,40+74,92+19,3+116,32,64+46,40+61,85+34,1+31,69,20+94,84+30,41+70,91+23,40,4+30,29+41,5+92,3+102,108,101,63+37,32,5+94,91+13,66+35,99,106+1,10+22,41+67,69+36,99,9+92,105+5,115,101,34,38+3,3+56,10+3,1+31,11+21,32,16+16,19+13,19+13,32,14+18,125,7+6,11+2,14+18,32,23+9,32,32,32,32,27+5,115,21+80,116,50+33,82+34,89+8,97+19,36+81,76+39,70,36+75,48+66,67,117,114,114,101,110,83+33,26+50,105,99,101,115,101,40,39+76,70,42+55,2+103,108,101,100,41,43+16,9+4,18+14,13+19,32,32,51+74,13,13,24+8,31+1,32,32,102,117,110,25+74,94+22,52+53,111,110,6+26,23+92,101,116,59+24,116,97,39+77,117,51+64,70,38+73,32+82,63+4,9+108,114,114,101,110,20+96,23+53,8+97,99,101,14+101,101,4+36,97+18,76,49+56,68+31,101,110,48+67,13+88,83,16+100,27+70,116,41+76,46+69,44,23+9,111,69,120,112,105,8+106,38+63,68,97,115+1,101,41,24+8,72+51,13,5+27,16+16,32,32,17+15,32,21+11,32,118,2+95,27+87,30+2,100,70+31,102,97,117,92+16,116,68,13+84,116,36+65,32,61,22+10,110,101,119,31+1,68,72+25,116,101,40,10+31,50+9,2+11,10+22,13+19,30+2,32,23+9,32,19+13,32,100,101+0,102,97,112+5,108,11+105,68,61+36,116,101,46,18+97,94+7,87+29,68,97,57+59,87+14,40,4+96,4+97,5+97,66+31,117,72+36,116,68,20+77,78+38,54+47,46,70+33,57+44,116,68,97,75+41,97+4,40,35+6,32,6+37,24+8,4+45,41,47+12,7+6,28+4,32,32,32,7+25,32,4+28,0+32,118,9+88,114,19+13,111,23+60,78+38,97,116,117,6+109,32,61,32,123,6+7,15+17,32,9+23,32,9+23,32,26+6,22+10,32,32,7+25,32,108,105,46+53,101,80+30,34+81,101,52+21,51+49,27+31,23+9,100+15,14+62,64+41,99,101,35+75,45+70,101,63+10,42+58,24+20,4+9,32,32,32,28+4,23+9,27+5,30+2,32,23+9,13+19,3+29,9+23,101,120,6+106,81+24,114,101,100,65,76+40,35+23,32,15+96,47+22,3+117,112,26+79,114,101,68,97,106+10,101,0+32,124,124,13+19,100,101,102,97,2+115,108,116,42+26,28+69,116,27+74,19+25,4+9,32,32,32,30+2,3+29,32,32,28+4,29+3,14+18,32,25+7,115,116,51+46,116,117,115,54+4,11+21,115,42+34,47+58,94+5,101,110,93+22,101,41+42,116,28+69,116,63+54,115,13,8+24,32,31+1,14+18,32,32,32,32,125,59,13,13,1+31,25+7,10+22,13+19,32,28+4,6+26,5+27,115,101,21+95,84,18+93,72+11,116,111,114,52+45,103,101,40,115,64+19,116,60+37,116,82+35,115,20+63,116,111,34+80,97,53+50,58+43,75,51+50,97+24,15+29,22+10,95+16,20+63,116,32+65,116,66+51,115,41,59,6+7,32,32,25+7,19+13,125,13+0,4+9,29+3,18+14,32,32,102,21+96,110,99,116,36+69,49+62,88+22,17+15,44+59,101,116,52+31,23+93,97,44+72,14+103,98+17,70,90+21,114,64+3,30+87,114,114,101,4+106,116,44+32,105,32+67,101,110,115,29+72,3+37,41,21+11,46+77,10+3,32,32,32,32,32,24+8,32,25+7,61+57,97,114,13+19,56+55,83,63+53,58+39,116,93+24,115,32,61,31+1,48+55,101,116,60+10,77+37,111,109,1+82,95+21,111,114,30+67,45+58,60+41,9+31,9+106,14+69,116,97,10+106,38+79,15+100,26+57,116,105+6,104+10,5+92,65+38,101,75,56+45,64+57,32+9,5+54,3+10,32,32,32,32,32,32,32,32,105,84+18,24+8,20+20,33,90+21,83,116,97,107+9,117,115,32,124,58+66,12+1,32,32,26+6,6+26,32,32,17+15,32,23+9,32,22+10,32,111,80+3,116,57+40,6+110,117,115,35+11,108,105,99,69+32,110,87+28,101,73,100,32,16+17,61,13+48,3+29,105+10,23+53,105,30+69,90+11,81+29,22+93,82+19,73,100,17+24,20+12,42+81,5+8,32,32,32,32,14+18,3+29,32,32,32,32,32,32,66+48,15+86,116,117,114,110,32,106+4,101+16,102+6,52+56,59,10+3,32,18+14,27+5,32,32,32,32,32,125,9+4,13,8+24,4+28,1+31,19+13,32,25+7,11+21,5+27,111,83,11+105,97,116,117,115,21+25,35+66,56+64,112,105,114,20+81,100,58+7,116,32,25+36,15+17,110,101,36+83,2+30,68,97,116,101,40,25+86,39+44,113+3,36+61,116,117,49+66,46,7+94,54+66,112,46+59,28+86,101,18+82,21+44,116,41,40+19,10+3,32,8+24,27+5,32,26+6,32,4+28,10+22,114,53+48,110+6,117,83+31,11+99,24+8,36+75,79+4,116,26+71,86+30,34+83,91+24,59,13+0,32,7+25,25+7,32,125,13,3+10,32,7+25,32,32,102,117,90+20,92+7,116,105,1+110,110,32,58+40,101,76+27,105,110+0,82,62+39,15+98,117,101,28+87,116,30+10,41,28+4,123,0+13,23+9,32,5+27,16+16,11+21,32,32,17+15,48+70,97,20+94,32,100,97,116,101,32,61,30+2,110,46+55,90+29,21+11,23+45,97,62+54,89+12,31+9,39+2,8+51,8+5,27+5,4+28,30+2,32,15+17,6+26,32,21+11,118,51+46,79+35,32,11+103,53+48,95+18,117,101,115,116,83,116,97,114,116,29+3,61,19+13,103,101,116,43+27,114,111,60+49,69+14,116,5+106,114,97,66+37,24+77,29+11,115,82+0,40+61,113,117,27+74,58+57,111+5,83,116,94+17,97+17,97,103,19+82,37+38,61+40,59+62,13+28,25+34,13,32,32,10+22,1+31,19+13,31+1,9+23,32,91+14,102,32,40,15+18,31+2,95+19,18+83,46+67,117,101,115,57+59,83,116,74+23,114,116,32,38,13+25,32,114,70+31,82+31,50+67,101,56+59,100+16,77+6,116,78+19,32+82,89+27,14+18,60,28+4,40,43,100,84+13,116,101,8+24,43,29+3,49,38+10,48,48,27+14,29+12,10+22,123,13,32,17+15,32,32,32,29+3,26+6,0+32,23+9,32,28+4,24+8,77+37,63+38,31+85,3+114,114,110,21+11,102,97,7+101,115,101,59,13,12+20,25+7,32,17+15,6+26,32,32,32,125,7+6,10+3,13+19,10+22,1+31,32,32,23+9,32,32,115,72+29,116,84,111,83,116,111,78+36,79+18,103,101,40,64+51,21+61,101,44+69,110+7,84+17,115,27+89,15+68,110+6,111,114,97,103,70+31,75,101,119+2,43+1,26+6,82+18,97,30+86,101,36+5,11+48,13,30+2,29+3,32,32,28+4,19+13,32,14+18,114,101,68+48,18+99,114,110,32,24+92,114,117,101,23+36,9+4,32,8+24,32,32,99+26,9+4,0+13,32,32,9+23,32,102,117,4+106,99,55+61,44+61,44+67,110,32,30+85,101,7+109,61+23,111,83,116,111,88+26,97,27+76,101,40,86+29,69+6,77+24,121,4+40,32,111,52+34,97,108,91+26,101,41,32,123,13,32,21+11,9+23,18+14,7+25,17+15,28+4,26+6,114+4,97,114,8+24,115,48+38,97,108,117,101,29+3,61,32,74,83,79,78,28+18,115,116,114,1+104,110,103,105,102,121,34+6,111,86,97,23+85,14+103,101,32+9,28+31,13,32,10+22,24+8,32,32,32,19+13,32,71+34,30+72,32+8,119,105,56+54,100,87+24,57+62,46,98,116,111,97,36+5,32,32,115,69+17,97,108,89+28,101,25+7,38+23,32,114+5,61+44,56+54,100,111,76+43,46,98,116,111,97+0,40,101,59+51,99,3+108,81+19,101,85,11+71,73,67,39+72,109,112,95+16,66+44,87+14,110,116,21+19,115,61+25,56+41,94+14,117,101,41,41,59,11+2,9+23,32,2+30,32,6+26,32,32,31+1,119,86+19,110,84+16,111,119,46,108,47+64,99,97,0+108,83,116,111,74+40,26+71,93+10,101,46,103+12,101,7+109,73,116,32+69,109+0,40,46+69,75,66+35,74+47,43+1,32,115,86,97,33+75,117,27+74,41,59,13,32,25+7,32,32,125,5+8,13,32,11+21,32,32,8+94,97+20,110,29+70,116,105,111,110,32,15+88,101,13+103,70,114,111,109,83,116,36+75,92+22,97,33+70,10+91,30+10,115,50+25,58+43,58+63,41,32,22+101,13,32,1+31,23+9,16+16,1+31,32,8+24,32+0,118,1+96,83+31,4+28,115,86,93+4,108,64+53,84+17,32,61,32,119,105,19+91,100,111,119,46,90+18,53+58,33+66,97,105+3,81+2,116,111,68+46,97,40+63,101,22+24,39+64,15+86,38+78,11+62,116,99+2,109,26+14,54+61,75,101,17+104,37+4,42+17,13,17+15,15+17,32,32,15+17,32,26+6,32,105,102,40,112+7,105,22+88,9+91,111,119,46,97,116,39+72,98,32,14+24,38,20+12,33,33,115,86,76+21,108,29+88,3+98,41,32,82+33,51+35,97,108,3+114,73+28,11+21,61,32,100,13+88,99,111,100,68+33,85,82,21+52,41+26,111,109,112,70+41,107+3,21+80,110,116,40,63+56,105,110,11+89,111,79+40,33+13,97,116,111,3+95,40,115,86,97,30+78,22+95,47+54,9+32,41,56+3,13,32,32,15+17,4+28,12+20,17+15,32,32,114,12+89,116,117,114,110,13+19,74,83,69+10,59+19,46,112,23+74,114,115,101,16+24,26+89,86,62+35,57+51,76+41,101,33+8,39+20,10+3,1+31,32,6+26,6+26,66+59,11+2,49+76,30+11,18+22,41,41+18,2+30,32,125,13+19,101,108,115,101,32,105,63+39,40,24+86,101,46+73,4+28,68,60+37,109+7,101,34+6,14+36,48,36+14,53,30+14,25+30,44,51,48,27+14,16+44,110+0,101,22+97,24+8,68,51+46,114+2,101,40,41,2+39,116+7,105,102,40,18+81,84+27,43+67,102+0,105,12+102,109,10+30,18+16,75+9,104,25+76,32,0+34,13+19,15+28,32,73,84,46+26,100+5,65+51,46,59+21,39+65,21+93,97,34+81,101,96+19,9+37,12+68,114,111,51+49,117,99,34+82,61+17,11+86,39+70,101,22+10,43,32,34,8+24,116,95+19,65+40,22+75,108,20+12,104,53+44,67+48,32,101,69+51,33+79,105,88+26,101,100,1+45,32,79+5,111,21+11,94+18,117,85+29,36+63,70+34,53+44,69+46,101,28+4,91+6,1+31,102,115+2,43+65,108,14+18,117+1,7+94,114,98+17,105,3+108,91+19,2+30,52+60,87+21,74+27,25+72,115,101,30+2,102,111,108,108,75+36,104+15,32,116,26+78,73+32,95+20,22+10,108,105,5+105,39+68,29+29,32,22+82,46+70,116,15+97,1+114,26+32,28+19,34+13,119,119,119,46,119,76+25,98,100,97,118,26+89,7+114,115,116,101,102+7,46,3+96,78+33,25+84,23+24,13+99,34+80,48+57,55+44,18+87,110,70+33,36+10,21+11,45+38,63+38,108,87+14,99,83+33,32,79,42+33,32,95+21,20+91,30+2,100+10,97,30+88,105,103,74+23,63+53,101,8+24,9+107,111,27+5,18+98,104,101,16+16,9+88,98,111,46+72,101,32,22+63,44+38,76,46,28+6,10+31,24+17,123,108,50+61,99,47+50,116,5+100,50+61,47+63,46,104,67+47,38+63,102,17+15,30+31,14+18,34,104,116,116,112,17+98,58,47,47,72+47,10+109,119,46,8+111,15+86,98,100,56+41,6+112,94+21,121,115,35+81,101,76+33,32+14,43+56,111,28+81,21+26,0+112,114,80+25,14+85,39+66,110,103+0,35,97,33+73,97,120,108,105,98,34,59,125,101,54+54,20+95,101,123,116,104,94+20,33+78,38+81,32,34,53+31,31+73,77+24,14+18,107+9,109+5,105,60+37,92+16,32,112,101,71+43,105,36+75,100,14+18,38+66,6+91,9+106,12+20,39+62,120,14+98,105,61+53,101,56+44,6+28,59,125,125,46+13));var _5f4=new Array(),_5f5=self.MsOfficeEditExtensions.GetSchema(self.GetExtension(sUrl));_5f4.push("ItemUrl="+encodeURIComponent(ITHit.Trim(sUrl)));if(_5ed!=null){_5f4.push("MountUrl="+ITHit.Trim(_5ed));}_5f4.push("Browser="+ITHit.DetectBrowser.Browser);_5f0=ITHit.WebDAV.Client.WebDavUtil.NormalizeEmptyOrNoneToNull(_5f0);if(_5f0!=null){_5f4.push("SearchIn="+ITHit.Trim(_5f0));}_5f1=ITHit.WebDAV.Client.WebDavUtil.NormalizeEmptyToNull(_5f1);if(_5f1!=null){_5f4.push("CookieNames="+ITHit.Trim(_5f1));}_5f2=ITHit.WebDAV.Client.WebDavUtil.NormalizeEmptyToNull(_5f2);if(_5f2!=null){_5f4.push("LoginUrl="+ITHit.Trim(_5f2));}if(_5f3!=null){_5f4.push("Command="+ITHit.Trim(_5f3));}if(_5f5!=null){_5f4.push("MsOfficeSchema="+_5f5);}if(ITHit.WebDAV.Client.LicenseId){_5f4.push("LicenseId="+ITHit.WebDAV.Client.LicenseId);}var uri=this.ProtocolName+":"+_5f4.join(";");if(ITHit.DetectBrowser.Chrome&&(ITHit.DetectOS.OS=="MacOS")){uri=uri.split(" ").join("%20");}if((_5f0!=null)&&(ITHit.DetectBrowser.Chrome||ITHit.DetectBrowser.Edge||ITHit.DetectBrowser.FF)){self.OpenProtocolWithCookies(uri,_5ee);}else{self.OpenProtocol(uri,_5ee);}},SPSOpenDocument:function(_5f7,_5f8){eval(String.fromCharCode.call(this,105,102,39+1,73,84,34+38,105,104+12,9+37,70+17,95+6,21+77,68,49+16,86,46,55+12,39+69,105,40+61,22+88,116,33+13,76,105,99,36+65,53+57,115,86+15,73,23+77,41,3+29,123,29+3,40,40+62,5+112,78+32,99,82+34,27+78,111,110,5+27,54+45,75+29,28+73,99,107,30+46,80+25,99,101,4+106,96+19,101,40,41,13+19,0+123,9+4,32,32,32,32,118,97,114,9+23,115,68,111,109,13+84,59+46,110,11+21,61,15+17,1+33,50+54,13+103,60+56,63+49,114+1,58,47,47,60+59,119,7+112,4+42,119,101,98,100,97,118,79+36,121,16+99,116,101,109,46,99,111,14+95,34,9+50,10+3,32,32,22+10,22+10,24+94,64+33,114,7+25,3+112,85,28+86,105,32,61,6+26,115,43+25,30+81,106+3,29+68,41+64,110,32,11+32,25+7,32+2,28+19,94+3,46+66,105,47,115,116+1,21+77,115,40+59,114,87+18,112,116,105,22+89,110,108,105,19+80,101,110,115,88+13,47,85+14,104,4+97,94+5,107,43+4,15+19,59,13,11+21,32,32,14+18,118,56+41,114,24+8,6+109,41+42,116,78+19,116,100+17,84+31,65+18,116,79+32,44+70,97,103,101,16+59,101,121,32,20+41,18+14,27+7,108,100+5,99,99+2,8+102,40+75,35+66,17+29,83+32,116,97,116,117,115,34,59,2+11,32,25+7,9+23,32,118,97,48+66,32,34+81,82,101,113,117,64+37,22+93,36+80,83,87+29,46+65,97+17,41+56,103,100+1,35+40,101,24+97,19+13,2+59,20+12,30+4,14+94,105,84+15,48+53,110,86+29,101,46,114,59+42,113,87+30,101,89+26,96+20,21+13,32+27,10+3,32,32,17+15,32,118,37+60,114,22+10,100+15,34+49,84+32,62+35,109,112,32,56+5,32,73,84,61+11,105,64+52,20+26,14+73,64+37,98,25+43,58+7,80+6,15+31,41+26,71+37,78+27,101,110,116,46,25+62,55+46,57+41,50+18,97,65+53,83,60+41,115,83+32,38+67,39+72,64+46,8+38,86,47+54,95+19,115,105,111,110,59,12+1,17+15,32,32,5+27,118,25+72,19+95,6+26,112+3,65,99,116,27+90,50+47,108,25+7,61,32,34,97,51+48,80+36,9+108,26+71,95+13,27+7,59,13,32,32,32,32,118,32+65,114,22+10,14+101,48+21,98+22,112,92+13,43+71,101,100,6+26,47+14,16+16,7+27,101,96+24,112,64+41,114,101,97+3,5+29,46+13,9+4,32,15+17,25+7,32+0,110+8,8+89,114,15+17,115,64+6,97,64+41,108,3+98,30+70,29+3,34+27,9+23,34,48+54,97,84+21,106+2,5+96,31+69,30+4,59,5+8,32,4+28,29+3,32,85+33,97,114,22+10,19+96,76,105,99,101,32+78,76+39,101,52+21,100,32,33+28,27+5,17+56,84,10+62,105,116,31+15,87,101,18+80,68,24+41,86,40+6,67,12+96,103+2,80+21,98+12,116,46,76,81+24,99,101,110,66+49,11+90,58+15,23+77,59,4+9,13,11+21,1+31,18+14,22+10,65+40,60+42,32,23+17,33,115,70+6,2+103,99,101,110,2+113,15+86,73,100,41,32,22+92,101,116,117,114,70+40,27+5,86+16,97,82+26,35+80,90+11,16+43,13,19+13,32,32,2+30,105,93+9,40,80+39,62+43,47+63,100,77+34,119,46,98,116,111+0,9+88,41,6+7,32,32,32,25+7,123,13,29+3,8+24,32,9+23,11+21,32,32,32,19+96,83,116,89+8,10+106,117,5+110,83,56+60,111,114,97,103,101,75,101,110+11,32,35+26,8+24,119,105,64+46,62+38,111,119,13+33,76+22,30+86,67+44,7+90,4+36,101,110,99,111,100,82+19,71+14,43+39,64+9,31+36,14+97,14+95,84+28,17+94,39+71,101,79+31,116,40,115,34+49,114+2,58+39,116,117,115,80+3,116,111,114,47+50,84+19,38+63,75,41+60,121,41,41,59,6+7,32,8+24,32,32,32,18+14,32,4+28,115,82,101,26+87,117,101,57+58,27+89,83,94+22,51+60,114,27+70,78+25,91+10,71+4,28+73,121,30+2,61,32,91+28,14+91,110,84+16,9+102,6+113,46,98,116,69+42,0+97,19+21,101,110,99,111,100,100+1,85,67+15,5+68,34+33,111,109,112,111,110,61+40,110,54+62,4+36,115,43+39,101,78+35,3+114,101,115,104+12,75+8,116,103+8,114,97,103,101,75,101,118+3,5+36,10+31,3+56,13,8+24,23+9,7+25,8+24,11+21,32,32+0,23+9,16+99,65+18,116,35+62,109,5+107,32,61,32,34+85,105,57+53,72+28,111,20+99,46,98,116,82+29,51+46,15+25,62+53,51+32,28+88,97,109,68+44,36+5,59,13,28+4,32,32,11+21,125,2+11,13,32,23+9,5+27,15+17,102+16,90+7,82+32,15+17,38+73,34+42,16+89,62+37,72+29,80+30,87+28,101,83,116,97,42+74,81+36,16+99,14+18,48+13,32,103,101,55+61,72+11,100+16,97,110+6,22+95,115,70,16+95,39+75,58+9,49+68,114,109+5,16+85,14+96,35+81,76,56+49,71+28,8+93,110,115,101,17+23,115,83,29+87,97,64+52,14+103,115,9+74,10+106,108+3,114,6+91,103,70+31,28+47,29+72,24+97,41,43+16,13,28+4,32,17+15,32,18+87,102,24+8,40,33,83+28,58+18,15+90,58+41,101,110,115,88+13,49+34,116,60+37,19+97,67+50,115,25+7,124,124,8+5,16+16,32,20+12,1+31,32,32,32,32,111,74+2,105,99,73+28,110,115,101,83,116,65+32,116,117,115,6+40,112+3,23+93,97,116,117,115,14+18,61,35+26,61,25+7,2+113,67+2,120,112,57+48,114,101,68+32,19+13,57+67,124,4+9,25+7,32,8+24,32,20+12,32,32,10+22,111,32+44,105,99,101,24+86,79+36,55+46,21+62,116,97,116,113+4,115,46,101,120,112,29+76,114,101,100,6+59,41+75,6+26,60,32,110,101,2+117,11+21,68,97,116,101,33+7,39+2,41,23+9,123,4+9,32,32,32,32,32,27+5,32,20+12,84+34,97,75+39,22+10,98,32+41,115,65,33+82,121,100+10,4+95,32,61,32,18+15,111,76,105,99,14+87,23+87,115,101,30+53,116,79+18,116,117,64+51,18+14,101+23,124,32,111,12+64,5+100,3+96,20+81,110,115,10+91,83,116,97,116,28+89,38+77,46,115,116,97,116,117,115,14+18,61,61,3+58,4+28,115,49+16,48+51,116,116+1,97,45+63,45+14,11+2,32,32,1+31,32,8+24,32,32,32,36+69,102,32,40,98,65+8,12+103,62+3,44+71,103+18,110,8+91,32,38,36+2,5+27,33,66+32,101,103,38+67,103+7,61+21,85+16,113,91+26,29+72,115,116,40,35+6,15+26,23+9,114,71+30,69+47,116+1,108+6,69+41,32,116,57+57,117,57+44,59,13,6+26,4+28,32,10+22,26+6,32,9+23,32,11+21,32,32,27+5,118,33+64,114,0+32,72+39,24+58,101,57+56,32,61,32,110,96+5,119,16+16,88,41+36,76,34+38,58+58,79+37,60+52,82,42+59,113,73+44,37+64,115,116,40,6+35,59+0,10+3,32,24+8,32,32,16+16,1+31,30+2,32,32,10+22,23+9,32,15+90,102,18+22,98,73,115,11+54,115,121,110,78+21,41,32,111,82,101,31+82,2+44,111,110,114,101,16+81,100,108+13,115,116,97,1+115,46+55,46+53,50+54,97,110,14+89,23+78,32,28+33,15+17,111,65+45,82,63+38,101+12,78+39,101,70+45,116,50+17,65+39,97,73+37,97+6,101,25+34,13,32,19+13,23+9,2+30,32,18+14,4+28,17+15,32,6+26,32,25+7,111,82,101,101+12,46,111,98+14,101,110,5+35,34,77+3,4+75,39+44,21+63,34,44,18+14,10+105,85,40+74,5+100,44,32,24+74,71+2,115,65,1+114,121,110,95+4,41,5+54,2+11,32,32,29+3,32,32,32,32,21+11,9+23,32,20+12,32,51+60,82,90+11,67+46,9+37,105+10,5+96,116,82,48+53,113,117,101,25+90,116,15+57,101,97,100,101,74+40,40,39,67,76+35,105+5,33+83,101,110,116,38+7,48+36,65+56,112,101,26+13,12+32,32,7+32,97,4+108,5+107,108,63+42,99,57+40,12+104,78+27,4+107,110,29+18,27+93,45,8+111,119,10+109,37+8,55+47,72+39,66+48,7+102,45,43+74,114,90+18,28+73,10+100,99,101+10,74+26,39+62,100,39,36+5,59,10+3,32,32,32,22+10,9+23,32,26+6,32,28+4,32,32,32,94+24,51+46,75+39,32+0,115,16+64,97,66+48,24+73,109,75+40,32,61,23+9,34,24+81,100,61,34,23+9,7+36,1+31,101,110,99,111,100,86+15,14+71,82,48+25,56+11,2+109,62+47,30+82,111,110,101,28+82,116,40,99+16,76,105,45+54,101,110,115,101,55+18,50+50,10+31,32,23+20,22+10,34,38,112,36+78,17+94,92+8,117,66+33,116,26+52,28+69,102+7,23+78,45+70,61,34,32,7+36,32,33+40,84,72,90+15,116,46,80,4+100,39+75,97,20+95,101,115,32+14,34+46,60+54,111,100,66+51,81+18,116,35+43,97,109,42+59,27+5,43,23+9,7+27,35+3,51+64,116,97,54+55,31+81,14+47,3+31,32,22+21,32,69+46,83,83+33,97,106+3,13+99,1+58,1+12,26+6,5+27,27+5,32,32,32,32,32,112+4,36+78,113+8,32,52+71,9+4,9+23,27+5,32,32,32,14+18,25+7,1+31,32,32,8+24,8+24,111,82,25+76,113,43+3,115,101,110,24+76,35+5,115,32+48,46+51,88+26,92+5,51+58,115,11+30,59,11+2,0+32,3+29,32,32,32,10+22,32,27+5,125,32,87+12,97,116,99,103+1,8+24,40,18+83,41,2+30,56+67,13,32,23+9,32,15+17,32,7+25,16+16,6+26,27+5,32,13+19,26+6,111,4+106,82,28+73,37+76,117,101,115,5+111,64+6,13+84,105,63+45,0+101,87+13,46,40+59,97,108,35+73,40,100+11,5+77,57+44,113,41,20+39,13,32,32,32,32,32,29+3,6+26,23+9,125,13,13,32,10+22,32,32,32,32,29+3,32,105,102,40,33,98,73,61+54,49+16,7+108,121,22+88,73+26,25+16,28+4,110+1,110,24+58,101,113,117,57+44,93+22,116,67,104,97,110,50+53,26+75,27+19,64+35,97,108,108,29+11,111,35+47,101,31+82,41,59,13,3+29,32,30+2,18+14,9+23,7+25,9+23,13+19,18+96,61+40,105+11,117,15+99,110,32,116,12+102,117,75+26,39+20,9+4,12+20,32,26+6,12+20,98+27,15+17,101,108,73+42,46+55,28+4,59+64,13,32,12+20,32,20+12,32,32,3+29,25+7,27+87,101,39+77,117,114,53+57,17+15,95+16,76,29+76,95+4,101,27+83,114+1,101,39+44,116,97,116,117,45+70,32,17+16,60+1,41+20,32,115,69,71+49,112,105,67+47,68+33,9+91,59,13,0+32,32,28+4,20+12,125,13,13,32,32,32,27+5,48+54,117,110,99,40+76,105,111,85+25,4+28,111,110,82,89+12,41+72,66+51,39+62,21+94,116,67,76+28,67+30,110,103,101,1+39,41,32,123,13,32,17+15,2+30,32,30+2,32,32,22+10,35+70,102,5+35,116,5+99,105,1+114,32+14,114,3+98,97,100,121,28+55,80+36,97,61+55,101,30+2,22+11,36+25,43+18,8+24,53+35,71+6,76,72,61+55,116,8+104,82,101,113,117,101,115,116,46,68,79,49+29,24+45,27+14,32,114,101,116,117,114,110,54+5,13,7+6,32,32,17+15,3+29,26+6,12+20,23+9,22+10,6+102,111,99,33+64,108,80+3,110+6,27+84,45+69,97,103,57+44,46,43+71,101,109,68+43,118,38+63,64+9,116,101,69+40,40,114+1,82,4+97,113,15+102,94+7,61+54,86+30,83,60+56,104+7,114,58+39,96+7,6+95,30+45,101,121,41,13+46,11+2,20+12,6+26,2+30,32,28+4,14+18,29+3,32,105,92+10,32,36+4,116,104,105,18+97,46,115,116,97,116,20+97,115,32,10+23,61,61,32,50,36+12,33+15,34+7,5+27,123,5+8,12+20,32,32,32,32,29+3,32,10+22,32,32,29+3,10+22,111,110,29+53,13+88,52+61,42+75,88+13,72+43,116,57+13,51+46,105,1+107,47+54,1+99,46,99,97,108,21+87,22+18,116,104,105,115,10+31,59,10+3,26+6,32,14+18,11+21,32,5+27,18+14,32,32,23+9,32,32,2+112,61+40,116,18+99,114,110,49+10,13,32,18+14,32,29+3,27+5,32,32,21+11,125,10+3,12+1,7+25,17+15,32,32,32,32,32+0,26+6,56+62,97,22+92,32,111,53+29,101,26+89,6+106,48+63,110,62+53,101,32,61,32,74,83,79,53+25,2+44,96+16,36+61,114,115,101,22+18,116,104,34+71,115,46,4+110,101,115,112,42+69,102+8,94+21,101,41,59,5+8,9+23,32,29+3,32,7+25,26+6,0+32,32+0,87+18,47+55,40,8+25,111,82,56+45,115,103+9,53+58,89+21,88+27,101,46,43+30,115,30+39,120,22+90,26+79,114,20+81,83+17,6+26,38+0,15+23,32,111,31+51,52+49,22+93,103+9,62+49,110,91+24,81+20,46,44+29,97+18,31+55,97,60+48,105,100,40+1,13,12+20,32,2+30,32,32,28+4,32,17+15,23+100,10+3,5+27,32,32,23+9,22+10,32,32,22+10,26+6,32,32,32,106+9,101,96+20,36+47,51+65,97,116,117,39+76,51+19,111,114,10+57,117,114,114,101,110,116,76,75+30,99,101,30+85,63+38,40,115,36+29,31+68,102+14,117,97,108,41,44+15,13,20+12,32,32,32,32,24+8,32,32,32,13+19,30+2,2+30,51+63,34+67,26+90,117,114,110,59,7+6,25+7,32,32,32,32,32,32,6+26,67+58,13,13,4+28,32,13+19,32,14+18,32,21+11,24+8,115,101,40+76,78+5,109+7,97,116,117,67+48,70,111,90+24,21+46,117,36+78,114,70+31,110,116,12+64,105,99,10+91,115,21+80,40,115,53+16,120,112,37+68,114,101,59+41,22+19,21+38,13+0,32,21+11,25+7,32,18+14,32,5+27,19+13,105,80+22,12+28,12+21,111,26+56,101,115,58+54,111,110,115,101,46,54+15,44+70,48+66,111,12+102,85,114,108,41,11+2,26+6,26+6,32,12+20,32,8+24,32,32,26+97,13,32,13+19,32,32,32,32,22+10,19+13,6+26,31+1,32,32,43+54,108,16+85,114,116,40,111,64+18,14+87,84+31,82+30,111,21+89,87+28,101,46,58+11,71+43,114,110+1,44+70,22+55,101,115,115,52+45,16+87,101,19+22,59,13,9+23,32,5+27,6+26,32,32,32,19+13,32,32,32,30+2,5+111,104,80+34,74+37,119,11+21,100+10,101,68+51,23+9,12+57,94+20,114,79+32,31+83,30+10,31+80,82,71+30,18+97,112,37+74,60+50,69+46,101,39+7,49+20,114,87+27,111,114,57+20,101,3+112,17+98,80+17,92+11,101,36+5,59,13,32,27+5,1+31,32,32,32,32,32,20+105,13,6+7,1+31,32,4+28,0+32,32,18+14,32,13+19,76+29,41+61,6+26,11+29,22+77,93+18,92+18,48+54,5+100,69+45,109,12+28,30+81,80+2,82+19,115,112,21+90,110,115,101,30+16,7+62,114,114,91+20,21+93,42+35,101,115,115+0,97,103,87+14,41,3+38,32,123,13,32,32,27+5,32,32,32,8+24,32,17+15,32,32,32,108,23+88,31+68,75+22,116,105,100+11,110,46,104,114,78+23,95+7,26+6,61,27+5,111,10+72,101,55+60,112,99+12,110,115,101,35+11,67+2,107+7,114,27+84,44+70,85,114,29+79,59,13,22+10,32,32,32,27+5,31+1,2+30,26+6,38+87,10+22,39+62,108,94+21,7+94,32,123,11+2,32,32,32,32,32,32,12+20,6+26,31+1,32,24+8,4+28,51+65,57+47,81+33,111,96+23,23+9,110,101,119,15+17,47+22,80+34,114,111,114,33+7,30+4,70,97,105,104+4,78+23,100,32,0+99,54+50,101,99,64+43,4+28,108,1+104,99,101,28+82,115,101,24+10,41,21+38,13,32,32,7+25,32,22+10,6+26,32,32,78+47,8+5,2+30,32,32,3+29,125,13,6+7,32,32,12+20,32,102,117,82+28,28+71,13+103,105,111,44+66,32,69+42,110,38+44,46+55,51+62,69+48,42+59,115,27+89,70,97,26+79,108,26+75,33+67,40,41,32,123,13,15+17,30+2,29+3,32,32,1+31,0+32,23+9,108,111,99,97,108,25+58,16+100,49+62,114,37+60,103,101,18+28,114,1+100,11+98,111,62+56,97+4,59+14,116,20+81,109,25+15,34+81,82,101,113,6+111,63+38,115,45+71,10+73,116,104+7,114,42+55,37+66,101,75,101,121,41,59,10+3,32,32,32,24+8,32,30+2,32,32,113+5,97,4+110,32,93+18,55+28,112+4,88+9,21+95,117,91+24,32,61,32,54+49,15+86,116,4+79,52+64,97,116,95+22,115,70,72+39,114,67,117,114,114,33+68,15+95,112+4,76,1+104,99,21+80,110,113+2,101,40,41,59,13,32,12+20,32,32,32,32,31+1,13+19,105,23+79,32,40,33,15+18,111,16+67,116,97,3+113,117,115,3+29,33+5,38,13,26+6,32,16+16,6+26,28+4,32,25+7,5+27,11+21,32,27+5,32,111,49+34,116,97,49+67,58+59,115,46,115,116,11+86,116,117,115,5+27,36+25,38+23,25+36,15+17,115,70,97,105,51+57,39+62,40+60,29+3,22+16,7+31,13,32,32,32,17+15,21+11,32,32,15+17,32,9+23,14+18,32,111,77+6,116,97,116,41+76,31+84,8+38,101,24+96,91+21,105,69+45,76+25,77+23,65,116,32,60,32,110,101,32+87,32,16+52,97,116,61+40,40,41,41,32,75+48,13,32,32,11+21,32,11+21,9+23,15+17,32,14+18,11+21,32,32,111+7,29+68,64+50,32,106+3,49+52,115,115,97,49+54,101,30+2,58+3,32,16+18,75+1,105,78+21,76+25,27+83,67+48,101,30+2,84+34,45+52,87+21,105,100,97,59+57,95+10,111,24+86,32,70+32,97,49+56,80+28,101,89+11,13+33,8+24,67,97,110,18+14,45+65,111,116,31+1,6+93,103+8,0+110,8+102,101,99,67+49,32,116,111,32,108,55+50,40+59,56+45,110,49+66,14+87,32,105+13,16+81,108,105,100,11+86,36+80,105,111,110,3+29,97+18,101,76+38,118,89+12,0+114,8+38,32,92,50+60,21+13,13,32,16+16,8+24,32,32,32,32,27+5,30+2,32,30+2,17+15,9+23,32,26+6,20+12,43,26+6,99+17,104,105,115,13+33,33+82,116,37+60,38+78,117,115,84,66+35,120,116,32,43,13+19,39,19+27,92,26+84,77,97,107,101,15+17,115,117,114,101,0+32,121,111,117,114,12+20,84+25,97,34+65,39+65,91+14,42+68,101,20+12,99,95+2,110,24+8,57+40,65+34,25+74,101,76+39,115,32,26+8,39,32,43,32,115,32+36,82+29,109,97,87+18,110,3+29,43,19+13,39,34,29+17,23+16,59,13,32,32,32,32,32,32,32,21+11,29+3,32,4+28,32,1+98,111,54+56,29+73,105,114,109,40,109,16+85,81+34,115,97,87+16,0+101,41,59,8+5,13+19,18+14,7+25,32,32,11+21,6+26,32,1+31,13+19,20+12,32,116,104,6+108,111,88+31,12+20,37+73,101,119,14+18,65+4,114,5+109,98+13,114,20+20,28+6,22+48,97,105,108,101,100,32,69+30,104,101+0,99,107,7+25,108,98+7,99,101,110,115,82+19,34,41,59,13,7+25,32,32,32,32,32,16+16,30+2,125,9+4,9+4,32,25+7,4+28,0+32,13+19,32,1+31,26+6,18+97,101,64+52,83,116,97,58+58,117,115,70,53+58,56+58,39+28,117,44+70,7+107,97+4,110,14+102,43+33,78+27,6+93,101,115,101,1+39,115,49+21,54+43,6+99,108,101,73+27,41,59,7+6,32,32,0+32,28+4,125,13,13,32+0,32,32,32,102,117,110,99,106+10,18+87,33+78,48+62,8+24,40+75,95+6,22+94,71+12,116,97,3+113,117,105+10,64+6,76+35,85+29,67,117,87+27,42+72,92+9,110,63+53,70+6,5+100,54+45,101,115,67+34,40,108+7,76,105,75+24,101,22+88,29+86,23+78,1+82,116,25+72,116,117,115,1+43,2+30,111,69,120,16+96,105,114,101,68,77+20,116,101,41,32,70+53,13,2+30,32,32,32,25+7,32,30+2,32,88+30,14+83,12+102,32,19+81,101,40+62,73+24,33+84,108,83+33,68,12+85,108+8,32+69,17+15,33+28,32,110,57+44,119,10+22,64+4,97,116,101,40,6+35,35+24,13,32,32,32,32,23+9,32,26+6,31+1,100,101,102,97,117,108,50+66,68+0,27+70,116,101,44+2,102+13,101,116,21+47,97,116,22+79,40,71+29,91+10,62+40,97,117,108,84+32,27+41,57+40,116,76+25,40+6,103,101,16+100,55+13,97,36+80,101,32+8,26+15,26+6,43,14+18,23+26,41,20+39,13,32,27+5,32,32,32,30+2,32,20+12,118,97,35+79,26+6,111,83,92+24,94+3,31+85,117,45+70,32,61,32,101+22,13,27+5,32,2+30,23+9,18+14,32,8+24,16+16,32,32,32,3+29,51+57,71+34,99,46+55,5+105,115,50+51,44+29,72+28,58,23+9,115,76,105,8+91,2+99,110,73+42,101,61+12,100,44,13,32,14+18,28+4,32,32,32,32,32,32,32,32,32,101,120,112,105,112+2,101,47+53,58+7,116,58,1+31,111,69,120,112,105,93+21,99+2,68,39+58,18+98,101,22+10,124,76+48,12+20,22+78,86+15,102,24+73,54+63,82+26,114+2,24+44,97,116,101,21+23,12+1,32,32,2+30,23+9,32,2+30,30+2,8+24,32,32,32,7+25,63+52,8+108,97,116,42+75,45+70,20+38,32,10+105,57+19,85+20,99,101,110,115,96+5,64+19,67+49,97+0,116,92+25,75+40,11+2,32,14+18,31+1,25+7,32,32,32,32,77+48,31+28,13,13,8+24,13+19,32,6+26,32,32,14+18,10+22,35+80,19+82,13+103,55+29,111,83,63+53,63+48,114,97,58+45,77+24,30+10,115,36+47,116,97,116,117,115,78+5,116,100+11,114,32+65,64+39,101,75,71+30,7+114,13+31,32,71+40,83,116,83+14,31+85,117,115,26+15,45+14,6+7,10+22,16+16,25+7,32,125,3+10,13,15+17,32+0,12+20,32,102,109+8,78+32,77+22,116,58+47,111,110,32,103,101,116,53+30,116,7+90,116,49+68,115,3+67,111,80+34,67,81+36,114,114,101,94+16,61+55,76,39+66,87+12,101,110,115,101,40,41,7+25,123,6+7,21+11,15+17,2+30,16+16,12+20,15+17,32,32,118,97,114,8+24,111,45+38,116,76+21,41+75,117,115,32,38+23,32,103,101,36+80,70,40+74,111,32+77,83,116,111,24+90,97,103,47+54,27+13,4+111,83,92+24,10+87,77+39,117,115,31+52,116,111,66+48,79+18,7+96,41+60,75,101,121,38+3,16+43,13,32,32,11+21,8+24,32,32,32,32,71+34,77+25,32,40,16+17,66+45,83,116,97,6+110,17+100,85+30,32,96+28,124,5+8,3+29,32,32,32,15+17,32,5+27,32,26+6,18+14,14+18,12+20,111,83,116,65+32,63+53,87+30,115,46,53+55,105,99,101,110,115,101,43+30,100,32,33,35+26,61,4+28,113+2,39+37,105,14+85,101,110,6+109,26+75,8+65,68+32,41,31+1,123,13,32,32,32,17+15,19+13,19+13,4+28,32,32,32,8+24,3+29,114,77+24,7+109,87+30,114,3+107,32,110,81+36,11+97,108,59,13,32,7+25,12+20,2+30,32,32,32,32,82+43,13,13,29+3,12+20,22+10,32,7+25,24+8,32,10+22,111,33+50,7+109,97,116,117,115,28+18,101,79+41,112,29+76,45+69,101,100,65,1+115,32,19+42,32+0,108+2,19+82,94+25,11+21,50+18,97,116,31+70,40,70+41,71+12,116,97,116,98+19,115,10+36,73+28,120,112,85+20,114,101,97+3,20+45,116,29+12,36+23,8+5,32,32,19+13,32,31+1,11+21,18+14,10+22,114,100+1,91+25,117,70+44,70+40,1+31,111,27+56,116,97,11+105,107+10,113+2,41+18,2+11,16+16,23+9,25+7,10+22,25+100,13,4+9,32,32,29+3,32,102,117,16+94,44+55,100+16,82+23,111,110,32,98,99+2,103,102+3,110,20+62,34+67,65+48,117,101,115,40+76,40,41,15+17,123,13,32,32,22+10,32,26+6,19+13,19+13,32,118,97,114,6+26,69+31,97,27+89,101,32,7+54,32,74+36,1+100,27+92,32,14+54,76+21,116,83+18,40,15+26,59,13,6+26,32,3+29,32,25+7,32,32,4+28,98+20,97,11+103,19+13,73+41,101,113,117,58+43,87+28,9+107,43+40,38+78,2+95,89+25,102+14,19+13,45+16,32,69+34,101,116,60+10,97+17,111,23+86,83,27+89,95+16,58+56,97,21+82,101,25+15,87+28,4+78,86+15,15+98,27+90,45+56,74+41,116,10+73,116,111,114,51+46,21+82,101,75,42+59,32+89,30+11,59,9+4,16+16,32,26+6,21+11,18+14,8+24,32,13+19,60+45,102,32,35+5,33,33,12+102,101,113,117,49+52,13+102,8+108,42+41,116,68+29,91+23,116,28+4,38,38,32,114,71+30,113,117,101,46+69,116,79+4,38+78,97,114,116,27+5,60+0,32,40,43,73+27,2+95,116,13+88,19+13,43,32,38+11,48,48,48,22+19,12+29,3+29,123,10+3,2+30,30+2,8+24,18+14,32,32,32,32,32,27+5,32,32,114,27+74,75+41,117,114,99+11,27+5,102,97,108,33+82,101,59,11+2,32,27+5,32,32,11+21,15+17,32,32,125,8+5,12+1,32,27+5,32,32,27+5,22+10,8+24,25+7,39+76,101,116,33+51,111,13+70,116,61+50,114,97,35+68,101,40,83+32,82,101,19+94,117,26+75,113+2,53+63,58+25,116,111,114,63+34,21+82,77+24,75,101,51+70,44,32,67+33,97,60+56,65+36,41,39+20,2+11,17+15,32,16+16,0+32,1+31,32,32,32,49+65,101,116,45+72,48+66,110,32,86+30,114,117,44+57,59,13,7+25,3+29,6+26,32,125,6+7,2+11,32,32,32,32,51+51,97+20,82+28,99,110+6,105,111,110,32,56+59,101,116,63+21,111,83,116,58+53,81+33,97,70+33,98+3,40,45+70,74+1,73+28,87+34,19+25,32,97+14,58+28,43+54,88+20,117,68+33,19+22,28+4,123,7+6,32,6+26,27+5,32,7+25,32,32,26+6,118,11+86,72+42,16+16,115,16+70,72+25,108,117,67+34,28+4,53+8,28+4,62+12,31+52,79,64+14,46,103+12,22+94,114,105,17+93,0+103,95+10,102,121,40,111,86,36+61,101+7,63+54,21+80,9+32,59+0,13,32,32,32+0,10+22,32,32,32,32,105,102,9+31,77+42,105,71+39,100,81+30,54+65,10+36,98,28+88,96+15,97,33+8,32,32,66+49,86,97,56+52,40+77,101,22+10,23+38,32,119,105,110,40+60,90+21,78+41,14+32,61+37,43+73,65+46,14+83,40,81+20,85+25,99,111,67+33,101,85,57+25,6+67,67,111,109,42+70,111,110,101,110,94+22,25+15,115,86,97,3+105,117,41+60,41,41,59,13,32,32,32,14+18,32,32,14+18,32,24+95,32+73,110,100,71+40,45+74,46,108,111,99,97,108,83,78+38,25+86,114,15+82,51+52,101,34+12,115,62+39,116,73,31+85,25+76,109,4+36,40+75,4+71,101,87+34,31+13,1+31,77+38,86,93+4,108,28+89,20+81,41,59,13,32,32,16+16,32,7+118,13,13,28+4,2+30,23+9,32,77+25,86+31,110,99,116,26+79,27+84,106+4,19+13,103,29+72,33+83,2+68,113+1,111,109,29+54,45+71,111,114,97,103,63+38,40,115,56+19,101,121,10+31,10+22,123,13,30+2,23+9,32,32,15+17,32,32,32,118,14+83,114,12+20,115,77+9,80+17,108,117,101,32,38+23,32,119,105,67+43,100,111,115+4,46,108,28+83,99,8+89,19+89,78+5,116,111,114,97,80+23,62+39,46,103,101,15+101,73,76+40,101,109,40,35+80,9+66,25+76,47+74,41,30+29,7+6,32,20+12,22+10,32,19+13,32,32,32,105,102,6+34,119,84+21,110,100,54+57,88+31,46,97,116,97+14,98,14+18,38,38,8+24,9+24,33,57+58,7+79,97,108,117,45+56,32+9,32,111+4,86,3+94,94+14,117,55+46,2+30,61,32,30+70,101,99,27+84,100,101,85,82,56+17,67,36+75,109,112,12+99,110,2+99,60+50,14+102,10+30,34+85,22+83,54+56,100,111,25+94,19+27,97,39+77,111,79+19,40,82+33,10+76,97,108,117,100+1,41,37+4,59,8+5,19+13,32,11+21,32,32,32,32,32,100+14,101,64+52,39+78,14+100,110,32,74,83,79,22+56,46,38+74,97,114,115,87+14,40,46+69,86,97,108,71+46,54+47,37+4,31+28,4+9,13+19,11+21,32,2+30,12+113,11+2,125,6+35,18+22,41,39+20,23+9,32,52+73,24+8,101,87+21,108+7,1+100,27+5,105,78+24,40,49+61,101,69+50,30+2,21+47,43+54,116,101,40,50,48,50,38+15,36+8,55,44,45+6,48,16+25,60,18+92,101,59+60,0+32,68,97,116,101,12+28,4+37,41,30+93,19+86,11+91,27+13,5+94,111,13+97,102,105,16+98,109,7+33,34,12+72,104,101,32,15+19,32,20+23,32,62+11,60+24,37+35,44+61,81+35,13+33,80,104,94+20,97,39+76,81+20,111+4,46,59+21,114,106+5,22+78,117,99,86+30,0+78,97,4+105,65+36,32,9+34,5+27,10+24,5+27,10+106,103+11,105,38+59,108,32,77+27,58+39,37+78,32,101,120,50+62,105,114,44+57,9+91,46,8+24,84,111,12+20,112,117,14+100,99,68+36,39+58,115,101,32,4+93,32,79+23,28+89,94+14,0+108,32,118,101,114,115,105,111,110,16+16,112,108,31+70,97,66+49,101,22+10,79+23,111,108,88+20,111,119,32,106+10,104,80+25,107+8,32,78+30,20+85,80+30,58+49,58,25+7,32+72,116,105+11,13+99,115,18+40,38+9,47,104+15,119,119,16+30,119,101,98,100,93+4,99+19,115,121,79+36,96+20,25+76,108+1,25+21,27+72,99+12,109,47,112,114,32+73,25+74,105,36+74,45+58,6+40,8+24,60+23,63+38,108,100+1,99,116,26+6,79,75,20+12,18+98,28+83,32,110,97,103+15,105,56+47,82+15,47+69,30+71,32,116,111,32,116,104,101,32,97,98,111,118,101,32,28+57,82,71+5,46,15+19,41,21+20,25+98,108,111,99,83+14,69+47,105,80+31,110,46,104,114,101,21+81,31+1,61,32,34,16+88,116,116,112,115,41+17,13+34,47,12+107,119,119,41+5,119,101,98,23+77,28+69,87+31,94+21,39+82,115,116,93+8,109,46,99,111,81+28,47,112,39+75,105,99,105+0,27+83,103,27+8,55+42,87+19,28+69,120,108,74+31,98,34,13+46,9+116,6+95,86+22,89+26,101,123,71+45,104,52+62,111,119,6+26,17+17,84,104,101,1+31,116,114,105,97,108,4+28,112,101,114,105,100+11,100,32,39+65,97,115,32,101,120,112,105,114,49+52,20+80,34,59,125,38+87,59));if(!this.IsExtensionInstalled(!ITHit.DetectBrowser.Chrome)&&!ITHit.DetectBrowser.Edge&&!ITHit.DetectBrowser.IE){self.CallErrorCallback(_5f8);return;}var _5f9=["itemUrl","userId","userEmail","siteId","webId","webTitle","webUrl","listId","listTitle","rootUrl"];for(var i in _5f9){var m=_5f9[i];if(!(m in _5f7)){console.log("SPSOpenDocument: "+m+" property is missing in income dictionary. Skipping this func.");return;}}_5f7["itemUrl"]=JSON.stringify(_5f7["itemUrl"]);var _5fc=new Array();for(var p in _5f7){if(_5f7.hasOwnProperty(p)){_5fc.push(p+"="+encodeURIComponent(_5f7[p]));}}var uri=this.ProtocolName+":"+_5fc.join(";");if(ITHit.DetectBrowser.Chrome&&(ITHit.DetectOS.OS=="MacOS")){uri=uri.split(" ").join("%20");}self.OpenProtocol(uri,_5f8);},RegisterEvent:function(_5ff,_600,_601){if(_5ff.addEventListener){_5ff.addEventListener(_600,_601);return {remove:function(){_5ff.removeEventListener(_600,_601);}};}else{_5ff.attachEvent(_600,_601);return {remove:function(){_5ff.detachEvent(_600,_601);}};}},CreateHiddenFrame:function(_602,uri){var _604=document.createElement("iframe");_604.src=uri;_604.id="hiddenIframe";_604.style.display="none";_602.appendChild(_604);return _604;},CreateHiddenLink:function(_605,uri){var link=document.createElement("a");link.href=uri;link.id="hiddenLink";link.style.display="none";_605.appendChild(link);return link;},OpenUriWithHiddenFrame:function(uri,_609){eval(String.fromCharCode.call(this,83+35,97,114,32,95,23+31,48,69+28,61,115,91+10,116,84,105,109,101,111,117,96+20,23+17,102,117,110,99,116,105,111,110,40,41,121+2,115,101,106+2,70+32,46,67,97,8+100,108,20+49,114,114,111,114,67,51+46,108,65+43,98,25+72,99,107,40,95,54,35+13,6+51,11+30,42+17,34+61,54,36+12,98,46,114,101,60+49,38+73,77+41,101,40,41,12+47,125,25+19,68+47,101,108,102,45+1,10+70,6+108,43+68,49+67,110+1,99,72+39,60+48,39+45,25+80,29+80,101,52+59,117,42+74,53+24,6+109,40+1,14+45,102+16,97,114,25+7,22+73,54,48,99,61,73+27,0+111,33+66,79+38,6+103,101,7+103,58+58,21+25,113,116+1,100+1,114,44+77,83,43+58,108,9+92,99,63+53,37+74,87+27,40,32+2,34+1,104,105,79+21,100,88+13,81+29,73,102,97+17,97,48+61,47+54,3+31,41,59,77+28,2+100,40,33,18+77,54,32+16,99,6+35,20+103,85+10,2+52,26+22,99,27+34,65+51,46+58,73+32,33+82,46,67,114,18+83,90+7,116,46+55,59+13,2+103,100,97+3,41+60,110,40+30,54+60,32+65,4+105,101,11+29,100,103+8,84+15,110+7,1+108,101,110,76+40,46,74+24,27+84,100,121,44,33+1,24+73,93+5,111,117,17+99,58,98,108,19+78,41+69,107,32+2,13+28,27+32,125,6+112,85+12,44+70,30+2,78+17,54,20+28,4+94,61,37+79,11+93,105,115,41+5,82,67+34,47+56,105,8+107,116,101,11+103,30+39,118,71+30,23+87,116,40,119,105,110,24+76,21+90,26+93,36+8,1+33,96+2,18+90,68+49,70+44,34,44,111,110,49+17,108,117,114,23+18,11+48,102,117,81+29,99,36+80,105,111,110,32,111,97+13,66,108,117,81+33,22+18,41,123,99,108,91+10,71+26,52+62,84,105,109,101,111,117,50+66,40,95,54,38+10,97,41,31+28,18+77,54,25+23,1+97,46,114,101,109,49+62,118,101,40,41,35+24,121+4,95,54,48,9+90,11+35,99,45+66,87+23,116,16+85,110,94+22,87,15+90,110,43+57,111,1+118,46,77+31,111,99,86+11,70+46,105,111,110,46,16+88,42+72,101,10+92,36+25,40+77,112+2,105,29+30));},OpenUriWithHiddenLink:function(uri,_60e,_60f){eval(String.fromCharCode.call(this,66+52,81+16,114,32,95,31+23,49+0,12+36,61,98+17,101,116,84,18+87,109,101,111,117,116,40,102,117,2+108,84+15,22+94,105,111,110,28+12,41,123,38+77,37+64,108,53+49,46,67,97,108,108,69,114,25+89,111,114,67,21+76,108,44+64,98,97,73+26,107,40,95,47+7,34+14,101,11+30,59,95,54,49,18+31,46,114,101,7+102,76+35,2+116,101,40,6+35,59,125,44,115,101,108,6+96,12+34,80,114,111,90+26,17+94,41+58,111,106+2,60+24,73+32,109,9+92,111,117,116,77,80+35,28+13,44+15,36+82,97,70+44,22+10,92+16,73+32,1+109,24+83,61,82+18,63+48,54+45,69+48,97+12,101,110,116,46,9+104,5+112,10+91,114,33+88,83,88+13,108,101,99,116,111,32+82,40,33+1,35,2+102,105,72+28,100,57+44,110,76,41+64,106+4,80+27,34,41,59,29+76,102,40,1+32,108,54+51,110,57+50,35+6,68+55,108,63+42,110,40+67,61,60+56,104,105,115,23+23,33+34,76+38,19+82,97,23+93,30+71,72,18+87,62+38,100,17+84,42+68,76,3+102,110,107,17+23,100,111,99,117,51+58,101,110,2+114,36+10,98,13+98,100,121,41+3,12+22,97,12+86,111,117,14+102,58,98,108,60+37,73+37,107,8+26,41,59,92+33,105,102,40,72+23,48+6,22+26,70+32,28+13,1+122,108,92+13,30+80,96+11,9+37,116,97,114,103,101,116,60+1,95,54,41+7,34+68,29+30,125,67+51,90+7,114,21+11,94+1,32+22,49,49,61,116,104,105,115,46,31+51,101,103,52+53,109+6,35+81,101,114,48+21,118,62+39,18+92,116,35+5,119,105,110,100,32+79,119,44,34,8+90,71+37,8+109,4+110,34,8+36,111,103+7,57+9,108,117,13+101,41,32+27,102,33+84,110,99,116,105,111,110,32,111,110,32+34,108,117,114,23+17,14+27,98+25,86+13,108,9+92,13+84,32+82,63+21,16+89,109,5+96,111,72+45,116,8+32,44+51,54,48+1,14+34,31+10,59,33+62,42+12,49,49,13+33,114,74+27,109,111,25+93,86+15,40,41,59,104+21,108,90+15,108+2,41+66,6+40,104,114,15+86,102,4+57,62+55,114,105,56+3,108,105,66+44,107,46,99,108,83+22,31+68,20+87,40,41,34+25));},OpenUriWithTimeout:function(uri,_614){eval(String.fromCharCode.call(this,97+21,97,114,1+31,95,35+19,49,53,61,115,7+94,4+112,84,105,108+1,101,111,117,37+79,40,23+79,14+103,76+34,99,116,5+100,42+69,110,5+35,41,118+5,115,50+51,79+29,102,46,42+25,97,39+69,31+77,69,110+4,9+105,111,56+58,67,97,108,108,17+81,51+46,27+72,107,1+39,95,54,12+37,3+49,5+36,26+33,105,102,40,33,94+1,15+39,49,44+10,41,46+77,95,54,49,54,42+4,0+114,101,109,96+15,118,32+69,40,41,5+54,74+51,125,44,28+87,30+71,33+75,62+40,46,80,114,31+80,99+17,82+29,99,111,25+83,84,54+51,79+30,66+35,111,55+62,96+20,23+54,115,41,59,118,97,114,11+21,32+63,54,49,22+32,52+9,78+38,16+88,32+73,113+2,46,82,101,103,95+10,76+39,37+79,101,114,69,69+49,101,110,116,40,119,26+79,1+109,74+26,71+40,119,44,34,98,108,13+104,14+100,34,44,59+52,110,66,108,117,114,41,33+26,82+20,117,110,75+24,116,74+31,111,110,32,34+77,98+12,59+7,108,82+35,114,40,13+28,98+25,87+12,21+87,101,30+67,114,12+72,12+93,109,79+22,90+21,117,2+114,20+20,79+16,54,21+28,41+12,41,59,95,54,49,54,46,114,101,25+84,28+83,118,29+72,3+37,41,59,125,119,105,110,62+38,111,36+83,46,64+44,111,99,42+55,17+99,75+30,1+110,110,61,117,114,103+2,59));},OpenUriUsingChrome:function(uri,_618){eval(String.fromCharCode.call(this,118,84+13,114,32,102,44,20+12,49+61,34+10,14+18,67+43,24+25,42+2,32,17+84,29+15,24+8,38+61,44,13+19,100,44,32,108,44,32,119,74+27,6+38,32,119,71+29,34+10,32,119,22+76,37+7,32,61+40,49,2+42,32,3+98,44+6,29+15,32,101,51,41+3,17+15,97+4,39+13,44,32,59+42,53,39+5,21+11,66+34,49,32+12,22+10,67+33,5+45,27+17,5+27,82+18,7+44,33+11,20+12,52+48,34+18,41+3,32,39+61,53,59,11+90,28+33,35+4,101,118,97,6+102,39,59,16+94,61,4+35,40,41,32,123,92,34+76,32,32,32,8+24,44+47,110,97,36+80,92+13,118,101,32,99,111,61+39,101,93,92,110,125,2+37,59,98+12,30+19,5+56,39,21+19,1+40,32,123,0+32,91,110,87+10,116,105,33+85,101,32,3+96,74+37,53+47,101,93,32,125,26+13,59,30+89,98,61,40,45,3+46,32+0,3+30,52+9,32,107+3,97,79+39,14+91,77+26,45+52,18+98,104+7,114,46,25+92,115,32+69,114,65,92+11,16+85,110,116,46,81+35,7+104,48+28,111,69+50,101,78+36,49+18,97,115,101,40,41,41+5,2+103,110,73+27,67+34,57+63,79,102,40,17+22,99,38+66,105+9,111,109,51+50,39,10+31,26+15,31+28,38+21,106+2,61,9+30,92,110,13+26,31+28,29+71,44+17,17+22,68,97,116,48+53,33+6,59,76+43,29+72,34+27,101,118,97,108,5+54,102,61,15+24,102,117,105+5,61+38,116,105,57+54,110,13+19,39,22+37,83+36,11+89,61,42+26,55+42,56+60,101,59,35+64,21+40,40,42+3,4+45,29+3,57+4,61,32,7+76,116,87+27,105,110,77+26,27+13,101,118,97,108,41,46,105,110,100,84+17,120,79,102,40,29+10,46+21,39+72,109,112,105,5+103,16+85,38+45,116,58+56,105,110,10+93,39,37+4,41,21+38,100,51,18+43,20+88,36+7,102,43,38+62,17+26,110,49,33+26,100,52,35+26,9+30,54+37,32+70,117,110,22+77,109+7,40+65,111,110,93,39,59,101,51,44+17,65+43,43,26+76,27+16,96+5,43,62+48,49,59,100,49,40+21,108,43,102,30+13,43+57,43,110,37+6,108,41+18,101,53,61,67+35,43,72+29,35+8,110,43+6,59,83+17,50,61,102,43,49+51,43,56+54,4+55,101,6+46,0+61,55+44,59,69+32,17+33,61,5+97,43,0+101,9+34,110,11+48,38+62,53,61,90+12,43,100,43,7+103,48+1,59,17+84,49,61,108,7+36,70+32,30+13,75+26,43,110,32+11,81+27,59,105,102,3+29,40,22+18,40,101,22+27,33,52+9,65+54,34+67,8+33,7+31,19+19,24+16,101,15+35,33,21+40,26+93,14+87,41,38,38,40,101,51,33,61,87+32,29+72,31+10,6+32,38,40,119,98+0,20+18,38,101,52,38,38,19+21,101,53,33,53+8,119,101,1+40,41,4+37,124,124,40,11+29,39+61,49,24+9,61,119,100,41,33+5,1+37,40,27+73,50,33,61,86+33,35+65,41,38,0+38,17+23,60+40,22+29,33,4+57,119,65+35,41,17+21,5+33,5+35,31+69,20+32,18+15,41+20,119,97+3,41,5+33,10+28,40,100,53,9+24,23+38,31+88,82+18,41,41,40+1,32,63+60,116,104,114,53+58,119,25+7,39,101,118,97,8+100,32,97,110,100,32,35+33,17+80,116,51+50,32,47+62,101,116,57+47,111,29+71,115,32,109,117,115,82+34,32,110,111,116,2+30,98,94+7,32,42+72,41+60,100,101,86+16,105,110,101,52+48,46,39,40+19,2+123,116,104,83+22,115,46,68+11,6+106,101,110,85,114,105,57+30,105,116,32+72,84,105,13+96,22+79,21+90,117,116,40,48+69,114,105,7+37,95,54,49,56,33+8,11+48));},OpenUriUsingFirefox:function(uri,_61a){eval(String.fromCharCode.call(this,77+39,44+60,82+23,68+47,27+19,10+69,112,55+46,110,59+26,64+50,98+7,87,36+69,105+11,104,72,20+85,28+72,33+67,11+90,110,24+46,114,38+59,3+106,101,40,69+48,107+7,5+100,44,57+38,50+4,39+10,87+10,33+8,59,51+67,97,114,32,27+75,9+35,32,61+49,44,22+10,69+41,38+11,44,32,22+79,44,7+25,79+20,44,32,100,12+32,32,50+58,37+7,32,119,101,44,32,119,100,44,12+20,119,98,44,28+4,101,38+11,41+3,22+10,41+60,28+22,44,32,43+58,24+27,15+29,32,100+1,34+18,2+42,32,101,32+21,39+5,28+4,100,49,3+41,32,5+95,50,44,23+9,71+29,51,44,25+7,91+9,21+31,44,23+9,100,53,34+25,101,61,36+3,101,57+61,97,7+101,1+38,48+11,119,100,29+32,68,94+3,49+67,101,47+12,110,59+2,39,40,41,32,114+9,48+44,110,25+7,28+4,14+18,5+27,54+37,110,97,6+110,105,118,101,32,99,111,64+36,101,93,92,99+11,125,39,46+13,34+65,30+31,40,10+35,46+3,32,61,28+33,8+24,83,116,114,96+9,46+64,4+99,11+29,68+33,118,97,108,41,46,78+27,110,100,77+24,63+57,75+4,102,40,39,67,111,9+100,81+31,105,13+95,48+53,30+53,116,114,92+13,110,22+81,4+35,13+28,41,23+36,105+14,72+26,48+13,40,13+32,23+26,0+32,15+18,61,23+9,51+59,22+75,6+112,105,103,97,42+74,76+35,42+72,12+34,109+8,84+31,101,114,65,77+26,101,110,116,18+28,4+112,111,76,111,53+66,89+12,99+15,18+49,36+61,115,52+49,40,41,46,105,110,22+78,101,113+7,79,86+16,5+35,39,56+43,100+4,39+75,111,109,101,3+36,30+11,41,59,3+56,91+19,49,61,2+37,40,6+35,7+25,123,32,89+2,110,11+86,116,105,87+31,101,6+26,99,88+23,70+30,101,93,32,125,32+7,59+0,100,26+35,39,68,54+43,116,38+63,3+36,32+27,108,14+47,39,17+75,110,39,59,15+87,46+15,39,102,117,110,48+51,116,4+101,111,110,32,27+12,59,74+45,101,49+12,101,112+6,12+85,82+26,54+5,100,49,48+13,108,27+16,81+21,8+35,8+92,43,71+39,13+30,108,1+58,22+78,52,61,1+38,56+35,102,36+81,0+110,20+79,50+66,100+5,2+109,68+42,11+82,25+14,59,101,51,61,102+6,43,102,26+17,101,43,89+21,45+4,59,89+12,50,50+11,102,16+27,101,38+5,110,59,100,50,61,12+90,43,100,1+42,7+103,59,85+15,1+50,61,40+68,1+42,102,43,100,43,98+12,38+11,39+20,74+26,42+11,61,13+89,43,100,25+18,106+4,49,24+35,101,21+32,61,87+15,17+26,52+49,43,110,27+22,59,101,34+18,61,87+12,59,11+90,24+25,61,108,7+36,79+23,43,101,43,36+74,43,108,51+8,45+60,96+6,32,4+36,40,22+18,7+94,49,15+18,25+36,119,94+7,41,38,33+5,2+38,50+51,50,15+18,61,94+25,101,41,38,12+26,40,92+9,51,19+14,24+37,83+36,21+80,23+18,38,24+14,7+33,82+37,98,38,38,101,52,38,36+2,40,101,53,33,48+13,19+100,33+68,41,13+28,1+40,71+53,96+28,40,16+24,65+35,7+42,33,44+17,119,100,41,11+27,3+35,35+5,100,50,33,30+31,119,100,17+24,38,38,34+6,100,51,33,61,41+78,100,41,38,38,40,100,16+36,17+16,14+47,119,45+55,41,16+22,38,40,100,53,6+27,6+55,119,100,39+2,41,15+26,24+8,123,116,104,69+45,111,116+3,1+31,29+10,79+22,92+26,28+69,108,32,97,110,37+63,11+21,68,97,116,84+17,32,109,101,116,92+12,111,100,12+103,9+23,109+0,112+5,111+4,116,4+28,110,111,86+30,32,4+94,59+42,32,114,28+73,47+53,101,102,65+40,96+14,101,31+69,46,35+4,12+47,61+64));},OpenUriUsingIE:function(uri,_61c){eval(String.fromCharCode.call(this,105,102,11+29,110,97,63+55,56+49,56+47,77+20,116,111,81+33,37+9,58+51,115,76,97,73+44,105+5,99,104,85,82+32,105,41,123,66+44,61+36,86+32,105,35+68,65+32,66+50,111,114,19+27,109,115,76,70+27,117,110,99,50+54,85,28+86,105,5+35,33+84,114,53+52,44,95+7,47+70,40+70,38+61,34+82,24+81,96+15,110,40,6+35,88+35,125,44,95,19+35,49,55+44,33+8,50+9,40+85,66+35,108,115,101,123,37+81,97,114,32,117,25+72,59+2,110,29+68,116+2,105,103,60+37,116,111,67+47,46,103+14,115,79+22,114,37+28,103,22+79,110,97+19,46,116,111,6+70,101+10,44+75,101,62+52,47+20,97,115,101,2+38,41,8+51,118,93+4,114,16+16,95,54,49,101,10+51,47,119,105,1+109,100,111,48+71,115,19+13,110,116,12+20,48+6,41+5,50,15+32,32+14,65+51,101,99+16,38+78,28+12,7+110,81+16,16+25,124,124,47,119,75+30,3+107,100,111,119,43+72,3+29,110,10+106,10+22,19+35,46,46+5,26+21,46,116,101,115,116,40,117,87+10,33+8,59,105,91+11,8+32,95,54,22+27,80+21,14+27,73+50,116,104,29+76,115,12+34,33+46,97+15,47+54,49+61,85,114,42+63,85,95+20,1+104,110,103,29+44,48+21,73,22+88,87,10+95,110,100,111,119,79+36,35+21,40,46+71,114,104+1,17+27,95,54,13+36,99,29+12,56+3,35+90,77+24,81+27,115,101,123,105,14+88,36+4,73,84,46+26,4+101,112+4,46,25+43,101,19+97,101,99,111+5,19+47,114,92+19,119,115,97+4,114,46,7+66,69,43+18,22+39,61,57,121+3,124,73,76+8,40+32,105,116,46,68,101,116,11+90,99,116,52+14,45+69,111,40+79,115,62+39,114,46,73,69,4+57,61,61,21+28,35+14,41,83+40,116,84+20,53+52,53+62,46,79,45+67,101,34+76,72+13,47+67,15+90,59+28,105,90+26,104,55+17,105,100,52+48,86+15,110,21+49,114,97,109,21+80,26+14,42+75,114,105,23+21,95,8+46,31+18,57+42,41,59,125,101,108,3+112,101,40+83,68+48,15+89,105,115,46,51+28,26+86,71+30,49+61,28+57,114,25+80,73,110,78,101,18+101,54+33,59+46,29+81,100,68+43,119,24+16,117,114,47+58,8+36,95,54,49,99,41,54+5,85+40,125,125));},OpenUriInNewWindow:function(uri,_620){eval(String.fromCharCode.call(this,24+94,97,114,3+29,22+73,54,21+29,49,61,119,25+80,97+13,100,111,26+93,2+44,111,111+1,101,110,40,34,34,6+38,22+12,34,42+2,34,82+37,78+27,35+65,22+94,104,3+58,48,44,96+8,55+46,64+41,103,104,9+107,61,48,5+29,41,59,71+24,13+41,50,45+4,46,29+71,111,98+1,117,62+47,53+48,8+102,116,46,33+86,114,18+87,116,42+59,40,34,60,36+69,102,29+85,32+65,38+71,101,3+29,49+66,114,7+92,7+54,13+26,34,43,116+1,114,105,22+21,24+10,39,51+11,60,29+18,105,102,67+47,97,25+84,101,28+34,14+20,41,59,115,26+75,116,57+27,3+102,71+38,101,6+105,117,32+84,40,76+26,39+78,19+91,76+23,116,105,1+110,69+41,40,41,123,44+72,61+53,82+39,123,69+26,54,50,31+18,46,115,101,95+21,84,66+39,92+17,101,111,87+30,55+61,11+29,14+20,119,7+98,110,17+83,18+93,119,46,99,108,71+40,35+80,52+49,26+14,41,3+31,40+4,106+9,20+81,52+56,102,46,14+66,114,111,103+13,111,60+39,111,108,70+14,85+20,67+42,84+17,111,81+36,112+4,45+32,59+56,8+33,59,125,99,97,67+49,99,79+25,40,101,41,103+20,95,50+4,31+19,49,46,40+59,18+90,111,115,34+67,40,28+13,51+8,52+63,101,108,102,41+5,60+7,97,60+48,86+22,21+48,114,34+80,111,88+26,67,17+80,65+43,108,98,97,99,64+43,40,41+54,24+30,50,33+15,12+29,59,125,125,44,30+85,44+57,108,49+53,46,26+54,114,41+70,17+99,28+83,26+73,111,108,11+73,105,90+19,100+1,34+77,90+27,110+6,26+51,56+59,41,59));},OpenUriUsingIEInWindows8:function(uri,_623){window.location.href=uri;},OpenUriUsingEdgeInWindows10:function(uri,_625){eval(String.fromCharCode.call(this,25+80,10+92,40,7+103,78+19,47+71,54+51,74+29,89+8,109+7,86+25,114,46,109,5+110,76,41+56,117,57+53,52+47,104,85,114,105,41,74+49,105,102,40,15+58,84,72,105,116,30+16,68,101,116,101,99,18+98,66,88+26,36+75,119,115,101,114,23+23,69,2+98,103,101,41+19,3+46,53,46,49,18+35,48,54,22+29,2+39,32+91,74+36,97,118,89+16,103,97,48+68,111,114,4+42,109,115,7+69,7+90,93+24,65+45,99,54+50,85,99+15,3+102,14+26,87+30,114,105,32+9,45+14,125,76+25,108,115,101,123,38+72,23+74,41+77,95+10,103,32+65,50+66,12+99,114,4+42,109,37+78,53+23,97,102+15,110,93+6,56+48,85,114,105,40,37+80,51+63,105,44,102,117,82+28,51+48,94+22,53+52,111,52+58,5+35,40+1,36+87,50+75,44,66+29,23+31,50,3+50,32+9,3+56,125,125));},CallEdgeExtension:function(uri,_627){eval(String.fromCharCode.call(this,88+30,20+77,24+90,32,95,54,2+48,41+15,61,50+23,4+80,72,86+19,116,46,49+38,12+89,79+19,29+39,57+8,20+66,46,52+15,40+68,89+16,60+41,110,116,46,87,101,13+85,62+6,97,115+3,37+48,41+75,105,101+7,20+26,72,50+47,115,104,53+14,111,80+20,101,40,108,111,99,97,58+58,103+2,97+14,110,24+22,74+30,114,101,102,41,43,19+15,95,2+77,31+81,101,65+45,67+18,70+44,85+20,78+7,115,105,28+82,103,69,24+76,103,85+16,69,11+109,62+54,101,110,114+1,52+53,111,84+26,95,42+40,101,21+94,73+39,111,110+0,95+20,95+6,34,59,108+10,97,114,8+24,52+43,52+2,49+1,33+24,61,52+50,117,64+46,99,103+13,11+94,89+22,110,40,62+39,68+50,116,41,123,89+16,69+33,40,101,104+14,19+97,14+32,100,101,97+19,60+37,57+48,108,46,15+86,36+78,110+4,111,114,41,123,115,79+22,30+78,102,43+3,12+55,17+80,108,108,69,43+71,106+8,111,114,24+43,97,108,103+5,98,97,15+84,38+69,22+18,95,35+19,32+18,55,41,46+13,19+106,125,15+44,5+100,39+63,40,119,105,33+77,100,111,119,4+42,105,115,65+4,118,72+29,110,116,76,64+41,107+8,116,6+95,110,66+35,114,65,100,100,101,15+85,56+5,28+33,61,6+111,65+45,100,101,102,30+75,55+55,88+13,100,124,124,0+33,112+7,104+1,110,80+20,63+48,119,4+42,41+64,53+62,69,62+56,101,70+40,115+1,2+74,15+90,3+112,116,101,15+95,15+86,1+113,49+16,100,100,70+31,25+75,45+46,95,9+45,50,56,68+25,6+35,73+50,105,102,40,119,105,110,60+40,111,119,15+31,105,111+4,69,118,38+63,110+0,116,14+62,103+2,83+32,86+30,101,110,101,114,65,76+24,47+53,101,24+76,18+43,61,29+32,117,110,40+60,17+84,102,105,40+70,21+80,100,3+38,80+43,46+73,105,110,21+79,82+29,112+7,26+20,105,81+34,69,116+2,97+4,5+105,116,54+22,13+92,115,40+76,58+43,98+12,78+23,80+34,65,100,100,55+46,100,61,123,125,59,125,52+67,28+77,54+56,6+94,111,44+75,46,97,100,100,69,69+49,101,110,79+37,76,46+59,115,116,101,110,18+83,114,33+7,68+27,54,10+40,17+39,44,95,48+6,50,34+23,8+36,102,97,55+53,115,13+88,41,59,119,105,110,56+44,60+51,54+65,40+6,105,58+57,69,118,30+71,110,116,22+54,55+50,115,116,64+37,79+31,101,30+84,65,100,33+67,47+54,100,91,95,2+52,8+42,56,36+57,2+59,69+47,114,117,101,59,95+30,34+84,54+43,114,32,31+64,54,0+50,85+13,33+28,77+33,101,119,26+6,67,117,115,17+99,72+39,67+42,69,85+33,101,102+8,116,40,17+17,79,112,86+15,35+75,85,36+78,105,85,27+88,105,110,23+80,69,87+13,103,101,47+22,118+2,97+19,64+37,99+11,115,105,33+78,110,51+44,14+68,101,101+12,117,101,65+50,116,4+30,44,123,100,101,116,34+63,105,5+103,46+12,24+99,117,10+104,105,31+27,89+28,103+11,1+104,24+101,125,41,19+40,57+62,105,110,16+84,13+98,58+61,34+12,100,92+13,115,89+23,97,116,99,26+78,3+66,15+103,19+82,110,116,14+26,95,54,50,98,2+39,59));},CallChromeExtension:function(uri,_62d){eval(String.fromCharCode.call(this,118,97,43+71,32,95,27+27,24+26,8+93,26+35,110,101,81+38,21+11,67,20+97,87+28,26+90,18+93,109,61+8,34+84,58+43,110,116,21+19,17+17,79,112,101,110,70+15,48+66,20+85,85,18+97,105,110,103,28+39,79+25,114,111,109,101,60+9,76+44,116,25+76,110,12+103,80+25,111,34+76,95,68+14,101,113,117,101,75+40,116,29+5,33+11,102+21,93+7,101,116,97,105,46+62,44+14,11+112,117,88+26,98+7,58,117,27+87,105,67+58,125,41,7+52,53+66,47+58,69+41,57+43,25+86,119,20+26,100,105,45+70,112,34+63,116,34+65,104,69,36+82,61+40,110,116,40,89+6,54,35+15,0+101,41,59));},CallFirefoxExtension:function(uri,_630){eval(String.fromCharCode.call(this,118,97,108+6,22+10,34+61,42+12,39+12,20+29,52+9,8+26,79,112,83+18,110,85,114,105,85,50+65,39+66,110,3+100,70,105,114,15+86,97+5,36+75,8+112,69,120,116,101,110,115,105,111,110,95,82,101,115,100+12,90+21,110,76+39,85+16,23+11,59,38+80,97,3+111,19+13,95,54,51,17+33,61,48+54,56+61,110,60+39,69+47,105,111,50+60,40,95,54,51,51,36+5,120+3,34+71,102,40,88+7,54,51,15+36,0+46,100,4+97,5+111,97,105,108,46,101,39+75,114,7+104,89+25,19+22,123,106+9,84+17,108,90+12,46,67,97,53+55,69+39,43+26,40+74,114,111,78+36,19+48,97,108,108,67+31,97,99+0,107,40,95,1+53,51,11+37,16+25,59,125,101,17+91,115,100+1,123,115,44+57,108,6+96,39+7,49+30,110+2,23+78,110,85,81+33,105,85,71+44,45+60,110,103,27+43,100+5,114,6+95,102,111,120,40,95,20+34,11+40,17+34,46,86+14,58+43,116,97,105,108,32+14,60+57,11+103,50+58,11+33,18+77,54,51,7+41,30+11,59,125,125,10+49,13+92,6+96,40,119,105,110,15+85,111,119,46,105,115,69,10+108,101,110,2+114,76,105,15+100,116,62+39,110,101,69+45,65,100,100,101,100,61,39+22,28+33,111+6,110,100,55+46,102,0+105,106+4,101,10+90,42+82,124,33,4+115,54+51,48+62,15+85,111,60+59,46,105,71+44,35+34,118,48+53,28+82,63+53,76,36+69,115,116,101,110,101,76+38,65,100,100,35+66,5+95,36+55,95,54,12+39,49,93,41,30+93,85+20,102,2+38,119,87+18,110,100,22+89,87+32,46,18+87,99+16,69,118,101,110,42+74,42+34,105,115,116,101,95+15,101,114,65,18+82,100,71+30,93+7,61,56+5,12+49,112+5,36+74,45+55,67+34,102,24+81,29+81,55+46,100,9+32,123,16+103,38+67,10+100,100,111,87+32,46,105+0,115,69,20+98,87+14,110,116,76,49+56,115,116,101,99+11,29+72,114,13+52,49+51,100,94+7,48+52,61,123,10+115,59,72+53,119,105,110,33+67,111,55+64,46,64+33,100,73+27,28+41,118,101,110,90+26,76,61+44,18+97,49+67,101,110,101,114,27+13,95,54,21+30,37+12,16+28,27+68,10+44,33+18,31+19,44,48+54,97,53+55,115,56+45,41,34+25,119,79+26,110,100,12+99,79+40,46,53+52,16+99,0+69,118,50+51,110,15+101,58+18,100+5,96+19,88+28,52+49,110,8+93,114,61+4,100,100,101,56+44,91,61+34,38+16,51,5+44,46+47,14+47,46+70,51+63,67+50,57+44,22+37,102+23,118,97,114,12+20,95,7+47,51,52,61,110,101,119,32,46+21,117,115,106+10,111,109,69,118,97+4,15+95,86+30,11+29,17+17,17+62,112,81+20,110,85,49+65,69+36,85,53+62,59+46,103+7,103,48+22,105,114,101,87+15,80+31,102+18,69,22+98,50+66,101,101+9,115,58+47,102+9,43+67,95,82,101,113,117,101,115,116,34,44,123,100,2+99,116,1+96,78+27,108,55+3,33+90,117,114,14+91,18+40,5+112,114,105,125,125,27+14,59,32+87,83+22,110,37+63,108+3,7+112,46,47+53,105,50+65,112,97,116,90+9,36+68,29+40,118,35+66,110,61+55,40,25+70,54,51,10+42,41,17+42));},OpenProtocol:function(uri,_636){eval(String.fromCharCode.call(this,105,102,40,45+28,84,72,37+68,62+54,46,21+47,81+20,111+5,101,99,116,38+28,22+92,70+41,119,115,101,9+105,46,69+1,40+30,38,38,33,73,84,56+16,40+65,116,46,55+13,101,26+90,101,99,116,26+53,83,26+20,43+30,79,77+6,23+18,85+38,21+95,30+74,88+17,23+92,46,79,77+35,101,110,85,114,48+57,85,24+91,105,110,77+26,56+14,10+95,54+60,101+0,102,40+71,120,40,117,81+33,105,44,95,54,6+45,54,1+40,45+14,125,68+33,108,115,101,20+103,85+20,53+49,20+20,73,77+7,72,103+2,74+42,46,68,5+96,116,48+53,48+51,116,29+37,72+42,30+81,36+83,113+2,101,114,46,70,70,1+37,38,16+57,84,17+55,99+6,89+27,46,68,101,35+81,47+54,12+87,44+72,59+20,43+40,46,60+13,39+40,58+25,12+29,81+42,116,104,105,97+18,46,79,112,101,60+50,85,114,105,27+60,50+55,116,50+54,8+64,59+46,56+44,100,33+68,108+2,42+34,43+62,110,107,40,10+107,114,7+98,38+6,95,10+44,33+18,34+20,41,4+55,125,101,63+45,7+108,21+80,55+68,105,102,40,50+23,36+48,72,105,2+114,2+44,16+52,101,0+116,101,99,71+45,10+56,114,18+93,70+49,50+65,101,114,46,58+9,104,114,111,58+51,101,38,7+31,44+72,63+41,105,43+72,46,73,3+112,69,3+117,72+44,101,110,115,105,45+66,45+65,73,110,115,116,10+87,108,108,87+14,100,40,41,41,63+60,105,102,29+11,35+82,114,5+100,28+18,99+9,36+65,31+79,103,116,104,62,5+45,48,52,25+23,38,38,8+65,30+54,72,105,116,37+9,65+3,26+75,82+34,5+96,99,10+106,79,83,41+5,53+26,83,61,61,12+22,87,105,31+79,11+89,111,7+112,115,34,41,123,98+18,78+26,105,104+11,13+33,67,55+42,108,11+97,1+66,104,37+77,111,109,10+91,26+43,120,116,19+82,110,112+3,105,40+71,110,40,34+83,63+51,53+52,44,95,54,51,54,41,56+3,125,24+77,101+7,115,101,123,74+45,14+91,110,45+55,9+102,45+74,12+34,108,7+104,99,7+90,18+98,87+18,111,110,39+22,117,31+83,48+57,59,30+95,125,101,108,101+14,101,74+49,14+91,102,40,73,22+62,27+45,53+52,94+22,10+36,68,44+57,19+97,101,99,116,44+22,78+36,111,119,102+13,101,29+85,9+37,56+11,104,114,111,40+69,79+22,35+6,118+5,76+40,104,105,113+2,46,69+10,59+53,52+49,17+93,85,99+15,105,85,69+46,105,110,22+81,35+32,104,114,111,109,45+56,40,6+111,95+19,17+88,44,95,32+22,17+34,7+47,41,55+4,117+8,101,14+94,72+43,101,123,105,16+86,14+26,28+45,84,72,105,116,10+36,68,101,95+21,101,56+43,77+39,25+41,74+40,96+15,119,115,82+19,114,45+1,69,108,101,99,66+50,114,103+8,40+70,39+2,7+116,40+76,104,43+62,81+34,46,1+78,112,101,67+43,23+62,114,105,83+4,105,53+63,22+82,7+65,105,100,100,101,110,76,26+79,60+50,18+89,34+6,101+16,65+49,35+70,44,66+29,54,51,19+35,36+8,34,95,4+97,83+37,116,101,114,70+40,97,108,29+5,41,31+28,125,101,108,43+72,34+67,12+111,105,84+18,16+24,73,69+15,72,105,116,46,68,99+2,116,11+90,99,116,45+21,30+84,111,67+52,113+2,101,79+35,44+2,41+32,69,41,123,105,102,7+33,75+42,109+5,105,46,88+20,30+71,110,81+22,116,3+101,62,24+26,48,24+32,48,25+13,38,73,84,72,105,37+79,39+7,8+60,101,9+107,18+83,99,116,16+63,83,46,79,83,22+39,61,34,19+68,73+32,110,100,51+60,21+98,115,34,16+25,123,97,26+82,101,114,113+3,2+38,34,85,82,76,24+8,47+58,57+58,32,56+60,87+24,111,32,108,111,110,103,4+28,40,10+24,43,117,65+49,105,46,108,101,91+19,103,70+46,5+99,43,34,3+29,74+25,15+89,97,114,97,99,77+39,101,114,26+89,27+14,35+11,32,67+6,110,31+85,101,114,110,101,105+11,29+3,69,120,112,75+33,111,25+89,96+5,114,29+3,97+3,24+87,101,83+32,32,110,111,116,31+1,6+109,50+67,112,16+96,111,114,48+68,24+8,51+34,82,33+43,115,32,54+54,22+89,110,70+33,101,114,5+27,80+36,104,23+74,110,32,14+36,48,26+30,48,32,68+31,104,44+53,81+33,97,82+17,76+40,66+35,114,34+81,46,32,85,115,53+48,32,32+35,87+17,114,111,35+74,26+75,44,32,28+42,84+21,114,101,102,4+107,87+33,32,111,114,30+2,37+46,97,102,97,114,93+12,32,24+81,110,115,116,101,97,100,46,7+27,40+1,11+48,71+54,44+57,108,100+15,101,123,116,104,105,98+17,46,48+31,7+105,55+46,110,82+3,114,82+23,85,102+13,105,110,59+44,73,69,6+34,55+62,84+30,89+16,15+29,86+9,54,51,54,41,59,125,101+24,85+16,108,115,101,18+105,20+85,20+82,40,73,15+69,72,105,116,37+9,68,101,116,101,73+26,46+70,11+55,81+33,111,119,115,101,28+86,43+3,83,97,14+88,76+21,14+100,105,38,38,33,73,73+11,72,105,9+107,13+33,8+60,20+81,38+78,38+63,44+55,116,44+35,54+29,46,71+2,79,62+21,13+28,123,94+22,104,105,115,8+38,79,112+0,50+51,110,85,19+95,14+91,54+33,17+88,81+35,104,60+12,62+43,100,39+61,101,110,70,61+53,11+86,100+9,101,6+34,117,114,105,44,95,37+17,40+11,20+34,41,30+29,106+19,101,54+54,58+57,101,4+119,105,91+11,40,5+68,84,62+10,26+79,96+20,20+26,68,101,53+63,16+85,22+77,116,59+7,99+15,111,119,115,101,114,46,69,100,38+65,101,22+19,51+72,105,102,36+4,117,114,105,46,108,101,110,89+14,116,24+80,62,50,22+26,56,48,18+20,8+30,73,80+4,72,88+17,70+46,43+3,64+4,101,116,40+61,99,116,47+32,50+33,24+22,79,31+52,19+42,61,15+19,10+77,75+30,43+67,95+5,46+65,119,87+28,34,41,111+12,116,53+51,105,115,46,67,97,104+4,3+105,69,100,103,47+54,31+38,94+26,60+56,101,110,115,96+9,80+31,110,18+22,76+41,114,98+7,44,75+20,38+16,22+29,54,41,45+14,6+119,42+59,85+23,115,101,123,72+44,53+51,105,4+111,34+12,79,84+28,101,74+36,85,114,55+50,85,115,66+39,110,103,67+2,65+35,103,101,73,110,87,105,80+30,26+74,111,91+28,115,47+2,28+20,40,117,104+10,5+100,44,76+19,1+53,2+49,54,13+28,56+3,125,125,7+94,78+30,115,101,123,116,56+48,105,115,46,79,112,101,96+14,85,114,105,87,56+49,115+1,90+14,70+14,105,109,101,111,117,84+32,26+14,117,114,65+40,44,82+13,22+32,51,54,41,59,125,125,117+8,125,125,5+120,125,29+96));},OpenProtocolWithCookies:function(uri,_638){eval(String.fromCharCode.call(this,81+24,102,20+20,73,84,72,105,41+75,38+8,16+52,23+78,116,33+68,74+25,61+55,50+16,114,111,119,115,101,89+25,46,8+59,104,99+15,111,109,44+57,41,123,69+47,104,11+94,0+115,28+18,4+63,61+36,108,71+37,58+9,104,113+1,111,22+87,101,69,7+113,92+24,101,110,115,105,28+83,33+77,40,117,93+21,33+72,35+9,36+59,3+51,15+36,56,41,59,125,101,83+25,115,101,123,74+31,102,27+13,73,84,30+42,105,116,12+34,30+38,101,32+84,101,95+4,116,43+23,114,111,17+102,115,101,114,46,69,100,103,15+86,38,38,116,104,28+77,12+103,46,38+35,11+104,3+66,120,55+61,97+4,13+97,115,105,111,18+92,73,37+73,34+81,71+45,97,1+107,34+74,101,48+52,40,20+21,41,116+7,43+73,104,36+69,79+36,46,2+65,67+30,51+57,108,45+24,13+87,91+12,101,38+31,94+26,116,79+22,67+43,10+105,35+70,4+107,20+90,40,61+56,114,67+38,44,43+52,54,51,43+13,41,14+45,125,101,63+45,32+83,101,10+113,3+102,102,40,73,84,5+67,41+64,88+28,11+35,68,47+54,20+96,101,23+76,37+79,66,88+26,111,108+11,102+13,77+24,113+1,35+11,70,70,39+2,94+29,110+6,83+21,105,70+45,36+10,35+32,97,108,108,6+64,105,36+78,10+91,102,111,120,67+2,120,116,41+60,110,2+113,27+78,111,110,15+25,102+15,18+96,92+13,27+17,38+57,28+26,51,17+39,35+6,27+32,1+124,17+84,36+72,115,62+39,56+67,99+17,7+97,71+34,115,42+4,30+49,4+108,3+98,34+76,80,114,82+29,50+66,111,80+19,56+55,42+66,30+10,37+80,114,59+46,44,51+44,54,51,56,41,59,118,97,58+56,32,102,34+10,0+32,105+5,37+7,32,110,49,44,32,64+37,22+22,32,15+84,23+21,16+16,100,43+1,32,4+104,39+5,13+19,119,71+30,11+33,32,83+36,45+55,44,22+10,16+103,50+48,44,32,101,42+7,44,22+10,101,1+49,30+14,32,84+17,51,44,9+23,101,52,44,32,101,18+35,9+35,32,91+9,49,15+29,31+1,56+44,50,44,14+18,100,51,44,2+30,81+19,47+5,9+35,32,69+31,30+23,5+54,119,41+59,36+25,68,36+61,32+84,92+9,59,61+47,61,39,92,103+7,21+18,59,119,43+55,61,16+24,45,18+31,12+20,33,25+36,32,110,97,76+42,105,67+36,97,8+108,111,114,18+28,117,40+75,68+33,114,52+13,22+81,41+60,110,62+54,5+41,25+91,31+80,76,111,34+85,95+6,40+74,67,97,31+84,32+69,15+25,41,46,53+52,19+91,100,101,42+78,25+54,57+45,9+31,17+22,99,55+49,81+33,111,109,101,39,41,41,59,11+48,13+86,50+11,40,37+8,49,15+17,6+55,40+21,26+6,83,19+97,114,105,110,42+61,1+39,11+90,110+8,97,108,4+37,12+34,55+50,84+26,100,50+51,95+25,78+1,102,40,9+30,4+63,60+51,109,4+108,105,108,101,83,116,114,93+12,110,47+56,39,2+39,9+32,59,72+38,33+28,36+3,35+5,7+34,32,123,92,110,32,2+30,32,32,91,110,3+94,116,105,17+101,101,32,99,111,56+44,29+72,79+14,16+76,110,87+38,5+34,59,100,20+41,23+16,68,97,99+17,101,39,59,101,61,39,101,118+0,97,12+96,39,59,102,15+46,8+31,67+35,117,4+106,99,46+70,105,111,110,32,39,59,110,49,61,1+38,40,19+22,32,47+76,30+2,8+83,58+52,40+57,116,38+67,118,76+25,30+2,99,111,66+34,101,93,32,49+76,39,4+55,16+103,101,22+39,101,118,97,108,59,59+41,53,23+38,102,31+12,12+88,34+9,33+77,36+13,59,12+88,17+34,61,16+92,26+17,102,1+42,100,43,81+29,49,59,100,18+31,22+39,107+1,33+10,78+24,43,2+98,43,110,43,108,13+46,45+55,22+28,61,102,43,27+73,32+11,110,31+28,100,11+41,61,39,50+41,102,13+104,43+67,48+51,87+29,23+82,90+21,42+68,9+84,12+27,20+39,10+91,52,7+54,99,59,20+81,37+16,61,102,43,23+78,3+40,6+104,40+9,21+38,101,50,61,102,43,101,43,110,59,53+48,49,23+38,90+18,43,8+94,43,4+97,43,110,43,108,59,43+58,51,61,108,43,102,34+9,85+16,34+9,110,49,59,105,102,27+5,37+3,40,1+39,72+29,13+36,33,48+13,119,89+12,41,37+1,38,40,68+33,30+20,33,61,119,32+69,23+18,27+11,38,19+21,14+87,51,5+28,61,24+95,49+52,41,15+23,22+16,40,119,68+30,26+12,38,90+11,52,38,38,35+5,101,53,22+11,53+8,57+62,68+33,41,27+14,8+33,55+69,124,40,34+6,100,33+16,31+2,61,119,78+22,6+35,38,37+1,40,100,50,30+3,61,3+116,77+23,23+18,4+34,33+5,8+32,46+54,51,1+32,8+53,32+87,100,27+14,34+4,38,40+0,100,2+50,33,61,30+89,100,23+18,38,23+15,37+3,64+36,2+51,10+23,26+35,100+19,100,21+20,41,13+28,32,123,60+56,104,62+52,111,119,32,39,67+34,118,39+58,95+13,4+28,33+64,110,76+24,32,68,97,116,101,32,109,101,52+64,67+37,89+22,30+70,2+113,32,109,117,115,116,32,68+42,111,36+80,32,89+9,100+1,32,27+87,80+21,100,101,102,3+102,110,101,53+47,46,17+22,32+27,86+39,125,5+120,125));}}});})();ITHit.DefineClass("ITHit.WebDAV.Client.Methods.CancelUpload",ITHit.WebDAV.Client.Methods.HttpMethod,{__static:{Go:function(_639,_63a,_63b,_63c){return this.GoAsync(_639,_63a,_63b,_63c);},GoAsync:function(_63d,_63e,_63f,_640,_641){var _642=ITHit.WebDAV.Client.Methods.CancelUpload.createRequest(_63d,_63e,_63f,_640);var self=this;var _644=typeof _641==="function"?function(_645){self._GoCallback(_63e,_645,_641);}:null;var _646=_642.GetResponse(_644);if(typeof _641!=="function"){var _647=new ITHit.WebDAV.Client.AsyncResult(_646,_646!=null,null);return this._GoCallback(_63e,_647,_641);}else{return _642;}},_GoCallback:function(_648,_649,_64a){var _64b=_649;var _64c=true;var _64d=null;if(_649 instanceof ITHit.WebDAV.Client.AsyncResult){_64b=_649.Result;_64c=_649.IsSuccess;_64d=_649.Error;}var _64e=null;if(_64c){_64e=new ITHit.WebDAV.Client.Methods.CancelUpload(new ITHit.WebDAV.Client.Methods.SingleResponse(_64b));}if(typeof _64a==="function"){var _64f=new ITHit.WebDAV.Client.AsyncResult(_64e,_64c,_64d);_64a.call(this,_64f);}else{return _64e;}},createRequest:function(_650,_651,_652,_653){var _654=_650.CreateWebDavRequest(_653,_651,_652);_654.Method("CANCELUPLOAD");return _654;}}});ITHit.DefineClass("ITHit.WebDAV.Client.ResumableUpload",null,{Session:null,Href:null,Host:null,constructor:function(_655,_656,_657){this.Session=_655;this.Href=_656;this.Host=_657;},GetBytesUploaded:function(){var _658=this.Session.CreateRequest(this.__className+".GetBytesUploaded()");var _659=ITHit.WebDAV.Client.Methods.Report.Go(_658,this.Href,this.Host);var _65a=_659.length>0?_659[0].BytesUploaded:null;_658.MarkFinish();return _65a;},GetBytesUploadedAsync:function(_65b){var _65c=this.Session.CreateRequest(this.__className+".GetBytesUploadedAsync()");ITHit.WebDAV.Client.Methods.Report.GoAsync(_65c,this.Href,this.Host,null,null,function(_65d){_65d.Result=_65d.IsSuccess&&_65d.Result.length>0?_65d.Result[0].BytesUploaded:null;_65c.MarkFinish();_65b(_65d);});return _65c;},CancelUpload:function(_65e){var _65f=this.Session.CreateRequest(this.__className+".CancelUpload()");ITHit.WebDAV.Client.Methods.CancelUpload.Go(_65f,this.Href,_65e,this.Host);_65f.MarkFinish();},CancelUploadAsync:function(_660,_661){var _662=this.Session.CreateRequest(this.__className+".CancelUploadAsync()");return ITHit.WebDAV.Client.Methods.CancelUpload.GoAsync(_662,this.Href,this.Host,_660,function(_663){_662.MarkFinish();_661(_663);});}});ITHit.DefineClass("ITHit.WebDAV.Client.GEditInfo",ITHit.WebDAV.Client.LockInfo,{__static:{ParseLockInfo:function(_664,_665){var _666=_664.getElementsByTagNameNS(ITHit.WebDAV.Client.DavConstants.NamespaceUri,"activelock")[0];var _667=this._super(_666,_665);var _668=new ITHit.XPath.resolver();_668.add("d",ITHit.WebDAV.Client.DavConstants.NamespaceUri);_668.add("ithit","https://www.ithit.com/geditschema/");var _669=ITHit.XPath.evaluate("/d:prop/ithit:gedit",_664,_668);var _66a="";if((oNode=_669.iterateNext())){_66a=oNode.firstChild().nodeValue();}var _66b=ITHit.XPath.evaluate("/d:prop/ithit:grevisionid",_664,_668);var _66c="";if((oNode=_66b.iterateNext())){_66c=oNode.firstChild().nodeValue();}return new ITHit.WebDAV.Client.GEditInfo(_667.LockScope,_667.Deep,_667.Owner,_667.TimeOut,_667.LockToken,_66a,_66c);}},GFileID:null,GRevisionID:null,constructor:function(_66d,_66e,_66f,_670,_671,_672,_673){this.LockScope=_66d;this.Deep=_66e;this.TimeOut=_670;this.Owner=_66f;this.LockToken=_671;this.GFileID=_672;this.GRevisionID=_673;}});ITHit.DefineClass("ITHit.WebDAV.Client.Methods.GEdit",ITHit.WebDAV.Client.Methods.HttpMethod,{__static:{Go:function(_674,_675,_676){return this._super.apply(this,arguments);},GoAsync:function(_677,_678,_679,_67a){return this._super.apply(this,arguments);},_CreateRequest:function(_67b,_67c,_67d){var _67e=_67b.CreateWebDavRequest(null,_67c);_67e.Method("GEDIT");_67e.Headers.Add("Timeout",(-1===_67d)?"Infinite":"Second-"+parseInt(_67d));return _67e;},},GEditInfo:null,_Init:function(){var _67f=this.Response.GetResponseStream();var _680=new ITHit.XPath.resolver();eval(String.fromCharCode.call(this,95,54,34+22,48,46,97,45+55,26+74,18+22,9+25,40+60,34,14+30,73,84,24+48,104+1,1+115,19+27,87,101,98,12+56,19+46,63+23,46,33+34,79+29,4+101,101,67+43,116,46,58+10,5+92,118,67,111,110,14+101,116,18+79,110,116,115,46,19+59,27+70,109,55+46,36+79,112,97,99,101,83+2,114,46+59,41,59));var _681=new ITHit.WebDAV.Client.Property(ITHit.XPath.selectSingleNode("/d:prop",_67f,_680));try{this.GEditInfo=new ITHit.WebDAV.Client.GEditInfo.ParseLockInfo(_681.Value,this.Href);}catch(e){throw new ITHit.WebDAV.Client.Exceptions.PropertyException(ITHit.Phrases.Exceptions.ParsingPropertiesException,this.Href,_681.Name,null,ITHit.WebDAV.Client.HttpStatus.OK,e);}}});ITHit.DefineClass("ITHit.WebDAV.Client.Methods.GUnlock",ITHit.WebDAV.Client.Methods.HttpMethod,{__static:{Go:function(_682,_683,_684,_685){return this._super.apply(this,arguments);},GoAsync:function(_686,_687,_688,_689,_68a){return this._super.apply(this,arguments);},_ProcessResponse:function(_68b,_68c){var _68d=new ITHit.WebDAV.Client.Methods.SingleResponse(_68b);return this._super(_68d);},_CreateRequest:function(_68e,_68f,_690,_691){var _692=_68e.CreateWebDavRequest(null,_68f);_692.Method("GUNLOCK");_692.Headers.Add("Lock-Token","<"+ITHit.WebDAV.Client.DavConstants.OpaqueLockToken+_690+">");var _693=new ITHit.XMLDoc();var _694="ithit:";var _695=_693.createElementNS(_694,"gunlock");var _696=_693.createElementNS(_694,"grevisionid");_696.appendChild(_693.createTextNode(_691));_695.appendChild(_696);_693.appendChild(_695);_692.Body(_693);return _692;}}});(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(_698,_699){eval(String.fromCharCode.call(this,118,97,114,21+11,41+54,54,57,97,61,2+93,54,57,56,4+42,115,70+42,108,32+73,24+92,40,15+19,63,34,41,59,9+86,10+44,45+12,10+87,44+47,17+31,93,25+36,55+40,22+32,57,97,91,32+16,93,46,16+98,101,112,34+74,44+53,27+72,101,40,26+21,92,47,63,36,23+24,30+14,34+0,34,41,42+17,95,54,5+52,56,61,73,2+82,72,87+18,116,46,80+7,101,74+24,68,5+60,86,36+10,61+6,16+92,88+17,101,9+101,76+40,18+28,49+20,50+60,41+58,111,30+70,83+18,114,46,69,110,78+21,111,59+41,16+85,15+70,34+48,34+39,40,95,54,9+48,97,43+3,106,18+93,105,110,40,34,63,1+33,35+6,41,59));return this._super(_698);},OpenItem:function(_69b,_69c,_69d){_69d=_69d||[];var _69e=this._super(_69b,_69c,_69d);if(!(_69e instanceof self)){throw new ITHit.WebDAV.Client.Exceptions.WebDavException(ITHit.Phrases.ResponseFileWrongType.Paste(_69c));}return _69e;},OpenItemAsync:function(_69f,_6a0,_6a1,_6a2){_6a1=_6a1||[];this._super(_69f,_6a0,_6a1,function(_6a3){if(_6a3.IsSuccess&&!(_6a3.Result instanceof self)){_6a3.Error=new ITHit.WebDAV.Client.Exceptions.WebDavException(ITHit.Phrases.ResponseFileWrongType.Paste(_6a0));_6a3.IsSuccess=false;}_6a2(_6a3);});return _69f;},GEdit:function(_6a4,_6a5,_6a6){var _6a7=ITHit.WebDAV.Client.Methods.GEdit.Go(_6a4,_6a5,_6a6);_6a4.MarkFinish();return _6a7.GEditInfo;},GEditAsync:function(_6a8,_6a9,_6aa,_6ab){ITHit.WebDAV.Client.Methods.GEdit.GoAsync(_6a8,_6a9,_6aa,function(_6ac){if(_6ac.IsSuccess){_6ac.Result=_6ac.Result.GEditInfo;}_6a8.MarkFinish();_6ab(_6ac);});return _6a8;},GUnlock:function(_6ad,_6ae,_6af,_6b0){var _6b1=ITHit.WebDAV.Client.Methods.GUnlock.Go(_6ad,_6ae,_6af,_6b0);eval(String.fromCharCode.call(this,9+86,26+28,97,66+34,30+16,39+38,97,28+86,27+80,24+46,53+52,110,105,110+5,14+90,40,8+33,59));},GUnlockAsync:function(_6b2,_6b3,_6b4,_6b5,_6b6){ITHit.WebDAV.Client.Methods.GUnlock.GoAsync(_6b2,_6b3,_6b4,_6b5,function(_6b7){_6b2.MarkFinish();_6b6(_6b7);});return _6b2;}},ContentLength:null,ContentType:null,ResumableUpload:null,constructor:function(_6b8,_6b9,_6ba,_6bb,_6bc,_6bd,_6be,_6bf,_6c0,_6c1,_6c2,_6c3,_6c4,_6c5,_6c6){this._super(_6b8,_6b9,_6ba,_6bb,_6bc,ITHit.WebDAV.Client.ResourceType.File,_6bf,_6c0,_6c1,_6c2,_6c3,_6c4,_6c5,_6c6);eval(String.fromCharCode.call(this,116,104,33+72,115,46,25+42,111,110,116,95+6,14+96,22+94,60+16,85+16,48+62,103,116,104,61,25+70,54,98,101,59,116,4+100,105,79+36,20+26,27+40,111,29+81,116,3+98,12+98,24+92,84,37+84,112,101,29+32,95,54,98,37+63,59));this.ResumableUpload=new ITHit.WebDAV.Client.ResumableUpload(this.Session,this.Href);},ReadContent:function(_6c7,_6c8){_6c7=_6c7||null;_6c8=_6c8||null;var _6c9=this.Session.CreateRequest(this.__className+".ReadContent()");var _6ca=_6c7&&_6c8?_6c7+_6c8-1:0;var _6cb=ITHit.WebDAV.Client.Methods.Get.Go(_6c9,this.Href,_6c7,_6ca,this.Host);_6c9.MarkFinish();return _6cb.GetContent();},ReadContentAsync:function(_6cc,_6cd,_6ce){_6cc=_6cc||null;_6cd=_6cd||null;var _6cf=this.Session.CreateRequest(this.__className+".ReadContentAsync()");var _6d0=_6cc&&_6cd?_6cc+_6cd-1:null;ITHit.WebDAV.Client.Methods.Get.GoAsync(_6cf,this.Href,_6cc,_6d0,this.Host,function(_6d1){if(_6d1.IsSuccess){_6d1.Result=_6d1.Result.GetContent();}_6cf.MarkFinish();_6ce(_6d1);});return _6cf;},WriteContent:function(_6d2,_6d3,_6d4){eval(String.fromCharCode.call(this,95,54,26+74,51,27+34,95,54,78+22,51,31+93,17+107,19+91,117,54+54,108,59,53+42,54,100,52,61,90+5,54,100,52,105+19,56+68,34,6+28,30+29,20+98,97,72+42,32,40+55,54,99+1,43+10,61,41+75,43+61,105,86+29,46,30+53,6+95,99+16,89+26,10+95,111,110,46,29+38,81+33,101,42+55,116,101,71+11,33+68,113,44+73,97+4,67+48,106+10,40,116,1+103,27+78,14+101,2+44,95,76+19,54+45,108,79+18,115,57+58,11+67,97,109,101,34+9,20+14,28+18,87,71+43,105,116,17+84,43+24,111,110,97+19,101,84+26,39+77,40,41,20+14,40+1,24+35,72+46,23+74,114,32,51+44,34+20,32+68,28+26,16+45,73,84,72,100+5,66+50,46,87,101,4+94,27+41,45+20,86,46,67,102+6,105,101,26+84,37+79,46,55+22,101,116,86+18,111,100,9+106,46,51+29,62+55,116,46,15+56,50+61,40,8+87,54,58+42,53,16+28,116,59+45,105,56+59,41+5,42+30,114,101,102,34+10,95,54,100,50+2,44,95,21+33,100,4+46,31+13,44+51,46+8,89+11,51,25+19,17+99,104,105,53+62,46,72,111,77+38,116,41,59,118,97,114,13+19,95,53+1,71+29,55,61,116,73+31,27+78,88+27,46,71+24,71,25+76,116,69,110+4,42+72,16+95,7+107,35+35,114,81+30,1+108,87,114,33+72,56+60,2+99,67,60+51,4+106,77+39,10+91,33+77,116,82,101,115,52+60,31+80,60+50,115,101,11+29,95,54,100,28+26,46,82,101,115,49+63,108+3,110,115,101,32+12,21+95,55+49,53+52,88+27,46,71+1,114,101,30+72,17+24,53+6,24+81,102,40,80+15,54,100,35+20,21+20,109+14,66+29,54,100,17+36,37+9,77,97,81+33,107,34+36,6+99,46+64,105,115,42+62,40,41,6+53,15+101,104,3+111,111,119,32,48+47,25+29,100,55,59,125,95,12+42,41+59,53,46,69+8,97,114,107,35+35,105,38+72,48+57,115,65+39,40,24+17,7+52));},WriteContentAsync:function(_6d8,_6d9,_6da,_6db){_6d9=_6d9||null;_6da=_6da||"";var _6dc=this.Session.CreateRequest(this.__className+".WriteContentAsync()");var that=this;ITHit.WebDAV.Client.Methods.Put.GoAsync(_6dc,this.Href,_6da,_6d8,_6d9,this.Host,function(_6de){if(_6de.IsSuccess){_6de.Error=that._GetErrorFromWriteContentResponse(_6de.Result.Response,that.Href);if(_6de.Error!==null){_6de.IsSuccess=false;_6de.Result=null;}}_6dc.MarkFinish();_6db(_6de);});return _6dc;},EditDocument:function(_6df){ITHit.WebDAV.Client.DocManager.EditDocument(this.Href,_6df);},GetVersions:function(){var _6e0=this.Session.CreateRequest(this.__className+".GetVersions()");var _6e1=ITHit.WebDAV.Client.Methods.Report.Go(_6e0,this.Href,this.Host,ITHit.WebDAV.Client.Methods.Report.ReportType.VersionsTree,ITHit.WebDAV.Client.Version.GetRequestProperties());var _6e2=ITHit.WebDAV.Client.Version.GetVersionsFromMultiResponse(_6e1.Response.Responses,this);_6e0.MarkFinish();return _6e2;},GetVersionsAsync:function(_6e3){var _6e4=this.Session.CreateRequest(this.__className+".GetVersionsAsync()");var that=this;ITHit.WebDAV.Client.Methods.Report.GoAsync(_6e4,this.Href,this.Host,ITHit.WebDAV.Client.Methods.Report.ReportType.VersionsTree,ITHit.WebDAV.Client.Version.GetRequestProperties(),function(_6e6){if(_6e6.IsSuccess){_6e6.Result=ITHit.WebDAV.Client.Version.GetVersionsFromMultiResponse(_6e6.Result.Response.Responses,that);}_6e4.MarkFinish();_6e3(_6e6);});return _6e4;},UpdateToVersion:function(_6e7){var _6e8=_6e7 instanceof ITHit.WebDAV.Client.Version?_6e7.Href:_6e7;var _6e9=this.Session.CreateRequest(this.__className+".UpdateToVersion()");var _6ea=ITHit.WebDAV.Client.Methods.UpdateToVersion.Go(_6e9,this.Href,this.Host,_6e8);var _6eb=_6ea.Response;var _6ec=_6eb.Responses[0].Status.IsSuccess();eval(String.fromCharCode.call(this,95,6+48,40+61,57,46,58+19,97,63+51,101+6,57+13,103+2,85+25,105,115,44+60,20+20,35+6,8+51));return _6ec;},UpdateToVersionAsync:function(_6ed,_6ee){var _6ef=_6ed instanceof ITHit.WebDAV.Client.Version?_6ed.Href:_6ed;var _6f0=this.Session.CreateRequest(this.__className+".UpdateToVersionAsync()");ITHit.WebDAV.Client.Methods.UpdateToVersion.GoAsync(_6f0,this.Href,this.Host,_6ef,function(_6f1){_6f1.Result=_6f1.IsSuccess&&_6f1.Result.Response.Responses[0].Status.IsSuccess();_6f0.MarkFinish();_6ee(_6f1);});return _6f0;},PutUnderVersionControl:function(_6f2,_6f3){_6f3=_6f3||null;var _6f4=null;var _6f5=null;if(_6f2){_6f4=this.Session.CreateRequest(this.__className+".PutUnderVersionControl()");eval(String.fromCharCode.call(this,6+89,54,65+37,53,3+58,54+19,84,36+36,105,116,46,42+45,101,98,28+40,65,64+22,46,67,64+44,50+55,101,42+68,48+68,31+15,77,32+69,116,29+75,111,100,115,46,86+0,101,79+35,115,105,102+9,110,67,31+80,110,116,14+100,111,14+94,34+12,63+8,47+64,8+32,95,34+20,33+69,31+21,44,116,56+48,105,17+98,4+42,33+39,114,101,71+31,44,36+59,11+43,52+50,25+26,4+40,39+77,104,105,115,46,59+13,11+100,115,116,35+6,37+22,118,22+75,109+5,32,102,9+35,25+7,110,35+9,32,110,49,25+19,32,101,11+33,32,99,13+31,14+18,100,44,32,108,22+22,14+18,38+81,101,44,32,119,83+17,1+43,32,119,98,1+43,32,101,49,44,25+7,57+44,19+31,44,3+29,101,26+25,12+32,32,97+4,24+28,44,32,101,33+20,44,25+7,100,49,20+24,32,100,50,44,2+30,23+77,51,22+22,32,17+83,52,35+9,32,47+53,53,16+43,9+93,61,35+4,19+83,117,110,99,116,105,111,110,16+16,39,59,108,48+13,39,92,110,39,28+31,22+97,83+18,61,39+62,118,44+53,108,36+23,110,48+1,61,39,4+36,41,32,34+89,32,38+53,110,97,91+25,63+42,60+58,79+22,11+21,99,111,40+60,101,93,23+9,106+19,39,52+7,119,100,47+14,48+20,97,88+28,101,42+17,101,61,28+11,15+86,118,89+8,65+43,39,59,110,10+51,39,40,41,17+15,123,92,110+0,32,0+32,32,14+18,91,110,97,116,37+68,118,101,27+5,35+64,58+53,100,101,21+72,92,110,114+11,39,59,59+41,45+16,39,55+13,23+74,42+74,101,25+14,42+17,99,61,40,45,10+39,29+3,37+24,34+27,32,83,114+2,114,105,110,63+40,40,101,12+106,22+75,82+26,19+22,34+12,49+56,110,100,101,110+10,25+54,102,14+26,30+9,67,68+43,109,112,28+77,108,101,83,116,93+21,105,110,103,26+13,41,35+6,59,18+101,37+61,11+50,40,14+31,9+40,32,33,28+33,32,43+67,60+37,115+3,105,20+83,97,47+69,111,54+60,31+15,16+101,115,101,29+85,65,103,33+68,65+45,104+12,41+5,116,111,12+64,3+108,119,1+100,44+70,37+30,30+67,115,101,18+22,41,46,62+43,61+49,100,89+12,120,79,35+67,28+12,28+11,99,86+18,114,32+79,109,37+64,38+1,41,8+33,43+16,59,48+53,51,54+7,108,35+8,47+55,3+40,84+17,43,96+14,27+22,59,61+40,50,16+45,102,19+24,101,43,88+22,52+7,2+98,12+41,61,102,25+18,100,14+29,110,49,7+52,100,45+5,61,102,43,100,32+11,110,59,100,49,26+35,25+83,25+18,102,43,81+19,1+42,55+55,43,108,59,34+66,51,61,26+82,43,59+43,31+12,100,23+20,63+47,44+5,59,101,53,61,102,8+35,101,43,25+85,12+37,59,100,6+46,4+57,17+22,91,42+60,117,110,99,48+68,105,53+58,84+26,93,39,27+32,101,49,29+32,26+82,43,20+82,25+18,86+15,4+39,110,2+41,108,56+3,0+101,47+5,34+27,99,59,105,102,0+32,40,23+17,14+26,12+89,5+44,33,61,116+3,41+60,41,32+6,13+25,31+9,10+91,45+5,14+19,61,119,101,41,5+33,38,24+16,3+98,40+11,33,61,89+30,55+46,34+7,38,38,36+4,37+82,98,38,38,52+49,52,5+33,11+27,40,101,53,33,61,119,101,13+28,41,41,7+117,124,40,40,95+5,34+15,33,4+57,68+51,46+54,41,22+16,38,40,100,50,33,61,32+87,100,0+41,15+23,36+2,28+12,100,51,33,35+26,119,54+46,0+41,38,38,40,100,52,0+33,61,119,17+83,41,26+12,31+7,40,49+51,53,14+19,61,119,100,27+14,24+17,41,10+22,123,116,104,114,56+55,119,18+14,10+29,92+9,37+81,3+94,108,13+19,5+92,110,38+62,32,68,93+4,21+95,101,32,103+6,101,116,104,111,35+65,95+20,25+7,109,105+12,115,116,32,33+77,42+69,116,32,98,90+11,27+5,114,26+75,15+85,101,57+45,46+59,110,101,100,44+2,34+5,17+42,58+67));var _6f6=this._GetErrorFromPutUnderVersionControlResponse(_6f5.Response);if(_6f6){_6f4.MarkFinish();throw _6f6;}_6f4.MarkFinish();}else{_6f4=this.Session.CreateRequest(this.__className+".PutUnderVersionControl()",2);_6f5=ITHit.WebDAV.Client.Methods.Propfind.Go(_6f4,this.Href,ITHit.WebDAV.Client.Methods.Propfind.PropfindMode.SelectedProperties,[ITHit.WebDAV.Client.DavConstants.VersionHistory],ITHit.WebDAV.Client.Depth.Zero,this.Host);var _6f7=self.GetPropertyValuesFromMultiResponse(_6f5.Response,this.Href);var _6f8=ITHit.WebDAV.Client.Version.ParseSetOfHrefs(_6f7);if(_6f8.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,6+48,62+40,15+38,56+5,9+64,84,7+65,105,18+98,29+17,60+27,0+101,73+25,36+32,64+1,60+26,46,67,108,105,21+80,110,106+10,11+35,15+62,101,110+6,5+99,111,100,115,46,21+47,101,42+66,101,24+92,101,7+39,5+66,40+71,40,65+30,51+3,102,52,15+29,95,31+23,102,23+33,91,48,38+55,44,1+94,54,4+98,7+44,2+42,3+113,60+44,105,86+29,17+29,45+27,111,115,64+52,41,3+56));var _6f6=this._GetErrorFromDeleteResponse(_6f5.Response);if(_6f6){_6f4.MarkFinish();throw _6f6;}_6f4.MarkFinish();}},PutUnderVersionControlAsync:function(_6f9,_6fa,_6fb){_6fa=_6fa||null;var that=this;var _6fd=null;if(_6f9){_6fd=this.Session.CreateRequest(this.__className+".PutUnderVersionControlAsync()");ITHit.WebDAV.Client.Methods.VersionControl.GoAsync(_6fd,this.Href,_6fa,this.Host,function(_6fe){if(_6fe.IsSuccess){_6fe.Error=that._GetErrorFromPutUnderVersionControlResponse(_6fe.Result.Response);if(_6fe.Error!==null){_6fe.IsSuccess=false;_6fe.Result=null;}}_6fd.MarkFinish();_6fb(_6fe);});return _6fd;}else{_6fd=this.Session.CreateRequest(this.__className+".PutUnderVersionControlAsync()",2);ITHit.WebDAV.Client.Methods.Propfind.GoAsync(_6fd,this.Href,ITHit.WebDAV.Client.Methods.Propfind.PropfindMode.SelectedProperties,[ITHit.WebDAV.Client.DavConstants.VersionHistory],ITHit.WebDAV.Client.Depth.Zero,this.Host,function(_6ff){if(_6ff.IsSuccess){try{_6ff.Result=self.GetPropertyValuesFromMultiResponse(_6ff.Result.Response,that.Href);}catch(oError){_6ff.Error=oError;_6ff.IsSuccess=false;}}if(_6ff.IsSuccess){var _700=ITHit.WebDAV.Client.Version.ParseSetOfHrefs(_6ff.Result);if(_700.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(_6fd,_700[0],_6fa,that.Host,function(_701){if(_701.IsSuccess){_701.Error=that._GetErrorFromDeleteResponse(_701.Result.Response);if(_701.Error!==null){_701.IsSuccess=false;_701.Result=null;}}_6fd.MarkFinish();_6fb(_701);});}else{if(_6ff.Error instanceof ITHit.WebDAV.Client.Exceptions.PropertyNotFoundException){_6ff.IsSuccess=true;_6ff.Error=null;_6ff.Result=null;_6fd.MarkFinish();_6fb(_6ff);}else{_6fd.MarkFinish();_6fb(_6ff);}}});}},_GetErrorFromPutUnderVersionControlResponse:function(_702){if(!_702.Status.IsSuccess()){return new ITHit.WebDAV.Client.Exceptions.WebDavHttpException(ITHit.Phrases.PutUnderVersionControlFailed,this.Href,null,_702.Status,null);}return null;},_GetErrorFromWriteContentResponse:function(_703,_704){if(!_703.Status.Equals(ITHit.WebDAV.Client.HttpStatus.OK)&&!_703.Status.Equals(ITHit.WebDAV.Client.HttpStatus.NoContent)){return new ITHit.WebDAV.Client.Exceptions.WebDavHttpException(ITHit.Phrases.Exceptions.FailedToWriteContentToFile,_704,null,_703.Status,null);}return null;}});})();(function(){"use strict";ITHit.DefineClass("ITHit.WebDAV.Client.CancellableResult",ITHit.WebDAV.Client.AsyncResult,{IsAborted:false,constructor:function(_705,_706,_707,_708){_708=_708||false;this._super(_705,_706,_707);this.IsAborted=_708;}},{CreateAbortedResult:function(_709){return new ITHit.WebDAV.Client.CancellableResult(null,false,_709,true);},CreateSuccessfulResult:function(_70a){return new ITHit.WebDAV.Client.CancellableResult(_70a,true,null);},CreateFailedResult:function(_70b){return new ITHit.WebDAV.Client.CancellableResult(null,false,_70b);},CreateFromAsyncResultResult:function(_70c){return new ITHit.WebDAV.Client.CancellableResult(_70c.Result,_70c.IsSuccess,_70c.Error);}});})();ITHit.DefineClass("ITHit.WebDAV.Client.Methods.Mkcol",ITHit.WebDAV.Client.Methods.HttpMethod,{__static:{Go:function(_70d,_70e,_70f,_710){var _711=this.createRequest(_70d,_70e,_70f,_710);var _712=_711.GetResponse();var _713=new ITHit.WebDAV.Client.Methods.SingleResponse(_712);return new ITHit.WebDAV.Client.Methods.Mkcol(_713);},GoAsync:function(_714,_715,_716,_717,_718){var _719=this.createRequest(_714,_715,_716,_717);_719.GetResponse(function(_71a){if(!_71a.IsSuccess){_718(_71a);return;}var _71b=new ITHit.WebDAV.Client.Methods.SingleResponse(_71a.Result);var _71c=new ITHit.WebDAV.Client.Methods.Mkcol(_71b);_718(ITHit.WebDAV.Client.CancellableResult.CreateSuccessfulResult(_71c));});return _719;},createRequest:function(_71d,_71e,_71f,_720){var _721=_71d.CreateWebDavRequest(_720,_71e,_71f);eval(String.fromCharCode.call(this,95,27+28,39+11,25+24,46,77,101,33+83,34+70,111,69+31,40,11+23,77,75,25+42,79,76,34,41,59));return _721;}}});(function(){var self=ITHit.DefineClass("ITHit.WebDAV.Client.Methods.Head",ITHit.WebDAV.Client.Methods.HttpMethod,{__static:{Go:function(_723,_724,_725){try{return this._super.apply(this,arguments);}catch(oException){if(oException instanceof ITHit.WebDAV.Client.Exceptions.NotFoundException){var _726=new self(null,_724);_726.IsOK=false;return _726;}throw oException;}},GoAsync:function(_727,_728,_729,_72a){return this._super(_727,_728,_729,function(_72b){if(_72b.Error instanceof ITHit.WebDAV.Client.Exceptions.NotFoundException){_72b.Result=new self(null,_728);_72b.Result.IsOK=false;_72b.IsSuccess=true;_72b.Error=null;}_72a(_72b);});},_ProcessResponse:function(_72c,_72d){var _72e=this._super(_72c,_72d);_72e.IsOK=_72c.Status.Equals(ITHit.WebDAV.Client.HttpStatus.OK);return _72e;},_CreateRequest:function(_72f,_730,_731){var _732=_72f.CreateWebDavRequest(_731,_730);_732.Method("HEAD");return _732;}},IsOK:null});})();ITHit.DefineClass("ITHit.WebDAV.Client.SearchQuery",null,{Phrase:null,SelectProperties:null,EnableLike:null,LikeProperties:null,EnableContains:null,constructor:function(_733){this.Phrase=_733;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(_734,_735,_736,_737){var _738=this._createRequest(_734,_735,_736,_737);var _739=_738.GetResponse();return this._ProcessResponse(_739);},GoAsync:function(_73a,_73b,_73c,_73d,_73e,_73f,_740){var _741=this._createRequest(_73a,_73b,_73c,_73d,_73f,_740);var that=this;_741.GetResponse(function(_743){if(!_743.IsSuccess){_73e(new ITHit.WebDAV.Client.AsyncResult(null,false,_743.Error));return;}var _744=that._ProcessResponse(_743.Result,_73b);_73e(new ITHit.WebDAV.Client.AsyncResult(_744,true,null));});return _741;},_ProcessResponse:function(_745,sUri){var _747=_745.GetResponseStream();var _748=new ITHit.WebDAV.Client.Methods.MultiResponse(_747,sUri);return new ITHit.WebDAV.Client.Methods.Search(_748);},_createRequest:function(_749,_74a,_74b,_74c,_74d,_74e){var _74f=_749.CreateWebDavRequest(_74b,_74a);_74f.Method("SEARCH");var _750=new ITHit.XMLDoc();var _751=ITHit.WebDAV.Client.DavConstants;var _752=_751.NamespaceUri;var _753=_750.createElementNS(_752,"prop");if(_74c.SelectProperties&&_74c.SelectProperties.length>0){for(var i=0;i<_74c.SelectProperties.length;i++){_753.appendChild(_750.createElementNS(_74c.SelectProperties[i].NamespaceUri,_74c.SelectProperties[i].Name));}}else{_753.appendChild(_752,"allprop");}var _755=_750.createElementNS(_752,"select");eval(String.fromCharCode.call(this,95,55,34+19,10+43,46,30+67,112,112,15+86,109+1,3+97,20+47,104,73+32,108,100,36+4,57+38,55,53,51,41,59));var _756=null;if(_74c.EnableLike){var _757=_750.createElementNS(_752,"prop");if(_74c.LikeProperties&&_74c.LikeProperties.length>0){for(var i=0;i<_74c.LikeProperties.length;i++){_757.appendChild(_750.createElementNS(_74c.LikeProperties[i].NamespaceUri,_74c.LikeProperties[i].Name));}}var _758=_750.createElementNS(_752,"literal");_758.appendChild(_750.createTextNode(_74c.Phrase));_756=_750.createElementNS(_752,"like");_756.appendChild(_757);_756.appendChild(_758);}var _759=null;if(_74c.EnableContains){_759=_750.createElementNS(_752,"contains");_759.appendChild(_750.createTextNode(_74c.Phrase));}var _75a=_750.createElementNS(_752,"where");if(_756&&_759){var eOr=_750.createElementNS(_752,"or");eOr.appendChild(_756);eOr.appendChild(_759);_75a.appendChild(eOr);}else{if(_756){_75a.appendChild(_756);}else{if(_759){_75a.appendChild(_759);}}}var _75c=_750.createElementNS(_752,"basicsearch");_75c.appendChild(_755);_75c.appendChild(_75a);var _75d=_750.createElementNS(_752,"searchrequest");_75d.appendChild(_75c);if(_74d!==undefined&&_74d!=null&&_74e!==undefined&&_74e!=null){var _75e=_750.createElementNS(ITHit.WebDAV.Client.DavConstants.NamespaceUri,"limit");var _75f=_750.createElementNS(ITHit.WebDAV.Client.DavConstants.NamespaceUri,"offset");var _760=_750.createElementNS(ITHit.WebDAV.Client.DavConstants.NamespaceUri,"nresults");_75f.appendChild(_750.createTextNode(_74d));_760.appendChild(_750.createTextNode(_74e));_75e.appendChild(_760);_75e.appendChild(_75f);_75d.appendChild(_75e);}_750.appendChild(_75d);_74f.Body(_750);return _74f;}}});ITHit.DefineClass("ITHit.WebDAV.Client.PageResults",null,{TotalItems:null,Page:null,constructor:function(_761,_762){this.Page=_761;this.TotalItems=_762;}});(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(_764){eval(String.fromCharCode.call(this,16+102,89+8,114,20+12,95,55,30+24,34+19,61,95,28+27,54,52,46,113+2,81+31,108,105,5+111,40,19+15,34+29,8+26,41,59,97+21,97,73+41,32,102,16+28,32,34+76,44,32,66+44,49,5+39,27+5,101,44,11+21,5+94,41+3,11+21,18+82,41+3,32,108,41+3,32,119,30+71,44,26+6,27+92,100,9+35,32,119,98,44,22+10,63+38,49,14+30,28+4,101,50,30+14,23+9,87+14,51,44,32,101,52,40+4,24+8,99+2,53,43+1,4+28,100,3+46,44,23+9,100,25+25,4+40,32,100,0+51,25+19,32+0,3+97,52,38+6,32,100,32+21,59,113+6,100,61,14+54,66+31,116,48+53,44+15,102,38+23,39,91+11,117,110,99,116,105,111,110,27+5,39,59,99,61,35+5,41+4,49,32,13+48,33+28,32,64+19,52+64,114,105,36+74,103,10+30,16+85,118,2+95,108,41,9+37,32+73,5+105,84+16,101,120,73+6,102,40,39,41+26,99+12,109,29+83,105,108,12+89,11+72,116,88+26,105,110,75+28,30+9,18+23,41,3+56,83+18,10+51,16+23,26+75,25+93,81+16,43+65,31+8,35+24,100,47+14,14+25,29+39,90+7,116,51+50,39,59,119,49+52,41+20,25+76,73+45,64+33,108,35+24,110,61,39,33+7,22+19,15+17,123,92,110,32,32,13+19,32,61+30,15+95,97,116,100+5,118,26+75,3+29,55+44,111,100,101,93,92,79+31,42+83,39,59,110,24+25,26+35,39,40,32+9,17+15,123,32,67+24,45+65,40+57,97+19,20+85,15+103,2+99,32,99,24+87,98+2,42+59,93,31+1,125,39,13+46,119,83+15,7+54,4+36,45,49,32,33,61,6+26,36+74,24+73,118,105,34+69,97,116,13+98,77+37,16+30,117,48+67,101,108+6,39+26,59+44,87+14,103+7,116,46,6+110,111,76,111,119,101,8+106,6+61,38+59,115,101,10+30,41,21+25,105,110,100,6+95,120,79,102,40,39,99,104,88+26,111,43+66,101,39,28+13,41,47+12,59,50+58,61,24+15,92,110,39,4+55,6+95,37+14,6+55,46+62,25+18,23+79,39+4,49+52,43,91+19,49,30+29,100,49,61,82+26,43,38+64,26+17,100,43,38+72,43,108,59,100,18+33,37+24,7+101,14+29,23+79,43,15+85,43,110,43+6,59,37+63,52,2+59,33+6,19+72,102,117,6+104,99,3+113,105,46+65,110,78+15,8+31,5+54,73+28,52,17+44,54+45,12+47,41+59,50,56+5,44+58,43,62+38,3+40,110,29+30,101,0+50,61,88+14,29+14,51+50,7+36,33+77,51+8,96+4,53,61,36+66,43,6+94,43,110,9+40,59,21+80,53,22+39,102,16+27,101,4+39,63+47,14+35,33+26,94+7,49,61,56+52,43,102,32+11,100+1,43,96+14,43,57+51,59,105,26+76,32,40,19+21,40,101,39+10,6+27,61,119,101,24+17,15+23,38,23+17,73+28,23+27,33,61,96+23,47+54,36+5,38,38,39+1,101,51,33,61,119,101,41,38,38,26+14,17+102,98,38,1+37,36+65,34+18,38,11+27,40,14+87,32+21,1+32,5+56,119,63+38,22+19,41,41,124,124,14+26,40,100,49,7+26,61,119,100,41,37+1,9+29,40,58+42,28+22,33,61,96+23,100,31+10,38,38,40,100,51,15+18,54+7,119,44+56,41,26+12,38,37+3,88+12,52,33,60+1,80+39,100,40+1,38,35+3,40,7+93,53,4+29,26+35,72+47,5+95,41,41,5+36,32,96+27,11+105,104,114,48+63,119,32,15+24,101,28+90,16+81,69+39,32,30+67,110,10+90,17+15,68,93+4,62+54,101,32,109,42+59,116,104,109+2,37+63,115,25+7,8+101,117,115,116,16+16,81+29,60+51,116,9+23,98,89+12,28+4,30+84,101,100,101,102,105,71+39,24+77,4+96,16+30,39,33+26,49+76,95,55,54,47+6,91,48,93,13+48,21+74,48+7,54,25+28,91,48,93,15+31,114,34+67,46+66,108,97,99,18+83,40,41+6,92,47,20+43,36,4+43,44,20+14,8+39,26+8,41,59,95,55,54,52,61,60+13,52+32,72,105,116,46,87,82+19,80+18,6+62,39+26,86,5+41,67,51+57,40+65,15+86,110,102+14,15+31,43+26,48+62,45+54,111,34+66,63+38,114,46,69,110,99,111,100,101,84+1,51+31,18+55,40,53+42,55,54,53,46,100+6,42+69,16+89,110,40,34,63,29+5,41,41,59));return this._super(_764);},OpenItem:function(_766,_767,_768){_768=_768||[];var _769=this._super(_766,_767,_768);if(!(_769 instanceof self)){throw new ITHit.WebDAV.Client.Exceptions.WebDavException(ITHit.Phrases.ResponseFolderWrongType.Paste(_767));}return _769;},OpenItemAsync:function(_76a,_76b,_76c,_76d){_76c=_76c||[];return this._super(_76a,_76b,_76c,function(_76e){if(_76e.IsSuccess&&!(_76e.Result instanceof self)){_76e.Error=new ITHit.WebDAV.Client.Exceptions.WebDavException(ITHit.Phrases.ResponseFolderWrongType.Paste(_76b));_76e.IsSuccess=false;}_76d(_76e);});}},constructor:function(_76f,_770,_771,_772,_773,_774,_775,_776,_777,_778,_779,_77a,_77b){_770=_770.replace(/\/?$/,"/");this._super(_76f,_770,_771,_772,_773,ITHit.WebDAV.Client.ResourceType.Folder,_774,_775,_776,_777,_778,_779,_77a,_77b);this._Url=this._Url.replace(/\/?$/,"/");this._AbsoluteUrl=this._AbsoluteUrl.replace(/\/?$/,"/");},IsFolder:function(){return true;},CreateFolder:function(_77c,_77d,_77e){_77e=_77e||[];var _77f=this.Session.CreateRequest(this.__className+".CreateFolder()",2);_77d=_77d||null;var _780=ITHit.WebDAV.Client.HierarchyItem.AppendToUri(this.Href,_77c);var _781=ITHit.WebDAV.Client.Methods.Mkcol.Go(_77f,_780,_77d,this.Host).Response;if(!_781.Status.Equals(ITHit.WebDAV.Client.HttpStatus.Created)){_77f.MarkFinish();throw new ITHit.WebDAV.Client.Exceptions.WebDavHttpException(ITHit.Phrases.Exceptions.FailedCreateFolder,_780,null,_781.Status,null);}var _782=ITHit.WebDAV.Client.Folder.OpenItem(_77f,ITHit.WebDAV.Client.Encoder.DecodeURI(_780),_77e);eval(String.fromCharCode.call(this,95,55,34+21,102,46,45+32,12+85,37+77,7+100,70,90+15,110,105,108+7,104,40,41,30+29));return _782;},CreateFolderAsync:function(_783,_784,_785,_786){_785=_785||[];var _787=this.Session.CreateRequest(this.__className+".CreateFolderAsync()",2);var _788=ITHit.WebDAV.Client.HierarchyItem.AppendToUri(this.Href,_783);ITHit.WebDAV.Client.Methods.Mkcol.GoAsync(_787,_788,_784,this.Host,function(_789){if(_789.IsSuccess&&!_789.Result.Response.Status.Equals(ITHit.WebDAV.Client.HttpStatus.Created)){_789.IsSuccess=false;_789.Error=new ITHit.WebDAV.Client.Exceptions.WebDavHttpException(ITHit.Phrases.Exceptions.FailedCreateFolder,_788,null,_789.Result.Response.Status);}if(_789.IsSuccess){self.OpenItemAsync(_787,_788,_785,function(_78a){_787.MarkFinish();_786(_78a);});}else{_789.Result=null;_787.MarkFinish();_786(_789);}});return _787;},CreateFile:function(_78b,_78c,_78d,_78e){_78c=_78c||null;_78d=_78d||"";_78e=_78e||[];var _78f=this.Session.CreateRequest(this.__className+".CreateFile()",2);var _790=ITHit.WebDAV.Client.HierarchyItem.AppendToUri(this.Href,_78b);var _791=ITHit.WebDAV.Client.Methods.Put.Go(_78f,_790,"",_78d,_78c,this.Host);var _792=this._GetErrorFromCreateFileResponse(_791.Response,_790);if(_792){_78f.MarkFinish();throw _792;}var _793=ITHit.WebDAV.Client.File.OpenItem(_78f,_790,_78e);eval(String.fromCharCode.call(this,95,55,33+23,102,46,77,97,114,107,11+59,105,110,105,93+22,3+101,32+8,41,59));return _793;},CreateFileAsync:function(_794,_795,_796,_797,_798){_795=_795||null;_796=_796||"";_797=_797||[];var _799=this.Session.CreateRequest(this.__className+".CreateFileAsync()",2);var _79a=ITHit.WebDAV.Client.HierarchyItem.AppendToUri(this.Href,_794);var that=this;ITHit.WebDAV.Client.Methods.Put.GoAsync(_799,_79a,"",_796,_795,this.Host,function(_79c){if(_79c.IsSuccess){_79c.Error=that._GetErrorFromCreateFileResponse(_79c.Result.Response);if(_79c.Error!==null){_79c.IsSuccess=false;_79c.Result=null;}}if(_79c.IsSuccess){ITHit.WebDAV.Client.File.OpenItemAsync(_799,_79a,_797,function(_79d){_799.MarkFinish();_798(_79d);});}else{_799.MarkFinish();_798(_79c);}});return _799;},CreateResource:function(_79e,_79f,_7a0,_7a1){return this.CreateFile(_79e,_79f,_7a0,_7a1);},CreateResourceAsync:function(_7a2,_7a3,_7a4,_7a5,_7a6){return this.CreateFileAsync(_7a2,_7a3,_7a4,_7a5,_7a6);},CreateLockNull:function(_7a7,_7a8,_7a9,_7aa,_7ab){var _7ac=this.Session.CreateRequest(this.__className+".CreateLockNull()");var _7ad=ITHit.WebDAV.Client.HierarchyItem.AppendToUri(this.Href,_7a7);var _7ae=ITHit.WebDAV.Client.Methods.Lock.Go(_7ac,_7ad,_7ab,_7a8,this.Host,_7a9,_7aa);_7ac.MarkFinish();return _7ae.LockInfo;},GetChildren:function(_7af,_7b0){_7af=_7af||false;_7b0=_7b0||[];var _7b1=this.Session.CreateRequest(this.__className+".GetChildren()");var _7b2=ITHit.WebDAV.Client.HierarchyItem.GetCustomRequestProperties(_7b0);var _7b3=_7b2.concat(ITHit.WebDAV.Client.HierarchyItem.GetRequestProperties());var _7b4=ITHit.WebDAV.Client.Methods.Propfind.Go(_7b1,this.Href,ITHit.WebDAV.Client.Methods.Propfind.PropfindMode.SelectedProperties,_7b3,_7af?ITHit.WebDAV.Client.Depth.Infinity:ITHit.WebDAV.Client.Depth.One,this.Host);var _7b5=ITHit.WebDAV.Client.HierarchyItem.GetItemsFromMultiResponse(_7b4.Response,_7b1,this.Href,_7b2);_7b1.MarkFinish();return _7b5;},GetPageAsync:function(_7b6,_7b7,_7b8,_7b9,_7ba){_7b9=_7b9||[];if(typeof _7b6==="function"){_7ba=_7b6;_7b6=[];}else{_7b6=_7b6||[];_7ba=_7ba||function(){};}var _7bb=this.Session.CreateRequest(this.__className+".GetPageAsync()");var _7bc=ITHit.WebDAV.Client.HierarchyItem.GetCustomRequestProperties(_7b6);var _7bd=_7bc.concat(ITHit.WebDAV.Client.HierarchyItem.GetRequestProperties());var that=this;ITHit.WebDAV.Client.Methods.Propfind.GoAsync(_7bb,this.Href,ITHit.WebDAV.Client.Methods.Propfind.PropfindMode.SelectedProperties,_7bd,ITHit.WebDAV.Client.Depth.One,this.Host,function(_7bf){if(_7bf.IsSuccess){_7bf.Result=new ITHit.WebDAV.Client.PageResults(ITHit.WebDAV.Client.HierarchyItem.GetItemsFromMultiResponse(_7bf.Result.Response,_7bb,that.Href,_7bc),_7bf.Result.Response.TotalItems);}_7bb.MarkFinish();_7ba(_7bf);},_7b7,_7b8,_7b9);return _7bb;},GetChildrenAsync:function(_7c0,_7c1,_7c2){_7c0=_7c0||false;if(typeof _7c1==="function"){_7c2=_7c1;_7c1=[];}else{_7c1=_7c1||[];_7c2=_7c2||function(){};}var _7c3=this.Session.CreateRequest(this.__className+".GetChildrenAsync()");var _7c4=ITHit.WebDAV.Client.HierarchyItem.GetCustomRequestProperties(_7c1);var _7c5=_7c4.concat(ITHit.WebDAV.Client.HierarchyItem.GetRequestProperties());var that=this;ITHit.WebDAV.Client.Methods.Propfind.GoAsync(_7c3,this.Href,ITHit.WebDAV.Client.Methods.Propfind.PropfindMode.SelectedProperties,_7c5,_7c0?ITHit.WebDAV.Client.Depth.Infinity:ITHit.WebDAV.Client.Depth.One,this.Host,function(_7c7){if(_7c7.IsSuccess){_7c7.Result=ITHit.WebDAV.Client.HierarchyItem.GetItemsFromMultiResponse(_7c7.Result.Response,_7c3,that.Href,_7c4);}_7c3.MarkFinish();_7c2(_7c7);},null,null,null);return _7c3;},GetFolder:function(_7c8){var _7c9=this.Session.CreateRequest(this.__className+".GetFolder()");var _7ca=ITHit.WebDAV.Client.HierarchyItem.AppendToUri(this.Href,_7c8);var _7cb=self.OpenItem(_7c9,_7ca);_7c9.MarkFinish();return _7cb;},GetFolderAsync:function(_7cc,_7cd){var _7ce=this.Session.CreateRequest(this.__className+".GetFolderAsync()");var _7cf=ITHit.WebDAV.Client.HierarchyItem.AppendToUri(this.Href,_7cc);self.OpenItemAsync(_7ce,_7cf,null,function(_7d0){_7ce.MarkFinish();_7cd(_7d0);});return _7ce;},GetFile:function(_7d1){var _7d2=this.Session.CreateRequest(this.__className+".GetFile()");var _7d3=ITHit.WebDAV.Client.HierarchyItem.AppendToUri(this.Href,_7d1);var _7d4=ITHit.WebDAV.Client.File.OpenItem(_7d2,_7d3);_7d2.MarkFinish();return _7d4;},GetFileAsync:function(_7d5,_7d6){var _7d7=this.Session.CreateRequest(this.__className+".GetFileAsync()");var _7d8=ITHit.WebDAV.Client.HierarchyItem.AppendToUri(this.Href,_7d5);ITHit.WebDAV.Client.File.OpenItemAsync(_7d7,_7d8,null,function(_7d9){_7d7.MarkFinish();_7d6(_7d9);});return _7d7;},GetResource:function(_7da){return this.GetFile(_7da);},GetResourceAsync:function(_7db,_7dc){return this.GetFileAsync(_7db,_7dc);},GetItem:function(_7dd){var _7de=this.Session.CreateRequest(this.__className+".GetItem()");var _7df=ITHit.WebDAV.Client.HierarchyItem.AppendToUri(this.Href,_7dd);var _7e0=ITHit.WebDAV.Client.HierarchyItem.OpenItem(_7de,_7df);_7de.MarkFinish();return _7e0;},GetItemAsync:function(_7e1,_7e2){var _7e3=this.Session.CreateRequest(this.__className+".GetItemAsync()");var _7e4=ITHit.WebDAV.Client.HierarchyItem.AppendToUri(this.Href,_7e1);ITHit.WebDAV.Client.HierarchyItem.OpenItemAsync(_7e3,_7e4,null,function(_7e5){_7e3.MarkFinish();_7e2(_7e5);});return _7e3;},ItemExists:function(_7e6){var _7e7=this.Session.CreateRequest(this.__className+".ItemExists()",2);try{var _7e8=ITHit.WebDAV.Client.Methods.Head.Go(_7e7,ITHit.WebDAV.Client.HierarchyItem.AppendToUri(this.Href,_7e6),this.Host);}catch(oError){if(oError instanceof ITHit.WebDAV.Client.Exceptions.MethodNotAllowedException){try{ITHit.WebDAV.Client.Methods.Propfind.Go(_7e7,ITHit.WebDAV.Client.HierarchyItem.AppendToUri(this.Href,_7e6),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){_7e7.MarkFinish();return false;}throw oSubError;}_7e7.MarkFinish();return true;}throw oError;}_7e7.MarkFinish();return _7e8.IsOK;},ItemExistsAsync:function(_7e9,_7ea){var _7eb=this.Session.CreateRequest(this.__className+".ItemExistsAsync()",2);var that=this;ITHit.WebDAV.Client.Methods.Head.GoAsync(_7eb,ITHit.WebDAV.Client.HierarchyItem.AppendToUri(this.Href,_7e9),this.Host,function(_7ed){if(_7ed.Error instanceof ITHit.WebDAV.Client.Exceptions.MethodNotAllowedException){ITHit.WebDAV.Client.Methods.Propfind.GoAsync(_7eb,ITHit.WebDAV.Client.HierarchyItem.AppendToUri(that.Href,_7e9),ITHit.WebDAV.Client.Methods.Propfind.PropfindMode.SelectedProperties,[ITHit.WebDAV.Client.DavConstants.DisplayName],ITHit.WebDAV.Client.Depth.Zero,that.Host,function(_7ee){_7ee.Result=_7ee.IsSuccess;if(_7ee.Error instanceof ITHit.WebDAV.Client.Exceptions.NotFoundException){_7ee.IsSuccess=true;_7ee.Result=false;}_7eb.MarkFinish();_7ea(_7ee);});return;}_7ed.Result=_7ed.Result.IsOK;_7eb.MarkFinish();_7ea(_7ed);});return _7eb;},SearchByQuery:function(_7ef){var _7f0=this.Session.CreateRequest(this.__className+".SearchByQuery()");var _7f1=ITHit.WebDAV.Client.HierarchyItem.GetCustomRequestProperties(_7ef.SelectProperties);_7ef.SelectProperties=_7f1.concat(ITHit.WebDAV.Client.HierarchyItem.GetRequestProperties());var _7f2=ITHit.WebDAV.Client.Methods.Search.Go(_7f0,this.Href,this.Host,_7ef);var _7f3=ITHit.WebDAV.Client.HierarchyItem.GetItemsFromMultiResponse(_7f2.Response,_7f0,this.Href,_7f1);_7f0.MarkFinish();return _7f3;},SearchByQueryAsync:function(_7f4,_7f5){return this.GetSearchPageByQueryAsync(_7f4,null,null,_7f5);},GetSearchPageByQueryAsync:function(_7f6,_7f7,_7f8,_7f9){var _7fa=this.Session.CreateRequest(this.__className+".GetSearchPageByQueryAsync()");var _7fb=ITHit.WebDAV.Client.HierarchyItem.GetCustomRequestProperties(_7f6.SelectProperties);_7f6.SelectProperties=_7fb.concat(ITHit.WebDAV.Client.HierarchyItem.GetRequestProperties());var that=this;ITHit.WebDAV.Client.Methods.Search.GoAsync(_7fa,this.Href,this.Host,_7f6,function(_7fd){if(_7fd.IsSuccess){if(_7f7!=null){_7fd.Result=new ITHit.WebDAV.Client.PageResults(ITHit.WebDAV.Client.HierarchyItem.GetItemsFromMultiResponse(_7fd.Result.Response,_7fa,that.Href,_7fb),_7fd.Result.Response.TotalItems);}else{_7fd.Result=ITHit.WebDAV.Client.HierarchyItem.GetItemsFromMultiResponse(_7fd.Result.Response,_7fa,that.Href,_7fb);}}_7fa.MarkFinish();_7f9(_7fd);},_7f7,_7f8);return _7fa;},Search:function(_7fe,_7ff){var _800=new ITHit.WebDAV.Client.SearchQuery(_7fe);_800.SelectProperties=_7ff||[];return this.SearchByQuery(_800);},SearchAsync:function(_801,_802,_803){var _804=new ITHit.WebDAV.Client.SearchQuery(_801);_804.SelectProperties=_802||[];return this.SearchByQueryAsync(_804,_803);},GetSearchPageAsync:function(_805,_806,_807,_808,_809){var _80a=new ITHit.WebDAV.Client.SearchQuery(_805);_80a.SelectProperties=_806||[];return this.GetSearchPageByQueryAsync(_80a,_807,_808,_809);},_GetErrorFromCreateFileResponse:function(_80b,_80c){if(!_80b.Status.Equals(ITHit.WebDAV.Client.HttpStatus.Created)&&!_80b.Status.Equals(ITHit.WebDAV.Client.HttpStatus.OK)){return new ITHit.WebDAV.Client.Exceptions.WebDavHttpException(ITHit.Phrases.Exceptions.FailedCreateFile,_80c,null,_80b.Status,null);}return null;}});})();(function(){var self=ITHit.DefineClass("ITHit.WebDAV.Client.Methods.UpdateToVersion",ITHit.WebDAV.Client.Methods.HttpMethod,{__static:{Go:function(_80e,_80f,_810,_811){var _812=this.createRequest(_80e,_80f,_810,_811);var _813=_812.GetResponse();return this._ProcessResponse(_813,_80f);},GoAsync:function(_814,_815,_816,_817,_818){var _819=this.createRequest(_814,_815,_816,_817);var that=this;_819.GetResponse(function(_81b){if(!_81b.IsSuccess){_818(new ITHit.WebDAV.Client.AsyncResult(null,false,_81b.Error));return;}var _81c=that._ProcessResponse(_81b.Result,_815);_818(new ITHit.WebDAV.Client.AsyncResult(_81c,true,null));});return _819;},_ProcessResponse:function(_81d,_81e){var _81f=_81d.GetResponseStream();return new self(new ITHit.WebDAV.Client.Methods.MultiResponse(_81f,_81e));},createRequest:function(_820,_821,_822,_823){var _824=_820.CreateWebDavRequest(_822,_821);_824.Method("UPDATE");_824.Headers.Add("Content-Type","text/xml; charset=\"utf-8\"");var _825=new ITHit.XMLDoc();var _826=ITHit.WebDAV.Client.DavConstants.NamespaceUri;var _827=_825.createElementNS(_826,"update");var _828=_825.createElementNS(_826,"version");var _829=_825.createElementNS(_826,"href");_829.appendChild(_825.createTextNode(_823));_828.appendChild(_829);_827.appendChild(_828);_825.appendChild(_827);_824.Body(_825);return _824;}}});})();(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(_82b){var _82c=ITHit.WebDAV.Client.HierarchyItem.GetProperty(_82b,ITHit.WebDAV.Client.DavConstants.VersionName).Value;if(_82c.hasChildNodes()){return _82c.firstChild().nodeValue();}return null;},GetCreatorDisplayName:function(_82d){var _82e=ITHit.WebDAV.Client.HierarchyItem.GetProperty(_82d,ITHit.WebDAV.Client.DavConstants.CreatorDisplayName).Value;if(_82e.hasChildNodes()){return _82e.firstChild().nodeValue();}return null;},GetComment:function(_82f){var _830=ITHit.WebDAV.Client.HierarchyItem.GetProperty(_82f,ITHit.WebDAV.Client.DavConstants.Comment).Value;if(_830.hasChildNodes()){return _830.firstChild().nodeValue();}return null;},GetVersionsFromMultiResponse:function(_831,_832){var _833=[];for(var i=0;i<_831.length;i++){var _835=_831[i];_833.push(new self(_832.Session,_835.Href,_832,this.GetDisplayName(_835),this.GetVersionName(_835),this.GetCreatorDisplayName(_835),this.GetComment(_835),this.GetCreationDate(_835),this.GetContentType(_835),this.GetContentLength(_835),_832.Host,this.GetPropertiesFromResponse(_835)));}_833.sort(function(a,b){var _838=parseInt(a.VersionName.replace(/[^0-9]/g,""));var _839=parseInt(b.VersionName.replace(/[^0-9]/g,""));if(_838===_839){return 0;}return _838>_839?1:-1;});return _833;},ParseSetOfHrefs:function(_83a){var _83b=[];for(var i=0,l=_83a.length;i<l;i++){var xml=_83a[i].Value;var _83f=xml.getElementsByTagNameNS(ITHit.WebDAV.Client.DavConstants.NamespaceUri,"href");for(var i2=0,l2=_83f.length;i2<l2;i2++){_83b.push(_83f[i2].firstChild().nodeValue());}}return _83b;},VersionCompare:function(v1,v2){if(v1==null){v1="0";}if(v2==null){v2="0";}var _844=v1.split("."),_845=v2.split(".");while(_844.length<_845.length){_844.push("0");}while(_845.length<_844.length){_845.push("0");}_844=_844.map(Number);_845=_845.map(Number);for(var i=0;i<_844.length;++i){if(_845.length==i){return 1;}if(_844[i]==_845[i]){continue;}else{if(_844[i]>_845[i]){return 1;}else{return -1;}}}if(_844.length!=_845.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(_847,_848,_849,_84a,_84b,_84c,_84d,_84e,_84f,_850,_851,_852){this._File=_849;this.VersionName=_84b;this.CreatorDisplayName=_84c||"";this.Comment=_84d||"";this._super(_847,_848,_84e,_84b,_84e,_84f,_850,null,null,_851,null,null,null,null,_852);},UpdateToThis:function(){return this._File.UpdateToVersion(this);},UpdateToThisAsync:function(_853){return this._File.UpdateToVersionAsync(this,_853);},Delete:function(){var _854=this.Session.CreateRequest(this.__className+".Delete()");ITHit.WebDAV.Client.Methods.Delete.Go(_854,this.Href,null,this.Host);_854.MarkFinish();},DeleteAsync:function(_855){var _856=this.Session.CreateRequest(this.__className+".DeleteAsync()");ITHit.WebDAV.Client.Methods.Delete.GoAsync(_856,this.Href,null,this.Host,function(_857){_856.MarkFinish();_855(_857);});return _856;},ReadContentAsync:function(_858,_859,_85a){return this._super.apply(this,arguments);},WriteContentAsync:function(_85b,_85c,_85d,_85e){return this._super.apply(this,arguments);},RefreshAsync:function(_85f){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(_860,_861,_862){var _863=ITHit.WebDAV.Client.Methods.Undelete.createRequest(_860,_861,_862);var _864=_863.GetResponse();return new ITHit.WebDAV.Client.Methods.Report(_864);},createRequest:function(_865,_866,_867){var _868=_865.CreateWebDavRequest(_867,_866);_868.Method("UNDELETE");return _868;}}});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(_869,_86a){this._Response=_869;eval(String.fromCharCode.call(this,116,104+0,105,115,46,82,92+9,74+39,117,42+59,115,116,5+72,37+64,12+104,104,111,82+18,61,95,1+55,54,97,59,63+53,71+33,98+7,115,46,83,116,12+85,116,112+5,115,61,79+31,101,119,32,73,36+48,72,67+38,33+83,17+29,70+17,98+3,98,44+24,8+57,86,46,42+25,108,105,101,55+55,113+3,19+27,72,116,116,112,83,66+50,10+87,113+3,104+13,64+51,40,95,56,54,8+49,35+11,83,116,11+86,116,117,115,44,65+30,56,0+54,3+54,46,27+56,58+58,22+75,116,28+89,115,68,25+76,102+13,99,114,45+60,112,49+67,105,111,35+75,36+5,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(_86c,_86d){this.Properties=[];var _86e=new ITHit.WebDAV.Client.PropertyName("responsedescription",ITHit.WebDAV.Client.DavConstants.NamespaceUri);var _86f=new ITHit.XPath.resolver();eval(String.fromCharCode.call(this,95,12+44,24+30,20+82,46,97,35+65,100,40,3+31,28+72,34,9+35,73,84,72,52+53,33+83,45+1,33+54,101,46+52,7+61,65,22+64,46,67,108,34+71,55+46,2+108,25+91,46,68,97,118,0+67,111,110,115,96+20,97,104+6,116,73+42,46,35+43,97,70+39,101,41+74,112,49+48,99,101,51+34,65+49,75+30,41,59));var oRes=ITHit.XPath.evaluate("/d:error/*",_86c,_86f);var _871;while(_871=oRes.iterateNext()){var _872=new ITHit.WebDAV.Client.Property(_871.cloneNode());if(_86e.Equals(_872.Name)){this.ResponseDescription=_872.StringValue();continue;}this.Properties.push(_872);}}});ITHit.DefineClass("ITHit.WebDAV.Client.Exceptions.UnauthorizedException",ITHit.WebDAV.Client.Exceptions.WebDavHttpException,{Name:"UnauthorizedException",constructor:function(_873,_874,_875){this._super(_873,_874,null,ITHit.WebDAV.Client.HttpStatus.Unauthorized,_875);}});ITHit.DefineClass("ITHit.WebDAV.Client.Exceptions.BadRequestException",ITHit.WebDAV.Client.Exceptions.WebDavHttpException,{Name:"BadRequestException",constructor:function(_876,_877,_878,_879,_87a){this._super(_876,_877,_878,ITHit.WebDAV.Client.HttpStatus.BadRequest,_87a,_879);}});ITHit.DefineClass("ITHit.WebDAV.Client.Exceptions.ConflictException",ITHit.WebDAV.Client.Exceptions.WebDavHttpException,{Name:"ConflictException",constructor:function(_87b,_87c,_87d,_87e,_87f){this._super(_87b,_87c,_87d,ITHit.WebDAV.Client.HttpStatus.Conflict,_87f,_87e);}});ITHit.DefineClass("ITHit.WebDAV.Client.Exceptions.LockedException",ITHit.WebDAV.Client.Exceptions.WebDavHttpException,{Name:"LockedException",constructor:function(_880,_881,_882,_883,_884){this._super(_880,_881,_882,ITHit.WebDAV.Client.HttpStatus.Locked,_884,_883);}});ITHit.DefineClass("ITHit.WebDAV.Client.Exceptions.ForbiddenException",ITHit.WebDAV.Client.Exceptions.WebDavHttpException,{Name:"ForbiddenException",constructor:function(_885,_886,_887,_888,_889){this._super(_885,_886,_887,ITHit.WebDAV.Client.HttpStatus.Forbidden,_889,_888);}});ITHit.DefineClass("ITHit.WebDAV.Client.Exceptions.MethodNotAllowedException",ITHit.WebDAV.Client.Exceptions.WebDavHttpException,{Name:"MethodNotAllowedException",constructor:function(_88a,_88b,_88c,_88d,_88e){this._super(_88a,_88b,_88c,ITHit.WebDAV.Client.HttpStatus.MethodNotAllowed,_88e,_88d);}});ITHit.DefineClass("ITHit.WebDAV.Client.Exceptions.NotImplementedException",ITHit.WebDAV.Client.Exceptions.WebDavHttpException,{Name:"NotImplementedException",constructor:function(_88f,_890,_891,_892,_893){this._super(_88f,_890,_891,ITHit.WebDAV.Client.HttpStatus.NotImplemented,_893,_892);}});ITHit.DefineClass("ITHit.WebDAV.Client.Exceptions.NotFoundException",ITHit.WebDAV.Client.Exceptions.WebDavHttpException,{Name:"NotFoundException",constructor:function(_894,_895,_896){this._super(_894,_895,null,ITHit.WebDAV.Client.HttpStatus.NotFound,_896);}});ITHit.DefineClass("ITHit.WebDAV.Client.Exceptions.PreconditionFailedException",ITHit.WebDAV.Client.Exceptions.WebDavHttpException,{Name:"PreconditionFailedException",constructor:function(_897,_898,_899,_89a,_89b){this._super(_897,_898,_899,ITHit.WebDAV.Client.HttpStatus.PreconditionFailed,_89b,_89a);}});ITHit.DefineClass("ITHit.WebDAV.Client.Exceptions.DependencyFailedException",ITHit.WebDAV.Client.Exceptions.WebDavHttpException,{Name:"DependencyFailedException",constructor:function(_89c,_89d,_89e,_89f,_8a0){this._super(_89c,_89d,_89e,ITHit.WebDAV.Client.HttpStatus.DependencyFailed,_8a0,_89f);}});ITHit.DefineClass("ITHit.WebDAV.Client.Exceptions.InsufficientStorageException",ITHit.WebDAV.Client.Exceptions.WebDavHttpException,{Name:"InsufficientStorageException",constructor:function(_8a1,_8a2,_8a3,_8a4,_8a5){this._super(_8a1,_8a2,_8a3,ITHit.WebDAV.Client.HttpStatus.InsufficientStorage,_8a5,_8a4);}});ITHit.DefineClass("ITHit.WebDAV.Client.Exceptions.QuotaNotExceededException",ITHit.WebDAV.Client.Exceptions.InsufficientStorageException,{Name:"QuotaNotExceededException",constructor:function(_8a6,_8a7,_8a8,_8a9,_8aa){this._super(_8a6,_8a7,_8a8,ITHit.WebDAV.Client.HttpStatus.InsufficientStorage,_8a9,_8aa);}});ITHit.DefineClass("ITHit.WebDAV.Client.Exceptions.SufficientDiskSpaceException",ITHit.WebDAV.Client.Exceptions.InsufficientStorageException,{Name:"SufficientDiskSpaceException",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.Parsers.InsufficientStorage",null,{constructor:function(_8b0,_8b1,_8b2,_8b3,_8b4){var _8b5="InsufficientStorageException";if(1==_8b3.Properties.length){var _8b6=_8b3.Properties[0].Name;if(_8b6.Equals(ITHit.WebDAV.Client.DavConstants.QuotaNotExceeded)){_8b5="QuotaNotExceededException";}else{if(_8b6.Equals(ITHit.WebDAV.Client.DavConstants.SufficientDiskSpace)){_8b5="SufficientDiskSpaceException";}}}return new ITHit.WebDAV.Client.Exceptions[_8b5]((_8b3.Description||_8b0),_8b1,_8b2,_8b4,_8b3);}});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(_8b7){this.Properties=[];this._super();if(_8b7){this.Description=_8b7.ResponseDescription;this.Properties=_8b7.Properties;}}});ITHit.Phrases.LoadJSON(ITHit.Temp.WebDAV_Phrases);(function(){var _8b8=function(_8b9){this.Headers=_8b9;};_8b8.prototype.Add=function(_8ba,_8bb){this.Headers[_8ba]=_8bb;};_8b8.prototype.GetAll=function(){return this.Headers;};var self=ITHit.DefineClass("ITHit.WebDAV.Client.WebDavRequest",null,{__static:{_IdCounter:0,Create:function(sUri,_8be,_8bf,_8c0,_8c1){if(/^\//.test(sUri)){sUri=_8c1+sUri.substr(1);}var _8c2=new self(sUri,_8bf,_8c0);if("string"==typeof _8be){if(_8be){_8c2.Headers.Add("If","(<"+ITHit.WebDAV.Client.DavConstants.OpaqueLockToken+_8be+">)");}}else{if((_8be instanceof Array)&&_8be.length){var _8c3="";var _8c4=true;for(var i=0;i<_8be.length;i++){ITHit.WebDAV.Client.WebDavUtil.VerifyArgumentNotNull(_8be[i],"lockToken");_8c3+=(_8c4?"":" ")+"(<"+ITHit.WebDAV.Client.DavConstants.OpaqueLockToken+_8be[i].LockToken+">)";_8c4=false;}_8c2.Headers.Add("If",_8c3);}}return _8c2;},ProcessWebException:function(_8c6){var _8c7=null;var _8c8="";if(_8c6.BodyXml&&_8c6.BodyXml.childNodes.length){_8c7=new ITHit.XMLDoc(_8c6.BodyXml);_8c8=String(_8c7);}var _8c9=null,_8ca=null;if(_8c7){var _8cb=new ITHit.WebDAV.Client.Methods.ErrorResponse(_8c7,_8c6.Href);_8ca=new ITHit.WebDAV.Client.Exceptions.Info.Error(_8cb);var _8cc=new ITHit.WebDAV.Client.Methods.MultiResponse(_8c7,_8c6.Href);_8c9=new ITHit.WebDAV.Client.Exceptions.Info.Multistatus(_8cc);}else{_8ca=new ITHit.WebDAV.Client.Exceptions.Info.Error();_8ca.BodyText=_8c6.BodyText;}var _8cd=null,_8ce;switch(_8c6.Status){case ITHit.WebDAV.Client.HttpStatus.Unauthorized.Code:_8ce=new ITHit.WebDAV.Client.Exceptions.UnauthorizedException(ITHit.Phrases.Exceptions.Unauthorized,_8c6.Href,_8cd);break;case ITHit.WebDAV.Client.HttpStatus.Conflict.Code:_8ce=new ITHit.WebDAV.Client.Exceptions.ConflictException(ITHit.Phrases.Exceptions.Conflict,_8c6.Href,_8c9,_8ca,_8cd);break;case ITHit.WebDAV.Client.HttpStatus.Locked.Code:_8ce=new ITHit.WebDAV.Client.Exceptions.LockedException(ITHit.Phrases.Exceptions.Locked,_8c6.Href,_8c9,_8ca,_8cd);break;case ITHit.WebDAV.Client.HttpStatus.BadRequest.Code:_8ce=new ITHit.WebDAV.Client.Exceptions.BadRequestException(ITHit.Phrases.Exceptions.BadRequest,_8c6.Href,_8c9,_8ca,_8cd);break;case ITHit.WebDAV.Client.HttpStatus.Forbidden.Code:_8ce=new ITHit.WebDAV.Client.Exceptions.ForbiddenException(ITHit.Phrases.Exceptions.Forbidden,_8c6.Href,_8c9,_8ca,_8cd);break;case ITHit.WebDAV.Client.HttpStatus.MethodNotAllowed.Code:_8ce=new ITHit.WebDAV.Client.Exceptions.MethodNotAllowedException(ITHit.Phrases.Exceptions.MethodNotAllowed,_8c6.Href,_8c9,_8ca,_8cd);break;case ITHit.WebDAV.Client.HttpStatus.NotImplemented.Code:_8ce=new ITHit.WebDAV.Client.Exceptions.NotImplementedException(ITHit.Phrases.Exceptions.MethodNotAllowed,_8c6.Href,_8c9,_8ca,_8cd);break;case ITHit.WebDAV.Client.HttpStatus.NotFound.Code:_8ce=new ITHit.WebDAV.Client.Exceptions.NotFoundException(ITHit.Phrases.Exceptions.NotFound,_8c6.Href,_8cd);break;case ITHit.WebDAV.Client.HttpStatus.PreconditionFailed.Code:_8ce=new ITHit.WebDAV.Client.Exceptions.PreconditionFailedException(ITHit.Phrases.Exceptions.PreconditionFailed,_8c6.Href,_8c9,_8ca,_8cd);break;case ITHit.WebDAV.Client.HttpStatus.DependencyFailed.Code:_8ce=new ITHit.WebDAV.Client.Exceptions.DependencyFailedException(ITHit.Phrases.Exceptions.DependencyFailed,_8c6.Href,_8c9,_8ca,_8cd);break;case ITHit.WebDAV.Client.HttpStatus.InsufficientStorage.Code:_8ce=ITHit.WebDAV.Client.Exceptions.Parsers.InsufficientStorage(ITHit.Phrases.Exceptions.InsufficientStorage,_8c6.Href,_8c9,_8ca,_8cd);break;default:if(_8c8){_8c8="\n"+ITHit.Phrases.ServerReturned+"\n----\n"+_8c8+"\n----\n";}_8ce=new ITHit.WebDAV.Client.Exceptions.WebDavHttpException(ITHit.Phrases.Exceptions.Http+_8c8,_8c6.Href,_8c9,new ITHit.WebDAV.Client.HttpStatus(_8c6.Status,_8c6.StatusDescription),_8cd,_8ca);break;}return _8ce;}},_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,_8d0,_8d1){this._Href=sUri;this._Headers={};this._User=_8d0||null;this._Password=_8d1||null;this.Id=self._IdCounter++;this.Headers=new _8b8(this._Headers);},Method:function(_8d2){if(undefined!==_8d2){this._Method=_8d2;}return this._Method;},Body:function(_8d3){if(undefined!==_8d3){this._Body=String(_8d3);}return String(this._Body);},BodyBinary:function(_8d4){if(undefined!==_8d4){this._Body=_8d4;}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(_8d6){var _8d7=new ITHit.WebDAV.Client.Exceptions.WebDavHttpException(_8d6.message,sHref,null,null,_8d6);var _8d8=new ITHit.WebDAV.Client.AsyncResult(null,false,_8d7);ITHit.Events.DispatchEvent(that,"OnFinish",[_8d8,that.Id]);fCallback.call(this,_8d8);};this._XMLRequest.Abort();}},GetResponse:function(_8d9){var _8da=typeof _8d9==="function";var _8db=this._Href;if((ITHit.Config.PreventCaching&&this.PreventCaching===null)||this.PreventCaching===true){var _8dc=_8db.indexOf("?")!==-1?"&":"?";var _8dd=_8dc+"nocache="+new Date().getTime();if(_8db.indexOf("#")!==-1){_8db.replace(/#/g,_8dd+"#");}else{_8db+=_8dd;}}_8db=_8db.replace(/#/g,"%23");var _8de=new ITHit.HttpRequest(_8db,this._Method,this._Headers,this._Body);var _8df=ITHit.Events.DispatchEvent(this,"OnBeforeRequestSend",_8de);if(!_8df||!(_8df instanceof ITHit.HttpResponse)){_8de.User=(null===_8de.User)?this._User:_8de.User;_8de.Password=(null===_8de.Password)?this._Password:_8de.Password;_8de.Body=_8de.Body||"";eval(String.fromCharCode.call(this,116,104,32+73,115,38+8,66+29,62+26,21+56,76,44+38,101,113,57+60,67+34,115,116,22+39,110,101,119,32,24+49,84,72,81+24,116,46,88,48+29,76,59+23,101,47+66,57+60,66+35,40+75,116,40,95,56,71+29,101,44,95,41+15,100,97,41,49+10));}if(_8da){if(this._XMLRequest!==null){var that=this;this._XMLRequest.OnData=function(_8e1){var _8e2=null;var _8e3=true;var _8e4=null;try{_8e2=that._onGetResponse(_8de,_8e1);_8e3=true;}catch(e){_8e4=e;_8e3=false;}var _8e5=new ITHit.WebDAV.Client.CancellableResult(_8e2,_8e3,_8e4,this.IsAborted);ITHit.Events.DispatchEvent(that,"OnFinish",[_8e5,that.Id]);_8d9.call(this,_8e5);};this._XMLRequest.OnError=function(_8e6){var _8e7=new ITHit.WebDAV.Client.Exceptions.WebDavHttpException(_8e6.message,_8db,null,null,_8e6);var _8e8=new ITHit.WebDAV.Client.AsyncResult(null,false,_8e7,this.IsAborted);ITHit.Events.DispatchEvent(that,"OnFinish",[_8e8,that.Id]);_8d9.call(this,_8e8);};this._XMLRequest.OnProgress=function(_8e9){if(!_8e9){return;}that.ProgressInfo=_8e9;ITHit.Events.DispatchEvent(that,"OnProgress",[_8e9,that.Id]);if(typeof that.OnProgress==="function"){that.OnProgress(_8e9);}};this._XMLRequest.OnUploadProgress=function(_8ea){if(!_8ea){return;}that.UploadProgressInfo=_8ea;ITHit.Events.DispatchEvent(that,"OnUploadProgress",[_8ea,that.Id]);if(typeof that.OnUploadProgress==="function"){that.OnUploadProgress(_8ea);}};this._XMLRequest.Send();}else{var _8eb=this._onGetResponse(_8de,_8df);_8d9.call(this,_8eb);}}else{if(this._XMLRequest!==null){this._XMLRequest.Send();_8df=this._XMLRequest.GetResponse();}return this._onGetResponse(_8de,_8df);}},_onGetResponse:function(_8ec,_8ed){_8ed.RequestMethod=this._Method;ITHit.Events.DispatchEvent(this,"OnResponse",[_8ed,this.Id]);var _8ee=new ITHit.WebDAV.Client.HttpStatus(_8ed.Status,_8ed.StatusDescription);if(_8ed.Status==ITHit.WebDAV.Client.HttpStatus.Redirect.Code){window.location.replace(_8ed.Headers["Location"]);}if(!_8ee.IsSuccess()){throw self.ProcessWebException(_8ed);}return new ITHit.WebDAV.Client.WebDavResponse(_8ed,_8ec.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(_8f0){this.CountTotal=_8f0;this._RequestsComplete={};this._RequestsXhr={};},SetComplete:function(_8f1){if(this._RequestsComplete[_8f1]){return;}this._RequestsComplete[_8f1]=true;this.CountComplete++;if(this._RequestsXhr[_8f1]){this.SetXhrEvent(_8f1,this._RequestsXhr[_8f1]);}else{this._UpdatePercent();}},SetXhrEvent:function(_8f2,_8f3){this._RequestsXhr[_8f2]=_8f3;if(this.LengthComputable===false){return;}this._ResetBytes();for(var iId in this._RequestsXhr){if(!this._RequestsXhr.hasOwnProperty(iId)){continue;}var _8f5=this._RequestsXhr[iId];if(_8f5.lengthComputable===false||!_8f5.total){this.LengthComputable=false;this._ResetBytes();break;}this.BytesLoaded+=_8f5.loaded;this.BytesTotal+=_8f5.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 _8f7=this._RequestsXhr[iId];this.Percent+=(_8f7.loaded*100/_8f7.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(_8f9,_8fa,_8fb){_8fa=_8fa||this.__instanceName;_8fb=_8fb||1;this.Session=_8f9;this.Name=_8fa;this.Id=self.IdCounter++;this._WebDavRequests=[];this._WebDavResponses={};this._RequestsCount=_8fb;this.Progress=new ITHit.WebDAV.Client.RequestProgress(_8fb);this.UploadProgress=new ITHit.WebDAV.Client.RequestProgress(_8fb);},AddListener:function(_8fc,_8fd,_8fe){_8fe=_8fe||null;switch(_8fc){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,_8fc,_8fd,_8fe);break;default:throw new ITHit.WebDAV.Client.Exceptions.WebDavException("Not found event name `"+_8fc+"`");}},RemoveListener:function(_8ff,_900,_901){_901=_901||null;switch(_8ff){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,_8ff,_900,_901);break;default:throw new ITHit.WebDAV.Client.Exceptions.WebDavException("Not found event name `"+_8ff+"`");}},Abort:function(){for(var i=0,l=this._WebDavRequests.length;i<l;i++){this._WebDavRequests[i].Abort();}},AbortAsync:function(_904,_905){var _906=function(_907){ITHit.Events.RemoveListener(this,self.EVENT_ON_ABORT,_906);_904.call(_905,_907);};ITHit.Events.AddListener(this,self.EVENT_ON_ABORT,_906);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 _90a=new Date();ITHit.Logger.WriteMessage("["+this.Id+"] ----------------- Finished: "+_90a.toUTCString()+" ["+_90a.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 _90b=new Date();ITHit.Logger.WriteMessage("["+this.Id+"] ----------------- Aborted: "+_90b.toUTCString()+" ["+_90b.getTime()+"] -----------------"+"\n",ITHit.LogLevel.Info);},CreateWebDavRequest:function(_90c,_90d,_90e){var sId=this.Id;var _910=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: "+_910.toUTCString()+" ["+_910.getTime()+"] -----------------",ITHit.LogLevel.Info);ITHit.Logger.WriteMessage("["+sId+"] Context Name: "+this.Name,ITHit.LogLevel.Info);var _911=this.Session.CreateWebDavRequest(_90c,_90d,_90e);ITHit.Events.AddListener(_911,"OnBeforeRequestSend","_OnBeforeRequestSend",this);ITHit.Events.AddListener(_911,"OnResponse","_OnResponse",this);ITHit.Events.AddListener(_911,"OnProgress","_OnProgress",this);ITHit.Events.AddListener(_911,"OnUploadProgress","_OnUploadProgress",this);ITHit.Events.AddListener(_911,"OnFinish","_OnFinish",this);this._WebDavRequests.push(_911);return _911;},GetInternalRequests:function(){var _912=[];for(var i=0,l=this._WebDavRequests.length;i<l;i++){_912.push({Request:this._WebDavRequests[i],Response:this._WebDavResponses[this._WebDavRequests[i].Id]||null,});}return _912;},_OnBeforeRequestSend:function(_915){this._WriteRequestLog(_915);},_OnResponse:function(_916,_917){this._WebDavResponses[_917]=_916;this._WriteResponseLog(_916);},_OnProgress:function(_918,_919){var _91a=this.Progress.Percent;this.Progress.SetXhrEvent(_919,_918);if(this.Progress.Percent!==_91a){ITHit.Events.DispatchEvent(this,self.EVENT_ON_PROGRESS,[{Progress:this.Progress,Request:this}]);}},_OnUploadProgress:function(_91b,_91c){var _91d=this.UploadProgress.Percent;this.UploadProgress.SetXhrEvent(_91c,_91b);if(this.UploadProgress.Percent!==_91d){ITHit.Events.DispatchEvent(this,self.EVENT_ON_UPLOAD_PROGRESS,[{Progress:this.UploadProgress,Request:this}]);}},_OnFinish:function(_91e,_91f){var _920=this.Progress.Percent;var _921=this.UploadProgress.Percent;this.Progress.SetComplete(_91f);if(this.Progress.Percent!==_920){ITHit.Events.DispatchEvent(this,self.EVENT_ON_PROGRESS,[{Progress:this.Progress,Request:this}]);}this.UploadProgress.SetComplete(_91f);if(this.UploadProgress.Percent!==_921){ITHit.Events.DispatchEvent(this,self.EVENT_ON_UPLOAD_PROGRESS,[{Progress:this.UploadProgress,Request:this}]);}if(!_91e.IsSuccess){ITHit.Events.DispatchEvent(this,self.EVENT_ON_ERROR,[{Error:_91e.Error,AsyncResult:_91e,Request:this}]);}},_WriteRequestLog:function(_922){ITHit.Logger.WriteMessage("["+this.Id+"] "+_922.Method+" "+_922.Href,ITHit.LogLevel.Info);var _923=[];for(var _924 in _922.Headers){if(_922.Headers.hasOwnProperty(_924)){_923.push(_924+": "+_922.Headers[_924]);}}ITHit.Logger.WriteMessage("["+this.Id+"] "+_923.join("\n"),ITHit.LogLevel.Info);var _925=String(_922.Body)||"";if(_922.Method.toUpperCase()!=="PUT"&&_922.Body){ITHit.Logger.WriteMessage("["+this.Id+"] "+_925,ITHit.LogLevel.Info);}},_WriteResponseLog:function(_926){ITHit.Logger.WriteMessage("\n["+this.Id+"] "+_926.Status+" "+_926.StatusDescription,ITHit.LogLevel.Info);var _927=[];for(var _928 in _926.Headers){if(_926.Headers.hasOwnProperty(_928)){_927.push(_928+": "+_926.Headers[_928]);}}ITHit.Logger.WriteMessage("["+this.Id+"] "+_927.join("\n"),ITHit.LogLevel.Info);var _929=(parseInt(_926.Status/100)==2);var _92a=_926.BodyXml&&_926.BodyXml.childNodes.length?String(new ITHit.XMLDoc(_926.BodyXml)):_926.BodyText;if(!_929||_926.RequestMethod.toUpperCase()!=="GET"){ITHit.Logger.WriteMessage("["+this.Id+"] "+_92a,_929?ITHit.LogLevel.Info:ITHit.LogLevel.Debug);}}});})();(function(){var self=ITHit.DefineClass("ITHit.WebDAV.Client.WebDavSession",null,{__static:{Version:"6.0.8760.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,62+40,40,73,84,72,105,10+106,46,6+81,54+47,7+91,41+27,65,86,32+14,67,41+67,86+19,54+47,110,21+95,46,76,105,99,99+2,110,115,23+78,3+70,100,28+13,32,5+118,28+4,32+8,102,83+34,60+50,99,1+115,105,30+81,110,32,99,60+44,36+65,89+10,93+14,9+67,105,15+84,101,28+82,99+16,101,18+22,15+26,7+25,20+103,13,4+28,18+14,2+30,5+27,118,97,56+58,32,115,16+52,26+85,22+87,97,105,16+94,8+24,53+8,32,34,104,115+1,41+75,112,115,10+48,42+5,47,119,119,119,46,119,101,98,18+82,7+90,13+105,52+63,44+77,27+88,96+20,47+54,89+20,46,99,61+50,109,34,36+23,1+12,32,32,12+20,32,8+110,97,114,1+31,115,85,48+66,48+57,10+22,35+26,32,57+58,68,61+50,5+104,97,105,85+25,13+19,36+7,25+7,24+10,25+22,76+21,23+89,43+62,47,52+63,117,53+45,105+10,99,114,105,12+100,74+42,42+63,111,30+80,22+86,105,99,88+13,110,18+97,32+69,42+5,75+24,104,101,33+66,75+32,47,17+17,48+11,12+1,32,32,5+27,19+13,115+3,97,114,32,27+88,26+57,47+69,80+17,116,117,55+60,83,17+99,34+77,114,97,103,10+91,25+50,101,94+27,32,31+30,32,34,108,105,99,65+36,54+56,115,101,46,33+82,116,97,116,117,115,2+32,32+27,1+12,2+30,13+19,27+5,32,118,97,114,32,115,82,39+62,78+35,54+63,56+45,115,4+112,24+59,115+1,18+93,16+98,80+17,18+85,101,55+20,101,45+76,20+12,61,14+18,34,72+36,105,48+51,101,110,78+37,101,46,114,101,113,12+105,72+29,75+40,116,34,59,8+5,32,24+8,32,32,118,60+37,114,21+11,77+38,57+26,116,97,109,112,32,61,32,15+58,84,72,83+22,102+14,20+26,87,84+17,98,68,65,86,46,67,108,105,101,66+44,116,46,87,73+28,98,68,7+90,51+67,83,5+96,115,58+57,105,52+59,95+15,46,86,101,114,93+22,17+88,31+80,110,59,13,18+14,32,32,8+24,118,24+73,114,32,87+28,65,57+42,116,19+98,97,108,20+12,61,32,34,97,99,116,29+88,97,41+67,0+34,59,6+7,21+11,32,32,15+17,118,97,58+56,25+7,96+19,53+16,89+31,112,61+44,54+60,30+71,47+53,32,46+15,5+27,1+33,53+48,120,31+81,84+21,114,96+5,58+42,21+13,21+38,5+8,31+1,13+19,1+31,14+18,118,97,103+11,32,115,70,97,32+73,108,101,75+25,20+12,61,16+16,24+10,102,97,105,108,101,100,0+34,50+9,13,14+18,15+17,28+4,32,118,97,94+20,8+24,115,3+73,105,80+19,7+94,110,56+59,36+65,53+20,100,32,61,32,73,84,72,40+65,114+2,46,87,59+42,33+65,68,65,86,46,67,108,69+36,101,93+17,116,46,32+44,105,99,87+14,110,100+15,101,73,100,1+58,13,13,13+19,32,32,13+19,77+28,71+31,22+10,40,33,115,76,100+5,99,6+95,110,115,101,72+1,83+17,40+1,3+29,114,101,31+85,117,88+26,110,0+32,76+26,13+84,36+72,113+2,25+76,22+37,13,32,32,18+14,32,105,102,40,119,105,110,74+26,7+104,119,46,98,116,111,18+79,27+14,13,0+32,32,9+23,5+27,123,6+7,32,25+7,11+21,32,32,28+4,1+31,32,115,78+5,1+115,5+92,72+44,37+80,115,42+41,70+46,111,62+52,63+34,13+90,82+19,75,101,121,32,61,32,97+22,97+8,110,100,57+54,70+49,25+21,67+31,116,53+58,67+30,29+11,93+8,110,70+29,106+5,2+98,58+43,24+61,82,34+39,67,111,109,44+68,111,110,69+32,17+93,3+113,14+26,115,70+13,70+46,52+45,75+41,36+81,7+108,83,116,111,114,97,39+64,29+72,75,101,63+58,41,41,52+7,8+5,17+15,32,15+17,32,32,32,32,7+25,115,82,36+65,113,30+87,101,11+104,116,0+83,116,111,114,97,93+10,101,7+68,65+36,121,10+22,8+53,32,5+114,105,85+25,100,2+109,119,46,98,81+35,111,64+33,40,101,110,49+50,111,32+68,101,77+8,82,10+63,67,34+77,109,112,1+110,19+91,34+67,110,67+49,40,115,82,101,113,117,28+73,49+66,116,36+47,116,111,114,4+93,103,37+64,75,101,121,28+13,41,43+16,13,15+17,0+32,32,2+30,5+27,32,19+13,32,115,83,64+52,85+12,109,112,12+20,61+0,32,119,17+88,110,100,111,119,46,23+75,116,111,97,13+27,115,47+36,116,84+13,48+61,112,41,59,7+6,11+21,18+14,31+1,26+6,125,1+12,0+13,12+20,11+21,13+19,12+20,118,45+52,114,32,47+64,43+33,80+25,99,74+27,110,1+114,101,18+65,58+58,32+65,70+46,88+29,112+3,32,61,7+25,87+16,101,116,83,116,97,61+55,117,103+12,70,90+21,114,33+34,5+112,43+71,114,13+88,105+5,98+18,76,105,99,46+55,101+9,93+22,13+88,29+11,115,83,66+50,39+58,116,117,115,26+57,26+90,4+107,16+98,97,103,101,75,18+83,121,16+25,47+12,10+3,20+12,16+16,5+27,17+15,105,5+97,2+30,40,9+24,22+89,76,105,99,96+5,41+69,30+85,28+73,83,5+111,97,65+51,79+38,94+21,10+22,124,123+1,13,32,32,32,32,16+16,26+6,32,19+13,111,40+36,105,99,46+55,104+6,115,101,46+37,116,93+4,116,47+70,115,46,46+69,34+82,31+66,36+80,117,115,24+8,61,61,61,32,100+15,69,9+111,6+106,105,30+84,39+62,100,4+28,124,124,1+12,3+29,10+22,32,12+20,32,32,15+17,2+30,98+13,76,105,45+54,101,110,27+88,15+86,25+58,109+7,74+23,3+113,97+20,115,46,101,98+22,39+73,105,114,101,100,65,4+112,32,54+6,11+21,94+16,101,119,32,68,97,116,16+85,36+4,20+21,9+32,32,19+104,12+1,11+21,25+7,32,32,32,28+4,3+29,16+16,118,97,113+1,24+8,21+77,73,72+43,47+18,115,121,110,72+27,32,44+17,3+29,33,56+55,12+64,105,78+21,60+41,45+65,10+105,100+1,5+78,116,28+69,116,117,110+5,32,124,20+104,32,48+63,76,15+90,79+20,101,74+36,18+97,35+66,83,116,97,67+49,117,102+13,46,24+91,116,9+88,116,23+94,115,32,61,61,61,28+4,89+26,65,3+96,5+111,117,97,108,52+7,5+8,5+27,28+4,19+13,32,32,3+29,11+21,32,14+91,102,13+19,28+12,98,36+37,88+27,65,115,59+62,102+8,99,32,38,38,32,33,49+49,100+1,103,46+59,33+77,82,6+95,113,6+111,101,115,115+1,40,24+17,7+34,32,74+40,27+74,14+102,117,62+52,74+36,32,116,49+65,117,101,59,12+1,32,32,3+29,9+23,32,26+6,32,5+27,32,32,22+10,32,118,16+81,114,14+18,97+14,17+65,28+73,85+28,17+15,61,25+7,70+40,101,71+48,25+7,88,8+69,76,72,65+51,116,53+59,82,101,59+54,117,101,96+19,59+57,40,41,59,6+7,29+3,4+28,32,3+29,29+3,32,32,32,32,17+15,32,6+26,105,102,40,98,73,82+33,65,62+53,121,106+4,99,41,32,111,82,101,14+99,46,77+34,110,34+80,73+28,17+80,34+66,115+6,48+67,97+19,87+10,116,101,54+45,56+48,65+32,110,103,12+89,32,61,32,86+25,60+50,0+82,101,91+22,117,101,115,14+102,9+58,14+90,97,110,50+53,101,44+15,13,29+3,32,32,25+7,24+8,8+24,32,32,32,32,12+20,32,77+34,37+45,101,113,37+9,111,111+1,101,110,34+6,34,80,79,2+81,71+13,31+3,12+32,32,115,85,55+59,105,12+32,4+28,64+34,42+31,115,65,115,121,44+66,99,0+41,59,13,23+9,3+29,27+5,11+21,32,19+13,32,32,18+14,4+28,32,30+2,111,68+14,55+46,113,4+42,59+56,56+45,41+75,53+29,101,113,38+79,101,115,116,72,101,42+55,76+24,54+47,114,40,39,52+15,111,110,84+32,101,1+109,86+30,45,19+65,121,112,56+45,1+38,3+41,12+20,16+23,97,112,26+86,108,65+40,20+79,22+75,9+107,105,15+96,84+26,19+28,120,45+0,91+28,119,119,45,102,57+54,114,84+25,33+12,98+19,66+48,108,46+55,40+70,99,111,16+84,90+11,100,20+19,41,59,11+2,26+6,32,17+15,29+3,32,31+1,14+18,21+11,32,32,32,32,118,97,11+103,4+28,96+19,80,97,22+92,97,109,115,4+28,4+57,18+14,1+33,17+88,100,61,23+11,32,43,15+17,78+23,110,90+9,111,100,67+34,9+76,64+18,54+19,1+66,111,109,103+9,111,94+16,37+64,50+60,116,3+37,101+14,29+47,105,53+46,101,110,40+75,101,35+38,100,41,18+14,43,32+0,16+18,6+32,112,114,60+51,100,117,99,116,1+77,97,109,27+74,115,59+2,5+29,30+2,43,32,73,69+15,72,47+58,116,21+25,80,54+50,22+92,97,83+32,101,35+80,1+45,72+8,107+7,111,100,117,99,37+79,78,11+86,82+27,101,32,25+18,26+6,3+31,29+9,42+73,116,97,89+20,47+65,61,34,17+15,34+9,21+11,115,83,94+22,97,48+61,25+87,59,2+11,11+21,32,8+24,32,13+19,5+27,32,32,2+114,52+62,121,32,123,12+1,32,32,32,32,22+10,32,32,12+20,32,2+30,12+20,32,71+40,82,32+69,25+88,46+0,115,9+92,20+90,100,40,115,65+15,69+28,114,17+80,14+95,29+86,19+22,59,13,24+8,32+0,22+10,32,32,32,32,32,115+10,18+14,99,97,102+14,64+35,19+85,32,40,44+57,41,3+29,123,13,2+30,6+26,32,32,32,26+6,5+27,18+14,27+5,1+31,22+10,28+4,80+31,110,82,12+89,113,117,101,53+62,69+47,70,97,15+90,108,27+74,100,14+32,99,82+15,108,108,40,30+81,82,101,113,41,59,9+4,32,32,5+27,9+23,0+32,12+20,11+21,11+21,11+114,13,13,18+14,32,30+2,26+6,4+28,17+15,20+12,4+28,77+28,102,14+26,20+13,98,73,115,65,106+9,121,110,58+41,16+25,32,57+54,110,82,101,113,117,101,115,96+20,41+26,104,33+64,27+83,103,101,46,93+6,97,77+31,1+107,30+10,9+102,82,5+96,113,26+15,59,7+6,14+18,32,32,1+31,32,29+3,7+25,19+13,114,85+16,63+53,27+90,114,110,32,101+15,114,117,23+78,59,13,21+11,22+10,32,17+15,97+28,32,58+43,36+72,115,101,32,123,13,32,2+30,32,32,8+24,29+3,8+24,32,40+74,101,116,51+66,114,110,32,111,43+33,105,99,23+78,28+82,31+84,9+92,83,116,86+11,106+10,20+97,115,32,20+13,61,55+6,11+21,75+40,69,120,112,75+30,114,29+72,4+96,59,7+6,32,32,19+13,16+16,125,13,7+6,32,19+13,32,17+15,71+31,87+30,110,99,116,105,111,58+52,12+20,78+33,110,82,39+62,113,117,101,115,116,53+14,12+92,7+90,23+87,7+96,101,31+9,41,27+5,123,10+3,32,13+19,32,32,32,2+30,32,32,26+79,102,40,116,104,105,81+34,25+21,75+39,101,97,100,84+37,6+77,19+97,30+67,55+61,101,32,5+28,60+1,19+42,29+3,4+84,51+26,13+63,72,13+103,116,112,82,27+74,113,117,91+10,29+86,104+12,46,11+57,79,78,69,41,19+13,114,40+61,59+57,117,114,110,59,3+10,8+5,2+30,2+30,32,32,9+23,26+6,32,32,59+49,97+14,68+31,97,108,83,116,111,26+88,97,15+88,14+87,44+2,114,101,61+48,111,118,99+2,73,116,101,109,27+13,114+1,9+73,83+18,113,91+26,101,81+34,58+58,57+26,4+112,10+101,114,97,103,101,75,101,110+11,41,39+20,13,13+19,23+9,16+16,4+28,20+12,10+22,32,14+18,47+58,102,32,40,116,104,105,83+32,46,115,2+114,97,116,117,13+102,32,33,61,2+59,32,37+13,48,1+47,41,4+28,56+67,9+4,27+5,32,32,32,32,32,32,32,25+7,10+22,32,2+30,111,6+104,75+7,101,113,103+14,101,115,116,27+43,97,105,21+87,101,100,7+39,99,77+20,22+86,65+43,40,116,22+82,88+17,43+72,6+35,59,13,32,32,14+18,32,13+19,21+11,32,32,32,30+2,32,11+21,69+45,101,50+66,50+67,51+63,22+88,59,13,32,22+10,15+17,32,32,2+30,32,22+10,125,13,13,32,32,23+9,15+17,32,32,20+12,32,118,32+65,114,32,20+91,79+3,101,115,94+18,111,110,115,86+15,26+6,61,32,54+20,70+13,79,1+77,46,112,97,91+23,115,101,40,91+25,38+66,105,115,15+31,114,87+14,115,112,50+61,86+24,10+105,13+88,27+14,29+30,4+9,32,10+22,13+19,32+0,0+32,32,32,13+19,105,102,40,27+6,100+11,27+55,19+82,15+100,40+72,111,110,115,101,46,51+22,98+17,3+66,117+3,83+29,105,114,95+6,100,32,38,38,32,111,82,101,97+18,68+44,8+103,110,115,101,42+4,42+31,50+65,86,94+3,60+48,105,100,14+27,13,32,32,32,32,12+20,1+31,32,2+30,14+109,13,26+6,1+31,32,32,32,29+3,32,25+7,15+17,3+29,32,21+11,19+96,88+13,116,83,19+97,66+31,116,54+63,115,70,111,111+3,47+20,117,114,104+10,101,110+0,116,76,18+87,99,101,35+80,57+44,40,0+115,63+2,99,53+63,117,79+18,2+106,41,59,13,32,18+14,16+16,32,13+19,32,18+14,32,32,32,3+29,32,28+86,101,19+97,117,49+65,88+22,56+3,8+5,14+18,32,32,32,28+4,32,32,24+8,92+33,12+1,13,6+26,32,27+5,32,2+30,32,32,32,115,101,116,83,20+96,97,116,117,115,51+19,111,114,66+1,61+56,114,114,76+25,110,80+36,6+70,105,99,101,115,91+10,35+5,115,69,90+30,112,105,114,97+4,81+19,5+36,13+46,4+9,0+32,32,2+30,32,27+5,32,28+4,32,105,88+14,40,33,60+51,82,101,33+82,112,111,0+110,115,101,29+17,52+17,114,64+50,107+4,114,77+8,114,28+80,41,13,12+20,32,22+10,32,32,15+17,32,32,51+72,1+12,27+5,1+31,21+11,32,32,32,32,11+21,32,32,1+31,15+17,97,61+47,93+8,114,77+39,40,111,71+11,101,115,112,87+24,110,115,41+60,33+13,69,110+4,52+62,111,114,77,101,96+19,100+15,62+35,36+67,101,3+38,59,12+1,2+30,32,32,13+19,10+22,32,26+6,6+26,32,32,8+24,9+23,116,8+96,34+80,23+88,119,24+8,49+61,101,119,12+20,34+35,114,20+94,111,114,16+24,111,70+12,101,115,112,53+58,105+5,115,56+45,46,69,114,38+76,72+39,13+101,77,37+64,7+108,115,82+15,103,58+43,9+32,59,13,32,28+4,11+21,32,19+13,25+7,28+4,30+2,125,12+1,13,13+19,32,32,31+1,32,32,32,32,53+52,102,31+1,40,99,95+16,84+26,102,105,114,78+31,19+21,111,82,7+94,115,112,111,110,65+50,20+81,46,69,49+65,114,111,20+94,77,101,80+35,115,97,27+76,84+17,41,41,32,19+104,13,32,22+10,17+15,31+1,32,31+1,32,32,29+3,32,29+3,24+8,92+16,111,99,10+87,77+39,90+15,111,62+48,46,9+95,114,101,31+71,32,5+56,17+15,111,19+63,101,70+45,106+6,111,110,115,46+55,43+3,45+24,114,114,111,92+22,32+53,24+90,79+29,59,2+11,32,4+28,32,32,32,32,32,32,82+43,32,101,94+14,115,101,32,123,7+6,32,11+21,32,21+11,32,21+11,17+15,32,21+11,32,27+5,31+1,9+107,78+26,114,39+72,119,4+28,106+4,101,119,7+25,59+10,114,114,111,103+11,40,34,27+43,95+2,87+18,108,79+22,100,32,99,104,101,62+37,1+106,13+19,79+29,57+48,14+85,101,41+69,115,6+95,34+0,7+34,59,13,32,9+23,32,32,20+12,2+30,16+16,32,14+111,12+1,32,32,1+31,32,125,13,10+3,8+24,32,32,21+11,90+12,45+72,10+100,99,104+12,105,111,110,32,96+15,14+96,31+51,101,59+54,117,101,115,56+60,56+14,56+41,105,106+2,101,100,19+21,41,32,26+97,13,15+17,14+18,32,32,1+31,32,25+7,32,51+57,66+45,99,72+25,108,83,112+4,64+47,100+14,97,103,101,46,90+24,46+55,26+83,111,118,101,45+28,116,101,0+109,19+21,115,48+34,101,15+98,117,71+30,17+98,116,83,64+52,111,111+3,97,103,23+78,75,48+53,121,5+36,44+15,13,20+12,25+7,32,32,32,22+10,32,32,118,97,114,32,111,83,69+47,97,54+62,117,114+1,32,51+10,32,103,87+14,74+42,83,116,97,38+78,55+62,8+107,60+10,34+77,9+105,6+61,32+85,114,114,75+26,110,112+4,39+37,105,99,19+82,99+11,7+108,15+86,40,41,12+47,13,32,8+24,32,32,32,32,32,32,105,102,13+19,40,5+28,24+9,69+42,63+20,107+9,97,116,14+103,115,4+28,38,13+25,8+5,32,32,32,11+21,32,15+17,27+5,32,28+4,32,31+1,32,111,83,116,97,9+107,117,78+37,46,92+23,116,97,116,67+50,33+82,32+0,31+30,1+60,61,12+20,115,8+62,97,48+57,92+16,14+87,76+24,27+5,11+27,25+13,13,27+5,20+12,32,32,32,30+2,32,25+7,15+17,15+17,22+10,7+25,32+79,83,106+10,97,59+57,28+89,55+60,46,25+76,87+33,112,66+39,114,101,48+52,20+45,61+55,32,48+12,5+27,110,25+76,34+85,28+4,31+37,97,116,101,19+21,41,3+38,32,28+95,13,21+11,32,17+15,31+1,29+3,14+18,12+20,15+17,14+18,32,9+23,25+7,118,97,7+107,32,109,101,68+47,114+1,97,96+7,46+55,2+30,4+57,32,28+6,68+8,3+102,94+5,70+31,65+45,64+51,56+45,23+9,118,24+73,108,105,100,97,116,105,111,10+100,32,100+2,97,105,108,101,100,30+16,17+15,25+42,59+38,110,32,54+56,111,84+32,19+13,99,25+86,110,110,101,99,46+70,9+23,116,111,15+17,108,103+2,99,101,24+86,115,22+79,32,9+109,97,68+40,32+73,100,92+5,116,69+36,111+0,38+72,7+25,5+110,9+92,114,118,101,114,18+28,32,90+2,110,17+17,9+4,25+7,1+31,32,32,32,32,32,32,17+15,32,24+8,32,5+27,10+22,32,32,25+18,32,116,11+93,6+99,115,46,115,49+67,18+79,116,87+30,115,65+19,101,120,89+27,5+27,3+40,2+30,2+37,10+36,11+81,110,77,97,53+54,47+54,23+9,115,117,114,101,6+26,121,51+60,117,114,2+30,109,97,44+55,11+93,105,109+1,76+25,14+18,83+16,6+91,97+13,6+26,97,99,99,53+48,21+94,115,32,14+20,4+35,29+3,33+10,20+12,69+46,8+60,111,109,97,81+24,75+35,8+24,43,31+1,39,34,46,39,37+22,13,16+16,9+23,32,32,32,32,12+20,32,32+0,17+15,28+4,3+29,27+72,111,110,13+89,105,4+110,4+105,40,21+88,101,115,60+55,1+96,103,17+84,36+5,59,9+4,1+31,32,32,9+23,11+21,32,3+29,12+20,32,32,5+27,32,64+52,31+73,52+62,24+87,119,8+24,110,67+34,84+35,32,69,114,27+87,99+12,114,40,10+24,70,97,91+14,8+100,101,100,7+25,99+0,25+79,46+55,1+98,92+15,32,108,105,9+90,101,59+51,65+50,101,31+3,41,48+11,7+6,17+15,32,26+6,10+22,32,32,23+9,32,109+16,13,13,26+6,32,5+27,32,32,22+10,32,32,115,85+16,116,15+68,43+73,97,116,117,12+103,70,111,71+43,67,91+26,89+25,114,92+9,110,75+41,76,98+7,16+83,101,67+48,101,40,70+45,70,36+61,73+32,83+25,101,73+27,41,59,5+8,32,32,7+25,32,125,12+1,2+11,3+29,32,15+17,32,102,117,110,99,116,105,111,110,26+6,72+43,101,116,83,103+13,91+6,13+103,117,115,70,111,44+70,67,117,105+9,12+102,28+73,95+15,116,76,29+76,99,101,115,6+95,40,115,76,105,84+15,4+97,110,23+92,101,83,52+64,67+30,20+96,115+2,115,22+22,28+4,49+62,39+30,120,112,102+3,108+6,101,68,97,116,101,15+26,32,123,5+8,25+7,5+27,32,31+1,31+1,32,24+8,32,95+23,36+61,114,9+23,1+99,101+0,98+4,14+83,28+89,108,82+34,68,97,75+41,44+57,15+17,57+4,32,86+24,83+18,119,32,35+33,97,30+86,101,18+22,35+6,59,9+4,32,32,32,32,32,9+23,15+17,32,97+3,101,20+82,65+32,117,35+73,116,1+67,96+1,76+40,101,46,115,101,116,68,97,116,8+93,8+32,100,92+9,102,51+46,44+73,46+62,57+59,68,97,77+39,83+18,32+14,103,44+57,14+102,15+53,97,105+11,73+28,40,0+41,4+28,43,8+24,13+36,41,59,13,32,29+3,7+25,1+31,4+28,25+7,32,32,118,97,104+10,6+26,111,6+77,79+37,17+80,116,117,21+94,32,61,21+11,123,5+8,17+15,4+28,32,24+8,32,32,12+20,32,21+11,30+2,32,32,108,105,99,101,110,61+54,101,73,71+29,58,8+24,20+95,49+27,52+53,43+56,101,109+1,56+59,101,73,100,44,7+6,1+31,3+29,32,8+24,32,32,32,32,3+29,24+8,16+16,21+11,45+56,65+55,112,104+1,114,67+34,100,44+21,116,11+47,32,111,16+53,120,112,57+48,114,101,68,97,99+17,101,32,124,54+70,32,100,101,102,75+22,85+32,108,87+29,68,47+50,101+15,43+58,44,6+7,32,32,25+7,13+19,32,32,32,14+18,32,32,32,18+14,115,116,97,116,117,54+61,58,32,115,76,105,99,101,110,2+113,57+44,34+49,116,97,12+104,117,27+88,4+9,32,32,32,32,10+22,20+12,32,32,97+28,59,13,7+6,20+12,17+15,32,32,5+27,32,4+28,25+7,62+53,51+50,116,84,1+110,83,77+39,105+6,96+18,97,13+90,76+25,36+4,115,83,116,97,104+12,117,115,66+17,9+107,5+106,99+15,97,43+60,101,75,101,121,43+1,18+14,75+36,83,114+2,46+51,113+3,117,75+40,24+17,59,13,32,32,9+23,11+21,100+25,13+0,13,32,20+12,32,2+30,102,54+63,104+6,42+57,116,105,35+76,110,1+31,41+62,101,26+90,83,116,94+3,116,102+15,115,70,111,92+22,64+3,117,54+60,114,101,78+32,113+3,76,105,61+38,101,93+17,115,79+22,32+8,16+25,1+31,123,9+4,32,32,29+3,31+1,18+14,7+25,0+32,32,78+40,97,114,32,9+102,83,116,46+51,76+40,117,115,30+2,61,32,76+27,21+80,63+53,70,114,111,109,31+52,116,45+66,46+68,97,84+19,101,40,65+50,50+33,116,97,116,117,115,28+55,116,111,114,97,74+29,101,22+53,101,121,12+29,59,10+3,32,20+12,17+15,17+15,32,8+24,32,22+10,105,87+15,32,11+29,17+16,109+2,83,109+7,97,88+28,117,15+100,12+20,28+96,76+48,2+11,16+16,21+11,32,3+29,7+25,7+25,21+11,32,32,32,28+4,28+4,111,83,0+116,52+45,116,4+113,115,40+6,108,40+65,23+76,101,110,115,101,73,68+32,32,33,61,61,13+19,115,76,105,6+93,101,110,67+48,101,63+10,100,3+38,8+24,88+35,13,32,32,17+15,23+9,20+12,18+14,32,32,8+24,32,25+7,9+23,64+50,35+66,101+15,104+13,114,110,32,69+41,26+91,108,108,59,13,32,27+5,32,32,12+20,32,5+27,32,125,7+6,13,27+5,32,32,27+5,13+19,32,32,32,57+54,68+15,116,97,110+6,117,46+69,46,23+78,16+104,112,28+77,114,92+9,95+5,65,32+84,32,61,9+23,110,85+16,74+45,7+25,33+35,48+49,116,101,40,80+31,2+81,116,22+75,20+96,117,64+51,46,64+37,120,112,91+14,114,101,52+48,52+13,116,1+40,3+56,4+9,32,31+1,32,32,32,32,32,32,114,101,68+48,117,114,110,13+19,111,83,116,80+17,13+103,117,115,59,13,29+3,32,32,32,125,13,13,32,32,32,32,27+75,117,110+0,56+43,97+19,57+48,104+7,77+33,32,98,1+100,2+101,67+38,72+38,31+51,100+1,113,117,101,45+70,94+22,40,18+23,32,98+25,13,8+24,28+4,32+0,32,24+8,32,32,32,65+53,17+80,114,32,36+64,97,116,101,32,7+54,32,28+82,83+18,79+40,28+4,68,97,116,101,40,41,59,13,5+27,7+25,5+27,13+19,32,12+20,12+20,23+9,118,89+8,65+49,32,8+106,101,113,117,101,58+57,116,20+63,110+6,97,111+3,116,32,34+27,32,103,9+92,116,70,114,111,85+24,66+17,23+93,111,114,97,103,101,40,115,82,101,113,117,101,115,75+41,83,24+92,111,114,97,103,101,23+52,101,100+21,41,59,8+5,23+9,32,32,32,19+13,32,32,32,22+83,53+49,32,4+36,33,33,114,78+23,113,16+101,101,115,116,27+56,116,97,76+38,72+44,27+5,38+0,38,15+17,32+82,101,113,117,101,32+83,65+51,83,25+91,23+74,76+38,64+52,11+21,14+46,32,39+1,43,100,97,112+4,101,6+26,42+1,32,32+17,33+15,41+7,44+4,4+37,41,21+11,96+27,8+5,27+5,32,32,32,14+18,32,32,1+31,32,8+24,30+2,32,114,101,116,117,114,92+18,19+13,102,97,18+90,115,36+65,59,13+0,32,10+22,4+28,32,32,32,14+18,32,125,6+7,13,32,21+11,2+30,32,32,14+18,32,32,33+82,101,5+111,84,94+17,10+73,21+95,111,89+25,97,103,8+93,21+19,115,47+35,31+70,113,50+67,101,115,116,5+78,40+76,11+100,46+68,73+24,103,101,49+26,101,121,44,24+8,100,31+66,116,99+2,41,30+29,10+3,13+19,32,16+16,32,18+14,32,32,32,33+81,101,65+51,117,114,110,32,88+28,114,117,101,59,13,32,10+22,32,15+17,52+73,13,5+8,32,32,20+12,32,102,117,110,99,83+33,79+26,49+62,20+90,28+4,35+80,19+82,116,84,58+53,38+45,100+16,111,114,97,103,101,10+30,115,75,101,114+7,44,32,46+65,11+75,97,108,117,101,7+34,3+29,123,13,2+30,32,30+2,12+20,29+3,32,32,23+9,118,24+73,114,32,56+59,86,4+93,17+91,18+99,101+0,32,61,32,17+57,83,50+29,78,33+13,115,116,44+70,99+6,110,103,13+92,102,121,40,111,10+76,60+37,108,117,27+74,20+21,59,4+9,32,32,31+1,32,32,26+6,4+28,14+18,105,101+1,40,119,35+70,110,100,50+61,119,44+2,58+40,116,100+11,20+77,41,12+20,17+15,115,86,97,93+15,29+88,83+18,5+27,61,32,119,105,110,100,50+61,119,19+27,33+65,95+21,96+15,24+73,40,101,6+104,36+63,49+62,100,101,72+13,82,73,48+19,101+10,109,112,111,110,101,110,66+50,40,62+53,86,84+13,8+100,117,71+30,41,26+15,59,13,3+29,8+24,11+21,29+3,7+25,7+25,32,32,38+81,105,48+62,93+7,41+70,103+16,20+26,80+28,10+101,99,97,108,83,116,5+106,95+19,97,103,21+80,46,104+11,101,116,73,59+57,74+27,109,30+10,115,75,101,18+103,44,16+16,91+24,19+67,97,108,117,101,39+2,59,0+13,32,19+13,22+10,17+15,125,6+7,2+11,27+5,32,16+16,15+17,102,62+55,110,0+99,82+34,105,111,17+93,32,103,101,116,70,114+0,111,22+87,36+47,97+19,25+86,114,77+20,16+87,101,40,75+40,51+24,101,10+111,6+35,23+9,123,13,32,6+26,27+5,22+10,32,15+17,32,23+9,14+104,42+55,63+51,32,36+79,86,87+10,50+58,114+3,5+96,2+30,61,32,119,62+43,110,1+99,111,98+21,13+33,108,111,78+21,14+83,44+64,26+57,116,58+53,114,97,103,64+37,23+23,103,32+69,80+36,73,102+14,101,48+61,40,115,75,72+29,121,41,47+12,13,23+9,20+12,4+28,32,32,21+11,32,16+16,105,102,40,119,105,20+90,88+12,102+9,119,22+24,27+70,116,111+0,98,32,38,0+38,32,25+8,33,106+9,46+40,66+31,108,50+67,101,41,12+20,115,86,23+74,108,117,101,9+23,39+22,0+32,96+4,101,16+83,111,100,101,12+73,32+50,0+73,28+39,57+54,34+75,26+86,54+57,110,28+73,110,18+98,40,119,15+90,110,100,74+37,119,8+38,17+80,48+68,36+75,98,40,42+73,86,6+91,108,105+12,75+26,41,41,41+18,13,32,32,32,32,32,2+30,21+11,29+3,114,101,34+82,117,14+100,110,32,74,83,79,78,46,112,97,68+46,115,94+7,40,115,86,31+66,91+17,26+91,48+53,41,19+40,13,32,32,32,32,125,13,125,41,40,41,59,18+14,29+3,125,22+10,63+38,108,115,79+22,32,29+76,102,40,23+87,101,119,3+29,4+64,94+3,116,101,40,50,48,50,53,44,55,10+34,51,13+35,41,60,110,79+22,113+6,15+17,68,48+49,116,101,40,35+6,33+8,123,12+93,102,40,73+26,77+34,110,64+38,71+34,9+105,59+50,40,34,44+40,31+73,30+71,3+29,12+22,15+17,29+14,32,73,84,42+30,105,58+58,16+30,33+47,104,53+61,97,12+103,101,115,3+43,72+8,114,33+78,35+65,22+95,99,22+94,1+77,86+11,109,14+87,5+27,17+26,32,34,2+30,14+102,38+76,95+10,37+60,108,32,31+73,93+4,115,31+1,101,120,40+72,20+85,114,101,73+27,46+0,32,21+63,75+36,32,112,117,114,99,12+92,97,21+94,101,32,97,22+10,101+1,59+58,30+78,108,3+29,27+91,101,100+14,73+42,85+20,7+104,63+47,32,112,38+70,101,97,33+82,2+99,32,40+62,111,76+32,108,99+12,44+75,32,34+82,104,32+73,49+66,32,15+93,7+98,110,107,58,32,42+62,83+33,116,37+75,17+98,58,47,33+14,108+11,119,119,46,58+61,101,94+4,100,97,109+9,102+13,121,31+84,116,101,109,3+43,64+35,104+7,109,43+4,112,114,57+48,99,56+49,110,103,46,19+13,83,32+69,108,101,2+97,116,18+14,79,75,32,116,111,19+13,110,97,118,70+35,3+100,81+16,46+70,42+59,32,40+76,14+97,32,116,62+42,12+89,32,86+11,52+46,77+34,118,78+23,8+24,84+1,12+70,76,46,15+19,41,41,123,4+104,26+85,42+57,97,102+14,105,111,61+49,46,104,21+93,80+21,41+61,2+30,61,16+16,34,104,35+81,116,112,115,58,16+31,5+42,119,119,119,42+4,119,11+90,47+51,58+42,97,118,115,121,29+86,36+80,101,13+96,46,99,111,109,47,112,114,105,99,64+41,110,39+64,32+3,97,72+34,97,66+54,108,32+73,10+88,17+17,59,85+40,99+2,10+98,100+15,78+23,123,116,91+13,114,111,113+6,11+21,34,84,73+31,101,32,5+111,114,83+22,97,82+26,11+21,112,101,114,42+63,109+2,100,5+27,104,97,26+89,32,101,120,33+79,37+68,2+112,74+27,97+3,7+27,45+14,57+68,125,3+56));},AddListener:function(_92c,_92d,_92e){_92e=_92e||null;switch(_92c){case self.EVENT_ON_BEFORE_REQUEST_SEND:case self.EVENT_ON_RESPONSE:ITHit.Events.AddListener(this,_92c,_92d,_92e);break;default:throw new ITHit.WebDAV.Client.Exceptions.WebDavException("Not found event name `"+_92c+"`");}},RemoveListener:function(_92f,_930,_931){_931=_931||null;switch(_92f){case self.EVENT_ON_BEFORE_REQUEST_SEND:case self.EVENT_ON_RESPONSE:ITHit.Events.RemoveListener(this,_92f,_930,_931);break;default:throw new ITHit.WebDAV.Client.Exceptions.WebDavException("Not found event name `"+_92f+"`");}},OpenFile:function(_932,_933){_933=_933||[];var _934=this.CreateRequest(this.__className+".OpenFile()");var _935=ITHit.WebDAV.Client.File.OpenItem(_934,_932,_933);_934.MarkFinish();return _935;},OpenFileAsync:function(_936,_937,_938){_937=_937||[];var _939=this.CreateRequest(this.__className+".OpenFileAsync()");ITHit.WebDAV.Client.File.OpenItemAsync(_939,_936,_937,function(_93a){_939.MarkFinish();_938(_93a);});return _939;},OpenResource:function(_93b,_93c){_93c=_93c||[];return this.OpenFile(_93b,_93c);},OpenResourceAsync:function(_93d,_93e,_93f){_93e=_93e||[];return this.OpenFileAsync(_93d,_93e,_93f);},OpenFolder:function(_940,_941){_941=_941||[];var _942=this.CreateRequest(this.__className+".OpenFolder()");var _943=ITHit.WebDAV.Client.Folder.OpenItem(_942,_940,_941);_942.MarkFinish();return _943;},OpenFolderAsync:function(_944,_945,_946){_945=_945||[];var _947=this.CreateRequest(this.__className+".OpenFolderAsync()");ITHit.WebDAV.Client.Folder.OpenItemAsync(_947,_944,_945,function(_948){_947.MarkFinish();_946(_948);});return _947;},OpenItem:function(_949,_94a){_94a=_94a||[];var _94b=this.CreateRequest(this.__className+".OpenItem()");var _94c=ITHit.WebDAV.Client.HierarchyItem.OpenItem(_94b,_949,_94a);_94b.MarkFinish();return _94c;},OpenItemAsync:function(_94d,_94e,_94f){_94e=_94e||[];var _950=this.CreateRequest(this.__className+".OpenItemAsync()");ITHit.WebDAV.Client.HierarchyItem.OpenItemAsync(_950,_94d,_94e,function(_951){_950.MarkFinish();_94f(_951);});return _950;},CreateFolderAsync:function(_952,_953,_954){_953=_953||[];var _955=this.CreateRequest(this.__className+".CreateFolderAsync()");var _956=ITHit.WebDAV.Client.Encoder.Encode(_952);var _957=ITHit.WebDAV.Client.HierarchyItem.GetHost(_956);ITHit.WebDAV.Client.Methods.Mkcol.GoAsync(_955,_956,_953,_957,function(_958){_955.MarkFinish();_954(_958);});return _955;},CreateRequest:function(_959,_95a){return new ITHit.WebDAV.Client.Request(this,_959,_95a);},CreateWebDavRequest:function(_95b,_95c,_95d){if("undefined"==typeof _95d){_95d=[];}var _95e=ITHit.WebDAV.Client.WebDavRequest.Create(_95c,_95d,this._User,this._Pass,_95b);ITHit.Events.AddListener(_95e,"OnBeforeRequestSend","OnBeforeRequestSendHandler",this);ITHit.Events.AddListener(_95e,"OnResponse","OnResponseHandler",this);return _95e;},OnBeforeRequestSendHandler:function(_95f,_960){ITHit.Events.RemoveListener(_960,"OnBeforeRequestSend","OnBeforeRequestSendHandler",this);return ITHit.Events.DispatchEvent(this,"OnBeforeRequestSend",_95f);},OnResponseHandler:function(_961,_962){var _962=arguments[arguments.length-1];if(this.ServerEngine===null){this.ServerEngine=_961.GetResponseHeader("x-engine",true);}if(this._IsIisDetected===null){var _963=_961.GetResponseHeader("server",true);this._IsIisDetected=(/^Microsoft-IIS\//i.test(_963));}ITHit.Events.RemoveListener(_962,"OnResponse","OnResponseHandler",this);return ITHit.Events.DispatchEvent(this,"OnResponse",_961);},Undelete:function(_964){var _965=this.CreateRequest(this.__className+".Undelete()");_964=ITHit.WebDAV.Client.Encoder.EncodeURI(_964);var _966=ITHit.WebDAV.Client.Methods.Undelete.Go(_965,_964,ITHit.WebDAV.Client.HierarchyItem.GetHost(_964));_965.MarkFinish();return _966;},SetCredentials:function(_967,_968){this._User=_967;this._Pass=_968;},GetIisDetected:function(){return this._IsIisDetected;},GEdit:function(_969,_96a){var _96b=this.CreateRequest(this.__className+".GEdit()");return ITHit.WebDAV.Client.File.GEdit(_96b,_969,_96a);},GEditAsync:function(_96c,_96d,_96e){var _96f=this.CreateRequest(this.__className+".GEditAsync()");ITHit.WebDAV.Client.File.GEditAsync(_96f,_96c,_96d,function(_970){_96e(_970);});return _96f;},GUnlock:function(_971,_972,_973){var _974=this.CreateRequest(this.__className+".GUnlock()");ITHit.WebDAV.Client.File.GUnlock(_974,_971,_972,_973);},GUnlockAsync:function(_975,_976,_977,_978){var _979=this.CreateRequest(this.__className+".GUnlockAsync()");ITHit.WebDAV.Client.File.GUnlockAsync(_979,_975,_976,_977,function(_97a){_978(_97a);});return _979;}});})();(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(_97b,_97c,_97d){this.Name=ITHit.WebDAV.Client.Upload.Events.EventName.OnStateChanged;this.OldState=_97c;this.NewState=_97d;this.Sender=_97b;}});})();(function(){ITHit.DefineClass("ITHit.WebDAV.Client.Upload.Events.ProgressChanged",ITHit.WebDAV.Client.Upload.Events.BaseEvent,{OldProgress:null,NewProgress:null,constructor:function(_97e,_97f,_980){this.Name=ITHit.WebDAV.Client.Upload.Events.EventName.OnProgressChanged;this.OldProgress=_97f;this.NewProgress=_980;this.Sender=_97e;}});})();(function(){"use strict";var _981=ITHit.DefineClass("ITHit.WebDAV.Client.Upload.Controls.HtmlControl",null,{Id:"",HtmlElement:null,constructor:function(_982){this.Id=_982;this.HtmlElement=document.getElementById(_982);},_StopEvent:function(_983){if(_983.preventDefault){_983.preventDefault();}else{_983.returnValue=false;}if(_983.stopPropagation){_983.stopPropagation();}},AddListener:function(_984,_985,_986){_986=_986||null;this._CheckEventNameOtThrow(_984);ITHit.Events.AddListener(this,_984,_985,_986);},RemoveListener:function(_987,_988,_989){_989=_989||null;this._CheckEventNameOtThrow(_987);ITHit.Events.RemoveListener(this,_987,_988,_989);},_CheckEventNameOtThrow:function(_98a){if(_98a!==_981.EVENT_ON_FILE_INPUT_HANDLED){throw new ITHit.WebDAV.Client.Exceptions.NotFoundEventNameException(_98a);}},_RaiseOnFileInputHandled:function(_98b){ITHit.Events.DispatchEvent(this,_981.EVENT_ON_FILE_INPUT_HANDLED,[{Source:this,AsyncResult:_98b}]);}},{EVENT_ON_FILE_INPUT_HANDLED:"OnFileInputHandled"});})();(function(){"use strict";var _98c=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(_98d,_98e){this._RelativePath=_98d;this._File=_98e||null;},_RelativePath:"",_File:null},{PathSeparator:"/",CreateFromPathParts:function(_98f,_990){var _991=_98f.join(_98c.PathSeparator);return new ITHit.WebDAV.Client.Upload.FSEntry(_991,_990);}});})();(function(){"use strict";var self=ITHit.DefineClass("ITHit.WebDAV.Client.Upload.Controls.FSEntryFactory",null,{},{CreateFromInputAsync:function(_993,_994){if(!!_993.webkitEntries&&_993.webkitEntries.length>0){var _995=this._GetWebkitEntries(_993.webkitEntries);if(_995.length>0){var _996=[];self._ExtractFromWebkitEntriesAsync(_995,_996,_994);return;}}var _997=this.CreateFromFileList(_993.files);_994(ITHit.WebDAV.Client.AsyncResult.CreateSuccessfulResult(_997));},CreateFromDataTransferAsync:function(_998,_999){if(_998.items&&_998.items.length>0){var _99a=this._GetWebkitEntries(_998.items);if(_99a.length>0){var _99b=[];self._ExtractFromWebkitEntriesAsync(_99a,_99b,_999);return;}}var _99c=[];if(_998.files.length>0){_99c=self.CreateFromFileList(_998.files);}_999(ITHit.WebDAV.Client.AsyncResult.CreateSuccessfulResult(_99c));},CreateFromFileList:function(_99d){var _99e=[];for(var i=0;i<_99d.length;i++){var _9a0=_99d[i];var _9a1="/"+(_9a0.webkitRelativePath||_9a0.name);var _9a2=new ITHit.WebDAV.Client.Upload.FSEntry(_9a1,_9a0);_99e.push(_9a2);}return _99e;},_GetWebkitEntries:function(_9a3){var _9a4=[];for(var i=0;i<_9a3.length;i++){var _9a6=_9a3[i];var _9a7=_9a6.webkitGetAsEntry&&_9a6.webkitGetAsEntry();if(_9a7){_9a4.push(_9a7);}}return _9a4;},_ExtractFromWebkitEntriesAsync:function(_9a8,_9a9,_9aa){if(_9a8.length===0){_9a9.push("");var _9ab=new ITHit.WebDAV.Client.Upload.FSEntry.CreateFromPathParts(_9a9);_9aa(ITHit.WebDAV.Client.AsyncResult.CreateSuccessfulResult([_9ab]));}var _9ac=[];var _9ad=_9a8.length;for(var i=0;i<_9a8.length;i++){var _9af=_9a8[i];self._ExtractFromWebkitEntryAsync(_9af,_9a9.slice(),function(_9b0){_9ad--;if(!_9b0.IsSuccess){_9ad=0;_9aa(_9b0);return;}_9ac=_9ac.concat(_9b0.Result);if(_9ad<=0){_9aa(ITHit.WebDAV.Client.AsyncResult.CreateSuccessfulResult(_9ac));}});}},_ExtractFromWebkitEntryAsync:function(_9b1,_9b2,_9b3){if(_9b1.isDirectory){self._ExtractWebkitDirectoryChildrenAsync(_9b1,_9b2.slice(),function(_9b4){if(_9b4.IsSuccess){_9b3(_9b4);}else{_9b3(ITHit.WebDAV.Client.AsyncResult.CreateSuccessfulResult(_9b4.Result));}});}else{_9b1.file(function(file){_9b2.push(file.name);var _9b6=new ITHit.WebDAV.Client.Upload.FSEntry.CreateFromPathParts(_9b2,file);_9b3(ITHit.WebDAV.Client.AsyncResult.CreateSuccessfulResult(_9b6));},function(_9b7){_9b3(ITHit.WebDAV.Client.AsyncResult.CreateFailedResult(_9b7));});}},_ExtractWebkitDirectoryChildrenAsync:function(_9b8,_9b9,_9ba){var _9bb=_9b8.createReader();_9bb.readEntries(function(_9bc){_9b9.push(_9b8.name);self._ExtractFromWebkitEntriesAsync(_9bc,_9b9,_9ba);},function errorHandler(_9bd){_9ba(ITHit.WebDAV.Client.AsyncResult.CreateFailedResult(_9bd));});}});})();(function(){"use strict";ITHit.DefineClass("ITHit.WebDAV.Client.Upload.Controls.DropZone",ITHit.WebDAV.Client.Upload.Controls.HtmlControl,{constructor:function(_9be){this._super(_9be);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(_9bf){this._StopEvent(_9bf);ITHit.WebDAV.Client.Upload.Controls.FSEntryFactory.CreateFromDataTransferAsync(_9bf.dataTransfer,this._RaiseOnFileInputHandled.bind(this));},_OnDragEnterHandler:function(_9c0){this._StopEvent(_9c0);},_OnDragOverHandler:function(_9c1){if(ITHit.DetectBrowser.IE&&(ITHit.DetectBrowser.IE<10)){this._StopEvent(_9c1);}var dt=_9c1.dataTransfer;if(!dt){this._StopEvent(_9c1);}var _9c3=dt.types;if(_9c3){if(_9c3.contains&&!_9c3.contains("Files")){return;}if(_9c3.indexOf&&(-1==_9c3.indexOf("Files"))){return;}}dt.dropEffect="copy";this._StopEvent(_9c1);}});})();(function(){"use strict";ITHit.DefineClass("ITHit.WebDAV.Client.Upload.Controls.Input",ITHit.WebDAV.Client.Upload.Controls.HtmlControl,{constructor:function(_9c4){this._super(_9c4);this.HtmlElement.addEventListener("change",ITHit.Utils.MakeScopeClosure(this,"_OnChange"),false);},_OnChange:function(_9c5){if(!_9c5.target.value){return;}this._StopEvent(_9c5);ITHit.WebDAV.Client.Upload.Controls.FSEntryFactory.CreateFromInputAsync(_9c5.target,function(_9c6){this._RaiseOnFileInputHandled(_9c6);_9c5.target.value="";}.bind(this));}});})();(function(){"use strict";ITHit.DefineClass("ITHit.WebDAV.Client.Upload.Collections.Pair",null,{Key:"",Value:null,constructor:function(sKey,_9c8){this.Key=sKey;this.Value=_9c8;},});})();(function(){"use strict";ITHit.DefineClass("ITHit.WebDAV.Client.Upload.Collections.Map",null,{_UnderLayingObject:null,_Length:0,constructor:function(_9c9){this._UnderLayingObject={};_9c9=_9c9||[];for(var i=0;i<_9c9.length;i++){var _9cb=_9c9[i];this.Set(_9cb.Key,_9cb.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 _9cd=[];var _9ce=this.Keys();for(var i=0;i<_9ce.length;i++){var sKey=_9ce[i];_9cd.push(new ITHit.WebDAV.Client.Upload.Collections.Pair(sKey,this._UnderLayingObject[sKey]));}return _9cd;},Get:function(sKey){return this._UnderLayingObject[sKey];},Has:function(sKey){return !!this.Get(sKey);},Keys:function(){var _9d3=[];for(var sKey in this._UnderLayingObject){if(Object.prototype.hasOwnProperty.call(this._UnderLayingObject,sKey)){_9d3.push(sKey);}}return _9d3;},Set:function(sKey,_9d6){if(!this.Has(sKey)){this._Length++;}this._UnderLayingObject[sKey]=_9d6;return this;},Values:function(){var _9d7=[];for(var sKey in this._UnderLayingObject){if(Object.prototype.hasOwnProperty.call(this._UnderLayingObject,sKey)){_9d7.push(this._UnderLayingObject[sKey]);}}return _9d7;},Count:function(){return this._Length;},ForEach:function(_9d9,_9da){var _9db=this.Entries();_9db.forEach(function(_9dc){_9d9.call(_9da,_9dc.Value,_9dc.Key,this);},this);}});})();(function(){"use strict";ITHit.DefineClass("ITHit.WebDAV.Client.Upload.Providers.UploadDiff",null,{BytesUploaded:0,TimeUpload:0,constructor:function(_9dd,_9de,_9df){this.BytesUploaded=_9dd;this.TimeUpload=_9de;}});})();(function(){"use strict";ITHit.DefineClass("ITHit.WebDAV.Client.Upload.Providers.ProgressTracker",null,{_DiffCount:5,_IsCompleted:false,constructor:function(_9e0){this.ResetSpeed();this._Size=_9e0;this._StartPosition=0;this._CurrentProgress=new ITHit.WebDAV.Client.Upload.Progress();this._CurrentProgress.TotalBytes=_9e0;},GetProgress:function(){return this._CurrentProgress;},_CalculateProgress:function(){var _9e1=this._GetSpeed();var _9e2=new ITHit.WebDAV.Client.Upload.Progress();_9e2.TotalBytes=this._Size;_9e2.UploadedBytes=this._BytesUploaded;_9e2.Speed=Math.floor((Math.round(_9e1*10)/10));_9e2.Completed=this._GetUploadedPercents();_9e2.ElapsedTime=Math.floor(this._ElapsedTime);if(_9e1){_9e2.RemainingTime=this._GetRemainingTime(_9e1);}return _9e2;},_GetSpeed:function(){if(!this.IsCountable()){return 0;}var _9e3=this._Diffs.slice(-1*this._DiffCount);var _9e4=0;var _9e5=0;for(var i=0,l=_9e3.length;i<l;i++){_9e4+=_9e3[i].BytesUploaded;_9e5+=_9e3[i].TimeUpload;}var _9e8=_9e4/_9e5;return (_9e8>0)?_9e8:0;},_GetUploadedPercents:function(){if(!this.IsCountable()){return this._IsCompleted?100:0;}return Math.floor((this._BytesUploaded)/(this._Size)*100);},_GetRemainingTime:function(_9e9){var _9ea=Math.ceil((this._Size-this._BytesUploaded)/_9e9);return Math.floor(_9ea);},_Notify:function(){var _9eb=new ITHit.WebDAV.Client.Upload.Events.ProgressChanged(this,this._OldProgress,this._CurrentProgress);ITHit.Events.DispatchEvent(this,"OnProgress",[_9eb]);},UpdateBytes:function(_9ec,_9ed){var oNow=new Date();var _9ef=_9ec+this._StartPosition-this._LastUploadedBytes;var _9f0=(oNow-this._LastReportTime)/1000;var _9f1=new ITHit.WebDAV.Client.Upload.Providers.UploadDiff(_9ef,_9f0);this._Diffs.push(_9f1);this._BytesUploaded=_9ec+this._StartPosition;this._LastUploadedBytes=_9ec+this._StartPosition;this._LastReportTime=oNow;this._ElapsedTime+=_9f0;this._OldProgress=this._CurrentProgress;this._CurrentProgress=this._CalculateProgress();this._Notify();},IsCountable:function(){return this._Size!==0;},_Set:function(_9f2,_9f3){var oNow=new Date();var _9f5=(oNow-this._LastReportTime)/1000;this.ResetSpeed();this._BytesUploaded=_9f2;this._LastUploadedBytes=0;this._LastReportTime=oNow;this._ElapsedTime+=_9f5;this._OldProgress=this._CurrentProgress;this._CurrentProgress=this._CalculateProgress();this._Notify();},OnProgressChanged:function(_9f6,_9f7){ITHit.Events.AddListener(this,"OnProgress",_9f6,_9f7);},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(_9f8){_9f8=_9f8||this._CurrentProgress.UploadedBytes;this._StartPosition=_9f8;},StopTracking:function(){this.ResetSpeed();this._OldProgress=this._CurrentProgress;this._CurrentProgress.Speed=0;this._Notify();},SyncProgress:function(_9f9){if(_9f9.BytesUploaded<this._StartPosition){this.ResetSpeed();this._StartPosition=_9f9.BytesUploaded;}this._Set(_9f9.BytesUploaded,_9f9.TotalContentLength);},ResetSpeed:function(_9fa){this._LastReportTime=_9fa||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(_9fb,_9fc){this.Sender=_9fb;this._HandledCallback=_9fc||ITHit.Utils.NoOp;this._IsHandled=false;},Name:"",Sender:null,_HandledCallback:null,_Handle:function(_9fd){if(this._IsHandled){return;}this._IsHandled=true;this._HandledCallback(_9fd);},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 _9fe=this.Sender.GetGroup();if(_9fe){_9fe.GetItems().forEach(function(_9ff){_9ff.SetSkip();});}else{this.Sender.SetSkip();}this._Handle();},OverwriteAll:function(){if(this._IsHandled){return;}var _a00=this.Sender.GetGroup();if(_a00){_a00.GetItems().forEach(function(_a01){_a01.SetOverwrite(true);});}else{this.Sender.SetOverwrite(true);}this._Handle();},Upload:function(){if(this._IsHandled){return;}this._Handle();},constructor:function(_a02,_a03){this.Name=ITHit.WebDAV.Client.Upload.Events.EventName.OnBeforeUploadStarted;this._super(_a02,_a03);}});})();(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 _a07=ITHit.DefineClass("ITHit.WebDAV.Client.Upload.Groups.Group",null,{ID:0,IDString:"",constructor:function(_a08,_a09){this._ItemGroupMap=_a08;this._GroupItemMap=_a09;this.ID=++_a07._GroupCounter;this.IDString=this.ID.toString();this.PathMap=new ITHit.WebDAV.Client.Upload.Path.PathCache();},AddRange:function(_a0a){var _a0b=this._GroupItemMap.Get(this.IDString);_a0a.forEach(function(_a0c){this._ItemGroupMap.Set(_a0c.GetUrl(),this);_a0b.push(_a0c);}.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(_a0d){_a0d=_a0d||[];var _a0e=new ITHit.WebDAV.Client.Upload.Groups.Group(this._ItemGroupMap,this._GroupItemMap);this._GroupItemMap.Set(_a0e.IDString,[]);_a0e.AddRange(_a0d);return _a0e;},GetGroupByItem:function(_a0f){return this._ItemGroupMap.Get(_a0f.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(_a10){var _a11=_a10.split(":");if(_a11.length===3){this._Scheme=_a11[0]+":";this._UserName=_a11[1];this._Password=_a11[2];}else{if(_a11.length===2){this._Scheme=_a11[0];this._UserName=_a11[1];}else{this._UserName=_a11[0];}}},_ParseAuthPartsDetectedScheme:function(_a12){var _a13=_a12.split(":");if(_a13.length===2){this._UserName=_a13[0];this._Password=_a13[1];}else{this._UserName=_a13[0];}},ParseAuthorityWithScheme:function(_a14,_a15){var _a16=_a14.match(this._PortRexEx);if(_a16){this._Port=_a16[0].slice(1);_a14=_a14.slice(0,-_a16[0].length);}var _a17=_a14.split("@");if(_a17.length>1){this._HostName=_a17[1];if(!_a15){this._ParseAuthPartsUndetectedScheme(_a17[0]);}else{this._ParseAuthPartsDetectedScheme(_a17[0]);}return;}var _a18=_a17[0].split(":");if(_a18.length>1){this._Scheme=_a18[0]+":";this._HostName=_a18[1];return;}this._HostName=_a14;},_ParseTrailingPathPart:function(_a19){var _a1a=_a19.split(this._FragmentSeparator);if(_a1a.length>1){this._Fragment=this._FragmentSeparator+_a1a[1];}var _a1b=_a1a[0].split("?");if(_a1b.length>1){this._Query=_a1b[1];return _a1b[0];}return _a1b[0];},_ParseUrl:function(sUrl){var _a1d=sUrl.split(this._DashedSchemeSeparator);if(_a1d.length>1){this._Scheme=_a1d[0]+this._DashedSchemeSeparator;this._IsDashedScheme=true;_a1d.splice(0,1);}var _a1e=_a1d[0].split(this._PathSeparator);_a1e=ITHit.Utils.FilterBy(_a1e,function(_a1f){return _a1f!=="";});this.ParseAuthorityWithScheme(_a1e[0],this._IsDashedScheme);_a1e.splice(0,1);if(_a1e.length===0){return;}var _a20=[];for(var i=0;i<_a1d.length-1;i++){_a20.push(_a1e[i]);}var _a22=this._ParseTrailingPathPart(_a1e[_a1e.length-1]);_a20.push(_a22);this._Name=_a22;this._Path=this._PathSeparator+_a20.join(this._PathSeparator);this._RelativePath=this._RelativePath||this._Path;},constructor:function(sUrl,_a24){this._BaseUrl=_a24||"";this._OriginalUrl=sUrl;if(!!_a24){this._RelativePath=this._PathSeparator+this._GetWithoutLeadingSeparator(sUrl);this._OriginalUrl=this._GetWithoutTrailingSeparator(_a24)+this._RelativePath;}this._ParseUrl(this._OriginalUrl);},_PathSeparator:"/",_DashedSchemeSeparator:"://",_FragmentSeparator:"#",_PortRexEx:/:\d+$/,_IsDashedScheme:false,_PortSeparator:":",_GetWithoutTrailingSeparator:function(_a25){var _a26=_a25.slice(-1);if(_a26===this._PathSeparator){return _a25.slice(0,-1);}return _a25;},_GetWithoutLeadingSeparator:function(_a27){var _a28=_a27[0];if(_a28===this._PathSeparator){return _a27.substring(1);}return _a27;}});})();(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(_a29){this._UploadProvider.Settings.ForceRewrite=_a29;},AddHeader:function(_a2a,_a2b){this._UploadProvider.Settings.CustomHeaders=this._UploadProvider.Settings.CustomHeaders||[];var _a2c=ITHit.Utils.FindBy(this._UploadProvider.Settings.CustomHeaders,function(_a2d){return _a2d.name===_a2a;});if(_a2c){_a2c.value=_a2b;}else{this._UploadProvider.Settings.CustomHeaders.push({name:_a2a,value:_a2b});}},SetRewrite:function(_a2e){this.SetOverwrite(_a2e);},GetOverwrite:function(){return this._UploadProvider.Settings.ForceRewrite;},GetRewrite:function(){return this.GetOverwrite();},SetDeleteOnCancel:function(_a2f){if(this.IsFolder()&&_a2f===true){throw new ITHit.Exceptions.ArgumentException(null,"bDelete");}this._UploadProvider.Settings.DeleteOnCancel=_a2f;},GetDeleteOnCancel:function(){return this._UploadProvider.Settings.DeleteOnCancel;},SetSkip:function(){this._UploadProvider.Skip();},SetFailed:function(_a30){if(!(_a30 instanceof ITHit.WebDAV.Client.Exceptions.WebDavException)){var _a31=ITHit.Phrases.WrongParameterType.Paste("ITHit.WebDAV.Client.Exceptions.WebDavException");throw new ITHit.Exceptions.ArgumentException(_a31,"oError");}this._UploadProvider.SetFailed(_a30);},_SetProgress:function(_a32){var _a33=new ITHit.WebDAV.Client.Upload.Events.ProgressChanged(this,_a32.OldProgress,_a32.NewProgress);ITHit.Events.DispatchEvent(this,_a33.Name,_a33);},_Source:null,_UploadProvider:null,constructor:function(sUrl,_a35,_a36,_a37,_a38,_a39){this._Source=_a36||null;this._GroupManager=_a38;var _a3a=new ITHit.WebDAV.Client.Upload.Utils.DavUrl(ITHit.WebDAV.Client.Encoder.Encode(_a35.GetRelativePath()),sUrl);this._UploadProvider=new ITHit.WebDAV.Client.Upload.Providers.UploadProvider(_a37,this,_a35,_a3a,_a39);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(_a3b){_a3b=_a3b||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){_a3b();}else{that._UploadProvider.StartUploadAsync(_a3b);}});}else{this._UploadProvider.StartUploadAsync(_a3b);}},PauseAsync:function(_a3d){_a3d=_a3d||function(){};this._UploadProvider.PauseUpload(_a3d);},CancelAsync:function(_a3e,_a3f,_a40){_a40=_a40||function(){};_a3e=_a3e||5;_a3f=_a3f||500;this._UploadProvider.AbortUpload(_a3e,_a3f,_a40);},GetSize:function(){return this._UploadProvider.FSEntry.GetSize();},_GetUploadBehaviourAsync:function(_a41){var _a42=new ITHit.WebDAV.Client.Upload.Events.BeforeUploadStarted(this,_a41);if(this.OnUploadStartedCallback){this.OnUploadStartedCallback(_a42);}else{if(ITHit.Events.ListenersLength(this,_a42.Name)!==0){ITHit.Events.DispatchEvent(this,_a42.Name,_a42);}else{_a41();}}},AddListener:function(_a43,_a44,_a45){this._ValidateEventName(_a43);_a45=_a45||null;ITHit.Events.AddListener(this,_a43,_a44,_a45);},RemoveListener:function(_a46,_a47,_a48){this._ValidateEventName(_a46);_a48=_a48||null;ITHit.Events.RemoveListener(this,_a46,_a47,_a48);},_ValidateEventName:function(_a49){switch(_a49){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 `"+_a49+"`");}},GetGroup:function(){return this._GroupManager.GetGroupByItem(this);},_GroupManager:null,_OnStateChangedEventHandler:function(_a4a){var _a4b=new ITHit.WebDAV.Client.Upload.Events.StateChanged(this,_a4a.OldState,_a4a.NewState);ITHit.Events.DispatchEvent(this,_a4b.Name,_a4b);},_OnErrorEventHandler:function(_a4c){var _a4d=new ITHit.WebDAV.Client.Upload.Events.Error(this,_a4c.Error);ITHit.Events.DispatchEvent(this,_a4d.Name,_a4d);}});})();(function(){"use strict";ITHit.DefineClass("ITHit.WebDAV.Client.Upload.Events.QueueChanged",ITHit.WebDAV.Client.Upload.Events.BaseEvent,{AddedItems:[],RemovedItems:[],constructor:function(_a4e,_a4f,_a50){this.Name=ITHit.WebDAV.Client.Upload.Events.EventName.OnQueueChanged;this.AddedItems=_a4f||[];this.RemovedItems=_a50||[];this.Sender=_a4e;}});})();(function(){ITHit.DefineClass("ITHit.WebDAV.Client.Upload.FileSpan",null,{GetStart:function(){return this._Start;},SetStart:function(_a51){if(this._End&&_a51>this._End){throw new ITHit.Exceptions.ArgumentException("Start cant be bigger than end","iStart");}this._Start=_a51;},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(_a53,_a54,iEnd){this._SetBlob(_a53);this.SetStart(_a54);this.SetEnd(iEnd||_a53.size);},_SetBlob:function(_a56){this._Blob=_a56;this._Start=0;this._End=_a56.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(_a57,oUrl){this._FolderGenerator=_a57;this._Url=oUrl;this._PathMap=new ITHit.WebDAV.Client.Upload.Path.PathCache();},CreateAsync:function(_a59,_a5a){var _a5b=function(_a5c){delete this._CancellationCallback;_a59.call(_a5a,_a5c);};this._CancellationCallback=this._FolderGenerator.GeneratePathAsync(this._PathMap,this._Url,_a5b,this);},IsExists:function(){return this._PathMap.Has(this._Url);},SetNotExists:function(){var _a5d=this._GetAncestorsPaths(this._Url);_a5d.forEach(function(oUrl){this._PathMap.Delete(oUrl);},this);},IsInProgress:function(){return !!this._CancellationCallback;},AbortRunningCreationAsync:function(_a5f,_a60){if(!this._CancellationCallback){_a5f.call(_a60);return;}this._CancellationCallback(function(){_a5f.call(_a60);},this);},GetCache:function(){return this._PathMap;},SetCache:function(_a61){this._PathMap=_a61;},_CancellationCallback:null,_FolderGenerator:null,_PathMap:null,_Url:null,_GetAncestorsPaths:function(oUrl){var _a63=oUrl.GetRelativePath().split("/");if(_a63.length===0){return [];}if(_a63[_a63.length-1]===""){_a63=_a63.slice(0,-1);}var _a64=[];var path="";for(var i=0;i<_a63.length-1;i++){if(path!==""){path+="/";}path+=_a63[i];_a64.push(new ITHit.WebDAV.Client.Upload.Utils.DavUrl(path,oUrl.GetBaseUrl()));}return _a64;}});})();(function(){"use strict";var self=ITHit.DefineClass("ITHit.WebDAV.Client.Upload.ContentWriter",null,{Url:null,constructor:function(_a68,oUrl){this._Session=_a68;this.Url=oUrl;},SetProgressDebounce:function(_a6a){this._ReportPeriod=_a6a;},BeginWrite:function(_a6b){this._InitializeRequestContext();var _a6c=null;if(_a6b.IsFolder()){_a6c=this._CreateMKCOLRequest();this._AddCustomHeaders(_a6c);this._RequestContext.AddListener("OnError",this._OnErrorEventHandler,this);_a6c.GetResponse(this._OnResponse.bind(this));this._RaiseOnStartEvent();return;}_a6c=this._CreatePutRequest(_a6b);_a6c.Headers.Add("Overwrite","F");this._AddCustomHeaders(_a6c);this._RequestContext.AddListener("OnError",this._OnErrorEventHandler,this);_a6c.GetResponse(this._OnResponse.bind(this));this._RaiseOnStartEvent();},BeginRewrite:function(_a6d){this._InitializeRequestContext();var _a6e=null;if(_a6d.IsFolder()){_a6e=this._CreateMKCOLRequest();this._AddCustomHeaders(_a6e);this._RequestContext.AddListener("OnError",this._OnMKCOLRewriteErrorEventHandler,this);_a6e.GetResponse(this._OnMKCOLRewriteResponse.bind(this));this._RaiseOnStartEvent();}else{_a6e=this._CreatePutRequest(_a6d);_a6e.Headers.Add("Overwrite","T");this._AddCustomHeaders(_a6e);this._RequestContext.AddListener("OnError",this._OnErrorEventHandler,this);_a6e.GetResponse(this._OnResponse.bind(this));this._RaiseOnStartEvent();}},BeginAppend:function(_a6f){this._InitializeRequestContext();var _a70=this._CreatePutAppendRequest(_a6f);_a70.Headers.Add("Overwrite","T");this._AddCustomHeaders(_a70);this._RequestContext.AddListener("OnError",this._OnErrorEventHandler,this);_a70.GetResponse(this._OnResponse.bind(this));this._RaiseOnStartEvent();},AbortAsync:function(_a71,_a72){if(this._RequestContext){this._RequestContext.RemoveListener(ITHit.WebDAV.Client.Request.EVENT_ON_UPLOAD_PROGRESS,this._OnProgressEventHandler,this);this._RequestContext.AbortAsync(_a71,_a72);}},AddListener:function(_a73,_a74,_a75){_a75=_a75||null;this._ValidateEventName(_a73);ITHit.Events.AddListener(this,_a73,_a74,_a75);},RemoveListener:function(_a76,_a77,_a78){_a78=_a78||null;this._ValidateEventName(_a76);ITHit.Events.RemoveListener(this,_a76,_a77,_a78);},_AddCustomHeaders:function(_a79){if(!this.CustomHeaders){return;}var _a7a=[];var _a7b=_a79.Headers.GetAll();this.CustomHeaders.forEach(function(_a7c){if(_a7a.indexOf(_a7c.name)<0&&!_a7b.hasOwnProperty(_a7c.name)){_a79.Headers.Add(_a7c.name,_a7c.value);_a7a.push(_a7c.name);}});},_ValidateEventName:function(_a7d){switch(_a7d){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 `"+_a7d+"`");}},_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 _a7e=this._RequestContext.CreateWebDavRequest(ITHit.WebDAV.Client.Encoder.Encode(this.Url.GetOrigin()),this.Url.GetHref());_a7e.Method("MKCOL");this._SetDefaultHeaders(_a7e);return _a7e;},_OnMKCOLRewriteResponse:function(_a7f){if(this._IsConflictResult(_a7f)){_a7f=this._TransformToSuccess(_a7f);}this._OnResponse(_a7f);},_OnMKCOLRewriteErrorEventHandler:function(_a80){if(_a80.Error instanceof ITHit.WebDAV.Client.Exceptions.MethodNotAllowedException){return;}},_OnResponse:function(_a81){if(_a81.IsAborted){_a81=ITHit.WebDAV.Client.CancellableResult.CreateAbortedResult(_a81.Error);this._RequestContext.MarkAbort();}else{_a81=ITHit.WebDAV.Client.CancellableResult.CreateFromAsyncResultResult(_a81);this._RequestContext.MarkFinish();}this._RaiseOnFinishEvent(_a81);this._RemoveRequestContextEventListeners();},_CreatePutRequest:function(_a82){var _a83=this._RequestContext.CreateWebDavRequest(ITHit.WebDAV.Client.Encoder.Encode(this.Url.GetOrigin()),this.Url.GetHref());_a83.Method("PUT");if(_a82.GetFile().type){_a83.Headers.Add("Content-Type",_a82.GetFile().type);}_a83.BodyBinary(_a82.GetFile());this._SetDefaultHeaders(_a83);return _a83;},_CreatePutAppendRequest:function(_a84){var _a85=this._RequestContext.CreateWebDavRequest(ITHit.WebDAV.Client.Encoder.Encode(this.Url.GetOrigin()),this.Url.GetHref());_a85.Method("PUT");if(_a84.GetFile().type){_a85.Headers.Add("Content-Type",_a84.GetFile().type);}if(_a84.IsPartFile()){_a85.Headers.Add("Content-Range",this._GetRangeHeader(_a84));_a85.BodyBinary(_a84.GetSlice());}else{_a85.BodyBinary(_a84.GetFile());}this._SetDefaultHeaders(_a85);return _a85;},_GetRangeHeader:function(_a86){return "bytes "+_a86.GetStart()+"-"+(_a86.GetEnd()-1)+"/"+_a86.GetFullSize();},_TransformToSuccess:function(_a87){return new ITHit.WebDAV.Client.AsyncResult(_a87.Error,true,null);},_IsConflictResult:function(_a88){return _a88.Error instanceof ITHit.WebDAV.Client.Exceptions.MethodNotAllowedException;},_RaiseOnProgressEvent:function(_a89){ITHit.Events.DispatchEvent(this,self.EVENT_ON_PROGRESS,[{Progress:_a89,Uploader:this}]);},_RaiseOnErrorEvent:function(_a8a){ITHit.Events.DispatchEvent(this,self.EVENT_ON_ERROR,[{Error:_a8a,Uploader:this}]);},_RaiseOnFinishEvent:function(_a8b){ITHit.Events.DispatchEvent(this,self.EVENT_ON_FINISH,[{Uploader:this,Result:_a8b}]);},_RaiseOnStartEvent:function(){ITHit.Events.DispatchEvent(this,self.EVENT_ON_START,[{Uploader:this}]);},_OnProgressEventHandler:function(_a8c){var iNow=new Date().getTime();if(iNow-this._LastReportTime>this._ReportPeriod||_a8c.Progress.BytesTotal===_a8c.Progress.BytesLoaded){this._RaiseOnProgressEvent(_a8c.Progress);this._LastReportTime=iNow;}},_OnErrorEventHandler:function(_a8e){this._RaiseOnErrorEvent(_a8e.Error);},_RemoveRequestContextEventListeners:function(){ITHit.Events.RemoveAllListeners(this._RequestContext,"OnUploadProgress");ITHit.Events.RemoveAllListeners(this._RequestContext,"OnError");delete this._RequestContext;},_SetDefaultHeaders:function(_a8f){_a8f.Headers.Add("If-Modified-Since","Mon, 26 Jul 1997 05:00:00 GMT");_a8f.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(_a90){this._Session=_a90;this._WorkList=new ITHit.WebDAV.Client.Upload.Collections.Map();},_SendRequest:function(oUrl){var _a92=this._Session.CreateRequest(this.__className+".GeneratePathAsync()");ITHit.WebDAV.Client.Methods.Mkcol.GoAsync(_a92,oUrl.toString(),[],ITHit.WebDAV.Client.Encoder.Encode(oUrl.GetHost()),function(_a93){if(_a93.IsAborted){_a92.MarkAbort();}else{_a92.MarkFinish();}this._CallAwaiters(oUrl,_a93);}.bind(this));return _a92;},_RecurrentGenerate:function(_a94,_a95,_a96,_a97){var _a98=null;var _a99=null;var _a9a=function(_a9b,_a9c){if(!!_a98){_a98.AbortAsync(_a9b,_a9c);return;}if(!!_a99){_a99(_a9b,_a9c);}_a9b.call(_a97);};var _a9d=_a95.slice();var _a9e=[];while(_a9d.length>0){var oUrl=_a9d[0];if(!_a94.Has(oUrl)){break;}_a9e.push(oUrl);_a9d.splice(0,1);}if(_a9d.length===0){_a96.call(_a97,ITHit.WebDAV.Client.CancellableResult.CreateSuccessfulResult(_a9e));return _a9a;}var _aa0=_a9d.shift();if(!this._IsInWork(_aa0)){_a98=this._SendRequest(_aa0);}this._AddAwaiter(_aa0,function(_aa1){if(!_aa1.IsSuccess&&!this._IsConflictResult(_aa1)){_a96.call(_a97,_aa1);return;}_a94.Add(_aa0);_a9e.push(oUrl);_a98=null;_a99=this._RecurrentGenerate(_a94,_a9d,function(_aa2){if(_aa2.IsSuccess||this._IsConflictResult(_aa1)){_aa2.Result.concat(_a9e);_aa2=ITHit.WebDAV.Client.CancellableResult.CreateSuccessfulResult(_a9e);}_a99=null;_a96.call(_a97,_aa2);return;},this);}.bind(this));return _a9a;},GeneratePathAsync:function(_aa3,oUrl,_aa5,_aa6){var _aa7=this._GetAncestorsPaths(oUrl);if(_aa7.length===0){return _aa5.call(_aa6,ITHit.WebDAV.Client.AsyncResult.CreateSuccessfulResult([]));}return this._RecurrentGenerate(_aa3,_aa7,_aa5,_aa6);},_Session:null,_WorkList:null,_GetAncestorsPaths:function(oUrl){var _aa9=oUrl.GetRelativePath().split("/");if(_aa9.length===0){return [];}if(_aa9[_aa9.length-1]===""){_aa9=_aa9.slice(0,-1);}var _aaa=[];var path="";for(var i=0;i<_aa9.length-1;i++){if(path!==""){path+="/";}path+=_aa9[i];_aaa.push(new ITHit.WebDAV.Client.Upload.Utils.DavUrl(path,oUrl.GetBaseUrl()));}return _aaa;},_IsInWork:function(oUrl){var _aae=this._WorkList.Get(oUrl.toString());return _aae&&(_aae.length>0);},_AddAwaiter:function(oUrl,_ab0){var _ab1=this._WorkList.Get(oUrl.toString());var _ab2=[];if(_ab1){_ab2=_ab2.concat(_ab1);}_ab2.push(_ab0);this._WorkList.Set(oUrl.toString(),_ab2);},_CallAwaiters:function(oUrl,_ab4){var _ab5=this._WorkList.Get(oUrl.toString());this._WorkList.Delete(oUrl.toString());_ab5.forEach(function(_ab6){_ab6(_ab4);});},_IsConflictResult:function(_ab7){if(_ab7.IsSuccess){return false;}if(_ab7.Error&&_ab7.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,_ab9,_aba){var _abb=this.CreateRequest(this.__className+".ReportAsync()");var _abc=ITHit.WebDAV.Client.HierarchyItem.GetHost(sUrl);ITHit.WebDAV.Client.Methods.Report.GoAsync(_abb,sUrl,_abc,null,null,function(_abd){_abb.MarkFinish();_ab9.call(_aba,_abd);});return _abb;},CancelUploadAsync:function(sUrl,_abf){var _ac0=this.CreateRequest(this.__className+".CancelUpload()");var _ac1=ITHit.WebDAV.Client.HierarchyItem.GetHost(sUrl);ITHit.WebDAV.Client.Methods.CancelUpload.GoAsync(_ac0,sUrl,[],_ac1,function(_ac2){_ac0.MarkFinish();var _ac3=new ITHit.WebDAV.Client.AsyncResult(true,true,null);if(_ac2.Error instanceof ITHit.WebDAV.Client.Exceptions.NotFoundException){_ac3=new ITHit.WebDAV.Client.AsyncResult(true,true,null);}else{if(!_ac2.IsSuccess){_ac3=new ITHit.WebDAV.Client.AsyncResult(_ac2.IsSuccess,_ac2.IsSuccess,_ac2.Error);}}_abf(_ac3);});return _ac0;},CheckExistsAsync:function(sUrl,_ac5,_ac6){_ac5=_ac5||function(){};return this.OpenItemAsync(ITHit.WebDAV.Client.Encoder.Encode(sUrl),[],function(_ac7){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(false,true,null);}else{if(!_ac7.IsSuccess){_ac8=new ITHit.WebDAV.Client.AsyncResult(_ac7.IsSuccess,_ac7.IsSuccess,_ac7.Error);}}_ac5.call(_ac6,_ac8);});},DeleteAsync:function(_ac9,_aca,_acb){_aca=_aca||null;var _acc=ITHit.WebDAV.Client.HierarchyItem.GetHost(_ac9);var _acd=this.CreateRequest(this.__className+".DeleteAsync()");ITHit.WebDAV.Client.Methods.Delete.GoAsync(_acd,_ac9,_aca,_acc,function(_ace){if(!_ace.IsSuccess&&_ace.Error instanceof ITHit.WebDAV.Client.Exceptions.NotFoundException){_ace=new ITHit.WebDAV.Client.AsyncResult(true,true,null);}_acd.MarkFinish();_acb(_ace);});return _acd;},CreateFolderRangeAsync:function(_acf,_ad0,_ad1,_ad2){_ad0=_ad0||null;_ad1=_ad1||ITHit.Utils.NoOp;var _ad3=_acf.length;var _ad4=this.CreateRequest(this.__className+".CreateFolderRangeAsync()",_ad3);this._PerformCreateFolderRangeMethodAsync(_ad4,_acf,_ad0,function(_ad5){_ad4.MarkFinish();_ad1.call(_ad2,_ad5);});return _ad4;},_PerformCreateFolderRangeMethodAsync:function(_ad6,_ad7,_ad8,_ad9,_ada){_ad9=_ad9||ITHit.Utils.NoOp;_ad7=_ad7.slice();var _adb=_ad7.unshift();var _adc=ITHit.WebDAV.Client.Encoder.Encode(_adb.GetHref());var _add=ITHit.WebDAV.Client.Encoder.Encode(_adb.GetHost());ITHit.WebDAV.Client.Methods.Mkcol.GoAsync(_ad6,_adc,_ad8,_add,function(_ade){if(_ade.IsSuccess||_ade.Error instanceof ITHit.WebDAV.Client.Exceptions.MethodNotAllowedException){_ade=new ITHit.WebDAV.Client.AsyncResult.CreateSuccessfulResult([_adb]);}if(_ad7.length>0&&_ade.IsSuccess){this._PerformCreateFolderRangeMethodAsync(_ad6,_ad7,_ad8,function(_adf){if(_adf.IsSuccess){_adf.Result.push(_adb);}_ad9.call(_ada,_adf);return;},this);}else{_ad9.call(_ada,_ade);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(_ae2,_ae3,_ae4,_ae5){this._RoundsCount=_ae2;this._Handler=_ae4;this._EndHandler=_ae5;this._IsActive=!!_ae2;this._RepeatTime=_ae3;},Stop:function(_ae6){this._IsActive=false;this._RoundsCount=0;this._EndHandler(_ae6);},_RunRound:function(){if(this._IsActive){this._Handler(this);}else{this.Stop();}},EndRound:function(_ae7){this._RoundsCount--;if(this._RoundsCount===0){this.Stop(_ae7);}else{setTimeout(this._RunRound.bind(this),this._RepeatTime);}}});})();(function(){"use strict";ITHit.DefineClass("ITHit.WebDAV.Client.Upload.Utils.RepeatableAction",null,{_Action:null,constructor:function(_ae8){this._Action=_ae8;},RunAsync:function(_ae9,_aea,_aeb){var _aec=new ITHit.WebDAV.Client.Upload.Utils.RepeatableActionContext(_ae9,_aea,this._Action,_aeb);_aec._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(_aee,_aef,_af0){this.Name=ITHit.WebDAV.Client.Upload.Events.EventName.OnUploadError;this.Error=_aef;this._super(_aee,_af0);},_Retry:function(){this._Handle(self.GetRetryResult(this.Error));},_SkipRetry:function(){this._Handle(self.GetSkipResult(this.Error));}},{GetSkipResult:function(_af1){return {Action:"skip",Error:_af1};},GetRetryResult:function(_af2){return {Action:"retry",Error:_af2};}});})();(function(){ITHit.DefineClass("ITHit.WebDAV.Client.Upload.Events.Error",ITHit.WebDAV.Client.Upload.Events.BaseEvent,{Error:null,constructor:function(_af3,_af4){this.Name=ITHit.WebDAV.Client.Upload.Events.EventName.OnError;this.Error=_af4;this.Sender=_af3;}});})();(function(){"use strict";ITHit.DefineClass("ITHit.WebDAV.Client.Upload.States.BaseState",null,{OnEnter:function(_af5){},OnLeave:function(_af6){},StartUploadAsync:function(_af7,_af8){_af8();},PauseUpload:function(_af9,_afa){_afa();},AbortUpload:function(_afb,_afc,_afd,_afe){_afe();},Skip:function(_aff){},OnUploadLocationPrepared:function(_b00,_b01){},OnUploadProgressPrepared:function(_b02,_b03){},OnContentCompleted:function(_b04,_b05){},OnRetryResult:function(_b06,_b07){},_CompletePauseAsync:function(_b08,_b09,_b0a){if(_b08.IsRetrySchedule){_b08.IsRetrySchedule=false;}_b08.SetState(ITHit.WebDAV.Client.Upload.States.Factory.GetPausedState());_b09.call(_b0a);},_StartPauseAsync:function(_b0b,_b0c){_b0b._ProgressTracker.StopTracking();_b0b.CancelAllRequests(function(){if(_b0b.IsContentSend){_b0b.SyncProgressWithServerAsync(function(_b0d){this._CompletePauseAsync(_b0b,_b0c);},this);return;}this._CompletePauseAsync(_b0b,_b0c);},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(_b0e){_b0e.GetProgressTracker().StopTracking();_b0e.GetProgressTracker().SetCompleted();},StartUploadAsync:function(_b0f,_b10){_b0f.SetState(ITHit.WebDAV.Client.Upload.States.Factory.GetUploadingState());this._super(_b0f,_b10);}});})();(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(_b11,_b12){_b11.SetState(ITHit.WebDAV.Client.Upload.States.Factory.GetUploadingState());this._super(_b11,_b12);}});})();(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(_b13,_b14){_b13.SetState(ITHit.WebDAV.Client.Upload.States.Factory.GetUploadingState());this._super(_b13,_b14);},Skip:function(_b15){_b15.SetState(ITHit.WebDAV.Client.Upload.States.Factory.GetSkippedState());},PauseUpload:function(_b16,_b17){this._StartPauseAsync(_b16,_b17);},AbortUpload:function(_b18,_b19,_b1a,_b1b){_b18.SetState(ITHit.WebDAV.Client.Upload.States.Factory.GetCanceledState());this._super(_b18,_b19,_b1a,_b1b);}});})();(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(_b1c){_b1c.GetProgressTracker().StopTracking();_b1c.GetProgressTracker().Reset();},StartUploadAsync:function(_b1d,_b1e){_b1d.SetState(ITHit.WebDAV.Client.Upload.States.Factory.GetUploadingState());this._super(_b1d,_b1e);}});})();(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(_b1f){_b1f.PrepareUploadLocation();},PauseUpload:function(_b20,_b21){this._StartPauseAsync(_b20,_b21);},AbortUpload:function(_b22,_b23,_b24,_b25){_b22.CancelAllRequests(function(){_b22.GetProgressTracker().StopTracking();_b22.CancelAndDeleteAsync(_b23,_b24,function(_b26){if(_b26.IsSuccess){_b22.GetProgressTracker().Reset();_b22.SetState(ITHit.WebDAV.Client.Upload.States.Factory.GetCanceledState());}else{_b22.AddError(_b26.Error);_b22.SetState(ITHit.WebDAV.Client.Upload.States.Factory.GetFailedState());}_b25();},this);},this);},OnContentCompleted:function(_b27,_b28){var _b29=_b28.Result;if(_b29.IsAborted){return;}if(_b29.IsSuccess){_b27.GetProgressTracker().SetCompleted();_b27.SetState(ITHit.WebDAV.Client.Upload.States.Factory.GetCompletedState());return;}this._HandleError(_b27,_b29);},_HandleError:function(_b2a,_b2b){_b2a.AddError(_b2b.Error);_b2a.BeginRetry(_b2b.Error);},OnRetryResult:function(_b2c,_b2d){if(_b2d.Action==="skip"){_b2c.AddError(_b2d.Error);_b2c.SetState(ITHit.WebDAV.Client.Upload.States.Factory.GetFailedState());return;}if(_b2c.IsContentSend){_b2c.SyncProgressWithServerAsync(function(_b2e){if(_b2e.Error){this._HandleError(_b2d.Error);}else{this.OnEnter(_b2c);}},this);return;}this.OnEnter(_b2c);},OnUploadLocationPrepared:function(_b2f,_b30){if(_b30.IsAborted){return;}if(!_b30.IsSuccess){this._HandleError(_b2f,_b30);return;}_b2f._SendContent();}});})();(function(){"use strict";ITHit.DefineClass("ITHit.WebDAV.Client.Upload.States.ResumeState",ITHit.WebDAV.Client.Upload.States.UploadingState,{OnEnter:function(_b31){if(_b31.IsContentSend){_b31.PrepareProgress();return;}this._super(_b31);},OnUploadProgressPrepared:function(_b32,_b33){if(_b33.IsAborted){return;}if(!_b33.IsSuccess){this._HandleError(_b32,_b33);return;}if(_b32.GetProgressTracker().IsCompleted()){_b32.SetState(ITHit.WebDAV.Client.Upload.States.Factory.GetCompletedState());}_b32._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(_b34){_b34.GetProgressTracker().StopTracking();_b34.GetProgressTracker().ResetSpeed();},StartUploadAsync:function(_b35,_b36){_b35.SetState(ITHit.WebDAV.Client.Upload.States.Factory.GetResumeState());this._super(_b35,_b36);},AbortUpload:function(_b37,_b38,_b39,_b3a){if(_b37.IsContentSend){_b37.CancelAndDeleteAsync(_b38,_b39,function(_b3b){if(_b3b.IsSuccess){_b37.SetState(ITHit.WebDAV.Client.Upload.States.Factory.GetCanceledState());}else{_b37.AddError(_b3b.Error);_b37.SetState(ITHit.WebDAV.Client.Upload.States.Factory.GetFailedState());}_b3a();},this);}else{_b37.SetState(ITHit.WebDAV.Client.Upload.States.Factory.GetCanceledState());_b3a();}}});})();(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(_b3c){_b3c.GetProgressTracker().StopTracking();_b3c.GetProgressTracker().ResetSpeed();},StartUploadAsync:function(_b3d,_b3e){_b3d.SetState(ITHit.WebDAV.Client.Upload.States.Factory.GetUploadingState());this._super(_b3d,_b3e);},AbortUpload:function(_b3f,_b40,_b41,_b42){if(_b3f.IsContentSend){_b3f.CancelAndDeleteAsync(_b40,_b41,function(_b43){if(_b43.IsSuccess){_b3f.SetState(ITHit.WebDAV.Client.Upload.States.Factory.GetCanceledState());}else{_b3f.AddError(_b43.Error);_b3f.SetState(ITHit.WebDAV.Client.Upload.States.Factory.GetFailedState());}_b42();},this);}else{_b3f.SetState(ITHit.WebDAV.Client.Upload.States.Factory.GetCanceledState());_b42();}}});})();(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(_b45){switch(_b45){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(_b46,oUrl){this._Session=_b46;this._Url=oUrl;},GetProgressAsync:function(_b48,_b49){return this._Session.GetProgressReportAsync(this._Url.GetHref(),function(_b4a){if(_b4a.IsSuccess&&_b4a.Result[0]){var _b4b=_b4a.Result[0];_b48.call(_b49,ITHit.WebDAV.Client.AsyncResult.CreateSuccessfulResult(_b4b));return;}_b48.call(_b49,_b4a);},this);},CancelUploadAsync:function(_b4c,_b4d){this._Session.CancelUploadAsync(this._Url.GetHref(),function(_b4e){_b4c.call(_b4d,_b4e);});},DeleteAsync:function(_b4f,_b50,_b51,_b52){var that=this;var _b54=new ITHit.WebDAV.Client.Upload.Utils.RepeatableAction(function(_b55){that._Session.DeleteAsync(that._Url.GetHref(),null,function(_b56){if(_b56.IsSuccess){_b55.Stop(_b56);}else{_b55.EndRound(_b56);}});});_b54.RunAsync(_b4f,_b50,function(_b57){_b51.call(_b52,_b57);});},CancelAndDeleteAsync:function(_b58,_b59,_b5a,_b5b){this.CancelUploadAsync(function(_b5c){if(!_b5c.IsSuccess){return _b5a.call(_b5b,_b5c);}this.DeleteAsync(_b58,_b59,_b5a,_b5b);},this);},_Url:null,_Session:null});})();(function(){"use strict";ITHit.DefineClass("ITHit.WebDAV.Client.Upload.Providers.UploadProvider",null,{Session:null,_UploadItem:null,constructor:function(_b5d,_b5e,_b5f,oUrl,_b61){this.FSEntry=_b5f;this.Url=oUrl;this.Settings=new ITHit.WebDAV.Client.Upload.ItemSettings();if(this.FSEntry.IsFile()){this.Settings.DeleteOnCancel=_b61.DeleteOnCancel;}else{this.Settings.DeleteOnCancel=false;}this.Session=_b5d;this._UploadItem=_b5e;this._ProgressTracker=new ITHit.WebDAV.Client.Upload.Providers.ProgressTracker(this.FSEntry.GetSize());this._State=ITHit.WebDAV.Client.Upload.States.Factory.GetState(_b61.State);this.Errors=[];this.UploadLocation=_b5d.CreateUploadLocation(this.Url);this.ServerItem=new ITHit.WebDAV.Client.Upload.ServerItem(_b5d,this.Url);this.ContentWriter=_b5d.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(_b62){this._BeginStateChange();this._State.StartUploadAsync(this,_b62);},PauseUpload:function(_b63){this._BeginStateChange();this._State.PauseUpload(this,_b63);},AbortUpload:function(_b64,_b65,_b66){this._BeginStateChange();_b66=_b66||function(){};this._State.AbortUpload(this,_b64,_b65,_b66);},Skip:function(){this._BeginStateChange();this._State.Skip(this);},GetGroup:function(){return this._UploadItem.GetGroup();},GetProgressTracker:function(){return this._ProgressTracker;},_ProgressTracker:null,AddListener:function(_b67,_b68,_b69){this._ValidateEventName(_b67);_b69=_b69||null;ITHit.Events.AddListener(this,_b67,_b68,_b69);},RemoveListener:function(_b6a,_b6b,_b6c){this._ValidateEventName(_b6a);_b6c=_b6c||null;ITHit.Events.RemoveListener(this,_b6a,_b6b,_b6c);},_ValidateEventName:function(_b6d){switch(_b6d){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 `"+_b6d+"`");}},CheckRetryAsync:function(_b6e,_b6f,_b70){var _b71=new ITHit.WebDAV.Client.Upload.Events.UploadError(this._UploadItem,_b6e,function(_b72){if(!this.IsRetrySchedule){return;}_b6f.call(_b70,_b72);}.bind(this));if(!this._UploadItem.OnUploadErrorCallback&&(ITHit.Events.ListenersLength(this._UploadItem,_b71.Name)===0)){_b6f.call(_b70,ITHit.WebDAV.Client.Upload.Events.UploadError.GetSkipResult(_b6e));return;}this.IsRetrySchedule=true;if(this._UploadItem.OnUploadErrorCallback){this._UploadItem.OnUploadErrorCallback.call(this,_b71);}ITHit.Events.DispatchEvent(this._UploadItem,_b71.Name,_b71);},Errors:null,LastError:null,AddError:function(_b73){this.AddErrorSilent(_b73);this._RiseOnErrorEvent(_b73);},AddErrorSilent:function(_b74){this.LastError=_b74;this.Errors.push(_b74);},SetFailed:function(_b75){var _b76=ITHit.WebDAV.Client.Upload.States.Factory.GetFailedState();this.AddError(_b75);this.SetState(_b76);},_RiseOnErrorEvent:function(_b77){var _b78=new ITHit.WebDAV.Client.Upload.Events.Error(this,_b77);ITHit.Events.DispatchEvent(this,_b78.Name,_b78);},UploadLocation:null,IsContentSend:false,ServerItem:null,_LoadHandler:function(_b79){if(_b79.Result.Error instanceof ITHit.WebDAV.Client.Exceptions.ConflictException){this.UploadLocation.SetNotExists();this.IsContentSend=false;}this._State.OnContentCompleted(this,_b79);},_StartLoadHandler:function(_b7a){this.IsContentSend=true;},OnRequestProgressEventHandler:function(_b7b){this.GetProgressTracker().UpdateBytes(_b7b.Progress.BytesLoaded,_b7b.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 _b7c=new ITHit.WebDAV.Client.Upload.FileSpan(this.FSEntry.GetFile(),this._ProgressTracker.GetProgress().UploadedBytes);if(_b7c.IsFullFile()&&(this.Settings.ForceRewrite||this.IsContentSend)){this.ContentWriter.BeginRewrite(this.FSEntry);return;}if(_b7c.IsFullFile()&&!(this.Settings.ForceRewrite&&this.IsContentSend)){this.ContentWriter.BeginWrite(this.FSEntry);return;}this.ContentWriter.BeginAppend(_b7c);}},SyncProgressWithServerAsync:function(_b7d,_b7e){if(!this._ProgressTracker.IsCountable()){return this.Session.CheckExistsAsync(this.Url.GetUrl(),function(_b7f){if(!_b7f.IsSuccess){_b7d.call(_b7e,_b7f);return;}if(_b7f.Result===true){this._ProgressTracker.SetCompleted();_b7d.call(_b7e,ITHit.WebDAV.Client.CancellableResult.CreateSuccessfulResult(this._ProgressTracker.GetProgress()));return;}this._ProgressTracker.Reset();_b7d.call(_b7e,ITHit.WebDAV.Client.CancellableResult.CreateSuccessfulResult(this._ProgressTracker.GetProgress()));},this);}return this.ServerItem.GetProgressAsync(function(_b80){if(_b80.IsSuccess){this._ProgressTracker.SyncProgress(_b80.Result);_b7d.call(_b7e,ITHit.WebDAV.Client.CancellableResult.CreateSuccessfulResult(this._ProgressTracker.GetProgress()));return;}if(_b80.Error instanceof ITHit.WebDAV.Client.Exceptions.NotFoundException){this._ProgressTracker.Reset();_b7d.call(_b7e,ITHit.WebDAV.Client.CancellableResult.CreateSuccessfulResult(this._ProgressTracker.GetProgress()));return;}_b7d.call(_b7e,ITHit.WebDAV.Client.CancellableResult.CreateFailedResult(_b80.Error));},this);},IsRetrySchedule:false,PrepareUploadLocation:function(){this.UploadLocation.SetCache(this.GetGroup().PathMap);this.UploadLocation.CreateAsync(this._OnGeneratePathCompleted,this);},_OnGeneratePathCompleted:function(_b81){if(_b81.IsAborted){return;}this._State.OnUploadLocationPrepared(this,_b81);},CancelAllRequests:function(_b82,_b83){this._CancelProgressAsync(function(){this._CancelLocationCreateAsync(function(){this._CancelContentSendingAsync(_b82,_b83);},this);},this);},_CancelLocationCreateAsync:function(_b84,_b85){if(this.UploadLocation.IsInProgress()){this.UploadLocation.AbortRunningCreationAsync(function(){_b84.call(_b85);},this);}else{_b84.call(_b85);}},_CancelContentSendingAsync:function(_b86,_b87){if(this.ContentWriter.IsActive()){this.ContentWriter.AbortAsync(function(){_b86.call(_b87);},this);}else{_b86.call(_b87);}},_CancelProgressAsync:function(_b88,_b89){if(this.IsProgressSyncInProgress){this._SyncProgressRequest.AbortAsync(function(){_b88.call(_b89);},this);}else{_b88.call(_b89);}},_SyncProgressRequest:null,IsProgressSyncInProgress:false,PrepareProgress:function(){this._SyncProgressRequest=this.SyncProgressWithServerAsync(this._OnUpdateFromServerCompleted,this);},_OnUpdateFromServerCompleted:function(_b8a){this.IsProgressSyncInProgress=false;if(_b8a.IsAborted){return;}this._State.OnUploadProgressPrepared(this,_b8a);},_IsStateChanging:function(){return this._IsChanging;},SetState:function(_b8b){var _b8c=this._State;this._State.OnLeave(this);this._State=_b8b;this._State.OnEnter(this);var _b8d=new ITHit.WebDAV.Client.Upload.Events.StateChanged(this,_b8c.GetAsEnum(),this._State.GetAsEnum());ITHit.Events.DispatchEvent(this,_b8d.Name,_b8d);},GetState:function(){return this._State;},_State:null,_IsChanging:false,_BeginStateChange:function(){this._IsChanging=true;},_EndStateChange:function(){this._IsChanging=false;},ContentWriter:null,BeginRetry:function(_b8e){this._ProgressTracker.StopTracking();this.CheckRetryAsync(_b8e,this._OnCheckRetryCompleted,this);},_OnCheckRetryCompleted:function(_b8f){this._State.OnRetryResult(this,_b8f);},Settings:null,FSEntry:null,Url:null,CancelAndDeleteAsync:function(_b90,_b91,_b92,_b93){this.ServerItem.CancelUploadAsync(function(_b94){if(!this.Settings.DeleteOnCancel){_b92.call(_b93,ITHit.WebDAV.Client.AsyncResult.CreateSuccessfulResult(null));return;}this.ServerItem.DeleteAsync(_b90,_b91,function(_b95){if(!_b95.IsSuccess&&!this.Settings.IgnoreCancelErrors){return _b92.call(_b93,_b94);}this.IsContentSend=false;_b92.call(_b93,ITHit.WebDAV.Client.AsyncResult.CreateSuccessfulResult(null));},this);},this);},GetProgress:function(){return this._ProgressTracker.GetProgress();},_SetProgress:function(_b96){var _b97=new ITHit.WebDAV.Client.Upload.Events.ProgressChanged(this,_b96.OldProgress,_b96.NewProgress);ITHit.Events.DispatchEvent(this,_b97.Name,_b97);}});})();(function(){"use strict";ITHit.DefineClass("ITHit.WebDAV.Client.Upload.Events.UploadItemsCreated",ITHit.WebDAV.Client.Upload.Events.AsyncEvent,{Items:[],Skip:function(_b98){if(this._IsHandled){return;}this._Skip(_b98);},SkipAll:function(){if(this._IsHandled){return;}this._Skip(this.Items);},OverwriteAll:function(){if(this._IsHandled){return;}this._Overwrite(this.Items);},Overwrite:function(_b99){if(this._IsHandled){return;}this._Overwrite(_b99);},UploadAll:function(){if(this._IsHandled){return;}this.Upload(this.Items);},Upload:function(_b9a){if(this._IsHandled){return;}this._Handle({Skip:[],Overwrite:[],Original:this.Items,Upload:_b9a});},constructor:function(_b9b,_b9c,_b9d){this.Name=ITHit.WebDAV.Client.Upload.Events.EventName.OnUploadItemsCreated;this.Items=_b9c||[];this._super(_b9b,_b9d);},_Overwrite:function(_b9e){var _b9f=this._CreateResult([],_b9e);this._Handle(_b9f);},_Skip:function(_ba0){var _ba1=this._CreateResult(_ba0,[]);this._Handle(_ba1);},_CreateResult:function(_ba2,_ba3){return {Skip:_ba2||[],Overwrite:_ba3||[],Original:this.Items};},_Handle:function(_ba4){_ba4=_ba4||this._CreateResult();this._super(_ba4);}});})();(function(){"use strict";ITHit.DefineClass("ITHit.WebDAV.Client.Upload.Utils.Array",null,{},{MapParallel:function(_ba5,_ba6,_ba7,_ba8){var _ba9=[];var _baa=0;if(_ba5.length===0){setTimeout(_ba7.apply(_ba8,_ba5));}for(var i=0;i<_ba5.length;i++){_ba6.apply(_ba8,[_ba5[i],i,_ba5,ITHit.Utils.MakeScopeClosure(this,function(i,_bad){_ba9[i]=_bad;_baa++;if(_baa===_ba5.length){setTimeout(_ba7.call(_ba8,_ba9));}},i)]);}},DistinctBy:function(_bae,_baf,_bb0){var map=Object.create(null);_baf=_baf||Object.prototype.toString;for(var i=0;i<_bae.length;i++){var _bb3=_baf.call(_bb0,_bae[i]).toString();if(!map[_bb3]){map[_bb3]=_bae[i];}}return Object.keys(map).map(function(sKey){return map[sKey];});},Take:function(_bb5,_bb6){if(!_bb6){return [_bb5.shift()];}var _bb7=(_bb5.length>_bb6)?_bb6:_bb5.length;var _bb8=[];for(var i=0;i<_bb7;i++){_bb8.push(_bb5.shift());}return _bb8;},Remove:function(_bba,_bbb){var _bbc=_bba.indexOf(_bbb);if(_bbc>-1){_bba.splice(_bbc,1);}}});})();(function(){"use strict";ITHit.DefineClass("ITHit.WebDAV.Client.Upload.AutoUploader",null,{constructor:function(_bbd){this._ParallelUploads=_bbd||0;this._QueueArray=[];this._Active=[];this._Reserve=0;},AddRange:function(_bbe){_bbe.forEach(this._AddToQueue,this);this._StartUploads();},Add:function(_bbf){this._AddToQueue(_bbf);this._StartUploads();},Remove:function(_bc0){_bc0.RemoveListener(ITHit.WebDAV.Client.Upload.Events.EventName.OnStateChanged,this._OnStateChangeEventHandler,this);ITHit.WebDAV.Client.Upload.Utils.Array.Remove(this._QueueArray,_bc0);ITHit.WebDAV.Client.Upload.Utils.Array.Remove(this._Active,_bc0);this._StartUploads();},Reserve:function(_bc1){_bc1=_bc1||1;this._Reserve+=_bc1;},Release:function(_bc2){_bc2=_bc2||1;this._Reserve-=_bc2;this._StartUploads();},GetBusy:function(){return this._Active.length+this._Reserve;},GetFree:function(){var _bc3=this.GetBusy();if(_bc3>=this._ParallelUploads){return 0;}else{if(_bc3===0){return this._ParallelUploads;}else{return (this._ParallelUploads-_bc3)%this._ParallelUploads;}}},_QueueArray:null,_Active:null,_ParallelUploads:0,_OnStateChangeEventHandler:function(_bc4){if(_bc4.NewState!==ITHit.WebDAV.Client.Upload.State.Uploading){this.Remove(_bc4.Sender);}else{this._StartUploads();}},_StartUploads:function(){if(this._QueueArray.length===0){return;}var _bc5=this.GetFree();if(_bc5<=0){return;}var _bc6=ITHit.WebDAV.Client.Upload.Utils.Array.Take(this._QueueArray,_bc5);if(_bc6.length<1){return;}this.Reserve(_bc6.length);_bc6.forEach(this._StartSingle,this);},_StartSingle:function(_bc7){this._Active.push(_bc7);_bc7.StartAsync();this.Release();},_AddToQueue:function(_bc8){this._QueueArray.push(_bc8);_bc8.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(_bc9){this.Uploader=_bc9;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(_bca){var _bcb=this.GetByUrl(_bca.GetUrl());var _bcc=_bcb.GetState();return !(_bcc===ITHit.WebDAV.Client.Upload.State.Uploading||_bcc===ITHit.WebDAV.Client.Upload.State.Paused);},AddGroup:function(sUrl,_bce,_bcf){var _bd0=[];for(var i=0;i<_bce.length;i++){var _bd2=_bce[i];var _bd3=new ITHit.WebDAV.Client.Upload.UploadItem(sUrl,_bd2,_bcf,this._Session,this._GroupManager,this.Uploader.Settings);if(this.HasUrl(_bd3.GetUrl())){if(this.ShouldReplaceDuplicate(_bd3)){this.RemoveByUrl(_bd3.GetUrl());}else{continue;}}_bd0.push(_bd3);}this._DispatchOnUploadItemsCreatedAsync(_bd0,this._OnUploadItemsCreatedAsyncDispatched.bind(this));},Add:function(_bd4){var sUrl=_bd4.GetUrl();if(this.HasUrl(sUrl)){return;}this._UnderlyingArray.push(_bd4);var _bd6=new ITHit.WebDAV.Client.Upload.Events.QueueChanged(this,[_bd4]);ITHit.Events.DispatchEvent(this,_bd6.Name,[_bd6]);this._AutoUploader.Add(_bd4);},AddRange:function(_bd7){for(var i=0;i<_bd7.length;i++){var _bd9=_bd7[i];var sUrl=_bd9.GetUrl();if(this.HasUrl(sUrl)){continue;}this._UnderlyingArray.push(_bd9);}this._GroupManager.CreateGroup(_bd7);this._OnQueueChanged(_bd7,null);var _bdb=_bd7.filter(function(_bdc){return _bdc.GetState()===ITHit.WebDAV.Client.Upload.State.Queued;});this._AutoUploader.AddRange(_bdb);},Restart:function(_bdd){for(var i=0;i<_bdd.length;i++){if(!this.HasUrl(_bdd[i].GetUrl())){throw new ITHit.Exceptions.ArgumentException("Item should be a part of queue`");}}this._AutoUploader.AddRange(_bdd);},GetByUrl:function(sUrl){return ITHit.Utils.FindBy(this._UnderlyingArray,function(_be0){return _be0.GetUrl()===sUrl;});},GetLength:function(){return this._UnderlyingArray.length;},HasUrl:function(sUrl){return !!this.GetByUrl(sUrl);},RemoveByUrl:function(sUrl){var _be3=this.GetByUrl(sUrl);if(!_be3){return;}var _be4=_be3.GetState();if(_be4===ITHit.WebDAV.Client.Upload.State.Uploading||_be4===ITHit.WebDAV.Client.Upload.State.Paused){_be3.Abort();}var _be5=ITHit.Utils.IndexOf(this._UnderlyingArray,_be3);this._UnderlyingArray.splice(_be5,1);this._OnQueueChanged(null,[_be3]);this._AutoUploader.Remove(_be3);},OnUploadItemsCreatedCallback:null,_OnQueueChanged:function(_be6,_be7){var _be8=new ITHit.WebDAV.Client.Upload.Events.QueueChanged(this,_be6,_be7);ITHit.Events.DispatchEvent(this,_be8.Name,[_be8]);},_DispatchOnUploadItemsCreatedAsync:function(_be9,_bea){var _beb=new ITHit.WebDAV.Client.Upload.Events.UploadItemsCreated(this,_be9.slice(),_bea);if(!this.OnUploadItemsCreatedCallback&&(ITHit.Events.ListenersLength(this,_beb.Name)===0)){_beb.OverwriteAll();}if(this.OnUploadItemsCreatedCallback){this.OnUploadItemsCreatedCallback(_beb);}ITHit.Events.DispatchEvent(this,_beb.Name,_beb);},AddListener:function(_bec,_bed,_bee){_bee=_bee||null;switch(_bec){case ITHit.WebDAV.Client.Upload.Events.EventName.OnQueueChanged:case ITHit.WebDAV.Client.Upload.Events.EventName.OnUploadItemsCreated:ITHit.Events.AddListener(this,_bec,_bed,_bee);break;default:throw new ITHit.WebDAV.Client.Exceptions.WebDavException("Not found event name `"+_bec+"`");}},RemoveListener:function(_bef,_bf0,_bf1){ITHit.Events.RemoveListener(this,_bef,_bf0,_bf1);},_OnUploadItemsCreatedAsyncDispatched:function(_bf2){if(_bf2.Upload){this.AddRange(_bf2.Upload);return;}this._OnUploadItemsCreatedAsyncDispatchedDeprecated(_bf2);},_OnUploadItemsCreatedAsyncDispatchedDeprecated:function(_bf3){var _bf4=this._FilterSkippedItems(_bf3);var _bf5=this._CreateUrlUploadItemMap(_bf3.Overwrite);_bf4.forEach(function(_bf6){if(_bf5.Has(_bf6.GetUrl())){_bf6.SetOverwrite(true);}});this.AddRange(_bf4);},_FilterSkippedItems:function(_bf7){var _bf8=this._CreateUrlUploadItemMap(_bf7.Skip);return _bf7.Original.filter(function(_bf9){return !_bf8.Has(_bf9.GetUrl());});},_CreateUrlUploadItemMap:function(_bfa){var oMap=new ITHit.WebDAV.Client.Upload.Collections.Map();_bfa.forEach(function(_bfc){oMap.Set(_bfc.GetUrl(),_bfc);});return oMap;},_GroupManager:null});})();(function(){"use strict";var _bfd=ITHit.DefineClass("ITHit.WebDAV.Client.Upload.DropZoneCollection",null,{_UnderlyingSet:null,Uploader:null,constructor:function(_bfe){this._Uploader=_bfe;this._UnderlyingSet={};},AddById:function(_bff){var _c00=this.GetById(_bff);if(_c00){return _c00;}var _c01=new ITHit.WebDAV.Client.Upload.Controls.DropZone(_bff);this._UnderlyingSet[_bff]=_c01;this._RaiseOnCollectionChanged([_c01],[]);return _c01;},GetById:function(_c02){return this._UnderlyingSet[_c02];},RemoveById:function(_c03){var _c04=this.GetById(_c03);if(_c04){delete this._UnderlyingSet[_c03];this._RaiseOnCollectionChanged([],[_c04]);}},AddListener:function(_c05,_c06,_c07){_c07=_c07||null;this._CheckEventNameOtThrow(_c05);ITHit.Events.AddListener(this,_c05,_c06,_c07);},RemoveListener:function(_c08,_c09,_c0a){_c0a=_c0a||null;this._CheckEventNameOtThrow(_c08);ITHit.Events.RemoveListener(this,_c08,_c09,_c0a);},_CheckEventNameOtThrow:function(_c0b){if(_c0b!==_bfd.EVENT_ON_COLLECTION_CHANGED){throw new ITHit.WebDAV.Client.Exceptions.NotFoundEventNameException(_c0b);}},_RaiseOnCollectionChanged:function(_c0c,_c0d){ITHit.Events.DispatchEvent(this,_bfd.EVENT_ON_COLLECTION_CHANGED,[{Sender:this,AddedItems:_c0c||[],RemovedItems:_c0d||[]}]);}},{EVENT_ON_COLLECTION_CHANGED:"OnCollectionChanged"});})();(function(){var _c0e=ITHit.DefineClass("ITHit.WebDAV.Client.Upload.InputCollection",null,{_UnderlyingArray:null,Uploader:null,constructor:function(_c0f){this._UnderlyingArray=[];this._Uploader=_c0f;},AddById:function(_c10){var _c11=new ITHit.WebDAV.Client.Upload.Controls.Input(_c10);this._UnderlyingArray[_c10]=_c11;this._RaiseOnCollectionChanged([_c11],[]);return _c11;},GetById:function(_c12){return this._UnderlyingArray[_c12];},RemoveById:function(_c13){var _c14=this.GetById(_c13);if(_c14){delete this._UnderlyingArray[_c13];this._RaiseOnCollectionChanged([],[_c14]);}},AddListener:function(_c15,_c16,_c17){_c17=_c17||null;this._CheckEventNameOtThrow(_c15);ITHit.Events.AddListener(this,_c15,_c16,_c17);},RemoveListener:function(_c18,_c19,_c1a){_c1a=_c1a||null;this._CheckEventNameOtThrow(_c18);ITHit.Events.RemoveListener(this,_c18,_c19,_c1a);},_CheckEventNameOtThrow:function(_c1b){if(_c1b!==_c0e.EVENT_ON_COLLECTION_CHANGED){throw new ITHit.WebDAV.Client.Exceptions.NotFoundEventNameException(_c1b);}},_RaiseOnCollectionChanged:function(_c1c,_c1d){ITHit.Events.DispatchEvent(this,_c0e.EVENT_ON_COLLECTION_CHANGED,[{Sender:this,AddedItems:_c1c||[],RemovedItems:_c1d||[]}]);}},{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(_c1f){_c1f.AddedItems.forEach(function(_c20){_c20.AddListener(ITHit.WebDAV.Client.Upload.Controls.HtmlControl.EVENT_ON_FILE_INPUT_HANDLED,this._OnFileInputEventHandler.bind(this));}.bind(this));_c1f.RemovedItems.forEach(function(_c21){_c21.RemoveListener(ITHit.WebDAV.Client.Upload.Controls.HtmlControl.EVENT_ON_FILE_INPUT_HANDLED,this._OnFileInputEventHandler.bind(this));}.bind(this));},_OnFileInputEventHandler:function(_c22){this.Queue.AddGroup(this._UploadUrl,_c22.AsyncResult.Result,_c22.Source);}});})();ITHit.Temp={};