From 2f2c8f8d136e7fcd4b6afe1e451693e4c9099c48 Mon Sep 17 00:00:00 2001 From: Neil Brown Date: Tue, 28 Apr 2026 10:50:34 +0100 Subject: [PATCH 1/2] Fixes a bug in getExtInfoList where functions with overloaded types would all have a name of "" in the returned structure. --- .../tigerpython/utilities/completer/CompleterInfoItem.scala | 4 ++-- .../tigerpython/utilities/completer/DefaultNameFilter.scala | 4 +++- tpParser/shared/src/test/scala/TestCompleter.scala | 3 +++ 3 files changed, 8 insertions(+), 3 deletions(-) diff --git a/tpParser/shared/src/main/scala/tigerpython/utilities/completer/CompleterInfoItem.scala b/tpParser/shared/src/main/scala/tigerpython/utilities/completer/CompleterInfoItem.scala index 03e4f01..65bcb8e 100644 --- a/tpParser/shared/src/main/scala/tigerpython/utilities/completer/CompleterInfoItem.scala +++ b/tpParser/shared/src/main/scala/tigerpython/utilities/completer/CompleterInfoItem.scala @@ -15,6 +15,6 @@ case class CompleterInfoItem(name: String, def this(name: String) = this(name, null, "variable", null, null) - def this(dataType: DataType) = - this(dataType.name, dataType.docString, dataType.getTypeName, dataType.getParams, dataType.getSignature) + def this(dataType: DataType, overrideName: String = null) = + this(if (overrideName != null) overrideName else dataType.name, dataType.docString, dataType.getTypeName, dataType.getParams, dataType.getSignature) } diff --git a/tpParser/shared/src/main/scala/tigerpython/utilities/completer/DefaultNameFilter.scala b/tpParser/shared/src/main/scala/tigerpython/utilities/completer/DefaultNameFilter.scala index 38f94d9..0188f7b 100644 --- a/tpParser/shared/src/main/scala/tigerpython/utilities/completer/DefaultNameFilter.scala +++ b/tpParser/shared/src/main/scala/tigerpython/utilities/completer/DefaultNameFilter.scala @@ -103,7 +103,9 @@ abstract class DefaultNameFilter extends NameFilter { case Some(_: Instance) => new CompleterInfoItem(name) case Some(dt) => - new CompleterInfoItem(dt) + // Overloaded function types end up with an abstract type named so we must + // override the name to avoid ending up with a list of completions named : + new CompleterInfoItem(dt, name) case None => new CompleterInfoItem(name) } diff --git a/tpParser/shared/src/test/scala/TestCompleter.scala b/tpParser/shared/src/test/scala/TestCompleter.scala index 50f5b5a..a33d0ae 100644 --- a/tpParser/shared/src/test/scala/TestCompleter.scala +++ b/tpParser/shared/src/test/scala/TestCompleter.scala @@ -82,6 +82,9 @@ class TestCompleter extends FunSuite { val completer = new Completer(fileName, text, pos) val suggestions = completer.getNameFilter.getNameList("").mkString(";") assert(suggestions == expected_result) + // Should be the same output if we ask for the names from getExtInfoList: + val extSuggestions = completer.getNameFilter.getExtInfoList.map(info => info.name).filter(name => !name.startsWith("_")).mkString(";") + assert(extSuggestions == expected_result) } for (fileName <- listAllFiles("completer_params")) From 28a05bb013615e19fc852040e78967a79c277be6 Mon Sep 17 00:00:00 2001 From: Neil Brown Date: Tue, 28 Apr 2026 10:57:55 +0100 Subject: [PATCH 2/2] Bumped version number and regenerated the JS. --- build.sbt | 2 +- package-lock.json | 2 +- package.json | 2 +- release/tigerpython-parser.js | 1986 ++++++++-------- release/tigerpython-parser.mjs | 3930 ++++++++++++++++---------------- 5 files changed, 2964 insertions(+), 2958 deletions(-) diff --git a/build.sbt b/build.sbt index 486ef73..b51272c 100644 --- a/build.sbt +++ b/build.sbt @@ -1,7 +1,7 @@ import sbtcrossproject.CrossPlugin.autoImport.{crossProject, CrossType} val useScalaVersion = "2.13.14" -val releaseVersion = "1.1.3" +val releaseVersion = "1.1.4" val sharedSettings = Seq( scalaVersion := useScalaVersion, diff --git a/package-lock.json b/package-lock.json index fb882c6..1536828 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "tigerpython-parser", - "version": "1.1.3", + "version": "1.1.4", "lockfileVersion": 1 } diff --git a/package.json b/package.json index 443d739..3fe0be7 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "tigerpython-parser", - "version": "1.1.3", + "version": "1.1.4", "description": "Enhanced error recognition in Python ", "main": "release/tigerpython-parser.mjs", "types": "tpParser/js/types/index.d.ts", diff --git a/release/tigerpython-parser.js b/release/tigerpython-parser.js index 88075aa..8fae371 100644 --- a/release/tigerpython-parser.js +++ b/release/tigerpython-parser.js @@ -6,24 +6,24 @@ function Aa(a){switch(typeof a){case "string":return"java.lang.String";case "num function Ba(a,b){return"string"===typeof a?a.charCodeAt(b):a.mA(b)}function Da(a,b){switch(typeof a){case "string":return Ga(a,b);case "number":return La(Ma(),a,b);case "boolean":return a===b?0:a?1:-1;default:return a instanceof n?Na(Pa(),a.l,a.m,b.l,b.m):a instanceof da?Ra(a)-Ra(b)|0:a.WD(b)}} function Ua(a,b){switch(typeof a){case "string":return a===b;case "number":return Object.is(a,b);case "boolean":return a===b;case "undefined":return a===b;default:return a&&a.$classData||null===a?a=a.b(b):a instanceof n?b instanceof n?(b=Va(b),a=a.l===b.l&&a.m===b.m):a=!1:a=a instanceof da?b instanceof da&&Ra(a)===Ra(b):Xa.prototype.b.call(a,b),a}} function Za(a){switch(typeof a){case "string":return $a(a);case "number":return bb(a);case "boolean":return a?1231:1237;case "undefined":return 0;default:return a&&a.$classData||null===a?a.s():a instanceof n?a.l^a.m:a instanceof da?Ra(a):Xa.prototype.s.call(a)}}function cb(a){return"string"===typeof a?a.length:a.i()}function eb(a,b,c){return"string"===typeof a?a.substring(b,c):a.AQ(b,c)}function kb(a){return void 0===a?"undefined":a.toString()} -function lb(a,b){if(0===b)throw new ob("/ by zero");return a/b|0}function qb(a,b){if(0===b)throw new ob("/ by zero");return a%b|0}function rb(a){return 2147483647a?-2147483648:a|0}function tb(a){return String.fromCharCode(a)}function ub(a,b,c,d,e){if(a!==c||d>=BigInt(32);return b;case "boolean":return a?1231:1237;case "undefined":return 0;case "symbol":return a=a.description,void 0===a?0:$a(a);default:if(null===a)return 0;b=zb.get(a);void 0===b&&(xb=b=xb+1|0,zb.set(a,b));return b}}function ka(a){return"number"===typeof a&&(a|0)===a&&1/a!==1/-0} -function qa(a){return"number"===typeof a&&(a!==a||Math.fround(a)===a)}function p(a){return new da(a)}function Ra(a){return null===a?0:a.qO}function Va(a){return null===a?ba:a}function Db(){return new Xa}function Xa(){}Xa.prototype.constructor=Xa;function q(){}q.prototype=Xa.prototype;Xa.prototype.s=function(){return Bb(this)};Xa.prototype.b=function(a){return this===a};Xa.prototype.j=function(){var a=this.s();return Aa(this)+"@"+(+(a>>>0)).toString(16)};Xa.prototype.toString=function(){return this.j()}; -function Jb(a){if("number"===typeof a){this.a=Array(a);for(var b=0;ba?-2147483648:a|0}function tb(a){return String.fromCharCode(a)}function ub(a,b,c,d,e){if(a!==c||d>=BigInt(32);return b;case "boolean":return a?1231:1237;case "undefined":return 0;case "symbol":return a=a.description,void 0===a?0:$a(a);default:if(null===a)return 0;b=yb.get(a);void 0===b&&(wb=b=wb+1|0,yb.set(a,b));return b}}function ka(a){return"number"===typeof a&&(a|0)===a&&1/a!==1/-0} +function qa(a){return"number"===typeof a&&(a!==a||Math.fround(a)===a)}function p(a){return new da(a)}function Ra(a){return null===a?0:a.qO}function Va(a){return null===a?ba:a}function Cb(){return new Xa}function Xa(){}Xa.prototype.constructor=Xa;function q(){}q.prototype=Xa.prototype;Xa.prototype.s=function(){return Ab(this)};Xa.prototype.b=function(a){return this===a};Xa.prototype.j=function(){var a=this.s();return Aa(this)+"@"+(+(a>>>0)).toString(16)};Xa.prototype.toString=function(){return this.j()}; +function Ib(a){if("number"===typeof a){this.a=Array(a);for(var b=0;bh===f;f.name=c;f.isPrimitive=!0;f.isInstance=()=>!1;void 0!==d&&(f.eA=Pb(f,d,e));return f} +function Nb(){this.c=void 0;this.Tv=this.nA=this.Yb=null;this.Uv=0;this.No=null;this.ft="";this.Mo=this.qt=this.eA=this.YH=void 0;this.name="";this.isArrayClass=this.isInterface=this.isPrimitive=!1;this.isInstance=void 0}function Ob(a,b,c,d,e){var f=new Nb;f.Yb={};f.No=a;f.ft=b;f.qt=h=>h===f;f.name=c;f.isPrimitive=!0;f.isInstance=()=>!1;void 0!==d&&(f.eA=Pb(f,d,e));return f} function E(a,b,c,d){var e=new Nb,f=Object.getOwnPropertyNames(c)[0];e.Yb=c;e.ft="L"+b+";";e.qt=h=>!!h.Yb[f];e.name=b;e.isInterface=1===a;e.isInstance=d||(h=>!!(h&&h.$classData&&h.$classData.Yb[f]));"number"!==typeof a&&(a.prototype.$classData=e);return e} -function Pb(a,b,c,d){var e=new Nb;b.prototype.$classData=e;var f="["+a.ft;e.c=b;e.Yb={ve:1,g:1};e.nA=a;e.Sv=a;e.Tv=1;e.ft=f;e.name=f;e.isArrayClass=!0;e.qt=d||(h=>e===h);e.Mo=c?h=>new b(new c(h)):h=>new b(h);e.isInstance=h=>h instanceof b;return e} -function Tb(a){function b(k){if("number"===typeof k){this.a=Array(k);for(var m=0;m{var m=k.Tv;return m===e?d.qt(k.Sv):m>e&&d===yc};c.qt=h;c.Mo=k=>new b(k); -c.isInstance=k=>{k=k&&k.$classData;return!!k&&(k===c||h(k))};return c}function F(a){a.eA||(a.eA=Tb(a));return a.eA}function ja(a){a.YH||(a.YH=new zc(a));return a.YH}Nb.prototype.isAssignableFrom=function(a){return this===a||this.qt(a)};Nb.prototype.checkCast=function(){};Nb.prototype.getSuperclass=function(){return this.TR?ja(this.TR):null};Nb.prototype.getComponentType=function(){return this.nA?ja(this.nA):null}; -Nb.prototype.newArrayOfThisClass=function(a){for(var b=this,c=0;c!a.isPrimitive;yc.name="java.lang.Object";yc.isInstance=a=>null!==a;yc.eA=Pb(yc,Jb,void 0,a=>{var b=a.Tv;return 1===b?!a.Sv.isPrimitive:1e===h);e.Mo=c?h=>new b(new c(h)):h=>new b(h);e.isInstance=h=>h instanceof b;return e} +function Tb(a){function b(k){if("number"===typeof k){this.a=Array(k);for(var m=0;m{var m=k.Uv;return m===e?d.qt(k.Tv):m>e&&d===zc};c.qt=h;c.Mo=k=>new b(k); +c.isInstance=k=>{k=k&&k.$classData;return!!k&&(k===c||h(k))};return c}function F(a){a.eA||(a.eA=Tb(a));return a.eA}function ja(a){a.YH||(a.YH=new Ac(a));return a.YH}Nb.prototype.isAssignableFrom=function(a){return this===a||this.qt(a)};Nb.prototype.checkCast=function(){};Nb.prototype.getSuperclass=function(){return this.TR?ja(this.TR):null};Nb.prototype.getComponentType=function(){return this.nA?ja(this.nA):null}; +Nb.prototype.newArrayOfThisClass=function(a){for(var b=this,c=0;c!a.isPrimitive;zc.name="java.lang.Object";zc.isInstance=a=>null!==a;zc.eA=Pb(zc,Ib,void 0,a=>{var b=a.Uv;return 1===b?!a.Tv.isPrimitive:1>24&&0===(1&a.ck)<<24>>24){for(var b={O:"java_lang_Object",T:"java_lang_String"},c=0;22>=c;)2<=c&&(b["T"+c]="scala_Tuple"+c),b["F"+c]="scala_Function"+c,c=1+c|0;a.NO=b;a.ck=(1|a.ck)<<24>>24}return a.NO} function Ed(a){0===(2&a.ck)<<24>>24&&0===(2&a.ck)<<24>>24&&(a.OO={sjsr_:"scala_scalajs_runtime_",sjs_:"scala_scalajs_",sci_:"scala_collection_immutable_",scm_:"scala_collection_mutable_",scg_:"scala_collection_generic_",sc_:"scala_collection_",sr_:"scala_runtime_",s_:"scala_",jl_:"java_lang_",ju_:"java_util_"},a.ck=(2|a.ck)<<24>>24);return a.OO}function Cd(a){0===(4&a.ck)<<24>>24&&0===(4&a.ck)<<24>>24&&(a.MO=Object.keys(Ed(a)),a.ck=(4|a.ck)<<24>>24);return a.MO} function Fd(a){return(a.stack+"\n").replace(Gd("^[\\s\\S]+?\\s+at\\s+")," at ").replace(Hd("^\\s+(at eval )?at\\s+","gm"),"").replace(Hd("^([^\\(]+?)([\\n])","gm"),"{anonymous}() ($1)$2").replace(Hd("^Object.\x3canonymous\x3e\\s*\\(([^\\)]+)\\)","gm"),"{anonymous}() ($1)").replace(Hd("^([^\\(]+|\\{anonymous\\}\\(\\)) \\((.+)\\)$","gm"),"$1@$2").split("\n").slice(0,-1)} @@ -36,9 +36,9 @@ u=Gd("^new (?:Object\\.|\\[object Object\\]\\.|Module\\.)?\\$c_([^\\.]+)$"),z=Gd (z=z.exec(k),k=null!==z?[wd(h,z[1]),"\x3cclinit\x3e"]:["\x3cjscode\x3e",k]));h=k[0];k=k[1];z=f[2];u=parseInt(f[3]);f=f[4];f=void 0!==f?parseInt(f)|0:-1;c.push(new Md(h,k,z,u|0,f))}else c.push(new Md("\x3cjscode\x3e",h,null,-1,-1))|0;b=1+b|0}a=c.length|0;d=new (F(Nd).c)(a);for(b=0;bvoid 0===a);function Zd(){}Zd.prototype=new q;Zd.prototype.constructor=Zd;function be(a,b,c){return b.Xd.newArrayOfThisClass([c])} -function ce(a,b){if(b instanceof Jb)a=b.a.length;else if(b instanceof t)a=b.a.length;else if(b instanceof v)a=b.a.length;else if(b instanceof w)a=b.a.length;else if(b instanceof x)a=b.a.length;else if(b instanceof y)a=b.a.length;else if(b instanceof A)a=b.a.length;else if(b instanceof B)a=b.a.length;else if(b instanceof C)a=b.a.length;else throw de("argument type mismatch");return a}E(Zd,"java.lang.reflect.Array$",{C_:1});var ee;function fe(){ee||(ee=new Zd);return ee}function ie(){} +"\n";this.vI=a;this.PO=null}Qd.prototype=new q;Qd.prototype.constructor=Qd;function Sd(a,b,c){return null!==a.vI?(a=a.vI,Ad().fw.call(a,b)?a[b]:c):Sd(a.PO,b,c)}E(Qd,"java.lang.System$SystemProperties$",{y_:1});var Rd;function Td(){Rd||(Rd=new Qd);return Rd}function Ud(){this.fw=null;Xd=this;this.fw=Object.prototype.hasOwnProperty}Ud.prototype=new q;Ud.prototype.constructor=Ud;E(Ud,"java.lang.Utils$Cache$",{A_:1});var Xd;function Ad(){Xd||(Xd=new Ud);return Xd} +function Yd(a){return!!(a&&a.$classData&&1===a.$classData.Uv&&a.$classData.Tv.Yb.tR)}var wa=E(0,"java.lang.Void",{tR:1},a=>void 0===a);function Zd(){}Zd.prototype=new q;Zd.prototype.constructor=Zd;function be(a,b,c){return b.Xd.newArrayOfThisClass([c])} +function ce(a,b){if(b instanceof Ib)a=b.a.length;else if(b instanceof t)a=b.a.length;else if(b instanceof v)a=b.a.length;else if(b instanceof w)a=b.a.length;else if(b instanceof x)a=b.a.length;else if(b instanceof y)a=b.a.length;else if(b instanceof A)a=b.a.length;else if(b instanceof B)a=b.a.length;else if(b instanceof C)a=b.a.length;else throw de("argument type mismatch");return a}E(Zd,"java.lang.reflect.Array$",{C_:1});var ee;function fe(){ee||(ee=new Zd);return ee}function ie(){} ie.prototype=new q;ie.prototype.constructor=ie;function je(a,b,c){a=c>>>5|0;var d=31&c;c=(b.eb+a|0)+(0===d?0:1)|0;ke();if(0>c||67108864<=c)throw new ob("BigInteger would overflow supported range");var e=new y(c),f=b.Ua;if(0===d)f.da(0,e,a,e.a.length-a|0);else{var h=32-d|0;e.a[-1+e.a.length|0]=0;for(var k=-1+e.a.length|0;k>a;){var m=k;e.a[m]=e.a[m]|f.a[-1+(k-a|0)|0]>>>h|0;e.a[-1+k|0]=f.a[-1+(k-a|0)|0]<>>5|0;var d=31&c;if(a>=b.eb)return 0>b.ob?ke().kF:ke().xr;c=b.eb-a|0;for(var e=new y(1+c|0),f=c,h=b.Ua,k=0;k>>d|0|h.a[1+(k+a|0)|0]<>>d|0}if(0>b.ob){for(f=0;fd&&(d=b,b=-d|0,h=0!==d?~h:-h|0);0>a&&(a=c,d=e,c=-a|0,e=0!==a?~d:-d|0);a=ke();d=b;b=h;h=e;c=d-c|0;return Fe(a,new n(c,(-2147483648^c)>(-2147483648^d)?-1+(b-h|0)|0:b-h|0))}h=e!==f?e>f?1:-1:Ge(Ie(),b.Ua,c.Ua,e);if(d===a&&0===h)return ke().xr;-1===h?(h=-a|0,a=d===a?Be(c.Ua,f,b.Ua,e):Ae(c.Ua,f,b.Ua,e)):d===a?(h=d,a=Be(b.Ua,e,c.Ua, f)):(h=d,a=Ae(b.Ua,e,c.Ua,f));a=le(h|0,a.a.length,a);me(a);return a}E(Ce,"java.math.Elementary$",{rT:1});var Ke;function Ie(){Ke||(Ke=new Ce);return Ke}function Le(a,b,c,d){for(var e,f=e=0;f>>16|0;var r=65535&d,u=d>>>16|0,z=Math.imul(m,r);r=Math.imul(k,r);var I=Math.imul(m,u);m=z+((r+I|0)<<16)|0;z=(z>>>16|0)+I|0;k=(Math.imul(k,u)+(z>>>16|0)|0)+(((65535&z)+r|0)>>>16|0)|0;e=m+e|0;k=(-2147483648^e)<(-2147483648^m)?1+k|0:k;a.a[h]=e;e=k;f=1+f|0}return e} function Ne(a,b){for(var c=new y(a),d=c.a[0]=1;dc;){var d=c;if(18>=d){Me().Tw.a[d]=Fe(ke(),new n(b,a));var e=Me().rB,f=ke(),h=a,k=b;e.a[d]=Fe(f,new n(0===(32&d)?k<>>1|0)>>>(31-d|0)|0|h<>>16|0;b=Math.imul(5,65535&b);e=Math.imul(5,d);d=b+(e<<16)|0;a=Math.imul(5,a)+(((b>>>16|0)+e|0)>>>16|0)|0;b=d}else Me().Tw.a[d]=Ve(Me().Tw.a[-1+d|0],Me().Tw.a[1]),Me().rB.a[d]=Ve(Me().rB.a[-1+ +function Se(){this.Uw=this.rB=null;Te=this;Ne(10,10);Ne(14,5);this.rB=new (F(Ue).c)(32);this.Uw=new (F(Ue).c)(32);var a;var b=1;for(var c=a=0;32>c;){var d=c;if(18>=d){Me().Uw.a[d]=Fe(ke(),new n(b,a));var e=Me().rB,f=ke(),h=a,k=b;e.a[d]=Fe(f,new n(0===(32&d)?k<>>1|0)>>>(31-d|0)|0|h<>>16|0;b=Math.imul(5,65535&b);e=Math.imul(5,d);d=b+(e<<16)|0;a=Math.imul(5,a)+(((b>>>16|0)+e|0)>>>16|0)|0;b=d}else Me().Uw.a[d]=Ve(Me().Uw.a[-1+d|0],Me().Uw.a[1]),Me().rB.a[d]=Ve(Me().rB.a[-1+ d|0],ke().wr);c=1+c|0}}Se.prototype=new q;Se.prototype.constructor=Se; function We(a,b,c){for(var d,e=0;e>>16|0;var D=65535&u;u=u>>>16|0;var S=Math.imul(I,D);D=Math.imul(r,D);var O=Math.imul(I,u);I=S+((D+O|0)<<16)|0;S=(S>>>16|0)+O|0;r=(Math.imul(r,u)+(S>>>16|0)|0)+(((65535&S)+D|0)>>>16|0)|0;z=I+z|0;r=(-2147483648^z)<(-2147483648^I)?1+r|0:r;d=z+d|0;z=(-2147483648^d)<(-2147483648^z)?1+r|0:r;c.a[f+m|0]=d;d=z;k=1+k|0}c.a[f+b|0]=d;e=1+e|0}re();e=b<<1;for(h= f=0;h>>31|0,h=1+h|0;0!==f&&(c.a[e]=f);for(f=e=d=0;e>>16|0,u=65535&r,d=r>>>16|0,r=Math.imul(z,u),u=Math.imul(m,u),I=Math.imul(z,d),z=r+((u+I|0)<<16)|0,r=(r>>>16|0)+I|0,m=(Math.imul(m,d)+(r>>>16|0)|0)+(((65535&r)+u|0)>>>16|0)|0,k=z+k|0,m=(-2147483648^k)<(-2147483648^z)?1+m|0:m,h=k+h|0,k=(-2147483648^h)<(-2147483648^k)?1+m|0:m,c.a[f]=h,f=1+f|0,h=k+c.a[f]|0,k=(-2147483648^h)<(-2147483648^k)?1:0,c.a[f]=h,d=k,e=1+e|0,f= @@ -83,18 +83,18 @@ function Ag(a,b,c){var d=a.df,e=d.length,f=a.x,h=f===e?46:d.charCodeAt(f);if(63= function Bg(a,b,c,d){for(var e=a.ek.length|0,f=0;fb&&(a.ek[h]=1+k|0);f=1+f|0}c=c.replace(xg().eP,(m,r,u)=>{0!==(r.length%2|0)&&(u=parseInt(u,10)|0,m=u>b?""+r+(1+u|0):m);return m});a.dk=1+a.dk|0;return"(?:(?\x3d("+c+d+"))\\"+(1+b|0)+")"} function Cg(a){var b=a.df,c=b.length;(1+a.x|0)===c&&lg(a,"\\ at end of pattern");a.x=1+a.x|0;var d=b.charCodeAt(a.x);switch(d){case 100:case 68:case 104:case 72:case 115:case 83:case 118:case 86:case 119:case 87:case 112:case 80:switch(a=Lg(a,d),b=a.zI,b){case 0:return"\\p{"+a.io+"}";case 1:return"\\P{"+a.io+"}";case 2:return"["+a.io+"]";case 3:return Mg(xg(),a.io);default:throw new ig(b);}case 98:if("b{g}"===b.substring(a.x,4+a.x|0))lg(a,"\\b{g} is not supported");else if(0!==(320&a.uc))Ng(a,"\\b with UNICODE_CASE"); else return a.x=1+a.x|0,"\\b";break;case 66:if(0!==(320&a.uc))Ng(a,"\\B with UNICODE_CASE");else return a.x=1+a.x|0,"\\B";break;case 65:return a.x=1+a.x|0,"^";case 71:lg(a,"\\G in the middle of a pattern is not supported");break;case 90:return a.x=1+a.x|0,"(?\x3d"+(0!==(1&a.uc)?"\n":"(?:\r\n?|[\n\u0085\u2028\u2029])")+"?$)";case 122:return a.x=1+a.x|0,"$";case 82:return a.x=1+a.x|0,"(?:\r\n|[\n-\r\u0085\u2028\u2029])";case 88:lg(a,"\\X is not supported");break;case 49:case 50:case 51:case 52:case 53:case 54:case 55:case 56:case 57:var e= -a.x;for(d=1+e|0;;){if(d!==c){var f=b.charCodeAt(d);f=48<=f&&57>=f}else f=!1;f?(f=b.substring(e,1+d|0),f=(parseInt(f,10)|0)<=(-1+(a.ek.length|0)|0)):f=!1;if(f)d=1+d|0;else break}b=b.substring(e,d);b=parseInt(b,10)|0;b>(-1+(a.ek.length|0)|0)&&lg(a,"numbered capturing group \x3c"+b+"\x3e does not exist");b=a.ek[b]|0;a.x=d;return"(?:\\"+b+")";case 107:return a.x=1+a.x|0,a.x!==c&&60===b.charCodeAt(a.x)||lg(a,"\\k is not followed by '\x3c' for named capturing group"),a.x=1+a.x|0,b=Og(a),d=a.eE,Ad().ew.call(d, +a.x;for(d=1+e|0;;){if(d!==c){var f=b.charCodeAt(d);f=48<=f&&57>=f}else f=!1;f?(f=b.substring(e,1+d|0),f=(parseInt(f,10)|0)<=(-1+(a.ek.length|0)|0)):f=!1;if(f)d=1+d|0;else break}b=b.substring(e,d);b=parseInt(b,10)|0;b>(-1+(a.ek.length|0)|0)&&lg(a,"numbered capturing group \x3c"+b+"\x3e does not exist");b=a.ek[b]|0;a.x=d;return"(?:\\"+b+")";case 107:return a.x=1+a.x|0,a.x!==c&&60===b.charCodeAt(a.x)||lg(a,"\\k is not followed by '\x3c' for named capturing group"),a.x=1+a.x|0,b=Og(a),d=a.eE,Ad().fw.call(d, b)||lg(a,"named capturing group \x3c"+b+"\x3e does not exit"),b=a.ek[d[b]|0]|0,a.x=1+a.x|0,"(?:\\"+b+")";case 81:d=1+a.x|0;c=b.indexOf("\\E",d)|0;if(0>c)return a.x=b.length,ng(a,b.substring(d));a.x=2+c|0;return ng(a,b.substring(d,c));default:return vg(a,Pg(a))}} function Pg(a){var b=a.df,c=ug(b,a.x);switch(c){case 48:return Qg(a);case 120:return b=a.df,c=1+a.x|0,c!==b.length&&123===b.charCodeAt(c)?(c=1+c|0,b=b.indexOf("}",c)|0,0>b&&lg(a,"Unclosed hexadecimal escape sequence"),c=Rg(a,c,b,"hexadecimal"),a.x=1+b|0,a=c):(b=Rg(a,c,2+c|0,"hexadecimal"),a.x=2+c|0,a=b),a;case 117:a:{b=a.df;var d=1+a.x|0;c=4+d|0;d=Rg(a,d,c,"Unicode");a.x=c;var e=2+c|0,f=4+e|0;if(55296===(-1024&d)&&"\\u"===b.substring(c,e)&&(b=Rg(a,e,f,"Unicode"),56320===(-1024&b))){a.x=f;a=(64+(1023& d)|0)<<10|1023&b;break a}a=d}return a;case 78:lg(a,"\\N is not supported");break;case 97:return a.x=1+a.x|0,7;case 116:return a.x=1+a.x|0,9;case 110:return a.x=1+a.x|0,10;case 102:return a.x=1+a.x|0,12;case 114:return a.x=1+a.x|0,13;case 101:return a.x=1+a.x|0,27;case 99:return a.x=1+a.x|0,a.x===b.length&&lg(a,"Illegal control escape sequence"),b=ug(b,a.x),a.x=a.x+(65536<=b?2:1)|0,64^b;default:return(65<=c&&90>=c||97<=c&&122>=c)&&lg(a,"Illegal/unsupported escape sequence"),a.x=a.x+(65536<=c?2:1)| 0,c}}function Qg(a){var b=a.df,c=b.length,d=a.x,e=(1+d|0)e||7f||7b||7f)&&lg(a,"Illegal "+d+" escape sequence");for(f=b;f=h||65<=h&&70>=h||97<=h&&102>=h||lg(a,"Illegal "+d+" escape sequence");f=1+f|0}6<(c-b|0)?b=1114112:(b=e.substring(b,c),b=parseInt(b,16)|0);1114111e&&lg(a,"Unclosed character family");a.x=e;c=c.substring(d,e)}else c=c.substring(d,1+d|0);d=xg().CI;Ad().ew.call(d,c)||Ng(a,"Unicode character family");c=2!==(66&a.uc)||"Lower"!== +function Lg(a,b){a.x=1+a.x|0;switch(b){case 100:case 68:a=xg().ZO;break;case 104:case 72:a=xg().bP;break;case 115:case 83:a=xg().$O;break;case 118:case 86:a=xg().cP;break;case 119:case 87:a=xg().aP;break;case 112:case 80:var c=a.df,d=a.x;if(d===c.length)c="?";else if(123===c.charCodeAt(d)){d=1+d|0;var e=c.indexOf("}",d)|0;0>e&&lg(a,"Unclosed character family");a.x=e;c=c.substring(d,e)}else c=c.substring(d,1+d|0);d=xg().CI;Ad().fw.call(d,c)||Ng(a,"Unicode character family");c=2!==(66&a.uc)||"Lower"!== c&&"Upper"!==c?c:"Alpha";c=xg().CI[c];a.x=1+a.x|0;a=c;break;default:throw new ig(p(b));}97<=b?b=a:a.yI?b=a.AI:(b=a,b.yI||(b.AI=new Sg(1^b.zI,b.io),b.yI=!0),b=b.AI);return b} -var Yg=function Tg(a){var c=a.df,d=c.length;a.x=1+a.x|0;var e=a.x!==d&&94===c.charCodeAt(a.x);e&&(a.x=1+a.x|0);for(e=new Ug(2===(66&a.uc),e);a.x!==d;){var f=ug(c,a.x);a:{switch(f){case 93:return a.x=1+a.x|0,a=e,c=Vg(a),""===a.dE?c:"(?:"+a.dE+c+")";case 38:a.x=1+a.x|0;if(a.x!==d&&38===c.charCodeAt(a.x)){a.x=1+a.x|0;f=e;var h=Vg(f);f.dE+=f.YO?h+"|":"(?\x3d"+h+")";f.Yi="";f.od=""}else Wg(a,38,d,c,e);break a;case 91:f=Tg(a);e.Yi=""===e.Yi?f:e.Yi+"|"+f;break a;case 92:a.x=1+a.x|0;a.x===d&&lg(a,"Illegal escape sequence"); -h=c.charCodeAt(a.x);switch(h){case 100:case 68:case 104:case 72:case 115:case 83:case 118:case 86:case 119:case 87:case 112:case 80:f=e;h=Lg(a,h);var k=h.zI;switch(k){case 0:f.od=f.od+("\\p{"+h.io)+"}";break;case 1:f.od=f.od+("\\P{"+h.io)+"}";break;case 2:f.od=""+f.od+h.io;break;case 3:h=Mg(xg(),h.io);f.Yi=""===f.Yi?h:f.Yi+"|"+h;break;default:throw new ig(k);}break;case 81:a.x=1+a.x|0;f=c.indexOf("\\E",a.x)|0;0>f&&lg(a,"Unclosed character class");h=e;k=c;for(var m=f,r=a.x;r!==m;){var u=ug(k,r);Xg(h, +var Yg=function Tg(a){var c=a.df,d=c.length;a.x=1+a.x|0;var e=a.x!==d&&94===c.charCodeAt(a.x);e&&(a.x=1+a.x|0);for(e=new Ug(2===(66&a.uc),e);a.x!==d;){var f=ug(c,a.x);a:{switch(f){case 93:return a.x=1+a.x|0,a=e,c=Vg(a),""===a.dE?c:"(?:"+a.dE+c+")";case 38:a.x=1+a.x|0;if(a.x!==d&&38===c.charCodeAt(a.x)){a.x=1+a.x|0;f=e;var h=Vg(f);f.dE+=f.YO?h+"|":"(?\x3d"+h+")";f.Xi="";f.od=""}else Wg(a,38,d,c,e);break a;case 91:f=Tg(a);e.Xi=""===e.Xi?f:e.Xi+"|"+f;break a;case 92:a.x=1+a.x|0;a.x===d&&lg(a,"Illegal escape sequence"); +h=c.charCodeAt(a.x);switch(h){case 100:case 68:case 104:case 72:case 115:case 83:case 118:case 86:case 119:case 87:case 112:case 80:f=e;h=Lg(a,h);var k=h.zI;switch(k){case 0:f.od=f.od+("\\p{"+h.io)+"}";break;case 1:f.od=f.od+("\\P{"+h.io)+"}";break;case 2:f.od=""+f.od+h.io;break;case 3:h=Mg(xg(),h.io);f.Xi=""===f.Xi?h:f.Xi+"|"+h;break;default:throw new ig(k);}break;case 81:a.x=1+a.x|0;f=c.indexOf("\\E",a.x)|0;0>f&&lg(a,"Unclosed character class");h=e;k=c;for(var m=f,r=a.x;r!==m;){var u=ug(k,r);Xg(h, u);r=r+(65536<=u?2:1)|0}a.x=2+f|0;break;default:Wg(a,Pg(a),d,c,e)}break a;case 32:case 9:case 10:case 11:case 12:case 13:if(0!==(4&a.uc))a.x=1+a.x|0;else break;break a;case 35:if(0!==(4&a.uc)){zg(a);break a}}a.x=a.x+(65536<=f?2:1)|0;Wg(a,f,d,c,e)}}lg(a,"Unclosed character class")}; -function ah(a){var b=a.df,c=b.length,d=a.x;if((1+d|0)===c||63!==b.charCodeAt(1+d|0))return a.x=1+d|0,a.dk=1+a.dk|0,a.ek.push(a.dk),"("+bh(a,!0)+")";(2+d|0)===c&&lg(a,"Unclosed group");var e=b.charCodeAt(2+d|0);if(58===e||61===e||33===e)return a.x=3+d|0,""+b.substring(d,3+d|0)+bh(a,!0)+")";if(60===e){(3+d|0)===c&&lg(a,"Unclosed group");b=b.charCodeAt(3+d|0);if(65<=b&&90>=b||97<=b&&122>=b)return a.x=3+d|0,d=Og(a),b=a.eE,Ad().ew.call(b,d)&&lg(a,"named capturing group \x3c"+d+"\x3e is already defined"), +function ah(a){var b=a.df,c=b.length,d=a.x;if((1+d|0)===c||63!==b.charCodeAt(1+d|0))return a.x=1+d|0,a.dk=1+a.dk|0,a.ek.push(a.dk),"("+bh(a,!0)+")";(2+d|0)===c&&lg(a,"Unclosed group");var e=b.charCodeAt(2+d|0);if(58===e||61===e||33===e)return a.x=3+d|0,""+b.substring(d,3+d|0)+bh(a,!0)+")";if(60===e){(3+d|0)===c&&lg(a,"Unclosed group");b=b.charCodeAt(3+d|0);if(65<=b&&90>=b||97<=b&&122>=b)return a.x=3+d|0,d=Og(a),b=a.eE,Ad().fw.call(b,d)&&lg(a,"named capturing group \x3c"+d+"\x3e is already defined"), a.dk=1+a.dk|0,a.ek.push(a.dk),a.eE[d]=-1+(a.ek.length|0)|0,a.x=1+a.x|0,"("+bh(a,!0)+")";61!==b&&33!==b&&lg(a,"Unknown look-behind group");Ng(a,"Look-behind group")}else{if(62===e)return a.x=3+d|0,a.dk=1+a.dk|0,d=a.dk,"(?:(?\x3d("+bh(a,!0)+"))\\"+d+")";lg(a,"Embedded flag expression in the middle of a pattern is not supported")}} function Og(a){for(var b=a.df,c=b.length,d=a.x;;){if(a.x!==c){var e=b.charCodeAt(a.x);e=65<=e&&90>=e||97<=e&&122>=e||48<=e&&57>=e}else e=!1;if(e)a.x=1+a.x|0;else break}a.x!==c&&62===b.charCodeAt(a.x)||lg(a,"named capturing group is missing trailing '\x3e'");return b.substring(d,a.x)} function Wg(a,b,c,d,e){0!==(4&a.uc)&&yg(a);a.x!==c&&45===d.charCodeAt(a.x)?(a.x=1+a.x|0,0!==(4&a.uc)&&yg(a),a.x===c&&lg(a,"Unclosed character class"),c=ug(d,a.x),91===c||93===c?(Xg(e,b),Xg(e,45)):(a.x=a.x+(65536<=c?2:1)|0,c=92===c?Pg(a):c,cc?c:90,a<=d&&(d=32+d|0,e.od+=ch(32+a|0)+"-"+ch(d)),b=97c?c:122,b<=c&&(c=-32+c|0,e.od+=ch(-32+b|0)+"-"+ch(c))))):Xg(e,b)} @@ -105,7 +105,7 @@ function zg(a){for(var b=a.df,c=b.length;;){if(a.x!==c){var d=b.charCodeAt(a.x); function fh(){this.eP=this.dP=null;this.BI=!1;this.CI=this.aP=this.cP=this.$O=this.bP=this.ZO=null;gh=this;this.dP=RegExp("^\\(\\?([idmsuxU]*)(?:-([idmsuxU]*))?\\)");this.eP=RegExp("(\\\\+)(\\d+)","g");this.BI=eh("us");eh("d");this.ZO=new Sg(2,"0-9");this.bP=new Sg(2,"\t \u00a0\u1680\u180e\u2000-\u200a\u202f\u205f\u3000");this.$O=new Sg(2,"\t-\r ");this.cP=new Sg(2,"\n-\r\u0085\u2028\u2029");this.aP=new Sg(2,"a-zA-Z_0-9");var a={};a.Lower=new Sg(2,"a-z");a.Upper=new Sg(2,"A-Z");a.ASCII=new Sg(2,"\x00-\u007f"); a.Alpha=new Sg(2,"A-Za-z");a.Digit=new Sg(2,"0-9");a.Alnum=new Sg(2,"0-9A-Za-z");a.Punct=new Sg(2,"!-/:-@[-`{-~");a.Graph=new Sg(2,"!-~");a.Print=new Sg(2," -~");a.Blank=new Sg(2,"\t ");a.Cntrl=new Sg(2,"\x00-\u001f\u007f");a.XDigit=new Sg(2,"0-9A-Fa-f");a.Space=new Sg(2,"\t-\r ");this.CI=a}fh.prototype=new q;fh.prototype.constructor=fh; function hh(a,b){switch(b){case 105:return 2;case 100:return 1;case 109:return 8;case 115:return 32;case 117:return 64;case 120:return 4;case 85:return 256;default:throw de("bad in-pattern flag");}}function Mg(a,b){return""!==b?"[^"+b+"]":xg().BI?".":"[\\d\\D]"}function wg(a,b){return String.fromCodePoint(b)}E(fh,"java.util.regex.PatternCompiler$",{j0:1});var gh;function xg(){gh||(gh=new fh);return gh} -function Vg(a){if(a.YO){var b=Mg(xg(),a.od);return""===a.Yi?b:"(?:(?!"+a.Yi+")"+b+")"}return""===a.od?""===a.Yi?"[^\\d\\D]":"(?:"+a.Yi+")":""===a.Yi?"["+a.od+"]":"(?:"+a.Yi+"|["+a.od+"])"}function ch(a){var b=wg(xg(),a);return 93===a||92===a||45===a||94===a?"\\"+b:b}function Ug(a,b){this.XO=a;this.YO=b;this.od=this.Yi=this.dE=""}Ug.prototype=new q;Ug.prototype.constructor=Ug; +function Vg(a){if(a.YO){var b=Mg(xg(),a.od);return""===a.Xi?b:"(?:(?!"+a.Xi+")"+b+")"}return""===a.od?""===a.Xi?"[^\\d\\D]":"(?:"+a.Xi+")":""===a.Xi?"["+a.od+"]":"(?:"+a.Xi+"|["+a.od+"])"}function ch(a){var b=wg(xg(),a);return 93===a||92===a||45===a||94===a?"\\"+b:b}function Ug(a,b){this.XO=a;this.YO=b;this.od=this.Xi=this.dE=""}Ug.prototype=new q;Ug.prototype.constructor=Ug; function Xg(a,b){var c=ch(b);a.od=56320===(-1024&b)?""+c+a.od:""+a.od+c;a.XO&&(65<=b&&90>=b?a.od=""+a.od+wg(xg(),32+b|0):97<=b&&122>=b&&(a.od=""+a.od+wg(xg(),-32+b|0)))}E(Ug,"java.util.regex.PatternCompiler$CharacterClassBuilder",{k0:1});function Sg(a,b){this.AI=null;this.yI=!1;this.zI=a;this.io=b}Sg.prototype=new q;Sg.prototype.constructor=Sg;E(Sg,"java.util.regex.PatternCompiler$CompiledCharClass",{l0:1});function n(a,b){this.l=a;this.m=b}n.prototype=new q;n.prototype.constructor=n; n.prototype.b=function(a){return a instanceof n?this.l===a.l&&this.m===a.m:!1};n.prototype.s=function(){return this.l^this.m};n.prototype.j=function(){return ih(Pa(),this.l,this.m)};n.prototype.WD=function(a){return Na(Pa(),this.l,this.m,a.l,a.m)};E(n,"org.scalajs.linker.runtime.RuntimeLong",{KZ:1});function jh(a,b,c){return 0===(-2097152&c)?""+(4294967296*c+ +(b>>>0)):kh(a,b,c,1E9,0,2)} function lh(a,b,c,d,e){return 0===(-2097152&c)?0===(-2097152&e)?(c=(4294967296*c+ +(b>>>0))/(4294967296*e+ +(d>>>0)),a.Gb=c/4294967296|0,c|0):a.Gb=0:0===e&&0===(d&(-1+d|0))?(d=31-(Math.clz32(d)|0)|0,a.Gb=c>>>d|0,b>>>d|0|c<<1<<(31-d|0)):0===d&&0===(e&(-1+e|0))?(b=31-(Math.clz32(e)|0)|0,a.Gb=0,c>>>b|0):kh(a,b,c,d,e,0)|0} @@ -115,63 +115,63 @@ function ih(a,b,c){return c===b>>31?""+b:0>c?"-"+jh(a,-b|0,0!==b?~c:-c|0):jh(a,b function oh(a,b,c,d,e){if(0===(d|e))throw new ob("/ by zero");if(c===b>>31){if(e===d>>31){if(-2147483648===b&&-1===d)return a.Gb=0,-2147483648;c=lb(b,d);a.Gb=c>>31;return c}return-2147483648===b&&-2147483648===d&&0===e?a.Gb=-1:a.Gb=0}if(0>c){var f=-b|0;b=0!==b?~c:-c|0}else f=b,b=c;if(0>e){var h=-d|0;d=0!==d?~e:-e|0}else h=d,d=e;f=lh(a,f,b,h,d);if(0<=(c^e))return f;c=a.Gb;a.Gb=0!==f?~c:-c|0;return-f|0} function we(a,b,c,d,e){if(0===(d|e))throw new ob("/ by zero");return 0===c?0===e?(a.Gb=0,0===d?lb(0,0):+(b>>>0)/+(d>>>0)|0):a.Gb=0:lh(a,b,c,d,e)} function ph(a,b,c,d,e){if(0===(d|e))throw new ob("/ by zero");if(c===b>>31){if(e===d>>31)return-1!==d?(c=qb(b,d),a.Gb=c>>31,c):a.Gb=0;if(-2147483648===b&&-2147483648===d&&0===e)return a.Gb=0;a.Gb=c;return b}if(0>c)var f=-b|0,h=0!==b?~c:-c|0;else f=b,h=c;0>e?(b=-d|0,d=0!==d?~e:-e|0):(b=d,d=e);0===(-2097152&h)?0===(-2097152&d)?(b=(4294967296*h+ +(f>>>0))%(4294967296*d+ +(b>>>0)),a.Gb=b/4294967296|0,b|=0):(a.Gb=h,b=f):0===d&&0===(b&(-1+b|0))?(a.Gb=0,b=f&(-1+b|0)):0===b&&0===(d&(-1+d|0))?(a.Gb=h&(-1+ -d|0),b=f):b=kh(a,f,h,b,d,1)|0;return 0>c?(c=a.Gb,a.Gb=0!==b?~c:-c|0,-b|0):b}E(mh,"org.scalajs.linker.runtime.RuntimeLong$",{LZ:1});var qh;function Pa(){qh||(qh=new mh);return qh}function rh(){this.GI=this.OA=null;sh=this;this.OA=new y(0);this.GI=new Jb(0)}rh.prototype=new q;rh.prototype.constructor=rh;E(rh,"scala.Array$EmptyArrays$",{o0:1});var sh;function th(){sh||(sh=new rh);return sh}function uh(){}uh.prototype=new q;uh.prototype.constructor=uh;uh.prototype.ef=function(a,b){return Ch().ef(a,b)}; +d|0),b=f):b=kh(a,f,h,b,d,1)|0;return 0>c?(c=a.Gb,a.Gb=0!==b?~c:-c|0,-b|0):b}E(mh,"org.scalajs.linker.runtime.RuntimeLong$",{LZ:1});var qh;function Pa(){qh||(qh=new mh);return qh}function rh(){this.GI=this.OA=null;sh=this;this.OA=new y(0);this.GI=new Ib(0)}rh.prototype=new q;rh.prototype.constructor=rh;E(rh,"scala.Array$EmptyArrays$",{o0:1});var sh;function th(){sh||(sh=new rh);return sh}function uh(){}uh.prototype=new q;uh.prototype.constructor=uh;uh.prototype.ef=function(a,b){return Ch().ef(a,b)}; E(uh,"scala.Array$UnapplySeqWrapper$",{p0:1});var Dh;function Eh(){Dh||(Dh=new uh);return Dh}function Fh(){}Fh.prototype=new q;Fh.prototype.constructor=Fh;function Gh(){}Gh.prototype=Fh.prototype;function Hh(){this.KI=null;Ih=this;this.KI=new Jh}Hh.prototype=new q;Hh.prototype.constructor=Hh;E(Hh,"scala.PartialFunction$",{A0:1});var Ih;function Kh(){Ih||(Ih=new Hh);return Ih}function Lh(){this.SI=null;Mh=this;this.SI=new Nh(()=>Ch().SI)}Lh.prototype=new q;Lh.prototype.constructor=Lh; function Oh(a,b){if(0!==ce(fe(),b))return Ph(Qh(),b,0);throw new Rh("head of empty array");}function Sh(a,b){if(0!==ce(fe(),b))return Ph(Qh(),b,-1+ce(fe(),b)|0);throw new Rh("last of empty array");}Lh.prototype.ef=function(a,b){a=ce(fe(),a);return a===b?0:aa){if(b instanceof Jb)return Yf($f(),b,a,d);if(b instanceof y){$f();if(a>d)throw de(a+" \x3e "+d);d=d-a|0;c=b.a.length-a|0;c=dd)throw de(a+" \x3e "+d);d=d-a|0;c=b.a.length-a|0;c=dd)throw de(a+" \x3e "+d);d=d-a|0;c=b.a.length-a|0;c=d +function Th(a,b,c,d){a=0a){if(b instanceof Ib)return Yf($f(),b,a,d);if(b instanceof y){$f();if(a>d)throw de(a+" \x3e "+d);d=d-a|0;c=b.a.length-a|0;c=dd)throw de(a+" \x3e "+d);d=d-a|0;c=b.a.length-a|0;c=dd)throw de(a+" \x3e "+d);d=d-a|0;c=b.a.length-a|0;c=d d)throw de(a+" \x3e "+d);d=d-a|0;c=b.a.length-a|0;c=dd)throw de(a+" \x3e "+d);d=d-a|0;c=b.a.length-a|0;c=dd)throw de(a+" \x3e "+d);d=d-a|0;c=b.a.length-a|0;c=dd)throw de(a+" \x3e "+d);d=d-a|0;c=b.a.length-a|0;c=dd)throw de(a+ " \x3e "+d);d=d-a|0;c=b.a.length-a|0;c=d=a)return ti(Qh(),b);if(b instanceof Jb)return a=Of($f(),b,a),wf($f(),a,c),a;if(b instanceof y){if(c===ui())return c=Tf($f(),b,a),bf($f(),c),c}else if(b instanceof A){if(c===vi())return c=Uf($f(),b,a),hf($f(),c),c}else if(b instanceof v){if(c===wi())return c=Wf($f(),b,a),sf($f(),c),c}else if(b instanceof w){if(c===xi())return c=Rf($f(),b,a),uf($f(),c),c}else if(b instanceof x){if(c===yi())return c=Sf($f(),b,a),mf($f(),c),c}else if(b instanceof t&&c===zi()){c=Xf($f(), -b,a);a=Ai();var d=zi();Bi(a,c,c.a.length,d);return c}300>a?(a=ti(Qh(),b),Bi(Ai(),a,ce(fe(),a),c),c=a):(Ci(),Di(ja(yc),zf(ia(b)))?d=Ei(ja(yc))?Fi(0,b,a):Qf($f(),b,a,ja(F(yc))):(d=new Jb(a),Mi(Ci(),b,0,d,0,ce(fe(),b))),wf($f(),d,c),Ci(),c=Uh(Vh(),zf(ia(b))),b=c.pd(),null!==b&&b===ja(Ac)?c=Ni(a):Di(b,zf(ia(d)))?Ei(b)?c=Fi(0,d,a):(c=ia(be(fe(),b,0)),c=Qf($f(),d,a,c)):(c=c.Je(a),Mi(Ci(),d,0,c,0,ce(fe(),d))));return c}function Oi(a,b){return si(Ch(),a,new Pi(b))} +function $h(a,b){if(b instanceof Ib)return ai(new bi,b);if(b instanceof y)return new ci(b);if(b instanceof C)return new di(b);if(b instanceof A)return new ei(b);if(b instanceof B)return new li(b);if(b instanceof v)return new mi(b);if(b instanceof w)return new ni(b);if(b instanceof x)return new oi(b);if(b instanceof t)return new pi(b);if(Yd(b))return new qi(b);if(null===b)throw ri();throw new G(b);} +function si(a,b,c){a=ce(fe(),b);if(1>=a)return ti(Qh(),b);if(b instanceof Ib)return a=Of($f(),b,a),wf($f(),a,c),a;if(b instanceof y){if(c===ui())return c=Tf($f(),b,a),bf($f(),c),c}else if(b instanceof A){if(c===vi())return c=Uf($f(),b,a),hf($f(),c),c}else if(b instanceof v){if(c===wi())return c=Wf($f(),b,a),sf($f(),c),c}else if(b instanceof w){if(c===xi())return c=Rf($f(),b,a),uf($f(),c),c}else if(b instanceof x){if(c===yi())return c=Sf($f(),b,a),mf($f(),c),c}else if(b instanceof t&&c===zi()){c=Xf($f(), +b,a);a=Ai();var d=zi();Bi(a,c,c.a.length,d);return c}300>a?(a=ti(Qh(),b),Bi(Ai(),a,ce(fe(),a),c),c=a):(Ci(),Di(ja(zc),zf(ia(b)))?d=Ei(ja(zc))?Fi(0,b,a):Qf($f(),b,a,ja(F(zc))):(d=new Ib(a),Mi(Ci(),b,0,d,0,ce(fe(),b))),wf($f(),d,c),Ci(),c=Uh(Vh(),zf(ia(b))),b=c.pd(),null!==b&&b===ja(Bc)?c=Ni(a):Di(b,zf(ia(d)))?Ei(b)?c=Fi(0,d,a):(c=ia(be(fe(),b,0)),c=Qf($f(),d,a,c)):(c=c.Je(a),Mi(Ci(),d,0,c,0,ce(fe(),d))));return c}function Oi(a,b){return si(Ch(),a,new Pi(b))} function Qi(a,b,c){for(a=0;ab))} -function bj(a,b,c){var d=Uh(Vh(),zf(ia(b))).pd(),e=d===ja(Mc);a=[];for(b=new cj($h(Ch(),b),c);b.d();)c=b.e(),a.push(e?Ra(c):null===c?d.Xd.No:c);return F((d===ja(Ac)?ja(wa):d===ja(dj)||d===ja(ej)?ja(yc):d).Xd).Mo(a)}function fj(a,b){return new gj(0,ce(fe(),b),1)}function hj(a,b){return ij(jj(),Fi(Ci(),b,ce(fe(),b)))}E(Lh,"scala.collection.ArrayOps$",{N1:1});var Mh;function Ch(){Mh||(Mh=new Lh);return Mh}function kj(a,b){this.kw=a;this.ik=b}kj.prototype=new q;kj.prototype.constructor=kj; -kj.prototype.Ha=function(a){for(var b=ce(fe(),this.ik),c=0;c=e&&(0!==d.l||0!==d.m)&&(e=1+c|0);var f=new A(e);Mi(Ci(),b,0,f,0,a);if(c>>31|0|h<<1,f<<=1,k=1+k|0;return new n(a,d)}E(lj,"scala.collection.BitSetOps$",{Y1:1});var pj;function qj(){pj||(pj=new lj);return pj} function rj(){}rj.prototype=new q;rj.prototype.constructor=rj;function sj(a,b){a=b+~(b<<9)|0;a^=a>>>14|0;a=a+(a<<4)|0;return a^(a>>>10|0)}E(rj,"scala.collection.Hashing$",{b2:1});var tj;function uj(){tj||(tj=new rj);return tj}function vj(a,b){for(a=a.k();a.d();)b.y(a.e())}function wj(a,b){var c=!0;for(a=a.k();c&&a.d();)c=!!b.y(a.e());return c}function xj(a,b){var c=!1;for(a=a.k();!c&&a.d();)c=!!b.y(a.e());return c} function yj(a,b){if(zj(a)&&0b.dg(e,f)))}}function Dj(a,b){switch(a.U()){case -1:a=a.k();if(a.d()){for(var c=a.e();a.d();){var d=a.e();c=b.cg(c,d)}return c}throw Xh("empty.max");case 0:throw Xh("empty.max");default:return a.Oh(new Cj((e,f)=>b.cg(e,f)))}}function Gj(a,b,c,d){return 0===a.U()?""+b+d:a.Eg(Hj(),b,c,d).wc.P} -function Ij(a,b,c,d,e){var f=b.wc;0!==c.length&&(f.P=""+f.P+c);a=a.k();if(a.d())for(c=a.e(),f.P=""+f.P+c;a.d();)f.P=""+f.P+d,c=a.e(),f.P=""+f.P+c;0!==e.length&&(f.P=""+f.P+e);return b}function Jj(a,b){if(0<=a.U())return b=b.Je(a.U()),a.ma(b,0,2147483647),b;var c=b.pd(),d=c===ja(Mc);b=[];for(a=a.k();a.d();){var e=a.e();b.push(d?Ra(e):null===e?c.Xd.No:e)}return F((c===ja(Ac)?ja(wa):c===ja(dj)||c===ja(ej)?ja(yc):c).Xd).Mo(b)}function Kj(a,b){this.qS=a;this.AE=b}Kj.prototype=new q; +function Ij(a,b,c,d,e){var f=b.wc;0!==c.length&&(f.P=""+f.P+c);a=a.k();if(a.d())for(c=a.e(),f.P=""+f.P+c;a.d();)f.P=""+f.P+d,c=a.e(),f.P=""+f.P+c;0!==e.length&&(f.P=""+f.P+e);return b}function Jj(a,b){if(0<=a.U())return b=b.Je(a.U()),a.ma(b,0,2147483647),b;var c=b.pd(),d=c===ja(Oc);b=[];for(a=a.k();a.d();){var e=a.e();b.push(d?Ra(e):null===e?c.Xd.No:e)}return F((c===ja(Bc)?ja(wa):c===ja(dj)||c===ja(ej)?ja(zc):c).Xd).Mo(b)}function Kj(a,b){this.qS=a;this.AE=b}Kj.prototype=new q; Kj.prototype.constructor=Kj;E(Kj,"scala.collection.Iterator$ConcatIteratorCell",{r2:1});function Lj(){Mj=this}Lj.prototype=new q;Lj.prototype.constructor=Lj;function Nj(a,b,c){return 0<=Oj(b,c)}function Pj(a,b,c,d){a=0=d?"":b.substring(a,d)}function Qj(a,b,c){if(0>=c)return"";a=Rj(new Sj,Math.imul(b.length,c));for(var d=0;d=c||65<=c&&90>=c||48<=c&&57>=c?""+tb(c):"\\"+tb(c);return Uj(b,a)} function Vj(a,b,c){return Wj(Xj(),b,c.hb(new Nh(d=>{L();return d})).tf(Yj()))}function Zj(a,b,c){L();a=b.length;return Pj(0,b,0,cb)throw ok(a,b);if(b>(-1+a.a.length|0))throw ok(a,b);var c=new y(-1+a.a.length|0);a.da(0,c,0,b);a.da(1+b|0,c,b,-1+(a.a.length-b|0)|0);return c}function yk(a,b,c){if(0>b)throw ok(a,b);if(b>a.a.length)throw ok(a,b);var d=new y(1+a.a.length|0);a.da(0,d,0,b);d.a[b]=c;a.da(b,d,1+b|0,a.a.length-b|0);return d}var zk=E(0,"scala.collection.immutable.Node",{UE:1});function Ak(){this.gB=0;Bk=this;this.gB=rb(+Math.ceil(6.4))}Ak.prototype=new q; -Ak.prototype.constructor=Ak;function Ck(a,b,c){return 31&(b>>>c|0)}function Dk(a,b){return 1<>>c|0)}function Dk(a,b){return 1<>>h|0;h=e>>>h|0;d&=-1+m|0;e&=-1+m|0;if(0===d)if(0===e)e=c,Nk(a,b,0===k&&h===e.a.length?e:Yf($f(),e,k,h));else{h>k&&(d=c,Nk(a,b,0===k&&h===d.a.length?d:Yf($f(),d,k,h)));h=c.a[h];b=-1+b|0;c=h;d=0;continue}else if(h===k){h=c.a[k];b=-1+b|0;c=h;continue}else if(Mk(a,-1+b|0,c.a[k],d,m),0===e)h>(1+k|0)&&(e=c,k=1+k|0,Nk(a,b,0===k&&h===e.a.length?e:Yf($f(), e,k,h)));else{h>(1+k|0)&&(d=c,k=1+k|0,Nk(a,b,0===k&&h===d.a.length?d:Yf($f(),d,k,h)));h=c.a[h];b=-1+b|0;c=h;d=0;continue}}break}};function Nk(a,b,c){b<=a.Zh?b=11-b|0:(a.Zh=b,b=-1+b|0);a.Na.a[b]=c} var Qk=function Pk(a,b){if(null===a.Na.a[-1+b|0])if(b===a.Zh)a.Na.a[-1+b|0]=a.Na.a[11-b|0],a.Na.a[11-b|0]=null;else{Pk(a,1+b|0);var d=a.Na.a[-1+(1+b|0)|0];a.Na.a[-1+b|0]=d.a[0];1===d.a.length?(a.Na.a[-1+(1+b|0)|0]=null,a.Zh===(1+b|0)&&null===a.Na.a[11-(1+b|0)|0]&&(a.Zh=b)):a.Na.a[-1+(1+b|0)|0]=Yf($f(),d,1,d.a.length)}},Sk=function Rk(a,b){if(null===a.Na.a[11-b|0])if(b===a.Zh)a.Na.a[11-b|0]=a.Na.a[-1+b|0],a.Na.a[-1+b|0]=null;else{Rk(a,1+b|0);var d=a.Na.a[11-(1+b|0)|0];a.Na.a[11-b|0]=d.a[-1+d.a.length| -0];1===d.a.length?(a.Na.a[11-(1+b|0)|0]=null,a.Zh===(1+b|0)&&null===a.Na.a[-1+(1+b|0)|0]&&(a.Zh=b)):a.Na.a[11-(1+b|0)|0]=Yf($f(),d,0,-1+d.a.length|0)}};function Tk(a,b){this.Na=null;this.Zh=this.Mw=this.tl=0;this.fQ=a;this.eQ=b;this.Na=new (F(F(yc)).c)(11);this.Zh=this.Mw=this.tl=0}Tk.prototype=new q;Tk.prototype.constructor=Tk; -function Uk(a,b,c){var d=Math.imul(c.a.length,1<e&&(Ok(a,b,c,e,f),a.tl=a.tl+(f-e|0)|0);a.Mw=a.Mw+d|0} +0];1===d.a.length?(a.Na.a[11-(1+b|0)|0]=null,a.Zh===(1+b|0)&&null===a.Na.a[-1+(1+b|0)|0]&&(a.Zh=b)):a.Na.a[11-(1+b|0)|0]=Yf($f(),d,0,-1+d.a.length|0)}};function Tk(a,b){this.Na=null;this.Zh=this.Nw=this.tl=0;this.fQ=a;this.eQ=b;this.Na=new (F(F(zc)).c)(11);this.Zh=this.Nw=this.tl=0}Tk.prototype=new q;Tk.prototype.constructor=Tk; +function Uk(a,b,c){var d=Math.imul(c.a.length,1<e&&(Ok(a,b,c,e,f),a.tl=a.tl+(f-e|0)|0);a.Nw=a.Nw+d|0} Tk.prototype.kl=function(){if(32>=this.tl){if(0===this.tl)return Vk();var a=this.Na.a[0],b=this.Na.a[10];if(null!==a)if(null!==b){var c=Of($f(),a,a.a.length+b.a.length|0);b.da(0,c,a.a.length,b.a.length);var d=c}else d=a;else if(null!==b)d=b;else{var e=this.Na.a[1];d=null!==e?e.a[0]:this.Na.a[9].a[0]}return new Wk(d)}Qk(this,1);Sk(this,1);var f=this.Zh;if(6>f){var h=this.Na.a[-1+this.Zh|0],k=this.Na.a[11-this.Zh|0];if(null!==h&&null!==k)if(30>=(h.a.length+k.a.length|0)){var m=this.Na,r=this.Zh,u=Of($f(), h,h.a.length+k.a.length|0);k.da(0,u,h.a.length,k.a.length);m.a[-1+r|0]=u;this.Na.a[11-this.Zh|0]=null}else f=1+f|0;else 30<(null!==h?h:k).a.length&&(f=1+f|0)}var z=this.Na.a[0],I=this.Na.a[10],D=z.a.length,S=f;switch(S){case 2:var O=Xk().Qd,K=this.Na.a[1];if(null!==K)var oa=K;else{var ca=this.Na.a[9];oa=null!==ca?ca:O}return new Yk(z,D,oa,I,this.tl);case 3:var ta=Xk().Qd,sa=this.Na.a[1],Ea=null!==sa?sa:ta,ab=Xk().Ug,Ta=this.Na.a[2];if(null!==Ta)var db=Ta;else{var fb=this.Na.a[8];db=null!==fb?fb:ab}var ya= -db,Ka=Xk().Qd,Sa=this.Na.a[9];return new Zk(z,D,Ea,D+(Ea.a.length<<5)|0,ya,null!==Sa?Sa:Ka,I,this.tl);case 4:var Ca=Xk().Qd,Fa=this.Na.a[1],Hb=null!==Fa?Fa:Ca,Ib=Xk().Ug,hc=this.Na.a[2],Qb=null!==hc?hc:Ib,Wa=Xk().ul,Ha=this.Na.a[3];if(null!==Ha)var Ia=Ha;else{var ma=this.Na.a[7];Ia=null!==ma?ma:Wa}var pb=Ia,Qa=Xk().Ug,Bc=this.Na.a[8],Jc=null!==Bc?Bc:Qa,rc=Xk().Qd,nc=this.Na.a[9],Rc=D+(Hb.a.length<<5)|0;return new $k(z,D,Hb,Rc,Qb,Rc+(Qb.a.length<<10)|0,pb,Jc,null!==nc?nc:rc,I,this.tl);case 5:var sc= -Xk().Qd,ic=this.Na.a[1],mb=null!==ic?ic:sc,Zb=Xk().Ug,Ub=this.Na.a[2],gb=null!==Ub?Ub:Zb,tc=Xk().ul,$b=this.Na.a[3],Eb=null!==$b?$b:tc,ac=Xk().Nw,jc=this.Na.a[4];if(null!==jc)var oc=jc;else{var pc=this.Na.a[6];oc=null!==pc?pc:ac}var nb=oc,bc=Xk().ul,Fb=this.Na.a[7],Oa=null!==Fb?Fb:bc,Ec=Xk().Ug,kc=this.Na.a[8],Xc=null!==kc?kc:Ec,Vb=Xk().Qd,Fc=this.Na.a[9],uc=D+(mb.a.length<<5)|0,lc=uc+(gb.a.length<<10)|0;return new al(z,D,mb,uc,gb,lc,Eb,lc+(Eb.a.length<<15)|0,nb,Oa,Xc,null!==Fc?Fc:Vb,I,this.tl);case 6:var cc= -Xk().Qd,Ab=this.Na.a[1],yb=null!==Ab?Ab:cc,Lb=Xk().Ug,mc=this.Na.a[2],hb=null!==mc?mc:Lb,ib=Xk().ul,dc=this.Na.a[3],vb=null!==dc?dc:ib,Wb=Xk().Nw,vc=this.Na.a[4],Mb=null!==vc?vc:Wb,ec=Xk().AJ,wc=this.Na.a[5];if(null!==wc)var Gb=wc;else{var Gc=this.Na.a[5];Gb=null!==Gc?Gc:ec}var fc=Gb,Rb=Xk().Nw,Cc=this.Na.a[6],Xb=null!==Cc?Cc:Rb,gc=Xk().ul,wb=this.Na.a[7],Yc=null!==wb?wb:gc,Kc=Xk().Ug,qc=this.Na.a[8],Ya=null!==qc?qc:Kc,Sc=Xk().Qd,jb=this.Na.a[9],Lc=D+(yb.a.length<<5)|0,Tc=Lc+(hb.a.length<<10)|0,Hc= -Tc+(vb.a.length<<15)|0;return new bl(z,D,yb,Lc,hb,Tc,vb,Hc,Mb,Hc+(Mb.a.length<<20)|0,fc,Xb,Yc,Ya,null!==jb?jb:Sc,I,this.tl);default:throw new G(S);}};Tk.prototype.j=function(){return"VectorSliceBuilder(lo\x3d"+this.fQ+", hi\x3d"+this.eQ+", len\x3d"+this.tl+", pos\x3d"+this.Mw+", maxDim\x3d"+this.Zh+")"};E(Tk,"scala.collection.immutable.VectorSliceBuilder",{E4:1}); -function cl(){this.AJ=this.Nw=this.ul=this.Ug=this.Qd=this.zJ=null;dl=this;this.zJ=new Jb(0);this.Qd=new (F(F(yc)).c)(0);this.Ug=new (F(F(F(yc))).c)(0);this.ul=new (F(F(F(F(yc)))).c)(0);this.Nw=new (F(F(F(F(F(yc))))).c)(0);this.AJ=new (F(F(F(F(F(F(yc)))))).c)(0)}cl.prototype=new q;cl.prototype.constructor=cl;function el(a,b,c){a=b.a.length;var d=new Jb(1+a|0);b.da(0,d,0,a);d.a[a]=c;return d}function fl(a,b,c){a=Of($f(),b,1+b.a.length|0);a.a[-1+a.a.length|0]=c;return a} -function gl(a,b,c){a=be(fe(),zf(ia(c)),1+c.a.length|0);c.da(0,a,1,c.a.length);a.a[0]=b;return a}function hl(a,b,c,d){var e=0,f=c.a.length;if(0===b)for(;ec)return null;a=a.Xc}}kl.prototype.Ha=function(a){for(var b=this;;)if(a.y(H(new J,b.pj,b.Cc)),null!==b.Xc)b=b.Xc;else break};kl.prototype.Zj=function(a){for(var b=this;;)if(a.Yf(b.pj,b.Cc),null!==b.Xc)b=b.Xc;else break};kl.prototype.j=function(){return"Node("+this.pj+", "+this.Cc+", "+this.Ai+") -\x3e "+this.Xc};var ml=E(kl,"scala.collection.mutable.HashMap$Node",{o5:1}); -function nl(a,b,c){this.Pw=a;this.sr=b;this.of=c}nl.prototype=new q;nl.prototype.constructor=nl;nl.prototype.Ha=function(a){for(var b=this;;)if(a.y(b.Pw),null!==b.of)b=b.of;else break};nl.prototype.j=function(){return"Node("+this.Pw+", "+this.sr+") -\x3e "+this.of};var ul=E(nl,"scala.collection.mutable.HashSet$Node",{v5:1});function vl(){}vl.prototype=new q;vl.prototype.constructor=vl;function wl(a,b){if(b!==a)throw new xl("mutation occurred during iteration");} -E(vl,"scala.collection.mutable.MutationTracker$",{D5:1});var yl;function zl(){yl||(yl=new vl)}function Al(){this.Xq=this.hw=null}Al.prototype=new q;Al.prototype.constructor=Al;function Bl(){}Bl.prototype=Al.prototype;function Cl(a,b){return a.Xq.Hf(a.hw,b)}function Dl(a){return a.Xq.LA(a.hw)}function El(a,b){this.nE=b;this.mE=a}El.prototype=new q;El.prototype.constructor=El;function Fl(a,b){return a.mE.bg(a.nE,b)}E(El,"scala.math.Ordering$OrderingOps",{d1:1});function Gl(){}Gl.prototype=new q; +db,Ka=Xk().Qd,Sa=this.Na.a[9];return new Zk(z,D,Ea,D+(Ea.a.length<<5)|0,ya,null!==Sa?Sa:Ka,I,this.tl);case 4:var Ca=Xk().Qd,Fa=this.Na.a[1],Gb=null!==Fa?Fa:Ca,Hb=Xk().Ug,hc=this.Na.a[2],Qb=null!==hc?hc:Hb,Wa=Xk().ul,Ha=this.Na.a[3];if(null!==Ha)var Ia=Ha;else{var ma=this.Na.a[7];Ia=null!==ma?ma:Wa}var pb=Ia,Qa=Xk().Ug,Cc=this.Na.a[8],Lc=null!==Cc?Cc:Qa,rc=Xk().Qd,nc=this.Na.a[9],Tc=D+(Gb.a.length<<5)|0;return new $k(z,D,Gb,Tc,Qb,Tc+(Qb.a.length<<10)|0,pb,Lc,null!==nc?nc:rc,I,this.tl);case 5:var sc= +Xk().Qd,ic=this.Na.a[1],mb=null!==ic?ic:sc,Zb=Xk().Ug,Ub=this.Na.a[2],gb=null!==Ub?Ub:Zb,tc=Xk().ul,$b=this.Na.a[3],Db=null!==$b?$b:tc,ac=Xk().Ow,jc=this.Na.a[4];if(null!==jc)var oc=jc;else{var pc=this.Na.a[6];oc=null!==pc?pc:ac}var nb=oc,bc=Xk().ul,Eb=this.Na.a[7],Oa=null!==Eb?Eb:bc,Fc=Xk().Ug,kc=this.Na.a[8],Yc=null!==kc?kc:Fc,Vb=Xk().Qd,Gc=this.Na.a[9],uc=D+(mb.a.length<<5)|0,lc=uc+(gb.a.length<<10)|0;return new al(z,D,mb,uc,gb,lc,Db,lc+(Db.a.length<<15)|0,nb,Oa,Yc,null!==Gc?Gc:Vb,I,this.tl);case 6:var cc= +Xk().Qd,zb=this.Na.a[1],xb=null!==zb?zb:cc,Kb=Xk().Ug,mc=this.Na.a[2],hb=null!==mc?mc:Kb,ib=Xk().ul,dc=this.Na.a[3],vb=null!==dc?dc:ib,Wb=Xk().Ow,vc=this.Na.a[4],Lb=null!==vc?vc:Wb,ec=Xk().AJ,wc=this.Na.a[5];if(null!==wc)var Fb=wc;else{var Hc=this.Na.a[5];Fb=null!==Hc?Hc:ec}var fc=Fb,Rb=Xk().Ow,Dc=this.Na.a[6],Xb=null!==Dc?Dc:Rb,gc=Xk().ul,xc=this.Na.a[7],Mb=null!==xc?xc:gc,Mc=Xk().Ug,qc=this.Na.a[8],Ya=null!==qc?qc:Mc,Uc=Xk().Qd,jb=this.Na.a[9],Nc=D+(xb.a.length<<5)|0,Vc=Nc+(hb.a.length<<10)|0,Ic= +Vc+(vb.a.length<<15)|0;return new bl(z,D,xb,Nc,hb,Vc,vb,Ic,Lb,Ic+(Lb.a.length<<20)|0,fc,Xb,Mb,Ya,null!==jb?jb:Uc,I,this.tl);default:throw new G(S);}};Tk.prototype.j=function(){return"VectorSliceBuilder(lo\x3d"+this.fQ+", hi\x3d"+this.eQ+", len\x3d"+this.tl+", pos\x3d"+this.Nw+", maxDim\x3d"+this.Zh+")"};E(Tk,"scala.collection.immutable.VectorSliceBuilder",{E4:1}); +function cl(){this.AJ=this.Ow=this.ul=this.Ug=this.Qd=this.zJ=null;dl=this;this.zJ=new Ib(0);this.Qd=new (F(F(zc)).c)(0);this.Ug=new (F(F(F(zc))).c)(0);this.ul=new (F(F(F(F(zc)))).c)(0);this.Ow=new (F(F(F(F(F(zc))))).c)(0);this.AJ=new (F(F(F(F(F(F(zc)))))).c)(0)}cl.prototype=new q;cl.prototype.constructor=cl;function el(a,b,c){a=b.a.length;var d=new Ib(1+a|0);b.da(0,d,0,a);d.a[a]=c;return d}function fl(a,b,c){a=Of($f(),b,1+b.a.length|0);a.a[-1+a.a.length|0]=c;return a} +function gl(a,b,c){a=be(fe(),zf(ia(c)),1+c.a.length|0);c.da(0,a,1,c.a.length);a.a[0]=b;return a}function hl(a,b,c,d){var e=0,f=c.a.length;if(0===b)for(;ec)return null;a=a.Xc}}kl.prototype.Ha=function(a){for(var b=this;;)if(a.y(H(new J,b.oj,b.Cc)),null!==b.Xc)b=b.Xc;else break};kl.prototype.Zj=function(a){for(var b=this;;)if(a.Yf(b.oj,b.Cc),null!==b.Xc)b=b.Xc;else break};kl.prototype.j=function(){return"Node("+this.oj+", "+this.Cc+", "+this.Ai+") -\x3e "+this.Xc};var ml=E(kl,"scala.collection.mutable.HashMap$Node",{o5:1}); +function nl(a,b,c){this.Qw=a;this.sr=b;this.of=c}nl.prototype=new q;nl.prototype.constructor=nl;nl.prototype.Ha=function(a){for(var b=this;;)if(a.y(b.Qw),null!==b.of)b=b.of;else break};nl.prototype.j=function(){return"Node("+this.Qw+", "+this.sr+") -\x3e "+this.of};var ul=E(nl,"scala.collection.mutable.HashSet$Node",{v5:1});function vl(){}vl.prototype=new q;vl.prototype.constructor=vl;function wl(a,b){if(b!==a)throw new xl("mutation occurred during iteration");} +E(vl,"scala.collection.mutable.MutationTracker$",{D5:1});var yl;function zl(){yl||(yl=new vl)}function Al(){this.Xq=this.iw=null}Al.prototype=new q;Al.prototype.constructor=Al;function Bl(){}Bl.prototype=Al.prototype;function Cl(a,b){return a.Xq.Hf(a.iw,b)}function Dl(a){return a.Xq.LA(a.iw)}function El(a,b){this.nE=b;this.mE=a}El.prototype=new q;El.prototype.constructor=El;function Fl(a,b){return a.mE.bg(a.nE,b)}E(El,"scala.math.Ordering$OrderingOps",{d1:1});function Gl(){}Gl.prototype=new q; Gl.prototype.constructor=Gl;E(Gl,"scala.math.package$",{j1:1});var Hl;function Il(){}Il.prototype=new q;Il.prototype.constructor=Il;function Ri(a,b,c){if(!(a=b===c)){if(Jl(b))a:if(Jl(c))c=Kl(b,c);else{if(c instanceof da){if("number"===typeof b){c=+b===Ra(c);break a}if(b instanceof n){b=Va(b);a=b.m;c=Ra(c);c=b.l===c&&a===c>>31;break a}}c=null===b?null===c:Ua(b,c)}else c=b instanceof da?Ll(b,c):null===b?null===c:Ua(b,c);a=c}return a} function Kl(a,b){if("number"===typeof a)return a=+a,"number"===typeof b?a===+b:b instanceof n?(b=Va(b),a===nh(Pa(),b.l,b.m)):!1;if(a instanceof n){var c=Va(a);a=c.l;c=c.m;if(b instanceof n){b=Va(b);var d=b.m;return a===b.l&&c===d}return"number"===typeof b?(b=+b,nh(Pa(),a,c)===b):!1}return null===a?null===b:Ua(a,b)} function Ll(a,b){if(b instanceof da)return Ra(a)===Ra(b);if(Jl(b)){if("number"===typeof b)return+b===Ra(a);if(b instanceof n){b=Va(b);var c=b.m;a=Ra(a);return b.l===a&&c===a>>31}return null===b?null===a:Ua(b,a)}return null===a&&null===b}E(Il,"scala.runtime.BoxesRunTime$",{g6:1});var Ml;function Si(){Ml||(Ml=new Il);return Ml}var dj=E(0,"scala.runtime.Null$",{o6:1});function Nl(){}Nl.prototype=new q;Nl.prototype.constructor=Nl;E(Nl,"scala.runtime.RichChar$",{t6:1});var Ol;function Pl(){} -Pl.prototype=new q;Pl.prototype.constructor=Pl;function Ph(a,b,c){if(b instanceof Jb||b instanceof y||b instanceof C||b instanceof A||b instanceof B)return b.a[c];if(b instanceof v)return p(b.a[c]);if(b instanceof w||b instanceof x||b instanceof t)return b.a[c];if(null===b)throw ri();throw new G(b);} -function Ui(a,b,c,d){if(b instanceof Jb)b.a[c]=d;else if(b instanceof y)b.a[c]=d|0;else if(b instanceof C)b.a[c]=+d;else if(b instanceof A)b.a[c]=Va(d);else if(b instanceof B)b.a[c]=Math.fround(d);else if(b instanceof v)b.a[c]=Ra(d);else if(b instanceof w)b.a[c]=d|0;else if(b instanceof x)b.a[c]=d|0;else if(b instanceof t)b.a[c]=!!d;else{if(null===b)throw ri();throw new G(b);}} -function ti(a,b){if(b instanceof Jb||b instanceof y||b instanceof C||b instanceof A||b instanceof B||b instanceof v||b instanceof w||b instanceof x||b instanceof t)return b.V();if(null===b)throw ri();throw new G(b);}function Ql(a){Qh();return Gj(new Rl(a),a.B()+"(",",",")")}E(Pl,"scala.runtime.ScalaRunTime$",{v6:1});var Sl;function Qh(){Sl||(Sl=new Pl);return Sl}function Tl(){}Tl.prototype=new q;Tl.prototype.constructor=Tl; +Pl.prototype=new q;Pl.prototype.constructor=Pl;function Ph(a,b,c){if(b instanceof Ib||b instanceof y||b instanceof C||b instanceof A||b instanceof B)return b.a[c];if(b instanceof v)return p(b.a[c]);if(b instanceof w||b instanceof x||b instanceof t)return b.a[c];if(null===b)throw ri();throw new G(b);} +function Ui(a,b,c,d){if(b instanceof Ib)b.a[c]=d;else if(b instanceof y)b.a[c]=d|0;else if(b instanceof C)b.a[c]=+d;else if(b instanceof A)b.a[c]=Va(d);else if(b instanceof B)b.a[c]=Math.fround(d);else if(b instanceof v)b.a[c]=Ra(d);else if(b instanceof w)b.a[c]=d|0;else if(b instanceof x)b.a[c]=d|0;else if(b instanceof t)b.a[c]=!!d;else{if(null===b)throw ri();throw new G(b);}} +function ti(a,b){if(b instanceof Ib||b instanceof y||b instanceof C||b instanceof A||b instanceof B||b instanceof v||b instanceof w||b instanceof x||b instanceof t)return b.V();if(null===b)throw ri();throw new G(b);}function Ql(a){Qh();return Gj(new Rl(a),a.B()+"(",",",")")}E(Pl,"scala.runtime.ScalaRunTime$",{v6:1});var Sl;function Qh(){Sl||(Sl=new Pl);return Sl}function Tl(){}Tl.prototype=new q;Tl.prototype.constructor=Tl; Tl.prototype.f=function(a,b){a=this.ko(a,b);return-430675100+Math.imul(5,a<<13|a>>>19|0)|0};Tl.prototype.ko=function(a,b){b=Math.imul(-862048943,b);b=Math.imul(461845907,b<<15|b>>>17|0);return a^b};Tl.prototype.L=function(a,b){a^=b;a=Math.imul(-2048144789,a^(a>>>16|0));a=Math.imul(-1028477387,a^(a>>>13|0));return a^(a>>>16|0)};function Ul(a,b){a=b.l;b=b.m;return b===a>>31?a:a^b} function Vl(a,b){a=rb(b);if(a===b)return a;a=Pa();if(-0x7fffffffffffffff>b){a.Gb=-2147483648;var c=0}else if(0x7fffffffffffffff<=b)a.Gb=2147483647,c=-1;else{c=b|0;var d=b/4294967296|0;a.Gb=0>b&&0!==c?-1+d|0:d}a=a.Gb;return nh(Pa(),c,a)===b?c^a:gd(md(),b)}function M(a,b){return null===b?0:"number"===typeof b?Vl(0,+b):b instanceof n?(a=Va(b),Ul(0,new n(a.l,a.m))):Za(b)}function N(a,b){throw Wl(new Xl,""+b);}E(Tl,"scala.runtime.Statics$",{y6:1});var Yl;function P(){Yl||(Yl=new Tl);return Yl} var Zl=E(2,"scala.scalajs.js.Any",{sQ:1},ea);function $l(){}$l.prototype=new q;$l.prototype.constructor=$l;function am(a,b){if(b instanceof bm)return b.Jo;a=[];for(b=b.k();b.d();){var c=b.e();a.push(c)|0}return a}E($l,"scala.scalajs.js.JSConverters$JSRichIterableOnce$",{P5:1});var cm;function dm(){cm||(cm=new $l);return cm}function em(){}em.prototype=new q;em.prototype.constructor=em;function fm(a,b){var c={};b.Ha(new Nh(d=>{c[d.Ia()]=d.la()}));return c}E(em,"scala.scalajs.js.special.package$",{V5:1}); var gm;function hm(){gm||(gm=new em);return gm}function im(){}im.prototype=new q;im.prototype.constructor=im; function jm(a,b,c,d){c=c-b|0;if(!(2>c)){if(0d.ha(f,Ph(Qh(),a,-1+(b+e|0)|0))){for(var h=b,k=-1+(b+e|0)|0;1<(k-h|0);){var m=(h+k|0)>>>1|0;0>d.ha(f,Ph(Qh(),a,m))?k=m:h=m}h=h+(0>d.ha(f,Ph(Qh(),a,h))?0:1)|0;for(k=b+e|0;k>h;)Ui(Qh(),a,k,Ph(Qh(),a,-1+k|0)),k=-1+k|0;Ui(Qh(),a,h,f)}e=1+e|0}}} function km(a,b,c,d,e,f,h){if(32>(d-c|0))jm(b,c,d,e);else{var k=(c+d|0)>>>1|0;f=null===f?h.Je(k-c|0):f;km(a,b,c,k,e,f,h);km(a,b,k,d,e,f,h);lm(b,c,k,d,e,f)}}function lm(a,b,c,d,e,f){if(0e.ha(Ph(Qh(),a,h),Ph(Qh(),f,m))?(Ui(Qh(),a,b,Ph(Qh(),a,h)),h=1+h|0):(Ui(Qh(),a,b,Ph(Qh(),f,m)),m=1+m|0),b=1+b|0;for(;mc)throw de("fromIndex(0) \x3e toIndex("+c+")");if(16<(c-0|0)){var f=b.a.length;ff(a,b,be(fe(),zf(ia(b)),f),0,c,d,e)}else gf(b,0,c,d,e)}else if(b instanceof y)if(d===ui()){d=$f();a=cf();e=cf();if(0>c)throw de("fromIndex(0) \x3e toIndex("+c+")");16<(c-0|0)?ff(d,b,new y(b.a.length),0,c,a,e):gf(b,0,c,a,e)}else if(e=nm(),32>(c-0|0))jm(b,0,c,d);else{f=(0+c|0)>>> +function Bi(a,b,c,d){if(b instanceof Ib){if(1c)throw de("fromIndex(0) \x3e toIndex("+c+")");if(16<(c-0|0)){var f=b.a.length;ff(a,b,be(fe(),zf(ia(b)),f),0,c,d,e)}else gf(b,0,c,d,e)}else if(b instanceof y)if(d===ui()){d=$f();a=cf();e=cf();if(0>c)throw de("fromIndex(0) \x3e toIndex("+c+")");16<(c-0|0)?ff(d,b,new y(b.a.length),0,c,a,e):gf(b,0,c,a,e)}else if(e=nm(),32>(c-0|0))jm(b,0,c,d);else{f=(0+c|0)>>> 1|0;var h=new y(f-0|0);if(32>(f-0|0))jm(b,0,f,d);else{var k=(0+f|0)>>>1|0;km(a,b,0,k,d,h,e);km(a,b,k,f,d,h,e);lm(b,0,k,f,d,h)}32>(c-f|0)?jm(b,f,c,d):(k=(f+c|0)>>>1|0,km(a,b,f,k,d,h,e),km(a,b,k,c,d,h,e),lm(b,f,k,c,d,h));lm(b,0,f,c,d,h)}else if(b instanceof C)e=om(),32>(c-0|0)?jm(b,0,c,d):(f=(0+c|0)>>>1|0,h=new C(f-0|0),32>(f-0|0)?jm(b,0,f,d):(k=(0+f|0)>>>1|0,km(a,b,0,k,d,h,e),km(a,b,k,f,d,h,e),lm(b,0,k,f,d,h)),32>(c-f|0)?jm(b,f,c,d):(k=(f+c|0)>>>1|0,km(a,b,f,k,d,h,e),km(a,b,k,c,d,h,e),lm(b,f,k,c,d, h)),lm(b,0,f,c,d,h));else if(b instanceof A)if(d===vi()){d=$f();a=jf();e=jf();if(0>c)throw de("fromIndex(0) \x3e toIndex("+c+")");16<(c-0|0)?ff(d,b,new A(b.a.length),0,c,a,e):gf(b,0,c,a,e)}else e=pm(),32>(c-0|0)?jm(b,0,c,d):(f=(0+c|0)>>>1|0,h=new A(f-0|0),32>(f-0|0)?jm(b,0,f,d):(k=(0+f|0)>>>1|0,km(a,b,0,k,d,h,e),km(a,b,k,f,d,h,e),lm(b,0,k,f,d,h)),32>(c-f|0)?jm(b,f,c,d):(k=(f+c|0)>>>1|0,km(a,b,f,k,d,h,e),km(a,b,k,c,d,h,e),lm(b,f,k,c,d,h)),lm(b,0,f,c,d,h));else if(b instanceof B)e=qm(),32>(c-0|0)?jm(b, 0,c,d):(f=(0+c|0)>>>1|0,h=new B(f-0|0),32>(f-0|0)?jm(b,0,f,d):(k=(0+f|0)>>>1|0,km(a,b,0,k,d,h,e),km(a,b,k,f,d,h,e),lm(b,0,k,f,d,h)),32>(c-f|0)?jm(b,f,c,d):(k=(f+c|0)>>>1|0,km(a,b,f,k,d,h,e),km(a,b,k,c,d,h,e),lm(b,f,k,c,d,h)),lm(b,0,f,c,d,h));else if(b instanceof v)if(d===wi()){d=$f();a=tf();e=tf();if(0>c)throw de("fromIndex(0) \x3e toIndex("+c+")");16<(c-0|0)?ff(d,b,new v(b.a.length),0,c,a,e):gf(b,0,c,a,e)}else e=rm(),32>(c-0|0)?jm(b,0,c,d):(f=(0+c|0)>>>1|0,h=new v(f-0|0),32>(f-0|0)?jm(b,0,f,d):(k= @@ -194,7 +194,7 @@ function Mm(a,b,c){b=b.a.length;switch(b){case 0:return a.L(c,0);case 1:return a function Om(){var a=Pm();if(!a.sF&&!a.sF){Qm();var b=new Q([H(new J,p(171),p(34)),H(new J,p(187),p(34)),H(new J,p(8216),p(39)),H(new J,p(8217),p(39)),H(new J,p(8218),p(39)),H(new J,p(8220),p(34)),H(new J,p(8221),p(34)),H(new J,p(8222),p(34)),H(new J,p(12289),p(44)),H(new J,p(12290),p(46)),H(new J,p(12318),p(34)),H(new J,p(65282),p(34)),H(new J,p(65283),p(35)),H(new J,p(65285),p(37)),H(new J,p(65286),p(38)),H(new J,p(65287),p(39)),H(new J,p(65288),p(40)),H(new J,p(65289),p(41)),H(new J,p(65290),p(42)), H(new J,p(65291),p(43)),H(new J,p(65292),p(44)),H(new J,p(65293),p(45)),H(new J,p(65294),p(46)),H(new J,p(65295),p(47)),H(new J,p(65306),p(58)),H(new J,p(65307),p(59)),H(new J,p(65308),p(60)),H(new J,p(65309),p(61)),H(new J,p(65310),p(62)),H(new J,p(65339),p(91)),H(new J,p(65341),p(93)),H(new J,p(65371),p(123)),H(new J,p(65373),p(125)),H(new J,p(65377),p(46))]);a.ZJ=Rm(0,b);a.sF=!0}return a.ZJ} function cn(a,b){if(null!==b&&""!==b){a=new v(b.length);b=new dn(b);var c=fj(Ch(),a);if(!c.bc)for(var d=c.qb;;){a.a[d]=en(b);if(d===c.ze)break;d=d+c.Ya|0}return fn(Xj(),a,a.a.length)}return b}E(Nm,"tigerpython.inputenc.StringTranslator$",{uT:1});var gn;function Pm(){gn||(gn=new Nm);return gn} -function hn(a,b,c){if(null!==b){var d=c.p(),e=jn(a.$J,d);if(null===e)throw new G(e);var f=e.dA();e=e.XH();b.pos=d;b.lineno=f;b.col_offset=e;b.kind=c.sm().j();if(kn(c)){d=c.Ra();e=jn(a.$J,d);if(null===e)throw new G(e);f=e.dA();e=e.XH();b.end_pos=d;b.end_lineno=f;b.end_col_offset=e}if(c&&c.$classData&&c.$classData.Yb.wF){dm();c=c.Yv();d=c.a.length;f=new (F(Zl).c)(d);if(0Yb.Ia()),new Xi(ja(En)))))]))}if(b instanceof Fn){var z=b.lu,I=b.ku;return fm(hm(),new Q([H(new J,"test",ln(a,z)),H(new J,"message",ln(a,I))]))}if(b instanceof Gn){var D=b.uh,S=b.hd;return fm(hm(),new Q([H(new J,"targets",An(a,D)),H(new J,"value",ln(a,S))]))}if(b instanceof Hn){var O=b.Lm,K=b.fx,oa=b.Br;return fm(hm(),new Q([H(new J,"target",ln(a,O)),H(new J,"op",K.j()),H(new J,"value",ln(a, +"args",An(a,k)),H(new J,"vararg",ln(a,r)),H(new J,"kwarg",ln(a,u)),H(new J,"default",An(a,Ti(Ch(),m,new Nh(Yb=>Yb.Ia()),new Xi(ja(En)))))]))}if(b instanceof Fn){var z=b.lu,I=b.ku;return fm(hm(),new Q([H(new J,"test",ln(a,z)),H(new J,"message",ln(a,I))]))}if(b instanceof Gn){var D=b.uh,S=b.hd;return fm(hm(),new Q([H(new J,"targets",An(a,D)),H(new J,"value",ln(a,S))]))}if(b instanceof Hn){var O=b.Lm,K=b.gx,oa=b.Br;return fm(hm(),new Q([H(new J,"target",ln(a,O)),H(new J,"op",K.j()),H(new J,"value",ln(a, oa))]))}if(b instanceof In)return fm(hm(),R());if(b instanceof Jn){var ca=b.Nm,ta=b.Mm,sa=b.pu,Ea=b.di;return fm(hm(),new Q([H(new J,"name",ln(a,ca)),H(new J,"bases",An(a,ta)),H(new J,"keywords",pn(a,sa)),H(new J,"body",nn(a,Ea))]))}if(b instanceof Kn)return fm(hm(),R());if(b instanceof Ln)return fm(hm(),new Q([H(new J,"targets",An(a,b.ru))]));if(b instanceof Mn){var ab=b.su,Ta=b.tu,db=b.uu;return fm(hm(),new Q([H(new J,"body",ln(a,ab)),H(new J,"locals",ln(a,Ta)),H(new J,"globals",ln(a,db))]))}if(b instanceof -Nn)return fm(hm(),new Q([H(new J,"expr",ln(a,b.dc))]));if(b instanceof On){var fb=b.Qm,ya=b.Pm,Ka=b.vh,Sa=b.wh;return fm(hm(),new Q([H(new J,"target",ln(a,fb)),H(new J,"iter",ln(a,ya)),H(new J,"body",nn(a,Ka)),H(new J,"orelse",nn(a,Sa))]))}if(b instanceof Pn){var Ca=b.fi,Fa=b.Re,Hb=b.Yg,Ib=b.vu;tn(a,b);var hc=fm(hm(),new Q([H(new J,"name",ln(a,Ca)),H(new J,"args",ln(a,Fa)),H(new J,"body",nn(a,Hb)),H(new J,"returns",ln(a,Ib))]));wn(a,hc);return hc}if(b instanceof Qn)return fm(hm(),new Q([H(new J,"names", +Nn)return fm(hm(),new Q([H(new J,"expr",ln(a,b.dc))]));if(b instanceof On){var fb=b.Qm,ya=b.Pm,Ka=b.vh,Sa=b.wh;return fm(hm(),new Q([H(new J,"target",ln(a,fb)),H(new J,"iter",ln(a,ya)),H(new J,"body",nn(a,Ka)),H(new J,"orelse",nn(a,Sa))]))}if(b instanceof Pn){var Ca=b.fi,Fa=b.Re,Gb=b.Yg,Hb=b.vu;tn(a,b);var hc=fm(hm(),new Q([H(new J,"name",ln(a,Ca)),H(new J,"args",ln(a,Fa)),H(new J,"body",nn(a,Gb)),H(new J,"returns",ln(a,Hb))]));wn(a,hc);return hc}if(b instanceof Qn)return fm(hm(),new Q([H(new J,"names", An(a,b.Ak))]));if(b instanceof Rn){var Qb=b.Dl,Wa=b.Se,Ha=b.Ec;return fm(hm(),new Q([H(new J,"test",ln(a,Qb)),H(new J,"body",nn(a,Wa)),H(new J,"orelse",nn(a,Ha))]))}if(b instanceof Sn)return fm(hm(),new Q([H(new J,"names",An(a,b.Fl))]));if(b instanceof Tn){var Ia=b.Bk,ma=b.El;return fm(hm(),new Q([H(new J,"module",ln(a,Ia)),H(new J,"names",An(a,ma)),H(new J,"level",0)]))}if(b instanceof Un)return fm(hm(),new Q([H(new J,"module","__future__"),H(new J,"names",am(dm(),(new Nh(Yb=>mn(nj(),Yb))).y(b.yu)))])); -if(b instanceof Vn)return fm(hm(),new Q([H(new J,"module",ln(a,b.bp)),H(new J,"names",["*"])]));if(b instanceof Wn)return fm(hm(),new Q([H(new J,"names",An(a,b.Eu))]));if(b instanceof Xn)return fm(hm(),R());if(b instanceof Yn){var pb=b.Tm,Qa=b.Um,Bc=b.Qr;return fm(hm(),new Q([H(new J,"dest",ln(a,pb)),H(new J,"values",An(a,Qa)),H(new J,"nl",Bc)]))}if(b instanceof Zn){var Jc=b.Fu,rc=b.Gu,nc=b.Hu;return fm(hm(),new Q([H(new J,"type",ln(a,Jc)),H(new J,"inst",ln(a,rc)),H(new J,"tback",ln(a,nc))]))}if(b instanceof -$n){var Rc=b.Ju,sc=b.Iu;return fm(hm(),new Q([H(new J,"exc",ln(a,Rc)),H(new J,"cause",ln(a,sc))]))}if(b instanceof ao)return fm(hm(),new Q([H(new J,"value",ln(a,b.Dk))]));if(b instanceof bo){var ic=b.rg,mb=b.yh,Zb=b.Te,Ub=b.Ue;return fm(hm(),new Q([H(new J,"body",nn(a,ic)),H(new J,"handlers",An(a,mb)),H(new J,"orelse",nn(a,Zb)),H(new J,"finalBody",nn(a,Ub))]))}if(b instanceof co){var gb=b.Jl,tc=b.Ii,$b=b.Ek;return fm(hm(),new Q([H(new J,"test",ln(a,gb)),H(new J,"body",nn(a,tc)),H(new J,"orelse",nn(a, -$b))]))}if(b instanceof eo){var Eb=b.jp,ac=b.Kl,jc=b.zh;return fm(hm(),new Q([H(new J,"context",ln(a,Eb)),H(new J,"opt_vars",ln(a,ac)),H(new J,"body",nn(a,jc))]))}if(b instanceof fo){var oc=b.ng,pc=b.Qe;return fm(hm(),new Q([H(new J,"name",ln(a,oc)),H(new J,"as_name",ln(a,pc))]))}if(b instanceof go){var nb=b.je,bc=b.De;return fm(hm(),new Q([H(new J,"base",ln(a,nb)),H(new J,"attr",ln(a,bc)),H(new J,"ctx",b.tF.j())]))}if(b instanceof ho)return fm(hm(),new Q([H(new J,"value",ln(a,b.Oo))]));if(b instanceof -io){var Fb=b.Xg,Oa=b.ke,Ec=b.le;return fm(hm(),new Q([H(new J,"op",Fb.j()),H(new J,"left",ln(a,Oa)),H(new J,"right",ln(a,Ec))]))}if(b instanceof jo)return fm(hm(),new Q([H(new J,"value_type","bool"),H(new J,"value",b.yk)]));if(b instanceof ko){var kc=b.me,Xc=b.cc,Vb=b.ou;return fm(hm(),new Q([H(new J,"func",ln(a,kc)),H(new J,"args",An(a,Xc)),H(new J,"keywords",pn(a,Vb))]))}if(b instanceof lo){var Fc=b.og,uc=b.jc,lc=mo(),cc=R(),Ab=no(lc,cc),yb=mo(),Lb=R(),mc=no(yb,Lb);(new kj(new Nh(Yb=>null!==Yb), -uc)).Ha(new Nh(Yb=>{if(null!==Yb){var dd=Yb.la();Yb=Yb.Ia().j();oo(Ab,Yb);dd=ln(a,dd);return oo(mc,dd)}throw new G(Yb);}));return fm(hm(),new Q([H(new J,"left",ln(a,Fc)),H(new J,"ops",po(qo(),Ab)),H(new J,"comparators",po(qo(),mc))]))}if(b instanceof ro){var hb=b.Xo,ib=b.Yo;return fm(hm(),new Q([H(new J,"keys",An(a,hb)),H(new J,"values",An(a,ib))]))}if(b instanceof so){var dc=b.Vo,vb=b.Wo,Wb=b.Uo;return fm(hm(),new Q([H(new J,"key",ln(a,dc)),H(new J,"value",ln(a,vb)),H(new J,"generators",An(a,Wb))]))}if(b instanceof -to)return fm(hm(),new Q([H(new J,"value_type","ellipsis"),H(new J,"value","...")]));if(b instanceof uo){var vc=b.Kr,Mb=b.Lr;return fm(hm(),new Q([H(new J,"elts",ln(a,vc)),H(new J,"generators",An(a,Mb))]))}if(b instanceof vo){var ec=b.wu,wc=b.$o,Gb=b.ap;return fm(hm(),new Q([H(new J,"test",ln(a,ec)),H(new J,"body",ln(a,wc)),H(new J,"orelse",ln(a,Gb))]))}if(b instanceof wo){var Gc=b.Rm,fc=b.cp;return fm(hm(),new Q([H(new J,"args",ln(a,Gc)),H(new J,"body",ln(a,fc))]))}if(b instanceof xo)return fm(hm(), -new Q([H(new J,"elts",An(a,b.Pf)),H(new J,"ctx",b.yF.j())]));if(b instanceof yo){var Rb=b.Ck,Cc=b.xh;return fm(hm(),new Q([H(new J,"elts",ln(a,Rb)),H(new J,"generators",An(a,Cc))]))}if(b instanceof zo){var Xb=b.K,gc=b.wj,wb=Ao().FL;if(null===wb?null===gc:wb.b(gc))a.fA(Xb);else{var Yc=Ao().QF;if(null===Yc?null===gc:Yc.b(gc))var Kc=!0;else{var qc=Ao().Fk;Kc=null===qc?null===gc:qc.b(gc)}if(Kc)a.fA(Xb);else{var Ya=Ao().Gk;(null===Ya?null===gc:Ya.b(gc))&&a.Ac(Xb)}}return fm(hm(),new Q([H(new J,"name", -Xb),H(new J,"ctx",b.BF.j())]))}if(b instanceof Bo)return fm(hm(),new Q([H(new J,"elts",An(a,b.Hl))]));if(b instanceof Co)return fm(hm(),new Q([H(new J,"elts",An(a,b.gp))]));if(b instanceof Do){var Sc=b.Rr,jb=b.Sr;return fm(hm(),new Q([H(new J,"elts",ln(a,Sc)),H(new J,"generators",An(a,jb))]))}if(b instanceof Eo)return fm(hm(),new Q([H(new J,"value",ln(a,b.Nu)),H(new J,"ctx",b.DF.j())]));if(b instanceof Fo)return fm(hm(),new Q([H(new J,"value_type","str"),H(new J,"value",b.Vm)]));if(b instanceof Go){var Lc= -b.Gi,Tc=b.Il;return fm(hm(),new Q([H(new J,"value",ln(a,Lc)),H(new J,"slice",ln(a,Tc))]))}if(b instanceof Ho)return fm(hm(),new Q([H(new J,"elts",An(a,b.$a)),H(new J,"ctx",b.EF.j())]));if(b instanceof Io){var Hc=b.ip,Ic=b.xj;return fm(hm(),new Q([H(new J,"op",Hc.j()),H(new J,"operand",ln(a,Ic))]))}return b instanceof Jo?fm(hm(),new Q([H(new J,"value_type",b.ah.j()),H(new J,"value",b.Hi)])):b instanceof Ko?fm(hm(),new Q([H(new J,"expr",ln(a,b.Qu))])):b instanceof $o?fm(hm(),new Q([H(new J,"source", +if(b instanceof Vn)return fm(hm(),new Q([H(new J,"module",ln(a,b.bp)),H(new J,"names",["*"])]));if(b instanceof Wn)return fm(hm(),new Q([H(new J,"names",An(a,b.Eu))]));if(b instanceof Xn)return fm(hm(),R());if(b instanceof Yn){var pb=b.Tm,Qa=b.Um,Cc=b.Qr;return fm(hm(),new Q([H(new J,"dest",ln(a,pb)),H(new J,"values",An(a,Qa)),H(new J,"nl",Cc)]))}if(b instanceof Zn){var Lc=b.Fu,rc=b.Gu,nc=b.Hu;return fm(hm(),new Q([H(new J,"type",ln(a,Lc)),H(new J,"inst",ln(a,rc)),H(new J,"tback",ln(a,nc))]))}if(b instanceof +$n){var Tc=b.Ju,sc=b.Iu;return fm(hm(),new Q([H(new J,"exc",ln(a,Tc)),H(new J,"cause",ln(a,sc))]))}if(b instanceof ao)return fm(hm(),new Q([H(new J,"value",ln(a,b.Dk))]));if(b instanceof bo){var ic=b.rg,mb=b.yh,Zb=b.Te,Ub=b.Ue;return fm(hm(),new Q([H(new J,"body",nn(a,ic)),H(new J,"handlers",An(a,mb)),H(new J,"orelse",nn(a,Zb)),H(new J,"finalBody",nn(a,Ub))]))}if(b instanceof co){var gb=b.Jl,tc=b.Ii,$b=b.Ek;return fm(hm(),new Q([H(new J,"test",ln(a,gb)),H(new J,"body",nn(a,tc)),H(new J,"orelse",nn(a, +$b))]))}if(b instanceof eo){var Db=b.jp,ac=b.Kl,jc=b.zh;return fm(hm(),new Q([H(new J,"context",ln(a,Db)),H(new J,"opt_vars",ln(a,ac)),H(new J,"body",nn(a,jc))]))}if(b instanceof fo){var oc=b.ng,pc=b.Qe;return fm(hm(),new Q([H(new J,"name",ln(a,oc)),H(new J,"as_name",ln(a,pc))]))}if(b instanceof go){var nb=b.je,bc=b.De;return fm(hm(),new Q([H(new J,"base",ln(a,nb)),H(new J,"attr",ln(a,bc)),H(new J,"ctx",b.tF.j())]))}if(b instanceof ho)return fm(hm(),new Q([H(new J,"value",ln(a,b.Oo))]));if(b instanceof +io){var Eb=b.Xg,Oa=b.ke,Fc=b.le;return fm(hm(),new Q([H(new J,"op",Eb.j()),H(new J,"left",ln(a,Oa)),H(new J,"right",ln(a,Fc))]))}if(b instanceof jo)return fm(hm(),new Q([H(new J,"value_type","bool"),H(new J,"value",b.yk)]));if(b instanceof ko){var kc=b.me,Yc=b.cc,Vb=b.ou;return fm(hm(),new Q([H(new J,"func",ln(a,kc)),H(new J,"args",An(a,Yc)),H(new J,"keywords",pn(a,Vb))]))}if(b instanceof lo){var Gc=b.og,uc=b.jc,lc=mo(),cc=R(),zb=no(lc,cc),xb=mo(),Kb=R(),mc=no(xb,Kb);(new kj(new Nh(Yb=>null!==Yb), +uc)).Ha(new Nh(Yb=>{if(null!==Yb){var dd=Yb.la();Yb=Yb.Ia().j();oo(zb,Yb);dd=ln(a,dd);return oo(mc,dd)}throw new G(Yb);}));return fm(hm(),new Q([H(new J,"left",ln(a,Gc)),H(new J,"ops",po(qo(),zb)),H(new J,"comparators",po(qo(),mc))]))}if(b instanceof ro){var hb=b.Xo,ib=b.Yo;return fm(hm(),new Q([H(new J,"keys",An(a,hb)),H(new J,"values",An(a,ib))]))}if(b instanceof so){var dc=b.Vo,vb=b.Wo,Wb=b.Uo;return fm(hm(),new Q([H(new J,"key",ln(a,dc)),H(new J,"value",ln(a,vb)),H(new J,"generators",An(a,Wb))]))}if(b instanceof +to)return fm(hm(),new Q([H(new J,"value_type","ellipsis"),H(new J,"value","...")]));if(b instanceof uo){var vc=b.Kr,Lb=b.Lr;return fm(hm(),new Q([H(new J,"elts",ln(a,vc)),H(new J,"generators",An(a,Lb))]))}if(b instanceof vo){var ec=b.wu,wc=b.$o,Fb=b.ap;return fm(hm(),new Q([H(new J,"test",ln(a,ec)),H(new J,"body",ln(a,wc)),H(new J,"orelse",ln(a,Fb))]))}if(b instanceof wo){var Hc=b.Rm,fc=b.cp;return fm(hm(),new Q([H(new J,"args",ln(a,Hc)),H(new J,"body",ln(a,fc))]))}if(b instanceof xo)return fm(hm(), +new Q([H(new J,"elts",An(a,b.Pf)),H(new J,"ctx",b.yF.j())]));if(b instanceof yo){var Rb=b.Ck,Dc=b.xh;return fm(hm(),new Q([H(new J,"elts",ln(a,Rb)),H(new J,"generators",An(a,Dc))]))}if(b instanceof zo){var Xb=b.K,gc=b.vj,xc=Ao().FL;if(null===xc?null===gc:xc.b(gc))a.fA(Xb);else{var Mb=Ao().QF;if(null===Mb?null===gc:Mb.b(gc))var Mc=!0;else{var qc=Ao().Fk;Mc=null===qc?null===gc:qc.b(gc)}if(Mc)a.fA(Xb);else{var Ya=Ao().Gk;(null===Ya?null===gc:Ya.b(gc))&&a.Ac(Xb)}}return fm(hm(),new Q([H(new J,"name", +Xb),H(new J,"ctx",b.BF.j())]))}if(b instanceof Bo)return fm(hm(),new Q([H(new J,"elts",An(a,b.Hl))]));if(b instanceof Co)return fm(hm(),new Q([H(new J,"elts",An(a,b.gp))]));if(b instanceof Do){var Uc=b.Rr,jb=b.Sr;return fm(hm(),new Q([H(new J,"elts",ln(a,Uc)),H(new J,"generators",An(a,jb))]))}if(b instanceof Eo)return fm(hm(),new Q([H(new J,"value",ln(a,b.Nu)),H(new J,"ctx",b.DF.j())]));if(b instanceof Fo)return fm(hm(),new Q([H(new J,"value_type","str"),H(new J,"value",b.Vm)]));if(b instanceof Go){var Nc= +b.Gi,Vc=b.Il;return fm(hm(),new Q([H(new J,"value",ln(a,Nc)),H(new J,"slice",ln(a,Vc))]))}if(b instanceof Ho)return fm(hm(),new Q([H(new J,"elts",An(a,b.$a)),H(new J,"ctx",b.EF.j())]));if(b instanceof Io){var Ic=b.ip,Jc=b.wj;return fm(hm(),new Q([H(new J,"op",Ic.j()),H(new J,"operand",ln(a,Jc))]))}return b instanceof Jo?fm(hm(),new Q([H(new J,"value_type",b.ah.j()),H(new J,"value",b.Hi)])):b instanceof Ko?fm(hm(),new Q([H(new J,"expr",ln(a,b.Qu))])):b instanceof $o?fm(hm(),new Q([H(new J,"source", ln(a,b.Pu))])):null}function rn(a,b){return fm(hm(),new Q([H(new J,"kind","Keyword"),H(new J,"name",b.vB),H(new J,"value",ln(a,b.Fi))]))} function An(a,b){dm();var c=b.a.length,d=new (F(Zl).c)(c);if(0new np(c.Uq(k.ji),c.KA(k.ji),k.js,k.Ok.j());var d=a.a.length,e=new (F(op).c)(d);if(0new np(c.Uq(k.ji),c.KA(k.ji),k.js,k.Ok.j());var d=a.a.length,e=new (F(op).c)(d);if(0{hm();var h=H(new J,"name",f.Zz),k=f.Yz,m=new sp(()=>null);return fm(0,new Q([h,H(new J,"defaultValue",k.v()?jk(m):k.kb()),H(new J,"argType",f.Nv.xA())]))}),e=new Nh(f=>fm(hm(),new Q([H(new J,"name",f.$z),H(new J,"argType",f.Ov.xA())])));return am(dm(),(new Nh(f=>mn(nj(),f))).y(Ti(Ch(),a.wO(),new Nh(f=>{hm();var h=H(new J,"acResult",f.yv),k=H(new J,"documentation",f.wv),m=H(new J,"type",f.xv),r=H(new J,"params", -null!==f.Is?am(dm(),(new Nh(K=>mn(nj(),K))).y(f.Is)):null);if(null!==f.Qj){hm();var u=H(new J,"positionalOnlyArgs",am(dm(),tp(f.Qj.Ys,d))),z=H(new J,"positionalOrKeywordArgs",am(dm(),tp(f.Qj.Pv,d))),I=f.Qj.Zs;I=I.v()?up():new T(e.y(I.kb()));var D=new sp(()=>null);I=H(new J,"varArgs",I.v()?jk(D):I.kb());D=H(new J,"keywordOnlyArgs",am(dm(),tp(f.Qj.Xs,d)));var S=f.Qj.$s;S=S.v()?up():new T(e.y(S.kb()));var O=new sp(()=>null);f=fm(0,new Q([u,z,I,D,H(new J,"varKwargs",S.v()?jk(O):S.kb()),H(new J,"firstParamIsSelfOrCls", +function pp(a,b,c){a=qp(new rp("\x3cmodule\x3e",b,c));if(null===a)return null;var d=new Nh(f=>{hm();var h=H(new J,"name",f.Zz),k=f.Yz,m=new sp(()=>null);return fm(0,new Q([h,H(new J,"defaultValue",k.v()?jk(m):k.kb()),H(new J,"argType",f.Ov.xA())]))}),e=new Nh(f=>fm(hm(),new Q([H(new J,"name",f.$z),H(new J,"argType",f.Pv.xA())])));return am(dm(),(new Nh(f=>mn(nj(),f))).y(Ti(Ch(),a.wO(),new Nh(f=>{hm();var h=H(new J,"acResult",f.zv),k=H(new J,"documentation",f.xv),m=H(new J,"type",f.yv),r=H(new J,"params", +null!==f.Is?am(dm(),(new Nh(K=>mn(nj(),K))).y(f.Is)):null);if(null!==f.Qj){hm();var u=H(new J,"positionalOnlyArgs",am(dm(),tp(f.Qj.Ys,d))),z=H(new J,"positionalOrKeywordArgs",am(dm(),tp(f.Qj.Qv,d))),I=f.Qj.Zs;I=I.v()?up():new T(e.y(I.kb()));var D=new sp(()=>null);I=H(new J,"varArgs",I.v()?jk(D):I.kb());D=H(new J,"keywordOnlyArgs",am(dm(),tp(f.Qj.Xs,d)));var S=f.Qj.$s;S=S.v()?up():new T(e.y(S.kb()));var O=new sp(()=>null);f=fm(0,new Q([u,z,I,D,H(new J,"varKwargs",S.v()?jk(O):S.kb()),H(new J,"firstParamIsSelfOrCls", f.Qj.aA)]))}else f=null;return fm(0,new Q([h,k,m,r,H(new J,"signature",f)]))}),new Xi(ja(vp)))))} lp.prototype.defineModule=function(a,b,...c){wp();for(c=void 0===c[0]?null:c[0];;)if(null!==c){switch(c.toLowerCase()){case "pyi":c=xp();var d=a,e=b;if(null!==d&&""!==d){b=Tj(L(),d,46);a=yp(new zp,b.a[-1+b.a.length|0]);var f=new Ap(a,c.eg());f.W=new Bp(e);try{for(;f.W.d();)Cp(f)}finally{f.W=null}if(1===b.a.length)Dp(c.eg(),d,a);else{c.eg().ya(b.a[0])||(d=c.eg(),e=b.a[0],f=yp(new zp,b.a[0]),Dp(d,e,f));c=c.eg().y(b.a[0]);e=-1+b.a.length|0;d=-1+e|0;if(!(1>=e))for(e=1;;){f=e;c.$c(b.a[f]).v()&&c.gd(b.a[f], yp(new zp,b.a[f]));c=c.$c(b.a[f]).kb();if(e===d)break;e=1+e|0}c.gd(b.a[-1+b.a.length|0],a)}}break;case "legacy":case "tj":Ep(xp(),a,mn(nj(),Tj(L(),b,10)));break;default:c="legacy";continue}break}else c="legacy"};lp.prototype.getQualifiedName=function(a,b){wp();return Fp(new rp("\x3cmodule\x3e",a,b|0))};lp.prototype.autoCompleteExt=function(a,b){return pp(wp(),a,b|0)}; lp.prototype.autoComplete=function(a,b,...c){a:{wp();b|=0;var d=void 0!==c[0]&&!!c[0];c=new rp("\x3cmodule\x3e",a,b);var e=Fp(c);if(d&&null!==e){d=e.length;for(var f=b;0<=f&&(f+d|0)>=b&&Pj(L(),a,f,f+d|0)!==e;)f=-1+f|0;if(0<=f&&Pj(L(),a,f,f+d|0)===e){a=am(dm(),mn(nj(),qp(c).tA(Zj(L(),e,b-f|0))));break a}}a=am(dm(),mn(nj(),qp(c).tA("")))}return a}; -lp.prototype.parse=function(a){var b=wp();a=b.cx?cn(Pm(),a):a;a=new dp(a,b.Yw);a.ie.r.Hn=b.Zw;a.ie.r.xs=b.$w;a.ie.r.In=b.ax;a.ie.r.rc=b.bx;b=new sn(a);0===(1&a.tB)<<24>>24&&0===(1&a.tB)<<24>>24&&(a.aK=ip(a.ie),a.tB=(1|a.tB)<<24>>24);a=a.aK;return null===a?null:a instanceof on?fm(hm(),new Q([H(new J,"kind",Gp().OK.j()),H(new J,"body",nn(b,a))])):hn(b,xn(b,a),a)};lp.prototype.findAllErrors=function(a){return mp(wp(),a)}; -lp.prototype.enableTigerPythonModifications=function(){var a=U(),b=a.af,c=Hp("first"),d=Hp("head"),e=Hp("last");a=a.af;b.Dg(new Q([c,d,e,Ip(new Jp,"tail",a,a.fc)]))};lp.prototype.checkSyntax=function(a){a:{var b=wp();a=b.cx?cn(Pm(),a):a;a=new dp(a,b.Yw);a.ie.r.Hn=b.Zw;a.ie.r.xs=b.$w;a.ie.r.In=b.ax;a.ie.r.rc=b.bx;ip(a.ie);var c=a.ie.ys.YD();if(c instanceof T&&(b=c.Y,null!==b)){c=b.ji;var d=b.Ok;b=b.js;a=new np(a.Uq(c),a.KA(c),b,d.j());break a}if(up()===c)a=null;else throw new G(c);}return a}; -lp.prototype.setErrorMessage=function(a,b){wp();var c=Kp().Vu;var d=V();if(!d.Pg){var e=new Lp(Mp(d));d.mh=Np(e,new Op(d.fg)).$b();d.Pg=!0}var f=d.mh;e=f.ih();d=f.ih();for(f=f.k();f.d();){var h=f.e(),k=h.j();(0<=k.length&&"\x3cUnknown name for enum field "===k.substring(0,29)?e:d).Ma(h)}e=e.$b();b:{for(d=d.$b().k();d.d();)if(f=d.e(),f.j()===a){d=new T(f);break b}d=up()}if(d instanceof T)a=d.Y;else{if(up()!==d||e.v())throw up(),new Rh("None.get");L();c="Couldn't find enum field with name "+a+".\n |However, there were the following unnamed fields:\n |"+ -Gj(e," ","\n ","");b=Rj(new Sj,c.length);for(c=new Pp(c,!1);c.hg=a.charCodeAt(e);)e=1+e|0;a=e>24&&0===(1&a.tB)<<24>>24&&(a.aK=ip(a.ie),a.tB=(1|a.tB)<<24>>24);a=a.aK;return null===a?null:a instanceof on?fm(hm(),new Q([H(new J,"kind",Gp().OK.j()),H(new J,"body",nn(b,a))])):hn(b,xn(b,a),a)};lp.prototype.findAllErrors=function(a){return mp(wp(),a)}; +lp.prototype.enableTigerPythonModifications=function(){var a=U(),b=a.af,c=Hp("first"),d=Hp("head"),e=Hp("last");a=a.af;b.Dg(new Q([c,d,e,Ip(new Jp,"tail",a,a.fc)]))};lp.prototype.checkSyntax=function(a){a:{var b=wp();a=b.dx?cn(Pm(),a):a;a=new dp(a,b.Zw);a.ie.r.Hn=b.$w;a.ie.r.xs=b.ax;a.ie.r.In=b.bx;a.ie.r.rc=b.cx;ip(a.ie);var c=a.ie.ys.YD();if(c instanceof T&&(b=c.Y,null!==b)){c=b.ji;var d=b.Ok;b=b.js;a=new np(a.Uq(c),a.KA(c),b,d.j());break a}if(up()===c)a=null;else throw new G(c);}return a}; +lp.prototype.setErrorMessage=function(a,b){wp();var c=Kp().Wu;var d=V();if(!d.Pg){var e=new Lp(Mp(d));d.mh=Np(e,new Op(d.fg)).$b();d.Pg=!0}var f=d.mh;e=f.ih();d=f.ih();for(f=f.k();f.d();){var h=f.e(),k=h.j();(0<=k.length&&"\x3cUnknown name for enum field "===k.substring(0,29)?e:d).Ma(h)}e=e.$b();b:{for(d=d.$b().k();d.d();)if(f=d.e(),f.j()===a){d=new T(f);break b}d=up()}if(d instanceof T)a=d.Y;else{if(up()!==d||e.v())throw up(),new Rh("None.get");L();c="Couldn't find enum field with name "+a+".\n |However, there were the following unnamed fields:\n |"+ +Gj(e," ","\n ","");b=Rj(new Sj,c.length);for(c=new Pp(c,!1);c.hg=a.charCodeAt(e);)e=1+e|0;a=e{this.G(h)},c=a.a.length,d=0;if(null!==a)for(;d{this.G(h)},c=a.a.length,d=0;if(null!==a)for(;d{this.z(h)};d=b.a.length;e=0;if(null!==b)for(;e{this.G(h.Ia())};c=a.a.length;d=0;if(null!==a)for(;dnull!==h),b.jc),c=ce(fe(),b.ik),d=0;dnull!==h),b.jc),c=ce(fe(),b.ik),d=0;d>>16|0;var d=c&(-1+a.$.a.length|0),e=a.$.a[d];if(null===e)b=null;else if(e.Ai===c&&Ri(Si(),e.pj,b))a.$.a[d]=e.Xc,a.Nc=-1+a.Nc|0,b=e;else{d=e;for(e=e.Xc;null!==e&&e.Ai<=c;){if(e.Ai===c&&Ri(Si(),e.pj,b)){d.Xc=e.Xc;a.Nc=-1+a.Nc|0;b=e;break a}d=e;e=e.Xc}b=null}}null===b&&up()}else Dp(a.Ol,b,c)} -function Aq(a){a=a.YD();if(a instanceof T)return new (F(Bq).c)([a.Y]);if(up()===a){a=R();a=new (F(Bq).c)(a.i());for(var b=W().t,c=0;b.d();)a.a[c]=b.e(),c=1+c|0;return a}throw new G(a);}function Cq(){this.EQ=!1}Cq.prototype=new q;Cq.prototype.constructor=Cq;E(Cq,"tigerpython.parser.errors.ErrorHandler$",{tV:1});var Dq;function Eq(){this.Vu=null;Fq=this;Gq||(Gq=new Hq);this.Vu=Gq}Eq.prototype=new q;Eq.prototype.constructor=Eq;E(Eq,"tigerpython.parser.errors.ErrorTranslator$",{xV:1});var Fq; +else b instanceof $o?a.G(b.Pu):jq(b)&&a.z(b.cw())}lq.prototype.sj=function(a){null!==a&&(a instanceof Gn?(this.sg.MD(a),tq(this,a)):a instanceof Hn&&this.sg.OD(a)?tq(this,a):a instanceof Jn?(this.sg.bw(a),tq(this,a),this.sg.gw(a)):a instanceof Pn?(this.sg.bw(a),tq(this,a),this.sg.gw(a)):((a instanceof Sn||a instanceof Tn||a instanceof Vn)&&this.sg.RD(a)||a instanceof Qn&&this.sg.QD(a)||a instanceof ao&&this.sg.SD(a),tq(this,a)))}; +lq.prototype.z=function(a){null!==a&&(a instanceof go&&this.sg.ND(a)||a instanceof ko&&this.sg.PD(a)||a instanceof Go&&this.sg.TD(a)||a instanceof Ko&&this.sg.UD(),uq(this,a))};E(lq,"tigerpython.parser.ast.AstWalker",{fV:1});function vq(a){a.Ol=wq().Ba(R())}function xq(){this.Ol=null}xq.prototype=new q;xq.prototype.constructor=xq;function yq(){}yq.prototype=xq.prototype;function zq(a,b){var c=a.Ol.jb(b);if(c instanceof T)return c.Y;if(up()===c)return a.Rv(b);throw new G(c);} +function Rp(a,b,c){if(null===c||""===c){a=a.Ol;c=M(P(),b);a:{c^=c>>>16|0;var d=c&(-1+a.$.a.length|0),e=a.$.a[d];if(null===e)b=null;else if(e.Ai===c&&Ri(Si(),e.oj,b))a.$.a[d]=e.Xc,a.Nc=-1+a.Nc|0,b=e;else{d=e;for(e=e.Xc;null!==e&&e.Ai<=c;){if(e.Ai===c&&Ri(Si(),e.oj,b)){d.Xc=e.Xc;a.Nc=-1+a.Nc|0;b=e;break a}d=e;e=e.Xc}b=null}}null===b&&up()}else Dp(a.Ol,b,c)} +function Aq(a){a=a.YD();if(a instanceof T)return new (F(Bq).c)([a.Y]);if(up()===a){a=R();a=new (F(Bq).c)(a.i());for(var b=W().t,c=0;b.d();)a.a[c]=b.e(),c=1+c|0;return a}throw new G(a);}function Cq(){this.EQ=!1}Cq.prototype=new q;Cq.prototype.constructor=Cq;E(Cq,"tigerpython.parser.errors.ErrorHandler$",{tV:1});var Dq;function Eq(){this.Wu=null;Fq=this;Gq||(Gq=new Hq);this.Wu=Gq}Eq.prototype=new q;Eq.prototype.constructor=Eq;E(Eq,"tigerpython.parser.errors.ErrorTranslator$",{xV:1});var Fq; function Kp(){Fq||(Fq=new Eq);return Fq}function Iq(){this.Fe=null;this.eC=!1}Iq.prototype=new q;Iq.prototype.constructor=Iq;function Jq(){}Jq.prototype=Iq.prototype;Iq.prototype.si=function(a){var b=this.Fe,c=()=>{var e;if(e=127>>16|0;b=b.$.a[d&(-1+b.$.a.length|0)];b=null===b?null:ll(b,p(a),d);c=null===b?c():b.Cc}return c}; function Oq(a,b){a=a.si(b);b=Mq().ks;return null===a?null===b:a.b(b)}function Pq(a,b){a=a.si(b);b=Mq().qq;return null===a?null===b:a.b(b)}function Qq(){this.QL=this.jG=this.iG=this.kG=0}Qq.prototype=new q;Qq.prototype.constructor=Qq;E(Qq,"tigerpython.parser.lexer.Lexer$NameInfo",{DV:1});function Rq(a,b){return 0<=b&&b=a.Ja&&a.Jab.length)d=1+d|0;else if((1+e|0)=ur(0,b.ta,c.Ij):!1} -function wr(a,b,c){var d=Db();try{c.v()||c.Ha(new Nh(r=>{if(null!==r&&1>=ur(X(),r.Ij,b))throw xr(new yr,d,new T(r));}));var e=new Zr(null),f=qr();a=r=>{switch(ur(X(),r,b)){case 0:throw xr(new yr,d,new T(X().hv.y(r)));case 1:if(null===e.lb)e.lb=r;else throw xr(new yr,d,up());}};var h=f.a.length;c=0;if(null!==f)for(;c{if(null!==r&&1>=ur(X(),r.Ij,b))throw xr(new yr,d,new T(r));}));var e=new Zr(null),f=qr();a=r=>{switch(ur(X(),r,b)){case 0:throw xr(new yr,d,new T(X().iv.y(r)));case 1:if(null===e.lb)e.lb=r;else throw xr(new yr,d,up());}};var h=f.a.length;c=0;if(null!==f)for(;ca.Qa.Sc&&!a.Qa.Gn){var c=a.Qa,d=is(b),e=V().Mi,f=R();c.n(d,-1,e,f)}return As(a.Xe.ja,b)}return null} +c=V().Rd,d=R(),b.n(a,-1,c,d);a=a.Qa;b=b.p();c=V().Rd;d=R();return a.n(b,-1,c,d)}function gs(a,b){if(ds(b,new Q([X().ea]))){if(3>a.Qa.Sc&&!a.Qa.Gn){var c=a.Qa,d=is(b),e=V().Li,f=R();c.n(d,-1,e,f)}return As(a.Xe.ja,b)}return null} var ns=function Bs(a,b){var d=b.Q().A,e=mo(),f=R();for(e=no(e,f);b.d()&&!ss(b,new Q([X().sa]));)f=b.fa().o,X().S===f?(f=b.Q(),f=new zo(f.A,f.ta),oo(e,f)):X().Fa===f?Bs(a,b):b.Q();Cs(b,X().sa);if(0<=e.w)a=new (F(Ds).c)(e.w),e.ma(a,0,2147483647);else{a=[];for(b=rr(e).k();b.d();)e=b.e(),a.push(null===e?null:e);a=new (F(Ds).c)(a)}return new Bo(d,a)},Ms=function Es(a,b){var d=b.hc();if(null===d||X().sa===d)return R();if(X().Aa===d)return ls(a.Qa,b,V().Pb,R()),b.Q(),Es(a,b);if(X().Dh===d)d=new Fs(a,b.Q().A, -As(a.Xe.ja,b));else if(X().Zu===d)d=new Gs(a,b.Q().A,As(a.Xe.ja,b));else if(d.vg!==X().ab||js(a.Xe.ja,b)){d=b.p();var e=ks(a.Xe.ja,b),f=b.hc();if(X().tb===f)d=new Hs(a,d,new yo(d,Is(b),e,Js(a.Xe.ja,b)));else if(X().sb===f)if(b.Q(),f=ks(a.Xe.ja,b),e instanceof zo)d=new Ks(a,d,e,f);else if(null===e){e=a.Qa;var h=V().Rd,k=R();e.n(d,-1,h,k);d=new Ks(a,d,a.xC?a.yC:bs(a),f)}else if(f instanceof zo){h=a.Qa;k=e.p();var m=V().Pl,r=R();h.n(k,-1,m,r);d=new Ks(a,d,f,e)}else h=a.Qa,e=e.p(),k=V().Rd,m=R(),h.n(e, +As(a.Xe.ja,b));else if(X().$u===d)d=new Gs(a,b.Q().A,As(a.Xe.ja,b));else if(d.vg!==X().ab||js(a.Xe.ja,b)){d=b.p();var e=ks(a.Xe.ja,b),f=b.hc();if(X().tb===f)d=new Hs(a,d,new yo(d,Is(b),e,Js(a.Xe.ja,b)));else if(X().sb===f)if(b.Q(),f=ks(a.Xe.ja,b),e instanceof zo)d=new Ks(a,d,e,f);else if(null===e){e=a.Qa;var h=V().Rd,k=R();e.n(d,-1,h,k);d=new Ks(a,d,a.xC?a.yC:bs(a),f)}else if(f instanceof zo){h=a.Qa;k=e.p();var m=V().Pl,r=R();h.n(k,-1,m,r);d=new Ks(a,d,f,e)}else h=a.Qa,e=e.p(),k=V().Rd,m=R(),h.n(e, -1,k,m),d=new Ks(a,d,a.xC?a.yC:bs(a),f);else{if(null!==f&&f.vg===X().Ad)for(h=a.Qa,k=b.p(),m=V().Jk,h.n(k,-1,m,new Q([f]));b.d()&&!ss(b,new Q([X().Aa,X().ib,X().fb,X().sa]));)b.Q();d=new Ls(a,d,e)}}else if(d=b.p(),f=ws(b,1),X().sb===f)f=b.Q(),xs(ys(),new Q(["repeat","async","print","await","nonlocal"])).ya(zs(f))||(e=a.Qa,h=f.A,k=V().Rf,e.tm(h,-1,k,new Q([zs(f)]))),Cs(b,X().sb),d=new Ks(a,d,new zo(f.A,zs(f)),ks(a.Xe.ja,b));else{if(X().Aa!==f&&X().sa!==f)return ls(a.Qa,b,V().Lk,R()),R();ls(a.Qa,b, V().Rf,R());f=b.Q();d=new Ls(a,d,new zo(f.A,zs(f)))}f=b.hc();X().Aa===f?b.Q():X().sa===f||X().ea===f||X().fb===f||X().ib===f||null===f||ls(a.Qa,b,V().Ee,R());return new un(d,Es(a,b))};function Ns(a,b){if(b.d()){var c=b.fa().o;return X().fb===c?null:X().Aa===c||X().ea===c?null:ks(a.Xe.ja,b)}return null}function Os(a,b,c,d){if(d.ya(c))d=a.Qa,a=V().vp,d.n(b,-1,a,new Q([c]));else{if(a.Qa.DG&&Ps().gm.ya(c)){a=a.Qa;var e=V().$m;a.n(b,-1,e,new Q([c]))}d.Ma(c)}} function Qs(a,b){this.yC=null;this.xC=!1;this.Xe=a;this.Qa=b}Qs.prototype=new q;Qs.prototype.constructor=Qs; function Rs(a,b,c){if(b.d())var d=b.fa().o,e=X().sa,f=d!==e;else f=!1;if(f){var h=ap().Ba(R()),k=mo(),m=R(),r=no(k,m),u=mo(),z=R(),I=no(u,z),D=0;D=-1;var S=0;S=0;var O=null,K=O=null;K=null;var oa=0;oa=-1;var ca=0;ca=-1;for(var ta=b.fa().A,sa=vs(a,b,c);!sa.v();){var Ea=sa.X();if(Ea instanceof ts){var ab=Ea,Ta=ab.hz,db=ab.gz,fb=ab.fz;Os(a,Ta,db,h);oo(r,new Cn(Ta,db,fb));if(0<=D)oo(I,H(new J,null,null));else if(!Ss(I)){var ya=H(new J,new Jo(Ta,Ts().Hk),"None");oo(I,ya);0>oa&&(oa=Ta)}}else if(Ea instanceof -us){var Ka=Ea,Sa=Ka.Ry,Ca=Ka.Qy,Fa=Ka.Oy,Hb=Ka.Py,Ib=Ka.Ny;Os(a,Sa,Ca,h);oo(r,new Cn(Sa,Ca,Ib));var hc=H(new J,Fa,Hb);oo(I,hc);null!==K&&0>ca&&(ca=Sa)}else if(Ea instanceof qs){var Qb=Ea,Wa=Qb.lz,Ha=Qb.kz;if(3>a.Qa.Sc||a.Qa.Gn){var Ia=Ha.Hl,ma=(($d,ge)=>he=>{Os(a,$d,he.K,ge)})(Wa,h),pb=Ia.a.length,Qa=0;if(null!==Ia)for(;Qaoa&&(oa=Wa)}0<=D&&0>oa&&(oa=Wa)}else{var gb=a.Qa,tc=V().Xp,$b=R();gb.n(Wa,-1,tc,$b)}}else if(Ea instanceof os){var Eb=Ea,ac=Eb.Vy,jc=Eb.Uy,oc=Eb.Sy,pc=Eb.Ty;if(3>a.Qa.Sc||a.Qa.Gn){var nb=jc.Hl,bc=(($d,ge)=>he=>{Os(a,$d,he.K,ge)})(ac,h),Fb=nb.a.length,Oa=0;if(null!==nb)for(;Oaca&&(ca=ac)}else{var Lb=a.Qa,mc=V().Xp, -hb=R();Lb.n(ac,-1,mc,hb)}}else if(Ea instanceof es){var ib=Ea.jz;if(3>a.Qa.Sc&&!a.Qa.Gn){var dc=a.Qa,vb=V().Mi,Wb=R();dc.n(ib,-1,vb,Wb)}if(null!==O){var vc=a.Qa,Mb=V().wn,ec=R();vc.n(ib,-1,Mb,ec)}D=r.w}else if(Ea instanceof rs){var wc=Ea.iz;if(3>a.Qa.Sc&&!a.Qa.Gn){var Gb=a.Qa,Gc=V().Mi,fc=R();Gb.n(wc,-1,Gc,fc)}S=r.w}else if(Ea instanceof hs){var Rb=Ea,Cc=Rb.qz,Xb=Rb.pz,gc=Rb.oz;Os(a,Cc,Xb,h);if(null===O&&-1===D)O=new Cn(Cc,Xb,gc);else{var wb=a.Qa,Yc=V().wn,Kc=R();wb.n(Cc,-1,Yc,Kc)}D=r.w}else if(Ea instanceof -ms){var qc=Ea,Ya=qc.$y,Sc=qc.Zy,jb=qc.Yy;Os(a,Ya,Sc,h);if(null===K)K=new Cn(Ya,Sc,jb);else{var Lc=a.Qa,Tc=V().wn,Hc=R();Lc.n(Ya,-1,Tc,Hc)}}else throw new G(Ea);sa=sa.Oa()}if(0<=oa){var Ic=a.Qa,Yb=oa,dd=V().fs,od=R();Ic.n(Yb,-1,dd,od)}if(0<=ca){var ad=a.Qa,pd=ca,Uc=V().ds,ed=R();ad.n(pd,-1,Uc,ed)}0>D&&(D=r.w);if(0<=r.w){var vd=new (F(Us).c)(r.w);r.ma(vd,0,2147483647);var yd=vd}else{var fd=null;fd=[];for(var qd=rr(r).k();qd.d();){var rd=qd.e();fd.push(null===rd?null:rd)}yd=new (F(Us).c)(fd)}if(0<=I.w){var sd= -new (F(Yi).c)(I.w);I.ma(sd,0,2147483647);var sb=sd}else{var xc=null;xc=[];for(var Sb=rr(I).k();Sb.d();){var Ja=Sb.e();xc.push(null===Ja?null:Ja)}sb=new (F(Yi).c)(xc)}return new Dn(ta,yd,sb,S,D,O,K)}for(var ld=b.p(),bd=R(),zd=new (F(Us).c)(bd.i()),Zc=W().t,Dd=0;Zc.d();)zd.a[Dd]=Zc.e(),Dd=1+Dd|0;for(var Vd=R(),Wd=new (F(Yi).c)(Vd.i()),pe=W().t,ae=0;pe.d();)Wd.a[ae]=pe.e(),ae=1+ae|0;return new Dn(ld,zd,Wd,0,0,null,null)} +us){var Ka=Ea,Sa=Ka.Ry,Ca=Ka.Qy,Fa=Ka.Oy,Gb=Ka.Py,Hb=Ka.Ny;Os(a,Sa,Ca,h);oo(r,new Cn(Sa,Ca,Hb));var hc=H(new J,Fa,Gb);oo(I,hc);null!==K&&0>ca&&(ca=Sa)}else if(Ea instanceof qs){var Qb=Ea,Wa=Qb.lz,Ha=Qb.kz;if(3>a.Qa.Sc||a.Qa.Gn){var Ia=Ha.Hl,ma=(($d,ge)=>he=>{Os(a,$d,he.K,ge)})(Wa,h),pb=Ia.a.length,Qa=0;if(null!==Ia)for(;Qaoa&&(oa=Wa)}0<=D&&0>oa&&(oa=Wa)}else{var gb=a.Qa,tc=V().Xp,$b=R();gb.n(Wa,-1,tc,$b)}}else if(Ea instanceof os){var Db=Ea,ac=Db.Vy,jc=Db.Uy,oc=Db.Sy,pc=Db.Ty;if(3>a.Qa.Sc||a.Qa.Gn){var nb=jc.Hl,bc=(($d,ge)=>he=>{Os(a,$d,he.K,ge)})(ac,h),Eb=nb.a.length,Oa=0;if(null!==nb)for(;Oaca&&(ca=ac)}else{var Kb=a.Qa,mc=V().Xp, +hb=R();Kb.n(ac,-1,mc,hb)}}else if(Ea instanceof es){var ib=Ea.jz;if(3>a.Qa.Sc&&!a.Qa.Gn){var dc=a.Qa,vb=V().Li,Wb=R();dc.n(ib,-1,vb,Wb)}if(null!==O){var vc=a.Qa,Lb=V().wn,ec=R();vc.n(ib,-1,Lb,ec)}D=r.w}else if(Ea instanceof rs){var wc=Ea.iz;if(3>a.Qa.Sc&&!a.Qa.Gn){var Fb=a.Qa,Hc=V().Li,fc=R();Fb.n(wc,-1,Hc,fc)}S=r.w}else if(Ea instanceof hs){var Rb=Ea,Dc=Rb.qz,Xb=Rb.pz,gc=Rb.oz;Os(a,Dc,Xb,h);if(null===O&&-1===D)O=new Cn(Dc,Xb,gc);else{var xc=a.Qa,Mb=V().wn,Mc=R();xc.n(Dc,-1,Mb,Mc)}D=r.w}else if(Ea instanceof +ms){var qc=Ea,Ya=qc.$y,Uc=qc.Zy,jb=qc.Yy;Os(a,Ya,Uc,h);if(null===K)K=new Cn(Ya,Uc,jb);else{var Nc=a.Qa,Vc=V().wn,Ic=R();Nc.n(Ya,-1,Vc,Ic)}}else throw new G(Ea);sa=sa.Oa()}if(0<=oa){var Jc=a.Qa,Yb=oa,dd=V().fs,od=R();Jc.n(Yb,-1,dd,od)}if(0<=ca){var ad=a.Qa,pd=ca,Kc=V().ds,ed=R();ad.n(pd,-1,Kc,ed)}0>D&&(D=r.w);if(0<=r.w){var vd=new (F(Us).c)(r.w);r.ma(vd,0,2147483647);var yd=vd}else{var fd=null;fd=[];for(var qd=rr(r).k();qd.d();){var rd=qd.e();fd.push(null===rd?null:rd)}yd=new (F(Us).c)(fd)}if(0<=I.w){var sd= +new (F(Yi).c)(I.w);I.ma(sd,0,2147483647);var sb=sd}else{var yc=null;yc=[];for(var Sb=rr(I).k();Sb.d();){var Ja=Sb.e();yc.push(null===Ja?null:Ja)}sb=new (F(Yi).c)(yc)}return new Dn(ta,yd,sb,S,D,O,K)}for(var ld=b.p(),bd=R(),zd=new (F(Us).c)(bd.i()),Zc=W().t,Dd=0;Zc.d();)zd.a[Dd]=Zc.e(),Dd=1+Dd|0;for(var Vd=R(),Wd=new (F(Yi).c)(Vd.i()),pe=W().t,ae=0;pe.d();)Wd.a[ae]=pe.e(),ae=1+ae|0;return new Dn(ld,zd,Wd,0,0,null,null)} function Vs(a,b){var c=b.p(),d=mo(),e=R(),f=no(d,e);d=mo();e=R();var h=no(d,e);e=d=null;var k=-1;var m=-1;for(var r=b=Ms(a,b);!r.v();){var u=r.X();if(u instanceof Hs){var z=u;u=z.Ly;z=z.My;if(1k?k=z:!Ss(h)&&0>m&&(m=z);else if(u instanceof Ks)I=u,u=I.bz,z=I.az,I=I.cz,null!==e&&0>k&&(k=u),oo(h,new Ws(z.K,I));else if(u instanceof Fs)z=u,u=z.mz,z=z.nz,null===d?(d=z,null!==e&&(z=a.Qa, I=V().gs,D=R(),z.n(u,-1,I,D))):(z=a.Qa,I=V().Rp,D=R(),z.n(u,-1,I,D));else if(u instanceof Gs)z=u,u=z.Wy,z=z.Xy,null===e?e=z:(z=a.Qa,I=V().Rp,D=R(),z.n(u,-1,I,D));else throw new G(u);r=r.Oa()}0<=k&&(b=a.Qa,r=V().as,u=R(),b.n(k,-1,r,u));0<=m&&(a=a.Qa,k=V().es,b=R(),a.n(m,-1,k,b));if(0<=f.w)a=new (F(En).c)(f.w),f.ma(a,0,2147483647),f=a;else{a=[];for(f=rr(f).k();f.d();)m=f.e(),a.push(null===m?null:m);f=new (F(En).c)(a)}if(0<=h.w)a=new (F(Xs).c)(h.w),h.ma(a,0,2147483647),h=a;else{a=[];for(h=rr(h).k();h.d();)m= h.e(),a.push(null===m?null:m);h=new (F(Xs).c)(a)}return new rq(c,f,h,d,e)}function Ys(a,b){if(b.d()){var c=b.p(),d=Ns(a,b);if(ds(b,new Q([X().ea]))){var e=Ns(a,b);return ds(b,new Q([X().ea]))?new Bn(c,d,e,Ns(a,b)):new Bn(c,d,e,null)}return null===d?(a=a.Qa,b=V().yp,d=R(),a.n(c,-1,b,d)):new yn(c,d)}return null}E(Qs,"tigerpython.parser.parsing.ArgumentParser",{LV:1});function Zs(){this.Eh=null}Zs.prototype=new q;Zs.prototype.constructor=Zs;function $s(){}$s.prototype=Zs.prototype; @@ -328,11 +328,11 @@ function at(){this.Cd=null}at.prototype=new q;at.prototype.constructor=at;functi function mt(a,b,c){a.ts=b;a.zC=c;b=mo();c=R();a.rz=no(b,c);return a}function nt(){this.sz=this.rz=this.zC=this.ts=null}nt.prototype=new q;nt.prototype.constructor=nt;function ot(){}ot.prototype=nt.prototype;nt.prototype.p=function(){return this.ts.p()}; function pt(a){if(null!==a.sz){var b=a.rz;if(0<=b.w){var c=new (F(qt).c)(b.w);b.ma(c,0,2147483647)}else{c=[];for(b=rr(b).k();b.d();){var d=b.e();c.push(null===d?null:d)}c=new (F(qt).c)(c)}b=a.sz.JJ();Ci();d=1+c.a.length|0;Di(ja(qt),zf(ia(c)))?d=Ei(ja(qt))?Fi(0,c,d):Qf($f(),c,d,ja(F(qt))):(d=new (F(qt).c)(d),Mi(Ci(),c,0,d,0,c.a.length));Ui(Qh(),d,c.a.length,b);c=d}else if(b=a.rz,0<=b.w)c=new (F(qt).c)(b.w),b.ma(c,0,2147483647);else{c=[];for(b=rr(b).k();b.d();)d=b.e(),c.push(null===d?null:d);c=new (F(qt).c)(c)}return 0!== c.a.length?1===c.a.length?Oh(Ch(),c):new on(a.p(),c):new Xn(a.p())}nt.prototype.JJ=function(){return null!==this.ts&&null!==this.zC?(this.ts.Ko(this.zC,pt(this)),this.ts):null};E(nt,"tigerpython.parser.parsing.AstStack$StackItem",{FQ:1});function rt(a,b){return 0<=b&&b=d)break;else jr(e)?d=1+d|0:kr(e)&&(d=-1+d|0);b=1+b|0}return b} function Et(a,b,c){if((1+b|0)=c))for(c=f;;){f=a.ua.u(c).o;X().Ab===f?d=1+d|0:X().ib===f?d=-1+d|0:X().ea===f&&0===d&&(e=1+e|0);if(c===b)break;c=1+c|0}return 0b)return st(a,d,X().sa)}else if(X().tb===d&&(1+c|0)===b)if(d=rt(a,2+b|0),e=X().ld,d!==e){for(d=1+b|0;;)if(dc;){var h=a.ua.u(e).o;if(X().ea===h&&0 function Nt(a,b){var c=Bt(a,b),d=Bt(a,1+b|0),e=a.Ka.u(b).o,f=a.Ka.u(1+b|0).o,h=Ct(a,b);if(h=e))for(e=0;;){var h=e;if(ws(b,h)!==c[h])throw new iu(d,!1);if(e===f)break;e=1+e|0}d=!0}catch(u){if(u instanceof yr)if(c=u,c.Vb===d)d=c.mg();else throw c;else throw u;}if(d){var k=b.Sa,m=St(a,b);b.Q();var r=ks(a,b);r instanceof ju&&ls(a.ia,b,V().SF,new Q([m.K,r.Pr.K]));return new ju(k,m,r)}c=[X().S,X().S];d=Db();try{r=c.length|0;f=-1+r|0;if(!(0>=r))for(r=0;;){e=r;if(ws(b,e)!== -c[e])throw new iu(d,!1);if(r===f)break;r=1+r|0}r=!0}catch(u){if(u instanceof yr)if(r=u,r.Vb===d)r=r.mg();else throw r;else throw u;}if(r&&ku(b,1,X().ea))k=!0;else{d=[X().S,X().ea];r=Db();try{m=d.length|0;c=-1+m|0;if(!(0>=m))for(m=0;;){f=m;if(ws(b,f)!==d[f])throw new iu(r,!1);if(m===c)break;m=1+m|0}k=!0}catch(u){if(u instanceof yr)if(k=u,k.Vb===r)k=k.mg();else throw k;else throw u;}}if(k&&vr(X(),b.fa(),X().ps))return hu(a,b,!0);if(ss(b,new Q([X().bm]))&&!a.ia.uz)return Zt(b,X().S),ks(a,b);k=lu(a,b); -m=X().lc;!b.d()||b.fa().o!==m&&(vr(X(),b.fa(),m)&&1=e))for(e=0;;){var h=e;if(ws(b,h)!==c[h])throw new iu(d,!1);if(e===f)break;e=1+e|0}d=!0}catch(u){if(u instanceof yr)if(c=u,c.Vb===d)d=c.mg();else throw c;else throw u;}if(d){var k=b.Sa,m=St(a,b);b.Q();var r=ks(a,b);r instanceof ju&&ls(a.ia,b,V().SF,new Q([m.K,r.Pr.K]));return new ju(k,m,r)}c=[X().S,X().S];d=Cb();try{r=c.length|0;f=-1+r|0;if(!(0>=r))for(r=0;;){e=r;if(ws(b,e)!== +c[e])throw new iu(d,!1);if(r===f)break;r=1+r|0}r=!0}catch(u){if(u instanceof yr)if(r=u,r.Vb===d)r=r.mg();else throw r;else throw u;}if(r&&ku(b,1,X().ea))k=!0;else{d=[X().S,X().ea];r=Cb();try{m=d.length|0;c=-1+m|0;if(!(0>=m))for(m=0;;){f=m;if(ws(b,f)!==d[f])throw new iu(r,!1);if(m===c)break;m=1+m|0}k=!0}catch(u){if(u instanceof yr)if(k=u,k.Vb===r)k=k.mg();else throw k;else throw u;}}if(k&&vr(X(),b.fa(),X().ps))return hu(a,b,!0);if(ss(b,new Q([X().bm]))&&!a.ia.uz)return Zt(b,X().S),ks(a,b);k=lu(a,b); +m=X().lc;!b.d()||b.fa().o!==m&&(vr(X(),b.fa(),m)&&1a.ia.Sc||a.ia.IQ&&ss(c,new Q([X().bm,X().Qk,X().yG,X().Yu,X().Dn,X().mC,X().nC,X().$l,X().Hj,X().Yl,X().cm,X().Oi,X().Fj]))||ss(c,new Q([X().Ge,X().kC, +function tu(a,b){for(var c=uu(a,b);ss(b,new Q([X().yc,X().Gc]))&&null!==c;){var d=b.Q().o,e=fu().cf(d);if(ss(b,new Q([d])))if(1===b.Yi())var f=!0;else 1a.ia.Sc||a.ia.IQ&&ss(c,new Q([X().bm,X().Qk,X().yG,X().Zu,X().Dn,X().mC,X().nC,X().$l,X().Hj,X().Yl,X().cm,X().Ni,X().Fj]))||ss(c,new Q([X().Ge,X().kC, X().lC,X().Dn,X().mC,X().Ch,X().ps])))return d=c.Q(),d=new zo(d.A,d.ta),xu(a,new go(b.p(),zu(c),b,d),c);a.Fh.v()?d=!1:(d=dt(a.Fh),e=X().Wb,d=null===d?null===e:Ua(d,e));d?(d=ws(c,-2),e=ws(c,0),d=d===e):d=!1;if(d)return Bu(c),ls(a.ia,c,V().nq,new Q([".",","])),Zt(c,X().Aa),b;c.d()?(d=c.hc(),e=X().Hj,d=d===e):d=!1;if(d)return d=c.Q(),d=new zo(d.A,d.ta),xu(a,new go(b.p(),zu(c),b,d),c);c.d()&&c.hc().vg===X().ab?ls(a.ia,c,V().Rf,R()):ls(a.ia,c,V().Rd,R())}return b} -function yu(a,b){if(b.d()){var c=b.Q(),d=c.o;if(X().S===d){a:{if(ss(b,new Q([X().S]))&&!Pt(b)){var e=c.ta,f=b.fa().ta;var h=jp(a.iv);if(1>=Cu(h,e)||1>=Cu(h,f)){var k=Cu(h,""+e+f),m=Cu(h,e+"_"+f);var r=Cu(h,e+tb(Du(Lq(),f.charCodeAt(0)))+Pj(L(),f,1,f.length))>k?new T(e+tb(Du(Lq(),f.charCodeAt(0)))+Pj(L(),f,1,f.length)):k>m?new T(""+e+f):k=b.Sa)var fb=ws(b,1),ya=X().S,Ka=fb===ya;else Ka=!1;if(Ka){var Sa=!1,Ca=b.hc();a:{if(X().S===Ca&&(Sa=!0,Eu(b,new Q(["define","let","defun"])))){var Fa=a.ia,Hb=is(b),Ib=V().hi;Fa.n(Hb,-1,Ib,new Q(["Lisp"]));break a}if(Sa&&Eu(b,new Q(["defn","fn","ns","require","do"]))){var hc=a.ia,Qb=is(b),Wa=V().hi;hc.n(Qb,-1,Wa,new Q(["Clojure"]))}else if(X().qc===Ca||X().lc===Ca||X().Ch=== -Ca||X().ld===Ca){var Ha=a.ia,Ia=is(b),ma=V().hi;Ha.n(Ia,-1,ma,new Q(["Lisp"]))}}}var pb=a.Fh,Qa=X().Fa;et(pb,Qa);if(ss(b,new Q([X().Fn])))var Bc=Fu(a,b);else if(ss(b,new Q([X().sa]))){for(var Jc=b.p(),rc=R(),nc=new (F(En).c)(rc.i()),Rc=W().t,sc=0;Rc.d();)nc.a[sc]=Rc.e(),sc=1+sc|0;Bc=new Ho(Jc,nc)}else{var ic=Gu(a,b);if(ic instanceof xo){var mb=ic.Bu,Zb=ic.Pf;if(1===Zb.a.length)var Ub=Hu(b).o,gb=X().Aa,tc=Ub!==gb;else tc=!1;Bc=tc?Oh(Ch(),Zb):new Ho(mb,Zb)}else Bc=ic instanceof yo?new uo(ic.Au,ic.Ck, -ic.xh):ic}Cs(b,X().sa);kt(a.Fh);if(ss(b,new Q([X().Fa]))&&a.ia.rc&&!a.Fh.v()){var $b=a.ia,Eb=zu(b),ac=V().Ee,jc=R();$b.n(Eb,-1,ac,jc);Qt(b,X().Aa)}return Bc}if(X().Wb===d){var oc=a.Fh,pc=X().Wb;et(oc,pc);if(ss(b,new Q([X().fb]))){for(var nb=b.p(),bc=Is(b),Fb=R(),Oa=new (F(En).c)(Fb.i()),Ec=W().t,kc=0;Ec.d();)Oa.a[kc]=Ec.e(),kc=1+kc|0;var Xc=new xo(nb,bc,Oa)}else Xc=Gu(a,b);Cs(b,X().fb);kt(a.Fh);ss(b,new Q([X().Wb]))&&a.ia.rc&&!a.Fh.v()&&(ls(a.ia,b,V().Ee,R()),Qt(b,X().Aa));return Xc}if(X().Ab===d){if(ss(b, -new Q([X().ib]))){for(var Vb=b.Q(),Fc=Vb.A,uc=Vb.Rc,lc=R(),cc=new (F(En).c)(lc.i()),Ab=W().t,yb=0;Ab.d();)cc.a[yb]=Ab.e(),yb=1+yb|0;for(var Lb=R(),mc=new (F(En).c)(Lb.i()),hb=W().t,ib=0;hb.d();)mc.a[ib]=hb.e(),ib=1+ib|0;return new ro(Fc,uc,cc,mc)}var dc=a.Fh,vb=X().Ab;et(dc,vb);var Wb=Iu(a,b);Cs(b,X().ib);kt(a.Fh);return Wb}if(X().fv===d){var vc=Ju(a,b,!0);Cs(b,X().fv);Ku();for(var Mb=c.A,ec=b.p(),wc=new zo(Mb,"repr"),Gb=R(),Gc=new (F(Xs).c)(Gb.i()),fc=W().t,Rb=0;fc.d();)Gc.a[Rb]=fc.e(),Rb=1+Rb|0; -return new ko(Mb,ec,wc,vc,Gc,null,null)}if(X().sa===d||X().ib===d||X().fb===d){var Cc=a.ia,Xb=c.A,gc=V().Li;return Cc.n(Xb,-1,gc,new Q([c]))}if(X().xf===d)return ls(a.ia,b,V().wy,R());var wb=b.hc();if(X().Ib===wb||X().am===wb||X().kd===wb||X().Qc===wb||X().Uf===wb||X().Bd===wb||X().ns===wb||X().Fa===wb||X().Wb===wb||X().Ab===wb||X().S===wb){var Yc=a.ia,Kc=c.A,qc=V().Pb;Yc.n(Kc,-1,qc,new Q([c]));return yu(a,b)}if((X().yc===wb||X().Gc===wb)&&Ut(b,new Q([X().Ib,X().kd]))){var Ya=a.ia,Sc=c.A,jb=V().Pb; -Ya.n(Sc,-1,jb,new Q([c]));return wu(a,b)}if(c.o.vg===X().ab){if(Lu(b,0)===X().yf){var Lc=a.ia,Tc=c.A,Hc=V().Rf;Lc.n(Tc,-1,Hc,new Q([zs(c)]));return new zo(c.A,zs(c))}var Ic=a.ia,Yb=c.A,dd=V().Mk;return Ic.n(Yb,-1,dd,new Q([zs(c)]))}var od=a.ia,ad=c.A,pd=V().Lk;return od.n(ad,-1,pd,new Q([c]))}return ls(a.ia,b,V().Ej,R())} -function Gu(a,b){var c=b.fa().A,d=b.hc(),e=X().Aa;d===e?(ls(a.ia,b,V().wy,R()),d=new Mu(b.p())):d=ks(a,b);if(ss(b,new Q([X().tb])))return a=Js(a,b),new yo(c,Is(b),d,a);if(ss(b,new Q([X().S]))){e=ws(b,1);var f=X().S;e=e===f}else e=!1;if(e&&vr(X(),b.fa(),X().tb))return ls(a.ia,b,V().Pc,new Q([b.fa(),"for"])),Zt(b,X().tb),a=Js(a,b),new yo(c,Is(b),d,a);if(ss(b,new Q([X().Iy])))return ls(a.ia,b,V().VB,new Q([d.j()])),b.Q(),ks(a,b);if(b.d()){for(d=no(mo(),new Q([d]));b.d()&&!Nu(b);){if(b.hc().vg===X().Ad){if(Ss(d)){for(ls(a.ia, -b,V().Jk,R());b.d()&&!Nu(b);)b.Q();b=Is(b);if(0<=d.w)a=new (F(En).c)(d.w),d.ma(a,0,2147483647);else{a=[];for(d=rr(d).k();d.d();)e=d.e(),a.push(null===e?null:e);a=new (F(En).c)(a)}return new xo(c,b,a)}ls(a.ia,b,V().en,R());b.Q();e=d.$i(-1+d.w|0);e=du(eu(),e.p(),e,fu().Ll,ks(a,b));oo(d,e)}else if(ds(b,new Q([X().xf]))){e=a.ia;f=is(b);var h=V().ZB;e.n(f,-1,h,new Q([";",","]))}else ds(b,new Q([X().Aa]))||ls(a.ia,b,V().Bj,R());js(a,b)?(e=ks(a,b),oo(d,e)):ss(b,new Q([X().Aa]))||Nu(b)||Ou(b)}b=Is(b);if(0<= +function yu(a,b){if(b.d()){var c=b.Q(),d=c.o;if(X().S===d){a:{if(ss(b,new Q([X().S]))&&!Pt(b)){var e=c.ta,f=b.fa().ta;var h=jp(a.jv);if(1>=Cu(h,e)||1>=Cu(h,f)){var k=Cu(h,""+e+f),m=Cu(h,e+"_"+f);var r=Cu(h,e+tb(Du(Lq(),f.charCodeAt(0)))+Pj(L(),f,1,f.length))>k?new T(e+tb(Du(Lq(),f.charCodeAt(0)))+Pj(L(),f,1,f.length)):k>m?new T(""+e+f):k=b.Sa)var fb=ws(b,1),ya=X().S,Ka=fb===ya;else Ka=!1;if(Ka){var Sa=!1,Ca=b.hc();a:{if(X().S===Ca&&(Sa=!0,Eu(b,new Q(["define","let","defun"])))){var Fa=a.ia,Gb=is(b),Hb=V().hi;Fa.n(Gb,-1,Hb,new Q(["Lisp"]));break a}if(Sa&&Eu(b,new Q(["defn","fn","ns","require","do"]))){var hc=a.ia,Qb=is(b),Wa=V().hi;hc.n(Qb,-1,Wa,new Q(["Clojure"]))}else if(X().qc===Ca||X().lc===Ca||X().Ch=== +Ca||X().ld===Ca){var Ha=a.ia,Ia=is(b),ma=V().hi;Ha.n(Ia,-1,ma,new Q(["Lisp"]))}}}var pb=a.Fh,Qa=X().Fa;et(pb,Qa);if(ss(b,new Q([X().Fn])))var Cc=Fu(a,b);else if(ss(b,new Q([X().sa]))){for(var Lc=b.p(),rc=R(),nc=new (F(En).c)(rc.i()),Tc=W().t,sc=0;Tc.d();)nc.a[sc]=Tc.e(),sc=1+sc|0;Cc=new Ho(Lc,nc)}else{var ic=Gu(a,b);if(ic instanceof xo){var mb=ic.Bu,Zb=ic.Pf;if(1===Zb.a.length)var Ub=Hu(b).o,gb=X().Aa,tc=Ub!==gb;else tc=!1;Cc=tc?Oh(Ch(),Zb):new Ho(mb,Zb)}else Cc=ic instanceof yo?new uo(ic.Au,ic.Ck, +ic.xh):ic}Cs(b,X().sa);kt(a.Fh);if(ss(b,new Q([X().Fa]))&&a.ia.rc&&!a.Fh.v()){var $b=a.ia,Db=zu(b),ac=V().Ee,jc=R();$b.n(Db,-1,ac,jc);Qt(b,X().Aa)}return Cc}if(X().Wb===d){var oc=a.Fh,pc=X().Wb;et(oc,pc);if(ss(b,new Q([X().fb]))){for(var nb=b.p(),bc=Is(b),Eb=R(),Oa=new (F(En).c)(Eb.i()),Fc=W().t,kc=0;Fc.d();)Oa.a[kc]=Fc.e(),kc=1+kc|0;var Yc=new xo(nb,bc,Oa)}else Yc=Gu(a,b);Cs(b,X().fb);kt(a.Fh);ss(b,new Q([X().Wb]))&&a.ia.rc&&!a.Fh.v()&&(ls(a.ia,b,V().Ee,R()),Qt(b,X().Aa));return Yc}if(X().Ab===d){if(ss(b, +new Q([X().ib]))){for(var Vb=b.Q(),Gc=Vb.A,uc=Vb.Rc,lc=R(),cc=new (F(En).c)(lc.i()),zb=W().t,xb=0;zb.d();)cc.a[xb]=zb.e(),xb=1+xb|0;for(var Kb=R(),mc=new (F(En).c)(Kb.i()),hb=W().t,ib=0;hb.d();)mc.a[ib]=hb.e(),ib=1+ib|0;return new ro(Gc,uc,cc,mc)}var dc=a.Fh,vb=X().Ab;et(dc,vb);var Wb=Iu(a,b);Cs(b,X().ib);kt(a.Fh);return Wb}if(X().gv===d){var vc=Ju(a,b,!0);Cs(b,X().gv);Ku();for(var Lb=c.A,ec=b.p(),wc=new zo(Lb,"repr"),Fb=R(),Hc=new (F(Xs).c)(Fb.i()),fc=W().t,Rb=0;fc.d();)Hc.a[Rb]=fc.e(),Rb=1+Rb|0; +return new ko(Lb,ec,wc,vc,Hc,null,null)}if(X().sa===d||X().ib===d||X().fb===d){var Dc=a.ia,Xb=c.A,gc=V().Vu,xc=R();return Dc.n(Xb,-1,gc,xc)}if(X().xf===d||X().ea===d)return ls(a.ia,b,V().Vu,R());var Mb=b.hc();if(X().Ib===Mb||X().am===Mb||X().kd===Mb||X().Qc===Mb||X().Uf===Mb||X().Bd===Mb||X().ns===Mb||X().Fa===Mb||X().Wb===Mb||X().Ab===Mb||X().S===Mb){var Mc=a.ia,qc=c.A,Ya=V().Pb;Mc.n(qc,-1,Ya,new Q([c]));return yu(a,b)}if((X().yc===Mb||X().Gc===Mb)&&Ut(b,new Q([X().Ib,X().kd]))){var Uc=a.ia,jb=c.A, +Nc=V().Pb;Uc.n(jb,-1,Nc,new Q([c]));return wu(a,b)}if(c.o.vg===X().ab){if(Lu(b,0)===X().yf){var Vc=a.ia,Ic=c.A,Jc=V().Rf;Vc.n(Ic,-1,Jc,new Q([zs(c)]));return new zo(c.A,zs(c))}var Yb=a.ia,dd=c.A,od=V().Mk;return Yb.n(dd,-1,od,new Q([zs(c)]))}var ad=a.ia,pd=c.A,Kc=V().Lk;return ad.n(pd,-1,Kc,new Q([c]))}return ls(a.ia,b,V().Ej,R())} +function Gu(a,b){var c=b.fa().A,d=b.hc(),e=X().Aa;d===e?(ls(a.ia,b,V().Vu,R()),d=new Mu(b.p())):d=ks(a,b);if(ss(b,new Q([X().tb])))return a=Js(a,b),new yo(c,Is(b),d,a);if(ss(b,new Q([X().S]))){e=ws(b,1);var f=X().S;e=e===f}else e=!1;if(e&&vr(X(),b.fa(),X().tb))return ls(a.ia,b,V().Pc,new Q([b.fa(),"for"])),Zt(b,X().tb),a=Js(a,b),new yo(c,Is(b),d,a);if(ss(b,new Q([X().Iy])))return ls(a.ia,b,V().VB,new Q([d.j()])),b.Q(),ks(a,b);if(b.d()){for(d=no(mo(),new Q([d]));b.d()&&!Nu(b);){if(b.hc().vg===X().Ad){if(Ss(d)){for(ls(a.ia, +b,V().Jk,R());b.d()&&!Nu(b);)b.Q();b=Is(b);if(0<=d.w)a=new (F(En).c)(d.w),d.ma(a,0,2147483647);else{a=[];for(d=rr(d).k();d.d();)e=d.e(),a.push(null===e?null:e);a=new (F(En).c)(a)}return new xo(c,b,a)}ls(a.ia,b,V().en,R());b.Q();e=d.Zi(-1+d.w|0);e=du(eu(),e.p(),e,fu().Ll,ks(a,b));oo(d,e)}else if(ds(b,new Q([X().xf]))){e=a.ia;f=is(b);var h=V().ZB;e.n(f,-1,h,new Q([";",","]))}else ds(b,new Q([X().Aa]))||ls(a.ia,b,V().Bj,R());js(a,b)?(e=ks(a,b),oo(d,e)):ss(b,new Q([X().Aa]))||Nu(b)||Ou(b)}b=Is(b);if(0<= d.w)a=new (F(En).c)(d.w),d.ma(a,0,2147483647);else{a=[];for(d=rr(d).k();d.d();)e=d.e(),a.push(null===e?null:e);a=new (F(En).c)(a)}return new xo(c,b,a)}return new xo(c,Is(b),new (F(En).c)([d]))} -function Iu(a,b){var c=b.p();if(ds(b,new Q([X().Zu]))){if(3>a.ia.Sc&&!a.ia.Gn){var d=a.ia,e=V().Mi,f=R();d.n(c,-1,e,f)}d=new Jo(is(b),Ts().Hk);e=!0}else d=ks(a,b),e=ds(b,new Q([X().ea]));if(e){f=[X().Qc,X().Qc,X().ea];e=Db();try{var h=f.length|0,k=-1+h|0;if(!(0>=h))for(h=0;;){var m=h;if(ws(b,m)!==f[m])throw new iu(e,!1);if(h===k)break;h=1+h|0}h=!0}catch(I){if(I instanceof yr)if(h=I,h.Vb===e)h=h.mg();else throw h;else throw I;}h&&(h=a.ia,e=au(b,1).A,f=V().Ee,k=R(),h.n(e,-1,f,k),fv(b));e=ks(a,b);if(ss(b, -new Q([X().tb])))return a=Js(a,b),new so(c,Is(b),d,e,a);ss(b,new Q([X().S]))?(h=ws(b,1),f=X().S,h=h===f):h=!1;if(h&&vr(X(),b.fa(),X().tb))return ls(a.ia,b,V().Pc,new Q([b.fa(),"for"])),Zt(b,X().tb),a=Js(a,b),new so(c,Is(b),d,e,a);h=no(mo(),new Q([d]));for(d=no(mo(),new Q([e]));b.d()&&!Nu(b);)if(Cs(b,X().Aa),f=b.p(),ds(b,new Q([X().Zu])))3>a.ia.Sc&&!a.ia.Gn&&(e=a.ia,k=V().Mi,m=R(),e.n(f,-1,k,m)),gv(Mt(),b,a.ia)?(e=new Jo(is(b),Ts().Hk),oo(h,e),e=As(a,b),oo(d,e)):(e=a.ia,k=V().qn,m=R(),e.n(f,-1,k,m)); -else if(e=js(a,b)?ks(a,b):null,!ss(b,new Q([X().ib])))if(Cs(b,X().ea),js(a,b)){k=[X().Qc,X().Qc,X().ea];f=Db();try{var r=k.length|0;m=-1+r|0;if(!(0>=r))for(var u=0;;){var z=u;if(ws(b,z)!==k[z])throw new iu(f,!1);if(u===m)break;u=1+u|0}f=!0}catch(I){if(I instanceof yr)if(k=I,k.Vb===f)f=k.mg();else throw k;else throw I;}f&&(f=a.ia,k=au(b,1).A,m=V().Ee,u=R(),f.n(k,-1,m,u),fv(b));oo(h,e);e=ks(a,b);oo(d,e)}else e=a.ia,k=V().qn,m=R(),e.n(f,-1,k,m),ss(b,new Q([X().Aa,X().ib]))||Ou(b);b=Is(b);if(0<=h.w)a= +function Iu(a,b){var c=b.p();if(ds(b,new Q([X().$u]))){if(3>a.ia.Sc&&!a.ia.Gn){var d=a.ia,e=V().Li,f=R();d.n(c,-1,e,f)}d=new Jo(is(b),Ts().Hk);e=!0}else d=ks(a,b),e=ds(b,new Q([X().ea]));if(e){f=[X().Qc,X().Qc,X().ea];e=Cb();try{var h=f.length|0,k=-1+h|0;if(!(0>=h))for(h=0;;){var m=h;if(ws(b,m)!==f[m])throw new iu(e,!1);if(h===k)break;h=1+h|0}h=!0}catch(I){if(I instanceof yr)if(h=I,h.Vb===e)h=h.mg();else throw h;else throw I;}h&&(h=a.ia,e=au(b,1).A,f=V().Ee,k=R(),h.n(e,-1,f,k),fv(b));e=ks(a,b);if(ss(b, +new Q([X().tb])))return a=Js(a,b),new so(c,Is(b),d,e,a);ss(b,new Q([X().S]))?(h=ws(b,1),f=X().S,h=h===f):h=!1;if(h&&vr(X(),b.fa(),X().tb))return ls(a.ia,b,V().Pc,new Q([b.fa(),"for"])),Zt(b,X().tb),a=Js(a,b),new so(c,Is(b),d,e,a);h=no(mo(),new Q([d]));for(d=no(mo(),new Q([e]));b.d()&&!Nu(b);)if(Cs(b,X().Aa),f=b.p(),ds(b,new Q([X().$u])))3>a.ia.Sc&&!a.ia.Gn&&(e=a.ia,k=V().Li,m=R(),e.n(f,-1,k,m)),gv(Mt(),b,a.ia)?(e=new Jo(is(b),Ts().Hk),oo(h,e),e=As(a,b),oo(d,e)):(e=a.ia,k=V().qn,m=R(),e.n(f,-1,k,m)); +else if(e=js(a,b)?ks(a,b):null,!ss(b,new Q([X().ib])))if(Cs(b,X().ea),js(a,b)){k=[X().Qc,X().Qc,X().ea];f=Cb();try{var r=k.length|0;m=-1+r|0;if(!(0>=r))for(var u=0;;){var z=u;if(ws(b,z)!==k[z])throw new iu(f,!1);if(u===m)break;u=1+u|0}f=!0}catch(I){if(I instanceof yr)if(k=I,k.Vb===f)f=k.mg();else throw k;else throw I;}f&&(f=a.ia,k=au(b,1).A,m=V().Ee,u=R(),f.n(k,-1,m,u),fv(b));oo(h,e);e=ks(a,b);oo(d,e)}else e=a.ia,k=V().qn,m=R(),e.n(f,-1,k,m),ss(b,new Q([X().Aa,X().ib]))||Ou(b);b=Is(b);if(0<=h.w)a= new (F(En).c)(h.w),h.ma(a,0,2147483647);else{a=[];for(r=rr(h).k();r.d();)h=r.e(),a.push(null===h?null:h);a=new (F(En).c)(a)}if(0<=d.w)r=new (F(En).c)(d.w),d.ma(r,0,2147483647);else{r=[];for(d=rr(d).k();d.d();)h=d.e(),r.push(null===h?null:h);r=new (F(En).c)(r)}return new ro(c,b,a,r)}if(ss(b,new Q([X().tb])))return new Do(c,d,Js(a,b));b.d()&&vr(X(),b.fa(),X().tb)?(r=ws(b,1),h=X().S,r=r===h):r=!1;if(r)return ls(a.ia,b,V().Pc,new Q([b.fa(),"for"])),Zt(b,X().tb),new Do(c,d,Js(a,b));for(r=no(mo(),new Q([d]));b.d()&& !Nu(b);)Cs(b,X().Aa),js(a,b)?(d=ks(a,b),oo(r,d)):Nu(b)||ss(b,new Q([X().Aa]))||Ou(b);if(0<=r.w)b=new (F(En).c)(r.w),r.ma(b,0,2147483647);else{b=[];for(a=rr(r).k();a.d();)r=a.e(),b.push(null===r?null:r);b=new (F(En).c)(b)}return new Co(c,b)}function hv(a,b){return ss(b,new Q([X().ps]))?hu(a,b,!1):lu(a,b)} function Js(a,b){var c=mo(),d=R();for(c=no(c,d);ds(b,new Q([X().tb]));){d=cu(a,b);Cs(b,X().ld);var e=a,f=b;if(f.d()){var h=f.p();var k=mo(),m=R();k=no(k,m);m=hv(e,f);for(oo(k,m);ds(f,new Q([X().Aa]));)m=hv(e,f),oo(k,m);if(1===k.w)h=dt(k);else{if(0<=k.w)e=new (F(En).c)(k.w),k.ma(e,0,2147483647);else{e=[];for(f=rr(k).k();f.d();)k=f.e(),e.push(null===k?null:k);e=new (F(En).c)(e)}h=new Ho(h,e)}}else h=null;e=mo();f=R();for(f=no(e,f);ds(b,new Q([X().lc]));)e=hv(a,b),oo(f,e);e=d.p();if(0<=f.w)k=new (F(En).c)(f.w), f.ma(k,0,2147483647),f=k;else{k=[];for(f=rr(f).k();f.d();)m=f.e(),k.push(null===m?null:m);f=new (F(En).c)(k)}oo(c,new sq(e,d,h,f))}if(0<=c.w)return a=new (F(iv).c)(c.w),c.ma(a,0,2147483647),a;a=[];for(b=rr(c).k();b.d();)c=b.e(),a.push(null===c?null:c);return new (F(iv).c)(a)} -function hu(a,b,c){var d=b.fa().A;Cs(b,X().ps);if(ss(b,new Q([X().ea]))){jv||(jv=new kv);var e=b.p();var f=R();f=new (F(Us).c)(f.i());for(var h=W().t,k=0;h.d();)f.a[k]=h.e(),k=1+k|0;h=R();h=new (F(Yi).c)(h.i());k=W().t;for(var m=0;k.d();)h.a[m]=k.e(),m=1+m|0;e=new Dn(e,f,h,0,0,null,null)}else e=Rs(a.iv.Jn,b,!1);return Cs(b,X().ea)?c?new wo(d,e,ks(a,b)):new wo(d,e,lu(a,b)):null} +function hu(a,b,c){var d=b.fa().A;Cs(b,X().ps);if(ss(b,new Q([X().ea]))){jv||(jv=new kv);var e=b.p();var f=R();f=new (F(Us).c)(f.i());for(var h=W().t,k=0;h.d();)f.a[k]=h.e(),k=1+k|0;h=R();h=new (F(Yi).c)(h.i());k=W().t;for(var m=0;k.d();)h.a[m]=k.e(),m=1+m|0;e=new Dn(e,f,h,0,0,null,null)}else e=Rs(a.jv.Jn,b,!1);return Cs(b,X().ea)?c?new wo(d,e,ks(a,b)):new wo(d,e,lu(a,b)):null} function bu(a,b){var c=mo(),d=R();c=no(c,d);d=As(a,b);for(oo(c,d);ds(b,new Q([X().Aa]));)gv(Mt(),b,a.ia)&&(d=As(a,b),oo(c,d));if(0<=c.w)return a=new (F(En).c)(c.w),c.ma(a,0,2147483647),a;a=[];for(b=rr(c).k();b.d();)c=b.e(),a.push(null===c?null:c);return new (F(En).c)(a)}function cu(a,b){if(b.d()){var c=b.fa().A;a=bu(a,b);return null===a?null:1===a.a.length?Oh(Ch(),a):new Ho(c,a)}c=b.Ra();a=R();a=new (F(En).c)(a.i());b=W().t;for(var d=0;b.d();)a.a[d]=b.e(),d=1+d|0;return new Ho(c,a)} -function Ju(a,b,c){var d=mo(),e=R();d=no(d,e);e=ks(a,b);for(oo(d,e);ds(b,new Q([X().Aa]));)js(a,b)&&(e=ks(a,b),oo(d,e));if(c=c&&b.d()&&js(a,b)&&!ss(b,new Q([X().fv])))c=lv(mv(),d),1===c.i()?(c=c.X(),c instanceof ko&&ss(b,new Q([X().Ab]))?(c=c.me,c=c instanceof zo&&"switch"===c.K):c=c instanceof zo?"print"===c.K:!1):c=!1,c=!c;if(c){if(!Ss(d)&&ss(b,new Q([X().Ib,X().kd,X().Qc])))a:{if(c=tt(d),c instanceof zo){c=c.K;e=jp(a.iv).Dy.jb(c);if(e instanceof T)c=0>24&&0===(1&a.Pq)<<24>>24&&(a.FO=RegExp("^[\\x00-\\x20]*([+-]?(?:NaN|Infinity|(?:\\d+\\.?\\d*|\\.\\d+)(?:[eE][+-]?\\d+)?)[fFdD]?)[\\x00-\\x20]*$"),a.Pq=(1|a.Pq)<<24>>24);c=a.FO.exec(b);if(null!==c)b=+parseFloat(c[1]);else{0===(2&a.Pq)<<24>>24&&0===(2&a.Pq)<<24>>24&&(a.EO=RegExp("^[\\x00-\\x20]*([+-]?)0[xX]([0-9A-Fa-f]*)\\.?([0-9A-Fa-f]*)[pP]([+-]?\\d+)[fFdD]?[\\x00-\\x20]*$"),a.Pq=(2|a.Pq)<<24>>24);var e= a.EO.exec(b);null===e&&uv(b);a=e[1];c=e[2];d=e[3];e=e[4];""===c&&""===d&&uv(b);b=vv(0,c,d,e,15);b="-"===a?-b:b}return b}d=Ts().Ji;if(null===d?null===c:d.b(c))return ek(fk(),b.Hi,10);throw new wv(a);}function xv(a,b){yv||(yv=new zv);a=pt(a.BG.Tk.AG);var c=Av().wz,d=Bv(new Cv,"");c=new Dv(-1,d,c);null!==a&&(new Ev(c)).G(a);return c.mt(b)}function Fv(a,b){return""!==b&&0{Iv(a,z,c,d,e,f)},m=h.a.length,r=0,null!==h)for(;r=e){var sa=a.cb,Ea=V().Ki,ab=R();sa.n(b,-1,Ea,ab)}}else{var Ta=fu().Nl;if(null===Ta?null===d:Ta.b(d)){if(c>e){var db=a.cb,fb=V().Ki,ya= -R();db.n(b,-1,fb,ya)}}else{var Ka=fu().yj;if(null===Ka?null===d:Ka.b(d)){if(c<=e){var Sa=a.cb,Ca=V().Ki,Fa=R();Sa.n(b,-1,Ca,Fa)}}else{var Hb=fu().Ml;if((null===Hb?null===d:Hb.b(d))&&c>24&&0===(2&a.Kn)<<24>>24&&(a.HG=new Uv(a.lv,jp(a),a.r),a.Kn=(2|a.Kn)<<24>>24);return a.HG}function Vv(a){return a instanceof jo&&!0===a.yk?!0:!1} +function Qv(a,b,c,d,e){try{var f=fu().Ll;if(null===f?null===d:f.b(d))if(c!==e){var h=a.cb,k=V().Ki,m=R();h.n(b,-1,k,m)}else{var r=a.cb,u=V().bn,z=R();r.n(b,-1,u,z)}else{var I=fu().Wm;if(null===I?null===d:I.b(d))if(c===e){var D=a.cb,S=V().Ki,O=R();D.n(b,-1,S,O)}else{var K=a.cb,oa=V().bn,ca=R();K.n(b,-1,oa,ca)}else{var ta=fu().yj;if(null===ta?null===d:ta.b(d)){if(c>=e){var sa=a.cb,Ea=V().Ki,ab=R();sa.n(b,-1,Ea,ab)}}else{var Ta=fu().Nl;if(null===Ta?null===d:Ta.b(d)){if(c>e){var db=a.cb,fb=V().Ki,ya= +R();db.n(b,-1,fb,ya)}}else{var Ka=fu().xj;if(null===Ka?null===d:Ka.b(d)){if(c<=e){var Sa=a.cb,Ca=V().Ki,Fa=R();Sa.n(b,-1,Ca,Fa)}}else{var Gb=fu().Ml;if((null===Gb?null===d:Gb.b(d))&&c>24&&0===(2&a.Kn)<<24>>24&&(a.HG=new Uv(a.mv,jp(a),a.r),a.Kn=(2|a.Kn)<<24>>24);return a.HG}function Vv(a){return a instanceof jo&&!0===a.yk?!0:!1} var Xv=function Wv(a,b){for(;;){if(b instanceof on){b=b.jd;a:{for(var d=0;d=hb))for(var dc=0;;){var vb=dc;if(b.M.a[vb].o!==Lb[vb])throw new iu(mc, -!1);if(dc===ib)break;dc=1+dc|0}var Wb=!0}else Wb=!1}catch(vh){if(vh instanceof yr){var vc=vh;if(vc.Vb===mc)Wb=vc.mg();else throw vc;}else throw vh;}}else Wb=!1;else Wb=!1;if(Wb){var Mb=a.r,ec=b.va,wc=V().Pc;Mb.n(ec,-1,wc,new Q(["del","def"]));gw(b,X().qc);return hw(a,b,c)}if(fw(b)){var Gb=Zv(b),Gc=X().S;if(Gb===Gc)var fc=!0;else{var Rb=Zv(b);if(X().lc===Rb||X().ne===Rb||X().tb===Rb||X().Pi===Rb||X().ug===Rb)fc=!0;else{if(3<=b.M.a.length)var Cc=Sh(Ch(),b.M).o,Xb=X().ea,gc=Cc===Xb;else gc=!1;if(gc){var wb= -b.M.a[1].o;fc=X().lc===wb?!0:X().ne===wb?!0:X().tb===wb?!0:X().Pi===wb?!0:X().ug===wb}else fc=!1}}if(fc)var Yc=Sh(Ch(),b.M).o,Kc=X().ea,qc=Yc===Kc;else qc=!1;if(qc){var Ya=zs(Oh(Ch(),b.M)),Sc=lr(b.M.a[1].o)||"ef"===Ya?up():wr(X(),Ya,new Q([X().tb,X().qc]));if(!Sc.v()){var jb=Sc.kb();if(X().tb===jb)if(0<=Ya.length&&"for"===Ya.substring(0,3))var Lc=b.M.a[1].o,Tc=X().ld,Hc=Lc===Tc;else Hc=!1;else Hc=!1;if(Hc){var Ic=a.r,Yb=3+b.va|0,dd=V().Sf,od=R();Ic.n(Yb,-1,dd,od);var ad=mo(),pd=R(),Uc=no(ad,pd),ed= -b.M.a[0],vd=new vt(ed.A,3,X().tb);oo(Uc,vd);var yd=aw(bw(),3+ed.A|0,ed.ta.substring(3));oo(Uc,yd);var fd=mn(nj(),Yh(Ch(),b.M,1));ov(Uc,fd);if(0<=Uc.w){var qd=new (F(vw).c)(Uc.w);Uc.ma(qd,0,2147483647);var rd=qd}else{var sd=null;sd=[];for(var sb=rr(Uc).k();sb.d();){var xc=sb.e();sd.push(null===xc?null:xc)}rd=new (F(vw).c)(sd)}return hw(a,new dw(b.va,b.Qb,b.Dd,rd,b.vb,b.pe,b.oe),R())}if(X().qc===jb||X().Ge===jb||X().lc===jb||X().Gj===jb||X().ne===jb||X().tb===jb||X().Bh===jb||X().Pi===jb||X().wq=== -jb||X().Hj===jb||X().Oi===jb||X().Fj===jb){var Sb=jb.Ij;if(0<=Ya.length&&Ya.substring(0,Sb.length)===Sb){var Ja=jb.Ij.length,ld=ak(L(),Ya,Ja);if(""===ld&&"repeat"===Ya){var bd=a.r,zd=ww(b),Zc=V().NL,Dd=R();bd.n(zd,-1,Zc,Dd);var Vd=b.M,Wd=b.M.a[0],pe=X().Hj;Vd.a[0]=new vt(Wd.A,Wd.We,pe);return hw(a,b,R())}if(""!==ld)a:{for(var ae=0,$d=ld.length;ae<$d;){if(!Zq(Lq(),ld.charCodeAt(ae))){var ge=!1;break a}ae=1+ae|0}ge=!0}else ge=!1;if(ge){var he=a.r,Oe=ww(b)+Ja|0,kf=V().Sf,Df=R();he.n(Oe,-1,kf,Df);var Pe= +!(0<=sa)}if(Ea){if(2<=b.M.a.length)var ab=b.M.a[1].o,Ta=X().S,db=ab===Ta;else db=!1;if(db)if(2===b.M.a.length)var fb=!0;else{var ya=b.M.a[2].o;fb=cp(new Q([X().zd,X().Wb,X().Aa]),ya)}else fb=!1;if(fb){var Ka=a.r,Sa=b.va,Ca=V().Pc;Ka.n(Sa,-1,Ca,new Q(["def","del"]));gw(b,X().Dn);return hw(a,b,c)}var Fa=a.r,Gb=b.va,Hb=V().Pb;Fa.n(Gb,-1,Hb,new Q(["def"]));var hc=Wh(Ch(),b.M);return hw(a,new dw(b.va,b.Qb,b.Dd,hc,b.vb,b.pe,b.oe),c)}return new (F(qt).c)([iw(a,b)])}if(X().ug===O){if(2<=b.M.a.length){var Qb= +b.M.a[1].o;if(X().qc===Qb)return new (F(qt).c)([iw(a,b)]);if(X().tb===Qb)return new (F(qt).c)([jw(a,b,c)]);if(X().wq===Qb)return new (F(qt).c)([kw(a,b)]);if(X().sb===Qb){var Wa=a.r,Ha=b.va,Ia=V().Rf;Wa.n(Ha,-1,Ia,new Q(["async"]));var ma=b.M,pb=b.M.a[0],Qa=X().S;ma.a[0]=new vt(pb.A,pb.We,Qa);return hw(a,b,c)}$v(a.r,b.M,V().op,R());var Cc=Yh(Ch(),b.M,1);return hw(a,new dw(b.va,b.Qb,b.Dd,Cc,b.vb,b.pe,b.oe),c)}return $v(a.r,b.M,V().Mk,new Q(["async"]))}if(X().lc===O)return new (F(qt).c)([lw(a,b,c)]); +if(X().ne===O)return new (F(qt).c)([mw(a,b,c)]);if(X().tb===O)return new (F(qt).c)([jw(a,b,c)]);if(X().rs===O&&ku(nw(b),1,X().ld)&&fw(b)&&nw(b).il()){var Lc=a.r,rc=b.va,nc=V().Pc;Lc.n(rc,-1,nc,new Q(["or","for"]));Zt(nw(b),X().tb);return new (F(qt).c)([jw(a,b,c)])}if(X().Hj===O)return new (F(qt).c)([ow(a,b)]);if(X().Ni===O&&(fw(b)||b.il()))return new (F(qt).c)([pw(a,b)]);if(X().Fj===O&&qw(b))return new (F(qt).c)([rw(a,b)]);if(X().wq===O)return new (F(qt).c)([kw(a,b)]);if(X().Oi===O)return new (F(qt).c)([sw(a, +b,c)]);if(X().rq===O)return new (F(qt).c)([tw(a,b,c)]);if(X().Bh===O||X().Gj===O)if(null!==b.BC&&fw(b.BC))var Tc=Zv(Sh(Ch(),b.BC.vb)),sc=cp(new Q([X().lc,X().ne,X().Oi,X().tb,X().Gj]),Tc);else sc=!1;else sc=!1;if(sc){$v(a.r,b.M,V().wp,new Q(["else"]));for(var ic=R(),mb=new (F(qt).c)(ic.i()),Zb=W().t,Ub=0;Zb.d();)mb.a[Ub]=Zb.e(),Ub=1+Ub|0;return mb}if(X().Bh===O){if(null!==b.As){var gb=b.As,tc=Zv(gb);if(X().lc===tc||X().ne===tc||X().tb===tc||X().Oi===tc||X().ug===tc)var $b=!0;else{if(3<=gb.M.a.length)var Db= +Sh(Ch(),gb.M).o,ac=X().ea,jc=Db===ac;else jc=!1;if(jc){var oc=gb.M.a[1].o;$b=X().lc===oc?!0:X().ne===oc?!0:X().tb===oc?!0:X().Oi===oc?!0:X().ug===oc}else $b=!1}}else $b=!1;$b?$v(a.r,b.M,V().ln,new Q(["else"])):$v(a.r,b.M,V().fn,new Q(["else"]));for(var pc=R(),nb=new (F(qt).c)(pc.i()),bc=W().t,Eb=0;bc.d();)nb.a[Eb]=bc.e(),Eb=1+Eb|0;return nb}if(X().Gj===O){if(null!==b.As)var Oa=Zv(b.As),Fc=X().lc,kc=Oa===Fc;else kc=!1;kc?$v(a.r,b.M,V().ln,new Q(["elif"])):$v(a.r,b.M,V().fn,new Q(["elif"]));for(var Yc= +R(),Vb=new (F(qt).c)(Yc.i()),Gc=W().t,uc=0;Gc.d();)Vb.a[uc]=Gc.e(),uc=1+uc|0;return Vb}if(X().tq===O||X().bv===O){$v(a.r,b.M,V().Mk,R());for(var lc=R(),cc=new (F(qt).c)(lc.i()),zb=W().t,xb=0;zb.d();)cc.a[xb]=zb.e(),xb=1+xb|0;return cc}if(X().Hy===O)return new (F(qt).c)([new uw(Oh(Ch(),b.M).A)]);if(X().Dn===O)if(fw(b)&&b.il()){var Kb=[X().Dn,X().S,X().Fa],mc=Cb();try{if((Kb.length|0)<=b.M.a.length){var hb=Kb.length|0,ib=-1+hb|0;if(!(0>=hb))for(var dc=0;;){var vb=dc;if(b.M.a[vb].o!==Kb[vb])throw new iu(mc, +!1);if(dc===ib)break;dc=1+dc|0}var Wb=!0}else Wb=!1}catch(vh){if(vh instanceof yr){var vc=vh;if(vc.Vb===mc)Wb=vc.mg();else throw vc;}else throw vh;}}else Wb=!1;else Wb=!1;if(Wb){var Lb=a.r,ec=b.va,wc=V().Pc;Lb.n(ec,-1,wc,new Q(["del","def"]));gw(b,X().qc);return hw(a,b,c)}if(fw(b)){var Fb=Zv(b),Hc=X().S;if(Fb===Hc)var fc=!0;else{var Rb=Zv(b);if(X().lc===Rb||X().ne===Rb||X().tb===Rb||X().Oi===Rb||X().ug===Rb)fc=!0;else{if(3<=b.M.a.length)var Dc=Sh(Ch(),b.M).o,Xb=X().ea,gc=Dc===Xb;else gc=!1;if(gc){var xc= +b.M.a[1].o;fc=X().lc===xc?!0:X().ne===xc?!0:X().tb===xc?!0:X().Oi===xc?!0:X().ug===xc}else fc=!1}}if(fc)var Mb=Sh(Ch(),b.M).o,Mc=X().ea,qc=Mb===Mc;else qc=!1;if(qc){var Ya=zs(Oh(Ch(),b.M)),Uc=lr(b.M.a[1].o)||"ef"===Ya?up():wr(X(),Ya,new Q([X().tb,X().qc]));if(!Uc.v()){var jb=Uc.kb();if(X().tb===jb)if(0<=Ya.length&&"for"===Ya.substring(0,3))var Nc=b.M.a[1].o,Vc=X().ld,Ic=Nc===Vc;else Ic=!1;else Ic=!1;if(Ic){var Jc=a.r,Yb=3+b.va|0,dd=V().Sf,od=R();Jc.n(Yb,-1,dd,od);var ad=mo(),pd=R(),Kc=no(ad,pd),ed= +b.M.a[0],vd=new vt(ed.A,3,X().tb);oo(Kc,vd);var yd=aw(bw(),3+ed.A|0,ed.ta.substring(3));oo(Kc,yd);var fd=mn(nj(),Yh(Ch(),b.M,1));ov(Kc,fd);if(0<=Kc.w){var qd=new (F(vw).c)(Kc.w);Kc.ma(qd,0,2147483647);var rd=qd}else{var sd=null;sd=[];for(var sb=rr(Kc).k();sb.d();){var yc=sb.e();sd.push(null===yc?null:yc)}rd=new (F(vw).c)(sd)}return hw(a,new dw(b.va,b.Qb,b.Dd,rd,b.vb,b.pe,b.oe),R())}if(X().qc===jb||X().Ge===jb||X().lc===jb||X().Gj===jb||X().ne===jb||X().tb===jb||X().Bh===jb||X().Oi===jb||X().wq=== +jb||X().Hj===jb||X().Ni===jb||X().Fj===jb){var Sb=jb.Ij;if(0<=Ya.length&&Ya.substring(0,Sb.length)===Sb){var Ja=jb.Ij.length,ld=ak(L(),Ya,Ja);if(""===ld&&"repeat"===Ya){var bd=a.r,zd=ww(b),Zc=V().NL,Dd=R();bd.n(zd,-1,Zc,Dd);var Vd=b.M,Wd=b.M.a[0],pe=X().Hj;Vd.a[0]=new vt(Wd.A,Wd.We,pe);return hw(a,b,R())}if(""!==ld)a:{for(var ae=0,$d=ld.length;ae<$d;){if(!Zq(Lq(),ld.charCodeAt(ae))){var ge=!1;break a}ae=1+ae|0}ge=!0}else ge=!1;if(ge){var he=a.r,Oe=ww(b)+Ja|0,kf=V().Sf,Df=R();he.n(Oe,-1,kf,Df);var Pe= new (F(vw).c)([new vt(b.M.a[0].A,Ja,jb)]),lf=b.M;Ci();var nf=Pe.a.length+lf.a.length|0;if(Di(ja(vw),ja(vw)))var of=Ei(ja(vw))?Fi(0,Pe,nf):Qf($f(),Pe,nf,ja(F(vw)));else{var df=new (F(vw).c)(nf);Mi(Ci(),Pe,0,df,0,Pe.a.length);of=df}Mi(Ci(),lf,0,of,Pe.a.length,lf.a.length);var Ef=of;Ef.a[1]=xw(bw(),Ef.a[1].A+Ja|0,ak(L(),Ya,Ja));return hw(a,new dw(b.va,b.Qb,b.Dd,Ef,b.vb,b.pe,b.oe),R())}if(0= +break;case "async":if(!a.r.Gn){var rk=a.r,Ar=b.va,No=V().Li,Vm=R();rk.n(Ar,-1,No,Vm)}break;default:var ql=a.r,Kg=b.va,Br=V().Pb;ql.n(Kg,-1,Br,new Q([Ya]))}var Ez=Yh(Ch(),b.M,1);return hw(a,new dw(b.va,b.Qb,b.Dd,Ez,b.vb,b.pe,b.oe),R())}if(0<=Ya.length&&"for"===Ya.substring(0,3))var Pu=b.M.a[1].o,Cr=X().ld,Wm=Pu===Cr;else Wm=!1;if(Wm){var Dr=a.r,Fz=3+b.va|0,Qu=V().Sf,Er=R();Dr.n(Fz,-1,Qu,Er);var Oo=mo(),Fr=R(),sk=no(Oo,Fr),Po=b.M.a[0],Gr=new vt(Po.A,3,X().tb);oo(sk,Gr);var Qo=aw(bw(),3+Po.A|0,Po.ta.substring(3)); +oo(sk,Qo);var Hr=mn(nj(),Yh(Ch(),b.M,1));ov(sk,Hr);if(0<=sk.w){var Ru=new (F(vw).c)(sk.w);sk.ma(Ru,0,2147483647);var Su=Ru}else{var Xm=null;Xm=[];for(var Ro=rr(sk).k();Ro.d();){var rl=Ro.e();Xm.push(null===rl?null:rl)}Su=new (F(vw).c)(Xm)}return hw(a,new dw(b.va,b.Qb,b.Dd,Su,b.vb,b.pe,b.oe),R())}if("ef"===Ya){if(c.v()&&5<=b.M.a.length&&b.il())var Gz=b.M.a[-2+b.M.a.length|0].o,Hz=X().sa,Ir=Gz===Hz;else Ir=!1;if(Ir){var Jr=nw(b),Ym=[X().S,X().S,X().Fa],So=Cb();try{var Tu=Ym.length|0,Iz=-1+Tu|0;if(!(0>= Tu))for(var sl=0;;){var To=sl;if(ws(Jr,To)!==Ym[To])throw new iu(So,!1);if(sl===Iz)break;sl=1+sl|0}var tk=!0}catch(vh){if(vh instanceof yr){var Kr=vh;if(Kr.Vb===So)tk=Kr.mg();else throw Kr;}else throw vh;}}else tk=!1;if(tk&&!Ps().gm.ya(b.M.a[1].ta))var Jz=b.M.a[3].o,Lr=cp(new Q([X().sa,X().S]),Jz);else Lr=!1;if(Lr){var Mr=zw(nw(b),3);if(Mr instanceof T&&(2+(Mr.Y|0)|0)===b.M.a.length){var Uo=a.r,Uu=b.va,Nr=V().Pc;Uo.n(Uu,-1,Nr,new Q(["ef","def"]));var Vu=b.M,Or=b.M.a[0],Pr=X().qc;Vu.a[0]=new vt(Or.A, Or.We,Pr);return hw(a,b,c)}}var Wu=a.r,Xu=b.va,Vo=V().Pc;Wu.n(Xu,-1,Vo,new Q(["ef","if"]));var Yu=b.M,Wo=b.M.a[0],Zu=X().lc;Yu.a[0]=new vt(Wo.A,Wo.We,Zu);return hw(a,b,c)}if(lr(b.M.a[1].o)){var $u=a.r,Qr=b.va,av=V().Pb;$u.n(Qr,-1,av,new Q([b.M.a[0]]));var bv=Wh(Ch(),b.M);return hw(a,new dw(b.va,b.Qb,b.Dd,bv,b.vb,b.pe,b.oe),c)}}var Xo=mo(),cv=R(),ki=no(Xo,cv),Kz=mn(nj(),Aw(a,b));ov(ki,Kz);if(Zv(b)===O&&0!==b.vb.a.length&&!Bw(ki))if(Cw(Oh(Ch(),b.vb))&&!fw(Oh(Ch(),b.vb))){var Lz=a.r,Rr=Oh(Ch(),b.vb).va, -Sr=V().vy,Zm=new Q([Oh(Ch(),Oh(Ch(),b.vb).M)]);Lz.n(Rr,-1,Sr,Zm);nj();var tl=Oh(Ch(),b.vb),Mz=Wh(Ch(),b.vb),Tr=mn(0,hw(a,new dw(tl.va,tl.Qb,tl.Dd,tl.M,Mz,tl.pe,tl.oe),R()));ov(ki,Tr)}else{var Ur=a.r,$m=Oh(Ch(),b.vb).va,Nz=V().zp,Oz=R();Ur.n($m,-1,Nz,Oz);var Je=b.vb,Bh=vh=>{vh=mn(nj(),hw(a,vh,R()));return ov(ki,vh)},$g=Je.a.length,hd=0;if(null!==Je)for(;hd<$g;)Bh(Je.a[hd]),hd=1+hd|0;else if(Je instanceof y)for(;hd<$g;)Bh(Je.a[hd]),hd=1+hd|0;else if(Je instanceof C)for(;hd<$g;)Bh(Je.a[hd]),hd=1+hd| +Sr=V().wy,Zm=new Q([Oh(Ch(),Oh(Ch(),b.vb).M)]);Lz.n(Rr,-1,Sr,Zm);nj();var tl=Oh(Ch(),b.vb),Mz=Wh(Ch(),b.vb),Tr=mn(0,hw(a,new dw(tl.va,tl.Qb,tl.Dd,tl.M,Mz,tl.pe,tl.oe),R()));ov(ki,Tr)}else{var Ur=a.r,$m=Oh(Ch(),b.vb).va,Nz=V().zp,Oz=R();Ur.n($m,-1,Nz,Oz);var Je=b.vb,Bh=vh=>{vh=mn(nj(),hw(a,vh,R()));return ov(ki,vh)},$g=Je.a.length,hd=0;if(null!==Je)for(;hd<$g;)Bh(Je.a[hd]),hd=1+hd|0;else if(Je instanceof y)for(;hd<$g;)Bh(Je.a[hd]),hd=1+hd|0;else if(Je instanceof C)for(;hd<$g;)Bh(Je.a[hd]),hd=1+hd| 0;else if(Je instanceof A)for(;hd<$g;){var dv=Je.a[hd];Bh(new n(dv.l,dv.m));hd=1+hd|0}else if(Je instanceof B)for(;hd<$g;)Bh(Je.a[hd]),hd=1+hd|0;else if(Je instanceof v)for(;hd<$g;)Bh(p(Je.a[hd])),hd=1+hd|0;else if(Je instanceof w)for(;hd<$g;)Bh(Je.a[hd]),hd=1+hd|0;else if(Je instanceof x)for(;hd<$g;)Bh(Je.a[hd]),hd=1+hd|0;else if(Je instanceof t)for(;hd<$g;)Bh(Je.a[hd]),hd=1+hd|0;else throw new G(Je);}if(0<=ki.w){var Vr=new (F(qt).c)(ki.w);ki.ma(Vr,0,2147483647);return Vr}var an=null;an=[];for(var bn= -rr(ki).k();bn.d();){var Yo=bn.e();an.push(null===Yo?null:Yo)}return new (F(qt).c)(an)}var Pz=Zv(b),Qz=X().Oi;if(Pz===Qz)var Wr=!0;else{var Xr=Zv(b),Zo=X().Fj;Wr=Xr===Zo}Wr&&Dw(b);return Aw(a,b)}for(var Yr=R(),uE=new (F(qt).c)(Yr.i()),Rz=W().t,ev=0;Rz.d();)uE.a[ev]=Rz.e(),ev=1+ev|0;return uE},Gw=function Fw(a,b){for(;;){if(b instanceof zo||b instanceof Jo)return!1;if(b instanceof go)b=b.je;else if(b instanceof io){var d=b.le;if(Fw(a,b.ke))return!0;b=d}else if(b instanceof Io)b=b.xj;else{if(b instanceof +rr(ki).k();bn.d();){var Yo=bn.e();an.push(null===Yo?null:Yo)}return new (F(qt).c)(an)}var Pz=Zv(b),Qz=X().Ni;if(Pz===Qz)var Wr=!0;else{var Xr=Zv(b),Zo=X().Fj;Wr=Xr===Zo}Wr&&Dw(b);return Aw(a,b)}for(var Yr=R(),uE=new (F(qt).c)(Yr.i()),Rz=W().t,ev=0;Rz.d();)uE.a[ev]=Rz.e(),ev=1+ev|0;return uE},Gw=function Fw(a,b){for(;;){if(b instanceof zo||b instanceof Jo)return!1;if(b instanceof go)b=b.je;else if(b instanceof io){var d=b.le;if(Fw(a,b.ke))return!0;b=d}else if(b instanceof Io)b=b.wj;else{if(b instanceof lo&&!Fw(a,b.og)){b=b.jc;a:{for(d=0;d{if(0<=b.length&&b.substring(0,e.length)===e){var f=ak(L(),b,e.length);a:{for(var h=0,k=f.length;h{if(Kw(a,I,c))throw new iu(e,!0);},k=f.a.length,m=0;if(null!==f)for(;m{if(0<=b.length&&b.substring(0,e.length)===e){var f=ak(L(),b,e.length);a:{for(var h=0,k=f.length;h{if(Kw(a,I,c))throw new iu(e,!0);},k=f.a.length,m=0;if(null!==f)for(;m{if(Kw(a,I.Ei,c))throw new iu(e,!0);};var u=m.a.length;k=0;if(null!==m)for(;k>24&&0===(1&a.Kn)<<24>>24&&(a.FG=new Pw(a.lv,a.r,a.EG),a.Kn=(1|a.Kn)<<24>>24);return a.FG}function Qw(a,b){a=Rw(Tv(a),b);return a instanceof T&&(a=a.Y,0!==a.a.length)?new Sw(a):null}function ip(a){a.zs=!1;a.kv=!0;var b=Tw(a,Tv(a));kq(new Uw,b);var c=a.ys,d=Vw();null!==c&&c.b(d)||(Hv(a.Uk,b),a.r.rc&&(kq(new Ww(a,a.r),b),kq(new Xw(a.r),b)));return b} -function Yw(a,b){b=Zw($w(),b,a.lv,a.ys);b=ax(a,b);var c=a.ys,d=Vw();null!==c&&c.b(d)||(Hv(a.Uk,b),a.r.rc&&(kq(new Ww(a,a.r),b),kq(new Xw(a.r),b)));return b} -function Tw(a,b){for(var c=mo(),d=R(),e=no(c,d),f=new bx(!1),h=!1,k=-1;b.d();){var m=b.e();a.zs&&cx(m);f.eu&&0>k&&(k=m.va);if(a.r.rc){var r=Zv(m);if(X().nC===r||X().xG===r){if(h){var u=a.r,z=Oh(Ch(),m.M).A,I=V().jn;u.n(z,-1,I,new Q([r]))}}else X().Qc===r||X().Bd===r||X().Ch===r||X().ki===r||X().qc!==r&&X().Ge!==r&&(h=!0)}var D=Zv(m),S=X().Jy;if(D===S){var O=a.r,K=m.va,oa=V().Aj;O.n(K,-1,oa,new Q(["//","#"]))}else{var ca=m,ta=Zv(ca);if(X().lc===ta||X().ne===ta||X().tb===ta||X().Pi===ta||X().ug===ta)var sa= -!0;else{if(3<=ca.M.a.length)var Ea=Sh(Ch(),ca.M).o,ab=X().ea,Ta=Ea===ab;else Ta=!1;if(Ta){var db=ca.M.a[1].o;sa=X().lc===db?!0:X().ne===db?!0:X().tb===db?!0:X().Pi===db?!0:X().ug===db}else sa=!1}if(sa){for(var fb=mo(),ya=R(),Ka=no(fb,ya);;){if(b.d())var Sa=Zv(b.X()),Ca=X().Bh===Sa?!0:X().av===Sa?!0:X().Gj===Sa?!0:X().tq===Sa;else Ca=!1;if(Ca){var Fa=b.e();oo(Ka,Fa)}else break}if(b.d()&&a.r.rc){var Hb=b.X();if(0!==Hb.M.a.length)var Ib=Zv(Hb),hc=X().S,Qb=Ib===hc;else Qb=!1;if(Qb&&"end"===Oh(Ch(),Hb.M).ta){var Wa= -Hb.M,Ha=Wa.a.length,Ia=new (F(mr).c)(Ha);if(0>24&&0===(1&a.Kn)<<24>>24&&(a.FG=new Pw(a.mv,a.r,a.EG),a.Kn=(1|a.Kn)<<24>>24);return a.FG}function Qw(a,b){a=Rw(Tv(a),b);return a instanceof T&&(a=a.Y,0!==a.a.length)?new Sw(a):null}function ip(a){a.zs=!1;a.lv=!0;var b=Tw(a,Tv(a));kq(new Uw,b);var c=a.ys,d=Vw();null!==c&&c.b(d)||(Hv(a.Uk,b),a.r.rc&&(kq(new Ww(a,a.r),b),kq(new Xw(a.r),b)));return b} +function Yw(a,b){b=Zw($w(),b,a.mv,a.ys);b=ax(a,b);var c=a.ys,d=Vw();null!==c&&c.b(d)||(Hv(a.Uk,b),a.r.rc&&(kq(new Ww(a,a.r),b),kq(new Xw(a.r),b)));return b} +function Tw(a,b){for(var c=mo(),d=R(),e=no(c,d),f=new bx(!1),h=!1,k=-1;b.d();){var m=b.e();a.zs&&cx(m);f.eu&&0>k&&(k=m.va);if(a.r.rc){var r=Zv(m);if(X().nC===r||X().xG===r){if(h){var u=a.r,z=Oh(Ch(),m.M).A,I=V().jn;u.n(z,-1,I,new Q([r]))}}else X().Qc===r||X().Bd===r||X().Ch===r||X().ki===r||X().qc!==r&&X().Ge!==r&&(h=!0)}var D=Zv(m),S=X().Jy;if(D===S){var O=a.r,K=m.va,oa=V().Aj;O.n(K,-1,oa,new Q(["//","#"]))}else{var ca=m,ta=Zv(ca);if(X().lc===ta||X().ne===ta||X().tb===ta||X().Oi===ta||X().ug===ta)var sa= +!0;else{if(3<=ca.M.a.length)var Ea=Sh(Ch(),ca.M).o,ab=X().ea,Ta=Ea===ab;else Ta=!1;if(Ta){var db=ca.M.a[1].o;sa=X().lc===db?!0:X().ne===db?!0:X().tb===db?!0:X().Oi===db?!0:X().ug===db}else sa=!1}if(sa){for(var fb=mo(),ya=R(),Ka=no(fb,ya);;){if(b.d())var Sa=Zv(b.X()),Ca=X().Bh===Sa?!0:X().bv===Sa?!0:X().Gj===Sa?!0:X().tq===Sa;else Ca=!1;if(Ca){var Fa=b.e();oo(Ka,Fa)}else break}if(b.d()&&a.r.rc){var Gb=b.X();if(0!==Gb.M.a.length)var Hb=Zv(Gb),hc=X().S,Qb=Hb===hc;else Qb=!1;if(Qb&&"end"===Oh(Ch(),Gb.M).ta){var Wa= +Gb.M,Ha=Wa.a.length,Ia=new (F(mr).c)(Ha);if(0ji=> -{if(ji instanceof ao||ji instanceof In||ji instanceof Kn)Sm.eu=!0;return oo(Tm,ji)})(f,e),Qe=Bd.a.length,Cb=0;if(null!==Bd)for(;Cbji=> +{if(ji instanceof ao||ji instanceof In||ji instanceof Kn)Sm.eu=!0;return oo(Tm,ji)})(f,e),Qe=Bd.a.length,Bb=0;if(null!==Bd)for(;Bb=m))for(var u=0;;){var z=u,I=ws(c,z),D=X().S;if(I!==D||au(c,z).ta!==h[z])throw new iu(k,!1);if(u===r)break;u=1+u|0}var S=!0}catch(Kg){if(Kg instanceof yr){var O=Kg;if(O.Vb===k)S=O.mg();else throw O;}else throw Kg;}if(S)var K=ws(c,2),oa=X().S,ca=K===oa;else ca=!1;if(ca){var ta=a.r,sa=c.p(),Ea=V().YF;ta.n(sa,-1,Ea,new Q(["pip install"]));for(var ab=R(),Ta=new (F(qt).c)(ab.i()),db=W().t, -fb=0;db.d();)Ta.a[fb]=db.e(),fb=1+fb|0;return Ta}for(;c.d();){var ya=fx(a,c);if(c.d()&&!ds(c,new Q([X().xf]))){var Ka=!1,Sa=null,Ca=ya;a:{if(Ca instanceof Nn&&(Ka=!0,Sa=Ca,Sa.dc instanceof zo&&js(a.ja,c))){var Fa=Sa.dc.K,Hb=wr(X(),Fa,new Q([X().ki]));if(Hb.v()){if("let"!==Fa&&"make"!==Fa||!ss(c,new Q([X().S])))Qb=!1;else var Ib=ws(c,1),hc=X().Fa,Qb=Ib!==hc;if(Qb){var Wa=ws(c,1),Ha=X().sb;if(Wa===Ha)var Ia=!0;else{var ma=a.ja;Ia=Lt(Mt(),au(c,1),ma.ia)}}else Ia=!1;if(Ia){var pb=a.r,Qa=b.va,Bc=V().Rl; -pb.n(Qa,-1,Bc,new Q([Fa]));var Jc=St(a.ja,c);ds(c,new Q([X().sb]));var rc=ks(a.ja,c);ya=new Gn(b.va,new (F(En).c)([Jc]),rc)}else if("to"===Fa&&ss(c,new Q([X().S]))){var nc=a.r,Rc=is(c),sc=V().Bp;nc.n(Rc,-1,sc,new Q(["to"]));gx(c);ya=null}else if("case"===Fa&&c.il()&&fw(b)){var ic=a.r,mb=b.va,Zb=V().Ql;ic.n(mb,-1,Zb,new Q(["case/switch"]));gx(c);ya=null}else if("var"!==Fa&&"val"!==Fa||!ss(c,new Q([X().S])))if(c.nI()){for(var Ub=c.p(),gb=no(mo(),new Q([Fa]));c.d()&&!ss(c,new Q([X().sb]));){var tc=zs(c.Q()); -oo(gb,tc)}var $b=a.r,Eb=ya.p(),ac=V().Ik,jc=new Q([Gj(gb,""," ","")]);$b.n(Eb,-1,ac,jc);ds(c,new Q([X().sb]));ya=new Gn(Ub,new (F(En).c)([Sa.dc]),ks(a.ja,c))}else{if(vr(X(),Hu(c),X().ki))return Bu(c),ls(a.r,c,V().Pc,new Q([Fa,X().ki])),hx(b,c.fa(),X().ki),new (F(qt).c)([ax(a,b)]);if(0<=Fa.length&&"def"===Fa.substring(0,3))var oc=c.hc(),pc=X().S,nb=oc===pc;else nb=!1;if(nb&&fw(b)&&c.il()){if("define"===Fa){var bc=a.r,Fb=is(c),Oa=V().Pc;bc.n(Fb,-1,Oa,new Q(["define","def"]))}else{var Ec=a.r,kc=3+is(c)| -0,Xc=V().Sf,Vb=R();Ec.n(kc,-1,Xc,Vb);null!==c.fa().ta&&(c.fa().ta=""+ak(L(),Fa,3)+c.fa().ta)}Bu(c);Zt(c,X().qc);ya=iw(a,b)}else ya=null}else{var Fc=a.r,uc=ya.p(),lc=V().Rl;Fc.n(uc,-1,lc,new Q([Fa]));return new (F(qt).c)([fx(a,c)])}}else{var cc=Hb.kb();if(X().bm!==cc||a.r.uz||"print"!==Fa){if(X().bm===cc||X().gv===cc||X().Fn===cc||X().ki===cc||X().Ch===cc){Bu(c);ls(a.r,c,V().Pc,new Q([Fa,cc]));if(hx(b,c.fa(),Hb.kb()))return new (F(qt).c)([ax(a,b)]);for(var Ab=R(),yb=new (F(qt).c)(Ab.i()),Lb=W().t, -mc=0;Lb.d();)yb.a[mc]=Lb.e(),mc=1+mc|0;return yb}ya=null}else Bu(c),ls(a.r,c,V().Wp,R()),ya=ix(a,c)}if(null===ya&&ss(c,new Q([X().S,X().Ib]))&&Lu(c,1)===X().Ad){var hb=Sa.dc.K,ib=c.fa().ta;if(("var"===hb||"val"===hb||"int"===hb||"let"===hb||"const"===hb)&&ss(c,new Q([X().S]))&&Cu(jp(a),ib)>Cu(jp(a),""+hb+ib)&&Cu(jp(a),ib)>Cu(jp(a),hb+"_"+ib))ls(a.r,c,V().Rl,new Q([hb]));else if((0=Cu(jp(a),hb)||1>=Cu(jp(a),ib)))ls(a.r,c,V().gi,R()),jx(c,aw(bw(),is(c), -""+hb+ib));else if(""!==ib&&0=Cu(jp(a),hb)||1>=Cu(jp(a),ib)))ls(a.r,c,V().gi,R()),jx(c,aw(bw(),is(c),hb+tb(Du(Lq(),ib.charCodeAt(0)))+Pj(L(),ib,1,ib.length)));else{if(0=Cu(jp(a),ib);else Wb=!1;Wb?(ls(a.r,c,V().Op,R()),Qt(c,X().zd)):(ls(a.r,c,V().Ap,R()),Qt(c,X().Aa));$t(c,0)}ya=fx(a,c)}else{if(null===ya&&ss(c,new Q([X().S])))var vc=ws(c,1),Mb= -X().Fa,ec=vc===Mb;else ec=!1;if(ec){var wc=Sa.dc.K,Gb=c.fa().ta;Sv(a.Uk,is(c),""+wc+Gb)||Sv(a.Uk,is(c),wc+"_"+Gb)?(ls(a.r,c,V().gi,R()),jx(c,aw(bw(),is(c),""+wc+Gb)),ya=fx(a,c)):""!==Gb&&Sv(a.Uk,is(c),wc+tb(Du(Lq(),Gb.charCodeAt(0)))+Pj(L(),Gb,1,Gb.length))&&(ls(a.r,c,V().gi,R()),jx(c,aw(bw(),is(c),wc+tb(Du(Lq(),Gb.charCodeAt(0)))+Pj(L(),Gb,1,Gb.length))),ya=fx(a,c))}}if(null===ya&&c.d()){var Gc=Sa.dc.K,fc=Gc.toLowerCase();if(Rv(a.Uk,c.p(),Sa.dc.K)){ls(a.r,c,V().vn,R());var Rb=Vs(a.Jn,c),Cc=Sa.ei, -Xb=Sa.dc,gc=zu(c);ya=new Nn(Cc,new ko(Xb.p(),gc,Xb,Rb.Bl,Rb.Km,Rb.Al,Rb.zl))}else{var wb=[X().S,X().Fa],Yc=Db();try{var Kc=wb.length|0,qc=-1+Kc|0;if(!(0>=Kc))for(var Ya=0;;){var Sc=Ya;if(ws(c,Sc)!==wb[Sc])throw new iu(Yc,!1);if(Ya===qc)break;Ya=1+Ya|0}var jb=!0}catch(Kg){if(Kg instanceof yr){var Lc=Kg;if(Lc.Vb===Yc)jb=Lc.mg();else throw Lc;}else throw Kg;}if(jb&&Gc!==fc&&xs(ys(),new Q(["class","def"])).ya(fc)){var Tc=a.r,Hc=-1+c.p()|0,Ic=V().Pc;Tc.n(Hc,-1,Ic,new Q([Gc,fc]));Qt(c,sr(X(),fc))}else if(ss(c, -new Q([X().S,X().Ib]))&&(1+(Sa.ei+Fa.length|0)|0)===c.p()&&Sv(a.Uk,Sa.ei,Fa)){var Yb=a.r,dd=-1+c.p()|0,od=V().gi,ad=R();Yb.n(dd,-1,od,ad);jx(c,aw(bw(),Sa.ei,""+Fa+c.fa().ta))}else{ls(a.r,c,V().Mp,R());var pd=ss(c,new Q([X().Fn]))?Fu(a.ja,c):pv(a.ja,c,!0);ya=new Gn(Sa.ei,new (F(En).c)([Sa.dc]),pd)}}}break a}var Uc;if(Uc=Ka){var ed;if(ed=Sa.dc instanceof ko&&ss(c,new Q([X().Ab]))){var vd=Sa.dc;if(vd instanceof ko){var yd=vd.me;ed=yd instanceof zo&&"switch"===yd.K}else ed=!1}Uc=ed}if(Uc){var fd=a.r, -qd=b.va,rd=V().Ql;fd.n(qd,-1,rd,new Q(["case/switch"]))}else if(Ka&&Sa.dc instanceof ko&&ss(c,new Q([X().ea]))&&fw(b)){var sd=!1,sb=null,xc=Sa.dc.me;b:{if(xc instanceof zo){sd=!0;sb=xc;var Sb=sb.$g,Ja=sb.K;if(0<=Ja.length&&"class"===Ja.substring(0,5)){var ld=a.r,bd=5+Sb|0,zd=V().Sf,Zc=R();ld.n(bd,-1,zd,Zc);break b}}if(sd){var Dd=sb.$g,Vd=sb.K;if(0<=Vd.length&&"def"===Vd.substring(0,3)){var Wd=a.r,pe=3+Dd|0,ae=V().Sf,$d=R();Wd.n(pe,-1,ae,$d);break b}}if(sd&&"switch"===sb.K&&fw(b)){var ge=a.r,he=b.va, +function Aw(a,b){var c=nw(b),d=mo(),e=R(),f=no(d,e),h=["pip","install"],k=Cb();try{var m=h.length|0,r=-1+m|0;if(!(0>=m))for(var u=0;;){var z=u,I=ws(c,z),D=X().S;if(I!==D||au(c,z).ta!==h[z])throw new iu(k,!1);if(u===r)break;u=1+u|0}var S=!0}catch(Kg){if(Kg instanceof yr){var O=Kg;if(O.Vb===k)S=O.mg();else throw O;}else throw Kg;}if(S)var K=ws(c,2),oa=X().S,ca=K===oa;else ca=!1;if(ca){var ta=a.r,sa=c.p(),Ea=V().YF;ta.n(sa,-1,Ea,new Q(["pip install"]));for(var ab=R(),Ta=new (F(qt).c)(ab.i()),db=W().t, +fb=0;db.d();)Ta.a[fb]=db.e(),fb=1+fb|0;return Ta}for(;c.d();){var ya=fx(a,c);if(c.d()&&!ds(c,new Q([X().xf]))){var Ka=!1,Sa=null,Ca=ya;a:{if(Ca instanceof Nn&&(Ka=!0,Sa=Ca,Sa.dc instanceof zo&&js(a.ja,c))){var Fa=Sa.dc.K,Gb=wr(X(),Fa,new Q([X().ki]));if(Gb.v()){if("let"!==Fa&&"make"!==Fa||!ss(c,new Q([X().S])))Qb=!1;else var Hb=ws(c,1),hc=X().Fa,Qb=Hb!==hc;if(Qb){var Wa=ws(c,1),Ha=X().sb;if(Wa===Ha)var Ia=!0;else{var ma=a.ja;Ia=Lt(Mt(),au(c,1),ma.ia)}}else Ia=!1;if(Ia){var pb=a.r,Qa=b.va,Cc=V().Rl; +pb.n(Qa,-1,Cc,new Q([Fa]));var Lc=St(a.ja,c);ds(c,new Q([X().sb]));var rc=ks(a.ja,c);ya=new Gn(b.va,new (F(En).c)([Lc]),rc)}else if("to"===Fa&&ss(c,new Q([X().S]))){var nc=a.r,Tc=is(c),sc=V().Bp;nc.n(Tc,-1,sc,new Q(["to"]));gx(c);ya=null}else if("case"===Fa&&c.il()&&fw(b)){var ic=a.r,mb=b.va,Zb=V().Ql;ic.n(mb,-1,Zb,new Q(["case/switch"]));gx(c);ya=null}else if("var"!==Fa&&"val"!==Fa||!ss(c,new Q([X().S])))if(c.nI()){for(var Ub=c.p(),gb=no(mo(),new Q([Fa]));c.d()&&!ss(c,new Q([X().sb]));){var tc=zs(c.Q()); +oo(gb,tc)}var $b=a.r,Db=ya.p(),ac=V().Ik,jc=new Q([Gj(gb,""," ","")]);$b.n(Db,-1,ac,jc);ds(c,new Q([X().sb]));ya=new Gn(Ub,new (F(En).c)([Sa.dc]),ks(a.ja,c))}else{if(vr(X(),Hu(c),X().ki))return Bu(c),ls(a.r,c,V().Pc,new Q([Fa,X().ki])),hx(b,c.fa(),X().ki),new (F(qt).c)([ax(a,b)]);if(0<=Fa.length&&"def"===Fa.substring(0,3))var oc=c.hc(),pc=X().S,nb=oc===pc;else nb=!1;if(nb&&fw(b)&&c.il()){if("define"===Fa){var bc=a.r,Eb=is(c),Oa=V().Pc;bc.n(Eb,-1,Oa,new Q(["define","def"]))}else{var Fc=a.r,kc=3+is(c)| +0,Yc=V().Sf,Vb=R();Fc.n(kc,-1,Yc,Vb);null!==c.fa().ta&&(c.fa().ta=""+ak(L(),Fa,3)+c.fa().ta)}Bu(c);Zt(c,X().qc);ya=iw(a,b)}else ya=null}else{var Gc=a.r,uc=ya.p(),lc=V().Rl;Gc.n(uc,-1,lc,new Q([Fa]));return new (F(qt).c)([fx(a,c)])}}else{var cc=Gb.kb();if(X().bm!==cc||a.r.uz||"print"!==Fa){if(X().bm===cc||X().hv===cc||X().Fn===cc||X().ki===cc||X().Ch===cc){Bu(c);ls(a.r,c,V().Pc,new Q([Fa,cc]));if(hx(b,c.fa(),Gb.kb()))return new (F(qt).c)([ax(a,b)]);for(var zb=R(),xb=new (F(qt).c)(zb.i()),Kb=W().t, +mc=0;Kb.d();)xb.a[mc]=Kb.e(),mc=1+mc|0;return xb}ya=null}else Bu(c),ls(a.r,c,V().Wp,R()),ya=ix(a,c)}if(null===ya&&ss(c,new Q([X().S,X().Ib]))&&Lu(c,1)===X().Ad){var hb=Sa.dc.K,ib=c.fa().ta;if(("var"===hb||"val"===hb||"int"===hb||"let"===hb||"const"===hb)&&ss(c,new Q([X().S]))&&Cu(jp(a),ib)>Cu(jp(a),""+hb+ib)&&Cu(jp(a),ib)>Cu(jp(a),hb+"_"+ib))ls(a.r,c,V().Rl,new Q([hb]));else if((0=Cu(jp(a),hb)||1>=Cu(jp(a),ib)))ls(a.r,c,V().gi,R()),jx(c,aw(bw(),is(c), +""+hb+ib));else if(""!==ib&&0=Cu(jp(a),hb)||1>=Cu(jp(a),ib)))ls(a.r,c,V().gi,R()),jx(c,aw(bw(),is(c),hb+tb(Du(Lq(),ib.charCodeAt(0)))+Pj(L(),ib,1,ib.length)));else{if(0=Cu(jp(a),ib);else Wb=!1;Wb?(ls(a.r,c,V().Op,R()),Qt(c,X().zd)):(ls(a.r,c,V().Ap,R()),Qt(c,X().Aa));$t(c,0)}ya=fx(a,c)}else{if(null===ya&&ss(c,new Q([X().S])))var vc=ws(c,1),Lb= +X().Fa,ec=vc===Lb;else ec=!1;if(ec){var wc=Sa.dc.K,Fb=c.fa().ta;Sv(a.Uk,is(c),""+wc+Fb)||Sv(a.Uk,is(c),wc+"_"+Fb)?(ls(a.r,c,V().gi,R()),jx(c,aw(bw(),is(c),""+wc+Fb)),ya=fx(a,c)):""!==Fb&&Sv(a.Uk,is(c),wc+tb(Du(Lq(),Fb.charCodeAt(0)))+Pj(L(),Fb,1,Fb.length))&&(ls(a.r,c,V().gi,R()),jx(c,aw(bw(),is(c),wc+tb(Du(Lq(),Fb.charCodeAt(0)))+Pj(L(),Fb,1,Fb.length))),ya=fx(a,c))}}if(null===ya&&c.d()){var Hc=Sa.dc.K,fc=Hc.toLowerCase();if(Rv(a.Uk,c.p(),Sa.dc.K)){ls(a.r,c,V().vn,R());var Rb=Vs(a.Jn,c),Dc=Sa.ei, +Xb=Sa.dc,gc=zu(c);ya=new Nn(Dc,new ko(Xb.p(),gc,Xb,Rb.Bl,Rb.Km,Rb.Al,Rb.zl))}else{var xc=[X().S,X().Fa],Mb=Cb();try{var Mc=xc.length|0,qc=-1+Mc|0;if(!(0>=Mc))for(var Ya=0;;){var Uc=Ya;if(ws(c,Uc)!==xc[Uc])throw new iu(Mb,!1);if(Ya===qc)break;Ya=1+Ya|0}var jb=!0}catch(Kg){if(Kg instanceof yr){var Nc=Kg;if(Nc.Vb===Mb)jb=Nc.mg();else throw Nc;}else throw Kg;}if(jb&&Hc!==fc&&xs(ys(),new Q(["class","def"])).ya(fc)){var Vc=a.r,Ic=-1+c.p()|0,Jc=V().Pc;Vc.n(Ic,-1,Jc,new Q([Hc,fc]));Qt(c,sr(X(),fc))}else if(ss(c, +new Q([X().S,X().Ib]))&&(1+(Sa.ei+Fa.length|0)|0)===c.p()&&Sv(a.Uk,Sa.ei,Fa)){var Yb=a.r,dd=-1+c.p()|0,od=V().gi,ad=R();Yb.n(dd,-1,od,ad);jx(c,aw(bw(),Sa.ei,""+Fa+c.fa().ta))}else{ls(a.r,c,V().Mp,R());var pd=ss(c,new Q([X().Fn]))?Fu(a.ja,c):pv(a.ja,c,!0);ya=new Gn(Sa.ei,new (F(En).c)([Sa.dc]),pd)}}}break a}var Kc;if(Kc=Ka){var ed;if(ed=Sa.dc instanceof ko&&ss(c,new Q([X().Ab]))){var vd=Sa.dc;if(vd instanceof ko){var yd=vd.me;ed=yd instanceof zo&&"switch"===yd.K}else ed=!1}Kc=ed}if(Kc){var fd=a.r, +qd=b.va,rd=V().Ql;fd.n(qd,-1,rd,new Q(["case/switch"]))}else if(Ka&&Sa.dc instanceof ko&&ss(c,new Q([X().ea]))&&fw(b)){var sd=!1,sb=null,yc=Sa.dc.me;b:{if(yc instanceof zo){sd=!0;sb=yc;var Sb=sb.$g,Ja=sb.K;if(0<=Ja.length&&"class"===Ja.substring(0,5)){var ld=a.r,bd=5+Sb|0,zd=V().Sf,Zc=R();ld.n(bd,-1,zd,Zc);break b}}if(sd){var Dd=sb.$g,Vd=sb.K;if(0<=Vd.length&&"def"===Vd.substring(0,3)){var Wd=a.r,pe=3+Dd|0,ae=V().Sf,$d=R();Wd.n(pe,-1,ae,$d);break b}}if(sd&&"switch"===sb.K&&fw(b)){var ge=a.r,he=b.va, Oe=V().Ql;ge.n(he,-1,Oe,new Q(["case/switch"]))}else{var kf=a.r,Df=b.va,Pe=V().Kk;kf.n(Df,-1,Pe,new Q(["def"]));var lf=new vt(b.va,0,X().qc),nf=b.M,of=new (F(vw).c)(1+nf.a.length|0);of.a[0]=lf;Mi(Ci(),nf,0,of,1,nf.a.length);return new (F(qt).c)([ax(a,new dw(b.va,b.Qb,b.Dd,of,b.vb,b.pe,b.oe))])}}}else if(Ka&&Sa.dc instanceof ko&&ss(c,new Q([X().S,X().qc,X().bm])))ls(a.r,c,V().YB,R());else{if(Ka&&Sa.dc instanceof lo&&ss(c,new Q([X().ea]))&&fw(b)){var df=b.vb;try{c:{for(var Ef=0;Ef{iq(k)&&k.jt(qx().zL)};var d=a.a.length,e=0;if(null!==a)for(;e{if(k instanceof zx)return oo(e,k);var m=a.r;k=k.p();var r=V().UB,u=R();return m.n(k,-1,r,u)};d=c.a.length;var f=0;if(null!==c)for(;fa.r.Sc)c.d()?(f=c.fa().o,h=X().S,f=f===h):f=!1,f&&"metaclass"===c.fa().ta?(f=ws(c,1),h=X().sb,f=f===h):f=!1,f&&(a.r.Gn||ls(a.r,c,V().Mi,R()), -gu(c),gu(c)),f=Ju(a.ja,c,!0);else if(k=Vs(a.Jn,c),f=k.Bl,e=k.Km,null!==k.Al||null!==k.zl){h=a.r;k=k.Ar;m=V().hs;var r=R();h.n(k,-1,m,r)}Cs(c,X().sa);ss(c,new Q([X().sa]))?(h=ws(c,1),k=X().ea,h=h===k):h=!1;h&&(ls(a.r,c,V().Li,R()),gu(c))}Cs(c,X().ea);d=new Jn(b.va,b.Qb,d,f,e,null);xx(a,c,b,d,"body");d.KJ();return d} -function iw(a,b){nx(X().qc);var c=nw(b),d=ds(c,new Q([X().ug]));Cs(c,X().qc);ss(c,new Q([X().ea]))&&Ut(c,new Q([X().S]))&&(ls(a.r,c,V().Pb,R()),gu(c));var e=Tt(a.ja,c);if(null!==e){if(a.r.DG&&Ps().gm.ya(e.K)){var f=a.r,h=e.$g,k=V().$m;f.n(h,-1,k,new Q([e.K]))}ss(c,new Q([X().sa]))?(f=ws(c,1),h=X().ea,f=f===h):f=!1;if(f||ss(c,new Q([X().Aa])))if(!ss(c,new Q([X().Aa]))&&1a.r.Sc)c.d()?(f=c.fa().o,h=X().S,f=f===h):f=!1,f&&"metaclass"===c.fa().ta?(f=ws(c,1),h=X().sb,f=f===h):f=!1,f&&(a.r.Gn||ls(a.r,c,V().Li,R()), +gu(c),gu(c)),f=Ju(a.ja,c,!0);else if(k=Vs(a.Jn,c),f=k.Bl,e=k.Km,null!==k.Al||null!==k.zl){h=a.r;k=k.Ar;m=V().hs;var r=R();h.n(k,-1,m,r)}Cs(c,X().sa);ss(c,new Q([X().sa]))?(h=ws(c,1),k=X().ea,h=h===k):h=!1;h&&(ls(a.r,c,V().zj,R()),gu(c))}Cs(c,X().ea);d=new Jn(b.va,b.Qb,d,f,e,null);xx(a,c,b,d,"body");d.KJ();return d} +function iw(a,b){nx(X().qc);var c=nw(b),d=ds(c,new Q([X().ug]));Cs(c,X().qc);ss(c,new Q([X().ea]))&&Ut(c,new Q([X().S]))&&(ls(a.r,c,V().Pb,R()),gu(c));var e=Tt(a.ja,c);if(null!==e){if(a.r.DG&&Ps().gm.ya(e.K)){var f=a.r,h=e.$g,k=V().$m;f.n(h,-1,k,new Q([e.K]))}ss(c,new Q([X().sa]))?(f=ws(c,1),h=X().ea,f=f===h):f=!1;if(f||ss(c,new Q([X().Aa])))if(!ss(c,new Q([X().Aa]))&&1=m))for(m=1;;){var u=m;if(Fv(h,Zj(L(),k,u))&&Fv(h,ak(L(),k,u)))throw xr(new yr,f,new T(H(new J,Zj(L(),k,u),ak(L(),k,u))));if((Zq(Lq(),k.charCodeAt(u))||95===k.charCodeAt(u))&&Fv(h,Zj(L(),k,u))&&Fv(h,ak(L(),k,1+u|0)))throw xr(new yr,f,new T(H(new J,Zj(L(),k,u),ak(L(),k,1+u|0))));if(m===r)break;m=1+m|0}var z=up()}catch(I){if(I instanceof yr){z=I;if(z.Vb===f){z=z.uf();break a}throw z;}throw I;}}z instanceof T&&(m=z.Y,null!==m&&(z=m.Ia(),m=m.la(),f=e.$g,e=a.r,h=f+z.length|0,k=V().un,r=R(),e.n(h, -1,k,r),e=new zo(f,z),kx(c,aw(bw(),f+z.length|0,m),0),kx(c,new vt(f+z.length|0,0,X().Fa),0)))}else if(ss(c,new Q([X().Wb,X().Ab,X().sa]))?(z=ws(c,1),z=cp(new Q([X().S,X().sa]),z)):z=!1,z)ls(a.r,c,V().mq,new Q(["("])),Zt(c,X().Fa);else if(!ss(c,new Q([X().Fa,X().ea])))return a=a.r,b=b.va,c=V().on,d=R(),a.n(b,-1,c,d),null}else if(Lu(c,0)===X().ab?(z=ws(c,1),m=X().Fa,z=z===m):z=!1,z)ls(a.r,c,V().Rf,R()),e=c.Q(),e=new zo(e.A,zs(e));else if(!ss(c,new Q([X().Fa,X().ea])))return a=a.r,b=b.va,c=V().on,d= -R(),a.n(b,-1,c,d),null;ds(c,new Q([X().Fa]))?(z=Rs(a.Jn,c,!0),Cs(c,X().sa)):z=c.d()?ls(a.r,c,V().yn,R()):ls(a.r,c,V().yn,new Q(["end-of-line"]));ds(c,new Q([X().RL]))?m=ks(a.ja,c):ds(c,new Q([X().qG]))?(m=a.r,f=is(c),h=V().Cj,m.n(f,-1,h,new Q(["\x3d\x3e","-\x3e"])),m=ks(a.ja,c)):m=null;ss(c,new Q([X().sa,X().ib,X().fb]))?(f=ws(c,1),h=X().ea,f=f===h):f=!1;f?(ls(a.r,c,V().Li,R()),gu(c)):(ss(c,new Q([X().sb]))&&1{var D=Zv(I);if(X().Bh===D)return wx(a,I,r,"else");if(X().tq===D){nx(X().tq);D=nw(I);var S=D.fa().A;ds(D,new Q([X().tq]));if(ds(D,new Q([X().ea])))S=new oq(S,null,null,null),xx(a,D,I,S,"body"),I=S;else{var O= -ks(a.ja,D),K=ds(D,new Q([X().Aa,X().Fy]))?ks(a.ja,D):null;ds(D,new Q([X().ea]));S=new oq(S,O,K,null);xx(a,D,I,S,"body");I=S}oo(u,I);z.eu=!0}else X().av===D&&(wx(a,I,r,"final"),z.eu=!0)}));z.eu||ls(a.r,d,V().XB,R());if(0<=u.w)c=new (F(Gx).c)(u.w),u.ma(c,0,2147483647);else{c=null;c=[];for(d=rr(u).k();d.d();)b=d.e(),c.push(null===b?null:b);c=new (F(Gx).c)(c)}r.yh=c;return r}function kw(a,b){nx(X().wq);var c=nw(b);return Hx(a,c,b,ds(c,new Q([X().ug])))} +function ow(a,b){nx(X().Hj);var c=nw(b),d=c.Q().A;if(ds(c,new Q([X().ea]))){if(1===c.Yi()&&ss(c,new Q([X().Ib,X().S]))&&fw(b)){d=a.r;var e=c.p(),f=V().Dj,h=new Q([":",c.fa()]);d.n(e,-1,f,h);d=As(a.ja,c);Qt(c,X().ea);c=new On(b.va,b.Qb,null,Dx(Ku(),b.va,new Q([d])),null,null,!1);wx(a,b,c,"body");return c}d=new co(d,b.Qb,new jo(-1,!0),null,null);c=xx(a,c,b,d,"body");a.r.LQ&&!Lw(a,c,!1)&&(a=a.r,b=b.va,c=V().mn,e=R(),a.n(b,-1,c,e));return d}d=ks(a.ja,c);Cs(c,X().ea);d=new On(b.va,b.Qb,null,Dx(Ku(),b.va, +new Q([d])),null,null,!1);xx(a,c,b,d,"body");return d}function pw(a,b){nx(X().Ni);var c=nw(b);c.Q();var d=ks(a.ja,c);Cs(c,X().ea);a=yx(a,b);return new Ex(b.va,b.Qb,d,a)}function rw(a,b){nx(X().Fj);var c=nw(b);c.Q();var d=Fx(a.GG,c,!1),e=ds(c,new Q([X().lc]))?ks(a.ja,c):null;Cs(c,X().ea);d=new zx(b.va,b.Qb,d,e,null);xx(a,c,b,d,"body");return d} +function sw(a,b,c){nx(X().Oi);var d=nw(b),e=d.Q().A;ds(d,new Q([X().ea]));var f=a.r.Hn;a.r.Hn=!1;var h=R();h=new (F(Gx).c)(h.i());for(var k=W().t,m=0;k.d();)h.a[m]=k.e(),m=1+m|0;var r=new bo(e,null,h,null,null);xx(a,d,b,r,"body");a.r.Hn=f;b=mo();e=R();var u=no(b,e),z=new bx(!1);c.Ha(new Nh(I=>{var D=Zv(I);if(X().Bh===D)return wx(a,I,r,"else");if(X().tq===D){nx(X().tq);D=nw(I);var S=D.fa().A;ds(D,new Q([X().tq]));if(ds(D,new Q([X().ea])))S=new oq(S,null,null,null),xx(a,D,I,S,"body"),I=S;else{var O= +ks(a.ja,D),K=ds(D,new Q([X().Aa,X().Fy]))?ks(a.ja,D):null;ds(D,new Q([X().ea]));S=new oq(S,O,K,null);xx(a,D,I,S,"body");I=S}oo(u,I);z.eu=!0}else X().bv===D&&(wx(a,I,r,"final"),z.eu=!0)}));z.eu||ls(a.r,d,V().XB,R());if(0<=u.w)c=new (F(Gx).c)(u.w),u.ma(c,0,2147483647);else{c=null;c=[];for(d=rr(u).k();d.d();)b=d.e(),c.push(null===b?null:b);c=new (F(Gx).c)(c)}r.yh=c;return r}function kw(a,b){nx(X().wq);var c=nw(b);return Hx(a,c,b,ds(c,new Q([X().ug])))} function Hx(a,b,c,d){if(ds(b,new Q([X().wq,X().Aa]))){var e=ks(a.ja,b);if(null===e)return null;var f=ds(b,new Q([X().Fy]))?As(a.ja,b):null;e=new eo(e.p(),c.Qb,e,f,null,d);ds(b,new Q([X().ea]))?xx(a,b,c,e,"body"):e.zh=Hx(a,b,c,d);return e}return null} -function Bx(a,b,c){var d=Db();try{return nx(X().Bh),b.Ha(new Nh(e=>{var f=Zv(e),h=X().Bh;if(f===h)throw f=nw(e),f.Q(),ds(f,new Q([X().ea]))||(ss(f,new Q([X().lc]))?(ls(a.r,f,V().hq,R()),Bu(f),gu(f),Zt(f,X().Gj)):f.d()&&fw(e)&&js(a.ja,f)?(ls(a.r,f,V().xp,R()),gx(f)):ls(a.r,f,V().an,R())),xr(new yr,d,xx(a,f,e,c,"else"));})),null}catch(e){if(e instanceof yr){b=e;if(b.Vb===d)return b.uf();throw b;}throw e;}}function ox(a,b){return new Fn(b.Q().A,ks(a.ja,b),ds(b,new Q([X().Aa]))?ks(a.ja,b):null)} +function Bx(a,b,c){var d=Cb();try{return nx(X().Bh),b.Ha(new Nh(e=>{var f=Zv(e),h=X().Bh;if(f===h)throw f=nw(e),f.Q(),ds(f,new Q([X().ea]))||(ss(f,new Q([X().lc]))?(ls(a.r,f,V().hq,R()),Bu(f),gu(f),Zt(f,X().Gj)):f.d()&&fw(e)&&js(a.ja,f)?(ls(a.r,f,V().xp,R()),gx(f)):ls(a.r,f,V().an,R())),xr(new yr,d,xx(a,f,e,c,"else"));})),null}catch(e){if(e instanceof yr){b=e;if(b.Vb===d)return b.uf();throw b;}throw e;}}function ox(a,b){return new Fn(b.Q().A,ks(a.ja,b),ds(b,new Q([X().Aa]))?ks(a.ja,b):null)} function rx(a,b){var c=b.Q().A,d=As(a.ja,b);return ds(b,new Q([X().ld]))?new Mn(c,d,ks(a.ja,b),ds(b,new Q([X().Aa]))?ks(a.ja,b):null):new Mn(c,d,null,null)} function sx(a,b){var c=b.p(),d=b.Q().o,e=X().Ch;if(d===e)return d=Wt(a.ja,b),0===d.a.length?(gx(b),ls(a.r,b,V().Rd,R())):b.d()&&!ss(b,new Q([X().xf]))&&(ss(b,new Q([X().ki]))?(b=a.r,e=V().Dj,b.n(c,-1,e,new Q(["import","from"]))):ls(a.r,b,V().Pb,R())),new Sn(c,d);d=b.p();e=mo();var f=R();e=no(e,f);ss(b,new Q([X().Aa]))&&Ut(b,new Q([X().S,X().zd,X().Xl]))?(ls(a.r,b,V().Pb,R()),gu(b)):ss(b,new Q([X().Ch]))&&ls(a.r,b,V().Rd,R());for(;ss(b,new Q([X().zd,X().S,X().sq,X().Xl]));){f=b.fa().o;var h=X().S; f===h?(Ss(e)?f=!1:(f=tt(e),f=!(null!==f&&Ua(f,"."))),f&&vr(X(),b.fa(),X().Ch)?(ls(a.r,b,V().Pc,new Q([b.fa(),"import"])),Zt(b,X().Ch)):(f=b.Q().ta,oo(e,f))):(f=b.fa().o,h=X().Xl,f===h?oo(e,"..."):(f=b.hc(),h=X().zd,f!==h&&ls(a.r,b,V().ii,new Q(["."])),oo(e,".")),b.Q())}e=Gj(e,"","","");Cs(b,X().Ch);f=e;if(0<=f.length&&"_"===f.substring(0,1)&&Ix(e,"_")&&"__future__"!==e&&ss(b,new Q([X().S]))&&2>=ur(X(),"__future__",e))switch(zs(b.fa())){case "nested_scopes":case "generators":case "with_statement":case "division":case "absolute_import":case "print_function":case "unicode_literals":case "generator_stop":case "barry_as_FLUFL":f= a.r,h=V().Pc,f.n(c,-1,h,new Q([e,"__future__"])),e="__future__"}if("__future__"===e){b=Wt(a.ja,b);d=mo();e=R();var k=no(d,e);d=m=>{if(null!==m.Qe){var r=a.r,u=m.ju,z=V().mp,I=R();r.n(u,-1,z,I)}return oo(k,m.ng.K)};e=b.a.length;f=0;if(null!==b)for(;fa.IG){var c=null,d=null,e=null,f=b.Q().A;js(a.ja,b)&&(c=ks(a.ja,b),ds(b,new Q([X().Aa]))&&(d=ks(a.ja,b),ds(b,new Q([X().Aa]))&&(e=ks(a.ja,b))));return new Zn(f,c,d,e)}d=c=null;e=b.Q().A;js(a.ja,b)&&(c=ks(a.ja,b),ds(b,new Q([X().ki]))&&(d=ks(a.ja,b)));return new $n(e,c,d)} -function vx(a,b){var c=b.Q().A;if(b.d()&&!ss(b,new Q([X().xf]))){b=pv(a.ja,b,!0);if(a.r.rc&&b instanceof io){var d=b.vj,e=b.Xg,f=fu().PB;(null===f?null===e:f.b(e))&&b.ke instanceof zo&&b.le instanceof zo&&(a=a.r,e=V().fq,f=R(),a.n(d,-1,e,f))}return new ao(c,b)}return new ao(c,null)} +function vx(a,b){var c=b.Q().A;if(b.d()&&!ss(b,new Q([X().xf]))){b=pv(a.ja,b,!0);if(a.r.rc&&b instanceof io){var d=b.uj,e=b.Xg,f=fu().PB;(null===f?null===e:f.b(e))&&b.ke instanceof zo&&b.le instanceof zo&&(a=a.r,e=V().fq,f=R(),a.n(d,-1,e,f))}return new ao(c,b)}return new ao(c,null)} function tx(a,b){var c=pv(a.ja,b,!1);if(null===c)return null;if(c instanceof ju){var d=c.Cu,e=c.Pr;c=c.Du;ls(a.r,b,V().cG,R());return new Gn(d,new (F(En).c)([e]),c)}d=c.p();if(b.d()){e=b.fa().o;if(X().sb===e){e=mo();var f=R();for(e=no(e,f);ds(b,new Q([X().sb]));)if(oo(e,c),b.d())c=ss(b,new Q([X().Fn]))?Fu(a.ja,b):pv(a.ja,b,!0);else{c=a.r;f=b.p();var h=V().Np,k=R();c.n(f,-1,h,k);c=new Mu(b.Ra())}for(f=rr(e).k();f.d();)if(h=f.e(),iq(h))h.jt(qx().AL);else if(h instanceof Jo||h instanceof jo||h instanceof Fo){k=a.r;var m=h.p(),r=V().Ik;k.n(m,-1,r,new Q([h]))}1===e.w&&(f=dt(e),f instanceof Ho&&1===f.i()?a.r.rc&&(zt(e,0,Oh(Ch(),f.$a)),h=a.r,f=f.Ra(),k=V().Pb,h.n(f,-1,k,new Q([","]))):f instanceof zo||f instanceof Ho||f instanceof Eo||f instanceof go||f instanceof Go||f instanceof xo||(f instanceof ko?c instanceof zo?(f=a.r,h=V().Pl,k=R(),f.n(d,-1,h,k)):(f=a.r,h=V().pp,k=R(),f.n(d,-1,h,k)):c instanceof zo?(f=a.r,h=V().Pl,k=R(),f.n(d,-1,h,k)):(h=a.r,k=V().Ik,h.n(d,-1,k,new Q([f])))));b.d()&&!ss(b,new Q([X().xf]))&& gv(Mt(),b,a.ja.ia)&&(ls(a.r,b,V().Bj,R()),As(a.ja,b));if(1{if(k.o===b)throw xr(new yr,c,new T(k));};var e=d.a.length,f=0;if(null!==d)for(;f{if(k.o===b)throw xr(new yr,c,new T(k));};var e=d.a.length,f=0;if(null!==d)for(;fb<=m.A&&m.A<=c?oo(f,m):void 0;e=a.a.length;var h=0;if(null!==a)for(;h{if(null!==m){if(m=m.la(),m.A<=b&&b<=m.Rc)throw xr(new yr,c,new T(m));}else throw new G(m);}));return up()}catch(m){if(m instanceof yr){a=m;if(a.Vb===c)return a.uf();throw a;}throw m;}}E(Sw,"tigerpython.parser.parsing.Parser$TokenLine",{mW:1}); +function Px(a,b,c){var d=mo(),e=R(),f=no(d,e);a=a.Pi;d=m=>b<=m.A&&m.A<=c?oo(f,m):void 0;e=a.a.length;var h=0;if(null!==a)for(;h{if(null!==m){if(m=m.la(),m.A<=b&&b<=m.Rc)throw xr(new yr,c,new T(m));}else throw new G(m);}));return up()}catch(m){if(m instanceof yr){a=m;if(a.Vb===c)return a.uf();throw a;}throw m;}}E(Sw,"tigerpython.parser.parsing.Parser$TokenLine",{mW:1}); function Tx(a){var b=a.Q(),c=b.o,d=X().S;b=c!==d||"_"===b.ta?new zo(b.A,"???"+b.ta):new zo(b.A,b.ta);ss(a,new Q([X().zd,X().Fa,X().sb]));return b}function Ux(a,b){return ds(b,new Q([X().Dh]))?(a=b.p(),ss(b,new Q([X().S]))?"_"===au(b,0).ta?new Vx(a,null):new Vx(a,Tx(b)):new Vx(a,null)):Wx(a,b)} function Xx(a){var b=a.p(),c=mo(),d=R();for(c=no(c,d);ss(a,new Q([X().yc,X().Gc,X().Uf,X().kd,X().Ib]));)d=a.Q(),oo(c,d);mo();a=new lx;for(d=rr(c).k();d.d();){var e=d.e().o;mx(a,e)}a=a.yd.tf(new Xi(ja(mr)));if(null!==a&&0===Eh().ef(a,1)&&(d=a.a[0],X().Ib===d||X().kd===d||X().Uf===d))return Yx(vu(),dt(c));if(null!==a&&0===Eh().ef(a,2)&&(d=a.a[0],e=a.a[1],!(X().yc!==d&&X().Gc!==d||X().Ib!==e&&X().kd!==e&&X().Uf!==e)))return a=X().Gc,d===a?new Io(b,pu().lp,Yx(vu(),c.u(1))):Yx(vu(),c.u(1));if(null!== a&&0===Eh().ef(a,3)){e=a.a[0];d=a.a[1];var f=a.a[2];if(!(X().Ib!==e&&X().kd!==e||X().yc!==d&&X().Gc!==d||X().Uf!==f))return a=Yx(vu(),c.u(0)),c=Yx(vu(),c.u(2)),e=X().yc,new io(b,d===e?fu().kp:fu().Tu,a,c)}if(null!==a&&0===Eh().ef(a,3)&&(e=a.a[0],d=a.a[1],f=a.a[2],X().Uf===e&&!(X().yc!==d&&X().Gc!==d||X().Ib!==f&&X().kd!==f)))return a=Yx(vu(),c.u(0)),c=Yx(vu(),c.u(2)),e=X().yc,new io(b,d===e?fu().kp:fu().Tu,a,c);if(null!==a&&0===Eh().ef(a,4)){e=a.a[0];f=a.a[1];d=a.a[2];var h=a.a[3];if(!(X().yc!==e&& X().Gc!==e||X().Ib!==f&&X().kd!==f||X().yc!==d&&X().Gc!==d||X().Uf!==h))return a=Yx(vu(),c.u(1)),c=Yx(vu(),c.u(3)),f=X().Gc,e===f&&(a=new Io(b,pu().lp,a)),e=X().yc,new io(b,d===e?fu().kp:fu().Tu,a,c)}return null===a||0!==Eh().ef(a,4)||(e=a.a[0],f=a.a[1],d=a.a[2],a=a.a[3],X().yc!==e&&X().Gc!==e||X().Uf!==f||X().yc!==d&&X().Gc!==d||X().Ib!==a&&X().kd!==a)?null:(a=Yx(vu(),c.u(1)),c=Yx(vu(),c.u(3)),f=X().Gc,e===f&&(a=new Io(b,pu().lp,a)),e=X().yc,new io(b,d===e?fu().kp:fu().Tu,a,c))} function Zx(a,b){for(;;)if(ds(b,new Q([X().zd])))if(ss(b,new Q([X().S]))){var c=b.Q();c=new zo(c.A,c.ta);a=new go(a.p(),c.Ra(),a,c)}else return a;else return a} -function $x(a,b){var c=b.Q(),d=new zo(c.A,c.ta);if("_"!==c.ta){var e=ws(b,0);if(X().zd===e)return new ay(Zx(d,b));if(X().Fa===e){b.p();b.Q();if(ds(b,new Q([X().sa])))return new by(d,null,null);c=mo();e=R();e=no(c,e);c=mo();var f=R();c=no(c,f);var h=[X().S,X().sb];f=Db();try{var k=h.length|0,m=-1+k|0;if(!(0>=k))for(k=0;;){var r=k;if(ws(b,r)!==h[r])throw new iu(f,!1);if(k===m)break;k=1+k|0}k=!0}catch(D){if(D instanceof yr)if(k=D,k.Vb===f)k=k.mg();else throw k;else throw D;}if(!k)for(k=Wx(a,b),oo(e, -k);;){if(ds(b,new Q([X().Aa]))&&!ss(b,new Q([X().sa]))){f=[X().S,X().sb];k=Db();try{var u=f.length|0;h=-1+u|0;if(!(0>=u))for(m=0;;){r=m;if(ws(b,r)!==f[r])throw new iu(k,!1);if(m===h)break;m=1+m|0}k=!0}catch(D){if(D instanceof yr)if(f=D,f.Vb===k)k=f.mg();else throw f;else throw D;}k=!k}else k=!1;if(k)k=Wx(a,b),oo(e,k);else break}k=[X().S,X().sb];u=Db();try{var z=k.length|0;f=-1+z|0;if(!(0>=z))for(z=0;;){h=z;if(ws(b,h)!==k[h])throw new iu(u,!1);if(z===f)break;z=1+z|0}z=!0}catch(D){if(D instanceof yr)if(z= -D,z.Vb===u)z=z.mg();else throw z;else throw D;}if(z)for(z=b.Q(),z=new zo(z.A,z.ta),ds(b,new Q([X().sb])),u=Wx(a,b),z=H(new J,z,u),oo(c,z);;){if(ds(b,new Q([X().Aa]))){u=[X().S,X().sb];z=Db();try{var I=u.length|0;k=-1+I|0;if(!(0>=I))for(f=0;;){h=f;if(ws(b,h)!==u[h])throw new iu(z,!1);if(f===k)break;f=1+f|0}z=!0}catch(D){if(D instanceof yr)if(u=D,u.Vb===z)z=u.mg();else throw u;else throw D;}}else z=!1;if(z)z=b.Q(),z=new zo(z.A,z.ta),ds(b,new Q([X().sb])),u=Wx(a,b),z=H(new J,z,u),oo(c,z);else break}Cs(b, +function $x(a,b){var c=b.Q(),d=new zo(c.A,c.ta);if("_"!==c.ta){var e=ws(b,0);if(X().zd===e)return new ay(Zx(d,b));if(X().Fa===e){b.p();b.Q();if(ds(b,new Q([X().sa])))return new by(d,null,null);c=mo();e=R();e=no(c,e);c=mo();var f=R();c=no(c,f);var h=[X().S,X().sb];f=Cb();try{var k=h.length|0,m=-1+k|0;if(!(0>=k))for(k=0;;){var r=k;if(ws(b,r)!==h[r])throw new iu(f,!1);if(k===m)break;k=1+k|0}k=!0}catch(D){if(D instanceof yr)if(k=D,k.Vb===f)k=k.mg();else throw k;else throw D;}if(!k)for(k=Wx(a,b),oo(e, +k);;){if(ds(b,new Q([X().Aa]))&&!ss(b,new Q([X().sa]))){f=[X().S,X().sb];k=Cb();try{var u=f.length|0;h=-1+u|0;if(!(0>=u))for(m=0;;){r=m;if(ws(b,r)!==f[r])throw new iu(k,!1);if(m===h)break;m=1+m|0}k=!0}catch(D){if(D instanceof yr)if(f=D,f.Vb===k)k=f.mg();else throw f;else throw D;}k=!k}else k=!1;if(k)k=Wx(a,b),oo(e,k);else break}k=[X().S,X().sb];u=Cb();try{var z=k.length|0;f=-1+z|0;if(!(0>=z))for(z=0;;){h=z;if(ws(b,h)!==k[h])throw new iu(u,!1);if(z===f)break;z=1+z|0}z=!0}catch(D){if(D instanceof yr)if(z= +D,z.Vb===u)z=z.mg();else throw z;else throw D;}if(z)for(z=b.Q(),z=new zo(z.A,z.ta),ds(b,new Q([X().sb])),u=Wx(a,b),z=H(new J,z,u),oo(c,z);;){if(ds(b,new Q([X().Aa]))){u=[X().S,X().sb];z=Cb();try{var I=u.length|0;k=-1+I|0;if(!(0>=I))for(f=0;;){h=f;if(ws(b,h)!==u[h])throw new iu(z,!1);if(f===k)break;f=1+f|0}z=!0}catch(D){if(D instanceof yr)if(u=D,u.Vb===z)z=u.mg();else throw u;else throw D;}}else z=!1;if(z)z=b.Q(),z=new zo(z.A,z.ta),ds(b,new Q([X().sb])),u=Wx(a,b),z=H(new J,z,u),oo(c,z);else break}Cs(b, X().sa);if(Ss(e)||Ss(c)){if(Ss(e)){if(Ss(c))return new by(d,null,null);if(0<=c.w)a=new (F(Yi).c)(c.w),c.ma(a,0,2147483647),c=a;else{a=[];for(c=rr(c).k();c.d();)b=c.e(),a.push(null===b?null:b);c=new (F(Yi).c)(a)}return new by(d,null,c)}if(0<=e.w)c=new (F(cy).c)(e.w),e.ma(c,0,2147483647);else{c=[];for(a=rr(e).k();a.d();)b=a.e(),c.push(null===b?null:b);c=new (F(cy).c)(c)}return new by(d,c,null)}if(0<=e.w)a=new (F(cy).c)(e.w),e.ma(a,0,2147483647);else{a=[];for(b=rr(e).k();b.d();)e=b.e(),a.push(null=== e?null:e);a=new (F(cy).c)(a)}if(0<=c.w)b=new (F(Yi).c)(c.w),c.ma(b,0,2147483647),c=b;else{b=[];for(c=rr(c).k();c.d();)e=c.e(),b.push(null===e?null:e);c=new (F(Yi).c)(b)}return new by(d,a,c)}return new dy(c.A,null,new zo(c.A,c.ta))}return new dy(c.A,null,null)} var gy=function ey(a,b){a:{var d=ws(b,0);if(X().yc===d||X().Gc===d)d=Xx(b);else if(X().kd===d||X().Ib===d||X().Uf===d)d=Xx(b);else if(X().Qc===d||X().Bd===d){var e=b.Q();d=e.o;for(var f=e.ta,h=e.Rc;ss(b,new Q([X().Qc,X().Bd]));){var k=b.Q();h=k.o;var m=X().Bd;h===m&&(d=X().Bd);h=k.Rc;f=""+f+k.ta}e=e.A;k=h;h=X().Bd;d=new Fo(e,k,f,d===h)}else if(X().Qk===d)d=new Jo(b.Q().A,Ts().Hk);else if(X().Yl===d)d=new jo(b.Q().A,!1);else if(X().cm===d)d=new jo(b.Q().A,!0);else{if(X().S!==d){d=up();break a}d=b.Q(); @@ -544,27 +544,27 @@ function Fx(a,b,c){var d=b.p(),e=mo(),f=new Q([Ux(a,b)]);for(e=no(e,f);ds(b,new function Wx(a,b){var c=b.p();var d=b.p();var e=mo(),f=new Q([iy(a,b)]);for(e=no(e,f);ds(b,new Q([X().hC]));)f=iy(a,b),oo(e,f);if(1===e.w)d=e.u(0);else{if(0<=e.w)a=new (F(cy).c)(e.w),e.ma(a,0,2147483647);else{a=[];for(e=rr(e).k();e.d();)f=e.e(),a.push(null===f?null:f);a=new (F(cy).c)(a)}d=new jy(d,a)}return ds(b,new Q([X().Fy]))?new dy(c,d,Tx(b)):d} function iy(a,b){var c=ws(b,0);if(X().yc===c||X().Gc===c||X().kd===c||X().Ib===c||X().Uf===c)return new ay(Xx(b));if(X().Qc===c||X().Bd===c){a=b.Q();c=a.o;for(var d=a.ta,e=a.Rc;ss(b,new Q([X().Qc,X().Bd]));){var f=b.Q();e=f.o;var h=X().Bd;e===h&&(c=X().Bd);e=f.Rc;d=""+d+f.ta}b=a.A;a=e;f=X().Bd;return new ay(new Fo(b,a,d,c===f))}if(X().Qk===c)return new ky(new Jo(b.Q().A,Ts().Hk));if(X().Yl===c)return new ky(new jo(b.Q().A,!1));if(X().cm===c)return new ky(new jo(b.Q().A,!0));if(X().S===c)return $x(a, b);if(X().Fa===c)return b.Q(),c=Fx(a,b,!1),Cs(b,X().sa),c;if(X().Wb===c)return b.Q(),c=Fx(a,b,!0),Cs(b,X().fb),c;if(X().Ab===c){c=b.p();b.Q();if(ds(b,new Q([X().ib])))return new ly(c,null,null,null);f=gy(a,b);if(f.v())a=null;else{if(f===R())e=R();else{a=f.X();e=a=new un(a.Ia(),R());for(h=f.Oa();h!==R();){var k=h.X();k=new un(k.Ia(),R());e=e.Sh=k;h=h.Oa()}e=a}if(0<=e.U())a=new (F(En).c)(e.U()),Aj(e,a,0,2147483647);else{a=[];for(e=e.k();e.d();)h=e.e(),a.push(null===h?null:h);a=new (F(En).c)(a)}}if(f.v())f= -null;else{if(f===R())e=R();else for(e=f.X(),h=e=new un(e.la(),R()),f=f.Oa();f!==R();)k=f.X(),k=new un(k.la(),R()),h=h.Sh=k,f=f.Oa();if(0<=e.U())f=new (F(cy).c)(e.U()),Aj(e,f,0,2147483647);else{f=[];for(e=e.k();e.d();)h=e.e(),f.push(null===h?null:h);f=new (F(cy).c)(f)}}h=[X().Dh,X().Dh];e=Db();try{d=h.length|0;k=-1+d|0;if(!(0>=d))for(d=0;;){var m=d;if(ws(b,m)!==h[m])throw new iu(e,!1);if(d===k)break;d=1+d|0}d=!0}catch(r){if(r instanceof yr)if(d=r,d.Vb===e)d=d.mg();else throw d;else throw r;}d?(b.Q(), +null;else{if(f===R())e=R();else for(e=f.X(),h=e=new un(e.la(),R()),f=f.Oa();f!==R();)k=f.X(),k=new un(k.la(),R()),h=h.Sh=k,f=f.Oa();if(0<=e.U())f=new (F(cy).c)(e.U()),Aj(e,f,0,2147483647);else{f=[];for(e=e.k();e.d();)h=e.e(),f.push(null===h?null:h);f=new (F(cy).c)(f)}}h=[X().Dh,X().Dh];e=Cb();try{d=h.length|0;k=-1+d|0;if(!(0>=d))for(d=0;;){var m=d;if(ws(b,m)!==h[m])throw new iu(e,!1);if(d===k)break;d=1+d|0}d=!0}catch(r){if(r instanceof yr)if(d=r,d.Vb===e)d=d.mg();else throw d;else throw r;}d?(b.Q(), b.Q(),d=Tx(b)):d=null;Cs(b,X().ib);return new ly(c,a,f,d)}return null}E(Nw,"tigerpython.parser.parsing.PatternParser",{oW:1});function my(){}my.prototype=new q;my.prototype.constructor=my;function Zw(a,b,c,d){return 0!==b.a.length?new dw(Oh(Ch(),b).A,Sh(Ch(),b).Rc,-1,b,null,c,d):null}E(my,"tigerpython.parser.parsing.PreParser$",{qW:1});var ny;function $w(){ny||(ny=new my);return ny}function oy(a){this.NQ=a;this.em=0}oy.prototype=new q;oy.prototype.constructor=oy; E(oy,"tigerpython.parser.parsing.ReturnValueChecker$ReturnValue",{tW:1});function py(a,b){if(b instanceof qy&&0!==b.ui().a.length){var c=Oh(Ch(),b.ui());c=ry(a.qe,c);b=b.ui();a:{for(var d=0;d=b.$a.a.length){a=new (F(Gy).c)(b.$a.a.length);var c=fj(Ch(),a);if(!c.bc)for(var d= c.qb;;){var e=d;a.a[e]=ry(this.qe,b.$a.a[e]);if(d===c.ze)break;d=d+c.Ya|0}b:{for(b=0;b{this.G(h.Ei)};d=b.a.length;e=0;if(null!==b)for(;e{if(k instanceof zo)Fy(this,k,ry(this.qe,a.hd));else if(k instanceof Ho){var m=a.hd;if(m instanceof Ho&&m.i()===k.i()){var r=fj(Ch(),k.$a);if(!r.bc)for(var u=r.qb;;){var z=u;Fy(this,k.$a.a[z],ry(this.qe,m.$a.a[z]));if(u===r.ze)break;u=u+r.Ya|0}}else if(m instanceof ko)if(m=ry(this.qe,m),m instanceof Jy&&m.i()===k.i()){if(r=fj(Ch(),k.$a),!r.bc)for(u=r.qb;;){z=u;Fy(this,k.$a.a[z],m.TC.a[z]);if(u===r.ze)break;u=u+r.Ya|0}}else if(k= +e|0;else if(b instanceof A)for(;e{if(k instanceof zo)Fy(this,k,ry(this.qe,a.hd));else if(k instanceof Ho){var m=a.hd;if(m instanceof Ho&&m.i()===k.i()){var r=fj(Ch(),k.$a);if(!r.bc)for(var u=r.qb;;){var z=u;Fy(this,k.$a.a[z],ry(this.qe,m.$a.a[z]));if(u===r.ze)break;u=u+r.Ya|0}}else if(m instanceof ko)if(m=ry(this.qe,m),m instanceof Jy&&m.i()===k.i()){if(r=fj(Ch(),k.$a),!r.bc)for(u=r.qb;;){z=u;Fy(this,k.$a.a[z],m.TC.a[z]);if(u===r.ze)break;u=u+r.Ya|0}}else if(k= k.$a,m=I=>{Fy(this,I,Y().za)},r=k.a.length,u=0,null!==k)for(;u{Fy(this,I,Y().za)},r=k.a.length,u=0,null!==k)for(;ury(this.qe,k),d=b.a.length,e=new (F(Gy).c)(d);if(0=c?(h=ry(this.qe,b.vf.a[h-c|0].Ia()),h=Y().md===h?Y().za:h):h=Y().za;oo(d,new Ry(k,h))}if(f===e.ze)break;f=f+e.Ya|0}null!==b.Qf&&(c=b.Qf.pg,e=null!==b.Qf.Zg?ry(this.qe,b.Qf.Zg):Y().mi,oo(d,new Ry(c,e)));null!==b.qg&&(c=b.qg.pg,b=null!== b.qg.Zg?ry(this.qe,b.qg.Zg):Y().Cs,oo(d,new Ry(c,b)));if(0<=d.w)b=new (F(Sy).c)(d.w),d.ma(b,0,2147483647),d=b;else{b=[];for(d=rr(d).k();d.d();)c=d.e(),b.push(null===c?null:c);d=new (F(Sy).c)(b)}}else for(d=R(),d=new (F(Sy).c)(d.i()),b=W().t,c=0;b.d();)d.a[c]=b.e(),c=1+c|0;0!==d.a.length&&(b=this.Td,b instanceof Qy&&!Kv(a,new Q(["staticmethod"]))?(Kv(a,new Q(["classmethod"]))?d.a[0].Ih=new Ty(b.Ln):d.a[0].Ih=new My(b.Ln),1{k=k.K;var m=Y().za;Dp(e,k,m)};d=b.a.length;var f=0;if(null!==b)for(;f{k=k.K;var m=Y().za;Dp(e,k,m)};d=b.a.length;var f=0;if(null!==b)for(;f< @@ -589,31 +589,31 @@ this.hM=new (F(l).c)("call_tracing(func, args)\nCall ``func(*args)``, while trac this.iM=new (F(l).c)("argv byteorder builtin_module_names copyright dllhandle dont_write_bytecode __displayhook__ __displayhook__ exc_type exc_value exc_traceback exec_prefix executable exitfunc flags float_info float_repr_style hexversion long_info last_type last_value last_traceback maxint maxsize maxunicode meta_path modules path path_hooks path_importer_cache platform prefix ps1 ps2 py3kwarning stdin stdout stderr __stdin__ __stdout__ __stderr__ subversion tracebacklimit version api_version version_info warnoptions winver".split(" ")); this.jM=new (F(l).c)("[str]asctime(t)\n Convert a tuple or struct_time representing a time as returned by gmtime() or localtime() to a 24-character string of the following form: 'Sun Jun 20 23:21:05 1993'. If t is not provided, the current time as returned by localtime() is used. Locale information is not used by asctime().;[float]clock()\n Return the current processor time as a floating point number expressed in seconds.;[str]ctime(secs)\n Convert a time expressed in seconds since the epoch to a string representing local time.;gmtime(secs)\n Convert a time expressed in seconds since the epoch to a struct_time in UTC in which the dst flag is always zero.;localtime(secs)\n Like gmtime() but converts to local time. If secs is not provided or None, the current time as returned by time() is used.;[float]mktime(t)\n This is the inverse function of localtime(). Its argument is the struct_time or full 9-tuple which expresses the time in local time, not UTC. It returns a floating point number, for compatibility with time().;sleep(secs)\n Suspend execution of the current thread for the given number of seconds. The argument may be a floating point number to indicate a more precise sleep time.;[str]strftime(format, t)\n Convert a tuple or struct_time representing a time as returned by gmtime() or localtime() to a string as specified by the format argument.;strptime(string)\n Parse a string representing a time according to a format. The return value is a struct_time as returned by gmtime() or localtime().;[float]time()\n Return the time in seconds since the epoch as a floating point number.".split(";")); this.kM=new (F(l).c)(["altzone","daylight","timezone","tzname"])}fz.prototype=new q;fz.prototype.constructor=fz;E(fz,"tigerpython.parser.scopes.BuiltinModules$",{xW:1});var gz;function hz(){gz||(gz=new fz);return gz} -function iz(){this.gm=null;jz=this;var a=this.gm=wq().Ba(R()),b=kz().OC;lz(a,b);a=mz(nz(),"abs",new (F(l).c)(["x"]),Y().Oj,"Return the absolute value of a number.");b=mz(nz(),"all",new (F(l).c)(["iter"]),Y().Nj,"Return True if all elements of the iterable are true (or if the iterable is empty).");var c=mz(nz(),"any",new (F(l).c)(["iterable"]),Y().Nj,"Return True if any element of the iterable is true."),d=mz(nz(),"bin",new (F(l).c)(["x"]),Y().Ri,"Convert an integer number to a binary string."),e= -mz(nz(),"callable",new (F(l).c)(["object"]),Y().Nj,"Return True if the object argument appears callable, False if not."),f=mz(nz(),"chr",new (F(l).c)(["i"]),Y().Ri,"Return a string of one character whose ASCII code is the integer i. For example, chr(97) returns the string 'a'."),h=mz(nz(),"classmethod",new (F(l).c)(["function"]),Y().za,"Return a class method for function."),k=mz(nz(),"cmp",new (F(l).c)(["x","y"]),Y().Gh,"Compare the two objects x and y and return an integer according to the outcome."), +function iz(){this.gm=null;jz=this;var a=this.gm=wq().Ba(R()),b=kz().OC;lz(a,b);a=mz(nz(),"abs",new (F(l).c)(["x"]),Y().Oj,"Return the absolute value of a number.");b=mz(nz(),"all",new (F(l).c)(["iter"]),Y().Nj,"Return True if all elements of the iterable are true (or if the iterable is empty).");var c=mz(nz(),"any",new (F(l).c)(["iterable"]),Y().Nj,"Return True if any element of the iterable is true."),d=mz(nz(),"bin",new (F(l).c)(["x"]),Y().Qi,"Convert an integer number to a binary string."),e= +mz(nz(),"callable",new (F(l).c)(["object"]),Y().Nj,"Return True if the object argument appears callable, False if not."),f=mz(nz(),"chr",new (F(l).c)(["i"]),Y().Qi,"Return a string of one character whose ASCII code is the integer i. For example, chr(97) returns the string 'a'."),h=mz(nz(),"classmethod",new (F(l).c)(["function"]),Y().za,"Return a class method for function."),k=mz(nz(),"cmp",new (F(l).c)(["x","y"]),Y().Gh,"Compare the two objects x and y and return an integer according to the outcome."), m=mz(nz(),"compile",new (F(l).c)(["source","filename","mode"]),Y().za,"Compile the source into a code or AST object."),r=mz(nz(),"delattr",new (F(l).c)(["object","name"]),Y().On,"This is a relative of setattr(). The arguments are an object and a string. The string must be the name of one of the object\u2019s attributes. The function deletes the named attribute, provided the object allows it.");nz();var u=R();u=new (F(l).c)(u.i());for(var z=W().t,I=0;z.d();)u.a[I]=z.e(),I=1+I|0;u=mz(0,"dir",u,oz(pz(), -Y().Ri),"Without arguments, return the list of names in the current local scope. With an argument, attempt to return a list of valid attributes for that object.");z=mz(nz(),"divmod",new (F(l).c)(["a","b"]),Y().Qn,"Take two (non complex) numbers as arguments and return a pair of numbers consisting of their quotient and remainder when using long division.");I=mz(nz(),"enumerate",new (F(l).c)(["sequence"]),Y().za,"Return an enumerate object. sequence must be a sequence, an iterator, or some other object which supports iteration."); +Y().Qi),"Without arguments, return the list of names in the current local scope. With an argument, attempt to return a list of valid attributes for that object.");z=mz(nz(),"divmod",new (F(l).c)(["a","b"]),Y().Qn,"Take two (non complex) numbers as arguments and return a pair of numbers consisting of their quotient and remainder when using long division.");I=mz(nz(),"enumerate",new (F(l).c)(["sequence"]),Y().za,"Return an enumerate object. sequence must be a sequence, an iterator, or some other object which supports iteration."); var D=mz(nz(),"eval",new (F(l).c)(["expression"]),Y().za,"The arguments are a Unicode or Latin-1 encoded string and optional globals and locals."),S=mz(nz(),"execfile",new (F(l).c)(["filename"]),Y().za,"This function is similar to the exec statement, but parses a file instead of a string. It is different from the import statement in that it does not use the module administration - it reads the file unconditionally and does not create a new module."),O=mz(nz(),"filter",new (F(l).c)(["function","iterable"]), -Y().li,"Construct a list from those elements of iterable for which function returns true."),K=mz(nz(),"format",new (F(l).c)(["value"]),Y().Ri,'Convert a value to a "formatted" representation, as controlled by format_spec.'),oa=mz(nz(),"getattr",new (F(l).c)(["object","name"]),Y().za,"Return the value of the named attribute of object. name must be a string. If the string is the name of one of the object\u2019s attributes, the result is the value of that attribute.");nz();var ca=R();ca=new (F(l).c)(ca.i()); +Y().li,"Construct a list from those elements of iterable for which function returns true."),K=mz(nz(),"format",new (F(l).c)(["value"]),Y().Qi,'Convert a value to a "formatted" representation, as controlled by format_spec.'),oa=mz(nz(),"getattr",new (F(l).c)(["object","name"]),Y().za,"Return the value of the named attribute of object. name must be a string. If the string is the name of one of the object\u2019s attributes, the result is the value of that attribute.");nz();var ca=R();ca=new (F(l).c)(ca.i()); for(var ta=W().t,sa=0;ta.d();)ca.a[sa]=ta.e(),sa=1+sa|0;ca=mz(0,"globals",ca,Y().xz,"Return a dictionary representing the current global symbol table.");ta=mz(nz(),"hasattr",new (F(l).c)(["object","name"]),Y().Nj,"The arguments are an object and a string. The result is True if the string is the name of one of the object's attributes, False if not.");sa=mz(nz(),"hash",new (F(l).c)(["object"]),Y().Gh,"Return the hash value of the object (if it has one). Hash values are integers.");var Ea=mz(nz(),"hex", -new (F(l).c)(["x"]),Y().Ri,'Convert an integer number (of any size) to a lowercase hexadecimal string prefixed with "0x".'),ab=mz(nz(),"id",new (F(l).c)(["object"]),Y().Gh,'Return the "identity" of an object. This is an integer (or long integer) which is guaranteed to be unique and constant for this object during its lifetime.'),Ta=mz(nz(),"input",new (F(l).c)(["prompt"]),Y().za,'The function asks the user to input a text or numeric value and returns it as "str", "int" or "float".'),db=mz(nz(),"isinstance", +new (F(l).c)(["x"]),Y().Qi,'Convert an integer number (of any size) to a lowercase hexadecimal string prefixed with "0x".'),ab=mz(nz(),"id",new (F(l).c)(["object"]),Y().Gh,'Return the "identity" of an object. This is an integer (or long integer) which is guaranteed to be unique and constant for this object during its lifetime.'),Ta=mz(nz(),"input",new (F(l).c)(["prompt"]),Y().za,'The function asks the user to input a text or numeric value and returns it as "str", "int" or "float".'),db=mz(nz(),"isinstance", new (F(l).c)(["object","classinfo"]),Y().Nj,"Return true if the object argument is an instance of the classinfo argument, or of a (direct, indirect or virtual) subclass thereof."),fb=mz(nz(),"issubclass",new (F(l).c)(["object","classinfo"]),Y().Nj,"Return true if class is a subclass (direct, indirect or virtual) of classinfo."),ya=mz(nz(),"iter",new (F(l).c)(["o"]),Y().za,"Return an iterator object."),Ka=mz(nz(),"len",new (F(l).c)(["x"]),Y().Gh,"Return the length (the number of items) of an object."); nz();var Sa=R();Sa=new (F(l).c)(Sa.i());for(var Ca=W().t,Fa=0;Ca.d();)Sa.a[Fa]=Ca.e(),Fa=1+Fa|0;this.et(new Q([a,b,c,d,e,f,h,k,m,r,u,z,I,D,S,O,K,oa,ca,ta,sa,Ea,ab,Ta,db,fb,ya,Ka,mz(0,"locals",Sa,Y().xz,"Update and return a dictionary representing the current local symbol table."),mz(nz(),"map",new (F(l).c)(["function","iterable"]),Y().li,"Apply function to every item of iterable and return a list of the results."),mz(nz(),"max",new (F(l).c)(["..."]),Y().Oj,"Return the largest item in an iterable or the largest of two or more arguments."), -mz(nz(),"min",new (F(l).c)(["..."]),Y().Oj,"Return the smallest item in an iterable or the smallest of two or more arguments."),mz(nz(),"next",new (F(l).c)(["iterator"]),Y().za,"Retrieve the next item from the iterator by calling its next() method."),mz(nz(),"oct",new (F(l).c)(["x"]),Y().Ri,"Convert an integer number (of any size) to an octal string."),mz(nz(),"open",new (F(l).c)(["name","mode"]),Y().RG,"Open a file, returning an object of the file type"),mz(nz(),"ord",new (F(l).c)(["c"]),Y().Gh, +mz(nz(),"min",new (F(l).c)(["..."]),Y().Oj,"Return the smallest item in an iterable or the smallest of two or more arguments."),mz(nz(),"next",new (F(l).c)(["iterator"]),Y().za,"Retrieve the next item from the iterator by calling its next() method."),mz(nz(),"oct",new (F(l).c)(["x"]),Y().Qi,"Convert an integer number (of any size) to an octal string."),mz(nz(),"open",new (F(l).c)(["name","mode"]),Y().RG,"Open a file, returning an object of the file type"),mz(nz(),"ord",new (F(l).c)(["c"]),Y().Gh, "Given a string of length one, return an integer representing the Unicode code point of the character when the argument is a unicode object, or the value of the byte when the argument is an 8-bit string."),mz(nz(),"property",new (F(l).c)(["fget, fset"]),Y().QG,"Return a property attribute."),mz(nz(),"pow",new (F(l).c)(["x","y"]),Y().za,"Return x to the power y; if z is present, return x to the power y, modulo z (computed more efficiently than pow(x, y) % z). The two-argument form pow(x, y) is equivalent to using the power operator: x**y."), -mz(nz(),"range",new (F(l).c)(["stop:int"]),oz(pz(),Y().Gh),"This is a versatile function to create lists containing arithmetic progressions."),mz(nz(),"raw_input",new (F(l).c)(["prompt"]),Y().Ri,"The function reads a line from input, converts it to a string (stripping a trailing newline), and returns that."),mz(nz(),"reduce",new (F(l).c)(["function","iterable"]),Y().li,"Apply function of two arguments cumulatively to the items of iterable, from left to right, so as to reduce the iterable to a single value. For example, reduce(lambda x, y: x+y, [1, 2, 3, 4, 5]) calculates ((((1+2)+3)+4)+5)."), -mz(nz(),"reload",new (F(l).c)(["module"]),Y().Oj,"Reload a previously imported module."),mz(nz(),"repr",new (F(l).c)(["object"]),Y().Ri,"Return a string containing a printable representation of an object."),mz(nz(),"reversed",new (F(l).c)(["seq"]),Y().Oj,"Return a reverse iterator."),mz(nz(),"round",new (F(l).c)(["number","ndigits"]),Y().za,"Return the floating point value number rounded to ndigits digits after the decimal point. If ndigits is omitted, it defaults to zero."),mz(nz(),"setattr",new (F(l).c)(["object", +mz(nz(),"range",new (F(l).c)(["stop:int"]),oz(pz(),Y().Gh),"This is a versatile function to create lists containing arithmetic progressions."),mz(nz(),"raw_input",new (F(l).c)(["prompt"]),Y().Qi,"The function reads a line from input, converts it to a string (stripping a trailing newline), and returns that."),mz(nz(),"reduce",new (F(l).c)(["function","iterable"]),Y().li,"Apply function of two arguments cumulatively to the items of iterable, from left to right, so as to reduce the iterable to a single value. For example, reduce(lambda x, y: x+y, [1, 2, 3, 4, 5]) calculates ((((1+2)+3)+4)+5)."), +mz(nz(),"reload",new (F(l).c)(["module"]),Y().Oj,"Reload a previously imported module."),mz(nz(),"repr",new (F(l).c)(["object"]),Y().Qi,"Return a string containing a printable representation of an object."),mz(nz(),"reversed",new (F(l).c)(["seq"]),Y().Oj,"Return a reverse iterator."),mz(nz(),"round",new (F(l).c)(["number","ndigits"]),Y().za,"Return the floating point value number rounded to ndigits digits after the decimal point. If ndigits is omitted, it defaults to zero."),mz(nz(),"setattr",new (F(l).c)(["object", "name","value"]),Y().On,"This is the counterpart of getattr(). The arguments are an object, a string and an arbitrary value. The string may name an existing attribute or a new attribute. The function assigns the value to the attribute, provided the object allows it."),mz(nz(),"sorted",new (F(l).c)(["iterable"]),Y().Oj,"Return a new sorted list from the items in iterable."),mz(nz(),"staticmethod",new (F(l).c)(["function"]),Y().Oj,"Return a static method for function."),mz(nz(),"sum",new (F(l).c)(["iterable"]), -Y().za,"Sums the items of an iterable from left to right and returns the total."),mz(nz(),"super",new (F(l).c)(["type","instance"]),Y().FM,"Return a proxy object that delegates method calls to a parent or sibling class of type."),mz(nz(),"unichr",new (F(l).c)(["i"]),Y().Ri,"Return the Unicode string of one character whose Unicode code is the integer i."),mz(nz(),"vars",new (F(l).c)(["object"]),Y().za,"Return the __dict__ attribute for a module, class, instance, or any other object with a __dict__ attribute."), -mz(nz(),"xrange",new (F(l).c)(["stop"]),Y().za,"This function is very similar to range(), but returns an xrange object instead of a list."),mz(nz(),"zip",new (F(l).c)(["..."]),Y().li,"This function returns a list of tuples, where the i-th tuple contains the i-th element from each of the argument sequences or iterables."),Y().zf,Y().EC,Y().pv,Y().Cs,Y().Aq,Y().HC,Y().Af,Y().Bf,Y().JC,Y().KC,Y().Rb,Y().GM,Y().mi,Y().LC]));this.et(new Q([mz(nz(),"inputInt",new (F(l).c)(["prompt"]),Y().Af,"The function asks the user to input an integer value and returns it."), +Y().za,"Sums the items of an iterable from left to right and returns the total."),mz(nz(),"super",new (F(l).c)(["type","instance"]),Y().FM,"Return a proxy object that delegates method calls to a parent or sibling class of type."),mz(nz(),"unichr",new (F(l).c)(["i"]),Y().Qi,"Return the Unicode string of one character whose Unicode code is the integer i."),mz(nz(),"vars",new (F(l).c)(["object"]),Y().za,"Return the __dict__ attribute for a module, class, instance, or any other object with a __dict__ attribute."), +mz(nz(),"xrange",new (F(l).c)(["stop"]),Y().za,"This function is very similar to range(), but returns an xrange object instead of a list."),mz(nz(),"zip",new (F(l).c)(["..."]),Y().li,"This function returns a list of tuples, where the i-th tuple contains the i-th element from each of the argument sequences or iterables."),Y().zf,Y().EC,Y().qv,Y().Cs,Y().Aq,Y().HC,Y().Af,Y().Bf,Y().JC,Y().KC,Y().Rb,Y().GM,Y().mi,Y().LC]));this.et(new Q([mz(nz(),"inputInt",new (F(l).c)(["prompt"]),Y().Af,"The function asks the user to input an integer value and returns it."), mz(nz(),"inputFloat",new (F(l).c)(["prompt"]),Y().Af,"The function asks the user to input a numeric value and returns it."),mz(nz(),"inputString",new (F(l).c)(["prompt"]),Y().Af,"The function asks the user to input a text value and returns it."),mz(nz(),"msgDlg",new (F(l).c)(["x"]),Y().md,"Displays the given value(s) in a small dialog window."),mz(nz(),"head",new (F(l).c)(["s"]),Y().PG,"Return the first element of a list or sequence."),mz(nz(),"tail",new (F(l).c)(["s"]),Y().Oj,"Return the list or sequence without its first element.")]))} iz.prototype=new q;iz.prototype.constructor=iz;iz.prototype.et=function(a){a.Ha(new Nh(b=>{var c=Ps().gm,d=b.Ca();Dp(c,d,b)}))};function nv(a,b){a=a.gm.jb(b);return a instanceof T&&a.Y instanceof qz?!0:!1}E(iz,"tigerpython.parser.scopes.BuiltinNames$",{yW:1});var jz;function Ps(){jz||(jz=new iz);return jz}function rz(){wq().Ba(R())}rz.prototype=new q;rz.prototype.constructor=rz;E(rz,"tigerpython.parser.scopes.ExtNameInfo",{AW:1});function sz(){this.tM=null;var a=mo(),b=R();this.tM=no(a,b)} -sz.prototype=new q;sz.prototype.constructor=sz;function tz(a,b){var c=Av().eg().jb(b);if(c instanceof T)return c.Y;if(up()===c){a:{c=Db();try{for(var d=rr(a.tM).k();d.d();){var e=d.e(),f=e.yO(b);if(f instanceof T)throw xr(new yr,c,uz(vz(),f.Y,e));}var h=null}catch(k){if(k instanceof yr){a=k;if(a.Vb===c){h=a.uf();break a}throw a;}throw k;}}return null!==h?(Dp(Av().eg(),b,h),h):Y().za}throw new G(c);} +sz.prototype=new q;sz.prototype.constructor=sz;function tz(a,b){var c=Av().eg().jb(b);if(c instanceof T)return c.Y;if(up()===c){a:{c=Cb();try{for(var d=rr(a.tM).k();d.d();){var e=d.e(),f=e.yO(b);if(f instanceof T)throw xr(new yr,c,uz(vz(),f.Y,e));}var h=null}catch(k){if(k instanceof yr){a=k;if(a.Vb===c){h=a.uf();break a}throw a;}throw k;}}return null!==h?(Dp(Av().eg(),b,h),h):Y().za}throw new G(c);} sz.prototype.nc=function(a){if(Nj(L(),a,46)){var b=Oj(a,46),c=tz(this,Zj(L(),a,b));return null!==c?c.$c(ak(L(),a,1+b|0)):up()}return new T(tz(this,a))};function wz(a,b){if(Nj(L(),b,46)){a=a.nc(b);if(a instanceof T)return a.Y;if(up()===a)return Y().za;throw new G(a);}return tz(a,b)}function xz(a,b,c){var d=a.nc(b);if(d instanceof T)a=d.Y.$c(c);else{if(up()!==d)throw new G(d);a=a.nc(b+"."+c)}return a.v()?Y().za:a.kb()}E(sz,"tigerpython.parser.scopes.ModuleLoader",{DW:1}); function yz(){this.wz=this.pM=this.sM=this.rM=this.qM=this.oM=null;this.Ye=0;zz=this;this.wz=new sz}yz.prototype=new q;yz.prototype.constructor=yz; yz.prototype.eg=function(){if(0===(16&this.Ye)<<24>>24&&0===(16&this.Ye)<<24>>24){var a=wq(),b=a.Ba,c=new J;0===(1&this.Ye)<<24>>24&&0===(1&this.Ye)<<24>>24&&(this.oM=new Az,this.Ye=(1|this.Ye)<<24>>24);c=H(c,"math",this.oM);var d=new J;0===(2&this.Ye)<<24>>24&&0===(2&this.Ye)<<24>>24&&(this.qM=new Bz,this.Ye=(2|this.Ye)<<24>>24);d=H(d,"os",this.qM);var e=new J;0===(4&this.Ye)<<24>>24&&0===(4&this.Ye)<<24>>24&&(this.rM=new Cz,this.Ye=(4|this.Ye)<<24>>24);e=H(e,"sys",this.rM);var f=new J;0===(8&this.Ye)<< 24>>24&&0===(8&this.Ye)<<24>>24&&(this.sM=new Dz,this.Ye=(8|this.Ye)<<24>>24);this.pM=b.call(a,new Q([c,d,e,H(f,"time",this.sM)]));this.Ye=(16|this.Ye)<<24>>24}return this.pM};E(yz,"tigerpython.parser.scopes.ModuleLoader$",{EW:1});var zz;function Av(){zz||(zz=new yz);return zz}function Sz(a){var b=mo(),c=R();a.zq=no(b,c)}function Tz(){this.zq=this.Wf=null}Tz.prototype=new q;Tz.prototype.constructor=Tz;function Uz(){}Uz.prototype=Tz.prototype;function zy(a,b){null!==b&&(oo(a.zq,b),b.Wf=a)}g=Tz.prototype; -g.mt=function(a){var b=Db();try{if(-1===this.Ra()||this.sf()<=a&&a<=this.Ra()){for(var c=rr(this.zq).k();c.d();){var d=c.e().mt(a);if(!d.v())throw xr(new yr,b,d);}return new T(this)}return up()}catch(e){if(e instanceof yr){a=e;if(a.Vb===b)return a.uf();throw a;}throw e;}};g.Ig=function(){return null!==this.Wf?this.Wf.Ig():""};g.kI=function(){return null!==this.Wf?this.Wf.kI():null};function dz(a,b){null!==b&&a.cl(b.Ca(),b)} +g.mt=function(a){var b=Cb();try{if(-1===this.Ra()||this.sf()<=a&&a<=this.Ra()){for(var c=rr(this.zq).k();c.d();){var d=c.e().mt(a);if(!d.v())throw xr(new yr,b,d);}return new T(this)}return up()}catch(e){if(e instanceof yr){a=e;if(a.Vb===b)return a.uf();throw a;}throw e;}};g.Ig=function(){return null!==this.Wf?this.Wf.Ig():""};g.kI=function(){return null!==this.Wf?this.Wf.kI():null};function dz(a,b){null!==b&&a.cl(b.Ca(),b)} g.fl=function(a){var b=this.Lh().jb(a);return up()===b?null!==this.Wf?this.Wf.fl(a):Rm(Qm(),Ps().gm).jb(a):b};g.nc=function(a){if(Nj(L(),a,46)){var b=Vz(a,46),c=this.nc(Zj(L(),a,b));if(c instanceof T)return c.Y.$c(ak(L(),a,1+b|0));if(up()===c)return up();throw new G(c);}return this.fl(a)};function ez(a,b){Wz(new Xz(b.gc(),new Nh(c=>null!==c))).Ha(new Nh(c=>{if(null!==c){var d=c.Ia();c=c.la();0<=d.length&&"_"===d.substring(0,1)||a.cl(d,c)}else throw new G(c);}))}g.hE=function(a){null!==this.Wf&&this.Wf.hE(a)}; g.Nh=function(a,b){return null!==this.Wf?this.Wf.Nh(a,b):null===b||""===b?new T(wz(Av().wz,a)):new T(xz(Av().wz,a,b))}; g.j=function(){var a=Vj(L(),"%s(%d, %d)",new Q([Yz(ia(this)),this.sf(),this.Ra()])),b=this.zq;mo();var c=new lx;for(b=rr(b).k();b.d();){var d=b.e().j().split("\n").join("\n ");mx(c,d)}c=c.yd;a=Ss(c)?a:Vj(L(),"%s\n %s",new Q([a,Gj(c,"","\n ","")]));c=(new Xz(this.Lh(),new Nh(e=>null!==e))).hb(new Nh(e=>{if(null!==e)return Vj(L(),"%s \x3d %s",new Q([e.Ia(),e.la().j()]));throw new G(e);}));return c.v()?a:Vj(L(),"%s\n %s",new Q([a,Gj(c,"","\n ","")]))};function zv(){}zv.prototype=new q; @@ -621,30 +621,30 @@ zv.prototype.constructor=zv;E(zv,"tigerpython.parser.scopes.Scope$",{KW:1});var function $z(a,b){if(null!==b&&0>>16|0,c=c.$.a[d&(-1+c.$.a.length|0)],c=null===c?null:ll(c,a,d),a=null===c?aA(kz(),a):c.Cc;L();a:{c=b.length;for(d=0;d>>16|0;a=a.$.a[c&(-1+a.$.a.length|0)];b=null===a?null:ll(a,b,c);b=null===b?null:b.Cc}return b}E(xA,"tigerpython.parser.types.ExceptionTypes$",{TW:1});var yA;function kz(){yA||(yA=new xA);return yA}function zA(){}zA.prototype=new q;zA.prototype.constructor=zA; function uz(a,b,c){if(Ix(b,".py")){a=Ix(b,"/__init__.py")?bk(L(),b,12):bk(L(),b,3);var d=Vz(a,47);a=0<=d?ak(L(),a,1+d|0):a;b=new AA(a,c,b)}else b=null;return b}E(zA,"tigerpython.parser.types.FutureModule$",{VW:1});var BA;function vz(){BA||(BA=new zA);return BA} -function CA(){this.QM=null;DA=this;this.QM=wq().Ba(new Q([H(new J,Y().zf,Y().Nj),H(new J,Y().OG,Y().yM),H(new J,Y().EC,Y().zM),H(new J,Y().pv,Y().Nn),H(new J,Y().Cs,Y().xz),H(new J,Y().GC,Y().RG),H(new J,Y().Aq,Y().Pj),H(new J,Y().HC,Y().AM),H(new J,Y().IC,Y().BM),H(new J,Y().Af,Y().Gh),H(new J,Y().Ds,Y().CM),H(new J,Y().Bf,Y().li),H(new J,Y().JC,Y().DM),H(new J,Y().md,Y().On),H(new J,Y().KC,Y().EM),H(new J,Y().Rb,Y().Ri),H(new J,Y().mi,Y().Qn)]))}CA.prototype=new q;CA.prototype.constructor=CA; +function CA(){this.QM=null;DA=this;this.QM=wq().Ba(new Q([H(new J,Y().zf,Y().Nj),H(new J,Y().OG,Y().yM),H(new J,Y().EC,Y().zM),H(new J,Y().qv,Y().Nn),H(new J,Y().Cs,Y().xz),H(new J,Y().GC,Y().RG),H(new J,Y().Aq,Y().Pj),H(new J,Y().HC,Y().AM),H(new J,Y().IC,Y().BM),H(new J,Y().Af,Y().Gh),H(new J,Y().Ds,Y().CM),H(new J,Y().Bf,Y().li),H(new J,Y().JC,Y().DM),H(new J,Y().md,Y().On),H(new J,Y().KC,Y().EM),H(new J,Y().Rb,Y().Qi),H(new J,Y().mi,Y().Qn)]))}CA.prototype=new q;CA.prototype.constructor=CA; function Wy(a,b){if(b instanceof Jy||b instanceof tA)return b;if(b instanceof Oy){a=a.QM;if(ia(a)!==ja(Nq)){var c=a.jb(b);if(c instanceof T)b=c.Y;else{if(up()!==c)throw new G(c);c=new pA(b);Dp(a,b,c);b=c}}else{c=M(P(),b);c^=c>>>16|0;var d=c&(-1+a.$.a.length|0),e=a.$.a[d];e=null===e?null:ll(e,b,c);if(null!==e)b=e.Cc;else{e=a.$;var f=new pA(b);(1+a.Nc|0)>=a.Bi&&EA(a,a.$.a.length<<1);FA(a,b,f,c,e===a.$?d:c&(-1+a.$.a.length|0));b=f}}return b}return b instanceof pA?b:Y().za} E(CA,"tigerpython.parser.types.Instance$",{XW:1});var DA;function Xy(){DA||(DA=new CA);return DA}function GA(){this.RM=null;HA=this;this.RM=wq().Ba(R())}GA.prototype=new q;GA.prototype.constructor=GA; function oz(a,b){a=a.RM;if(ia(a)!==ja(Nq)){var c=a.jb(b);if(c instanceof T)b=c.Y;else{if(up()!==c)throw new G(c);c=new tA(b);Dp(a,b,c);b=c}}else{c=M(P(),b);c^=c>>>16|0;var d=c&(-1+a.$.a.length|0),e=a.$.a[d];e=null===e?null:ll(e,b,c);if(null!==e)b=e.Cc;else{e=a.$;var f=new tA(b);(1+a.Nc|0)>=a.Bi&&EA(a,a.$.a.length<<1);FA(a,b,f,c,e===a.$?d:c&(-1+a.$.a.length|0));b=f}}return b}E(GA,"tigerpython.parser.types.ListType$",{$W:1});var HA;function pz(){HA||(HA=new GA);return HA} @@ -679,30 +679,30 @@ function lA(a){Qm();var b=R();b=Rm(0,b);a=a.hb(new Nh(c=>H(new J,c.Ca(),c)));ret function Hy(a,b){switch(b.a.length){case 0:return Y().Qn;case 1:a=a.UM;var c=b.a[0];if(ia(a)!==ja(Nq)){var d=a.jb(c);if(d instanceof T)b=d.Y;else{if(up()!==d)throw new G(d);b=new Jy(b);Dp(a,c,b)}}else{d=M(P(),c);d^=d>>>16|0;var e=d&(-1+a.$.a.length|0),f=a.$.a[e];f=null===f?null:ll(f,c,d);null!==f?b=f.Cc:(f=a.$,b=new Jy(b),(1+a.Nc|0)>=a.Bi&&EA(a,a.$.a.length<<1),FA(a,c,b,d,f===a.$?e:d&(-1+a.$.a.length|0)))}return b;case 2:a=a.VM;c=H(new J,b.a[0],b.a[1]);if(ia(a)!==ja(Nq))if(d=a.jb(c),d instanceof T)b= d.Y;else{if(up()!==d)throw new G(d);b=new Jy(b);Dp(a,c,b)}else d=M(P(),c),d^=d>>>16|0,e=d&(-1+a.$.a.length|0),f=a.$.a[e],f=null===f?null:ll(f,c,d),null!==f?b=f.Cc:(f=a.$,b=new Jy(b),(1+a.Nc|0)>=a.Bi&&EA(a,a.$.a.length<<1),FA(a,c,b,d,f===a.$?e:d&(-1+a.$.a.length|0)));return b;default:return new Jy(b)}}E(MA,"tigerpython.parser.types.TupleType$",{iX:1});var NA;function Iy(){NA||(NA=new MA);return NA}function OA(){this.Ez=null}OA.prototype=new q;OA.prototype.constructor=OA;function PA(){} PA.prototype=OA.prototype;OA.prototype.nc=function(a){a:{for(var b=QA(new RA,new SA(this.Ez));0{if(m instanceof Cn)return m=new Ry(m.pg,Y().za),oo(e,m)};var f=c.a.length,h=0;if(null!==c)for(;h{c.lb=bz(cz(),c.lb,ry(a,k))},e=b.a.length,f=0;if(null!==b)for(;f>24&&0===(1&a.Rj)<<24>>24&&(a.bN=new cB(a),a.Rj=(1|a.Rj)<<24>>24);return a.bN}function dB(a){if(0===(4&a.Rj)<<24>>24&&0===(4&a.Rj)<<24>>24){eB||(eB=new fB);var b=a.ZQ;0===(2&a.Rj)<<24>>24&&0===(2&a.Rj)<<24>>24&&(a.$M=ip(bB(a)),a.Rj=(2|a.Rj)<<24>>24);var c=a.$M;var d=xp().Sz;b=yp(new zp,b);d=new gB(-1,b,d);null!==c&&(new hB(d)).G(c);a.aN=d;a.Rj=(4|a.Rj)<<24>>24}return a.aN} -function qp(a){var b=Qw(bB(a),a.bh);if(null!==b){var c=dB(a).mt(a.bh);if(!(c instanceof T))throw new G(c);c=c.Y;var d=Qx(b,a.bh);if(d instanceof T){d=d.Y;var e=d.o;if(cp(new Q([X().Qc,X().Bd]),e)){e=d.A;var f=X().Fa;a:{var h=Db();try{var k=fj(Ch(),b.Qi);if(!k.bc)for(var m=k.qb;;){var r=m;if(b.Qi.a[r].A>=e){if(0=u.a.length?(e=u.a[0].o,r=X().zd,e=e===r):e=!1;if(e)return b=$A(a).vv,(null===d?null===b:d.b(b))?c=qB(c,c.Yj(k), -m):(b=$A(a).Hs,c=(null===d?null===b:d.b(b))?c.sA().Tz.Yj(m):c.Yj(m)),c instanceof T?(c=c.Y,b=$A(a).vv,(null===d?null===b:d.b(b))?a=!0:(a=$A(a).Hs,a=null===d?null===a:d.b(a)),a?new rB(u.a[0].Rc,c):new sB(u.a[0].Rc,c)):null;1(d|0)<=b));return c.v()?up():new T(a.yg.y(c.jo(ui())))} +function qp(a){var b=Qw(bB(a),a.bh);if(null!==b){var c=dB(a).mt(a.bh);if(!(c instanceof T))throw new G(c);c=c.Y;var d=Qx(b,a.bh);if(d instanceof T){d=d.Y;var e=d.o;if(cp(new Q([X().Qc,X().Bd]),e)){e=d.A;var f=X().Fa;a:{var h=Cb();try{var k=fj(Ch(),b.Pi);if(!k.bc)for(var m=k.qb;;){var r=m;if(b.Pi.a[r].A>=e){if(0=u.a.length?(e=u.a[0].o,r=X().zd,e=e===r):e=!1;if(e)return b=$A(a).wv,(null===d?null===b:d.b(b))?c=qB(c,c.Yj(k), +m):(b=$A(a).Hs,c=(null===d?null===b:d.b(b))?c.sA().Tz.Yj(m):c.Yj(m)),c instanceof T?(c=c.Y,b=$A(a).wv,(null===d?null===b:d.b(b))?a=!0:(a=$A(a).Hs,a=null===d?null===a:d.b(a)),a?new rB(u.a[0].Rc,c):new sB(u.a[0].Rc,c)):null;1(d|0)<=b));return c.v()?up():new T(a.yg.y(c.jo(ui())))} function iB(a,b){var c=new Zr(null);Wz(new Xz(a.yg,new Nh(d=>null!==d))).Ha(new Nh(d=>{if(null!==d)d=d.la(),d instanceof ko&&zB(d)<=b&&b<=d.Di&&(null!==c.lb?zB(c.lb){this.z(h)},d=b.a.length,e=0;if(null!==b)for(;e{this.z(h)},c=a.a.length,d=0,null!==a)for(;d< +jB.prototype.sj=function(a){if(a instanceof Gn){var b=a.uh,c=h=>{this.z(h)},d=b.a.length,e=0;if(null!==b)for(;e{this.z(h)},c=a.a.length,d=0,null!==a)for(;d< c;)b(a.a[d]),d=1+d|0;else if(a instanceof y)for(;d{this.z(h)},c=a.a.length,d=0,null!==a)for(;d{this.z(h)},c=a.a.length,d=0,null!==a)for(;d{this.tj(h)},c=a.a.length,d=0,null!==a)for(;d{this.sj(h)},c=a.a.length,d=0,null!==a)for(;d{this.z(h)};b=a.a.length;var d=0;if(null!==a)for(;d{this.z(h.zk)},b=a.a.length,d=0,null!==a)for(;d{this.z(h.zk)},b=a.a.length,d=0,null!==a)for(;d{this.z(h.la())},b=a.a.length,d=0,null!==a)for(;d{this.z(h.la())},b=a.a.length,d=0,null!==a)for(;d>>16|0;var e=d&(-1+a.$.a.length|0),f=a.$.a[e];f=null===f?null:ll(f,b,d);null!==f?b=f.Cc:(f=a.$,c=nB(oB(),null,c),(1+a.Nc|0)>=a.Bi&&EA(a,a.$.a.length<<1),FA(a,b,c,d,f===a.$?e:d&(-1+a.$.a.length|0)),b=c)}return b}return c.v()?new MB:new NB(c)}E(KB,"tigerpython.utilities.completer.StringArgumentFilter$",{yX:1});var LB; function oB(){LB||(LB=new KB);return LB}function OB(){}OB.prototype=new q;OB.prototype.constructor=OB;function PB(){}PB.prototype=OB.prototype;var QB=E(0,"tigerpython.utilities.fastparse.ExprAst",{ch:1});function RB(){}RB.prototype=new q;RB.prototype.constructor=RB; function SB(a,b){if(b instanceof TB){var c=b.Jh,d=b.Xk;return b.zg+(null!==c?" : "+SB(a,c):"")+(null!==d?" \x3d "+SB(a,d):"")}if(b instanceof UB){a=b.Hz;c=b.Iz;nj();d=k=>SB(VB(),k);var e=c.a.length;b=new (F(l).c)(e);if(0SB(VB(),k);e=a.a.length;c=new (F(l).c)(e);if(0{var m= k.Ia();m=m.v()?up():new T(m.kb()+" \x3d ");return""+(m.v()?"":m.kb())+SB(VB(),k.la())};d=c.a.length;e=new (F(l).c)(d);if(0SB(VB(),k.Ia())+": "+SB(VB(),k.la());c=a.a.length;d=new (F(l).c)(c);if(0SB(VB(),k);c=a.a.length; d=new (F(l).c)(c);if(0SB(VB(),k);c=a.a.length;d=new (F(l).c)(c);if(0SB(VB(),k);c=a.a.length;d=new (F(l).c)(c);if(0SB(VB(),k);c=a.a.length;d=new (F(l).c)(c);if(0SB(VB(),k);c=a.a.length;d=new (F(l).c)(c);if(0d||a.Yk===d&&a.Qs>e;case "\x3c\x3d":return a.Yk +function lD(a,b,c,d){if(b instanceof IB){var e=b.Ls;b=b.Ms;if(e instanceof HB&&"sys"===e.Tj&&"version_info"===b&&d instanceof fC&&(e=d.Un,null!==e&&0===Eh().ef(e,2)&&(d=e.a[0],e=e.a[1],d instanceof $B&&(d=d.Cv,e instanceof $B))))switch(e=e.Cv,d=ek(fk(),d,10),e=ek(fk(),e,10),c){case "\x3d\x3d":return a.Yk===d&&a.Qs===e;case "!\x3d":return a.Yk!==d||a.Qs!==e;case "\x3c":return a.Ykd||a.Yk===d&&a.Qs>e;case "\x3c\x3d":return a.Yk d||a.Yk===d&&a.Qs>=e;default:throw new G(c);}}return!1}function mD(a,b){yC(a.W,zC().nH)&&(b?xC(a):CC(a))} function pD(a){var b=EC(a.W);if(b instanceof oD){for(b=Hj();a.W.d()&&!(GC(a.W)instanceof qD);){var c=EC(a.W);if(c instanceof HC){var d=b.wc;d.P=""+d.P+c.Rn}else if(c instanceof xD)yD(b,46);else throw new G(c);}eD(a.W,zC().pH);b=VC(a);b instanceof T?(b=b.Y,FC(a),TC(a,b)):FC(a)}else if(b instanceof qD){b=Hj();for(c=null;a.W.d()&&!(GC(a.W)instanceof sD);)if(d=EC(a.W),d instanceof HC){var e=b.wc;e.P=""+e.P+d.Rn}else if(d instanceof xD)yD(b,46);else if(d instanceof zD)c=IC(a.W);else if(d instanceof AD){d= a;BD(d,b.wc.P,c)||null!==d.jD;c=b.wc;d=c.P;e=0-d.length|0;if(0>e)d=d.substring(0,0);else for(var f=0;f!==e;)d+="\x00",f=1+f|0;c.P=d;c=null}else throw new G(d);BD(a,b.wc.P,c)||null!==a.jD}else throw new G(b);} @@ -767,25 +767,25 @@ function FD(a){var b=!1,c=null,d=EC(a.W);if(d instanceof HC)return new HB(d.Rn); c.w)b=new (F(QB).c)(c.w),c.ma(b,0,2147483647);else{b=[];for(c=rr(c).k();c.d();)d=c.e(),b.push(null===d?null:d);b=new (F(QB).c)(b)}a=new YB(a,b)}else{c=mo();e=R();c=no(c,e);for(oo(c,d);MC(a.W);)d=LC(a),oo(c,d);NC(a.W,b);if(0<=c.w)a=new (F(QB).c)(c.w),c.ma(a,0,2147483647);else{a=[];for(b=rr(c).k();b.d();)c=b.e(),a.push(null===c?null:c);a=new (F(QB).c)(a)}a=new bC(a)}return a}if(d instanceof CD)return new cC(FD(a));if(d instanceof LD)return new gC("...");if(d instanceof MD)throw new RC(d.Mz,"f-Strings are not supported"); b=Vj(L(),"unexpected token: '%s'",new Q([d]));throw new RC(SC(a),b);}function ND(){this.na=null}ND.prototype=new q;ND.prototype.constructor=ND;function OD(){}OD.prototype=ND.prototype; function PD(a,b){if(b instanceof qy&&0!==b.ui().a.length){var c=Oh(Ch(),b.ui());c=QD(a.Ed,c);b=b.ui();a:{for(var d=0;d=b.$a.a.length){a=new (F(eE).c)(b.$a.a.length);var c=fj(Ch(),a);if(!c.bc)for(var d= c.qb;;){var e=d;a.a[e]=QD(this.Ed,b.$a.a[e]);if(d===c.ze)break;d=d+c.Ya|0}b:{for(b=0;b{this.G(h.Ei)};d=b.a.length;e=0;if(null!==b)for(;e{if(k instanceof zo)cE(this,k,QD(this.Ed,a.hd));else if(k instanceof Ho){var m=a.hd;if(m instanceof Ho&&m.i()===k.i()){var r=fj(Ch(),k.$a);if(!r.bc)for(var u=r.qb;;){var z=u;cE(this,k.$a.a[z],QD(this.Ed,m.$a.a[z]));if(u===r.ze)break;u=u+r.Ya|0}}else if(m instanceof ko)if(m=QD(this.Ed,m),m instanceof hE&&m.i()===k.i()){if(r=fj(Ch(),k.$a),!r.bc)for(u=r.qb;;){z=u;cE(this,k.$a.a[z],m.bA.a[z]);if(u===r.ze)break;u=u+r.Ya|0}}else if(k= +e|0;else if(b instanceof A)for(;e{if(k instanceof zo)cE(this,k,QD(this.Ed,a.hd));else if(k instanceof Ho){var m=a.hd;if(m instanceof Ho&&m.i()===k.i()){var r=fj(Ch(),k.$a);if(!r.bc)for(var u=r.qb;;){var z=u;cE(this,k.$a.a[z],QD(this.Ed,m.$a.a[z]));if(u===r.ze)break;u=u+r.Ya|0}}else if(m instanceof ko)if(m=QD(this.Ed,m),m instanceof hE&&m.i()===k.i()){if(r=fj(Ch(),k.$a),!r.bc)for(u=r.qb;;){z=u;cE(this,k.$a.a[z],m.bA.a[z]);if(u===r.ze)break;u=u+r.Ya|0}}else if(k= k.$a,m=I=>{cE(this,I,U().ka)},r=k.a.length,u=0,null!==k)for(;u{cE(this,I,U().ka)},r=k.a.length,u=0,null!==k)for(;uQD(this.Ed,k),d=b.a.length,e=new (F(eE).c)(d);if(0=c?(h=QD(this.Ed,b.vf.a[h-c|0].Ia()),h=U().Fd===h?U().ka:h):h=U().ka;oo(d,new mE(k,h))}if(f===e.ze)break;f=f+e.Ya|0}null!==b.Qf&&(c=new mE(b.Qf.pg,U().Ff),oo(d,c));null!==b.qg&&(b=new mE(b.qg.pg,U().Vj),oo(d,b));if(0<=d.w)b=new (F(nE).c)(d.w), d.ma(b,0,2147483647),d=b;else{b=[];for(d=rr(d).k();d.d();)c=d.e(),b.push(null===c?null:c);d=new (F(nE).c)(b)}}else for(d=R(),d=new (F(nE).c)(d.i()),b=W().t,c=0;b.d();)d.a[c]=b.e(),c=1+c|0;h=!1;0!==d.a.length&&(b=this.Ud,b instanceof lE&&!Kv(a,new Q(["staticmethod"]))?(h=!0,Kv(a,new Q(["classmethod"]))?d.a[0].Cg=new oE(b.Vn):d.a[0].Cg=new iE(b.Vn),1=D?(ca=QD(this.Ed,k.vf.a[K-D|0].Ia()),ta=U().Fd===ca?U().ka:ca):ta=U().ka;ca=K=D?(ca=QD(this.Ed,k.vf.a[K-D|0].Ia()),ta=U().Fd===ca?U().ka:ca):ta=U().ka;ca=K{k=k.K;var m=U().ka;Dp(e,k,m)};d=b.a.length;var f=0;if(null!==b)for(;f{k=k.K;var m=U().ka;Dp(e,k,m)};d=b.a.length;var f=0;if(null!==b)for(;f< @@ -810,27 +810,27 @@ this.JN=new (F(l).c)("call_tracing(func, args)\nCall ``func(*args)``, while trac this.KN=new (F(l).c)("argv byteorder builtin_module_names copyright dllhandle dont_write_bytecode __displayhook__ __displayhook__ exc_type exc_value exc_traceback exec_prefix executable exitfunc flags float_info float_repr_style hexversion long_info last_type last_value last_traceback maxint maxsize maxunicode meta_path modules path path_hooks path_importer_cache platform prefix ps1 ps2 py3kwarning stdin stdout stderr __stdin__ __stdout__ __stderr__ subversion tracebacklimit version api_version version_info warnoptions winver".split(" ")); this.LN=new (F(l).c)("[str]asctime(t)\n Convert a tuple or struct_time representing a time as returned by gmtime() or localtime() to a 24-character string of the following form: 'Sun Jun 20 23:21:05 1993'. If t is not provided, the current time as returned by localtime() is used. Locale information is not used by asctime().;[float]clock()\n Return the current processor time as a floating point number expressed in seconds.;[str]ctime(secs)\n Convert a time expressed in seconds since the epoch to a string representing local time.;gmtime(secs)\n Convert a time expressed in seconds since the epoch to a struct_time in UTC in which the dst flag is always zero.;localtime(secs)\n Like gmtime() but converts to local time. If secs is not provided or None, the current time as returned by time() is used.;[float]mktime(t)\n This is the inverse function of localtime(). Its argument is the struct_time or full 9-tuple which expresses the time in local time, not UTC. It returns a floating point number, for compatibility with time().;sleep(secs)\n Suspend execution of the current thread for the given number of seconds. The argument may be a floating point number to indicate a more precise sleep time.;[str]strftime(format, t)\n Convert a tuple or struct_time representing a time as returned by gmtime() or localtime() to a string as specified by the format argument.;strptime(string)\n Parse a string representing a time according to a format. The return value is a struct_time as returned by gmtime() or localtime().;[float]time()\n Return the time in seconds since the epoch as a floating point number.".split(";")); this.MN=new (F(l).c)(["altzone","daylight","timezone","tzname"])}HE.prototype=new q;HE.prototype.constructor=HE;E(HE,"tigerpython.utilities.scopes.BuiltinModules$",{NY:1});var IE;function JE(){IE||(IE=new HE);return IE} -function KE(){this.Ev=null;LE=this;var a=this.Ev=wq().Ba(R()),b=ME().DD;lz(a,b);a=NE(OE(),"abs",new (F(l).c)(["x"]),U().Wj,"Return the absolute value of a number.");b=NE(OE(),"all",new (F(l).c)(["iter"]),U().Zk,"Return True if all elements of the iterable are true (or if the iterable is empty).");var c=NE(OE(),"any",new (F(l).c)(["iterable"]),U().Zk,"Return True if any element of the iterable is true."),d=NE(OE(),"bin",new (F(l).c)(["x"]),U().pi,"Convert an integer number to a binary string."),e= +function KE(){this.Fv=null;LE=this;var a=this.Fv=wq().Ba(R()),b=ME().DD;lz(a,b);a=NE(OE(),"abs",new (F(l).c)(["x"]),U().Wj,"Return the absolute value of a number.");b=NE(OE(),"all",new (F(l).c)(["iter"]),U().Zk,"Return True if all elements of the iterable are true (or if the iterable is empty).");var c=NE(OE(),"any",new (F(l).c)(["iterable"]),U().Zk,"Return True if any element of the iterable is true."),d=NE(OE(),"bin",new (F(l).c)(["x"]),U().pi,"Convert an integer number to a binary string."),e= NE(OE(),"callable",new (F(l).c)(["object"]),U().Zk,"Return True if the object argument appears callable, False if not."),f=NE(OE(),"chr",new (F(l).c)(["i"]),U().pi,"Return a string of one character whose ASCII code is the integer i. For example, chr(97) returns the string 'a'."),h=NE(OE(),"classmethod",new (F(l).c)(["function"]),U().ka,"Return a class method for function."),k=NE(OE(),"cmp",new (F(l).c)(["x","y"]),U().Kh,"Compare the two objects x and y and return an integer according to the outcome."), -m=NE(OE(),"compile",new (F(l).c)(["source","filename","mode"]),U().ka,"Compile the source into a code or AST object."),r=NE(OE(),"delattr",new (F(l).c)(["object","name"]),U().Iv,"This is a relative of setattr(). The arguments are an object and a string. The string must be the name of one of the object\u2019s attributes. The function deletes the named attribute, provided the object allows it.");OE();var u=R();u=new (F(l).c)(u.i());for(var z=W().t,I=0;z.d();)u.a[I]=z.e(),I=1+I|0;u=NE(0,"dir",u,PE(QE(), +m=NE(OE(),"compile",new (F(l).c)(["source","filename","mode"]),U().ka,"Compile the source into a code or AST object."),r=NE(OE(),"delattr",new (F(l).c)(["object","name"]),U().Jv,"This is a relative of setattr(). The arguments are an object and a string. The string must be the name of one of the object\u2019s attributes. The function deletes the named attribute, provided the object allows it.");OE();var u=R();u=new (F(l).c)(u.i());for(var z=W().t,I=0;z.d();)u.a[I]=z.e(),I=1+I|0;u=NE(0,"dir",u,PE(QE(), U().pi),"Without arguments, return the list of names in the current local scope. With an argument, attempt to return a list of valid attributes for that object.");z=NE(OE(),"divmod",new (F(l).c)(["a","b"]),U().nm,"Take two (non complex) numbers as arguments and return a pair of numbers consisting of their quotient and remainder when using long division.");I=NE(OE(),"enumerate",new (F(l).c)(["sequence"]),U().ka,"Return an enumerate object. sequence must be a sequence, an iterator, or some other object which supports iteration."); var D=NE(OE(),"eval",new (F(l).c)(["expression"]),U().ka,"The arguments are a Unicode or Latin-1 encoded string and optional globals and locals."),S=NE(OE(),"execfile",new (F(l).c)(["filename"]),U().ka,"This function is similar to the exec statement, but parses a file instead of a string. It is different from the import statement in that it does not use the module administration - it reads the file unconditionally and does not create a new module."),O=NE(OE(),"filter",new (F(l).c)(["function","iterable"]), U().Xf,"Construct a list from those elements of iterable for which function returns true."),K=NE(OE(),"format",new (F(l).c)(["value"]),U().pi,'Convert a value to a "formatted" representation, as controlled by format_spec.'),oa=NE(OE(),"getattr",new (F(l).c)(["object","name"]),U().ka,"Return the value of the named attribute of object. name must be a string. If the string is the name of one of the object\u2019s attributes, the result is the value of that attribute.");OE();var ca=R();ca=new (F(l).c)(ca.i()); -for(var ta=W().t,sa=0;ta.d();)ca.a[sa]=ta.e(),sa=1+sa|0;ca=NE(0,"globals",ca,U().Hv,"Return a dictionary representing the current global symbol table.");ta=NE(OE(),"hasattr",new (F(l).c)(["object","name"]),U().Zk,"The arguments are an object and a string. The result is True if the string is the name of one of the object's attributes, False if not.");sa=NE(OE(),"hash",new (F(l).c)(["object"]),U().Kh,"Return the hash value of the object (if it has one). Hash values are integers.");var Ea=NE(OE(),"hex", +for(var ta=W().t,sa=0;ta.d();)ca.a[sa]=ta.e(),sa=1+sa|0;ca=NE(0,"globals",ca,U().Iv,"Return a dictionary representing the current global symbol table.");ta=NE(OE(),"hasattr",new (F(l).c)(["object","name"]),U().Zk,"The arguments are an object and a string. The result is True if the string is the name of one of the object's attributes, False if not.");sa=NE(OE(),"hash",new (F(l).c)(["object"]),U().Kh,"Return the hash value of the object (if it has one). Hash values are integers.");var Ea=NE(OE(),"hex", new (F(l).c)(["x"]),U().pi,'Convert an integer number (of any size) to a lowercase hexadecimal string prefixed with "0x".'),ab=NE(OE(),"id",new (F(l).c)(["object"]),U().Kh,'Return the "identity" of an object. This is an integer (or long integer) which is guaranteed to be unique and constant for this object during its lifetime.'),Ta=NE(OE(),"input",new (F(l).c)(["prompt"]),U().ka,'The function asks the user to input a text or numeric value and returns it as "str", "int" or "float".'),db=NE(OE(),"isinstance", new (F(l).c)(["object","classinfo"]),U().Zk,"Return true if the object argument is an instance of the classinfo argument, or of a (direct, indirect or virtual) subclass thereof."),fb=NE(OE(),"issubclass",new (F(l).c)(["object","classinfo"]),U().Zk,"Return true if class is a subclass (direct, indirect or virtual) of classinfo."),ya=NE(OE(),"iter",new (F(l).c)(["o"]),U().ka,"Return an iterator object."),Ka=NE(OE(),"len",new (F(l).c)(["x"]),U().Kh,"Return the length (the number of items) of an object."); -OE();var Sa=R();Sa=new (F(l).c)(Sa.i());for(var Ca=W().t,Fa=0;Ca.d();)Sa.a[Fa]=Ca.e(),Fa=1+Fa|0;this.et(new Q([a,b,c,d,e,f,h,k,m,r,u,z,I,D,S,O,K,oa,ca,ta,sa,Ea,ab,Ta,db,fb,ya,Ka,NE(0,"locals",Sa,U().Hv,"Update and return a dictionary representing the current local symbol table."),NE(OE(),"map",new (F(l).c)(["function","iterable"]),U().Xf,"Apply function to every item of iterable and return a list of the results."),NE(OE(),"max",new (F(l).c)(["..."]),U().Wj,"Return the largest item in an iterable or the largest of two or more arguments."), +OE();var Sa=R();Sa=new (F(l).c)(Sa.i());for(var Ca=W().t,Fa=0;Ca.d();)Sa.a[Fa]=Ca.e(),Fa=1+Fa|0;this.et(new Q([a,b,c,d,e,f,h,k,m,r,u,z,I,D,S,O,K,oa,ca,ta,sa,Ea,ab,Ta,db,fb,ya,Ka,NE(0,"locals",Sa,U().Iv,"Update and return a dictionary representing the current local symbol table."),NE(OE(),"map",new (F(l).c)(["function","iterable"]),U().Xf,"Apply function to every item of iterable and return a list of the results."),NE(OE(),"max",new (F(l).c)(["..."]),U().Wj,"Return the largest item in an iterable or the largest of two or more arguments."), NE(OE(),"min",new (F(l).c)(["..."]),U().Wj,"Return the smallest item in an iterable or the smallest of two or more arguments."),NE(OE(),"next",new (F(l).c)(["iterator"]),U().ka,"Retrieve the next item from the iterator by calling its next() method."),NE(OE(),"oct",new (F(l).c)(["x"]),U().pi,"Convert an integer number (of any size) to an octal string."),NE(OE(),"open",new (F(l).c)(["name","mode"]),U().tD,"Open a file, returning an object of the file type"),NE(OE(),"ord",new (F(l).c)(["c"]),U().Kh, "Given a string of length one, return an integer representing the Unicode code point of the character when the argument is a unicode object, or the value of the byte when the argument is an 8-bit string."),NE(OE(),"property",new (F(l).c)(["fget, fset"]),U().DH,"Return a property attribute."),NE(OE(),"pow",new (F(l).c)(["x","y"]),U().ka,"Return x to the power y; if z is present, return x to the power y, modulo z (computed more efficiently than pow(x, y) % z). The two-argument form pow(x, y) is equivalent to using the power operator: x**y."), NE(OE(),"range",new (F(l).c)(["stop:int"]),PE(QE(),U().Kh),"This is a versatile function to create lists containing arithmetic progressions."),NE(OE(),"raw_input",new (F(l).c)(["prompt"]),U().pi,"The function reads a line from input, converts it to a string (stripping a trailing newline), and returns that."),NE(OE(),"reduce",new (F(l).c)(["function","iterable"]),U().Xf,"Apply function of two arguments cumulatively to the items of iterable, from left to right, so as to reduce the iterable to a single value. For example, reduce(lambda x, y: x+y, [1, 2, 3, 4, 5]) calculates ((((1+2)+3)+4)+5)."), NE(OE(),"reload",new (F(l).c)(["module"]),U().Wj,"Reload a previously imported module."),NE(OE(),"repr",new (F(l).c)(["object"]),U().pi,"Return a string containing a printable representation of an object."),NE(OE(),"reversed",new (F(l).c)(["seq"]),U().Wj,"Return a reverse iterator."),NE(OE(),"round",new (F(l).c)(["number","ndigits"]),U().ka,"Return the floating point value number rounded to ndigits digits after the decimal point. If ndigits is omitted, it defaults to zero."),NE(OE(),"setattr",new (F(l).c)(["object", -"name","value"]),U().Iv,"This is the counterpart of getattr(). The arguments are an object, a string and an arbitrary value. The string may name an existing attribute or a new attribute. The function assigns the value to the attribute, provided the object allows it."),NE(OE(),"sorted",new (F(l).c)(["iterable"]),U().Wj,"Return a new sorted list from the items in iterable."),NE(OE(),"staticmethod",new (F(l).c)(["function"]),U().Wj,"Return a static method for function."),NE(OE(),"sum",new (F(l).c)(["iterable"]), +"name","value"]),U().Jv,"This is the counterpart of getattr(). The arguments are an object, a string and an arbitrary value. The string may name an existing attribute or a new attribute. The function assigns the value to the attribute, provided the object allows it."),NE(OE(),"sorted",new (F(l).c)(["iterable"]),U().Wj,"Return a new sorted list from the items in iterable."),NE(OE(),"staticmethod",new (F(l).c)(["function"]),U().Wj,"Return a static method for function."),NE(OE(),"sum",new (F(l).c)(["iterable"]), U().ka,"Sums the items of an iterable from left to right and returns the total."),NE(OE(),"super",new (F(l).c)(["type","instance"]),U().YN,"Return a proxy object that delegates method calls to a parent or sibling class of type."),NE(OE(),"unichr",new (F(l).c)(["i"]),U().pi,"Return the Unicode string of one character whose Unicode code is the integer i."),NE(OE(),"vars",new (F(l).c)(["object"]),U().ka,"Return the __dict__ attribute for a module, class, instance, or any other object with a __dict__ attribute."), -NE(OE(),"xrange",new (F(l).c)(["stop"]),U().ka,"This function is very similar to range(), but returns an xrange object instead of a list."),NE(OE(),"zip",new (F(l).c)(["..."]),U().Xf,"This function returns a list of tuples, where the i-th tuple contains the i-th element from each of the argument sequences or iterables."),U().Df,U().rD,U().Gv,U().Vj,U().Fq,U().vD,U().Ef,U().af,U().yD,U().zD,U().Jb,U().ZN,U().Ff,U().AD]));this.et(new Q([NE(OE(),"inputInt",new (F(l).c)(["prompt"]),U().Ef,"The function asks the user to input an integer value and returns it."), +NE(OE(),"xrange",new (F(l).c)(["stop"]),U().ka,"This function is very similar to range(), but returns an xrange object instead of a list."),NE(OE(),"zip",new (F(l).c)(["..."]),U().Xf,"This function returns a list of tuples, where the i-th tuple contains the i-th element from each of the argument sequences or iterables."),U().Df,U().rD,U().Hv,U().Vj,U().Fq,U().vD,U().Ef,U().af,U().yD,U().zD,U().Jb,U().ZN,U().Ff,U().AD]));this.et(new Q([NE(OE(),"inputInt",new (F(l).c)(["prompt"]),U().Ef,"The function asks the user to input an integer value and returns it."), NE(OE(),"inputFloat",new (F(l).c)(["prompt"]),U().Ef,"The function asks the user to input a numeric value and returns it."),NE(OE(),"inputString",new (F(l).c)(["prompt"]),U().Ef,"The function asks the user to input a text value and returns it."),NE(OE(),"msgDlg",new (F(l).c)(["x"]),U().Fd,"Displays the given value(s) in a small dialog window."),NE(OE(),"head",new (F(l).c)(["s"]),U().CH,"Return the first element of a list or sequence."),NE(OE(),"tail",new (F(l).c)(["s"]),U().Wj,"Return the list or sequence without its first element.")]))} -KE.prototype=new q;KE.prototype.constructor=KE;KE.prototype.et=function(a){a.Ha(new Nh(b=>{var c=dE().Ev,d=b.Ca();Dp(c,d,b)}))};E(KE,"tigerpython.utilities.scopes.BuiltinNames$",{OY:1});var LE;function dE(){LE||(LE=new KE);return LE}function RE(){wq().Ba(R())}RE.prototype=new q;RE.prototype.constructor=RE;E(RE,"tigerpython.utilities.scopes.ExtNameInfo",{QY:1});function SE(){this.vH=null;var a=mo(),b=R();this.vH=no(a,b)}SE.prototype=new q;SE.prototype.constructor=SE; -function TE(a){for(a=rr(a.vH).k();a.d();)for(var b=a.e(),c=new kj(new Nh(m=>!xp().eg().ya(m)),b.QZ()),d=ce(fe(),c.ik),e=0;e{var c=dE().Fv,d=b.Ca();Dp(c,d,b)}))};E(KE,"tigerpython.utilities.scopes.BuiltinNames$",{OY:1});var LE;function dE(){LE||(LE=new KE);return LE}function RE(){wq().Ba(R())}RE.prototype=new q;RE.prototype.constructor=RE;E(RE,"tigerpython.utilities.scopes.ExtNameInfo",{QY:1});function SE(){this.vH=null;var a=mo(),b=R();this.vH=no(a,b)}SE.prototype=new q;SE.prototype.constructor=SE; +function TE(a){for(a=rr(a.vH).k();a.d();)for(var b=a.e(),c=new kj(new Nh(m=>!xp().eg().ya(m)),b.QZ()),d=ce(fe(),c.ik),e=0;e>24&&0===(16&this.Ze)<<24>>24){var a=wq(),b=a.Ba,c=new J;0===(1&this.Ze)<<24>>24&&0===(1&this.Ze)<<24>>24&&(this.QN=new aF,this.Ze=(1|this.Ze)<<24>>24);c=H(c,"math",this.QN);var d=new J;0===(2&this.Ze)<<24>>24&&0===(2&this.Ze)<<24>>24&&(this.SN=new bF,this.Ze=(2|this.Ze)<<24>>24);d=H(d,"os",this.SN);var e=new J;0===(4&this.Ze)<<24>>24&&0===(4&this.Ze)<<24>>24&&(this.TN=new cF,this.Ze=(4|this.Ze)<<24>>24);e=H(e,"sys",this.TN);var f=new J;0===(8&this.Ze)<< @@ -839,8 +839,8 @@ function Ep(a,b,c){if(null!==b&&""!==b){var d=Tj(L(),b,46),e=yp(new zp,d.a[-1+d. m=r(gF,m,f.lb,Rm(Qm(),e.Gd.re))):m=iF(OE(),m,Rm(Qm(),e.Gd.re)),null!==m&&k.gd(m.Ca(),m);else if(null!==m&&""!==m)if(0<=m.length&&"["===m.substring(0,1)){r=ak(L(),m,1);a:{u=r.length;for(z=0;z=c))for(c=1;;){h=c;b.$c(d.a[h]).v()&&b.gd(d.a[h],yp(new zp,d.a[h]));b=b.$c(d.a[h]).kb();if(c===a)break;c=1+c|0}b.gd(d.a[-1+d.a.length|0],e)}}}E(ZE,"tigerpython.utilities.scopes.ModuleLoader$",{UY:1});var $E;function xp(){$E||($E=new ZE);return $E} var qB=function lF(a,b,c){for(;;){if(b.v())return up();if(c instanceof go)b=lF(a,b,c.je),c=c.De;else return c instanceof zo?(a=c,b.kb().$c(a.K)):up()}};function mF(a){var b=mo(),c=R();a.Eq=no(b,c)}function nF(){this.Eq=this.$e=null}nF.prototype=new q;nF.prototype.constructor=nF;function oF(){}oF.prototype=nF.prototype;function XD(a,b){null!==b&&(oo(a.Eq,b),b.$e=a)}g=nF.prototype; -g.mt=function(a){var b=Db();try{if(-1===this.Ra()||this.sf()<=a&&a<=this.Ra()){for(var c=rr(this.Eq).k();c.d();){var d=c.e().mt(a);if(!d.v())throw xr(new yr,b,d);}return new T(this)}return up()}catch(e){if(e instanceof yr){a=e;if(a.Vb===b)return a.uf();throw a;}throw e;}};g.Ig=function(){return null!==this.$e?this.$e.Ig():""};g.sA=function(){return null!==this.$e?this.$e.sA():null};function FE(a,b){null!==b&&a.dl(b.Ca(),b)} -g.fl=function(a){var b=this.Lh().jb(a);return up()===b?null!==this.$e?this.$e.fl(a):Rm(Qm(),dE().Ev).jb(a):b};g.nc=function(a){if(Nj(L(),a,46)){var b=Vz(a,46),c=this.nc(Zj(L(),a,b));if(c instanceof T)return c.Y.$c(ak(L(),a,1+b|0));if(up()===c)return up();throw new G(c);}return this.fl(a)}; +g.mt=function(a){var b=Cb();try{if(-1===this.Ra()||this.sf()<=a&&a<=this.Ra()){for(var c=rr(this.Eq).k();c.d();){var d=c.e().mt(a);if(!d.v())throw xr(new yr,b,d);}return new T(this)}return up()}catch(e){if(e instanceof yr){a=e;if(a.Vb===b)return a.uf();throw a;}throw e;}};g.Ig=function(){return null!==this.$e?this.$e.Ig():""};g.sA=function(){return null!==this.$e?this.$e.sA():null};function FE(a,b){null!==b&&a.dl(b.Ca(),b)} +g.fl=function(a){var b=this.Lh().jb(a);return up()===b?null!==this.$e?this.$e.fl(a):Rm(Qm(),dE().Fv).jb(a):b};g.nc=function(a){if(Nj(L(),a,46)){var b=Vz(a,46),c=this.nc(Zj(L(),a,b));if(c instanceof T)return c.Y.$c(ak(L(),a,1+b|0));if(up()===c)return up();throw new G(c);}return this.fl(a)}; g.Yj=function(a){if(a instanceof go){var b=this.Yj(a.je);if(b instanceof T)return b.Y.$c(a.De.K);if(up()===b)return up();throw new G(b);}if(a instanceof ko)return a=this.Yj(a.me),a instanceof T&&(a=a.Y,a.fh())?new T(BE(CE(),a.Mq())):up();if(a instanceof Go)return b=this.Yj(a.Gi),b instanceof T?(b=b.Y,a.Il instanceof yn?new T(b.$j()):new T(b)):up();if(a instanceof zo)return this.fl(a.K);if(a instanceof ro||a instanceof so)return new T(U().Xf);if(a instanceof xo&&0!==a.Pf.a.length){b=a.Pf;var c=h=> {h=this.Yj(h);return h.v()?null:h.kb()},d=b.a.length;a=new (F(eE).c)(d);if(0{var c=U().JH,d=b.$n.Ca();Dp(c,d,b.$n)}))};function jF(a,b){var c=a.JH;if(ia(c)!==ja(Nq))if(c=c.jb(b),c instanceof T)b=c.Y;else{if(up()!==c)throw new G(c);b=CF(ME(),b)}else{var d=M(P(),b);d^=d>>>16|0;c=c.$.a[d&(-1+c.$.a.length|0)];c=null===c?null:ll(c,b,d);b=null===c?CF(ME(),b):c.Cc}return null!==b?b:a.ka}E(tF,"tigerpython.utilities.types.BuiltinTypes$",{dZ:1});var uF;function U(){uF||(uF=new tF);return uF}function DF(){this.Fb=null}DF.prototype=new q; -DF.prototype.constructor=DF;function EF(){}g=EF.prototype=DF.prototype;g.Zv=function(){return this.Fb};g.$c=function(a){if(Nj(L(),a,46)){a:{for(var b=a.length,c=0;c>>16|0;a=a.$.a[c&(-1+a.$.a.length|0)];b=null===a?null:ll(a,b,c);b=null===b?null:b.Cc}return b}E(KF,"tigerpython.utilities.types.ExceptionTypes$",{jZ:1});var LF;function ME(){LF||(LF=new KF);return LF}function MF(){}MF.prototype=new q;MF.prototype.constructor=MF; function UE(a,b,c){if(Ix(b,".py")){a=Ix(b,"/__init__.py")?bk(L(),b,12):bk(L(),b,3);var d=Vz(a,47);a=0<=d?ak(L(),a,1+d|0):a;b=new NF(a,c,b)}else b=null;return b}E(MF,"tigerpython.utilities.types.FutureModule$",{lZ:1});var OF;function VE(){OF||(OF=new MF);return OF} -function PF(){this.gO=null;QF=this;this.gO=wq().Ba(new Q([H(new J,U().Df,U().Zk),H(new J,U().AH,U().zH),H(new J,U().rD,U().BH),H(new J,U().Gv,U().km),H(new J,U().Vj,U().Hv),H(new J,U().uD,U().tD),H(new J,U().Fq,U().Xj),H(new J,U().vD,U().EH),H(new J,U().wD,U().FH),H(new J,U().Ef,U().Kh),H(new J,U().xD,U().GH),H(new J,U().af,U().Xf),H(new J,U().yD,U().HH),H(new J,U().Fd,U().Iv),H(new J,U().zD,U().IH),H(new J,U().Jb,U().pi),H(new J,U().Ff,U().nm)]))}PF.prototype=new q;PF.prototype.constructor=PF; +function PF(){this.gO=null;QF=this;this.gO=wq().Ba(new Q([H(new J,U().Df,U().Zk),H(new J,U().AH,U().zH),H(new J,U().rD,U().BH),H(new J,U().Hv,U().km),H(new J,U().Vj,U().Iv),H(new J,U().uD,U().tD),H(new J,U().Fq,U().Xj),H(new J,U().vD,U().EH),H(new J,U().wD,U().FH),H(new J,U().Ef,U().Kh),H(new J,U().xD,U().GH),H(new J,U().af,U().Xf),H(new J,U().yD,U().HH),H(new J,U().Fd,U().Jv),H(new J,U().zD,U().IH),H(new J,U().Jb,U().pi),H(new J,U().Ff,U().nm)]))}PF.prototype=new q;PF.prototype.constructor=PF; function BE(a,b){if(b instanceof hE||b instanceof GF)return b;if(b instanceof jE){a=a.gO;if(ia(a)!==ja(Nq)){var c=a.jb(b);if(c instanceof T)b=c.Y;else{if(up()!==c)throw new G(c);c=new pF(b);Dp(a,b,c);b=c}}else{c=M(P(),b);c^=c>>>16|0;var d=c&(-1+a.$.a.length|0),e=a.$.a[d];e=null===e?null:ll(e,b,c);if(null!==e)b=e.Cc;else{e=a.$;var f=new pF(b);(1+a.Nc|0)>=a.Bi&&EA(a,a.$.a.length<<1);FA(a,b,f,c,e===a.$?d:c&(-1+a.$.a.length|0));b=f}}return b}return b instanceof pF?b:U().ka} E(PF,"tigerpython.utilities.types.Instance$",{nZ:1});var QF;function CE(){QF||(QF=new PF);return QF}function RF(){this.hO=null;SF=this;this.hO=wq().Ba(R())}RF.prototype=new q;RF.prototype.constructor=RF; function PE(a,b){a=a.hO;if(ia(a)!==ja(Nq)){var c=a.jb(b);if(c instanceof T)b=c.Y;else{if(up()!==c)throw new G(c);c=new GF(b);Dp(a,b,c);b=c}}else{c=M(P(),b);c^=c>>>16|0;var d=c&(-1+a.$.a.length|0),e=a.$.a[d];e=null===e?null:ll(e,b,c);if(null!==e)b=e.Cc;else{e=a.$;var f=new GF(b);(1+a.Nc|0)>=a.Bi&&EA(a,a.$.a.length<<1);FA(a,b,f,c,e===a.$?d:c&(-1+a.$.a.length|0));b=f}}return b}E(RF,"tigerpython.utilities.types.ListType$",{qZ:1});var SF;function QE(){SF||(SF=new RF);return SF} @@ -911,11 +911,11 @@ function fE(a,b){switch(b.a.length){case 0:return U().nm;case 1:a=a.lO;var c=b.a d.Y;else{if(up()!==d)throw new G(d);b=new hE(b);Dp(a,c,b)}else d=M(P(),c),d^=d>>>16|0,e=d&(-1+a.$.a.length|0),f=a.$.a[e],f=null===f?null:ll(f,c,d),null!==f?b=f.Cc:(f=a.$,b=new hE(b),(1+a.Nc|0)>=a.Bi&&EA(a,a.$.a.length<<1),FA(a,c,b,d,f===a.$?e:d&(-1+a.$.a.length|0)));return b;default:return new hE(b)}}E(WF,"tigerpython.utilities.types.TupleType$",{EZ:1});var XF;function gE(){XF||(XF=new WF);return XF}function YF(){this.cA=null}YF.prototype=new q;YF.prototype.constructor=YF;function ZF(){} ZF.prototype=YF.prototype;YF.prototype.nc=function(a){a:{for(var b=QA(new RA,new SA(this.cA));0{if(m instanceof Cn)return m=new mE(m.pg,U().ka),oo(e,m)};var f=c.a.length,h=0;if(null!==c)for(;ha||a>b.a.length)throw b=new VG,uk(b,null,!0),b;c function Wj(a,b,c){var d=new WG,e=XG();d.tt=null;d.xR=e;d.Tq="";d.wI=!1;if(d.wI)throw new YG;for(var f=0,h=0,k=b.length,m=0;m!==k;){var r=b.indexOf("%",m)|0;if(0>r){ZG(d,b.substring(m));break}ZG(d,b.substring(m,r));var u=1+r|0,z=eg().SO;z.lastIndex=u;var I=z.exec(b);if(null===I||(I.index|0)!==u){var D=u===k?37:b.charCodeAt(u);throw new $G(""+tb(D));}m=z.lastIndex|0;for(var S=b.charCodeAt(-1+m|0),O,K=I[2],oa=65<=S&&90>=S?256:0,ca=K.length,ta=0;ta!==ca;){var sa=K.charCodeAt(ta);switch(sa){case 45:var Ea= 1;break;case 35:Ea=2;break;case 43:Ea=4;break;case 32:Ea=8;break;case 48:Ea=16;break;case 44:Ea=32;break;case 40:Ea=64;break;case 60:Ea=128;break;default:throw new ig(p(sa));}if(0!==(oa&Ea))throw new aH(""+tb(sa));oa|=Ea;ta=1+ta|0}O=oa;var ab=bH(I[3]),Ta=bH(I[4]);if(-2===ab)throw new cH(-2147483648);-2===Ta&&dH(-2147483648);if(110===S){-1!==Ta&&dH(Ta);if(-1!==ab)throw new cH(ab);0!==O&&eH(O);ZG(d,"\n")}else if(37===S){-1!==Ta&&dH(Ta);17!==(17&O)&&12!==(12&O)||eH(O);if(0!==(1&O)&&-1===ab)throw new fH("%"+ I[0]);0!==(-2&O)&&gH(37,O,-2);hH(d,O,ab,"%")}else{var db=0!==(256&O)?65535&(32+S|0):S,fb=eg().RO.a[-97+db|0];if(-1===fb||0!==(256&O&fb))throw new $G(""+tb(S));if(0!==(17&O)&&-1===ab)throw new fH("%"+I[0]);17!==(17&O)&&12!==(12&O)||eH(O);-1!==Ta&&0!==(512&fb)&&dH(Ta);0!==(O&fb)&&gH(db,O,fb);if(0!==(128&O))var ya=h;else{var Ka=bH(I[1]);if(-1===Ka)ya=f=1+f|0;else{if(0>=Ka)throw new iH(0===Ka?"Illegal format argument index \x3d 0":"Format argument index: (not representable as int)");ya=Ka}}if(0>=ya|| -ya>c.a.length)throw new jH("%"+I[0]);h=ya;var Sa=c.a[-1+ya|0];if(null===Sa&&98!==db&&115!==db)kH(d,XG(),O,ab,Ta,"null");else{var Ca=void 0,Fa=void 0,Hb=void 0,Ib=void 0,hc=void 0,Qb=void 0,Wa=d,Ha=Sa,Ia=db,ma=O,pb=ab,Qa=Ta;switch(Ia){case 98:kH(Wa,XG(),ma,pb,Qa,!1===Ha||null===Ha?"false":"true");break;case 104:XG();var Bc=Za(Ha);kH(Wa,0,ma,pb,Qa,(+(Bc>>>0)).toString(16));break;case 115:Ha&&Ha.$classData&&Ha.$classData.Yb.I_?Ha.PZ(Wa,(0!==(1&ma)?1:0)|(0!==(2&ma)?4:0)|(0!==(256&ma)?2:0),pb,Qa):(0!== -(2&ma)&&gH(Ia,ma,2),kH(Wa,0,ma,pb,Qa,""+Ha));break;case 99:if(Ha instanceof da)var Jc=""+tb(Ra(Ha));else{ka(Ha)||lH(Ia,Ha);var rc=Ha|0;if(!(0<=rc&&1114111>=rc))throw new mH(rc);Jc=65536>rc?String.fromCharCode(rc):String.fromCharCode(-64+(rc>>10)|55296,56320|1023&rc)}kH(Wa,0,ma,pb,-1,Jc);break;case 100:if(ka(Ha))var nc=""+(Ha|0);else if(Ha instanceof n){var Rc=Va(Ha);nc=ih(Pa(),Rc.l,Rc.m)}else Ha instanceof EG||lH(Ia,Ha),nc=ue(Ha);nH(Wa,ma,pb,nc,"");break;case 111:case 120:var sc=111===Ia,ic=0===(2& -ma)?"":sc?"0":0!==(256&ma)?"0X":"0x";if(Ha instanceof EG){var mb=sc?8:16;XG();var Zb=ve(),Ub=Ha.ob,gb=Ha.eb,tc=Ha.Ua,$b=2>mb||36Ub){var jc=Eb,oc=ac;Eb=-jc|0;ac=0!==jc?~oc:-oc|0}var pc=RG(),nb=Eb,bc=ac;if(10===mb||2>mb||36>31===Ec)hc=Oa.toString(mb);else if(0>Ec){var kc=Fb.l,Xc=Fb.m;hc="-"+NG(pc,new n(-kc|0,0!==kc?~Xc:-Xc|0),mb)}else hc=NG(pc,Fb,mb)}Qb=hc}else if(10=== -mb||$b)Qb=ue(Ha);else{var Vb=0;Vb=+Math.log(mb)/+Math.log(2);var Fc=0>Ub?1:0;re();Ib=0>Ha.ob?le(1,Ha.eb,Ha.Ua):Ha;if(0===Ib.ob)Hb=0;else{var uc=Ib.eb<<5,lc=Ib.Ua.a[-1+Ib.eb|0];0>Ib.ob&&oH(Ib)===(-1+Ib.eb|0)&&(lc=-1+lc|0);Hb=uc=uc-(Math.clz32(lc)|0)|0}var cc=1+rb(Hb/Vb+Fc)|0,Ab=null;Ab="";var yb=0;yb=cc;var Lb=0;Lb=0;if(16!==mb){var mc=new y(gb);tc.da(0,mc,0,gb);var hb=0;hb=gb;for(var ib=Zb.nF.a[mb],dc=Zb.mF.a[-2+mb|0];;){ze||(ze=new xe);for(var vb=mc,Wb=mc,vc=dc,Mb=0,ec=-1+hb|0;0<=ec;){var wc=Mb, -Gb=Wb.a[ec],Gc=Pa(),fc=we(Gc,Gb,wc,vc,0),Rb=Gc.Gb,Cc=65535&fc,Xb=fc>>>16|0,gc=65535&vc,wb=vc>>>16|0,Yc=Math.imul(Cc,gc),Kc=Math.imul(Xb,gc),qc=Math.imul(Cc,wb),Ya=Yc+((Kc+qc|0)<<16)|0;Math.imul(Rb,vc);Math.imul(Xb,wb);Mb=Gb-Ya|0;vb.a[ec]=fc;ec=-1+ec|0}Lb=Mb;for(var Sc=yb;;){yb=-1+yb|0;Lq();var jb=qb(Lb,mb);if(2>mb||36jb||jb>=mb)var Lc=0;else{var Tc=-10+jb|0;Lc=65535&(0>Tc?48+jb|0:97+Tc|0)}Ab=""+tb(Lc)+Ab;Lb=lb(Lb,mb);if(0===Lb||0===yb)break}for(var Hc=(ib-Sc|0)+yb|0,Ic=0;Icod&&0>(od<<2),yb=-1+yb|0,Ab=""+(+(Lb>>>0)).toString(16)+Ab,od=1+od|0;Yb=1+Yb|0}for(var ad=0;48===Ab.charCodeAt(ad);)ad=1+ad|0;0!==ad&&(Ab=Ab.substring(ad));Qb=-1===Ub?"-"+Ab:Ab}nH(Wa,ma,pb,Qb,ic)}else{if(ka(Ha))var pd=Ha|0,Uc=sc?(+(pd>>>0)).toString(8):(+(pd>>>0)).toString(16);else{Ha instanceof n||lH(Ia,Ha);var ed=Va(Ha), -vd=ed.l,yd=ed.m;if(sc){RG();var fd=1073741823&vd,qd=1073741823&((vd>>>30|0)+(yd<<2)|0),rd=yd>>>28|0;if(0!==rd){var sd=(+(rd>>>0)).toString(8),sb=(+(qd>>>0)).toString(8),xc="0000000000".substring(sb.length),Sb=(+(fd>>>0)).toString(8);Fa=sd+(""+xc+sb)+(""+"0000000000".substring(Sb.length)+Sb)}else if(0!==qd){var Ja=(+(qd>>>0)).toString(8),ld=(+(fd>>>0)).toString(8);Fa=Ja+(""+"0000000000".substring(ld.length)+ld)}else Fa=(+(fd>>>0)).toString(8)}else Fa=PG(RG(),vd,yd);Uc=Fa}0!==(76&ma)&&gH(Ia,ma,76); -pH(Wa,XG(),ma,pb,ic,qH(ma,Uc))}break;case 101:case 102:case 103:if("number"===typeof Ha){var bd=+Ha;if(bd!==bd||Infinity===bd||-Infinity===bd)rH(Wa,ma,pb,bd);else{eg();if(0===bd)Ca=new gg(0>1/bd,"0",0);else{var zd=0>bd,Zc=""+(zd?-bd:bd),Dd=Oj(Zc,101),Vd=0>Dd?0:parseInt(Zc.substring(1+Dd|0))|0,Wd=0>Dd?Zc.length:Dd,pe=Oj(Zc,46);if(0>pe)Ca=new gg(zd,Zc.substring(0,Wd),-Vd|0);else{for(var ae=""+Zc.substring(0,pe)+Zc.substring(1+pe|0,Wd),$d=ae.length,ge=0;ge<$d&&48===ae.charCodeAt(ge);)ge=1+ge|0;Ca=new gg(zd, +ya>c.a.length)throw new jH("%"+I[0]);h=ya;var Sa=c.a[-1+ya|0];if(null===Sa&&98!==db&&115!==db)kH(d,XG(),O,ab,Ta,"null");else{var Ca=void 0,Fa=void 0,Gb=void 0,Hb=void 0,hc=void 0,Qb=void 0,Wa=d,Ha=Sa,Ia=db,ma=O,pb=ab,Qa=Ta;switch(Ia){case 98:kH(Wa,XG(),ma,pb,Qa,!1===Ha||null===Ha?"false":"true");break;case 104:XG();var Cc=Za(Ha);kH(Wa,0,ma,pb,Qa,(+(Cc>>>0)).toString(16));break;case 115:Ha&&Ha.$classData&&Ha.$classData.Yb.I_?Ha.PZ(Wa,(0!==(1&ma)?1:0)|(0!==(2&ma)?4:0)|(0!==(256&ma)?2:0),pb,Qa):(0!== +(2&ma)&&gH(Ia,ma,2),kH(Wa,0,ma,pb,Qa,""+Ha));break;case 99:if(Ha instanceof da)var Lc=""+tb(Ra(Ha));else{ka(Ha)||lH(Ia,Ha);var rc=Ha|0;if(!(0<=rc&&1114111>=rc))throw new mH(rc);Lc=65536>rc?String.fromCharCode(rc):String.fromCharCode(-64+(rc>>10)|55296,56320|1023&rc)}kH(Wa,0,ma,pb,-1,Lc);break;case 100:if(ka(Ha))var nc=""+(Ha|0);else if(Ha instanceof n){var Tc=Va(Ha);nc=ih(Pa(),Tc.l,Tc.m)}else Ha instanceof EG||lH(Ia,Ha),nc=ue(Ha);nH(Wa,ma,pb,nc,"");break;case 111:case 120:var sc=111===Ia,ic=0===(2& +ma)?"":sc?"0":0!==(256&ma)?"0X":"0x";if(Ha instanceof EG){var mb=sc?8:16;XG();var Zb=ve(),Ub=Ha.ob,gb=Ha.eb,tc=Ha.Ua,$b=2>mb||36Ub){var jc=Db,oc=ac;Db=-jc|0;ac=0!==jc?~oc:-oc|0}var pc=RG(),nb=Db,bc=ac;if(10===mb||2>mb||36>31===Fc)hc=Oa.toString(mb);else if(0>Fc){var kc=Eb.l,Yc=Eb.m;hc="-"+NG(pc,new n(-kc|0,0!==kc?~Yc:-Yc|0),mb)}else hc=NG(pc,Eb,mb)}Qb=hc}else if(10=== +mb||$b)Qb=ue(Ha);else{var Vb=0;Vb=+Math.log(mb)/+Math.log(2);var Gc=0>Ub?1:0;re();Hb=0>Ha.ob?le(1,Ha.eb,Ha.Ua):Ha;if(0===Hb.ob)Gb=0;else{var uc=Hb.eb<<5,lc=Hb.Ua.a[-1+Hb.eb|0];0>Hb.ob&&oH(Hb)===(-1+Hb.eb|0)&&(lc=-1+lc|0);Gb=uc=uc-(Math.clz32(lc)|0)|0}var cc=1+rb(Gb/Vb+Gc)|0,zb=null;zb="";var xb=0;xb=cc;var Kb=0;Kb=0;if(16!==mb){var mc=new y(gb);tc.da(0,mc,0,gb);var hb=0;hb=gb;for(var ib=Zb.nF.a[mb],dc=Zb.mF.a[-2+mb|0];;){ze||(ze=new xe);for(var vb=mc,Wb=mc,vc=dc,Lb=0,ec=-1+hb|0;0<=ec;){var wc=Lb, +Fb=Wb.a[ec],Hc=Pa(),fc=we(Hc,Fb,wc,vc,0),Rb=Hc.Gb,Dc=65535&fc,Xb=fc>>>16|0,gc=65535&vc,xc=vc>>>16|0,Mb=Math.imul(Dc,gc),Mc=Math.imul(Xb,gc),qc=Math.imul(Dc,xc),Ya=Mb+((Mc+qc|0)<<16)|0;Math.imul(Rb,vc);Math.imul(Xb,xc);Lb=Fb-Ya|0;vb.a[ec]=fc;ec=-1+ec|0}Kb=Lb;for(var Uc=xb;;){xb=-1+xb|0;Lq();var jb=qb(Kb,mb);if(2>mb||36jb||jb>=mb)var Nc=0;else{var Vc=-10+jb|0;Nc=65535&(0>Vc?48+jb|0:97+Vc|0)}zb=""+tb(Nc)+zb;Kb=lb(Kb,mb);if(0===Kb||0===xb)break}for(var Ic=(ib-Uc|0)+xb|0,Jc=0;Jcod&&0>(od<<2),xb=-1+xb|0,zb=""+(+(Kb>>>0)).toString(16)+zb,od=1+od|0;Yb=1+Yb|0}for(var ad=0;48===zb.charCodeAt(ad);)ad=1+ad|0;0!==ad&&(zb=zb.substring(ad));Qb=-1===Ub?"-"+zb:zb}nH(Wa,ma,pb,Qb,ic)}else{if(ka(Ha))var pd=Ha|0,Kc=sc?(+(pd>>>0)).toString(8):(+(pd>>>0)).toString(16);else{Ha instanceof n||lH(Ia,Ha);var ed=Va(Ha), +vd=ed.l,yd=ed.m;if(sc){RG();var fd=1073741823&vd,qd=1073741823&((vd>>>30|0)+(yd<<2)|0),rd=yd>>>28|0;if(0!==rd){var sd=(+(rd>>>0)).toString(8),sb=(+(qd>>>0)).toString(8),yc="0000000000".substring(sb.length),Sb=(+(fd>>>0)).toString(8);Fa=sd+(""+yc+sb)+(""+"0000000000".substring(Sb.length)+Sb)}else if(0!==qd){var Ja=(+(qd>>>0)).toString(8),ld=(+(fd>>>0)).toString(8);Fa=Ja+(""+"0000000000".substring(ld.length)+ld)}else Fa=(+(fd>>>0)).toString(8)}else Fa=PG(RG(),vd,yd);Kc=Fa}0!==(76&ma)&&gH(Ia,ma,76); +pH(Wa,XG(),ma,pb,ic,qH(ma,Kc))}break;case 101:case 102:case 103:if("number"===typeof Ha){var bd=+Ha;if(bd!==bd||Infinity===bd||-Infinity===bd)rH(Wa,ma,pb,bd);else{eg();if(0===bd)Ca=new gg(0>1/bd,"0",0);else{var zd=0>bd,Zc=""+(zd?-bd:bd),Dd=Oj(Zc,101),Vd=0>Dd?0:parseInt(Zc.substring(1+Dd|0))|0,Wd=0>Dd?Zc.length:Dd,pe=Oj(Zc,46);if(0>pe)Ca=new gg(zd,Zc.substring(0,Wd),-Vd|0);else{for(var ae=""+Zc.substring(0,pe)+Zc.substring(1+pe|0,Wd),$d=ae.length,ge=0;ge<$d&&48===ae.charCodeAt(ge);)ge=1+ge|0;Ca=new gg(zd, ae.substring(ge),(-Vd|0)+(Wd-(1+pe|0)|0)|0)}}var he=Ca,Oe=0!==(2&ma),kf=0<=Qa?Qa:6;switch(Ia){case 101:var Df=sH(he,kf,Oe);break;case 102:Df=tH(he,kf,Oe);break;default:var Pe=0===kf?1:kf,lf=hg(he,Pe),nf=(-1+lf.Sq.length|0)-lf.ho|0;if(-4<=nf&&nfof?0:of,Oe)}else Df=sH(lf,-1+Pe|0,Oe)}nH(Wa,ma,pb,Df,"")}}else lH(Ia,Ha);break;case 97:if("number"===typeof Ha){var df=+Ha;if(df!==df||Infinity===df||-Infinity===df)rH(Wa,ma,pb,df);else{var Ef=kd(md(),df),Ff=Ef.l,ag=Ef.m, og=1048575&ag,Dg=2047&(ag>>>20|0),ef=0===Qa?1:12ag?"-":0!==(4&ma)?"+":0!==(8&ma)?" ":"";if(0===Dg)if(0===Ff&&0===og)var pg="0",qg=ba,rg=0;else if(-1===ef)pg="0",qg=new n(Ff,og),rg=-1022;else{var pf=-11+(0!==og?Math.clz32(og)|0:32+(Math.clz32(Ff)|0)|0)|0;pg="1";qg=new n(0===(32&pf)?Ff<>>1|0)>>>(31-pf|0)|0|og<>>1|0|ye<<31,Fg=ye>>1,qf=Vf&~Gi,Re=Zg&~Ej,Gg=Vf&Gi,yh=Zg&Ej;if(yh===Fg?(-2147483648^Gg)<(-2147483648^Hi):yh(-2147483648^Hi):yh>Fg){var Ii=qf+Cb|0;Bd=Ii;qe=(-2147483648^Ii)<(-2147483648^qf)?1+(Re+ye|0)|0:Re+ye|0}else if(0===(qf&Cb)&&0===(Re&ye))Bd=qf,qe=Re;else{var zh=qf+Cb|0;Bd=zh;qe=(-2147483648^zh)<(-2147483648^qf)?1+(Re+ye|0)|0: +Vf,qe=Zg;else{var Qe=52-(ef<<2)|0,Bb=0===(32&Qe)?1<>>1|0|ye<<31,Fg=ye>>1,qf=Vf&~Gi,Re=Zg&~Ej,Gg=Vf&Gi,yh=Zg&Ej;if(yh===Fg?(-2147483648^Gg)<(-2147483648^Hi):yh(-2147483648^Hi):yh>Fg){var Ii=qf+Bb|0;Bd=Ii;qe=(-2147483648^Ii)<(-2147483648^qf)?1+(Re+ye|0)|0:Re+ye|0}else if(0===(qf&Bb)&&0===(Re&ye))Bd=qf,qe=Re;else{var zh=qf+Bb|0;Bd=zh;qe=(-2147483648^zh)<(-2147483648^qf)?1+(Re+ye|0)|0: Re+ye|0}}var Hg=PG(RG(),Bd,qe),sg=""+"0000000000000".substring(Hg.length)+Hg;eg();if(13!==sg.length)throw new ig("padded mantissa does not have the right number of bits");for(var Ji=1>ef?1:ef,Gf=sg.length;Gf>Ji&&48===sg.charCodeAt(-1+Gf|0);)Gf=-1+Gf|0;var Ah=sg.substring(0,Gf),hi=""+xh;pH(Wa,XG(),ma,pb,Eg+(0!==(256&ma)?"0X":"0x"),qH(ma,fi+"."+Ah+"p"+hi))}}else lH(Ia,Ha);break;default:throw new ig("Unknown conversion '"+tb(Ia)+"' was not rejected earlier");}}}}return d.j()} E(UG,"java.lang.String$",{v_:1,g:1});var uH;function Xj(){uH||(uH=new UG);return uH}function uk(a,b,c){a.QO=b;c&&a.uO()} class vH extends Error{constructor(){super();this.QO=null}Mh(){return this.QO}uO(){"[object Error]"!==Object.prototype.toString.call(this)&&(void 0===Error.captureStackTrace?Error():Error.captureStackTrace(this))}j(){var a=Aa(this),b=this.Mh();return null===b?a:a+": "+b}s(){return Xa.prototype.s.call(this)}b(a){return Xa.prototype.b.call(this,a)}get message(){var a=this.Mh();return null===a?"":a}get name(){return Aa(this)}toString(){return this.j()}} -function wH(){this.lF=this.YJ=this.kF=this.xr=this.wr=this.Sw=null;xH=this;this.Sw=Ee(1,1);this.wr=Ee(1,10);this.xr=Ee(0,0);this.kF=Ee(-1,1);this.YJ=new (F(Ue).c)([this.xr,this.Sw,Ee(1,2),Ee(1,3),Ee(1,4),Ee(1,5),Ee(1,6),Ee(1,7),Ee(1,8),Ee(1,9),this.wr]);for(var a=new (F(Ue).c)(32),b=0;32>b;){var c=b;a.a[c]=Fe(ke(),new n(0===(32&c)?1<b;){var c=b;a.a[c]=Fe(ke(),new n(0===(32&c)?1<b.m)return-1!==b.l||-1!==b.m?(a=b.l,b=b.m,yH(-1,new n(-a|0,0!==a?~b:-b|0))):a.kF;var c=b.m;return(0===c?-2147483638>=(-2147483648^b.l):0>c)?a.YJ.a[b.l]:yH(1,b)}E(wH,"java.math.BigInteger$",{nT:1,g:1});var xH;function ke(){xH||(xH=new wH);return xH}function zH(){}zH.prototype=new q;zH.prototype.constructor=zH;zH.prototype.ha=function(a,b){return Da(a,b)};E(zH,"java.util.Arrays$NaturalComparator$",{E_:1,Ie:1});var AH;function xf(){AH||(AH=new zH);return AH}function BH(){} BH.prototype=new kg;BH.prototype.constructor=BH;E(BH,"java.util.Formatter$RootLocaleInfo$",{N_:1,M_:1});var CH;function XG(){CH||(CH=new BH);return CH}function DH(){}DH.prototype=new q;DH.prototype.constructor=DH;DH.prototype.wl=function(a,b,c){a.a[b]=c};DH.prototype.eh=function(a,b){return a.a[b]};E(DH,"java.util.internal.GenericArrayOps$ReusableAnyRefArrayOps$",{d0:1,JA:1});var EH;function yf(){EH||(EH=new DH);return EH}function FH(a){if(null===a.xI)throw ik("No match available");return a.xI} function GH(a,b){this.JR=a;this.IR=b;this.KR=0;this.VO=this.IR;this.WO=0;this.xI=null}GH.prototype=new q;GH.prototype.constructor=GH;function HH(a){var b=a.JR;var c=a.VO;var d=b.EI;d.lastIndex=a.WO;c=d.exec(c);b=b.EI.lastIndex|0;a.WO=null!==c?b===(c.index|0)?1+b|0:b:1+a.VO.length|0;a.xI=c;return null!==c}function IH(a){return(FH(a).index|0)+a.KR|0}function JH(a){return IH(a)+FH(a)[0].length|0}E(GH,"java.util.regex.Matcher",{g0:1,f0:1}); function KH(a,b,c,d,e){this.EI=null;this.OR=a;this.PR=d;this.QR=e;this.EI=new RegExp(c,this.PR+(this.QR?"gy":"g"));new RegExp("^(?:"+c+")$",d)}KH.prototype=new q;KH.prototype.constructor=KH;KH.prototype.j=function(){return this.OR};E(KH,"java.util.regex.Pattern",{h0:1,g:1});function Ni(a){a=new (F(wa).c)(a);Nf($f(),a,void 0);return a}function LH(){}LH.prototype=new q;LH.prototype.constructor=LH; -function MH(a,b,c){a=b.U();if(-1c)throw new Pf;a=b.a.length;a=cc)throw new Pf;a=b.a.length;a=cc)throw new Pf;a=b.a.length;a=cc)throw new Pf;a=b.a.length;a=ca instanceof Object);function QI(){this.qE=this.rE=this.no=this.qd=0;RI=this;this.qd=$a("Seq");this.no=$a("Map");this.rE=$a("Set");this.qE=Cm(this,R(),this.no)}QI.prototype=new xm;QI.prototype.constructor=QI;function SI(a,b,c){return zm(a,M(P(),b),M(P(),c))} @@ -1012,146 +1012,146 @@ a;k=1;break;case 1:m=a-f|0;k=2;break;case 2:m!==(a-f|0)&&(k=3)}f=a;h=1+h|0}2===k var RI;function Bm(){RI||(RI=new QI);return RI}function VI(){this.RI=this.PI=this.OI=0;this.QI=1}VI.prototype=new q;VI.prototype.constructor=VI;VI.prototype.j=function(){return"\x3cfunction2\x3e"};VI.prototype.lA=function(a,b){a=SI(Bm(),a,b);this.OI=this.OI+a|0;this.PI^=a;this.QI=Math.imul(this.QI,1|a);this.RI=1+this.RI|0};VI.prototype.Yf=function(a,b){this.lA(a,b)};E(VI,"scala.util.hashing.MurmurHash3$accum$1",{L1:1,XJ:1});function EB(){}EB.prototype=new q;EB.prototype.constructor=EB; function CB(a,b,c){if(null!==c&&""!==c){var d=Vz(c,46);return 0<=d?(a=CB(a,b,Zj(L(),c,d)),d=new zo(1+(b+d|0)|0,ak(L(),c,1+d|0)),null!==a?new go(b,b+c.length|0,a,d):d):new zo(b,c)}return null}E(EB,"tigerpython.parser.ast.AstNode$Attribute$",{HT:1,g:1});var DB;function WI(a,b,c){switch(b){case "body":a.gt(c);break;case "else":case "elsebody":case "elseBody":case "orelse":a.dI(c);break;default:throw new G(b);}}function Ov(a){return!!(a&&a.$classData&&a.$classData.Yb.uF)}function XI(){}XI.prototype=new q; XI.prototype.constructor=XI;function Dx(a,b,c){a=new zo(b,"range");if(0<=c.U()){var d=new (F(En).c)(c.U());c.ma(d,0,2147483647);c=d}else{d=[];for(c=c.k();c.d();){var e=c.e();d.push(null===e?null:e)}c=new (F(En).c)(d)}d=R();d=new (F(Xs).c)(d.i());e=W().t;for(var f=0;e.d();)d.a[f]=e.e(),f=1+f|0;return new ko(b,b,a,c,d,null,null)}E(XI,"tigerpython.parser.ast.AstNode$Call$",{OT:1,g:1});var YI;function Ku(){YI||(YI=new XI);return YI}function ZI(){}ZI.prototype=new q;ZI.prototype.constructor=ZI; -function du(a,b,c,d,e){return new lo(b,c,new (F(Yi).c)([H(new J,d,e)]))}E(ZI,"tigerpython.parser.ast.AstNode$Compare$",{RT:1,g:1});var $I;function eu(){$I||($I=new ZI);return $I}function aJ(a){return 0!==a.Yv().a.length?"@"+Gj(mn(nj(),a.Yv()),"",":@","")+":":""} -function Kv(a,b){var c=Db();try{var d=a.Yv();a=k=>{if(k instanceof zo&&b.ya(k.K))throw new iu(c,!0);};var e=d.a.length,f=0;if(null!==d)for(;f{if(k instanceof zo&&b.ya(k.K))throw new iu(c,!0);};var e=d.a.length,f=0;if(null!==d)for(;fm instanceof vt?zs(m):m)));a=new FJ(a,b,c,e,d);Dq||(Dq=new Cq);if(Dq.EQ)for(b=Kd(),c=1;;)if(cm instanceof vt?zs(m):m)));a=new FJ(a,b,c,e,d);Dq||(Dq=new Cq);if(Dq.EQ)for(b=Kd(),c=1;;)if(ce.ji),d=ui();a.Tf=b.qf(new HJ(d,c))}g.j=function(){return Gj(this.Tf,"","\n","")}; -g.YD=function(){if(Ss(this.Tf))return up();GJ(this);if(1h.ji===c));if(1h.ji===c));if(1kb(d))))}catch(d){if(d instanceof jH)return a;throw d;}} E(Hq,"tigerpython.parser.errors.ErrorTranslator$DefaultErrorTranslator$",{yV:1,wV:1});var Gq; function Tq(){this.Fe=null;this.eC=!1;this.Fe=wq().Ba(R());this.eC=!1;var a=Mq().hG;Dp(this.Fe,p(92),a);a=Mq().aC;Dp(this.Fe,p(35),a);a=Mq().dC;Dp(this.Fe,p(36),a);a=Mq().dC;Dp(this.Fe,p(63),a);a=Mq().tg;Dp(this.Fe,p(64),a);a=Mq().tg;Dp(this.Fe,p(62),a);a=Mq().tg;Dp(this.Fe,p(60),a);a=Mq().tg;Dp(this.Fe,p(37),a);a=Mq().tg;Dp(this.Fe,p(38),a);a=Mq().tg;Dp(this.Fe,p(124),a);a=Mq().tg;Dp(this.Fe,p(94),a);a=Mq().tg;Dp(this.Fe,p(61),a);a=Mq().tg;Dp(this.Fe,p(33),a);a=Mq().tg;Dp(this.Fe,p(126),a);a=Mq().tg; Dp(this.Fe,p(96),a);a=Mq().zy;Dp(this.Fe,p(58),a);a=Mq().cC;Dp(this.Fe,p(12),a);a=Mq().cC;Dp(this.Fe,p(65279),a)}Tq.prototype=new Jq;Tq.prototype.constructor=Tq;E(Tq,"tigerpython.parser.lexer.Scanner$$anon$1",{FV:1,AV:1});function LJ(){}LJ.prototype=new q;LJ.prototype.constructor=LJ;function aw(a,b,c){a=new vt(b,c.length,X().S);a.ta=c;return a}function MJ(a,b){a=new vt(b.A,b.We,X().S);a.ta=zs(b);return a}function xw(a,b,c){a=new vt(b,c.length,X().Ib);a.ta=c;return a} E(LJ,"tigerpython.parser.lexer.Token$",{HV:1,g:1});var NJ;function bw(){NJ||(NJ=new LJ);return NJ}function gt(){this.sz=this.rz=this.zC=this.ts=null;this.VL=0;mt(this,null,null);this.VL=0}gt.prototype=new ot;gt.prototype.constructor=gt;gt.prototype.p=function(){return this.VL};gt.prototype.JJ=function(){return pt(this)};E(gt,"tigerpython.parser.parsing.AstStack$ModuleItem",{$V:1,FQ:1});function Xw(a){this.YL=a}Xw.prototype=new q;Xw.prototype.constructor=Xw;g=Xw.prototype;g.MD=function(){};g.OD=function(){return!1}; -g.ND=function(){return!1};g.PD=function(){return!1};g.QD=function(){return!1};g.RD=function(){return!1};g.SD=function(){};g.TD=function(){return!1};g.UD=function(){};g.aw=function(){};g.fw=function(){}; -g.qA=function(a){a=a.Uv();if(a instanceof on&&(a=a.jd,1{null!==f.Qe?(OJ(f.Qe,Ao().sy),OJ(f.ng,Ao().TB)):OJ(f.ng,Ao().sy)},c=a.a.length,d=0;if(null!==a)for(;d{null!==f.Qe?(OJ(f.Qe,Ao().sy),OJ(f.ng,Ao().TB)):OJ(f.ng,Ao().sy)};c=a.a.length;d=0;if(null!==a)for(;d{null!==f.Qe?(OJ(f.Qe,Ao().ty),OJ(f.ng,Ao().TB)):OJ(f.ng,Ao().ty)},c=a.a.length,d=0;if(null!==a)for(;d{null!==f.Qe?(OJ(f.Qe,Ao().ty),OJ(f.ng,Ao().TB)):OJ(f.ng,Ao().ty)};c=a.a.length;d=0;if(null!==a)for(;d{if(f instanceof zo){var h=f.$g;f=f.K;if(!this.fm.v()&&this.vz.rc&&f===dt(this.fm).NQ){f=this.vz;var k=V().qp,m=R();return f.n(h,-1,k,m)}if(this.vz.DG&&Ps().gm.ya(f))return k=this.vz,m=V().$m,k.n(h,-1,m,new Q([f]))}},c=a.a.length,d=0;if(null!==a)for(;d{this.cl(f.RC,f.Ih)};c=a.a.length;var d=0;if(null!==a)for(;d{this.cl(f.RC,f.Ih)};c=a.a.length;var d=0;if(null!==a)for(;d{this.dt(h,a)};var d=b.a.length,e=0;if(null!==b)for(;eh.la())).tf(new Xi(ja(l))), new Cj((h,k)=>{var m=h.charCodeAt(0)===d;m!==(k.charCodeAt(0)===d)?h=m:(m=uG(Lq(),h.charCodeAt(0)),m!==uG(Lq(),k.charCodeAt(0))?h=m:(L(),h=0>Ga(h,k)));return h})))}Ch();Ch();b=WJ(this);mo();a=new lx;for(b=rr(b).k();b.d();)c=b.e().la(),mx(a,c);return aj(Oi(a.yd.tf(new Xi(ja(l))),new Cj((h,k)=>{var m=uG(Lq(),h.charCodeAt(0));m!==uG(Lq(),k.charCodeAt(0))?h=m:(L(),h=0>Ga(h,k));return h})))}; -YJ.prototype.wO=function(){Ch();Ch();var a=this.jm;mo();var b=new lx;for(a=rr(a).k();a.d();){var c=a.e().la();mx(b,c)}b=aj(Oi(b.yd.tf(new Xi(ja(l))),new Cj((h,k)=>{var m=uG(Lq(),h.charCodeAt(0));m!==uG(Lq(),k.charCodeAt(0))?h=m:(L(),h=0>Ga(h,k));return h})));a=h=>{var k=!1,m=null,r=this.Ks.jb(h);if(r instanceof T){k=!0;m=r;var u=m.Y;if(u instanceof gG)return aK(u)}if(k&&m.Y instanceof pF)return bK(h);if(k)return aK(m.Y);if(up()===r)return bK(h);throw new G(r);};c=b.a.length;var d=new (F(cK).c)(c); +YJ.prototype.wO=function(){Ch();Ch();var a=this.jm;mo();var b=new lx;for(a=rr(a).k();a.d();){var c=a.e().la();mx(b,c)}b=aj(Oi(b.yd.tf(new Xi(ja(l))),new Cj((h,k)=>{var m=uG(Lq(),h.charCodeAt(0));m!==uG(Lq(),k.charCodeAt(0))?h=m:(L(),h=0>Ga(h,k));return h})));a=h=>{var k=!1,m=null,r=this.Ks.jb(h);if(r instanceof T){k=!0;m=r;var u=m.Y;if(u instanceof gG)return aK(u,null)}if(k&&m.Y instanceof pF)return bK(h);if(k)return aK(m.Y,h);if(up()===r)return bK(h);throw new G(r);};c=b.a.length;var d=new (F(cK).c)(c); if(0{k=rD(a,k);if(k instanceof jE)return oo(e,k)};d=b.a.length;var f=0;if(null!==b)for(;f{var ta=rD(a,ca.Jh),sa=ca.zg;ca=AB(BB(),ca.Xk);ta=new rE(sa,ca.v()?up():new T(SB(VB(),ca.kb())),ta);return sE(z,ta)};O=D.a.length;K=0;if(null!==D)for(;K!f.lb.v()),Wh(Ch(),d));e=ce(fe(),d.ik);for(var h=0;h!f.lb.v()),Wh(Ch(),d));e=ce(fe(),d.ik);for(var h=0;h{this.dl(f.mc,f.Cg)};c=a.a.length;var d=0;if(null!==a)for(;d{this.dl(f.mc,f.Cg)};c=a.a.length;var d=0;if(null!==a)for(;dnew rE(m,up(),U().ka),e=a.a.length,f=new (F(tK).c)(e);if(0=d}else d=!1;if(d){for(c=-1+c|0;;)if(0<=c?(d=b.charCodeAt(c),d=48<=d&&57>=d):d=!1,d)c=-1+c|0;else break;for(;0<=c&&36===b.charCodeAt(c);)c=-1+c|0}for(;;)if(0<=c?(d=b.charCodeAt(c),d=46!==d&&36!==d):d=!1,d)c=-1+c|0;else break;b=b.substring(1+c|0)}a.pI=b}return a.pI}function zf(a){return a.Xd.getComponentType()} -E(zc,"java.lang.Class",{$Z:1,g:1,go:1});class vK extends vH{}E(vK,"java.lang.Error",{GO:1,Bb:1,g:1});class wK extends vH{}E(wK,"java.lang.Exception",{tc:1,Bb:1,g:1});function xK(){yK=this;Qm();ys()}xK.prototype=new WH;xK.prototype.constructor=xK;function zK(a,b){if(!b)throw de("requirement failed");}E(xK,"scala.Predef$",{C0:1,v0:1,w0:1});var yK;function nj(){yK||(yK=new xK);return yK}function AK(){this.tE=null}AK.prototype=new q;AK.prototype.constructor=AK;function BK(){}BK.prototype=AK.prototype; -AK.prototype.Zb=function(a){return this.tE.iI(a,EI())};AK.prototype.Kb=function(){var a=this.tE,b=EI();return a.fE(b)};AK.prototype.Ba=function(a){var b=this.tE,c=EI();return b.iI(a,c)};function CK(){this.ej=null}CK.prototype=new q;CK.prototype.constructor=CK;function DK(){}DK.prototype=CK.prototype;CK.prototype.Ba=function(a){return this.ej.Ba(a)};CK.prototype.Zb=function(a){return this.ej.Zb(a)};CK.prototype.Kb=function(){return this.ej.Kb()}; +E(Ac,"java.lang.Class",{$Z:1,g:1,go:1});class vK extends vH{}E(vK,"java.lang.Error",{GO:1,Bb:1,g:1});class wK extends vH{}E(wK,"java.lang.Exception",{tc:1,Bb:1,g:1});function xK(){yK=this;Qm();ys()}xK.prototype=new WH;xK.prototype.constructor=xK;function zK(a,b){if(!b)throw de("requirement failed");}E(xK,"scala.Predef$",{C0:1,v0:1,w0:1});var yK;function nj(){yK||(yK=new xK);return yK}function AK(){this.tE=null}AK.prototype=new q;AK.prototype.constructor=AK;function BK(){}BK.prototype=AK.prototype; +AK.prototype.Zb=function(a){return this.tE.iI(a,EI())};AK.prototype.Kb=function(){var a=this.tE,b=EI();return a.fE(b)};AK.prototype.Ba=function(a){var b=this.tE,c=EI();return b.iI(a,c)};function CK(){this.dj=null}CK.prototype=new q;CK.prototype.constructor=CK;function DK(){}DK.prototype=CK.prototype;CK.prototype.Ba=function(a){return this.dj.Ba(a)};CK.prototype.Zb=function(a){return this.dj.Zb(a)};CK.prototype.Kb=function(){return this.dj.Kb()}; function EK(a){a=a.k();for(var b=a.e();a.d();)b=a.e();return b}function FK(a,b){if(0>b)return 1;var c=a.U();if(0<=c)return c===b?0:cc?-1:c<=b?0:c-b|0;return 0===c?W().t:new PK(a,b,c)}function QK(){this.t=null;RK=this;this.t=new SK}QK.prototype=new q;QK.prototype.constructor=QK;QK.prototype.Kb=function(){return new TK};QK.prototype.Ba=function(a){return a.k()}; +HK.prototype.hb=function(a){var b=this.WI.sc(),c=b.Zb,d=new KK;d.vw=Wz(this);d.LE=a;return c.call(b,d)};function LK(a,b,c){var d=0c?-1:c<=b?0:c-b|0;return 0===c?W().t:new PK(a,b,c)}function QK(){this.t=null;RK=this;this.t=new SK}QK.prototype=new q;QK.prototype.constructor=QK;QK.prototype.Kb=function(){return new TK};QK.prototype.Ba=function(a){return a.k()}; QK.prototype.Zb=function(a){return a.k()};E(QK,"scala.collection.Iterator$",{h2:1,Hd:1,g:1});var RK;function W(){RK||(RK=new QK);return RK}function UK(a){var b=Qm();a.Dt=b}function VK(){this.Dt=null}VK.prototype=new q;VK.prototype.constructor=VK;function WK(){}WK.prototype=VK.prototype;VK.prototype.Ba=function(a){return this.Dt.Ba(a)};VK.prototype.Zb=function(a){return this.Dt.Zb(a)};VK.prototype.Kb=function(){return this.Dt.Kb()};function XK(){}XK.prototype=new q;XK.prototype.constructor=XK; function YK(a,b){return b&&b.$classData&&b.$classData.Yb.Jf?b:kF(b)?new ZK(new sp((c=>()=>c.k())(b))):$K(new aL,bL(cL(),b))}XK.prototype.Kb=function(){return new dL((mo(),new lx),new Nh(a=>YK(eL(),a)))};XK.prototype.Ba=function(a){return new fL(a)};XK.prototype.Zb=function(a){return YK(0,a)};E(XK,"scala.collection.View$",{F2:1,Hd:1,g:1});var gL;function eL(){gL||(gL=new XK);return gL}function nk(a,b,c,d,e,f){this.xb=a;this.Tb=b;this.Wc=c;this.jg=d;this.rd=e;this.ig=f}nk.prototype=new cI; nk.prototype.constructor=nk;g=nk.prototype;g.Va=function(){return this.rd};g.Zc=function(){return this.ig};g.se=function(a){return this.Wc.a[a<<1]};g.te=function(a){return this.Wc.a[1+(a<<1)|0]};g.mI=function(a){return H(new J,this.Wc.a[a<<1],this.Wc.a[1+(a<<1)|0])};g.Uc=function(a){return this.jg.a[a]};g.Gf=function(a){return this.Wc.a[(-1+this.Wc.a.length|0)-a|0]}; g.ZH=function(a,b,c,d){var e=Ck(Hk(),c,d),f=Dk(Hk(),e);if(0!==(this.xb&f)){if(b=Gk(Hk(),this.xb,e,f),Ri(Si(),a,this.se(b)))return this.te(b)}else if(0!==(this.Tb&f))return this.Gf(Gk(Hk(),this.Tb,e,f)).ZH(a,b,c,5+d|0);throw new Rh("key not found: "+a);};g.ZD=function(a,b,c,d){var e=Ck(Hk(),c,d),f=Dk(Hk(),e);return 0!==(this.xb&f)?(b=Gk(Hk(),this.xb,e,f),Ri(Si(),a,this.se(b))?new T(this.te(b)):up()):0!==(this.Tb&f)?this.Gf(Gk(Hk(),this.Tb,e,f)).ZD(a,b,c,5+d|0):up()}; g.lI=function(a,b,c,d,e){var f=Ck(Hk(),c,d),h=Dk(Hk(),f);return 0!==(this.xb&h)?(b=Gk(Hk(),this.xb,f,h),Ri(Si(),a,this.se(b))?this.te(b):jk(e)):0!==(this.Tb&h)?this.Gf(Gk(Hk(),this.Tb,f,h)).lI(a,b,c,5+d|0,e):jk(e)};g.$H=function(a,b,c,d){var e=Ck(Hk(),c,d),f=Dk(Hk(),e);return 0!==(this.xb&f)?(c=Gk(Hk(),this.xb,e,f),this.jg.a[c]===b&&Ri(Si(),a,this.se(c))):0!==(this.Tb&f)&&this.Gf(Gk(Hk(),this.Tb,e,f)).$H(a,b,c,5+d|0)}; -function hL(a,b,c,d,e,f,h){var k=Ck(Hk(),e,f),m=Dk(Hk(),k);if(0!==(a.xb&m)){var r=Gk(Hk(),a.xb,k,m);k=a.se(r);var u=a.Uc(r);if(u===d&&Ri(Si(),k,b))return h?(e=a.te(r),Object.is(k,b)&&Object.is(e,c)||(m=a.Vi(m)<<1,b=a.Wc,e=new Jb(b.a.length),b.da(0,e,0,b.a.length),e.a[1+m|0]=c,a=new nk(a.xb,a.Tb,e,a.jg,a.rd,a.ig)),a):a;r=a.te(r);h=sj(uj(),u);c=iL(a,k,r,u,h,b,c,d,e,5+f|0);e=a.Vi(m);d=e<<1;f=(-2+a.Wc.a.length|0)-a.Vq(m)|0;k=a.Wc;b=new Jb(-1+k.a.length|0);k.da(0,b,0,d);k.da(2+d|0,b,d,f-d|0);b.a[f]=c; -k.da(2+f|0,b,1+f|0,-2+(k.a.length-f|0)|0);e=xk(a.jg,e);return new nk(a.xb^m,a.Tb|m,b,e,(-1+a.rd|0)+c.Va()|0,(a.ig-h|0)+c.Zc()|0)}if(0!==(a.Tb&m))return k=Gk(Hk(),a.Tb,k,m),k=a.Gf(k),c=k.pB(b,c,d,e,5+f|0,h),c!==k&&(m=(-1+a.Wc.a.length|0)-a.Vq(m)|0,b=a.Wc,e=new Jb(b.a.length),b.da(0,e,0,b.a.length),e.a[m]=c,a=new nk(a.xb,a.Tb,e,a.jg,(a.rd-k.Va()|0)+c.Va()|0,(a.ig-k.Zc()|0)+c.Zc()|0)),a;f=a.Vi(m);k=f<<1;u=a.Wc;h=new Jb(2+u.a.length|0);u.da(0,h,0,k);h.a[k]=b;h.a[1+k|0]=c;u.da(k,h,2+k|0,u.a.length-k|0); +function hL(a,b,c,d,e,f,h){var k=Ck(Hk(),e,f),m=Dk(Hk(),k);if(0!==(a.xb&m)){var r=Gk(Hk(),a.xb,k,m);k=a.se(r);var u=a.Uc(r);if(u===d&&Ri(Si(),k,b))return h?(e=a.te(r),Object.is(k,b)&&Object.is(e,c)||(m=a.Ui(m)<<1,b=a.Wc,e=new Ib(b.a.length),b.da(0,e,0,b.a.length),e.a[1+m|0]=c,a=new nk(a.xb,a.Tb,e,a.jg,a.rd,a.ig)),a):a;r=a.te(r);h=sj(uj(),u);c=iL(a,k,r,u,h,b,c,d,e,5+f|0);e=a.Ui(m);d=e<<1;f=(-2+a.Wc.a.length|0)-a.Vq(m)|0;k=a.Wc;b=new Ib(-1+k.a.length|0);k.da(0,b,0,d);k.da(2+d|0,b,d,f-d|0);b.a[f]=c; +k.da(2+f|0,b,1+f|0,-2+(k.a.length-f|0)|0);e=xk(a.jg,e);return new nk(a.xb^m,a.Tb|m,b,e,(-1+a.rd|0)+c.Va()|0,(a.ig-h|0)+c.Zc()|0)}if(0!==(a.Tb&m))return k=Gk(Hk(),a.Tb,k,m),k=a.Gf(k),c=k.pB(b,c,d,e,5+f|0,h),c!==k&&(m=(-1+a.Wc.a.length|0)-a.Vq(m)|0,b=a.Wc,e=new Ib(b.a.length),b.da(0,e,0,b.a.length),e.a[m]=c,a=new nk(a.xb,a.Tb,e,a.jg,(a.rd-k.Va()|0)+c.Va()|0,(a.ig-k.Zc()|0)+c.Zc()|0)),a;f=a.Ui(m);k=f<<1;u=a.Wc;h=new Ib(2+u.a.length|0);u.da(0,h,0,k);h.a[k]=b;h.a[1+k|0]=c;u.da(k,h,2+k|0,u.a.length-k|0); c=yk(a.jg,f,d);return new nk(a.xb|m,a.Tb,h,c,1+a.rd|0,a.ig+e|0)} -function jL(a,b,c,d,e,f,h){var k=Ck(Hk(),e,f),m=Dk(Hk(),k);if(0!==(a.xb&m)){var r=Gk(Hk(),a.xb,k,m);k=a.se(r);var u=a.Uc(r);if(u===d&&Ri(Si(),k,b))return d=a.te(r),Object.is(k,b)&&Object.is(d,c)||(m=a.Vi(m)<<1,a.Wc.a[1+m|0]=c),h;r=a.te(r);var z=sj(uj(),u);kL(a,m,z,iL(a,k,r,u,z,b,c,d,e,5+f|0));return h|m}if(0!==(a.Tb&m))return k=Gk(Hk(),a.Tb,k,m),z=a.Gf(k),k=z.Va(),u=z.Zc(),r=h,z instanceof nk&&0!==(m&h)?(jL(z,b,c,d,e,5+f|0,0),c=z):(c=z.pB(b,c,d,e,5+f|0,!0),c!==z&&(r|=m)),a.Wc.a[(-1+a.Wc.a.length| -0)-a.Vq(m)|0]=c,a.rd=(a.rd-k|0)+c.Va()|0,a.ig=(a.ig-u|0)+c.Zc()|0,r;f=a.Vi(m);k=f<<1;u=a.Wc;r=new Jb(2+u.a.length|0);u.da(0,r,0,k);r.a[k]=b;r.a[1+k|0]=c;u.da(k,r,2+k|0,u.a.length-k|0);a.xb|=m;a.Wc=r;a.jg=yk(a.jg,f,d);a.rd=1+a.rd|0;a.ig=a.ig+e|0;return h} -function iL(a,b,c,d,e,f,h,k,m,r){if(32<=r)return lL(),b=new Q([H(new J,b,c),H(new J,f,h)]),new mL(d,e,nL(b));var u=Ck(Hk(),e,r),z=Ck(Hk(),m,r),I=e+m|0;if(u!==z)return e=Dk(Hk(),u)|Dk(Hk(),z),ud;){d=Dk(Hk(),d);if(0!==(this.Db&d))if(0!==(a.Db&d))e=Ri(Si(),this.dh(Ek(Hk(),this.Db,d)),a.dh(Ek(Hk(),a.Db,d)));else{var f=Ek(Hk(),this.Db,d);e=this.dh(f);var h=a.Wi(Ek(Hk(),a.Bc,d));f=this.Uc(f);var k=sj(uj(),f);e=h.oA(e,f,k,5+b|0)}else 0===(a.Db&d)?(e=this.Wi(Ek(Hk(),this.Bc,d)),h=a.Wi(Ek(Hk(), +function pL(a){for(var b=a.Wc.V(),c=b.a.length,d=Fk(fk(),a.xb)<<1;dd;){d=Dk(Hk(),d);if(0!==(this.Db&d))if(0!==(a.Db&d))e=Ri(Si(),this.dh(Ek(Hk(),this.Db,d)),a.dh(Ek(Hk(),a.Db,d)));else{var f=Ek(Hk(),this.Db,d);e=this.dh(f);var h=a.Vi(Ek(Hk(),a.Bc,d));f=this.Uc(f);var k=sj(uj(),f);e=h.oA(e,f,k,5+b|0)}else 0===(a.Db&d)?(e=this.Vi(Ek(Hk(),this.Bc,d)),h=a.Vi(Ek(Hk(), a.Bc,d)),e=e.IJ(h,5+b|0)):e=!1;c=d^=c;d=0===d?32:31-(Math.clz32(d&(-d|0))|0)|0}return e}throw new G(a);}; -function tL(a,b,c){if(0===a.xe)return a;if(1===a.xe)return!!b.y(a.dh(0))!==c?a:Lk().Jw;if(0===a.Bc){for(var d=a.Db,e=0===d?32:31-(Math.clz32(d&(-d|0))|0)|0,f=32-(Math.clz32(a.Db)|0)|0,h=d=0,k=0;e{if(null!==b)return a.Yf(b.Ia(),b.la());throw new G(b);}))};g.hI=function(a){for(var b=this.ad.k();b.d();){var c=b.e();(0,a.tQ)(c.Ia(),c.la(),this.RE)}};g.b=function(a){if(a instanceof mL){if(this===a)return!0;if(this.fr===a.fr&&this.ad.i()===a.ad.i()){for(var b=this.ad.k();b.d();){var c=b.e();if(null===c)throw new G(c);var d=c.la();c=xL(a,c.Ia());if(0>c||!Ri(Si(),d,a.ad.u(c).la()))return!1}return!0}}return!1}; g.s=function(){throw Xh("Trie nodes do not support hashing.");};g.Zc=function(){return Math.imul(this.ad.i(),this.fr)};g.sO=function(){return new mL(this.RE,this.fr,this.ad)}; g.rO=function(a){if(a instanceof mL)if(a===this)a=this;else{for(var b=null,c=this.ad.k();c.d();){var d=c.e();0>xL(a,d.Ia())&&(null===b&&(b=new zL,AL(b,a.ad)),BL(b,d))}a=null===b?a:new mL(this.RE,this.fr,b.kl())}else{if(a instanceof nk)throw Xh("Cannot concatenate a HashCollisionMapNode with a BitmapIndexedMapNode");throw new G(a);}return a};g.uA=function(a){return this.Gf(a)};E(mL,"scala.collection.immutable.HashCollisionMapNode",{f3:1,KS:1,UE:1}); -function sL(a,b,c){this.aB=a;this.gr=b;this.Id=c;zK(nj(),2<=this.Id.i())}sL.prototype=new xI;sL.prototype.constructor=sL;g=sL.prototype;g.oA=function(a,b,c){return this.gr===c&&cp(this.Id,a)};g.BQ=function(a,b,c,d){return this.oA(a,b,c,d)?this:new sL(b,c,this.Id.om(a))};g.zA=function(){return!1};g.NA=function(){return 0};g.Wi=function(){throw Wl(new Xl,"No sub-nodes present in hash-collision leaf node.");};g.cw=function(){return!0};g.gw=function(){return this.Id.i()};g.dh=function(a){return this.Id.u(a)}; +function sL(a,b,c){this.aB=a;this.gr=b;this.Id=c;zK(nj(),2<=this.Id.i())}sL.prototype=new xI;sL.prototype.constructor=sL;g=sL.prototype;g.oA=function(a,b,c){return this.gr===c&&cp(this.Id,a)};g.BQ=function(a,b,c,d){return this.oA(a,b,c,d)?this:new sL(b,c,this.Id.om(a))};g.zA=function(){return!1};g.NA=function(){return 0};g.Vi=function(){throw Wl(new Xl,"No sub-nodes present in hash-collision leaf node.");};g.dw=function(){return!0};g.hw=function(){return this.Id.i()};g.dh=function(a){return this.Id.u(a)}; g.Uc=function(){return this.aB};g.Va=function(){return this.Id.i()};g.Ha=function(a){for(var b=this.Id.k();b.d();)a.y(b.e())};g.Zc=function(){return Math.imul(this.Id.i(),this.gr)};g.IJ=function(a){if(this===a)return!0;if(a instanceof sL&&this.Id.i()<=a.Id.i()){a=a.Id;for(var b=!0,c=this.Id.k();b&&c.d();)b=c.e(),b=cp(a,b);return b}return!1}; -g.vO=function(a,b){a=CL(this.Id,a,b);b=a.i();return 0===b?Lk().Jw:1===b?new Kk(Dk(Hk(),Ck(Hk(),this.gr,0)),0,new Jb([a.X()]),new y(new Int32Array([this.aB])),1,this.gr):a.i()===this.Id.i()?this:new sL(this.aB,this.gr,a)};g.b=function(a){if(a instanceof sL){if(this===a)return!0;if(this.gr===a.gr&&this.Id.i()===a.Id.i()){a=a.Id;for(var b=!0,c=this.Id.k();b&&c.d();)b=c.e(),b=cp(a,b);return b}}return!1};g.s=function(){throw Xh("Trie nodes do not support hashing.");}; -g.gI=function(a){for(var b=this.Id.k();b.d();){var c=b.e();a.Yf(c,this.aB)}};g.tO=function(){return new sL(this.aB,this.gr,this.Id)};g.uA=function(a){return this.Wi(a)};E(sL,"scala.collection.immutable.HashCollisionSetNode",{g3:1,TS:1,UE:1});function DL(){this.nJ=null;EL=this;mk||(mk=new lk);this.nJ=new FL(mk.XP)}DL.prototype=new q;DL.prototype.constructor=DL;DL.prototype.Ba=function(a){return GL(a)};function GL(a){return a instanceof FL?a:HL(IL(new JL,a))}DL.prototype.Kb=function(){return new JL}; -DL.prototype.Zb=function(a){return GL(a)};E(DL,"scala.collection.immutable.HashMap$",{i3:1,BE:1,g:1});var EL;function KL(){EL||(EL=new DL);return EL}function LL(){this.cB=null;ML=this;this.cB=new NL(Lk().Jw)}LL.prototype=new q;LL.prototype.constructor=LL;LL.prototype.Ba=function(a){return OL(this,a)};function OL(a,b){return b instanceof NL?b:0===b.U()?a.cB:PL(QL(new RL,b))}LL.prototype.Kb=function(){return new RL};LL.prototype.Zb=function(a){return OL(this,a)}; +g.vO=function(a,b){a=CL(this.Id,a,b);b=a.i();return 0===b?Lk().Kw:1===b?new Kk(Dk(Hk(),Ck(Hk(),this.gr,0)),0,new Ib([a.X()]),new y(new Int32Array([this.aB])),1,this.gr):a.i()===this.Id.i()?this:new sL(this.aB,this.gr,a)};g.b=function(a){if(a instanceof sL){if(this===a)return!0;if(this.gr===a.gr&&this.Id.i()===a.Id.i()){a=a.Id;for(var b=!0,c=this.Id.k();b&&c.d();)b=c.e(),b=cp(a,b);return b}}return!1};g.s=function(){throw Xh("Trie nodes do not support hashing.");}; +g.gI=function(a){for(var b=this.Id.k();b.d();){var c=b.e();a.Yf(c,this.aB)}};g.tO=function(){return new sL(this.aB,this.gr,this.Id)};g.uA=function(a){return this.Vi(a)};E(sL,"scala.collection.immutable.HashCollisionSetNode",{g3:1,TS:1,UE:1});function DL(){this.nJ=null;EL=this;mk||(mk=new lk);this.nJ=new FL(mk.XP)}DL.prototype=new q;DL.prototype.constructor=DL;DL.prototype.Ba=function(a){return GL(a)};function GL(a){return a instanceof FL?a:HL(IL(new JL,a))}DL.prototype.Kb=function(){return new JL}; +DL.prototype.Zb=function(a){return GL(a)};E(DL,"scala.collection.immutable.HashMap$",{i3:1,BE:1,g:1});var EL;function KL(){EL||(EL=new DL);return EL}function LL(){this.cB=null;ML=this;this.cB=new NL(Lk().Kw)}LL.prototype=new q;LL.prototype.constructor=LL;LL.prototype.Ba=function(a){return OL(this,a)};function OL(a,b){return b instanceof NL?b:0===b.U()?a.cB:PL(QL(new RL,b))}LL.prototype.Kb=function(){return new RL};LL.prototype.Zb=function(a){return OL(this,a)}; E(LL,"scala.collection.immutable.HashSet$",{n3:1,Hd:1,g:1});var ML;function SL(){ML||(ML=new LL);return ML}function TL(a,b){this.HS=a;this.IS=b}TL.prototype=new q;TL.prototype.constructor=TL;TL.prototype.X=function(){return this.HS};TL.prototype.ge=function(){return this.IS};E(TL,"scala.collection.immutable.LazyList$State$Cons",{y3:1,GS:1,g:1});function UL(){}UL.prototype=new q;UL.prototype.constructor=UL;UL.prototype.AA=function(){throw new Rh("head of empty lazy list");}; -UL.prototype.ge=function(){throw Xh("tail of empty lazy list");};UL.prototype.X=function(){this.AA()};E(UL,"scala.collection.immutable.LazyList$State$Empty$",{z3:1,GS:1,g:1});var VL;function WL(){VL||(VL=new UL);return VL}function XL(){}XL.prototype=new q;XL.prototype.constructor=XL;XL.prototype.Ba=function(a){return Rm(0,a)};function Rm(a,b){YL(b)&&b.v()?a=ZL():b instanceof FL||b instanceof $L||b instanceof aM||b instanceof bM||b instanceof cM?a=b:(a=dM(new eM,b),a=a.Bw?HL(a.hr):a.Cm);return a} -XL.prototype.Kb=function(){return new eM};XL.prototype.Zb=function(a){return Rm(0,a)};E(XL,"scala.collection.immutable.Map$",{B3:1,BE:1,g:1});var fM;function Qm(){fM||(fM=new XL);return fM}function gM(){}gM.prototype=new q;gM.prototype.constructor=gM;gM.prototype.Ba=function(a){return xs(0,a)};function xs(a,b){0===b.U()?a=hM():b instanceof NL?a=b:b instanceof iM?a=b:b instanceof jM?a=b:b instanceof kM?a=b:b instanceof lM?a=b:(a=mM(new nM,b),a=a.Iw?PL(a.pr):a.or);return a}gM.prototype.Kb=function(){return new nM}; +UL.prototype.ge=function(){throw Xh("tail of empty lazy list");};UL.prototype.X=function(){this.AA()};E(UL,"scala.collection.immutable.LazyList$State$Empty$",{z3:1,GS:1,g:1});var VL;function WL(){VL||(VL=new UL);return VL}function XL(){}XL.prototype=new q;XL.prototype.constructor=XL;XL.prototype.Ba=function(a){return Rm(0,a)};function Rm(a,b){YL(b)&&b.v()?a=ZL():b instanceof FL||b instanceof $L||b instanceof aM||b instanceof bM||b instanceof cM?a=b:(a=dM(new eM,b),a=a.Cw?HL(a.hr):a.Cm);return a} +XL.prototype.Kb=function(){return new eM};XL.prototype.Zb=function(a){return Rm(0,a)};E(XL,"scala.collection.immutable.Map$",{B3:1,BE:1,g:1});var fM;function Qm(){fM||(fM=new XL);return fM}function gM(){}gM.prototype=new q;gM.prototype.constructor=gM;gM.prototype.Ba=function(a){return xs(0,a)};function xs(a,b){0===b.U()?a=hM():b instanceof NL?a=b:b instanceof iM?a=b:b instanceof jM?a=b:b instanceof kM?a=b:b instanceof lM?a=b:(a=mM(new nM,b),a=a.Jw?PL(a.pr):a.or);return a}gM.prototype.Kb=function(){return new nM}; gM.prototype.Zb=function(a){return xs(0,a)};E(gM,"scala.collection.immutable.Set$",{h4:1,Hd:1,g:1});var oM;function ys(){oM||(oM=new gM);return oM}function pM(a,b){b=b.U();-1!==b&&(b=b+0|0,a.Oc(0>b?0:b))}function qM(){}qM.prototype=new q;qM.prototype.constructor=qM;qM.prototype.Ba=function(a){return rM(a)};function rM(a){var b=a.U();return lz(sM(new tM,0b.y(c)}E(HM,"scala.scalajs.js.Any$",{N5:1,Q5:1,R5:1});var IM; @@ -1349,43 +1349,43 @@ function qo(){IM||(IM=new HM);return IM}function sp(a){this.dT=a}sp.prototype=ne Cj.prototype.Yf=function(a,b){return(0,this.fT)(a,b)};E(Cj,"scala.scalajs.runtime.AnonFunction2",{Y5:1,gT:1,XJ:1});function JM(a){this.tQ=a}JM.prototype=new OI;JM.prototype.constructor=JM;E(JM,"scala.scalajs.runtime.AnonFunction3",{Z5:1,d6:1,jT:1});class KM extends vH{} function LM(){this.mh=this.fg=this.Og=this.Ng=null;this.Pg=!1;this.h=0;this.H=null;this.gf=this.lh=0;this.pF=this.rF=this.oF=this.qF=this.Jm=null;QH(this);MM=this;var a=null!==this.H&&this.H.d()?this.H.e():"NONE";this.Jm=new Z(this,this.h,a);a=null!==this.H&&this.H.d()?this.H.e():"SINGLE";this.qF=new Z(this,this.h,a);a=null!==this.H&&this.H.d()?this.H.e():"DOUBLE";this.oF=new Z(this,this.h,a);a=null!==this.H&&this.H.d()?this.H.e():"SINGLE_TRIPLE";this.rF=new Z(this,this.h,a);a=null!==this.H&&this.H.d()? this.H.e():"DOUBLE_TRIPLE";this.pF=new Z(this,this.h,a)}LM.prototype=new TH;LM.prototype.constructor=LM;E(LM,"tigerpython.inputenc.StringTranslator$StringMode$",{vT:1,fk:1,g:1});var MM;function NM(){MM||(MM=new LM);return MM}function qy(){this.La=null}qy.prototype=new cJ;qy.prototype.constructor=qy;function OM(){}OM.prototype=qy.prototype; -function PM(){this.mh=this.fg=this.Og=this.Ng=null;this.Pg=!1;this.h=0;this.H=null;this.gf=this.lh=0;this.OB=this.YK=this.WK=this.AK=this.TK=this.SK=this.uK=this.hK=this.gK=this.zK=this.IK=this.CK=this.bL=this.VK=this.NK=this.MK=this.HF=this.KK=this.PK=this.cL=this.dL=this.mK=this.oy=this.rK=this.tK=this.jL=this.iL=this.oK=this.DK=this.yK=this.aL=this.LK=this.$K=this.xK=this.GK=this.JK=this.fL=this.pK=this.QK=this.vK=this.qK=this.UK=this.BK=this.RK=this.EK=this.HK=this.NB=this.iK=this.eL=this.XK= +function PM(){this.mh=this.fg=this.Og=this.Ng=null;this.Pg=!1;this.h=0;this.H=null;this.gf=this.lh=0;this.OB=this.YK=this.WK=this.AK=this.TK=this.SK=this.uK=this.hK=this.gK=this.zK=this.IK=this.CK=this.bL=this.VK=this.NK=this.MK=this.HF=this.KK=this.PK=this.cL=this.dL=this.mK=this.py=this.rK=this.tK=this.jL=this.iL=this.oK=this.DK=this.yK=this.aL=this.LK=this.$K=this.xK=this.GK=this.JK=this.fL=this.pK=this.QK=this.vK=this.qK=this.UK=this.BK=this.RK=this.EK=this.HK=this.NB=this.iK=this.eL=this.XK= this.hL=this.FK=this.gL=this.kK=this.FF=this.nK=this.jK=this.wK=this.ZK=this.sK=this.lK=this.GF=this.OK=null;QH(this);QM=this;this.OK=new Z(this,this.h,"Module");new Z(this,this.h,"Interactive");new Z(this,this.h,"Expression");new Z(this,this.h,"FunctionType");new Z(this,this.h,"Suite");this.GF=new Z(this,this.h,"FunctionDef");this.lK=new Z(this,this.h,"AsyncFunctionDef");this.sK=new Z(this,this.h,"ClassDef");this.ZK=new Z(this,this.h,"Return");this.wK=new Z(this,this.h,"Delete");this.jK=new Z(this, this.h,"Assign");this.nK=new Z(this,this.h,"AugAssign");new Z(this,this.h,"AnnAssign");this.FF=new Z(this,this.h,"For");this.kK=new Z(this,this.h,"AsyncFor");this.gL=new Z(this,this.h,"While");this.FK=new Z(this,this.h,"If");this.hL=new Z(this,this.h,"With");new Z(this,this.h,"AsyncWith");this.XK=new Z(this,this.h,"Raise");this.eL=new Z(this,this.h,"Try");this.iK=new Z(this,this.h,"Assert");this.NB=new Z(this,this.h,"Import");this.HK=new Z(this,this.h,"ImportFrom");this.EK=new Z(this,this.h,"Global"); this.RK=new Z(this,this.h,"Nonlocal");this.BK=new Z(this,this.h,"Expr");this.UK=new Z(this,this.h,"Pass");this.qK=new Z(this,this.h,"Break");this.vK=new Z(this,this.h,"Continue");new Z(this,this.h,"BoolOp");this.QK=new Z(this,this.h,"NamedExpr");this.pK=new Z(this,this.h,"BinOp");this.fL=new Z(this,this.h,"UnaryOp");this.JK=new Z(this,this.h,"Lambda");this.GK=new Z(this,this.h,"IfExpr");this.xK=new Z(this,this.h,"Dict");this.$K=new Z(this,this.h,"Set");this.LK=new Z(this,this.h,"ListComp");this.aL= -new Z(this,this.h,"SetComp");this.yK=new Z(this,this.h,"DictComp");this.DK=new Z(this,this.h,"GeneratorExpr");this.oK=new Z(this,this.h,"Await");this.iL=new Z(this,this.h,"Yield");this.jL=new Z(this,this.h,"YieldFrom");this.tK=new Z(this,this.h,"Compare");this.rK=new Z(this,this.h,"Call");new Z(this,this.h,"FormattedValue");new Z(this,this.h,"JoinedStr");this.oy=new Z(this,this.h,"Constant");this.mK=new Z(this,this.h,"Attribute");this.dL=new Z(this,this.h,"Subscript");this.cL=new Z(this,this.h,"Starred"); +new Z(this,this.h,"SetComp");this.yK=new Z(this,this.h,"DictComp");this.DK=new Z(this,this.h,"GeneratorExpr");this.oK=new Z(this,this.h,"Await");this.iL=new Z(this,this.h,"Yield");this.jL=new Z(this,this.h,"YieldFrom");this.tK=new Z(this,this.h,"Compare");this.rK=new Z(this,this.h,"Call");new Z(this,this.h,"FormattedValue");new Z(this,this.h,"JoinedStr");this.py=new Z(this,this.h,"Constant");this.mK=new Z(this,this.h,"Attribute");this.dL=new Z(this,this.h,"Subscript");this.cL=new Z(this,this.h,"Starred"); this.PK=new Z(this,this.h,"Name");this.KK=new Z(this,this.h,"List");this.HF=new Z(this,this.h,"Tuple");this.MK=new Z(this,this.h,"MATCH");this.NK=new Z(this,this.h,"MATCH_CASE");this.VK=new Z(this,this.h,"PATTERN");this.bL=new Z(this,this.h,"Slice");this.CK=new Z(this,this.h,"ExtSlice");this.IK=new Z(this,this.h,"Index");this.zK=new Z(this,this.h,"ExceptHandler");this.gK=new Z(this,this.h,"alias");new Z(this,this.h,"\x3carg\x3e");this.hK=new Z(this,this.h,"\x3carguments\x3e");this.uK=new Z(this,this.h, "\x3ccomprehension\x3e");this.SK=new Z(this,this.h,"arg");this.TK=new Z(this,this.h,"arguments");this.AK=new Z(this,this.h,"Exec/2");this.WK=new Z(this,this.h,"Print/2");this.YK=new Z(this,this.h,"Raise/2");this.OB=new Z(this,this.h,"\x3cNOTHING\x3e")}PM.prototype=new TH;PM.prototype.constructor=PM;E(PM,"tigerpython.parser.ast.AstNodeKind$",{eV:1,fk:1,g:1});var QM;function Gp(){QM||(QM=new PM);return QM} function Lx(){this.mh=this.fg=this.Og=this.Ng=null;this.Pg=!1;this.h=0;this.H=null;this.gf=this.lh=0;this.wL=this.vL=this.uL=this.tL=this.sL=this.rL=this.qL=this.pL=this.oL=this.nL=this.mL=this.lL=this.kL=null;QH(this);Kx=this;this.kL=new Z(this,this.h,"+\x3d");this.lL=new Z(this,this.h,"\x26\x3d");this.mL=new Z(this,this.h,"/\x3d");this.nL=new Z(this,this.h,"//\x3d");this.oL=new Z(this,this.h,"@\x3d");this.pL=new Z(this,this.h,"%\x3d");this.qL=new Z(this,this.h,"*\x3d");this.rL=new Z(this,this.h, "|\x3d");this.sL=new Z(this,this.h,"**\x3d");this.tL=new Z(this,this.h,"\x3c\x3c\x3d");this.uL=new Z(this,this.h,"\x3e\x3e\x3d");this.vL=new Z(this,this.h,"-\x3d");this.wL=new Z(this,this.h,"^\x3d")}Lx.prototype=new TH;Lx.prototype.constructor=Lx; Lx.prototype.cf=function(a){if(X().tG===a)return this.oL;if(X().mG===a)return this.lL;if(X().nG===a)return this.rL;if(X().jC===a)return this.wL;if(X().oG===a)return this.vL;if(X().pG===a)return this.mL;if(X().rG===a)return this.kL;if(X().sG===a)return this.nL;if(X().uG===a)return this.pL;if(X().wG===a)return this.qL;if(X().sC===a)return this.sL;if(X().Ky===a)return this.tL;if(X().uC===a)return this.uL;throw new G(a);};E(Lx,"tigerpython.parser.ast.AugAssignOp$",{gV:1,fk:1,g:1});var Kx; -function RM(){this.mh=this.fg=this.Og=this.Ng=null;this.Pg=!1;this.h=0;this.H=null;this.gf=this.lh=0;this.PF=this.qy=this.Tu=this.OF=this.SB=this.ry=this.NF=this.$r=this.RB=this.xL=this.QB=this.MF=this.Su=this.Wm=this.zj=this.Nl=this.py=this.Ru=this.Zr=this.yj=this.Ml=this.Ll=this.LF=this.KF=this.JF=this.PB=this.kp=null;QH(this);SM=this;this.kp=new Z(this,this.h,"+");this.PB=new Z(this,this.h,"and");this.JF=new Z(this,this.h,"\x26");this.KF=new Z(this,this.h,"|");this.LF=new Z(this,this.h,"^");this.Ll= -new Z(this,this.h,"\x3d\x3d");this.Ml=new Z(this,this.h,"\x3e\x3d");this.yj=new Z(this,this.h,"\x3e");this.Zr=new Z(this,this.h,"in");this.Ru=new Z(this,this.h,"is");this.py=new Z(this,this.h,"is not");this.Nl=new Z(this,this.h,"\x3c\x3d");this.zj=new Z(this,this.h,"\x3c");this.Wm=new Z(this,this.h,"!\x3d");this.Su=new Z(this,this.h,"not in");this.MF=new Z(this,this.h,"/");this.QB=new Z(this,this.h,"//");this.xL=new Z(this,this.h,"@");this.RB=new Z(this,this.h,"%");this.$r=new Z(this,this.h,"*"); -this.NF=new Z(this,this.h,"or");this.ry=new Z(this,this.h,"**");this.SB=new Z(this,this.h,"\x3c\x3c");this.OF=new Z(this,this.h,"\x3e\x3e");this.Tu=new Z(this,this.h,"-");this.qy=new Z(this,this.h,"?");this.PF=xs(ys(),new Q([this.Ll,this.Ml,this.yj,this.Zr,this.Ru,this.py,this.Nl,this.zj,this.Wm,this.Su]))}RM.prototype=new TH;RM.prototype.constructor=RM; -RM.prototype.cf=function(a){if(X().rq===a)return this.xL;if(X().yc===a)return this.kp;if(X().ms===a)return this.PB;if(X().gC===a)return this.JF;if(X().hC===a)return this.KF;if(X().iC===a)return this.LF;if(X().sq===a)return this.MF;if(X().$u===a)return this.Ll;if(X().bv===a)return this.Ml;if(X().oC===a)return this.yj;if(X().ld===a)return this.Zr;if(X().Jy===a)return this.QB;if(X().$l===a)return this.Ru;if(X().uq===a)return this.py;if(X().cv===a)return this.Nl;if(X().pC===a)return this.zj;if(X().Gc=== -a)return this.Tu;if(X().dv===a)return this.RB;if(X().qC===a)return this.Wm;if(X().ev===a)return this.Su;if(X().rs===a)return this.NF;if(X().rC===a)return this.ry;if(X().zG===a)return this.SB;if(X().tC===a)return this.OF;if(X().Dh===a)return this.$r;throw new G(a);};E(RM,"tigerpython.parser.ast.BinOp$",{hV:1,fk:1,g:1});var SM;function fu(){SM||(SM=new RM);return SM} +function RM(){this.mh=this.fg=this.Og=this.Ng=null;this.Pg=!1;this.h=0;this.H=null;this.gf=this.lh=0;this.PF=this.ry=this.Tu=this.OF=this.SB=this.sy=this.NF=this.$r=this.RB=this.xL=this.QB=this.MF=this.Su=this.Wm=this.yj=this.Nl=this.qy=this.Ru=this.Zr=this.xj=this.Ml=this.Ll=this.LF=this.KF=this.JF=this.PB=this.kp=null;QH(this);SM=this;this.kp=new Z(this,this.h,"+");this.PB=new Z(this,this.h,"and");this.JF=new Z(this,this.h,"\x26");this.KF=new Z(this,this.h,"|");this.LF=new Z(this,this.h,"^");this.Ll= +new Z(this,this.h,"\x3d\x3d");this.Ml=new Z(this,this.h,"\x3e\x3d");this.xj=new Z(this,this.h,"\x3e");this.Zr=new Z(this,this.h,"in");this.Ru=new Z(this,this.h,"is");this.qy=new Z(this,this.h,"is not");this.Nl=new Z(this,this.h,"\x3c\x3d");this.yj=new Z(this,this.h,"\x3c");this.Wm=new Z(this,this.h,"!\x3d");this.Su=new Z(this,this.h,"not in");this.MF=new Z(this,this.h,"/");this.QB=new Z(this,this.h,"//");this.xL=new Z(this,this.h,"@");this.RB=new Z(this,this.h,"%");this.$r=new Z(this,this.h,"*"); +this.NF=new Z(this,this.h,"or");this.sy=new Z(this,this.h,"**");this.SB=new Z(this,this.h,"\x3c\x3c");this.OF=new Z(this,this.h,"\x3e\x3e");this.Tu=new Z(this,this.h,"-");this.ry=new Z(this,this.h,"?");this.PF=xs(ys(),new Q([this.Ll,this.Ml,this.xj,this.Zr,this.Ru,this.qy,this.Nl,this.yj,this.Wm,this.Su]))}RM.prototype=new TH;RM.prototype.constructor=RM; +RM.prototype.cf=function(a){if(X().rq===a)return this.xL;if(X().yc===a)return this.kp;if(X().ms===a)return this.PB;if(X().gC===a)return this.JF;if(X().hC===a)return this.KF;if(X().iC===a)return this.LF;if(X().sq===a)return this.MF;if(X().av===a)return this.Ll;if(X().cv===a)return this.Ml;if(X().oC===a)return this.xj;if(X().ld===a)return this.Zr;if(X().Jy===a)return this.QB;if(X().$l===a)return this.Ru;if(X().uq===a)return this.qy;if(X().dv===a)return this.Nl;if(X().pC===a)return this.yj;if(X().Gc=== +a)return this.Tu;if(X().ev===a)return this.RB;if(X().qC===a)return this.Wm;if(X().fv===a)return this.Su;if(X().rs===a)return this.NF;if(X().rC===a)return this.sy;if(X().zG===a)return this.SB;if(X().tC===a)return this.OF;if(X().Dh===a)return this.$r;throw new G(a);};E(RM,"tigerpython.parser.ast.BinOp$",{hV:1,fk:1,g:1});var SM;function fu(){SM||(SM=new RM);return SM} function TM(){this.mh=this.fg=this.Og=this.Ng=null;this.Pg=!1;this.h=0;this.H=null;this.gf=this.lh=0;this.yL=this.zL=this.AL=this.Uu=null;QH(this);UM=this;var a=null!==this.H&&this.H.d()?this.H.e():"LOAD";this.Uu=new Z(this,this.h,a);a=null!==this.H&&this.H.d()?this.H.e():"STORE";this.AL=new Z(this,this.h,a);a=null!==this.H&&this.H.d()?this.H.e():"DEL";this.zL=new Z(this,this.h,a);a=null!==this.H&&this.H.d()?this.H.e():"AUG_STORE";this.yL=new Z(this,this.h,a)}TM.prototype=new TH; TM.prototype.constructor=TM;E(TM,"tigerpython.parser.ast.ExprContext$",{iV:1,fk:1,g:1});var UM;function qx(){UM||(UM=new TM);return UM} -function VM(){this.mh=this.fg=this.Og=this.Ng=null;this.Pg=!1;this.h=0;this.H=null;this.gf=this.lh=0;this.TB=this.sy=this.Fk=this.QF=this.Gk=this.FL=this.CL=this.BL=this.EL=this.HL=this.DL=this.GL=null;QH(this);WM=this;var a=null!==this.H&&this.H.d()?this.H.e():"PLAIN";this.GL=new Z(this,this.h,a);a=null!==this.H&&this.H.d()?this.H.e():"CALL";this.DL=new Z(this,this.h,a);a=null!==this.H&&this.H.d()?this.H.e():"SUBSCRIPT";this.HL=new Z(this,this.h,a);a=null!==this.H&&this.H.d()?this.H.e():"COPY_LOAD"; +function VM(){this.mh=this.fg=this.Og=this.Ng=null;this.Pg=!1;this.h=0;this.H=null;this.gf=this.lh=0;this.TB=this.ty=this.Fk=this.QF=this.Gk=this.FL=this.CL=this.BL=this.EL=this.HL=this.DL=this.GL=null;QH(this);WM=this;var a=null!==this.H&&this.H.d()?this.H.e():"PLAIN";this.GL=new Z(this,this.h,a);a=null!==this.H&&this.H.d()?this.H.e():"CALL";this.DL=new Z(this,this.h,a);a=null!==this.H&&this.H.d()?this.H.e():"SUBSCRIPT";this.HL=new Z(this,this.h,a);a=null!==this.H&&this.H.d()?this.H.e():"COPY_LOAD"; this.EL=new Z(this,this.h,a);a=null!==this.H&&this.H.d()?this.H.e():"ATTR_BASE";this.BL=new Z(this,this.h,a);a=null!==this.H&&this.H.d()?this.H.e():"ATTR_FIELD";this.CL=new Z(this,this.h,a);a=null!==this.H&&this.H.d()?this.H.e():"PARAMETER";this.FL=new Z(this,this.h,a);a=null!==this.H&&this.H.d()?this.H.e():"GLOBAL";this.Gk=new Z(this,this.h,a);a=null!==this.H&&this.H.d()?this.H.e():"AUG_ASSIGN_TARGET";this.QF=new Z(this,this.h,a);a=null!==this.H&&this.H.d()?this.H.e():"ASSIGN_TARGET";this.Fk=new Z(this, -this.h,a);a=null!==this.H&&this.H.d()?this.H.e():"IMPORTED";this.sy=new Z(this,this.h,a);a=null!==this.H&&this.H.d()?this.H.e():"HIDDEN";this.TB=new Z(this,this.h,a)}VM.prototype=new TH;VM.prototype.constructor=VM;E(VM,"tigerpython.parser.ast.ExtExprContext$",{jV:1,fk:1,g:1});var WM;function Ao(){WM||(WM=new VM);return WM} +this.h,a);a=null!==this.H&&this.H.d()?this.H.e():"IMPORTED";this.ty=new Z(this,this.h,a);a=null!==this.H&&this.H.d()?this.H.e():"HIDDEN";this.TB=new Z(this,this.h,a)}VM.prototype=new TH;VM.prototype.constructor=VM;E(VM,"tigerpython.parser.ast.ExtExprContext$",{jV:1,fk:1,g:1});var WM;function Ao(){WM||(WM=new VM);return WM} function XM(){this.mh=this.fg=this.Og=this.Ng=null;this.Pg=!1;this.h=0;this.H=null;this.gf=this.lh=0;this.JL=this.lp=this.IL=null;QH(this);YM=this;this.IL=new Z(this,this.h,"~");this.lp=new Z(this,this.h,"-");this.JL=new Z(this,this.h,"not");new Z(this,this.h,"+")}XM.prototype=new TH;XM.prototype.constructor=XM;E(XM,"tigerpython.parser.ast.UnOp$",{kV:1,fk:1,g:1});var YM;function pu(){YM||(YM=new XM);return YM} -function ZM(){this.mh=this.fg=this.Og=this.Ng=null;this.Pg=!1;this.h=0;this.H=null;this.gf=this.lh=0;this.LL=this.KL=this.Hk=this.Ji=this.Xm=this.ty=null;QH(this);$M=this;this.ty=new Z(this,this.h,"complex");this.Xm=new Z(this,this.h,"float");this.Ji=new Z(this,this.h,"int");this.Hk=new Z(this,this.h,"none");this.KL=new Z(this,this.h,"bytearray");this.LL=new Z(this,this.h,"\x3c???\x3e")}ZM.prototype=new TH;ZM.prototype.constructor=ZM; -ZM.prototype.cf=function(a){return X().Ib===a?this.Ji:X().kd===a?this.Xm:X().Qk===a?this.Hk:X().Uf===a?this.ty:this.LL};E(ZM,"tigerpython.parser.ast.ValueType$",{lV:1,fk:1,g:1});var $M;function Ts(){$M||($M=new ZM);return $M} -function aN(){this.mh=this.fg=this.Og=this.Ng=null;this.Pg=!1;this.h=0;this.H=null;this.gf=this.lh=0;this.oq=this.nq=this.dG=this.mq=this.hs=this.gs=this.cq=this.Nk=this.bq=this.$B=this.lq=this.kq=this.bG=this.Bn=this.jq=this.iq=this.hq=this.gq=this.fq=this.eq=this.dq=this.Wl=this.aq=this.$p=this.Mk=this.Ej=this.ZB=this.YB=this.An=this.XB=this.ii=this.ZF=this.YF=this.Dj=this.zn=this.Zp=this.Yp=this.NL=this.Mi=this.Xp=this.Wp=this.Vp=this.Up=this.fs=this.es=this.yn=this.ds=this.Tp=this.Lk=this.Sp= -this.xn=this.XF=this.Rd=this.wn=this.Rp=this.Cj=this.Qp=this.Pc=this.Kk=this.Sf=this.Vl=this.vn=this.Bj=this.WB=this.un=this.Pp=this.wy=this.Op=this.Ul=this.Ee=this.tn=this.Np=this.Mp=this.Jk=this.Lp=this.sn=this.Kp=this.Jp=this.rn=this.qn=this.pn=this.Ip=this.Hp=this.on=this.WF=this.Gp=this.Ik=this.nn=this.mn=this.vy=this.ln=this.cs=this.kn=this.Fp=this.Ep=this.VF=this.Tl=this.jn=this.Dp=this.Cp=this.Sl=this.Rl=this.Aj=this.hi=this.Ql=this.bs=this.Bp=this.Pb=this.Ap=this.gi=this.Li=this.UF=this.gn= +function ZM(){this.mh=this.fg=this.Og=this.Ng=null;this.Pg=!1;this.h=0;this.H=null;this.gf=this.lh=0;this.LL=this.KL=this.Hk=this.Ji=this.Xm=this.uy=null;QH(this);$M=this;this.uy=new Z(this,this.h,"complex");this.Xm=new Z(this,this.h,"float");this.Ji=new Z(this,this.h,"int");this.Hk=new Z(this,this.h,"none");this.KL=new Z(this,this.h,"bytearray");this.LL=new Z(this,this.h,"\x3c???\x3e")}ZM.prototype=new TH;ZM.prototype.constructor=ZM; +ZM.prototype.cf=function(a){return X().Ib===a?this.Ji:X().kd===a?this.Xm:X().Qk===a?this.Hk:X().Uf===a?this.uy:this.LL};E(ZM,"tigerpython.parser.ast.ValueType$",{lV:1,fk:1,g:1});var $M;function Ts(){$M||($M=new ZM);return $M} +function aN(){this.mh=this.fg=this.Og=this.Ng=null;this.Pg=!1;this.h=0;this.H=null;this.gf=this.lh=0;this.oq=this.nq=this.dG=this.mq=this.hs=this.gs=this.cq=this.Nk=this.bq=this.$B=this.lq=this.kq=this.bG=this.Bn=this.jq=this.iq=this.hq=this.gq=this.fq=this.eq=this.dq=this.Wl=this.aq=this.$p=this.Mk=this.Ej=this.ZB=this.YB=this.An=this.XB=this.ii=this.ZF=this.YF=this.Dj=this.zn=this.Zp=this.Yp=this.NL=this.Li=this.Xp=this.Wp=this.Vp=this.Up=this.fs=this.es=this.yn=this.ds=this.Tp=this.Lk=this.Sp= +this.xn=this.XF=this.Rd=this.wn=this.Rp=this.Cj=this.Qp=this.Pc=this.Kk=this.Sf=this.Vl=this.vn=this.Bj=this.WB=this.un=this.Pp=this.Vu=this.Op=this.Ul=this.Ee=this.tn=this.Np=this.Mp=this.Jk=this.Lp=this.sn=this.Kp=this.Jp=this.rn=this.qn=this.pn=this.Ip=this.Hp=this.on=this.WF=this.Gp=this.Ik=this.nn=this.mn=this.wy=this.ln=this.cs=this.kn=this.Fp=this.Ep=this.VF=this.Tl=this.jn=this.Dp=this.Cp=this.Sl=this.Rl=this.Aj=this.hi=this.Ql=this.bs=this.Bp=this.Pb=this.Ap=this.gi=this.zj=this.UF=this.gn= this.hn=this.zp=this.TF=this.yp=this.fn=this.xp=this.wp=this.vp=this.dn=this.en=this.RF=this.cn=this.up=this.tp=this.bn=this.Ki=this.an=this.sp=this.UB=this.Rf=this.rp=this.$m=this.ML=this.qp=this.pp=this.op=this.np=this.Zm=this.Pl=this.mp=this.as=this.Ym=this.cG=this.aG=this.VB=this.SF=this.$F=null;QH(this);bN=this;this.$F=new Z(this,this.h,"UNKNOWN");this.SF=new Z(this,this.h,"DOUBLE_WALRUS");this.VB=new Z(this,this.h,"INVALID_EXPR_ASSIGN_TARGET");this.aG=new Z(this,this.h,"USE_DOT_NOT_COMMA"); this.cG=new Z(this,this.h,"WALRUS_AS_STATEMENT");this.Ym=new Z(this,this.h,"AND_CONNECTS_CMP_NOT_VARS");this.as=new Z(this,this.h,"ARG_AFTER_VARARGS");this.mp=new Z(this,this.h,"AS_NOT_ALLOWED_HERE");this.Pl=new Z(this,this.h,"ASSIGNMENT_TO_RIGHT");this.Zm=new Z(this,this.h,"BREAK_OUTSIDE_LOOP");this.np=new Z(this,this.h,"CALL_NEEDS_PARENTHESES");this.op=new Z(this,this.h,"CANNOT_APPLY_ASYNC");this.pp=new Z(this,this.h,"CANNOT_ASSIGN_TO_CALL");this.qp=new Z(this,this.h,"CANNOT_ASSIGN_TO_FUNCTION"); this.ML=new Z(this,this.h,"CANNOT_CALL_VALUE");this.$m=new Z(this,this.h,"CANNOT_REDEFINE_NAME");this.rp=new Z(this,this.h,"CANNOT_TEST_TUPLE");this.Rf=new Z(this,this.h,"CANNOT_USE_KEYWORD_AS_NAME");this.UB=new Z(this,this.h,"CASE_REQUIRED");this.sp=new Z(this,this.h,"CLASS_METHOD_WITHOUT_SELF");this.an=new Z(this,this.h,"COLON_EXPECTED");this.Ki=new Z(this,this.h,"CONDITION_CANNOT_BE_FULFILLED");this.bn=new Z(this,this.h,"CONDITION_ALWAYS_FULFILLED");this.tp=new Z(this,this.h,"DECORATOR_NAME_CLASH"); this.up=new Z(this,this.h,"DECORATOR_NEEDS_CALLABLE");this.cn=new Z(this,this.h,"DEFINITION_INSIDE_LOOP");this.RF=new Z(this,this.h,"DOUBLE_CALL");this.en=new Z(this,this.h,"DOUBLE_EQUAL_SIGN_EXPECTED");this.dn=new Z(this,this.h,"DOUBLE_ELSE");this.vp=new Z(this,this.h,"DOUBLE_PARAMETER_NAMES");this.wp=new Z(this,this.h,"ELSE_MUST_BE_INDENTED");this.xp=new Z(this,this.h,"ELSE_WITH_COMPARISON");this.fn=new Z(this,this.h,"ELSE_WITHOUT_IF");this.yp=new Z(this,this.h,"EMPTY_SUBSCRIPT");this.TF=new Z(this, -this.h,"EXTRA_BRACKETS");this.zp=new Z(this,this.h,"EXTRA_INDENTATION");this.hn=new Z(this,this.h,"EXTRA_LINEBREAK");this.gn=new Z(this,this.h,"EXTRA_LEFT_BRACKET");this.UF=new Z(this,this.h,"EXTRA_LINE_NUMBER");this.Li=new Z(this,this.h,"EXTRA_RIGHT_BRACKET");this.gi=new Z(this,this.h,"EXTRA_SPACE");this.Ap=new Z(this,this.h,"EXTRA_SPACE_OR_MISSING_COMMA");this.Pb=new Z(this,this.h,"EXTRA_TOKEN");this.Bp=new Z(this,this.h,"FOREIGN_KEYWORD");this.bs=new Z(this,this.h,"FOREIGN_PRIVATE");this.Ql=new Z(this, +this.h,"EXTRA_BRACKETS");this.zp=new Z(this,this.h,"EXTRA_INDENTATION");this.hn=new Z(this,this.h,"EXTRA_LINEBREAK");this.gn=new Z(this,this.h,"EXTRA_LEFT_BRACKET");this.UF=new Z(this,this.h,"EXTRA_LINE_NUMBER");this.zj=new Z(this,this.h,"EXTRA_RIGHT_BRACKET");this.gi=new Z(this,this.h,"EXTRA_SPACE");this.Ap=new Z(this,this.h,"EXTRA_SPACE_OR_MISSING_COMMA");this.Pb=new Z(this,this.h,"EXTRA_TOKEN");this.Bp=new Z(this,this.h,"FOREIGN_KEYWORD");this.bs=new Z(this,this.h,"FOREIGN_PRIVATE");this.Ql=new Z(this, this.h,"FOREIGN_STATEMENT");this.hi=new Z(this,this.h,"FOREIGN_SYNTAX");this.Aj=new Z(this,this.h,"FOREIGN_TOKEN");this.Rl=new Z(this,this.h,"FOREIGN_VAR");this.Sl=new Z(this,this.h,"FOR_TARGET_NAME_REQUIRED");this.Cp=new Z(this,this.h,"FUTURE_MUST_BE_FIRST");this.Dp=new Z(this,this.h,"GENERATOR_CANNOT_RETURN_VALUE");this.jn=new Z(this,this.h,"GLOBAL_MUST_BE_FIRST");this.Tl=new Z(this,this.h,"GLOBAL_OUTSIDE_FUNCTION");this.VF=new Z(this,this.h,"GLOBAL_WITH_ASSIGNMENT");this.Ep=new Z(this,this.h,"IMPORT_INSIDE_LOOP"); -this.Fp=new Z(this,this.h,"INCOMPLETE_IMPORT");this.kn=new Z(this,this.h,"INCONSISTENT_INDENTATION");this.cs=new Z(this,this.h,"INCONSISTENT_RETURNS");this.ln=new Z(this,this.h,"INDENTED_ELSE");this.vy=new Z(this,this.h,"INDENTED_HEADER");this.mn=new Z(this,this.h,"INFINITE_LOOP");this.nn=new Z(this,this.h,"INITIALIZATION_INSIDE_LOOP");this.Ik=new Z(this,this.h,"INVALID_ASSIGNMENT");this.Gp=new Z(this,this.h,"INVALID_AUGASSIGN_TARGET");this.WF=new Z(this,this.h,"INVALID_CONDITION");this.on=new Z(this, +this.Fp=new Z(this,this.h,"INCOMPLETE_IMPORT");this.kn=new Z(this,this.h,"INCONSISTENT_INDENTATION");this.cs=new Z(this,this.h,"INCONSISTENT_RETURNS");this.ln=new Z(this,this.h,"INDENTED_ELSE");this.wy=new Z(this,this.h,"INDENTED_HEADER");this.mn=new Z(this,this.h,"INFINITE_LOOP");this.nn=new Z(this,this.h,"INITIALIZATION_INSIDE_LOOP");this.Ik=new Z(this,this.h,"INVALID_ASSIGNMENT");this.Gp=new Z(this,this.h,"INVALID_AUGASSIGN_TARGET");this.WF=new Z(this,this.h,"INVALID_CONDITION");this.on=new Z(this, this.h,"INVALID_FUNCTION_DEF");this.Hp=new Z(this,this.h,"INVALID_FUNCTION_DEF_ASSIGN");this.Ip=new Z(this,this.h,"INVALID_GENERATOR_ARG");this.pn=new Z(this,this.h,"INVALID_INPUT_CHARACTER");this.qn=new Z(this,this.h,"INVALID_KEY_VALUE_PAIR");this.rn=new Z(this,this.h,"INVALID_NAME");this.Jp=new Z(this,this.h,"INVALID_STRING_PREFIX");this.Kp=new Z(this,this.h,"INVALID_TOKEN_AT_START_OF_LINE");this.sn=new Z(this,this.h,"METHOD_WITHOUT_SELF");this.Lp=new Z(this,this.h,"MISMATCHED_CLOSING_BRACKET"); -this.Jk=new Z(this,this.h,"MISPLACED_ASSIGN");this.Mp=new Z(this,this.h,"MISSING_ASSIGNMENT");this.Np=new Z(this,this.h,"MISSING_ASSIGNMENT_SOURCE");this.tn=new Z(this,this.h,"MISSING_BODY");this.Ee=new Z(this,this.h,"MISSING_COMMA");this.Ul=new Z(this,this.h,"MISSING_COMPARISON");this.Op=new Z(this,this.h,"MISSING_DOT");this.wy=new Z(this,this.h,"MISSING_EXPRESSION");this.Pp=new Z(this,this.h,"MISSING_LEFT_BRACKET");this.un=new Z(this,this.h,"MISSING_LEFT_PARENTHESIS");this.WB=new Z(this,this.h, +this.Jk=new Z(this,this.h,"MISPLACED_ASSIGN");this.Mp=new Z(this,this.h,"MISSING_ASSIGNMENT");this.Np=new Z(this,this.h,"MISSING_ASSIGNMENT_SOURCE");this.tn=new Z(this,this.h,"MISSING_BODY");this.Ee=new Z(this,this.h,"MISSING_COMMA");this.Ul=new Z(this,this.h,"MISSING_COMPARISON");this.Op=new Z(this,this.h,"MISSING_DOT");this.Vu=new Z(this,this.h,"MISSING_EXPRESSION");this.Pp=new Z(this,this.h,"MISSING_LEFT_BRACKET");this.un=new Z(this,this.h,"MISSING_LEFT_PARENTHESIS");this.WB=new Z(this,this.h, "MISSING_LINE_BREAK");this.Bj=new Z(this,this.h,"MISSING_OPERATOR_OR_COMMA");this.vn=new Z(this,this.h,"MISSING_PARENTHESES");this.Vl=new Z(this,this.h,"MISSING_RIGHT_BRACKET");this.Sf=new Z(this,this.h,"MISSING_SPACE");this.Kk=new Z(this,this.h,"MISSING_TOKEN");this.Pc=new Z(this,this.h,"MISSPELLED_KEYWORD");this.Qp=new Z(this,this.h,"MISSPELLED_NUMBER");this.Cj=new Z(this,this.h,"MISSPELLED_OPERATOR");this.Rp=new Z(this,this.h,"MULTIPLE_VAR_ARGS");this.wn=new Z(this,this.h,"MULTIPLE_VAR_PARAMS"); this.Rd=new Z(this,this.h,"NAME_EXPECTED");this.XF=new Z(this,this.h,"NESTED_FUNCTIONS");this.xn=new Z(this,this.h,"NO_END_NEEDED");this.Sp=new Z(this,this.h,"NO_PARAM_DEFAULT_ALLOWED");this.Lk=new Z(this,this.h,"NO_VIABLE_ALTERNATIVE");this.Tp=new Z(this,this.h,"NUMBER_NOT_SUBSCRIPTABLE");this.ds=new Z(this,this.h,"PARAM_AFTER_KW");this.yn=new Z(this,this.h,"PARAMS_REQUIRED");this.es=new Z(this,this.h,"POS_ARG_AFTER_KEYWORD");this.fs=new Z(this,this.h,"POS_PARAM_AFTER_KEYWORD");this.Up=new Z(this, -this.h,"PRINT_DEST_EXPECTED");this.Vp=new Z(this,this.h,"PRINT_IS_STATEMENT");this.Wp=new Z(this,this.h,"PRINT_NEEDS_PARENTHESES");this.Xp=new Z(this,this.h,"PYTHON_2_FEATURE_NOT_AVAILABLE");this.Mi=new Z(this,this.h,"PYTHON_3_FEATURE_NOT_AVAILABLE");this.NL=new Z(this,this.h,"REPEAT_NOT_ENABLED");this.Yp=new Z(this,this.h,"RETURN_OUTSIDE_FUNCTION");this.Zp=new Z(this,this.h,"SINGLE_EQUAL_SIGN_EXPECTED");this.zn=new Z(this,this.h,"SUPERFLUOUS_COMPARISON");this.Dj=new Z(this,this.h,"SWAPPED_TOKENS"); +this.h,"PRINT_DEST_EXPECTED");this.Vp=new Z(this,this.h,"PRINT_IS_STATEMENT");this.Wp=new Z(this,this.h,"PRINT_NEEDS_PARENTHESES");this.Xp=new Z(this,this.h,"PYTHON_2_FEATURE_NOT_AVAILABLE");this.Li=new Z(this,this.h,"PYTHON_3_FEATURE_NOT_AVAILABLE");this.NL=new Z(this,this.h,"REPEAT_NOT_ENABLED");this.Yp=new Z(this,this.h,"RETURN_OUTSIDE_FUNCTION");this.Zp=new Z(this,this.h,"SINGLE_EQUAL_SIGN_EXPECTED");this.zn=new Z(this,this.h,"SUPERFLUOUS_COMPARISON");this.Dj=new Z(this,this.h,"SWAPPED_TOKENS"); this.YF=new Z(this,this.h,"THIS_IS_NOT_PIP");this.ZF=new Z(this,this.h,"THIS_IS_NOT_REPL");this.ii=new Z(this,this.h,"TOKEN_REQUIRED");this.XB=new Z(this,this.h,"TRY_INCOMPLETE_STRUCTURE");this.An=new Z(this,this.h,"TUPLE_NEEDS_PARENS");this.YB=new Z(this,this.h,"TWO_STATEMENTS");this.ZB=new Z(this,this.h,"TYPO");this.Ej=new Z(this,this.h,"UNEXPECTED_END_OF_INPUT");this.Mk=new Z(this,this.h,"UNEXPECTED_KEYWORD");this.$p=new Z(this,this.h,"UNMATCHED_BRACKET");this.aq=new Z(this,this.h,"UNREACHABLE_CODE"); this.Wl=new Z(this,this.h,"UNTERMINATED_STRING");this.dq=new Z(this,this.h,"USE_AND_NOT_COMMA");this.eq=new Z(this,this.h,"BREAK_INSTEAD_OF_RETURN");this.fq=new Z(this,this.h,"USE_COMMA_NOT_AND");this.gq=new Z(this,this.h,"USE_ELIF_INSTEAD_OF_ELSE");this.hq=new Z(this,this.h,"USE_ELIF_INSTEAD_OF_ELSE_IF");this.iq=new Z(this,this.h,"USE_EQ_INSTEAD_OF_NEQ");this.jq=new Z(this,this.h,"USE_MOD_NOT_DIV");this.Bn=new Z(this,this.h,"USE_NOT_INSTEAD_OF_FALSE");this.bG=new Z(this,this.h,"USE_PYTHON_POWER"); this.kq=new Z(this,this.h,"USE_REPEAT_INSTEAD_OF_WHILE");this.lq=new Z(this,this.h,"RETURN_INSTEAD_OF_BREAK");this.$B=new Z(this,this.h,"USE_SEMICOLON_INSTEAD_OF_COMMA");this.bq=new Z(this,this.h,"USELESS_COMPUTATION");this.Nk=new Z(this,this.h,"USELESS_STATEMENT");this.cq=new Z(this,this.h,"USELESS_STMT_USE_AUG_ASSIGN");this.gs=new Z(this,this.h,"VARARG_AFTER_KEYWORD_ARG");this.hs=new Z(this,this.h,"VARARG_NOT_ALLOWED");this.mq=new Z(this,this.h,"WRONG_BRACKET");this.dG=new Z(this,this.h,"WRONG_STRING_DELIMITER"); @@ -1397,61 +1397,61 @@ this.qq=new Z(this,this.h,a);this.Fc=new (F(eN).c)(128);for(a=0;;){var b=a;Mq(). this.Fc.a[10]=this.ks;this.Fc.a[13]=this.ks;this.Fc.a[32]=this.qq;this.Fc.a[95]=this.Cn;this.Fc.a[44]=this.zy;this.Fc.a[59]=this.zy;this.Fc.a[40]=this.pq;this.Fc.a[41]=this.pq;this.Fc.a[91]=this.pq;this.Fc.a[93]=this.pq;this.Fc.a[123]=this.pq;this.Fc.a[125]=this.pq;this.Fc.a[39]=this.By;this.Fc.a[34]=this.By;this.Fc.a[43]=this.tg;this.Fc.a[45]=this.tg;this.Fc.a[42]=this.tg;this.Fc.a[47]=this.tg;this.Fc.a[46]=this.bC}cN.prototype=new TH;cN.prototype.constructor=cN; cN.prototype.si=function(a){return 0<=a&&a{k=uz(vz(),k,a.XG);Dp(b,k.PM,k)},e=c.a.length,f=0;if(null!==c)for(;fH(new J,d.Ca(),d)));this.zc=b.Zf(c);a.Ha(new Nh(()=>{}))};g.gc=function(){Qm();var a=R();return Rm(0,a)};g.ot=function(){return this.zc};g.fh=function(){return!0};g.Wg=function(){};g.j=function(){return this.Bq+"_type"}; E(iA,"tigerpython.parser.types.PrimitiveType",{Cz:1,Es:1,He:1}); var Ny=function nN(a,b){this.SC=this.Cq=this.Fs=this.Dz=this.Gs=this.Xb=null;this.Gs=a;this.Fs=new IA;this.Cq=new IA;this.SC=new IA;a=h=>{var k=h.gc();lz(this.Fs.xg,k);k=h.ot();lz(this.Cq.xg,k);k=h.vA();lz(this.SC.xg,k);null!==this.Dz&&h instanceof nN&&(this.Dz=h.Dz)};var d=b.a.length,e=0;if(null!==b)for(;enull!==c))).Ha(new Nh(c=>{if(null!==c)$J(this,c.Ia(),c.la());else throw new G(c);}))}sB.prototype=new ZJ;sB.prototype.constructor=sB;E(sB,"tigerpython.utilities.completer.DataTypeFilter",{qX:1,dH:1,Fz:1}); -function tB(a){this.Ks=this.jm=null;this.zv=this.Js=!1;XJ(this);null!==a?(TE(a),a=Rm(Qm(),xp().eg()),Wz(new Xz(a,new Nh(b=>null!==b))).Ha(new Nh(b=>{if(null!==b)$J(this,b.Ia(),b.la());else throw new G(b);}))):Wz(new Xz(xp().eg(),new Nh(b=>null!==b))).Ha(new Nh(b=>{if(null!==b)$J(this,b.Ia(),b.la());else throw new G(b);}))}tB.prototype=new ZJ;tB.prototype.constructor=tB;E(tB,"tigerpython.utilities.completer.ImportFilter",{rX:1,dH:1,Fz:1}); -function rB(a,b){this.Ks=this.jm=null;this.zv=this.Js=!1;XJ(this);Wz(new Xz(b.gc(),new Nh(c=>null!==c))).Ha(new Nh(c=>{if(null!==c)$J(this,c.Ia(),c.la());else throw new G(c);}))}rB.prototype=new ZJ;rB.prototype.constructor=rB;E(rB,"tigerpython.utilities.completer.ImportFromFilter",{sX:1,dH:1,Fz:1}); -function uB(a){this.Ks=this.jm=null;this.zv=this.Js=!1;XJ(this);Wz(new Xz(dE().Ev,new Nh(b=>null!==b))).Ha(new Nh(b=>{if(null!==b)$J(this,b.Ia(),b.la());else throw new G(b);}));null!==a&&Wz(new Xz(qF(a),new Nh(b=>null!==b))).Ha(new Nh(b=>{if(null!==b){var c=b.Ia();b=b.la();$J(this,c,b);b instanceof iE&&Wz(new Xz(b.gc(),new Nh(d=>null!==d))).Ha(new Nh(d=>{if(null!==d){var e=d.Ia();d=d.la();$J(this,Vj(L(),"%s.%s",new Q([c,e])),d)}else throw new G(d);}))}else throw new G(b);}))}uB.prototype=new ZJ; -uB.prototype.constructor=uB;E(uB,"tigerpython.utilities.completer.ScopeFilter",{wX:1,dH:1,Fz:1});function NB(a){this.Av=null;var b=mo(),c=R();this.Av=no(b,c);a.Ha(new Nh(d=>{null===d||""===d||0<=d.length&&"_"===d.substring(0,1)||this.dt(d,null)}))}NB.prototype=new hK;NB.prototype.constructor=NB; -NB.prototype.dt=function(a,b){if(Nj(L(),a,95)){b=this.Av;var c=H(new J,a,a);oo(b,c);b=Tj(L(),a,95);c=h=>{this.dt(h,a)};var d=b.a.length,e=0;if(null!==b)for(;e{this.dt(h,a)},d=b.a.length,e=0,null!==b)for(;ek.la())).tf(new Xi(ja(l)));oN||(oN=new pN);return aj(si(0,a,oN))}return this.tA("")}; -NB.prototype.j=function(){var a=this.Av;mo();var b=new lx;for(a=rr(a).k();a.d();){var c=a.e().la();mx(b,c)}return Gj(b.yd.co(),"",", ","")};E(NB,"tigerpython.utilities.completer.StringArgumentFilter",{xX:1,aR:1,Fz:1});function MB(){}MB.prototype=new hK;MB.prototype.constructor=MB;E(MB,"tigerpython.utilities.completer.StringFileFilter",{zX:1,aR:1,Fz:1}); -function qN(){this.mh=this.fg=this.Og=this.Ng=null;this.Pg=!1;this.h=0;this.H=null;this.gf=this.lh=0;this.GN=this.FN=this.EN=this.DN=this.sH=this.rH=this.qH=this.CN=this.BN=this.AN=this.zN=this.yN=this.xN=this.wN=this.Tn=this.vN=this.uN=this.tN=this.sN=this.rN=this.qN=this.pN=this.pH=this.oH=this.oN=this.nN=this.mN=this.nH=this.lN=this.kN=this.jN=this.mH=this.iN=this.lH=this.hN=this.Cv=this.oi=this.kH=this.oD=this.iH=this.fN=this.gN=this.Us=this.jH=this.hH=null;QH(this);rN=this;this.hH=new Z(this, -this.h,"-\x3e");this.jH=new Z(this,this.h,"as");this.Us=new Z(this,this.h,"\x3d");this.gN=new Z(this,this.h,"@");this.fN=new Z(this,this.h,"async");this.iH=new Z(this,this.h,"async def");this.oD=new Z(this,this.h,"|");this.kH=new Z(this,this.h,"class");this.oi=new Z(this,this.h,":");this.Cv=new Z(this,this.h,",");this.hN=new Z(this,this.h,"\x3cdedent\x3e");this.lH=new Z(this,this.h,"def");this.iN=new Z(this,this.h,"del");this.mH=new Z(this,this.h,".");this.jN=new Z(this,this.h,"**");this.kN=new Z(this, +function aB(){this.mh=this.fg=this.Og=this.Ng=null;this.Pg=!1;this.h=0;this.H=null;this.gf=this.lh=0;this.wv=this.Hs=this.WM=null;QH(this);var a=null!==this.H&&this.H.d()?this.H.e():"SCOPE";this.WM=new Z(this,this.h,a);a=null!==this.H&&this.H.d()?this.H.e():"TYPE";new Z(this,this.h,a);a=null!==this.H&&this.H.d()?this.H.e():"IMPORT";this.Hs=new Z(this,this.h,a);a=null!==this.H&&this.H.d()?this.H.e():"IMPORT_FROM";this.wv=new Z(this,this.h,a)}aB.prototype=new TH;aB.prototype.constructor=aB; +E(aB,"tigerpython.utilities.completer.Completer$FilterType$",{oX:1,fk:1,g:1});function sB(a,b){this.Ks=this.jm=null;this.Av=this.Js=!1;XJ(this);this.Js=!(b instanceof iE);Wz(new Xz(b.gc(),new Nh(c=>null!==c))).Ha(new Nh(c=>{if(null!==c)$J(this,c.Ia(),c.la());else throw new G(c);}))}sB.prototype=new ZJ;sB.prototype.constructor=sB;E(sB,"tigerpython.utilities.completer.DataTypeFilter",{qX:1,dH:1,Fz:1}); +function tB(a){this.Ks=this.jm=null;this.Av=this.Js=!1;XJ(this);null!==a?(TE(a),a=Rm(Qm(),xp().eg()),Wz(new Xz(a,new Nh(b=>null!==b))).Ha(new Nh(b=>{if(null!==b)$J(this,b.Ia(),b.la());else throw new G(b);}))):Wz(new Xz(xp().eg(),new Nh(b=>null!==b))).Ha(new Nh(b=>{if(null!==b)$J(this,b.Ia(),b.la());else throw new G(b);}))}tB.prototype=new ZJ;tB.prototype.constructor=tB;E(tB,"tigerpython.utilities.completer.ImportFilter",{rX:1,dH:1,Fz:1}); +function rB(a,b){this.Ks=this.jm=null;this.Av=this.Js=!1;XJ(this);Wz(new Xz(b.gc(),new Nh(c=>null!==c))).Ha(new Nh(c=>{if(null!==c)$J(this,c.Ia(),c.la());else throw new G(c);}))}rB.prototype=new ZJ;rB.prototype.constructor=rB;E(rB,"tigerpython.utilities.completer.ImportFromFilter",{sX:1,dH:1,Fz:1}); +function uB(a){this.Ks=this.jm=null;this.Av=this.Js=!1;XJ(this);Wz(new Xz(dE().Fv,new Nh(b=>null!==b))).Ha(new Nh(b=>{if(null!==b)$J(this,b.Ia(),b.la());else throw new G(b);}));null!==a&&Wz(new Xz(qF(a),new Nh(b=>null!==b))).Ha(new Nh(b=>{if(null!==b){var c=b.Ia();b=b.la();$J(this,c,b);b instanceof iE&&Wz(new Xz(b.gc(),new Nh(d=>null!==d))).Ha(new Nh(d=>{if(null!==d){var e=d.Ia();d=d.la();$J(this,Vj(L(),"%s.%s",new Q([c,e])),d)}else throw new G(d);}))}else throw new G(b);}))}uB.prototype=new ZJ; +uB.prototype.constructor=uB;E(uB,"tigerpython.utilities.completer.ScopeFilter",{wX:1,dH:1,Fz:1});function NB(a){this.Bv=null;var b=mo(),c=R();this.Bv=no(b,c);a.Ha(new Nh(d=>{null===d||""===d||0<=d.length&&"_"===d.substring(0,1)||this.dt(d,null)}))}NB.prototype=new hK;NB.prototype.constructor=NB; +NB.prototype.dt=function(a,b){if(Nj(L(),a,95)){b=this.Bv;var c=H(new J,a,a);oo(b,c);b=Tj(L(),a,95);c=h=>{this.dt(h,a)};var d=b.a.length,e=0;if(null!==b)for(;e{this.dt(h,a)},d=b.a.length,e=0,null!==b)for(;ek.la())).tf(new Xi(ja(l)));oN||(oN=new pN);return aj(si(0,a,oN))}return this.tA("")}; +NB.prototype.j=function(){var a=this.Bv;mo();var b=new lx;for(a=rr(a).k();a.d();){var c=a.e().la();mx(b,c)}return Gj(b.yd.co(),"",", ","")};E(NB,"tigerpython.utilities.completer.StringArgumentFilter",{xX:1,aR:1,Fz:1});function MB(){}MB.prototype=new hK;MB.prototype.constructor=MB;E(MB,"tigerpython.utilities.completer.StringFileFilter",{zX:1,aR:1,Fz:1}); +function qN(){this.mh=this.fg=this.Og=this.Ng=null;this.Pg=!1;this.h=0;this.H=null;this.gf=this.lh=0;this.GN=this.FN=this.EN=this.DN=this.sH=this.rH=this.qH=this.CN=this.BN=this.AN=this.zN=this.yN=this.xN=this.wN=this.Tn=this.vN=this.uN=this.tN=this.sN=this.rN=this.qN=this.pN=this.pH=this.oH=this.oN=this.nN=this.mN=this.nH=this.lN=this.kN=this.jN=this.mH=this.iN=this.lH=this.hN=this.Dv=this.oi=this.kH=this.oD=this.iH=this.fN=this.gN=this.Us=this.jH=this.hH=null;QH(this);rN=this;this.hH=new Z(this, +this.h,"-\x3e");this.jH=new Z(this,this.h,"as");this.Us=new Z(this,this.h,"\x3d");this.gN=new Z(this,this.h,"@");this.fN=new Z(this,this.h,"async");this.iH=new Z(this,this.h,"async def");this.oD=new Z(this,this.h,"|");this.kH=new Z(this,this.h,"class");this.oi=new Z(this,this.h,":");this.Dv=new Z(this,this.h,",");this.hN=new Z(this,this.h,"\x3cdedent\x3e");this.lH=new Z(this,this.h,"def");this.iN=new Z(this,this.h,"del");this.mH=new Z(this,this.h,".");this.jN=new Z(this,this.h,"**");this.kN=new Z(this, this.h,"elif");this.lN=new Z(this,this.h,"...");this.nH=new Z(this,this.h,"else");new Z(this,this.h,"except");new Z(this,this.h,"finally");this.mN=new Z(this,this.h,"for");this.nN=new Z(this,this.h,"from");this.oN=new Z(this,this.h,"\x3cfstring\x3e");this.oH=new Z(this,this.h,"if");this.pH=new Z(this,this.h,"import");this.pN=new Z(this,this.h,"\x3cindent\x3e");this.qN=new Z(this,this.h,"\x3ckeyword\x3e");this.rN=new Z(this,this.h,"lambda");this.sN=new Z(this,this.h,"{");this.tN=new Z(this,this.h, "[");this.uN=new Z(this,this.h,"(");this.vN=new Z(this,this.h,"\x3cname\x3e");this.Tn=new Z(this,this.h,"\x3cnewline\x3e");this.wN=new Z(this,this.h,"\x3cnumber\x3e");this.xN=new Z(this,this.h,"\x3coperator\x3e");this.yN=new Z(this,this.h,"pass");this.zN=new Z(this,this.h,"return");this.AN=new Z(this,this.h,"}");this.BN=new Z(this,this.h,"]");this.CN=new Z(this,this.h,")");this.qH=new Z(this,this.h,";");this.rH=new Z(this,this.h,"/");this.sH=new Z(this,this.h,"*");this.DN=new Z(this,this.h,"\x3cstring\x3e"); this.EN=new Z(this,this.h,"\x3csymbol\x3e");new Z(this,this.h,"try");this.FN=new Z(this,this.h,"\x3cvalue\x3e");this.GN=new Z(this,this.h,"yield")}qN.prototype=new TH;qN.prototype.constructor=qN; -function sN(a,b){switch(b){case 123:return a.sN;case 91:return a.tN;case 40:return a.uN;case 125:return a.AN;case 93:return a.BN;case 41:return a.CN;case 64:return a.gN;case 61:return a.Us;case 124:return a.oD;case 58:return a.oi;case 44:return a.Cv;case 46:return a.mH;case 59:return a.qH;case 47:return a.rH;case 42:return a.sH;case 10:return a.Tn;default:return a.EN}}E(qN,"tigerpython.utilities.fastparse.TokenType$",{GY:1,fk:1,g:1});var rN;function zC(){rN||(rN=new qN);return rN} +function sN(a,b){switch(b){case 123:return a.sN;case 91:return a.tN;case 40:return a.uN;case 125:return a.AN;case 93:return a.BN;case 41:return a.CN;case 64:return a.gN;case 61:return a.Us;case 124:return a.oD;case 58:return a.oi;case 44:return a.Dv;case 46:return a.mH;case 59:return a.qH;case 47:return a.rH;case 42:return a.sH;case 10:return a.Tn;default:return a.EN}}E(qN,"tigerpython.utilities.fastparse.TokenType$",{GY:1,fk:1,g:1});var rN;function zC(){rN||(rN=new qN);return rN} function lB(a,b,c){this.yH=this.Fb=null;this.Xn=a;this.xH=b;this.hR=c}lB.prototype=new oK;lB.prototype.constructor=lB;g=lB.prototype;g.Ca=function(){return this.Xn};g.qm=function(){return null!==this.yH?this.yH.qm()+"."+this.Xn:this.Xn};g.xO=function(){return this.xH};g.eo=function(){return Gj(mn(nj(),this.xH),"",", ","")};g.Mq=function(){return this.hR};g.wA=function(){uK||(uK=new rK);return sK(this.xH)};g.j=function(){return Vj(L(),"%s(%s)",new Q([this.Xn,this.eo()]))}; E(lB,"tigerpython.utilities.types.BuiltinFunction",{bZ:1,eO:1,Vd:1}); function tN(a){if(!a.NH){var b=wq().Ba(R()),c=a.QH,d=k=>{k=UE(VE(),k,a.PH);Dp(b,k.fO,k)},e=c.a.length,f=0;if(null!==c)for(;fH(new J,d.Ca(),d)));this.fc=b.Zf(c);a.Ha(new Nh(d=>{d instanceof lB&&(d.yH=this)}))};g.gc=function(){Qm();var a=R();return Rm(0,a)};g.ot=function(){return this.fc};g.fh=function(){return!0};g.gd=function(){};g.j=function(){return this.$k+"_type"};E(Jp,"tigerpython.utilities.types.PrimitiveType",{Vs:1,Zn:1,Vd:1}); var fD=function xN(a,b){this.HD=this.Gq=this.Ws=this.SH=this.ao=this.qi=this.Fb=null;this.qi=a;this.Ws=new TF;this.Gq=new TF;this.HD=new TF;a=h=>{var k=this.Ws,m=h.gc();lz(k.re,m);k=this.Gq;m=h.ot();lz(k.re,m);k=this.HD;m=h.vA();lz(k.re,m);null!==this.ao&&h instanceof xN&&(this.ao=h.ao)};var d=b.a.length,e=0;if(null!==b)for(;e"boolean"===typeof a),za=E(0,"java.lang.Character",{YZ:1,g:1,bk:1,go:1},a=>a instanceof da);function yN(a){var b=new zN;uk(b,a,!0);return b}class zN extends wK{}E(zN,"java.lang.RuntimeException",{Vc:1,tc:1,Bb:1,g:1});function AN(a){a.P="";return a}function Rj(a,b){AN(a);if(0>b)throw new Pf;return a}function Sj(){this.P=null}Sj.prototype=new q;Sj.prototype.constructor=Sj;function BN(a,b){b=fn(Xj(),b,b.a.length);a.P=""+a.P+b}Sj.prototype.j=function(){return this.P}; Sj.prototype.i=function(){return this.P.length};Sj.prototype.mA=function(a){return this.P.charCodeAt(a)};Sj.prototype.AQ=function(a,b){return this.P.substring(a,b)};E(Sj,"java.lang.StringBuilder",{w_:1,zO:1,RZ:1,g:1});class CN extends vK{}function FG(a){a.qB=-2;a.yr=0}function Ee(a,b){var c=new EG;FG(c);c.ob=a;c.eb=1;c.Ua=new y(new Int32Array([b]));return c}function le(a,b,c){var d=new EG;FG(d);d.ob=a;d.eb=b;d.Ua=c;return d} function yH(a,b){var c=new EG;FG(c);c.ob=a;a=b.m;0===a?(c.eb=1,c.Ua=new y(new Int32Array([b.l]))):(c.eb=2,c.Ua=new y(new Int32Array([b.l,a])));return c}function EG(){this.Ua=null;this.yr=this.qB=this.ob=this.eb=0}EG.prototype=new TG;EG.prototype.constructor=EG;function HG(a,b){return a.ob>b.ob?1:a.obb.eb?a.ob:a.ebb)throw new ob("Negative exponent");if(0===b)return ke().Sw;if(1===b||a.b(ke().Sw)||a.b(ke().xr))return a;if(DN(a,0)){Me();for(var c=ke().Sw,d=a;1>=1;c=a}return Ve(c,d)}for(d=1;!DN(a,d);)d=1+d|0;c=ke();e=Math.imul(d,b);if(e>5;e&= +function GG(a,b){if(0>b)throw new ob("Negative exponent");if(0===b)return ke().Tw;if(1===b||a.b(ke().Tw)||a.b(ke().xr))return a;if(DN(a,0)){Me();for(var c=ke().Tw,d=a;1>=1;c=a}return Ve(c,d)}for(d=1;!DN(a,d);)d=1+d|0;c=ke();e=Math.imul(d,b);if(e>5;e&= 31;var f=new y(1+c|0);f.a[c]=1<>5;if(0===b)return 0!==(1&a.Ua.a[0]);if(0>b)throw new ob("Negative bit address");if(c>=a.eb)return 0>a.ob;if(0>a.ob&&ca.ob&&(d=oH(a)===c?-d|0:~d);return 0!==(d&1<<(31&b))}EG.prototype.j=function(){return ue(this)}; -function me(a){for(;;){if(0=a?rb(a):-2):-1}function HN(a){return(0!==(1&a)?"-":"")+(0!==(2&a)?"#":"")+(0!==(4&a)?"+":"")+(0!==(8&a)?" ":"")+(0!==(16&a)?"0":"")+(0!==(32&a)?",":"")+(0!==(64&a)?"(":"")+(0!==(128&a)?"\x3c":"")} function sH(a,b,c){var d=hg(a,1+b|0);a=d.Rq?"-":"";var e=d.Sq,f=-1+e.length|0,h=b-f|0;b=e.substring(0,1);e=""+e.substring(1)+dg(eg(),h);d=f-d.ho|0;f=""+(0>d?-d|0:d);return a+(""!==e||c?b+"."+e:b)+"e"+(0>d?"-":"+")+(1===f.length?"0"+f:f)} function tH(a,b,c){var d=fg(a,(a.Sq.length+b|0)-a.ho|0);eg();if(!(d.aE()||d.ho<=b))throw new ig("roundAtPos returned a non-zero value with a scale too large");d=d.aE()||d.ho===b?d:new gg(a.Rq,""+d.Sq+dg(eg(),b-d.ho|0),b);a=d.Rq?"-":"";d=d.Sq;var e=d.length,f=1+b|0;d=e>=f?d:""+dg(eg(),f-e|0)+d;e=d.length-b|0;a+=d.substring(0,e);return 0!==b||c?a+"."+d.substring(e):a}function kH(a,b,c,d,e,f){b=0>e||e>=f.length?f:f.substring(0,e);b=0!==(256&c)?b.toUpperCase():b;hH(a,c,d,b)} @@ -1464,53 +1464,53 @@ RN.prototype.constructor=RN;RN.prototype.ha=function(a,b){a|=0;b|=0;return a===b TN.prototype.wl=function(a,b,c){c=Va(c);a.a[b]=new n(c.l,c.m)};TN.prototype.eh=function(a,b){return a.a[b]};E(TN,"java.util.internal.GenericArrayOps$LongArrayOps$",{c0:1,JA:1,cE:1,Ie:1});var UN;function jf(){UN||(UN=new TN);return UN}function VN(){}VN.prototype=new q;VN.prototype.constructor=VN;VN.prototype.ha=function(a,b){return(a|0)-(b|0)|0};VN.prototype.wl=function(a,b,c){a.a[b]=c|0};VN.prototype.eh=function(a,b){return a.a[b]}; E(VN,"java.util.internal.GenericArrayOps$ShortArrayOps$",{e0:1,JA:1,cE:1,Ie:1});var WN;function rf(){WN||(WN=new VN);return WN}function XN(){this.II=null}XN.prototype=new q;XN.prototype.constructor=XN;function YN(){}YN.prototype=XN.prototype;XN.prototype.WD=function(a){return this.khnO().AP)}lO.prototype=new WK;lO.prototype.constructor=lO; +Lp.prototype.$b=function(){var a=this.gP.hP;var b=$N();var c=this.HI.ai,d=c.a.length;b=0===d?b.xw:1===d?new aO(c.a[0]):2===d?bO(0,c.a[0],c.a[1]):new cO(Uf($f(),c,d));return new dO(a,b)};Lp.prototype.Ma=function(a){eO(this.HI,a.kh-this.gP.hP.gf|0);return this};E(Lp,"scala.Enumeration$ValueSet$$anon$1",{u0:1,Oe:1,xd:1,wd:1});function Jh(){}Jh.prototype=new q;Jh.prototype.constructor=Jh;Jh.prototype.ri=function(a){this.VD(a)};Jh.prototype.j=function(){return"\x3cfunction1\x3e"}; +Jh.prototype.VD=function(a){throw new G(a);};Jh.prototype.y=function(a){this.VD(a)};E(Jh,"scala.PartialFunction$$anon$1",{B0:1,db:1,Ea:1,g:1});function fO(){}fO.prototype=new q;fO.prototype.constructor=fO;function gO(){}g=gO.prototype=fO.prototype;g.k=function(){return this};g.bl=function(){return new hO(this)};g.ti=function(a){return MK(this,a)};g.Wd=function(a){return this.Rw(a,-1)};g.Rw=function(a,b){return OK(this,a,b)};g.j=function(){return"\x3citerator\x3e"}; +g.Oh=function(a){return yj(this,a)};g.ma=function(a,b,c){return Aj(this,a,b,c)};g.Eg=function(a,b,c,d){return Ij(this,a,b,c,d)};g.tf=function(a){return Jj(this,a)};g.U=function(){return-1};function iO(){this.dj=null;this.dj=jO()}iO.prototype=new DK;iO.prototype.constructor=iO;E(iO,"scala.collection.Iterable$",{f2:1,uE:1,Hd:1,g:1});var kO;function lO(){this.BP=this.AP=this.Dt=null;UK(this);mO=this;this.AP=Cb();this.BP=new sp(()=>nO().AP)}lO.prototype=new WK;lO.prototype.constructor=lO; E(lO,"scala.collection.Map$",{t2:1,rS:1,BE:1,g:1});var mO;function nO(){mO||(mO=new lO);return mO}function Xz(a,b){this.WI=a;this.vP=b}Xz.prototype=new IK;Xz.prototype.constructor=Xz;E(Xz,"scala.collection.MapOps$WithFilter",{x2:1,g2:1,M2:1,g:1});function oO(){this.nl=null}oO.prototype=new q;oO.prototype.constructor=oO;function pO(){}pO.prototype=oO.prototype;function Iw(a,b){return a.nl.Ba(b)}oO.prototype.nt=function(a){return this.nl.Zb(a)};oO.prototype.Kb=function(){return this.nl.Kb()}; -oO.prototype.Zb=function(a){return this.nt(a)};oO.prototype.Ba=function(a){return Iw(this,a)};function qO(a){return a.Fg(new Nh(b=>b))}function rO(a,b){return a.Hg(new sO(a,b))}function bp(a,b){return a.fo(new Nh(c=>Ri(Si(),b,c)),0)}function cp(a,b){return a.it(new Nh(c=>Ri(Si(),c,b)))}function tO(a,b){var c=a.i(),d=a.ih();if(1===c)c=a.X(),d.Ma(c);else if(1FO($N(),a.ai)))};function bO(a,b,c){return 0===c.l&&0===c.m?new aO(b):new GO(b,c)} -function FO(a,b){var c=b.a.length;return 0===c?a.ww:1===c?new aO(b.a[0]):2===c?bO(0,b.a[0],b.a[1]):new cO(b)}E(zO,"scala.collection.immutable.BitSet$",{Z2:1,uS:1,gS:1,g:1});var AO;function $N(){AO||(AO=new zO);return AO}function HO(a){this.FS=a;this.MP=!1;this.oJ=0;this.yw=a.oc}HO.prototype=new MI;HO.prototype.constructor=HO;g=HO.prototype;g.ri=function(a){this.lA(a.Ia(),a.la());return!1};g.j=function(){return"\x3cfunction1\x3e"}; -g.lA=function(a,b){var c=M(P(),a),d=sj(uj(),c);this.MP?this.oJ=jL(this.yw,a,b,c,d,0,this.oJ):(this.yw=hL(this.yw,a,b,c,d,0,!0),this.yw!==this.FS.oc&&(this.MP=!0,this.oJ=Dk(Hk(),Ck(Hk(),d,0))))};g.Yf=function(a,b){this.lA(a,b)};g.y=function(a){this.lA(a.Ia(),a.la())};E(HO,"scala.collection.immutable.HashMap$accum$1",{j3:1,gT:1,XJ:1,Ea:1});function IO(){this.ej=null;this.ej=JO()}IO.prototype=new DK;IO.prototype.constructor=IO;IO.prototype.Zb=function(a){return YL(a)?a:CK.prototype.Zb.call(this,a)}; +oO.prototype.Zb=function(a){return this.nt(a)};oO.prototype.Ba=function(a){return Iw(this,a)};function qO(a){return a.Fg(new Nh(b=>b))}function rO(a,b){return a.Hg(new sO(a,b))}function bp(a,b){return a.fo(new Nh(c=>Ri(Si(),b,c)),0)}function cp(a,b){return a.it(new Nh(c=>Ri(Si(),c,b)))}function tO(a,b){var c=a.i(),d=a.ih();if(1===c)c=a.X(),d.Ma(c);else if(1FO($N(),a.ai)))};function bO(a,b,c){return 0===c.l&&0===c.m?new aO(b):new GO(b,c)} +function FO(a,b){var c=b.a.length;return 0===c?a.xw:1===c?new aO(b.a[0]):2===c?bO(0,b.a[0],b.a[1]):new cO(b)}E(zO,"scala.collection.immutable.BitSet$",{Z2:1,uS:1,gS:1,g:1});var AO;function $N(){AO||(AO=new zO);return AO}function HO(a){this.FS=a;this.MP=!1;this.oJ=0;this.zw=a.oc}HO.prototype=new MI;HO.prototype.constructor=HO;g=HO.prototype;g.ri=function(a){this.lA(a.Ia(),a.la());return!1};g.j=function(){return"\x3cfunction1\x3e"}; +g.lA=function(a,b){var c=M(P(),a),d=sj(uj(),c);this.MP?this.oJ=jL(this.zw,a,b,c,d,0,this.oJ):(this.zw=hL(this.zw,a,b,c,d,0,!0),this.zw!==this.FS.oc&&(this.MP=!0,this.oJ=Dk(Hk(),Ck(Hk(),d,0))))};g.Yf=function(a,b){this.lA(a,b)};g.y=function(a){this.lA(a.Ia(),a.la())};E(HO,"scala.collection.immutable.HashMap$accum$1",{j3:1,gT:1,XJ:1,Ea:1});function IO(){this.dj=null;this.dj=JO()}IO.prototype=new DK;IO.prototype.constructor=IO;IO.prototype.Zb=function(a){return YL(a)?a:CK.prototype.Zb.call(this,a)}; E(IO,"scala.collection.immutable.Iterable$",{s3:1,uE:1,Hd:1,g:1});var KO;function jO(){KO||(KO=new IO);return KO}function LO(){this.SE=null;MO=this;this.SE=NO(new OO(new sp(()=>WL())))}LO.prototype=new q;LO.prototype.constructor=LO;LO.prototype.Ba=function(a){return bL(this,a)};function PO(a,b,c){return new OO(new sp(((d,e)=>()=>{for(var f=d.lb,h=e.vr;0RO(cL(),b.k())))}function SO(a,b,c){return b.d()?new TL(b.e(),new OO(new sp(()=>SO(cL(),b,c)))):jk(c)}function RO(a,b){return b.d()?new TL(b.e(),new OO(new sp(()=>RO(cL(),b)))):WL()}LO.prototype.Kb=function(){return new TO};LO.prototype.Zb=function(a){return bL(this,a)};E(LO,"scala.collection.immutable.LazyList$",{u3:1,xi:1,Hd:1,g:1});var MO;function cL(){MO||(MO=new LO);return MO}function dL(a,b){this.aF=a;this.XS=b} dL.prototype=new q;dL.prototype.constructor=dL;dL.prototype.Oc=function(a){this.aF.Oc(a)};dL.prototype.$b=function(){return this.XS.y(this.aF.$b())};dL.prototype.Yc=function(a){this.aF.Yc(a);return this};dL.prototype.Ma=function(a){this.aF.Ma(a);return this};E(dL,"scala.collection.mutable.Builder$$anon$1",{b5:1,Oe:1,xd:1,wd:1});function DO(a,b){a.yd=b;return a}function EO(){this.yd=null}EO.prototype=new q;EO.prototype.constructor=EO;function UO(){}UO.prototype=EO.prototype;EO.prototype.Oc=function(){}; -function mx(a,b){a.yd.Ma(b);return a}EO.prototype.Yc=function(a){this.yd.Yc(a);return this};EO.prototype.Ma=function(a){return mx(this,a)};EO.prototype.$b=function(){return this.yd};E(EO,"scala.collection.mutable.GrowableBuilder",{bF:1,Oe:1,xd:1,wd:1});function VO(){this.ej=null;this.ej=mo()}VO.prototype=new DK;VO.prototype.constructor=VO;E(VO,"scala.collection.mutable.Iterable$",{y5:1,uE:1,Hd:1,g:1});var WO;function XO(){this.Dt=null;this.Dt=wM()}XO.prototype=new WK;XO.prototype.constructor=XO; -E(XO,"scala.collection.mutable.Map$",{B5:1,rS:1,BE:1,g:1});var YO;function wq(){YO||(YO=new XO);return YO}function ZO(){this.ej=null;this.ej=EM()}ZO.prototype=new DK;ZO.prototype.constructor=ZO;E(ZO,"scala.collection.mutable.Set$",{H5:1,uE:1,Hd:1,g:1});var $O;function ap(){$O||($O=new ZO);return $O}function xr(a,b,c){a.Vb=b;a.yQ=c;uk(a,null,!1);return a} +function mx(a,b){a.yd.Ma(b);return a}EO.prototype.Yc=function(a){this.yd.Yc(a);return this};EO.prototype.Ma=function(a){return mx(this,a)};EO.prototype.$b=function(){return this.yd};E(EO,"scala.collection.mutable.GrowableBuilder",{bF:1,Oe:1,xd:1,wd:1});function VO(){this.dj=null;this.dj=mo()}VO.prototype=new DK;VO.prototype.constructor=VO;E(VO,"scala.collection.mutable.Iterable$",{y5:1,uE:1,Hd:1,g:1});var WO;function XO(){this.Dt=null;this.Dt=wM()}XO.prototype=new WK;XO.prototype.constructor=XO; +E(XO,"scala.collection.mutable.Map$",{B5:1,rS:1,BE:1,g:1});var YO;function wq(){YO||(YO=new XO);return YO}function ZO(){this.dj=null;this.dj=EM()}ZO.prototype=new DK;ZO.prototype.constructor=ZO;E(ZO,"scala.collection.mutable.Set$",{H5:1,uE:1,Hd:1,g:1});var $O;function ap(){$O||($O=new ZO);return $O}function xr(a,b,c){a.Vb=b;a.yQ=c;uk(a,null,!1);return a} class yr extends KM{constructor(){super();this.yQ=this.Vb=null}uf(){return this.yQ}uO(){}mg(){return!!this.uf()}CQ(){return Ra(this.uf())}DQ(){return this.uf()|0}}E(yr,"scala.runtime.NonLocalReturnControl",{hF:1,pE:1,Bb:1,g:1});function aP(a){if(2p(b)))):b}return 0}g.e=function(){return p(en(this))};E(dn,"tigerpython.inputenc.StringTranslator",{tT:1,Da:1,I:1,J:1});function np(a,b,c,d){this.Vw=a;this.Xw=b;this.Ww=c;this.Uw=d}np.prototype=new q;np.prototype.constructor=np; -g=np.prototype;g.B=function(){return"ErrorInfo"};g.C=function(){return 4};g.D=function(a){switch(a){case 0:return this.Vw;case 1:return this.Xw;case 2:return this.Ww;case 3:return this.Uw;default:return N(P(),a)}};g.s=function(){var a=-889275714;a=P().f(a,$a("ErrorInfo"));a=P().f(a,this.Vw);a=P().f(a,this.Xw);a=P().f(a,M(P(),this.Ww));a=P().f(a,M(P(),this.Uw));return P().L(a,4)};g.j=function(){return Ql(this)}; -g.b=function(a){return this===a?!0:a instanceof np?this.Vw===a.Vw&&this.Xw===a.Xw&&this.Ww===a.Ww&&this.Uw===a.Uw:!1};Object.defineProperty(np.prototype,"code",{get:function(){return this.Uw},configurable:!0});Object.defineProperty(np.prototype,"msg",{get:function(){return this.Ww},configurable:!0});Object.defineProperty(np.prototype,"offset",{get:function(){return this.Xw},configurable:!0});Object.defineProperty(np.prototype,"line",{get:function(){return this.Vw},configurable:!0}); +function bP(a,b){if(39===b){var c=!1;b=a.tj;a:{var d=NM().Jm;if(null===d?null===b:d.b(b))if(c=!0,aP(a)){a.tj=NM().rF;break a}c?a.tj=NM().qF:(c=NM().qF,(null===c?null===b:c.b(b))?a.tj=NM().Jm:(c=NM().rF,(null===c?null===b:c.b(b))&&aP(a)&&(a.tj=NM().Jm)))}}else a:{c=!1,b=a.tj,d=NM().Jm;if(null===d?null===b:d.b(b))if(c=!0,aP(a)){a.tj=NM().pF;break a}c?a.tj=NM().oF:(c=NM().oF,(null===c?null===b:c.b(b))?a.tj=NM().Jm:(c=NM().pF,(null===c?null===b:c.b(b))&&aP(a)&&(a.tj=NM().Jm)))}} +function dn(a){this.tj=null;this.zr=a;this.wk=0;this.tj=NM().Jm}dn.prototype=new q;dn.prototype.constructor=dn;g=dn.prototype;g.k=function(){return this};g.bl=function(){return new hO(this)};g.ti=function(a){return MK(this,a)};g.Wd=function(a){return OK(this,a,-1)};g.j=function(){return"\x3citerator\x3e"};g.Oh=function(a){return yj(this,a)};g.ma=function(a,b,c){return Aj(this,a,b,c)};g.Eg=function(a,b,c,d){return Ij(this,a,b,c,d)};g.tf=function(a){return Jj(this,a)};g.U=function(){return-1}; +g.d=function(){return this.wkp(b)))):b}return 0}g.e=function(){return p(en(this))};E(dn,"tigerpython.inputenc.StringTranslator",{tT:1,Da:1,I:1,J:1});function np(a,b,c,d){this.Ww=a;this.Yw=b;this.Xw=c;this.Vw=d}np.prototype=new q;np.prototype.constructor=np; +g=np.prototype;g.B=function(){return"ErrorInfo"};g.C=function(){return 4};g.D=function(a){switch(a){case 0:return this.Ww;case 1:return this.Yw;case 2:return this.Xw;case 3:return this.Vw;default:return N(P(),a)}};g.s=function(){var a=-889275714;a=P().f(a,$a("ErrorInfo"));a=P().f(a,this.Ww);a=P().f(a,this.Yw);a=P().f(a,M(P(),this.Xw));a=P().f(a,M(P(),this.Vw));return P().L(a,4)};g.j=function(){return Ql(this)}; +g.b=function(a){return this===a?!0:a instanceof np?this.Ww===a.Ww&&this.Yw===a.Yw&&this.Xw===a.Xw&&this.Vw===a.Vw:!1};Object.defineProperty(np.prototype,"code",{get:function(){return this.Vw},configurable:!0});Object.defineProperty(np.prototype,"msg",{get:function(){return this.Xw},configurable:!0});Object.defineProperty(np.prototype,"offset",{get:function(){return this.Yw},configurable:!0});Object.defineProperty(np.prototype,"line",{get:function(){return this.Ww},configurable:!0}); var op=E(np,"tigerpython.parser.ErrorInfo",{yT:1,E:1,q:1,g:1});function Ws(a,b){this.vB=a;this.Fi=b}Ws.prototype=new q;Ws.prototype.constructor=Ws;g=Ws.prototype;g.B=function(){return"Keyword"};g.C=function(){return 2};g.D=function(a){switch(a){case 0:return this.vB;case 1:return this.Fi;default:return N(P(),a)}};g.s=function(){return Am(this)};g.j=function(){return Ql(this)};g.b=function(a){if(this===a)return!0;if(a instanceof Ws&&this.vB===a.vB){var b=this.Fi;a=a.Fi;return null===b?null===a:b.b(a)}return!1}; -var Xs=E(Ws,"tigerpython.parser.ast.AstNode$Keyword",{mU:1,E:1,q:1,g:1});function FJ(a,b,c,d,e){this.ji=a;this.Wu=b;this.Ok=c;this.js=d;this.yy=e}FJ.prototype=new q;FJ.prototype.constructor=FJ;g=FJ.prototype;g.j=function(){return Vj(L(),"[LINE %d] %s(%d): %s",new Q([this.Wu,this.Ok.j(),this.ji,this.js]))};g.B=function(){return"ExtErrorInfo"};g.C=function(){return 5}; -g.D=function(a){switch(a){case 0:return this.ji;case 1:return this.Wu;case 2:return this.Ok;case 3:return this.js;case 4:return this.yy;default:return N(P(),a)}};g.s=function(){var a=-889275714;a=P().f(a,$a("ExtErrorInfo"));a=P().f(a,this.ji);a=P().f(a,this.Wu);a=P().f(a,M(P(),this.Ok));a=P().f(a,M(P(),this.js));a=P().f(a,M(P(),this.yy));return P().L(a,5)}; -g.b=function(a){if(this===a)return!0;if(a instanceof FJ){if(this.ji===a.ji)if(this.Wu===a.Wu){var b=this.Ok,c=a.Ok;b=null===b?null===c:b.b(c)}else b=!1;else b=!1;if(b&&this.js===a.js)return b=this.yy,a=a.yy,null===b?null===a:b.b(a)}return!1};var Bq=E(FJ,"tigerpython.parser.errors.ExtErrorInfo",{zV:1,E:1,q:1,g:1});function vt(a,b,c){this.ta=null;this.A=a;this.We=b;this.o=c;this.Rc=a+b|0}vt.prototype=new q;vt.prototype.constructor=vt;function zs(a){return null!==a.ta?a.ta:a.o.Ij} +var Xs=E(Ws,"tigerpython.parser.ast.AstNode$Keyword",{mU:1,E:1,q:1,g:1});function FJ(a,b,c,d,e){this.ji=a;this.Xu=b;this.Ok=c;this.js=d;this.yy=e}FJ.prototype=new q;FJ.prototype.constructor=FJ;g=FJ.prototype;g.j=function(){return Vj(L(),"[LINE %d] %s(%d): %s",new Q([this.Xu,this.Ok.j(),this.ji,this.js]))};g.B=function(){return"ExtErrorInfo"};g.C=function(){return 5}; +g.D=function(a){switch(a){case 0:return this.ji;case 1:return this.Xu;case 2:return this.Ok;case 3:return this.js;case 4:return this.yy;default:return N(P(),a)}};g.s=function(){var a=-889275714;a=P().f(a,$a("ExtErrorInfo"));a=P().f(a,this.ji);a=P().f(a,this.Xu);a=P().f(a,M(P(),this.Ok));a=P().f(a,M(P(),this.js));a=P().f(a,M(P(),this.yy));return P().L(a,5)}; +g.b=function(a){if(this===a)return!0;if(a instanceof FJ){if(this.ji===a.ji)if(this.Xu===a.Xu){var b=this.Ok,c=a.Ok;b=null===b?null===c:b.b(c)}else b=!1;else b=!1;if(b&&this.js===a.js)return b=this.yy,a=a.yy,null===b?null===a:b.b(a)}return!1};var Bq=E(FJ,"tigerpython.parser.errors.ExtErrorInfo",{zV:1,E:1,q:1,g:1});function vt(a,b,c){this.ta=null;this.A=a;this.We=b;this.o=c;this.Rc=a+b|0}vt.prototype=new q;vt.prototype.constructor=vt;function zs(a){return null!==a.ta?a.ta:a.o.Ij} function ex(a){var b=a.o,c=X().S;return b===c?"__future__"===a.ta:!1}g=vt.prototype;g.j=function(){return zs(this)};g.B=function(){return"Token"};g.C=function(){return 3};g.D=function(a){switch(a){case 0:return this.A;case 1:return this.We;case 2:return this.o;default:return N(P(),a)}};g.s=function(){var a=-889275714;a=P().f(a,$a("Token"));a=P().f(a,this.A);a=P().f(a,this.We);a=P().f(a,M(P(),this.o));return P().L(a,3)}; g.b=function(a){return this===a?!0:a instanceof vt?this.A===a.A&&this.We===a.We?this.o===a.o:!1:!1};var vw=E(vt,"tigerpython.parser.lexer.Token",{GV:1,E:1,q:1,g:1});class wv extends wK{constructor(){super();uk(this,null,!0)}}E(wv,"tigerpython.parser.parsing.ExtParserUtils$NoValueException",{iW:1,tc:1,Bb:1,g:1});function cP(a,b,c){this.Kj=a;this.ws=b;this.ec=c}cP.prototype=new q;cP.prototype.constructor=cP;g=cP.prototype;g.p=function(){return Oh(Ch(),this.ec).A-this.Kj|0}; -g.j=function(){return Vj(L(),"\x3cLINE indent: %d; tokens: \x3c%s\x3e\x3e",new Q([this.Kj,Gj(mn(nj(),this.ec),"","; ","")]))};function dP(a){if(2{k=k.o;if(null!==k)if(X().Wb===k||X().Fa===k||X().Ab===k)b.vr=1+b.vr|0;else if(X().fb===k||X().sa===k||X().ib===k)b.vr=-1+b.vr|0;else if(0===b.vr&&k.vg===X().Ad)throw new iu(a,!0);},e=c.a.length,f=0;if(null!==c)for(;f{k=k.o;if(null!==k)if(X().Wb===k||X().Fa===k||X().Ab===k)b.vr=1+b.vr|0;else if(X().fb===k||X().sa===k||X().ib===k)b.vr=-1+b.vr|0;else if(0===b.vr&&k.vg===X().Ad)throw new iu(a,!0);},e=c.a.length,f=0;if(null!==c)for(;fnull!==k),e),b=ce(fe(),a.ik),c=0;cnull!==k),e),b=ce(fe(),a.ik),c=0;c{r=mn(nj(),r.M);return ov(f,r)};d=b.a.length;e=0;if(null!==b)for(;e{f=$z(nz(),f);JA(this.Hh,f.ov,f)},c=a.a.length,d=0;if(null!==a)for(;d{f=$z(nz(),f);JA(this.Hh,f.pv,f)},c=a.a.length,d=0;if(null!==a)for(;d{f=$z(nz(),f);JA(this.Hh,f.ov,f)},c=a.a.length,d=0;if(null!==a)for(;d{f=$z(nz(),f);JA(this.Hh,f.pv,f)},c=a.a.length,d=0;if(null!==a)for(;d{f=$z(nz(),f);JA(this.Hh,f.ov,f)},c=a.a.length,d=0;if(null!==a)for(;d{f=$z(nz(),f);JA(this.Hh,f.pv,f)},c=a.a.length,d=0;if(null!==a)for(;d{var h=Y().za;JA(this.Hh,f,h)};c=a.a.length;d=0;if(null!==a)for(;d{f=$z(nz(),f);JA(this.Hh,f.ov,f)},c=a.a.length,d=0;if(null!==a)for(;d{f=$z(nz(),f);JA(this.Hh,f.pv,f)},c=a.a.length,d=0;if(null!==a)for(;d{var h=Y().za;JA(this.Hh,f,h)};c=a.a.length;d=0;if(null!==a)for(;d=b))for(b=0;;){10===Ba(a.R,b)&&(c=1+c|0);if(b===d)break;b=1+b|0}return c}function nP(a,b){b=a.ba+b|0;return 0<=b&&b=Ba(a.R,c);)c=1+c|0;if(c>=b)break;if(35===Ba(a.R,c))for(;ckK(a.Os))return wC(a.Os,new QC(d));if(d{f=iF(OE(),f,ZL());hD(this.Gd,f.Xn,f)},c=a.a.length,d=0;if(null!==a)for(;d{f=iF(OE(),f,ZL());hD(this.Gd,f.Xn,f)},c=a.a.length,d=0;if(null!==a)for(;d{f=iF(OE(),f,ZL());hD(this.Gd,f.Xn,f)},c=a.a.length,d=0;if(null!==a)for(;d{f=iF(OE(),f,ZL());hD(this.Gd,f.Xn,f)},c=a.a.length,d=0;if(null!==a)for(;d{f=iF(OE(),f,ZL());hD(this.Gd,f.Xn,f)},c=a.a.length,d=0;if(null!==a)for(;d{f=iF(OE(),f,ZL());hD(this.Gd,f.Xn,f)},c=a.a.length,d=0;if(null!==a)for(;d{var h=U().ka;hD(this.Gd,f,h)};c=a.a.length;d=0;if(null!==a)for(;d{f=iF(OE(),f,ZL());hD(this.Gd,f.Xn,f)},c=a.a.length,d=0;if(null!==a)for(;d{f=iF(OE(),f,ZL());hD(this.Gd,f.Xn,f)},c=a.a.length,d=0;if(null!==a)for(;d{var h=U().ka;hD(this.Gd,f,h)};c=a.a.length;d=0;if(null!==a)for(;d"number"===typeof a&&a<<24>>24===a&&1/a!==1/-0); -class yL extends zN{constructor(){super();uk(this,null,!0)}}E(yL,"java.lang.ClassCastException",{a_:1,Vc:1,tc:1,Bb:1,g:1});function de(a){var b=new LP;uk(b,a,!0);return b}function rG(){var a=new LP;uk(a,null,!0);return a}class LP extends zN{}E(LP,"java.lang.IllegalArgumentException",{Xi:1,Vc:1,tc:1,Bb:1,g:1});function ik(a){var b=new MP;uk(b,a,!0);return b}class MP extends zN{}E(MP,"java.lang.IllegalStateException",{qR:1,Vc:1,tc:1,Bb:1,g:1});function Wl(a,b){uk(a,b,!0);return a} -class Xl extends zN{}E(Xl,"java.lang.IndexOutOfBoundsException",{KO:1,Vc:1,tc:1,Bb:1,g:1});class Pf extends zN{constructor(){super();uk(this,null,!0)}}E(Pf,"java.lang.NegativeArraySizeException",{m_:1,Vc:1,tc:1,Bb:1,g:1});function ri(){var a=new mm;uk(a,null,!0);return a}class mm extends zN{}E(mm,"java.lang.NullPointerException",{n_:1,Vc:1,tc:1,Bb:1,g:1});var na=E(0,"java.lang.Short",{p_:1,dw:1,g:1,bk:1,go:1},a=>"number"===typeof a&&a<<16>>16===a&&1/a!==1/-0); +function tE(a){this.fc=this.$k=this.Fb=null;Ip(this,Vj(L(),"tuple[%s, ...]",new Q([a.Ca()])),U().Ff,U().Ff.fc)}tE.prototype=new wN;tE.prototype.constructor=tE;E(tE,"tigerpython.utilities.types.VarTupleType",{JZ:1,Vs:1,Zn:1,Vd:1});class ob extends zN{constructor(a){super();uk(this,a,!0)}}E(ob,"java.lang.ArithmeticException",{SZ:1,Vc:1,tc:1,Bb:1,g:1});var la=E(0,"java.lang.Byte",{XZ:1,ew:1,g:1,bk:1,go:1},a=>"number"===typeof a&&a<<24>>24===a&&1/a!==1/-0); +class yL extends zN{constructor(){super();uk(this,null,!0)}}E(yL,"java.lang.ClassCastException",{a_:1,Vc:1,tc:1,Bb:1,g:1});function de(a){var b=new LP;uk(b,a,!0);return b}function rG(){var a=new LP;uk(a,null,!0);return a}class LP extends zN{}E(LP,"java.lang.IllegalArgumentException",{Wi:1,Vc:1,tc:1,Bb:1,g:1});function ik(a){var b=new MP;uk(b,a,!0);return b}class MP extends zN{}E(MP,"java.lang.IllegalStateException",{qR:1,Vc:1,tc:1,Bb:1,g:1});function Wl(a,b){uk(a,b,!0);return a} +class Xl extends zN{}E(Xl,"java.lang.IndexOutOfBoundsException",{KO:1,Vc:1,tc:1,Bb:1,g:1});class Pf extends zN{constructor(){super();uk(this,null,!0)}}E(Pf,"java.lang.NegativeArraySizeException",{m_:1,Vc:1,tc:1,Bb:1,g:1});function ri(){var a=new mm;uk(a,null,!0);return a}class mm extends zN{}E(mm,"java.lang.NullPointerException",{n_:1,Vc:1,tc:1,Bb:1,g:1});var na=E(0,"java.lang.Short",{p_:1,ew:1,g:1,bk:1,go:1},a=>"number"===typeof a&&a<<16>>16===a&&1/a!==1/-0); class vC extends CN{constructor(){super();uk(this,null,!0)}}E(vC,"java.lang.StackOverflowError",{q_:1,B_:1,GO:1,Bb:1,g:1});function Xh(a){var b=new NP;uk(b,a,!0);return b}class NP extends zN{}E(NP,"java.lang.UnsupportedOperationException",{z_:1,Vc:1,tc:1,Bb:1,g:1});class xl extends zN{constructor(a){super();uk(this,a,!0)}}E(xl,"java.util.ConcurrentModificationException",{F_:1,Vc:1,tc:1,Bb:1,g:1});class Rh extends zN{constructor(a){super();uk(this,a,!0)}} E(Rh,"java.util.NoSuchElementException",{X_:1,Vc:1,tc:1,Bb:1,g:1});function Z(a,b,c){this.kh=b;this.fP=c;this.II=a;if(a.fg.ya(b))throw new ig("assertion failed: Duplicate id: "+this.kh);Dp(a.fg,b,this);a.Pg=!1;a.h=1+b|0;a.h>a.lh&&(a.lh=a.h);b>6:0;0a.ml)return-1;a=a.ml-b|0;return 0>a?0:a}function PK(a,b,c){this.mw=a;this.ml=c;this.Bt=b}PK.prototype=new gO; -PK.prototype.constructor=PK;PK.prototype.U=function(){var a=this.mw.U();if(0>a)return-1;a=a-this.Bt|0;a=0>a?0:a;if(0>this.ml)return a;var b=this.ml;return bthis.ml?this.mw.e():W().t.e()}; -PK.prototype.Qw=function(a,b){a=0b)b=dQ(this,a);else if(b<=a)b=0;else if(0>this.ml)b=b-a|0;else{var c=dQ(this,a);b=b-a|0;b=ca?2147483647:a;this.ml=b;return this};E(PK,"scala.collection.Iterator$SliceIterator",{s2:1,Pa:1,Da:1,I:1,J:1});function eQ(a,b){if(0>b)throw Wl(new Xl,""+b);a=a.Tc(b);if(a.v())throw Wl(new Xl,""+b);return a.X()} +bQ.prototype.constructor=bQ;bQ.prototype.U=function(){return this.bJ.U()};bQ.prototype.d=function(){return this.bJ.d()};bQ.prototype.e=function(){return this.pS.y(this.bJ.e())};E(bQ,"scala.collection.Iterator$$anon$9",{p2:1,Pa:1,Da:1,I:1,J:1});function NK(a){this.ej=a;this.um=this.ll=null;this.At=!1}NK.prototype=new gO;NK.prototype.constructor=NK; +NK.prototype.d=function(){if(this.At)return!0;if(null!==this.ej){if(this.ej.d())return this.At=!0;a:for(;;){if(null===this.ll){this.um=this.ej=null;var a=!1;break a}this.ej=jk(this.ll.qS).k();this.um===this.ll&&(this.um=this.um.AE);for(this.ll=this.ll.AE;this.ej instanceof NK;)a=this.ej,this.ej=a.ej,this.At=a.At,null!==a.ll&&(null===this.um&&(this.um=a.um),a.um.AE=this.ll,this.ll=a.ll);if(this.At){a=!0;break a}if(null!==this.ej&&this.ej.d()){a=this.At=!0;break a}}return a}return!1}; +NK.prototype.e=function(){return this.d()?(this.At=!1,this.ej.e()):W().t.e()};NK.prototype.ti=function(a){a=new Kj(a,null);null===this.ll?this.ll=a:this.um.AE=a;this.um=a;null===this.ej&&(this.ej=W().t);return this};E(NK,"scala.collection.Iterator$ConcatIterator",{q2:1,Pa:1,Da:1,I:1,J:1});function cQ(a){for(;0a.ml)return-1;a=a.ml-b|0;return 0>a?0:a}function PK(a,b,c){this.nw=a;this.ml=c;this.Bt=b}PK.prototype=new gO; +PK.prototype.constructor=PK;PK.prototype.U=function(){var a=this.nw.U();if(0>a)return-1;a=a-this.Bt|0;a=0>a?0:a;if(0>this.ml)return a;var b=this.ml;return bthis.ml?this.nw.e():W().t.e()}; +PK.prototype.Rw=function(a,b){a=0b)b=dQ(this,a);else if(b<=a)b=0;else if(0>this.ml)b=b-a|0;else{var c=dQ(this,a);b=b-a|0;b=ca?2147483647:a;this.ml=b;return this};E(PK,"scala.collection.Iterator$SliceIterator",{s2:1,Pa:1,Da:1,I:1,J:1});function eQ(a,b){if(0>b)throw Wl(new Xl,""+b);a=a.Tc(b);if(a.v())throw Wl(new Xl,""+b);return a.X()} function fQ(a,b){if(b&&b.$classData&&b.$classData.Yb.cJ)a:for(;;){if(a===b){a=!0;break a}if(a.v()||b.v()||!Ri(Si(),a.X(),b.X())){a=a.v()&&b.v();break a}a=a.Oa();b=b.Oa()}else a=uO(a,b);return a}function gQ(a,b,c){var d=0=a.sw)a=W().t.e();else{for(var b=a.hg;;){if(a.hg=a.tw)a=W().t.e();else{for(var b=a.hg;;){if(a.hgh)throw sQ();if(h>c.a.length)throw sQ();d=new y(1+c.a.length|0);c.da(0,d,0,h);d.a[h]=e;c.da(h,d,1+h|0,c.a.length-h|0);b.xb|=m;b.Wc=a;b.jg=d;b.rd=1+b.rd|0;b.ig=b.ig+f|0}}else if(b instanceof mL)e=xL(b,c),b.ad=0>e?b.ad.om(H(new J,c,d)):b.ad.Lo(e,H(new J,c,d));else throw new G(b);}function HL(a){if(0===a.uo.rd)return KL().nJ;null===a.bB&&(a.bB=new FL(a.uo));return a.bB}function tQ(a,b){qQ(a);var c=M(P(),b.Ia()),d=sj(uj(),c);rQ(a,a.uo,b.Ia(),b.la(),c,d,0);return a} -function uQ(a,b,c){qQ(a);var d=M(P(),b);rQ(a,a.uo,b,c,d,sj(uj(),d),0);return a}function IL(a,b){qQ(a);if(b instanceof FL)new vQ(a,b);else if(b instanceof tM)for(b=wQ(b);b.d();){var c=b.e(),d=c.Ai;d^=d>>>16|0;var e=sj(uj(),d);rQ(a,a.uo,c.pj,c.Cc,d,e,0)}else if(xQ(b))b.Zj(new Cj((f,h)=>uQ(a,f,h)));else for(b=b.k();b.d();)tQ(a,b.e());return a}JL.prototype.Yc=function(a){return IL(this,a)};JL.prototype.Ma=function(a){return tQ(this,a)};JL.prototype.$b=function(){return HL(this)}; +function uQ(a,b,c){qQ(a);var d=M(P(),b);rQ(a,a.uo,b,c,d,sj(uj(),d),0);return a}function IL(a,b){qQ(a);if(b instanceof FL)new vQ(a,b);else if(b instanceof tM)for(b=wQ(b);b.d();){var c=b.e(),d=c.Ai;d^=d>>>16|0;var e=sj(uj(),d);rQ(a,a.uo,c.oj,c.Cc,d,e,0)}else if(xQ(b))b.Zj(new Cj((f,h)=>uQ(a,f,h)));else for(b=b.k();b.d();)tQ(a,b.e());return a}JL.prototype.Yc=function(a){return IL(this,a)};JL.prototype.Ma=function(a){return tQ(this,a)};JL.prototype.$b=function(){return HL(this)}; E(JL,"scala.collection.immutable.HashMapBuilder",{k3:1,Hm:1,Oe:1,xd:1,wd:1});function RL(){this.vo=this.Kt=null;this.vo=new Kk(0,0,th().GI,th().OA,0,0)}RL.prototype=new q;RL.prototype.constructor=RL;RL.prototype.Oc=function(){}; -function yQ(a,b,c,d,e,f){if(b instanceof Kk){var h=Ck(Hk(),e,f),k=Dk(Hk(),h);if(0!==(b.Db&k)){a=Gk(Hk(),b.Db,h,k);h=b.dh(a);var m=b.Uc(a);m===d&&Ri(Si(),h,c)?(d=b.Vi(k),b.hf.a[d]=h):(a=sj(uj(),m),d=rL(b,h,m,a,c,d,e,5+f|0),e=b.Vi(k),c=(-1+b.hf.a.length|0)-b.Vq(k)|0,b.hf.da(1+e|0,b.hf,e,c-e|0),b.hf.a[c]=d,b.Db^=k,b.Bc|=k,b.ij=xk(b.ij,e),b.xe=(-1+b.xe|0)+d.Va()|0,b.hj=(b.hj-a|0)+d.Zc()|0)}else if(0!==(b.Bc&k))k=Gk(Hk(),b.Bc,h,k),k=b.Wi(k),h=k.Va(),m=k.Zc(),yQ(a,k,c,d,e,5+f|0),b.xe=b.xe+(k.Va()-h|0)| -0,b.hj=b.hj+(k.Zc()-m|0)|0;else{f=b.Vi(k);h=b.hf;a=new Jb(1+h.a.length|0);h.da(0,a,0,f);a.a[f]=c;h.da(f,a,1+f|0,h.a.length-f|0);c=b.ij;if(0>f)throw sQ();if(f>c.a.length)throw sQ();h=new y(1+c.a.length|0);c.da(0,h,0,f);h.a[f]=d;c.da(f,h,1+f|0,c.a.length-f|0);b.Db|=k;b.hf=a;b.ij=h;b.xe=1+b.xe|0;b.hj=b.hj+e|0}}else if(b instanceof sL)d=bp(b.Id,c),b.Id=0>d?b.Id.om(c):b.Id.Lo(d,c);else throw new G(b);}function PL(a){if(0===a.vo.xe)return SL().cB;null===a.Kt&&(a.Kt=new NL(a.vo));return a.Kt} +function yQ(a,b,c,d,e,f){if(b instanceof Kk){var h=Ck(Hk(),e,f),k=Dk(Hk(),h);if(0!==(b.Db&k)){a=Gk(Hk(),b.Db,h,k);h=b.dh(a);var m=b.Uc(a);m===d&&Ri(Si(),h,c)?(d=b.Ui(k),b.hf.a[d]=h):(a=sj(uj(),m),d=rL(b,h,m,a,c,d,e,5+f|0),e=b.Ui(k),c=(-1+b.hf.a.length|0)-b.Vq(k)|0,b.hf.da(1+e|0,b.hf,e,c-e|0),b.hf.a[c]=d,b.Db^=k,b.Bc|=k,b.hj=xk(b.hj,e),b.xe=(-1+b.xe|0)+d.Va()|0,b.gj=(b.gj-a|0)+d.Zc()|0)}else if(0!==(b.Bc&k))k=Gk(Hk(),b.Bc,h,k),k=b.Vi(k),h=k.Va(),m=k.Zc(),yQ(a,k,c,d,e,5+f|0),b.xe=b.xe+(k.Va()-h|0)| +0,b.gj=b.gj+(k.Zc()-m|0)|0;else{f=b.Ui(k);h=b.hf;a=new Ib(1+h.a.length|0);h.da(0,a,0,f);a.a[f]=c;h.da(f,a,1+f|0,h.a.length-f|0);c=b.hj;if(0>f)throw sQ();if(f>c.a.length)throw sQ();h=new y(1+c.a.length|0);c.da(0,h,0,f);h.a[f]=d;c.da(f,h,1+f|0,c.a.length-f|0);b.Db|=k;b.hf=a;b.hj=h;b.xe=1+b.xe|0;b.gj=b.gj+e|0}}else if(b instanceof sL)d=bp(b.Id,c),b.Id=0>d?b.Id.om(c):b.Id.Lo(d,c);else throw new G(b);}function PL(a){if(0===a.vo.xe)return SL().cB;null===a.Kt&&(a.Kt=new NL(a.vo));return a.Kt} function zQ(a,b){null!==a.Kt&&(a.vo=wL(a.vo));a.Kt=null;var c=M(P(),b),d=sj(uj(),c);yQ(a,a.vo,b,c,d,0);return a}function QL(a,b){null!==a.Kt&&(a.vo=wL(a.vo));a.Kt=null;if(b instanceof NL)new AQ(a,b);else for(b=b.k();b.d();)zQ(a,b.e());return a}RL.prototype.Yc=function(a){return QL(this,a)};RL.prototype.Ma=function(a){return zQ(this,a)};RL.prototype.$b=function(){return PL(this)};E(RL,"scala.collection.immutable.HashSetBuilder",{o3:1,Hm:1,Oe:1,xd:1,wd:1});function BQ(){this.nl=null;this.nl=lL()} -BQ.prototype=new pO;BQ.prototype.constructor=BQ;BQ.prototype.Zb=function(a){return CQ(a)?a:oO.prototype.nt.call(this,a)};BQ.prototype.nt=function(a){return CQ(a)?a:oO.prototype.nt.call(this,a)};E(BQ,"scala.collection.immutable.IndexedSeq$",{q3:1,dJ:1,xi:1,Hd:1,g:1});var DQ;function Sx(){DQ||(DQ=new BQ);return DQ}function TO(){this.OP=this.zw=null;this.Wv()}TO.prototype=new q;TO.prototype.constructor=TO;g=TO.prototype;g.Oc=function(){}; -g.Wv=function(){var a=new gk;this.OP=(cL(),new OO(new sp(()=>hk(a))));this.zw=a};function EQ(a){kk(a.zw,new sp(()=>WL()));return a.OP}function FQ(a,b){var c=new gk;kk(a.zw,new sp(()=>{cL();return new TL(b,(cL(),new OO(new sp(()=>hk(c)))))}));a.zw=c;return a}function GQ(a,b){if(0!==b.U()){var c=new gk;kk(a.zw,new sp(()=>SO(cL(),b.k(),new sp(()=>hk(c)))));a.zw=c}return a}g.Yc=function(a){return GQ(this,a)};g.Ma=function(a){return FQ(this,a)};g.$b=function(){return EQ(this)}; +BQ.prototype=new pO;BQ.prototype.constructor=BQ;BQ.prototype.Zb=function(a){return CQ(a)?a:oO.prototype.nt.call(this,a)};BQ.prototype.nt=function(a){return CQ(a)?a:oO.prototype.nt.call(this,a)};E(BQ,"scala.collection.immutable.IndexedSeq$",{q3:1,dJ:1,xi:1,Hd:1,g:1});var DQ;function Sx(){DQ||(DQ=new BQ);return DQ}function TO(){this.OP=this.Aw=null;this.Xv()}TO.prototype=new q;TO.prototype.constructor=TO;g=TO.prototype;g.Oc=function(){}; +g.Xv=function(){var a=new gk;this.OP=(cL(),new OO(new sp(()=>hk(a))));this.Aw=a};function EQ(a){kk(a.Aw,new sp(()=>WL()));return a.OP}function FQ(a,b){var c=new gk;kk(a.Aw,new sp(()=>{cL();return new TL(b,(cL(),new OO(new sp(()=>hk(c)))))}));a.Aw=c;return a}function GQ(a,b){if(0!==b.U()){var c=new gk;kk(a.Aw,new sp(()=>SO(cL(),b.k(),new sp(()=>hk(c)))));a.Aw=c}return a}g.Yc=function(a){return GQ(this,a)};g.Ma=function(a){return FQ(this,a)};g.$b=function(){return EQ(this)}; E(TO,"scala.collection.immutable.LazyList$LazyBuilder",{v3:1,Hm:1,Oe:1,xd:1,wd:1});function HQ(a){this.dB=a}HQ.prototype=new gO;HQ.prototype.constructor=HQ;HQ.prototype.d=function(){return!this.dB.v()};HQ.prototype.e=function(){if(this.dB.v())return W().t.e();var a=QO(this.dB).X();this.dB=QO(this.dB).ge();return a};E(HQ,"scala.collection.immutable.LazyList$LazyIterator",{x3:1,Pa:1,Da:1,I:1,J:1});function IQ(){}IQ.prototype=new q;IQ.prototype.constructor=IQ; IQ.prototype.Ba=function(a){return fy(R(),a)};IQ.prototype.Kb=function(){return new qE};IQ.prototype.Zb=function(a){return fy(R(),a)};E(IQ,"scala.collection.immutable.List$",{A3:1,$q:1,xi:1,Hd:1,g:1});var JQ;function JO(){JQ||(JQ=new IQ);return JQ}function KQ(){this.xo=0;this.Lt=null}KQ.prototype=new gO;KQ.prototype.constructor=KQ;function XQ(){}XQ.prototype=KQ.prototype;KQ.prototype.d=function(){return 2>this.xo}; KQ.prototype.e=function(){switch(this.xo){case 0:var a=this.Mg(this.Lt.nk,this.Lt.yo);break;case 1:a=this.Mg(this.Lt.ok,this.Lt.zo);break;default:a=W().t.e()}this.xo=1+this.xo|0;return a};KQ.prototype.Wd=function(a){this.xo=this.xo+a|0;return this};function YQ(){this.Bo=0;this.Ao=null}YQ.prototype=new gO;YQ.prototype.constructor=YQ;function ZQ(){}ZQ.prototype=YQ.prototype;YQ.prototype.d=function(){return 3>this.Bo}; -YQ.prototype.e=function(){switch(this.Bo){case 0:var a=this.Mg(this.Ao.jj,this.Ao.zm);break;case 1:a=this.Mg(this.Ao.kj,this.Ao.Am);break;case 2:a=this.Mg(this.Ao.lj,this.Ao.Bm);break;default:a=W().t.e()}this.Bo=1+this.Bo|0;return a};YQ.prototype.Wd=function(a){this.Bo=this.Bo+a|0;return this};function $Q(){this.Co=0;this.ql=null}$Q.prototype=new gO;$Q.prototype.constructor=$Q;function aR(){}aR.prototype=$Q.prototype;$Q.prototype.d=function(){return 4>this.Co}; -$Q.prototype.e=function(){switch(this.Co){case 0:var a=this.Mg(this.ql.Th,this.ql.pk);break;case 1:a=this.Mg(this.ql.Uh,this.ql.qk);break;case 2:a=this.Mg(this.ql.Vh,this.ql.rk);break;case 3:a=this.Mg(this.ql.Wh,this.ql.sk);break;default:a=W().t.e()}this.Co=1+this.Co|0;return a};$Q.prototype.Wd=function(a){this.Co=this.Co+a|0;return this};function eM(){this.Cm=null;this.Bw=!1;this.hr=null;this.Cm=ZL();this.Bw=!1}eM.prototype=new q;eM.prototype.constructor=eM;eM.prototype.Oc=function(){}; -function dM(a,b){return a.Bw?(IL(a.hr,b),a):Np(a,b)}eM.prototype.Yc=function(a){return dM(this,a)};eM.prototype.Ma=function(a){var b=a.Ia();a=a.la();if(this.Bw)uQ(this.hr,b,a);else if(4>this.Cm.Va())this.Cm=this.Cm.gu(b,a);else if(this.Cm.ya(b))this.Cm=this.Cm.gu(b,a);else{this.Bw=!0;null===this.hr&&(this.hr=new JL);var c=this.Cm;uQ(uQ(uQ(uQ(this.hr,c.Th,c.pk),c.Uh,c.qk),c.Vh,c.rk),c.Wh,c.sk);uQ(this.hr,b,a)}return this};eM.prototype.$b=function(){return this.Bw?HL(this.hr):this.Cm}; +YQ.prototype.e=function(){switch(this.Bo){case 0:var a=this.Mg(this.Ao.ij,this.Ao.zm);break;case 1:a=this.Mg(this.Ao.jj,this.Ao.Am);break;case 2:a=this.Mg(this.Ao.kj,this.Ao.Bm);break;default:a=W().t.e()}this.Bo=1+this.Bo|0;return a};YQ.prototype.Wd=function(a){this.Bo=this.Bo+a|0;return this};function $Q(){this.Co=0;this.ql=null}$Q.prototype=new gO;$Q.prototype.constructor=$Q;function aR(){}aR.prototype=$Q.prototype;$Q.prototype.d=function(){return 4>this.Co}; +$Q.prototype.e=function(){switch(this.Co){case 0:var a=this.Mg(this.ql.Th,this.ql.pk);break;case 1:a=this.Mg(this.ql.Uh,this.ql.qk);break;case 2:a=this.Mg(this.ql.Vh,this.ql.rk);break;case 3:a=this.Mg(this.ql.Wh,this.ql.sk);break;default:a=W().t.e()}this.Co=1+this.Co|0;return a};$Q.prototype.Wd=function(a){this.Co=this.Co+a|0;return this};function eM(){this.Cm=null;this.Cw=!1;this.hr=null;this.Cm=ZL();this.Cw=!1}eM.prototype=new q;eM.prototype.constructor=eM;eM.prototype.Oc=function(){}; +function dM(a,b){return a.Cw?(IL(a.hr,b),a):Np(a,b)}eM.prototype.Yc=function(a){return dM(this,a)};eM.prototype.Ma=function(a){var b=a.Ia();a=a.la();if(this.Cw)uQ(this.hr,b,a);else if(4>this.Cm.Va())this.Cm=this.Cm.gu(b,a);else if(this.Cm.ya(b))this.Cm=this.Cm.gu(b,a);else{this.Cw=!0;null===this.hr&&(this.hr=new JL);var c=this.Cm;uQ(uQ(uQ(uQ(this.hr,c.Th,c.pk),c.Uh,c.qk),c.Vh,c.rk),c.Wh,c.sk);uQ(this.hr,b,a)}return this};eM.prototype.$b=function(){return this.Cw?HL(this.hr):this.Cm}; E(eM,"scala.collection.immutable.MapBuilderImpl",{Q3:1,Hm:1,Oe:1,xd:1,wd:1});function bR(){this.nl=null;this.nl=JO()}bR.prototype=new pO;bR.prototype.constructor=bR;function lv(a,b){return b&&b.$classData&&b.$classData.Yb.sd?b:oO.prototype.nt.call(a,b)}bR.prototype.Zb=function(a){return lv(this,a)};bR.prototype.nt=function(a){return lv(this,a)};E(bR,"scala.collection.immutable.Seq$",{g4:1,dJ:1,xi:1,Hd:1,g:1});var cR;function mv(){cR||(cR=new bR);return cR} -function nM(){this.or=null;this.Iw=!1;this.pr=null;this.or=hM();this.Iw=!1}nM.prototype=new q;nM.prototype.constructor=nM;nM.prototype.Oc=function(){};function mM(a,b){return a.Iw?(QL(a.pr,b),a):Np(a,b)}nM.prototype.Yc=function(a){return mM(this,a)};nM.prototype.Ma=function(a){if(this.Iw)zQ(this.pr,a);else if(4>this.or.Va())this.or=this.or.Nq(a);else if(!this.or.ya(a)){this.Iw=!0;null===this.pr&&(this.pr=new RL);var b=this.or;this.pr.Ma(b.mr).Ma(b.Eo).Ma(b.Dm).Ma(b.Em);zQ(this.pr,a)}return this}; -nM.prototype.$b=function(){return this.Iw?PL(this.pr):this.or};E(nM,"scala.collection.immutable.SetBuilderImpl",{q4:1,Hm:1,Oe:1,xd:1,wd:1});function dR(){this.cQ=0;this.dQ=null;eR=this;try{var a=ek(fk(),Sd(Td(),"scala.collection.immutable.Vector.defaultApplyPreferredMaxLength","250"),10)}catch(b){throw b;}this.cQ=a;this.dQ=new fR(Vk(),0,0)}dR.prototype=new q;dR.prototype.constructor=dR;dR.prototype.Ba=function(a){return nL(a)}; -function nL(a){if(a instanceof gR)return a;var b=a.U();if(0===b)return Vk();if(0=b){a:{if(a instanceof hR){var c=a.nd().pd();if(null!==c&&c===ja(yc)){a=a.ol;break a}}YL(a)?(b=new Jb(b),a.ma(b,0,2147483647),a=b):(b=new Jb(b),a.k().ma(b,0,2147483647),a=b)}return new Wk(a)}return AL(new zL,a).kl()}dR.prototype.Kb=function(){return new zL};dR.prototype.Zb=function(a){return nL(a)};E(dR,"scala.collection.immutable.Vector$",{v4:1,$q:1,xi:1,Hd:1,g:1});var eR; +function nM(){this.or=null;this.Jw=!1;this.pr=null;this.or=hM();this.Jw=!1}nM.prototype=new q;nM.prototype.constructor=nM;nM.prototype.Oc=function(){};function mM(a,b){return a.Jw?(QL(a.pr,b),a):Np(a,b)}nM.prototype.Yc=function(a){return mM(this,a)};nM.prototype.Ma=function(a){if(this.Jw)zQ(this.pr,a);else if(4>this.or.Va())this.or=this.or.Nq(a);else if(!this.or.ya(a)){this.Jw=!0;null===this.pr&&(this.pr=new RL);var b=this.or;this.pr.Ma(b.mr).Ma(b.Eo).Ma(b.Dm).Ma(b.Em);zQ(this.pr,a)}return this}; +nM.prototype.$b=function(){return this.Jw?PL(this.pr):this.or};E(nM,"scala.collection.immutable.SetBuilderImpl",{q4:1,Hm:1,Oe:1,xd:1,wd:1});function dR(){this.cQ=0;this.dQ=null;eR=this;try{var a=ek(fk(),Sd(Td(),"scala.collection.immutable.Vector.defaultApplyPreferredMaxLength","250"),10)}catch(b){throw b;}this.cQ=a;this.dQ=new fR(Vk(),0,0)}dR.prototype=new q;dR.prototype.constructor=dR;dR.prototype.Ba=function(a){return nL(a)}; +function nL(a){if(a instanceof gR)return a;var b=a.U();if(0===b)return Vk();if(0=b){a:{if(a instanceof hR){var c=a.nd().pd();if(null!==c&&c===ja(zc)){a=a.ol;break a}}YL(a)?(b=new Ib(b),a.ma(b,0,2147483647),a=b):(b=new Ib(b),a.k().ma(b,0,2147483647),a=b)}return new Wk(a)}return AL(new zL,a).kl()}dR.prototype.Kb=function(){return new zL};dR.prototype.Zb=function(a){return nL(a)};E(dR,"scala.collection.immutable.Vector$",{v4:1,$q:1,xi:1,Hd:1,g:1});var eR; function lL(){eR||(eR=new dR);return eR}function iR(a,b){var c=b.a.length;if(0>>5|0);c=c>>5|0),c);lR(a,c<<5);0>>10|0);c=c>>10|0),c);lR(a,c<<10);0>>20|0);c=c>>20|0),c);lR(a,c<<20);0>>25|0;if(64<(c+e|0))throw de("exceeding 2^31 elements"); b.da(0,a.Ne,c,e);lR(a,e<<25);break;default:throw new G(c);}}};function nR(a,b){for(var c=b.xl(),d=0;dh?-h|0:h)|0;1===f?iR(a,e):32===a.zb||0===a.zb?mR(a,e,f):hl(Xk(),-2+f|0,e,new Nh(k=>{iR(a,k)}));d=1+d|0}return a}function jR(a){var b=32+a.bb|0,c=b^a.bb;a.bb=b;a.zb=0;oR(a,b,c)}function lR(a,b){if(0=c)throw de("advance1("+b+", "+c+"): a1\x3d"+a.pc+", a2\x3d"+a.yb+", a3\x3d"+a.Mb+", a4\x3d"+a.ic+", a5\x3d"+a.Mc+", a6\x3d"+a.Ne+", depth\x3d"+a.Nb);1024>c?(1>=a.Nb&&(a.yb=new (F(F(yc)).c)(32),a.yb.a[0]=a.pc,a.Nb=2),a.pc=new Jb(32),a.yb.a[31&(b>>>5|0)]=a.pc):32768>c?(2>=a.Nb&&(a.Mb=new (F(F(F(yc))).c)(32),a.Mb.a[0]=a.yb,a.Nb=3),a.pc=new Jb(32),a.yb=new (F(F(yc)).c)(32),a.yb.a[31&(b>>>5|0)]=a.pc,a.Mb.a[31&(b>>>10|0)]=a.yb):1048576>c?(3>=a.Nb&&(a.ic=new (F(F(F(F(yc)))).c)(32), -a.ic.a[0]=a.Mb,a.Nb=4),a.pc=new Jb(32),a.yb=new (F(F(yc)).c)(32),a.Mb=new (F(F(F(yc))).c)(32),a.yb.a[31&(b>>>5|0)]=a.pc,a.Mb.a[31&(b>>>10|0)]=a.yb,a.ic.a[31&(b>>>15|0)]=a.Mb):33554432>c?(4>=a.Nb&&(a.Mc=new (F(F(F(F(F(yc))))).c)(32),a.Mc.a[0]=a.ic,a.Nb=5),a.pc=new Jb(32),a.yb=new (F(F(yc)).c)(32),a.Mb=new (F(F(F(yc))).c)(32),a.ic=new (F(F(F(F(yc)))).c)(32),a.yb.a[31&(b>>>5|0)]=a.pc,a.Mb.a[31&(b>>>10|0)]=a.yb,a.ic.a[31&(b>>>15|0)]=a.Mb,a.Mc.a[31&(b>>>20|0)]=a.ic):(5>=a.Nb&&(a.Ne=new (F(F(F(F(F(F(yc)))))).c)(64), -a.Ne.a[0]=a.Mc,a.Nb=6),a.pc=new Jb(32),a.yb=new (F(F(yc)).c)(32),a.Mb=new (F(F(F(yc))).c)(32),a.ic=new (F(F(F(F(yc)))).c)(32),a.Mc=new (F(F(F(F(F(yc))))).c)(32),a.yb.a[31&(b>>>5|0)]=a.pc,a.Mb.a[31&(b>>>10|0)]=a.yb,a.ic.a[31&(b>>>15|0)]=a.Mb,a.Mc.a[31&(b>>>20|0)]=a.ic,a.Ne.a[b>>>25|0]=a.Mc)}function zL(){this.pc=this.yb=this.Mb=this.ic=this.Mc=this.Ne=null;this.Lb=this.bb=this.zb=0;this.$E=!1;this.Nb=0;this.pc=new Jb(32);this.Lb=this.bb=this.zb=0;this.$E=!1;this.Nb=1}zL.prototype=new q; +function oR(a,b,c){if(0>=c)throw de("advance1("+b+", "+c+"): a1\x3d"+a.pc+", a2\x3d"+a.yb+", a3\x3d"+a.Mb+", a4\x3d"+a.ic+", a5\x3d"+a.Mc+", a6\x3d"+a.Ne+", depth\x3d"+a.Nb);1024>c?(1>=a.Nb&&(a.yb=new (F(F(zc)).c)(32),a.yb.a[0]=a.pc,a.Nb=2),a.pc=new Ib(32),a.yb.a[31&(b>>>5|0)]=a.pc):32768>c?(2>=a.Nb&&(a.Mb=new (F(F(F(zc))).c)(32),a.Mb.a[0]=a.yb,a.Nb=3),a.pc=new Ib(32),a.yb=new (F(F(zc)).c)(32),a.yb.a[31&(b>>>5|0)]=a.pc,a.Mb.a[31&(b>>>10|0)]=a.yb):1048576>c?(3>=a.Nb&&(a.ic=new (F(F(F(F(zc)))).c)(32), +a.ic.a[0]=a.Mb,a.Nb=4),a.pc=new Ib(32),a.yb=new (F(F(zc)).c)(32),a.Mb=new (F(F(F(zc))).c)(32),a.yb.a[31&(b>>>5|0)]=a.pc,a.Mb.a[31&(b>>>10|0)]=a.yb,a.ic.a[31&(b>>>15|0)]=a.Mb):33554432>c?(4>=a.Nb&&(a.Mc=new (F(F(F(F(F(zc))))).c)(32),a.Mc.a[0]=a.ic,a.Nb=5),a.pc=new Ib(32),a.yb=new (F(F(zc)).c)(32),a.Mb=new (F(F(F(zc))).c)(32),a.ic=new (F(F(F(F(zc)))).c)(32),a.yb.a[31&(b>>>5|0)]=a.pc,a.Mb.a[31&(b>>>10|0)]=a.yb,a.ic.a[31&(b>>>15|0)]=a.Mb,a.Mc.a[31&(b>>>20|0)]=a.ic):(5>=a.Nb&&(a.Ne=new (F(F(F(F(F(F(zc)))))).c)(64), +a.Ne.a[0]=a.Mc,a.Nb=6),a.pc=new Ib(32),a.yb=new (F(F(zc)).c)(32),a.Mb=new (F(F(F(zc))).c)(32),a.ic=new (F(F(F(F(zc)))).c)(32),a.Mc=new (F(F(F(F(F(zc))))).c)(32),a.yb.a[31&(b>>>5|0)]=a.pc,a.Mb.a[31&(b>>>10|0)]=a.yb,a.ic.a[31&(b>>>15|0)]=a.Mb,a.Mc.a[31&(b>>>20|0)]=a.ic,a.Ne.a[b>>>25|0]=a.Mc)}function zL(){this.pc=this.yb=this.Mb=this.ic=this.Mc=this.Ne=null;this.Lb=this.bb=this.zb=0;this.$E=!1;this.Nb=0;this.pc=new Ib(32);this.Lb=this.bb=this.zb=0;this.$E=!1;this.Nb=1}zL.prototype=new q; zL.prototype.constructor=zL;g=zL.prototype;g.Oc=function(){};function pR(a,b){a.Nb=1;var c=b.a.length;a.zb=31&c;a.bb=c-a.zb|0;a.pc=32===b.a.length?b:Yf($f(),b,0,32);0===a.zb&&0>>25|0;0>>25|0)&&(this.Nb=5);b=a;a=a.a[0]}if(5<=this.Nb){null===a&&(a=this.Mc);var e=31&(this.Lb>>>20|0);if(5===this.Nb){0>>20|0)&&(this.Nb=4)}else 0>>15|0);if(4===this.Nb){0>>15|0)&&(this.Nb=3)}else 0>>10|0);if(3===this.Nb){0>>10|0)&&(this.Nb=2)}else 0>>5|0);if(2===this.Nb){0>>5|0)&&(this.Nb=1)}else 0D)throw Wl(new Xl,"Vector cannot have negative size "+D);if(32>=D){var O=this.pc;return new Wk(O.a.length===S?O:Of($f(),O,S))}if(1024>=D){var K=31&(-1+D|0),oa=(-1+D|0)>>>5|0,ca=Yf($f(),this.yb,1,oa),ta=this.yb.a[0],sa=this.yb.a[oa],Ea=1+K|0,ab=sa.a.length===Ea?sa:Of($f(),sa,Ea);return new Yk(ta,32-this.Lb|0,ca,ab,S)}if(32768>=D){var Ta=31&(-1+D|0),db=31&((-1+D|0)>>>5|0),fb=(-1+D|0)>>>10|0,ya=Yf($f(),this.Mb,1,fb),Ka=this.Mb.a[0],Sa=Yf($f(),Ka,1,Ka.a.length),Ca=this.Mb.a[0].a[0], -Fa=Of($f(),this.Mb.a[fb],db),Hb=this.Mb.a[fb].a[db],Ib=1+Ta|0,hc=Hb.a.length===Ib?Hb:Of($f(),Hb,Ib),Qb=Ca.a.length;return new Zk(Ca,Qb,Sa,Qb+(Sa.a.length<<5)|0,ya,Fa,hc,S)}if(1048576>=D){var Wa=31&(-1+D|0),Ha=31&((-1+D|0)>>>5|0),Ia=31&((-1+D|0)>>>10|0),ma=(-1+D|0)>>>15|0,pb=Yf($f(),this.ic,1,ma),Qa=this.ic.a[0],Bc=Yf($f(),Qa,1,Qa.a.length),Jc=this.ic.a[0].a[0],rc=Yf($f(),Jc,1,Jc.a.length),nc=this.ic.a[0].a[0].a[0],Rc=Of($f(),this.ic.a[ma],Ia),sc=Of($f(),this.ic.a[ma].a[Ia],Ha),ic=this.ic.a[ma].a[Ia].a[Ha], -mb=1+Wa|0,Zb=ic.a.length===mb?ic:Of($f(),ic,mb),Ub=nc.a.length,gb=Ub+(rc.a.length<<5)|0;return new $k(nc,Ub,rc,gb,Bc,gb+(Bc.a.length<<10)|0,pb,Rc,sc,Zb,S)}if(33554432>=D){var tc=31&(-1+D|0),$b=31&((-1+D|0)>>>5|0),Eb=31&((-1+D|0)>>>10|0),ac=31&((-1+D|0)>>>15|0),jc=(-1+D|0)>>>20|0,oc=Yf($f(),this.Mc,1,jc),pc=this.Mc.a[0],nb=Yf($f(),pc,1,pc.a.length),bc=this.Mc.a[0].a[0],Fb=Yf($f(),bc,1,bc.a.length),Oa=this.Mc.a[0].a[0].a[0],Ec=Yf($f(),Oa,1,Oa.a.length),kc=this.Mc.a[0].a[0].a[0].a[0],Xc=Of($f(),this.Mc.a[jc], -ac),Vb=Of($f(),this.Mc.a[jc].a[ac],Eb),Fc=Of($f(),this.Mc.a[jc].a[ac].a[Eb],$b),uc=this.Mc.a[jc].a[ac].a[Eb].a[$b],lc=1+tc|0,cc=uc.a.length===lc?uc:Of($f(),uc,lc),Ab=kc.a.length,yb=Ab+(Ec.a.length<<5)|0,Lb=yb+(Fb.a.length<<10)|0;return new al(kc,Ab,Ec,yb,Fb,Lb,nb,Lb+(nb.a.length<<15)|0,oc,Xc,Vb,Fc,cc,S)}var mc=31&(-1+D|0),hb=31&((-1+D|0)>>>5|0),ib=31&((-1+D|0)>>>10|0),dc=31&((-1+D|0)>>>15|0),vb=31&((-1+D|0)>>>20|0),Wb=(-1+D|0)>>>25|0,vc=Yf($f(),this.Ne,1,Wb),Mb=this.Ne.a[0],ec=Yf($f(),Mb,1,Mb.a.length), -wc=this.Ne.a[0].a[0],Gb=Yf($f(),wc,1,wc.a.length),Gc=this.Ne.a[0].a[0].a[0],fc=Yf($f(),Gc,1,Gc.a.length),Rb=this.Ne.a[0].a[0].a[0].a[0],Cc=Yf($f(),Rb,1,Rb.a.length),Xb=this.Ne.a[0].a[0].a[0].a[0].a[0],gc=Of($f(),this.Ne.a[Wb],vb),wb=Of($f(),this.Ne.a[Wb].a[vb],dc),Yc=Of($f(),this.Ne.a[Wb].a[vb].a[dc],ib),Kc=Of($f(),this.Ne.a[Wb].a[vb].a[dc].a[ib],hb),qc=this.Ne.a[Wb].a[vb].a[dc].a[ib].a[hb],Ya=1+mc|0,Sc=qc.a.length===Ya?qc:Of($f(),qc,Ya),jb=Xb.a.length,Lc=jb+(Cc.a.length<<5)|0,Tc=Lc+(fc.a.length<< -10)|0,Hc=Tc+(Gb.a.length<<15)|0;return new bl(Xb,jb,Cc,Lc,fc,Tc,Gb,Hc,ec,Hc+(ec.a.length<<20)|0,vc,gc,wb,Yc,Kc,Sc,S)};g.j=function(){return"VectorBuilder(len1\x3d"+this.zb+", lenRest\x3d"+this.bb+", offset\x3d"+this.Lb+", depth\x3d"+this.Nb+")"};g.$b=function(){return this.kl()};g.Yc=function(a){return AL(this,a)};g.Ma=function(a){return BL(this,a)};E(zL,"scala.collection.immutable.VectorBuilder",{D4:1,Hm:1,Oe:1,xd:1,wd:1});function qR(){this.gQ=null;rR=this;this.gQ=new Jb(0)}qR.prototype=new q; -qR.prototype.constructor=qR;qR.prototype.Ba=function(a){return no(this,a)};function no(a,b){var c=b.U();if(0<=c){a=sR(0,a.gQ,0,c);b=kF(b)?b.ma(a,0,2147483647):b.k().ma(a,0,2147483647);if(b!==c)throw ik("Copied "+b+" of "+c);b=new tR;b.nj=0;b.lg=a;b.w=c;return b}return ov(fK(),b)}qR.prototype.Kb=function(){return new lx}; -function sR(a,b,c,d){a=b.a.length;if(0>d)throw b=new wK,uk(b,"Overflow while resizing array of array-backed collection. Requested length: "+d+"; current length: "+a+"; increase: "+(d-a|0),!0),b;if(d<=a)d=-1;else{if(2147483639a?d:a)}if(0>d)return b;d=new Jb(d);b.da(0,d,0,c);return d} +Fa=Of($f(),this.Mb.a[fb],db),Gb=this.Mb.a[fb].a[db],Hb=1+Ta|0,hc=Gb.a.length===Hb?Gb:Of($f(),Gb,Hb),Qb=Ca.a.length;return new Zk(Ca,Qb,Sa,Qb+(Sa.a.length<<5)|0,ya,Fa,hc,S)}if(1048576>=D){var Wa=31&(-1+D|0),Ha=31&((-1+D|0)>>>5|0),Ia=31&((-1+D|0)>>>10|0),ma=(-1+D|0)>>>15|0,pb=Yf($f(),this.ic,1,ma),Qa=this.ic.a[0],Cc=Yf($f(),Qa,1,Qa.a.length),Lc=this.ic.a[0].a[0],rc=Yf($f(),Lc,1,Lc.a.length),nc=this.ic.a[0].a[0].a[0],Tc=Of($f(),this.ic.a[ma],Ia),sc=Of($f(),this.ic.a[ma].a[Ia],Ha),ic=this.ic.a[ma].a[Ia].a[Ha], +mb=1+Wa|0,Zb=ic.a.length===mb?ic:Of($f(),ic,mb),Ub=nc.a.length,gb=Ub+(rc.a.length<<5)|0;return new $k(nc,Ub,rc,gb,Cc,gb+(Cc.a.length<<10)|0,pb,Tc,sc,Zb,S)}if(33554432>=D){var tc=31&(-1+D|0),$b=31&((-1+D|0)>>>5|0),Db=31&((-1+D|0)>>>10|0),ac=31&((-1+D|0)>>>15|0),jc=(-1+D|0)>>>20|0,oc=Yf($f(),this.Mc,1,jc),pc=this.Mc.a[0],nb=Yf($f(),pc,1,pc.a.length),bc=this.Mc.a[0].a[0],Eb=Yf($f(),bc,1,bc.a.length),Oa=this.Mc.a[0].a[0].a[0],Fc=Yf($f(),Oa,1,Oa.a.length),kc=this.Mc.a[0].a[0].a[0].a[0],Yc=Of($f(),this.Mc.a[jc], +ac),Vb=Of($f(),this.Mc.a[jc].a[ac],Db),Gc=Of($f(),this.Mc.a[jc].a[ac].a[Db],$b),uc=this.Mc.a[jc].a[ac].a[Db].a[$b],lc=1+tc|0,cc=uc.a.length===lc?uc:Of($f(),uc,lc),zb=kc.a.length,xb=zb+(Fc.a.length<<5)|0,Kb=xb+(Eb.a.length<<10)|0;return new al(kc,zb,Fc,xb,Eb,Kb,nb,Kb+(nb.a.length<<15)|0,oc,Yc,Vb,Gc,cc,S)}var mc=31&(-1+D|0),hb=31&((-1+D|0)>>>5|0),ib=31&((-1+D|0)>>>10|0),dc=31&((-1+D|0)>>>15|0),vb=31&((-1+D|0)>>>20|0),Wb=(-1+D|0)>>>25|0,vc=Yf($f(),this.Ne,1,Wb),Lb=this.Ne.a[0],ec=Yf($f(),Lb,1,Lb.a.length), +wc=this.Ne.a[0].a[0],Fb=Yf($f(),wc,1,wc.a.length),Hc=this.Ne.a[0].a[0].a[0],fc=Yf($f(),Hc,1,Hc.a.length),Rb=this.Ne.a[0].a[0].a[0].a[0],Dc=Yf($f(),Rb,1,Rb.a.length),Xb=this.Ne.a[0].a[0].a[0].a[0].a[0],gc=Of($f(),this.Ne.a[Wb],vb),xc=Of($f(),this.Ne.a[Wb].a[vb],dc),Mb=Of($f(),this.Ne.a[Wb].a[vb].a[dc],ib),Mc=Of($f(),this.Ne.a[Wb].a[vb].a[dc].a[ib],hb),qc=this.Ne.a[Wb].a[vb].a[dc].a[ib].a[hb],Ya=1+mc|0,Uc=qc.a.length===Ya?qc:Of($f(),qc,Ya),jb=Xb.a.length,Nc=jb+(Dc.a.length<<5)|0,Vc=Nc+(fc.a.length<< +10)|0,Ic=Vc+(Fb.a.length<<15)|0;return new bl(Xb,jb,Dc,Nc,fc,Vc,Fb,Ic,ec,Ic+(ec.a.length<<20)|0,vc,gc,xc,Mb,Mc,Uc,S)};g.j=function(){return"VectorBuilder(len1\x3d"+this.zb+", lenRest\x3d"+this.bb+", offset\x3d"+this.Lb+", depth\x3d"+this.Nb+")"};g.$b=function(){return this.kl()};g.Yc=function(a){return AL(this,a)};g.Ma=function(a){return BL(this,a)};E(zL,"scala.collection.immutable.VectorBuilder",{D4:1,Hm:1,Oe:1,xd:1,wd:1});function qR(){this.gQ=null;rR=this;this.gQ=new Ib(0)}qR.prototype=new q; +qR.prototype.constructor=qR;qR.prototype.Ba=function(a){return no(this,a)};function no(a,b){var c=b.U();if(0<=c){a=sR(0,a.gQ,0,c);b=kF(b)?b.ma(a,0,2147483647):b.k().ma(a,0,2147483647);if(b!==c)throw ik("Copied "+b+" of "+c);b=new tR;b.mj=0;b.lg=a;b.w=c;return b}return ov(fK(),b)}qR.prototype.Kb=function(){return new lx}; +function sR(a,b,c,d){a=b.a.length;if(0>d)throw b=new wK,uk(b,"Overflow while resizing array of array-backed collection. Requested length: "+d+"; current length: "+a+"; increase: "+(d-a|0),!0),b;if(d<=a)d=-1;else{if(2147483639a?d:a)}if(0>d)return b;d=new Ib(d);b.da(0,d,0,c);return d} qR.prototype.Zb=function(a){return no(this,a)};E(qR,"scala.collection.mutable.ArrayBuffer$",{I4:1,$q:1,xi:1,Hd:1,g:1});var rR;function mo(){rR||(rR=new qR);return rR}function lx(){this.yd=null;DO(this,(mo(),fK()))}lx.prototype=new UO;lx.prototype.constructor=lx;lx.prototype.Oc=function(a){this.yd.Oc(a)};E(lx,"scala.collection.mutable.ArrayBuffer$$anon$1",{J4:1,bF:1,Oe:1,xd:1,wd:1});function uR(){}uR.prototype=new q;uR.prototype.constructor=uR;uR.prototype.Ba=function(a){return vR(a)}; -function vR(a){var b=a.U();if(0<=b){var c=wR(0,b);a=kF(a)?a.ma(c,0,2147483647):a.k().ma(c,0,2147483647);if(a!==b)throw ik("Copied "+a+" of "+b);return xR(new yR,c,b)}return ht(zR(),a)}uR.prototype.Kb=function(){return new AR};function wR(a,b){if(!(0<=b))throw de("requirement failed: Non-negative array size required");a=(-2147483648>>>(Math.clz32(b)|0)|0)<<1;if(!(0<=a))throw de("requirement failed: ArrayDeque too big - cannot allocate ArrayDeque of length "+b);return new Jb(16>>(Math.clz32(b)|0)|0)<<1;if(!(0<=a))throw de("requirement failed: ArrayDeque too big - cannot allocate ArrayDeque of length "+b);return new Ib(16((b.vc-b.Ob|0)&(-1+b.gb.a.length|0))&&a>=b.gb.a.length&&DR(b,a)};E(AR,"scala.collection.mutable.ArrayDeque$$anon$1",{O4:1,bF:1,Oe:1,xd:1,wd:1});function zI(){this.nl=null;this.nl=ER()}zI.prototype=new pO; zI.prototype.constructor=zI;E(zI,"scala.collection.mutable.Buffer$",{a5:1,dJ:1,xi:1,Hd:1,g:1});var yI;function uM(a,b){this.yd=null;DO(this,sM(new tM,a,b))}uM.prototype=new UO;uM.prototype.constructor=uM;uM.prototype.Oc=function(a){this.yd.Oc(a)};E(uM,"scala.collection.mutable.HashMap$$anon$6",{n5:1,bF:1,Oe:1,xd:1,wd:1});function FR(a,b){a.cu=b;a.Gm=0;a.vl=null;a.du=b.$.a.length}function GR(){this.Gm=0;this.vl=null;this.du=0;this.cu=null}GR.prototype=new gO;GR.prototype.constructor=GR; function HR(){}HR.prototype=GR.prototype;GR.prototype.d=function(){if(null!==this.vl)return!0;for(;this.Gmnew Q(a.Jo)))};kS.prototype.Zb=function(a){return lS(this,a)};E(kS,"scala.scalajs.runtime.WrappedVarArgs$",{a6:1,$q:1,xi:1,Hd:1,g:1});var nS;function oS(){nS||(nS=new kS);return nS} @@ -1660,30 +1660,30 @@ g.D=function(a){switch(a){case 0:return this.Ar;case 1:return this.Bl;case 2:ret g.b=function(a){if(this===a)return!0;if(a instanceof rq&&this.Ar===a.Ar&&this.Bl===a.Bl&&this.Km===a.Km){var b=this.Al,c=a.Al;if(null===b?null===c:b.b(c))return b=this.zl,a=a.zl,null===b?null===a:b.b(a)}return!1};E(rq,"tigerpython.parser.ast.AstNode$Arguments",{DT:1,ra:1,E:1,q:1,g:1});function sq(a,b,c,d){this.qu=a;this.Om=b;this.zk=c;this.Er=d}sq.prototype=new $p;sq.prototype.constructor=sq;g=sq.prototype;g.p=function(){return this.qu};g.sm=function(){return Gp().uK}; g.j=function(){try{return 0!==this.Er.a.length?Vj(L(),"Comprehension(%s, %s; if %s)",new Q([this.Om.j(),this.zk.j(),Gj(mn(nj(),this.Er),"",", ","")])):Vj(L(),"Comprehension(%s, %s)",new Q([this.Om.j(),this.zk.j()]))}catch(a){if(a instanceof mm)return Vj(L(),"Comprehension(%d, ???)",new Q([this.qu]));throw a;}};g.B=function(){return"Comprehension"};g.C=function(){return 4}; g.D=function(a){switch(a){case 0:return this.qu;case 1:return this.Om;case 2:return this.zk;case 3:return this.Er;default:return N(P(),a)}};g.s=function(){var a=-889275714;a=P().f(a,$a("Comprehension"));a=P().f(a,this.qu);a=P().f(a,M(P(),this.Om));a=P().f(a,M(P(),this.zk));a=P().f(a,M(P(),this.Er));return P().L(a,4)}; -g.b=function(a){if(this===a)return!0;if(a instanceof sq){if(this.qu===a.qu){var b=this.Om,c=a.Om;b=null===b?null===c:b.b(c)}else b=!1;if(b)return b=this.zk,c=a.zk,(null===b?null===c:b.b(c))?this.Er===a.Er:!1}return!1};var iv=E(sq,"tigerpython.parser.ast.AstNode$Comprehension",{ST:1,ra:1,E:1,q:1,g:1});function Mv(a,b){return 0!==a.id.a.length?(a=a.id.a[0],a instanceof Cn?b.ya(a.pg):!1):!1}function Dn(a,b,c,d,e,f,h){this.ep=a;this.id=b;this.vf=c;this.Vx=d;this.dp=e;this.Qf=f;this.qg=h} +g.b=function(a){if(this===a)return!0;if(a instanceof sq){if(this.qu===a.qu){var b=this.Om,c=a.Om;b=null===b?null===c:b.b(c)}else b=!1;if(b)return b=this.zk,c=a.zk,(null===b?null===c:b.b(c))?this.Er===a.Er:!1}return!1};var iv=E(sq,"tigerpython.parser.ast.AstNode$Comprehension",{ST:1,ra:1,E:1,q:1,g:1});function Mv(a,b){return 0!==a.id.a.length?(a=a.id.a[0],a instanceof Cn?b.ya(a.pg):!1):!1}function Dn(a,b,c,d,e,f,h){this.ep=a;this.id=b;this.vf=c;this.Wx=d;this.dp=e;this.Qf=f;this.qg=h} Dn.prototype=new $p;Dn.prototype.constructor=Dn;g=Dn.prototype;g.p=function(){return this.ep};g.sm=function(){return Gp().TK};function Lv(a){return Mv(a,new Q("self this cls class type klass metacls mcls".split(" ")))} g.j=function(){var a=mo(),b=R();a=no(a,b);b=this.id.a.length-this.vf.a.length|0;var c=-1+b|0;if(!(0>=b))for(var d=0;;){var e=this.id.a[d].j();oo(a,e);if(d===c)break;d=1+d|0}c=fj(Ch(),this.vf);if(!c.bc)for(d=c.qb;;){e=d;e=Vj(L(),"%s\x3d%s",new Q([this.id.a[e+b|0].j(),this.vf.a[e].j()]));oo(a,e);if(d===c.ze)break;d=d+c.Ya|0}b=Vj(L(),"(pos-max: %d)",new Q([this.dp]));oo(a,b);null!==this.Qf&&(b="*"+Ql(this.Qf),oo(a,b));null!==this.qg&&(b="**"+Ql(this.qg),oo(a,b));return"Parameters("+Gj(a,"",", ","")+ -")"};g.B=function(){return"Parameters"};g.C=function(){return 7};g.D=function(a){switch(a){case 0:return this.ep;case 1:return this.id;case 2:return this.vf;case 3:return this.Vx;case 4:return this.dp;case 5:return this.Qf;case 6:return this.qg;default:return N(P(),a)}}; -g.s=function(){var a=-889275714;a=P().f(a,$a("Parameters"));a=P().f(a,this.ep);a=P().f(a,M(P(),this.id));a=P().f(a,M(P(),this.vf));a=P().f(a,this.Vx);a=P().f(a,this.dp);a=P().f(a,M(P(),this.Qf));a=P().f(a,M(P(),this.qg));return P().L(a,7)};g.b=function(a){if(this===a)return!0;if(a instanceof Dn&&this.ep===a.ep&&this.Vx===a.Vx&&this.dp===a.dp&&this.id===a.id){if(this.vf===a.vf){var b=this.Qf,c=a.Qf;b=null===b?null===c:b.b(c)}else b=!1;if(b)return b=this.qg,a=a.qg,null===b?null===a:b.b(a)}return!1}; +")"};g.B=function(){return"Parameters"};g.C=function(){return 7};g.D=function(a){switch(a){case 0:return this.ep;case 1:return this.id;case 2:return this.vf;case 3:return this.Wx;case 4:return this.dp;case 5:return this.Qf;case 6:return this.qg;default:return N(P(),a)}}; +g.s=function(){var a=-889275714;a=P().f(a,$a("Parameters"));a=P().f(a,this.ep);a=P().f(a,M(P(),this.id));a=P().f(a,M(P(),this.vf));a=P().f(a,this.Wx);a=P().f(a,this.dp);a=P().f(a,M(P(),this.Qf));a=P().f(a,M(P(),this.qg));return P().L(a,7)};g.b=function(a){if(this===a)return!0;if(a instanceof Dn&&this.ep===a.ep&&this.Wx===a.Wx&&this.dp===a.dp&&this.id===a.id){if(this.vf===a.vf){var b=this.Qf,c=a.Qf;b=null===b?null===c:b.b(c)}else b=!1;if(b)return b=this.qg,a=a.qg,null===b?null===a:b.b(a)}return!1}; E(Dn,"tigerpython.parser.ast.AstNode$Parameters",{HU:1,ra:1,E:1,q:1,g:1}); function pS(a,b,c){if(X().Ib===c||X().kd===c)return c=new vt(Vq(a.F,b),b,c),c.ta=br(a.F,c.A,b),c;if(X().S===c){c=new vt(Vq(a.F,b),b,c);var d=br(a.F,c.A,b);c.ta=d;var e=a.F;for(var f=e.Ja;fb&&qS(a,br(a.F,c.Rc-d|0,d),e);return c}if(X().Qc===c||X().Bd=== c){c=new vt(Vq(a.F,b),b,c);a=br(a.F,c.A,b);if(null!==a&&""!==a){b=a.charCodeAt(0);e=new rS;d=Rj(new Sj,0+a.length|0);d.P=""+d.P;e.wc=d;for(d=0;d=b))for(var h=0;;){switch(a.F.xa(h)){case 98:case 66:f?c=!0:(f=X().Qc,c=c!==f);f=c?!0:d.a[0];c=X().ns;d.a[0]=!0;break;case 117:case 85:f?c=!0:(f=X().Qc,c=c!==f);f=c?!0:d.a[1];c=X().Bd;d.a[1]=!0;break;case 114:case 82:f=f||d.a[2];d.a[2]=!0;break;case 102:case 70:f=f||d.a[3];d.a[3]=!0;break;case 116:case 84:f=f||d.a[4];d.a[4]=!0;break; -default:f=!0}if(h===e)break;h=1+h|0}2===b&&d.a[2]||(f?f=!0:1>>16|0;var e=d&(-1+a.$.a.length|0),f=a.$.a[e];f=null===f?null:ll(f,b,d);if(null!==f)b=f.Cc;else{f=a.$;var h=new Qq;(1+a.Nc|0)>=a.Bi&&EA(a,a.$.a.length<<1);FA(a,b,h,d,f===a.$?e:d&(-1+a.$.a.length|0));b=h}}b.kG=1+b.kG|0;switch(c){case 40:b.iG=1+b.iG|0;break;case 91:b.jG=1+b.jG|0;break;case 46:b.QL=1+b.QL| 0}}}function xS(a,b){if(!a.Cy)switch(b){case 40:case 91:case 123:et(a.Pk,p(b));break;case 41:uS(a,40);break;case 93:uS(a,91);break;case 125:uS(a,123)}} -function wS(a){if(0 +function wS(a){if(0 a.Ve.Sc&&(b=a.Ve,c=a.F.Ja,d=V().Aj,b.n(c,-1,d,new Q([":\x3d","\x3d"]))),pS(a,2,X().Iy);b=X();c=a.F.xa(0);return pS(a,1,sr(b,""+tb(c)))}c=Mq().Ay;if(null===c?null===b:c.b(b)){b=AS(a);c=b.o;d=X().Ib;if(c===d&&44===a.F.xa(0)&&Zq(Lq(),a.F.xa(1))){c=cr(a.F,b.A);d=a.F;e=b.A;for(var f=a.F,h=u=>Zq(Lq(),Ra(u)),k=1+f.Ja|0,m=k=0a.Ve.Sc)b=2;else{for(c=2;32===a.F.xa(c);)c=1+c|0;Zq(Lq(),a.F.xa(c))?c=!0:2=b))for(f=0;;){if(Ba(d.ca,d.Ja+f|0)!==k)throw new gS(c,0);if(f===e)break;f=1+f|0}h=k}else h=32}catch(m){if(m instanceof yr){h=m;if(h.Vb===c){h=h.CQ();break a}throw h;}throw m;}}0===h&&(k=a.Ve,c=a.F.Ja,d=V().kn,e=R(),k.n(c,-1,d,e));h=32!==h?new vt(Vq(a.F,b),b<<3,X().Zl):pS(a,b,X().Zl)}a.lG=a.F.Ja;return h} function AS(a){if(48!==a.F.xa(0)||Zq(Lq(),a.F.xa(1))||46===a.F.xa(1)){for(var b=X().Ib,c=a.F,d=k=>Zq(Lq(),Ra(k)),e=c.Ja,f=e=0Zq(Lq(),Ra(k));e=c.Ja+(1+e|0)|0;for(f=e=0(2+b|0)){if(c=58===a.F.xa(-1+e|0))a:{c=a.F;d=a.lG;if(0<=d){for(f=d;fb?(c=a.F.xa(-1+e|0),c=cp(new Q([p(41),p(93),p(125)]),p(c))):c=!1,c)e= -1+e|0;else break;else if(!a.Pk.v()){for(c=0;;){e>b?(d=a.Pk,d=c<((d.vc-d.Ob|0)&(-1+d.gb.a.length|0))):d=!1;if(d)switch(a.F.xa(-1+e|0)){case 41:d=40===Ra(a.Pk.u(c));break;case 93:d=91===Ra(a.Pk.u(c));break;case 125:d=123===Ra(a.Pk.u(c));break;default:d=!1}else d=!1;if(d)e=-1+e|0,c=1+c|0;else break}0===c&&44===a.F.xa(-1+e|0)&&(e=-1+e|0)}c=a.Ve;d=a.F.Ja;f=V().Wl;h=R();c.n(d,-1,f,h)}else if(39===d&&e===(2+b|0)&&bA(Lq(),a.F.xa(e))){a:{for(c=1+e|0;32<=a.F.xa(c);){if(39===a.F.xa(c)&&39===a.F.xa(1+c|0)){c= new T(c);break a}c=1+c|0}c=up()}if(c instanceof T)e=c.Y|0,c=a.Ve,d=a.F.Ja,f=V().dG,c.n(d,-1,f,new Q(["''"])),e=2+e|0;else if(up()!==c)throw new G(c);}return pS(a,e,sS(a,b))}g.e=function(){return this.Q()};g.X=function(){return this.fa()};E(Pw,"tigerpython.parser.lexer.Lexer",{CV:1,SA:1,Da:1,I:1,J:1});function mu(a,b){if(null!==a.Ey){var c=0;var d=-1+b|0;if(!(0>=b))for(b=0;;){10===Ba(a.Ey,b)&&(c=1+c|0);if(b===d)break;b=1+b|0}return c}return-1} -function iP(a,b,c){this.Ey=b;this.Ni=c;this.Wa=a;this.Sa=0}iP.prototype=new q;iP.prototype.constructor=iP;g=iP.prototype;g.bl=function(){return this};g.k=function(){return this};g.ti=function(a){return MK(this,a)};g.Wd=function(a){return OK(this,a,-1)};g.j=function(){return"\x3citerator\x3e"};g.Oh=function(a){return yj(this,a)};g.ma=function(a,b,c){return Aj(this,a,b,c)};g.Eg=function(a,b,c,d){return Ij(this,a,b,c,d)};g.tf=function(a){return Jj(this,a)};g.U=function(){return-1}; -g.d=function(){return this.Savr(X(),a.fa(),e))):!1}g.il=function(){if(this.d()){var a=this.Wa.Kg().o,b=X().ea;return a===b}return!1}; +function Cs(a,b){if(a.d()&&a.fa().o===b)return a.Sa=1+a.Sa|0,!0;if(null!==a.Mi)if(a.d()){if(b.vg===X().ab){var c=a.fa().o,d=X().S;c=c===d}else c=!1;if(c&&vr(X(),a.fa(),b))return a.Mi.n(a.p(),mu(a,a.p()),V().Pc,new Q([a.fa(),b])),a.Sa=1+a.Sa|0,!0;c=X().ea;b===c?(c=a.hc(),c=cp(new Q([X().xf,X().zd]),c)):c=!1;c?a.Mi.n(a.p(),mu(a,a.p()),V().ZB,new Q([b.Ij,a.hc().Ij])):(c=X().ea,b===c?(c=a.Wa.Kg().o,d=X().ea,c=c===d):c=!1,c?a.Mi.n(a.p(),mu(a,a.p()),V().Pb,new Q([a.fa()])):a.Mi.n(a.p(),mu(a,a.p()),V().ii, +new Q([b,a.fa()])),c=X().ea,b===c&&1===a.Yi()?(b=a.fa().o,b=cp(new Q([X().zd,X().Aa,X().xf]),b)):b=!1,b&&(a.Sa=1+a.Sa|0))}else c=X().ea,b===c?a.Mi.n(a.p(),mu(a,a.p()),V().an,R()):a.Mi.n(a.p(),mu(a,a.p()),V().Kk,new Q([b]));return!1}function Pt(a){var b=new Q([X().ms,X().rs,X().ld,X().lc,X().tb,X().Bh]);if(a.d()){var c=a.fa().o,d=X().S;c=c===d}else c=!1;return c?b.it(new Nh(e=>vr(X(),a.fa(),e))):!1}g.il=function(){if(this.d()){var a=this.Wa.Kg().o,b=X().ea;return a===b}return!1}; g.nI=function(){for(var a=this.Sa;a{var h=f.o,k=X().S;return h===k?"to"===f.ta:!1},c=a.Sa+0|0,d=0;;){if(cd)return!1}else{if(X().ea===e&&0===d)return!1;c=1+c|0}else break}return cd)return!1}else{if(X().ea===e&&0===d)return!1;b=1+b|0}}else break;return ba){a=b.ua;c=tt(b.Ka);c=bp(a,c);a=tt(b.Ka).o;var d=X().Fa;if(a!==d||!Ht(b,c)){a=b;d=c;c=as(X(),tt(b.Ka).o);var e=rt(a,d),f=X().Ab;e!==f?(e=rt(a,-1+d|0),f=X().S,e=e===f):e=!1;if(e){e=rt(a,d);f=X().Fa;e=e===f?X().sb: -X().ea;for(d=Ft(a,1+d|0);;)if(f=rt(a,d),cp(new Q([X().Aa,e]),f))d=Ft(a,1+d|0);else break;for(;;)if(e=rt(a,d),f=X().Sd,e===f?(e=rt(a,-1+d|0),e=cp(new Q([X().Aa,X().yc,X().dv,X().Gc,X().vG,X().sq]),e)):e=!1,e&&null!==rt(a,2+d|0)&&Lt(Mt(),a.ua.u(2+d|0),a.Jj))d=Dt(a,1+d|0,new Q([X().Sd]));else break;st(a,d,c)}else if(e=rt(a,d),f=X().Ab,e===f){for(d=Dt(a,1+d|0,new Q([X().Sd]));;)if(e=rt(a,d),f=X().Sd,e===f?(e=rt(a,-1+d|0),e=cp(new Q([X().Aa,X().zd,X().yc]),e)):e=!1,e)if(e=rt(a,1+d|0),f=X().Zl,e===f&&(2+ -d|0)d.i())if(d.v())a.n(b.A,-1,c,new Q([b]));else if(1===d.i())a.n(b.A,-1,c,new Q([d.X(),b]));else try{var k=mo(),m=R(),r=no(k,m);ov(r,d);oo(r,b);a.n(b.A,-1,c,lv(mv(),r))}catch(u){}else a.n(b.A,-1,c,d);return null} -function Mw(a,b,c){this.aM=null;this.jv=a;this.Sc=b;this.Lj=c;this.Gn=this.JQ=this.$L=this.IQ=!1;this.KQ=3<=b;this.uz=2>=b;this.rc=this.In=this.xs=this.LQ=this.Hn=this.DG=!1;this.MQ=!0;this.aM=ap().Ba(R())}Mw.prototype=new q;Mw.prototype.constructor=Mw;g=Mw.prototype;g.jI=function(){return Aq(this)};g.YD=function(){return up()};g.yA=function(){return!1}; +function Mw(a,b,c){this.aM=null;this.kv=a;this.Sc=b;this.Lj=c;this.Gn=this.JQ=this.$L=this.IQ=!1;this.KQ=3<=b;this.uz=2>=b;this.rc=this.In=this.xs=this.LQ=this.Hn=this.DG=!1;this.MQ=!0;this.aM=ap().Ba(R())}Mw.prototype=new q;Mw.prototype.constructor=Mw;g=Mw.prototype;g.jI=function(){return Aq(this)};g.YD=function(){return up()};g.yA=function(){return!1}; function BS(a,b,c){switch(c){case "-\x3e":if(3>a.Sc)return tr(X(),"-");break;case "@\x3d":if(3>a.Sc)return tr(X(),"@");break;case "^":if(a.In)return H(new J,1,X().rC);break;case "^^":return H(new J,a.In?2:1,X().iC);case "^\x3d":if(a.In)return H(new J,2,X().sC);break;case "^^\x3d":if(a.In)return H(new J,3,X().jC);break;case "\x26\x26":return a.n(b,-1,V().Aj,new Q(["\x26\x26","and"])),H(new J,2,X().ms);case "||":return a.n(b,-1,V().Aj,new Q(["||","or"])),H(new J,2,X().rs);case "\x3d\x3c":return a.n(b, --1,V().Cj,new Q(["\x3d\x3c","\x3c\x3d"])),H(new J,2,X().cv);case "\x3d!":case "\x3d/":case "\x3d*":case "\x3d+":case "\x3d-":case "\x3d%":case "\x3d|":case "\x3d\x26":case "\x3d^":return a.n(b,-1,V().Dj,new Q([""+tb(c.charCodeAt(0)),""+tb(c.charCodeAt(1))])),a=X(),c=new v(new Uint16Array([c.charCodeAt(1),c.charCodeAt(0)])),tr(a,fn(Xj(),c,c.a.length));case "\x3d**":return a.n(b,-1,V().Dj,new Q([""+tb(c.charCodeAt(0)),c.substring(1)])),tr(X(),c.substring(1)+"\x3d");case "\x3c\x3e":if(3>a.Sc)return tr(X(), -"!\x3d")}return tr(X(),c)}g.Uq=function(a){if(0<=a&&a<=cb(this.jv)){for(var b=0,c=0;c=a.Sc)return X().S;break;case "nonlocal":if(3>a.Sc)return X().S;break;case "exec":if(3<=a.Sc)return X().S;break;case "print":if(!a.uz)return X().S;break;case "repeat":if(!a.xs)return X().S}return sr(X(),b)}function nx(a){null!==a&&X();return a} +-1,V().Cj,new Q(["\x3d\x3c","\x3c\x3d"])),H(new J,2,X().dv);case "\x3d!":case "\x3d/":case "\x3d*":case "\x3d+":case "\x3d-":case "\x3d%":case "\x3d|":case "\x3d\x26":case "\x3d^":return a.n(b,-1,V().Dj,new Q([""+tb(c.charCodeAt(0)),""+tb(c.charCodeAt(1))])),a=X(),c=new v(new Uint16Array([c.charCodeAt(1),c.charCodeAt(0)])),tr(a,fn(Xj(),c,c.a.length));case "\x3d**":return a.n(b,-1,V().Dj,new Q([""+tb(c.charCodeAt(0)),c.substring(1)])),tr(X(),c.substring(1)+"\x3d");case "\x3c\x3e":if(3>a.Sc)return tr(X(), +"!\x3d")}return tr(X(),c)}g.Uq=function(a){if(0<=a&&a<=cb(this.kv)){for(var b=0,c=0;c=a.Sc)return X().S;break;case "nonlocal":if(3>a.Sc)return X().S;break;case "exec":if(3<=a.Sc)return X().S;break;case "print":if(!a.uz)return X().S;break;case "repeat":if(!a.xs)return X().S}return sr(X(),b)}function nx(a){null!==a&&X();return a} g.n=function(a,b,c,d){return-1===b?this.Lj.n(a,this.Uq(a),c,d):this.Lj.n(a,b,c,d)};function ls(a,b,c,d){return b.d()?LS(a,b.fa(),c,d):a.n(b.Ra(),-1,c,d)}function $v(a,b,c,d){return 0!==b.a.length?LS(a,Oh(Ch(),b),c,d):a.n(-1,-1,c,d)}g.tm=function(a,b,c,d){return this.MQ?this.Lj.n(a,b,c,d):-1===b?this.Lj.tm(a,this.Uq(a),c,d):this.Lj.tm(a,b,c,d)};g.B=function(){return"ParserState"};g.C=function(){return 3}; -g.D=function(a){switch(a){case 0:return this.jv;case 1:return this.Sc;case 2:return this.Lj;default:return N(P(),a)}};g.s=function(){var a=-889275714;a=P().f(a,$a("ParserState"));a=P().f(a,M(P(),this.jv));a=P().f(a,this.Sc);a=P().f(a,M(P(),this.Lj));return P().L(a,3)};g.j=function(){return Ql(this)};g.b=function(a){if(this===a)return!0;if(a instanceof Mw){if(this.Sc===a.Sc){var b=this.jv,c=a.jv;b=null===b?null===c:Ua(b,c)}else b=!1;if(b)return b=this.Lj,a=a.Lj,null===b?null===a:b.b(a)}return!1}; -E(Mw,"tigerpython.parser.parsing.ParserState",{nW:1,OL:1,E:1,q:1,g:1});function Uv(a,b,c){this.cM=this.dM=null;this.Vf=0;this.eM=this.Bs=null;this.KG=!1;this.CC=a;this.mv=c;this.cM=new DS(a,b,c);this.Vf=0}Uv.prototype=new q;Uv.prototype.constructor=Uv;g=Uv.prototype;g.bl=function(){return this};g.k=function(){return this};g.ti=function(a){return MK(this,a)};g.Wd=function(a){return OK(this,a,-1)};g.j=function(){return"\x3citerator\x3e"};g.Oh=function(a){return yj(this,a)}; +g.D=function(a){switch(a){case 0:return this.kv;case 1:return this.Sc;case 2:return this.Lj;default:return N(P(),a)}};g.s=function(){var a=-889275714;a=P().f(a,$a("ParserState"));a=P().f(a,M(P(),this.kv));a=P().f(a,this.Sc);a=P().f(a,M(P(),this.Lj));return P().L(a,3)};g.j=function(){return Ql(this)};g.b=function(a){if(this===a)return!0;if(a instanceof Mw){if(this.Sc===a.Sc){var b=this.kv,c=a.kv;b=null===b?null===c:Ua(b,c)}else b=!1;if(b)return b=this.Lj,a=a.Lj,null===b?null===a:b.b(a)}return!1}; +E(Mw,"tigerpython.parser.parsing.ParserState",{nW:1,OL:1,E:1,q:1,g:1});function Uv(a,b,c){this.cM=this.dM=null;this.Vf=0;this.eM=this.Bs=null;this.KG=!1;this.CC=a;this.nv=c;this.cM=new DS(a,b,c);this.Vf=0}Uv.prototype=new q;Uv.prototype.constructor=Uv;g=Uv.prototype;g.bl=function(){return this};g.k=function(){return this};g.ti=function(a){return MK(this,a)};g.Wd=function(a){return OK(this,a,-1)};g.j=function(){return"\x3citerator\x3e"};g.Oh=function(a){return yj(this,a)}; g.ma=function(a,b,c){return Aj(this,a,b,c)};g.Eg=function(a,b,c,d){return Ij(this,a,b,c,d)};g.tf=function(a){return Jj(this,a)};g.U=function(){return-1};function MS(a){if(!a.KG&&!a.KG){var b=a.cM,c;for(c=[];b.d();){var d=IS(b);c.push(null===d?null:d)}a.dM=new (F(hP).c)(c);a.KG=!0}return a.dM}function NS(a){null===a.Bs&&(a.Bs=OS(a),null!==a.Bs&&(a.Bs.BC=a.eM));return a.Bs}g.d=function(){return null!==NS(this)}; -function OS(a){if(a.Vfb.Kj&&($v(a.mv,MS(a).a[a.Vf].ec,V().Pb,R()),a.Vf=1+a.Vf|0);for(;a.Vfb.Kj;)d=OS(a),oo(c,d);if(Ss(c))return new dw(b.p(),a.lt(b.ws),b.Kj,b.ec,null,a.CC,a.mv);d=dt(c).Dd;for(e=rr(c).k();e.d();){var h=e.e();if(h.Dd{if(null!==m){if(m=m.la(),m.p()<=b&&b<=m.ws)throw xr(new yr,c,new T(m.ec));}else throw new G(m);}));return up()}catch(m){if(m instanceof yr){a=m;if(a.Vb===c)return a.uf();throw a;}throw m;}}g.lt=function(a){for(;ab.Kj&&($v(a.nv,MS(a).a[a.Vf].ec,V().Pb,R()),a.Vf=1+a.Vf|0);for(;a.Vfb.Kj;)d=OS(a),oo(c,d);if(Ss(c))return new dw(b.p(),a.lt(b.ws),b.Kj,b.ec,null,a.CC,a.nv);d=dt(c).Dd;for(e=rr(c).k();e.d();){var h=e.e();if(h.Dd{if(null!==m){if(m=m.la(),m.p()<=b&&b<=m.ws)throw xr(new yr,c,new T(m.ec));}else throw new G(m);}));return up()}catch(m){if(m instanceof yr){a=m;if(a.Vb===c)return a.uf();throw a;}throw m;}}g.lt=function(a){for(;a"number"===typeof a),ra=E(0,"java.lang.Float",{d_:1,dw:1,g:1,bk:1,go:1,bE:1},a=>qa(a)),pa=E(0,"java.lang.Integer",{g_:1,dw:1,g:1,bk:1,go:1,bE:1},a=>ka(a)),xa=E(0,"java.lang.Long",{i_:1,dw:1,g:1,bk:1,go:1,bE:1},a=>a instanceof n);class AG extends LP{constructor(a){super();uk(this,a,!0)}}E(AG,"java.lang.NumberFormatException",{o_:1,Xi:1,Vc:1,tc:1,Bb:1,g:1});function ug(a,b){return a.codePointAt(b)|0} +var ua=E(0,"java.lang.Double",{b_:1,ew:1,g:1,bk:1,go:1,bE:1},a=>"number"===typeof a),ra=E(0,"java.lang.Float",{d_:1,ew:1,g:1,bk:1,go:1,bE:1},a=>qa(a)),pa=E(0,"java.lang.Integer",{g_:1,ew:1,g:1,bk:1,go:1,bE:1},a=>ka(a)),xa=E(0,"java.lang.Long",{i_:1,ew:1,g:1,bk:1,go:1,bE:1},a=>a instanceof n);class AG extends LP{constructor(a){super();uk(this,a,!0)}}E(AG,"java.lang.NumberFormatException",{o_:1,Wi:1,Vc:1,tc:1,Bb:1,g:1});function ug(a,b){return a.codePointAt(b)|0} function $a(a){for(var b=0,c=1,d=-1+a.length|0;0<=d;)b=b+Math.imul(a.charCodeAt(d),c)|0,c=Math.imul(31,c),d=-1+d|0;return b}function Ga(a,b){for(var c=a.length,d=b.length,e=c(b.length|0)&&HH(c);)0!==JH(c)&&(e=IH(c),b.push(a.substring(d,e))),d=JH(c);b.push(a.substring(d));for(c=b.length|0;;)if(0!==c?(a=b[-1+c|0],a=null!==a&&Ua(a,"")):a=!1,a)c=-1+c|0;else break;a=new (F(l).c)(c);for(d=0;d=a.charCodeAt(c);)c=1+c|0;if(c===b)return"";for(var d=b;32>=a.charCodeAt(-1+d|0);)d=-1+d|0;return 0===c&&d===b?a:a.substring(c,d)}var l=E(0,"java.lang.String",{MZ:1,g:1,bk:1,zO:1,go:1,bE:1},a=>"string"===typeof a);class VG extends Xl{}E(VG,"java.lang.StringIndexOutOfBoundsException",{x_:1,KO:1,Vc:1,tc:1,Bb:1,g:1});class YG extends MP{constructor(){super();uk(this,null,!0)}}E(YG,"java.util.FormatterClosedException",{O_:1,qR:1,Vc:1,tc:1,Bb:1,g:1}); -class PS extends LP{}class mg extends LP{constructor(a,b,c){super();this.LR=a;this.NR=b;this.MR=c;uk(this,null,!0)}Mh(){var a=this.MR,b=this.NR,c=this.LR+(0>a?"":" near index "+a)+"\n"+b;if(0<=a&&null!==b&&aa)throw rG();a=" ".repeat(a);c=c+"\n"+a+"^"}return c}}E(mg,"java.util.regex.PatternSyntaxException",{m0:1,Xi:1,Vc:1,tc:1,Bb:1,g:1});function QS(){}QS.prototype=new q;QS.prototype.constructor=QS;g=QS.prototype;g.bg=function(a,b){return 0>=this.ha(a,b)}; +class PS extends LP{}class mg extends LP{constructor(a,b,c){super();this.LR=a;this.NR=b;this.MR=c;uk(this,null,!0)}Mh(){var a=this.MR,b=this.NR,c=this.LR+(0>a?"":" near index "+a)+"\n"+b;if(0<=a&&null!==b&&aa)throw rG();a=" ".repeat(a);c=c+"\n"+a+"^"}return c}}E(mg,"java.util.regex.PatternSyntaxException",{m0:1,Wi:1,Vc:1,tc:1,Bb:1,g:1});function QS(){}QS.prototype=new q;QS.prototype.constructor=QS;g=QS.prototype;g.bg=function(a,b){return 0>=this.ha(a,b)}; g.Jg=function(a,b){return ZR(this,a,b)};g.Lg=function(a,b){return 0>this.ha(a,b)};g.$f=function(a,b){return 0=ce(fe(),this.dj)&&W().t.e();var a=Ph(Qh(),this.dj,this.Xa);this.Xa=1+this.Xa|0;return a};bi.prototype.Wd=function(a){if(0a)a=this.wi;else{var b=this.wi;a=b=ce(fe(),this.cj)&&W().t.e();var a=Ph(Qh(),this.cj,this.Xa);this.Xa=1+this.Xa|0;return a};bi.prototype.Wd=function(a){if(0a)a=this.wi;else{var b=this.wi;a=ba?0:a);return this}; -g.Qw=function(a,b){a=0>a?0:a>this.gg?this.gg:a;b=(0>b?0:b>this.gg?this.gg:b)-a|0;this.gg=0>b?0:b;this.qo=this.qo+a|0;return this};E(RA,"scala.collection.IndexedSeqView$IndexedSeqViewIterator",{iS:1,Pa:1,Da:1,I:1,J:1,g:1});function ZS(a,b){a.VI=b;a.oh=b.i();a.zt=-1+a.oh|0;return a}function $S(){this.VI=null;this.zt=this.oh=0}$S.prototype=new gO;$S.prototype.constructor=$S;function aT(){}aT.prototype=$S.prototype;$S.prototype.d=function(){return 0=a?0<=b&&ba?0:a>this.gg?this.gg:a;b=(0>b?0:b>this.gg?this.gg:b)-a|0;this.gg=0>b?0:b;this.qo=this.qo+a|0;return this};E(RA,"scala.collection.IndexedSeqView$IndexedSeqViewIterator",{iS:1,Pa:1,Da:1,I:1,J:1,g:1});function ZS(a,b){a.VI=b;a.oh=b.i();a.zt=-1+a.oh|0;return a}function $S(){this.VI=null;this.zt=this.oh=0}$S.prototype=new gO;$S.prototype.constructor=$S;function aT(){}aT.prototype=$S.prototype;$S.prototype.d=function(){return 0=a?0<=b&&bnew QP(b)));return a}TK.prototype.Ma=function(a){return bT(this,a)};E(TK,"scala.collection.Iterator$$anon$21",{m2:1,w5:1,Hm:1,Oe:1,xd:1,wd:1});function cT(a,b){return a.vt().Zb(kF(b)?new dT(a,b):a.k().ti(new sp(()=>b.k())))}function eT(a,b,c,d,e){return Ij(new bQ(a.k(),new Nh(f=>{if(null!==f)return f.Ia()+" -\x3e "+f.la();throw new G(f);})),b,c,d,e)}function fT(a,b){var c=a.ih(),d=$P();for(a=a.k();a.d();){var e=a.e();aQ(d,b.y(e))&&c.Ma(e)}return c.$b()} function gT(){this.KP=null;hT=this;this.KP=new TP(this)}gT.prototype=new q;gT.prototype.constructor=gT;function iT(a,b){return a instanceof jT?a:ij(0,MH(Ci(),a,b))}gT.prototype.fE=function(a){return new dL((mo(),new lx),new Nh(b=>ij(jj(),Jj(b,a))))}; -function ij(a,b){if(null===b)return null;if(b instanceof Jb)return new hR(b);if(b instanceof y)return new kT(b);if(b instanceof C)return new lT(b);if(b instanceof A)return new mT(b);if(b instanceof B)return new nT(b);if(b instanceof v)return new oT(b);if(b instanceof w)return new pT(b);if(b instanceof x)return new qT(b);if(b instanceof t)return new rT(b);if(Yd(b))return new sT(b);throw new G(b);}gT.prototype.iI=function(a,b){return iT(a,b)}; +function ij(a,b){if(null===b)return null;if(b instanceof Ib)return new hR(b);if(b instanceof y)return new kT(b);if(b instanceof C)return new lT(b);if(b instanceof A)return new mT(b);if(b instanceof B)return new nT(b);if(b instanceof v)return new oT(b);if(b instanceof w)return new pT(b);if(b instanceof x)return new qT(b);if(b instanceof t)return new rT(b);if(Yd(b))return new sT(b);throw new G(b);}gT.prototype.iI=function(a,b){return iT(a,b)}; E(gT,"scala.collection.immutable.ArraySeq$",{O2:1,vS:1,eS:1,dS:1,fS:1,g:1});var hT;function jj(){hT||(hT=new gT);return hT}function vQ(a,b){this.pl=this.Ub=0;this.Lf=null;this.Kf=0;this.ym=this.yi=null;for(jQ(this,b.oc);this.d();)b=this.Lf.Uc(this.Ub),rQ(a,a.uo,this.Lf.se(this.Ub),this.Lf.te(this.Ub),b,sj(uj(),b),0),this.Ub=1+this.Ub|0}vQ.prototype=new lQ;vQ.prototype.constructor=vQ;vQ.prototype.MA=function(){W().t.e();throw new yL;};vQ.prototype.e=function(){this.MA()}; -E(vQ,"scala.collection.immutable.HashMapBuilder$$anon$1",{l3:1,xw:1,Pa:1,Da:1,I:1,J:1});function AQ(a,b){this.pl=this.Ub=0;this.Lf=null;this.Kf=0;this.ym=this.yi=null;for(jQ(this,b.Rg);this.d();)b=this.Lf.Uc(this.Ub),yQ(a,a.vo,this.Lf.dh(this.Ub),b,sj(uj(),b),0),this.Ub=1+this.Ub|0}AQ.prototype=new lQ;AQ.prototype.constructor=AQ;AQ.prototype.MA=function(){W().t.e();throw new yL;};AQ.prototype.e=function(){this.MA()}; -E(AQ,"scala.collection.immutable.HashSetBuilder$$anon$1",{p3:1,xw:1,Pa:1,Da:1,I:1,J:1});function YL(a){return!!(a&&a.$classData&&a.$classData.Yb.rb)}function tT(a){this.Lt=a;this.xo=0}tT.prototype=new XQ;tT.prototype.constructor=tT;tT.prototype.Mg=function(a,b){return H(new J,a,b)};E(tT,"scala.collection.immutable.Map$Map2$$anon$1",{F3:1,TP:1,Pa:1,Da:1,I:1,J:1});function uT(a){this.Lt=a;this.xo=0}uT.prototype=new XQ;uT.prototype.constructor=uT;uT.prototype.Mg=function(a){return a}; +E(vQ,"scala.collection.immutable.HashMapBuilder$$anon$1",{l3:1,yw:1,Pa:1,Da:1,I:1,J:1});function AQ(a,b){this.pl=this.Ub=0;this.Lf=null;this.Kf=0;this.ym=this.yi=null;for(jQ(this,b.Rg);this.d();)b=this.Lf.Uc(this.Ub),yQ(a,a.vo,this.Lf.dh(this.Ub),b,sj(uj(),b),0),this.Ub=1+this.Ub|0}AQ.prototype=new lQ;AQ.prototype.constructor=AQ;AQ.prototype.MA=function(){W().t.e();throw new yL;};AQ.prototype.e=function(){this.MA()}; +E(AQ,"scala.collection.immutable.HashSetBuilder$$anon$1",{p3:1,yw:1,Pa:1,Da:1,I:1,J:1});function YL(a){return!!(a&&a.$classData&&a.$classData.Yb.rb)}function tT(a){this.Lt=a;this.xo=0}tT.prototype=new XQ;tT.prototype.constructor=tT;tT.prototype.Mg=function(a,b){return H(new J,a,b)};E(tT,"scala.collection.immutable.Map$Map2$$anon$1",{F3:1,TP:1,Pa:1,Da:1,I:1,J:1});function uT(a){this.Lt=a;this.xo=0}uT.prototype=new XQ;uT.prototype.constructor=uT;uT.prototype.Mg=function(a){return a}; E(uT,"scala.collection.immutable.Map$Map2$$anon$2",{G3:1,TP:1,Pa:1,Da:1,I:1,J:1});function vT(a){this.Lt=a;this.xo=0}vT.prototype=new XQ;vT.prototype.constructor=vT;vT.prototype.Mg=function(a,b){return b};E(vT,"scala.collection.immutable.Map$Map2$$anon$3",{H3:1,TP:1,Pa:1,Da:1,I:1,J:1});function wT(a){this.Ao=a;this.Bo=0}wT.prototype=new ZQ;wT.prototype.constructor=wT;wT.prototype.Mg=function(a,b){return H(new J,a,b)};E(wT,"scala.collection.immutable.Map$Map3$$anon$4",{J3:1,UP:1,Pa:1,Da:1,I:1,J:1}); function xT(a){this.Ao=a;this.Bo=0}xT.prototype=new ZQ;xT.prototype.constructor=xT;xT.prototype.Mg=function(a){return a};E(xT,"scala.collection.immutable.Map$Map3$$anon$5",{K3:1,UP:1,Pa:1,Da:1,I:1,J:1});function yT(a){this.Ao=a;this.Bo=0}yT.prototype=new ZQ;yT.prototype.constructor=yT;yT.prototype.Mg=function(a,b){return b};E(yT,"scala.collection.immutable.Map$Map3$$anon$6",{L3:1,UP:1,Pa:1,Da:1,I:1,J:1});function zT(a){this.ql=a;this.Co=0}zT.prototype=new aR;zT.prototype.constructor=zT; zT.prototype.Mg=function(a,b){return H(new J,a,b)};E(zT,"scala.collection.immutable.Map$Map4$$anon$7",{N3:1,VP:1,Pa:1,Da:1,I:1,J:1});function AT(a){this.ql=a;this.Co=0}AT.prototype=new aR;AT.prototype.constructor=AT;AT.prototype.Mg=function(a){return a};E(AT,"scala.collection.immutable.Map$Map4$$anon$8",{O3:1,VP:1,Pa:1,Da:1,I:1,J:1});function BT(a){this.ql=a;this.Co=0}BT.prototype=new aR;BT.prototype.constructor=BT;BT.prototype.Mg=function(a,b){return b}; -E(BT,"scala.collection.immutable.Map$Map4$$anon$9",{P3:1,VP:1,Pa:1,Da:1,I:1,J:1});function CT(a){this.pl=this.Ub=0;this.Lf=null;this.Kf=0;this.ym=this.yi=null;jQ(this,a)}CT.prototype=new lQ;CT.prototype.constructor=CT;CT.prototype.e=function(){this.d()||W().t.e();var a=this.Lf.se(this.Ub);this.Ub=1+this.Ub|0;return a};E(CT,"scala.collection.immutable.MapKeyIterator",{R3:1,xw:1,Pa:1,Da:1,I:1,J:1}); +E(BT,"scala.collection.immutable.Map$Map4$$anon$9",{P3:1,VP:1,Pa:1,Da:1,I:1,J:1});function CT(a){this.pl=this.Ub=0;this.Lf=null;this.Kf=0;this.ym=this.yi=null;jQ(this,a)}CT.prototype=new lQ;CT.prototype.constructor=CT;CT.prototype.e=function(){this.d()||W().t.e();var a=this.Lf.se(this.Ub);this.Ub=1+this.Ub|0;return a};E(CT,"scala.collection.immutable.MapKeyIterator",{R3:1,yw:1,Pa:1,Da:1,I:1,J:1}); function DT(a){this.$A=this.ZA=this.QE=null;this.sJ=0;this.WP=null;this.kk=this.Jt=-1;this.ZA=new y(1+Hk().gB|0);this.$A=new (F(zk).c)(1+Hk().gB|0);mQ(this,a);nQ(this);this.sJ=0}DT.prototype=new pQ;DT.prototype.constructor=DT;DT.prototype.s=function(){return zm(Bm(),this.sJ,M(P(),this.WP))};DT.prototype.e=function(){this.d()||W().t.e();this.sJ=this.QE.Uc(this.Jt);this.WP=this.QE.te(this.Jt);this.Jt=-1+this.Jt|0;return this}; -E(DT,"scala.collection.immutable.MapKeyValueTupleHashIterator",{S3:1,e3:1,Pa:1,Da:1,I:1,J:1});function ET(a){this.pl=this.Ub=0;this.Lf=null;this.Kf=0;this.ym=this.yi=null;jQ(this,a)}ET.prototype=new lQ;ET.prototype.constructor=ET;ET.prototype.e=function(){this.d()||W().t.e();var a=this.Lf.mI(this.Ub);this.Ub=1+this.Ub|0;return a};E(ET,"scala.collection.immutable.MapKeyValueTupleIterator",{T3:1,xw:1,Pa:1,Da:1,I:1,J:1}); -function FT(a){this.pl=this.Ub=0;this.Lf=null;this.Kf=0;this.ym=this.yi=null;jQ(this,a)}FT.prototype=new lQ;FT.prototype.constructor=FT;FT.prototype.e=function(){this.d()||W().t.e();var a=this.Lf.te(this.Ub);this.Ub=1+this.Ub|0;return a};E(FT,"scala.collection.immutable.MapValueIterator",{V3:1,xw:1,Pa:1,Da:1,I:1,J:1}); -function GT(a){a.mj<=a.Le&&W().t.e();a.Qt=1+a.Qt|0;for(var b=a.YP.yl(a.Qt);0===b.a.length;)a.Qt=1+a.Qt|0,b=a.YP.yl(a.Qt);a.TE=a.Dw;var c=a.LS/2|0,d=a.Qt-c|0;a.Pt=(1+c|0)-(0>d?-d|0:d)|0;c=a.Pt;switch(c){case 1:a.rl=b;break;case 2:a.Mt=b;break;case 3:a.Nt=b;break;case 4:a.Ot=b;break;case 5:a.Cw=b;break;case 6:a.tJ=b;break;default:throw new G(c);}a.Dw=a.TE+Math.imul(b.a.length,1<a.jr&&(a.Dw=a.jr);1c?a.rl=a.Mt.a[31&(b>>>5|0)]:(32768>c?a.Mt=a.Nt.a[31&(b>>>10|0)]:(1048576>c?a.Nt=a.Ot.a[31&(b>>>15|0)]:(33554432>c?a.Ot=a.Cw.a[31&(b>>>20|0)]:(a.Cw=a.tJ.a[b>>>25|0],a.Ot=a.Cw.a[0]),a.Nt=a.Ot.a[0]),a.Mt=a.Nt.a[0]),a.rl=a.Mt.a[0]);a.fB=b}a.mj=a.mj-a.Le|0;b=a.rl.a.length;c=a.mj;a.ir=bthis.Le};g.e=function(){this.Le===this.ir&&HT(this);var a=this.rl.a[this.Le];this.Le=1+this.Le|0;return a}; -g.Wd=function(a){if(0=this.Dw;)GT(this);b=a-this.TE|0;if(1c||(32768>c||(1048576>c||(33554432>c||(this.Cw=this.tJ.a[b>>>25|0]),this.Ot=this.Cw.a[31&(b>>>20|0)]),this.Nt=this.Ot.a[31&(b>>>15|0)]),this.Mt=this.Nt.a[31&(b>>>10|0)]);this.rl=this.Mt.a[31&(b>>>5|0)];this.fB=b}this.ir=this.rl.a.length;this.Le=31&b;this.mj=this.Le+(this.jr-a|0)|0;this.ir>this.mj&& -(this.ir=this.mj)}}return this};g.ma=function(a,b,c){var d=ce(fe(),a),e=this.mj-this.Le|0;c=c>31;a=Math.imul(this.hB,a);var d=a>>31;a=b+a|0;b=(-2147483648^a)<(-2147483648^b)?1+(c+d|0)|0:c+d|0;0>31,this.Fw=(d===b?(-2147483648^c)<(-2147483648^a):d>31,this.St=b===d?(-2147483648^a)<=(-2147483648^c):bthis.hB&&(c=this.Gw,d=c>>31,this.Fw=(d===b?(-2147483648^c)>(-2147483648^a):d>b)?c:a,c=this.Gw,d=c>>31,this.St=b===d?(-2147483648^a)>=(-2147483648^c):b>d)}return this};g.e=function(){return this.gE()}; +E(DT,"scala.collection.immutable.MapKeyValueTupleHashIterator",{S3:1,e3:1,Pa:1,Da:1,I:1,J:1});function ET(a){this.pl=this.Ub=0;this.Lf=null;this.Kf=0;this.ym=this.yi=null;jQ(this,a)}ET.prototype=new lQ;ET.prototype.constructor=ET;ET.prototype.e=function(){this.d()||W().t.e();var a=this.Lf.mI(this.Ub);this.Ub=1+this.Ub|0;return a};E(ET,"scala.collection.immutable.MapKeyValueTupleIterator",{T3:1,yw:1,Pa:1,Da:1,I:1,J:1}); +function FT(a){this.pl=this.Ub=0;this.Lf=null;this.Kf=0;this.ym=this.yi=null;jQ(this,a)}FT.prototype=new lQ;FT.prototype.constructor=FT;FT.prototype.e=function(){this.d()||W().t.e();var a=this.Lf.te(this.Ub);this.Ub=1+this.Ub|0;return a};E(FT,"scala.collection.immutable.MapValueIterator",{V3:1,yw:1,Pa:1,Da:1,I:1,J:1}); +function GT(a){a.lj<=a.Le&&W().t.e();a.Qt=1+a.Qt|0;for(var b=a.YP.yl(a.Qt);0===b.a.length;)a.Qt=1+a.Qt|0,b=a.YP.yl(a.Qt);a.TE=a.Ew;var c=a.LS/2|0,d=a.Qt-c|0;a.Pt=(1+c|0)-(0>d?-d|0:d)|0;c=a.Pt;switch(c){case 1:a.rl=b;break;case 2:a.Mt=b;break;case 3:a.Nt=b;break;case 4:a.Ot=b;break;case 5:a.Dw=b;break;case 6:a.tJ=b;break;default:throw new G(c);}a.Ew=a.TE+Math.imul(b.a.length,1<a.jr&&(a.Ew=a.jr);1c?a.rl=a.Mt.a[31&(b>>>5|0)]:(32768>c?a.Mt=a.Nt.a[31&(b>>>10|0)]:(1048576>c?a.Nt=a.Ot.a[31&(b>>>15|0)]:(33554432>c?a.Ot=a.Dw.a[31&(b>>>20|0)]:(a.Dw=a.tJ.a[b>>>25|0],a.Ot=a.Dw.a[0]),a.Nt=a.Ot.a[0]),a.Mt=a.Nt.a[0]),a.rl=a.Mt.a[0]);a.fB=b}a.lj=a.lj-a.Le|0;b=a.rl.a.length;c=a.lj;a.ir=bthis.Le};g.e=function(){this.Le===this.ir&&HT(this);var a=this.rl.a[this.Le];this.Le=1+this.Le|0;return a}; +g.Wd=function(a){if(0=this.Ew;)GT(this);b=a-this.TE|0;if(1c||(32768>c||(1048576>c||(33554432>c||(this.Dw=this.tJ.a[b>>>25|0]),this.Ot=this.Dw.a[31&(b>>>20|0)]),this.Nt=this.Ot.a[31&(b>>>15|0)]),this.Mt=this.Nt.a[31&(b>>>10|0)]);this.rl=this.Mt.a[31&(b>>>5|0)];this.fB=b}this.ir=this.rl.a.length;this.Le=31&b;this.lj=this.Le+(this.jr-a|0)|0;this.ir>this.lj&& +(this.ir=this.lj)}}return this};g.ma=function(a,b,c){var d=ce(fe(),a),e=this.lj-this.Le|0;c=c>31;a=Math.imul(this.hB,a);var d=a>>31;a=b+a|0;b=(-2147483648^a)<(-2147483648^b)?1+(c+d|0)|0:c+d|0;0>31,this.Gw=(d===b?(-2147483648^c)<(-2147483648^a):d>31,this.St=b===d?(-2147483648^a)<=(-2147483648^c):bthis.hB&&(c=this.Hw,d=c>>31,this.Gw=(d===b?(-2147483648^c)>(-2147483648^a):d>b)?c:a,c=this.Hw,d=c>>31,this.St=b===d?(-2147483648^a)>=(-2147483648^c):b>d)}return this};g.e=function(){return this.gE()}; E(JT,"scala.collection.immutable.RangeIterator",{f4:1,Pa:1,Da:1,I:1,J:1,g:1});function KT(){this.Fo=this.nr=0}KT.prototype=new gO;KT.prototype.constructor=KT;function LT(){}LT.prototype=KT.prototype;KT.prototype.U=function(){return this.Fo};KT.prototype.d=function(){return 0a?0:a);return this}; -function MT(a){this.pl=this.Ub=0;this.Lf=null;this.Kf=0;this.ym=this.yi=null;this.vJ=0;jQ(this,a);this.vJ=0}MT.prototype=new lQ;MT.prototype.constructor=MT;MT.prototype.s=function(){return this.vJ};MT.prototype.e=function(){this.d()||W().t.e();this.vJ=this.Lf.Uc(this.Ub);this.Ub=1+this.Ub|0;return this};E(MT,"scala.collection.immutable.SetHashIterator",{r4:1,xw:1,Pa:1,Da:1,I:1,J:1});function NT(a){this.pl=this.Ub=0;this.Lf=null;this.Kf=0;this.ym=this.yi=null;jQ(this,a)}NT.prototype=new lQ; -NT.prototype.constructor=NT;NT.prototype.e=function(){this.d()||W().t.e();var a=this.Lf.dh(this.Ub);this.Ub=1+this.Ub|0;return a};E(NT,"scala.collection.immutable.SetIterator",{s4:1,xw:1,Pa:1,Da:1,I:1,J:1});function OT(){this.$h=this.oj=0}OT.prototype=new q;OT.prototype.constructor=OT;function PT(){}PT.prototype=OT.prototype;OT.prototype.ht=function(a){if(this.ojb&&Np(this,a);return this};OT.prototype.Yc=function(a){return this.pO(a)};function QT(){this.lQ=this.mQ=null;RT=this;this.mQ=new TP(this);this.lQ=new XH(new Jb(0))}QT.prototype=new q;QT.prototype.constructor=QT; -QT.prototype.fE=function(a){return new dL(new ST(a.pd()),new Nh(b=>cq(dq(),b)))};function cq(a,b){if(null===b)return null;if(b instanceof Jb)return new XH(b);if(b instanceof y)return new TT(b);if(b instanceof C)return new UT(b);if(b instanceof A)return new VT(b);if(b instanceof B)return new WT(b);if(b instanceof v)return new XT(b);if(b instanceof w)return new YT(b);if(b instanceof x)return new ZT(b);if(b instanceof t)return new $T(b);if(Yd(b))return new aU(b);throw new G(b);} -QT.prototype.iI=function(a,b){return cq(0,MH(Ci(),a,b))};E(QT,"scala.collection.mutable.ArraySeq$",{P4:1,vS:1,eS:1,dS:1,fS:1,g:1});var RT;function dq(){RT||(RT=new QT);return RT}function bU(a){this.Gm=0;this.vl=null;this.du=0;this.cu=null;FR(this,a)}bU.prototype=new HR;bU.prototype.constructor=bU;bU.prototype.rA=function(a){return H(new J,a.pj,a.Cc)};E(bU,"scala.collection.mutable.HashMap$$anon$1",{i5:1,cF:1,Pa:1,Da:1,I:1,J:1}); -function cU(a){this.Gm=0;this.vl=null;this.du=0;this.cu=null;FR(this,a)}cU.prototype=new HR;cU.prototype.constructor=cU;cU.prototype.rA=function(a){return a.pj};E(cU,"scala.collection.mutable.HashMap$$anon$2",{j5:1,cF:1,Pa:1,Da:1,I:1,J:1});function dU(a){this.Gm=0;this.vl=null;this.du=0;this.cu=null;FR(this,a)}dU.prototype=new HR;dU.prototype.constructor=dU;dU.prototype.rA=function(a){return a.Cc};E(dU,"scala.collection.mutable.HashMap$$anon$3",{k5:1,cF:1,Pa:1,Da:1,I:1,J:1}); +function MT(a){this.pl=this.Ub=0;this.Lf=null;this.Kf=0;this.ym=this.yi=null;this.vJ=0;jQ(this,a);this.vJ=0}MT.prototype=new lQ;MT.prototype.constructor=MT;MT.prototype.s=function(){return this.vJ};MT.prototype.e=function(){this.d()||W().t.e();this.vJ=this.Lf.Uc(this.Ub);this.Ub=1+this.Ub|0;return this};E(MT,"scala.collection.immutable.SetHashIterator",{r4:1,yw:1,Pa:1,Da:1,I:1,J:1});function NT(a){this.pl=this.Ub=0;this.Lf=null;this.Kf=0;this.ym=this.yi=null;jQ(this,a)}NT.prototype=new lQ; +NT.prototype.constructor=NT;NT.prototype.e=function(){this.d()||W().t.e();var a=this.Lf.dh(this.Ub);this.Ub=1+this.Ub|0;return a};E(NT,"scala.collection.immutable.SetIterator",{s4:1,yw:1,Pa:1,Da:1,I:1,J:1});function OT(){this.$h=this.nj=0}OT.prototype=new q;OT.prototype.constructor=OT;function PT(){}PT.prototype=OT.prototype;OT.prototype.ht=function(a){if(this.njb&&Np(this,a);return this};OT.prototype.Yc=function(a){return this.pO(a)};function QT(){this.lQ=this.mQ=null;RT=this;this.mQ=new TP(this);this.lQ=new XH(new Ib(0))}QT.prototype=new q;QT.prototype.constructor=QT; +QT.prototype.fE=function(a){return new dL(new ST(a.pd()),new Nh(b=>cq(dq(),b)))};function cq(a,b){if(null===b)return null;if(b instanceof Ib)return new XH(b);if(b instanceof y)return new TT(b);if(b instanceof C)return new UT(b);if(b instanceof A)return new VT(b);if(b instanceof B)return new WT(b);if(b instanceof v)return new XT(b);if(b instanceof w)return new YT(b);if(b instanceof x)return new ZT(b);if(b instanceof t)return new $T(b);if(Yd(b))return new aU(b);throw new G(b);} +QT.prototype.iI=function(a,b){return cq(0,MH(Ci(),a,b))};E(QT,"scala.collection.mutable.ArraySeq$",{P4:1,vS:1,eS:1,dS:1,fS:1,g:1});var RT;function dq(){RT||(RT=new QT);return RT}function bU(a){this.Gm=0;this.vl=null;this.du=0;this.cu=null;FR(this,a)}bU.prototype=new HR;bU.prototype.constructor=bU;bU.prototype.rA=function(a){return H(new J,a.oj,a.Cc)};E(bU,"scala.collection.mutable.HashMap$$anon$1",{i5:1,cF:1,Pa:1,Da:1,I:1,J:1}); +function cU(a){this.Gm=0;this.vl=null;this.du=0;this.cu=null;FR(this,a)}cU.prototype=new HR;cU.prototype.constructor=cU;cU.prototype.rA=function(a){return a.oj};E(cU,"scala.collection.mutable.HashMap$$anon$2",{j5:1,cF:1,Pa:1,Da:1,I:1,J:1});function dU(a){this.Gm=0;this.vl=null;this.du=0;this.cu=null;FR(this,a)}dU.prototype=new HR;dU.prototype.constructor=dU;dU.prototype.rA=function(a){return a.Cc};E(dU,"scala.collection.mutable.HashMap$$anon$3",{k5:1,cF:1,Pa:1,Da:1,I:1,J:1}); function eU(a){this.Gm=0;this.vl=null;this.du=0;this.cu=null;FR(this,a)}eU.prototype=new HR;eU.prototype.constructor=eU;eU.prototype.rA=function(a){return a};E(eU,"scala.collection.mutable.HashMap$$anon$4",{l5:1,cF:1,Pa:1,Da:1,I:1,J:1});function fU(a){this.Gm=0;this.vl=null;this.du=0;this.cu=null;this.DJ=0;FR(this,a);this.DJ=0}fU.prototype=new HR;fU.prototype.constructor=fU;fU.prototype.s=function(){return this.DJ}; -fU.prototype.rA=function(a){var b=Bm(),c=a.Ai;this.DJ=SI(b,c^(c>>>16|0),M(P(),a.Cc));return this};E(fU,"scala.collection.mutable.HashMap$$anon$5",{m5:1,cF:1,Pa:1,Da:1,I:1,J:1});function gU(a){this.rr=0;this.Io=null;this.nB=0;this.mB=null;IR(this,a)}gU.prototype=new KR;gU.prototype.constructor=gU;gU.prototype.eI=function(a){return a.Pw};E(gU,"scala.collection.mutable.HashSet$$anon$1",{r5:1,pQ:1,Pa:1,Da:1,I:1,J:1});function hU(a){this.rr=0;this.Io=null;this.nB=0;this.mB=null;IR(this,a)} +fU.prototype.rA=function(a){var b=Bm(),c=a.Ai;this.DJ=SI(b,c^(c>>>16|0),M(P(),a.Cc));return this};E(fU,"scala.collection.mutable.HashMap$$anon$5",{m5:1,cF:1,Pa:1,Da:1,I:1,J:1});function gU(a){this.rr=0;this.Io=null;this.nB=0;this.mB=null;IR(this,a)}gU.prototype=new KR;gU.prototype.constructor=gU;gU.prototype.eI=function(a){return a.Qw};E(gU,"scala.collection.mutable.HashSet$$anon$1",{r5:1,pQ:1,Pa:1,Da:1,I:1,J:1});function hU(a){this.rr=0;this.Io=null;this.nB=0;this.mB=null;IR(this,a)} hU.prototype=new KR;hU.prototype.constructor=hU;hU.prototype.eI=function(a){return a};E(hU,"scala.collection.mutable.HashSet$$anon$2",{s5:1,pQ:1,Pa:1,Da:1,I:1,J:1});function iU(a){this.rr=0;this.Io=null;this.nB=0;this.mB=null;this.EJ=0;IR(this,a);this.EJ=0}iU.prototype=new KR;iU.prototype.constructor=iU;iU.prototype.s=function(){return this.EJ};iU.prototype.eI=function(a){this.EJ=jU(a.sr);return this};E(iU,"scala.collection.mutable.HashSet$$anon$3",{t5:1,pQ:1,Pa:1,Da:1,I:1,J:1}); function HJ(a,b){this.XR=a;this.lP=b}HJ.prototype=new q;HJ.prototype.constructor=HJ;g=HJ.prototype;g.bg=function(a,b){return 0>=this.ha(a,b)};g.Jg=function(a,b){return ZR(this,a,b)};g.Lg=function(a,b){return 0>this.ha(a,b)};g.$f=function(a,b){return 0null!==h),this.jc),c=null;c=[];for(var d=0;dnull!==h),this.jc),c=null;c=[];for(var d=0;d>>0)).toString(16)}}E(mH,"java.util.IllegalFormatCodePointException",{Q_:1,rm:1,Xi:1,Vc:1,tc:1,Bb:1,g:1}); -class MN extends PS{constructor(a,b){super();this.BR=a;this.AR=b;uk(this,null,!0);if(null===b)throw ri();}Mh(){return""+tb(this.BR)+" !\x3d "+this.AR.hl()}}E(MN,"java.util.IllegalFormatConversionException",{R_:1,rm:1,Xi:1,Vc:1,tc:1,Bb:1,g:1});class KN extends PS{constructor(a){super();this.CR=a;uk(this,null,!0);if(null===a)throw ri();}Mh(){return"Flags \x3d '"+this.CR+"'"}}E(KN,"java.util.IllegalFormatFlagsException",{S_:1,rm:1,Xi:1,Vc:1,tc:1,Bb:1,g:1}); -class JN extends PS{constructor(a){super();this.DR=a;uk(this,null,!0)}Mh(){return""+this.DR}}E(JN,"java.util.IllegalFormatPrecisionException",{T_:1,rm:1,Xi:1,Vc:1,tc:1,Bb:1,g:1});class cH extends PS{constructor(a){super();this.ER=a;uk(this,null,!0)}Mh(){return""+this.ER}}E(cH,"java.util.IllegalFormatWidthException",{U_:1,rm:1,Xi:1,Vc:1,tc:1,Bb:1,g:1});class jH extends PS{constructor(a){super();this.FR=a;uk(this,null,!0);if(null===a)throw ri();}Mh(){return"Format specifier '"+this.FR+"'"}} -E(jH,"java.util.MissingFormatArgumentException",{V_:1,rm:1,Xi:1,Vc:1,tc:1,Bb:1,g:1});class fH extends PS{constructor(a){super();this.GR=a;uk(this,null,!0);if(null===a)throw ri();}Mh(){return this.GR}}E(fH,"java.util.MissingFormatWidthException",{W_:1,rm:1,Xi:1,Vc:1,tc:1,Bb:1,g:1});class $G extends PS{constructor(a){super();this.HR=a;uk(this,null,!0);if(null===a)throw ri();}Mh(){return"Conversion \x3d '"+this.HR+"'"}} -E($G,"java.util.UnknownFormatConversionException",{Z_:1,rm:1,Xi:1,Vc:1,tc:1,Bb:1,g:1});function kp(a,b){this.WH=this.VH=null;this.nO=a;this.oO=b;H(this,null,null)}kp.prototype=new RP;kp.prototype.constructor=kp;kp.prototype.dA=function(){return this.nO};kp.prototype.XH=function(){return this.oO};kp.prototype.la=function(){return this.oO};kp.prototype.Ia=function(){return this.nO};E(kp,"scala.Tuple2$mcII$sp",{NZ:1,nR:1,WR:1,E:1,q:1,g:1,D0:1}); -function ni(a){this.dj=null;this.wi=this.Xa=0;this.mP=a;ai(this,a)}ni.prototype=new XS;ni.prototype.constructor=ni;ni.prototype.e=function(){this.Xa>=this.mP.a.length&&W().t.e();var a=this.mP.a[this.Xa];this.Xa=1+this.Xa|0;return a};E(ni,"scala.collection.ArrayOps$ArrayIterator$mcB$sp",{O1:1,oo:1,Pa:1,Da:1,I:1,J:1,g:1});function mi(a){this.dj=null;this.wi=this.Xa=0;this.nP=a;ai(this,a)}mi.prototype=new XS;mi.prototype.constructor=mi; -mi.prototype.e=function(){this.Xa>=this.nP.a.length&&W().t.e();var a=this.nP.a[this.Xa];this.Xa=1+this.Xa|0;return p(a)};E(mi,"scala.collection.ArrayOps$ArrayIterator$mcC$sp",{P1:1,oo:1,Pa:1,Da:1,I:1,J:1,g:1});function di(a){this.dj=null;this.wi=this.Xa=0;this.oP=a;ai(this,a)}di.prototype=new XS;di.prototype.constructor=di;di.prototype.e=function(){this.Xa>=this.oP.a.length&&W().t.e();var a=this.oP.a[this.Xa];this.Xa=1+this.Xa|0;return a}; -E(di,"scala.collection.ArrayOps$ArrayIterator$mcD$sp",{Q1:1,oo:1,Pa:1,Da:1,I:1,J:1,g:1});function li(a){this.dj=null;this.wi=this.Xa=0;this.pP=a;ai(this,a)}li.prototype=new XS;li.prototype.constructor=li;li.prototype.e=function(){this.Xa>=this.pP.a.length&&W().t.e();var a=this.pP.a[this.Xa];this.Xa=1+this.Xa|0;return a};E(li,"scala.collection.ArrayOps$ArrayIterator$mcF$sp",{R1:1,oo:1,Pa:1,Da:1,I:1,J:1,g:1});function ci(a){this.dj=null;this.wi=this.Xa=0;this.qP=a;ai(this,a)}ci.prototype=new XS; -ci.prototype.constructor=ci;ci.prototype.e=function(){this.Xa>=this.qP.a.length&&W().t.e();var a=this.qP.a[this.Xa];this.Xa=1+this.Xa|0;return a};E(ci,"scala.collection.ArrayOps$ArrayIterator$mcI$sp",{S1:1,oo:1,Pa:1,Da:1,I:1,J:1,g:1});function ei(a){this.dj=null;this.wi=this.Xa=0;this.rP=a;ai(this,a)}ei.prototype=new XS;ei.prototype.constructor=ei;ei.prototype.e=function(){this.Xa>=this.rP.a.length&&W().t.e();var a=this.rP.a[this.Xa],b=a.l;a=a.m;this.Xa=1+this.Xa|0;return new n(b,a)}; -E(ei,"scala.collection.ArrayOps$ArrayIterator$mcJ$sp",{T1:1,oo:1,Pa:1,Da:1,I:1,J:1,g:1});function oi(a){this.dj=null;this.wi=this.Xa=0;this.sP=a;ai(this,a)}oi.prototype=new XS;oi.prototype.constructor=oi;oi.prototype.e=function(){this.Xa>=this.sP.a.length&&W().t.e();var a=this.sP.a[this.Xa];this.Xa=1+this.Xa|0;return a};E(oi,"scala.collection.ArrayOps$ArrayIterator$mcS$sp",{U1:1,oo:1,Pa:1,Da:1,I:1,J:1,g:1});function qi(a){this.dj=null;this.wi=this.Xa=0;this.cS=a;ai(this,a)}qi.prototype=new XS; -qi.prototype.constructor=qi;qi.prototype.e=function(){this.Xa>=this.cS.a.length&&W().t.e();this.Xa=1+this.Xa|0};E(qi,"scala.collection.ArrayOps$ArrayIterator$mcV$sp",{V1:1,oo:1,Pa:1,Da:1,I:1,J:1,g:1});function pi(a){this.dj=null;this.wi=this.Xa=0;this.tP=a;ai(this,a)}pi.prototype=new XS;pi.prototype.constructor=pi;pi.prototype.e=function(){this.Xa>=this.tP.a.length&&W().t.e();var a=this.tP.a[this.Xa];this.Xa=1+this.Xa|0;return a}; +E(FS,"tigerpython.parser.parsing.ExtBufferedIterator$SequenceIterator",{gW:1,fW:1,SA:1,Da:1,I:1,J:1});class aH extends PS{constructor(a){super();this.uR=a;uk(this,null,!0);if(null===a)throw ri();}Mh(){return"Flags \x3d '"+this.uR+"'"}}E(aH,"java.util.DuplicateFormatFlagsException",{G_:1,rm:1,Wi:1,Vc:1,tc:1,Bb:1,g:1});class LN extends PS{constructor(a,b){super();this.wR=a;this.vR=b;uk(this,null,!0);if(null===a)throw ri();}Mh(){return"Conversion \x3d "+tb(this.vR)+", Flags \x3d "+this.wR}} +E(LN,"java.util.FormatFlagsConversionMismatchException",{H_:1,rm:1,Wi:1,Vc:1,tc:1,Bb:1,g:1});class iH extends PS{constructor(a){super();this.yR=a;uk(this,null,!0)}Mh(){return this.yR}}E(iH,"java.util.IllegalFormatArgumentIndexException",{P_:1,rm:1,Wi:1,Vc:1,tc:1,Bb:1,g:1});class mH extends PS{constructor(a){super();this.zR=a;uk(this,null,!0)}Mh(){return"Code point \x3d 0x"+(+(this.zR>>>0)).toString(16)}}E(mH,"java.util.IllegalFormatCodePointException",{Q_:1,rm:1,Wi:1,Vc:1,tc:1,Bb:1,g:1}); +class MN extends PS{constructor(a,b){super();this.BR=a;this.AR=b;uk(this,null,!0);if(null===b)throw ri();}Mh(){return""+tb(this.BR)+" !\x3d "+this.AR.hl()}}E(MN,"java.util.IllegalFormatConversionException",{R_:1,rm:1,Wi:1,Vc:1,tc:1,Bb:1,g:1});class KN extends PS{constructor(a){super();this.CR=a;uk(this,null,!0);if(null===a)throw ri();}Mh(){return"Flags \x3d '"+this.CR+"'"}}E(KN,"java.util.IllegalFormatFlagsException",{S_:1,rm:1,Wi:1,Vc:1,tc:1,Bb:1,g:1}); +class JN extends PS{constructor(a){super();this.DR=a;uk(this,null,!0)}Mh(){return""+this.DR}}E(JN,"java.util.IllegalFormatPrecisionException",{T_:1,rm:1,Wi:1,Vc:1,tc:1,Bb:1,g:1});class cH extends PS{constructor(a){super();this.ER=a;uk(this,null,!0)}Mh(){return""+this.ER}}E(cH,"java.util.IllegalFormatWidthException",{U_:1,rm:1,Wi:1,Vc:1,tc:1,Bb:1,g:1});class jH extends PS{constructor(a){super();this.FR=a;uk(this,null,!0);if(null===a)throw ri();}Mh(){return"Format specifier '"+this.FR+"'"}} +E(jH,"java.util.MissingFormatArgumentException",{V_:1,rm:1,Wi:1,Vc:1,tc:1,Bb:1,g:1});class fH extends PS{constructor(a){super();this.GR=a;uk(this,null,!0);if(null===a)throw ri();}Mh(){return this.GR}}E(fH,"java.util.MissingFormatWidthException",{W_:1,rm:1,Wi:1,Vc:1,tc:1,Bb:1,g:1});class $G extends PS{constructor(a){super();this.HR=a;uk(this,null,!0);if(null===a)throw ri();}Mh(){return"Conversion \x3d '"+this.HR+"'"}} +E($G,"java.util.UnknownFormatConversionException",{Z_:1,rm:1,Wi:1,Vc:1,tc:1,Bb:1,g:1});function kp(a,b){this.WH=this.VH=null;this.nO=a;this.oO=b;H(this,null,null)}kp.prototype=new RP;kp.prototype.constructor=kp;kp.prototype.dA=function(){return this.nO};kp.prototype.XH=function(){return this.oO};kp.prototype.la=function(){return this.oO};kp.prototype.Ia=function(){return this.nO};E(kp,"scala.Tuple2$mcII$sp",{NZ:1,nR:1,WR:1,E:1,q:1,g:1,D0:1}); +function ni(a){this.cj=null;this.wi=this.Xa=0;this.mP=a;ai(this,a)}ni.prototype=new XS;ni.prototype.constructor=ni;ni.prototype.e=function(){this.Xa>=this.mP.a.length&&W().t.e();var a=this.mP.a[this.Xa];this.Xa=1+this.Xa|0;return a};E(ni,"scala.collection.ArrayOps$ArrayIterator$mcB$sp",{O1:1,oo:1,Pa:1,Da:1,I:1,J:1,g:1});function mi(a){this.cj=null;this.wi=this.Xa=0;this.nP=a;ai(this,a)}mi.prototype=new XS;mi.prototype.constructor=mi; +mi.prototype.e=function(){this.Xa>=this.nP.a.length&&W().t.e();var a=this.nP.a[this.Xa];this.Xa=1+this.Xa|0;return p(a)};E(mi,"scala.collection.ArrayOps$ArrayIterator$mcC$sp",{P1:1,oo:1,Pa:1,Da:1,I:1,J:1,g:1});function di(a){this.cj=null;this.wi=this.Xa=0;this.oP=a;ai(this,a)}di.prototype=new XS;di.prototype.constructor=di;di.prototype.e=function(){this.Xa>=this.oP.a.length&&W().t.e();var a=this.oP.a[this.Xa];this.Xa=1+this.Xa|0;return a}; +E(di,"scala.collection.ArrayOps$ArrayIterator$mcD$sp",{Q1:1,oo:1,Pa:1,Da:1,I:1,J:1,g:1});function li(a){this.cj=null;this.wi=this.Xa=0;this.pP=a;ai(this,a)}li.prototype=new XS;li.prototype.constructor=li;li.prototype.e=function(){this.Xa>=this.pP.a.length&&W().t.e();var a=this.pP.a[this.Xa];this.Xa=1+this.Xa|0;return a};E(li,"scala.collection.ArrayOps$ArrayIterator$mcF$sp",{R1:1,oo:1,Pa:1,Da:1,I:1,J:1,g:1});function ci(a){this.cj=null;this.wi=this.Xa=0;this.qP=a;ai(this,a)}ci.prototype=new XS; +ci.prototype.constructor=ci;ci.prototype.e=function(){this.Xa>=this.qP.a.length&&W().t.e();var a=this.qP.a[this.Xa];this.Xa=1+this.Xa|0;return a};E(ci,"scala.collection.ArrayOps$ArrayIterator$mcI$sp",{S1:1,oo:1,Pa:1,Da:1,I:1,J:1,g:1});function ei(a){this.cj=null;this.wi=this.Xa=0;this.rP=a;ai(this,a)}ei.prototype=new XS;ei.prototype.constructor=ei;ei.prototype.e=function(){this.Xa>=this.rP.a.length&&W().t.e();var a=this.rP.a[this.Xa],b=a.l;a=a.m;this.Xa=1+this.Xa|0;return new n(b,a)}; +E(ei,"scala.collection.ArrayOps$ArrayIterator$mcJ$sp",{T1:1,oo:1,Pa:1,Da:1,I:1,J:1,g:1});function oi(a){this.cj=null;this.wi=this.Xa=0;this.sP=a;ai(this,a)}oi.prototype=new XS;oi.prototype.constructor=oi;oi.prototype.e=function(){this.Xa>=this.sP.a.length&&W().t.e();var a=this.sP.a[this.Xa];this.Xa=1+this.Xa|0;return a};E(oi,"scala.collection.ArrayOps$ArrayIterator$mcS$sp",{U1:1,oo:1,Pa:1,Da:1,I:1,J:1,g:1});function qi(a){this.cj=null;this.wi=this.Xa=0;this.cS=a;ai(this,a)}qi.prototype=new XS; +qi.prototype.constructor=qi;qi.prototype.e=function(){this.Xa>=this.cS.a.length&&W().t.e();this.Xa=1+this.Xa|0};E(qi,"scala.collection.ArrayOps$ArrayIterator$mcV$sp",{V1:1,oo:1,Pa:1,Da:1,I:1,J:1,g:1});function pi(a){this.cj=null;this.wi=this.Xa=0;this.tP=a;ai(this,a)}pi.prototype=new XS;pi.prototype.constructor=pi;pi.prototype.e=function(){this.Xa>=this.tP.a.length&&W().t.e();var a=this.tP.a[this.Xa];this.Xa=1+this.Xa|0;return a}; E(pi,"scala.collection.ArrayOps$ArrayIterator$mcZ$sp",{W1:1,oo:1,Pa:1,Da:1,I:1,J:1,g:1});function lU(a,b){if(a.v())throw Xh("empty.max");var c=a.Wq();return(null===b?null===c:b.b(c))?EK(a):b.ag(a.Wq())?a.k().e():Dj(a,b)}function mU(a){return a.bf()+"(\x3cnot computed\x3e)"}function nU(a){this.QS=a;this.nr=0;this.Fo=2}nU.prototype=new LT;nU.prototype.constructor=nU;nU.prototype.u=function(a){a:{var b=this.QS;switch(a){case 0:a=b.Tt;break a;case 1:a=b.Ut;break a;default:throw new G(a);}}return a}; E(nU,"scala.collection.immutable.Set$Set2$$anon$1",{l4:1,aQ:1,Pa:1,Da:1,I:1,J:1,g:1});function oU(a){this.RS=a;this.nr=0;this.Fo=3}oU.prototype=new LT;oU.prototype.constructor=oU;oU.prototype.u=function(a){a:{var b=this.RS;switch(a){case 0:a=b.Vt;break a;case 1:a=b.kr;break a;case 2:a=b.lr;break a;default:throw new G(a);}}return a};E(oU,"scala.collection.immutable.Set$Set3$$anon$2",{n4:1,aQ:1,Pa:1,Da:1,I:1,J:1,g:1});function pU(a){this.SS=a;this.nr=0;this.Fo=4}pU.prototype=new LT; -pU.prototype.constructor=pU;pU.prototype.u=function(a){return qU(this.SS,a)};E(pU,"scala.collection.immutable.Set$Set4$$anon$3",{p4:1,aQ:1,Pa:1,Da:1,I:1,J:1,g:1});function ST(a){this.iQ=!1;this.CJ=null;this.jB=a;this.$h=this.oj=0;this.iQ=a===ja(Mc);this.CJ=[]}ST.prototype=new PT;ST.prototype.constructor=ST;g=ST.prototype;g.cI=function(){var a=new vK;uk(a,"unreachable",!0);throw a;};function rU(a,b){a.CJ.push(a.iQ?Ra(b):null===b?a.jB.Xd.No:b);return a} -function sU(a,b){for(b=b.k();b.d();)rU(a,b.e());return a}g.FI=function(){};g.$b=function(){return F((this.jB===ja(Ac)?ja(wa):this.jB===ja(dj)||this.jB===ja(ej)?ja(yc):this.jB).Xd).Mo(this.CJ)};g.j=function(){return"ArrayBuilder.generic"};g.Yc=function(a){return sU(this,a)};g.pO=function(a){return sU(this,a)};g.Ma=function(a){return rU(this,a)};E(ST,"scala.collection.mutable.ArrayBuilder$generic",{L4:1,VS:1,Hm:1,Oe:1,xd:1,wd:1,g:1}); -function tU(a,b){return a.oj===b&&0c||c>=e)throw Wl(new Xl,c+" is out of bounds (min 0, max "+(-1+e|0)+")");e=(a.vc-a.Ob|0)&(-1+a.gb.a.length|0)|0;var f=ce(fe(),b)-c|0;e=e=e)throw Wl(new Xl,"0 is out of bounds (min 0, max "+(-1+e|0)+")");e=(a.Ob+0|0)&(-1+a.gb.a.length|0);f=a.gb.a.length-e|0;f=dthis.ha(a,b) g=DU.prototype;g.bg=function(a,b){return 0>=this.ha(a,b)};g.Jg=function(a,b){return ZR(this,a,b)};g.Lg=function(a,b){return 0>this.ha(a,b)};g.$f=function(a,b){return 0=this.ha(a,b)};g.Jg=function(a,b){return ZR(this,a,b)};g.Lg=function(a,b){return 0>this.ha(a,b)};g.$f=function(a,b){return 0=this.ha(a,b)};g.Jg=function(a,b){return ZR(this,a,b)};g.Lg=function(a,b){return 0>this.ha(a,b)};g.$f=function(a,b){return 0>6);var c=a.m&(0===(32&b)?0:1<=b);c&&b.St;)c=b.gE(),c=a.he(c),c=0===c.l&&0===c.m;return c} function OU(a,b){if(ui()===b){for(b=-1+a.ff()|0;0<=b;){var c=a.he(b),d=c.l;c=c.m;if(0!==d||0!==c)return-1+(((1+b|0)<<6)-(0!==c?Math.clz32(c)|0:32+(Math.clz32(d)|0)|0)|0)|0;b=-1+b|0}throw Xh("empty.largestInt");}if(kU(ui(),b)){b=a.ff();for(d=0;d>>1|0,e=e>>>1|0|f<<31,f=h,d=1+d|0;else break}c=1+c|0}}function QU(a,b){if(0>=a.Yd(1))return a;for(var c=a.ih(),d=$P(),e=a.k(),f=!1;e.d();){var h=e.e();aQ(d,b.y(h))?c.Ma(h):f=!0}return f?c.$b():a}function RU(){this.LI=null;SU=this;this.LI=new dS(this)}RU.prototype=new q;RU.prototype.constructor=RU;g=RU.prototype;g.ag=function(a){return kU(this,a)}; g.bg=function(a,b){return 0>=this.ha(a,b)};g.Jg=function(a,b){return ZR(this,a,b)};g.Lg=function(a,b){return 0>this.ha(a,b)};g.$f=function(a,b){return 0UV(this).k()))};g.U=function(){return this.xm};g.v=function(){return 0===this.xm}; -g.HJ=function(a){var b=this.qw;return(null===a?null===b:a.b(b))?this:a.ag(this.qw)?new TV(this):QV(new SV,VV(this),this.xm,a)};g.Hg=function(a){return YK(eL(),a)};g.Tc=function(a){return WV(new XV,this,a)};g.qf=function(a){return this.HJ(a)};E(SV,"scala.collection.SeqView$Sorted",{z2:1,vm:1,Za:1,qa:1,I:1,J:1,Jf:1,oa:1,pa:1,g:1});function YV(a){if(!a.EE){var b=new ZV,c=UV(a.wm);b.Ft=c;a.DE=b;a.EE=!0}return a.DE}function TV(a){this.DE=null;this.EE=!1;this.wm=a}TV.prototype=new q; +function UV(a){if(!a.fJ&&!a.fJ){var b=a.xm;0===b?b=R():1===b?b=fy(R(),new Q([a.VA.X()])):(b=new Ib(b),a.VA.ma(b,0,2147483647),wf($f(),b,a.rw),b=ij(jj(),b));a.gJ=!0;a.VA=null;a.FP=b;a.fJ=!0}return a.FP}function VV(a){var b=a.VA;return a.gJ?UV(a):b}g.u=function(a){return UV(this).u(a)};g.i=function(){return this.xm};g.k=function(){return W().t.ti(new sp(()=>UV(this).k()))};g.U=function(){return this.xm};g.v=function(){return 0===this.xm}; +g.HJ=function(a){var b=this.rw;return(null===a?null===b:a.b(b))?this:a.ag(this.rw)?new TV(this):QV(new SV,VV(this),this.xm,a)};g.Hg=function(a){return YK(eL(),a)};g.Tc=function(a){return WV(new XV,this,a)};g.qf=function(a){return this.HJ(a)};E(SV,"scala.collection.SeqView$Sorted",{z2:1,vm:1,Za:1,qa:1,I:1,J:1,Jf:1,oa:1,pa:1,g:1});function YV(a){if(!a.EE){var b=new ZV,c=UV(a.wm);b.Ft=c;a.DE=b;a.EE=!0}return a.DE}function TV(a){this.DE=null;this.EE=!1;this.wm=a}TV.prototype=new q; TV.prototype.constructor=TV;g=TV.prototype;g.sc=function(){return eL()};g.j=function(){return mU(this)};g.bf=function(){return"SeqView"};g.ih=function(){return eL().Kb()};g.co=function(){return qO(this)};g.Fg=function(a){return rO(this,a)};g.we=function(){return this.wm.k()};g.fo=function(a,b){return LK(this.k(),a,b)};g.ya=function(a){return cp(this,a)};g.Yd=function(a){return FK(this,a)};g.X=function(){return this.k().e()};g.Ha=function(a){vj(this,a)};g.it=function(a){return xj(this,a)}; g.Oh=function(a){return yj(this,a)};g.ma=function(a,b,c){return Aj(this,a,b,c)};g.jo=function(a){return Dj(this,a)};g.Eg=function(a,b,c,d){return Ij(this,a,b,c,d)};g.tf=function(a){return Jj(this,a)};g.u=function(a){return(this.EE?this.DE:YV(this)).u(a)};g.i=function(){return this.wm.xm};g.k=function(){return W().t.ti(new sp(()=>(this.EE?this.DE:YV(this)).k()))};g.U=function(){return this.wm.xm};g.v=function(){return 0===this.wm.xm}; -g.HJ=function(a){var b=this.wm.qw;return(null===a?null===b:a.b(b))?this.wm:a.ag(this.wm.qw)?this:QV(new SV,VV(this.wm),this.wm.xm,a)};g.Hg=function(a){return YK(eL(),a)};g.Tc=function(a){return WV(new XV,this,a)};g.qf=function(a){return this.HJ(a)};E(TV,"scala.collection.SeqView$Sorted$ReverseSorted",{A2:1,vm:1,Za:1,qa:1,I:1,J:1,Jf:1,oa:1,pa:1,g:1});function ZK(a){this.zS=a}ZK.prototype=new nV;ZK.prototype.constructor=ZK;ZK.prototype.k=function(){return jk(this.zS)}; +g.HJ=function(a){var b=this.wm.rw;return(null===a?null===b:a.b(b))?this.wm:a.ag(this.wm.rw)?this:QV(new SV,VV(this.wm),this.wm.xm,a)};g.Hg=function(a){return YK(eL(),a)};g.Tc=function(a){return WV(new XV,this,a)};g.qf=function(a){return this.HJ(a)};E(TV,"scala.collection.SeqView$Sorted$ReverseSorted",{A2:1,vm:1,Za:1,qa:1,I:1,J:1,Jf:1,oa:1,pa:1,g:1});function ZK(a){this.zS=a}ZK.prototype=new nV;ZK.prototype.constructor=ZK;ZK.prototype.k=function(){return jk(this.zS)}; E(ZK,"scala.collection.View$$anon$1",{G2:1,nh:1,wa:1,oa:1,I:1,qa:1,J:1,pa:1,Jf:1,g:1});function dT(a,b){this.iJ=a;this.jJ=b}dT.prototype=new nV;dT.prototype.constructor=dT;dT.prototype.k=function(){return this.iJ.k().ti(new sp(()=>this.jJ.k()))};dT.prototype.U=function(){var a=this.iJ.U();if(0<=a){var b=this.jJ.U();return 0<=b?a+b|0:-1}return-1};dT.prototype.v=function(){return this.iJ.v()&&this.jJ.v()};E(dT,"scala.collection.View$Concat",{H2:1,nh:1,wa:1,oa:1,I:1,qa:1,J:1,pa:1,Jf:1,g:1}); -function sO(a,b){this.kJ=a;this.AS=b}sO.prototype=new nV;sO.prototype.constructor=sO;sO.prototype.k=function(){return new cj(this.kJ.k(),this.AS)};sO.prototype.U=function(){return 0===this.kJ.U()?0:-1};sO.prototype.v=function(){return this.kJ.v()};E(sO,"scala.collection.View$DistinctBy",{I2:1,nh:1,wa:1,oa:1,I:1,qa:1,J:1,pa:1,Jf:1,g:1});function VS(a,b,c){a.tw=b;a.WA=c;a.Gt=0=this.ha(a,b)};g.Jg=function(a,b){return ZR(this,a,b)};g.Lg=function(a,b){return 0>this.ha(a,b)};g.$f=function(a,b){return 0a?-1:1)<<24>>24};g.sj=function(a){return a|0};g.Sb=function(a){return a<<24>>24};g.LA=function(a){return(-(a|0)|0)<<24>>24};g.wt=function(a,b){return qb(a|0,b|0)<<24>>24};g.lo=function(a,b){return lb(a|0,b|0)<<24>>24};g.vk=function(a,b){return Math.imul(a|0,b|0)<<24>>24};g.hh=function(a,b){return((a|0)-(b|0)|0)<<24>>24}; +g.cg=function(a,b){return aS(this,a,b)};g.dg=function(a,b){return bS(this,a,b)};g.ag=function(a){return cS(this,a)};g.Im=function(a){a|=0;return(0===a?0:0>a?-1:1)<<24>>24};g.rj=function(a){return a|0};g.Sb=function(a){return a<<24>>24};g.LA=function(a){return(-(a|0)|0)<<24>>24};g.wt=function(a,b){return qb(a|0,b|0)<<24>>24};g.lo=function(a,b){return lb(a|0,b|0)<<24>>24};g.vk=function(a,b){return Math.imul(a|0,b|0)<<24>>24};g.hh=function(a,b){return((a|0)-(b|0)|0)<<24>>24}; g.Hf=function(a,b){return((a|0)+(b|0)|0)<<24>>24};g.ha=function(a,b){return(a|0)-(b|0)|0};E(mI,"scala.math.Numeric$ByteIsIntegral$",{L0:1,K0:1,kE:1,lE:1,Qh:1,Ie:1,Rh:1,Ph:1,g:1,YR:1});var lI;function bW(){}bW.prototype=new q;bW.prototype.constructor=bW;g=bW.prototype;g.bg=function(a,b){return 0>=this.ha(a,b)};g.Jg=function(a,b){return ZR(this,a,b)};g.Lg=function(a,b){return 0>this.ha(a,b)};g.$f=function(a,b){return 0a?-1:1))};g.sj=function(a){return Ra(a)};g.Sb=function(a){return p(65535&a)};g.LA=function(a){return p(65535&(-Ra(a)|0))};g.wt=function(a,b){return p(65535&qb(Ra(a),Ra(b)))};g.lo=function(a,b){return p(65535&lb(Ra(a),Ra(b)))};g.vk=function(a,b){return p(65535&Math.imul(Ra(a),Ra(b)))};g.hh=function(a,b){return p(65535&(Ra(a)-Ra(b)|0))}; +g.cg=function(a,b){return aS(this,a,b)};g.dg=function(a,b){return bS(this,a,b)};g.ag=function(a){return cS(this,a)};g.Im=function(a){a=Ra(a);return p(65535&(0===a?0:0>a?-1:1))};g.rj=function(a){return Ra(a)};g.Sb=function(a){return p(65535&a)};g.LA=function(a){return p(65535&(-Ra(a)|0))};g.wt=function(a,b){return p(65535&qb(Ra(a),Ra(b)))};g.lo=function(a,b){return p(65535&lb(Ra(a),Ra(b)))};g.vk=function(a,b){return p(65535&Math.imul(Ra(a),Ra(b)))};g.hh=function(a,b){return p(65535&(Ra(a)-Ra(b)|0))}; g.Hf=function(a,b){return p(65535&(Ra(a)+Ra(b)|0))};g.ha=function(a,b){return Ra(a)-Ra(b)|0};E(bW,"scala.math.Numeric$CharIsIntegral$",{N0:1,M0:1,kE:1,lE:1,Qh:1,Ie:1,Rh:1,Ph:1,g:1,ZR:1});var cW;function nI(){cW||(cW=new bW);return cW}function iI(){}iI.prototype=new q;iI.prototype.constructor=iI;g=iI.prototype;g.bg=function(a,b){return 0>=this.ha(a,b)};g.Jg=function(a,b){return ZR(this,a,b)};g.Lg=function(a,b){return 0>this.ha(a,b)};g.$f=function(a,b){return 0a?-1:1};g.sj=function(a){return a|0};g.Sb=function(a){return a};g.LA=function(a){return-(a|0)|0};g.wt=function(a,b){return qb(a|0,b|0)};g.lo=function(a,b){return lb(a|0,b|0)};g.vk=function(a,b){return Math.imul(a|0,b|0)};g.hh=function(a,b){return(a|0)-(b|0)|0};g.Hf=function(a,b){return(a|0)+(b|0)|0}; +g.Gg=function(a,b){return $R(this,a,b)};g.cg=function(a,b){return aS(this,a,b)};g.dg=function(a,b){return bS(this,a,b)};g.ag=function(a){return cS(this,a)};g.Im=function(a){a|=0;return 0===a?0:0>a?-1:1};g.rj=function(a){return a|0};g.Sb=function(a){return a};g.LA=function(a){return-(a|0)|0};g.wt=function(a,b){return qb(a|0,b|0)};g.lo=function(a,b){return lb(a|0,b|0)};g.vk=function(a,b){return Math.imul(a|0,b|0)};g.hh=function(a,b){return(a|0)-(b|0)|0};g.Hf=function(a,b){return(a|0)+(b|0)|0}; g.ha=function(a,b){a|=0;b|=0;return a===b?0:a=this.ha(a,b)};g.Jg=function(a,b){return ZR(this,a,b)};g.Lg=function(a,b){return 0>this.ha(a,b)};g.$f=function(a,b){return 0b?-1:0===b&&0===a.l?0:1;return new n(a,a>>31)};g.sj=function(a){return Va(a).l};g.Sb=function(a){return new n(a,a>>31)};g.LA=function(a){a=Va(a);var b=new n(a.l,a.m);a=b.l;b=b.m;return new n(-a|0,0!==a?~b:-b|0)};g.wt=function(a,b){a=Va(a);var c=Va(b);b=new n(a.l,a.m);a=new n(c.l,c.m);c=Pa();return new n(ph(c,b.l,b.m,a.l,a.m),c.Gb)}; +g.dg=function(a,b){return bS(this,a,b)};g.ag=function(a){return cS(this,a)};g.Im=function(a){a=Va(a);Hl||(Hl=new Gl);a=new n(a.l,a.m);var b=a.m;a=0>b?-1:0===b&&0===a.l?0:1;return new n(a,a>>31)};g.rj=function(a){return Va(a).l};g.Sb=function(a){return new n(a,a>>31)};g.LA=function(a){a=Va(a);var b=new n(a.l,a.m);a=b.l;b=b.m;return new n(-a|0,0!==a?~b:-b|0)};g.wt=function(a,b){a=Va(a);var c=Va(b);b=new n(a.l,a.m);a=new n(c.l,c.m);c=Pa();return new n(ph(c,b.l,b.m,a.l,a.m),c.Gb)}; g.lo=function(a,b){a=Va(a);var c=Va(b);b=new n(a.l,a.m);a=new n(c.l,c.m);c=Pa();return new n(oh(c,b.l,b.m,a.l,a.m),c.Gb)};g.vk=function(a,b){a=Va(a);var c=Va(b);b=new n(a.l,a.m);a=new n(c.l,c.m);c=b.l;var d=a.l,e=65535&c,f=c>>>16|0,h=65535&d,k=d>>>16|0,m=Math.imul(e,h);h=Math.imul(f,h);e=Math.imul(e,k);var r=(m>>>16|0)+e|0;return new n(m+((h+e|0)<<16)|0,(((Math.imul(c,a.m)+Math.imul(b.m,d)|0)+Math.imul(f,k)|0)+(r>>>16|0)|0)+(((65535&r)+h|0)>>>16|0)|0)}; g.hh=function(a,b){a=Va(a);b=Va(b);var c=new n(a.l,a.m);a=new n(b.l,b.m);b=c.l;c=c.m;var d=a.m;a=b-a.l|0;return new n(a,(-2147483648^a)>(-2147483648^b)?-1+(c-d|0)|0:c-d|0)};g.Hf=function(a,b){a=Va(a);b=Va(b);var c=new n(a.l,a.m);a=new n(b.l,b.m);b=c.l;c=c.m;var d=a.m;a=b+a.l|0;return new n(a,(-2147483648^a)<(-2147483648^b)?1+(c+d|0)|0:c+d|0)};g.ha=function(a,b){var c=Va(a);a=c.l;c=c.m;b=Va(b);return Na(Pa(),a,c,b.l,b.m)}; E(pI,"scala.math.Numeric$LongIsIntegral$",{R0:1,Q0:1,kE:1,lE:1,Qh:1,Ie:1,Rh:1,Ph:1,g:1,aS:1});var oI;function kI(){}kI.prototype=new q;kI.prototype.constructor=kI;g=kI.prototype;g.bg=function(a,b){return 0>=this.ha(a,b)};g.Jg=function(a,b){return ZR(this,a,b)};g.Lg=function(a,b){return 0>this.ha(a,b)};g.$f=function(a,b){return 0a?-1:1)<<16>>16};g.sj=function(a){return a|0};g.Sb=function(a){return a<<16>>16};g.LA=function(a){return(-(a|0)|0)<<16>>16};g.wt=function(a,b){return qb(a|0,b|0)<<16>>16};g.lo=function(a,b){return lb(a|0,b|0)<<16>>16};g.vk=function(a,b){return Math.imul(a|0,b|0)<<16>>16};g.hh=function(a,b){return((a|0)-(b|0)|0)<<16>>16};g.Hf=function(a,b){return((a|0)+(b|0)|0)<<16>>16};g.ha=function(a,b){return(a|0)-(b|0)|0}; -E(kI,"scala.math.Numeric$ShortIsIntegral$",{U0:1,T0:1,kE:1,lE:1,Qh:1,Ie:1,Rh:1,Ph:1,g:1,bS:1});var jI;function fN(a,b){qI();return new dW(p(a.Rw),b,p(1),nI())}function eW(){}eW.prototype=new US;eW.prototype.constructor=eW;function fW(){}g=fW.prototype=eW.prototype;g.b=function(a){return oV(this,a)};g.s=function(){var a=Bm();return Cm(a,this,a.rE)};g.sc=function(){wO||(wO=new vO);return wO};g.Dc=function(){return"Set"};g.j=function(){return XP(this)};g.jF=function(a){return this.pm(a)};g.ri=function(a){return this.ya(a)}; -g.y=function(a){return this.ya(a)};function gW(a,b){if(a===b)return!0;if(b&&b.$classData&&b.$classData.Yb.Ct)if(a.Va()===b.Va())try{return a.pm(new Nh(c=>Ri(Si(),b.Kq(c.Ia(),nO().BP),c.la())))}catch(c){if(c instanceof yL)return!1;throw c;}else return!1;else return!1}function gN(a){this.Rw=a}gN.prototype=new q;gN.prototype.constructor=gN;gN.prototype.WD=function(a){return this.Rw-Ra(a)|0};gN.prototype.j=function(){return""+tb(this.Rw)};gN.prototype.s=function(){return this.Rw}; -gN.prototype.b=function(a){Ol||(Ol=new Nl);return a instanceof gN&&this.Rw===a.Rw};E(gN,"scala.runtime.RichChar",{s6:1,i6:1,x6:1,u6:1,i1:1,G0:1,F0:1,q6:1,kP:1,bk:1,r6:1});function hW(){}hW.prototype=new US;hW.prototype.constructor=hW;function iW(){}g=iW.prototype=hW.prototype;g.Vv=function(){return!0};g.b=function(a){return PV(this,a)};g.s=function(){return TI(this)};g.j=function(){return XP(this)};g.co=function(){return qO(this)};g.Fg=function(a){return rO(this,a)};g.we=function(){return this.jh().k()}; +g.Im=function(a){a|=0;return(0===a?0:0>a?-1:1)<<16>>16};g.rj=function(a){return a|0};g.Sb=function(a){return a<<16>>16};g.LA=function(a){return(-(a|0)|0)<<16>>16};g.wt=function(a,b){return qb(a|0,b|0)<<16>>16};g.lo=function(a,b){return lb(a|0,b|0)<<16>>16};g.vk=function(a,b){return Math.imul(a|0,b|0)<<16>>16};g.hh=function(a,b){return((a|0)-(b|0)|0)<<16>>16};g.Hf=function(a,b){return((a|0)+(b|0)|0)<<16>>16};g.ha=function(a,b){return(a|0)-(b|0)|0}; +E(kI,"scala.math.Numeric$ShortIsIntegral$",{U0:1,T0:1,kE:1,lE:1,Qh:1,Ie:1,Rh:1,Ph:1,g:1,bS:1});var jI;function fN(a,b){qI();return new dW(p(a.Sw),b,p(1),nI())}function eW(){}eW.prototype=new US;eW.prototype.constructor=eW;function fW(){}g=fW.prototype=eW.prototype;g.b=function(a){return oV(this,a)};g.s=function(){var a=Bm();return Cm(a,this,a.rE)};g.sc=function(){wO||(wO=new vO);return wO};g.Dc=function(){return"Set"};g.j=function(){return XP(this)};g.jF=function(a){return this.pm(a)};g.ri=function(a){return this.ya(a)}; +g.y=function(a){return this.ya(a)};function gW(a,b){if(a===b)return!0;if(b&&b.$classData&&b.$classData.Yb.Ct)if(a.Va()===b.Va())try{return a.pm(new Nh(c=>Ri(Si(),b.Kq(c.Ia(),nO().BP),c.la())))}catch(c){if(c instanceof yL)return!1;throw c;}else return!1;else return!1}function gN(a){this.Sw=a}gN.prototype=new q;gN.prototype.constructor=gN;gN.prototype.WD=function(a){return this.Sw-Ra(a)|0};gN.prototype.j=function(){return""+tb(this.Sw)};gN.prototype.s=function(){return this.Sw}; +gN.prototype.b=function(a){Ol||(Ol=new Nl);return a instanceof gN&&this.Sw===a.Sw};E(gN,"scala.runtime.RichChar",{s6:1,i6:1,x6:1,u6:1,i1:1,G0:1,F0:1,q6:1,kP:1,bk:1,r6:1});function hW(){}hW.prototype=new US;hW.prototype.constructor=hW;function iW(){}g=iW.prototype=hW.prototype;g.Wv=function(){return!0};g.b=function(a){return PV(this,a)};g.s=function(){return TI(this)};g.j=function(){return XP(this)};g.co=function(){return qO(this)};g.Fg=function(a){return rO(this,a)};g.we=function(){return this.jh().k()}; g.fo=function(a,b){return LK(this.k(),a,b)};g.ya=function(a){return cp(this,a)};g.qf=function(a){return tO(this,a)};g.Yd=function(a){return FK(this,a)};g.v=function(){return Ss(this)};g.Zq=function(a){return uO(this,a)};g.ri=function(a){return!!this.y(a)};function jW(){}jW.prototype=new nV;jW.prototype.constructor=jW;function kW(){}g=kW.prototype=jW.prototype;g.Iq=function(a){return WV(new XV,this,a)};g.Dc=function(){return"SeqView"};g.co=function(){return qO(this)}; g.Fg=function(a){return rO(this,a)};g.we=function(){return this.jh().k()};g.fo=function(a,b){return LK(this.k(),a,b)};g.ya=function(a){return cp(this,a)};g.Yd=function(a){return FK(this,a)};g.v=function(){return Ss(this)};g.qf=function(a){return RV(this,a)};g.Tc=function(a){return this.Iq(a)};function zj(a){return!!(a&&a.$classData&&a.$classData.Yb.Hb)}function lW(){}lW.prototype=new US;lW.prototype.constructor=lW;function mW(){}g=mW.prototype=lW.prototype;g.b=function(a){return gW(this,a)}; g.s=function(){var a=Bm();if(this.v())a=a.qE;else{var b=new VI,c=a.no;this.Zj(b);c=a.f(c,b.OI);c=a.f(c,b.PI);c=a.ko(c,b.QI);a=a.L(c,b.RI)}return a};g.Dc=function(){return"Map"};g.j=function(){return XP(this)};g.Jq=function(a){return this.vt().Zb(a)};g.ih=function(){return this.vt().Kb()};g.Zj=function(a){for(var b=this.k();b.d();){var c=b.e();a.Yf(c.Ia(),c.la())}};g.Zf=function(a){return cT(this,a)};g.Eg=function(a,b,c,d){return eT(this,a,b,c,d)};g.ri=function(a){return!!this.y(a)};g.Hg=function(a){return this.vt().Zb(a)}; -function WV(a,b,c){a.pw=b;a.CE=c;VS(a,b,c);return a}function XV(){this.tw=null;this.Gt=this.WA=0;this.pw=null;this.CE=0}XV.prototype=new $V;XV.prototype.constructor=XV;function nW(){}g=nW.prototype=XV.prototype;g.Dc=function(){return"SeqView"};g.co=function(){return qO(this)};g.Fg=function(a){return rO(this,a)};g.we=function(){return this.jh().k()};g.fo=function(a,b){return LK(this.k(),a,b)};g.ya=function(a){return cp(this,a)};g.Yd=function(a){return FK(this,a)};g.v=function(){return Ss(this)}; -g.i=function(){var a=this.pw.i()-this.Gt|0;return 0>31;var k=f>>>31|0|f>>31<<1;for(f=(h===k?(-2147483648^c)>(-2147483648^f<<1):h>k)?f:c;e>31;var k=f>>>31|0|f>>31<<1;for(f=(h===k?(-2147483648^c)>(-2147483648^f<<1):h>k)?f:c;ea.v()?WL():(cL(),new TL(b.y(QO(a).X()),fX(QO(a).ge(),b)))))}; function hX(a,b,c,d,e){b.P=""+b.P+c;if(!a.lk)b.P+="\x3cnot computed\x3e";else if(!a.v()){c=QO(a).X();b.P=""+b.P+c;c=a;var f=QO(a).ge();if(c!==f&&(!f.lk||QO(c)!==QO(f))&&(c=f,f.lk&&!f.v()))for(f=QO(f).ge();c!==f&&f.lk&&!f.v()&&QO(c)!==QO(f);){b.P=""+b.P+d;var h=QO(c).X();b.P=""+b.P+h;c=QO(c).ge();f=QO(f).ge();f.lk&&!f.v()&&(f=QO(f).ge())}if(!f.lk||f.v()){for(;c!==f;)b.P=""+b.P+d,a=QO(c).X(),b.P=""+b.P+a,c=QO(c).ge();c.lk||(b.P=""+b.P+d,b.P+="\x3cnot computed\x3e")}else{h=a;for(a=0;;){var k=h,m=f;if(k!== m&&QO(k)!==QO(m))h=QO(h).ge(),f=QO(f).ge(),a=1+a|0;else break}h=c;k=f;(h===k||QO(h)===QO(k))&&0a.v()?WL():(cL(),new TL(b.y(QO(a).X()),gX(QO(a).ge(),b))))))}g.Eg=function(a,b,c,d){NO(this);hX(this,a.wc,b,c,d);return a};g.j=function(){var a=new Sj;AN(a);a.P="LazyList";return hX(this,a,"(",", ",")").P};g.y=function(a){return eQ(this,a|0)};g.Tc=function(a){return 0>=a?this:this.lk&&QO(this)===WL()?cL().SE:PO(cL(),this,a)};g.hb=function(a){return iX(this,a)};g.Oa=function(){return QO(this).ge()};g.sc=function(){return cL()}; -E(OO,"scala.collection.immutable.LazyList",{t3:1,Zd:1,wb:1,wa:1,oa:1,I:1,qa:1,J:1,pa:1,pb:1,db:1,Ea:1,Za:1,q:1,sd:1,rb:1,Jd:1,RP:1,cJ:1,zP:1,SP:1,g:1});function Q(a){this.uQ=a}Q.prototype=new q;Q.prototype.constructor=Q;g=Q.prototype;g.Fg=function(a){return QU(this,a)};g.qf=function(a){return tO(this,a)};g.hb=function(a){return xO(this,a)};g.Vv=function(a){return UW(this,a)};g.Zq=function(a){return VW(this,a)};g.Rv=function(){dk||(dk=new ck);return dk.NP};g.k=function(){return QA(new RA,new SA(this))}; +E(OO,"scala.collection.immutable.LazyList",{t3:1,Zd:1,wb:1,wa:1,oa:1,I:1,qa:1,J:1,pa:1,pb:1,db:1,Ea:1,Za:1,q:1,sd:1,rb:1,Jd:1,RP:1,cJ:1,zP:1,SP:1,g:1});function Q(a){this.uQ=a}Q.prototype=new q;Q.prototype.constructor=Q;g=Q.prototype;g.Fg=function(a){return QU(this,a)};g.qf=function(a){return tO(this,a)};g.hb=function(a){return xO(this,a)};g.Wv=function(a){return UW(this,a)};g.Zq=function(a){return VW(this,a)};g.Sv=function(){dk||(dk=new ck);return dk.NP};g.k=function(){return QA(new RA,new SA(this))}; g.we=function(){return ZS(new $S,new SA(this))};g.Tc=function(a){return UP(this,a)};g.X=function(){return dt(this)};g.Kg=function(){return tt(this)};g.Yd=function(a){var b=this.i();return b===a?0:b>>16|0;var f=sj(uj(),e);c=hL(c,d.pj,d.Cc,e,f,0,!0);if(c!==a.oc){for(a=Dk(Hk(),Ck(Hk(),f,0));b.d();)d=b.e(),e=d.Ai,e^=e>>>16|0,a=jL(c,d.pj,d.Cc,e,sj(uj(),e),0,a);return new FL(c)}}return a}if(xQ(b)){if(b.v())return a;c=new HO(a);b.Zj(c);b=c.yw;return b===a.oc?a:new FL(b)}b=b.k();return b.d()?(c=new HO(a), -vj(b,c),b=c.yw,b===a.oc?a:new FL(b)):a}g.Ha=function(a){this.oc.Ha(a)};g.Zj=function(a){this.oc.Zj(a)};g.b=function(a){if(a instanceof FL){if(this===a)return!0;var b=this.oc;a=a.oc;return null===b?null===a:b.b(a)}return gW(this,a)};g.s=function(){if(this.v())return Bm().qE;var a=new DT(this.oc);return Cm(Bm(),a,Bm().no)};g.bf=function(){return"HashMap"};g.Tc=function(a){return this.Hg(VS(new WS,this,a))};g.Zf=function(a){return jX(this,a)};g.gu=function(a,b){return cX(this,a,b)}; -E(FL,"scala.collection.immutable.HashMap",{h3:1,XA:1,jw:1,wa:1,oa:1,I:1,qa:1,J:1,pa:1,Ct:1,ow:1,db:1,Ea:1,nw:1,q:1,Aw:1,rb:1,eB:1,u4:1,xS:1,Ta:1,Qg:1,g:1});function kX(){}kX.prototype=new $W;kX.prototype.constructor=kX;function lX(){}lX.prototype=kX.prototype;kX.prototype.Yc=function(a){return Np(this,a)};function mX(){}mX.prototype=new mW;mX.prototype.constructor=mX;function nX(){}nX.prototype=mX.prototype;mX.prototype.sc=function(){WO||(WO=new VO);return WO};mX.prototype.$b=function(){return this}; +function jX(a,b){if(b instanceof FL){if(a.v()||oL(a.oc,b.oc,0)===b.oc)return b;b=oL(a.oc,b.oc,0);return b===a.oc?a:new FL(b)}if(b instanceof tM){b=wQ(b);for(var c=a.oc;b.d();){var d=b.e(),e=d.Ai;e^=e>>>16|0;var f=sj(uj(),e);c=hL(c,d.oj,d.Cc,e,f,0,!0);if(c!==a.oc){for(a=Dk(Hk(),Ck(Hk(),f,0));b.d();)d=b.e(),e=d.Ai,e^=e>>>16|0,a=jL(c,d.oj,d.Cc,e,sj(uj(),e),0,a);return new FL(c)}}return a}if(xQ(b)){if(b.v())return a;c=new HO(a);b.Zj(c);b=c.zw;return b===a.oc?a:new FL(b)}b=b.k();return b.d()?(c=new HO(a), +vj(b,c),b=c.zw,b===a.oc?a:new FL(b)):a}g.Ha=function(a){this.oc.Ha(a)};g.Zj=function(a){this.oc.Zj(a)};g.b=function(a){if(a instanceof FL){if(this===a)return!0;var b=this.oc;a=a.oc;return null===b?null===a:b.b(a)}return gW(this,a)};g.s=function(){if(this.v())return Bm().qE;var a=new DT(this.oc);return Cm(Bm(),a,Bm().no)};g.bf=function(){return"HashMap"};g.Tc=function(a){return this.Hg(VS(new WS,this,a))};g.Zf=function(a){return jX(this,a)};g.gu=function(a,b){return cX(this,a,b)}; +E(FL,"scala.collection.immutable.HashMap",{h3:1,XA:1,kw:1,wa:1,oa:1,I:1,qa:1,J:1,pa:1,Ct:1,pw:1,db:1,Ea:1,ow:1,q:1,Bw:1,rb:1,eB:1,u4:1,xS:1,Ta:1,Qg:1,g:1});function kX(){}kX.prototype=new $W;kX.prototype.constructor=kX;function lX(){}lX.prototype=kX.prototype;kX.prototype.Yc=function(a){return Np(this,a)};function mX(){}mX.prototype=new mW;mX.prototype.constructor=mX;function nX(){}nX.prototype=mX.prototype;mX.prototype.sc=function(){WO||(WO=new VO);return WO};mX.prototype.$b=function(){return this}; function dO(a,b){this.PA=b;this.mo=a}dO.prototype=new xW;dO.prototype.constructor=dO;g=dO.prototype;g.hb=function(a){return xO(this,a)};g.el=function(a){return yO(this,a)};g.Dc=function(){return"SortedSet"};g.b=function(a){return sW(this,a)};g.jo=function(a){return lU(this,a)};g.Wq=function(){var a=this.mo;null===a.Ng&&null===a.Ng&&(a.Ng=new QS(a));return a.Ng};g.U=function(){return MU(this.PA)};g.v=function(){return NU(this.PA)}; g.k=function(){return new bQ(new SP(this.PA,0),new Nh(a=>this.mo.fg.y(this.mo.gf+(a|0)|0)))};g.bf=function(){return this.mo+".ValueSet"};g.XD=function(a){return Mp(this.mo).XD(a)};g.ih=function(){return new Lp(Mp(this.mo))};g.Hg=function(a){return this.XD(a)};g.Jq=function(a){return this.XD(a)};g.Nq=function(a){return new dO(this.mo,oX(this.PA,a.kh-this.mo.gf|0))};g.ya=function(a){return LU(this.PA,a.kh-this.mo.gf|0)}; -E(dO,"scala.Enumeration$ValueSet",{s0:1,ro:1,hk:1,wa:1,oa:1,I:1,qa:1,J:1,pa:1,gj:1,jk:1,Ea:1,q:1,Do:1,rb:1,Go:1,wJ:1,rw:1,HE:1,FE:1,GE:1,xJ:1,Ta:1,g:1});function pX(a,b,c){var d=c&(-1+a.Pe.a.length|0),e=a.Pe.a[d];if(null===e)a.Pe.a[d]=new nl(b,c,null);else{for(var f=null,h=e;null!==h&&h.sr<=c;){if(h.sr===c&&Ri(Si(),b,h.Pw))return!1;f=h;h=h.of}null===f?a.Pe.a[d]=new nl(b,c,e):f.of=new nl(b,c,f.of)}a.tr=1+a.tr|0;return!0} +E(dO,"scala.Enumeration$ValueSet",{s0:1,ro:1,hk:1,wa:1,oa:1,I:1,qa:1,J:1,pa:1,fj:1,jk:1,Ea:1,q:1,Do:1,rb:1,Go:1,wJ:1,sw:1,HE:1,FE:1,GE:1,xJ:1,Ta:1,g:1});function pX(a,b,c){var d=c&(-1+a.Pe.a.length|0),e=a.Pe.a[d];if(null===e)a.Pe.a[d]=new nl(b,c,null);else{for(var f=null,h=e;null!==h&&h.sr<=c;){if(h.sr===c&&Ri(Si(),b,h.Qw))return!1;f=h;h=h.of}null===f?a.Pe.a[d]=new nl(b,c,e):f.of=new nl(b,c,f.of)}a.tr=1+a.tr|0;return!0} function qX(a,b){var c=a.Pe.a.length;a.FJ=rb(b*a.eF);if(0===a.tr)a.Pe=new (F(ul).c)(b);else{a.Pe=Of($f(),a.Pe,b);for(var d=new nl(null,0,null),e=new nl(null,0,null);c>(Math.clz32(a)|0)&a)<<1;return 1073741824>a?a:1073741824}function AM(a,b,c){a.eF=c;a.Pe=new (F(ul).c)(rX(b));a.FJ=rb(a.Pe.a.length*a.eF);a.tr=0;return a}function $P(){var a=new BM;AM(a,16,.75);return a}function BM(){this.eF=0;this.Pe=null;this.tr=this.FJ=0}BM.prototype=new eX;BM.prototype.constructor=BM;g=BM.prototype;g.hb=function(a){return xO(this,a)};g.el=function(a){return yO(this,a)};g.Va=function(){return this.tr}; -function jU(a){return a^(a>>>16|0)}g.ya=function(a){var b=jU(M(P(),a)),c=this.Pe.a[b&(-1+this.Pe.a.length|0)];if(null===c)a=null;else a:for(;;){if(b===c.sr&&Ri(Si(),a,c.Pw)){a=c;break a}if(null===c.of||c.sr>b){a=null;break a}c=c.of}return null!==a};g.Oc=function(a){a=rX(rb((1+a|0)/this.eF));a>this.Pe.a.length&&qX(this,a)};function aQ(a,b){(1+a.tr|0)>=a.FJ&&qX(a,a.Pe.a.length<<1);return pX(a,b,jU(M(P(),b)))} -function zM(a,b){pM(a,b);if(b instanceof NL)return b.Rg.gI(new Cj((d,e)=>{pX(a,d,jU(e|0))})),a;if(b instanceof BM){for(b=new hU(b);b.d();){var c=b.e();pX(a,c.Pw,c.sr)}return a}return Np(a,b)}g.k=function(){return new gU(this)};g.sc=function(){return EM()};g.U=function(){return this.tr};g.v=function(){return 0===this.tr};g.Ha=function(a){for(var b=this.Pe.a.length,c=0;c>24&&0===(1&this.zi)<<24>>24){a:{qI();var a=this.ac,b=this.jf,c=this.nb,d=this.Rt,e=this.ga,f=e.Sb(0),h=0>e.ha(a,b),k=0r&&0u;if(0===u)throw de("step cannot be 0.");e?e=0:(d=r>>31,f=m>>31,e=r-m|0,f=(-2147483648^e)>(-2147483648^r)? +function jU(a){return a^(a>>>16|0)}g.ya=function(a){var b=jU(M(P(),a)),c=this.Pe.a[b&(-1+this.Pe.a.length|0)];if(null===c)a=null;else a:for(;;){if(b===c.sr&&Ri(Si(),a,c.Qw)){a=c;break a}if(null===c.of||c.sr>b){a=null;break a}c=c.of}return null!==a};g.Oc=function(a){a=rX(rb((1+a|0)/this.eF));a>this.Pe.a.length&&qX(this,a)};function aQ(a,b){(1+a.tr|0)>=a.FJ&&qX(a,a.Pe.a.length<<1);return pX(a,b,jU(M(P(),b)))} +function zM(a,b){pM(a,b);if(b instanceof NL)return b.Rg.gI(new Cj((d,e)=>{pX(a,d,jU(e|0))})),a;if(b instanceof BM){for(b=new hU(b);b.d();){var c=b.e();pX(a,c.Qw,c.sr)}return a}return Np(a,b)}g.k=function(){return new gU(this)};g.sc=function(){return EM()};g.U=function(){return this.tr};g.v=function(){return 0===this.tr};g.Ha=function(a){for(var b=this.Pe.a.length,c=0;c>24&&0===(1&this.zi)<<24>>24){a:{qI();var a=this.ac,b=this.jf,c=this.nb,d=this.Rt,e=this.ga,f=e.Sb(0),h=0>e.ha(a,b),k=0r&&0u;if(0===u)throw de("step cannot be 0.");e?e=0:(d=r>>31,f=m>>31,e=r-m|0,f=(-2147483648^e)>(-2147483648^r)? -1+(d-f|0)|0:d-f|0,c=u>>31,d=Pa(),e=oh(d,e,f,u,c),d=d.Gb,e=1+e|0,d=0===e?1+d|0:d,e=(0===d?-1<(-2147483648^e):0>31,c=m>>31,d=r-m|0,f=(-2147483648^d)>(-2147483648^r)?-1+(f-c|0)|0:f-c|0,c=u>>31,ph(Pa(),d,f,u,c)}m=0>e?sI(uI(),m,r,u,!0):e;break a}e=m>r&&0u||m===r;if(0===u)throw de("step cannot be 0.");e?e=0:(d=r>>31,f=m>>31,e=r-m|0,f=(-2147483648^e)>(-2147483648^r)?-1+(d-f|0)|0:d-f|0,c=u>>31,d=Pa(),e=oh(d,e,f,u,c),d=d.Gb,c=r>>31,b=m>> 31,f=r-m|0,b=(-2147483648^f)>(-2147483648^r)?-1+(c-b|0)|0:c-b|0,h=u>>31,c=Pa(),f=ph(c,f,b,u,h),c=c.Gb,c=0!==f||0!==c?1:0,f=c>>31,c=e+c|0,e=(-2147483648^c)<(-2147483648^e)?1+(d+f|0)|0:d+f|0,e=(0===e?-1<(-2147483648^c):0>31,c=m>>31,d=r-m|0,f=(-2147483648^d)>(-2147483648^r)?-1+(f-c|0)|0:f-c|0,c=u>>31,ph(Pa(),d,f,u,c)}m=0>e?sI(uI(),m,r,u,!1):e;break a}}}e&&e.$classData&&e.$classData.Yb.J0&&(Ri(Si(),e.hh(e.Hf(a,c),a),c)||dI(a,c),Ri(Si(),e.hh(b, e.hh(b,c)),c)||dI(b,c));r=e.Sb(1);m=e.Sb(2147483647);u=e.Im(a);var z=e.Im(b);u=e.vk(u,z);ZR(e,u,f)?(b=e.hh(b,a),u=eI(e.lo(b,c),e,m),c=e.hh(b,e.vk(u,c)),m=!d&&Ri(Si(),f,c)?u:eI(e.Hf(u,r),e,m)):(u=e.Sb(-1),u=k?u:r,u=k&&0>e.ha(u,a)||!k&&0e.ha(a,b)!==h?r=d&&Ri(Si(),a,b)?e.Hf(u,e.Sb(2)):e.Hf(u,r):(h=eI(e.lo(e.hh(b,a),c),e,m),f=Ri(Si(),h,f)?a:e.Hf(a,e.vk(h,c)),r=e.Hf(u,e.Hf(h,!d&&Ri(Si(),f,b)?r:e.Sb(2)))),m=eI(r, -e,m));m=e.sj(m)}}this.ZE=m;this.zi=(1|this.zi)<<24>>24}return this.ZE};g.v=function(){0===(2&this.zi)<<24>>24&&0===(2&this.zi)<<24>>24&&(this.YE=0this.ga.ha(this.ac,this.jf)&&0>this.ga.ha(this.nb,this.ga.Sb(0))?!0:$R(this.ga,this.ac,this.jf)?!this.Rt:!1,this.zi=(2|this.zi)<<24>>24);return this.YE};g.Kg=function(){return this.v()?R().AA():sX(this,-1+this.i()|0)};g.X=function(){return this.v()?R().AA():this.ac}; +e,m));m=e.rj(m)}}this.ZE=m;this.zi=(1|this.zi)<<24>>24}return this.ZE};g.v=function(){0===(2&this.zi)<<24>>24&&0===(2&this.zi)<<24>>24&&(this.YE=0this.ga.ha(this.ac,this.jf)&&0>this.ga.ha(this.nb,this.ga.Sb(0))?!0:$R(this.ga,this.ac,this.jf)?!this.Rt:!1,this.zi=(2|this.zi)<<24>>24);return this.YE};g.Kg=function(){return this.v()?R().AA():sX(this,-1+this.i()|0)};g.X=function(){return this.v()?R().AA():this.ac}; g.u=function(a){if(0>a||a>=this.i())throw Wl(new Xl,a+" is out of bounds (min 0, max "+(-1+this.i()|0)+")");return sX(this,a)};g.Ha=function(a){for(var b=0,c=this.ac;b>24&&0===(4&this.zi)<<24>>24&&(this.XE=TI(this),this.zi=(4|this.zi)<<24>>24);return this.XE};g.Rv=function(){return 2147483647};g.b=function(a){return a instanceof vX?UW(a,this)&&this.i()===a.i()&&(this.v()||Ri(Si(),this.ac,a.ac)&&Ri(Si(),this.Kg(),a.Kg())):PV(this,a)};g.j=function(){var a=this.v()?"empty ":"",b=this.Rt?"to":"until",c=Ri(Si(),this.nb,1)?"":" by "+this.nb;return a+"NumericRange "+this.ac+" "+b+" "+this.jf+c};g.bf=function(){return"NumericRange"}; +g.ya=function(a){try{var b,c;if(c=!this.v()){var d,e=new El(this.ga,this.nb);if(!(d=e.mE.$f(e.nE,this.ga.Sb(0))&&Fl(new El(this.ga,this.ac),a)&&Fl(new El(this.ga,a),this.Kg()))){var f=new El(this.ga,this.nb);d=f.mE.Lg(f.nE,this.ga.Sb(0))&&Fl(new El(this.ga,this.Kg()),a)&&Fl(new El(this.ga,a),this.ac)}c=d}if(b=c){Si();var h=this.ga,k=new AI(this.ga,a),m=new AI(h,k.Xq.hh(k.iw,this.ac));var r=m.Xq.wt(m.jP,this.nb);b=Ri(0,r,this.ga.Sb(0))}return b}catch(u){if(u instanceof yL)return!1;throw u;}}; +g.s=function(){0===(4&this.zi)<<24>>24&&0===(4&this.zi)<<24>>24&&(this.XE=TI(this),this.zi=(4|this.zi)<<24>>24);return this.XE};g.Sv=function(){return 2147483647};g.b=function(a){return a instanceof vX?UW(a,this)&&this.i()===a.i()&&(this.v()||Ri(Si(),this.ac,a.ac)&&Ri(Si(),this.Kg(),a.Kg())):PV(this,a)};g.j=function(){var a=this.v()?"empty ":"",b=this.Rt?"to":"until",c=Ri(Si(),this.nb,1)?"":" by "+this.nb;return a+"NumericRange "+this.ac+" "+b+" "+this.jf+c};g.bf=function(){return"NumericRange"}; g.sc=function(){return Sx()}; -g.Tc=function(a){if(0>=a||this.v())a=this;else{var b=0this.ga.ha(this.jf,this.ac)?Ri(Si(),this.ga.Im(this.nb),Dl(new AI(this.ga,this.ga.Sb(1)))):!1;if($R(this.ga,this.ac,this.jf)||0>=a||!b)b=1<=a;else{b=this.ga;var c=this.ga.Im(this.ac),d=this.ga.Im(this.jf);if($R(b,c,d))b=tX(this,this),b=uX(this,b)?a>=this.ga.sj(b):ZR(this.ga,this.ga.Sb(a),b);else{c=this.ga.wt(this.ac,this.nb);c=(b=$R(this.ga,c,this.ga.Sb(0)))?Dl(new AI(this.ga, -this.nb)):c;0>this.ga.ha(this.ac,this.ga.Sb(0))?b?(b=this.ga.Hf(c,this.ga.vk(this.nb,this.ga.Sb(2))),d=new mC((qI(),new xX(this.ac,c,this.nb,this.ga)),this.Xv(b,this.jf,this.nb),2)):d=new mC((qI(),new xX(this.ac,c,this.nb,this.ga)),this.Xv(this.ga.Hf(c,this.nb),this.jf,this.nb),1):d=b?new mC(this.Xv(this.ga.vk(this.nb,this.ga.Sb(2)),this.jf,this.nb),(qI(),new dW(this.ac,Dl(new AI(this.ga,this.nb)),this.nb,this.ga)),2):new mC(this.Xv(this.ga.Hf(c,this.ga.vk(this.nb,this.ga.Sb(2))),this.jf,this.nb), -(qI(),new dW(this.ac,c,this.nb,this.ga)),2);b:{if(null!==d){b=d.at;var e=d.bt;c=d.ct|0;if(null!==b&&null!==e)break b}throw new G(d);}d=e;c|=0;b=tX(this,b);d=tX(this,d);b=uX(this,b)&&uX(this,d)?((a-this.ga.sj(b)|0)-c|0)>=this.ga.sj(d):ZR(this.ga,this.ga.hh(this.ga.hh(this.ga.Sb(a),b),this.ga.Sb(c)),d)}}b?(a=this.jf,qI(),a=new xX(a,a,this.nb,this.ga)):a=this.Xv(sX(this,a),this.jf,this.nb)}return a};g.y=function(a){return this.u(a|0)}; +g.Tc=function(a){if(0>=a||this.v())a=this;else{var b=0this.ga.ha(this.jf,this.ac)?Ri(Si(),this.ga.Im(this.nb),Dl(new AI(this.ga,this.ga.Sb(1)))):!1;if($R(this.ga,this.ac,this.jf)||0>=a||!b)b=1<=a;else{b=this.ga;var c=this.ga.Im(this.ac),d=this.ga.Im(this.jf);if($R(b,c,d))b=tX(this,this),b=uX(this,b)?a>=this.ga.rj(b):ZR(this.ga,this.ga.Sb(a),b);else{c=this.ga.wt(this.ac,this.nb);c=(b=$R(this.ga,c,this.ga.Sb(0)))?Dl(new AI(this.ga, +this.nb)):c;0>this.ga.ha(this.ac,this.ga.Sb(0))?b?(b=this.ga.Hf(c,this.ga.vk(this.nb,this.ga.Sb(2))),d=new mC((qI(),new xX(this.ac,c,this.nb,this.ga)),this.Yv(b,this.jf,this.nb),2)):d=new mC((qI(),new xX(this.ac,c,this.nb,this.ga)),this.Yv(this.ga.Hf(c,this.nb),this.jf,this.nb),1):d=b?new mC(this.Yv(this.ga.vk(this.nb,this.ga.Sb(2)),this.jf,this.nb),(qI(),new dW(this.ac,Dl(new AI(this.ga,this.nb)),this.nb,this.ga)),2):new mC(this.Yv(this.ga.Hf(c,this.ga.vk(this.nb,this.ga.Sb(2))),this.jf,this.nb), +(qI(),new dW(this.ac,c,this.nb,this.ga)),2);b:{if(null!==d){b=d.at;var e=d.bt;c=d.ct|0;if(null!==b&&null!==e)break b}throw new G(d);}d=e;c|=0;b=tX(this,b);d=tX(this,d);b=uX(this,b)&&uX(this,d)?((a-this.ga.rj(b)|0)-c|0)>=this.ga.rj(d):ZR(this.ga,this.ga.hh(this.ga.hh(this.ga.Sb(a),b),this.ga.Sb(c)),d)}}b?(a=this.jf,qI(),a=new xX(a,a,this.nb,this.ga)):a=this.Yv(sX(this,a),this.jf,this.nb)}return a};g.y=function(a){return this.u(a|0)}; g.Oa=function(){return this.v()?yX(R()):this.Rt?new dW(Cl(new AI(this.ga,this.ac),this.nb),this.jf,this.nb,this.ga):new xX(Cl(new AI(this.ga,this.ac),this.nb),this.jf,this.nb,this.ga)};function zX(a){var b=a.Xh,c=b>>31,d=a.qb;a=d>>31;d=b-d|0;return new n(d,(-2147483648^d)>(-2147483648^b)?-1+(c-a|0)|0:c-a|0)}function AX(a){var b=zX(a),c=a.Ya,d=c>>31;a=Pa();b=ph(a,b.l,b.m,c,d);a=a.Gb;return 0===b&&0===a} function BX(a,b,c,d){a.qb=b;a.Xh=c;a.Ya=d;a.bc=b>c&&0d||b===c&&!a.ak();if(0===d)throw de("step cannot be 0.");if(a.bc)b=0;else{b=zX(a);var e=a.Ya,f=e>>31;var h=Pa();b=oh(h,b.l,b.m,e,f);h=h.Gb;f=a.ak()||!AX(a)?1:0;e=f>>31;f=b+f|0;h=new n(f,(-2147483648^f)<(-2147483648^b)?1+(h+e|0)|0:h+e|0);b=h.l;h=h.m;b=(0===h?-1<(-2147483648^b):0>31,b=ph(Pa(),b.l,b.m,d,h),c=0!==b?c-b|0:a.ak()?c:c- -d|0}a.ze=c}function CX(){this.Ya=this.Xh=this.qb=0;this.bc=!1;this.ze=this.sl=0}CX.prototype=new BW;CX.prototype.constructor=CX;function DX(){}g=DX.prototype=CX.prototype;g.Fg=function(a){return QU(this,a)};g.Vv=function(a){return UW(this,a)};g.Dc=function(){return"IndexedSeq"};g.we=function(){return ZS(new $S,new SA(this))};g.jh=function(){return new vW(this)};g.Yd=function(a){var b=this.i();return b===a?0:bthis.sl?sI(uI(),this.qb,this.Xh,this.Ya,this.ak()):this.sl};function EX(a){if(a.bc)throw tI("last");return a.ze}function FX(a){if(a.bc)throw tI("head");return a.qb}function Rx(a){0>a.sl&&sI(uI(),a.qb,a.Xh,a.Ya,a.ak())}g.Ha=function(a){if(!this.bc)for(var b=this.qb;;){a.y(b);if(b===this.ze)break;b=b+this.Ya|0}}; g.Zq=function(a){if(a instanceof CX){var b=this.i();switch(b){case 0:return a.bc;case 1:return 1===a.i()&&this.qb===a.qb;default:return a.i()===b&&this.qb===a.qb&&this.Ya===a.Ya}}else return VW(this,a)};function GX(a,b){if(b!==a.Xh||a.ak()){if(0a.Xh)return!1;if(1===a.Ya)return!0;b=b-a.qb|0;a=a.Ya;return 0===(0===a?qb(0,0):+(b>>>0)%+(a>>>0)|0)}if(ba.qb)return!1;if(-1===a.Ya)return!0;b=a.qb-b|0;a=-a.Ya|0;return 0===(0===a?qb(0,0):+(b>>>0)%+(a>>>0)|0)}return!1} -g.ya=function(a){return ka(a)?GX(this,a|0):cp(this,a)};function HX(a,b){return b===ui()?0a||a>=this.sl)throw Wl(new Xl,a+" is out of bounds (min 0, max "+(-1+this.sl|0)+")");return this.qb+Math.imul(this.Ya,a)|0};g.sc=function(){return Sx()};g.qf=function(a){return a===ui()?0=a||this.bc)a=this;else if(a>=this.sl&&0<=this.sl)a=this.Xh,a=new gj(a,a,this.Ya);else{a=this.qb+Math.imul(this.Ya,a)|0;var b=this.Xh,c=this.Ya;a=this.ak()?new IX(a,b,c):new gj(a,b,c)}return a};g.y=function(a){return this.Hq(a|0)};g.u=function(a){return this.Hq(a)};g.hb=function(a){Rx(this);return xO(this,a)}; g.Oa=function(){if(this.bc)throw tI("tail");if(1===this.sl){var a=this.Xh;a=new gj(a,a,this.Ya)}else a=this.ak()?new IX(this.qb+this.Ya|0,this.Xh,this.Ya):new gj(this.qb+this.Ya|0,this.Xh,this.Ya);return a};g.X=function(){return FX(this)};g.Kg=function(){return EX(this)};function jT(){}jT.prototype=new BW;jT.prototype.constructor=jT;function JX(){}g=JX.prototype=jT.prototype;g.Jq=function(a){jj();var b=this.nd();return iT(a,b)};g.ih=function(){var a=jj(),b=this.nd();return a.fE(b)}; -g.Fg=function(a){return QU(this,a)};g.Vv=function(a){return UW(this,a)};g.Zq=function(a){return VW(this,a)};g.Dc=function(){return"IndexedSeq"};g.we=function(){return ZS(new $S,new SA(this))};g.jh=function(){return new vW(this)};g.X=function(){return dt(this)};g.Kg=function(){return tt(this)};g.Yd=function(a){var b=this.i();return b===a?0:b=ce(fe(),this.Ci()))return this;Ci();var b=this.Ci(),c=this.i();Di(ja(yc),zf(ia(b)))?b=Ei(ja(yc))?Fi(0,b,c):Qf($f(),b,c,ja(F(yc))):(c=new Jb(c),Mi(Ci(),b,0,c,0,ce(fe(),b)),b=c);wf($f(),b,a);return new hR(b)};g.Hg=function(a){jj();var b=this.nd();return iT(a,b)};g.qf=function(a){return this.rf(a)}; -g.Oa=function(){return ij(jj(),Wh(Ch(),this.Ci()))};g.Tc=function(a){return 0>=a?this:ij(jj(),Yh(Ch(),this.Ci(),a))};g.hb=function(a){for(var b=new Jb(this.i()),c=0;c=ce(fe(),this.Ci()))return this;Ci();var b=this.Ci(),c=this.i();Di(ja(zc),zf(ia(b)))?b=Ei(ja(zc))?Fi(0,b,c):Qf($f(),b,c,ja(F(zc))):(c=new Ib(c),Mi(Ci(),b,0,c,0,ce(fe(),b)),b=c);wf($f(),b,a);return new hR(b)};g.Hg=function(a){jj();var b=this.nd();return iT(a,b)};g.qf=function(a){return this.rf(a)}; +g.Oa=function(){return ij(jj(),Wh(Ch(),this.Ci()))};g.Tc=function(a){return 0>=a?this:ij(jj(),Yh(Ch(),this.Ci(),a))};g.hb=function(a){for(var b=new Ib(this.i()),c=0;cI=>!!r.y(I)!==u?BL(z,I):void 0)(b,c,h)));return h.kl()}if(0===e)return Vk();h=new Jb(e);a.N.da(0,h,0,d);for(k=1+d|0;d!==e;)0!==(1<!!b.y(r)!==c?BL(m,r):void 0));return m.kl()}return a}g.bf=function(){return"Vector"};g.ma=function(a,b,c){return this.k().ma(a,b,c)};g.Rv=function(){return lL().cQ};g.ue=function(a){return Wl(new Xl,a+" is out of bounds (min 0, max "+(-1+this.i()|0)+")")};g.X=function(){if(0===this.N.a.length)throw new Rh("empty.head");return this.N.a[0]}; +function CL(a,b,c){for(var d=0,e=a.N.a.length;d!==e;){if(!!b.y(a.N.a[d])===c){for(var f=0,h=1+d|0;hI=>!!r.y(I)!==u?BL(z,I):void 0)(b,c,h)));return h.kl()}if(0===e)return Vk();h=new Ib(e);a.N.da(0,h,0,d);for(k=1+d|0;d!==e;)0!==(1<!!b.y(r)!==c?BL(m,r):void 0));return m.kl()}return a}g.bf=function(){return"Vector"};g.ma=function(a,b,c){return this.k().ma(a,b,c)};g.Sv=function(){return lL().cQ};g.ue=function(a){return Wl(new Xl,a+" is out of bounds (min 0, max "+(-1+this.i()|0)+")")};g.X=function(){if(0===this.N.a.length)throw new Rh("empty.head");return this.N.a[0]}; g.Kg=function(){if(this instanceof LX){var a=this.Z;if(0===a.a.length)throw new Rh("empty.tail");return a.a[-1+a.a.length|0]}return this.N.a[-1+this.N.a.length|0]};g.Ha=function(a){for(var b=this.xl(),c=0;cf?-f|0:f)|0)|0,this.yl(c),a);c=1+c|0}};g.Tc=function(a){var b=this.i();a=0=this.i())return this;if(a===zi()){a=this.ar.V();var b=Ai(),c=zi();Bi(b,a,a.a.length,c);return new rT(a)}return jT.prototype.rf.call(this,a)};g.k=function(){return new pi(this.ar)};g.ri=function(a){return this.ar.a[a]};g.qf=function(a){return this.rf(a)};g.y=function(a){return this.ri(a|0)};g.u=function(a){return this.ri(a)};g.nd=function(){return um()};g.Ci=function(){return this.ar}; E(rT,"scala.collection.immutable.ArraySeq$ofBoolean",{P2:1,so:1,Zd:1,wb:1,wa:1,oa:1,I:1,qa:1,J:1,pa:1,pb:1,db:1,Ea:1,Za:1,q:1,sd:1,rb:1,Jd:1,ye:1,Hb:1,mb:1,Ke:1,$d:1,Cb:1,Ta:1,po:1,g:1});function pT(a){this.br=a}pT.prototype=new JX;pT.prototype.constructor=pT;g=pT.prototype;g.i=function(){return this.br.a.length};g.jA=function(a){return this.br.a[a]};g.s=function(){var a=Bm();return Fm(a,this.br,a.qd)};g.b=function(a){return a instanceof pT?Jf($f(),this.br,a.br):PV(this,a)}; g.rf=function(a){return 1>=this.i()?this:a===xi()?(a=this.br.V(),uf($f(),a),new pT(a)):jT.prototype.rf.call(this,a)};g.k=function(){return new ni(this.br)};g.qf=function(a){return this.rf(a)};g.y=function(a){return this.jA(a|0)};g.u=function(a){return this.jA(a)};g.nd=function(){return sm()};g.Ci=function(){return this.br}; @@ -2200,66 +2200,66 @@ E(mT,"scala.collection.immutable.ArraySeq$ofLong",{V2:1,so:1,Zd:1,wb:1,wa:1,oa:1 g.b=function(a){return a instanceof hR?OH(Ci(),this.ol,a.ol):PV(this,a)};function QX(a,b){if(1>=a.ol.a.length)return a;a=a.ol.V();wf($f(),a,b);return new hR(a)}g.k=function(){return ai(new bi,this.ol)};g.qf=function(a){return QX(this,a)};g.rf=function(a){return QX(this,a)};g.y=function(a){return this.u(a|0)};g.Ci=function(){return this.ol}; E(hR,"scala.collection.immutable.ArraySeq$ofRef",{W2:1,so:1,Zd:1,wb:1,wa:1,oa:1,I:1,qa:1,J:1,pa:1,pb:1,db:1,Ea:1,Za:1,q:1,sd:1,rb:1,Jd:1,ye:1,Hb:1,mb:1,Ke:1,$d:1,Cb:1,Ta:1,po:1,g:1});function qT(a){this.er=a}qT.prototype=new JX;qT.prototype.constructor=qT;g=qT.prototype;g.i=function(){return this.er.a.length};g.kA=function(a){return this.er.a[a]};g.s=function(){var a=Bm();return Lm(a,this.er,a.qd)};g.b=function(a){return a instanceof qT?Hf($f(),this.er,a.er):PV(this,a)}; g.rf=function(a){return 1>=this.i()?this:a===yi()?(a=this.er.V(),mf($f(),a),new qT(a)):jT.prototype.rf.call(this,a)};g.k=function(){return new oi(this.er)};g.qf=function(a){return this.rf(a)};g.y=function(a){return this.kA(a|0)};g.u=function(a){return this.kA(a)};g.nd=function(){return tm()};g.Ci=function(){return this.er}; -E(qT,"scala.collection.immutable.ArraySeq$ofShort",{X2:1,so:1,Zd:1,wb:1,wa:1,oa:1,I:1,qa:1,J:1,pa:1,pb:1,db:1,Ea:1,Za:1,q:1,sd:1,rb:1,Jd:1,ye:1,Hb:1,mb:1,Ke:1,$d:1,Cb:1,Ta:1,po:1,g:1});function sT(a){this.vw=a}sT.prototype=new JX;sT.prototype.constructor=sT;g=sT.prototype;g.i=function(){return this.vw.a.length};g.s=function(){var a=Bm();return Mm(a,this.vw,a.qd)};g.b=function(a){return a instanceof sT?this.vw.a.length===a.vw.a.length:PV(this,a)};g.k=function(){return new qi(this.vw)};g.y=function(){}; -g.u=function(){};g.nd=function(){return DI()};g.Ci=function(){return this.vw};E(sT,"scala.collection.immutable.ArraySeq$ofUnit",{Y2:1,so:1,Zd:1,wb:1,wa:1,oa:1,I:1,qa:1,J:1,pa:1,pb:1,db:1,Ea:1,Za:1,q:1,sd:1,rb:1,Jd:1,ye:1,Hb:1,mb:1,Ke:1,$d:1,Cb:1,Ta:1,po:1,g:1});function UI(){}UI.prototype=new BW;UI.prototype.constructor=UI;function RX(){}g=RX.prototype=UI.prototype;g.Fg=function(a){return QU(this,a)};g.qf=function(a){return tO(this,a)};g.k=function(){return new hQ(this)};g.Dc=function(){return"LinearSeq"}; +E(qT,"scala.collection.immutable.ArraySeq$ofShort",{X2:1,so:1,Zd:1,wb:1,wa:1,oa:1,I:1,qa:1,J:1,pa:1,pb:1,db:1,Ea:1,Za:1,q:1,sd:1,rb:1,Jd:1,ye:1,Hb:1,mb:1,Ke:1,$d:1,Cb:1,Ta:1,po:1,g:1});function sT(a){this.ww=a}sT.prototype=new JX;sT.prototype.constructor=sT;g=sT.prototype;g.i=function(){return this.ww.a.length};g.s=function(){var a=Bm();return Mm(a,this.ww,a.qd)};g.b=function(a){return a instanceof sT?this.ww.a.length===a.ww.a.length:PV(this,a)};g.k=function(){return new qi(this.ww)};g.y=function(){}; +g.u=function(){};g.nd=function(){return DI()};g.Ci=function(){return this.ww};E(sT,"scala.collection.immutable.ArraySeq$ofUnit",{Y2:1,so:1,Zd:1,wb:1,wa:1,oa:1,I:1,qa:1,J:1,pa:1,pb:1,db:1,Ea:1,Za:1,q:1,sd:1,rb:1,Jd:1,ye:1,Hb:1,mb:1,Ke:1,$d:1,Cb:1,Ta:1,po:1,g:1});function UI(){}UI.prototype=new BW;UI.prototype.constructor=UI;function RX(){}g=RX.prototype=UI.prototype;g.Fg=function(a){return QU(this,a)};g.qf=function(a){return tO(this,a)};g.k=function(){return new hQ(this)};g.Dc=function(){return"LinearSeq"}; g.u=function(a){return eQ(this,a)};g.Zq=function(a){return fQ(this,a)};g.fo=function(a,b){return gQ(this,a,b)};g.v=function(){return this===R()};function fy(a,b){if(b instanceof UI){if(a.v())a=b;else if(!b.v()){var c=new un(b.X(),a),d=c;for(b=b.Oa();!b.v();){var e=new un(b.X(),a);d=d.Sh=e;b=b.Oa()}a=c}return a}if(0===b.U())return a;if(b instanceof qE&&a.v())return yE(b);c=b.k();if(c.d()){for(b=d=new un(c.e(),a);c.d();)e=new un(c.e(),a),b=b.Sh=e;return d}return a} function tp(a,b){if(a===R())return R();var c=new un(b.y(a.X()),R()),d=c;for(a=a.Oa();a!==R();){var e=new un(b.y(a.X()),R());d=d.Sh=e;a=a.Oa()}return c}g.Ha=function(a){for(var b=this;!b.v();)a.y(b.X()),b=b.Oa()};g.i=function(){for(var a=this,b=0;!a.v();)b=1+b|0,a=a.Oa();return b};g.Yd=function(a){if(0>a)a=1;else a:for(var b=this,c=0;;){if(c===a){a=b.v()?0:1;break a}if(b.v()){a=-1;break a}c=1+c|0;b=b.Oa()}return a};g.it=function(a){for(var b=this;!b.v();){if(a.y(b.X()))return!0;b=b.Oa()}return!1}; g.ya=function(a){for(var b=this;!b.v();){if(Ri(Si(),b.X(),a))return!0;b=b.Oa()}return!1};g.Kg=function(){if(this.v())throw new Rh("List.last");for(var a=this,b=this.Oa();!b.v();)a=b,b=b.Oa();return a.X()};g.bf=function(){return"List"};g.b=function(a){var b;if(a instanceof UI)a:for(b=this;;){if(b===a){b=!0;break a}var c=b.v(),d=a.v();if(c||d||!Ri(Si(),b.X(),a.X())){b=c&&d;break a}b=b.Oa();a=a.Oa()}else b=PV(this,a);return b};g.y=function(a){return eQ(this,a|0)}; g.Tc=function(a){a:for(var b=this;;){if(0>=a||b.v())break a;a=-1+a|0;b=b.Oa()}return b};g.hb=function(a){return tp(this,a)};g.sc=function(){return JO()};function SX(){this.N=null}SX.prototype=new KX;SX.prototype.constructor=SX;function TX(){}TX.prototype=SX.prototype;function $T(a){this.Wt=a}$T.prototype=new OX;$T.prototype.constructor=$T;g=$T.prototype;g.i=function(){return this.Wt.a.length};g.s=function(){var a=Bm();return Em(a,this.Wt,a.qd)}; -g.b=function(a){return a instanceof $T?Kf($f(),this.Wt,a.Wt):NX.prototype.b.call(this,a)};g.k=function(){return new pi(this.Wt)};g.ri=function(a){return this.Wt.a[a]};g.y=function(a){return this.ri(a|0)};g.u=function(a){return this.ri(a)};g.nd=function(){return um()};g.Ui=function(){return this.Wt};E($T,"scala.collection.mutable.ArraySeq$ofBoolean",{Q4:1,Ho:1,qh:1,wb:1,wa:1,oa:1,I:1,qa:1,J:1,pa:1,pb:1,db:1,Ea:1,Za:1,q:1,sh:1,pf:1,th:1,Of:1,ve:1,bi:1,Hb:1,mb:1,ci:1,Cb:1,Ta:1,g:1}); -function YT(a){this.Xt=a}YT.prototype=new OX;YT.prototype.constructor=YT;g=YT.prototype;g.i=function(){return this.Xt.a.length};g.jA=function(a){return this.Xt.a[a]};g.s=function(){var a=Bm();return Fm(a,this.Xt,a.qd)};g.b=function(a){return a instanceof YT?Jf($f(),this.Xt,a.Xt):NX.prototype.b.call(this,a)};g.k=function(){return new ni(this.Xt)};g.y=function(a){return this.jA(a|0)};g.u=function(a){return this.jA(a)};g.nd=function(){return sm()};g.Ui=function(){return this.Xt}; +g.b=function(a){return a instanceof $T?Kf($f(),this.Wt,a.Wt):NX.prototype.b.call(this,a)};g.k=function(){return new pi(this.Wt)};g.ri=function(a){return this.Wt.a[a]};g.y=function(a){return this.ri(a|0)};g.u=function(a){return this.ri(a)};g.nd=function(){return um()};g.Ti=function(){return this.Wt};E($T,"scala.collection.mutable.ArraySeq$ofBoolean",{Q4:1,Ho:1,qh:1,wb:1,wa:1,oa:1,I:1,qa:1,J:1,pa:1,pb:1,db:1,Ea:1,Za:1,q:1,sh:1,pf:1,th:1,Of:1,ve:1,bi:1,Hb:1,mb:1,ci:1,Cb:1,Ta:1,g:1}); +function YT(a){this.Xt=a}YT.prototype=new OX;YT.prototype.constructor=YT;g=YT.prototype;g.i=function(){return this.Xt.a.length};g.jA=function(a){return this.Xt.a[a]};g.s=function(){var a=Bm();return Fm(a,this.Xt,a.qd)};g.b=function(a){return a instanceof YT?Jf($f(),this.Xt,a.Xt):NX.prototype.b.call(this,a)};g.k=function(){return new ni(this.Xt)};g.y=function(a){return this.jA(a|0)};g.u=function(a){return this.jA(a)};g.nd=function(){return sm()};g.Ti=function(){return this.Xt}; E(YT,"scala.collection.mutable.ArraySeq$ofByte",{R4:1,Ho:1,qh:1,wb:1,wa:1,oa:1,I:1,qa:1,J:1,pa:1,pb:1,db:1,Ea:1,Za:1,q:1,sh:1,pf:1,th:1,Of:1,ve:1,bi:1,Hb:1,mb:1,ci:1,Cb:1,Ta:1,g:1});function XT(a){this.tk=a}XT.prototype=new OX;XT.prototype.constructor=XT;g=XT.prototype;g.i=function(){return this.tk.a.length};g.xa=function(a){return this.tk.a[a]};g.s=function(){var a=Bm();return Gm(a,this.tk,a.qd)};g.b=function(a){return a instanceof XT?If($f(),this.tk,a.tk):NX.prototype.b.call(this,a)};g.k=function(){return new mi(this.tk)}; -g.Eg=function(a,b,c,d){var e=a.wc;0!==b.length&&(e.P=""+e.P+b);b=this.tk.a.length;if(0!==b)if(""===c)BN(e,this.tk);else{e.i();var f=""+tb(this.tk.a[0]);e.P+=f;for(f=1;f=a.Bi&&EA(a,a.$.a.length<<1);return FA(a,b,c,d,d&(-1+a.$.a.length|0))}function Dp(a,b,c){(1+a.Nc|0)>=a.Bi&&EA(a,a.$.a.length<<1);var d=M(P(),b);d^=d>>>16|0;FA(a,b,c,d,d&(-1+a.$.a.length|0))} -function FA(a,b,c,d,e){var f=a.$.a[e];if(null===f)a.$.a[e]=new kl(b,d,c,null);else{for(var h=null,k=f;null!==k&&k.Ai<=d;){if(k.Ai===d&&Ri(Si(),b,k.pj))return k.Cc=c,null;h=k;k=k.Xc}null===h?a.$.a[e]=new kl(b,d,c,f):h.Xc=new kl(b,d,c,h.Xc)}a.Nc=1+a.Nc|0;return null} +g.y=function(a){return this.iA(a|0)};g.u=function(a){return this.iA(a)};g.nd=function(){return pm()};g.Ti=function(){return this.au};E(VT,"scala.collection.mutable.ArraySeq$ofLong",{W4:1,Ho:1,qh:1,wb:1,wa:1,oa:1,I:1,qa:1,J:1,pa:1,pb:1,db:1,Ea:1,Za:1,q:1,sh:1,pf:1,th:1,Of:1,ve:1,bi:1,Hb:1,mb:1,ci:1,Cb:1,Ta:1,g:1});function XH(a){this.qr=a}XH.prototype=new OX;XH.prototype.constructor=XH;g=XH.prototype;g.nd=function(){return Uh(Vh(),zf(ia(this.qr)))};g.i=function(){return this.qr.a.length};g.u=function(a){return this.qr.a[a]}; +g.s=function(){var a=Bm();return Dm(a,this.qr,a.qd)};g.b=function(a){return a instanceof XH?OH(Ci(),this.qr,a.qr):NX.prototype.b.call(this,a)};g.k=function(){return ai(new bi,this.qr)};g.y=function(a){return this.u(a|0)};g.Ti=function(){return this.qr};E(XH,"scala.collection.mutable.ArraySeq$ofRef",{X4:1,Ho:1,qh:1,wb:1,wa:1,oa:1,I:1,qa:1,J:1,pa:1,pb:1,db:1,Ea:1,Za:1,q:1,sh:1,pf:1,th:1,Of:1,ve:1,bi:1,Hb:1,mb:1,ci:1,Cb:1,Ta:1,g:1});function ZT(a){this.bu=a}ZT.prototype=new OX; +ZT.prototype.constructor=ZT;g=ZT.prototype;g.i=function(){return this.bu.a.length};g.kA=function(a){return this.bu.a[a]};g.s=function(){var a=Bm();return Lm(a,this.bu,a.qd)};g.b=function(a){return a instanceof ZT?Hf($f(),this.bu,a.bu):NX.prototype.b.call(this,a)};g.k=function(){return new oi(this.bu)};g.y=function(a){return this.kA(a|0)};g.u=function(a){return this.kA(a)};g.nd=function(){return tm()};g.Ti=function(){return this.bu}; +E(ZT,"scala.collection.mutable.ArraySeq$ofShort",{Y4:1,Ho:1,qh:1,wb:1,wa:1,oa:1,I:1,qa:1,J:1,pa:1,pb:1,db:1,Ea:1,Za:1,q:1,sh:1,pf:1,th:1,Of:1,ve:1,bi:1,Hb:1,mb:1,ci:1,Cb:1,Ta:1,g:1});function aU(a){this.Pw=a}aU.prototype=new OX;aU.prototype.constructor=aU;g=aU.prototype;g.i=function(){return this.Pw.a.length};g.s=function(){var a=Bm();return Mm(a,this.Pw,a.qd)};g.b=function(a){return a instanceof aU?this.Pw.a.length===a.Pw.a.length:NX.prototype.b.call(this,a)};g.k=function(){return new qi(this.Pw)}; +g.y=function(){};g.u=function(){};g.nd=function(){return DI()};g.Ti=function(){return this.Pw};E(aU,"scala.collection.mutable.ArraySeq$ofUnit",{Z4:1,Ho:1,qh:1,wb:1,wa:1,oa:1,I:1,qa:1,J:1,pa:1,pb:1,db:1,Ea:1,Za:1,q:1,sh:1,pf:1,th:1,Of:1,ve:1,bi:1,Hb:1,mb:1,ci:1,Cb:1,Ta:1,g:1});function UX(a,b,c,d){(1+a.Nc|0)>=a.Bi&&EA(a,a.$.a.length<<1);return FA(a,b,c,d,d&(-1+a.$.a.length|0))}function Dp(a,b,c){(1+a.Nc|0)>=a.Bi&&EA(a,a.$.a.length<<1);var d=M(P(),b);d^=d>>>16|0;FA(a,b,c,d,d&(-1+a.$.a.length|0))} +function FA(a,b,c,d,e){var f=a.$.a[e];if(null===f)a.$.a[e]=new kl(b,d,c,null);else{for(var h=null,k=f;null!==k&&k.Ai<=d;){if(k.Ai===d&&Ri(Si(),b,k.oj))return k.Cc=c,null;h=k;k=k.Xc}null===h?a.$.a[e]=new kl(b,d,c,f):h.Xc=new kl(b,d,c,h.Xc)}a.Nc=1+a.Nc|0;return null} function EA(a,b){if(0>b)throw yN("new HashMap table size "+b+" exceeds maximum");var c=a.$.a.length;a.Bi=rb(b*a.dF);if(0===a.Nc)a.$=new (F(ml).c)(b);else{a.$=Of($f(),a.$,b);for(var d=new kl(null,0,null,null),e=new kl(null,0,null,null);c>(Math.clz32(a)|0)&a)<<1;return 1073741824>a?a:1073741824}function sM(a,b,c){a.dF=c;a.$=new (F(ml).c)(VX(b));a.Bi=rb(a.$.a.length*a.dF);a.Nc=0;return a}function RH(){var a=new tM;sM(a,16,.75);return a}function tM(){this.dF=0;this.$=null;this.Nc=this.Bi=0}tM.prototype=new nX;tM.prototype.constructor=tM;g=tM.prototype;g.Zf=function(a){var b=this.vt().Kb();b.Yc(this);b.Yc(a);return b.$b()};g.hb=function(a){return xO(this,a)};g.Va=function(){return this.Nc}; g.ya=function(a){var b=M(P(),a);b^=b>>>16|0;var c=this.$.a[b&(-1+this.$.a.length|0)];return null!==(null===c?null:ll(c,a,b))};g.Oc=function(a){a=VX(rb((1+a|0)/this.dF));a>this.$.a.length&&EA(this,a)}; -function lz(a,b){pM(a,b);if(b instanceof FL)return b.oc.hI(new JM((d,e,f)=>{f|=0;UX(a,d,e,f^(f>>>16|0))})),a;if(b instanceof tM){for(b=wQ(b);b.d();){var c=b.e();UX(a,c.pj,c.Cc,c.Ai)}return a}return b&&b.$classData&&b.$classData.Yb.$S?(b.Zj(new Cj((d,e)=>{var f=M(P(),d);return UX(a,d,e,f^(f>>>16|0))})),a):Np(a,b)}g.k=function(){return 0===this.Nc?W().t:new bU(this)};g.ut=function(){return 0===this.Nc?W().t:new cU(this)};g.hu=function(){return 0===this.Nc?W().t:new dU(this)}; -function wQ(a){return 0===a.Nc?W().t:new eU(a)}g.Wv=function(){Nf($f(),this.$,null);this.Nc=0};g.jb=function(a){var b=M(P(),a);b^=b>>>16|0;var c=this.$.a[b&(-1+this.$.a.length|0)];a=null===c?null:ll(c,a,b);return null===a?up():new T(a.Cc)};g.y=function(a){var b=M(P(),a);b^=b>>>16|0;var c=this.$.a[b&(-1+this.$.a.length|0)];b=null===c?null:ll(c,a,b);if(null===b)throw new Rh("key not found: "+a);return b.Cc}; +function lz(a,b){pM(a,b);if(b instanceof FL)return b.oc.hI(new JM((d,e,f)=>{f|=0;UX(a,d,e,f^(f>>>16|0))})),a;if(b instanceof tM){for(b=wQ(b);b.d();){var c=b.e();UX(a,c.oj,c.Cc,c.Ai)}return a}return b&&b.$classData&&b.$classData.Yb.$S?(b.Zj(new Cj((d,e)=>{var f=M(P(),d);return UX(a,d,e,f^(f>>>16|0))})),a):Np(a,b)}g.k=function(){return 0===this.Nc?W().t:new bU(this)};g.ut=function(){return 0===this.Nc?W().t:new cU(this)};g.hu=function(){return 0===this.Nc?W().t:new dU(this)}; +function wQ(a){return 0===a.Nc?W().t:new eU(a)}g.Xv=function(){Nf($f(),this.$,null);this.Nc=0};g.jb=function(a){var b=M(P(),a);b^=b>>>16|0;var c=this.$.a[b&(-1+this.$.a.length|0)];a=null===c?null:ll(c,a,b);return null===a?up():new T(a.Cc)};g.y=function(a){var b=M(P(),a);b^=b>>>16|0;var c=this.$.a[b&(-1+this.$.a.length|0)];b=null===c?null:ll(c,a,b);if(null===b)throw new Rh("key not found: "+a);return b.Cc}; g.Kq=function(a,b){if(ia(this)!==ja(Nq)){a=this.jb(a);if(a instanceof T)b=a.Y;else if(up()===a)b=jk(b);else throw new G(a);return b}var c=M(P(),a);c^=c>>>16|0;var d=this.$.a[c&(-1+this.$.a.length|0)];a=null===d?null:ll(d,a,c);return null===a?jk(b):a.Cc};g.U=function(){return this.Nc};g.v=function(){return 0===this.Nc};g.Ha=function(a){for(var b=this.$.a.length,c=0;ch?-h|0:h)|0)|0,a.yl(d),b);d=1+d|0}} -function Wk(a){this.N=a}Wk.prototype=new TX;Wk.prototype.constructor=Wk;g=Wk.prototype;g.u=function(a){if(0<=a&&athis.N.a.length)return new Wk(el(Xk(),this.N,a));var b=this.N,c=Xk().Qd,d=new Jb(1);d.a[0]=a;return new Yk(b,32,c,d,33)};g.jl=function(a){return new Wk(il(Xk(),this.N,a))}; -g.uk=function(a,b){return new Wk(Yf($f(),this.N,a,b))};g.rj=function(){if(1===this.N.a.length)return Vk();var a=this.N;return new Wk(Yf($f(),a,1,a.a.length))};g.xl=function(){return 1};g.yl=function(){return this.N};g.Oa=function(){return this.rj()};g.hb=function(a){return this.jl(a)};g.y=function(a){a|=0;if(0<=a&&ah?-h|0:h)|0)|0,a.yl(d),b);d=1+d|0}} +function Wk(a){this.N=a}Wk.prototype=new TX;Wk.prototype.constructor=Wk;g=Wk.prototype;g.u=function(a){if(0<=a&&athis.N.a.length)return new Wk(el(Xk(),this.N,a));var b=this.N,c=Xk().Qd,d=new Ib(1);d.a[0]=a;return new Yk(b,32,c,d,33)};g.jl=function(a){return new Wk(il(Xk(),this.N,a))}; +g.uk=function(a,b){return new Wk(Yf($f(),this.N,a,b))};g.qj=function(){if(1===this.N.a.length)return Vk();var a=this.N;return new Wk(Yf($f(),a,1,a.a.length))};g.xl=function(){return 1};g.yl=function(){return this.N};g.Oa=function(){return this.qj()};g.hb=function(a){return this.jl(a)};g.y=function(a){a|=0;if(0<=a&&a>>5|0,a=this.Yh){var c=a-this.Yh|0;a=c>>>5|0;c&=31;if(athis.Z.a.length)return a=el(Xk(),this.Z,a),new Yk(this.N,this.Yh,this.Sg,a,1+this.aa|0);if(30>this.Sg.a.length){var b=fl(Xk(),this.Sg,this.Z),c=new Jb(1);c.a[0]=a;return new Yk(this.N,this.Yh,b,c,1+this.aa|0)}b=this.N;c=this.Yh;var d=this.Sg,e=this.Yh,f=Xk().Ug,h=this.Z,k=new (F(F(yc)).c)(1);k.a[0]=h;h=new Jb(1);h.a[0]=a;return new Zk(b,c,d,960+e|0,f,k,h,1+this.aa|0)}; -g.jl=function(a){var b=il(Xk(),this.N,a),c=jl(Xk(),2,this.Sg,a);a=il(Xk(),this.Z,a);return new Yk(b,this.Yh,c,a,this.aa)};g.uk=function(a,b){a=new Tk(a,b);Uk(a,1,this.N);Uk(a,2,this.Sg);Uk(a,1,this.Z);return a.kl()};g.rj=function(){if(1>>5|0,bthis.Z.a.length)return a=el(Xk(),this.Z,a),new Yk(this.N,this.Yh,this.Sg,a,1+this.aa|0);if(30>this.Sg.a.length){var b=fl(Xk(),this.Sg,this.Z),c=new Ib(1);c.a[0]=a;return new Yk(this.N,this.Yh,b,c,1+this.aa|0)}b=this.N;c=this.Yh;var d=this.Sg,e=this.Yh,f=Xk().Ug,h=this.Z,k=new (F(F(zc)).c)(1);k.a[0]=h;h=new Ib(1);h.a[0]=a;return new Zk(b,c,d,960+e|0,f,k,h,1+this.aa|0)}; +g.jl=function(a){var b=il(Xk(),this.N,a),c=jl(Xk(),2,this.Sg,a);a=il(Xk(),this.Z,a);return new Yk(b,this.Yh,c,a,this.aa)};g.uk=function(a,b){a=new Tk(a,b);Uk(a,1,this.N);Uk(a,2,this.Sg);Uk(a,1,this.Z);return a.kl()};g.qj=function(){if(1>>5|0,b>>10|0;var c=31&(b>>>5|0);b&=31;return a=this.kg?(b=a-this.kg|0,this.ph.a[b>>>5|0].a[31&b]):this.N.a[a]}throw this.ue(a);}; g.Lo=function(a,b){if(0<=a&&a=this.Tg){var c=a-this.Tg|0,d=c>>>10|0;a=31&(c>>>5|0);c&=31;if(d= this.kg)return c=a-this.kg|0,a=c>>>5|0,c&=31,d=this.ph.V(),e=d.a[a].V(),e.a[c]=b,d.a[a]=e,new Zk(this.N,this.kg,d,this.Tg,this.kf,this.lf,this.Z,this.aa);c=this.N.V();c.a[a]=b;return new Zk(c,this.kg,this.ph,this.Tg,this.kf,this.lf,this.Z,this.aa)}throw this.ue(a);}; -g.om=function(a){if(32>this.Z.a.length)return a=el(Xk(),this.Z,a),new Zk(this.N,this.kg,this.ph,this.Tg,this.kf,this.lf,a,1+this.aa|0);if(31>this.lf.a.length){var b=fl(Xk(),this.lf,this.Z),c=new Jb(1);c.a[0]=a;return new Zk(this.N,this.kg,this.ph,this.Tg,this.kf,b,c,1+this.aa|0)}if(30>this.kf.a.length){b=fl(Xk(),this.kf,fl(Xk(),this.lf,this.Z));c=Xk().Qd;var d=new Jb(1);d.a[0]=a;return new Zk(this.N,this.kg,this.ph,this.Tg,b,c,d,1+this.aa|0)}b=this.N;c=this.kg;d=this.ph;var e=this.Tg,f=this.kf,h= -this.Tg,k=Xk().ul,m=fl(Xk(),this.lf,this.Z),r=new (F(F(F(yc))).c)(1);r.a[0]=m;m=Xk().Qd;var u=new Jb(1);u.a[0]=a;return new $k(b,c,d,e,f,30720+h|0,k,r,m,u,1+this.aa|0)};g.jl=function(a){var b=il(Xk(),this.N,a),c=jl(Xk(),2,this.ph,a),d=jl(Xk(),3,this.kf,a),e=jl(Xk(),2,this.lf,a);a=il(Xk(),this.Z,a);return new Zk(b,this.kg,c,this.Tg,d,e,a,this.aa)};g.uk=function(a,b){a=new Tk(a,b);Uk(a,1,this.N);Uk(a,2,this.ph);Uk(a,3,this.kf);Uk(a,2,this.lf);Uk(a,1,this.Z);return a.kl()}; -g.rj=function(){if(1>>10|0;var c=31&(a>>>5|0);a&=31;return b=this.kg?(a=b-this.kg|0,this.ph.a[a>>>5|0].a[31&a]):this.N.a[b]}throw this.ue(b);};E(Zk,"scala.collection.immutable.Vector3",{z4:1,YA:1,Lw:1,Kw:1,Zd:1,wb:1,wa:1,oa:1,I:1,qa:1,J:1,pa:1,pb:1,db:1,Ea:1,Za:1,q:1,sd:1,rb:1,Jd:1,ye:1,Hb:1,mb:1,Ke:1,$d:1,Cb:1,Ta:1,Qg:1,g:1}); +g.om=function(a){if(32>this.Z.a.length)return a=el(Xk(),this.Z,a),new Zk(this.N,this.kg,this.ph,this.Tg,this.kf,this.lf,a,1+this.aa|0);if(31>this.lf.a.length){var b=fl(Xk(),this.lf,this.Z),c=new Ib(1);c.a[0]=a;return new Zk(this.N,this.kg,this.ph,this.Tg,this.kf,b,c,1+this.aa|0)}if(30>this.kf.a.length){b=fl(Xk(),this.kf,fl(Xk(),this.lf,this.Z));c=Xk().Qd;var d=new Ib(1);d.a[0]=a;return new Zk(this.N,this.kg,this.ph,this.Tg,b,c,d,1+this.aa|0)}b=this.N;c=this.kg;d=this.ph;var e=this.Tg,f=this.kf,h= +this.Tg,k=Xk().ul,m=fl(Xk(),this.lf,this.Z),r=new (F(F(F(zc))).c)(1);r.a[0]=m;m=Xk().Qd;var u=new Ib(1);u.a[0]=a;return new $k(b,c,d,e,f,30720+h|0,k,r,m,u,1+this.aa|0)};g.jl=function(a){var b=il(Xk(),this.N,a),c=jl(Xk(),2,this.ph,a),d=jl(Xk(),3,this.kf,a),e=jl(Xk(),2,this.lf,a);a=il(Xk(),this.Z,a);return new Zk(b,this.kg,c,this.Tg,d,e,a,this.aa)};g.uk=function(a,b){a=new Tk(a,b);Uk(a,1,this.N);Uk(a,2,this.ph);Uk(a,3,this.kf);Uk(a,2,this.lf);Uk(a,1,this.Z);return a.kl()}; +g.qj=function(){if(1>>10|0;var c=31&(a>>>5|0);a&=31;return b=this.kg?(a=b-this.kg|0,this.ph.a[a>>>5|0].a[31&a]):this.N.a[b]}throw this.ue(b);};E(Zk,"scala.collection.immutable.Vector3",{z4:1,YA:1,Mw:1,Lw:1,Zd:1,wb:1,wa:1,oa:1,I:1,qa:1,J:1,pa:1,pb:1,db:1,Ea:1,Za:1,q:1,sd:1,rb:1,Jd:1,ye:1,Hb:1,mb:1,Ke:1,$d:1,Cb:1,Ta:1,Qg:1,g:1}); function $k(a,b,c,d,e,f,h,k,m,r,u){this.Z=this.N=null;this.aa=0;this.Me=b;this.Mf=c;this.mf=d;this.Nf=e;this.nf=f;this.ae=h;this.ce=k;this.be=m;WX(this,a,r,u)}$k.prototype=new XX;$k.prototype.constructor=$k;g=$k.prototype; g.u=function(a){if(0<=a&&a>>15|0;var c=31&(b>>>10|0),d=31&(b>>>5|0);b&=31;return a=this.mf?(b=a-this.mf|0,this.Nf.a[b>>>10|0].a[31&(b>>>5|0)].a[31&b]):a>=this.Me?(b=a-this.Me|0,this.Mf.a[b>>>5|0].a[31&b]):this.N.a[a]}throw this.ue(a);}; g.Lo=function(a,b){if(0<=a&&a=this.nf){var c=a-this.nf|0,d=c>>>15|0,e=31&(c>>>10|0);a=31&(c>>>5|0);c&=31;if(d=this.mf)return e=a-this.mf|0,a=e>>>10|0,c=31&(e>>>5|0),e&=31,d=this.Nf.V(),f=d.a[a].V(),h=f.a[c].V(),h.a[e]=b,f.a[c]=h,d.a[a]=f,new $k(this.N,this.Me,this.Mf,this.mf,d,this.nf,this.ae,this.ce,this.be,this.Z, this.aa);if(a>=this.Me)return c=a-this.Me|0,a=c>>>5|0,c&=31,e=this.Mf.V(),d=e.a[a].V(),d.a[c]=b,e.a[a]=d,new $k(this.N,this.Me,e,this.mf,this.Nf,this.nf,this.ae,this.ce,this.be,this.Z,this.aa);c=this.N.V();c.a[a]=b;return new $k(c,this.Me,this.Mf,this.mf,this.Nf,this.nf,this.ae,this.ce,this.be,this.Z,this.aa)}throw this.ue(a);}; -g.om=function(a){if(32>this.Z.a.length)return a=el(Xk(),this.Z,a),new $k(this.N,this.Me,this.Mf,this.mf,this.Nf,this.nf,this.ae,this.ce,this.be,a,1+this.aa|0);if(31>this.be.a.length){var b=fl(Xk(),this.be,this.Z),c=new Jb(1);c.a[0]=a;return new $k(this.N,this.Me,this.Mf,this.mf,this.Nf,this.nf,this.ae,this.ce,b,c,1+this.aa|0)}if(31>this.ce.a.length){b=fl(Xk(),this.ce,fl(Xk(),this.be,this.Z));c=Xk().Qd;var d=new Jb(1);d.a[0]=a;return new $k(this.N,this.Me,this.Mf,this.mf,this.Nf,this.nf,this.ae,b, -c,d,1+this.aa|0)}if(30>this.ae.a.length){b=fl(Xk(),this.ae,fl(Xk(),this.ce,fl(Xk(),this.be,this.Z)));c=Xk().Ug;d=Xk().Qd;var e=new Jb(1);e.a[0]=a;return new $k(this.N,this.Me,this.Mf,this.mf,this.Nf,this.nf,b,c,d,e,1+this.aa|0)}b=this.N;c=this.Me;d=this.Mf;e=this.mf;var f=this.Nf,h=this.nf,k=this.ae,m=this.nf,r=Xk().Nw,u=fl(Xk(),this.ce,fl(Xk(),this.be,this.Z)),z=new (F(F(F(F(yc)))).c)(1);z.a[0]=u;u=Xk().Ug;var I=Xk().Qd,D=new Jb(1);D.a[0]=a;return new al(b,c,d,e,f,h,k,983040+m|0,r,z,u,I,D,1+this.aa| +g.om=function(a){if(32>this.Z.a.length)return a=el(Xk(),this.Z,a),new $k(this.N,this.Me,this.Mf,this.mf,this.Nf,this.nf,this.ae,this.ce,this.be,a,1+this.aa|0);if(31>this.be.a.length){var b=fl(Xk(),this.be,this.Z),c=new Ib(1);c.a[0]=a;return new $k(this.N,this.Me,this.Mf,this.mf,this.Nf,this.nf,this.ae,this.ce,b,c,1+this.aa|0)}if(31>this.ce.a.length){b=fl(Xk(),this.ce,fl(Xk(),this.be,this.Z));c=Xk().Qd;var d=new Ib(1);d.a[0]=a;return new $k(this.N,this.Me,this.Mf,this.mf,this.Nf,this.nf,this.ae,b, +c,d,1+this.aa|0)}if(30>this.ae.a.length){b=fl(Xk(),this.ae,fl(Xk(),this.ce,fl(Xk(),this.be,this.Z)));c=Xk().Ug;d=Xk().Qd;var e=new Ib(1);e.a[0]=a;return new $k(this.N,this.Me,this.Mf,this.mf,this.Nf,this.nf,b,c,d,e,1+this.aa|0)}b=this.N;c=this.Me;d=this.Mf;e=this.mf;var f=this.Nf,h=this.nf,k=this.ae,m=this.nf,r=Xk().Ow,u=fl(Xk(),this.ce,fl(Xk(),this.be,this.Z)),z=new (F(F(F(F(zc)))).c)(1);z.a[0]=u;u=Xk().Ug;var I=Xk().Qd,D=new Ib(1);D.a[0]=a;return new al(b,c,d,e,f,h,k,983040+m|0,r,z,u,I,D,1+this.aa| 0)};g.jl=function(a){var b=il(Xk(),this.N,a),c=jl(Xk(),2,this.Mf,a),d=jl(Xk(),3,this.Nf,a),e=jl(Xk(),4,this.ae,a),f=jl(Xk(),3,this.ce,a),h=jl(Xk(),2,this.be,a);a=il(Xk(),this.Z,a);return new $k(b,this.Me,c,this.mf,d,this.nf,e,f,h,a,this.aa)};g.uk=function(a,b){a=new Tk(a,b);Uk(a,1,this.N);Uk(a,2,this.Mf);Uk(a,3,this.Nf);Uk(a,4,this.ae);Uk(a,3,this.ce);Uk(a,2,this.be);Uk(a,1,this.Z);return a.kl()}; -g.rj=function(){if(1>>15|0;var c=31&(a>>>10|0),d=31&(a>>>5|0);a&=31;return b=this.mf?(a=b-this.mf|0,this.Nf.a[a>>>10|0].a[31&(a>>>5|0)].a[31&a]):b>=this.Me?(a=b-this.Me|0,this.Mf.a[a>>>5|0].a[31&a]):this.N.a[b]}throw this.ue(b);}; -E($k,"scala.collection.immutable.Vector4",{A4:1,YA:1,Lw:1,Kw:1,Zd:1,wb:1,wa:1,oa:1,I:1,qa:1,J:1,pa:1,pb:1,db:1,Ea:1,Za:1,q:1,sd:1,rb:1,Jd:1,ye:1,Hb:1,mb:1,Ke:1,$d:1,Cb:1,Ta:1,Qg:1,g:1});function al(a,b,c,d,e,f,h,k,m,r,u,z,I,D){this.Z=this.N=null;this.aa=0;this.Kd=b;this.Ae=c;this.de=d;this.Be=e;this.ee=f;this.Ce=h;this.fe=k;this.bd=m;this.ed=r;this.dd=u;this.cd=z;WX(this,a,I,D)}al.prototype=new XX;al.prototype.constructor=al;g=al.prototype; +E($k,"scala.collection.immutable.Vector4",{A4:1,YA:1,Mw:1,Lw:1,Zd:1,wb:1,wa:1,oa:1,I:1,qa:1,J:1,pa:1,pb:1,db:1,Ea:1,Za:1,q:1,sd:1,rb:1,Jd:1,ye:1,Hb:1,mb:1,Ke:1,$d:1,Cb:1,Ta:1,Qg:1,g:1});function al(a,b,c,d,e,f,h,k,m,r,u,z,I,D){this.Z=this.N=null;this.aa=0;this.Kd=b;this.Ae=c;this.de=d;this.Be=e;this.ee=f;this.Ce=h;this.fe=k;this.bd=m;this.ed=r;this.dd=u;this.cd=z;WX(this,a,I,D)}al.prototype=new XX;al.prototype.constructor=al;g=al.prototype; g.u=function(a){if(0<=a&&a>>20|0;var c=31&(b>>>15|0),d=31&(b>>>10|0),e=31&(b>>>5|0);b&=31;return a=this.ee?(b=a-this.ee|0,this.Ce.a[b>>>15|0].a[31&(b>>>10|0)].a[31&(b>>>5|0)].a[31&b]):a>=this.de?(b=a-this.de|0,this.Be.a[b>>>10|0].a[31&(b>>>5|0)].a[31&b]):a>=this.Kd? (b=a-this.Kd|0,this.Ae.a[b>>>5|0].a[31&b]):this.N.a[a]}throw this.ue(a);}; g.Lo=function(a,b){if(0<=a&&a=this.fe){var c=a-this.fe|0,d=c>>>20|0,e=31&(c>>>15|0),f=31&(c>>>10|0);a=31&(c>>>5|0);c&=31;if(d=this.ee)return e=a-this.ee|0,a=e>>>15|0,c=31&(e>>>10|0),f=31&(e>>>5|0),e&=31,d=this.Ce.V(),h=d.a[a].V(),k=h.a[c].V(),m=k.a[f].V(),m.a[e]=b,k.a[f]=m,h.a[c]=k,d.a[a]=h,new al(this.N,this.Kd,this.Ae,this.de,this.Be,this.ee,d,this.fe,this.bd,this.ed,this.dd,this.cd,this.Z,this.aa);if(a>=this.de)return f=a-this.de|0,a=f>>>10|0,c=31&(f>>>5|0),f&=31, e=this.Be.V(),d=e.a[a].V(),h=d.a[c].V(),h.a[f]=b,d.a[c]=h,e.a[a]=d,new al(this.N,this.Kd,this.Ae,this.de,e,this.ee,this.Ce,this.fe,this.bd,this.ed,this.dd,this.cd,this.Z,this.aa);if(a>=this.Kd)return c=a-this.Kd|0,a=c>>>5|0,c&=31,f=this.Ae.V(),e=f.a[a].V(),e.a[c]=b,f.a[a]=e,new al(this.N,this.Kd,f,this.de,this.Be,this.ee,this.Ce,this.fe,this.bd,this.ed,this.dd,this.cd,this.Z,this.aa);c=this.N.V();c.a[a]=b;return new al(c,this.Kd,this.Ae,this.de,this.Be,this.ee,this.Ce,this.fe,this.bd,this.ed,this.dd, this.cd,this.Z,this.aa)}throw this.ue(a);}; -g.om=function(a){if(32>this.Z.a.length)return a=el(Xk(),this.Z,a),new al(this.N,this.Kd,this.Ae,this.de,this.Be,this.ee,this.Ce,this.fe,this.bd,this.ed,this.dd,this.cd,a,1+this.aa|0);if(31>this.cd.a.length){var b=fl(Xk(),this.cd,this.Z),c=new Jb(1);c.a[0]=a;return new al(this.N,this.Kd,this.Ae,this.de,this.Be,this.ee,this.Ce,this.fe,this.bd,this.ed,this.dd,b,c,1+this.aa|0)}if(31>this.dd.a.length){b=fl(Xk(),this.dd,fl(Xk(),this.cd,this.Z));c=Xk().Qd;var d=new Jb(1);d.a[0]=a;return new al(this.N,this.Kd, -this.Ae,this.de,this.Be,this.ee,this.Ce,this.fe,this.bd,this.ed,b,c,d,1+this.aa|0)}if(31>this.ed.a.length){b=fl(Xk(),this.ed,fl(Xk(),this.dd,fl(Xk(),this.cd,this.Z)));c=Xk().Ug;d=Xk().Qd;var e=new Jb(1);e.a[0]=a;return new al(this.N,this.Kd,this.Ae,this.de,this.Be,this.ee,this.Ce,this.fe,this.bd,b,c,d,e,1+this.aa|0)}if(30>this.bd.a.length){b=fl(Xk(),this.bd,fl(Xk(),this.ed,fl(Xk(),this.dd,fl(Xk(),this.cd,this.Z))));c=Xk().ul;d=Xk().Ug;e=Xk().Qd;var f=new Jb(1);f.a[0]=a;return new al(this.N,this.Kd, -this.Ae,this.de,this.Be,this.ee,this.Ce,this.fe,b,c,d,e,f,1+this.aa|0)}b=this.N;c=this.Kd;d=this.Ae;e=this.de;f=this.Be;var h=this.ee,k=this.Ce,m=this.fe,r=this.bd,u=this.fe,z=Xk().AJ,I=fl(Xk(),this.ed,fl(Xk(),this.dd,fl(Xk(),this.cd,this.Z))),D=new (F(F(F(F(F(yc))))).c)(1);D.a[0]=I;I=Xk().ul;var S=Xk().Ug,O=Xk().Qd,K=new Jb(1);K.a[0]=a;return new bl(b,c,d,e,f,h,k,m,r,31457280+u|0,z,D,I,S,O,K,1+this.aa|0)}; +g.om=function(a){if(32>this.Z.a.length)return a=el(Xk(),this.Z,a),new al(this.N,this.Kd,this.Ae,this.de,this.Be,this.ee,this.Ce,this.fe,this.bd,this.ed,this.dd,this.cd,a,1+this.aa|0);if(31>this.cd.a.length){var b=fl(Xk(),this.cd,this.Z),c=new Ib(1);c.a[0]=a;return new al(this.N,this.Kd,this.Ae,this.de,this.Be,this.ee,this.Ce,this.fe,this.bd,this.ed,this.dd,b,c,1+this.aa|0)}if(31>this.dd.a.length){b=fl(Xk(),this.dd,fl(Xk(),this.cd,this.Z));c=Xk().Qd;var d=new Ib(1);d.a[0]=a;return new al(this.N,this.Kd, +this.Ae,this.de,this.Be,this.ee,this.Ce,this.fe,this.bd,this.ed,b,c,d,1+this.aa|0)}if(31>this.ed.a.length){b=fl(Xk(),this.ed,fl(Xk(),this.dd,fl(Xk(),this.cd,this.Z)));c=Xk().Ug;d=Xk().Qd;var e=new Ib(1);e.a[0]=a;return new al(this.N,this.Kd,this.Ae,this.de,this.Be,this.ee,this.Ce,this.fe,this.bd,b,c,d,e,1+this.aa|0)}if(30>this.bd.a.length){b=fl(Xk(),this.bd,fl(Xk(),this.ed,fl(Xk(),this.dd,fl(Xk(),this.cd,this.Z))));c=Xk().ul;d=Xk().Ug;e=Xk().Qd;var f=new Ib(1);f.a[0]=a;return new al(this.N,this.Kd, +this.Ae,this.de,this.Be,this.ee,this.Ce,this.fe,b,c,d,e,f,1+this.aa|0)}b=this.N;c=this.Kd;d=this.Ae;e=this.de;f=this.Be;var h=this.ee,k=this.Ce,m=this.fe,r=this.bd,u=this.fe,z=Xk().AJ,I=fl(Xk(),this.ed,fl(Xk(),this.dd,fl(Xk(),this.cd,this.Z))),D=new (F(F(F(F(F(zc))))).c)(1);D.a[0]=I;I=Xk().ul;var S=Xk().Ug,O=Xk().Qd,K=new Ib(1);K.a[0]=a;return new bl(b,c,d,e,f,h,k,m,r,31457280+u|0,z,D,I,S,O,K,1+this.aa|0)}; g.jl=function(a){var b=il(Xk(),this.N,a),c=jl(Xk(),2,this.Ae,a),d=jl(Xk(),3,this.Be,a),e=jl(Xk(),4,this.Ce,a),f=jl(Xk(),5,this.bd,a),h=jl(Xk(),4,this.ed,a),k=jl(Xk(),3,this.dd,a),m=jl(Xk(),2,this.cd,a);a=il(Xk(),this.Z,a);return new al(b,this.Kd,c,this.de,d,this.ee,e,this.fe,f,h,k,m,a,this.aa)};g.uk=function(a,b){a=new Tk(a,b);Uk(a,1,this.N);Uk(a,2,this.Ae);Uk(a,3,this.Be);Uk(a,4,this.Ce);Uk(a,5,this.bd);Uk(a,4,this.ed);Uk(a,3,this.dd);Uk(a,2,this.cd);Uk(a,1,this.Z);return a.kl()}; -g.rj=function(){if(1>>20|0;var c=31&(a>>>15|0),d=31&(a>>>10|0),e=31&(a>>>5|0);a&=31;return b=this.ee?(a=b-this.ee|0,this.Ce.a[a>>>15|0].a[31&(a>>>10|0)].a[31&(a>>>5|0)].a[31&a]):b>=this.de?(a=b-this.de|0,this.Be.a[a>>>10|0].a[31&(a>>>5|0)].a[31&a]):b>= -this.Kd?(a=b-this.Kd|0,this.Ae.a[a>>>5|0].a[31&a]):this.N.a[b]}throw this.ue(b);};E(al,"scala.collection.immutable.Vector5",{B4:1,YA:1,Lw:1,Kw:1,Zd:1,wb:1,wa:1,oa:1,I:1,qa:1,J:1,pa:1,pb:1,db:1,Ea:1,Za:1,q:1,sd:1,rb:1,Jd:1,ye:1,Hb:1,mb:1,Ke:1,$d:1,Cb:1,Ta:1,Qg:1,g:1});function bl(a,b,c,d,e,f,h,k,m,r,u,z,I,D,S,O,K){this.Z=this.N=null;this.aa=0;this.fd=b;this.Md=c;this.td=d;this.Nd=e;this.ud=f;this.Od=h;this.vd=k;this.Pd=m;this.Ld=r;this.Hc=u;this.Lc=z;this.Kc=I;this.Jc=D;this.Ic=S;WX(this,a,O,K)} +this.Kd?(a=b-this.Kd|0,this.Ae.a[a>>>5|0].a[31&a]):this.N.a[b]}throw this.ue(b);};E(al,"scala.collection.immutable.Vector5",{B4:1,YA:1,Mw:1,Lw:1,Zd:1,wb:1,wa:1,oa:1,I:1,qa:1,J:1,pa:1,pb:1,db:1,Ea:1,Za:1,q:1,sd:1,rb:1,Jd:1,ye:1,Hb:1,mb:1,Ke:1,$d:1,Cb:1,Ta:1,Qg:1,g:1});function bl(a,b,c,d,e,f,h,k,m,r,u,z,I,D,S,O,K){this.Z=this.N=null;this.aa=0;this.fd=b;this.Md=c;this.td=d;this.Nd=e;this.ud=f;this.Od=h;this.vd=k;this.Pd=m;this.Ld=r;this.Hc=u;this.Lc=z;this.Kc=I;this.Jc=D;this.Ic=S;WX(this,a,O,K)} bl.prototype=new XX;bl.prototype.constructor=bl;g=bl.prototype; g.u=function(a){if(0<=a&&a>>25|0;var c=31&(b>>>20|0),d=31&(b>>>15|0),e=31&(b>>>10|0),f=31&(b>>>5|0);b&=31;return a=this.vd?(b=a-this.vd|0,this.Pd.a[b>>>20|0].a[31&(b>>>15|0)].a[31&(b>>>10|0)].a[31&(b>>>5|0)].a[31& b]):a>=this.ud?(b=a-this.ud|0,this.Od.a[b>>>15|0].a[31&(b>>>10|0)].a[31&(b>>>5|0)].a[31&b]):a>=this.td?(b=a-this.td|0,this.Nd.a[b>>>10|0].a[31&(b>>>5|0)].a[31&b]):a>=this.fd?(b=a-this.fd|0,this.Md.a[b>>>5|0].a[31&b]):this.N.a[a]}throw this.ue(a);}; @@ -2284,34 +2284,34 @@ this.Jc.V(),e=f.a[h].V(),d=e.a[a].V(),d.a[c]=b,e.a[a]=d,f.a[h]=e,new bl(this.N,t this.vd,this.Pd,this.Ld,this.Hc,this.Lc,this.Kc,this.Jc,this.Ic,a,this.aa)}if(a>=this.vd)return e=a-this.vd|0,a=e>>>20|0,c=31&(e>>>15|0),h=31&(e>>>10|0),f=31&(e>>>5|0),e&=31,d=this.Pd.V(),k=d.a[a].V(),m=k.a[c].V(),r=m.a[h].V(),u=r.a[f].V(),u.a[e]=b,r.a[f]=u,m.a[h]=r,k.a[c]=m,d.a[a]=k,new bl(this.N,this.fd,this.Md,this.td,this.Nd,this.ud,this.Od,this.vd,d,this.Ld,this.Hc,this.Lc,this.Kc,this.Jc,this.Ic,this.Z,this.aa);if(a>=this.ud)return f=a-this.ud|0,a=f>>>15|0,c=31&(f>>>10|0),h=31&(f>>>5|0),f&= 31,e=this.Od.V(),d=e.a[a].V(),k=d.a[c].V(),m=k.a[h].V(),m.a[f]=b,k.a[h]=m,d.a[c]=k,e.a[a]=d,new bl(this.N,this.fd,this.Md,this.td,this.Nd,this.ud,e,this.vd,this.Pd,this.Ld,this.Hc,this.Lc,this.Kc,this.Jc,this.Ic,this.Z,this.aa);if(a>=this.td)return h=a-this.td|0,a=h>>>10|0,c=31&(h>>>5|0),h&=31,f=this.Nd.V(),e=f.a[a].V(),d=e.a[c].V(),d.a[h]=b,e.a[c]=d,f.a[a]=e,new bl(this.N,this.fd,this.Md,this.td,f,this.ud,this.Od,this.vd,this.Pd,this.Ld,this.Hc,this.Lc,this.Kc,this.Jc,this.Ic,this.Z,this.aa);if(a>= this.fd)return c=a-this.fd|0,a=c>>>5|0,c&=31,h=this.Md.V(),f=h.a[a].V(),f.a[c]=b,h.a[a]=f,new bl(this.N,this.fd,h,this.td,this.Nd,this.ud,this.Od,this.vd,this.Pd,this.Ld,this.Hc,this.Lc,this.Kc,this.Jc,this.Ic,this.Z,this.aa);c=this.N.V();c.a[a]=b;return new bl(c,this.fd,this.Md,this.td,this.Nd,this.ud,this.Od,this.vd,this.Pd,this.Ld,this.Hc,this.Lc,this.Kc,this.Jc,this.Ic,this.Z,this.aa)}throw this.ue(a);}; -g.om=function(a){if(32>this.Z.a.length)return a=el(Xk(),this.Z,a),new bl(this.N,this.fd,this.Md,this.td,this.Nd,this.ud,this.Od,this.vd,this.Pd,this.Ld,this.Hc,this.Lc,this.Kc,this.Jc,this.Ic,a,1+this.aa|0);if(31>this.Ic.a.length){var b=fl(Xk(),this.Ic,this.Z),c=new Jb(1);c.a[0]=a;return new bl(this.N,this.fd,this.Md,this.td,this.Nd,this.ud,this.Od,this.vd,this.Pd,this.Ld,this.Hc,this.Lc,this.Kc,this.Jc,b,c,1+this.aa|0)}if(31>this.Jc.a.length){b=fl(Xk(),this.Jc,fl(Xk(),this.Ic,this.Z));c=Xk().Qd; -var d=new Jb(1);d.a[0]=a;return new bl(this.N,this.fd,this.Md,this.td,this.Nd,this.ud,this.Od,this.vd,this.Pd,this.Ld,this.Hc,this.Lc,this.Kc,b,c,d,1+this.aa|0)}if(31>this.Kc.a.length){b=fl(Xk(),this.Kc,fl(Xk(),this.Jc,fl(Xk(),this.Ic,this.Z)));c=Xk().Ug;d=Xk().Qd;var e=new Jb(1);e.a[0]=a;return new bl(this.N,this.fd,this.Md,this.td,this.Nd,this.ud,this.Od,this.vd,this.Pd,this.Ld,this.Hc,this.Lc,b,c,d,e,1+this.aa|0)}if(31>this.Lc.a.length){b=fl(Xk(),this.Lc,fl(Xk(),this.Kc,fl(Xk(),this.Jc,fl(Xk(), -this.Ic,this.Z))));c=Xk().ul;d=Xk().Ug;e=Xk().Qd;var f=new Jb(1);f.a[0]=a;return new bl(this.N,this.fd,this.Md,this.td,this.Nd,this.ud,this.Od,this.vd,this.Pd,this.Ld,this.Hc,b,c,d,e,f,1+this.aa|0)}if(62>this.Hc.a.length){b=fl(Xk(),this.Hc,fl(Xk(),this.Lc,fl(Xk(),this.Kc,fl(Xk(),this.Jc,fl(Xk(),this.Ic,this.Z)))));c=Xk().Nw;d=Xk().ul;e=Xk().Ug;f=Xk().Qd;var h=new Jb(1);h.a[0]=a;return new bl(this.N,this.fd,this.Md,this.td,this.Nd,this.ud,this.Od,this.vd,this.Pd,this.Ld,b,c,d,e,f,h,1+this.aa|0)}throw rG(); +g.om=function(a){if(32>this.Z.a.length)return a=el(Xk(),this.Z,a),new bl(this.N,this.fd,this.Md,this.td,this.Nd,this.ud,this.Od,this.vd,this.Pd,this.Ld,this.Hc,this.Lc,this.Kc,this.Jc,this.Ic,a,1+this.aa|0);if(31>this.Ic.a.length){var b=fl(Xk(),this.Ic,this.Z),c=new Ib(1);c.a[0]=a;return new bl(this.N,this.fd,this.Md,this.td,this.Nd,this.ud,this.Od,this.vd,this.Pd,this.Ld,this.Hc,this.Lc,this.Kc,this.Jc,b,c,1+this.aa|0)}if(31>this.Jc.a.length){b=fl(Xk(),this.Jc,fl(Xk(),this.Ic,this.Z));c=Xk().Qd; +var d=new Ib(1);d.a[0]=a;return new bl(this.N,this.fd,this.Md,this.td,this.Nd,this.ud,this.Od,this.vd,this.Pd,this.Ld,this.Hc,this.Lc,this.Kc,b,c,d,1+this.aa|0)}if(31>this.Kc.a.length){b=fl(Xk(),this.Kc,fl(Xk(),this.Jc,fl(Xk(),this.Ic,this.Z)));c=Xk().Ug;d=Xk().Qd;var e=new Ib(1);e.a[0]=a;return new bl(this.N,this.fd,this.Md,this.td,this.Nd,this.ud,this.Od,this.vd,this.Pd,this.Ld,this.Hc,this.Lc,b,c,d,e,1+this.aa|0)}if(31>this.Lc.a.length){b=fl(Xk(),this.Lc,fl(Xk(),this.Kc,fl(Xk(),this.Jc,fl(Xk(), +this.Ic,this.Z))));c=Xk().ul;d=Xk().Ug;e=Xk().Qd;var f=new Ib(1);f.a[0]=a;return new bl(this.N,this.fd,this.Md,this.td,this.Nd,this.ud,this.Od,this.vd,this.Pd,this.Ld,this.Hc,b,c,d,e,f,1+this.aa|0)}if(62>this.Hc.a.length){b=fl(Xk(),this.Hc,fl(Xk(),this.Lc,fl(Xk(),this.Kc,fl(Xk(),this.Jc,fl(Xk(),this.Ic,this.Z)))));c=Xk().Ow;d=Xk().ul;e=Xk().Ug;f=Xk().Qd;var h=new Ib(1);h.a[0]=a;return new bl(this.N,this.fd,this.Md,this.td,this.Nd,this.ud,this.Od,this.vd,this.Pd,this.Ld,b,c,d,e,f,h,1+this.aa|0)}throw rG(); };g.jl=function(a){var b=il(Xk(),this.N,a),c=jl(Xk(),2,this.Md,a),d=jl(Xk(),3,this.Nd,a),e=jl(Xk(),4,this.Od,a),f=jl(Xk(),5,this.Pd,a),h=jl(Xk(),6,this.Hc,a),k=jl(Xk(),5,this.Lc,a),m=jl(Xk(),4,this.Kc,a),r=jl(Xk(),3,this.Jc,a),u=jl(Xk(),2,this.Ic,a);a=il(Xk(),this.Z,a);return new bl(b,this.fd,c,this.td,d,this.ud,e,this.vd,f,this.Ld,h,k,m,r,u,a,this.aa)}; -g.uk=function(a,b){a=new Tk(a,b);Uk(a,1,this.N);Uk(a,2,this.Md);Uk(a,3,this.Nd);Uk(a,4,this.Od);Uk(a,5,this.Pd);Uk(a,6,this.Hc);Uk(a,5,this.Lc);Uk(a,4,this.Kc);Uk(a,3,this.Jc);Uk(a,2,this.Ic);Uk(a,1,this.Z);return a.kl()};g.rj=function(){if(1>>25|0;var c=31&(a>>>20|0),d=31&(a>>>15|0),e=31&(a>>>10|0),f=31&(a>>>5|0);a&=31;return b=this.vd?(a=b-this.vd|0,this.Pd.a[a>>>20|0].a[31&(a>>>15|0)].a[31&(a>>>10|0)].a[31&(a>>> -5|0)].a[31&a]):b>=this.ud?(a=b-this.ud|0,this.Od.a[a>>>15|0].a[31&(a>>>10|0)].a[31&(a>>>5|0)].a[31&a]):b>=this.td?(a=b-this.td|0,this.Nd.a[a>>>10|0].a[31&(a>>>5|0)].a[31&a]):b>=this.fd?(a=b-this.fd|0,this.Md.a[a>>>5|0].a[31&a]):this.N.a[b]}throw this.ue(b);};E(bl,"scala.collection.immutable.Vector6",{C4:1,YA:1,Lw:1,Kw:1,Zd:1,wb:1,wa:1,oa:1,I:1,qa:1,J:1,pa:1,pb:1,db:1,Ea:1,Za:1,q:1,sd:1,rb:1,Jd:1,ye:1,Hb:1,mb:1,Ke:1,$d:1,Cb:1,Ta:1,Qg:1,g:1});function Hj(){var a=new rS;a.wc=AN(new Sj);return a} +5|0)].a[31&a]):b>=this.ud?(a=b-this.ud|0,this.Od.a[a>>>15|0].a[31&(a>>>10|0)].a[31&(a>>>5|0)].a[31&a]):b>=this.td?(a=b-this.td|0,this.Nd.a[a>>>10|0].a[31&(a>>>5|0)].a[31&a]):b>=this.fd?(a=b-this.fd|0,this.Md.a[a>>>5|0].a[31&a]):this.N.a[b]}throw this.ue(b);};E(bl,"scala.collection.immutable.Vector6",{C4:1,YA:1,Mw:1,Lw:1,Zd:1,wb:1,wa:1,oa:1,I:1,qa:1,J:1,pa:1,pb:1,db:1,Ea:1,Za:1,q:1,sd:1,rb:1,Jd:1,ye:1,Hb:1,mb:1,Ke:1,$d:1,Cb:1,Ta:1,Qg:1,g:1});function Hj(){var a=new rS;a.wc=AN(new Sj);return a} function rS(){this.wc=null}rS.prototype=new $W;rS.prototype.constructor=rS;g=rS.prototype;g.Dc=function(){return"IndexedSeq"};g.k=function(){return QA(new RA,new SA(this))};g.we=function(){return ZS(new $S,new SA(this))};g.jh=function(){return new vW(this)};g.Tc=function(a){return UP(this,a)};g.X=function(){return dt(this)};g.Yd=function(a){var b=this.wc.i();return b===a?0:bc.length||0>a||0>a)throw a=new VG,uk(a,"Index out of Bound",!0),a;for(var d=0;dc.length||0>a||0>a)throw a=new VG,uk(a,"Index out of Bound",!0),a;for(var d=0;d>6,d=a.he(c);return a.LJ(c,new n(d.l|(0===(32&b)?1<this.GJ))};g.u=function(a){return eQ(this.rh,a)};g.i=function(){return this.Vg};g.U=function(){return this.Vg};g.v=function(){return 0===this.Vg};function yE(a){a.gF=!a.v();return a.rh}function sE(a,b){dY(a);b=new un(b,R());0===a.Vg?a.rh=b:a.qj.Sh=b;a.qj=b;a.Vg=1+a.Vg|0;return a} -function pE(a,b){b=b.k();if(b.d()){var c=1,d=new un(b.e(),R());for(a.rh=d;b.d();){var e=new un(b.e(),R());d=d.Sh=e;c=1+c|0}a.Vg=c;a.qj=d}return a}function KP(a,b){b=b.k();b.d()&&(b=pE(new qE,b),dY(a),0===a.Vg?a.rh=b.rh:a.qj.Sh=b.rh,a.qj=b.qj,a.Vg=a.Vg+b.Vg|0);return a} -g.$i=function(a){dY(this);if(0>a||a>=this.Vg)throw Wl(new Xl,a+" is out of bounds (min 0, max "+(-1+this.Vg|0)+")");if(0===a)a=null;else if(a===this.Vg)a=this.qj;else{a=-1+a|0;for(var b=this.rh;0this.GJ))};g.u=function(a){return eQ(this.rh,a)};g.i=function(){return this.Vg};g.U=function(){return this.Vg};g.v=function(){return 0===this.Vg};function yE(a){a.gF=!a.v();return a.rh}function sE(a,b){dY(a);b=new un(b,R());0===a.Vg?a.rh=b:a.pj.Sh=b;a.pj=b;a.Vg=1+a.Vg|0;return a} +function pE(a,b){b=b.k();if(b.d()){var c=1,d=new un(b.e(),R());for(a.rh=d;b.d();){var e=new un(b.e(),R());d=d.Sh=e;c=1+c|0}a.Vg=c;a.pj=d}return a}function KP(a,b){b=b.k();b.d()&&(b=pE(new qE,b),dY(a),0===a.Vg?a.rh=b.rh:a.pj.Sh=b.rh,a.pj=b.pj,a.Vg=a.Vg+b.Vg|0);return a} +g.Zi=function(a){dY(this);if(0>a||a>=this.Vg)throw Wl(new Xl,a+" is out of bounds (min 0, max "+(-1+this.Vg|0)+")");if(0===a)a=null;else if(a===this.Vg)a=this.pj;else{a=-1+a|0;for(var b=this.rh;0d)throw de("fromIndex("+b+") \x3e toIndex("+d+")");for(var e=b;e!==d;)c.a[e]=null,e=1+e|0;a.w=b}function fK(){var a=new tR,b=new Jb(16);a.nj=0;a.lg=b;a.w=0;return a}function tR(){this.nj=0;this.lg=null;this.w=0}tR.prototype=new lX;tR.prototype.constructor=tR;g=tR.prototype;g.Fg=function(a){return fT(this,a)};g.hb=function(a){return xO(this,a)};g.k=function(){return rr(this).k()};g.we=function(){return rr(this).we()};g.jh=function(){return new vW(this)}; +aO.prototype.LJ=function(a,b){return 0===a?new aO(b):1===a?bO($N(),this.ME,b):FO($N(),mj(qj(),new A([this.ME]),a,b))};aO.prototype.fI=function(a,b){b=oj(qj(),a,b,this.ME,0);a=b.l;b=b.m;return 0===a&&0===b?$N().xw:new aO(new n(a,b))};E(aO,"scala.collection.immutable.BitSet$BitSet1",{$2:1,LP:1,ro:1,hk:1,wa:1,oa:1,I:1,qa:1,J:1,pa:1,fj:1,jk:1,Ea:1,q:1,Do:1,rb:1,Go:1,wJ:1,sw:1,HE:1,FE:1,GE:1,xJ:1,bQ:1,hJ:1,JE:1,Ta:1,yJ:1,RA:1,TI:1,g:1});function GO(a,b){this.NE=a;this.OE=b}GO.prototype=new cY; +GO.prototype.constructor=GO;GO.prototype.ff=function(){return 2};GO.prototype.he=function(a){return 0===a?this.NE:1===a?this.OE:ba};GO.prototype.LJ=function(a,b){return 0===a?new GO(b,this.OE):1===a?bO($N(),this.NE,b):FO($N(),mj(qj(),new A([this.NE,this.OE]),a,b))};GO.prototype.fI=function(a,b){var c=oj(qj(),a,b,this.NE,0),d=c.l;c=c.m;b=oj(qj(),a,b,this.OE,1);a=b.l;b=b.m;return 0===a&&0===b?0===d&&0===c?$N().xw:new aO(new n(d,c)):new GO(new n(d,c),new n(a,b))}; +E(GO,"scala.collection.immutable.BitSet$BitSet2",{a3:1,LP:1,ro:1,hk:1,wa:1,oa:1,I:1,qa:1,J:1,pa:1,fj:1,jk:1,Ea:1,q:1,Do:1,rb:1,Go:1,wJ:1,sw:1,HE:1,FE:1,GE:1,xJ:1,bQ:1,hJ:1,JE:1,Ta:1,yJ:1,RA:1,TI:1,g:1});function cO(a){this.PE=a}cO.prototype=new cY;cO.prototype.constructor=cO;cO.prototype.ff=function(){return this.PE.a.length};cO.prototype.he=function(a){return ad)throw de("fromIndex("+b+") \x3e toIndex("+d+")");for(var e=b;e!==d;)c.a[e]=null,e=1+e|0;a.w=b}function fK(){var a=new tR,b=new Ib(16);a.mj=0;a.lg=b;a.w=0;return a}function tR(){this.mj=0;this.lg=null;this.w=0}tR.prototype=new lX;tR.prototype.constructor=tR;g=tR.prototype;g.Fg=function(a){return fT(this,a)};g.hb=function(a){return xO(this,a)};g.k=function(){return rr(this).k()};g.we=function(){return rr(this).we()};g.jh=function(){return new vW(this)}; g.Tc=function(a){return UP(this,a)};g.X=function(){return dt(this)};g.Yd=function(a){var b=this.w;return b===a?0:bthis.w&&1<=a&&this.ht(a)};g.u=function(a){var b=1+a|0;if(0>a)throw Wl(new Xl,a+" is out of bounds (min 0, max "+(-1+this.w|0)+")");if(b>this.w)throw Wl(new Xl,(-1+b|0)+" is out of bounds (min 0, max "+(-1+this.w|0)+")");return this.lg.a[a]}; -function zt(a,b,c){var d=1+b|0;if(0>b)throw Wl(new Xl,b+" is out of bounds (min 0, max "+(-1+a.w|0)+")");if(d>a.w)throw Wl(new Xl,(-1+d|0)+" is out of bounds (min 0, max "+(-1+a.w|0)+")");a.nj=1+a.nj|0;a.lg.a[b]=c}g.i=function(){return this.w};function rr(a){return new CW(a,new sp(()=>a.nj))}function oo(a,b){a.nj=1+a.nj|0;var c=1+a.w|0;a.ht(c);a.w=c;zt(a,-1+a.w|0,b);return a} -function ov(a,b){if(b instanceof tR){var c=b.w;0b)throw Wl(new Xl,b+" is out of bounds (min 0, max "+(-1+a.w|0)+")");if(b>a.w)throw Wl(new Xl,(-1+b|0)+" is out of bounds (min 0, max "+(-1+a.w|0)+")");a.nj=1+a.nj|0;a.ht(1+a.w|0);Mi(Ci(),a.lg,b,a.lg,1+b|0,a.w-b|0);a.w=1+a.w|0;zt(a,b,c)} -g.$i=function(a){var b=1+a|0;if(0>a)throw Wl(new Xl,a+" is out of bounds (min 0, max "+(-1+this.w|0)+")");if(b>this.w)throw Wl(new Xl,(-1+b|0)+" is out of bounds (min 0, max "+(-1+this.w|0)+")");b=this.u(a);Mi(Ci(),this.lg,1+a|0,this.lg,a,this.w-(1+a|0)|0);vD(this,-1+this.w|0);return b}; +function zt(a,b,c){var d=1+b|0;if(0>b)throw Wl(new Xl,b+" is out of bounds (min 0, max "+(-1+a.w|0)+")");if(d>a.w)throw Wl(new Xl,(-1+d|0)+" is out of bounds (min 0, max "+(-1+a.w|0)+")");a.mj=1+a.mj|0;a.lg.a[b]=c}g.i=function(){return this.w};function rr(a){return new CW(a,new sp(()=>a.mj))}function oo(a,b){a.mj=1+a.mj|0;var c=1+a.w|0;a.ht(c);a.w=c;zt(a,-1+a.w|0,b);return a} +function ov(a,b){if(b instanceof tR){var c=b.w;0b)throw Wl(new Xl,b+" is out of bounds (min 0, max "+(-1+a.w|0)+")");if(b>a.w)throw Wl(new Xl,(-1+b|0)+" is out of bounds (min 0, max "+(-1+a.w|0)+")");a.mj=1+a.mj|0;a.ht(1+a.w|0);Mi(Ci(),a.lg,b,a.lg,1+b|0,a.w-b|0);a.w=1+a.w|0;zt(a,b,c)} +g.Zi=function(a){var b=1+a|0;if(0>a)throw Wl(new Xl,a+" is out of bounds (min 0, max "+(-1+this.w|0)+")");if(b>this.w)throw Wl(new Xl,(-1+b|0)+" is out of bounds (min 0, max "+(-1+this.w|0)+")");b=this.u(a);Mi(Ci(),this.lg,1+a|0,this.lg,a,this.w-(1+a|0)|0);vD(this,-1+this.w|0);return b}; function ES(a,b,c){if(0b)throw Wl(new Xl,b+" is out of bounds (min 0, max "+(-1+a.w|0)+")");if(d>a.w)throw Wl(new Xl,(-1+d|0)+" is out of bounds (min 0, max "+(-1+a.w|0)+")");Mi(Ci(),a.lg,b+c|0,a.lg,b,a.w-(b+c|0)|0);vD(a,a.w-c|0)}else if(0>c)throw de("removing negative number of elements: "+c);}g.Dc=function(){return"ArrayBuffer"};g.ma=function(a,b,c){var d=this.w,e=ce(fe(),a);c=ca||a>=b)throw Wl(new Xl,a+" is out of bounds (min 0, max "+(-1+b|0)+")");return this.gb.a[(this.Ob+a|0)&(-1+this.gb.a.length|0)]};function vL(a,b){var c=1+((a.vc-a.Ob|0)&(-1+a.gb.a.length|0))|0;c>((a.vc-a.Ob|0)&(-1+a.gb.a.length|0))&&c>=a.gb.a.length&&DR(a,c);a.gb.a[a.vc]=b;a.vc=(1+a.vc|0)&(-1+a.gb.a.length|0);return a} function et(a,b){var c=1+((a.vc-a.Ob|0)&(-1+a.gb.a.length|0))|0;c>((a.vc-a.Ob|0)&(-1+a.gb.a.length|0))&&c>=a.gb.a.length&&DR(a,c);a.Ob=(-1+a.Ob|0)&(-1+a.gb.a.length|0);a.gb.a[a.Ob]=b}function ht(a,b){var c=b.U();if(0((a.vc-a.Ob|0)&(-1+a.gb.a.length|0))&&c>=a.gb.a.length&&DR(a,c),b=b.k();b.d();)c=b.e(),a.gb.a[a.vc]=c,a.vc=(1+a.vc|0)&(-1+a.gb.a.length|0);else for(b=b.k();b.d();)vL(a,b.e());return a} -function kt(a){if(a.v())throw new Rh("empty collection");var b=a.gb.a[a.Ob];a.gb.a[a.Ob]=null;a.Ob=(1+a.Ob|0)&(-1+a.gb.a.length|0);return b}g.i=function(){return(this.vc-this.Ob|0)&(-1+this.gb.a.length|0)};g.v=function(){return this.Ob===this.vc};g.oI=function(){return CR()};g.Wv=function(){for(;!this.v();)this.gb.a[this.Ob]=null,this.Ob=(1+this.Ob|0)&(-1+this.gb.a.length|0)}; +function kt(a){if(a.v())throw new Rh("empty collection");var b=a.gb.a[a.Ob];a.gb.a[a.Ob]=null;a.Ob=(1+a.Ob|0)&(-1+a.gb.a.length|0);return b}g.i=function(){return(this.vc-this.Ob|0)&(-1+this.gb.a.length|0)};g.v=function(){return this.Ob===this.vc};g.oI=function(){return CR()};g.Xv=function(){for(;!this.v();)this.gb.a[this.Ob]=null,this.Ob=(1+this.Ob|0)&(-1+this.gb.a.length|0)}; g.ma=function(a,b,c){var d=(this.vc-this.Ob|0)&(-1+this.gb.a.length|0),e=ce(fe(),a);d=c=a.gb.a.length||16b){var c=(a.vc-a.Ob|0)&(-1+a.gb.a.length|0);eY(a,uU(a,wR(CR(),b),0,c),0,c)}}g.Dc=function(){return"ArrayDeque"};g.sc=function(){return this.oI()}; g.Yc=function(a){return ht(this,a)};g.Ma=function(a){return vL(this,a)};g.y=function(a){return this.u(a|0)};E(yR,"scala.collection.mutable.ArrayDeque",{jQ:1,iB:1,qh:1,wb:1,wa:1,oa:1,I:1,qa:1,J:1,pa:1,pb:1,db:1,Ea:1,Za:1,q:1,sh:1,pf:1,th:1,Of:1,ve:1,kB:1,xd:1,wd:1,ur:1,fF:1,bi:1,Hb:1,mb:1,ci:1,Cb:1,Ta:1,kQ:1,Qg:1,g:1});function ZN(){var a=new gY,b=new A(1);a.ai=b;return a}function gY(){this.ai=null}gY.prototype=new eX;gY.prototype.constructor=gY;g=gY.prototype;g.Dc=function(){return"BitSet"}; g.IP=function(a){return lU(this,a)|0};g.Wq=function(){return ui()};g.k=function(){return new SP(this,0)};g.Va=function(){return MU(this)};g.v=function(){return NU(this)};g.Ha=function(a){PU(this,a)};g.hb=function(a){return xO(this,a)};g.el=function(a){for(var b=-1+this.ff()|0,c=null;0<=b;){var d=oj(qj(),a,!1,this.he(b),b),e=d.l;d=d.m;if(0!==e||0!==d)null===c&&(c=new A(1+b|0)),c.a[b]=new n(e,d);b=-1+b|0}null===c?a=ZN():(a=c,0===a.a.length?a=ZN():(b=new gY,b.ai=a,a=b));return a}; g.b=function(a){return sW(this,a)};g.ih=function(){return DO(new EO,ZN())};g.ff=function(){return this.ai.a.length};g.he=function(a){return a>6,d=a.he(c);b=new n(d.l|(0===(32&b)?1<b);if(b>=a.ff()){for(var c=a.ff();b>=c;)c<<=1,c=33554432>c?c:33554432;b=new A(c);Mi(Ci(),a.ai,0,b,0,a.ff());a.ai=b}} function iY(a,b){if(b&&b.$classData&&b.$classData.Yb.RA){hY(a,-1+b.ff()|0);for(var c=0,d=b.ff();c>6,hY(a,c),1===b.Ya||-1===b.Ya){e=f>>6;var h=e<<6;f=f-h|0;b=0===(32&f)?-1<>>(31-f|0)|0|-1<e){h=a.ai;var k=h.a[e];h.a[e]=new n(k.l|b,k.m|f);$f();b= -a.ai;f=1+e|0;e=new n(-1,-1);if(f>c)throw de("fromIndex("+f+") \x3e toIndex("+c+")");for(;f!==c;)b.a[f]=e,f=1+f|0;b=a.ai;e=b.a[c];d=63-(d-(c<<6)|0)|0;b.a[c]=new n(e.l|(0===(32&d)?-1>>>d|0|-2<<(31-d|0):-1>>>d|0),e.m|(0===(32&d)?-1>>>d|0:0))}else e=a.ai,k=e.a[c],d=63-(d-h|0)|0,e.a[c]=new n(k.l|b&(0===(32&d)?-1>>>d|0|-2<<(31-d|0):-1>>>d|0),k.m|f&(0===(32&d)?-1>>>d|0:0))}else Np(a,b);else Np(a,b);return a}if(b&&b.$classData&&b.$classData.Yb.rw){if(!b.v())for(c=b.Wq(),c===ui()?hY(a,(EK(b)|0)>>6):c===ui().LI&& +a.ai;f=1+e|0;e=new n(-1,-1);if(f>c)throw de("fromIndex("+f+") \x3e toIndex("+c+")");for(;f!==c;)b.a[f]=e,f=1+f|0;b=a.ai;e=b.a[c];d=63-(d-(c<<6)|0)|0;b.a[c]=new n(e.l|(0===(32&d)?-1>>>d|0|-2<<(31-d|0):-1>>>d|0),e.m|(0===(32&d)?-1>>>d|0:0))}else e=a.ai,k=e.a[c],d=63-(d-h|0)|0,e.a[c]=new n(k.l|b&(0===(32&d)?-1>>>d|0|-2<<(31-d|0):-1>>>d|0),k.m|f&(0===(32&d)?-1>>>d|0:0))}else Np(a,b);else Np(a,b);return a}if(b&&b.$classData&&b.$classData.Yb.sw){if(!b.v())for(c=b.Wq(),c===ui()?hY(a,(EK(b)|0)>>6):c===ui().LI&& hY(a,(b.k().e()|0)>>6),c=b.k();c.d();)eO(a,c.e()|0);return a}return Np(a,b)}g.jF=function(a){if(a&&a.$classData&&a.$classData.Yb.RA){for(var b=this.ff(),c=a.ff(),d=b> 24) === 0)) { + if (((((1 & $thiz.iM) << 24) >> 24) === 0)) { var dict = ({}); dict.O = "java_lang_Object"; dict.T = "java_lang_String"; @@ -1033,15 +1033,15 @@ function $p_jl_StackTrace$__decompressedClasses$lzycompute__O($thiz) { index = ((1 + index) | 0); } $thiz.DQ = dict; - $thiz.iN = (((1 | $thiz.iN) << 24) >> 24); + $thiz.iM = (((1 | $thiz.iM) << 24) >> 24); } return $thiz.DQ; } function $p_jl_StackTrace$__decompressedClasses__O($thiz) { - return (((((1 & $thiz.iN) << 24) >> 24) === 0) ? $p_jl_StackTrace$__decompressedClasses$lzycompute__O($thiz) : $thiz.DQ); + return (((((1 & $thiz.iM) << 24) >> 24) === 0) ? $p_jl_StackTrace$__decompressedClasses$lzycompute__O($thiz) : $thiz.DQ); } function $p_jl_StackTrace$__decompressedPrefixes$lzycompute__O($thiz) { - if (((((2 & $thiz.iN) << 24) >> 24) === 0)) { + if (((((2 & $thiz.iM) << 24) >> 24) === 0)) { var dict = ({}); dict.sjsr_ = "scala_scalajs_runtime_"; dict.sjs_ = "scala_scalajs_"; @@ -1054,22 +1054,22 @@ function $p_jl_StackTrace$__decompressedPrefixes$lzycompute__O($thiz) { dict.jl_ = "java_lang_"; dict.ju_ = "java_util_"; $thiz.DR = dict; - $thiz.iN = (((2 | $thiz.iN) << 24) >> 24); + $thiz.iM = (((2 | $thiz.iM) << 24) >> 24); } return $thiz.DR; } function $p_jl_StackTrace$__decompressedPrefixes__O($thiz) { - return (((((2 & $thiz.iN) << 24) >> 24) === 0) ? $p_jl_StackTrace$__decompressedPrefixes$lzycompute__O($thiz) : $thiz.DR); + return (((((2 & $thiz.iM) << 24) >> 24) === 0) ? $p_jl_StackTrace$__decompressedPrefixes$lzycompute__O($thiz) : $thiz.DR); } function $p_jl_StackTrace$__compressedPrefixes$lzycompute__O($thiz) { - if (((((4 & $thiz.iN) << 24) >> 24) === 0)) { + if (((((4 & $thiz.iM) << 24) >> 24) === 0)) { $thiz.DP = Object.keys($p_jl_StackTrace$__decompressedPrefixes__O($thiz)); - $thiz.iN = (((4 | $thiz.iN) << 24) >> 24); + $thiz.iM = (((4 | $thiz.iM) << 24) >> 24); } return $thiz.DP; } function $p_jl_StackTrace$__compressedPrefixes__O($thiz) { - return (((((4 & $thiz.iN) << 24) >> 24) === 0) ? $p_jl_StackTrace$__compressedPrefixes$lzycompute__O($thiz) : $thiz.DP); + return (((((4 & $thiz.iM) << 24) >> 24) === 0) ? $p_jl_StackTrace$__compressedPrefixes$lzycompute__O($thiz) : $thiz.DP); } function $p_jl_StackTrace$__decodeMethodName__T__T($thiz, encodedName) { if (((encodedName.length >= 0) && (encodedName.substring(0, 7) === "init___"))) { @@ -1186,7 +1186,7 @@ function $c_jl_StackTrace$() { this.DQ = null; this.DR = null; this.DP = null; - this.iN = 0; + this.iM = 0; } $p = $c_jl_StackTrace$.prototype = new $h_O(); $p.constructor = $c_jl_StackTrace$; @@ -1855,7 +1855,7 @@ $p.Cs = (function(op1, op2) { var x__lo = lo$2; var x__hi = ((((-2147483648) ^ lo$2) > ((-2147483648) ^ value)) ? (-1) : 0); } - return $x_1.x1(new $c_RTLong(x__lo, x__hi)); + return $x_1.x2(new $c_RTLong(x__lo, x__hi)); } } else { if ((op1Sign === op2Sign)) { @@ -1945,7 +1945,7 @@ $p.Dt = (function(op1, op2) { var ahi = this$9__hi; var bhi = b$1__hi; var lo$4 = ((alo - b$1__lo) | 0); - return $x_3.x1(new $c_RTLong(lo$4, ((((-2147483648) ^ lo$4) > ((-2147483648) ^ alo)) ? (((-1) + ((ahi - bhi) | 0)) | 0) : ((ahi - bhi) | 0)))); + return $x_3.x2(new $c_RTLong(lo$4, ((((-2147483648) ^ lo$4) > ((-2147483648) ^ alo)) ? (((-1) + ((ahi - bhi) | 0)) | 0) : ((ahi - bhi) | 0)))); } else { var cmp = ((op1Len !== op2Len) ? ((op1Len > op2Len) ? 1 : (-1)) : $m_Ljava_math_Elementary$().HZ(op1.aI, op2.aI, op1Len)); if (((op1Sign === op2Sign) && (cmp === 0))) { @@ -1989,13 +1989,13 @@ function $p_Ljava_math_Multiplication$__initialiseArrays__V($thiz) { while ((i < 32)) { var i$2 = i; if ((i$2 <= 18)) { - $m_Ljava_math_Multiplication$().x4.a[i$2] = $m_Ljava_math_BigInteger$().x1(new $c_RTLong(elem__lo, elem__hi)); + $m_Ljava_math_Multiplication$().x5.a[i$2] = $m_Ljava_math_BigInteger$().x2(new $c_RTLong(elem__lo, elem__hi)); var $x_3 = $m_Ljava_math_Multiplication$().A9; var $x_2 = $m_Ljava_math_BigInteger$(); var this$4__lo = elem__lo; var this$4__hi = elem__hi; var lo = this$4__lo; - $x_3.a[i$2] = $x_2.x1(new $c_RTLong((((32 & i$2) === 0) ? (lo << i$2) : 0), (((32 & i$2) === 0) ? (((((lo >>> 1) | 0) >>> ((31 - i$2) | 0)) | 0) | (this$4__hi << i$2)) : (lo << i$2)))); + $x_3.a[i$2] = $x_2.x2(new $c_RTLong((((32 & i$2) === 0) ? (lo << i$2) : 0), (((32 & i$2) === 0) ? (((((lo >>> 1) | 0) >>> ((31 - i$2) | 0)) | 0) | (this$4__hi << i$2)) : (lo << i$2)))); var b__lo = elem__lo; var b__hi = elem__hi; var blo = b__lo; @@ -2008,7 +2008,7 @@ function $p_Ljava_math_Multiplication$__initialiseArrays__V($thiz) { elem__lo = $x_4__lo; elem__hi = $x_4__hi; } else { - $m_Ljava_math_Multiplication$().x4.a[i$2] = $m_Ljava_math_Multiplication$().x4.a[(((-1) + i$2) | 0)].m2($m_Ljava_math_Multiplication$().x4.a[1]); + $m_Ljava_math_Multiplication$().x5.a[i$2] = $m_Ljava_math_Multiplication$().x5.a[(((-1) + i$2) | 0)].m2($m_Ljava_math_Multiplication$().x5.a[1]); $m_Ljava_math_Multiplication$().A9.a[i$2] = $m_Ljava_math_Multiplication$().A9.a[(((-1) + i$2) | 0)].m2($m_Ljava_math_BigInteger$().qN); } i = ((1 + i) | 0); @@ -2096,12 +2096,12 @@ function $p_Ljava_math_Multiplication$__newArrayOfPows__I__I__AI($thiz, len, pow /** @constructor */ function $c_Ljava_math_Multiplication$() { this.A9 = null; - this.x4 = null; + this.x5 = null; $n_Ljava_math_Multiplication$ = this; $p_Ljava_math_Multiplication$__newArrayOfPows__I__I__AI(this, 10, 10); $p_Ljava_math_Multiplication$__newArrayOfPows__I__I__AI(this, 14, 5); this.A9 = new ($d_Ljava_math_BigInteger.r().C)(32); - this.x4 = new ($d_Ljava_math_BigInteger.r().C)(32); + this.x5 = new ($d_Ljava_math_BigInteger.r().C)(32); $p_Ljava_math_Multiplication$__initialiseArrays__V(this); } $p = $c_Ljava_math_Multiplication$.prototype = new $h_O(); @@ -2251,7 +2251,7 @@ $p.Wy = (function(a, b) { }); $p.Xt = (function(base, exponent) { var exp = exponent; - var res = $m_Ljava_math_BigInteger$().x3; + var res = $m_Ljava_math_BigInteger$().x4; var acc = base; while ((exp > 1)) { var res2 = (((1 & exp) !== 0) ? res.m2(acc) : res); @@ -2294,7 +2294,7 @@ $p.RP = (function(a) { if ((end > 16)) { this.hT(a, new $ac_I(a.a.length), 0, end, comparator, ops); } else { - this.iF(a, 0, end, comparator, ops); + this.iE(a, 0, end, comparator, ops); } }); $p.XY = (function(a, fromIndex, toIndex) { @@ -2306,7 +2306,7 @@ $p.XY = (function(a, fromIndex, toIndex) { if ((((toIndex - fromIndex) | 0) > 16)) { this.hT(a, new $ac_I(a.a.length), fromIndex, toIndex, comparator, ops); } else { - this.iF(a, fromIndex, toIndex, comparator, ops); + this.iE(a, fromIndex, toIndex, comparator, ops); } }); $p.RQ = (function(a) { @@ -2316,7 +2316,7 @@ $p.RQ = (function(a) { if ((end > 16)) { this.hT(a, new $ac_J(a.a.length), 0, end, comparator, ops); } else { - this.iF(a, 0, end, comparator, ops); + this.iE(a, 0, end, comparator, ops); } }); $p.XZ = (function(a, fromIndex, toIndex) { @@ -2328,7 +2328,7 @@ $p.XZ = (function(a, fromIndex, toIndex) { if ((((toIndex - fromIndex) | 0) > 16)) { this.hT(a, new $ac_J(a.a.length), fromIndex, toIndex, comparator, ops); } else { - this.iF(a, fromIndex, toIndex, comparator, ops); + this.iE(a, fromIndex, toIndex, comparator, ops); } }); $p.RR = (function(a) { @@ -2338,7 +2338,7 @@ $p.RR = (function(a) { if ((end > 16)) { this.hT(a, new $ac_S(a.a.length), 0, end, comparator, ops); } else { - this.iF(a, 0, end, comparator, ops); + this.iE(a, 0, end, comparator, ops); } }); $p.Y0 = (function(a, fromIndex, toIndex) { @@ -2350,7 +2350,7 @@ $p.Y0 = (function(a, fromIndex, toIndex) { if ((((toIndex - fromIndex) | 0) > 16)) { this.hT(a, new $ac_S(a.a.length), fromIndex, toIndex, comparator, ops); } else { - this.iF(a, fromIndex, toIndex, comparator, ops); + this.iE(a, fromIndex, toIndex, comparator, ops); } }); $p.RO = (function(a) { @@ -2360,7 +2360,7 @@ $p.RO = (function(a) { if ((end > 16)) { this.hT(a, new $ac_C(a.a.length), 0, end, comparator, ops); } else { - this.iF(a, 0, end, comparator, ops); + this.iE(a, 0, end, comparator, ops); } }); $p.XX = (function(a, fromIndex, toIndex) { @@ -2372,7 +2372,7 @@ $p.XX = (function(a, fromIndex, toIndex) { if ((((toIndex - fromIndex) | 0) > 16)) { this.hT(a, new $ac_C(a.a.length), fromIndex, toIndex, comparator, ops); } else { - this.iF(a, fromIndex, toIndex, comparator, ops); + this.iE(a, fromIndex, toIndex, comparator, ops); } }); $p.RN = (function(a) { @@ -2382,7 +2382,7 @@ $p.RN = (function(a) { if ((end > 16)) { this.hT(a, new $ac_B(a.a.length), 0, end, comparator, ops); } else { - this.iF(a, 0, end, comparator, ops); + this.iE(a, 0, end, comparator, ops); } }); $p.XW = (function(a, fromIndex, toIndex) { @@ -2394,10 +2394,10 @@ $p.XW = (function(a, fromIndex, toIndex) { if ((((toIndex - fromIndex) | 0) > 16)) { this.hT(a, new $ac_B(a.a.length), fromIndex, toIndex, comparator, ops); } else { - this.iF(a, fromIndex, toIndex, comparator, ops); + this.iE(a, fromIndex, toIndex, comparator, ops); } }); -$p.wU = (function(array, comparator) { +$p.wV = (function(array, comparator) { var comparator$1 = ((comparator === null) ? $m_ju_Arrays$NaturalComparator$() : comparator); var ops = $m_ju_internal_GenericArrayOps$ReusableAnyRefArrayOps$(); var end = array.a.length; @@ -2405,7 +2405,7 @@ $p.wU = (function(array, comparator) { var length = array.a.length; this.hT(array, $m_jl_reflect_Array$().nS($objectGetClass(array).dg(), length), 0, end, comparator$1, ops); } else { - this.iF(array, 0, end, comparator$1, ops); + this.iE(array, 0, end, comparator$1, ops); } }); $p.Y1 = (function(array, fromIndex, toIndex, comparator) { @@ -2418,7 +2418,7 @@ $p.Y1 = (function(array, fromIndex, toIndex, comparator) { var length = array.a.length; this.hT(array, $m_jl_reflect_Array$().nS($objectGetClass(array).dg(), length), fromIndex, toIndex, comparator$1, ops); } else { - this.iF(array, fromIndex, toIndex, comparator$1, ops); + this.iE(array, fromIndex, toIndex, comparator$1, ops); } }); $p.hT = (function(a, temp, start, end, comparator, ops) { @@ -2442,10 +2442,10 @@ $p.hT = (function(a, temp, start, end, comparator, ops) { } temp.a5(start, a, start, length); } else { - this.iF(a, start, end, comparator, ops); + this.iE(a, start, end, comparator, ops); } }); -$p.iF = (function(a, start, end, comparator, ops) { +$p.iE = (function(a, start, end, comparator, ops) { var n = ((end - start) | 0); if ((n >= 2)) { var aStart = ops.gG(a, start); @@ -2730,7 +2730,7 @@ $p.bN = (function(original, newLength) { original.a5(0, ret, 0, copyLength); return ret; }); -$p.iC = (function(original, newLength, newType) { +$p.iB = (function(original, newLength, newType) { if ((newLength < 0)) { throw new $c_jl_NegativeArraySizeException(); } @@ -3396,7 +3396,7 @@ function $p_ju_regex_PatternCompiler__compileEscape__T($thiz) { if ((pattern.substring($thiz.v, ((4 + $thiz.v) | 0)) === "b{g}")) { $p_ju_regex_PatternCompiler__parseError__T__E($thiz, "\\b{g} is not supported"); } else if (((320 & $thiz.c4) !== 0)) { - $thiz.wI("\\b with UNICODE_CASE", "2018"); + $thiz.wJ("\\b with UNICODE_CASE", "2018"); } else { $thiz.v = ((1 + $thiz.v) | 0); return "\\b"; @@ -3405,7 +3405,7 @@ function $p_ju_regex_PatternCompiler__compileEscape__T($thiz) { } case 66: { if (((320 & $thiz.c4) !== 0)) { - $thiz.wI("\\B with UNICODE_CASE", "2018"); + $thiz.wJ("\\B with UNICODE_CASE", "2018"); } else { $thiz.v = ((1 + $thiz.v) | 0); return "\\B"; @@ -3488,7 +3488,7 @@ function $p_ju_regex_PatternCompiler__compileEscape__T($thiz) { } $thiz.v = ((1 + $thiz.v) | 0); var groupName = $p_ju_regex_PatternCompiler__parseGroupName__T($thiz); - var dict = $thiz.x5; + var dict = $thiz.x6; if ((!(!(!$m_jl_Utils$Cache$().tm.call(dict, groupName))))) { $p_ju_regex_PatternCompiler__parseError__T__E($thiz, (("named capturing group <" + groupName) + "> does not exit")); } @@ -3734,7 +3734,7 @@ function $p_ju_regex_PatternCompiler__parsePCharacterClass__ju_regex_PatternComp } var dict = $m_ju_regex_PatternCompiler$().E4; if ((!(!(!$m_jl_Utils$Cache$().tm.call(dict, property))))) { - $thiz.wI("Unicode character family", "2018"); + $thiz.wJ("Unicode character family", "2018"); } var property2 = ((((66 & $thiz.c4) === 2) && ((property === "Lower") || (property === "Upper"))) ? "Alpha" : property); var dict$1 = $m_ju_regex_PatternCompiler$().E4; @@ -3875,13 +3875,13 @@ function $p_ju_regex_PatternCompiler__compileGroup__T($thiz) { if ((((c2 >= 65) && (c2 <= 90)) || ((c2 >= 97) && (c2 <= 122)))) { $thiz.v = ((3 + start) | 0); var name = $p_ju_regex_PatternCompiler__parseGroupName__T($thiz); - var dict = $thiz.x5; + var dict = $thiz.x6; if ((!(!$m_jl_Utils$Cache$().tm.call(dict, name)))) { $p_ju_regex_PatternCompiler__parseError__T__E($thiz, (("named capturing group <" + name) + "> is already defined")); } $thiz.i0 = ((1 + $thiz.i0) | 0); $thiz.i1.push($thiz.i0); - var dict$1 = $thiz.x5; + var dict$1 = $thiz.x6; var value = (((-1) + ($thiz.i1.length | 0)) | 0); dict$1[name] = value; $thiz.v = ((1 + $thiz.v) | 0); @@ -3890,7 +3890,7 @@ function $p_ju_regex_PatternCompiler__compileGroup__T($thiz) { if (((c2 !== 61) && (c2 !== 33))) { $p_ju_regex_PatternCompiler__parseError__T__E($thiz, "Unknown look-behind group"); } - $thiz.wI("Look-behind group", "2018"); + $thiz.wJ("Look-behind group", "2018"); } } else if ((c1 === 62)) { $thiz.v = ((3 + start) | 0); @@ -3961,14 +3961,14 @@ function $c_ju_regex_PatternCompiler(pattern, flags) { this.v = 0; this.i0 = 0; this.i1 = null; - this.x5 = null; + this.x6 = null; this.ed = pattern; this.c4 = flags; this.Ab = false; this.v = 0; this.i0 = 0; this.i1 = [0]; - this.x5 = ({}); + this.x6 = ({}); } $p = $c_ju_regex_PatternCompiler.prototype = new $h_O(); $p.constructor = $c_ju_regex_PatternCompiler; @@ -3988,10 +3988,10 @@ $p.To = (function() { $p_ju_regex_PatternCompiler__parseError__T__E(this, "CANON_EQ is not supported"); } if (((8 & this.c4) !== 0)) { - this.wI("MULTILINE", "2018"); + this.wJ("MULTILINE", "2018"); } if (((256 & this.c4) !== 0)) { - this.wI("UNICODE_CHARACTER_CLASS", "2018"); + this.wJ("UNICODE_CHARACTER_CLASS", "2018"); } if (isLiteral) { var jsPattern = $p_ju_regex_PatternCompiler__literal__T__T(this, this.ed); @@ -4004,9 +4004,9 @@ $p.To = (function() { } var baseJSFlags = ($m_ju_regex_PatternCompiler$().E3 ? "us" : "u"); var jsFlags = (((66 & this.c4) === 66) ? (baseJSFlags + "i") : baseJSFlags); - return new $c_ju_regex_Pattern(this.ed, this.c4, jsPattern, jsFlags, this.Ab, (((-1) + (this.i1.length | 0)) | 0), this.i1, this.x5); + return new $c_ju_regex_Pattern(this.ed, this.c4, jsPattern, jsFlags, this.Ab, (((-1) + (this.i1.length | 0)) | 0), this.i1, this.x6); }); -$p.wI = (function(purpose, es) { +$p.wJ = (function(purpose, es) { $p_ju_regex_PatternCompiler__parseError__T__E(this, (((((((purpose + " is not supported because it requires RegExp features of ECMAScript ") + es) + ".\n") + ((("If you only target environments with ES" + es) + "+, you can enable ES") + es)) + " features with\n") + (" scalaJSLinkerConfig ~= { _.withESFeatures(_.withESVersion(ESVersion.ES" + es)) + ")) }\nor an equivalent configuration depending on your build tool.")); }); $p.zL = (function(insideGroup) { @@ -4268,18 +4268,18 @@ function $m_ju_regex_PatternCompiler$() { return $n_ju_regex_PatternCompiler$; } function $p_ju_regex_PatternCompiler$CharacterClassBuilder__addAlternative__T__V($thiz, alt) { - if (($thiz.iO === "")) { - $thiz.iO = alt; + if (($thiz.iN === "")) { + $thiz.iN = alt; } else { - $thiz.iO = (($thiz.iO + "|") + alt); + $thiz.iN = (($thiz.iN + "|") + alt); } } function $p_ju_regex_PatternCompiler$CharacterClassBuilder__conjunctResult__T($thiz) { if ($thiz.E6) { var negThisSegment = $m_ju_regex_PatternCompiler$().D0($thiz.co); - return (($thiz.iO === "") ? negThisSegment : (((("(?:(?!" + $thiz.iO) + ")") + negThisSegment) + ")")); + return (($thiz.iN === "") ? negThisSegment : (((("(?:(?!" + $thiz.iN) + ")") + negThisSegment) + ")")); } else { - return (($thiz.co === "") ? (($thiz.iO === "") ? "[^\\d\\D]" : (("(?:" + $thiz.iO) + ")")) : (($thiz.iO === "") ? (("[" + $thiz.co) + "]") : (((("(?:" + $thiz.iO) + "|[") + $thiz.co) + "])"))); + return (($thiz.co === "") ? (($thiz.iN === "") ? "[^\\d\\D]" : (("(?:" + $thiz.iN) + ")")) : (($thiz.iN === "") ? (("[" + $thiz.co) + "]") : (((("(?:" + $thiz.iN) + "|[") + $thiz.co) + "])"))); } } function $p_ju_regex_PatternCompiler$CharacterClassBuilder__literalCodePoint__I__T($thiz, codePoint) { @@ -4290,13 +4290,13 @@ function $p_ju_regex_PatternCompiler$CharacterClassBuilder__literalCodePoint__I_ function $c_ju_regex_PatternCompiler$CharacterClassBuilder(asciiCaseInsensitive, isNegated) { this.E5 = false; this.E6 = false; - this.x6 = null; - this.iO = null; + this.x7 = null; + this.iN = null; this.co = null; this.E5 = asciiCaseInsensitive; this.E6 = isNegated; - this.x6 = ""; - this.iO = ""; + this.x7 = ""; + this.iN = ""; this.co = ""; } $p = $c_ju_regex_PatternCompiler$CharacterClassBuilder.prototype = new $h_O(); @@ -4307,12 +4307,12 @@ function $h_ju_regex_PatternCompiler$CharacterClassBuilder() { $h_ju_regex_PatternCompiler$CharacterClassBuilder.prototype = $p; $p.Us = (function() { var conjunct = $p_ju_regex_PatternCompiler$CharacterClassBuilder__conjunctResult__T(this); - return ((this.x6 === "") ? conjunct : ((("(?:" + this.x6) + conjunct) + ")")); + return ((this.x7 === "") ? conjunct : ((("(?:" + this.x7) + conjunct) + ")")); }); $p.Y4 = (function() { var conjunct = $p_ju_regex_PatternCompiler$CharacterClassBuilder__conjunctResult__T(this); - this.x6 = (this.x6 + (this.E6 ? (conjunct + "|") : (("(?=" + conjunct) + ")"))); - this.iO = ""; + this.x7 = (this.x7 + (this.E6 ? (conjunct + "|") : (("(?=" + conjunct) + ")"))); + this.iN = ""; this.co = ""; }); $p.SL = (function(cls) { @@ -4478,10 +4478,10 @@ $p.YT = (function() { }); $p.CB = (function(that) { var b = that; - return $m_RTLong$().wN(this.h, this.i, b.h, b.i); + return $m_RTLong$().wO(this.h, this.i, b.h, b.i); }); $p.YR = (function(that) { - return $m_RTLong$().wN(this.h, this.i, that.h, that.i); + return $m_RTLong$().wO(this.h, this.i, that.h, that.i); }); $p.YV = (function(b) { return ((this.h === b.h) && (this.i === b.i)); @@ -4756,7 +4756,7 @@ $p.R0 = (function(value) { return rawLo; } }); -$p.wN = (function(alo, ahi, blo, bhi) { +$p.wO = (function(alo, ahi, blo, bhi) { return ((ahi === bhi) ? ((alo === blo) ? 0 : ((((-2147483648) ^ alo) < ((-2147483648) ^ blo)) ? (-1) : 1)) : ((ahi < bhi) ? (-1) : 1)); }); $p.zm = (function(alo, ahi, blo, bhi) { @@ -4879,10 +4879,10 @@ function $m_RTLong$() { } /** @constructor */ function $c_s_Array$EmptyArrays$() { - this.x7 = null; + this.x8 = null; this.E9 = null; $n_s_Array$EmptyArrays$ = this; - this.x7 = new $ac_I(0); + this.x8 = new $ac_I(0); this.E9 = new $ac_O(0); } $p = $c_s_Array$EmptyArrays$.prototype = new $h_O(); @@ -4967,14 +4967,14 @@ function $p_sc_ArrayOps$__boxed$1__I__O__s_math_Ordering__O($thiz, len$1, \u03b4 } else { var this$3 = $m_s_Array$(); if ($d_O.l().hQ($objectGetClass(\u03b4this$2).dg())) { - var $x_1 = ($d_O.l().hS() ? this$3.hN(\u03b4this$2, len$1) : $m_ju_Arrays$().iC(\u03b4this$2, len$1, $d_O.r().l())); + var $x_1 = ($d_O.l().hS() ? this$3.hN(\u03b4this$2, len$1) : $m_ju_Arrays$().iB(\u03b4this$2, len$1, $d_O.r().l())); } else { var dest = new $ac_O(len$1); $m_s_Array$().bz(\u03b4this$2, 0, dest, 0, $m_jl_reflect_Array$().b0(\u03b4this$2)); var $x_1 = dest; } var a$2 = $x_1; - $m_ju_Arrays$().wU(a$2, ord$1); + $m_ju_Arrays$().wV(a$2, ord$1); return $m_s_Array$().TH(a$2, len$1, $m_s_reflect_ClassTag$().sH($objectGetClass(\u03b4this$2).dg())); } } @@ -5085,7 +5085,7 @@ $p.Jp = (function(this$, ord) { } else if ((this$ instanceof $ac_O)) { var x2 = this$; var a = $m_ju_Arrays$().bN(x2, len); - $m_ju_Arrays$().wU(a, ord); + $m_ju_Arrays$().wV(a, ord); return a; } else if ((this$ instanceof $ac_I)) { var x3 = this$; @@ -5687,9 +5687,9 @@ function $isArrayOf_sc_IterableOnceOps(obj, depth) { /** @constructor */ function $c_sc_Iterator$ConcatIteratorCell(head, tail) { this.KA = null; - this.xc = null; + this.xd = null; this.KA = head; - this.xc = tail; + this.xd = tail; } $p = $c_sc_Iterator$ConcatIteratorCell.prototype = new $h_O(); $p.constructor = $c_sc_Iterator$ConcatIteratorCell; @@ -5718,7 +5718,7 @@ $h_sc_StringOps$.prototype = $p; $p.ez = (function(this$, elem) { return ($f_T__indexOf__I__I(this$, elem) >= 0); }); -$p.iJ = (function(this$, from, until) { +$p.iI = (function(this$, from, until) { var start = ((from > 0) ? from : 0); var that = this$.length; var end = ((until < that) ? until : that); @@ -5791,12 +5791,12 @@ $p.Vz = (function(this$) { $p.jG = (function(this$, n) { var $x_1 = $m_sc_StringOps$(); var y = this$.length; - return $x_1.iJ(this$, 0, ((n < y) ? n : y)); + return $x_1.iI(this$, 0, ((n < y) ? n : y)); }); $p.bp = (function(this$, n) { var $x_1 = $m_sc_StringOps$(); var y = this$.length; - return $x_1.iJ(this$, ((n < y) ? n : y), this$.length); + return $x_1.iI(this$, ((n < y) ? n : y), this$.length); }); $p.nL = (function(this$, n) { return $m_sc_StringOps$().jG(this$, ((this$.length - ((n > 0) ? n : 0)) | 0)); @@ -5938,9 +5938,9 @@ var $d_sci_Node = new $TypeData().i(0, "scala.collection.immutable.Node", ({ })); /** @constructor */ function $c_sci_Node$() { - this.xr = 0; + this.xs = 0; $n_sci_Node$ = this; - this.xr = $doubleToInt((+Math.ceil(6.4))); + this.xs = $doubleToInt((+Math.ceil(6.4))); } $p = $c_sci_Node$.prototype = new $h_O(); $p.constructor = $c_sci_Node$; @@ -6362,7 +6362,7 @@ $p.constructor = $c_sci_VectorStatics$; function $h_sci_VectorStatics$() { } $h_sci_VectorStatics$.prototype = $p; -$p.ws = (function(a, elem) { +$p.wt = (function(a, elem) { var alen = a.a.length; var ac = new $ac_O(((1 + alen) | 0)); a.a5(0, ac, 0, alen); @@ -6938,7 +6938,7 @@ $p.T9 = (function(h0) { h = (h ^ ((h >>> 16) | 0)); return h; }); -$p.wK = (function(lv) { +$p.wL = (function(lv) { var lo = lv.h; var hi = lv.i; return ((hi === (lo >> 31)) ? lo : (lo ^ hi)); @@ -6961,7 +6961,7 @@ $p.n = (function(x) { return this.ks((+x)); } else if ((x instanceof $c_RTLong)) { var t = $uJ(x); - return this.wK(new $c_RTLong(t.h, t.i)); + return this.wL(new $c_RTLong(t.h, t.i)); } else { return $dp_hashCode__I(x); } @@ -7457,7 +7457,7 @@ $p.av = (function(x, seed, ignorePrefix) { return this.H(h, arr); } }); -$p.wX = (function(xs, seed) { +$p.wY = (function(xs, seed) { var a = 0; var b = 0; var n = 0; @@ -7866,29 +7866,29 @@ $p.Pp = (function(a, seed) { case 1: { var $x_1 = h; var t = a.a[0]; - return this.H(this.e($x_1, $m_sr_Statics$().wK(new $c_RTLong(t.h, t.i))), 1); + return this.H(this.e($x_1, $m_sr_Statics$().wL(new $c_RTLong(t.h, t.i))), 1); break; } default: { var t$1 = a.a[0]; - var initial = $m_sr_Statics$().wK(new $c_RTLong(t$1.h, t$1.i)); + var initial = $m_sr_Statics$().wL(new $c_RTLong(t$1.h, t$1.i)); h = this.e(h, initial); var h0 = h; var t$2 = a.a[1]; - var prev = $m_sr_Statics$().wK(new $c_RTLong(t$2.h, t$2.i)); + var prev = $m_sr_Statics$().wL(new $c_RTLong(t$2.h, t$2.i)); var rangeDiff = ((prev - initial) | 0); var i = 2; while ((i < l)) { h = this.e(h, prev); var t$3 = a.a[i]; - var hash = $m_sr_Statics$().wK(new $c_RTLong(t$3.h, t$3.i)); + var hash = $m_sr_Statics$().wL(new $c_RTLong(t$3.h, t$3.i)); if ((rangeDiff !== ((hash - prev) | 0))) { h = this.e(h, hash); i = ((1 + i) | 0); while ((i < l)) { var $x_2 = h; var t$4 = a.a[i]; - h = this.e($x_2, $m_sr_Statics$().wK(new $c_RTLong(t$4.h, t$4.i))); + h = this.e($x_2, $m_sr_Statics$().wL(new $c_RTLong(t$4.h, t$4.i))); i = ((1 + i) | 0); } return this.H(h, l); @@ -8055,7 +8055,7 @@ function $p_Ltigerpython_parser_AstConverter__annotateNode__sjs_js_Dynamic__Ltig } if ($is_Ltigerpython_parser_ast_AstNode$Decoratable(source)) { var $x_10 = $m_sjs_js_JSConverters$JSRichIterableOnce$(); - var xs = source.wt(); + var xs = source.wu(); var f = ((decorator$2) => { var decorator = decorator$2; return $thiz.au(decorator); @@ -8372,9 +8372,9 @@ $p.Xs = (function(dest) { this.jU = this.jU.aE(); } }); -$p.iA = (function(name) { +$p.iz = (function(name) { if ((!this.jU.t())) { - this.jU.W().iA(name); + this.jU.W().iz(name); } }); $p.z7 = (function(name) { @@ -8461,7 +8461,7 @@ $p.OX = (function(ast) { this.Xs(result); return result; } else if ((ast instanceof $c_Ltigerpython_parser_ast_AstNode$Global)) { - return $m_sjs_js_special_package$().ax(new $c_sjsr_WrappedVarArgs([$ct_T2__O__O__(new $c_T2(), "names", this.dR(ast.iZ))])); + return $m_sjs_js_special_package$().ax(new $c_sjsr_WrappedVarArgs([$ct_T2__O__O__(new $c_T2(), "names", this.dR(ast.iY))])); } else if ((ast instanceof $c_Ltigerpython_parser_ast_AstNode$If)) { var x43 = ast; var test$2 = x43.jZ; @@ -8472,7 +8472,7 @@ $p.OX = (function(ast) { return $m_sjs_js_special_package$().ax(new $c_sjsr_WrappedVarArgs([$ct_T2__O__O__(new $c_T2(), "names", this.dR(ast.k0))])); } else if ((ast instanceof $c_Ltigerpython_parser_ast_AstNode$ImportFrom)) { var x48 = ast; - var module = x48.j0; + var module = x48.iZ; var names$3 = x48.k1; return $m_sjs_js_special_package$().ax(new $c_sjsr_WrappedVarArgs([$ct_T2__O__O__(new $c_T2(), "module", this.au(module)), $ct_T2__O__O__(new $c_T2(), "names", this.dR(names$3)), $ct_T2__O__O__(new $c_T2(), "level", 0)])); } else if ((ast instanceof $c_Ltigerpython_parser_ast_AstNode$ImportFuture)) { @@ -8501,7 +8501,7 @@ $p.OX = (function(ast) { var cause = x62.rG; return $m_sjs_js_special_package$().ax(new $c_sjsr_WrappedVarArgs([$ct_T2__O__O__(new $c_T2(), "exc", this.au(expr$3)), $ct_T2__O__O__(new $c_T2(), "cause", this.au(cause))])); } else if ((ast instanceof $c_Ltigerpython_parser_ast_AstNode$Return)) { - return $m_sjs_js_special_package$().ax(new $c_sjsr_WrappedVarArgs([$ct_T2__O__O__(new $c_T2(), "value", this.au(ast.j2))])); + return $m_sjs_js_special_package$().ax(new $c_sjsr_WrappedVarArgs([$ct_T2__O__O__(new $c_T2(), "value", this.au(ast.j1))])); } else if ((ast instanceof $c_Ltigerpython_parser_ast_AstNode$Try)) { var x66 = ast; var body$5 = x66.ft; @@ -8513,7 +8513,7 @@ $p.OX = (function(ast) { var x68 = ast; var test$3 = x68.k5; var body$6 = x68.hu; - var elseBody$4 = x68.j3; + var elseBody$4 = x68.j2; return $m_sjs_js_special_package$().ax(new $c_sjsr_WrappedVarArgs([$ct_T2__O__O__(new $c_T2(), "test", this.au(test$3)), $ct_T2__O__O__(new $c_T2(), "body", $p_Ltigerpython_parser_AstConverter___convert_body__Ltigerpython_parser_ast_AstNode$Statement__sjs_js_Any(this, body$6)), $ct_T2__O__O__(new $c_T2(), "orelse", $p_Ltigerpython_parser_AstConverter___convert_body__Ltigerpython_parser_ast_AstNode$Statement__sjs_js_Any(this, elseBody$4))])); } else if ((ast instanceof $c_Ltigerpython_parser_ast_AstNode$With)) { var x71 = ast; @@ -8540,7 +8540,7 @@ $p.OX = (function(ast) { var right = x82.dM; return $m_sjs_js_special_package$().ax(new $c_sjsr_WrappedVarArgs([$ct_T2__O__O__(new $c_T2(), "op", op$2.j()), $ct_T2__O__O__(new $c_T2(), "left", this.au(left)), $ct_T2__O__O__(new $c_T2(), "right", this.au(right))])); } else if ((ast instanceof $c_Ltigerpython_parser_ast_AstNode$BooleanValue)) { - return $m_sjs_js_special_package$().ax(new $c_sjsr_WrappedVarArgs([$ct_T2__O__O__(new $c_T2(), "value_type", "bool"), $ct_T2__O__O__(new $c_T2(), "value", ast.iX)])); + return $m_sjs_js_special_package$().ax(new $c_sjsr_WrappedVarArgs([$ct_T2__O__O__(new $c_T2(), "value_type", "bool"), $ct_T2__O__O__(new $c_T2(), "value", ast.iW)])); } else if ((ast instanceof $c_Ltigerpython_parser_ast_AstNode$Call)) { var x86 = ast; var function$1 = x86.dN; @@ -8605,7 +8605,7 @@ $p.OX = (function(ast) { return $m_sjs_js_special_package$().ax(new $c_sjsr_WrappedVarArgs([$ct_T2__O__O__(new $c_T2(), "elts", this.dR(x105.f3)), $ct_T2__O__O__(new $c_T2(), "ctx", x105.Fu.j())])); } else if ((ast instanceof $c_Ltigerpython_parser_ast_AstNode$ListComp)) { var x108 = ast; - var elements$3 = x108.j1; + var elements$3 = x108.j0; var generators$3 = x108.gx; return $m_sjs_js_special_package$().ax(new $c_sjsr_WrappedVarArgs([$ct_T2__O__O__(new $c_T2(), "elts", this.au(elements$3)), $ct_T2__O__O__(new $c_T2(), "generators", this.dR(generators$3))])); } else if ((ast instanceof $c_Ltigerpython_parser_ast_AstNode$Name)) { @@ -8628,7 +8628,7 @@ $p.OX = (function(ast) { } else { var x$9 = $m_Ltigerpython_parser_ast_ExtExprContext$().FK; if (((x$9 === null) ? (x1$2 === null) : x$9.b(x1$2))) { - this.iA(name$5); + this.iz(name$5); } } } @@ -8668,7 +8668,7 @@ $p.OX = (function(ast) { } }); $p.SG = (function(keyword) { - return $m_sjs_js_special_package$().ax(new $c_sjsr_WrappedVarArgs([$ct_T2__O__O__(new $c_T2(), "kind", "Keyword"), $ct_T2__O__O__(new $c_T2(), "name", keyword.xF), $ct_T2__O__O__(new $c_T2(), "value", this.au(keyword.uk))])); + return $m_sjs_js_special_package$().ax(new $c_sjsr_WrappedVarArgs([$ct_T2__O__O__(new $c_T2(), "kind", "Keyword"), $ct_T2__O__O__(new $c_T2(), "name", keyword.xG), $ct_T2__O__O__(new $c_T2(), "value", this.au(keyword.uk))])); }); $p.dR = (function(nodes) { var $x_10 = $m_sjs_js_JSConverters$JSRichIterableOnce$(); @@ -8790,7 +8790,7 @@ $p.constructor = $c_Ltigerpython_parser_AstConverter$FunctionInfo; function $h_Ltigerpython_parser_AstConverter$FunctionInfo() { } $h_Ltigerpython_parser_AstConverter$FunctionInfo.prototype = $p; -$p.iA = (function(name) { +$p.iz = (function(name) { if ((((name !== null) && (name !== "")) && (!this.AK.an(name)))) { this.AK.b6(name); var index = $f_sc_SeqOps__indexOf__O__I__I(this.tJ, name, 0); @@ -8815,7 +8815,7 @@ var $d_Ltigerpython_parser_AstConverter$FunctionInfo = new $TypeData().i($c_Ltig })); function $p_Ltigerpython_parser_Parser___ast$lzycompute__Ltigerpython_parser_ast_AstNode($thiz) { if (((((1 & $thiz.AL) << 24) >> 24) === 0)) { - $thiz.Fo = $thiz.hp.wO(); + $thiz.Fo = $thiz.hp.wP(); $thiz.AL = (((1 | $thiz.AL) << 24) >> 24); } return $thiz.Fo; @@ -8842,7 +8842,7 @@ $p.Je = (function(value) { this.hp.p.q2 = value; }); $p.Jf = (function(value) { - this.hp.p.vN = value; + this.hp.p.vO = value; }); $p.Jj = (function(value) { this.hp.p.q3 = value; @@ -8851,11 +8851,11 @@ $p.Jr = (function(value) { this.hp.p.ck = value; }); $p.Tl = (function() { - this.hp.wO(); + this.hp.wP(); return this.hp.s9.CR(); }); $p.Tm = (function() { - this.hp.wO(); + this.hp.wP(); return this.hp.s9.Ir(); }); $p.qD = (function(position) { @@ -8898,10 +8898,10 @@ function $h_Ltigerpython_parser_TPyParser$() { } $h_Ltigerpython_parser_TPyParser$.prototype = $p; $p.UW = (function() { - return $m_sjs_js_JSConverters$JSRichIterableOnce$().h8($m_s_Predef$().at($m_Ltigerpython_parser_errors_ErrorTranslator$().uZ.G0)); + return $m_sjs_js_JSConverters$JSRichIterableOnce$().h8($m_s_Predef$().at($m_Ltigerpython_parser_errors_ErrorTranslator$().v0.G0)); }); $p.XL = (function(code, msg) { - $m_Ltigerpython_parser_errors_ErrorTranslator$().uZ.XN($m_Ltigerpython_parser_errors_ErrorCode$().Yw(code), msg); + $m_Ltigerpython_parser_errors_ErrorTranslator$().v0.XN($m_Ltigerpython_parser_errors_ErrorCode$().Yw(code), msg); }); $p.Tk = (function(source) { var src = (this.tU ? $m_Ltigerpython_inputenc_StringTranslator$().Jv(source) : source); @@ -9042,10 +9042,10 @@ $p.T7 = (function(source, pos, filter) { if ((filter && (cur_name !== null))) { var cur_name_len = cur_name.length; var i = pos; - while ((((i >= 0) && (((i + cur_name_len) | 0) >= pos)) && ($m_sc_StringOps$().iJ(source, i, ((i + cur_name_len) | 0)) !== cur_name))) { + while ((((i >= 0) && (((i + cur_name_len) | 0) >= pos)) && ($m_sc_StringOps$().iI(source, i, ((i + cur_name_len) | 0)) !== cur_name))) { i = (((-1) + i) | 0); } - if (((i >= 0) && ($m_sc_StringOps$().iJ(source, i, ((i + cur_name_len) | 0)) === cur_name))) { + if (((i >= 0) && ($m_sc_StringOps$().iI(source, i, ((i + cur_name_len) | 0)) === cur_name))) { return $m_sjs_js_JSConverters$JSRichIterableOnce$().h8($m_s_Predef$().at(completer.Iv().zu($m_sc_StringOps$().jG(cur_name, ((pos - i) | 0))))); } } @@ -9060,14 +9060,14 @@ $p.T8 = (function(source, pos) { var makeSignatureArg = new $c_sjsr_AnonFunction1(((a$2) => { var a = a$2; var $x_2 = $m_sjs_js_special_package$(); - var $x_1 = $ct_T2__O__O__(new $c_T2(), "name", a.wh); - var this$3 = a.wg; + var $x_1 = $ct_T2__O__O__(new $c_T2(), "name", a.wi); + var this$3 = a.wh; var default$1 = new $c_sjsr_AnonFunction0((() => null)); return $x_2.ax(new $c_sjsr_WrappedVarArgs([$x_1, $ct_T2__O__O__(new $c_T2(), "defaultValue", (this$3.t() ? default$1.de() : this$3.b7())), $ct_T2__O__O__(new $c_T2(), "argType", a.sA.zA())])); })); var makeSignatureVarArg = new $c_sjsr_AnonFunction1(((a$3$2) => { var a$3 = a$3$2; - return $m_sjs_js_special_package$().ax(new $c_sjsr_WrappedVarArgs([$ct_T2__O__O__(new $c_T2(), "name", a$3.wi), $ct_T2__O__O__(new $c_T2(), "argType", a$3.sB.zA())])); + return $m_sjs_js_special_package$().ax(new $c_sjsr_WrappedVarArgs([$ct_T2__O__O__(new $c_T2(), "name", a$3.wj), $ct_T2__O__O__(new $c_T2(), "argType", a$3.sB.zA())])); })); return $m_sjs_js_JSConverters$JSRichIterableOnce$().h8(new $c_sjsr_AnonFunction1(((xs$2$1) => $m_s_Predef$().at(xs$2$1))).w($m_sc_ArrayOps$().QS(nameFilter.Qn(), new $c_sjsr_AnonFunction1(((item$2) => { var item = item$2; @@ -9075,7 +9075,7 @@ $p.T8 = (function(source, pos) { var $x_12 = $ct_T2__O__O__(new $c_T2(), "acResult", item.yz); var $x_11 = $ct_T2__O__O__(new $c_T2(), "documentation", item.yx); var $x_10 = $ct_T2__O__O__(new $c_T2(), "type", item.yy); - var $x_9 = $ct_T2__O__O__(new $c_T2(), "params", ((item.vV !== null) ? $m_sjs_js_JSConverters$JSRichIterableOnce$().h8(new $c_sjsr_AnonFunction1(((xs$2) => $m_s_Predef$().at(xs$2))).w(item.vV)) : null)); + var $x_9 = $ct_T2__O__O__(new $c_T2(), "params", ((item.vW !== null) ? $m_sjs_js_JSConverters$JSRichIterableOnce$().h8(new $c_sjsr_AnonFunction1(((xs$2) => $m_s_Predef$().at(xs$2))).w(item.vW)) : null)); if ((item.kl !== null)) { var $x_8 = $m_sjs_js_special_package$(); var $x_7 = $ct_T2__O__O__(new $c_T2(), "positionalOnlyArgs", $m_sjs_js_JSConverters$JSRichIterableOnce$().h8(item.kl.qk.D3(makeSignatureArg))); @@ -9088,7 +9088,7 @@ $p.T8 = (function(source, pos) { var this$26 = item.kl.qm; var this$27 = (this$26.t() ? $m_s_None$() : new $c_s_Some(makeSignatureVarArg.w(this$26.b7()))); var default$3 = new $c_sjsr_AnonFunction0((() => null)); - var $x_3 = $x_8.ax(new $c_sjsr_WrappedVarArgs([$x_7, $x_6, $x_5, $x_4, $ct_T2__O__O__(new $c_T2(), "varKwargs", (this$27.t() ? default$3.de() : this$27.b7())), $ct_T2__O__O__(new $c_T2(), "firstParamIsSelfOrCls", item.kl.wf)])); + var $x_3 = $x_8.ax(new $c_sjsr_WrappedVarArgs([$x_7, $x_6, $x_5, $x_4, $ct_T2__O__O__(new $c_T2(), "varKwargs", (this$27.t() ? default$3.de() : this$27.b7())), $ct_T2__O__O__(new $c_T2(), "firstParamIsSelfOrCls", item.kl.wg)])); } else { var $x_3 = null; } @@ -9153,10 +9153,10 @@ $p.setErrorMessage = (function(arg, arg$2) { }); $p.setLanguage = (function(arg) { var prep0 = arg; - $m_Ltigerpython_parser_errors_ErrorTranslator$().uZ.Wa(prep0); + $m_Ltigerpython_parser_errors_ErrorTranslator$().v0.Wa(prep0); }); $p.getLanguage = (function() { - return $m_Ltigerpython_parser_errors_ErrorTranslator$().uZ.y6; + return $m_Ltigerpython_parser_errors_ErrorTranslator$().v0.y6; }); $p.getLanguages = (function() { return $m_Ltigerpython_parser_TPyParser$().UW(); @@ -9448,9 +9448,9 @@ function $h_Ltigerpython_parser_ast_AstWalker() { } $h_Ltigerpython_parser_ast_AstWalker.prototype = $p; $p.Ys = (function(node) { - this.es.wy(node); - this.iM(node); - this.es.wJ(node); + this.es.wz(node); + this.iL(node); + this.es.wK(node); }); $p.ag = (function(node) { if ((node !== null)) { @@ -9460,11 +9460,11 @@ $p.ag = (function(node) { this.ag(x3.u7); this.ag(x3.hr); } else if ((node instanceof $c_Ltigerpython_parser_ast_AstNode$Statement)) { - this.iM(node); + this.iL(node); } else if ((node instanceof $c_Ltigerpython_parser_ast_AstNode$Expression)) { - this.a7(node); + this.a8(node); } else if ((node instanceof $c_Ltigerpython_parser_ast_AstNode$Index)) { - this.a7(node.k2); + this.a8(node.k2); } else if ((node instanceof $c_Ltigerpython_parser_ast_AstNode$MultiSlice)) { var x7 = node; var xs = x7.la; @@ -9551,7 +9551,7 @@ $p.ag = (function(node) { var xs$1 = x9$1.jX; var f$1 = ((value$2) => { var value = value$2; - this.a7(value); + this.a8(value); }); var len$1 = xs$1.a.length; var i$1 = 0; @@ -9622,8 +9622,8 @@ $p.ag = (function(node) { } else { throw new $c_s_MatchError(xs$1); } - this.a7(x9$1.jW); - this.a7(x9$1.jV); + this.a8(x9$1.jW); + this.a8(x9$1.jV); } else if ((node instanceof $c_Ltigerpython_parser_ast_AstNode$Parameters)) { var x10$2 = node; var xs$2 = x10$2.cR; @@ -9776,12 +9776,12 @@ $p.ag = (function(node) { } } else if ((node instanceof $c_Ltigerpython_parser_ast_AstNode$Comprehension)) { var x11 = node; - this.a7(x11.l6); - this.a7(x11.iY); + this.a8(x11.l6); + this.a8(x11.iX); var xs$4 = x11.ox; var f$4 = ((ifExpr$2) => { var ifExpr = ifExpr$2; - this.a7(ifExpr); + this.a8(ifExpr); }); var len$4 = xs$4.a.length; var i$4 = 0; @@ -9858,14 +9858,14 @@ $p.ag = (function(node) { $p.Yu = (function(stmt) { if ((stmt instanceof $c_Ltigerpython_parser_ast_AstNode$Assert)) { var x2 = stmt; - this.a7(x2.ri); - this.a7(x2.rj); + this.a8(x2.ri); + this.a8(x2.rj); } else if ((stmt instanceof $c_Ltigerpython_parser_ast_AstNode$Assignment)) { var x3 = stmt; var xs = x3.gu; var f = ((target$2) => { var target = target$2; - this.a7(target); + this.a8(target); }); var len = xs.a.length; var i = 0; @@ -9936,11 +9936,11 @@ $p.Yu = (function(stmt) { } else { throw new $c_s_MatchError(xs); } - this.a7(x3.cQ); + this.a8(x3.cQ); } else if ((stmt instanceof $c_Ltigerpython_parser_ast_AstNode$AugAssign)) { var x4$1 = stmt; - this.a7(x4$1.l3); - this.a7(x4$1.ou); + this.a8(x4$1.l3); + this.a8(x4$1.ou); } else if ((stmt instanceof $c_Ltigerpython_parser_ast_AstNode$ClassDef)) { var x5$1 = stmt; var xs$1 = x5$1.Fs; @@ -10020,7 +10020,7 @@ $p.Yu = (function(stmt) { var xs$2 = x5$1.l4; var f$2 = ((base$2) => { var base = base$2; - this.a7(base); + this.a8(base); }); var len$2 = xs$2.a.length; var i$2 = 0; @@ -10171,7 +10171,7 @@ $p.Yu = (function(stmt) { var xs$4 = x6$4.rp; var f$4 = ((target$3$2) => { var target$3 = target$3$2; - this.a7(target$3); + this.a8(target$3); }); var len$4 = xs$4.a.length; var i$4 = 0; @@ -10244,15 +10244,15 @@ $p.Yu = (function(stmt) { } } else if ((stmt instanceof $c_Ltigerpython_parser_ast_AstNode$Exec)) { var x7$5 = stmt; - this.a7(x7$5.rq); - this.a7(x7$5.rr); - this.a7(x7$5.rs); + this.a8(x7$5.rq); + this.a8(x7$5.rr); + this.a8(x7$5.rs); } else if ((stmt instanceof $c_Ltigerpython_parser_ast_AstNode$ExprStatement)) { - this.a7(stmt.bS); + this.a8(stmt.bS); } else if ((stmt instanceof $c_Ltigerpython_parser_ast_AstNode$For)) { var x9$5 = stmt; - this.a7(x9$5.l8); - this.a7(x9$5.l7); + this.a8(x9$5.l8); + this.a8(x9$5.l7); this.es.zp(x9$5); this.ag(x9$5.gv); this.ag(x9$5.gw); @@ -10334,19 +10334,19 @@ $p.Yu = (function(stmt) { } this.ag(x10$5.eo); this.ag(x10$5.fV); - this.a7(x10$5.rt); + this.a8(x10$5.rt); } else if ((stmt instanceof $c_Ltigerpython_parser_ast_AstNode$If)) { var x11 = stmt; - this.a7(x11.jZ); - this.iM(x11.ep); - this.iM(x11.ci); + this.a8(x11.jZ); + this.iL(x11.ep); + this.iL(x11.ci); } else if ((stmt instanceof $c_Ltigerpython_parser_ast_AstNode$Print)) { var x12 = stmt; - this.a7(x12.lb); + this.a8(x12.lb); var xs$6 = x12.lc; var f$6 = ((value$2) => { var value = value$2; - this.a7(value); + this.a8(value); }); var len$6 = xs$6.a.length; var i$6 = 0; @@ -10419,15 +10419,15 @@ $p.Yu = (function(stmt) { } } else if ((stmt instanceof $c_Ltigerpython_parser_ast_AstNode$Raise2)) { var x13 = stmt; - this.a7(x13.rD); - this.a7(x13.rE); - this.a7(x13.rF); + this.a8(x13.rD); + this.a8(x13.rE); + this.a8(x13.rF); } else if ((stmt instanceof $c_Ltigerpython_parser_ast_AstNode$Raise3)) { var x14 = stmt; - this.a7(x14.rH); - this.a7(x14.rG); + this.a8(x14.rH); + this.a8(x14.rG); } else if ((stmt instanceof $c_Ltigerpython_parser_ast_AstNode$Return)) { - this.a7(stmt.j2); + this.a8(stmt.j1); } else if ((stmt instanceof $c_Ltigerpython_parser_ast_AstNode$Suite)) { var x16 = stmt; var xs$7 = x16.cS; @@ -10585,10 +10585,10 @@ $p.Yu = (function(stmt) { this.ag(x17.eq); } else if ((stmt instanceof $c_Ltigerpython_parser_ast_AstNode$While)) { var x18 = stmt; - this.a7(x18.k5); + this.a8(x18.k5); this.es.zp(x18); this.ag(x18.hu); - this.ag(x18.j3); + this.ag(x18.j2); } else if ((stmt instanceof $c_Ltigerpython_parser_ast_AstNode$With)) { var x19 = stmt; this.ag(x19.mU); @@ -10602,7 +10602,7 @@ $p.Yt = (function(expr) { var xs = x2.k3; var f = ((name$2) => { var name = name$2; - this.a7(name); + this.a8(name); }); var len = xs.a.length; var i = 0; @@ -10675,19 +10675,19 @@ $p.Yt = (function(expr) { } } else if ((expr instanceof $c_Ltigerpython_parser_ast_AstNode$Attribute)) { var x3$1 = expr; - this.a7(x3$1.dK); - this.a7(x3$1.e3); + this.a8(x3$1.dK); + this.a8(x3$1.e3); } else if ((expr instanceof $c_Ltigerpython_parser_ast_AstNode$BinaryOp)) { var x4$1 = expr; - this.a7(x4$1.dL); - this.a7(x4$1.dM); + this.a8(x4$1.dL); + this.a8(x4$1.dM); } else if ((expr instanceof $c_Ltigerpython_parser_ast_AstNode$Call)) { var x5$1 = expr; - this.a7(x5$1.dN); + this.a8(x5$1.dN); var xs$1 = x5$1.bR; var f$1 = ((arg$2) => { var arg = arg$2; - this.a7(arg); + this.a8(arg); }); var len$1 = xs$1.a.length; var i$1 = 0; @@ -10758,11 +10758,11 @@ $p.Yt = (function(expr) { } else { throw new $c_s_MatchError(xs$1); } - this.a7(x5$1.mD); - this.a7(x5$1.mB); + this.a8(x5$1.mD); + this.a8(x5$1.mB); } else if ((expr instanceof $c_Ltigerpython_parser_ast_AstNode$Compare)) { var x6$2 = expr; - this.a7(x6$2.fr); + this.a8(x6$2.fr); var this$8 = new $c_sc_ArrayOps$WithFilter(new $c_sjsr_AnonFunction1(((check$ifrefutable$1$2) => (check$ifrefutable$1$2 !== null))), x6$2.bX); var len$2 = $m_jl_reflect_Array$().b0(this$8.i4); var i$2 = 0; @@ -10771,7 +10771,7 @@ $p.Yt = (function(expr) { if ((!(!this$8.qQ.w(x)))) { var x$1 = x; if ((x$1 !== null)) { - this.a7(x$1.ao()); + this.a8(x$1.ao()); } else { throw new $c_s_MatchError(x$1); } @@ -10780,14 +10780,14 @@ $p.Yt = (function(expr) { } } else if ((expr instanceof $c_Ltigerpython_parser_ast_AstNode$IfExpr)) { var x7$2 = expr; - this.a7(x7$2.rv); - this.a7(x7$2.mL); - this.a7(x7$2.mM); + this.a8(x7$2.rv); + this.a8(x7$2.mL); + this.a8(x7$2.mM); } else if ((expr instanceof $c_Ltigerpython_parser_ast_AstNode$Lambda)) { - this.a7(expr.mO); + this.a8(expr.mO); } else if ((expr instanceof $c_Ltigerpython_parser_ast_AstNode$Generator)) { var x9$2 = expr; - this.a7(x9$2.oD); + this.a8(x9$2.oD); var xs$4 = x9$2.oE; var f$2 = ((gen$2) => { var gen = gen$2; @@ -10867,7 +10867,7 @@ $p.Yt = (function(expr) { var xs$5 = x10$3.mF; var f$3 = ((key$2) => { var key = key$2; - this.a7(key); + this.a8(key); }); var len$4 = xs$5.a.length; var i$4 = 0; @@ -10941,7 +10941,7 @@ $p.Yt = (function(expr) { var xs$6 = x10$3.mG; var f$4 = ((value$2) => { var value = value$2; - this.a7(value); + this.a8(value); }); var len$5 = xs$6.a.length; var i$5 = 0; @@ -11014,8 +11014,8 @@ $p.Yt = (function(expr) { } } else if ((expr instanceof $c_Ltigerpython_parser_ast_AstNode$DictComp)) { var x11 = expr; - this.a7(x11.mI); - this.a7(x11.mJ); + this.a8(x11.mI); + this.a8(x11.mJ); var xs$7 = x11.mH; var f$5 = ((generator$2) => { var generator = generator$2; @@ -11095,7 +11095,7 @@ $p.Yt = (function(expr) { var xs$8 = x12.f3; var f$6 = ((element$2) => { var element = element$2; - this.a7(element); + this.a8(element); }); var len$7 = xs$8.a.length; var i$7 = 0; @@ -11168,7 +11168,7 @@ $p.Yt = (function(expr) { } } else if ((expr instanceof $c_Ltigerpython_parser_ast_AstNode$ListComp)) { var x13 = expr; - this.ag(x13.j1); + this.ag(x13.j0); var xs$9 = x13.gx; var f$7 = ((generator$3$2) => { var generator$3 = generator$3$2; @@ -11248,7 +11248,7 @@ $p.Yt = (function(expr) { var xs$10 = x14.mR; var f$8 = ((element$3$2) => { var element$3 = element$3$2; - this.a7(element$3); + this.a8(element$3); }); var len$9 = xs$10.a.length; var i$9 = 0; @@ -11321,7 +11321,7 @@ $p.Yt = (function(expr) { } } else if ((expr instanceof $c_Ltigerpython_parser_ast_AstNode$SetComp)) { var x15 = expr; - this.a7(x15.oK); + this.a8(x15.oK); var xs$11 = x15.oL; var f$9 = ((generator$4$2) => { var generator$4 = generator$4$2; @@ -11403,7 +11403,7 @@ $p.Yt = (function(expr) { var xs$12 = x17.aN; var f$10 = ((element$4$2) => { var element$4 = element$4$2; - this.a7(element$4); + this.a8(element$4); }); var len$11 = xs$12.a.length; var i$11 = 0; @@ -11477,10 +11477,10 @@ $p.Yt = (function(expr) { } else if ((expr instanceof $c_Ltigerpython_parser_ast_AstNode$YieldFrom)) { this.ag(expr.rO); } else if ($is_Ltigerpython_parser_ast_AstNode$ExprWrapper(expr)) { - this.a7(expr.wz()); + this.a8(expr.wA()); } }); -$p.iM = (function(stmt) { +$p.iL = (function(stmt) { if ((stmt === null)) { return (void 0); } @@ -11502,18 +11502,18 @@ $p.iM = (function(stmt) { } if ((stmt instanceof $c_Ltigerpython_parser_ast_AstNode$ClassDef)) { var x6 = stmt; - this.es.wy(x6); + this.es.wz(x6); $p_Ltigerpython_parser_ast_AstWalker___walkStatementFields__Ltigerpython_parser_ast_AstNode$Statement__V(this, stmt); - this.es.wJ(x6); + this.es.wK(x6); return (void 0); } if ((stmt instanceof $c_Ltigerpython_parser_ast_AstNode$For)) { } if ((stmt instanceof $c_Ltigerpython_parser_ast_AstNode$FunctionDef)) { var x8 = stmt; - this.es.wy(x8); + this.es.wz(x8); $p_Ltigerpython_parser_ast_AstWalker___walkStatementFields__Ltigerpython_parser_ast_AstNode$Statement__V(this, stmt); - this.es.wJ(x8); + this.es.wK(x8); return (void 0); } if ((stmt instanceof $c_Ltigerpython_parser_ast_AstNode$If)) { @@ -11545,7 +11545,7 @@ $p.iM = (function(stmt) { } $p_Ltigerpython_parser_ast_AstWalker___walkStatementFields__Ltigerpython_parser_ast_AstNode$Statement__V(this, stmt); }); -$p.a7 = (function(expr) { +$p.a8 = (function(expr) { if ((expr === null)) { return (void 0); } @@ -11608,12 +11608,12 @@ $p.qt = (function(code) { if ((x1 instanceof $c_s_Some)) { return x1.X; } else if (($m_s_None$() === x1)) { - return this.wk(code); + return this.wl(code); } else { throw new $c_s_MatchError(x1); } }); -$p.wS = (function(code, msg) { +$p.wT = (function(code, msg) { if (((msg === null) || (msg === ""))) { this.lh.Xz(code); } else { @@ -11664,9 +11664,9 @@ function $f_Ltigerpython_parser_errors_ErrorTranslator__$init$__V($thiz) { } /** @constructor */ function $c_Ltigerpython_parser_errors_ErrorTranslator$() { - this.uZ = null; + this.v0 = null; $n_Ltigerpython_parser_errors_ErrorTranslator$ = this; - this.uZ = $m_Ltigerpython_parser_errors_ErrorTranslator$DefaultErrorTranslator$(); + this.v0 = $m_Ltigerpython_parser_errors_ErrorTranslator$DefaultErrorTranslator$(); } $p = $c_Ltigerpython_parser_errors_ErrorTranslator$.prototype = new $h_O(); $p.constructor = $c_Ltigerpython_parser_errors_ErrorTranslator$; @@ -11786,7 +11786,7 @@ $p.constructor = $c_Ltigerpython_parser_lexer_Scanner; function $h_Ltigerpython_parser_lexer_Scanner() { } $h_Ltigerpython_parser_lexer_Scanner.prototype = $p; -$p.iH = (function() { +$p.iG = (function() { return (($dp_length__I(this.a3) - this.aB) | 0); }); $p.am = (function(index) { @@ -11818,7 +11818,7 @@ $p.VN = (function(index) { return false; } }); -$p.wH = (function(index) { +$p.wI = (function(index) { return $p_Ltigerpython_parser_lexer_Scanner___isTripleChar__I__Z(this, ((this.aB + index) | 0)); }); $p.A0 = (function(index, len) { @@ -12125,9 +12125,9 @@ var $d_Ltigerpython_parser_lexer_Scanner = new $TypeData().i($c_Ltigerpython_par /** @constructor */ function $c_Ltigerpython_parser_lexer_TokenType(category, name) { this.fx = 0; - this.io = null; + this.im = null; this.fx = category; - this.io = name; + this.im = name; } $p = $c_Ltigerpython_parser_lexer_TokenType.prototype = new $h_O(); $p.constructor = $c_Ltigerpython_parser_lexer_TokenType; @@ -12142,10 +12142,10 @@ $p.qA = (function() { return $f_sc_SeqOps__contains__O__Z(new $c_sjsr_WrappedVarArgs([$m_Ltigerpython_parser_lexer_TokenType$().b3, $m_Ltigerpython_parser_lexer_TokenType$().aW, $m_Ltigerpython_parser_lexer_TokenType$().ai]), this); }); $p.IJ = (function() { - return $f_sc_SeqOps__contains__O__Z(new $c_sjsr_WrappedVarArgs([$m_Ltigerpython_parser_lexer_TokenType$().bZ, $m_Ltigerpython_parser_lexer_TokenType$().e4, $m_Ltigerpython_parser_lexer_TokenType$().bd, $m_Ltigerpython_parser_lexer_TokenType$().jd, $m_Ltigerpython_parser_lexer_TokenType$().je, $m_Ltigerpython_parser_lexer_TokenType$().cb, $m_Ltigerpython_parser_lexer_TokenType$().ex, $m_Ltigerpython_parser_lexer_TokenType$().iq, $m_Ltigerpython_parser_lexer_TokenType$().pY, $m_Ltigerpython_parser_lexer_TokenType$().ip, $m_Ltigerpython_parser_lexer_TokenType$().jc]), this); + return $f_sc_SeqOps__contains__O__Z(new $c_sjsr_WrappedVarArgs([$m_Ltigerpython_parser_lexer_TokenType$().bZ, $m_Ltigerpython_parser_lexer_TokenType$().e4, $m_Ltigerpython_parser_lexer_TokenType$().bd, $m_Ltigerpython_parser_lexer_TokenType$().jd, $m_Ltigerpython_parser_lexer_TokenType$().je, $m_Ltigerpython_parser_lexer_TokenType$().cb, $m_Ltigerpython_parser_lexer_TokenType$().ex, $m_Ltigerpython_parser_lexer_TokenType$().ip, $m_Ltigerpython_parser_lexer_TokenType$().pY, $m_Ltigerpython_parser_lexer_TokenType$().io, $m_Ltigerpython_parser_lexer_TokenType$().jc]), this); }); $p.j = (function() { - return this.io; + return this.im; }); function $isArrayOf_Ltigerpython_parser_lexer_TokenType(obj, depth) { return (!(!(((obj && obj.$classData) && (obj.$classData.D === depth)) && obj.$classData.B.n.fm))); @@ -12155,7 +12155,7 @@ var $d_Ltigerpython_parser_lexer_TokenType = new $TypeData().i($c_Ltigerpython_p })); function $p_Ltigerpython_parser_lexer_TokenType$__Value__I__T__Ltigerpython_parser_lexer_TokenType($thiz, category, name) { var result = new $c_Ltigerpython_parser_lexer_TokenType(category, name); - $p_scm_HashMap__put0__O__O__Z__s_Some($thiz.vc, name, result, false); + $p_scm_HashMap__put0__O__O__Z__s_Some($thiz.vd, name, result, false); if ((category === $thiz.aP)) { $thiz.Br.I(name); } @@ -12163,7 +12163,7 @@ function $p_Ltigerpython_parser_lexer_TokenType$__Value__I__T__Ltigerpython_pars } /** @constructor */ function $c_Ltigerpython_parser_lexer_TokenType$() { - this.vc = null; + this.vd = null; this.Br = null; this.pX = 0; this.f7 = 0; @@ -12187,17 +12187,17 @@ function $c_Ltigerpython_parser_lexer_TokenType$() { this.yd = null; this.Be = null; this.Bf = null; - this.a8 = null; + this.a7 = null; this.aq = null; this.G7 = null; this.pT = null; this.G8 = null; this.dv = null; - this.v3 = null; + this.v4 = null; this.lq = null; this.yf = null; - this.v4 = null; - this.v6 = null; + this.v5 = null; + this.v7 = null; this.Bk = null; this.Ga = null; this.yg = null; @@ -12205,19 +12205,19 @@ function $c_Ltigerpython_parser_lexer_TokenType$() { this.bm = null; this.bL = null; this.aw = null; - this.v7 = null; + this.v8 = null; this.Bl = null; this.Gc = null; this.Ge = null; this.cx = null; - this.v8 = null; + this.v9 = null; this.Gd = null; this.Gf = null; this.Bm = null; this.cj = null; this.Bn = null; this.Bo = null; - this.va = null; + this.vb = null; this.b3 = null; this.aW = null; this.ai = null; @@ -12239,7 +12239,7 @@ function $c_Ltigerpython_parser_lexer_TokenType$() { this.yc = null; this.g0 = null; this.MO = null; - this.v2 = null; + this.v3 = null; this.Bg = null; this.ex = null; this.Bh = null; @@ -12250,7 +12250,7 @@ function $c_Ltigerpython_parser_lexer_TokenType$() { this.pU = null; this.Bi = null; this.lr = null; - this.v5 = null; + this.v6 = null; this.bd = null; this.hz = null; this.Bj = null; @@ -12267,19 +12267,19 @@ function $c_Ltigerpython_parser_lexer_TokenType$() { this.lv = null; this.MQ = null; this.je = null; - this.vb = null; + this.vc = null; this.lw = null; - this.iq = null; + this.ip = null; this.e4 = null; this.pY = null; this.nu = null; - this.ip = null; + this.io = null; this.jc = null; - this.v9 = null; + this.va = null; this.pV = null; this.G9 = null; $n_Ltigerpython_parser_lexer_TokenType$ = this; - this.vc = $m_scm_Map$().as($m_sci_Nil$()); + this.vd = $m_scm_Map$().as($m_sci_Nil$()); var this$1 = $m_scm_ArrayBuffer$(); var elems = $m_sci_Nil$(); this.Br = this$1.al(elems); @@ -12305,17 +12305,17 @@ function $c_Ltigerpython_parser_lexer_TokenType$() { this.yd = $p_Ltigerpython_parser_lexer_TokenType$__Value__I__T__Ltigerpython_parser_lexer_TokenType(this, this.f7, "~"); this.Be = $p_Ltigerpython_parser_lexer_TokenType$__Value__I__T__Ltigerpython_parser_lexer_TokenType(this, this.f7, "^"); this.Bf = $p_Ltigerpython_parser_lexer_TokenType$__Value__I__T__Ltigerpython_parser_lexer_TokenType(this, this.dw, "^="); - this.a8 = $p_Ltigerpython_parser_lexer_TokenType$__Value__I__T__Ltigerpython_parser_lexer_TokenType(this, this.kg, ":"); + this.a7 = $p_Ltigerpython_parser_lexer_TokenType$__Value__I__T__Ltigerpython_parser_lexer_TokenType(this, this.kg, ":"); this.aq = $p_Ltigerpython_parser_lexer_TokenType$__Value__I__T__Ltigerpython_parser_lexer_TokenType(this, this.kg, ","); this.G7 = $p_Ltigerpython_parser_lexer_TokenType$__Value__I__T__Ltigerpython_parser_lexer_TokenType(this, this.dw, "-="); this.pT = $p_Ltigerpython_parser_lexer_TokenType$__Value__I__T__Ltigerpython_parser_lexer_TokenType(this, this.f7, "/"); this.G8 = $p_Ltigerpython_parser_lexer_TokenType$__Value__I__T__Ltigerpython_parser_lexer_TokenType(this, this.dw, "/="); this.dv = $p_Ltigerpython_parser_lexer_TokenType$__Value__I__T__Ltigerpython_parser_lexer_TokenType(this, this.f7, "."); - this.v3 = $p_Ltigerpython_parser_lexer_TokenType$__Value__I__T__Ltigerpython_parser_lexer_TokenType(this, this.f7, "**"); + this.v4 = $p_Ltigerpython_parser_lexer_TokenType$__Value__I__T__Ltigerpython_parser_lexer_TokenType(this, this.f7, "**"); this.lq = $p_Ltigerpython_parser_lexer_TokenType$__Value__I__T__Ltigerpython_parser_lexer_TokenType(this, this.pX, "..."); this.yf = $p_Ltigerpython_parser_lexer_TokenType$__Value__I__T__Ltigerpython_parser_lexer_TokenType(this, this.dw, ":="); - this.v4 = $p_Ltigerpython_parser_lexer_TokenType$__Value__I__T__Ltigerpython_parser_lexer_TokenType(this, this.nt, "=="); - this.v6 = $p_Ltigerpython_parser_lexer_TokenType$__Value__I__T__Ltigerpython_parser_lexer_TokenType(this, this.nt, ">="); + this.v5 = $p_Ltigerpython_parser_lexer_TokenType$__Value__I__T__Ltigerpython_parser_lexer_TokenType(this, this.nt, "=="); + this.v7 = $p_Ltigerpython_parser_lexer_TokenType$__Value__I__T__Ltigerpython_parser_lexer_TokenType(this, this.nt, ">="); this.Bk = $p_Ltigerpython_parser_lexer_TokenType$__Value__I__T__Ltigerpython_parser_lexer_TokenType(this, this.nt, ">"); this.Ga = $p_Ltigerpython_parser_lexer_TokenType$__Value__I__T__Ltigerpython_parser_lexer_TokenType(this, this.dw, "+="); this.yg = $p_Ltigerpython_parser_lexer_TokenType$__Value__I__T__Ltigerpython_parser_lexer_TokenType(this, this.f7, "//"); @@ -12323,19 +12323,19 @@ function $c_Ltigerpython_parser_lexer_TokenType$() { this.bm = $p_Ltigerpython_parser_lexer_TokenType$__Value__I__T__Ltigerpython_parser_lexer_TokenType(this, this.kg, "{"); this.bL = $p_Ltigerpython_parser_lexer_TokenType$__Value__I__T__Ltigerpython_parser_lexer_TokenType(this, this.kg, "["); this.aw = $p_Ltigerpython_parser_lexer_TokenType$__Value__I__T__Ltigerpython_parser_lexer_TokenType(this, this.kg, "("); - this.v7 = $p_Ltigerpython_parser_lexer_TokenType$__Value__I__T__Ltigerpython_parser_lexer_TokenType(this, this.nt, "<="); + this.v8 = $p_Ltigerpython_parser_lexer_TokenType$__Value__I__T__Ltigerpython_parser_lexer_TokenType(this, this.nt, "<="); this.Bl = $p_Ltigerpython_parser_lexer_TokenType$__Value__I__T__Ltigerpython_parser_lexer_TokenType(this, this.nt, "<"); this.Gc = $p_Ltigerpython_parser_lexer_TokenType$__Value__I__T__Ltigerpython_parser_lexer_TokenType(this, this.dw, "@="); this.Ge = $p_Ltigerpython_parser_lexer_TokenType$__Value__I__T__Ltigerpython_parser_lexer_TokenType(this, this.f7, "*"); this.cx = $p_Ltigerpython_parser_lexer_TokenType$__Value__I__T__Ltigerpython_parser_lexer_TokenType(this, this.f7, "-"); - this.v8 = $p_Ltigerpython_parser_lexer_TokenType$__Value__I__T__Ltigerpython_parser_lexer_TokenType(this, this.f7, "%"); + this.v9 = $p_Ltigerpython_parser_lexer_TokenType$__Value__I__T__Ltigerpython_parser_lexer_TokenType(this, this.f7, "%"); this.Gd = $p_Ltigerpython_parser_lexer_TokenType$__Value__I__T__Ltigerpython_parser_lexer_TokenType(this, this.dw, "%="); this.Gf = $p_Ltigerpython_parser_lexer_TokenType$__Value__I__T__Ltigerpython_parser_lexer_TokenType(this, this.dw, "*="); this.Bm = $p_Ltigerpython_parser_lexer_TokenType$__Value__I__T__Ltigerpython_parser_lexer_TokenType(this, this.nt, "!="); this.cj = $p_Ltigerpython_parser_lexer_TokenType$__Value__I__T__Ltigerpython_parser_lexer_TokenType(this, this.f7, "+"); - this.Bn = this.v3; + this.Bn = this.v4; this.Bo = $p_Ltigerpython_parser_lexer_TokenType$__Value__I__T__Ltigerpython_parser_lexer_TokenType(this, this.dw, "**="); - this.va = $p_Ltigerpython_parser_lexer_TokenType$__Value__I__T__Ltigerpython_parser_lexer_TokenType(this, this.f7, "`"); + this.vb = $p_Ltigerpython_parser_lexer_TokenType$__Value__I__T__Ltigerpython_parser_lexer_TokenType(this, this.f7, "`"); this.b3 = $p_Ltigerpython_parser_lexer_TokenType$__Value__I__T__Ltigerpython_parser_lexer_TokenType(this, this.kg, "}"); this.aW = $p_Ltigerpython_parser_lexer_TokenType$__Value__I__T__Ltigerpython_parser_lexer_TokenType(this, this.kg, "]"); this.ai = $p_Ltigerpython_parser_lexer_TokenType$__Value__I__T__Ltigerpython_parser_lexer_TokenType(this, this.kg, ")"); @@ -12357,7 +12357,7 @@ function $c_Ltigerpython_parser_lexer_TokenType$() { this.yc = $p_Ltigerpython_parser_lexer_TokenType$__Value__I__T__Ltigerpython_parser_lexer_TokenType(this, this.aP, "as"); this.g0 = $p_Ltigerpython_parser_lexer_TokenType$__Value__I__T__Ltigerpython_parser_lexer_TokenType(this, this.aP, "async"); this.MO = $p_Ltigerpython_parser_lexer_TokenType$__Value__I__T__Ltigerpython_parser_lexer_TokenType(this, this.aP, "assert"); - this.v2 = $p_Ltigerpython_parser_lexer_TokenType$__Value__I__T__Ltigerpython_parser_lexer_TokenType(this, this.aP, "await"); + this.v3 = $p_Ltigerpython_parser_lexer_TokenType$__Value__I__T__Ltigerpython_parser_lexer_TokenType(this, this.aP, "await"); this.Bg = $p_Ltigerpython_parser_lexer_TokenType$__Value__I__T__Ltigerpython_parser_lexer_TokenType(this, this.aP, "break"); this.ex = $p_Ltigerpython_parser_lexer_TokenType$__Value__I__T__Ltigerpython_parser_lexer_TokenType(this, this.aP, "class"); this.Bh = $p_Ltigerpython_parser_lexer_TokenType$__Value__I__T__Ltigerpython_parser_lexer_TokenType(this, this.aP, "continue"); @@ -12368,7 +12368,7 @@ function $c_Ltigerpython_parser_lexer_TokenType$() { this.pU = $p_Ltigerpython_parser_lexer_TokenType$__Value__I__T__Ltigerpython_parser_lexer_TokenType(this, this.aP, "except"); this.Bi = $p_Ltigerpython_parser_lexer_TokenType$__Value__I__T__Ltigerpython_parser_lexer_TokenType(this, this.aP, "exec"); this.lr = $p_Ltigerpython_parser_lexer_TokenType$__Value__I__T__Ltigerpython_parser_lexer_TokenType(this, this.aP, "False"); - this.v5 = $p_Ltigerpython_parser_lexer_TokenType$__Value__I__T__Ltigerpython_parser_lexer_TokenType(this, this.aP, "finally"); + this.v6 = $p_Ltigerpython_parser_lexer_TokenType$__Value__I__T__Ltigerpython_parser_lexer_TokenType(this, this.aP, "finally"); this.bd = $p_Ltigerpython_parser_lexer_TokenType$__Value__I__T__Ltigerpython_parser_lexer_TokenType(this, this.aP, "for"); this.hz = $p_Ltigerpython_parser_lexer_TokenType$__Value__I__T__Ltigerpython_parser_lexer_TokenType(this, this.aP, "from"); this.Bj = $p_Ltigerpython_parser_lexer_TokenType$__Value__I__T__Ltigerpython_parser_lexer_TokenType(this, this.aP, "global"); @@ -12385,15 +12385,15 @@ function $c_Ltigerpython_parser_lexer_TokenType$() { this.lv = $p_Ltigerpython_parser_lexer_TokenType$__Value__I__T__Ltigerpython_parser_lexer_TokenType(this, this.aP, "print"); this.MQ = $p_Ltigerpython_parser_lexer_TokenType$__Value__I__T__Ltigerpython_parser_lexer_TokenType(this, this.aP, "raise"); this.je = $p_Ltigerpython_parser_lexer_TokenType$__Value__I__T__Ltigerpython_parser_lexer_TokenType(this, this.aP, "repeat"); - this.vb = $p_Ltigerpython_parser_lexer_TokenType$__Value__I__T__Ltigerpython_parser_lexer_TokenType(this, this.aP, "return"); + this.vc = $p_Ltigerpython_parser_lexer_TokenType$__Value__I__T__Ltigerpython_parser_lexer_TokenType(this, this.aP, "return"); this.lw = $p_Ltigerpython_parser_lexer_TokenType$__Value__I__T__Ltigerpython_parser_lexer_TokenType(this, this.aP, "True"); - this.iq = $p_Ltigerpython_parser_lexer_TokenType$__Value__I__T__Ltigerpython_parser_lexer_TokenType(this, this.aP, "try"); + this.ip = $p_Ltigerpython_parser_lexer_TokenType$__Value__I__T__Ltigerpython_parser_lexer_TokenType(this, this.aP, "try"); this.e4 = $p_Ltigerpython_parser_lexer_TokenType$__Value__I__T__Ltigerpython_parser_lexer_TokenType(this, this.aP, "while"); this.pY = $p_Ltigerpython_parser_lexer_TokenType$__Value__I__T__Ltigerpython_parser_lexer_TokenType(this, this.aP, "with"); this.nu = $p_Ltigerpython_parser_lexer_TokenType$__Value__I__T__Ltigerpython_parser_lexer_TokenType(this, this.aP, "yield"); - this.ip = $p_Ltigerpython_parser_lexer_TokenType$__Value__I__T__Ltigerpython_parser_lexer_TokenType(this, this.aP, "match"); + this.io = $p_Ltigerpython_parser_lexer_TokenType$__Value__I__T__Ltigerpython_parser_lexer_TokenType(this, this.aP, "match"); this.jc = $p_Ltigerpython_parser_lexer_TokenType$__Value__I__T__Ltigerpython_parser_lexer_TokenType(this, this.aP, "case"); - this.v9 = $p_Ltigerpython_parser_lexer_TokenType$__Value__I__T__Ltigerpython_parser_lexer_TokenType(this, this.nt, "not in"); + this.va = $p_Ltigerpython_parser_lexer_TokenType$__Value__I__T__Ltigerpython_parser_lexer_TokenType(this, this.nt, "not in"); this.pV = $p_Ltigerpython_parser_lexer_TokenType$__Value__I__T__Ltigerpython_parser_lexer_TokenType(this, this.nt, "is not"); this.G9 = $p_Ltigerpython_parser_lexer_TokenType$__Value__I__T__Ltigerpython_parser_lexer_TokenType(this, this.pX, "=>"); } @@ -12427,7 +12427,7 @@ $p.UV = (function() { }); $p.CM = (function(s) { try { - return this.vc.w(s); + return this.vd.w(s); } catch (e) { if ((e instanceof $c_ju_NoSuchElementException)) { return this.S; @@ -12436,12 +12436,12 @@ $p.CM = (function(s) { } } }); -$p.wA = (function(op) { +$p.wB = (function(op) { while (true) { try { var $x_1 = op; var name = op; - return $ct_T2__O__O__(new $c_T2(), $x_1.length, this.vc.w(name)); + return $ct_T2__O__O__(new $c_T2(), $x_1.length, this.vd.w(name)); } catch (e) { if ((e instanceof $c_ju_NoSuchElementException)) { if ((op.length > 1)) { @@ -12500,7 +12500,7 @@ $p.hR = (function(token, keyword) { var $x_1 = false; } if ($x_1) { - return (this.CS(token.ah, keyword.io) <= 1); + return (this.CS(token.ah, keyword.im) <= 1); } else { return false; } @@ -12511,7 +12511,7 @@ $p.Iy = (function(name, suggestions) { if ((!suggestions.t())) { suggestions.az(new $c_sjsr_AnonFunction1(((suggestion$2) => { var suggestion = suggestion$2; - if (((suggestion !== null) && ($m_Ltigerpython_parser_lexer_TokenType$().CS(suggestion.io, name) <= 1))) { + if (((suggestion !== null) && ($m_Ltigerpython_parser_lexer_TokenType$().CS(suggestion.im, name) <= 1))) { throw $ct_sr_NonLocalReturnControl__O__O__(new $c_sr_NonLocalReturnControl(), nonLocalReturnKey1, new $c_s_Some(suggestion)); } }))); @@ -12522,7 +12522,7 @@ $p.Iy = (function(name, suggestions) { var keyword = keyword$2; switch ($m_Ltigerpython_parser_lexer_TokenType$().CS(keyword, name)) { case 0: { - throw $ct_sr_NonLocalReturnControl__O__O__(new $c_sr_NonLocalReturnControl(), nonLocalReturnKey1, new $c_s_Some($m_Ltigerpython_parser_lexer_TokenType$().vc.w(keyword))); + throw $ct_sr_NonLocalReturnControl__O__O__(new $c_sr_NonLocalReturnControl(), nonLocalReturnKey1, new $c_s_Some($m_Ltigerpython_parser_lexer_TokenType$().vd.w(keyword))); break; } case 1: { @@ -12607,7 +12607,7 @@ $p.Iy = (function(name, suggestions) { if ((result.b2 !== null)) { var this$6 = $m_Ltigerpython_parser_lexer_TokenType$(); var name$1 = result.b2; - return new $c_s_Some(this$6.vc.w(name$1)); + return new $c_s_Some(this$6.vd.w(name$1)); } else { return $m_s_None$(); } @@ -12705,7 +12705,7 @@ function $p_Ltigerpython_parser_parsing_ArgumentParser__parseParameters__Ltigerp if ((x === x1)) { var $x_1 = true; } else { - var x$3 = $m_Ltigerpython_parser_lexer_TokenType$().a8; + var x$3 = $m_Ltigerpython_parser_lexer_TokenType$().a7; var $x_1 = (x$3 === x1); } if ($x_1) { @@ -12751,7 +12751,7 @@ function $p_Ltigerpython_parser_parsing_ArgumentParser__parseParameters__Ltigerp if ((x$3$1 === x1$1)) { var $x_2 = true; } else { - var x$5$1 = $m_Ltigerpython_parser_lexer_TokenType$().a8; + var x$5$1 = $m_Ltigerpython_parser_lexer_TokenType$().a7; if ((x$5$1 === x1$1)) { var $x_2 = true; } else { @@ -12774,7 +12774,7 @@ function $p_Ltigerpython_parser_parsing_ArgumentParser__parseParameters__Ltigerp } return new $c_sci_$colon$colon(varParam, $p_Ltigerpython_parser_parsing_ArgumentParser__parseParameters__Ltigerpython_parser_lexer_TokenBuffer__Z__sci_List($thiz, tokens, allowTypes)); } else { - var x$9$1 = $m_Ltigerpython_parser_lexer_TokenType$().v3; + var x$9$1 = $m_Ltigerpython_parser_lexer_TokenType$().v4; if ((x$9$1 === x1)) { var pos$2$1 = tokens.M().x; var name$2 = $p_Ltigerpython_parser_parsing_ArgumentParser__parseKeywordName__Ltigerpython_parser_lexer_TokenBuffer__Ltigerpython_parser_ast_AstNode$Name($thiz, tokens); @@ -12801,7 +12801,7 @@ function $p_Ltigerpython_parser_parsing_ArgumentParser__parseParameters__Ltigerp if ((x$3$2 === x1$2)) { var $x_3 = true; } else { - var x$5$2 = $m_Ltigerpython_parser_lexer_TokenType$().a8; + var x$5$2 = $m_Ltigerpython_parser_lexer_TokenType$().a7; if ((x$5$2 === x1$2)) { var $x_3 = true; } else { @@ -12832,7 +12832,7 @@ function $p_Ltigerpython_parser_parsing_ArgumentParser__parseParameters__Ltigerp var defStart = tokens.m(); var defExpr = $thiz.ey.ab.aT(tokens); var defEnd = tokens.m(); - var result = new $c_Ltigerpython_parser_parsing_ArgumentParser$DefaultTupleParameter($thiz, pos$3$1, tuple, defExpr, $f_T__trim__T($dp_toString__T($dp_subSequence__I__I__jl_CharSequence(tokens.v1, defStart, defEnd)))); + var result = new $c_Ltigerpython_parser_parsing_ArgumentParser$DefaultTupleParameter($thiz, pos$3$1, tuple, defExpr, $f_T__trim__T($dp_toString__T($dp_subSequence__I__I__jl_CharSequence(tokens.v2, defStart, defEnd)))); } else { var result = new $c_Ltigerpython_parser_parsing_ArgumentParser$TupleParameter($thiz, pos$3$1, tuple); } @@ -12845,7 +12845,7 @@ function $p_Ltigerpython_parser_parsing_ArgumentParser__parseParameters__Ltigerp if ((x$3$3 === x1$3)) { var $x_4 = true; } else { - var x$5$3 = $m_Ltigerpython_parser_lexer_TokenType$().a8; + var x$5$3 = $m_Ltigerpython_parser_lexer_TokenType$().a7; if ((x$5$3 === x1$3)) { var $x_4 = true; } else { @@ -12881,7 +12881,7 @@ function $p_Ltigerpython_parser_parsing_ArgumentParser__parseParameters__Ltigerp if ((x$3$4 === x1$4)) { var $x_5 = true; } else { - var x$5$4 = $m_Ltigerpython_parser_lexer_TokenType$().a8; + var x$5$4 = $m_Ltigerpython_parser_lexer_TokenType$().a7; if ((x$5$4 === x1$4)) { var $x_5 = true; } else { @@ -12923,7 +12923,7 @@ function $p_Ltigerpython_parser_parsing_ArgumentParser__parseParameters__Ltigerp if ((x$3$5 === x1$5)) { var $x_7 = true; } else { - var x$5$5 = $m_Ltigerpython_parser_lexer_TokenType$().a8; + var x$5$5 = $m_Ltigerpython_parser_lexer_TokenType$().a7; if ((x$5$5 === x1$5)) { var $x_7 = true; } else { @@ -12960,7 +12960,7 @@ function $p_Ltigerpython_parser_parsing_ArgumentParser__parseParameters__Ltigerp var defStart$2 = tokens.m(); var defExpr$2 = $thiz.ey.ab.aT(tokens); var defEnd$2 = tokens.m(); - var result$2 = new $c_Ltigerpython_parser_parsing_ArgumentParser$DefaultParameter($thiz, pos$5, "", defExpr$2, $f_T__trim__T($dp_toString__T($dp_subSequence__I__I__jl_CharSequence(tokens.v1, defStart$2, defEnd$2))), null); + var result$2 = new $c_Ltigerpython_parser_parsing_ArgumentParser$DefaultParameter($thiz, pos$5, "", defExpr$2, $f_T__trim__T($dp_toString__T($dp_subSequence__I__I__jl_CharSequence(tokens.v2, defStart$2, defEnd$2))), null); var x1$6 = tokens.c2(); var x$10 = $m_Ltigerpython_parser_lexer_TokenType$().aq; if ((x$10 === x1$6)) { @@ -12970,7 +12970,7 @@ function $p_Ltigerpython_parser_parsing_ArgumentParser__parseParameters__Ltigerp if ((x$3$6 === x1$6)) { var $x_8 = true; } else { - var x$5$6 = $m_Ltigerpython_parser_lexer_TokenType$().a8; + var x$5$6 = $m_Ltigerpython_parser_lexer_TokenType$().a7; if ((x$5$6 === x1$6)) { var $x_8 = true; } else { @@ -13023,7 +13023,7 @@ function $p_Ltigerpython_parser_parsing_ArgumentParser__parseParameters__Ltigerp $thiz.ey.ab.aT(tokens); } } - var result$3 = new $c_Ltigerpython_parser_parsing_ArgumentParser$DefaultParameter($thiz, name$3.fW, name$3.R, defExpr$3, $f_T__trim__T($dp_toString__T($dp_subSequence__I__I__jl_CharSequence(tokens.v1, defStart$3, defEnd$3))), annot$3); + var result$3 = new $c_Ltigerpython_parser_parsing_ArgumentParser$DefaultParameter($thiz, name$3.fW, name$3.R, defExpr$3, $f_T__trim__T($dp_toString__T($dp_subSequence__I__I__jl_CharSequence(tokens.v2, defStart$3, defEnd$3))), annot$3); } else { var result$3 = new $c_Ltigerpython_parser_parsing_ArgumentParser$SimpleParameter($thiz, name$3.fW, name$3.R, annot$3); } @@ -13036,7 +13036,7 @@ function $p_Ltigerpython_parser_parsing_ArgumentParser__parseParameters__Ltigerp if ((x$3$7 === x1$7)) { var $x_9 = true; } else { - var x$5$7 = $m_Ltigerpython_parser_lexer_TokenType$().a8; + var x$5$7 = $m_Ltigerpython_parser_lexer_TokenType$().a7; if ((x$5$7 === x1$7)) { var $x_9 = true; } else { @@ -13097,7 +13097,7 @@ function $p_Ltigerpython_parser_parsing_ArgumentParser__parseKeywordName__Ltiger if ((x1 instanceof $c_Ltigerpython_parser_ast_AstNode$Name)) { return x1; } else { - if (tokens.af(new $c_sjsr_WrappedVarArgs([$m_Ltigerpython_parser_lexer_TokenType$().a8]))) { + if (tokens.af(new $c_sjsr_WrappedVarArgs([$m_Ltigerpython_parser_lexer_TokenType$().a7]))) { $thiz.ey.ab.hV(tokens); } if (tokens.af(new $c_sjsr_WrappedVarArgs([$m_Ltigerpython_parser_lexer_TokenType$().bi]))) { @@ -13121,11 +13121,11 @@ function $p_Ltigerpython_parser_parsing_ArgumentParser__parseKeywordName__Ltiger } } function $p_Ltigerpython_parser_parsing_ArgumentParser__parseParamAnnotation__Ltigerpython_parser_lexer_TokenBuffer__Ltigerpython_parser_ast_AstNode$Expression($thiz, tokens) { - if (tokens.af(new $c_sjsr_WrappedVarArgs([$m_Ltigerpython_parser_lexer_TokenType$().a8]))) { + if (tokens.af(new $c_sjsr_WrappedVarArgs([$m_Ltigerpython_parser_lexer_TokenType$().a7]))) { if ((($thiz.aF.cy < 3) && (!$thiz.aF.ly))) { var this$4 = $thiz.aF; var pos = tokens.dh(); - var code = $m_Ltigerpython_parser_errors_ErrorCode$().im; + var code = $m_Ltigerpython_parser_errors_ErrorCode$().il; var params = $m_sci_Nil$(); this$4.l(pos, (-1), code, params); } @@ -13198,7 +13198,7 @@ function $p_Ltigerpython_parser_parsing_ArgumentParser__parseArguments__Ltigerpy if ((x$5 === x1)) { var result = new $c_Ltigerpython_parser_parsing_ArgumentParser$VarArgument($thiz, tokens.M().x, $thiz.ey.ab.hV(tokens)); } else { - var x$7 = $m_Ltigerpython_parser_lexer_TokenType$().v3; + var x$7 = $m_Ltigerpython_parser_lexer_TokenType$().v4; if ((x$7 === x1)) { var result = new $c_Ltigerpython_parser_parsing_ArgumentParser$KeywordArgument($thiz, tokens.M().x, $thiz.ey.ab.hV(tokens)); } else if (((x1.fx === $m_Ltigerpython_parser_lexer_TokenType$().aP) && (!$thiz.ey.ab.gF(tokens)))) { @@ -13297,7 +13297,7 @@ function $p_Ltigerpython_parser_parsing_ArgumentParser__parseArguments__Ltigerpy if ((x$3$1 === x1$1)) { var $x_3 = true; } else { - var x$5$1 = $m_Ltigerpython_parser_lexer_TokenType$().a8; + var x$5$1 = $m_Ltigerpython_parser_lexer_TokenType$().a7; if ((x$5$1 === x1$1)) { var $x_3 = true; } else { @@ -13331,7 +13331,7 @@ function $p_Ltigerpython_parser_parsing_ArgumentParser__parseSlicePart__Ltigerpy if ((x$3 === x1)) { var $x_1 = true; } else { - var x$5 = $m_Ltigerpython_parser_lexer_TokenType$().a8; + var x$5 = $m_Ltigerpython_parser_lexer_TokenType$().a7; var $x_1 = (x$5 === x1); } if ($x_1) { @@ -13411,9 +13411,9 @@ $p.Rh = (function(tokens, allowTypes) { var param = arg1; if ((param instanceof $c_Ltigerpython_parser_parsing_ArgumentParser$SimpleParameter)) { var x2 = param; - var pos = x2.vA; - var name = x2.vz; - var annot = x2.vy; + var pos = x2.vB; + var name = x2.vA; + var annot = x2.vz; $p_Ltigerpython_parser_parsing_ArgumentParser__checkName$1__I__T__scm_Set__V(this, pos, name, names); var elem$6 = new $c_Ltigerpython_parser_ast_AstNode$NameParameter(pos, name, annot); args.I(elem$6); @@ -13429,11 +13429,11 @@ $p.Rh = (function(tokens, allowTypes) { } } else if ((param instanceof $c_Ltigerpython_parser_parsing_ArgumentParser$DefaultParameter)) { var x3 = param; - var pos$2 = x3.vj; - var name$2 = x3.vi; - var valueExpr = x3.vg; - var valueStr = x3.vh; - var annot$2 = x3.vf; + var pos$2 = x3.vk; + var name$2 = x3.vj; + var valueExpr = x3.vh; + var valueStr = x3.vi; + var annot$2 = x3.vg; $p_Ltigerpython_parser_parsing_ArgumentParser__checkName$1__I__T__scm_Set__V(this, pos$2, name$2, names); var elem$9 = new $c_Ltigerpython_parser_ast_AstNode$NameParameter(pos$2, name$2, annot$2); args.I(elem$9); @@ -13444,8 +13444,8 @@ $p.Rh = (function(tokens, allowTypes) { } } else if ((param instanceof $c_Ltigerpython_parser_parsing_ArgumentParser$TupleParameter)) { var x4 = param; - var pos$3 = x4.vE; - var tuple = x4.vD; + var pos$3 = x4.vF; + var tuple = x4.vE; if (((this.aF.cy < 3) || this.aF.ly)) { var xs = tuple.k3; var f = ((pos$3, names) => ((n$2) => { @@ -13541,10 +13541,10 @@ $p.Rh = (function(tokens, allowTypes) { } } else if ((param instanceof $c_Ltigerpython_parser_parsing_ArgumentParser$DefaultTupleParameter)) { var x5$1 = param; - var pos$4 = x5$1.vn; - var tuple$2 = x5$1.vm; - var value = x5$1.vk; - var valStr = x5$1.vl; + var pos$4 = x5$1.vo; + var tuple$2 = x5$1.vn; + var value = x5$1.vl; + var valStr = x5$1.vm; if (((this.aF.cy < 3) || this.aF.ly)) { var xs$1 = tuple$2.k3; var f$1 = ((pos$4, names) => ((n$3$2) => { @@ -13635,10 +13635,10 @@ $p.Rh = (function(tokens, allowTypes) { } } else if ((param instanceof $c_Ltigerpython_parser_parsing_ArgumentParser$StarParameter)) { var x6$2 = param; - var pos$5 = x6$2.vC; + var pos$5 = x6$2.vD; if (((this.aF.cy < 3) && (!this.aF.ly))) { var this$16 = this.aF; - var code$2 = $m_Ltigerpython_parser_errors_ErrorCode$().im; + var code$2 = $m_Ltigerpython_parser_errors_ErrorCode$().il; var params$3 = $m_sci_Nil$(); this$16.l(pos$5, (-1), code$2, params$3); } @@ -13651,19 +13651,19 @@ $p.Rh = (function(tokens, allowTypes) { elem = args.u; } else if ((param instanceof $c_Ltigerpython_parser_parsing_ArgumentParser$SlashParameter)) { var x7$2 = param; - var pos$6 = x7$2.vB; + var pos$6 = x7$2.vC; if (((this.aF.cy < 3) && (!this.aF.ly))) { var this$18 = this.aF; - var code$4 = $m_Ltigerpython_parser_errors_ErrorCode$().im; + var code$4 = $m_Ltigerpython_parser_errors_ErrorCode$().il; var params$5 = $m_sci_Nil$(); this$18.l(pos$6, (-1), code$4, params$5); } elem$1 = args.u; } else if ((param instanceof $c_Ltigerpython_parser_parsing_ArgumentParser$VarParameter)) { var x8$2 = param; - var pos$7 = x8$2.vJ; - var name$3 = x8$2.vI; - var annot$3 = x8$2.vH; + var pos$7 = x8$2.vK; + var name$3 = x8$2.vJ; + var annot$3 = x8$2.vI; $p_Ltigerpython_parser_parsing_ArgumentParser__checkName$1__I__T__scm_Set__V(this, pos$7, name$3, names); if (((elem$2 === null) && (elem === (-1)))) { elem$2 = new $c_Ltigerpython_parser_ast_AstNode$NameParameter(pos$7, name$3, annot$3); @@ -13676,9 +13676,9 @@ $p.Rh = (function(tokens, allowTypes) { elem = args.u; } else if ((param instanceof $c_Ltigerpython_parser_parsing_ArgumentParser$KeywordParameter)) { var x9$2 = param; - var pos$8 = x9$2.vs; - var name$4 = x9$2.vr; - var annot$4 = x9$2.vq; + var pos$8 = x9$2.vt; + var name$4 = x9$2.vs; + var annot$4 = x9$2.vr; $p_Ltigerpython_parser_parsing_ArgumentParser__checkName$1__I__T__scm_Set__V(this, pos$8, name$4, names); if ((elem$3 === null)) { elem$3 = new $c_Ltigerpython_parser_ast_AstNode$NameParameter(pos$8, name$4, annot$4); @@ -13793,8 +13793,8 @@ $p.Da = (function(tokens) { var arg = arg1; if ((arg instanceof $c_Ltigerpython_parser_parsing_ArgumentParser$CompArgument)) { var x2 = arg; - var pos = x2.vd; - var value = x2.ve; + var pos = x2.ve; + var value = x2.vf; if ((arguments$1.g() > 1)) { var this$7 = this.aF; var code = $m_Ltigerpython_parser_errors_ErrorCode$().pf; @@ -13804,8 +13804,8 @@ $p.Da = (function(tokens) { values.I(value); } else if ((arg instanceof $c_Ltigerpython_parser_parsing_ArgumentParser$SimpleArgument)) { var x3 = arg; - var pos$2 = x3.vw; - var value$2 = x3.vx; + var pos$2 = x3.vx; + var value$2 = x3.vy; values.I(value$2); if ((((elem !== null) || (elem$1 !== null)) && (elem$2 < 0))) { elem$2 = pos$2; @@ -13814,9 +13814,9 @@ $p.Da = (function(tokens) { } } else if ((arg instanceof $c_Ltigerpython_parser_parsing_ArgumentParser$NamedArgument)) { var x4 = arg; - var pos$3 = x4.vu; - var name = x4.vt; - var value$3 = x4.vv; + var pos$3 = x4.vv; + var name = x4.vu; + var value$3 = x4.vw; if (((elem$1 !== null) && (elem$2 < 0))) { elem$2 = pos$3; } @@ -13824,8 +13824,8 @@ $p.Da = (function(tokens) { keywords.I(elem$4); } else if ((arg instanceof $c_Ltigerpython_parser_parsing_ArgumentParser$VarArgument)) { var x5 = arg; - var pos$4 = x5.vF; - var value$4 = x5.vG; + var pos$4 = x5.vG; + var value$4 = x5.vH; if ((elem === null)) { elem = value$4; if ((elem$1 !== null)) { @@ -13842,8 +13842,8 @@ $p.Da = (function(tokens) { } } else if ((arg instanceof $c_Ltigerpython_parser_parsing_ArgumentParser$KeywordArgument)) { var x6 = arg; - var pos$5 = x6.vo; - var value$5 = x6.vp; + var pos$5 = x6.vp; + var value$5 = x6.vq; if ((elem$1 === null)) { elem$1 = value$5; } else { @@ -13950,9 +13950,9 @@ $p.Rm = (function(tokens) { if (tokens.c()) { var startPos = tokens.m(); var lower = $p_Ltigerpython_parser_parsing_ArgumentParser__parseSlicePart__Ltigerpython_parser_lexer_TokenBuffer__Ltigerpython_parser_ast_AstNode$Expression(this, tokens); - if (tokens.af(new $c_sjsr_WrappedVarArgs([$m_Ltigerpython_parser_lexer_TokenType$().a8]))) { + if (tokens.af(new $c_sjsr_WrappedVarArgs([$m_Ltigerpython_parser_lexer_TokenType$().a7]))) { var upper = $p_Ltigerpython_parser_parsing_ArgumentParser__parseSlicePart__Ltigerpython_parser_lexer_TokenBuffer__Ltigerpython_parser_ast_AstNode$Expression(this, tokens); - return (tokens.af(new $c_sjsr_WrappedVarArgs([$m_Ltigerpython_parser_lexer_TokenType$().a8])) ? new $c_Ltigerpython_parser_ast_AstNode$SliceRange(startPos, lower, upper, $p_Ltigerpython_parser_parsing_ArgumentParser__parseSlicePart__Ltigerpython_parser_lexer_TokenBuffer__Ltigerpython_parser_ast_AstNode$Expression(this, tokens)) : new $c_Ltigerpython_parser_ast_AstNode$SliceRange(startPos, lower, upper, null)); + return (tokens.af(new $c_sjsr_WrappedVarArgs([$m_Ltigerpython_parser_lexer_TokenType$().a7])) ? new $c_Ltigerpython_parser_ast_AstNode$SliceRange(startPos, lower, upper, $p_Ltigerpython_parser_parsing_ArgumentParser__parseSlicePart__Ltigerpython_parser_lexer_TokenBuffer__Ltigerpython_parser_ast_AstNode$Expression(this, tokens)) : new $c_Ltigerpython_parser_ast_AstNode$SliceRange(startPos, lower, upper, null)); } else if ((lower === null)) { var this$7 = this.aF; var code = $m_Ltigerpython_parser_errors_ErrorCode$().p5; @@ -14090,7 +14090,7 @@ $p.It = (function() { var this$9 = $m_s_Array$(); var newLength = ((1 + xs.a.length) | 0); if ($d_Ltigerpython_parser_ast_AstNode$Statement.l().hQ($objectGetClass(xs).dg())) { - var dest$1 = ($d_Ltigerpython_parser_ast_AstNode$Statement.l().hS() ? this$9.hN(xs, newLength) : $m_ju_Arrays$().iC(xs, newLength, $d_Ltigerpython_parser_ast_AstNode$Statement.r().l())); + var dest$1 = ($d_Ltigerpython_parser_ast_AstNode$Statement.l().hS() ? this$9.hN(xs, newLength) : $m_ju_Arrays$().iB(xs, newLength, $d_Ltigerpython_parser_ast_AstNode$Statement.r().l())); } else { var dest = new ($d_Ltigerpython_parser_ast_AstNode$Statement.r().C)(newLength); $m_s_Array$().bz(xs, 0, dest, 0, xs.a.length); @@ -14138,12 +14138,12 @@ function $p_Ltigerpython_parser_parsing_BracketPatcher__insertToken__I__Ltigerpy var pos = ((tokenIndex < $thiz.aj.u) ? $thiz.aj.s(tokenIndex).x : $f_sc_IndexedSeqOps__last__O($thiz.aj).cw); $thiz.aj.IG(tokenIndex, new $c_Ltigerpython_parser_lexer_Token(pos, 0, tokenType)); if (tokenType.jx()) { - var this$6 = $thiz.ir; + var this$6 = $thiz.iq; var code = $m_Ltigerpython_parser_errors_ErrorCode$().pm; var params = new $c_sjsr_WrappedVarArgs([tokenType]); this$6.l(pos, (-1), code, params); } else { - var this$10 = $thiz.ir; + var this$10 = $thiz.iq; var code$1 = $m_Ltigerpython_parser_errors_ErrorCode$().lo; var params$1 = new $c_sjsr_WrappedVarArgs([tokenType]); this$10.l(pos, (-1), code$1, params$1); @@ -14189,7 +14189,7 @@ function $p_Ltigerpython_parser_parsing_BracketPatcher__insertClosingToken__I__L function $p_Ltigerpython_parser_parsing_BracketPatcher__deleteToken__I__Z($thiz, tokenIndex) { var token = $thiz.aj.s(tokenIndex); $thiz.aj.hX(tokenIndex); - var this$4 = $thiz.ir; + var this$4 = $thiz.iq; var pos = token.x; var code = $m_Ltigerpython_parser_errors_ErrorCode$().bC; var params = new $c_sjsr_WrappedVarArgs([token]); @@ -14199,7 +14199,7 @@ function $p_Ltigerpython_parser_parsing_BracketPatcher__deleteToken__I__Z($thiz, function $p_Ltigerpython_parser_parsing_BracketPatcher__replaceToken__I__Ltigerpython_parser_lexer_TokenType__Z($thiz, tokenIndex, tokenType) { var token = $thiz.aj.s(tokenIndex); $thiz.aj.td(tokenIndex, new $c_Ltigerpython_parser_lexer_Token(token.x, token.ew, tokenType)); - var this$4 = $thiz.ir; + var this$4 = $thiz.iq; var pos = token.x; var code = $m_Ltigerpython_parser_errors_ErrorCode$().hx; var params = new $c_sjsr_WrappedVarArgs([tokenType, token]); @@ -14210,7 +14210,7 @@ function $p_Ltigerpython_parser_parsing_BracketPatcher__swapTokens__I__Z($thiz, var temp = $thiz.aj.s(tokenIndex); $thiz.aj.td(tokenIndex, $thiz.aj.s(((1 + tokenIndex) | 0))); $thiz.aj.td(((1 + tokenIndex) | 0), temp); - var this$4 = $thiz.ir; + var this$4 = $thiz.iq; var pos = temp.x; var code = $m_Ltigerpython_parser_errors_ErrorCode$().j9; var params = new $c_sjsr_WrappedVarArgs([temp, $thiz.aj.s(tokenIndex)]); @@ -14240,7 +14240,7 @@ function $p_Ltigerpython_parser_parsing_BracketPatcher__checkForSuperfluousLeftP var $x_2 = false; } if ($x_2) { - var this$6 = $thiz.ir; + var this$6 = $thiz.iq; var pos = $thiz.aj.s(tokenIndex).x; var code = $m_Ltigerpython_parser_errors_ErrorCode$().n6; var params = new $c_sjsr_WrappedVarArgs(["("]); @@ -14267,7 +14267,7 @@ function $p_Ltigerpython_parser_parsing_BracketPatcher__checkForSuperfluousLeftP var $x_3 = false; } if ($x_3) { - var this$12 = $thiz.ir; + var this$12 = $thiz.iq; var pos$1 = $thiz.aj.s(tokenIndex).x; var code$1 = $m_Ltigerpython_parser_errors_ErrorCode$().n6; var params$1 = new $c_sjsr_WrappedVarArgs(["("]); @@ -14324,7 +14324,7 @@ function $p_Ltigerpython_parser_parsing_BracketPatcher__findColonIndex__I__I($th var result = startIndex; while ((result < $thiz.aj.u)) { var x1 = $thiz.aj.s(result).o; - var x = $m_Ltigerpython_parser_lexer_TokenType$().a8; + var x = $m_Ltigerpython_parser_lexer_TokenType$().a7; if ((x === x1)) { return result; } else { @@ -14355,7 +14355,7 @@ function $p_Ltigerpython_parser_parsing_BracketPatcher__hasColonInRange__I__I__Z if ((x$3 === x1)) { elem = (((-1) + elem) | 0); } else { - var x$5 = $m_Ltigerpython_parser_lexer_TokenType$().a8; + var x$5 = $m_Ltigerpython_parser_lexer_TokenType$().a7; if (((x$5 === x1) && (elem === 0))) { elem$1 = ((1 + elem$1) | 0); } @@ -14479,10 +14479,10 @@ function $p_Ltigerpython_parser_parsing_BracketPatcher__isCountBalanced__Z($thiz } /** @constructor */ function $c_Ltigerpython_parser_parsing_BracketPatcher(lexer, parserState, tokenSource) { - this.ir = null; + this.iq = null; this.aj = null; this.ay = null; - this.ir = parserState; + this.iq = parserState; var this$3 = $m_scm_ArrayBuffer$(); var elems = $m_sc_ArrayOps$().Jt(tokenSource); this.aj = this$3.al(elems); @@ -14620,7 +14620,7 @@ $p.UA = (function(bracketIndex) { while (true) { if ((i < this.aj.u)) { var this$5 = this.aj.s(i).o; - var $x_3 = (!$f_sc_SeqOps__contains__O__Z(new $c_sjsr_WrappedVarArgs([$m_Ltigerpython_parser_lexer_TokenType$().cT, $m_Ltigerpython_parser_lexer_TokenType$().a8, $m_Ltigerpython_parser_lexer_TokenType$().dP]), this$5)); + var $x_3 = (!$f_sc_SeqOps__contains__O__Z(new $c_sjsr_WrappedVarArgs([$m_Ltigerpython_parser_lexer_TokenType$().cT, $m_Ltigerpython_parser_lexer_TokenType$().a7, $m_Ltigerpython_parser_lexer_TokenType$().dP]), this$5)); } else { var $x_3 = false; } @@ -14648,7 +14648,7 @@ $p.UA = (function(bracketIndex) { return $p_Ltigerpython_parser_parsing_BracketPatcher__insertToken__I__Ltigerpython_parser_lexer_TokenType__Z(this, i$2, $m_Ltigerpython_parser_lexer_TokenType$().ai); } } - var i$3 = $p_Ltigerpython_parser_parsing_BracketPatcher__findTokenType__I__sci_Seq__I(this, ((1 + bracketIndex) | 0), new $c_sjsr_WrappedVarArgs([$m_Ltigerpython_parser_lexer_TokenType$().dP, $m_Ltigerpython_parser_lexer_TokenType$().a8])); + var i$3 = $p_Ltigerpython_parser_parsing_BracketPatcher__findTokenType__I__sci_Seq__I(this, ((1 + bracketIndex) | 0), new $c_sjsr_WrappedVarArgs([$m_Ltigerpython_parser_lexer_TokenType$().dP, $m_Ltigerpython_parser_lexer_TokenType$().a7])); var x$15 = $p_Ltigerpython_parser_parsing_BracketPatcher__tokenTypes__I__Ltigerpython_parser_lexer_TokenType(this, i$3); var x$16 = $m_Ltigerpython_parser_lexer_TokenType$().dP; if ((!(x$15 === x$16))) { @@ -14673,7 +14673,7 @@ $p.Uz = (function(bracketIndex, rightBracket) { if ((x$5 === x$6)) { var secondaryAllowed = $m_Ltigerpython_parser_lexer_TokenType$().bi; } else { - var secondaryAllowed = $m_Ltigerpython_parser_lexer_TokenType$().a8; + var secondaryAllowed = $m_Ltigerpython_parser_lexer_TokenType$().a7; } var i = $p_Ltigerpython_parser_parsing_BracketPatcher__findEndOfExpression__I__I(this, ((1 + bracketIndex) | 0)); while (true) { @@ -14689,11 +14689,11 @@ $p.Uz = (function(bracketIndex, rightBracket) { var x$8 = $m_Ltigerpython_parser_lexer_TokenType$().dP; if ((x$7 === x$8)) { var this$8 = $p_Ltigerpython_parser_parsing_BracketPatcher__tokenTypes__I__Ltigerpython_parser_lexer_TokenType(this, (((-1) + i) | 0)); - var $x_2 = $f_sc_SeqOps__contains__O__Z(new $c_sjsr_WrappedVarArgs([$m_Ltigerpython_parser_lexer_TokenType$().aq, $m_Ltigerpython_parser_lexer_TokenType$().cj, $m_Ltigerpython_parser_lexer_TokenType$().v8, $m_Ltigerpython_parser_lexer_TokenType$().cx, $m_Ltigerpython_parser_lexer_TokenType$().Ge, $m_Ltigerpython_parser_lexer_TokenType$().pT]), this$8); + var $x_2 = $f_sc_SeqOps__contains__O__Z(new $c_sjsr_WrappedVarArgs([$m_Ltigerpython_parser_lexer_TokenType$().aq, $m_Ltigerpython_parser_lexer_TokenType$().cj, $m_Ltigerpython_parser_lexer_TokenType$().v9, $m_Ltigerpython_parser_lexer_TokenType$().cx, $m_Ltigerpython_parser_lexer_TokenType$().Ge, $m_Ltigerpython_parser_lexer_TokenType$().pT]), this$8); } else { var $x_2 = false; } - if ((($x_2 && ($p_Ltigerpython_parser_parsing_BracketPatcher__tokenTypes__I__Ltigerpython_parser_lexer_TokenType(this, ((2 + i) | 0)) !== null)) && $m_Ltigerpython_parser_parsing_ExpressionParser$().h1(this.aj.s(((2 + i) | 0)), this.ir))) { + if ((($x_2 && ($p_Ltigerpython_parser_parsing_BracketPatcher__tokenTypes__I__Ltigerpython_parser_lexer_TokenType(this, ((2 + i) | 0)) !== null)) && $m_Ltigerpython_parser_parsing_ExpressionParser$().h1(this.aj.s(((2 + i) | 0)), this.iq))) { i = $p_Ltigerpython_parser_parsing_BracketPatcher__findTokenType__I__sci_Seq__I(this, ((1 + i) | 0), new $c_sjsr_WrappedVarArgs([$m_Ltigerpython_parser_lexer_TokenType$().dP])); } else { break; @@ -14717,7 +14717,7 @@ $p.Uz = (function(bracketIndex, rightBracket) { if ($x_3) { var x$13 = $p_Ltigerpython_parser_parsing_BracketPatcher__tokenTypes__I__Ltigerpython_parser_lexer_TokenType(this, ((1 + i$2) | 0)); var x$14 = $m_Ltigerpython_parser_lexer_TokenType$().ls; - if ((((x$13 === x$14) && (((2 + i$2) | 0) < this.aj.u)) && $m_Ltigerpython_parser_parsing_ExpressionParser$().h1(this.aj.s(((2 + i$2) | 0)), this.ir))) { + if ((((x$13 === x$14) && (((2 + i$2) | 0) < this.aj.u)) && $m_Ltigerpython_parser_parsing_ExpressionParser$().h1(this.aj.s(((2 + i$2) | 0)), this.iq))) { i$2 = $p_Ltigerpython_parser_parsing_BracketPatcher__findTokenType__I__sci_Seq__I(this, ((1 + i$2) | 0), new $c_sjsr_WrappedVarArgs([$m_Ltigerpython_parser_lexer_TokenType$().dP])); } else { return $p_Ltigerpython_parser_parsing_BracketPatcher__insertToken__I__Ltigerpython_parser_lexer_TokenType__Z(this, i$2, rightBracket); @@ -14728,7 +14728,7 @@ $p.Uz = (function(bracketIndex, rightBracket) { } return $p_Ltigerpython_parser_parsing_BracketPatcher__insertToken__I__Ltigerpython_parser_lexer_TokenType__Z(this, i$2, rightBracket); } else { - var i$3 = $p_Ltigerpython_parser_parsing_BracketPatcher__findTokenType__I__sci_Seq__I(this, ((1 + bracketIndex) | 0), new $c_sjsr_WrappedVarArgs([$m_Ltigerpython_parser_lexer_TokenType$().dP, $m_Ltigerpython_parser_lexer_TokenType$().a8])); + var i$3 = $p_Ltigerpython_parser_parsing_BracketPatcher__findTokenType__I__sci_Seq__I(this, ((1 + bracketIndex) | 0), new $c_sjsr_WrappedVarArgs([$m_Ltigerpython_parser_lexer_TokenType$().dP, $m_Ltigerpython_parser_lexer_TokenType$().a7])); while (true) { var x$15 = $p_Ltigerpython_parser_parsing_BracketPatcher__tokenTypes__I__Ltigerpython_parser_lexer_TokenType(this, i$3); var x$16 = $m_Ltigerpython_parser_lexer_TokenType$().dP; @@ -14741,8 +14741,8 @@ $p.Uz = (function(bracketIndex, rightBracket) { if ($x_4) { var x$17 = $p_Ltigerpython_parser_parsing_BracketPatcher__tokenTypes__I__Ltigerpython_parser_lexer_TokenType(this, ((1 + i$3) | 0)); var x$18 = $m_Ltigerpython_parser_lexer_TokenType$().ls; - if ((((x$17 === x$18) && (((2 + i$3) | 0) < this.aj.u)) && $m_Ltigerpython_parser_parsing_ExpressionParser$().h1(this.aj.s(((2 + i$3) | 0)), this.ir))) { - i$3 = $p_Ltigerpython_parser_parsing_BracketPatcher__findTokenType__I__sci_Seq__I(this, ((1 + i$3) | 0), new $c_sjsr_WrappedVarArgs([$m_Ltigerpython_parser_lexer_TokenType$().dP, $m_Ltigerpython_parser_lexer_TokenType$().a8])); + if ((((x$17 === x$18) && (((2 + i$3) | 0) < this.aj.u)) && $m_Ltigerpython_parser_parsing_ExpressionParser$().h1(this.aj.s(((2 + i$3) | 0)), this.iq))) { + i$3 = $p_Ltigerpython_parser_parsing_BracketPatcher__findTokenType__I__sci_Seq__I(this, ((1 + i$3) | 0), new $c_sjsr_WrappedVarArgs([$m_Ltigerpython_parser_lexer_TokenType$().dP, $m_Ltigerpython_parser_lexer_TokenType$().a7])); } else { return $p_Ltigerpython_parser_parsing_BracketPatcher__insertToken__I__Ltigerpython_parser_lexer_TokenType__Z(this, i$3, rightBracket); } @@ -14777,7 +14777,7 @@ $p.Uy = (function(bracketIndex, leftBracket) { var $x_2 = (x$7 === x1); } if ($x_2) { - var colonIndex = $p_Ltigerpython_parser_parsing_BracketPatcher__findTokenType__I__sci_Seq__I(this, lineIndex, new $c_sjsr_WrappedVarArgs([$m_Ltigerpython_parser_lexer_TokenType$().a8])); + var colonIndex = $p_Ltigerpython_parser_parsing_BracketPatcher__findTokenType__I__sci_Seq__I(this, lineIndex, new $c_sjsr_WrappedVarArgs([$m_Ltigerpython_parser_lexer_TokenType$().a7])); if (((((2 + lineIndex) | 0) <= bracketIndex) && (bracketIndex === (((-1) + colonIndex) | 0)))) { return $p_Ltigerpython_parser_parsing_BracketPatcher__insertToken__I__Ltigerpython_parser_lexer_TokenType__Z(this, ((2 + lineIndex) | 0), $m_Ltigerpython_parser_lexer_TokenType$().aw); } @@ -14791,7 +14791,7 @@ $p.Uy = (function(bracketIndex, leftBracket) { var $x_3 = false; } if ($x_3) { - if ((bracketIndex < $p_Ltigerpython_parser_parsing_BracketPatcher__findTokenType__I__sci_Seq__I(this, lineIndex, new $c_sjsr_WrappedVarArgs([$m_Ltigerpython_parser_lexer_TokenType$().a8])))) { + if ((bracketIndex < $p_Ltigerpython_parser_parsing_BracketPatcher__findTokenType__I__sci_Seq__I(this, lineIndex, new $c_sjsr_WrappedVarArgs([$m_Ltigerpython_parser_lexer_TokenType$().a7])))) { return $p_Ltigerpython_parser_parsing_BracketPatcher__insertToken__I__Ltigerpython_parser_lexer_TokenType__Z(this, ((1 + lineIndex) | 0), $m_Ltigerpython_parser_lexer_TokenType$().aw); } } @@ -15002,14 +15002,14 @@ $p.Q2 = (function(bracketIndex) { }); $p.Ux = (function(bracketIndex) { var bracket = this.ay.s(bracketIndex); - var this$4 = this.ir; + var this$4 = this.iq; var pos = bracket.x; var code = $m_Ltigerpython_parser_errors_ErrorCode$().px; var params = new $c_sjsr_WrappedVarArgs([bracket]); this$4.l(pos, (-1), code, params); var tokenIndex = $p_Ltigerpython_parser_parsing_BracketPatcher__bracketToTokenIndex__I__I(this, bracketIndex); var i = ((1 + tokenIndex) | 0); - if ($m_Ltigerpython_parser_parsing_ExpressionParser$().h1(this.aj.s(i), this.ir)) { + if ($m_Ltigerpython_parser_parsing_ExpressionParser$().h1(this.aj.s(i), this.iq)) { var endIndex = $p_Ltigerpython_parser_parsing_BracketPatcher__bracketToTokenIndex__I__I(this, ((1 + bracketIndex) | 0)); i = endIndex; } @@ -15025,7 +15025,7 @@ $p.Uw = (function(bracketIndex) { var depth = 0; while ((i > beginIndex)) { var x1 = this.aj.s(i).o; - var x$3 = $m_Ltigerpython_parser_lexer_TokenType$().a8; + var x$3 = $m_Ltigerpython_parser_lexer_TokenType$().a7; if (((x$3 === x1) && (depth === 0))) { return $p_Ltigerpython_parser_parsing_BracketPatcher__insertOpeningToken__I__Ltigerpython_parser_lexer_TokenType__Z(this, ((1 + i) | 0), this.ay.s(bracketIndex).o); } else { @@ -15095,7 +15095,7 @@ $p.Uv = (function(bracketIndex) { while (true) { if ((lineIndex < tokenIndex1)) { var x$3 = this.aj.s(lineIndex).o; - var x$4 = $m_Ltigerpython_parser_lexer_TokenType$().a8; + var x$4 = $m_Ltigerpython_parser_lexer_TokenType$().a7; var $x_3 = (!(x$3 === x$4)); } else { var $x_3 = false; @@ -15158,7 +15158,7 @@ $p.Uv = (function(bracketIndex) { if (($x_6 && (lineIndex === (((-1) + tokenIndex1) | 0)))) { if ((((1 + tokenIndex2) | 0) < this.aj.u)) { var x$25 = this.aj.s(((1 + tokenIndex2) | 0)).o; - var x$26 = $m_Ltigerpython_parser_lexer_TokenType$().a8; + var x$26 = $m_Ltigerpython_parser_lexer_TokenType$().a7; var $x_7 = (x$25 === x$26); } else { var $x_7 = false; @@ -15317,7 +15317,7 @@ $h_Ltigerpython_parser_parsing_ExpressionParser.prototype = $p; $p.gF = (function(tokens) { return (tokens.c() && $m_Ltigerpython_parser_parsing_ExpressionParser$().h1(tokens.a9(), this.aa)); }); -$p.wQ = (function(tokens) { +$p.wR = (function(tokens) { if (tokens.V(new $c_sjsr_WrappedVarArgs([$m_Ltigerpython_parser_lexer_TokenType$().S]))) { var token = tokens.M(); var x = tokens.c2(); @@ -15371,7 +15371,7 @@ $p.Ra = (function(tokens) { if ((x$5 === x1)) { var $x_1 = true; } else { - var x$7 = $m_Ltigerpython_parser_lexer_TokenType$().a8; + var x$7 = $m_Ltigerpython_parser_lexer_TokenType$().a7; var $x_1 = (x$7 === x1); } } @@ -15391,7 +15391,7 @@ $p.Ra = (function(tokens) { } } if ($x_2) { - var elem$1 = tokens.M().o.io; + var elem$1 = tokens.M().o.im; result.I(elem$1); } else { var x$15 = $m_Ltigerpython_parser_lexer_TokenType$().bt; @@ -15418,7 +15418,7 @@ $p.Ra = (function(tokens) { } } if ((tokens.V(new $c_sjsr_WrappedVarArgs([$m_Ltigerpython_parser_lexer_TokenType$().aq, $m_Ltigerpython_parser_lexer_TokenType$().f6])) && tokens.CU(1, new $c_sjsr_WrappedVarArgs([$m_Ltigerpython_parser_lexer_TokenType$().S, $m_Ltigerpython_parser_lexer_TokenType$().aw])))) { - var elem$4 = tokens.M().o.io; + var elem$4 = tokens.M().o.im; result.I(elem$4); } while (tokens.V(new $c_sjsr_WrappedVarArgs([$m_Ltigerpython_parser_lexer_TokenType$().S, $m_Ltigerpython_parser_lexer_TokenType$().dv, $m_Ltigerpython_parser_lexer_TokenType$().bt, $m_Ltigerpython_parser_lexer_TokenType$().lu, $m_Ltigerpython_parser_lexer_TokenType$().cx, $m_Ltigerpython_parser_lexer_TokenType$().s3, $m_Ltigerpython_parser_lexer_TokenType$().Bc, $m_Ltigerpython_parser_lexer_TokenType$().yd, $m_Ltigerpython_parser_lexer_TokenType$().da]))) { @@ -15449,7 +15449,7 @@ $p.Ra = (function(tokens) { var elem$5 = tokens.M().ah; result.I(elem$5); } else { - var elem$6 = tokens.M().o.io; + var elem$6 = tokens.M().o.im; result.I(elem$6); } } @@ -15533,7 +15533,7 @@ $p.Db = (function(tokens) { var names = this$4.al(elems); while (tokens.V(new $c_sjsr_WrappedVarArgs([$m_Ltigerpython_parser_lexer_TokenType$().S]))) { var name = this.X6(tokens); - var asName = (tokens.af(new $c_sjsr_WrappedVarArgs([$m_Ltigerpython_parser_lexer_TokenType$().yc])) ? this.wQ(tokens) : null); + var asName = (tokens.af(new $c_sjsr_WrappedVarArgs([$m_Ltigerpython_parser_lexer_TokenType$().yc])) ? this.wR(tokens) : null); if ((name !== null)) { var elem = new $c_Ltigerpython_parser_ast_AstNode$Alias(startPos, name, asName); names.I(elem); @@ -15566,9 +15566,9 @@ $p.Db = (function(tokens) { } }); $p.X3 = (function(tokens) { - var result = this.wQ(tokens); + var result = this.wR(tokens); while (tokens.af(new $c_sjsr_WrappedVarArgs([$m_Ltigerpython_parser_lexer_TokenType$().dv]))) { - var name = this.wQ(tokens); + var name = this.wR(tokens); result = new $c_Ltigerpython_parser_ast_AstNode$Attribute(result.m(), name.aH(), result, name); } if (tokens.af(new $c_sjsr_WrappedVarArgs([$m_Ltigerpython_parser_lexer_TokenType$().aw]))) { @@ -15602,14 +15602,14 @@ $p.jz = (function(tokens) { var x$3 = $m_Ltigerpython_parser_lexer_TokenType$().bi; if ((x$3 === x1)) { this.aa.a4(tokens, $m_Ltigerpython_parser_errors_ErrorCode$().n4, $m_sci_Nil$()); - tokens.d0($m_Ltigerpython_parser_lexer_TokenType$().v4); + tokens.d0($m_Ltigerpython_parser_lexer_TokenType$().v5); tokens.m5(curIndex); return this.jz(tokens); } var x$5 = $m_Ltigerpython_parser_lexer_TokenType$().G9; if ((x$5 === x1)) { this.aa.a4(tokens, $m_Ltigerpython_parser_errors_ErrorCode$().j8, new $c_sjsr_WrappedVarArgs(["=>", ">="])); - tokens.d0($m_Ltigerpython_parser_lexer_TokenType$().v6); + tokens.d0($m_Ltigerpython_parser_lexer_TokenType$().v7); tokens.m5(curIndex); return this.jz(tokens); } @@ -15621,7 +15621,7 @@ $p.jz = (function(tokens) { tokens.M(); this.J3(tokens); var x1$2 = tokens.c2(); - var x$9 = $m_Ltigerpython_parser_lexer_TokenType$().v4; + var x$9 = $m_Ltigerpython_parser_lexer_TokenType$().v5; if ((x$9 === x1$2)) { var $x_1 = true; } else { @@ -15633,7 +15633,7 @@ $p.jz = (function(tokens) { if ((x$13 === x1$2)) { var $x_1 = true; } else { - var x$15 = $m_Ltigerpython_parser_lexer_TokenType$().v7; + var x$15 = $m_Ltigerpython_parser_lexer_TokenType$().v8; if ((x$15 === x1$2)) { var $x_1 = true; } else { @@ -15641,7 +15641,7 @@ $p.jz = (function(tokens) { if ((x$17 === x1$2)) { var $x_1 = true; } else { - var x$19 = $m_Ltigerpython_parser_lexer_TokenType$().v6; + var x$19 = $m_Ltigerpython_parser_lexer_TokenType$().v7; var $x_1 = (x$19 === x1$2); } } @@ -15670,7 +15670,7 @@ $p.jz = (function(tokens) { if ((x$21 === x1$2)) { var $x_2 = true; } else { - var x$23 = $m_Ltigerpython_parser_lexer_TokenType$().v9; + var x$23 = $m_Ltigerpython_parser_lexer_TokenType$().va; if ((x$23 === x1$2)) { var $x_2 = true; } else { @@ -15729,9 +15729,9 @@ $p.jz = (function(tokens) { if ($x_3) { var x$34 = $m_Ltigerpython_parser_lexer_TokenType$().yh; if ((x1 === x$34)) { - var new_tt = $m_Ltigerpython_parser_lexer_TokenType$().v7; + var new_tt = $m_Ltigerpython_parser_lexer_TokenType$().v8; } else { - var new_tt = $m_Ltigerpython_parser_lexer_TokenType$().v6; + var new_tt = $m_Ltigerpython_parser_lexer_TokenType$().v7; } this.aa.a4(tokens, $m_Ltigerpython_parser_errors_ErrorCode$().j8, new $c_sjsr_WrappedVarArgs([x1, new_tt])); tokens.d0(new_tt); @@ -15781,7 +15781,7 @@ $p.jz = (function(tokens) { break; } case "notin": { - var tt = $m_Ltigerpython_parser_lexer_TokenType$().v9; + var tt = $m_Ltigerpython_parser_lexer_TokenType$().va; break matchResult; break; } @@ -15821,7 +15821,7 @@ $p.jz = (function(tokens) { } if ((x1.fx === $m_Ltigerpython_parser_lexer_TokenType$().dw)) { this.aa.a4(tokens, $m_Ltigerpython_parser_errors_ErrorCode$().k9, $m_sci_Nil$()); - tokens.d0($m_Ltigerpython_parser_lexer_TokenType$().v4); + tokens.d0($m_Ltigerpython_parser_lexer_TokenType$().v5); tokens.m5(curIndex); return this.jz(tokens); } @@ -15869,7 +15869,7 @@ $p.aT = (function(tokens) { } if ($x_1) { var curIndex = tokens.aG; - var name = this.wQ(tokens); + var name = this.wR(tokens); tokens.M(); var value = this.aT(tokens); if ((value instanceof $c_Ltigerpython_parser_ast_AstNode$NamedExpr)) { @@ -15914,10 +15914,10 @@ $p.aT = (function(tokens) { throw e$1; } } - if (($x_3 && tokens.zE(1, $m_Ltigerpython_parser_lexer_TokenType$().a8))) { + if (($x_3 && tokens.zE(1, $m_Ltigerpython_parser_lexer_TokenType$().a7))) { var $x_2 = true; } else { - var array$4 = [$m_Ltigerpython_parser_lexer_TokenType$().S, $m_Ltigerpython_parser_lexer_TokenType$().a8]; + var array$4 = [$m_Ltigerpython_parser_lexer_TokenType$().S, $m_Ltigerpython_parser_lexer_TokenType$().a7]; var nonLocalReturnKey1$2 = $ct_O__(new $c_O()); try { var end$2 = (array$4.length | 0); @@ -15956,7 +15956,7 @@ $p.aT = (function(tokens) { } if (($x_2 && $m_Ltigerpython_parser_lexer_TokenType$().hR(tokens.a9(), $m_Ltigerpython_parser_lexer_TokenType$().s4))) { return this.J6(tokens, true); - } else if ((tokens.V(new $c_sjsr_WrappedVarArgs([$m_Ltigerpython_parser_lexer_TokenType$().lv])) && (!this.aa.vM))) { + } else if ((tokens.V(new $c_sjsr_WrappedVarArgs([$m_Ltigerpython_parser_lexer_TokenType$().lv])) && (!this.aa.vN))) { tokens.d0($m_Ltigerpython_parser_lexer_TokenType$().S); return this.aT(tokens); } else { @@ -15964,7 +15964,7 @@ $p.aT = (function(tokens) { var tokenType = $m_Ltigerpython_parser_lexer_TokenType$().bZ; if (tokens.c()) { var tt = tokens.a9().o; - var $x_5 = ((tt === tokenType) || ((($m_Ltigerpython_parser_lexer_TokenType$().hR(tokens.a9(), tokenType) && (tokens.iH() > 1)) && $m_Ltigerpython_parser_parsing_ExpressionParser$().h1(tokens.jC(1), this.aa)) ? (tokens.hy.l(tokens.m(), $p_Ltigerpython_parser_lexer_TokenBuffer__lineFromPos__I__I(tokens, tokens.m()), $m_Ltigerpython_parser_errors_ErrorCode$().cG, new $c_sjsr_WrappedVarArgs([tokens.a9(), tokenType])), tokens.d0(tokenType), true) : ($m_Ltigerpython_parser_lexer_TokenType$().hR(tokens.a9(), tokenType), false))); + var $x_5 = ((tt === tokenType) || ((($m_Ltigerpython_parser_lexer_TokenType$().hR(tokens.a9(), tokenType) && (tokens.iG() > 1)) && $m_Ltigerpython_parser_parsing_ExpressionParser$().h1(tokens.jC(1), this.aa)) ? (tokens.hy.l(tokens.m(), $p_Ltigerpython_parser_lexer_TokenBuffer__lineFromPos__I__I(tokens, tokens.m()), $m_Ltigerpython_parser_errors_ErrorCode$().cG, new $c_sjsr_WrappedVarArgs([tokens.a9(), tokenType])), tokens.d0(tokenType), true) : ($m_Ltigerpython_parser_lexer_TokenType$().hR(tokens.a9(), tokenType), false))); } else { var $x_5 = false; } @@ -15991,7 +15991,7 @@ $p.Dd = (function(tokens) { var tokenType = $m_Ltigerpython_parser_lexer_TokenType$().pW; if (tokens.c()) { var tt = tokens.a9().o; - var $x_1 = ((tt === tokenType) || ((($m_Ltigerpython_parser_lexer_TokenType$().hR(tokens.a9(), tokenType) && (tokens.iH() > 1)) && $m_Ltigerpython_parser_parsing_ExpressionParser$().h1(tokens.jC(1), this.aa)) ? (tokens.hy.l(tokens.m(), $p_Ltigerpython_parser_lexer_TokenBuffer__lineFromPos__I__I(tokens, tokens.m()), $m_Ltigerpython_parser_errors_ErrorCode$().cG, new $c_sjsr_WrappedVarArgs([tokens.a9(), tokenType])), tokens.d0(tokenType), true) : ($m_Ltigerpython_parser_lexer_TokenType$().hR(tokens.a9(), tokenType), false))); + var $x_1 = ((tt === tokenType) || ((($m_Ltigerpython_parser_lexer_TokenType$().hR(tokens.a9(), tokenType) && (tokens.iG() > 1)) && $m_Ltigerpython_parser_parsing_ExpressionParser$().h1(tokens.jC(1), this.aa)) ? (tokens.hy.l(tokens.m(), $p_Ltigerpython_parser_lexer_TokenBuffer__lineFromPos__I__I(tokens, tokens.m()), $m_Ltigerpython_parser_errors_ErrorCode$().cG, new $c_sjsr_WrappedVarArgs([tokens.a9(), tokenType])), tokens.d0(tokenType), true) : ($m_Ltigerpython_parser_lexer_TokenType$().hR(tokens.a9(), tokenType), false))); } else { var $x_1 = false; } @@ -16010,7 +16010,7 @@ $p.R3 = (function(tokens) { var tokenType = $m_Ltigerpython_parser_lexer_TokenType$().pR; if (tokens.c()) { var tt = tokens.a9().o; - var $x_1 = ((tt === tokenType) || ((($m_Ltigerpython_parser_lexer_TokenType$().hR(tokens.a9(), tokenType) && (tokens.iH() > 1)) && $m_Ltigerpython_parser_parsing_ExpressionParser$().h1(tokens.jC(1), this.aa)) ? (tokens.hy.l(tokens.m(), $p_Ltigerpython_parser_lexer_TokenBuffer__lineFromPos__I__I(tokens, tokens.m()), $m_Ltigerpython_parser_errors_ErrorCode$().cG, new $c_sjsr_WrappedVarArgs([tokens.a9(), tokenType])), tokens.d0(tokenType), true) : ($m_Ltigerpython_parser_lexer_TokenType$().hR(tokens.a9(), tokenType), false))); + var $x_1 = ((tt === tokenType) || ((($m_Ltigerpython_parser_lexer_TokenType$().hR(tokens.a9(), tokenType) && (tokens.iG() > 1)) && $m_Ltigerpython_parser_parsing_ExpressionParser$().h1(tokens.jC(1), this.aa)) ? (tokens.hy.l(tokens.m(), $p_Ltigerpython_parser_lexer_TokenBuffer__lineFromPos__I__I(tokens, tokens.m()), $m_Ltigerpython_parser_errors_ErrorCode$().cG, new $c_sjsr_WrappedVarArgs([tokens.a9(), tokenType])), tokens.d0(tokenType), true) : ($m_Ltigerpython_parser_lexer_TokenType$().hR(tokens.a9(), tokenType), false))); } else { var $x_1 = false; } @@ -16034,7 +16034,7 @@ $p.X2 = (function(tokens) { var this$1 = $m_scm_ArrayBuffer$(); var elems = $m_sci_Nil$(); var result = this$1.al(elems); - while (tokens.V(new $c_sjsr_WrappedVarArgs([$m_Ltigerpython_parser_lexer_TokenType$().v4, $m_Ltigerpython_parser_lexer_TokenType$().Bm, $m_Ltigerpython_parser_lexer_TokenType$().lt, $m_Ltigerpython_parser_lexer_TokenType$().pV, $m_Ltigerpython_parser_lexer_TokenType$().v7, $m_Ltigerpython_parser_lexer_TokenType$().Bl, $m_Ltigerpython_parser_lexer_TokenType$().cT, $m_Ltigerpython_parser_lexer_TokenType$().v9, $m_Ltigerpython_parser_lexer_TokenType$().v6, $m_Ltigerpython_parser_lexer_TokenType$().Bk]))) { + while (tokens.V(new $c_sjsr_WrappedVarArgs([$m_Ltigerpython_parser_lexer_TokenType$().v5, $m_Ltigerpython_parser_lexer_TokenType$().Bm, $m_Ltigerpython_parser_lexer_TokenType$().lt, $m_Ltigerpython_parser_lexer_TokenType$().pV, $m_Ltigerpython_parser_lexer_TokenType$().v8, $m_Ltigerpython_parser_lexer_TokenType$().Bl, $m_Ltigerpython_parser_lexer_TokenType$().cT, $m_Ltigerpython_parser_lexer_TokenType$().va, $m_Ltigerpython_parser_lexer_TokenType$().v7, $m_Ltigerpython_parser_lexer_TokenType$().Bk]))) { if (tokens.V(new $c_sjsr_WrappedVarArgs([$m_Ltigerpython_parser_lexer_TokenType$().lt, $m_Ltigerpython_parser_lexer_TokenType$().pV]))) { var x = tokens.aY(1); var x$2 = $m_Ltigerpython_parser_lexer_TokenType$().cT; @@ -16166,11 +16166,11 @@ $p.R6 = (function(tokens) { var tt = tokens.M().o; var op = $m_Ltigerpython_parser_ast_BinOp$().eN(tt); if (tokens.V(new $c_sjsr_WrappedVarArgs([tt]))) { - if ((tokens.iH() === 1)) { + if ((tokens.iG() === 1)) { var $x_1 = true; - } else if ((tokens.iH() > 1)) { + } else if ((tokens.iG() > 1)) { var this$10 = tokens.aY(1); - var $x_1 = $f_sc_SeqOps__contains__O__Z(new $c_sjsr_WrappedVarArgs([$m_Ltigerpython_parser_lexer_TokenType$().ai, $m_Ltigerpython_parser_lexer_TokenType$().aW, $m_Ltigerpython_parser_lexer_TokenType$().b3, $m_Ltigerpython_parser_lexer_TokenType$().aq, $m_Ltigerpython_parser_lexer_TokenType$().a8, $m_Ltigerpython_parser_lexer_TokenType$().f6]), this$10); + var $x_1 = $f_sc_SeqOps__contains__O__Z(new $c_sjsr_WrappedVarArgs([$m_Ltigerpython_parser_lexer_TokenType$().ai, $m_Ltigerpython_parser_lexer_TokenType$().aW, $m_Ltigerpython_parser_lexer_TokenType$().b3, $m_Ltigerpython_parser_lexer_TokenType$().aq, $m_Ltigerpython_parser_lexer_TokenType$().a7, $m_Ltigerpython_parser_lexer_TokenType$().f6]), this$10); } else { var $x_1 = false; } @@ -16199,7 +16199,7 @@ $p.R6 = (function(tokens) { }); $p.Ro = (function(tokens) { var result = this.t3(tokens); - while ((tokens.V(new $c_sjsr_WrappedVarArgs([$m_Ltigerpython_parser_lexer_TokenType$().gU, $m_Ltigerpython_parser_lexer_TokenType$().pT, $m_Ltigerpython_parser_lexer_TokenType$().yg, $m_Ltigerpython_parser_lexer_TokenType$().v8, $m_Ltigerpython_parser_lexer_TokenType$().pS])) && (result !== null))) { + while ((tokens.V(new $c_sjsr_WrappedVarArgs([$m_Ltigerpython_parser_lexer_TokenType$().gU, $m_Ltigerpython_parser_lexer_TokenType$().pT, $m_Ltigerpython_parser_lexer_TokenType$().yg, $m_Ltigerpython_parser_lexer_TokenType$().v9, $m_Ltigerpython_parser_lexer_TokenType$().pS])) && (result !== null))) { var op = $m_Ltigerpython_parser_ast_BinOp$().eN(tokens.M().o); result = new $c_Ltigerpython_parser_ast_AstNode$BinaryOp(result.m(), op, result, this.t3(tokens)); } @@ -16230,9 +16230,9 @@ $p.t3 = (function(tokens) { $p.Xh = (function(tokens) { if (tokens.c()) { var startPos = tokens.a9().x; - var hasAwait = tokens.af(new $c_sjsr_WrappedVarArgs([$m_Ltigerpython_parser_lexer_TokenType$().v2])); + var hasAwait = tokens.af(new $c_sjsr_WrappedVarArgs([$m_Ltigerpython_parser_lexer_TokenType$().v3])); var result = this.qI(this.R7(tokens), tokens); - var res = (tokens.af(new $c_sjsr_WrappedVarArgs([$m_Ltigerpython_parser_lexer_TokenType$().Bn])) ? new $c_Ltigerpython_parser_ast_AstNode$BinaryOp(startPos, $m_Ltigerpython_parser_ast_BinOp$().y1, result, this.t3(tokens)) : result); + var res = (tokens.af(new $c_sjsr_WrappedVarArgs([$m_Ltigerpython_parser_lexer_TokenType$().Bn])) ? new $c_Ltigerpython_parser_ast_AstNode$BinaryOp(startPos, $m_Ltigerpython_parser_ast_BinOp$().y2, result, this.t3(tokens)) : result); return (hasAwait ? new $c_Ltigerpython_parser_ast_AstNode$Await(startPos, res) : res); } else { return this.aa.a4(tokens, $m_Ltigerpython_parser_errors_ErrorCode$().ja, $m_sci_Nil$()); @@ -16300,7 +16300,7 @@ $p.qI = (function(base, tokens) { var token$2 = tokens.M(); var name$2 = new $c_Ltigerpython_parser_ast_AstNode$Name(token$2.x, token$2.ah); return this.qI(new $c_Ltigerpython_parser_ast_AstNode$Attribute(base.m(), tokens.kB(), base, name$2), tokens); - } else if ((this.aa.MV && tokens.V(new $c_sjsr_WrappedVarArgs([$m_Ltigerpython_parser_lexer_TokenType$().lv, $m_Ltigerpython_parser_lexer_TokenType$().kf, $m_Ltigerpython_parser_lexer_TokenType$().Gh, $m_Ltigerpython_parser_lexer_TokenType$().v2, $m_Ltigerpython_parser_lexer_TokenType$().ns, $m_Ltigerpython_parser_lexer_TokenType$().Bi, $m_Ltigerpython_parser_lexer_TokenType$().Bj, $m_Ltigerpython_parser_lexer_TokenType$().lt, $m_Ltigerpython_parser_lexer_TokenType$().je, $m_Ltigerpython_parser_lexer_TokenType$().lr, $m_Ltigerpython_parser_lexer_TokenType$().lw, $m_Ltigerpython_parser_lexer_TokenType$().ip, $m_Ltigerpython_parser_lexer_TokenType$().jc])))) { + } else if ((this.aa.MV && tokens.V(new $c_sjsr_WrappedVarArgs([$m_Ltigerpython_parser_lexer_TokenType$().lv, $m_Ltigerpython_parser_lexer_TokenType$().kf, $m_Ltigerpython_parser_lexer_TokenType$().Gh, $m_Ltigerpython_parser_lexer_TokenType$().v3, $m_Ltigerpython_parser_lexer_TokenType$().ns, $m_Ltigerpython_parser_lexer_TokenType$().Bi, $m_Ltigerpython_parser_lexer_TokenType$().Bj, $m_Ltigerpython_parser_lexer_TokenType$().lt, $m_Ltigerpython_parser_lexer_TokenType$().je, $m_Ltigerpython_parser_lexer_TokenType$().lr, $m_Ltigerpython_parser_lexer_TokenType$().lw, $m_Ltigerpython_parser_lexer_TokenType$().io, $m_Ltigerpython_parser_lexer_TokenType$().jc])))) { var token$3 = tokens.M(); var name$3 = new $c_Ltigerpython_parser_ast_AstNode$Name(token$3.x, token$3.ah); return this.qI(new $c_Ltigerpython_parser_ast_AstNode$Attribute(base.m(), tokens.kB(), base, name$3), tokens); @@ -16386,7 +16386,7 @@ $p.R7 = (function(tokens) { } else { var x$9 = $m_Ltigerpython_parser_lexer_TokenType$().fy; if ((x$9 === x1)) { - return new $c_Ltigerpython_parser_ast_AstNode$Value(token.x, $m_Ltigerpython_parser_ast_ValueType$().y3); + return new $c_Ltigerpython_parser_ast_AstNode$Value(token.x, $m_Ltigerpython_parser_ast_ValueType$().y4); } else { var x$11 = $m_Ltigerpython_parser_lexer_TokenType$().kf; if ((x$11 === x1)) { @@ -16593,10 +16593,10 @@ $p.R7 = (function(tokens) { return result$6; } } else { - var x$47 = $m_Ltigerpython_parser_lexer_TokenType$().va; + var x$47 = $m_Ltigerpython_parser_lexer_TokenType$().vb; if ((x$47 === x1)) { var result$7 = this.zW(tokens, true); - tokens.bq($m_Ltigerpython_parser_lexer_TokenType$().va); + tokens.bq($m_Ltigerpython_parser_lexer_TokenType$().vb); return $m_Ltigerpython_parser_ast_AstNode$Call$().Yv(token.x, tokens.m(), "repr", result$7); } else { var x$49 = $m_Ltigerpython_parser_lexer_TokenType$().ai; @@ -16612,59 +16612,65 @@ $p.R7 = (function(tokens) { } } if ($x_13) { - var this$63 = this.aa; + var this$60 = this.aa; var pos$4 = token.x; - var code$4 = $m_Ltigerpython_parser_errors_ErrorCode$().il; - var params$4 = new $c_sjsr_WrappedVarArgs([token]); - return this$63.l(pos$4, (-1), code$4, params$4); + var code$4 = $m_Ltigerpython_parser_errors_ErrorCode$().uZ; + var params$4 = $m_sci_Nil$(); + return this$60.l(pos$4, (-1), code$4, params$4); } else { var x$55 = $m_Ltigerpython_parser_lexer_TokenType$().f6; if ((x$55 === x1)) { - return this.aa.a4(tokens, $m_Ltigerpython_parser_errors_ErrorCode$().y5, $m_sci_Nil$()); + var $x_14 = true; + } else { + var x$57 = $m_Ltigerpython_parser_lexer_TokenType$().a7; + var $x_14 = (x$57 === x1); + } + if ($x_14) { + return this.aa.a4(tokens, $m_Ltigerpython_parser_errors_ErrorCode$().uZ, $m_sci_Nil$()); } else { var x1$3 = tokens.c2(); - var x$57 = $m_Ltigerpython_parser_lexer_TokenType$().bt; - if ((x$57 === x1$3)) { - var $x_14 = true; + var x$59 = $m_Ltigerpython_parser_lexer_TokenType$().bt; + if ((x$59 === x1$3)) { + var $x_15 = true; } else { - var x$59 = $m_Ltigerpython_parser_lexer_TokenType$().lu; - if ((x$59 === x1$3)) { - var $x_14 = true; + var x$61 = $m_Ltigerpython_parser_lexer_TokenType$().lu; + if ((x$61 === x1$3)) { + var $x_15 = true; } else { - var x$61 = $m_Ltigerpython_parser_lexer_TokenType$().da; - if ((x$61 === x1$3)) { - var $x_14 = true; + var x$63 = $m_Ltigerpython_parser_lexer_TokenType$().da; + if ((x$63 === x1$3)) { + var $x_15 = true; } else { - var x$63 = $m_Ltigerpython_parser_lexer_TokenType$().cH; - if ((x$63 === x1$3)) { - var $x_14 = true; + var x$65 = $m_Ltigerpython_parser_lexer_TokenType$().cH; + if ((x$65 === x1$3)) { + var $x_15 = true; } else { - var x$65 = $m_Ltigerpython_parser_lexer_TokenType$().fy; - if ((x$65 === x1$3)) { - var $x_14 = true; + var x$67 = $m_Ltigerpython_parser_lexer_TokenType$().fy; + if ((x$67 === x1$3)) { + var $x_15 = true; } else { - var x$67 = $m_Ltigerpython_parser_lexer_TokenType$().dx; - if ((x$67 === x1$3)) { - var $x_14 = true; + var x$69 = $m_Ltigerpython_parser_lexer_TokenType$().dx; + if ((x$69 === x1$3)) { + var $x_15 = true; } else { - var x$69 = $m_Ltigerpython_parser_lexer_TokenType$().s2; - if ((x$69 === x1$3)) { - var $x_14 = true; + var x$71 = $m_Ltigerpython_parser_lexer_TokenType$().s2; + if ((x$71 === x1$3)) { + var $x_15 = true; } else { - var x$71 = $m_Ltigerpython_parser_lexer_TokenType$().aw; - if ((x$71 === x1$3)) { - var $x_14 = true; + var x$73 = $m_Ltigerpython_parser_lexer_TokenType$().aw; + if ((x$73 === x1$3)) { + var $x_15 = true; } else { - var x$73 = $m_Ltigerpython_parser_lexer_TokenType$().bL; - if ((x$73 === x1$3)) { - var $x_14 = true; + var x$75 = $m_Ltigerpython_parser_lexer_TokenType$().bL; + if ((x$75 === x1$3)) { + var $x_15 = true; } else { - var x$75 = $m_Ltigerpython_parser_lexer_TokenType$().bm; - if ((x$75 === x1$3)) { - var $x_14 = true; + var x$77 = $m_Ltigerpython_parser_lexer_TokenType$().bm; + if ((x$77 === x1$3)) { + var $x_15 = true; } else { - var x$77 = $m_Ltigerpython_parser_lexer_TokenType$().S; - var $x_14 = (x$77 === x1$3); + var x$79 = $m_Ltigerpython_parser_lexer_TokenType$().S; + var $x_15 = (x$79 === x1$3); } } } @@ -16675,49 +16681,49 @@ $p.R7 = (function(tokens) { } } } - if ($x_14) { - var this$67 = this.aa; + if ($x_15) { + var this$64 = this.aa; var pos$5 = token.x; var code$5 = $m_Ltigerpython_parser_errors_ErrorCode$().bC; var params$5 = new $c_sjsr_WrappedVarArgs([token]); - this$67.l(pos$5, (-1), code$5, params$5); + this$64.l(pos$5, (-1), code$5, params$5); return this.R7(tokens); } else { - var x$79 = $m_Ltigerpython_parser_lexer_TokenType$().cj; - if ((x$79 === x1$3)) { - var $x_15 = true; + var x$81 = $m_Ltigerpython_parser_lexer_TokenType$().cj; + if ((x$81 === x1$3)) { + var $x_16 = true; } else { - var x$81 = $m_Ltigerpython_parser_lexer_TokenType$().cx; - var $x_15 = (x$81 === x1$3); + var x$83 = $m_Ltigerpython_parser_lexer_TokenType$().cx; + var $x_16 = (x$83 === x1$3); } - if (($x_15 && tokens.CU(1, new $c_sjsr_WrappedVarArgs([$m_Ltigerpython_parser_lexer_TokenType$().bt, $m_Ltigerpython_parser_lexer_TokenType$().da])))) { - var this$74 = this.aa; + if (($x_16 && tokens.CU(1, new $c_sjsr_WrappedVarArgs([$m_Ltigerpython_parser_lexer_TokenType$().bt, $m_Ltigerpython_parser_lexer_TokenType$().da])))) { + var this$71 = this.aa; var pos$6 = token.x; var code$6 = $m_Ltigerpython_parser_errors_ErrorCode$().bC; var params$6 = new $c_sjsr_WrappedVarArgs([token]); - this$74.l(pos$6, (-1), code$6, params$6); + this$71.l(pos$6, (-1), code$6, params$6); return this.t3(tokens); } else if ((token.o.fx === $m_Ltigerpython_parser_lexer_TokenType$().aP)) { if ((tokens.Dg(0) === $m_Ltigerpython_parser_lexer_TokenType$().f7)) { - var this$78 = this.aa; + var this$75 = this.aa; var pos$7 = token.x; var code$7 = $m_Ltigerpython_parser_errors_ErrorCode$().fu; var params$7 = new $c_sjsr_WrappedVarArgs([token.eA()]); - this$78.l(pos$7, (-1), code$7, params$7); + this$75.l(pos$7, (-1), code$7, params$7); return new $c_Ltigerpython_parser_ast_AstNode$Name(token.x, token.eA()); } else { - var this$82 = this.aa; + var this$79 = this.aa; var pos$8 = token.x; var code$8 = $m_Ltigerpython_parser_errors_ErrorCode$().kc; var params$8 = new $c_sjsr_WrappedVarArgs([token.eA()]); - return this$82.l(pos$8, (-1), code$8, params$8); + return this$79.l(pos$8, (-1), code$8, params$8); } } else { - var this$86 = this.aa; + var this$83 = this.aa; var pos$9 = token.x; var code$9 = $m_Ltigerpython_parser_errors_ErrorCode$().kb; var params$9 = new $c_sjsr_WrappedVarArgs([token]); - return this$86.l(pos$9, (-1), code$9, params$9); + return this$83.l(pos$9, (-1), code$9, params$9); } } } @@ -16745,7 +16751,7 @@ $p.Rg = (function(tokens) { var x = tokens.c2(); var x$2 = $m_Ltigerpython_parser_lexer_TokenType$().aq; if ((x === x$2)) { - this.aa.a4(tokens, $m_Ltigerpython_parser_errors_ErrorCode$().y5, $m_sci_Nil$()); + this.aa.a4(tokens, $m_Ltigerpython_parser_errors_ErrorCode$().uZ, $m_sci_Nil$()); var test = new $c_Ltigerpython_parser_ast_AstNode$EmptyExpression(tokens.m()); } else { var test = this.aT(tokens); @@ -16774,7 +16780,7 @@ $p.Rg = (function(tokens) { var this$19 = $m_scm_ArrayBuffer$(); var elems = new $c_sjsr_WrappedVarArgs([test]); var result = this$19.al(elems); - while ((tokens.c() && (!tokens.wG()))) { + while ((tokens.c() && (!tokens.wH()))) { if ((tokens.c2().fx === $m_Ltigerpython_parser_lexer_TokenType$().dw)) { if ((!$f_sc_SeqOps__isEmpty__Z(result))) { this.aa.a4(tokens, $m_Ltigerpython_parser_errors_ErrorCode$().n4, $m_sci_Nil$()); @@ -16784,7 +16790,7 @@ $p.Rg = (function(tokens) { result.I(elem); } else { this.aa.a4(tokens, $m_Ltigerpython_parser_errors_ErrorCode$().k9, $m_sci_Nil$()); - while ((tokens.c() && (!tokens.wG()))) { + while ((tokens.c() && (!tokens.wH()))) { tokens.M(); } var $x_3 = tokens.lX(); @@ -16821,7 +16827,7 @@ $p.Rg = (function(tokens) { if (this.gF(tokens)) { var elem$2 = this.aT(tokens); result.I(elem$2); - } else if (((!tokens.V(new $c_sjsr_WrappedVarArgs([$m_Ltigerpython_parser_lexer_TokenType$().aq]))) && (!tokens.wG()))) { + } else if (((!tokens.V(new $c_sjsr_WrappedVarArgs([$m_Ltigerpython_parser_lexer_TokenType$().aq]))) && (!tokens.wH()))) { tokens.I6(); } } @@ -16853,10 +16859,10 @@ $p.Rg = (function(tokens) { }); $p.X5 = (function(tokens) { var startPos = tokens.m(); - if (tokens.af(new $c_sjsr_WrappedVarArgs([$m_Ltigerpython_parser_lexer_TokenType$().v3]))) { + if (tokens.af(new $c_sjsr_WrappedVarArgs([$m_Ltigerpython_parser_lexer_TokenType$().v4]))) { if (((this.aa.cy < 3) && (!this.aa.ly))) { var this$4 = this.aa; - var code = $m_Ltigerpython_parser_errors_ErrorCode$().im; + var code = $m_Ltigerpython_parser_errors_ErrorCode$().il; var params = $m_sci_Nil$(); this$4.l(startPos, (-1), code, params); } @@ -16864,11 +16870,11 @@ $p.X5 = (function(tokens) { var x1___2 = true; } else { var x1___1 = this.aT(tokens); - var x1___2 = tokens.af(new $c_sjsr_WrappedVarArgs([$m_Ltigerpython_parser_lexer_TokenType$().a8])); + var x1___2 = tokens.af(new $c_sjsr_WrappedVarArgs([$m_Ltigerpython_parser_lexer_TokenType$().a7])); } var test = x1___1; if ((!(!x1___2))) { - var array$2 = [$m_Ltigerpython_parser_lexer_TokenType$().cH, $m_Ltigerpython_parser_lexer_TokenType$().cH, $m_Ltigerpython_parser_lexer_TokenType$().a8]; + var array$2 = [$m_Ltigerpython_parser_lexer_TokenType$().cH, $m_Ltigerpython_parser_lexer_TokenType$().cH, $m_Ltigerpython_parser_lexer_TokenType$().a7]; var nonLocalReturnKey1 = $ct_O__(new $c_O()); try { var end = (array$2.length | 0); @@ -16936,13 +16942,13 @@ $p.X5 = (function(tokens) { var this$31 = $m_scm_ArrayBuffer$(); var elems$1 = new $c_sjsr_WrappedVarArgs([value]); var values = this$31.al(elems$1); - while ((tokens.c() && (!tokens.wG()))) { + while ((tokens.c() && (!tokens.wH()))) { tokens.bq($m_Ltigerpython_parser_lexer_TokenType$().aq); var pairPos = tokens.m(); - if (tokens.af(new $c_sjsr_WrappedVarArgs([$m_Ltigerpython_parser_lexer_TokenType$().v3]))) { + if (tokens.af(new $c_sjsr_WrappedVarArgs([$m_Ltigerpython_parser_lexer_TokenType$().v4]))) { if (((this.aa.cy < 3) && (!this.aa.ly))) { var this$35 = this.aa; - var code$2 = $m_Ltigerpython_parser_errors_ErrorCode$().im; + var code$2 = $m_Ltigerpython_parser_errors_ErrorCode$().il; var params$2 = $m_sci_Nil$(); this$35.l(pairPos, (-1), code$2, params$2); } @@ -16960,9 +16966,9 @@ $p.X5 = (function(tokens) { } else { var key = (this.gF(tokens) ? this.aT(tokens) : null); if ((!tokens.V(new $c_sjsr_WrappedVarArgs([$m_Ltigerpython_parser_lexer_TokenType$().b3])))) { - tokens.bq($m_Ltigerpython_parser_lexer_TokenType$().a8); + tokens.bq($m_Ltigerpython_parser_lexer_TokenType$().a7); if (this.gF(tokens)) { - var array$10 = [$m_Ltigerpython_parser_lexer_TokenType$().cH, $m_Ltigerpython_parser_lexer_TokenType$().cH, $m_Ltigerpython_parser_lexer_TokenType$().a8]; + var array$10 = [$m_Ltigerpython_parser_lexer_TokenType$().cH, $m_Ltigerpython_parser_lexer_TokenType$().cH, $m_Ltigerpython_parser_lexer_TokenType$().a7]; var nonLocalReturnKey1$1 = $ct_O__(new $c_O()); try { var end$1 = (array$10.length | 0); @@ -17081,12 +17087,12 @@ $p.X5 = (function(tokens) { var this$66 = $m_scm_ArrayBuffer$(); var elems$2 = new $c_sjsr_WrappedVarArgs([test]); var items = this$66.al(elems$2); - while ((tokens.c() && (!tokens.wG()))) { + while ((tokens.c() && (!tokens.wH()))) { tokens.bq($m_Ltigerpython_parser_lexer_TokenType$().aq); if (this.gF(tokens)) { var elem$5 = this.aT(tokens); items.I(elem$5); - } else if (((!tokens.wG()) && (!tokens.V(new $c_sjsr_WrappedVarArgs([$m_Ltigerpython_parser_lexer_TokenType$().aq]))))) { + } else if (((!tokens.wH()) && (!tokens.V(new $c_sjsr_WrappedVarArgs([$m_Ltigerpython_parser_lexer_TokenType$().aq]))))) { tokens.I6(); } } @@ -17234,7 +17240,7 @@ $p.Xn = (function(tokens) { } } else if ((x1 instanceof $c_Ltigerpython_parser_ast_AstNode$ListComp)) { var x4 = x1; - return new $c_Ltigerpython_parser_ast_AstNode$Generator(x4.rz, x4.j1, x4.gx); + return new $c_Ltigerpython_parser_ast_AstNode$Generator(x4.rz, x4.j0, x4.gx); } else { return x1; } @@ -17242,8 +17248,8 @@ $p.Xn = (function(tokens) { $p.J6 = (function(tokens, allowIfExpr) { var startPos = tokens.a9().x; tokens.bq($m_Ltigerpython_parser_lexer_TokenType$().s4); - var p = ((!tokens.V(new $c_sjsr_WrappedVarArgs([$m_Ltigerpython_parser_lexer_TokenType$().a8]))) ? this.s8.nw.Rh(tokens, false) : $m_Ltigerpython_parser_ast_AstNode$Parameters$().U6(tokens.m())); - return (tokens.bq($m_Ltigerpython_parser_lexer_TokenType$().a8) ? (allowIfExpr ? new $c_Ltigerpython_parser_ast_AstNode$Lambda(startPos, p, this.aT(tokens)) : new $c_Ltigerpython_parser_ast_AstNode$Lambda(startPos, p, this.Dd(tokens))) : null); + var p = ((!tokens.V(new $c_sjsr_WrappedVarArgs([$m_Ltigerpython_parser_lexer_TokenType$().a7]))) ? this.s8.nw.Rh(tokens, false) : $m_Ltigerpython_parser_ast_AstNode$Parameters$().U6(tokens.m())); + return (tokens.bq($m_Ltigerpython_parser_lexer_TokenType$().a7) ? (allowIfExpr ? new $c_Ltigerpython_parser_ast_AstNode$Lambda(startPos, p, this.aT(tokens)) : new $c_Ltigerpython_parser_ast_AstNode$Lambda(startPos, p, this.Dd(tokens))) : null); }); $p.J3 = (function(tokens) { var this$1 = $m_scm_ArrayBuffer$(); @@ -17307,7 +17313,7 @@ $p.zW = (function(tokens, insertComma) { result.I(elem$1); } } - if (((((insertComma && tokens.c()) && this.gF(tokens)) && (!tokens.V(new $c_sjsr_WrappedVarArgs([$m_Ltigerpython_parser_lexer_TokenType$().va])))) && (!$p_Ltigerpython_parser_parsing_ExpressionParser__stopParsingTestList__sci_Seq__Ltigerpython_parser_lexer_TokenBuffer__Z(this, $m_sci_Seq$().lZ(result), tokens)))) { + if (((((insertComma && tokens.c()) && this.gF(tokens)) && (!tokens.V(new $c_sjsr_WrappedVarArgs([$m_Ltigerpython_parser_lexer_TokenType$().vb])))) && (!$p_Ltigerpython_parser_parsing_ExpressionParser__stopParsingTestList__sci_Seq__Ltigerpython_parser_lexer_TokenBuffer__Z(this, $m_sci_Seq$().lZ(result), tokens)))) { if (((!$f_sc_SeqOps__isEmpty__Z(result)) && tokens.V(new $c_sjsr_WrappedVarArgs([$m_Ltigerpython_parser_lexer_TokenType$().bt, $m_Ltigerpython_parser_lexer_TokenType$().da, $m_Ltigerpython_parser_lexer_TokenType$().cH])))) { var x1 = $f_sc_IndexedSeqOps__last__O(result); matchEnd5: { @@ -17461,7 +17467,7 @@ $p.Ut = (function(token, parserState) { if ($x_2) { return true; } else { - var x$23 = $m_Ltigerpython_parser_lexer_TokenType$().va; + var x$23 = $m_Ltigerpython_parser_lexer_TokenType$().vb; if ((x$23 === x1)) { return true; } else { @@ -17503,7 +17509,7 @@ $p.Ut = (function(token, parserState) { if ((x$39 === x1)) { return true; } else { - var x$41 = $m_Ltigerpython_parser_lexer_TokenType$().v2; + var x$41 = $m_Ltigerpython_parser_lexer_TokenType$().v3; return (x$41 === x1); } } @@ -17585,7 +17591,7 @@ $p.h1 = (function(token, parserState) { if ($x_3) { return true; } else { - var x$29 = $m_Ltigerpython_parser_lexer_TokenType$().va; + var x$29 = $m_Ltigerpython_parser_lexer_TokenType$().vb; if ((x$29 === x1)) { return true; } else { @@ -17622,7 +17628,7 @@ $p.h1 = (function(token, parserState) { if ((x$43 === x1)) { return true; } else { - var x$45 = $m_Ltigerpython_parser_lexer_TokenType$().v2; + var x$45 = $m_Ltigerpython_parser_lexer_TokenType$().v3; return (x$45 === x1); } } @@ -17777,7 +17783,7 @@ $p.g7 = (function(stmt, parent, isFunction, isClass, hasLoop) { this.zj(x5.k5, $m_s_None$()); } this.g7(x5.hu, x5, isFunction, false, true); - this.g7(x5.j3, x5, isFunction, false, hasLoop); + this.g7(x5.j2, x5, isFunction, false, hasLoop); return (void 0); } if ((stmt instanceof $c_Ltigerpython_parser_ast_AstNode$Try)) { @@ -18037,7 +18043,7 @@ $p.g7 = (function(stmt, parent, isFunction, isClass, hasLoop) { } } if ($is_Ltigerpython_parser_ast_AstNode$Body(stmt)) { - this.g7(stmt.wn(), stmt, isFunction, false, hasLoop); + this.g7(stmt.wo(), stmt, isFunction, false, hasLoop); this.g7(stmt.zn(), stmt, isFunction, false, hasLoop); return (void 0); } @@ -18070,7 +18076,7 @@ $p.zj = (function(test, parentOp) { rc7 = true; x2$3 = x1$4; var p3 = x2$3.X; - var x$5 = $m_Ltigerpython_parser_types_BuiltinTypes$().iu; + var x$5 = $m_Ltigerpython_parser_types_BuiltinTypes$().it; if ((x$5 === p3)) { break matchEnd8; } @@ -18140,7 +18146,7 @@ $p.zj = (function(test, parentOp) { var x$19 = $m_Ltigerpython_parser_ast_BinOp$().le; if ((((x$19 === null) ? (p2 === null) : x$19.b(p2)) && (bool instanceof $c_Ltigerpython_parser_ast_AstNode$BooleanValue))) { var x4 = bool; - if (x4.iX) { + if (x4.iW) { var this$16 = this.aQ; var pos$3 = x4.jY; var code$2 = $m_Ltigerpython_parser_errors_ErrorCode$().no; @@ -18163,7 +18169,7 @@ $p.zj = (function(test, parentOp) { var x$21 = $m_Ltigerpython_parser_ast_BinOp$().mV; if ((((x$21 === null) ? (p5 === null) : x$21.b(p5)) && (bool$2 instanceof $c_Ltigerpython_parser_ast_AstNode$BooleanValue))) { var x7 = bool$2; - if (x7.iX) { + if (x7.iW) { var this$24 = this.aQ; var pos$5 = x7.jY; var code$4 = $m_Ltigerpython_parser_errors_ErrorCode$().nq; @@ -18200,7 +18206,7 @@ $p.zj = (function(test, parentOp) { var op2 = x1$8.aC(); var val2 = x1$8.ao(); if ((!((op1 === null) ? (op2 === null) : op1.b(op2)))) { - var x$25 = $m_Ltigerpython_parser_ast_BinOp$().j5; + var x$25 = $m_Ltigerpython_parser_ast_BinOp$().j4; if (((x$25 === null) ? (op1 === null) : x$25.b(op1))) { var x$27 = $m_Ltigerpython_parser_ast_BinOp$().lg; var $x_5 = ((x$27 === null) ? (op2 === null) : x$27.b(op2)); @@ -18212,16 +18218,16 @@ $p.zj = (function(test, parentOp) { } else { var x$29 = $m_Ltigerpython_parser_ast_BinOp$().lg; if (((x$29 === null) ? (op1 === null) : x$29.b(op1))) { - var x$31 = $m_Ltigerpython_parser_ast_BinOp$().j5; + var x$31 = $m_Ltigerpython_parser_ast_BinOp$().j4; var $x_4 = ((x$31 === null) ? (op2 === null) : x$31.b(op2)); } else { var $x_4 = false; } } if ($x_4) { - var op = $m_Ltigerpython_parser_ast_BinOp$().j5; + var op = $m_Ltigerpython_parser_ast_BinOp$().j4; } else { - var x$33 = $m_Ltigerpython_parser_ast_BinOp$().j4; + var x$33 = $m_Ltigerpython_parser_ast_BinOp$().j3; if (((x$33 === null) ? (op1 === null) : x$33.b(op1))) { var x$35 = $m_Ltigerpython_parser_ast_BinOp$().lf; var $x_7 = ((x$35 === null) ? (op2 === null) : x$35.b(op2)); @@ -18233,23 +18239,23 @@ $p.zj = (function(test, parentOp) { } else { var x$37 = $m_Ltigerpython_parser_ast_BinOp$().lf; if (((x$37 === null) ? (op1 === null) : x$37.b(op1))) { - var x$39 = $m_Ltigerpython_parser_ast_BinOp$().j4; + var x$39 = $m_Ltigerpython_parser_ast_BinOp$().j3; var $x_6 = ((x$39 === null) ? (op2 === null) : x$39.b(op2)); } else { var $x_6 = false; } } if ($x_6) { - var op = $m_Ltigerpython_parser_ast_BinOp$().j4; + var op = $m_Ltigerpython_parser_ast_BinOp$().j3; } else { - var op = $m_Ltigerpython_parser_ast_BinOp$().y0; + var op = $m_Ltigerpython_parser_ast_BinOp$().y1; } } } else { var op = op1; } if ((!(val1 instanceof $c_Ltigerpython_parser_ast_AstNode$Value))) { - var x$42 = $m_Ltigerpython_parser_ast_BinOp$().y0; + var x$42 = $m_Ltigerpython_parser_ast_BinOp$().y1; var $x_8 = (!((op === null) ? (x$42 === null) : op.b(x$42))); } else { var $x_8 = false; @@ -18302,7 +18308,7 @@ $p.zj = (function(test, parentOp) { var op2$3 = x1$12.aC(); var val2$3 = x1$12.ao(); if ((!((op1$3 === null) ? (op2$3 === null) : op1$3.b(op2$3)))) { - var x$49 = $m_Ltigerpython_parser_ast_BinOp$().j5; + var x$49 = $m_Ltigerpython_parser_ast_BinOp$().j4; if (((x$49 === null) ? (op1$3 === null) : x$49.b(op1$3))) { var x$51 = $m_Ltigerpython_parser_ast_BinOp$().lg; var $x_10 = ((x$51 === null) ? (op2$3 === null) : x$51.b(op2$3)); @@ -18314,16 +18320,16 @@ $p.zj = (function(test, parentOp) { } else { var x$53 = $m_Ltigerpython_parser_ast_BinOp$().lg; if (((x$53 === null) ? (op1$3 === null) : x$53.b(op1$3))) { - var x$55 = $m_Ltigerpython_parser_ast_BinOp$().j5; + var x$55 = $m_Ltigerpython_parser_ast_BinOp$().j4; var $x_9 = ((x$55 === null) ? (op2$3 === null) : x$55.b(op2$3)); } else { var $x_9 = false; } } if ($x_9) { - var op$2 = $m_Ltigerpython_parser_ast_BinOp$().j5; + var op$2 = $m_Ltigerpython_parser_ast_BinOp$().j4; } else { - var x$57 = $m_Ltigerpython_parser_ast_BinOp$().j4; + var x$57 = $m_Ltigerpython_parser_ast_BinOp$().j3; if (((x$57 === null) ? (op1$3 === null) : x$57.b(op1$3))) { var x$59 = $m_Ltigerpython_parser_ast_BinOp$().lf; var $x_12 = ((x$59 === null) ? (op2$3 === null) : x$59.b(op2$3)); @@ -18335,23 +18341,23 @@ $p.zj = (function(test, parentOp) { } else { var x$61 = $m_Ltigerpython_parser_ast_BinOp$().lf; if (((x$61 === null) ? (op1$3 === null) : x$61.b(op1$3))) { - var x$63 = $m_Ltigerpython_parser_ast_BinOp$().j4; + var x$63 = $m_Ltigerpython_parser_ast_BinOp$().j3; var $x_11 = ((x$63 === null) ? (op2$3 === null) : x$63.b(op2$3)); } else { var $x_11 = false; } } if ($x_11) { - var op$2 = $m_Ltigerpython_parser_ast_BinOp$().j4; + var op$2 = $m_Ltigerpython_parser_ast_BinOp$().j3; } else { - var op$2 = $m_Ltigerpython_parser_ast_BinOp$().y0; + var op$2 = $m_Ltigerpython_parser_ast_BinOp$().y1; } } } else { var op$2 = op1$3; } if ((!(val1$3 instanceof $c_Ltigerpython_parser_ast_AstNode$Value))) { - var x$66 = $m_Ltigerpython_parser_ast_BinOp$().y0; + var x$66 = $m_Ltigerpython_parser_ast_BinOp$().y1; var $x_13 = (!((op$2 === null) ? (x$66 === null) : op$2.b(x$66))); } else { var $x_13 = false; @@ -18442,7 +18448,7 @@ $p.zj = (function(test, parentOp) { } } if ($is_Ltigerpython_parser_ast_AstNode$ExprWrapper(test)) { - this.zj(test.wz(), $m_s_None$()); + this.zj(test.wA(), $m_s_None$()); return (void 0); } if ((test instanceof $c_Ltigerpython_parser_ast_AstNode$BooleanValue)) { @@ -18519,7 +18525,7 @@ $p.CA = (function(pos, leftValue, op, rightValue) { this$4.l(pos, (-1), code$3, params$3); } } else { - var x$5 = $m_Ltigerpython_parser_ast_BinOp$().j5; + var x$5 = $m_Ltigerpython_parser_ast_BinOp$().j4; if (((x$5 === null) ? (op === null) : x$5.b(op))) { if ((leftValue >= rightValue)) { var this$5 = this.aQ; @@ -18537,7 +18543,7 @@ $p.CA = (function(pos, leftValue, op, rightValue) { this$6.l(pos, (-1), code$5, params$5); } } else { - var x$9 = $m_Ltigerpython_parser_ast_BinOp$().j4; + var x$9 = $m_Ltigerpython_parser_ast_BinOp$().j3; if (((x$9 === null) ? (op === null) : x$9.b(op))) { if ((leftValue <= rightValue)) { var this$7 = this.aQ; @@ -18632,14 +18638,14 @@ var $d_Ltigerpython_parser_parsing_ExtParserUtils = new $TypeData().i($c_Ltigerp })); function $p_Ltigerpython_parser_parsing_Parser__lexer$lzycompute__Ltigerpython_parser_lexer_Lexer($thiz) { if (((((1 & $thiz.nx) << 24) >> 24) === 0)) { - $thiz.Bv = new $c_Ltigerpython_parser_lexer_Lexer($thiz.vL, $thiz.p, $thiz.Gp); + $thiz.Bv = new $c_Ltigerpython_parser_lexer_Lexer($thiz.vM, $thiz.p, $thiz.Gp); $thiz.nx = (((1 | $thiz.nx) << 24) >> 24); } return $thiz.Bv; } function $p_Ltigerpython_parser_parsing_Parser__preParser$lzycompute__Ltigerpython_parser_parsing_PreParser($thiz) { if (((((2 & $thiz.nx) << 24) >> 24) === 0)) { - $thiz.Bw = new $c_Ltigerpython_parser_parsing_PreParser($thiz.vL, $thiz.cZ(), $thiz.p); + $thiz.Bw = new $c_Ltigerpython_parser_parsing_PreParser($thiz.vM, $thiz.cZ(), $thiz.p); $thiz.nx = (((2 | $thiz.nx) << 24) >> 24); } return $thiz.Bw; @@ -18649,7 +18655,7 @@ function $p_Ltigerpython_parser_parsing_Parser__preParser__Ltigerpython_parser_p } function $p_Ltigerpython_parser_parsing_Parser__isAlwaysTrue__Ltigerpython_parser_ast_AstNode$Expression__Z($thiz, test) { if ((test instanceof $c_Ltigerpython_parser_ast_AstNode$BooleanValue)) { - if ((test.iX === true)) { + if ((test.iW === true)) { return true; } } @@ -18754,7 +18760,7 @@ function $p_Ltigerpython_parser_parsing_Parser___parseStatements__Ltigerpython_p var arg1 = xs$2.a[x1$1]; var x$8 = arg1; var x$1 = x$8.o; - var x$2$1 = $m_Ltigerpython_parser_lexer_TokenType$().a8; + var x$2$1 = $m_Ltigerpython_parser_lexer_TokenType$().a7; if ((x$1 === x$2$1)) { var $x_4 = i; break _return$1; @@ -18872,7 +18878,7 @@ function $p_Ltigerpython_parser_parsing_Parser___parseStatements__Ltigerpython_p if ((x$28 === tokenType)) { return new ($d_Ltigerpython_parser_ast_AstNode$Statement.r().C)([$thiz.Xj(line)]); } else { - var x$30 = $m_Ltigerpython_parser_lexer_TokenType$().ip; + var x$30 = $m_Ltigerpython_parser_lexer_TokenType$().io; if (((x$30 === tokenType) && (line.dU() || line.ky()))) { return new ($d_Ltigerpython_parser_ast_AstNode$Statement.r().C)([$thiz.Xe(line)]); } else { @@ -18884,7 +18890,7 @@ function $p_Ltigerpython_parser_parsing_Parser___parseStatements__Ltigerpython_p if ((x$34 === tokenType)) { return new ($d_Ltigerpython_parser_ast_AstNode$Statement.r().C)([$thiz.Rp(line)]); } else { - var x$36 = $m_Ltigerpython_parser_lexer_TokenType$().iq; + var x$36 = $m_Ltigerpython_parser_lexer_TokenType$().ip; if ((x$36 === tokenType)) { return new ($d_Ltigerpython_parser_ast_AstNode$Statement.r().C)([$thiz.Xo(line, followLines)]); } else { @@ -18902,7 +18908,7 @@ function $p_Ltigerpython_parser_parsing_Parser___parseStatements__Ltigerpython_p if ($x_9) { if (((line.By !== null) && line.By.dU())) { var this$38 = $m_sc_ArrayOps$().cY(line.By.bk).c9(); - var $x_8 = $f_sc_SeqOps__contains__O__Z(new $c_sjsr_WrappedVarArgs([$m_Ltigerpython_parser_lexer_TokenType$().bZ, $m_Ltigerpython_parser_lexer_TokenType$().e4, $m_Ltigerpython_parser_lexer_TokenType$().iq, $m_Ltigerpython_parser_lexer_TokenType$().bd, $m_Ltigerpython_parser_lexer_TokenType$().jd]), this$38); + var $x_8 = $f_sc_SeqOps__contains__O__Z(new $c_sjsr_WrappedVarArgs([$m_Ltigerpython_parser_lexer_TokenType$().bZ, $m_Ltigerpython_parser_lexer_TokenType$().e4, $m_Ltigerpython_parser_lexer_TokenType$().ip, $m_Ltigerpython_parser_lexer_TokenType$().bd, $m_Ltigerpython_parser_lexer_TokenType$().jd]), this$38); } else { var $x_8 = false; } @@ -18938,7 +18944,7 @@ function $p_Ltigerpython_parser_parsing_Parser___parseStatements__Ltigerpython_p if ((x$5$1 === x1$2)) { var $x_11 = true; } else { - var x$7$1 = $m_Ltigerpython_parser_lexer_TokenType$().iq; + var x$7$1 = $m_Ltigerpython_parser_lexer_TokenType$().ip; if ((x$7$1 === x1$2)) { var $x_11 = true; } else { @@ -18953,7 +18959,7 @@ function $p_Ltigerpython_parser_parsing_Parser___parseStatements__Ltigerpython_p } else { if ((line$1.J.a.length >= 3)) { var x$11 = $m_sc_ArrayOps$().cY(line$1.J).o; - var x$12$1 = $m_Ltigerpython_parser_lexer_TokenType$().a8; + var x$12$1 = $m_Ltigerpython_parser_lexer_TokenType$().a7; var $x_12 = (x$11 === x$12$1); } else { var $x_12 = false; @@ -18972,7 +18978,7 @@ function $p_Ltigerpython_parser_parsing_Parser___parseStatements__Ltigerpython_p if ((x$17 === x1$2$1)) { var $x_10 = true; } else { - var x$19 = $m_Ltigerpython_parser_lexer_TokenType$().iq; + var x$19 = $m_Ltigerpython_parser_lexer_TokenType$().ip; if ((x$19 === x1$2$1)) { var $x_10 = true; } else { @@ -19032,7 +19038,7 @@ function $p_Ltigerpython_parser_parsing_Parser___parseStatements__Ltigerpython_p if ((x$50 === tokenType)) { var $x_14 = true; } else { - var x$52 = $m_Ltigerpython_parser_lexer_TokenType$().v5; + var x$52 = $m_Ltigerpython_parser_lexer_TokenType$().v6; var $x_14 = (x$52 === tokenType); } if ($x_14) { @@ -19127,7 +19133,7 @@ function $p_Ltigerpython_parser_parsing_Parser___parseStatements__Ltigerpython_p if ((x$5$2 === x1$4)) { var $x_18 = true; } else { - var x$7$2 = $m_Ltigerpython_parser_lexer_TokenType$().iq; + var x$7$2 = $m_Ltigerpython_parser_lexer_TokenType$().ip; if ((x$7$2 === x1$4)) { var $x_18 = true; } else { @@ -19142,7 +19148,7 @@ function $p_Ltigerpython_parser_parsing_Parser___parseStatements__Ltigerpython_p } else { if ((line.J.a.length >= 3)) { var x$11$1 = $m_sc_ArrayOps$().cY(line.J).o; - var x$12$2 = $m_Ltigerpython_parser_lexer_TokenType$().a8; + var x$12$2 = $m_Ltigerpython_parser_lexer_TokenType$().a7; var $x_19 = (x$11$1 === x$12$2); } else { var $x_19 = false; @@ -19161,7 +19167,7 @@ function $p_Ltigerpython_parser_parsing_Parser___parseStatements__Ltigerpython_p if ((x$17$1 === x1$2$2)) { var $x_17 = true; } else { - var x$19$1 = $m_Ltigerpython_parser_lexer_TokenType$().iq; + var x$19$1 = $m_Ltigerpython_parser_lexer_TokenType$().ip; if ((x$19$1 === x1$2$2)) { var $x_17 = true; } else { @@ -19178,7 +19184,7 @@ function $p_Ltigerpython_parser_parsing_Parser___parseStatements__Ltigerpython_p } if ($x_17) { var x$60 = $m_sc_ArrayOps$().cY(line.J).o; - var x$61 = $m_Ltigerpython_parser_lexer_TokenType$().a8; + var x$61 = $m_Ltigerpython_parser_lexer_TokenType$().a7; var $x_16 = (x$60 === x$61); } else { var $x_16 = false; @@ -19268,7 +19274,7 @@ function $p_Ltigerpython_parser_parsing_Parser___parseStatements__Ltigerpython_p if ((x$78 === x1$4$1)) { var $x_23 = true; } else { - var x$80 = $m_Ltigerpython_parser_lexer_TokenType$().iq; + var x$80 = $m_Ltigerpython_parser_lexer_TokenType$().ip; if ((x$80 === x1$4$1)) { var $x_23 = true; } else { @@ -19280,7 +19286,7 @@ function $p_Ltigerpython_parser_parsing_Parser___parseStatements__Ltigerpython_p if ((x$84 === x1$4$1)) { var $x_23 = true; } else { - var x$86 = $m_Ltigerpython_parser_lexer_TokenType$().ip; + var x$86 = $m_Ltigerpython_parser_lexer_TokenType$().io; if ((x$86 === x1$4$1)) { var $x_23 = true; } else { @@ -19298,9 +19304,9 @@ function $p_Ltigerpython_parser_parsing_Parser___parseStatements__Ltigerpython_p } } if ($x_23) { - var prefix = x1$4$1.io; + var prefix = x1$4$1.im; if (((headName.length >= 0) && (headName.substring(0, prefix.length) === prefix))) { - var this$89 = x1$4$1.io; + var this$89 = x1$4$1.im; var ttLen = this$89.length; var rest = $m_sc_StringOps$().bp(headName, ttLen); if (((rest === "") && (headName === "repeat"))) { @@ -19342,7 +19348,7 @@ function $p_Ltigerpython_parser_parsing_Parser___parseStatements__Ltigerpython_p var this$103 = $m_s_Array$(); var newLength = ((xs$16.a.length + xs$17.a.length) | 0); if ($d_Ltigerpython_parser_lexer_Token.l().hQ($d_Ltigerpython_parser_lexer_Token.l())) { - var dest$1 = ($d_Ltigerpython_parser_lexer_Token.l().hS() ? this$103.hN(xs$16, newLength) : $m_ju_Arrays$().iC(xs$16, newLength, $d_Ltigerpython_parser_lexer_Token.r().l())); + var dest$1 = ($d_Ltigerpython_parser_lexer_Token.l().hS() ? this$103.hN(xs$16, newLength) : $m_ju_Arrays$().iB(xs$16, newLength, $d_Ltigerpython_parser_lexer_Token.r().l())); } else { var dest = new ($d_Ltigerpython_parser_lexer_Token.r().C)(newLength); $m_s_Array$().bz(xs$16, 0, dest, 0, xs$16.a.length); @@ -19363,7 +19369,7 @@ function $p_Ltigerpython_parser_parsing_Parser___parseStatements__Ltigerpython_p var this$111 = $m_s_Array$(); var newLength$1 = ((xs$18.a.length + xs$19.a.length) | 0); if ($d_Ltigerpython_parser_lexer_Token.l().hQ($d_Ltigerpython_parser_lexer_Token.l())) { - var dest$3 = ($d_Ltigerpython_parser_lexer_Token.l().hS() ? this$111.hN(xs$18, newLength$1) : $m_ju_Arrays$().iC(xs$18, newLength$1, $d_Ltigerpython_parser_lexer_Token.r().l())); + var dest$3 = ($d_Ltigerpython_parser_lexer_Token.l().hS() ? this$111.hN(xs$18, newLength$1) : $m_ju_Arrays$().iB(xs$18, newLength$1, $d_Ltigerpython_parser_lexer_Token.r().l())); } else { var dest$2 = new ($d_Ltigerpython_parser_lexer_Token.r().C)(newLength$1); $m_s_Array$().bz(xs$18, 0, dest$2, 0, xs$18.a.length); @@ -19384,7 +19390,7 @@ function $p_Ltigerpython_parser_parsing_Parser___parseStatements__Ltigerpython_p var this$119 = $m_s_Array$(); var newLength$2 = ((xs$20.a.length + xs$21.a.length) | 0); if ($d_Ltigerpython_parser_lexer_Token.l().hQ($d_Ltigerpython_parser_lexer_Token.l())) { - var dest$5 = ($d_Ltigerpython_parser_lexer_Token.l().hS() ? this$119.hN(xs$20, newLength$2) : $m_ju_Arrays$().iC(xs$20, newLength$2, $d_Ltigerpython_parser_lexer_Token.r().l())); + var dest$5 = ($d_Ltigerpython_parser_lexer_Token.l().hS() ? this$119.hN(xs$20, newLength$2) : $m_ju_Arrays$().iB(xs$20, newLength$2, $d_Ltigerpython_parser_lexer_Token.r().l())); } else { var dest$4 = new ($d_Ltigerpython_parser_lexer_Token.r().C)(newLength$2); $m_s_Array$().bz(xs$20, 0, dest$4, 0, xs$20.a.length); @@ -19484,7 +19490,7 @@ function $p_Ltigerpython_parser_parsing_Parser___parseStatements__Ltigerpython_p if ((!$thiz.p.ly)) { var this$141 = $thiz.p; var pos$14 = line.ak; - var code$14 = $m_Ltigerpython_parser_errors_ErrorCode$().im; + var code$14 = $m_Ltigerpython_parser_errors_ErrorCode$().il; var params$14 = $m_sci_Nil$(); this$141.l(pos$14, (-1), code$14, params$14); } @@ -19653,7 +19659,7 @@ function $p_Ltigerpython_parser_parsing_Parser___parseStatements__Ltigerpython_p if (($m_sc_ArrayOps$().aA(line.bk).VK() && (!$m_sc_ArrayOps$().aA(line.bk).dU()))) { var this$191 = $thiz.p; var pos$20 = $m_sc_ArrayOps$().aA(line.bk).ak; - var code$20 = $m_Ltigerpython_parser_errors_ErrorCode$().y4; + var code$20 = $m_Ltigerpython_parser_errors_ErrorCode$().y5; var params$20 = new $c_sjsr_WrappedVarArgs([$m_sc_ArrayOps$().aA($m_sc_ArrayOps$().aA(line.bk).J)]); this$191.l(pos$20, (-1), code$20, params$20); var $x_36 = $m_s_Predef$(); @@ -19766,7 +19772,7 @@ function $p_Ltigerpython_parser_parsing_Parser___parseStatements__Ltigerpython_p } } else { var x$102 = line.c9(); - var x$103 = $m_Ltigerpython_parser_lexer_TokenType$().ip; + var x$103 = $m_Ltigerpython_parser_lexer_TokenType$().io; if ((x$102 === x$103)) { var $x_37 = true; } else { @@ -20135,7 +20141,7 @@ function $p_Ltigerpython_parser_parsing_Parser__hasBreak__Ltigerpython_parser_as return ($p_Ltigerpython_parser_parsing_Parser__hasBreak__Ltigerpython_parser_ast_AstNode__Z__Z($thiz, x6$2.gv, true) || $p_Ltigerpython_parser_parsing_Parser__hasBreak__Ltigerpython_parser_ast_AstNode__Z__Z($thiz, x6$2.gw, true)); } else if ((node instanceof $c_Ltigerpython_parser_ast_AstNode$While)) { var x7$2 = node; - return ($p_Ltigerpython_parser_parsing_Parser__hasBreak__Ltigerpython_parser_ast_AstNode__Z__Z($thiz, x7$2.hu, true) || $p_Ltigerpython_parser_parsing_Parser__hasBreak__Ltigerpython_parser_ast_AstNode__Z__Z($thiz, x7$2.j3, true)); + return ($p_Ltigerpython_parser_parsing_Parser__hasBreak__Ltigerpython_parser_ast_AstNode__Z__Z($thiz, x7$2.hu, true) || $p_Ltigerpython_parser_parsing_Parser__hasBreak__Ltigerpython_parser_ast_AstNode__Z__Z($thiz, x7$2.j2, true)); } else { return ((node instanceof $c_Ltigerpython_parser_ast_AstNode$Break) ? (!returnOnly) : ((node instanceof $c_Ltigerpython_parser_ast_AstNode$Return) || (node instanceof $c_Ltigerpython_parser_ast_AstNode$Yield))); } @@ -20161,7 +20167,7 @@ function $p_Ltigerpython_parser_parsing_Parser___resultIsCompound$1__scm_ArrayBu } } function $ct_Ltigerpython_parser_parsing_Parser__jl_CharSequence__I__I__Ltigerpython_parser_errors_ErrorHandler__($thiz, source, pythonVersion, caretPos, errorHandler) { - $thiz.vL = source; + $thiz.vM = source; $thiz.Gr = pythonVersion; $thiz.Gp = caretPos; $thiz.s9 = errorHandler; @@ -20171,7 +20177,7 @@ function $ct_Ltigerpython_parser_parsing_Parser__jl_CharSequence__I__I__Ltigerpy $thiz.ki = new $c_Ltigerpython_parser_parsing_ExtParserUtils($thiz, $thiz.p); $thiz.Gq = new $c_Ltigerpython_parser_parsing_PatternParser($thiz, $thiz.p); $thiz.sa = false; - $thiz.vK = true; + $thiz.vL = true; $thiz.kh = new $c_Ltigerpython_parser_parsing_AstStack($thiz); return $thiz; } @@ -20179,7 +20185,7 @@ function $ct_Ltigerpython_parser_parsing_Parser__jl_CharSequence__I__I__Ltigerpy function $c_Ltigerpython_parser_parsing_Parser() { this.Bv = null; this.Bw = null; - this.vL = null; + this.vM = null; this.Gr = 0; this.Gp = 0; this.s9 = null; @@ -20189,7 +20195,7 @@ function $c_Ltigerpython_parser_parsing_Parser() { this.ki = null; this.Gq = null; this.sa = false; - this.vK = false; + this.vL = false; this.kh = null; this.nx = 0; } @@ -20213,9 +20219,9 @@ $p.Qm = (function(caretPos) { } return null; }); -$p.wO = (function() { +$p.wP = (function() { this.sa = false; - this.vK = true; + this.vL = true; var result = this.Df($p_Ltigerpython_parser_parsing_Parser__preParser__Ltigerpython_parser_parsing_PreParser(this)); $f_Ltigerpython_parser_ast_AstVisitor__walkStatement__Ltigerpython_parser_ast_AstNode$Statement__V(new $c_Ltigerpython_parser_parsing_NameContextWalker(), result); var x = this.s9; @@ -20230,7 +20236,7 @@ $p.wO = (function() { return result; }); $p.IZ = (function(tokens) { - var line = $m_Ltigerpython_parser_parsing_PreParser$().OW(tokens, this.vL, this.s9); + var line = $m_Ltigerpython_parser_parsing_PreParser$().OW(tokens, this.vM, this.s9); var result = this.t4(line); var x = this.s9; var x$2 = $m_Ltigerpython_parser_errors_ErrorHandler$SilentErrorHandler$(); @@ -20330,7 +20336,7 @@ $p.Df = (function(lines) { if ((x$5$1 === x1$1)) { var $x_5 = true; } else { - var x$7$1 = $m_Ltigerpython_parser_lexer_TokenType$().iq; + var x$7$1 = $m_Ltigerpython_parser_lexer_TokenType$().ip; if ((x$7$1 === x1$1)) { var $x_5 = true; } else { @@ -20345,7 +20351,7 @@ $p.Df = (function(lines) { } else { if ((line$1.J.a.length >= 3)) { var x$11$1 = $m_sc_ArrayOps$().cY(line$1.J).o; - var x$12 = $m_Ltigerpython_parser_lexer_TokenType$().a8; + var x$12 = $m_Ltigerpython_parser_lexer_TokenType$().a7; var $x_6 = (x$11$1 === x$12); } else { var $x_6 = false; @@ -20364,7 +20370,7 @@ $p.Df = (function(lines) { if ((x$17$1 === x1$2)) { var $x_4 = true; } else { - var x$19 = $m_Ltigerpython_parser_lexer_TokenType$().iq; + var x$19 = $m_Ltigerpython_parser_lexer_TokenType$().ip; if ((x$19 === x1$2)) { var $x_4 = true; } else { @@ -20390,7 +20396,7 @@ $p.Df = (function(lines) { if ((x$2 === x1$3)) { var $x_7 = true; } else { - var x$3$2 = $m_Ltigerpython_parser_lexer_TokenType$().v5; + var x$3$2 = $m_Ltigerpython_parser_lexer_TokenType$().v6; if ((x$3$2 === x1$3)) { var $x_7 = true; } else { @@ -20650,7 +20656,7 @@ $p.Df = (function(lines) { var branch = followLines.s(idx1).J; if ((branch.a.length > 2)) { var x$14 = branch.a[1].o; - var x$2$5 = $m_Ltigerpython_parser_lexer_TokenType$().a8; + var x$2$5 = $m_Ltigerpython_parser_lexer_TokenType$().a7; var $x_22 = (!(x$14 === x$2$5)); } else { var $x_22 = false; @@ -20934,7 +20940,7 @@ $p.Df = (function(lines) { if ((x$25 === x1$4)) { var $x_41 = true; } else { - var x$3$5 = $m_Ltigerpython_parser_lexer_TokenType$().v5; + var x$3$5 = $m_Ltigerpython_parser_lexer_TokenType$().v6; if ((x$3$5 === x1$4)) { var $x_41 = true; } else { @@ -20969,7 +20975,7 @@ $p.Df = (function(lines) { if ((x$27 === x1$5)) { var $x_42 = true; } else { - var x$3$6 = $m_Ltigerpython_parser_lexer_TokenType$().v5; + var x$3$6 = $m_Ltigerpython_parser_lexer_TokenType$().v6; if ((x$3$6 === x1$5)) { var $x_42 = true; } else { @@ -21080,7 +21086,7 @@ $p.Df = (function(lines) { } } } - if (this.vK) { + if (this.vL) { var x1$3$1 = line.c9(); var x$27$1 = $m_Ltigerpython_parser_lexer_TokenType$().hz; if ((!((x$27$1 === x1$3$1) && ((line.J.a.length >= 4) && line.J.a[1].VV("__future__"))))) { @@ -21106,7 +21112,7 @@ $p.Df = (function(lines) { var $x_43 = false; } if ((!$x_43)) { - this.vK = false; + this.vL = false; } } } @@ -21233,7 +21239,7 @@ $p.Rl = (function(line) { if ((!keyword.t())) { var x1$2 = keyword.b7(); var x$3 = $m_Ltigerpython_parser_lexer_TokenType$().lv; - if (((x$3 === x1$2) && ((!this.p.vM) && (name === "print")))) { + if (((x$3 === x1$2) && ((!this.p.vN) && (name === "print")))) { tokens.qo(); this.p.a4(tokens, $m_Ltigerpython_parser_errors_ErrorCode$().pt, $m_sci_Nil$()); stmt = this.Ri(tokens); @@ -21242,7 +21248,7 @@ $p.Rl = (function(line) { if ((x$5 === x1$2)) { var $x_3 = true; } else { - var x$7 = $m_Ltigerpython_parser_lexer_TokenType$().vb; + var x$7 = $m_Ltigerpython_parser_lexer_TokenType$().vc; if ((x$7 === x1$2)) { var $x_3 = true; } else { @@ -21306,7 +21312,7 @@ $p.Rl = (function(line) { var code$1 = $m_Ltigerpython_parser_errors_ErrorCode$().lk; var params$1 = new $c_sjsr_WrappedVarArgs([name]); this$33.l(pos$1, (-1), code$1, params$1); - var target = this.ab.wQ(tokens); + var target = this.ab.wR(tokens); tokens.af(new $c_sjsr_WrappedVarArgs([$m_Ltigerpython_parser_lexer_TokenType$().bi])); var source = this.ab.aT(tokens); stmt = new $c_Ltigerpython_parser_ast_AstNode$Assignment(line.ak, new ($d_Ltigerpython_parser_ast_AstNode$Expression.r().C)([target]), source); @@ -21397,9 +21403,9 @@ $p.Rl = (function(line) { this.p.a4(tokens, $m_Ltigerpython_parser_errors_ErrorCode$().hv, $m_sci_Nil$()); tokens.t9($m_Ltigerpython_parser_lexer_Token$().hO(tokens.dh(), (("" + s1) + s2))); stmt = this.jB(tokens); - } else if ((((s2 !== "") && (this.cZ().dT(((s1 + $cToS($m_jl_Character$().wV(s2.charCodeAt(0)))) + $m_sc_StringOps$().iJ(s2, 1, s2.length))) > 0)) && ((this.cZ().dT(s1) <= 1) || (this.cZ().dT(s2) <= 1)))) { + } else if ((((s2 !== "") && (this.cZ().dT(((s1 + $cToS($m_jl_Character$().wW(s2.charCodeAt(0)))) + $m_sc_StringOps$().iI(s2, 1, s2.length))) > 0)) && ((this.cZ().dT(s1) <= 1) || (this.cZ().dT(s2) <= 1)))) { this.p.a4(tokens, $m_Ltigerpython_parser_errors_ErrorCode$().hv, $m_sci_Nil$()); - tokens.t9($m_Ltigerpython_parser_lexer_Token$().hO(tokens.dh(), ((s1 + $cToS($m_jl_Character$().wV(s2.charCodeAt(0)))) + $m_sc_StringOps$().iJ(s2, 1, s2.length)))); + tokens.t9($m_Ltigerpython_parser_lexer_Token$().hO(tokens.dh(), ((s1 + $cToS($m_jl_Character$().wW(s2.charCodeAt(0)))) + $m_sc_StringOps$().iI(s2, 1, s2.length)))); stmt = this.jB(tokens); } else { if ((this.cZ().dT(((s1 + ".") + s2)) > 0)) { @@ -21440,9 +21446,9 @@ $p.Rl = (function(line) { this.p.a4(tokens, $m_Ltigerpython_parser_errors_ErrorCode$().hv, $m_sci_Nil$()); tokens.t9($m_Ltigerpython_parser_lexer_Token$().hO(tokens.dh(), (("" + s1$2) + s2$2))); stmt = this.jB(tokens); - } else if (((s2$2 !== "") && this.ki.CT(tokens.dh(), ((s1$2 + $cToS($m_jl_Character$().wV(s2$2.charCodeAt(0)))) + $m_sc_StringOps$().iJ(s2$2, 1, s2$2.length))))) { + } else if (((s2$2 !== "") && this.ki.CT(tokens.dh(), ((s1$2 + $cToS($m_jl_Character$().wW(s2$2.charCodeAt(0)))) + $m_sc_StringOps$().iI(s2$2, 1, s2$2.length))))) { this.p.a4(tokens, $m_Ltigerpython_parser_errors_ErrorCode$().hv, $m_sci_Nil$()); - tokens.t9($m_Ltigerpython_parser_lexer_Token$().hO(tokens.dh(), ((s1$2 + $cToS($m_jl_Character$().wV(s2$2.charCodeAt(0)))) + $m_sc_StringOps$().iJ(s2$2, 1, s2$2.length)))); + tokens.t9($m_Ltigerpython_parser_lexer_Token$().hO(tokens.dh(), ((s1$2 + $cToS($m_jl_Character$().wW(s2$2.charCodeAt(0)))) + $m_sc_StringOps$().iI(s2$2, 1, s2$2.length)))); stmt = this.jB(tokens); } } @@ -21539,7 +21545,7 @@ $p.Rl = (function(line) { tokens.kF(); break matchEnd9; } - if ((rc8 && (((x2.bS instanceof $c_Ltigerpython_parser_ast_AstNode$Call) && tokens.V(new $c_sjsr_WrappedVarArgs([$m_Ltigerpython_parser_lexer_TokenType$().a8]))) && line.dU()))) { + if ((rc8 && (((x2.bS instanceof $c_Ltigerpython_parser_ast_AstNode$Call) && tokens.V(new $c_sjsr_WrappedVarArgs([$m_Ltigerpython_parser_lexer_TokenType$().a7]))) && line.dU()))) { var rc7 = false; var x2$2 = null; var x1$3 = x2.bS.dN; @@ -21600,7 +21606,7 @@ $p.Rl = (function(line) { tokens.kF(); break matchEnd9; } - if ((rc8 && (((x2.bS instanceof $c_Ltigerpython_parser_ast_AstNode$Compare) && tokens.V(new $c_sjsr_WrappedVarArgs([$m_Ltigerpython_parser_lexer_TokenType$().a8]))) && line.dU()))) { + if ((rc8 && (((x2.bS instanceof $c_Ltigerpython_parser_ast_AstNode$Compare) && tokens.V(new $c_sjsr_WrappedVarArgs([$m_Ltigerpython_parser_lexer_TokenType$().a7]))) && line.dU()))) { if ($p_Ltigerpython_parser_parsing_Parser__suiteContainsBreak__ALtigerpython_parser_parsing_PreParser$Line__Z(this, line.bk)) { var this$177 = this.p; var pos$16 = line.ak; @@ -21629,7 +21635,7 @@ $p.Rl = (function(line) { } var this$193 = tokens.c2(); if ($f_sc_SeqOps__contains__O__Z(new $c_sjsr_WrappedVarArgs([$m_Ltigerpython_parser_lexer_TokenType$().b3, $m_Ltigerpython_parser_lexer_TokenType$().aW, $m_Ltigerpython_parser_lexer_TokenType$().ai]), this$193)) { - this.p.a4(tokens, $m_Ltigerpython_parser_errors_ErrorCode$().il, $m_sci_Nil$()); + this.p.a4(tokens, $m_Ltigerpython_parser_errors_ErrorCode$().j5, $m_sci_Nil$()); } else { this.p.a4(tokens, $m_Ltigerpython_parser_errors_ErrorCode$().bC, $m_sci_Nil$()); } @@ -21665,7 +21671,7 @@ $p.Rl = (function(line) { tokens.qo(); switch ($m_sc_StringOps$().jG(name$5, idx)) { case "return": { - tokens.d0($m_Ltigerpython_parser_lexer_TokenType$().vb); + tokens.d0($m_Ltigerpython_parser_lexer_TokenType$().vc); break; } case "print": { @@ -21711,7 +21717,7 @@ $p.Rl = (function(line) { if ((expr instanceof $c_Ltigerpython_parser_ast_AstNode$BinaryOp)) { var x2$4 = expr; if ((x2$4.dL instanceof $c_Ltigerpython_parser_ast_AstNode$Name)) { - if ((!this.p.it.zB(x2$4.ih, x2$4.aH()))) { + if ((!this.p.is.zB(x2$4.ih, x2$4.aH()))) { var this$210 = this.p; var code$20 = $m_Ltigerpython_parser_errors_ErrorCode$().pA; var params$20 = new $c_sjsr_WrappedVarArgs([x2$4.fU]); @@ -21723,7 +21729,7 @@ $p.Rl = (function(line) { } } if ($is_Ltigerpython_parser_ast_AstNode$Span(expr)) { - if ((!this.p.it.zB(expr.m(), expr.aH()))) { + if ((!this.p.is.zB(expr.m(), expr.aH()))) { var this$211 = this.p; var code$21 = $m_Ltigerpython_parser_errors_ErrorCode$().kd; var params$21 = $m_sci_Nil$(); @@ -21745,7 +21751,7 @@ $p.Rl = (function(line) { var expr$2 = x2$3.bS; if ((expr$2 instanceof $c_Ltigerpython_parser_ast_AstNode$BinaryOp)) { var x2$5 = expr$2; - if ((!this.p.it.zB(x2$5.ih, x2$5.aH()))) { + if ((!this.p.is.zB(x2$5.ih, x2$5.aH()))) { var this$213 = this.p; var code$23 = $m_Ltigerpython_parser_errors_ErrorCode$().pz; var params$23 = $m_sci_Nil$(); @@ -21776,7 +21782,7 @@ $p.Rl = (function(line) { }); $p.jB = (function(tokens) { if (tokens.c()) { - var x1 = this.p.iI(tokens.a9().o); + var x1 = this.p.iH(tokens.a9().o); var x = $m_Ltigerpython_parser_lexer_TokenType$().MO; if ((x === x1)) { return this.WX(tokens); @@ -21903,7 +21909,7 @@ $p.jB = (function(tokens) { var this$18 = $m_s_Array$(); var newLength = ((xs.a.length + xs$1.a.length) | 0); if ($d_Ltigerpython_parser_ast_AstNode$Name.l().hQ($objectGetClass(xs).dg())) { - var dest$1 = ($d_Ltigerpython_parser_ast_AstNode$Name.l().hS() ? this$18.hN(xs, newLength) : $m_ju_Arrays$().iC(xs, newLength, $d_Ltigerpython_parser_ast_AstNode$Name.r().l())); + var dest$1 = ($d_Ltigerpython_parser_ast_AstNode$Name.l().hS() ? this$18.hN(xs, newLength) : $m_ju_Arrays$().iB(xs, newLength, $d_Ltigerpython_parser_ast_AstNode$Name.r().l())); } else { var dest = new ($d_Ltigerpython_parser_ast_AstNode$Name.r().C)(newLength); $m_s_Array$().bz(xs, 0, dest, 0, xs.a.length); @@ -21925,13 +21931,13 @@ $p.jB = (function(tokens) { } else { var x$21 = $m_Ltigerpython_parser_lexer_TokenType$().lv; if ((x$21 === x1)) { - return (this.p.vM ? this.Ri(tokens) : (tokens.d0($m_Ltigerpython_parser_lexer_TokenType$().S), this.J4(tokens))); + return (this.p.vN ? this.Ri(tokens) : (tokens.d0($m_Ltigerpython_parser_lexer_TokenType$().S), this.J4(tokens))); } else { var x$23 = $m_Ltigerpython_parser_lexer_TokenType$().MQ; if ((x$23 === x1)) { return this.Xi(tokens); } else { - var x$25 = $m_Ltigerpython_parser_lexer_TokenType$().vb; + var x$25 = $m_Ltigerpython_parser_lexer_TokenType$().vc; if ((x$25 === x1)) { return this.Xk(tokens); } else { @@ -21940,7 +21946,7 @@ $p.jB = (function(tokens) { var expr$3 = this.ab.zY(tokens); return new $c_Ltigerpython_parser_ast_AstNode$ExprStatement(expr$3.m(), expr$3); } else { - var x$29 = $m_Ltigerpython_parser_lexer_TokenType$().ip; + var x$29 = $m_Ltigerpython_parser_lexer_TokenType$().io; if ((x$29 === x1)) { var $x_2 = true; } else { @@ -21960,7 +21966,7 @@ $p.jB = (function(tokens) { if ((x$35 === x1)) { if (this.kh.VQ()) { var x$37 = tokens.aY(1); - var x$38 = $m_Ltigerpython_parser_lexer_TokenType$().a8; + var x$38 = $m_Ltigerpython_parser_lexer_TokenType$().a7; var $x_4 = (x$37 === x$38); } else { var $x_4 = false; @@ -21976,8 +21982,8 @@ $p.jB = (function(tokens) { var $x_3 = false; } if ($x_3) { - var result = new $c_Ltigerpython_parser_ast_AstNode$ExprStatement(tokens.m(), this.ab.wQ(tokens)); - tokens.bq($m_Ltigerpython_parser_lexer_TokenType$().a8); + var result = new $c_Ltigerpython_parser_ast_AstNode$ExprStatement(tokens.m(), this.ab.wR(tokens)); + tokens.bq($m_Ltigerpython_parser_lexer_TokenType$().a7); this.ab.aT(tokens); return result; } else { @@ -22006,7 +22012,7 @@ $p.J1 = (function(line, head, fieldName) { while (true) { if (tokens.c()) { var x = tokens.a9().o; - var x$2 = $m_Ltigerpython_parser_lexer_TokenType$().a8; + var x$2 = $m_Ltigerpython_parser_lexer_TokenType$().a7; var $x_1 = (!(x === x$2)); } else { var $x_1 = false; @@ -22017,7 +22023,7 @@ $p.J1 = (function(line, head, fieldName) { break; } } - tokens.bq($m_Ltigerpython_parser_lexer_TokenType$().a8); + tokens.bq($m_Ltigerpython_parser_lexer_TokenType$().a7); return this.hU(tokens, line, head, fieldName); }); $p.hU = (function(tokens, line, head, fieldName) { @@ -22025,7 +22031,7 @@ $p.hU = (function(tokens, line, head, fieldName) { if (((line.bk !== null) && (line.bk.a.length !== 0))) { var this$6 = tokens.c2(); if ($f_sc_SeqOps__contains__O__Z(new $c_sjsr_WrappedVarArgs([$m_Ltigerpython_parser_lexer_TokenType$().b3, $m_Ltigerpython_parser_lexer_TokenType$().aW, $m_Ltigerpython_parser_lexer_TokenType$().ai]), this$6)) { - this.p.a4(tokens, $m_Ltigerpython_parser_errors_ErrorCode$().il, $m_sci_Nil$()); + this.p.a4(tokens, $m_Ltigerpython_parser_errors_ErrorCode$().j5, $m_sci_Nil$()); } else { this.p.a4(tokens, $m_Ltigerpython_parser_errors_ErrorCode$().bC, $m_sci_Nil$()); } @@ -22047,7 +22053,7 @@ $p.hU = (function(tokens, line, head, fieldName) { var unboxedElem = ((elem === null) ? null : elem); jsElems.push(unboxedElem); } - var result$1 = this.t4($x_1.OW(new ($d_Ltigerpython_parser_lexer_Token.r().C)(jsElems), this.vL, this.p)); + var result$1 = this.t4($x_1.OW(new ($d_Ltigerpython_parser_lexer_Token.r().C)(jsElems), this.vM, this.p)); this.kh.Ib(); return result$1; } @@ -22228,7 +22234,7 @@ $p.R4 = (function(line, followLines) { } }); $p.R8 = (function(line) { - this.p.iI($m_Ltigerpython_parser_lexer_TokenType$().ex); + this.p.iH($m_Ltigerpython_parser_lexer_TokenType$().ex); var tokens = line.eV(); tokens.bq($m_Ltigerpython_parser_lexer_TokenType$().ex); var name = this.ab.Ra(tokens); @@ -22270,7 +22276,7 @@ $p.R8 = (function(line) { } if ($x_1) { if ((!this.p.ly)) { - this.p.a4(tokens, $m_Ltigerpython_parser_errors_ErrorCode$().im, $m_sci_Nil$()); + this.p.a4(tokens, $m_Ltigerpython_parser_errors_ErrorCode$().il, $m_sci_Nil$()); } tokens.m8(); tokens.m8(); @@ -22291,28 +22297,28 @@ $p.R8 = (function(line) { tokens.bq($m_Ltigerpython_parser_lexer_TokenType$().ai); if (tokens.V(new $c_sjsr_WrappedVarArgs([$m_Ltigerpython_parser_lexer_TokenType$().ai]))) { var x$3 = tokens.aY(1); - var x$4 = $m_Ltigerpython_parser_lexer_TokenType$().a8; + var x$4 = $m_Ltigerpython_parser_lexer_TokenType$().a7; var $x_2 = (x$3 === x$4); } else { var $x_2 = false; } if ($x_2) { - this.p.a4(tokens, $m_Ltigerpython_parser_errors_ErrorCode$().il, $m_sci_Nil$()); + this.p.a4(tokens, $m_Ltigerpython_parser_errors_ErrorCode$().j5, $m_sci_Nil$()); tokens.m8(); } } - tokens.bq($m_Ltigerpython_parser_lexer_TokenType$().a8); + tokens.bq($m_Ltigerpython_parser_lexer_TokenType$().a7); var result = new $c_Ltigerpython_parser_ast_AstNode$ClassDef(line.ak, line.bD, name, bases, keywords, null); this.hU(tokens, line, result, "body"); result.Jz(); return result; }); $p.Dc = (function(line) { - this.p.iI($m_Ltigerpython_parser_lexer_TokenType$().cb); + this.p.iH($m_Ltigerpython_parser_lexer_TokenType$().cb); var tokens = line.eV(); var isAsync = tokens.af(new $c_sjsr_WrappedVarArgs([$m_Ltigerpython_parser_lexer_TokenType$().g0])); tokens.bq($m_Ltigerpython_parser_lexer_TokenType$().cb); - if ((tokens.V(new $c_sjsr_WrappedVarArgs([$m_Ltigerpython_parser_lexer_TokenType$().a8])) && tokens.CU(1, new $c_sjsr_WrappedVarArgs([$m_Ltigerpython_parser_lexer_TokenType$().S])))) { + if ((tokens.V(new $c_sjsr_WrappedVarArgs([$m_Ltigerpython_parser_lexer_TokenType$().a7])) && tokens.CU(1, new $c_sjsr_WrappedVarArgs([$m_Ltigerpython_parser_lexer_TokenType$().S])))) { this.p.a4(tokens, $m_Ltigerpython_parser_errors_ErrorCode$().bC, $m_sci_Nil$()); tokens.m8(); } @@ -22327,7 +22333,7 @@ $p.Dc = (function(line) { } if (tokens.V(new $c_sjsr_WrappedVarArgs([$m_Ltigerpython_parser_lexer_TokenType$().ai]))) { var x = tokens.aY(1); - var x$2 = $m_Ltigerpython_parser_lexer_TokenType$().a8; + var x$2 = $m_Ltigerpython_parser_lexer_TokenType$().a7; var $x_1 = (x === x$2); } else { var $x_1 = false; @@ -22371,7 +22377,7 @@ $p.Dc = (function(line) { if ($x_2) { this.p.a4(tokens, $m_Ltigerpython_parser_errors_ErrorCode$().pK, new $c_sjsr_WrappedVarArgs(["("])); tokens.d0($m_Ltigerpython_parser_lexer_TokenType$().aw); - } else if ((!tokens.V(new $c_sjsr_WrappedVarArgs([$m_Ltigerpython_parser_lexer_TokenType$().aw, $m_Ltigerpython_parser_lexer_TokenType$().a8])))) { + } else if ((!tokens.V(new $c_sjsr_WrappedVarArgs([$m_Ltigerpython_parser_lexer_TokenType$().aw, $m_Ltigerpython_parser_lexer_TokenType$().a7])))) { var this$40 = this.p; var pos$3 = line.ak; var code$2 = $m_Ltigerpython_parser_errors_ErrorCode$().nd; @@ -22392,7 +22398,7 @@ $p.Dc = (function(line) { this.p.a4(tokens, $m_Ltigerpython_parser_errors_ErrorCode$().fu, $m_sci_Nil$()); var token = tokens.M(); name = new $c_Ltigerpython_parser_ast_AstNode$Name(token.x, token.eA()); - } else if ((!tokens.V(new $c_sjsr_WrappedVarArgs([$m_Ltigerpython_parser_lexer_TokenType$().aw, $m_Ltigerpython_parser_lexer_TokenType$().a8])))) { + } else if ((!tokens.V(new $c_sjsr_WrappedVarArgs([$m_Ltigerpython_parser_lexer_TokenType$().aw, $m_Ltigerpython_parser_lexer_TokenType$().a7])))) { var this$44 = this.p; var pos$4 = line.ak; var code$3 = $m_Ltigerpython_parser_errors_ErrorCode$().nd; @@ -22422,16 +22428,16 @@ $p.Dc = (function(line) { } if (tokens.V(new $c_sjsr_WrappedVarArgs([$m_Ltigerpython_parser_lexer_TokenType$().ai, $m_Ltigerpython_parser_lexer_TokenType$().b3, $m_Ltigerpython_parser_lexer_TokenType$().aW]))) { var x$5 = tokens.aY(1); - var x$6 = $m_Ltigerpython_parser_lexer_TokenType$().a8; + var x$6 = $m_Ltigerpython_parser_lexer_TokenType$().a7; var $x_4 = (x$5 === x$6); } else { var $x_4 = false; } if ($x_4) { - this.p.a4(tokens, $m_Ltigerpython_parser_errors_ErrorCode$().il, $m_sci_Nil$()); + this.p.a4(tokens, $m_Ltigerpython_parser_errors_ErrorCode$().j5, $m_sci_Nil$()); tokens.m8(); } else { - if (((tokens.V(new $c_sjsr_WrappedVarArgs([$m_Ltigerpython_parser_lexer_TokenType$().bi])) && (tokens.iH() > 1)) && (!line.dU()))) { + if (((tokens.V(new $c_sjsr_WrappedVarArgs([$m_Ltigerpython_parser_lexer_TokenType$().bi])) && (tokens.iG() > 1)) && (!line.dU()))) { var this$67 = this.ab; var $x_6 = $m_Ltigerpython_parser_parsing_ExpressionParser$().h1(tokens.jC(1), this$67.aa); } else { @@ -22439,19 +22445,19 @@ $p.Dc = (function(line) { } if ($x_6) { var x$7 = tokens.aY(1); - var x$8 = $m_Ltigerpython_parser_lexer_TokenType$().vb; + var x$8 = $m_Ltigerpython_parser_lexer_TokenType$().vc; var $x_5 = (!(x$7 === x$8)); } else { var $x_5 = false; } if ($x_5) { this.p.a4(tokens, $m_Ltigerpython_parser_errors_ErrorCode$().pe, $m_sci_Nil$()); - tokens.d0($m_Ltigerpython_parser_lexer_TokenType$().vb); - } else if (((!tokens.V(new $c_sjsr_WrappedVarArgs([$m_Ltigerpython_parser_lexer_TokenType$().a8]))) && tokens.ky())) { + tokens.d0($m_Ltigerpython_parser_lexer_TokenType$().vc); + } else if (((!tokens.V(new $c_sjsr_WrappedVarArgs([$m_Ltigerpython_parser_lexer_TokenType$().a7]))) && tokens.ky())) { this.p.a4(tokens, $m_Ltigerpython_parser_errors_ErrorCode$().bC, $m_sci_Nil$()); tokens.kF(); } else { - tokens.bq($m_Ltigerpython_parser_lexer_TokenType$().a8); + tokens.bq($m_Ltigerpython_parser_lexer_TokenType$().a7); } } var result = new $c_Ltigerpython_parser_ast_AstNode$FunctionDef(line.ak, line.bD, name, params$4, null, returns, isAsync); @@ -22460,11 +22466,11 @@ $p.Dc = (function(line) { return result; }); $p.Re = (function(line, followLines) { - this.p.iI($m_Ltigerpython_parser_lexer_TokenType$().bZ); + this.p.iH($m_Ltigerpython_parser_lexer_TokenType$().bZ); var tokens = line.eV(); tokens.M(); - if (tokens.V(new $c_sjsr_WrappedVarArgs([$m_Ltigerpython_parser_lexer_TokenType$().a8]))) { - if ((tokens.iH() > 1)) { + if (tokens.V(new $c_sjsr_WrappedVarArgs([$m_Ltigerpython_parser_lexer_TokenType$().a7]))) { + if ((tokens.iG() > 1)) { var this$4 = this.ab; var $x_1 = $m_Ltigerpython_parser_parsing_ExpressionParser$().h1(tokens.jC(1), this$4.aa); } else { @@ -22491,7 +22497,7 @@ $p.Re = (function(line, followLines) { } if (tokens.c()) { var x = tokens.a9().o; - var x$2 = $m_Ltigerpython_parser_lexer_TokenType$().a8; + var x$2 = $m_Ltigerpython_parser_lexer_TokenType$().a7; var $x_2 = (!(x === x$2)); } else { var $x_2 = false; @@ -22517,9 +22523,9 @@ $p.Re = (function(line, followLines) { var code$2 = $m_Ltigerpython_parser_errors_ErrorCode$().hw; var params$2 = new $c_sjsr_WrappedVarArgs(["C/Java"]); this$17.l(pos$2, (-1), code$2, params$2); - tokens.bq($m_Ltigerpython_parser_lexer_TokenType$().a8); + tokens.bq($m_Ltigerpython_parser_lexer_TokenType$().a7); } else { - if ((!tokens.bq($m_Ltigerpython_parser_lexer_TokenType$().a8))) { + if ((!tokens.bq($m_Ltigerpython_parser_lexer_TokenType$().a7))) { var x$5 = tokens.t5().o; var x$6 = $m_Ltigerpython_parser_lexer_TokenType$().S; var $x_5 = (x$5 === x$6); @@ -22552,10 +22558,10 @@ $p.Re = (function(line, followLines) { return result; }); $p.Xp = (function(line, followLines) { - this.p.iI($m_Ltigerpython_parser_lexer_TokenType$().e4); + this.p.iH($m_Ltigerpython_parser_lexer_TokenType$().e4); var tokens = line.eV(); tokens.M(); - if (tokens.V(new $c_sjsr_WrappedVarArgs([$m_Ltigerpython_parser_lexer_TokenType$().a8]))) { + if (tokens.V(new $c_sjsr_WrappedVarArgs([$m_Ltigerpython_parser_lexer_TokenType$().a7]))) { var this$4 = this.p; var pos = tokens.m(); var code = $m_Ltigerpython_parser_errors_ErrorCode$().ln; @@ -22567,7 +22573,7 @@ $p.Xp = (function(line, followLines) { } if (tokens.c()) { var x = tokens.a9().o; - var x$2 = $m_Ltigerpython_parser_lexer_TokenType$().a8; + var x$2 = $m_Ltigerpython_parser_lexer_TokenType$().a7; var $x_1 = (!(x === x$2)); } else { var $x_1 = false; @@ -22580,11 +22586,11 @@ $p.Xp = (function(line, followLines) { } tokens.kF(); } else { - tokens.bq($m_Ltigerpython_parser_lexer_TokenType$().a8); + tokens.bq($m_Ltigerpython_parser_lexer_TokenType$().a7); } if (this.p.ck) { if ((test instanceof $c_Ltigerpython_parser_ast_AstNode$Value)) { - if (this.p.vN) { + if (this.p.vO) { var this$6 = this.p; var pos$1 = tokens.eT(); var code$1 = $m_Ltigerpython_parser_errors_ErrorCode$().pI; @@ -22605,7 +22611,7 @@ $p.Xp = (function(line, followLines) { return result; }); $p.J5 = (function(line, followLines) { - this.p.iI($m_Ltigerpython_parser_lexer_TokenType$().bd); + this.p.iH($m_Ltigerpython_parser_lexer_TokenType$().bd); var tokens = line.eV(); var is_async = tokens.af(new $c_sjsr_WrappedVarArgs([$m_Ltigerpython_parser_lexer_TokenType$().g0])); tokens.M(); @@ -22622,7 +22628,7 @@ $p.J5 = (function(line, followLines) { var x2 = x1; var index = (x2.X | 0); var x = tokens.aY(((1 + index) | 0)); - if ($f_sc_SeqOps__contains__O__Z(new $c_sjsr_WrappedVarArgs([$m_Ltigerpython_parser_lexer_TokenType$().a8, $m_Ltigerpython_parser_lexer_TokenType$().bm]), x)) { + if ($f_sc_SeqOps__contains__O__Z(new $c_sjsr_WrappedVarArgs([$m_Ltigerpython_parser_lexer_TokenType$().a7, $m_Ltigerpython_parser_lexer_TokenType$().bm]), x)) { var this$18 = this.p; var pos$1 = line.ak; var code$1 = $m_Ltigerpython_parser_errors_ErrorCode$().hw; @@ -22647,7 +22653,7 @@ $p.J5 = (function(line, followLines) { var token = tokens.M(); var target = new $c_Ltigerpython_parser_ast_AstNode$Name(token.x, token.eA()); } else { - var target = (tokens.V(new $c_sjsr_WrappedVarArgs([$m_Ltigerpython_parser_lexer_TokenType$().a8])) ? null : this.ab.zV(tokens)); + var target = (tokens.V(new $c_sjsr_WrappedVarArgs([$m_Ltigerpython_parser_lexer_TokenType$().a7])) ? null : this.ab.zV(tokens)); } if ((target === null)) { var this$22 = this.p; @@ -22690,25 +22696,25 @@ $p.J5 = (function(line, followLines) { if (((!tokens.c()) && ((target === null) || (iter === null)))) { return null; } - tokens.bq($m_Ltigerpython_parser_lexer_TokenType$().a8); + tokens.bq($m_Ltigerpython_parser_lexer_TokenType$().a7); var result = new $c_Ltigerpython_parser_ast_AstNode$For(line.ak, line.bD, target, iter, null, null, is_async); this.hU(tokens, line, result, "body"); this.J2(followLines, result); return result; }); $p.Xj = (function(line) { - this.p.iI($m_Ltigerpython_parser_lexer_TokenType$().je); + this.p.iH($m_Ltigerpython_parser_lexer_TokenType$().je); var tokens = line.eV(); var startPos = tokens.M().x; - if (tokens.af(new $c_sjsr_WrappedVarArgs([$m_Ltigerpython_parser_lexer_TokenType$().a8]))) { - if ((((tokens.iH() === 1) && tokens.V(new $c_sjsr_WrappedVarArgs([$m_Ltigerpython_parser_lexer_TokenType$().bt, $m_Ltigerpython_parser_lexer_TokenType$().S]))) && line.dU())) { + if (tokens.af(new $c_sjsr_WrappedVarArgs([$m_Ltigerpython_parser_lexer_TokenType$().a7]))) { + if ((((tokens.iG() === 1) && tokens.V(new $c_sjsr_WrappedVarArgs([$m_Ltigerpython_parser_lexer_TokenType$().bt, $m_Ltigerpython_parser_lexer_TokenType$().S]))) && line.dU())) { var this$10 = this.p; var pos = tokens.m(); var code = $m_Ltigerpython_parser_errors_ErrorCode$().j9; var params = new $c_sjsr_WrappedVarArgs([":", tokens.a9()]); this$10.l(pos, (-1), code, params); var count = this.ab.hV(tokens); - tokens.kz($m_Ltigerpython_parser_lexer_TokenType$().a8); + tokens.kz($m_Ltigerpython_parser_lexer_TokenType$().a7); var result = new $c_Ltigerpython_parser_ast_AstNode$For(line.ak, line.bD, null, $m_Ltigerpython_parser_ast_AstNode$Call$().QF(line.ak, "range", new $c_sjsr_WrappedVarArgs([count])), null, null, false); this.J1(line, result, "body"); return result; @@ -22725,37 +22731,37 @@ $p.Xj = (function(line) { return result$2; } else { var count$2 = this.ab.aT(tokens); - tokens.bq($m_Ltigerpython_parser_lexer_TokenType$().a8); + tokens.bq($m_Ltigerpython_parser_lexer_TokenType$().a7); var result$3 = new $c_Ltigerpython_parser_ast_AstNode$For(line.ak, line.bD, null, $m_Ltigerpython_parser_ast_AstNode$Call$().QF(line.ak, "range", new $c_sjsr_WrappedVarArgs([count$2])), null, null, false); this.hU(tokens, line, result$3, "body"); return result$3; } }); $p.Xe = (function(line) { - this.p.iI($m_Ltigerpython_parser_lexer_TokenType$().ip); + this.p.iH($m_Ltigerpython_parser_lexer_TokenType$().io); var tokens = line.eV(); tokens.M(); var subject = this.ab.aT(tokens); - tokens.bq($m_Ltigerpython_parser_lexer_TokenType$().a8); + tokens.bq($m_Ltigerpython_parser_lexer_TokenType$().a7); var cases = this.Xf(line); return new $c_Ltigerpython_parser_ast_AstNode$Match(line.ak, line.bD, subject, cases); }); $p.WZ = (function(line) { - this.p.iI($m_Ltigerpython_parser_lexer_TokenType$().jc); + this.p.iH($m_Ltigerpython_parser_lexer_TokenType$().jc); var tokens = line.eV(); tokens.M(); var pattern = this.Gq.J9(tokens, false); var guard = (tokens.af(new $c_sjsr_WrappedVarArgs([$m_Ltigerpython_parser_lexer_TokenType$().bZ])) ? this.ab.aT(tokens) : null); - tokens.bq($m_Ltigerpython_parser_lexer_TokenType$().a8); + tokens.bq($m_Ltigerpython_parser_lexer_TokenType$().a7); var result = new $c_Ltigerpython_parser_ast_AstNode$MatchCase(line.ak, line.bD, pattern, guard, null); this.hU(tokens, line, result, "body"); return result; }); $p.Xo = (function(line, followLines) { - this.p.iI($m_Ltigerpython_parser_lexer_TokenType$().iq); + this.p.iH($m_Ltigerpython_parser_lexer_TokenType$().ip); var tokens = line.eV(); var startPos = tokens.M().x; - tokens.af(new $c_sjsr_WrappedVarArgs([$m_Ltigerpython_parser_lexer_TokenType$().a8])); + tokens.af(new $c_sjsr_WrappedVarArgs([$m_Ltigerpython_parser_lexer_TokenType$().a7])); var deadCode = this.p.q2; this.p.q2 = false; var xs = $m_sci_Nil$(); @@ -22787,7 +22793,7 @@ $p.Xo = (function(line, followLines) { hasExceptOrFinally.or = true; return (void 0); } else { - var x$5 = $m_Ltigerpython_parser_lexer_TokenType$().v5; + var x$5 = $m_Ltigerpython_parser_lexer_TokenType$().v6; if ((x$5 === x1)) { this.J1(fLine, result, "final"); hasExceptOrFinally.or = true; @@ -22824,25 +22830,25 @@ $p.Xo = (function(line, followLines) { return result; }); $p.X8 = (function(line) { - this.p.iI($m_Ltigerpython_parser_lexer_TokenType$().pU); + this.p.iH($m_Ltigerpython_parser_lexer_TokenType$().pU); var tokens = line.eV(); var startPos = tokens.a9().x; tokens.af(new $c_sjsr_WrappedVarArgs([$m_Ltigerpython_parser_lexer_TokenType$().pU])); - if (tokens.af(new $c_sjsr_WrappedVarArgs([$m_Ltigerpython_parser_lexer_TokenType$().a8]))) { + if (tokens.af(new $c_sjsr_WrappedVarArgs([$m_Ltigerpython_parser_lexer_TokenType$().a7]))) { var result = new $c_Ltigerpython_parser_ast_AstNode$ExceptHandler(startPos, null, null, null); this.hU(tokens, line, result, "body"); return result; } else { var test = this.ab.aT(tokens); var name = (tokens.af(new $c_sjsr_WrappedVarArgs([$m_Ltigerpython_parser_lexer_TokenType$().aq, $m_Ltigerpython_parser_lexer_TokenType$().yc])) ? this.ab.aT(tokens) : null); - tokens.af(new $c_sjsr_WrappedVarArgs([$m_Ltigerpython_parser_lexer_TokenType$().a8])); + tokens.af(new $c_sjsr_WrappedVarArgs([$m_Ltigerpython_parser_lexer_TokenType$().a7])); var result$2 = new $c_Ltigerpython_parser_ast_AstNode$ExceptHandler(startPos, test, name, null); this.hU(tokens, line, result$2, "body"); return result$2; } }); $p.Rp = (function(line) { - this.p.iI($m_Ltigerpython_parser_lexer_TokenType$().pY); + this.p.iH($m_Ltigerpython_parser_lexer_TokenType$().pY); var tokens = line.eV(); return this.OY(tokens, line, tokens.af(new $c_sjsr_WrappedVarArgs([$m_Ltigerpython_parser_lexer_TokenType$().g0]))); }); @@ -22854,7 +22860,7 @@ $p.OY = (function(tokens, line, isAsync) { } else { var asExpr = (tokens.af(new $c_sjsr_WrappedVarArgs([$m_Ltigerpython_parser_lexer_TokenType$().yc])) ? this.ab.hV(tokens) : null); var result = new $c_Ltigerpython_parser_ast_AstNode$With(test.m(), line.bD, test, asExpr, null, isAsync); - if (tokens.af(new $c_sjsr_WrappedVarArgs([$m_Ltigerpython_parser_lexer_TokenType$().a8]))) { + if (tokens.af(new $c_sjsr_WrappedVarArgs([$m_Ltigerpython_parser_lexer_TokenType$().a7]))) { this.hU(tokens, line, result, "body"); } else { result.gz = this.OY(tokens, line, isAsync); @@ -22868,7 +22874,7 @@ $p.OY = (function(tokens, line, isAsync) { $p.J2 = (function(lines, head) { var nonLocalReturnKey6 = $ct_O__(new $c_O()); try { - this.p.iI($m_Ltigerpython_parser_lexer_TokenType$().gA); + this.p.iH($m_Ltigerpython_parser_lexer_TokenType$().gA); lines.az(new $c_sjsr_AnonFunction1(((line$2) => { var line = line$2; var x = line.c9(); @@ -22876,7 +22882,7 @@ $p.J2 = (function(lines, head) { if ((x === x$2)) { var tokens = line.eV(); tokens.M(); - if ((!tokens.af(new $c_sjsr_WrappedVarArgs([$m_Ltigerpython_parser_lexer_TokenType$().a8])))) { + if ((!tokens.af(new $c_sjsr_WrappedVarArgs([$m_Ltigerpython_parser_lexer_TokenType$().a7])))) { if (tokens.V(new $c_sjsr_WrappedVarArgs([$m_Ltigerpython_parser_lexer_TokenType$().bZ]))) { this.p.a4(tokens, $m_Ltigerpython_parser_errors_ErrorCode$().pF, $m_sci_Nil$()); tokens.qo(); @@ -23088,7 +23094,7 @@ $p.Xd = (function(tokens) { } else { throw new $c_s_MatchError(names$2); } - if ((!this.vK)) { + if ((!this.vL)) { var this$45 = this.p; var code$3 = $m_Ltigerpython_parser_errors_ErrorCode$().p9; var params$3 = $m_sci_Nil$(); @@ -23110,7 +23116,7 @@ $p.Xd = (function(tokens) { } case "print_function": { this.sa = true; - this.p.vM = false; + this.p.vN = false; break; } case "unicode_literals": { @@ -23870,7 +23876,7 @@ function $p_Ltigerpython_parser_parsing_PatternParser__parseMaybeStarPattern__Lt var pos = tokens.m(); return (tokens.V(new $c_sjsr_WrappedVarArgs([$m_Ltigerpython_parser_lexer_TokenType$().S])) ? ((tokens.jC(0).ah === "_") ? new $c_Ltigerpython_parser_ast_AstNode$MatchStar(pos, null) : new $c_Ltigerpython_parser_ast_AstNode$MatchStar(pos, $p_Ltigerpython_parser_parsing_PatternParser__parseCaptureName__Ltigerpython_parser_lexer_TokenBuffer__Ltigerpython_parser_ast_AstNode$Name($thiz, tokens))) : new $c_Ltigerpython_parser_ast_AstNode$MatchStar(pos, null)); } else { - return $thiz.wP(tokens); + return $thiz.wQ(tokens); } } function $p_Ltigerpython_parser_parsing_PatternParser__parseNumericLiteral__Ltigerpython_parser_lexer_TokenBuffer__Ltigerpython_parser_ast_AstNode$Expression($thiz, tokens) { @@ -24201,7 +24207,7 @@ function $p_Ltigerpython_parser_parsing_PatternParser__parseNameBasedPattern__Lt } } if ((!$x_1)) { - var elem = $thiz.wP(tokens); + var elem = $thiz.wQ(tokens); posArgs.I(elem); while (true) { if ((tokens.af(new $c_sjsr_WrappedVarArgs([$m_Ltigerpython_parser_lexer_TokenType$().aq])) && (!tokens.V(new $c_sjsr_WrappedVarArgs([$m_Ltigerpython_parser_lexer_TokenType$().ai]))))) { @@ -24246,7 +24252,7 @@ function $p_Ltigerpython_parser_parsing_PatternParser__parseNameBasedPattern__Lt var $x_2 = false; } if ($x_2) { - var elem$1 = $thiz.wP(tokens); + var elem$1 = $thiz.wQ(tokens); posArgs.I(elem$1); } else { break; @@ -24293,7 +24299,7 @@ function $p_Ltigerpython_parser_parsing_PatternParser__parseNameBasedPattern__Lt var token$1 = tokens.M(); var keyword = new $c_Ltigerpython_parser_ast_AstNode$Name(token$1.x, token$1.ah); tokens.af(new $c_sjsr_WrappedVarArgs([$m_Ltigerpython_parser_lexer_TokenType$().bi])); - var value = $thiz.wP(tokens); + var value = $thiz.wQ(tokens); var elem$2 = $ct_T2__O__O__(new $c_T2(), keyword, value); kwArgs.I(elem$2); while (true) { @@ -24341,7 +24347,7 @@ function $p_Ltigerpython_parser_parsing_PatternParser__parseNameBasedPattern__Lt var token$2 = tokens.M(); var keyword$2 = new $c_Ltigerpython_parser_ast_AstNode$Name(token$2.x, token$2.ah); tokens.af(new $c_sjsr_WrappedVarArgs([$m_Ltigerpython_parser_lexer_TokenType$().bi])); - var value$2 = $thiz.wP(tokens); + var value$2 = $thiz.wQ(tokens); var elem$3 = $ct_T2__O__O__(new $c_T2(), keyword$2, value$2); kwArgs.I(elem$3); } else { @@ -24523,8 +24529,8 @@ function $p_Ltigerpython_parser_parsing_PatternParser__parseKeyValuePair__Ltiger } } } - tokens.bq($m_Ltigerpython_parser_lexer_TokenType$().a8); - return new $c_s_Some($ct_T2__O__O__(new $c_T2(), key, $thiz.wP(tokens))); + tokens.bq($m_Ltigerpython_parser_lexer_TokenType$().a7); + return new $c_s_Some($ct_T2__O__O__(new $c_T2(), key, $thiz.wQ(tokens))); } function $p_Ltigerpython_parser_parsing_PatternParser__parseKeyValuePairs__Ltigerpython_parser_lexer_TokenBuffer__sci_List($thiz, tokens) { var x1 = $p_Ltigerpython_parser_parsing_PatternParser__parseKeyValuePair__Ltigerpython_parser_lexer_TokenBuffer__s_Option($thiz, tokens); @@ -24553,7 +24559,7 @@ $p.J9 = (function(tokens, mustBeSeq) { var this$4 = $m_scm_ArrayBuffer$(); var elems = new $c_sjsr_WrappedVarArgs([$p_Ltigerpython_parser_parsing_PatternParser__parseMaybeStarPattern__Ltigerpython_parser_lexer_TokenBuffer__Ltigerpython_parser_ast_AstNode$Pattern(this, tokens)]); var result = this$4.al(elems); - while ((tokens.af(new $c_sjsr_WrappedVarArgs([$m_Ltigerpython_parser_lexer_TokenType$().aq])) && (!tokens.V(new $c_sjsr_WrappedVarArgs([$m_Ltigerpython_parser_lexer_TokenType$().a8, $m_Ltigerpython_parser_lexer_TokenType$().ai, $m_Ltigerpython_parser_lexer_TokenType$().b3, $m_Ltigerpython_parser_lexer_TokenType$().aW, $m_Ltigerpython_parser_lexer_TokenType$().bZ]))))) { + while ((tokens.af(new $c_sjsr_WrappedVarArgs([$m_Ltigerpython_parser_lexer_TokenType$().aq])) && (!tokens.V(new $c_sjsr_WrappedVarArgs([$m_Ltigerpython_parser_lexer_TokenType$().a7, $m_Ltigerpython_parser_lexer_TokenType$().ai, $m_Ltigerpython_parser_lexer_TokenType$().b3, $m_Ltigerpython_parser_lexer_TokenType$().aW, $m_Ltigerpython_parser_lexer_TokenType$().bZ]))))) { var elem = $p_Ltigerpython_parser_parsing_PatternParser__parseMaybeStarPattern__Ltigerpython_parser_lexer_TokenBuffer__Ltigerpython_parser_ast_AstNode$Pattern(this, tokens); result.I(elem); } @@ -24583,7 +24589,7 @@ $p.J9 = (function(tokens, mustBeSeq) { return new $c_Ltigerpython_parser_ast_AstNode$MatchSequence(pos, $x_1); } }); -$p.wP = (function(tokens) { +$p.wQ = (function(tokens) { var pos = tokens.m(); var result = this.Xg(tokens); return (tokens.af(new $c_sjsr_WrappedVarArgs([$m_Ltigerpython_parser_lexer_TokenType$().yc])) ? new $c_Ltigerpython_parser_ast_AstNode$MatchAs(pos, result, $p_Ltigerpython_parser_parsing_PatternParser__parseCaptureName__Ltigerpython_parser_lexer_TokenBuffer__Ltigerpython_parser_ast_AstNode$Name(this, tokens)) : result); @@ -24980,7 +24986,7 @@ function $p_Ltigerpython_parser_scopes_AstWalker__getStringValue__Ltigerpython_p var x3 = node; if ((x3.CQ() === "__doc__")) { var x1$2 = $p_Ltigerpython_parser_scopes_AstWalker__getAttributeBase__Ltigerpython_parser_ast_AstNode$Expression__s_Option($thiz, x3.dK); - return ((x1$2 instanceof $c_s_Some) ? x1$2.X.ww() : null); + return ((x1$2 instanceof $c_s_Some) ? x1$2.X.wx() : null); } } if ((node instanceof $c_Ltigerpython_parser_ast_AstNode$BinaryOp)) { @@ -25078,7 +25084,7 @@ $p.constructor = $c_Ltigerpython_parser_scopes_AstWalker; function $h_Ltigerpython_parser_scopes_AstWalker() { } $h_Ltigerpython_parser_scopes_AstWalker.prototype = $p; -$p.wu = (function(dest, dataType) { +$p.wv = (function(dest, dataType) { if ((dest instanceof $c_Ltigerpython_parser_ast_AstNode$Name)) { var x2 = dest; var target = x2.R; @@ -25123,7 +25129,7 @@ $p.ag = (function(node) { this.JJ(node); } else if ((node instanceof $c_Ltigerpython_parser_ast_AstNode$Return)) { var x12 = node; - var x1$2 = x12.j2; + var x1$2 = x12.j1; matchEnd5: { var dt; if ((x1$2 instanceof $c_Ltigerpython_parser_ast_AstNode$Tuple)) { @@ -25260,7 +25266,7 @@ $p.ag = (function(node) { this.JM(x15); } } else if ($is_Ltigerpython_parser_ast_AstNode$Body(node)) { - this.ag(node.wn()); + this.ag(node.wo()); this.ag(node.zn()); } }); @@ -25273,7 +25279,7 @@ $p.JC = (function(assignment) { var target = target$2; if ((target instanceof $c_Ltigerpython_parser_ast_AstNode$Name)) { var expr = assignment.cQ; - this.wu(target, this.e7.bl(expr)); + this.wv(target, this.e7.bl(expr)); } else if ((target instanceof $c_Ltigerpython_parser_ast_AstNode$Tuple)) { var x3 = target; var x1$2 = assignment.cQ; @@ -25288,7 +25294,7 @@ $p.JC = (function(assignment) { var v1 = i; var $x_1 = x3.aN.a[v1]; var expr$1 = x2.aN.a[v1]; - this.wu($x_1, this.e7.bl(expr$1)); + this.wv($x_1, this.e7.bl(expr$1)); if ((i === this$4.e1)) { break; } @@ -25310,7 +25316,7 @@ $p.JC = (function(assignment) { var i$1 = this$6.b9; while (true) { var v1$1 = i$1; - this.wu(x3.aN.a[v1$1], x2$2.yt.a[v1$1]); + this.wv(x3.aN.a[v1$1], x2$2.yt.a[v1$1]); if ((i$1 === this$6.e1)) { break; } @@ -25323,7 +25329,7 @@ $p.JC = (function(assignment) { var xs$3 = x3.aN; var f = ((t$2) => { var t = t$2; - this.wu(t, $m_Ltigerpython_parser_types_BuiltinTypes$().ar); + this.wv(t, $m_Ltigerpython_parser_types_BuiltinTypes$().ar); }); var len = xs$3.a.length; var i$2 = 0; @@ -25400,7 +25406,7 @@ $p.JC = (function(assignment) { var xs$4 = x3.aN; var f$1 = ((t$3$2) => { var t$3 = t$3$2; - this.wu(t$3, $m_Ltigerpython_parser_types_BuiltinTypes$().ar); + this.wv(t$3, $m_Ltigerpython_parser_types_BuiltinTypes$().ar); }); var len$1 = xs$4.a.length; var i$3 = 0; @@ -25507,7 +25513,7 @@ $p.JC = (function(assignment) { } } var expr$2 = assignment.cQ; - this.wu(x4$2, this.e7.bl(expr$2)); + this.wv(x4$2, this.e7.bl(expr$2)); } }); var len$2 = xs.a.length; @@ -25706,7 +25712,7 @@ $p.JD = (function(cls) { } } var result = new $c_Ltigerpython_parser_types_PythonClass(cls.l5.R, ys$1); - var s = cls.xD; + var s = cls.xE; result.bM = s; var x1 = this.dz; if ((x1 instanceof $c_Ltigerpython_parser_scopes_ClassScope)) { @@ -25785,7 +25791,7 @@ $p.JF = (function(function$1) { var x$1 = function$1.eo.mP; var that = params.a.length; var result = new $c_Ltigerpython_parser_types_PythonFunction($x_5, params, ((x$1 < that) ? x$1 : that), $m_Ltigerpython_parser_types_BuiltinTypes$().ar); - var s = function$1.xE; + var s = function$1.xF; result.bM = s; var x1$2 = this.dz; if ((x1$2 instanceof $c_Ltigerpython_parser_scopes_ClassScope)) { @@ -25805,7 +25811,7 @@ $p.JF = (function(function$1) { if ((!$p_Ltigerpython_parser_scopes_AstWalker__hasReturn__Ltigerpython_parser_ast_AstNode$Statement__Z(this, function$1.fV))) { functionScope.Dk($m_Ltigerpython_parser_types_BuiltinTypes$().dc); } - result.GU = functionScope.vP; + result.GU = functionScope.vQ; }); $p.JE = (function(forStmt) { var x1 = forStmt.l8; @@ -26054,8 +26060,8 @@ $p.JH = (function(ifStmt) { matchEnd7: { if ((x1 instanceof $c_Ltigerpython_parser_ast_AstNode$Call)) { var x2 = x1; - if (((x2.wD() === "isinstance") && (x2.bR.a.length === 2))) { - var n = x2.wC(); + if (((x2.wE() === "isinstance") && (x2.bR.a.length === 2))) { + var n = x2.wD(); var expr = x2.bR.a[1]; var x1$2 = this.e7.bl(expr); if ((x1$2 instanceof $c_Ltigerpython_parser_types_ClassType)) { @@ -26079,8 +26085,8 @@ $p.JH = (function(ifStmt) { matchEnd4$2: { if ((x1$3 instanceof $c_Ltigerpython_parser_ast_AstNode$Call)) { var x2$3 = x1$3; - if ((x2$3.wD() === "type")) { - var n$2 = x2$3.wC(); + if ((x2$3.wE() === "type")) { + var n$2 = x2$3.wD(); var expr$1 = x3.ta(); var x1$4 = this.e7.bl(expr$1); if ((x1$4 instanceof $c_Ltigerpython_parser_types_ClassType)) { @@ -26105,8 +26111,8 @@ $p.JH = (function(ifStmt) { matchEnd5: { if ((x1$5 instanceof $c_Ltigerpython_parser_ast_AstNode$Call)) { var x2$5 = x1$5; - if ((x2$5.wD() === "type")) { - var n$3 = x2$5.wC(); + if ((x2$5.wE() === "type")) { + var n$3 = x2$5.wD(); var x1$6 = x3.ta(); matchEnd4$4: { if ((x1$6 instanceof $c_Ltigerpython_parser_ast_AstNode$SequenceExpression)) { @@ -26225,7 +26231,7 @@ $p.JG = (function(global) { var x1 = this.dz; if ((x1 instanceof $c_Ltigerpython_parser_scopes_FunctionScope)) { var x2 = x1; - var xs = global.iZ; + var xs = global.iY; var f = ((name$2) => { var name = name$2; var name$1 = name.R; @@ -26302,10 +26308,10 @@ $p.JG = (function(global) { } } else if ((x1 instanceof $c_Ltigerpython_parser_scopes_ForLoopScope)) { var x3$1 = x1; - var xs$1 = global.iZ; + var xs$1 = global.iY; var f$1 = ((name$3$2) => { var name$3 = name$3$2; - x3$1.iA(name$3.R); + x3$1.iz(name$3.R); }); var len$1 = xs$1.a.length; var i$1 = 0; @@ -26517,7 +26523,7 @@ $p.JI = (function(importStmt) { } }); $p.JK = (function(importStmt) { - var x = importStmt.j0.R; + var x = importStmt.iZ.R; var len = x.length; var sb = $ct_jl_StringBuilder__I__(new $c_jl_StringBuilder(), len); var i = 0; @@ -26853,11 +26859,11 @@ function $c_Ltigerpython_parser_scopes_BuiltinNames$() { var elems = $m_Ltigerpython_parser_types_ExceptionTypes$().BK; this$1.lR(elems); var $x_31 = $m_Ltigerpython_parser_types_BuiltinFunction$().E("abs", new ($d_T.r().C)(["x"]), $m_Ltigerpython_parser_types_BuiltinTypes$().jg, "Return the absolute value of a number."); - var $x_30 = $m_Ltigerpython_parser_types_BuiltinFunction$().E("all", new ($d_T.r().C)(["iter"]), $m_Ltigerpython_parser_types_BuiltinTypes$().iu, "Return True if all elements of the iterable are true (or if the iterable is empty)."); - var $x_29 = $m_Ltigerpython_parser_types_BuiltinFunction$().E("any", new ($d_T.r().C)(["iterable"]), $m_Ltigerpython_parser_types_BuiltinTypes$().iu, "Return True if any element of the iterable is true."); - var $x_28 = $m_Ltigerpython_parser_types_BuiltinFunction$().E("bin", new ($d_T.r().C)(["x"]), $m_Ltigerpython_parser_types_BuiltinTypes$().iv, "Convert an integer number to a binary string."); - var $x_27 = $m_Ltigerpython_parser_types_BuiltinFunction$().E("callable", new ($d_T.r().C)(["object"]), $m_Ltigerpython_parser_types_BuiltinTypes$().iu, "Return True if the object argument appears callable, False if not."); - var $x_26 = $m_Ltigerpython_parser_types_BuiltinFunction$().E("chr", new ($d_T.r().C)(["i"]), $m_Ltigerpython_parser_types_BuiltinTypes$().iv, "Return a string of one character whose ASCII code is the integer i. For example, chr(97) returns the string 'a'."); + var $x_30 = $m_Ltigerpython_parser_types_BuiltinFunction$().E("all", new ($d_T.r().C)(["iter"]), $m_Ltigerpython_parser_types_BuiltinTypes$().it, "Return True if all elements of the iterable are true (or if the iterable is empty)."); + var $x_29 = $m_Ltigerpython_parser_types_BuiltinFunction$().E("any", new ($d_T.r().C)(["iterable"]), $m_Ltigerpython_parser_types_BuiltinTypes$().it, "Return True if any element of the iterable is true."); + var $x_28 = $m_Ltigerpython_parser_types_BuiltinFunction$().E("bin", new ($d_T.r().C)(["x"]), $m_Ltigerpython_parser_types_BuiltinTypes$().iu, "Convert an integer number to a binary string."); + var $x_27 = $m_Ltigerpython_parser_types_BuiltinFunction$().E("callable", new ($d_T.r().C)(["object"]), $m_Ltigerpython_parser_types_BuiltinTypes$().it, "Return True if the object argument appears callable, False if not."); + var $x_26 = $m_Ltigerpython_parser_types_BuiltinFunction$().E("chr", new ($d_T.r().C)(["i"]), $m_Ltigerpython_parser_types_BuiltinTypes$().iu, "Return a string of one character whose ASCII code is the integer i. For example, chr(97) returns the string 'a'."); var $x_25 = $m_Ltigerpython_parser_types_BuiltinFunction$().E("classmethod", new ($d_T.r().C)(["function"]), $m_Ltigerpython_parser_types_BuiltinTypes$().ar, "Return a class method for function."); var $x_24 = $m_Ltigerpython_parser_types_BuiltinFunction$().E("cmp", new ($d_T.r().C)(["x", "y"]), $m_Ltigerpython_parser_types_BuiltinTypes$().gW, "Compare the two objects x and y and return an integer according to the outcome."); var $x_23 = $m_Ltigerpython_parser_types_BuiltinFunction$().E("compile", new ($d_T.r().C)(["source", "filename", "mode"]), $m_Ltigerpython_parser_types_BuiltinTypes$().ar, "Compile the source into a code or AST object."); @@ -26871,13 +26877,13 @@ function $c_Ltigerpython_parser_scopes_BuiltinNames$() { array.a[i] = iterator.d(); i = ((1 + i) | 0); } - var $x_20 = $x_21.E("dir", array, $m_Ltigerpython_parser_types_ListType$().Cy($m_Ltigerpython_parser_types_BuiltinTypes$().iv), "Without arguments, return the list of names in the current local scope. With an argument, attempt to return a list of valid attributes for that object."); + var $x_20 = $x_21.E("dir", array, $m_Ltigerpython_parser_types_ListType$().Cy($m_Ltigerpython_parser_types_BuiltinTypes$().iu), "Without arguments, return the list of names in the current local scope. With an argument, attempt to return a list of valid attributes for that object."); var $x_19 = $m_Ltigerpython_parser_types_BuiltinFunction$().E("divmod", new ($d_T.r().C)(["a", "b"]), $m_Ltigerpython_parser_types_BuiltinTypes$().nC, "Take two (non complex) numbers as arguments and return a pair of numbers consisting of their quotient and remainder when using long division."); var $x_18 = $m_Ltigerpython_parser_types_BuiltinFunction$().E("enumerate", new ($d_T.r().C)(["sequence"]), $m_Ltigerpython_parser_types_BuiltinTypes$().ar, "Return an enumerate object. sequence must be a sequence, an iterator, or some other object which supports iteration."); var $x_17 = $m_Ltigerpython_parser_types_BuiltinFunction$().E("eval", new ($d_T.r().C)(["expression"]), $m_Ltigerpython_parser_types_BuiltinTypes$().ar, "The arguments are a Unicode or Latin-1 encoded string and optional globals and locals."); var $x_16 = $m_Ltigerpython_parser_types_BuiltinFunction$().E("execfile", new ($d_T.r().C)(["filename"]), $m_Ltigerpython_parser_types_BuiltinTypes$().ar, "This function is similar to the exec statement, but parses a file instead of a string. It is different from the import statement in that it does not use the module administration - it reads the file unconditionally and does not create a new module."); var $x_15 = $m_Ltigerpython_parser_types_BuiltinFunction$().E("filter", new ($d_T.r().C)(["function", "iterable"]), $m_Ltigerpython_parser_types_BuiltinTypes$().hB, "Construct a list from those elements of iterable for which function returns true."); - var $x_14 = $m_Ltigerpython_parser_types_BuiltinFunction$().E("format", new ($d_T.r().C)(["value"]), $m_Ltigerpython_parser_types_BuiltinTypes$().iv, "Convert a value to a \"formatted\" representation, as controlled by format_spec."); + var $x_14 = $m_Ltigerpython_parser_types_BuiltinFunction$().E("format", new ($d_T.r().C)(["value"]), $m_Ltigerpython_parser_types_BuiltinTypes$().iu, "Convert a value to a \"formatted\" representation, as controlled by format_spec."); var $x_13 = $m_Ltigerpython_parser_types_BuiltinFunction$().E("getattr", new ($d_T.r().C)(["object", "name"]), $m_Ltigerpython_parser_types_BuiltinTypes$().ar, "Return the value of the named attribute of object. name must be a string. If the string is the name of one of the object\u2019s attributes, the result is the value of that attribute."); var $x_12 = $m_Ltigerpython_parser_types_BuiltinFunction$(); var xs$1 = $m_sci_Nil$(); @@ -26888,14 +26894,14 @@ function $c_Ltigerpython_parser_scopes_BuiltinNames$() { array$1.a[i$1] = iterator$1.d(); i$1 = ((1 + i$1) | 0); } - var $x_11 = $x_12.E("globals", array$1, $m_Ltigerpython_parser_types_BuiltinTypes$().vR, "Return a dictionary representing the current global symbol table."); - var $x_10 = $m_Ltigerpython_parser_types_BuiltinFunction$().E("hasattr", new ($d_T.r().C)(["object", "name"]), $m_Ltigerpython_parser_types_BuiltinTypes$().iu, "The arguments are an object and a string. The result is True if the string is the name of one of the object's attributes, False if not."); + var $x_11 = $x_12.E("globals", array$1, $m_Ltigerpython_parser_types_BuiltinTypes$().vS, "Return a dictionary representing the current global symbol table."); + var $x_10 = $m_Ltigerpython_parser_types_BuiltinFunction$().E("hasattr", new ($d_T.r().C)(["object", "name"]), $m_Ltigerpython_parser_types_BuiltinTypes$().it, "The arguments are an object and a string. The result is True if the string is the name of one of the object's attributes, False if not."); var $x_9 = $m_Ltigerpython_parser_types_BuiltinFunction$().E("hash", new ($d_T.r().C)(["object"]), $m_Ltigerpython_parser_types_BuiltinTypes$().gW, "Return the hash value of the object (if it has one). Hash values are integers."); - var $x_8 = $m_Ltigerpython_parser_types_BuiltinFunction$().E("hex", new ($d_T.r().C)(["x"]), $m_Ltigerpython_parser_types_BuiltinTypes$().iv, "Convert an integer number (of any size) to a lowercase hexadecimal string prefixed with \"0x\"."); + var $x_8 = $m_Ltigerpython_parser_types_BuiltinFunction$().E("hex", new ($d_T.r().C)(["x"]), $m_Ltigerpython_parser_types_BuiltinTypes$().iu, "Convert an integer number (of any size) to a lowercase hexadecimal string prefixed with \"0x\"."); var $x_7 = $m_Ltigerpython_parser_types_BuiltinFunction$().E("id", new ($d_T.r().C)(["object"]), $m_Ltigerpython_parser_types_BuiltinTypes$().gW, "Return the \"identity\" of an object. This is an integer (or long integer) which is guaranteed to be unique and constant for this object during its lifetime."); var $x_6 = $m_Ltigerpython_parser_types_BuiltinFunction$().E("input", new ($d_T.r().C)(["prompt"]), $m_Ltigerpython_parser_types_BuiltinTypes$().ar, "The function asks the user to input a text or numeric value and returns it as \"str\", \"int\" or \"float\"."); - var $x_5 = $m_Ltigerpython_parser_types_BuiltinFunction$().E("isinstance", new ($d_T.r().C)(["object", "classinfo"]), $m_Ltigerpython_parser_types_BuiltinTypes$().iu, "Return true if the object argument is an instance of the classinfo argument, or of a (direct, indirect or virtual) subclass thereof."); - var $x_4 = $m_Ltigerpython_parser_types_BuiltinFunction$().E("issubclass", new ($d_T.r().C)(["object", "classinfo"]), $m_Ltigerpython_parser_types_BuiltinTypes$().iu, "Return true if class is a subclass (direct, indirect or virtual) of classinfo."); + var $x_5 = $m_Ltigerpython_parser_types_BuiltinFunction$().E("isinstance", new ($d_T.r().C)(["object", "classinfo"]), $m_Ltigerpython_parser_types_BuiltinTypes$().it, "Return true if the object argument is an instance of the classinfo argument, or of a (direct, indirect or virtual) subclass thereof."); + var $x_4 = $m_Ltigerpython_parser_types_BuiltinFunction$().E("issubclass", new ($d_T.r().C)(["object", "classinfo"]), $m_Ltigerpython_parser_types_BuiltinTypes$().it, "Return true if class is a subclass (direct, indirect or virtual) of classinfo."); var $x_3 = $m_Ltigerpython_parser_types_BuiltinFunction$().E("iter", new ($d_T.r().C)(["o"]), $m_Ltigerpython_parser_types_BuiltinTypes$().ar, "Return an iterator object."); var $x_2 = $m_Ltigerpython_parser_types_BuiltinFunction$().E("len", new ($d_T.r().C)(["x"]), $m_Ltigerpython_parser_types_BuiltinTypes$().gW, "Return the length (the number of items) of an object."); var $x_1 = $m_Ltigerpython_parser_types_BuiltinFunction$(); @@ -26907,7 +26913,7 @@ function $c_Ltigerpython_parser_scopes_BuiltinNames$() { array$2.a[i$2] = iterator$2.d(); i$2 = ((1 + i$2) | 0); } - this.sE(new $c_sjsr_WrappedVarArgs([$x_31, $x_30, $x_29, $x_28, $x_27, $x_26, $x_25, $x_24, $x_23, $x_22, $x_20, $x_19, $x_18, $x_17, $x_16, $x_15, $x_14, $x_13, $x_11, $x_10, $x_9, $x_8, $x_7, $x_6, $x_5, $x_4, $x_3, $x_2, $x_1.E("locals", array$2, $m_Ltigerpython_parser_types_BuiltinTypes$().vR, "Update and return a dictionary representing the current local symbol table."), $m_Ltigerpython_parser_types_BuiltinFunction$().E("map", new ($d_T.r().C)(["function", "iterable"]), $m_Ltigerpython_parser_types_BuiltinTypes$().hB, "Apply function to every item of iterable and return a list of the results."), $m_Ltigerpython_parser_types_BuiltinFunction$().E("max", new ($d_T.r().C)(["..."]), $m_Ltigerpython_parser_types_BuiltinTypes$().jg, "Return the largest item in an iterable or the largest of two or more arguments."), $m_Ltigerpython_parser_types_BuiltinFunction$().E("min", new ($d_T.r().C)(["..."]), $m_Ltigerpython_parser_types_BuiltinTypes$().jg, "Return the smallest item in an iterable or the smallest of two or more arguments."), $m_Ltigerpython_parser_types_BuiltinFunction$().E("next", new ($d_T.r().C)(["iterator"]), $m_Ltigerpython_parser_types_BuiltinTypes$().ar, "Retrieve the next item from the iterator by calling its next() method."), $m_Ltigerpython_parser_types_BuiltinFunction$().E("oct", new ($d_T.r().C)(["x"]), $m_Ltigerpython_parser_types_BuiltinTypes$().iv, "Convert an integer number (of any size) to an octal string."), $m_Ltigerpython_parser_types_BuiltinFunction$().E("open", new ($d_T.r().C)(["name", "mode"]), $m_Ltigerpython_parser_types_BuiltinTypes$().GJ, "Open a file, returning an object of the file type"), $m_Ltigerpython_parser_types_BuiltinFunction$().E("ord", new ($d_T.r().C)(["c"]), $m_Ltigerpython_parser_types_BuiltinTypes$().gW, "Given a string of length one, return an integer representing the Unicode code point of the character when the argument is a unicode object, or the value of the byte when the argument is an 8-bit string."), $m_Ltigerpython_parser_types_BuiltinFunction$().E("property", new ($d_T.r().C)(["fget, fset"]), $m_Ltigerpython_parser_types_BuiltinTypes$().GI, "Return a property attribute."), $m_Ltigerpython_parser_types_BuiltinFunction$().E("pow", new ($d_T.r().C)(["x", "y"]), $m_Ltigerpython_parser_types_BuiltinTypes$().ar, "Return x to the power y; if z is present, return x to the power y, modulo z (computed more efficiently than pow(x, y) % z). The two-argument form pow(x, y) is equivalent to using the power operator: x**y."), $m_Ltigerpython_parser_types_BuiltinFunction$().E("range", new ($d_T.r().C)(["stop:int"]), $m_Ltigerpython_parser_types_ListType$().Cy($m_Ltigerpython_parser_types_BuiltinTypes$().gW), "This is a versatile function to create lists containing arithmetic progressions."), $m_Ltigerpython_parser_types_BuiltinFunction$().E("raw_input", new ($d_T.r().C)(["prompt"]), $m_Ltigerpython_parser_types_BuiltinTypes$().iv, "The function reads a line from input, converts it to a string (stripping a trailing newline), and returns that."), $m_Ltigerpython_parser_types_BuiltinFunction$().E("reduce", new ($d_T.r().C)(["function", "iterable"]), $m_Ltigerpython_parser_types_BuiltinTypes$().hB, "Apply function of two arguments cumulatively to the items of iterable, from left to right, so as to reduce the iterable to a single value. For example, reduce(lambda x, y: x+y, [1, 2, 3, 4, 5]) calculates ((((1+2)+3)+4)+5)."), $m_Ltigerpython_parser_types_BuiltinFunction$().E("reload", new ($d_T.r().C)(["module"]), $m_Ltigerpython_parser_types_BuiltinTypes$().jg, "Reload a previously imported module."), $m_Ltigerpython_parser_types_BuiltinFunction$().E("repr", new ($d_T.r().C)(["object"]), $m_Ltigerpython_parser_types_BuiltinTypes$().iv, "Return a string containing a printable representation of an object."), $m_Ltigerpython_parser_types_BuiltinFunction$().E("reversed", new ($d_T.r().C)(["seq"]), $m_Ltigerpython_parser_types_BuiltinTypes$().jg, "Return a reverse iterator."), $m_Ltigerpython_parser_types_BuiltinFunction$().E("round", new ($d_T.r().C)(["number", "ndigits"]), $m_Ltigerpython_parser_types_BuiltinTypes$().ar, "Return the floating point value number rounded to ndigits digits after the decimal point. If ndigits is omitted, it defaults to zero."), $m_Ltigerpython_parser_types_BuiltinFunction$().E("setattr", new ($d_T.r().C)(["object", "name", "value"]), $m_Ltigerpython_parser_types_BuiltinTypes$().nA, "This is the counterpart of getattr(). The arguments are an object, a string and an arbitrary value. The string may name an existing attribute or a new attribute. The function assigns the value to the attribute, provided the object allows it."), $m_Ltigerpython_parser_types_BuiltinFunction$().E("sorted", new ($d_T.r().C)(["iterable"]), $m_Ltigerpython_parser_types_BuiltinTypes$().jg, "Return a new sorted list from the items in iterable."), $m_Ltigerpython_parser_types_BuiltinFunction$().E("staticmethod", new ($d_T.r().C)(["function"]), $m_Ltigerpython_parser_types_BuiltinTypes$().jg, "Return a static method for function."), $m_Ltigerpython_parser_types_BuiltinFunction$().E("sum", new ($d_T.r().C)(["iterable"]), $m_Ltigerpython_parser_types_BuiltinTypes$().ar, "Sums the items of an iterable from left to right and returns the total."), $m_Ltigerpython_parser_types_BuiltinFunction$().E("super", new ($d_T.r().C)(["type", "instance"]), $m_Ltigerpython_parser_types_BuiltinTypes$().Nw, "Return a proxy object that delegates method calls to a parent or sibling class of type."), $m_Ltigerpython_parser_types_BuiltinFunction$().E("unichr", new ($d_T.r().C)(["i"]), $m_Ltigerpython_parser_types_BuiltinTypes$().iv, "Return the Unicode string of one character whose Unicode code is the integer i."), $m_Ltigerpython_parser_types_BuiltinFunction$().E("vars", new ($d_T.r().C)(["object"]), $m_Ltigerpython_parser_types_BuiltinTypes$().ar, "Return the __dict__ attribute for a module, class, instance, or any other object with a __dict__ attribute."), $m_Ltigerpython_parser_types_BuiltinFunction$().E("xrange", new ($d_T.r().C)(["stop"]), $m_Ltigerpython_parser_types_BuiltinTypes$().ar, "This function is very similar to range(), but returns an xrange object instead of a list."), $m_Ltigerpython_parser_types_BuiltinFunction$().E("zip", new ($d_T.r().C)(["..."]), $m_Ltigerpython_parser_types_BuiltinTypes$().hB, "This function returns a list of tuples, where the i-th tuple contains the i-th element from each of the argument sequences or iterables."), $m_Ltigerpython_parser_types_BuiltinTypes$().f8, $m_Ltigerpython_parser_types_BuiltinTypes$().BA, $m_Ltigerpython_parser_types_BuiltinTypes$().vQ, $m_Ltigerpython_parser_types_BuiltinTypes$().sg, $m_Ltigerpython_parser_types_BuiltinTypes$().q5, $m_Ltigerpython_parser_types_BuiltinTypes$().BD, $m_Ltigerpython_parser_types_BuiltinTypes$().f9, $m_Ltigerpython_parser_types_BuiltinTypes$().fa, $m_Ltigerpython_parser_types_BuiltinTypes$().BF, $m_Ltigerpython_parser_types_BuiltinTypes$().BG, $m_Ltigerpython_parser_types_BuiltinTypes$().bE, $m_Ltigerpython_parser_types_BuiltinTypes$().Nx, $m_Ltigerpython_parser_types_BuiltinTypes$().hC, $m_Ltigerpython_parser_types_BuiltinTypes$().BH])); + this.sE(new $c_sjsr_WrappedVarArgs([$x_31, $x_30, $x_29, $x_28, $x_27, $x_26, $x_25, $x_24, $x_23, $x_22, $x_20, $x_19, $x_18, $x_17, $x_16, $x_15, $x_14, $x_13, $x_11, $x_10, $x_9, $x_8, $x_7, $x_6, $x_5, $x_4, $x_3, $x_2, $x_1.E("locals", array$2, $m_Ltigerpython_parser_types_BuiltinTypes$().vS, "Update and return a dictionary representing the current local symbol table."), $m_Ltigerpython_parser_types_BuiltinFunction$().E("map", new ($d_T.r().C)(["function", "iterable"]), $m_Ltigerpython_parser_types_BuiltinTypes$().hB, "Apply function to every item of iterable and return a list of the results."), $m_Ltigerpython_parser_types_BuiltinFunction$().E("max", new ($d_T.r().C)(["..."]), $m_Ltigerpython_parser_types_BuiltinTypes$().jg, "Return the largest item in an iterable or the largest of two or more arguments."), $m_Ltigerpython_parser_types_BuiltinFunction$().E("min", new ($d_T.r().C)(["..."]), $m_Ltigerpython_parser_types_BuiltinTypes$().jg, "Return the smallest item in an iterable or the smallest of two or more arguments."), $m_Ltigerpython_parser_types_BuiltinFunction$().E("next", new ($d_T.r().C)(["iterator"]), $m_Ltigerpython_parser_types_BuiltinTypes$().ar, "Retrieve the next item from the iterator by calling its next() method."), $m_Ltigerpython_parser_types_BuiltinFunction$().E("oct", new ($d_T.r().C)(["x"]), $m_Ltigerpython_parser_types_BuiltinTypes$().iu, "Convert an integer number (of any size) to an octal string."), $m_Ltigerpython_parser_types_BuiltinFunction$().E("open", new ($d_T.r().C)(["name", "mode"]), $m_Ltigerpython_parser_types_BuiltinTypes$().GJ, "Open a file, returning an object of the file type"), $m_Ltigerpython_parser_types_BuiltinFunction$().E("ord", new ($d_T.r().C)(["c"]), $m_Ltigerpython_parser_types_BuiltinTypes$().gW, "Given a string of length one, return an integer representing the Unicode code point of the character when the argument is a unicode object, or the value of the byte when the argument is an 8-bit string."), $m_Ltigerpython_parser_types_BuiltinFunction$().E("property", new ($d_T.r().C)(["fget, fset"]), $m_Ltigerpython_parser_types_BuiltinTypes$().GI, "Return a property attribute."), $m_Ltigerpython_parser_types_BuiltinFunction$().E("pow", new ($d_T.r().C)(["x", "y"]), $m_Ltigerpython_parser_types_BuiltinTypes$().ar, "Return x to the power y; if z is present, return x to the power y, modulo z (computed more efficiently than pow(x, y) % z). The two-argument form pow(x, y) is equivalent to using the power operator: x**y."), $m_Ltigerpython_parser_types_BuiltinFunction$().E("range", new ($d_T.r().C)(["stop:int"]), $m_Ltigerpython_parser_types_ListType$().Cy($m_Ltigerpython_parser_types_BuiltinTypes$().gW), "This is a versatile function to create lists containing arithmetic progressions."), $m_Ltigerpython_parser_types_BuiltinFunction$().E("raw_input", new ($d_T.r().C)(["prompt"]), $m_Ltigerpython_parser_types_BuiltinTypes$().iu, "The function reads a line from input, converts it to a string (stripping a trailing newline), and returns that."), $m_Ltigerpython_parser_types_BuiltinFunction$().E("reduce", new ($d_T.r().C)(["function", "iterable"]), $m_Ltigerpython_parser_types_BuiltinTypes$().hB, "Apply function of two arguments cumulatively to the items of iterable, from left to right, so as to reduce the iterable to a single value. For example, reduce(lambda x, y: x+y, [1, 2, 3, 4, 5]) calculates ((((1+2)+3)+4)+5)."), $m_Ltigerpython_parser_types_BuiltinFunction$().E("reload", new ($d_T.r().C)(["module"]), $m_Ltigerpython_parser_types_BuiltinTypes$().jg, "Reload a previously imported module."), $m_Ltigerpython_parser_types_BuiltinFunction$().E("repr", new ($d_T.r().C)(["object"]), $m_Ltigerpython_parser_types_BuiltinTypes$().iu, "Return a string containing a printable representation of an object."), $m_Ltigerpython_parser_types_BuiltinFunction$().E("reversed", new ($d_T.r().C)(["seq"]), $m_Ltigerpython_parser_types_BuiltinTypes$().jg, "Return a reverse iterator."), $m_Ltigerpython_parser_types_BuiltinFunction$().E("round", new ($d_T.r().C)(["number", "ndigits"]), $m_Ltigerpython_parser_types_BuiltinTypes$().ar, "Return the floating point value number rounded to ndigits digits after the decimal point. If ndigits is omitted, it defaults to zero."), $m_Ltigerpython_parser_types_BuiltinFunction$().E("setattr", new ($d_T.r().C)(["object", "name", "value"]), $m_Ltigerpython_parser_types_BuiltinTypes$().nA, "This is the counterpart of getattr(). The arguments are an object, a string and an arbitrary value. The string may name an existing attribute or a new attribute. The function assigns the value to the attribute, provided the object allows it."), $m_Ltigerpython_parser_types_BuiltinFunction$().E("sorted", new ($d_T.r().C)(["iterable"]), $m_Ltigerpython_parser_types_BuiltinTypes$().jg, "Return a new sorted list from the items in iterable."), $m_Ltigerpython_parser_types_BuiltinFunction$().E("staticmethod", new ($d_T.r().C)(["function"]), $m_Ltigerpython_parser_types_BuiltinTypes$().jg, "Return a static method for function."), $m_Ltigerpython_parser_types_BuiltinFunction$().E("sum", new ($d_T.r().C)(["iterable"]), $m_Ltigerpython_parser_types_BuiltinTypes$().ar, "Sums the items of an iterable from left to right and returns the total."), $m_Ltigerpython_parser_types_BuiltinFunction$().E("super", new ($d_T.r().C)(["type", "instance"]), $m_Ltigerpython_parser_types_BuiltinTypes$().Nw, "Return a proxy object that delegates method calls to a parent or sibling class of type."), $m_Ltigerpython_parser_types_BuiltinFunction$().E("unichr", new ($d_T.r().C)(["i"]), $m_Ltigerpython_parser_types_BuiltinTypes$().iu, "Return the Unicode string of one character whose Unicode code is the integer i."), $m_Ltigerpython_parser_types_BuiltinFunction$().E("vars", new ($d_T.r().C)(["object"]), $m_Ltigerpython_parser_types_BuiltinTypes$().ar, "Return the __dict__ attribute for a module, class, instance, or any other object with a __dict__ attribute."), $m_Ltigerpython_parser_types_BuiltinFunction$().E("xrange", new ($d_T.r().C)(["stop"]), $m_Ltigerpython_parser_types_BuiltinTypes$().ar, "This function is very similar to range(), but returns an xrange object instead of a list."), $m_Ltigerpython_parser_types_BuiltinFunction$().E("zip", new ($d_T.r().C)(["..."]), $m_Ltigerpython_parser_types_BuiltinTypes$().hB, "This function returns a list of tuples, where the i-th tuple contains the i-th element from each of the argument sequences or iterables."), $m_Ltigerpython_parser_types_BuiltinTypes$().f8, $m_Ltigerpython_parser_types_BuiltinTypes$().BA, $m_Ltigerpython_parser_types_BuiltinTypes$().vR, $m_Ltigerpython_parser_types_BuiltinTypes$().sg, $m_Ltigerpython_parser_types_BuiltinTypes$().q5, $m_Ltigerpython_parser_types_BuiltinTypes$().BD, $m_Ltigerpython_parser_types_BuiltinTypes$().f9, $m_Ltigerpython_parser_types_BuiltinTypes$().fa, $m_Ltigerpython_parser_types_BuiltinTypes$().BF, $m_Ltigerpython_parser_types_BuiltinTypes$().BG, $m_Ltigerpython_parser_types_BuiltinTypes$().bE, $m_Ltigerpython_parser_types_BuiltinTypes$().Nx, $m_Ltigerpython_parser_types_BuiltinTypes$().hC, $m_Ltigerpython_parser_types_BuiltinTypes$().BH])); this.sE(new $c_sjsr_WrappedVarArgs([$m_Ltigerpython_parser_types_BuiltinFunction$().E("inputInt", new ($d_T.r().C)(["prompt"]), $m_Ltigerpython_parser_types_BuiltinTypes$().f9, "The function asks the user to input an integer value and returns it."), $m_Ltigerpython_parser_types_BuiltinFunction$().E("inputFloat", new ($d_T.r().C)(["prompt"]), $m_Ltigerpython_parser_types_BuiltinTypes$().f9, "The function asks the user to input a numeric value and returns it."), $m_Ltigerpython_parser_types_BuiltinFunction$().E("inputString", new ($d_T.r().C)(["prompt"]), $m_Ltigerpython_parser_types_BuiltinTypes$().f9, "The function asks the user to input a text value and returns it."), $m_Ltigerpython_parser_types_BuiltinFunction$().E("msgDlg", new ($d_T.r().C)(["x"]), $m_Ltigerpython_parser_types_BuiltinTypes$().dc, "Displays the given value(s) in a small dialog window."), $m_Ltigerpython_parser_types_BuiltinFunction$().E("head", new ($d_T.r().C)(["s"]), $m_Ltigerpython_parser_types_BuiltinTypes$().GH, "Return the first element of a list or sequence."), $m_Ltigerpython_parser_types_BuiltinFunction$().E("tail", new ($d_T.r().C)(["s"]), $m_Ltigerpython_parser_types_BuiltinTypes$().jg, "Return the list or sequence without its first element.")])); } $p = $c_Ltigerpython_parser_scopes_BuiltinNames$.prototype = new $h_O(); @@ -27443,7 +27449,7 @@ function $c_Ltigerpython_parser_types_BuiltinTypes$() { this.yo = null; this.Nx = null; this.f8 = null; - this.vQ = null; + this.vR = null; this.f9 = null; this.BF = null; this.kj = null; @@ -27462,11 +27468,11 @@ function $c_Ltigerpython_parser_types_BuiltinTypes$() { this.q5 = null; this.sg = null; this.BC = null; - this.iu = null; + this.it = null; this.Np = null; this.Nq = null; this.nz = null; - this.vR = null; + this.vS = null; this.GJ = null; this.jh = null; this.Nr = null; @@ -27477,7 +27483,7 @@ function $c_Ltigerpython_parser_types_BuiltinTypes$() { this.Nu = null; this.nA = null; this.Nv = null; - this.iv = null; + this.iu = null; this.nC = null; $n_Ltigerpython_parser_types_BuiltinTypes$ = this; this.Nz = $m_scm_Map$().as($m_sci_Nil$()); @@ -27494,7 +27500,7 @@ function $c_Ltigerpython_parser_types_BuiltinTypes$() { var baseType = this.yo; this.f8 = $ct_Ltigerpython_parser_types_PrimitiveType__T__Ltigerpython_parser_types_PrimitiveType__sci_Map__(new $c_Ltigerpython_parser_types_PrimitiveType(), "bool", baseType, baseType.cl); var baseType$1 = this.yo; - this.vQ = $ct_Ltigerpython_parser_types_PrimitiveType__T__Ltigerpython_parser_types_PrimitiveType__sci_Map__(new $c_Ltigerpython_parser_types_PrimitiveType(), "complex", baseType$1, baseType$1.cl); + this.vR = $ct_Ltigerpython_parser_types_PrimitiveType__T__Ltigerpython_parser_types_PrimitiveType__sci_Map__(new $c_Ltigerpython_parser_types_PrimitiveType(), "complex", baseType$1, baseType$1.cl); var baseType$2 = this.yo; this.f9 = $ct_Ltigerpython_parser_types_PrimitiveType__T__Ltigerpython_parser_types_PrimitiveType__sci_Map__(new $c_Ltigerpython_parser_types_PrimitiveType(), "int", baseType$2, baseType$2.cl); var $x_2 = this.f9; @@ -28102,11 +28108,11 @@ function $c_Ltigerpython_parser_types_BuiltinTypes$() { i$51 = ((1 + i$51) | 0); } $x_151.g5(new $c_sjsr_WrappedVarArgs([$x_149, $x_147, $x_145, $x_143, $x_141, $x_140, $x_138, $x_136, $x_135, $x_134.E("tell", array$62, this.f9, "Return the file's current position. See also: 'seek'."), $m_Ltigerpython_parser_types_BuiltinFunction$().E("truncate", new ($d_T.r().C)(["size"]), this.dc, "Truncate the file\u2019s size. If the optional size argument is present, the file is truncated to (at most) that size. The size defaults to the current position."), $m_Ltigerpython_parser_types_BuiltinFunction$().E("write", new ($d_T.r().C)(["str"]), this.dc, "Write a string to the file."), $m_Ltigerpython_parser_types_BuiltinFunction$().E("writelines", new ($d_T.r().C)(["sequence"]), this.dc, "Write a sequence of strings to the file.")])); - this.iu = new $c_Ltigerpython_parser_types_Instance(this.f8); + this.it = new $c_Ltigerpython_parser_types_Instance(this.f8); this.Np = new $c_Ltigerpython_parser_types_Instance(this.GG); this.Nq = new $c_Ltigerpython_parser_types_Instance(this.BA); - this.nz = new $c_Ltigerpython_parser_types_Instance(this.vQ); - this.vR = new $c_Ltigerpython_parser_types_Instance(this.sg); + this.nz = new $c_Ltigerpython_parser_types_Instance(this.vR); + this.vS = new $c_Ltigerpython_parser_types_Instance(this.sg); this.GJ = new $c_Ltigerpython_parser_types_Instance(this.BC); this.jh = new $c_Ltigerpython_parser_types_Instance(this.q5); this.Nr = new $c_Ltigerpython_parser_types_Instance(this.BD); @@ -28117,7 +28123,7 @@ function $c_Ltigerpython_parser_types_BuiltinTypes$() { this.Nu = new $c_Ltigerpython_parser_types_Instance(this.BF); this.nA = new $c_Ltigerpython_parser_types_Instance(this.dc); this.Nv = new $c_Ltigerpython_parser_types_Instance(this.BG); - this.iv = new $c_Ltigerpython_parser_types_Instance(this.bE); + this.iu = new $c_Ltigerpython_parser_types_Instance(this.bE); this.nC = new $c_Ltigerpython_parser_types_Instance(this.hC); } $p = $c_Ltigerpython_parser_types_BuiltinTypes$.prototype = new $h_O(); @@ -28168,7 +28174,7 @@ $p.constructor = $c_Ltigerpython_parser_types_DataType; function $h_Ltigerpython_parser_types_DataType() { } $h_Ltigerpython_parser_types_DataType.prototype = $p; -$p.ww = (function() { +$p.wx = (function() { return this.bM; }); $p.cW = (function(name) { @@ -28476,7 +28482,7 @@ $p.qs = (function(type1, type2) { } }); $p.UO = (function(valueType) { - var x = $m_Ltigerpython_parser_ast_ValueType$().y3; + var x = $m_Ltigerpython_parser_ast_ValueType$().y4; if (((x === null) ? (valueType === null) : x.b(valueType))) { return $m_Ltigerpython_parser_types_BuiltinTypes$().nz; } else { @@ -28517,7 +28523,7 @@ function $p_Ltigerpython_parser_types_ExceptionTypes$__ErrorType__T__Ltigerpytho function $c_Ltigerpython_parser_types_ExceptionTypes$() { this.BK = null; this.yp = null; - this.iw = null; + this.iv = null; this.g1 = null; this.BI = null; this.GK = null; @@ -28535,9 +28541,9 @@ function $c_Ltigerpython_parser_types_ExceptionTypes$() { $p_Ltigerpython_parser_types_ExceptionTypes$__ErrorType__T__Ltigerpython_parser_types_PrimitiveType__Ltigerpython_parser_types_PrimitiveType(this, "SystemExit", this.yp); $p_Ltigerpython_parser_types_ExceptionTypes$__ErrorType__T__Ltigerpython_parser_types_PrimitiveType__Ltigerpython_parser_types_PrimitiveType(this, "KeyboardInterrupt", this.yp); $p_Ltigerpython_parser_types_ExceptionTypes$__ErrorType__T__Ltigerpython_parser_types_PrimitiveType__Ltigerpython_parser_types_PrimitiveType(this, "GeneratorExit", this.yp); - this.iw = $p_Ltigerpython_parser_types_ExceptionTypes$__ErrorType__T__Ltigerpython_parser_types_PrimitiveType__Ltigerpython_parser_types_PrimitiveType(this, "Exception", this.yp); - $p_Ltigerpython_parser_types_ExceptionTypes$__ErrorType__T__Ltigerpython_parser_types_PrimitiveType__Ltigerpython_parser_types_PrimitiveType(this, "StopIteration", this.iw); - this.g1 = $p_Ltigerpython_parser_types_ExceptionTypes$__ErrorType__T__Ltigerpython_parser_types_PrimitiveType__Ltigerpython_parser_types_PrimitiveType(this, "StandardError", this.iw); + this.iv = $p_Ltigerpython_parser_types_ExceptionTypes$__ErrorType__T__Ltigerpython_parser_types_PrimitiveType__Ltigerpython_parser_types_PrimitiveType(this, "Exception", this.yp); + $p_Ltigerpython_parser_types_ExceptionTypes$__ErrorType__T__Ltigerpython_parser_types_PrimitiveType__Ltigerpython_parser_types_PrimitiveType(this, "StopIteration", this.iv); + this.g1 = $p_Ltigerpython_parser_types_ExceptionTypes$__ErrorType__T__Ltigerpython_parser_types_PrimitiveType__Ltigerpython_parser_types_PrimitiveType(this, "StandardError", this.iv); $p_Ltigerpython_parser_types_ExceptionTypes$__ErrorType__T__Ltigerpython_parser_types_PrimitiveType__Ltigerpython_parser_types_PrimitiveType(this, "BufferError", this.g1); this.BI = $p_Ltigerpython_parser_types_ExceptionTypes$__ErrorType__T__Ltigerpython_parser_types_PrimitiveType__Ltigerpython_parser_types_PrimitiveType(this, "ArithmeticError", this.g1); $p_Ltigerpython_parser_types_ExceptionTypes$__ErrorType__T__Ltigerpython_parser_types_PrimitiveType__Ltigerpython_parser_types_PrimitiveType(this, "FloatingPointError", this.BI); @@ -28571,16 +28577,16 @@ function $c_Ltigerpython_parser_types_ExceptionTypes$() { $p_Ltigerpython_parser_types_ExceptionTypes$__ErrorType__T__Ltigerpython_parser_types_PrimitiveType__Ltigerpython_parser_types_PrimitiveType(this, "UnicodeDecodeError", this.BJ); $p_Ltigerpython_parser_types_ExceptionTypes$__ErrorType__T__Ltigerpython_parser_types_PrimitiveType__Ltigerpython_parser_types_PrimitiveType(this, "UnicodeEncodeError", this.BJ); $p_Ltigerpython_parser_types_ExceptionTypes$__ErrorType__T__Ltigerpython_parser_types_PrimitiveType__Ltigerpython_parser_types_PrimitiveType(this, "UnicodeTranslateError", this.BJ); - $p_Ltigerpython_parser_types_ExceptionTypes$__ErrorType__T__Ltigerpython_parser_types_PrimitiveType__Ltigerpython_parser_types_PrimitiveType(this, "Warning", this.iw); - $p_Ltigerpython_parser_types_ExceptionTypes$__ErrorType__T__Ltigerpython_parser_types_PrimitiveType__Ltigerpython_parser_types_PrimitiveType(this, "DeprecationWarning", this.iw); - $p_Ltigerpython_parser_types_ExceptionTypes$__ErrorType__T__Ltigerpython_parser_types_PrimitiveType__Ltigerpython_parser_types_PrimitiveType(this, "PendingDeprecationWarning", this.iw); - $p_Ltigerpython_parser_types_ExceptionTypes$__ErrorType__T__Ltigerpython_parser_types_PrimitiveType__Ltigerpython_parser_types_PrimitiveType(this, "RuntimeWarning", this.iw); - $p_Ltigerpython_parser_types_ExceptionTypes$__ErrorType__T__Ltigerpython_parser_types_PrimitiveType__Ltigerpython_parser_types_PrimitiveType(this, "SyntaxWarning", this.iw); - $p_Ltigerpython_parser_types_ExceptionTypes$__ErrorType__T__Ltigerpython_parser_types_PrimitiveType__Ltigerpython_parser_types_PrimitiveType(this, "UserWarning", this.iw); - $p_Ltigerpython_parser_types_ExceptionTypes$__ErrorType__T__Ltigerpython_parser_types_PrimitiveType__Ltigerpython_parser_types_PrimitiveType(this, "FutureWarning", this.iw); - $p_Ltigerpython_parser_types_ExceptionTypes$__ErrorType__T__Ltigerpython_parser_types_PrimitiveType__Ltigerpython_parser_types_PrimitiveType(this, "ImportWarning", this.iw); - $p_Ltigerpython_parser_types_ExceptionTypes$__ErrorType__T__Ltigerpython_parser_types_PrimitiveType__Ltigerpython_parser_types_PrimitiveType(this, "UnicodeWarning", this.iw); - $p_Ltigerpython_parser_types_ExceptionTypes$__ErrorType__T__Ltigerpython_parser_types_PrimitiveType__Ltigerpython_parser_types_PrimitiveType(this, "BytesWarning", this.iw); + $p_Ltigerpython_parser_types_ExceptionTypes$__ErrorType__T__Ltigerpython_parser_types_PrimitiveType__Ltigerpython_parser_types_PrimitiveType(this, "Warning", this.iv); + $p_Ltigerpython_parser_types_ExceptionTypes$__ErrorType__T__Ltigerpython_parser_types_PrimitiveType__Ltigerpython_parser_types_PrimitiveType(this, "DeprecationWarning", this.iv); + $p_Ltigerpython_parser_types_ExceptionTypes$__ErrorType__T__Ltigerpython_parser_types_PrimitiveType__Ltigerpython_parser_types_PrimitiveType(this, "PendingDeprecationWarning", this.iv); + $p_Ltigerpython_parser_types_ExceptionTypes$__ErrorType__T__Ltigerpython_parser_types_PrimitiveType__Ltigerpython_parser_types_PrimitiveType(this, "RuntimeWarning", this.iv); + $p_Ltigerpython_parser_types_ExceptionTypes$__ErrorType__T__Ltigerpython_parser_types_PrimitiveType__Ltigerpython_parser_types_PrimitiveType(this, "SyntaxWarning", this.iv); + $p_Ltigerpython_parser_types_ExceptionTypes$__ErrorType__T__Ltigerpython_parser_types_PrimitiveType__Ltigerpython_parser_types_PrimitiveType(this, "UserWarning", this.iv); + $p_Ltigerpython_parser_types_ExceptionTypes$__ErrorType__T__Ltigerpython_parser_types_PrimitiveType__Ltigerpython_parser_types_PrimitiveType(this, "FutureWarning", this.iv); + $p_Ltigerpython_parser_types_ExceptionTypes$__ErrorType__T__Ltigerpython_parser_types_PrimitiveType__Ltigerpython_parser_types_PrimitiveType(this, "ImportWarning", this.iv); + $p_Ltigerpython_parser_types_ExceptionTypes$__ErrorType__T__Ltigerpython_parser_types_PrimitiveType__Ltigerpython_parser_types_PrimitiveType(this, "UnicodeWarning", this.iv); + $p_Ltigerpython_parser_types_ExceptionTypes$__ErrorType__T__Ltigerpython_parser_types_PrimitiveType__Ltigerpython_parser_types_PrimitiveType(this, "BytesWarning", this.iv); } $p = $c_Ltigerpython_parser_types_ExceptionTypes$.prototype = new $h_O(); $p.constructor = $c_Ltigerpython_parser_types_ExceptionTypes$; @@ -28651,7 +28657,7 @@ function $m_Ltigerpython_parser_types_FutureModule$() { function $c_Ltigerpython_parser_types_Instance$() { this.NF = null; $n_Ltigerpython_parser_types_Instance$ = this; - this.NF = $m_scm_Map$().as(new $c_sjsr_WrappedVarArgs([$ct_T2__O__O__(new $c_T2(), $m_Ltigerpython_parser_types_BuiltinTypes$().f8, $m_Ltigerpython_parser_types_BuiltinTypes$().iu), $ct_T2__O__O__(new $c_T2(), $m_Ltigerpython_parser_types_BuiltinTypes$().GG, $m_Ltigerpython_parser_types_BuiltinTypes$().Np), $ct_T2__O__O__(new $c_T2(), $m_Ltigerpython_parser_types_BuiltinTypes$().BA, $m_Ltigerpython_parser_types_BuiltinTypes$().Nq), $ct_T2__O__O__(new $c_T2(), $m_Ltigerpython_parser_types_BuiltinTypes$().vQ, $m_Ltigerpython_parser_types_BuiltinTypes$().nz), $ct_T2__O__O__(new $c_T2(), $m_Ltigerpython_parser_types_BuiltinTypes$().sg, $m_Ltigerpython_parser_types_BuiltinTypes$().vR), $ct_T2__O__O__(new $c_T2(), $m_Ltigerpython_parser_types_BuiltinTypes$().BC, $m_Ltigerpython_parser_types_BuiltinTypes$().GJ), $ct_T2__O__O__(new $c_T2(), $m_Ltigerpython_parser_types_BuiltinTypes$().q5, $m_Ltigerpython_parser_types_BuiltinTypes$().jh), $ct_T2__O__O__(new $c_T2(), $m_Ltigerpython_parser_types_BuiltinTypes$().BD, $m_Ltigerpython_parser_types_BuiltinTypes$().Nr), $ct_T2__O__O__(new $c_T2(), $m_Ltigerpython_parser_types_BuiltinTypes$().BE, $m_Ltigerpython_parser_types_BuiltinTypes$().Ns), $ct_T2__O__O__(new $c_T2(), $m_Ltigerpython_parser_types_BuiltinTypes$().f9, $m_Ltigerpython_parser_types_BuiltinTypes$().gW), $ct_T2__O__O__(new $c_T2(), $m_Ltigerpython_parser_types_BuiltinTypes$().sh, $m_Ltigerpython_parser_types_BuiltinTypes$().Nt), $ct_T2__O__O__(new $c_T2(), $m_Ltigerpython_parser_types_BuiltinTypes$().fa, $m_Ltigerpython_parser_types_BuiltinTypes$().hB), $ct_T2__O__O__(new $c_T2(), $m_Ltigerpython_parser_types_BuiltinTypes$().BF, $m_Ltigerpython_parser_types_BuiltinTypes$().Nu), $ct_T2__O__O__(new $c_T2(), $m_Ltigerpython_parser_types_BuiltinTypes$().dc, $m_Ltigerpython_parser_types_BuiltinTypes$().nA), $ct_T2__O__O__(new $c_T2(), $m_Ltigerpython_parser_types_BuiltinTypes$().BG, $m_Ltigerpython_parser_types_BuiltinTypes$().Nv), $ct_T2__O__O__(new $c_T2(), $m_Ltigerpython_parser_types_BuiltinTypes$().bE, $m_Ltigerpython_parser_types_BuiltinTypes$().iv), $ct_T2__O__O__(new $c_T2(), $m_Ltigerpython_parser_types_BuiltinTypes$().hC, $m_Ltigerpython_parser_types_BuiltinTypes$().nC)])); + this.NF = $m_scm_Map$().as(new $c_sjsr_WrappedVarArgs([$ct_T2__O__O__(new $c_T2(), $m_Ltigerpython_parser_types_BuiltinTypes$().f8, $m_Ltigerpython_parser_types_BuiltinTypes$().it), $ct_T2__O__O__(new $c_T2(), $m_Ltigerpython_parser_types_BuiltinTypes$().GG, $m_Ltigerpython_parser_types_BuiltinTypes$().Np), $ct_T2__O__O__(new $c_T2(), $m_Ltigerpython_parser_types_BuiltinTypes$().BA, $m_Ltigerpython_parser_types_BuiltinTypes$().Nq), $ct_T2__O__O__(new $c_T2(), $m_Ltigerpython_parser_types_BuiltinTypes$().vR, $m_Ltigerpython_parser_types_BuiltinTypes$().nz), $ct_T2__O__O__(new $c_T2(), $m_Ltigerpython_parser_types_BuiltinTypes$().sg, $m_Ltigerpython_parser_types_BuiltinTypes$().vS), $ct_T2__O__O__(new $c_T2(), $m_Ltigerpython_parser_types_BuiltinTypes$().BC, $m_Ltigerpython_parser_types_BuiltinTypes$().GJ), $ct_T2__O__O__(new $c_T2(), $m_Ltigerpython_parser_types_BuiltinTypes$().q5, $m_Ltigerpython_parser_types_BuiltinTypes$().jh), $ct_T2__O__O__(new $c_T2(), $m_Ltigerpython_parser_types_BuiltinTypes$().BD, $m_Ltigerpython_parser_types_BuiltinTypes$().Nr), $ct_T2__O__O__(new $c_T2(), $m_Ltigerpython_parser_types_BuiltinTypes$().BE, $m_Ltigerpython_parser_types_BuiltinTypes$().Ns), $ct_T2__O__O__(new $c_T2(), $m_Ltigerpython_parser_types_BuiltinTypes$().f9, $m_Ltigerpython_parser_types_BuiltinTypes$().gW), $ct_T2__O__O__(new $c_T2(), $m_Ltigerpython_parser_types_BuiltinTypes$().sh, $m_Ltigerpython_parser_types_BuiltinTypes$().Nt), $ct_T2__O__O__(new $c_T2(), $m_Ltigerpython_parser_types_BuiltinTypes$().fa, $m_Ltigerpython_parser_types_BuiltinTypes$().hB), $ct_T2__O__O__(new $c_T2(), $m_Ltigerpython_parser_types_BuiltinTypes$().BF, $m_Ltigerpython_parser_types_BuiltinTypes$().Nu), $ct_T2__O__O__(new $c_T2(), $m_Ltigerpython_parser_types_BuiltinTypes$().dc, $m_Ltigerpython_parser_types_BuiltinTypes$().nA), $ct_T2__O__O__(new $c_T2(), $m_Ltigerpython_parser_types_BuiltinTypes$().BG, $m_Ltigerpython_parser_types_BuiltinTypes$().Nv), $ct_T2__O__O__(new $c_T2(), $m_Ltigerpython_parser_types_BuiltinTypes$().bE, $m_Ltigerpython_parser_types_BuiltinTypes$().iu), $ct_T2__O__O__(new $c_T2(), $m_Ltigerpython_parser_types_BuiltinTypes$().hC, $m_Ltigerpython_parser_types_BuiltinTypes$().nC)])); } $p = $c_Ltigerpython_parser_types_Instance$.prototype = new $h_O(); $p.constructor = $c_Ltigerpython_parser_types_Instance$; @@ -28991,11 +28997,11 @@ $p.c8 = (function(name) { }); $p.bl = (function(expr) { if ((expr instanceof $c_Ltigerpython_parser_ast_AstNode$StringValue)) { - return $m_Ltigerpython_parser_types_BuiltinTypes$().iv; - } else if ((expr instanceof $c_Ltigerpython_parser_ast_AstNode$BooleanValue)) { return $m_Ltigerpython_parser_types_BuiltinTypes$().iu; + } else if ((expr instanceof $c_Ltigerpython_parser_ast_AstNode$BooleanValue)) { + return $m_Ltigerpython_parser_types_BuiltinTypes$().it; } else if ((expr instanceof $c_Ltigerpython_parser_ast_AstNode$Compare)) { - return $m_Ltigerpython_parser_types_BuiltinTypes$().iu; + return $m_Ltigerpython_parser_types_BuiltinTypes$().it; } else if ((expr instanceof $c_Ltigerpython_parser_ast_AstNode$Attribute)) { return this.Vb(expr); } else if ((expr instanceof $c_Ltigerpython_parser_ast_AstNode$Await)) { @@ -29014,9 +29020,9 @@ $p.bl = (function(expr) { } else if ((expr instanceof $c_Ltigerpython_parser_ast_AstNode$ListComp)) { return this.Vl(expr); } else if ((expr instanceof $c_Ltigerpython_parser_ast_AstNode$Dict)) { - return $m_Ltigerpython_parser_types_BuiltinTypes$().vR; + return $m_Ltigerpython_parser_types_BuiltinTypes$().vS; } else if ((expr instanceof $c_Ltigerpython_parser_ast_AstNode$DictComp)) { - return $m_Ltigerpython_parser_types_BuiltinTypes$().vR; + return $m_Ltigerpython_parser_types_BuiltinTypes$().vS; } else if ((expr instanceof $c_Ltigerpython_parser_ast_AstNode$Name)) { var x15 = expr; var dataType = this.c8(x15.R); @@ -29049,7 +29055,7 @@ $p.Vd = (function(binOp) { if (((x$3 === null) ? (x1 === null) : x$3.b(x1))) { var $x_1 = true; } else { - var x$5 = $m_Ltigerpython_parser_ast_BinOp$().j4; + var x$5 = $m_Ltigerpython_parser_ast_BinOp$().j3; if (((x$5 === null) ? (x1 === null) : x$5.b(x1))) { var $x_1 = true; } else { @@ -29061,7 +29067,7 @@ $p.Vd = (function(binOp) { if (((x$9 === null) ? (x1 === null) : x$9.b(x1))) { var $x_1 = true; } else { - var x$11 = $m_Ltigerpython_parser_ast_BinOp$().xZ; + var x$11 = $m_Ltigerpython_parser_ast_BinOp$().y0; if (((x$11 === null) ? (x1 === null) : x$11.b(x1))) { var $x_1 = true; } else { @@ -29069,7 +29075,7 @@ $p.Vd = (function(binOp) { if (((x$13 === null) ? (x1 === null) : x$13.b(x1))) { var $x_1 = true; } else { - var x$15 = $m_Ltigerpython_parser_ast_BinOp$().j5; + var x$15 = $m_Ltigerpython_parser_ast_BinOp$().j4; if (((x$15 === null) ? (x1 === null) : x$15.b(x1))) { var $x_1 = true; } else { @@ -29089,13 +29095,13 @@ $p.Vd = (function(binOp) { } } if ($x_1) { - return $m_Ltigerpython_parser_types_BuiltinTypes$().iu; + return $m_Ltigerpython_parser_types_BuiltinTypes$().it; } else { var x$21 = $m_Ltigerpython_parser_ast_BinOp$().rQ; if (((x$21 === null) ? (x1 === null) : x$21.b(x1))) { - return (left.sX($m_Ltigerpython_parser_types_BuiltinTypes$().f9) ? right : (right.sX($m_Ltigerpython_parser_types_BuiltinTypes$().f9) ? left : ((left.sX($m_Ltigerpython_parser_types_BuiltinTypes$().q5) && right.sX($m_Ltigerpython_parser_types_BuiltinTypes$().q5)) ? $m_Ltigerpython_parser_types_BuiltinTypes$().jh : (($f_sc_SeqOps__contains__O__Z(new $c_sjsr_WrappedVarArgs([$m_Ltigerpython_parser_types_BuiltinTypes$().q5, $m_Ltigerpython_parser_types_BuiltinTypes$().vQ]), left) && $f_sc_SeqOps__contains__O__Z(new $c_sjsr_WrappedVarArgs([$m_Ltigerpython_parser_types_BuiltinTypes$().q5, $m_Ltigerpython_parser_types_BuiltinTypes$().vQ]), right)) ? $m_Ltigerpython_parser_types_BuiltinTypes$().nz : $m_Ltigerpython_parser_types_BuiltinTypes$().ar)))); + return (left.sX($m_Ltigerpython_parser_types_BuiltinTypes$().f9) ? right : (right.sX($m_Ltigerpython_parser_types_BuiltinTypes$().f9) ? left : ((left.sX($m_Ltigerpython_parser_types_BuiltinTypes$().q5) && right.sX($m_Ltigerpython_parser_types_BuiltinTypes$().q5)) ? $m_Ltigerpython_parser_types_BuiltinTypes$().jh : (($f_sc_SeqOps__contains__O__Z(new $c_sjsr_WrappedVarArgs([$m_Ltigerpython_parser_types_BuiltinTypes$().q5, $m_Ltigerpython_parser_types_BuiltinTypes$().vR]), left) && $f_sc_SeqOps__contains__O__Z(new $c_sjsr_WrappedVarArgs([$m_Ltigerpython_parser_types_BuiltinTypes$().q5, $m_Ltigerpython_parser_types_BuiltinTypes$().vR]), right)) ? $m_Ltigerpython_parser_types_BuiltinTypes$().nz : $m_Ltigerpython_parser_types_BuiltinTypes$().ar)))); } else { - var x$23 = $m_Ltigerpython_parser_ast_BinOp$().y1; + var x$23 = $m_Ltigerpython_parser_ast_BinOp$().y2; if (((x$23 === null) ? (x1 === null) : x$23.b(x1))) { return (right.sX($m_Ltigerpython_parser_types_BuiltinTypes$().f9) ? left : $m_Ltigerpython_parser_types_BuiltinTypes$().ar); } else { @@ -29364,9 +29370,9 @@ $p.Vl = (function(listComp) { var name = x2.R; try { var this$3 = this.yu; - var elem = new $c_Ltigerpython_parser_types_TypeAstWalker$Parameter(name, this.bl($m_sc_ArrayOps$().aA(listComp.gx).iY).kw()); + var elem = new $c_Ltigerpython_parser_types_TypeAstWalker$Parameter(name, this.bl($m_sc_ArrayOps$().aA(listComp.gx).iX).kw()); this$3.m3(elem); - return this.bl(listComp.j1); + return this.bl(listComp.j0); } finally { this.yu.jD(false); } @@ -29396,7 +29402,7 @@ function $p_Ltigerpython_utilities_completer_Completer__parser$lzycompute__Ltige } function $p_Ltigerpython_utilities_completer_Completer__ast$lzycompute__Ltigerpython_parser_ast_AstNode($thiz) { if (((((2 & $thiz.jj) << 24) >> 24) === 0)) { - $thiz.GV = $thiz.wR().wO(); + $thiz.GV = $thiz.wS().wP(); $thiz.jj = (((2 | $thiz.jj) << 24) >> 24); } return $thiz.GV; @@ -29433,7 +29439,7 @@ $p.constructor = $c_Ltigerpython_utilities_completer_Completer; function $h_Ltigerpython_utilities_completer_Completer() { } $h_Ltigerpython_utilities_completer_Completer.prototype = $p; -$p.wR = (function() { +$p.wS = (function() { return (((((1 & this.jj) << 24) >> 24) === 0) ? $p_Ltigerpython_utilities_completer_Completer__parser$lzycompute__Ltigerpython_parser_parsing_Parser(this) : this.GX); }); $p.T6 = (function() { @@ -29453,7 +29459,7 @@ $p.V9 = (function(functionName) { } }); $p.Iv = (function() { - var x1 = this.wR().Qm(this.g2); + var x1 = this.wS().Qm(this.g2); if ((x1 !== null)) { var x1$2 = this.D5().sQ(this.g2); if ((!(x1$2 instanceof $c_s_Some))) { @@ -29468,7 +29474,7 @@ $p.Iv = (function() { var this$4 = token.o; if ($f_sc_SeqOps__contains__O__Z(new $c_sjsr_WrappedVarArgs([$m_Ltigerpython_parser_lexer_TokenType$().cH, $m_Ltigerpython_parser_lexer_TokenType$().dx]), this$4)) { if (x1.Vv(token.x, $m_Ltigerpython_parser_lexer_TokenType$().aw)) { - var nameWalker = new $c_Ltigerpython_utilities_completer_NameWalker(this.wR().IZ(x1.hA), this.kk); + var nameWalker = new $c_Ltigerpython_utilities_completer_NameWalker(this.wS().IZ(x1.hA), this.kk); var x1$4 = nameWalker.UR(this.g2); if ((x1$4 instanceof $c_s_Some)) { var x2$4 = x1$4; @@ -29531,7 +29537,7 @@ $p.Iv = (function() { } } } - var lineAst = this.wR().IZ(x1.hA); + var lineAst = this.wS().IZ(x1.hA); var nameWalker$2 = new $c_Ltigerpython_utilities_completer_NameWalker(lineAst, this.kk); var x1$6 = x1.c2(); var x$4 = $m_Ltigerpython_parser_lexer_TokenType$().gB; @@ -29545,7 +29551,7 @@ $p.Iv = (function() { var filterType; if ((x1$7 instanceof $c_s_Some)) { if ((x1$7.X.cw < this.g2)) { - var filterType = $p_Ltigerpython_utilities_completer_Completer__FilterType__Ltigerpython_utilities_completer_Completer$FilterType$(this).vU; + var filterType = $p_Ltigerpython_utilities_completer_Completer__FilterType__Ltigerpython_utilities_completer_Completer$FilterType$(this).vV; break matchEnd4$5; } } @@ -29565,7 +29571,7 @@ $p.Iv = (function() { var filterType = $p_Ltigerpython_utilities_completer_Completer__FilterType__Ltigerpython_utilities_completer_Completer$FilterType$(this).NP; } } - var moduleBase = ((lineAst instanceof $c_Ltigerpython_parser_ast_AstNode$ImportFrom) ? lineAst.j0 : null); + var moduleBase = ((lineAst instanceof $c_Ltigerpython_parser_ast_AstNode$ImportFrom) ? lineAst.iZ : null); var x1$9 = nameWalker$2.Qp(this.g2); if ((x1$9 instanceof $c_s_Some)) { var x2$8 = x1$9; @@ -29579,13 +29585,13 @@ $p.Iv = (function() { var $x_3 = false; } if ($x_3) { - var x$15 = $p_Ltigerpython_utilities_completer_Completer__FilterType__Ltigerpython_utilities_completer_Completer$FilterType$(this).vU; + var x$15 = $p_Ltigerpython_utilities_completer_Completer__FilterType__Ltigerpython_utilities_completer_Completer$FilterType$(this).vV; if (((filterType === null) ? (x$15 === null) : filterType.b(x$15))) { var n = scope.Uq(moduleBase, prefixName); } else { var x$17 = $p_Ltigerpython_utilities_completer_Completer__FilterType__Ltigerpython_utilities_completer_Completer$FilterType$(this).sn; if (((filterType === null) ? (x$17 === null) : filterType.b(x$17))) { - var n = scope.zt().wa.jt(prefixName); + var n = scope.zt().wb.jt(prefixName); } else { var n = scope.jt(prefixName); } @@ -29593,7 +29599,7 @@ $p.Iv = (function() { if ((n instanceof $c_s_Some)) { var x2$9 = n; var baseName = x2$9.X; - var x$19 = $p_Ltigerpython_utilities_completer_Completer__FilterType__Ltigerpython_utilities_completer_Completer$FilterType$(this).vU; + var x$19 = $p_Ltigerpython_utilities_completer_Completer__FilterType__Ltigerpython_utilities_completer_Completer$FilterType$(this).vV; if (((filterType === null) ? (x$19 === null) : filterType.b(x$19))) { var $x_4 = true; } else { @@ -29623,7 +29629,7 @@ $p.Iv = (function() { var $x_7 = false; } if ($x_7) { - var x$27 = $p_Ltigerpython_utilities_completer_Completer__FilterType__Ltigerpython_utilities_completer_Completer$FilterType$(this).vU; + var x$27 = $p_Ltigerpython_utilities_completer_Completer__FilterType__Ltigerpython_utilities_completer_Completer$FilterType$(this).vV; var $x_6 = (!((filterType === null) ? (x$27 === null) : filterType.b(x$27))); } else { var $x_6 = false; @@ -29663,12 +29669,12 @@ $p.Iv = (function() { } var x$28 = $p_Ltigerpython_utilities_completer_Completer__FilterType__Ltigerpython_utilities_completer_Completer$FilterType$(this).sn; if (((x$28 === null) ? (filterType === null) : x$28.b(filterType))) { - return new $c_Ltigerpython_utilities_completer_ImportFilter(this.D5().wa); + return new $c_Ltigerpython_utilities_completer_ImportFilter(this.D5().wb); } else { - var x$30 = $p_Ltigerpython_utilities_completer_Completer__FilterType__Ltigerpython_utilities_completer_Completer$FilterType$(this).vU; + var x$30 = $p_Ltigerpython_utilities_completer_Completer__FilterType__Ltigerpython_utilities_completer_Completer$FilterType$(this).vV; if (((x$30 === null) ? (filterType === null) : x$30.b(filterType))) { try { - var result$2 = scope.zt().wa.c8(moduleBase.R); + var result$2 = scope.zt().wb.c8(moduleBase.R); var base = (result$2.t() ? scope.c8(moduleBase.R) : result$2); } catch (e) { if ((e instanceof $c_jl_NullPointerException)) { @@ -29696,7 +29702,7 @@ $p.Iv = (function() { } }); $p.Ql = (function() { - var x1 = this.wR().Qm(this.g2); + var x1 = this.wS().Qm(this.g2); if ((x1 !== null)) { var x1$2 = x1.Qs(this.g2); if ((x1$2 instanceof $c_s_Some)) { @@ -29706,7 +29712,7 @@ $p.Ql = (function() { var x$2 = $m_Ltigerpython_parser_lexer_TokenType$().S; if ((x === x$2)) { var scope = this.D5().sQ(this.g2).b7(); - var nameWalker = new $c_Ltigerpython_utilities_completer_NameWalker(this.wR().IZ(x1.hA), this.kk); + var nameWalker = new $c_Ltigerpython_utilities_completer_NameWalker(this.wS().IZ(x1.hA), this.kk); var x1$3 = nameWalker.Qp(token.cw); if ((x1$3 instanceof $c_s_Some)) { var x2$3 = x1$3; @@ -29763,9 +29769,9 @@ function $c_Ltigerpython_utilities_completer_NameWalker(line, source) { this.GY = source; this.g3 = $m_scm_Map$().as($m_sci_Nil$()); if ((line instanceof $c_Ltigerpython_parser_ast_AstNode$Expression)) { - this.a7(line); + this.a8(line); } else if ((line instanceof $c_Ltigerpython_parser_ast_AstNode$Statement)) { - this.iM(line); + this.iL(line); } } $p = $c_Ltigerpython_utilities_completer_NameWalker.prototype = new $h_O(); @@ -29804,13 +29810,13 @@ $p.UR = (function(pos) { this$4.ku().az(f); return $m_s_Option$().kn(result.b2); }); -$p.iM = (function(node) { +$p.iL = (function(node) { if ((node instanceof $c_Ltigerpython_parser_ast_AstNode$Assignment)) { var x2 = node; var xs = x2.gu; var f = ((target$2) => { var target = target$2; - this.a7(target); + this.a8(target); }); var len = xs.a.length; var i = 0; @@ -29881,37 +29887,37 @@ $p.iM = (function(node) { } else { throw new $c_s_MatchError(xs); } - this.a7(x2.cQ); + this.a8(x2.cQ); } else if ((node instanceof $c_Ltigerpython_parser_ast_AstNode$AugAssign)) { var x3$1 = node; - this.a7(x3$1.l3); - this.a7(x3$1.ou); + this.a8(x3$1.l3); + this.a8(x3$1.ou); } else if ((node instanceof $c_Ltigerpython_parser_ast_AstNode$ExprStatement)) { - this.a7(node.bS); + this.a8(node.bS); } else if ((node instanceof $c_Ltigerpython_parser_ast_AstNode$If)) { var x5$1 = node; - this.a7(x5$1.jZ); - this.iM(x5$1.ep); - this.iM(x5$1.ci); + this.a8(x5$1.jZ); + this.iL(x5$1.ep); + this.iL(x5$1.ci); } else if ((node instanceof $c_Ltigerpython_parser_ast_AstNode$While)) { var x6$1 = node; - this.a7(x6$1.k5); - this.iM(x6$1.hu); - this.iM(x6$1.j3); + this.a8(x6$1.k5); + this.iL(x6$1.hu); + this.iL(x6$1.j2); } else if ((node instanceof $c_Ltigerpython_parser_ast_AstNode$For)) { var x7$1 = node; - this.a7(x7$1.l8); - this.a7(x7$1.l7); - this.iM(x7$1.gv); - this.iM(x7$1.gw); + this.a8(x7$1.l8); + this.a8(x7$1.l7); + this.iL(x7$1.gv); + this.iL(x7$1.gw); } else if ((node instanceof $c_Ltigerpython_parser_ast_AstNode$Return)) { - this.a7(node.j2); + this.a8(node.j1); } else if ((node instanceof $c_Ltigerpython_parser_ast_AstNode$Import)) { var x9$1 = node; var xs$1 = x9$1.k0; var f$1 = ((name$2) => { var name = name$2; - this.a7(name); + this.a8(name); }); var len$1 = xs$1.a.length; var i$1 = 0; @@ -29984,11 +29990,11 @@ $p.iM = (function(node) { } } else if ((node instanceof $c_Ltigerpython_parser_ast_AstNode$ImportFrom)) { var x10$2 = node; - this.a7(x10$2.j0); + this.a8(x10$2.iZ); var xs$2 = x10$2.k1; var f$2 = ((name$3$2) => { var name$3 = name$3$2; - this.a7(name$3); + this.a8(name$3); }); var len$2 = xs$2.a.length; var i$2 = 0; @@ -30060,14 +30066,14 @@ $p.iM = (function(node) { throw new $c_s_MatchError(xs$2); } } else if ((node instanceof $c_Ltigerpython_parser_ast_AstNode$ImportStar)) { - this.a7(node.mN); + this.a8(node.mN); } else if ((node instanceof $c_Ltigerpython_parser_ast_AstNode$Print)) { var x12 = node; - this.a7(x12.lb); + this.a8(x12.lb); var xs$3 = x12.lc; var f$3 = ((value$2) => { var value = value$2; - this.a7(value); + this.a8(value); }); var len$3 = xs$3.a.length; var i$3 = 0; @@ -30144,7 +30150,7 @@ $p.iM = (function(node) { var xs$4 = x13.cS; var f$4 = ((stmt$2) => { var stmt = stmt$2; - this.iM(stmt); + this.iL(stmt); }); var len$4 = xs$4.a.length; var i$4 = 0; @@ -30218,12 +30224,12 @@ $p.iM = (function(node) { } } }); -$p.a7 = (function(node) { +$p.a8 = (function(node) { var rc17 = false; var x3 = null; matchEnd18: { if ((node instanceof $c_Ltigerpython_parser_ast_AstNode$Alias)) { - this.a7(node.fq); + this.a8(node.fq); break matchEnd18; } if ((node instanceof $c_Ltigerpython_parser_ast_AstNode$Name)) { @@ -30237,7 +30243,7 @@ $p.a7 = (function(node) { var key = x2$2.aH(); $p_scm_HashMap__put0__O__O__Z__s_Some(this$2, key, x2$2, false); } else if ((x1$2 !== null)) { - this.a7(x1$2); + this.a8(x1$2); } break matchEnd18; } @@ -30256,7 +30262,7 @@ $p.a7 = (function(node) { var key$2 = x5.rl; $p_scm_HashMap__put0__O__O__Z__s_Some(this$6, key$2, x5, false); } - this.a7(x5.dK); + this.a8(x5.dK); break matchEnd18; } if ((node instanceof $c_Ltigerpython_parser_ast_AstNode$Call)) { @@ -30270,11 +30276,11 @@ $p.a7 = (function(node) { var key$4 = ((1 + x6.hq) | 0); $p_scm_HashMap__put0__O__O__Z__s_Some(this$8, key$4, x6, false); } - this.a7(x6.dN); + this.a8(x6.dN); var xs = x6.bR; var f = ((arg$2) => { var arg = arg$2; - this.a7(arg); + this.a8(arg); }); var len = xs.a.length; var i = 0; @@ -30354,7 +30360,7 @@ $p.a7 = (function(node) { var key$5 = x7$1.oN; $p_scm_HashMap__put0__O__O__Z__s_Some(this$12, key$5, x7$1, false); } - this.a7(x7$1.hs); + this.a8(x7$1.hs); break matchEnd18; } if ((node instanceof $c_Ltigerpython_parser_ast_AstNode$List)) { @@ -30367,7 +30373,7 @@ $p.a7 = (function(node) { var xs$1 = x8$1.f3; var f$1 = ((elem$2) => { var elem = elem$2; - this.a7(elem); + this.a8(elem); }); var len$1 = xs$1.a.length; var i$1 = 0; @@ -30450,7 +30456,7 @@ $p.a7 = (function(node) { var xs$2 = x9$2.mF; var f$2 = ((key$2$1) => { var key$8 = key$2$1; - this.a7(key$8); + this.a8(key$8); }); var len$2 = xs$2.a.length; var i$2 = 0; @@ -30524,7 +30530,7 @@ $p.a7 = (function(node) { var xs$3 = x9$2.mG; var f$3 = ((value$2) => { var value$1 = value$2; - this.a7(value$1); + this.a8(value$1); }); var len$3 = xs$3.a.length; var i$3 = 0; @@ -30604,11 +30610,11 @@ $p.a7 = (function(node) { var key$9 = x10$4.oH; $p_scm_HashMap__put0__O__O__Z__s_Some(this$21, key$9, x10$4, false); } - this.a7(x10$4.j1); + this.a8(x10$4.j0); var xs$4 = x10$4.gx; var f$4 = ((generator$2) => { var generator = generator$2; - this.a7(generator.iY); + this.a8(generator.iX); }); var len$4 = xs$4.a.length; var i$4 = 0; @@ -30688,12 +30694,12 @@ $p.a7 = (function(node) { var key$10 = x11.oz; $p_scm_HashMap__put0__O__O__Z__s_Some(this$24, key$10, x11, false); } - this.a7(x11.mI); - this.a7(x11.mJ); + this.a8(x11.mI); + this.a8(x11.mJ); var xs$5 = x11.mH; var f$5 = ((generator$3$2) => { var generator$3 = generator$3$2; - this.a7(generator$3.iY); + this.a8(generator$3.iX); }); var len$5 = xs$5.a.length; var i$5 = 0; @@ -30768,8 +30774,8 @@ $p.a7 = (function(node) { } if ((node instanceof $c_Ltigerpython_parser_ast_AstNode$BinaryOp)) { var x12 = node; - this.a7(x12.dL); - this.a7(x12.dM); + this.a8(x12.dL); + this.a8(x12.dM); break matchEnd18; } if ($is_Ltigerpython_parser_ast_AstNode$Span(node)) { @@ -30779,16 +30785,16 @@ $p.a7 = (function(node) { break matchEnd18; } if ($is_Ltigerpython_parser_ast_AstNode$ExprWrapper(node)) { - this.a7(node.wz()); + this.a8(node.wA()); break matchEnd18; } if ((node instanceof $c_Ltigerpython_parser_ast_AstNode$Compare)) { var x15 = node; - this.a7(x15.fr); + this.a8(x15.fr); var xs$6 = x15.bX; var f$6 = ((cmp$2) => { var cmp = cmp$2; - this.a7(cmp.ao()); + this.a8(cmp.ao()); }); var len$6 = xs$6.a.length; var i$6 = 0; @@ -30880,7 +30886,7 @@ function $h_Ltigerpython_utilities_completer_PyiModuleParser$() { $h_Ltigerpython_utilities_completer_PyiModuleParser$.prototype = $p; $p.S0 = (function(exprAst) { if ((exprAst instanceof $c_Ltigerpython_utilities_fastparse_NameNode)) { - return exprAst.iy; + return exprAst.ix; } else if ((exprAst instanceof $c_Ltigerpython_utilities_fastparse_AttributeNode)) { var x3 = exprAst; var base = x3.q8; @@ -30996,8 +31002,8 @@ $p.ec = (function(exprAst) { return ((name + ((argType !== null) ? (" : " + this.ec(argType)) : "")) + ((defaultValue !== null) ? (" = " + this.ec(defaultValue)) : "")); } else if ((exprAst instanceof $c_Ltigerpython_utilities_fastparse_Arguments)) { var x3 = exprAst; - var args = x3.vY; - var posOnlyArgs = x3.vZ; + var args = x3.vZ; + var posOnlyArgs = x3.w0; var $x_19 = $m_s_Predef$(); var f = ((exprAst$2$2) => $m_Ltigerpython_utilities_fastparse_ExprAst$().ec(exprAst$2$2)); var len = posOnlyArgs.a.length; @@ -31085,7 +31091,7 @@ $p.ec = (function(exprAst) { var this$13 = $m_s_Array$(); var newLength = ((ys.a.length + $m_jl_reflect_Array$().b0(xs)) | 0); if ($d_T.l().hQ($d_T.l())) { - var dest$1 = ($d_T.l().hS() ? this$13.hN(ys, newLength) : $m_ju_Arrays$().iC(ys, newLength, $d_T.r().l())); + var dest$1 = ($d_T.l().hS() ? this$13.hN(ys, newLength) : $m_ju_Arrays$().iB(ys, newLength, $d_T.r().l())); } else { var dest = new ($d_T.r().C)(newLength); $m_s_Array$().bz(ys, 0, dest, 0, ys.a.length); @@ -31178,7 +31184,7 @@ $p.ec = (function(exprAst) { var this$23 = $m_s_Array$(); var newLength$1 = ((xs$1.a.length + ys$1.a.length) | 0); if ($d_T.l().hQ($objectGetClass(xs$1).dg())) { - var dest$3 = ($d_T.l().hS() ? this$23.hN(xs$1, newLength$1) : $m_ju_Arrays$().iC(xs$1, newLength$1, $d_T.r().l())); + var dest$3 = ($d_T.l().hS() ? this$23.hN(xs$1, newLength$1) : $m_ju_Arrays$().iB(xs$1, newLength$1, $d_T.r().l())); } else { var dest$2 = new ($d_T.r().C)(newLength$1); $m_s_Array$().bz(xs$1, 0, dest$2, 0, xs$1.a.length); @@ -31193,9 +31199,9 @@ $p.ec = (function(exprAst) { return ((this.ec(base) + ".") + name$2); } else if ((exprAst instanceof $c_Ltigerpython_utilities_fastparse_BinOpNode)) { var x5$2 = exprAst; - var left = x5$2.w0; - var op = x5$2.w1; - var right = x5$2.w2; + var left = x5$2.w1; + var op = x5$2.w2; + var right = x5$2.w3; return ((((this.ec(left) + " ") + $cToS(op)) + " ") + this.ec(right)); } else if ((exprAst instanceof $c_Ltigerpython_utilities_fastparse_CallNode)) { var x6$2 = exprAst; @@ -31473,12 +31479,12 @@ $p.ec = (function(exprAst) { } return (("[" + $f_sc_IterableOnceOps__mkString__T__T__T__T($x_50.at(ys$4), "", ", ", "")) + "]"); } else if ((exprAst instanceof $c_Ltigerpython_utilities_fastparse_NameNode)) { - return exprAst.iy; + return exprAst.ix; } else if ((exprAst instanceof $c_Ltigerpython_utilities_fastparse_NumberValueNode)) { return exprAst.sr; } else if ((exprAst instanceof $c_Ltigerpython_utilities_fastparse_OrNode)) { var x12 = exprAst; - var items = x12.w6; + var items = x12.w7; var $x_60 = $m_s_Predef$(); var f$5 = ((exprAst$5$2) => $m_Ltigerpython_utilities_fastparse_ExprAst$().ec(exprAst$5$2)); var len$5 = items.a.length; @@ -32030,7 +32036,7 @@ $p.Ph = (function(args, posOnlyArgs) { }); $p.T2 = (function(args) { if ((args !== null)) { - return this.Ph(args.vY, args.vZ); + return this.Ph(args.vZ, args.w0); } else { var xs = $m_sci_Nil$(); var array = new ($d_Ltigerpython_utilities_fastparse_Arg.r().C)(xs.g()); @@ -32099,7 +32105,7 @@ function $p_Ltigerpython_utilities_fastparse_PyiParser__executeCondBody__V($thiz $thiz.U.dF($m_Ltigerpython_utilities_fastparse_TokenType$().hE); if ($thiz.U.dF($m_Ltigerpython_utilities_fastparse_TokenType$().nE)) { var indent = $p_Ltigerpython_utilities_fastparse_PyiParser__readIndent__Ltigerpython_utilities_fastparse_Indent($thiz); - while (($thiz.U.c() && (!$thiz.U.wW(indent)))) { + while (($thiz.U.c() && (!$thiz.U.wX(indent)))) { $thiz.De(); } } else { @@ -32130,7 +32136,7 @@ function $p_Ltigerpython_utilities_fastparse_PyiParser___importNameFromModule__T function $p_Ltigerpython_utilities_fastparse_PyiParser___parseAliasList__T__V($thiz, module) { while (($thiz.U.c() && ($thiz.U.cX() instanceof $c_Ltigerpython_utilities_fastparse_NameToken))) { $p_Ltigerpython_utilities_fastparse_PyiParser___importNameFromModule__T__T__T__V($thiz, module, $thiz.U.qE(), ($thiz.U.dF($m_Ltigerpython_utilities_fastparse_TokenType$().H2) ? $thiz.U.qE() : null)); - $thiz.U.dF($m_Ltigerpython_utilities_fastparse_TokenType$().w7); + $thiz.U.dF($m_Ltigerpython_utilities_fastparse_TokenType$().w8); } } function $p_Ltigerpython_utilities_fastparse_PyiParser__parseExprList__Ltigerpython_utilities_fastparse_LeftPar__Ltigerpython_utilities_fastparse_ExprAst($thiz, leftPar) { @@ -32177,7 +32183,7 @@ function $p_Ltigerpython_utilities_fastparse_PyiParser___parseArgList__Ltigerpyt matchEnd4: { if ((x1 instanceof $c_Ltigerpython_utilities_fastparse_NameNode)) { var x2 = x1; - var n = x2.iy; + var n = x2.ix; if ($thiz.U.dF($m_Ltigerpython_utilities_fastparse_TokenType$().st)) { var elem = $ct_T2__O__O__(new $c_T2(), $m_s_Option$().kn(n), $thiz.fh()); exprList.I(elem); @@ -32214,7 +32220,7 @@ function $p_Ltigerpython_utilities_fastparse_PyiParser___parseArgList__Ltigerpyt } } function $p_Ltigerpython_utilities_fastparse_PyiParser___parseDictOrSet__Ltigerpython_utilities_fastparse_LeftPar__Ltigerpython_utilities_fastparse_ExprAst($thiz, leftPar) { - if ($thiz.U.wW(leftPar)) { + if ($thiz.U.wX(leftPar)) { var xs = $m_sci_Nil$(); var array = new ($d_Ltigerpython_utilities_fastparse_ExprAst.r().C)(xs.g()); var iterator = $m_sc_Iterator$().r; @@ -32247,7 +32253,7 @@ function $p_Ltigerpython_utilities_fastparse_PyiParser___parseDictOrSet__Ltigerp while ($thiz.U.zC()) { var elem$1 = $thiz.fh(); keys.I(elem$1); - $thiz.U.wL($m_Ltigerpython_utilities_fastparse_TokenType$().hE); + $thiz.U.wM($m_Ltigerpython_utilities_fastparse_TokenType$().hE); var elem$2 = $thiz.fh(); values.I(elem$2); } @@ -32349,7 +32355,7 @@ function $p_Ltigerpython_utilities_fastparse_PyiParser__readLeftPar__C__Ltigerpy var x1 = $thiz.U.dE(); if ((x1 instanceof $c_Ltigerpython_utilities_fastparse_LeftPar)) { var x2 = x1; - if ((x2.ix === ch)) { + if ((x2.iw === ch)) { return x2; } } @@ -32365,7 +32371,7 @@ function $p_Ltigerpython_utilities_fastparse_PyiParser__readRightPar__Ltigerpyth return x2; } } - var x1$2 = leftPar.ix; + var x1$2 = leftPar.iw; switch (x1$2) { case 40: { var ch = 41; @@ -32391,7 +32397,7 @@ function $p_Ltigerpython_utilities_fastparse_PyiParser__tryReadLeftPar__C__s_Opt var x1 = $thiz.U.cX(); if ((x1 instanceof $c_Ltigerpython_utilities_fastparse_LeftPar)) { var x2 = x1; - if ((x2.ix === ch)) { + if ((x2.iw === ch)) { $thiz.U.dE(); return new $c_s_Some(x2); } @@ -32489,7 +32495,7 @@ $p.De = (function() { }); $p.WY = (function() { var target = this.U.qE(); - if (this.U.dF($m_Ltigerpython_utilities_fastparse_TokenType$().w7)) { + if (this.U.dF($m_Ltigerpython_utilities_fastparse_TokenType$().w8)) { throw new $c_Ltigerpython_utilities_fastparse_PyiSyntaxError(this.qL(), "tuple unpacking not supported"); } var varType = (this.U.dF($m_Ltigerpython_utilities_fastparse_TokenType$().hE) ? this.fh() : null); @@ -32502,13 +32508,13 @@ $p.WY = (function() { } }); $p.X1 = (function() { - this.U.wL($m_Ltigerpython_utilities_fastparse_TokenType$().H3); + this.U.wM($m_Ltigerpython_utilities_fastparse_TokenType$().H3); var className = this.U.qE(); var x1 = $p_Ltigerpython_utilities_fastparse_PyiParser__tryReadLeftPar__C__s_Option(this, 40); if ((x1 instanceof $c_s_Some)) { var x2 = x1; var leftPar = x2.X; - if ((!this.U.wW(leftPar))) { + if ((!this.U.wX(leftPar))) { var args = $p_Ltigerpython_utilities_fastparse_PyiParser___parseArgList__Ltigerpython_utilities_fastparse_LeftPar__AT2(this, leftPar); if ((args.a.length !== 0)) { var x = args.a[(((-1) + args.a.length) | 0)].aC(); @@ -32699,7 +32705,7 @@ $p.X1 = (function() { } var baseClasses = x1$2___1; var metaClass = x1$2___2; - this.U.wL($m_Ltigerpython_utilities_fastparse_TokenType$().hE); + this.U.wM($m_Ltigerpython_utilities_fastparse_TokenType$().hE); this.TU(className, baseClasses, metaClass); this.yP = className; try { @@ -32718,7 +32724,7 @@ $p.Rc = (function() { var args = this.WW(); $p_Ltigerpython_utilities_fastparse_PyiParser__readRightPar__Ltigerpython_utilities_fastparse_LeftPar__Ltigerpython_utilities_fastparse_RightPar(this, leftPar); var returnType = (this.U.dF($m_Ltigerpython_utilities_fastparse_TokenType$().H0) ? this.fh() : null); - this.U.wL($m_Ltigerpython_utilities_fastparse_TokenType$().hE); + this.U.wM($m_Ltigerpython_utilities_fastparse_TokenType$().hE); var doc = this.Xb(); this.TW(funcName, $m_Ltigerpython_utilities_fastparse_FunctionArguments$().T2(args), returnType, (doc.t() ? null : doc.b7()), this.yP, this.ss, isAsync); }); @@ -32742,7 +32748,7 @@ $p.X4 = (function() { var this$5 = $m_s_Array$(); var newLength = ((1 + elts.a.length) | 0); if ($d_Ltigerpython_utilities_fastparse_ExprAst.l().hQ($objectGetClass(elts).dg())) { - var dest$1 = ($d_Ltigerpython_utilities_fastparse_ExprAst.l().hS() ? this$5.hN(elts, newLength) : $m_ju_Arrays$().iC(elts, newLength, $d_Ltigerpython_utilities_fastparse_ExprAst.r().l())); + var dest$1 = ($d_Ltigerpython_utilities_fastparse_ExprAst.l().hS() ? this$5.hN(elts, newLength) : $m_ju_Arrays$().iB(elts, newLength, $d_Ltigerpython_utilities_fastparse_ExprAst.r().l())); } else { var dest = new ($d_Ltigerpython_utilities_fastparse_ExprAst.r().C)(newLength); $m_s_Array$().bz(elts, 0, dest, 0, elts.a.length); @@ -32761,7 +32767,7 @@ $p.Ug = (function(left, op, right) { var p5 = x4.q8; var p6 = x4.q9; if ((p5 instanceof $c_Ltigerpython_utilities_fastparse_NameNode)) { - if (((p5.iy === "sys") && ((p6 === "version_info") && (right instanceof $c_Ltigerpython_utilities_fastparse_TupleNode)))) { + if (((p5.ix === "sys") && ((p6 === "version_info") && (right instanceof $c_Ltigerpython_utilities_fastparse_TupleNode)))) { var x9 = right; var p10 = x9.lH; if ((p10 !== null)) { @@ -32815,7 +32821,7 @@ $p.Ug = (function(left, op, right) { return false; }); $p.Xc = (function() { - this.U.wL($m_Ltigerpython_utilities_fastparse_TokenType$().H7); + this.U.wM($m_Ltigerpython_utilities_fastparse_TokenType$().H7); var left = this.fh(); var x1 = this.U.cX(); matchEnd11: { @@ -32889,7 +32895,7 @@ $p.Rf = (function() { throw new $c_s_MatchError(x1$2); } } - this.U.wL($m_Ltigerpython_utilities_fastparse_TokenType$().H8); + this.U.wM($m_Ltigerpython_utilities_fastparse_TokenType$().H8); var x1$3 = $p_Ltigerpython_utilities_fastparse_PyiParser__tryReadLeftPar__C__s_Option(this, 40); if ((x1$3 instanceof $c_s_Some)) { var x2$2 = x1$3; @@ -33151,9 +33157,9 @@ $p.zX = (function(base) { if ((x1 instanceof $c_Ltigerpython_utilities_fastparse_LeftPar)) { rc10 = true; x2 = x1; - if ((x2.ix === 40)) { + if ((x2.iw === 40)) { this.U.dE(); - if ((!this.U.wW(x2))) { + if ((!this.U.wX(x2))) { return this.zX(new $c_Ltigerpython_utilities_fastparse_CallNode(base, $p_Ltigerpython_utilities_fastparse_PyiParser___parseArgList__Ltigerpython_utilities_fastparse_LeftPar__AT2(this, x2))); } else { var xs = $m_sci_Nil$(); @@ -33169,7 +33175,7 @@ $p.zX = (function(base) { } } if (rc10) { - if ((x2.ix === 91)) { + if ((x2.iw === 91)) { this.U.dE(); return this.zX(new $c_Ltigerpython_utilities_fastparse_SubscriptNode(base, $p_Ltigerpython_utilities_fastparse_PyiParser__parseExprList__Ltigerpython_utilities_fastparse_LeftPar__Ltigerpython_utilities_fastparse_ExprAst(this, x2))); } @@ -33199,8 +33205,8 @@ $p.J0 = (function() { if ((x1 instanceof $c_Ltigerpython_utilities_fastparse_LeftPar)) { rc20 = true; x6 = x1; - if ((x6.ix === 40)) { - if ((!this.U.wW(x6))) { + if ((x6.iw === 40)) { + if ((!this.U.wX(x6))) { return $p_Ltigerpython_utilities_fastparse_PyiParser__parseExprList__Ltigerpython_utilities_fastparse_LeftPar__Ltigerpython_utilities_fastparse_ExprAst(this, x6); } else { var xs = $m_sci_Nil$(); @@ -33216,8 +33222,8 @@ $p.J0 = (function() { } } if (rc20) { - if ((x6.ix === 91)) { - if ((!this.U.wW(x6))) { + if ((x6.iw === 91)) { + if ((!this.U.wX(x6))) { return new $c_Ltigerpython_utilities_fastparse_ListNode($p_Ltigerpython_utilities_fastparse_PyiParser___parseExprList__Ltigerpython_utilities_fastparse_LeftPar__ALtigerpython_utilities_fastparse_ExprAst(this, x6)); } else { var xs$1 = $m_sci_Nil$(); @@ -33233,7 +33239,7 @@ $p.J0 = (function() { } } if (rc20) { - if ((x6.ix === 123)) { + if ((x6.iw === 123)) { return $p_Ltigerpython_utilities_fastparse_PyiParser___parseDictOrSet__Ltigerpython_utilities_fastparse_LeftPar__Ltigerpython_utilities_fastparse_ExprAst(this, x6); } } @@ -33244,7 +33250,7 @@ $p.J0 = (function() { return new $c_Ltigerpython_utilities_fastparse_ValueNode("..."); } if ((x1 instanceof $c_Ltigerpython_utilities_fastparse_FStringToken)) { - throw new $c_Ltigerpython_utilities_fastparse_PyiSyntaxError(x1.w3, "f-Strings are not supported"); + throw new $c_Ltigerpython_utilities_fastparse_PyiSyntaxError(x1.w4, "f-Strings are not supported"); } var message = $m_sc_StringOps$().ap("unexpected token: '%s'", new $c_sjsr_WrappedVarArgs([x1])); throw new $c_Ltigerpython_utilities_fastparse_PyiSyntaxError(this.qL(), message); @@ -33330,7 +33336,7 @@ function $p_Ltigerpython_utilities_scopes_AstWalker__getStringValue__Ltigerpytho var x3 = node; if ((x3.CQ() === "__doc__")) { var x1$2 = $p_Ltigerpython_utilities_scopes_AstWalker__getAttributeBase__Ltigerpython_parser_ast_AstNode$Expression__s_Option($thiz, x3.dK); - return ((x1$2 instanceof $c_s_Some) ? x1$2.X.ww() : null); + return ((x1$2 instanceof $c_s_Some) ? x1$2.X.wx() : null); } } if ((node instanceof $c_Ltigerpython_parser_ast_AstNode$BinaryOp)) { @@ -33428,7 +33434,7 @@ $p.constructor = $c_Ltigerpython_utilities_scopes_AstWalker; function $h_Ltigerpython_utilities_scopes_AstWalker() { } $h_Ltigerpython_utilities_scopes_AstWalker.prototype = $p; -$p.wv = (function(dest, dataType) { +$p.ww = (function(dest, dataType) { if ((dest instanceof $c_Ltigerpython_parser_ast_AstNode$Name)) { var x2 = dest; var target = x2.R; @@ -33446,7 +33452,7 @@ $p.wv = (function(dest, dataType) { } }); $p.c8 = (function(name) { - return ((this.dA !== null) ? this.dA.kv(name) : $m_sci_Map$().ad($m_Ltigerpython_utilities_scopes_BuiltinNames$().w8).b4(name)); + return ((this.dA !== null) ? this.dA.kv(name) : $m_sci_Map$().ad($m_Ltigerpython_utilities_scopes_BuiltinNames$().w9).b4(name)); }); $p.ag = (function(node) { if ((node instanceof $c_Ltigerpython_parser_ast_AstNode$Assignment)) { @@ -33473,7 +33479,7 @@ $p.ag = (function(node) { this.JJ(node); } else if ((node instanceof $c_Ltigerpython_parser_ast_AstNode$Return)) { var x12 = node; - var x1$2 = x12.j2; + var x1$2 = x12.j1; matchEnd5: { var dt; if ((x1$2 instanceof $c_Ltigerpython_parser_ast_AstNode$Tuple)) { @@ -33610,7 +33616,7 @@ $p.ag = (function(node) { this.JM(x15); } } else if ($is_Ltigerpython_parser_ast_AstNode$Body(node)) { - this.ag(node.wn()); + this.ag(node.wo()); this.ag(node.zn()); } }); @@ -33623,7 +33629,7 @@ $p.JC = (function(assignment) { var target = target$2; if ((target instanceof $c_Ltigerpython_parser_ast_AstNode$Name)) { var expr = assignment.cQ; - this.wv(target, this.dB.aX(expr)); + this.ww(target, this.dB.aX(expr)); } else if ((target instanceof $c_Ltigerpython_parser_ast_AstNode$Tuple)) { var x3 = target; var x1$2 = assignment.cQ; @@ -33638,7 +33644,7 @@ $p.JC = (function(assignment) { var v1 = i; var $x_1 = x3.aN.a[v1]; var expr$1 = x2.aN.a[v1]; - this.wv($x_1, this.dB.aX(expr$1)); + this.ww($x_1, this.dB.aX(expr$1)); if ((i === this$4.e1)) { break; } @@ -33660,7 +33666,7 @@ $p.JC = (function(assignment) { var i$1 = this$6.b9; while (true) { var v1$1 = i$1; - this.wv(x3.aN.a[v1$1], x2$2.wj.a[v1$1]); + this.ww(x3.aN.a[v1$1], x2$2.wk.a[v1$1]); if ((i$1 === this$6.e1)) { break; } @@ -33673,7 +33679,7 @@ $p.JC = (function(assignment) { var xs$3 = x3.aN; var f = ((t$2) => { var t = t$2; - this.wv(t, $m_Ltigerpython_utilities_types_BuiltinTypes$().ae); + this.ww(t, $m_Ltigerpython_utilities_types_BuiltinTypes$().ae); }); var len = xs$3.a.length; var i$2 = 0; @@ -33750,7 +33756,7 @@ $p.JC = (function(assignment) { var xs$4 = x3.aN; var f$1 = ((t$3$2) => { var t$3 = t$3$2; - this.wv(t$3, $m_Ltigerpython_utilities_types_BuiltinTypes$().ae); + this.ww(t$3, $m_Ltigerpython_utilities_types_BuiltinTypes$().ae); }); var len$1 = xs$4.a.length; var i$3 = 0; @@ -33857,7 +33863,7 @@ $p.JC = (function(assignment) { } } var expr$2 = assignment.cQ; - this.wv(x4$2, this.dB.aX(expr$2)); + this.ww(x4$2, this.dB.aX(expr$2)); } }); var len$2 = xs.a.length; @@ -34056,7 +34062,7 @@ $p.JD = (function(cls) { } } var result = new $c_Ltigerpython_utilities_types_PythonClass(cls.l5.R, ys$1); - var s = cls.xD; + var s = cls.xE; result.bo = s; var x1 = this.dA; if ((x1 instanceof $c_Ltigerpython_utilities_scopes_ClassScope)) { @@ -34137,7 +34143,7 @@ $p.JF = (function(function$1) { var x$1 = function$1.eo.mP; var that = params.a.length; var result = new $c_Ltigerpython_utilities_types_PythonFunction($x_5, params, ((x$1 < that) ? x$1 : that), this.V7(function$1.eo, $m_Ltigerpython_utilities_types_BuiltinTypes$().ae, firstParamIsSelfOrCls), $m_Ltigerpython_utilities_types_BuiltinTypes$().ae); - var s = function$1.xE; + var s = function$1.xF; result.bo = s; var x1$2 = this.dA; if ((x1$2 instanceof $c_Ltigerpython_utilities_scopes_ClassScope)) { @@ -34157,7 +34163,7 @@ $p.JF = (function(function$1) { if ((!$p_Ltigerpython_utilities_scopes_AstWalker__hasReturn__Ltigerpython_parser_ast_AstNode$Statement__Z(this, function$1.fV))) { functionScope.Dl($m_Ltigerpython_utilities_types_BuiltinTypes$().dC); } - result.HJ = functionScope.w9; + result.HJ = functionScope.wa; }); $p.JE = (function(forStmt) { var x1 = forStmt.l8; @@ -34406,8 +34412,8 @@ $p.JH = (function(ifStmt) { matchEnd7: { if ((x1 instanceof $c_Ltigerpython_parser_ast_AstNode$Call)) { var x2 = x1; - if (((x2.wD() === "isinstance") && (x2.bR.a.length === 2))) { - var n = x2.wC(); + if (((x2.wE() === "isinstance") && (x2.bR.a.length === 2))) { + var n = x2.wD(); var expr = x2.bR.a[1]; var x1$2 = this.dB.aX(expr); if ((x1$2 instanceof $c_Ltigerpython_utilities_types_ClassType)) { @@ -34431,8 +34437,8 @@ $p.JH = (function(ifStmt) { matchEnd4$2: { if ((x1$3 instanceof $c_Ltigerpython_parser_ast_AstNode$Call)) { var x2$3 = x1$3; - if ((x2$3.wD() === "type")) { - var n$2 = x2$3.wC(); + if ((x2$3.wE() === "type")) { + var n$2 = x2$3.wD(); var expr$1 = x3.ta(); var x1$4 = this.dB.aX(expr$1); if ((x1$4 instanceof $c_Ltigerpython_utilities_types_ClassType)) { @@ -34457,8 +34463,8 @@ $p.JH = (function(ifStmt) { matchEnd5: { if ((x1$5 instanceof $c_Ltigerpython_parser_ast_AstNode$Call)) { var x2$5 = x1$5; - if ((x2$5.wD() === "type")) { - var n$3 = x2$5.wC(); + if ((x2$5.wE() === "type")) { + var n$3 = x2$5.wD(); var x1$6 = x3.ta(); matchEnd4$4: { if ((x1$6 instanceof $c_Ltigerpython_parser_ast_AstNode$SequenceExpression)) { @@ -34577,7 +34583,7 @@ $p.JG = (function(global) { var x1 = this.dA; if ((x1 instanceof $c_Ltigerpython_utilities_scopes_FunctionScope)) { var x2 = x1; - var xs = global.iZ; + var xs = global.iY; var f = ((name$2) => { var name = name$2; var name$1 = name.R; @@ -34654,10 +34660,10 @@ $p.JG = (function(global) { } } else if ((x1 instanceof $c_Ltigerpython_utilities_scopes_ForLoopScope)) { var x3$1 = x1; - var xs$1 = global.iZ; + var xs$1 = global.iY; var f$1 = ((name$3$2) => { var name$3 = name$3$2; - x3$1.iA(name$3.R); + x3$1.iz(name$3.R); }); var len$1 = xs$1.a.length; var i$1 = 0; @@ -34856,7 +34862,7 @@ $p.JI = (function(importStmt) { } }); $p.JK = (function(importStmt) { - var x = importStmt.j0.R; + var x = importStmt.iZ.R; var len = x.length; var sb = $ct_jl_StringBuilder__I__(new $c_jl_StringBuilder(), len); var i = 0; @@ -35241,10 +35247,10 @@ function $m_Ltigerpython_utilities_scopes_BuiltinModules$() { } /** @constructor */ function $c_Ltigerpython_utilities_scopes_BuiltinNames$() { - this.w8 = null; + this.w9 = null; $n_Ltigerpython_utilities_scopes_BuiltinNames$ = this; - this.w8 = $m_scm_Map$().as($m_sci_Nil$()); - var this$1 = this.w8; + this.w9 = $m_scm_Map$().as($m_sci_Nil$()); + var this$1 = this.w9; var elems = $m_Ltigerpython_utilities_types_ExceptionTypes$().C9; this$1.lR(elems); var $x_31 = $m_Ltigerpython_utilities_types_BuiltinFunction$().G("abs", new ($d_T.r().C)(["x"]), $m_Ltigerpython_utilities_types_BuiltinTypes$().jo, "Return the absolute value of a number."); @@ -35256,7 +35262,7 @@ function $c_Ltigerpython_utilities_scopes_BuiltinNames$() { var $x_25 = $m_Ltigerpython_utilities_types_BuiltinFunction$().G("classmethod", new ($d_T.r().C)(["function"]), $m_Ltigerpython_utilities_types_BuiltinTypes$().ae, "Return a class method for function."); var $x_24 = $m_Ltigerpython_utilities_types_BuiltinFunction$().G("cmp", new ($d_T.r().C)(["x", "y"]), $m_Ltigerpython_utilities_types_BuiltinTypes$().gZ, "Compare the two objects x and y and return an integer according to the outcome."); var $x_23 = $m_Ltigerpython_utilities_types_BuiltinFunction$().G("compile", new ($d_T.r().C)(["source", "filename", "mode"]), $m_Ltigerpython_utilities_types_BuiltinTypes$().ae, "Compile the source into a code or AST object."); - var $x_22 = $m_Ltigerpython_utilities_types_BuiltinFunction$().G("delattr", new ($d_T.r().C)(["object", "name"]), $m_Ltigerpython_utilities_types_BuiltinTypes$().wc, "This is a relative of setattr(). The arguments are an object and a string. The string must be the name of one of the object\u2019s attributes. The function deletes the named attribute, provided the object allows it."); + var $x_22 = $m_Ltigerpython_utilities_types_BuiltinFunction$().G("delattr", new ($d_T.r().C)(["object", "name"]), $m_Ltigerpython_utilities_types_BuiltinTypes$().wd, "This is a relative of setattr(). The arguments are an object and a string. The string must be the name of one of the object\u2019s attributes. The function deletes the named attribute, provided the object allows it."); var $x_21 = $m_Ltigerpython_utilities_types_BuiltinFunction$(); var xs = $m_sci_Nil$(); var array = new ($d_T.r().C)(xs.g()); @@ -35302,7 +35308,7 @@ function $c_Ltigerpython_utilities_scopes_BuiltinNames$() { array$2.a[i$2] = iterator$2.d(); i$2 = ((1 + i$2) | 0); } - this.sE(new $c_sjsr_WrappedVarArgs([$x_31, $x_30, $x_29, $x_28, $x_27, $x_26, $x_25, $x_24, $x_23, $x_22, $x_20, $x_19, $x_18, $x_17, $x_16, $x_15, $x_14, $x_13, $x_11, $x_10, $x_9, $x_8, $x_7, $x_6, $x_5, $x_4, $x_3, $x_2, $x_1.G("locals", array$2, $m_Ltigerpython_utilities_types_BuiltinTypes$().sv, "Update and return a dictionary representing the current local symbol table."), $m_Ltigerpython_utilities_types_BuiltinFunction$().G("map", new ($d_T.r().C)(["function", "iterable"]), $m_Ltigerpython_utilities_types_BuiltinTypes$().fD, "Apply function to every item of iterable and return a list of the results."), $m_Ltigerpython_utilities_types_BuiltinFunction$().G("max", new ($d_T.r().C)(["..."]), $m_Ltigerpython_utilities_types_BuiltinTypes$().jo, "Return the largest item in an iterable or the largest of two or more arguments."), $m_Ltigerpython_utilities_types_BuiltinFunction$().G("min", new ($d_T.r().C)(["..."]), $m_Ltigerpython_utilities_types_BuiltinTypes$().jo, "Return the smallest item in an iterable or the smallest of two or more arguments."), $m_Ltigerpython_utilities_types_BuiltinFunction$().G("next", new ($d_T.r().C)(["iterator"]), $m_Ltigerpython_utilities_types_BuiltinTypes$().ae, "Retrieve the next item from the iterator by calling its next() method."), $m_Ltigerpython_utilities_types_BuiltinFunction$().G("oct", new ($d_T.r().C)(["x"]), $m_Ltigerpython_utilities_types_BuiltinTypes$().hF, "Convert an integer number (of any size) to an octal string."), $m_Ltigerpython_utilities_types_BuiltinFunction$().G("open", new ($d_T.r().C)(["name", "mode"]), $m_Ltigerpython_utilities_types_BuiltinTypes$().BZ, "Open a file, returning an object of the file type"), $m_Ltigerpython_utilities_types_BuiltinFunction$().G("ord", new ($d_T.r().C)(["c"]), $m_Ltigerpython_utilities_types_BuiltinTypes$().gZ, "Given a string of length one, return an integer representing the Unicode code point of the character when the argument is a unicode object, or the value of the byte when the argument is an 8-bit string."), $m_Ltigerpython_utilities_types_BuiltinFunction$().G("property", new ($d_T.r().C)(["fget, fset"]), $m_Ltigerpython_utilities_types_BuiltinTypes$().Hq, "Return a property attribute."), $m_Ltigerpython_utilities_types_BuiltinFunction$().G("pow", new ($d_T.r().C)(["x", "y"]), $m_Ltigerpython_utilities_types_BuiltinTypes$().ae, "Return x to the power y; if z is present, return x to the power y, modulo z (computed more efficiently than pow(x, y) % z). The two-argument form pow(x, y) is equivalent to using the power operator: x**y."), $m_Ltigerpython_utilities_types_BuiltinFunction$().G("range", new ($d_T.r().C)(["stop:int"]), $m_Ltigerpython_utilities_types_ListType$().sI($m_Ltigerpython_utilities_types_BuiltinTypes$().gZ), "This is a versatile function to create lists containing arithmetic progressions."), $m_Ltigerpython_utilities_types_BuiltinFunction$().G("raw_input", new ($d_T.r().C)(["prompt"]), $m_Ltigerpython_utilities_types_BuiltinTypes$().hF, "The function reads a line from input, converts it to a string (stripping a trailing newline), and returns that."), $m_Ltigerpython_utilities_types_BuiltinFunction$().G("reduce", new ($d_T.r().C)(["function", "iterable"]), $m_Ltigerpython_utilities_types_BuiltinTypes$().fD, "Apply function of two arguments cumulatively to the items of iterable, from left to right, so as to reduce the iterable to a single value. For example, reduce(lambda x, y: x+y, [1, 2, 3, 4, 5]) calculates ((((1+2)+3)+4)+5)."), $m_Ltigerpython_utilities_types_BuiltinFunction$().G("reload", new ($d_T.r().C)(["module"]), $m_Ltigerpython_utilities_types_BuiltinTypes$().jo, "Reload a previously imported module."), $m_Ltigerpython_utilities_types_BuiltinFunction$().G("repr", new ($d_T.r().C)(["object"]), $m_Ltigerpython_utilities_types_BuiltinTypes$().hF, "Return a string containing a printable representation of an object."), $m_Ltigerpython_utilities_types_BuiltinFunction$().G("reversed", new ($d_T.r().C)(["seq"]), $m_Ltigerpython_utilities_types_BuiltinTypes$().jo, "Return a reverse iterator."), $m_Ltigerpython_utilities_types_BuiltinFunction$().G("round", new ($d_T.r().C)(["number", "ndigits"]), $m_Ltigerpython_utilities_types_BuiltinTypes$().ae, "Return the floating point value number rounded to ndigits digits after the decimal point. If ndigits is omitted, it defaults to zero."), $m_Ltigerpython_utilities_types_BuiltinFunction$().G("setattr", new ($d_T.r().C)(["object", "name", "value"]), $m_Ltigerpython_utilities_types_BuiltinTypes$().wc, "This is the counterpart of getattr(). The arguments are an object, a string and an arbitrary value. The string may name an existing attribute or a new attribute. The function assigns the value to the attribute, provided the object allows it."), $m_Ltigerpython_utilities_types_BuiltinFunction$().G("sorted", new ($d_T.r().C)(["iterable"]), $m_Ltigerpython_utilities_types_BuiltinTypes$().jo, "Return a new sorted list from the items in iterable."), $m_Ltigerpython_utilities_types_BuiltinFunction$().G("staticmethod", new ($d_T.r().C)(["function"]), $m_Ltigerpython_utilities_types_BuiltinTypes$().jo, "Return a static method for function."), $m_Ltigerpython_utilities_types_BuiltinFunction$().G("sum", new ($d_T.r().C)(["iterable"]), $m_Ltigerpython_utilities_types_BuiltinTypes$().ae, "Sums the items of an iterable from left to right and returns the total."), $m_Ltigerpython_utilities_types_BuiltinFunction$().G("super", new ($d_T.r().C)(["type", "instance"]), $m_Ltigerpython_utilities_types_BuiltinTypes$().OD, "Return a proxy object that delegates method calls to a parent or sibling class of type."), $m_Ltigerpython_utilities_types_BuiltinFunction$().G("unichr", new ($d_T.r().C)(["i"]), $m_Ltigerpython_utilities_types_BuiltinTypes$().hF, "Return the Unicode string of one character whose Unicode code is the integer i."), $m_Ltigerpython_utilities_types_BuiltinFunction$().G("vars", new ($d_T.r().C)(["object"]), $m_Ltigerpython_utilities_types_BuiltinTypes$().ae, "Return the __dict__ attribute for a module, class, instance, or any other object with a __dict__ attribute."), $m_Ltigerpython_utilities_types_BuiltinFunction$().G("xrange", new ($d_T.r().C)(["stop"]), $m_Ltigerpython_utilities_types_BuiltinTypes$().ae, "This function is very similar to range(), but returns an xrange object instead of a list."), $m_Ltigerpython_utilities_types_BuiltinFunction$().G("zip", new ($d_T.r().C)(["..."]), $m_Ltigerpython_utilities_types_BuiltinTypes$().fD, "This function returns a list of tuples, where the i-th tuple contains the i-th element from each of the argument sequences or iterables."), $m_Ltigerpython_utilities_types_BuiltinTypes$().fb, $m_Ltigerpython_utilities_types_BuiltinTypes$().BX, $m_Ltigerpython_utilities_types_BuiltinTypes$().wb, $m_Ltigerpython_utilities_types_BuiltinTypes$().jn, $m_Ltigerpython_utilities_types_BuiltinTypes$().qg, $m_Ltigerpython_utilities_types_BuiltinTypes$().C1, $m_Ltigerpython_utilities_types_BuiltinTypes$().fc, $m_Ltigerpython_utilities_types_BuiltinTypes$().eL, $m_Ltigerpython_utilities_types_BuiltinTypes$().C4, $m_Ltigerpython_utilities_types_BuiltinTypes$().C5, $m_Ltigerpython_utilities_types_BuiltinTypes$().bu, $m_Ltigerpython_utilities_types_BuiltinTypes$().OE, $m_Ltigerpython_utilities_types_BuiltinTypes$().fd, $m_Ltigerpython_utilities_types_BuiltinTypes$().C6])); + this.sE(new $c_sjsr_WrappedVarArgs([$x_31, $x_30, $x_29, $x_28, $x_27, $x_26, $x_25, $x_24, $x_23, $x_22, $x_20, $x_19, $x_18, $x_17, $x_16, $x_15, $x_14, $x_13, $x_11, $x_10, $x_9, $x_8, $x_7, $x_6, $x_5, $x_4, $x_3, $x_2, $x_1.G("locals", array$2, $m_Ltigerpython_utilities_types_BuiltinTypes$().sv, "Update and return a dictionary representing the current local symbol table."), $m_Ltigerpython_utilities_types_BuiltinFunction$().G("map", new ($d_T.r().C)(["function", "iterable"]), $m_Ltigerpython_utilities_types_BuiltinTypes$().fD, "Apply function to every item of iterable and return a list of the results."), $m_Ltigerpython_utilities_types_BuiltinFunction$().G("max", new ($d_T.r().C)(["..."]), $m_Ltigerpython_utilities_types_BuiltinTypes$().jo, "Return the largest item in an iterable or the largest of two or more arguments."), $m_Ltigerpython_utilities_types_BuiltinFunction$().G("min", new ($d_T.r().C)(["..."]), $m_Ltigerpython_utilities_types_BuiltinTypes$().jo, "Return the smallest item in an iterable or the smallest of two or more arguments."), $m_Ltigerpython_utilities_types_BuiltinFunction$().G("next", new ($d_T.r().C)(["iterator"]), $m_Ltigerpython_utilities_types_BuiltinTypes$().ae, "Retrieve the next item from the iterator by calling its next() method."), $m_Ltigerpython_utilities_types_BuiltinFunction$().G("oct", new ($d_T.r().C)(["x"]), $m_Ltigerpython_utilities_types_BuiltinTypes$().hF, "Convert an integer number (of any size) to an octal string."), $m_Ltigerpython_utilities_types_BuiltinFunction$().G("open", new ($d_T.r().C)(["name", "mode"]), $m_Ltigerpython_utilities_types_BuiltinTypes$().BZ, "Open a file, returning an object of the file type"), $m_Ltigerpython_utilities_types_BuiltinFunction$().G("ord", new ($d_T.r().C)(["c"]), $m_Ltigerpython_utilities_types_BuiltinTypes$().gZ, "Given a string of length one, return an integer representing the Unicode code point of the character when the argument is a unicode object, or the value of the byte when the argument is an 8-bit string."), $m_Ltigerpython_utilities_types_BuiltinFunction$().G("property", new ($d_T.r().C)(["fget, fset"]), $m_Ltigerpython_utilities_types_BuiltinTypes$().Hq, "Return a property attribute."), $m_Ltigerpython_utilities_types_BuiltinFunction$().G("pow", new ($d_T.r().C)(["x", "y"]), $m_Ltigerpython_utilities_types_BuiltinTypes$().ae, "Return x to the power y; if z is present, return x to the power y, modulo z (computed more efficiently than pow(x, y) % z). The two-argument form pow(x, y) is equivalent to using the power operator: x**y."), $m_Ltigerpython_utilities_types_BuiltinFunction$().G("range", new ($d_T.r().C)(["stop:int"]), $m_Ltigerpython_utilities_types_ListType$().sI($m_Ltigerpython_utilities_types_BuiltinTypes$().gZ), "This is a versatile function to create lists containing arithmetic progressions."), $m_Ltigerpython_utilities_types_BuiltinFunction$().G("raw_input", new ($d_T.r().C)(["prompt"]), $m_Ltigerpython_utilities_types_BuiltinTypes$().hF, "The function reads a line from input, converts it to a string (stripping a trailing newline), and returns that."), $m_Ltigerpython_utilities_types_BuiltinFunction$().G("reduce", new ($d_T.r().C)(["function", "iterable"]), $m_Ltigerpython_utilities_types_BuiltinTypes$().fD, "Apply function of two arguments cumulatively to the items of iterable, from left to right, so as to reduce the iterable to a single value. For example, reduce(lambda x, y: x+y, [1, 2, 3, 4, 5]) calculates ((((1+2)+3)+4)+5)."), $m_Ltigerpython_utilities_types_BuiltinFunction$().G("reload", new ($d_T.r().C)(["module"]), $m_Ltigerpython_utilities_types_BuiltinTypes$().jo, "Reload a previously imported module."), $m_Ltigerpython_utilities_types_BuiltinFunction$().G("repr", new ($d_T.r().C)(["object"]), $m_Ltigerpython_utilities_types_BuiltinTypes$().hF, "Return a string containing a printable representation of an object."), $m_Ltigerpython_utilities_types_BuiltinFunction$().G("reversed", new ($d_T.r().C)(["seq"]), $m_Ltigerpython_utilities_types_BuiltinTypes$().jo, "Return a reverse iterator."), $m_Ltigerpython_utilities_types_BuiltinFunction$().G("round", new ($d_T.r().C)(["number", "ndigits"]), $m_Ltigerpython_utilities_types_BuiltinTypes$().ae, "Return the floating point value number rounded to ndigits digits after the decimal point. If ndigits is omitted, it defaults to zero."), $m_Ltigerpython_utilities_types_BuiltinFunction$().G("setattr", new ($d_T.r().C)(["object", "name", "value"]), $m_Ltigerpython_utilities_types_BuiltinTypes$().wd, "This is the counterpart of getattr(). The arguments are an object, a string and an arbitrary value. The string may name an existing attribute or a new attribute. The function assigns the value to the attribute, provided the object allows it."), $m_Ltigerpython_utilities_types_BuiltinFunction$().G("sorted", new ($d_T.r().C)(["iterable"]), $m_Ltigerpython_utilities_types_BuiltinTypes$().jo, "Return a new sorted list from the items in iterable."), $m_Ltigerpython_utilities_types_BuiltinFunction$().G("staticmethod", new ($d_T.r().C)(["function"]), $m_Ltigerpython_utilities_types_BuiltinTypes$().jo, "Return a static method for function."), $m_Ltigerpython_utilities_types_BuiltinFunction$().G("sum", new ($d_T.r().C)(["iterable"]), $m_Ltigerpython_utilities_types_BuiltinTypes$().ae, "Sums the items of an iterable from left to right and returns the total."), $m_Ltigerpython_utilities_types_BuiltinFunction$().G("super", new ($d_T.r().C)(["type", "instance"]), $m_Ltigerpython_utilities_types_BuiltinTypes$().OD, "Return a proxy object that delegates method calls to a parent or sibling class of type."), $m_Ltigerpython_utilities_types_BuiltinFunction$().G("unichr", new ($d_T.r().C)(["i"]), $m_Ltigerpython_utilities_types_BuiltinTypes$().hF, "Return the Unicode string of one character whose Unicode code is the integer i."), $m_Ltigerpython_utilities_types_BuiltinFunction$().G("vars", new ($d_T.r().C)(["object"]), $m_Ltigerpython_utilities_types_BuiltinTypes$().ae, "Return the __dict__ attribute for a module, class, instance, or any other object with a __dict__ attribute."), $m_Ltigerpython_utilities_types_BuiltinFunction$().G("xrange", new ($d_T.r().C)(["stop"]), $m_Ltigerpython_utilities_types_BuiltinTypes$().ae, "This function is very similar to range(), but returns an xrange object instead of a list."), $m_Ltigerpython_utilities_types_BuiltinFunction$().G("zip", new ($d_T.r().C)(["..."]), $m_Ltigerpython_utilities_types_BuiltinTypes$().fD, "This function returns a list of tuples, where the i-th tuple contains the i-th element from each of the argument sequences or iterables."), $m_Ltigerpython_utilities_types_BuiltinTypes$().fb, $m_Ltigerpython_utilities_types_BuiltinTypes$().BX, $m_Ltigerpython_utilities_types_BuiltinTypes$().wc, $m_Ltigerpython_utilities_types_BuiltinTypes$().jn, $m_Ltigerpython_utilities_types_BuiltinTypes$().qg, $m_Ltigerpython_utilities_types_BuiltinTypes$().C1, $m_Ltigerpython_utilities_types_BuiltinTypes$().fc, $m_Ltigerpython_utilities_types_BuiltinTypes$().eL, $m_Ltigerpython_utilities_types_BuiltinTypes$().C4, $m_Ltigerpython_utilities_types_BuiltinTypes$().C5, $m_Ltigerpython_utilities_types_BuiltinTypes$().bu, $m_Ltigerpython_utilities_types_BuiltinTypes$().OE, $m_Ltigerpython_utilities_types_BuiltinTypes$().fd, $m_Ltigerpython_utilities_types_BuiltinTypes$().C6])); this.sE(new $c_sjsr_WrappedVarArgs([$m_Ltigerpython_utilities_types_BuiltinFunction$().G("inputInt", new ($d_T.r().C)(["prompt"]), $m_Ltigerpython_utilities_types_BuiltinTypes$().fc, "The function asks the user to input an integer value and returns it."), $m_Ltigerpython_utilities_types_BuiltinFunction$().G("inputFloat", new ($d_T.r().C)(["prompt"]), $m_Ltigerpython_utilities_types_BuiltinTypes$().fc, "The function asks the user to input a numeric value and returns it."), $m_Ltigerpython_utilities_types_BuiltinFunction$().G("inputString", new ($d_T.r().C)(["prompt"]), $m_Ltigerpython_utilities_types_BuiltinTypes$().fc, "The function asks the user to input a text value and returns it."), $m_Ltigerpython_utilities_types_BuiltinFunction$().G("msgDlg", new ($d_T.r().C)(["x"]), $m_Ltigerpython_utilities_types_BuiltinTypes$().dC, "Displays the given value(s) in a small dialog window."), $m_Ltigerpython_utilities_types_BuiltinFunction$().G("head", new ($d_T.r().C)(["s"]), $m_Ltigerpython_utilities_types_BuiltinTypes$().Hp, "Return the first element of a list or sequence."), $m_Ltigerpython_utilities_types_BuiltinFunction$().G("tail", new ($d_T.r().C)(["s"]), $m_Ltigerpython_utilities_types_BuiltinTypes$().jo, "Return the list or sequence without its first element.")])); } $p = $c_Ltigerpython_utilities_scopes_BuiltinNames$.prototype = new $h_O(); @@ -35314,7 +35320,7 @@ $h_Ltigerpython_utilities_scopes_BuiltinNames$.prototype = $p; $p.sE = (function(names) { names.az(new $c_sjsr_AnonFunction1(((name$2) => { var name = name$2; - var this$2 = $m_Ltigerpython_utilities_scopes_BuiltinNames$().w8; + var this$2 = $m_Ltigerpython_utilities_scopes_BuiltinNames$().w9; var key = name.aR(); $p_scm_HashMap__put0__O__O__Z__s_Some(this$2, key, name, false); }))); @@ -35785,7 +35791,7 @@ $p.PK = (function(dataType) { }); $p.kv = (function(name) { var x1 = this.h3().b4(name); - return (($m_s_None$() === x1) ? ((this.eK !== null) ? this.eK.kv(name) : $m_sci_Map$().ad($m_Ltigerpython_utilities_scopes_BuiltinNames$().w8).b4(name)) : x1); + return (($m_s_None$() === x1) ? ((this.eK !== null) ? this.eK.kv(name) : $m_sci_Map$().ad($m_Ltigerpython_utilities_scopes_BuiltinNames$().w9).b4(name)) : x1); }); $p.c8 = (function(name) { if ($m_sc_StringOps$().ez(name, 46)) { @@ -36210,7 +36216,7 @@ function $c_Ltigerpython_utilities_types_BuiltinTypes$() { this.yX = null; this.OE = null; this.fb = null; - this.wb = null; + this.wc = null; this.fc = null; this.C4 = null; this.lN = null; @@ -36242,7 +36248,7 @@ function $c_Ltigerpython_utilities_types_BuiltinTypes$() { this.Ht = null; this.fD = null; this.Hu = null; - this.wc = null; + this.wd = null; this.Hv = null; this.hF = null; this.lO = null; @@ -36260,7 +36266,7 @@ function $c_Ltigerpython_utilities_types_BuiltinTypes$() { var baseType = this.yX; this.fb = $ct_Ltigerpython_utilities_types_PrimitiveType__T__Ltigerpython_utilities_types_PrimitiveType__sci_Map__(new $c_Ltigerpython_utilities_types_PrimitiveType(), "bool", baseType, baseType.c0); var baseType$1 = this.yX; - this.wb = $ct_Ltigerpython_utilities_types_PrimitiveType__T__Ltigerpython_utilities_types_PrimitiveType__sci_Map__(new $c_Ltigerpython_utilities_types_PrimitiveType(), "complex", baseType$1, baseType$1.c0); + this.wc = $ct_Ltigerpython_utilities_types_PrimitiveType__T__Ltigerpython_utilities_types_PrimitiveType__sci_Map__(new $c_Ltigerpython_utilities_types_PrimitiveType(), "complex", baseType$1, baseType$1.c0); var baseType$2 = this.yX; this.fc = $ct_Ltigerpython_utilities_types_PrimitiveType__T__Ltigerpython_utilities_types_PrimitiveType__sci_Map__(new $c_Ltigerpython_utilities_types_PrimitiveType(), "int", baseType$2, baseType$2.c0); var $x_2 = this.fc; @@ -36803,7 +36809,7 @@ function $c_Ltigerpython_utilities_types_BuiltinTypes$() { this.jm = new $c_Ltigerpython_utilities_types_Instance(this.fb); this.Hm = new $c_Ltigerpython_utilities_types_Instance(this.Hn); this.Ho = new $c_Ltigerpython_utilities_types_Instance(this.BX); - this.lL = new $c_Ltigerpython_utilities_types_Instance(this.wb); + this.lL = new $c_Ltigerpython_utilities_types_Instance(this.wc); this.sv = new $c_Ltigerpython_utilities_types_Instance(this.jn); this.BZ = new $c_Ltigerpython_utilities_types_Instance(this.C0); this.jp = new $c_Ltigerpython_utilities_types_Instance(this.qg); @@ -36813,11 +36819,11 @@ function $c_Ltigerpython_utilities_types_BuiltinTypes$() { this.Ht = new $c_Ltigerpython_utilities_types_Instance(this.C3); this.fD = new $c_Ltigerpython_utilities_types_Instance(this.eL); this.Hu = new $c_Ltigerpython_utilities_types_Instance(this.C4); - this.wc = new $c_Ltigerpython_utilities_types_Instance(this.dC); + this.wd = new $c_Ltigerpython_utilities_types_Instance(this.dC); this.Hv = new $c_Ltigerpython_utilities_types_Instance(this.C5); this.hF = new $c_Ltigerpython_utilities_types_Instance(this.bu); this.lO = new $c_Ltigerpython_utilities_types_Instance(this.fd); - this.sE(new $c_sjsr_WrappedVarArgs([this.jm, this.Hm, this.Ho, this.lL, this.sv, this.BZ, this.jp, this.Hr, this.Hs, this.gZ, this.Ht, this.fD, this.Hu, this.wc, this.Hv, this.hF, this.lO])); + this.sE(new $c_sjsr_WrappedVarArgs([this.jm, this.Hm, this.Ho, this.lL, this.sv, this.BZ, this.jp, this.Hr, this.Hs, this.gZ, this.Ht, this.fD, this.Hu, this.wd, this.Hv, this.hF, this.lO])); } $p = $c_Ltigerpython_utilities_types_BuiltinTypes$.prototype = new $h_O(); $p.constructor = $c_Ltigerpython_utilities_types_BuiltinTypes$; @@ -36885,7 +36891,7 @@ $p.constructor = $c_Ltigerpython_utilities_types_DataType; function $h_Ltigerpython_utilities_types_DataType() { } $h_Ltigerpython_utilities_types_DataType.prototype = $p; -$p.ww = (function() { +$p.wx = (function() { return this.bo; }); $p.cW = (function(name) { @@ -37078,7 +37084,7 @@ $p.nM = (function(type1, type2) { var i = this$2.b9; while (true) { var v1 = i; - var dt$1 = $m_Ltigerpython_utilities_types_DataType$().nM(x36.wj.a[v1], x37.wj.a[v1]); + var dt$1 = $m_Ltigerpython_utilities_types_DataType$().nM(x36.wk.a[v1], x37.wk.a[v1]); var x$2 = $m_Ltigerpython_utilities_types_BuiltinTypes$().ae; if ((!((dt$1 === null) ? (x$2 === null) : dt$1.b(x$2)))) { result.a[v1] = dt$1; @@ -37218,7 +37224,7 @@ $p.nM = (function(type1, type2) { } }); $p.UP = (function(valueType) { - var x = $m_Ltigerpython_parser_ast_ValueType$().y3; + var x = $m_Ltigerpython_parser_ast_ValueType$().y4; if (((x === null) ? (valueType === null) : x.b(valueType))) { return $m_Ltigerpython_utilities_types_BuiltinTypes$().lL; } else { @@ -37232,7 +37238,7 @@ $p.UP = (function(valueType) { } else { var x$7 = $m_Ltigerpython_parser_ast_ValueType$().k7; if (((x$7 === null) ? (valueType === null) : x$7.b(valueType))) { - return $m_Ltigerpython_utilities_types_BuiltinTypes$().wc; + return $m_Ltigerpython_utilities_types_BuiltinTypes$().wd; } else { return $m_Ltigerpython_utilities_types_BuiltinTypes$().ae; } @@ -37259,7 +37265,7 @@ function $p_Ltigerpython_utilities_types_ExceptionTypes$__ErrorType__T__Ltigerpy function $c_Ltigerpython_utilities_types_ExceptionTypes$() { this.C9 = null; this.yY = null; - this.iz = null; + this.iy = null; this.g4 = null; this.C7 = null; this.Hx = null; @@ -37277,9 +37283,9 @@ function $c_Ltigerpython_utilities_types_ExceptionTypes$() { $p_Ltigerpython_utilities_types_ExceptionTypes$__ErrorType__T__Ltigerpython_utilities_types_PrimitiveType__Ltigerpython_utilities_types_PrimitiveType(this, "SystemExit", this.yY); $p_Ltigerpython_utilities_types_ExceptionTypes$__ErrorType__T__Ltigerpython_utilities_types_PrimitiveType__Ltigerpython_utilities_types_PrimitiveType(this, "KeyboardInterrupt", this.yY); $p_Ltigerpython_utilities_types_ExceptionTypes$__ErrorType__T__Ltigerpython_utilities_types_PrimitiveType__Ltigerpython_utilities_types_PrimitiveType(this, "GeneratorExit", this.yY); - this.iz = $p_Ltigerpython_utilities_types_ExceptionTypes$__ErrorType__T__Ltigerpython_utilities_types_PrimitiveType__Ltigerpython_utilities_types_PrimitiveType(this, "Exception", this.yY); - $p_Ltigerpython_utilities_types_ExceptionTypes$__ErrorType__T__Ltigerpython_utilities_types_PrimitiveType__Ltigerpython_utilities_types_PrimitiveType(this, "StopIteration", this.iz); - this.g4 = $p_Ltigerpython_utilities_types_ExceptionTypes$__ErrorType__T__Ltigerpython_utilities_types_PrimitiveType__Ltigerpython_utilities_types_PrimitiveType(this, "StandardError", this.iz); + this.iy = $p_Ltigerpython_utilities_types_ExceptionTypes$__ErrorType__T__Ltigerpython_utilities_types_PrimitiveType__Ltigerpython_utilities_types_PrimitiveType(this, "Exception", this.yY); + $p_Ltigerpython_utilities_types_ExceptionTypes$__ErrorType__T__Ltigerpython_utilities_types_PrimitiveType__Ltigerpython_utilities_types_PrimitiveType(this, "StopIteration", this.iy); + this.g4 = $p_Ltigerpython_utilities_types_ExceptionTypes$__ErrorType__T__Ltigerpython_utilities_types_PrimitiveType__Ltigerpython_utilities_types_PrimitiveType(this, "StandardError", this.iy); $p_Ltigerpython_utilities_types_ExceptionTypes$__ErrorType__T__Ltigerpython_utilities_types_PrimitiveType__Ltigerpython_utilities_types_PrimitiveType(this, "BufferError", this.g4); this.C7 = $p_Ltigerpython_utilities_types_ExceptionTypes$__ErrorType__T__Ltigerpython_utilities_types_PrimitiveType__Ltigerpython_utilities_types_PrimitiveType(this, "ArithmeticError", this.g4); $p_Ltigerpython_utilities_types_ExceptionTypes$__ErrorType__T__Ltigerpython_utilities_types_PrimitiveType__Ltigerpython_utilities_types_PrimitiveType(this, "FloatingPointError", this.C7); @@ -37313,16 +37319,16 @@ function $c_Ltigerpython_utilities_types_ExceptionTypes$() { $p_Ltigerpython_utilities_types_ExceptionTypes$__ErrorType__T__Ltigerpython_utilities_types_PrimitiveType__Ltigerpython_utilities_types_PrimitiveType(this, "UnicodeDecodeError", this.C8); $p_Ltigerpython_utilities_types_ExceptionTypes$__ErrorType__T__Ltigerpython_utilities_types_PrimitiveType__Ltigerpython_utilities_types_PrimitiveType(this, "UnicodeEncodeError", this.C8); $p_Ltigerpython_utilities_types_ExceptionTypes$__ErrorType__T__Ltigerpython_utilities_types_PrimitiveType__Ltigerpython_utilities_types_PrimitiveType(this, "UnicodeTranslateError", this.C8); - $p_Ltigerpython_utilities_types_ExceptionTypes$__ErrorType__T__Ltigerpython_utilities_types_PrimitiveType__Ltigerpython_utilities_types_PrimitiveType(this, "Warning", this.iz); - $p_Ltigerpython_utilities_types_ExceptionTypes$__ErrorType__T__Ltigerpython_utilities_types_PrimitiveType__Ltigerpython_utilities_types_PrimitiveType(this, "DeprecationWarning", this.iz); - $p_Ltigerpython_utilities_types_ExceptionTypes$__ErrorType__T__Ltigerpython_utilities_types_PrimitiveType__Ltigerpython_utilities_types_PrimitiveType(this, "PendingDeprecationWarning", this.iz); - $p_Ltigerpython_utilities_types_ExceptionTypes$__ErrorType__T__Ltigerpython_utilities_types_PrimitiveType__Ltigerpython_utilities_types_PrimitiveType(this, "RuntimeWarning", this.iz); - $p_Ltigerpython_utilities_types_ExceptionTypes$__ErrorType__T__Ltigerpython_utilities_types_PrimitiveType__Ltigerpython_utilities_types_PrimitiveType(this, "SyntaxWarning", this.iz); - $p_Ltigerpython_utilities_types_ExceptionTypes$__ErrorType__T__Ltigerpython_utilities_types_PrimitiveType__Ltigerpython_utilities_types_PrimitiveType(this, "UserWarning", this.iz); - $p_Ltigerpython_utilities_types_ExceptionTypes$__ErrorType__T__Ltigerpython_utilities_types_PrimitiveType__Ltigerpython_utilities_types_PrimitiveType(this, "FutureWarning", this.iz); - $p_Ltigerpython_utilities_types_ExceptionTypes$__ErrorType__T__Ltigerpython_utilities_types_PrimitiveType__Ltigerpython_utilities_types_PrimitiveType(this, "ImportWarning", this.iz); - $p_Ltigerpython_utilities_types_ExceptionTypes$__ErrorType__T__Ltigerpython_utilities_types_PrimitiveType__Ltigerpython_utilities_types_PrimitiveType(this, "UnicodeWarning", this.iz); - $p_Ltigerpython_utilities_types_ExceptionTypes$__ErrorType__T__Ltigerpython_utilities_types_PrimitiveType__Ltigerpython_utilities_types_PrimitiveType(this, "BytesWarning", this.iz); + $p_Ltigerpython_utilities_types_ExceptionTypes$__ErrorType__T__Ltigerpython_utilities_types_PrimitiveType__Ltigerpython_utilities_types_PrimitiveType(this, "Warning", this.iy); + $p_Ltigerpython_utilities_types_ExceptionTypes$__ErrorType__T__Ltigerpython_utilities_types_PrimitiveType__Ltigerpython_utilities_types_PrimitiveType(this, "DeprecationWarning", this.iy); + $p_Ltigerpython_utilities_types_ExceptionTypes$__ErrorType__T__Ltigerpython_utilities_types_PrimitiveType__Ltigerpython_utilities_types_PrimitiveType(this, "PendingDeprecationWarning", this.iy); + $p_Ltigerpython_utilities_types_ExceptionTypes$__ErrorType__T__Ltigerpython_utilities_types_PrimitiveType__Ltigerpython_utilities_types_PrimitiveType(this, "RuntimeWarning", this.iy); + $p_Ltigerpython_utilities_types_ExceptionTypes$__ErrorType__T__Ltigerpython_utilities_types_PrimitiveType__Ltigerpython_utilities_types_PrimitiveType(this, "SyntaxWarning", this.iy); + $p_Ltigerpython_utilities_types_ExceptionTypes$__ErrorType__T__Ltigerpython_utilities_types_PrimitiveType__Ltigerpython_utilities_types_PrimitiveType(this, "UserWarning", this.iy); + $p_Ltigerpython_utilities_types_ExceptionTypes$__ErrorType__T__Ltigerpython_utilities_types_PrimitiveType__Ltigerpython_utilities_types_PrimitiveType(this, "FutureWarning", this.iy); + $p_Ltigerpython_utilities_types_ExceptionTypes$__ErrorType__T__Ltigerpython_utilities_types_PrimitiveType__Ltigerpython_utilities_types_PrimitiveType(this, "ImportWarning", this.iy); + $p_Ltigerpython_utilities_types_ExceptionTypes$__ErrorType__T__Ltigerpython_utilities_types_PrimitiveType__Ltigerpython_utilities_types_PrimitiveType(this, "UnicodeWarning", this.iy); + $p_Ltigerpython_utilities_types_ExceptionTypes$__ErrorType__T__Ltigerpython_utilities_types_PrimitiveType__Ltigerpython_utilities_types_PrimitiveType(this, "BytesWarning", this.iy); } $p = $c_Ltigerpython_utilities_types_ExceptionTypes$.prototype = new $h_O(); $p.constructor = $c_Ltigerpython_utilities_types_ExceptionTypes$; @@ -37393,7 +37399,7 @@ function $m_Ltigerpython_utilities_types_FutureModule$() { function $c_Ltigerpython_utilities_types_Instance$() { this.OK = null; $n_Ltigerpython_utilities_types_Instance$ = this; - this.OK = $m_scm_Map$().as(new $c_sjsr_WrappedVarArgs([$ct_T2__O__O__(new $c_T2(), $m_Ltigerpython_utilities_types_BuiltinTypes$().fb, $m_Ltigerpython_utilities_types_BuiltinTypes$().jm), $ct_T2__O__O__(new $c_T2(), $m_Ltigerpython_utilities_types_BuiltinTypes$().Hn, $m_Ltigerpython_utilities_types_BuiltinTypes$().Hm), $ct_T2__O__O__(new $c_T2(), $m_Ltigerpython_utilities_types_BuiltinTypes$().BX, $m_Ltigerpython_utilities_types_BuiltinTypes$().Ho), $ct_T2__O__O__(new $c_T2(), $m_Ltigerpython_utilities_types_BuiltinTypes$().wb, $m_Ltigerpython_utilities_types_BuiltinTypes$().lL), $ct_T2__O__O__(new $c_T2(), $m_Ltigerpython_utilities_types_BuiltinTypes$().jn, $m_Ltigerpython_utilities_types_BuiltinTypes$().sv), $ct_T2__O__O__(new $c_T2(), $m_Ltigerpython_utilities_types_BuiltinTypes$().C0, $m_Ltigerpython_utilities_types_BuiltinTypes$().BZ), $ct_T2__O__O__(new $c_T2(), $m_Ltigerpython_utilities_types_BuiltinTypes$().qg, $m_Ltigerpython_utilities_types_BuiltinTypes$().jp), $ct_T2__O__O__(new $c_T2(), $m_Ltigerpython_utilities_types_BuiltinTypes$().C1, $m_Ltigerpython_utilities_types_BuiltinTypes$().Hr), $ct_T2__O__O__(new $c_T2(), $m_Ltigerpython_utilities_types_BuiltinTypes$().C2, $m_Ltigerpython_utilities_types_BuiltinTypes$().Hs), $ct_T2__O__O__(new $c_T2(), $m_Ltigerpython_utilities_types_BuiltinTypes$().fc, $m_Ltigerpython_utilities_types_BuiltinTypes$().gZ), $ct_T2__O__O__(new $c_T2(), $m_Ltigerpython_utilities_types_BuiltinTypes$().C3, $m_Ltigerpython_utilities_types_BuiltinTypes$().Ht), $ct_T2__O__O__(new $c_T2(), $m_Ltigerpython_utilities_types_BuiltinTypes$().eL, $m_Ltigerpython_utilities_types_BuiltinTypes$().fD), $ct_T2__O__O__(new $c_T2(), $m_Ltigerpython_utilities_types_BuiltinTypes$().C4, $m_Ltigerpython_utilities_types_BuiltinTypes$().Hu), $ct_T2__O__O__(new $c_T2(), $m_Ltigerpython_utilities_types_BuiltinTypes$().dC, $m_Ltigerpython_utilities_types_BuiltinTypes$().wc), $ct_T2__O__O__(new $c_T2(), $m_Ltigerpython_utilities_types_BuiltinTypes$().C5, $m_Ltigerpython_utilities_types_BuiltinTypes$().Hv), $ct_T2__O__O__(new $c_T2(), $m_Ltigerpython_utilities_types_BuiltinTypes$().bu, $m_Ltigerpython_utilities_types_BuiltinTypes$().hF), $ct_T2__O__O__(new $c_T2(), $m_Ltigerpython_utilities_types_BuiltinTypes$().fd, $m_Ltigerpython_utilities_types_BuiltinTypes$().lO)])); + this.OK = $m_scm_Map$().as(new $c_sjsr_WrappedVarArgs([$ct_T2__O__O__(new $c_T2(), $m_Ltigerpython_utilities_types_BuiltinTypes$().fb, $m_Ltigerpython_utilities_types_BuiltinTypes$().jm), $ct_T2__O__O__(new $c_T2(), $m_Ltigerpython_utilities_types_BuiltinTypes$().Hn, $m_Ltigerpython_utilities_types_BuiltinTypes$().Hm), $ct_T2__O__O__(new $c_T2(), $m_Ltigerpython_utilities_types_BuiltinTypes$().BX, $m_Ltigerpython_utilities_types_BuiltinTypes$().Ho), $ct_T2__O__O__(new $c_T2(), $m_Ltigerpython_utilities_types_BuiltinTypes$().wc, $m_Ltigerpython_utilities_types_BuiltinTypes$().lL), $ct_T2__O__O__(new $c_T2(), $m_Ltigerpython_utilities_types_BuiltinTypes$().jn, $m_Ltigerpython_utilities_types_BuiltinTypes$().sv), $ct_T2__O__O__(new $c_T2(), $m_Ltigerpython_utilities_types_BuiltinTypes$().C0, $m_Ltigerpython_utilities_types_BuiltinTypes$().BZ), $ct_T2__O__O__(new $c_T2(), $m_Ltigerpython_utilities_types_BuiltinTypes$().qg, $m_Ltigerpython_utilities_types_BuiltinTypes$().jp), $ct_T2__O__O__(new $c_T2(), $m_Ltigerpython_utilities_types_BuiltinTypes$().C1, $m_Ltigerpython_utilities_types_BuiltinTypes$().Hr), $ct_T2__O__O__(new $c_T2(), $m_Ltigerpython_utilities_types_BuiltinTypes$().C2, $m_Ltigerpython_utilities_types_BuiltinTypes$().Hs), $ct_T2__O__O__(new $c_T2(), $m_Ltigerpython_utilities_types_BuiltinTypes$().fc, $m_Ltigerpython_utilities_types_BuiltinTypes$().gZ), $ct_T2__O__O__(new $c_T2(), $m_Ltigerpython_utilities_types_BuiltinTypes$().C3, $m_Ltigerpython_utilities_types_BuiltinTypes$().Ht), $ct_T2__O__O__(new $c_T2(), $m_Ltigerpython_utilities_types_BuiltinTypes$().eL, $m_Ltigerpython_utilities_types_BuiltinTypes$().fD), $ct_T2__O__O__(new $c_T2(), $m_Ltigerpython_utilities_types_BuiltinTypes$().C4, $m_Ltigerpython_utilities_types_BuiltinTypes$().Hu), $ct_T2__O__O__(new $c_T2(), $m_Ltigerpython_utilities_types_BuiltinTypes$().dC, $m_Ltigerpython_utilities_types_BuiltinTypes$().wd), $ct_T2__O__O__(new $c_T2(), $m_Ltigerpython_utilities_types_BuiltinTypes$().C5, $m_Ltigerpython_utilities_types_BuiltinTypes$().Hv), $ct_T2__O__O__(new $c_T2(), $m_Ltigerpython_utilities_types_BuiltinTypes$().bu, $m_Ltigerpython_utilities_types_BuiltinTypes$().hF), $ct_T2__O__O__(new $c_T2(), $m_Ltigerpython_utilities_types_BuiltinTypes$().fd, $m_Ltigerpython_utilities_types_BuiltinTypes$().lO)])); } $p = $c_Ltigerpython_utilities_types_Instance$.prototype = new $h_O(); $p.constructor = $c_Ltigerpython_utilities_types_Instance$; @@ -38053,7 +38059,7 @@ $p.Ve = (function(binOp) { if (((x$3 === null) ? (x1 === null) : x$3.b(x1))) { var $x_1 = true; } else { - var x$5 = $m_Ltigerpython_parser_ast_BinOp$().j4; + var x$5 = $m_Ltigerpython_parser_ast_BinOp$().j3; if (((x$5 === null) ? (x1 === null) : x$5.b(x1))) { var $x_1 = true; } else { @@ -38065,7 +38071,7 @@ $p.Ve = (function(binOp) { if (((x$9 === null) ? (x1 === null) : x$9.b(x1))) { var $x_1 = true; } else { - var x$11 = $m_Ltigerpython_parser_ast_BinOp$().xZ; + var x$11 = $m_Ltigerpython_parser_ast_BinOp$().y0; if (((x$11 === null) ? (x1 === null) : x$11.b(x1))) { var $x_1 = true; } else { @@ -38073,7 +38079,7 @@ $p.Ve = (function(binOp) { if (((x$13 === null) ? (x1 === null) : x$13.b(x1))) { var $x_1 = true; } else { - var x$15 = $m_Ltigerpython_parser_ast_BinOp$().j5; + var x$15 = $m_Ltigerpython_parser_ast_BinOp$().j4; if (((x$15 === null) ? (x1 === null) : x$15.b(x1))) { var $x_1 = true; } else { @@ -38097,9 +38103,9 @@ $p.Ve = (function(binOp) { } else { var x$21 = $m_Ltigerpython_parser_ast_BinOp$().rQ; if (((x$21 === null) ? (x1 === null) : x$21.b(x1))) { - return (left.sY($m_Ltigerpython_utilities_types_BuiltinTypes$().fc) ? right : (right.sY($m_Ltigerpython_utilities_types_BuiltinTypes$().fc) ? left : ((left.sY($m_Ltigerpython_utilities_types_BuiltinTypes$().qg) && right.sY($m_Ltigerpython_utilities_types_BuiltinTypes$().qg)) ? $m_Ltigerpython_utilities_types_BuiltinTypes$().jp : (($f_sc_SeqOps__contains__O__Z(new $c_sjsr_WrappedVarArgs([$m_Ltigerpython_utilities_types_BuiltinTypes$().qg, $m_Ltigerpython_utilities_types_BuiltinTypes$().wb]), left) && $f_sc_SeqOps__contains__O__Z(new $c_sjsr_WrappedVarArgs([$m_Ltigerpython_utilities_types_BuiltinTypes$().qg, $m_Ltigerpython_utilities_types_BuiltinTypes$().wb]), right)) ? $m_Ltigerpython_utilities_types_BuiltinTypes$().lL : $m_Ltigerpython_utilities_types_BuiltinTypes$().ae)))); + return (left.sY($m_Ltigerpython_utilities_types_BuiltinTypes$().fc) ? right : (right.sY($m_Ltigerpython_utilities_types_BuiltinTypes$().fc) ? left : ((left.sY($m_Ltigerpython_utilities_types_BuiltinTypes$().qg) && right.sY($m_Ltigerpython_utilities_types_BuiltinTypes$().qg)) ? $m_Ltigerpython_utilities_types_BuiltinTypes$().jp : (($f_sc_SeqOps__contains__O__Z(new $c_sjsr_WrappedVarArgs([$m_Ltigerpython_utilities_types_BuiltinTypes$().qg, $m_Ltigerpython_utilities_types_BuiltinTypes$().wc]), left) && $f_sc_SeqOps__contains__O__Z(new $c_sjsr_WrappedVarArgs([$m_Ltigerpython_utilities_types_BuiltinTypes$().qg, $m_Ltigerpython_utilities_types_BuiltinTypes$().wc]), right)) ? $m_Ltigerpython_utilities_types_BuiltinTypes$().lL : $m_Ltigerpython_utilities_types_BuiltinTypes$().ae)))); } else { - var x$23 = $m_Ltigerpython_parser_ast_BinOp$().y1; + var x$23 = $m_Ltigerpython_parser_ast_BinOp$().y2; if (((x$23 === null) ? (x1 === null) : x$23.b(x1))) { return (right.sY($m_Ltigerpython_utilities_types_BuiltinTypes$().fc) ? left : $m_Ltigerpython_utilities_types_BuiltinTypes$().ae); } else { @@ -38368,9 +38374,9 @@ $p.Vm = (function(listComp) { var name = x2.R; try { var this$3 = this.z2; - var elem = new $c_Ltigerpython_utilities_types_TypeAstWalker$Parameter(name, this.aX($m_sc_ArrayOps$().aA(listComp.gx).iY).jv()); + var elem = new $c_Ltigerpython_utilities_types_TypeAstWalker$Parameter(name, this.aX($m_sc_ArrayOps$().aA(listComp.gx).iX).jv()); this$3.m3(elem); - return this.aX(listComp.j1); + return this.aX(listComp.j0); } finally { this.z2.jD(false); } @@ -38411,7 +38417,7 @@ $p.Dz = (function(argType) { var x4 = x1; var $x_11 = $m_sc_StringOps$(); var $x_10 = $m_s_Predef$(); - var xs = x4.wj; + var xs = x4.wk; var f = ((argType$2$2) => $m_Ltigerpython_utilities_types_Utils$().Dz(argType$2$2)); var len = xs.a.length; var ys = new ($d_T.r().C)(len); @@ -38674,7 +38680,7 @@ $p.VZ = (function(codePoint) { $p.W0 = (function(codePoint, tpe) { return ((((((tpe === 23) || (tpe === 9)) || (tpe === 8)) || (tpe === 6)) || ((((((tpe === 1) || (tpe === 2)) || (tpe === 3)) || (tpe === 4)) || (tpe === 5)) || (tpe === 10))) || (((((codePoint >= 0) && (codePoint <= 8)) || ((codePoint >= 14) && (codePoint <= 27))) || ((codePoint >= 127) && (codePoint <= 159))) || (tpe === 16))); }); -$p.wV = (function(ch) { +$p.wW = (function(ch) { return (65535 & this.Yk(ch)); }); $p.Yk = (function(codePoint) { @@ -38910,7 +38916,7 @@ function $p_jl_Float$__parseFloatDecimalCorrection__T__T__T__F__F__D__F($thiz, i throw new $c_jl_AssertionError(("parseFloatCorrection was given a subnormal mid: " + mid)); } var hi$2 = (1048575 & hi); - var m = $m_Ljava_math_BigInteger$().x1(new $c_RTLong(lo, (1048576 | hi$2))); + var m = $m_Ljava_math_BigInteger$().x2(new $c_RTLong(lo, (1048576 | hi$2))); var k = (((-1075) + lo$1) | 0); if ((e >= 0)) { if ((k >= 0)) { @@ -39353,23 +39359,23 @@ function $isArrayOf_jl_Throwable(obj, depth) { } /** @constructor */ function $c_Ljava_math_BigInteger$() { - this.x3 = null; + this.x4 = null; this.qN = null; this.qO = null; this.DT = null; this.JT = null; this.DU = null; $n_Ljava_math_BigInteger$ = this; - this.x3 = $ct_Ljava_math_BigInteger__I__I__(new $c_Ljava_math_BigInteger(), 1, 1); + this.x4 = $ct_Ljava_math_BigInteger__I__I__(new $c_Ljava_math_BigInteger(), 1, 1); this.qN = $ct_Ljava_math_BigInteger__I__I__(new $c_Ljava_math_BigInteger(), 1, 10); this.qO = $ct_Ljava_math_BigInteger__I__I__(new $c_Ljava_math_BigInteger(), 0, 0); this.DT = $ct_Ljava_math_BigInteger__I__I__(new $c_Ljava_math_BigInteger(), (-1), 1); - this.JT = new ($d_Ljava_math_BigInteger.r().C)([this.qO, this.x3, $ct_Ljava_math_BigInteger__I__I__(new $c_Ljava_math_BigInteger(), 1, 2), $ct_Ljava_math_BigInteger__I__I__(new $c_Ljava_math_BigInteger(), 1, 3), $ct_Ljava_math_BigInteger__I__I__(new $c_Ljava_math_BigInteger(), 1, 4), $ct_Ljava_math_BigInteger__I__I__(new $c_Ljava_math_BigInteger(), 1, 5), $ct_Ljava_math_BigInteger__I__I__(new $c_Ljava_math_BigInteger(), 1, 6), $ct_Ljava_math_BigInteger__I__I__(new $c_Ljava_math_BigInteger(), 1, 7), $ct_Ljava_math_BigInteger__I__I__(new $c_Ljava_math_BigInteger(), 1, 8), $ct_Ljava_math_BigInteger__I__I__(new $c_Ljava_math_BigInteger(), 1, 9), this.qN]); + this.JT = new ($d_Ljava_math_BigInteger.r().C)([this.qO, this.x4, $ct_Ljava_math_BigInteger__I__I__(new $c_Ljava_math_BigInteger(), 1, 2), $ct_Ljava_math_BigInteger__I__I__(new $c_Ljava_math_BigInteger(), 1, 3), $ct_Ljava_math_BigInteger__I__I__(new $c_Ljava_math_BigInteger(), 1, 4), $ct_Ljava_math_BigInteger__I__I__(new $c_Ljava_math_BigInteger(), 1, 5), $ct_Ljava_math_BigInteger__I__I__(new $c_Ljava_math_BigInteger(), 1, 6), $ct_Ljava_math_BigInteger__I__I__(new $c_Ljava_math_BigInteger(), 1, 7), $ct_Ljava_math_BigInteger__I__I__(new $c_Ljava_math_BigInteger(), 1, 8), $ct_Ljava_math_BigInteger__I__I__(new $c_Ljava_math_BigInteger(), 1, 9), this.qN]); var result = new ($d_Ljava_math_BigInteger.r().C)(32); var i = 0; while ((i < 32)) { var i$2 = i; - result.a[i$2] = $m_Ljava_math_BigInteger$().x1(new $c_RTLong((((32 & i$2) === 0) ? (1 << i$2) : 0), (((32 & i$2) === 0) ? 0 : (1 << i$2)))); + result.a[i$2] = $m_Ljava_math_BigInteger$().x2(new $c_RTLong((((32 & i$2) === 0) ? (1 << i$2) : 0), (((32 & i$2) === 0) ? 0 : (1 << i$2)))); i = ((1 + i) | 0); } this.DU = result; @@ -39380,7 +39386,7 @@ $p.constructor = $c_Ljava_math_BigInteger$; function $h_Ljava_math_BigInteger$() { } $h_Ljava_math_BigInteger$.prototype = $p; -$p.x1 = (function(lVal) { +$p.x2 = (function(lVal) { var ahi = lVal.i; if ((ahi < 0)) { if ((!((lVal.h === (-1)) && (lVal.i === (-1))))) { @@ -39717,7 +39723,7 @@ $p.TH = (function(original, newLength, ct) { return this.hN(original, newLength); } else { var destArrayClass = $objectGetClass($m_jl_reflect_Array$().nS(runtimeClass, 0)); - return $m_ju_Arrays$().iC(original, newLength, destArrayClass); + return $m_ju_Arrays$().iB(original, newLength, destArrayClass); } } else { var dest = ct.eC(newLength); @@ -39957,11 +39963,11 @@ $p.TS = (function(start, end, step, isInclusive, num) { } else if ((upward !== posStep)) { return 0; } else { - var startint = num.iL(start); + var startint = num.iK(start); if ($m_sr_BoxesRunTime$().Q(start, num.bH(startint))) { - var endint = num.iL(end); + var endint = num.iK(end); if ($m_sr_BoxesRunTime$().Q(end, num.bH(endint))) { - var stepint = num.iL(step); + var stepint = num.iK(step); if ($m_sr_BoxesRunTime$().Q(step, num.bH(stepint))) { if (isInclusive) { var isEmpty = (((startint > endint) && (stepint > 0)) || ((startint < endint) && (stepint < 0))); @@ -40087,7 +40093,7 @@ $p.TS = (function(start, end, step, isInclusive, num) { } var $x_1 = $p_sci_NumericRange$__check$1__O__s_math_Integral__O__O(this, $x_2, num, limit); } - return num.iL($x_1); + return num.iK($x_1); } }); var $d_sci_NumericRange$ = new $TypeData().i($c_sci_NumericRange$, "scala.collection.immutable.NumericRange$", ({ @@ -40144,7 +40150,7 @@ function $isArrayOf_sci_SetNode(obj, depth) { } function $f_scm_Growable__addAll__sc_IterableOnce__scm_Growable($thiz, elems) { if ((elems === $thiz)) { - $thiz.cU($m_scm_Buffer$().wB(elems)); + $thiz.cU($m_scm_Buffer$().wC(elems)); } else { var it = elems.k(); while (it.c()) { @@ -40355,7 +40361,7 @@ function $c_s_util_hashing_MurmurHash3$() { this.d9 = $f_T__hashCode__I("Seq"); this.my = $f_T__hashCode__I("Map"); this.AF = $f_T__hashCode__I("Set"); - this.AE = this.wX($m_sci_Nil$(), this.my); + this.AE = this.wY($m_sci_Nil$(), this.my); } $p = $c_s_util_hashing_MurmurHash3$.prototype = new $h_s_util_hashing_MurmurHash3(); $p.constructor = $c_s_util_hashing_MurmurHash3$; @@ -40464,7 +40470,7 @@ function $m_Ltigerpython_parser_ast_AstNode$Attribute$() { function $f_Ltigerpython_parser_ast_AstNode$Body__update__T__Ltigerpython_parser_ast_AstNode$Statement__V($thiz, key, value) { switch (key) { case "body": { - $thiz.wo(value); + $thiz.wp(value); break; } case "else": @@ -40592,11 +40598,11 @@ function $m_Ltigerpython_parser_ast_AstNode$Compare$() { return $n_Ltigerpython_parser_ast_AstNode$Compare$; } function $f_Ltigerpython_parser_ast_AstNode$Decoratable__addDecorator__Ltigerpython_parser_ast_AstNode$Expression__V($thiz, decorator) { - var xs = $thiz.wt(); + var xs = $thiz.wu(); var this$5 = $m_s_Array$(); var newLength = ((1 + xs.a.length) | 0); if ($d_Ltigerpython_parser_ast_AstNode$Expression.l().hQ($objectGetClass(xs).dg())) { - var dest$1 = ($d_Ltigerpython_parser_ast_AstNode$Expression.l().hS() ? this$5.hN(xs, newLength) : $m_ju_Arrays$().iC(xs, newLength, $d_Ltigerpython_parser_ast_AstNode$Expression.r().l())); + var dest$1 = ($d_Ltigerpython_parser_ast_AstNode$Expression.l().hS() ? this$5.hN(xs, newLength) : $m_ju_Arrays$().iB(xs, newLength, $d_Ltigerpython_parser_ast_AstNode$Expression.r().l())); } else { var dest = new ($d_Ltigerpython_parser_ast_AstNode$Expression.r().C)(newLength); $m_s_Array$().bz(xs, 0, dest, 0, xs.a.length); @@ -40606,12 +40612,12 @@ function $f_Ltigerpython_parser_ast_AstNode$Decoratable__addDecorator__Ltigerpyt $thiz.I5(dest$1); } function $f_Ltigerpython_parser_ast_AstNode$Decoratable__getDecoratorString__T($thiz) { - return (($thiz.wt().a.length !== 0) ? (("@" + $f_sc_IterableOnceOps__mkString__T__T__T__T($m_s_Predef$().at($thiz.wt()), "", ":@", "")) + ":") : ""); + return (($thiz.wu().a.length !== 0) ? (("@" + $f_sc_IterableOnceOps__mkString__T__T__T__T($m_s_Predef$().at($thiz.wu()), "", ":@", "")) + ":") : ""); } function $f_Ltigerpython_parser_ast_AstNode$Decoratable__hasDecorator__sci_Seq__Z($thiz, decoratorNames) { var nonLocalReturnKey1 = $ct_O__(new $c_O()); try { - var xs = $thiz.wt(); + var xs = $thiz.wu(); var f = ((decorator$2) => { var decorator = decorator$2; if ((decorator instanceof $c_Ltigerpython_parser_ast_AstNode$Name)) { @@ -40707,7 +40713,7 @@ function $f_Ltigerpython_parser_ast_AstNode$Decoratable__hasDecorator__sci_Seq__ } function $f_Ltigerpython_parser_ast_AstNode$Decoratable__update__T__Ltigerpython_parser_ast_AstNode$Statement__V($thiz, key, value) { if ((key === "body")) { - $thiz.wo(value); + $thiz.wp(value); } else { throw new $c_s_MatchError(key); } @@ -40837,12 +40843,12 @@ var $d_Ltigerpython_parser_ast_AstNode$Pattern = new $TypeData().i(0, "tigerpyth i: 1 })); function $ct_Ltigerpython_parser_ast_AstNode$Slice__s_Enumeration$Value__($thiz, kind) { - $thiz.xV = kind; + $thiz.xW = kind; return $thiz; } /** @constructor */ function $c_Ltigerpython_parser_ast_AstNode$Slice() { - this.xV = null; + this.xW = null; } $p = $c_Ltigerpython_parser_ast_AstNode$Slice.prototype = new $h_Ltigerpython_parser_ast_AstNode(); $p.constructor = $c_Ltigerpython_parser_ast_AstNode$Slice; @@ -40851,7 +40857,7 @@ function $h_Ltigerpython_parser_ast_AstNode$Slice() { } $h_Ltigerpython_parser_ast_AstNode$Slice.prototype = $p; $p.m1 = (function() { - return this.xV; + return this.xW; }); function $isArrayOf_Ltigerpython_parser_ast_AstNode$Slice(obj, depth) { return (!(!(((obj && obj.$classData) && (obj.$classData.D === depth)) && obj.$classData.B.n.bl))); @@ -40928,7 +40934,7 @@ $p.constructor = $c_Ltigerpython_parser_errormessages_DutchMessages$; function $h_Ltigerpython_parser_errormessages_DutchMessages$() { } $h_Ltigerpython_parser_errormessages_DutchMessages$.prototype = $p; -$p.wk = (function(msg) { +$p.wl = (function(msg) { var x = $m_Ltigerpython_parser_errors_ErrorCode$().mX; if (((x === null) ? (msg === null) : x.b(msg))) { return "'%s' verbindt vergelijkingen en geen variabelen."; @@ -41045,7 +41051,7 @@ $p.wk = (function(msg) { if (((x$57 === null) ? (msg === null) : x$57.b(msg))) { return "Er lijkt een regeleinde te veel te zijn. Je kunt deze door gebruik van '\\' verbergen."; } else { - var x$59 = $m_Ltigerpython_parser_errors_ErrorCode$().il; + var x$59 = $m_Ltigerpython_parser_errors_ErrorCode$().j5; if (((x$59 === null) ? (msg === null) : x$59.b(msg))) { return "Er is een sluithaakje of accolade te veel: '%s'."; } else { @@ -41309,7 +41315,7 @@ $p.wk = (function(msg) { if (((x$189 === null) ? (msg === null) : x$189.b(msg))) { return "Deze functie van Python 2.x is niet beschikbaar."; } else { - var x$191 = $m_Ltigerpython_parser_errors_ErrorCode$().im; + var x$191 = $m_Ltigerpython_parser_errors_ErrorCode$().il; if (((x$191 === null) ? (msg === null) : x$191.b(msg))) { return "Deze functie van Python 3.x is niet beschikbaar."; } else { @@ -41573,7 +41579,7 @@ $p.constructor = $c_Ltigerpython_parser_errormessages_EnglishMessages$; function $h_Ltigerpython_parser_errormessages_EnglishMessages$() { } $h_Ltigerpython_parser_errormessages_EnglishMessages$.prototype = $p; -$p.wk = (function(msg) { +$p.wl = (function(msg) { var x = $m_Ltigerpython_parser_errors_ErrorCode$().mX; if (((x === null) ? (msg === null) : x.b(msg))) { return "'%s' connects comparisons not variables."; @@ -41702,7 +41708,7 @@ $p.wk = (function(msg) { if (((x$63 === null) ? (msg === null) : x$63.b(msg))) { return "There is an extra opening bracket or parenthesis: '%s'."; } else { - var x$65 = $m_Ltigerpython_parser_errors_ErrorCode$().il; + var x$65 = $m_Ltigerpython_parser_errors_ErrorCode$().j5; if (((x$65 === null) ? (msg === null) : x$65.b(msg))) { return "There is an extra closing bracket or parenthesis: '%s'."; } else { @@ -41786,7 +41792,7 @@ $p.wk = (function(msg) { if (((x$105 === null) ? (msg === null) : x$105.b(msg))) { return "This '%s' must not be indented."; } else { - var x$107 = $m_Ltigerpython_parser_errors_ErrorCode$().y4; + var x$107 = $m_Ltigerpython_parser_errors_ErrorCode$().y5; if (((x$107 === null) ? (msg === null) : x$107.b(msg))) { return "The first line of '%s' must not be indented."; } else { @@ -41878,7 +41884,7 @@ $p.wk = (function(msg) { if (((x$151 === null) ? (msg === null) : x$151.b(msg))) { return "There seems to be a dot missing."; } else { - var x$153 = $m_Ltigerpython_parser_errors_ErrorCode$().y5; + var x$153 = $m_Ltigerpython_parser_errors_ErrorCode$().uZ; if (((x$153 === null) ? (msg === null) : x$153.b(msg))) { return "There is an expression or value missing here."; } else { @@ -41986,7 +41992,7 @@ $p.wk = (function(msg) { if (((x$205 === null) ? (msg === null) : x$205.b(msg))) { return "This feature from Python 2.x is not available."; } else { - var x$207 = $m_Ltigerpython_parser_errors_ErrorCode$().im; + var x$207 = $m_Ltigerpython_parser_errors_ErrorCode$().il; if (((x$207 === null) ? (msg === null) : x$207.b(msg))) { return "This feature from Python 3.x is not available."; } else { @@ -42298,7 +42304,7 @@ $p.constructor = $c_Ltigerpython_parser_errormessages_FrenchMessages$; function $h_Ltigerpython_parser_errormessages_FrenchMessages$() { } $h_Ltigerpython_parser_errormessages_FrenchMessages$.prototype = $p; -$p.wk = (function(msg) { +$p.wl = (function(msg) { var x = $m_Ltigerpython_parser_errors_ErrorCode$().mX; if (((x === null) ? (msg === null) : x.b(msg))) { return "Combinaison erron\u00e9e d'une expression bool\u00e9enne avec une variable non bool\u00e9enne \u00e0 l'aide de l'op\u00e9rateur logique '%s'."; @@ -42431,7 +42437,7 @@ $p.wk = (function(msg) { if (((x$65 === null) ? (msg === null) : x$65.b(msg))) { return "Il semble qu'il y ait un nombre trop grand de lignes."; } else { - var x$67 = $m_Ltigerpython_parser_errors_ErrorCode$().il; + var x$67 = $m_Ltigerpython_parser_errors_ErrorCode$().j5; if (((x$67 === null) ? (msg === null) : x$67.b(msg))) { return "Il y a une parenth\u00e8se fermante en trop: '%s'."; } else { @@ -42507,7 +42513,7 @@ $p.wk = (function(msg) { if (((x$103 === null) ? (msg === null) : x$103.b(msg))) { return "Le '%s' ne doit pas \u00eatre indent\u00e9."; } else { - var x$105 = $m_Ltigerpython_parser_errors_ErrorCode$().y4; + var x$105 = $m_Ltigerpython_parser_errors_ErrorCode$().y5; if (((x$105 === null) ? (msg === null) : x$105.b(msg))) { return "L'en-t\u00eate de l'instruction '%s' ne doit pas \u00eatre indent\u00e9 : seul son corps doit l'\u00eatre."; } else { @@ -42595,7 +42601,7 @@ $p.wk = (function(msg) { if (((x$147 === null) ? (msg === null) : x$147.b(msg))) { return "Il manque un point."; } else { - var x$149 = $m_Ltigerpython_parser_errors_ErrorCode$().y5; + var x$149 = $m_Ltigerpython_parser_errors_ErrorCode$().uZ; if (((x$149 === null) ? (msg === null) : x$149.b(msg))) { return "Il manque une expression."; } else { @@ -42933,7 +42939,7 @@ $p.constructor = $c_Ltigerpython_parser_errormessages_GermanMessages$; function $h_Ltigerpython_parser_errormessages_GermanMessages$() { } $h_Ltigerpython_parser_errormessages_GermanMessages$.prototype = $p; -$p.wk = (function(msg) { +$p.wl = (function(msg) { var x = $m_Ltigerpython_parser_errors_ErrorCode$().mX; if (((x === null) ? (msg === null) : x.b(msg))) { return "'%s' verkn\u00fcpft Vergleiche, nicht Variablen."; @@ -43058,7 +43064,7 @@ $p.wk = (function(msg) { if (((x$61 === null) ? (msg === null) : x$61.b(msg))) { return "Diese \u00f6ffnende Klammer hat kein Gegenst\u00fcck: '%s'."; } else { - var x$63 = $m_Ltigerpython_parser_errors_ErrorCode$().il; + var x$63 = $m_Ltigerpython_parser_errors_ErrorCode$().j5; if (((x$63 === null) ? (msg === null) : x$63.b(msg))) { return "Diese schliessende Klammer hat kein Gegenst\u00fcck: '%s'."; } else { @@ -43138,7 +43144,7 @@ $p.wk = (function(msg) { if (((x$101 === null) ? (msg === null) : x$101.b(msg))) { return "Dieses '%s' ist zu stark einger\u00fcckt."; } else { - var x$103 = $m_Ltigerpython_parser_errors_ErrorCode$().y4; + var x$103 = $m_Ltigerpython_parser_errors_ErrorCode$().y5; if (((x$103 === null) ? (msg === null) : x$103.b(msg))) { return "Die erste Zeile von '%s' darf selbst nicht einger\u00fcckt sein."; } else { @@ -43330,7 +43336,7 @@ $p.wk = (function(msg) { if (((x$197 === null) ? (msg === null) : x$197.b(msg))) { return "Dieses Feature von Python 2.x ist nicht verf\u00fcgbar."; } else { - var x$199 = $m_Ltigerpython_parser_errors_ErrorCode$().im; + var x$199 = $m_Ltigerpython_parser_errors_ErrorCode$().il; if (((x$199 === null) ? (msg === null) : x$199.b(msg))) { return "Dieses Feature von Python 3.x ist nicht verf\u00fcgbar."; } else { @@ -43608,7 +43614,7 @@ $p.constructor = $c_Ltigerpython_parser_errormessages_ItalianMessages$; function $h_Ltigerpython_parser_errormessages_ItalianMessages$() { } $h_Ltigerpython_parser_errormessages_ItalianMessages$.prototype = $p; -$p.wk = (function(msg) { +$p.wl = (function(msg) { var x = $m_Ltigerpython_parser_errors_ErrorCode$().mX; if (((x === null) ? (msg === null) : x.b(msg))) { return "'%s' connette comparazioni, non variabili."; @@ -43729,7 +43735,7 @@ $p.wk = (function(msg) { if (((x$59 === null) ? (msg === null) : x$59.b(msg))) { return "C'\u00e8 una parentesi aperta di troppo: '%s'."; } else { - var x$61 = $m_Ltigerpython_parser_errors_ErrorCode$().il; + var x$61 = $m_Ltigerpython_parser_errors_ErrorCode$().j5; if (((x$61 === null) ? (msg === null) : x$61.b(msg))) { return "C'\u00e8 una parentesi chiusa di troppo: '%s'."; } else { @@ -43993,7 +43999,7 @@ $p.wk = (function(msg) { if (((x$191 === null) ? (msg === null) : x$191.b(msg))) { return "Questa funzionalit\u00e0 da Python 2.x non \u00e8 disponibile."; } else { - var x$193 = $m_Ltigerpython_parser_errors_ErrorCode$().im; + var x$193 = $m_Ltigerpython_parser_errors_ErrorCode$().il; if (((x$193 === null) ? (msg === null) : x$193.b(msg))) { return "Questa funzionalit\u00e0 da Python 3.x non \u00e8 disponibile."; } else { @@ -44258,7 +44264,7 @@ $p.constructor = $c_Ltigerpython_parser_errormessages_RussianMessages$; function $h_Ltigerpython_parser_errormessages_RussianMessages$() { } $h_Ltigerpython_parser_errormessages_RussianMessages$.prototype = $p; -$p.wk = (function(msg) { +$p.wl = (function(msg) { var x = $m_Ltigerpython_parser_errors_ErrorCode$().mX; if (((x === null) ? (msg === null) : x.b(msg))) { return "'%s' \u0441\u0432\u044f\u0437\u044b\u0432\u0430\u0435\u0442 \u0441\u0440\u0430\u0432\u043d\u0435\u043d\u0438\u044f, \u0430 \u043d\u0435 \u043f\u0435\u0440\u0435\u043c\u0435\u043d\u043d\u044b\u0435."; @@ -44379,7 +44385,7 @@ $p.wk = (function(msg) { if (((x$59 === null) ? (msg === null) : x$59.b(msg))) { return "\u041b\u0438\u0448\u043d\u0430\u044f \u043e\u0442\u043a\u0440\u044b\u0432\u0430\u044e\u0449\u0430\u044f \u0441\u043a\u043e\u0431\u043a\u0430: '%s'."; } else { - var x$61 = $m_Ltigerpython_parser_errors_ErrorCode$().il; + var x$61 = $m_Ltigerpython_parser_errors_ErrorCode$().j5; if (((x$61 === null) ? (msg === null) : x$61.b(msg))) { return "\u041b\u0438\u0448\u043d\u0430\u044f \u0437\u0430\u043a\u0440\u044b\u0432\u0430\u044e\u0449\u0430\u044f \u0441\u043a\u043e\u0431\u043a\u0430: '%s'."; } else { @@ -44643,7 +44649,7 @@ $p.wk = (function(msg) { if (((x$191 === null) ? (msg === null) : x$191.b(msg))) { return "\u042d\u0442\u0430 \u0444\u0443\u043d\u043a\u0446\u0438\u044f \u0438\u0437 Python 2.x \u043d\u0435\u0434\u043e\u0441\u0442\u0443\u043f\u043d\u0430."; } else { - var x$193 = $m_Ltigerpython_parser_errors_ErrorCode$().im; + var x$193 = $m_Ltigerpython_parser_errors_ErrorCode$().il; if (((x$193 === null) ? (msg === null) : x$193.b(msg))) { return "\u042d\u0442\u0430 \u0444\u0443\u043d\u043a\u0446\u0438\u044f \u0438\u0437 Python 3.x \u043d\u0435\u0434\u043e\u0441\u0442\u0443\u043f\u043d\u0430."; } else { @@ -44901,7 +44907,7 @@ function $m_Ltigerpython_parser_errormessages_RussianMessages$() { function $c_Ltigerpython_parser_errors_ErrorHandler$DefaultErrorHandler() { this.FZ = null; this.fw = null; - this.FZ = $m_Ltigerpython_parser_errors_ErrorTranslator$().uZ; + this.FZ = $m_Ltigerpython_parser_errors_ErrorTranslator$().v0; var this$1 = $m_scm_ArrayBuffer$(); var elems = $m_sci_Nil$(); this.fw = this$1.al(elems); @@ -45050,7 +45056,7 @@ $p.CR = (function() { } var $x_4 = $m_s_None$(); } - var p$1 = $x_4.b7().v0.s(1); + var p$1 = $x_4.b7().v1.s(1); return new $c_s_Some(new $c_Ltigerpython_parser_errors_ExtErrorInfo(headPos, $f_sc_IndexedSeqOps__head__O(this.fw).rZ, $m_Ltigerpython_parser_errors_ErrorCode$().kb, this.FZ.QU($m_Ltigerpython_parser_errors_ErrorCode$().kb, $m_sci_Seq$().js(new $c_sjsr_WrappedVarArgs([$dp_toString__T(p$1)]))), $m_sci_Seq$().js(new $c_sjsr_WrappedVarArgs([p$1])))); } } @@ -45195,32 +45201,32 @@ $p.QU = (function(msg, params) { $p.XN = (function(code, msg) { switch (this.y6) { case "de": { - $m_Ltigerpython_parser_errormessages_GermanMessages$().wS(code, msg); + $m_Ltigerpython_parser_errormessages_GermanMessages$().wT(code, msg); return true; break; } case "en": { - $m_Ltigerpython_parser_errormessages_EnglishMessages$().wS(code, msg); + $m_Ltigerpython_parser_errormessages_EnglishMessages$().wT(code, msg); return true; break; } case "fr": { - $m_Ltigerpython_parser_errormessages_FrenchMessages$().wS(code, msg); + $m_Ltigerpython_parser_errormessages_FrenchMessages$().wT(code, msg); return true; break; } case "nl": { - $m_Ltigerpython_parser_errormessages_DutchMessages$().wS(code, msg); + $m_Ltigerpython_parser_errormessages_DutchMessages$().wT(code, msg); return true; break; } case "it": { - $m_Ltigerpython_parser_errormessages_ItalianMessages$().wS(code, msg); + $m_Ltigerpython_parser_errormessages_ItalianMessages$().wT(code, msg); return true; break; } case "ru": { - $m_Ltigerpython_parser_errormessages_RussianMessages$().wS(code, msg); + $m_Ltigerpython_parser_errormessages_RussianMessages$().wT(code, msg); return true; break; } @@ -45396,15 +45402,15 @@ $p.Cq = (function(yieldExpr) { }); $p.z6 = (function(name) { }); -$p.wy = (function(node) { +$p.wz = (function(node) { }); -$p.wJ = (function(node) { +$p.wK = (function(node) { }); $p.Cp = (function(whileStmt) { return true; }); $p.zp = (function(node) { - var x1 = node.wn(); + var x1 = node.wo(); if ((x1 instanceof $c_Ltigerpython_parser_ast_AstNode$Suite)) { this.Ti(x1.cS); } @@ -45560,9 +45566,9 @@ $p.z6 = (function(name) { }); $p.zp = (function(node) { }); -$p.wy = (function(node) { +$p.wz = (function(node) { }); -$p.wJ = (function(node) { +$p.wK = (function(node) { }); $p.Cg = (function(assignment) { var xs = assignment.gu; @@ -45658,7 +45664,7 @@ $p.Cj = (function(call) { return true; }); $p.Ck = (function(stmt) { - var xs = stmt.iZ; + var xs = stmt.iY; var f = ((name$2) => { var name = name$2; name.AO = $m_Ltigerpython_parser_ast_ExtExprContext$().FK; @@ -45741,10 +45747,10 @@ $p.Cl = (function(stmt) { var f = ((alias$2) => { var alias = alias$2; if ((alias.en !== null)) { - $p_Ltigerpython_parser_parsing_NameContextWalker__setNameContext__Ltigerpython_parser_ast_AstNode$Expression__s_Enumeration$Value__V(this, alias.en, $m_Ltigerpython_parser_ast_ExtExprContext$().y2); + $p_Ltigerpython_parser_parsing_NameContextWalker__setNameContext__Ltigerpython_parser_ast_AstNode$Expression__s_Enumeration$Value__V(this, alias.en, $m_Ltigerpython_parser_ast_ExtExprContext$().y3); $p_Ltigerpython_parser_parsing_NameContextWalker__setNameContext__Ltigerpython_parser_ast_AstNode$Expression__s_Enumeration$Value__V(this, alias.fq, $m_Ltigerpython_parser_ast_ExtExprContext$().AV); } else { - $p_Ltigerpython_parser_parsing_NameContextWalker__setNameContext__Ltigerpython_parser_ast_AstNode$Expression__s_Enumeration$Value__V(this, alias.fq, $m_Ltigerpython_parser_ast_ExtExprContext$().y2); + $p_Ltigerpython_parser_parsing_NameContextWalker__setNameContext__Ltigerpython_parser_ast_AstNode$Expression__s_Enumeration$Value__V(this, alias.fq, $m_Ltigerpython_parser_ast_ExtExprContext$().y3); } }); var len = xs.a.length; @@ -45819,15 +45825,15 @@ $p.Cl = (function(stmt) { return true; } else if ((stmt instanceof $c_Ltigerpython_parser_ast_AstNode$ImportFrom)) { var x3$1 = stmt; - $p_Ltigerpython_parser_parsing_NameContextWalker__setNameContext__Ltigerpython_parser_ast_AstNode$Expression__s_Enumeration$Value__V(this, x3$1.j0, $m_Ltigerpython_parser_ast_ExtExprContext$().AV); + $p_Ltigerpython_parser_parsing_NameContextWalker__setNameContext__Ltigerpython_parser_ast_AstNode$Expression__s_Enumeration$Value__V(this, x3$1.iZ, $m_Ltigerpython_parser_ast_ExtExprContext$().AV); var xs$1 = x3$1.k1; var f$1 = ((alias$3$2) => { var alias$3 = alias$3$2; if ((alias$3.en !== null)) { - $p_Ltigerpython_parser_parsing_NameContextWalker__setNameContext__Ltigerpython_parser_ast_AstNode$Expression__s_Enumeration$Value__V(this, alias$3.en, $m_Ltigerpython_parser_ast_ExtExprContext$().y2); + $p_Ltigerpython_parser_parsing_NameContextWalker__setNameContext__Ltigerpython_parser_ast_AstNode$Expression__s_Enumeration$Value__V(this, alias$3.en, $m_Ltigerpython_parser_ast_ExtExprContext$().y3); $p_Ltigerpython_parser_parsing_NameContextWalker__setNameContext__Ltigerpython_parser_ast_AstNode$Expression__s_Enumeration$Value__V(this, alias$3.fq, $m_Ltigerpython_parser_ast_ExtExprContext$().AV); } else { - $p_Ltigerpython_parser_parsing_NameContextWalker__setNameContext__Ltigerpython_parser_ast_AstNode$Expression__s_Enumeration$Value__V(this, alias$3.fq, $m_Ltigerpython_parser_ast_ExtExprContext$().y2); + $p_Ltigerpython_parser_parsing_NameContextWalker__setNameContext__Ltigerpython_parser_ast_AstNode$Expression__s_Enumeration$Value__V(this, alias$3.fq, $m_Ltigerpython_parser_ast_ExtExprContext$().y3); } }); var len$1 = xs$1.a.length; @@ -45914,9 +45920,9 @@ var $d_Ltigerpython_parser_parsing_NameContextWalker = new $TypeData().i($c_Ltig })); /** @constructor */ function $c_Ltigerpython_parser_parsing_ReturnValueChecker(parser, parserState) { - this.vO = null; + this.vP = null; this.lz = null; - this.vO = parserState; + this.vP = parserState; var elems = $m_sci_Nil$(); this.lz = new $c_scm_Stack(16).jr(elems); } @@ -45955,7 +45961,7 @@ $p.z6 = (function(name) { $p.zp = (function(node) { }); $p.Cn = (function(stmt) { - return ((!this.lz.t()) && (((stmt.j2 !== null) ? $f_sc_IndexedSeqOps__head__O(this.lz).XP() : $f_sc_IndexedSeqOps__head__O(this.lz).RK()), true)); + return ((!this.lz.t()) && (((stmt.j1 !== null) ? $f_sc_IndexedSeqOps__head__O(this.lz).XP() : $f_sc_IndexedSeqOps__head__O(this.lz).RK()), true)); }); $p.Cq = (function(yieldExpr) { return ((!this.lz.t()) && ($f_sc_IndexedSeqOps__head__O(this.lz).XQ(), true)); @@ -45968,14 +45974,14 @@ $p.Cg = (function(assignment) { var x2 = target; var pos = x2.fW; var name = x2.R; - if ((((!this.lz.t()) && this.vO.ck) && (name === $f_sc_IndexedSeqOps__head__O(this.lz).N3))) { - var this$5 = this.vO; + if ((((!this.lz.t()) && this.vP.ck) && (name === $f_sc_IndexedSeqOps__head__O(this.lz).N3))) { + var this$5 = this.vP; var code = $m_Ltigerpython_parser_errors_ErrorCode$().oX; var params = $m_sci_Nil$(); return this$5.l(pos, (-1), code, params); - } else if (this.vO.Bx) { + } else if (this.vP.Bx) { if ($m_Ltigerpython_parser_scopes_BuiltinNames$().lA.an(name)) { - var this$9 = this.vO; + var this$9 = this.vP; var code$1 = $m_Ltigerpython_parser_errors_ErrorCode$().mZ; var params$1 = new $c_sjsr_WrappedVarArgs([name]); return this$9.l(pos, (-1), code$1, params$1); @@ -46060,7 +46066,7 @@ $p.Cg = (function(assignment) { } return true; }); -$p.wy = (function(node) { +$p.wz = (function(node) { if ((node instanceof $c_Ltigerpython_parser_ast_AstNode$FunctionDef)) { var x2 = node; var this$1 = this.lz; @@ -46068,7 +46074,7 @@ $p.wy = (function(node) { this$1.m3(elem); } }); -$p.wJ = (function(node) { +$p.wK = (function(node) { if ((node instanceof $c_Ltigerpython_parser_ast_AstNode$FunctionDef)) { var x2 = node; var returnValue = this.lz.jD(false); @@ -46077,7 +46083,7 @@ $p.wJ = (function(node) { } if ((!returnValue.VX())) { if (returnValue.VP()) { - var this$2 = this.vO; + var this$2 = this.vP; var pos = node.m(); var code = $m_Ltigerpython_parser_errors_ErrorCode$().pa; var params = $m_sci_Nil$(); @@ -46104,7 +46110,7 @@ $p.qx = (function(stmt) { } } if ((stmt instanceof $c_Ltigerpython_parser_ast_AstNode$Return)) { - return (stmt.j2 === null); + return (stmt.j1 === null); } if (((stmt instanceof $c_Ltigerpython_parser_ast_AstNode$Raise2) || (stmt instanceof $c_Ltigerpython_parser_ast_AstNode$Raise3))) { return false; @@ -46189,7 +46195,7 @@ $p.nO = (function(stmt) { }); $p.VH = (function(test) { if ((test instanceof $c_Ltigerpython_parser_ast_AstNode$BooleanValue)) { - if ((test.iX === true)) { + if ((test.iW === true)) { return true; } } @@ -46246,9 +46252,9 @@ $p.z6 = (function(name) { }); $p.zp = (function(node) { }); -$p.wy = (function(node) { +$p.wz = (function(node) { }); -$p.wJ = (function(node) { +$p.wK = (function(node) { }); $p.Qu = (function(expr) { if ((expr instanceof $c_Ltigerpython_parser_ast_AstNode$Call)) { @@ -46312,11 +46318,11 @@ $p.Cj = (function(call) { if ((x$7 === p3)) { var $x_1 = true; } else { - var x$9 = $m_Ltigerpython_parser_types_BuiltinTypes$().iv; + var x$9 = $m_Ltigerpython_parser_types_BuiltinTypes$().iu; if ((x$9 === p3)) { var $x_1 = true; } else { - var x$11 = $m_Ltigerpython_parser_types_BuiltinTypes$().iu; + var x$11 = $m_Ltigerpython_parser_types_BuiltinTypes$().it; var $x_1 = (x$11 === p3); } } @@ -46429,10 +46435,10 @@ $p.eT = (function() { $p.aH = (function() { return this.Nf; }); -$p.iA = (function(name) { +$p.iz = (function(name) { var x1 = this.fA; if ((x1 instanceof $c_Ltigerpython_parser_scopes_ForLoopScope)) { - x1.iA(name); + x1.iz(name); } else if ((x1 instanceof $c_Ltigerpython_parser_scopes_FunctionScope)) { x1.Bz.b6(name); } @@ -46463,7 +46469,7 @@ function $c_Ltigerpython_parser_scopes_FunctionScope(startPos, endPos, function$ this.Gy = null; this.Gz = null; this.Bz = null; - this.vP = null; + this.vQ = null; this.Ni = startPos; this.Nh = endPos; this.Gy = function$1; @@ -46559,12 +46565,12 @@ $p.aH = (function() { return this.Nh; }); $p.Dk = (function(retType) { - if (((this.vP !== null) && (retType !== null))) { - if ((!this.vP.sX($m_Ltigerpython_parser_types_BuiltinTypes$().BE))) { - this.vP = $m_Ltigerpython_parser_types_DataType$().qs(this.vP, retType); + if (((this.vQ !== null) && (retType !== null))) { + if ((!this.vQ.sX($m_Ltigerpython_parser_types_BuiltinTypes$().BE))) { + this.vQ = $m_Ltigerpython_parser_types_DataType$().qs(this.vQ, retType); } } else { - this.vP = retType; + this.vQ = retType; } }); $p.ga = (function() { @@ -46576,7 +46582,7 @@ $p.kq = (function(name, dataType) { var module = this.Iu(); if ((module !== null)) { module.kq(name, dataType); - module.iA(name); + module.iz(name); } } else { $p_scm_HashMap__put0__O__O__Z__s_Some(this.Gz, name, dataType, false); @@ -46702,7 +46708,7 @@ $p.h5 = (function(moduleName, importName) { } } }); -$p.iA = (function(name) { +$p.iz = (function(name) { if (((name !== null) && (name !== ""))) { this.Nl.b6(name); } @@ -46868,7 +46874,7 @@ $p.constructor = $c_Ltigerpython_parser_types_SelfInstance; function $h_Ltigerpython_parser_types_SelfInstance() { } $h_Ltigerpython_parser_types_SelfInstance.prototype = $p; -$p.ww = (function() { +$p.wx = (function() { return ((this.ji !== null) ? this.ji.bM : this.bM); }); $p.I7 = (function(s) { @@ -46907,7 +46913,7 @@ var $d_Ltigerpython_parser_types_SelfInstance = new $TypeData().i($c_Ltigerpytho function $c_Ltigerpython_utilities_completer_Completer$$anon$1(outer) { this.Bv = null; this.Bw = null; - this.vL = null; + this.vM = null; this.Gr = 0; this.Gp = 0; this.s9 = null; @@ -46917,11 +46923,11 @@ function $c_Ltigerpython_utilities_completer_Completer$$anon$1(outer) { this.ki = null; this.Gq = null; this.sa = false; - this.vK = false; + this.vL = false; this.kh = null; this.nx = 0; $ct_Ltigerpython_parser_parsing_Parser__jl_CharSequence__I__I__Ltigerpython_parser_errors_ErrorHandler__(this, outer.kk, 2, outer.g2, $m_Ltigerpython_parser_errors_ErrorHandler$SilentErrorHandler$()); - this.p.vN = $m_Ltigerpython_utilities_completer_Completer$().NM; + this.p.vO = $m_Ltigerpython_utilities_completer_Completer$().NM; this.p.q3 = $m_Ltigerpython_utilities_completer_Completer$().NN; } $p = $c_Ltigerpython_utilities_completer_Completer$$anon$1.prototype = new $h_Ltigerpython_parser_parsing_Parser(); @@ -46935,7 +46941,7 @@ var $d_Ltigerpython_utilities_completer_Completer$$anon$1 = new $TypeData().i($c fB: 1 })); function $p_Ltigerpython_utilities_completer_DefaultNameFilter__nameList__scm_ArrayBuffer($thiz) { - if ($thiz.vW) { + if ($thiz.vX) { var this$1 = $thiz.lE; $m_scm_ArrayBuffer$(); var b = new $c_scm_ArrayBuffer$$anon$1(); @@ -47005,7 +47011,7 @@ function $ct_Ltigerpython_utilities_completer_DefaultNameFilter__($thiz) { $thiz.lE = this$1.al(elems); $thiz.sp = $m_scm_Map$().as($m_sci_Nil$()); $thiz.so = true; - $thiz.vW = true; + $thiz.vX = true; return $thiz; } /** @constructor */ @@ -47013,7 +47019,7 @@ function $c_Ltigerpython_utilities_completer_DefaultNameFilter() { this.lE = null; this.sp = null; this.so = false; - this.vW = false; + this.vX = false; } $p = $c_Ltigerpython_utilities_completer_DefaultNameFilter.prototype = new $h_O(); $p.constructor = $c_Ltigerpython_utilities_completer_DefaultNameFilter; @@ -47242,14 +47248,14 @@ $p.Qn = (function() { x2 = x1; var f = x2.X; if ((f instanceof $c_Ltigerpython_utilities_types_FunctionType)) { - return $ct_Ltigerpython_utilities_completer_CompleterInfoItem__Ltigerpython_utilities_types_DataType__(new $c_Ltigerpython_utilities_completer_CompleterInfoItem(), f); + return $ct_Ltigerpython_utilities_completer_CompleterInfoItem__Ltigerpython_utilities_types_DataType__T__(new $c_Ltigerpython_utilities_completer_CompleterInfoItem(), f, null); } } if ((rc10 && (x2.X instanceof $c_Ltigerpython_utilities_types_Instance))) { return $ct_Ltigerpython_utilities_completer_CompleterInfoItem__T__(new $c_Ltigerpython_utilities_completer_CompleterInfoItem(), name); } if (rc10) { - return $ct_Ltigerpython_utilities_completer_CompleterInfoItem__Ltigerpython_utilities_types_DataType__(new $c_Ltigerpython_utilities_completer_CompleterInfoItem(), x2.X); + return $ct_Ltigerpython_utilities_completer_CompleterInfoItem__Ltigerpython_utilities_types_DataType__T__(new $c_Ltigerpython_utilities_completer_CompleterInfoItem(), x2.X, name); } if (($m_s_None$() === x1)) { return $ct_Ltigerpython_utilities_completer_CompleterInfoItem__T__(new $c_Ltigerpython_utilities_completer_CompleterInfoItem(), name); @@ -47352,7 +47358,7 @@ $p.j = (function() { }); function $p_Ltigerpython_utilities_completer_PyiModuleParser__hasDecorator__Ltigerpython_utilities_fastparse_ExprAst__T__Z($thiz, decorator, name) { if ((decorator instanceof $c_Ltigerpython_utilities_fastparse_NameNode)) { - return (name === decorator.iy); + return (name === decorator.ix); } else if ((decorator instanceof $c_Ltigerpython_utilities_fastparse_TupleNode)) { var x3 = decorator; var elts = x3.lH; @@ -47508,7 +47514,7 @@ $p.hM = (function(pyiType) { var x3 = null; if ((pyiType instanceof $c_Ltigerpython_utilities_fastparse_NameNode)) { var x2 = pyiType; - var name = x2.iy; + var name = x2.ix; var x1$2 = this.yB.cW(name); return ((x1$2 instanceof $c_s_Some) ? x1$2.X : $m_Ltigerpython_utilities_types_BuiltinTypes$().CO(name)); } @@ -47519,7 +47525,7 @@ $p.hM = (function(pyiType) { var subscript = x3.qe; if ((p4 instanceof $c_Ltigerpython_utilities_fastparse_NameNode)) { var x5 = p4; - var p6 = x5.iy; + var p6 = x5.ix; if (((p6 === "list") || (p6 === "List"))) { return $m_Ltigerpython_utilities_types_ListType$().sI(this.hM(subscript)); } @@ -47530,7 +47536,7 @@ $p.hM = (function(pyiType) { var p11 = x3.qe; if ((p10 instanceof $c_Ltigerpython_utilities_fastparse_NameNode)) { var x12 = p10; - var p13 = x12.iy; + var p13 = x12.ix; if ((((p13 === "tuple") || (p13 === "Tuple")) && (p11 instanceof $c_Ltigerpython_utilities_fastparse_TupleNode))) { var x14 = p11; var elts = x14.lH; @@ -47629,7 +47635,7 @@ $p.hM = (function(pyiType) { var p19 = x3.qe; if ((p18 instanceof $c_Ltigerpython_utilities_fastparse_NameNode)) { var x20 = p18; - var p21 = x20.iy; + var p21 = x20.ix; if ((((p21 === "dict") || (p21 === "Dict")) && (p19 instanceof $c_Ltigerpython_utilities_fastparse_TupleNode))) { var x22 = p19; var elts$2 = x22.lH; @@ -47641,7 +47647,7 @@ $p.hM = (function(pyiType) { } if ((pyiType instanceof $c_Ltigerpython_utilities_fastparse_OrNode)) { var x25 = pyiType; - var elts$3 = x25.w6; + var elts$3 = x25.w7; if ((elts$3.a.length !== 0)) { var tp$2 = new $c_sr_ObjectRef(this.hM($m_sc_ArrayOps$().aA(elts$3))); var xs = $m_sc_ArrayOps$().m9(elts$3); @@ -48210,7 +48216,7 @@ function $h_Ltigerpython_utilities_fastparse_Lexer$IndentStack() { } $h_Ltigerpython_utilities_fastparse_Lexer$IndentStack.prototype = $p; $p.I4 = (function() { - return ((this.fC > 0) ? this.GZ.a[(((-1) + this.fC) | 0)].w4 : 0); + return ((this.fC > 0) ? this.GZ.a[(((-1) + this.fC) | 0)].w5 : 0); }); $p.zJ = (function() { return this.GZ; @@ -48326,10 +48332,10 @@ $p.eT = (function() { $p.aH = (function() { return this.Ov; }); -$p.iA = (function(name) { +$p.iz = (function(name) { var x1 = this.eK; if ((x1 instanceof $c_Ltigerpython_utilities_scopes_ForLoopScope)) { - x1.iA(name); + x1.iz(name); } else if ((x1 instanceof $c_Ltigerpython_utilities_scopes_FunctionScope)) { x1.BV.b6(name); } @@ -48360,7 +48366,7 @@ function $c_Ltigerpython_utilities_scopes_FunctionScope(startPos, endPos, functi this.Hd = null; this.He = null; this.BV = null; - this.w9 = null; + this.wa = null; this.Oy = startPos; this.Ox = endPos; this.Hd = function$1; @@ -48456,12 +48462,12 @@ $p.aH = (function() { return this.Ox; }); $p.Dl = (function(retType) { - if (((this.w9 !== null) && (retType !== null))) { - if ((!this.w9.sY($m_Ltigerpython_utilities_types_BuiltinTypes$().C2))) { - this.w9 = $m_Ltigerpython_utilities_types_DataType$().nM(this.w9, retType); + if (((this.wa !== null) && (retType !== null))) { + if ((!this.wa.sY($m_Ltigerpython_utilities_types_BuiltinTypes$().C2))) { + this.wa = $m_Ltigerpython_utilities_types_DataType$().nM(this.wa, retType); } } else { - this.w9 = retType; + this.wa = retType; } }); $p.ga = (function() { @@ -48473,7 +48479,7 @@ $p.kr = (function(name, dataType) { var module = this.zt(); if ((module !== null)) { module.kr(name, dataType); - module.iA(name); + module.iz(name); } } else { $p_scm_HashMap__put0__O__O__Z__s_Some(this.He, name, dataType, false); @@ -48494,12 +48500,12 @@ function $c_Ltigerpython_utilities_scopes_ModuleScope(sourceLength, module, modu this.eK = null; this.qf = null; this.lJ = null; - this.wa = null; + this.wb = null; this.OB = 0; this.Oz = 0; this.OA = null; this.lJ = module; - this.wa = moduleLoader; + this.wb = moduleLoader; $ct_Ltigerpython_utilities_scopes_Scope__(this); this.OB = 0; this.Oz = sourceLength; @@ -48540,7 +48546,7 @@ $p.h3 = (function() { }); $p.h5 = (function(moduleName, importName) { if (((importName === null) || (importName === ""))) { - return new $c_s_Some(this.wa.Qy(moduleName)); + return new $c_s_Some(this.wb.Qy(moduleName)); } else if (((moduleName === ".") || (moduleName === this.lJ.aR()))) { return this.c8(importName); } else { @@ -48595,11 +48601,11 @@ $p.h5 = (function(moduleName, importName) { return this.h5(".", importName); } } else { - return new $c_s_Some(this.wa.QA(moduleName, importName)); + return new $c_s_Some(this.wb.QA(moduleName, importName)); } } }); -$p.iA = (function(name) { +$p.iz = (function(name) { if (((name !== null) && (name !== ""))) { this.OA.b6(name); } @@ -48771,7 +48777,7 @@ $p.constructor = $c_Ltigerpython_utilities_types_SelfInstance; function $h_Ltigerpython_utilities_types_SelfInstance() { } $h_Ltigerpython_utilities_types_SelfInstance.prototype = $p; -$p.ww = (function() { +$p.wx = (function() { return ((this.jq !== null) ? this.jq.bo : this.bo); }); $p.I7 = (function(s) { @@ -49111,12 +49117,12 @@ function $f_s_Product3__productElement__I__O($thiz, n) { } } function $ct_sc_ClassTagIterableFactory$AnyIterableDelegate__sc_ClassTagIterableFactory__($thiz, delegate) { - $thiz.x8 = delegate; + $thiz.x9 = delegate; return $thiz; } /** @constructor */ function $c_sc_ClassTagIterableFactory$AnyIterableDelegate() { - this.x8 = null; + this.x9 = null; } $p = $c_sc_ClassTagIterableFactory$AnyIterableDelegate.prototype = new $h_O(); $p.constructor = $c_sc_ClassTagIterableFactory$AnyIterableDelegate; @@ -49125,15 +49131,15 @@ function $h_sc_ClassTagIterableFactory$AnyIterableDelegate() { } $h_sc_ClassTagIterableFactory$AnyIterableDelegate.prototype = $p; $p.bO = (function(it) { - return this.x8.Im(it, $m_s_reflect_ManifestFactory$AnyManifest$()); + return this.x9.Im(it, $m_s_reflect_ManifestFactory$AnyManifest$()); }); $p.bv = (function() { - var this$1 = this.x8; + var this$1 = this.x9; var evidence$12 = $m_s_reflect_ManifestFactory$AnyManifest$(); return this$1.D7(evidence$12); }); $p.as = (function(elems) { - var this$1 = this.x8; + var this$1 = this.x9; var evidence$7 = $m_s_reflect_ManifestFactory$AnyManifest$(); return this$1.Im(elems, evidence$7); }); @@ -49443,7 +49449,7 @@ $p.I2 = (function(key, originalHash, keyHash, shift) { return (((this.bw & bitpos) !== 0) && this.ff($m_sci_Node$().eO(this.bw, mask, bitpos)).I2(key, originalHash, keyHash, ((5 + shift) | 0))); } }); -$p.wZ = (function(key, value, originalHash, keyHash, shift, replaceValue) { +$p.x0 = (function(key, value, originalHash, keyHash, shift, replaceValue) { var mask = $m_sci_Node$().fg(keyHash, shift); var bitpos = $m_sci_Node$().cz(mask); if (((this.bc & bitpos) !== 0)) { @@ -49481,7 +49487,7 @@ $p.DA = (function(key, value, originalHash, keyHash, shift, shallowlyMutableNode if (((key0UnimprovedHash === originalHash) && $m_sr_BoxesRunTime$().Q(key0, key))) { var value0 = this.ea(index); if ((!(Object.is(key0, key) && Object.is(value0, value)))) { - var dataIx = this.iD(bitpos); + var dataIx = this.iC(bitpos); var idx = (dataIx << 1); this.cp.a[((1 + idx) | 0)] = value; } @@ -49519,7 +49525,7 @@ $p.DA = (function(key, value, originalHash, keyHash, shift, shallowlyMutableNode this.eX = ((((this.eX - subNodeHashCode) | 0) + subNodeNew$2.cV()) | 0); return returnMutableNodeMap; } else { - var dataIx$2 = this.iD(bitpos); + var dataIx$2 = this.iC(bitpos); var idx$2 = (dataIx$2 << 1); var src = this.cp; var dst = new $ac_O(((2 + src.a.length) | 0)); @@ -49552,7 +49558,7 @@ $p.zP = (function(key0, value0, originalHash0, keyHash0, key1, value1, originalH } else { var nodeMap = $m_sci_Node$().cz(mask0); var node = this.zP(key0, value0, originalHash0, keyHash0, key1, value1, originalHash1, keyHash1, ((5 + shift) | 0)); - return new $c_sci_BitmapIndexedMapNode(0, nodeMap, new $ac_O([node]), $m_s_Array$EmptyArrays$().x7, node.aK(), node.cV()); + return new $c_sci_BitmapIndexedMapNode(0, nodeMap, new $ac_O([node]), $m_s_Array$EmptyArrays$().x8, node.aK(), node.cV()); } } }); @@ -49562,20 +49568,20 @@ $p.zD = (function() { $p.zS = (function() { return $m_jl_Integer$().cm(this.bw); }); -$p.wE = (function() { +$p.wF = (function() { return (this.bc !== 0); }); $p.zZ = (function() { return $m_jl_Integer$().cm(this.bc); }); -$p.iD = (function(bitpos) { +$p.iC = (function(bitpos) { return $m_jl_Integer$().cm((this.bc & (((-1) + bitpos) | 0))); }); $p.qF = (function(bitpos) { return $m_jl_Integer$().cm((this.bw & (((-1) + bitpos) | 0))); }); $p.TG = (function(bitpos, newKey, newValue) { - var dataIx = this.iD(bitpos); + var dataIx = this.iC(bitpos); var idx = (dataIx << 1); var src = this.cp; var dst = new $ac_O(src.a.length); @@ -49594,7 +49600,7 @@ $p.TE = (function(bitpos, oldNode, newNode) { return new $c_sci_BitmapIndexedMapNode(this.bc, this.bw, dst, this.eY, ((((this.cL - oldNode.aK()) | 0) + newNode.aK()) | 0), ((((this.eX - oldNode.cV()) | 0) + newNode.cV()) | 0)); }); $p.TA = (function(bitpos, key, originalHash, keyHash, value) { - var dataIx = this.iD(bitpos); + var dataIx = this.iC(bitpos); var idx = (dataIx << 1); var src = this.cp; var dst = new $ac_O(((2 + src.a.length) | 0)); @@ -49608,7 +49614,7 @@ $p.TA = (function(bitpos, key, originalHash, keyHash, value) { return new $c_sci_BitmapIndexedMapNode((this.bc | bitpos), this.bw, dst, dstHashes, ((1 + this.cL) | 0), ((this.eX + keyHash) | 0)); }); $p.QV = (function(bitpos, keyHash, node) { - var dataIx = this.iD(bitpos); + var dataIx = this.iC(bitpos); var idxOld = (dataIx << 1); var idxNew = (((((-2) + this.cp.a.length) | 0) - this.qF(bitpos)) | 0); var src = this.cp; @@ -49632,7 +49638,7 @@ $p.QV = (function(bitpos, keyHash, node) { return this; }); $p.TC = (function(bitpos, keyHash, node) { - var dataIx = this.iD(bitpos); + var dataIx = this.iC(bitpos); var idxOld = (dataIx << 1); var idxNew = (((((-2) + this.cp.a.length) | 0) - this.qF(bitpos)) | 0); var src = this.cp; @@ -49730,7 +49736,7 @@ $p.I0 = (function(that, shift) { return this; } else if ((x2.cL === 1)) { var originalHash = x2.cJ(0); - return this.wZ(x2.e9(0), x2.ea(0), originalHash, $m_sc_Hashing$().bA(originalHash), shift, true); + return this.x0(x2.e9(0), x2.ea(0), originalHash, $m_sc_Hashing$().bA(originalHash), shift, true); } var anyChangesMadeSoFar = false; var allMap = (((this.bc | x2.bc) | this.bw) | x2.bw); @@ -49938,7 +49944,7 @@ $p.Pz = (function(that, shift) { return this.I0(that, shift); }); $p.A7 = (function(key, value, originalHash, hash, shift, replaceValue) { - return this.wZ(key, value, originalHash, hash, shift, replaceValue); + return this.x0(key, value, originalHash, hash, shift, replaceValue); }); $p.zv = (function(index) { return this.ff(index); @@ -49976,7 +49982,7 @@ function $p_sci_BitmapIndexedSetNode__newNodeFrom__I__I__I__I__I__I__I__scm_Queu newDataIndex = ((1 + newDataIndex) | 0); oldDataIndex = ((1 + oldDataIndex) | 0); } else if (((bitpos & nodesToPassThroughMap) !== 0)) { - newContent.a[(((-1) + ((newContentSize - newNodeIndex) | 0)) | 0)] = $thiz.iE(oldNodeIndex); + newContent.a[(((-1) + ((newContentSize - newNodeIndex) | 0)) | 0)] = $thiz.iD(oldNodeIndex); newNodeIndex = ((1 + newNodeIndex) | 0); oldNodeIndex = ((1 + oldNodeIndex) | 0); } else if (((bitpos & nodeMigrateToDataTargetMap) !== 0)) { @@ -50032,7 +50038,7 @@ $p.gH = (function(index) { $p.cJ = (function(index) { return this.hd.a[index]; }); -$p.iE = (function(index) { +$p.iD = (function(index) { return this.ee.a[(((((-1) + this.ee.a.length) | 0) - index) | 0)]; }); $p.zl = (function(element, originalHash, elementHash, shift) { @@ -50043,7 +50049,7 @@ $p.zl = (function(element, originalHash, elementHash, shift) { return ((this.hd.a[index] === originalHash) && $m_sr_BoxesRunTime$().Q(element, this.gH(index))); } if (((this.ca & bitpos) !== 0)) { - return this.iE($m_sci_Node$().eO(this.ca, mask, bitpos)).zl(element, originalHash, elementHash, ((5 + shift) | 0)); + return this.iD($m_sci_Node$().eO(this.ca, mask, bitpos)).zl(element, originalHash, elementHash, ((5 + shift) | 0)); } return false; }); @@ -50067,7 +50073,7 @@ $p.S3 = (function(element, originalHash, elementHash, shift) { } if (((this.ca & bitpos) !== 0)) { var index$2 = $m_sci_Node$().eO(this.ca, mask, bitpos); - var subNode = this.iE(index$2); + var subNode = this.iD(index$2); var subNodeNew$2 = subNode.S4(element, originalHash, elementHash, ((5 + shift) | 0)); if ((subNode === subNodeNew$2)) { return this; @@ -50092,11 +50098,11 @@ $p.IS = (function(key0, originalKeyHash0, keyHash0, key1, originalKeyHash1, keyH } else { var nodeMap = $m_sci_Node$().cz(mask0); var node = this.IS(key0, originalKeyHash0, keyHash0, key1, originalKeyHash1, keyHash1, ((5 + shift) | 0)); - return new $c_sci_BitmapIndexedSetNode(0, nodeMap, new $ac_O([node]), $m_s_Array$EmptyArrays$().x7, node.aK(), node.cV()); + return new $c_sci_BitmapIndexedSetNode(0, nodeMap, new $ac_O([node]), $m_s_Array$EmptyArrays$().x8, node.aK(), node.cV()); } } }); -$p.wE = (function() { +$p.wF = (function() { return (this.bf !== 0); }); $p.zZ = (function() { @@ -50108,7 +50114,7 @@ $p.zD = (function() { $p.zS = (function() { return $m_jl_Integer$().cm(this.ca); }); -$p.iD = (function(bitpos) { +$p.iC = (function(bitpos) { return $m_jl_Integer$().cm((this.bf & (((-1) + bitpos) | 0))); }); $p.qF = (function(bitpos) { @@ -50124,7 +50130,7 @@ $p.TF = (function(bitpos, oldNode, newNode) { return new $c_sci_BitmapIndexedSetNode(this.bf, this.ca, dst, this.hd, ((((this.dG - oldNode.aK()) | 0) + newNode.aK()) | 0), ((((this.hc - oldNode.cV()) | 0) + newNode.cV()) | 0)); }); $p.TB = (function(bitpos, key, originalHash, elementHash) { - var dataIx = this.iD(bitpos); + var dataIx = this.iC(bitpos); var src = this.ee; var dst = new $ac_O(((1 + src.a.length) | 0)); src.a5(0, dst, 0, dataIx); @@ -50136,7 +50142,7 @@ $p.TB = (function(bitpos, key, originalHash, elementHash) { return new $c_sci_BitmapIndexedSetNode((this.bf | bitpos), this.ca, dst, dstHashes, ((1 + this.dG) | 0), ((this.hc + elementHash) | 0)); }); $p.TD = (function(bitpos, elementHash, node) { - var dataIx = this.iD(bitpos); + var dataIx = this.iC(bitpos); var idxNew = (((((-1) + this.ee.a.length) | 0) - this.qF(bitpos)) | 0); var src = this.ee; var dst = new $ac_O(src.a.length); @@ -50153,7 +50159,7 @@ $p.TD = (function(bitpos, elementHash, node) { return new $c_sci_BitmapIndexedSetNode((this.bf ^ bitpos), (this.ca | bitpos), dst, dstHashes, (((((-1) + this.dG) | 0) + node.aK()) | 0), ((((this.hc - elementHash) | 0) + node.cV()) | 0)); }); $p.Wv = (function(bitpos, keyHash, node) { - var dataIx = this.iD(bitpos); + var dataIx = this.iC(bitpos); var idxNew = (((((-1) + this.ee.a.length) | 0) - this.qF(bitpos)) | 0); var src = this.ee; var srcPos = ((1 + dataIx) | 0); @@ -50178,7 +50184,7 @@ $p.az = (function(f) { var thisNodeArity = $m_jl_Integer$().cm(this.ca); var j = 0; while ((j < thisNodeArity)) { - this.iE(j).az(f); + this.iD(j).az(f); j = ((1 + j) | 0); } }); @@ -50210,14 +50216,14 @@ $p.Js = (function(that, shift) { } else { var thisDataIndex = $m_sci_Node$().qz(this.bf, bitpos); var payload = this.gH(thisDataIndex); - var subNode = that.iE($m_sci_Node$().qz(x3.ca, bitpos)); + var subNode = that.iD($m_sci_Node$().qz(x3.ca, bitpos)); var elementUnimprovedHash = this.cJ(thisDataIndex); var elementHash = $m_sc_Hashing$().bA(elementUnimprovedHash); isValidSubset = subNode.zl(payload, elementUnimprovedHash, elementHash, ((5 + shift) | 0)); } } else if (((x3.bf & bitpos) === 0)) { - var subNode0 = this.iE($m_sci_Node$().qz(this.ca, bitpos)); - var subNode1 = x3.iE($m_sci_Node$().qz(x3.ca, bitpos)); + var subNode0 = this.iD($m_sci_Node$().qz(this.ca, bitpos)); + var subNode1 = x3.iD($m_sci_Node$().qz(x3.ca, bitpos)); isValidSubset = subNode0.Js(subNode1, ((5 + shift) | 0)); } else { isValidSubset = false; @@ -50334,7 +50340,7 @@ $p.PZ = (function(pred, flipped) { } dataIndex$2 = ((1 + dataIndex$2) | 0); } else if (((bitpos$3 & this.ca) !== 0)) { - var oldSubNode = this.iE(nodeIndex); + var oldSubNode = this.iD(nodeIndex); var newSubNode = oldSubNode.Q0(pred, flipped); newSize$2 = ((newSize$2 + newSubNode.aK()) | 0); newCachedHashCode$2 = ((newCachedHashCode$2 + newSubNode.cV()) | 0); @@ -50417,7 +50423,7 @@ $p.Ik = (function(f) { var jN = $m_jl_Integer$().cm(this.ca); var j = 0; while ((j < jN)) { - this.iE(j).Ik(f); + this.iD(j).Ik(f); j = ((1 + j) | 0); } }); @@ -50431,7 +50437,7 @@ $p.S4 = (function(element, originalHash, hash, shift) { return this.S3(element, originalHash, hash, shift); }); $p.zv = (function(index) { - return this.iE(index); + return this.iD(index); }); function $isArrayOf_sci_BitmapIndexedSetNode(obj, depth) { return (!(!(((obj && obj.$classData) && (obj.$classData.D === depth)) && obj.$classData.B.n.d4))); @@ -50443,10 +50449,10 @@ var $d_sci_BitmapIndexedSetNode = new $TypeData().i($c_sci_BitmapIndexedSetNode, })); /** @constructor */ function $c_sci_HashCollisionMapNode(originalHash, hash, content) { - this.xn = 0; + this.xo = 0; this.mj = 0; this.cq = null; - this.xn = originalHash; + this.xo = originalHash; this.mj = hash; this.cq = content; $m_s_Predef$().Dj((this.cq.g() >= 2)); @@ -50512,7 +50518,7 @@ $p.zS = (function() { $p.ff = (function(index) { throw $ct_jl_IndexOutOfBoundsException__T__(new $c_jl_IndexOutOfBoundsException(), "No sub-nodes present in hash-collision leaf node."); }); -$p.wE = (function() { +$p.wF = (function() { return true; }); $p.zZ = (function() { @@ -50528,7 +50534,7 @@ $p.Ix = (function(index) { return this.cq.s(index); }); $p.cJ = (function(index) { - return this.xn; + return this.xo; }); $p.az = (function(f) { this.cq.az(f); @@ -50549,7 +50555,7 @@ $p.Il = (function(f) { var iter = this.cq.k(); while (iter.c()) { var next = iter.d(); - f.Pb(next.aC(), next.ao(), this.xn); + f.Pb(next.aC(), next.ao(), this.xo); } }); $p.b = (function(that) { @@ -50594,10 +50600,10 @@ $p.Tr = (function(that, shift) { newContent = new $c_sci_VectorBuilder(); newContent.HR(x2.cq); } - newContent.wl(nextPayload); + newContent.wm(nextPayload); } } - return ((newContent === null) ? x2 : new $c_sci_HashCollisionMapNode(this.xn, this.mj, newContent.kD())); + return ((newContent === null) ? x2 : new $c_sci_HashCollisionMapNode(this.xo, this.mj, newContent.kD())); } } else if ((that instanceof $c_sci_BitmapIndexedMapNode)) { throw $ct_jl_UnsupportedOperationException__T__(new $c_jl_UnsupportedOperationException(), "Cannot concatenate a HashCollisionMapNode with a BitmapIndexedMapNode"); @@ -50612,7 +50618,7 @@ $p.cV = (function() { return Math.imul(this.cq.g(), this.mj); }); $p.PC = (function() { - return new $c_sci_HashCollisionMapNode(this.xn, this.mj, this.cq); + return new $c_sci_HashCollisionMapNode(this.xo, this.mj, this.cq); }); $p.Pz = (function(that, shift) { return this.Tr(that, shift); @@ -50656,10 +50662,10 @@ $p.zD = (function() { $p.zS = (function() { return 0; }); -$p.iE = (function(index) { +$p.iD = (function(index) { throw $ct_jl_IndexOutOfBoundsException__T__(new $c_jl_IndexOutOfBoundsException(), "No sub-nodes present in hash-collision leaf node."); }); -$p.wE = (function() { +$p.wF = (function() { return true; }); $p.zZ = (function() { @@ -50746,7 +50752,7 @@ $p.PD = (function() { return new $c_sci_HashCollisionSetNode(this.tv, this.mk, this.cM); }); $p.zv = (function(index) { - return this.iE(index); + return this.iD(index); }); function $isArrayOf_sci_HashCollisionSetNode(obj, depth) { return (!(!(((obj && obj.$classData) && (obj.$classData.D === depth)) && obj.$classData.B.n.d6))); @@ -50794,9 +50800,9 @@ function $m_sci_HashMap$() { } /** @constructor */ function $c_sci_HashSet$() { - this.xo = null; + this.xp = null; $n_sci_HashSet$ = this; - this.xo = new $c_sci_HashSet($m_sci_SetNode$().tD); + this.xp = new $c_sci_HashSet($m_sci_SetNode$().tD); } $p = $c_sci_HashSet$.prototype = new $h_O(); $p.constructor = $c_sci_HashSet$; @@ -50808,7 +50814,7 @@ $p.as = (function(elems) { return this.Q7(elems); }); $p.Q7 = (function(source) { - return ((source instanceof $c_sci_HashSet) ? source : ((source.T() === 0) ? this.xo : new $c_sci_HashSetBuilder().HQ(source).Ji())); + return ((source instanceof $c_sci_HashSet) ? source : ((source.T() === 0) ? this.xp : new $c_sci_HashSetBuilder().HQ(source).Ji())); }); $p.bv = (function() { return new $c_sci_HashSetBuilder(); @@ -51311,7 +51317,7 @@ function $c_Ltigerpython_parser_ast_AstNodeKind$() { this.Mg = null; this.Lz = null; this.Lx = null; - this.xY = null; + this.xZ = null; this.Ls = null; this.Ma = null; this.M9 = null; @@ -51385,7 +51391,7 @@ function $c_Ltigerpython_parser_ast_AstNodeKind$() { this.Lx = new $c_s_Enumeration$Val(this, this.f, "Call"); new $c_s_Enumeration$Val(this, this.f, "FormattedValue"); new $c_s_Enumeration$Val(this, this.f, "JoinedStr"); - this.xY = new $c_s_Enumeration$Val(this, this.f, "Constant"); + this.xZ = new $c_s_Enumeration$Val(this, this.f, "Constant"); this.Ls = new $c_s_Enumeration$Val(this, this.f, "Attribute"); this.Ma = new $c_s_Enumeration$Val(this, this.f, "Subscript"); this.M9 = new $c_s_Enumeration$Val(this, this.f, "Starred"); @@ -51572,12 +51578,12 @@ function $c_Ltigerpython_parser_ast_BinOp$() { this.FD = null; this.le = null; this.lf = null; - this.j4 = null; + this.j3 = null; this.rP = null; this.uV = null; - this.xZ = null; + this.y0 = null; this.lg = null; - this.j5 = null; + this.j4 = null; this.mV = null; this.uW = null; this.FE = null; @@ -51586,11 +51592,11 @@ function $c_Ltigerpython_parser_ast_BinOp$() { this.AT = null; this.rQ = null; this.FF = null; - this.y1 = null; + this.y2 = null; this.AU = null; this.FG = null; this.uX = null; - this.y0 = null; + this.y1 = null; this.FH = null; $ct_s_Enumeration__I__(this, 0); $n_Ltigerpython_parser_ast_BinOp$ = this; @@ -51601,12 +51607,12 @@ function $c_Ltigerpython_parser_ast_BinOp$() { this.FD = new $c_s_Enumeration$Val(this, this.f, "^"); this.le = new $c_s_Enumeration$Val(this, this.f, "=="); this.lf = new $c_s_Enumeration$Val(this, this.f, ">="); - this.j4 = new $c_s_Enumeration$Val(this, this.f, ">"); + this.j3 = new $c_s_Enumeration$Val(this, this.f, ">"); this.rP = new $c_s_Enumeration$Val(this, this.f, "in"); this.uV = new $c_s_Enumeration$Val(this, this.f, "is"); - this.xZ = new $c_s_Enumeration$Val(this, this.f, "is not"); + this.y0 = new $c_s_Enumeration$Val(this, this.f, "is not"); this.lg = new $c_s_Enumeration$Val(this, this.f, "<="); - this.j5 = new $c_s_Enumeration$Val(this, this.f, "<"); + this.j4 = new $c_s_Enumeration$Val(this, this.f, "<"); this.mV = new $c_s_Enumeration$Val(this, this.f, "!="); this.uW = new $c_s_Enumeration$Val(this, this.f, "not in"); this.FE = new $c_s_Enumeration$Val(this, this.f, "/"); @@ -51615,13 +51621,13 @@ function $c_Ltigerpython_parser_ast_BinOp$() { this.AT = new $c_s_Enumeration$Val(this, this.f, "%"); this.rQ = new $c_s_Enumeration$Val(this, this.f, "*"); this.FF = new $c_s_Enumeration$Val(this, this.f, "or"); - this.y1 = new $c_s_Enumeration$Val(this, this.f, "**"); + this.y2 = new $c_s_Enumeration$Val(this, this.f, "**"); this.AU = new $c_s_Enumeration$Val(this, this.f, "<<"); this.FG = new $c_s_Enumeration$Val(this, this.f, ">>"); this.uX = new $c_s_Enumeration$Val(this, this.f, "-"); - this.y0 = new $c_s_Enumeration$Val(this, this.f, "?"); + this.y1 = new $c_s_Enumeration$Val(this, this.f, "?"); var this$4 = $m_sci_Set$(); - var elems = new $c_sjsr_WrappedVarArgs([this.le, this.lf, this.j4, this.rP, this.uV, this.xZ, this.lg, this.j5, this.mV, this.uW]); + var elems = new $c_sjsr_WrappedVarArgs([this.le, this.lf, this.j3, this.rP, this.uV, this.y0, this.lg, this.j4, this.mV, this.uW]); this.FH = this$4.sR(elems); } $p = $c_Ltigerpython_parser_ast_BinOp$.prototype = new $h_s_Enumeration(); @@ -51659,17 +51665,17 @@ $p.eN = (function(tokenType) { if ((x$13 === tokenType)) { return this.FE; } else { - var x$15 = $m_Ltigerpython_parser_lexer_TokenType$().v4; + var x$15 = $m_Ltigerpython_parser_lexer_TokenType$().v5; if ((x$15 === tokenType)) { return this.le; } else { - var x$17 = $m_Ltigerpython_parser_lexer_TokenType$().v6; + var x$17 = $m_Ltigerpython_parser_lexer_TokenType$().v7; if ((x$17 === tokenType)) { return this.lf; } else { var x$19 = $m_Ltigerpython_parser_lexer_TokenType$().Bk; if ((x$19 === tokenType)) { - return this.j4; + return this.j3; } else { var x$21 = $m_Ltigerpython_parser_lexer_TokenType$().cT; if ((x$21 === tokenType)) { @@ -51685,21 +51691,21 @@ $p.eN = (function(tokenType) { } else { var x$27 = $m_Ltigerpython_parser_lexer_TokenType$().pV; if ((x$27 === tokenType)) { - return this.xZ; + return this.y0; } else { - var x$29 = $m_Ltigerpython_parser_lexer_TokenType$().v7; + var x$29 = $m_Ltigerpython_parser_lexer_TokenType$().v8; if ((x$29 === tokenType)) { return this.lg; } else { var x$31 = $m_Ltigerpython_parser_lexer_TokenType$().Bl; if ((x$31 === tokenType)) { - return this.j5; + return this.j4; } else { var x$33 = $m_Ltigerpython_parser_lexer_TokenType$().cx; if ((x$33 === tokenType)) { return this.uX; } else { - var x$35 = $m_Ltigerpython_parser_lexer_TokenType$().v8; + var x$35 = $m_Ltigerpython_parser_lexer_TokenType$().v9; if ((x$35 === tokenType)) { return this.AT; } else { @@ -51707,7 +51713,7 @@ $p.eN = (function(tokenType) { if ((x$37 === tokenType)) { return this.mV; } else { - var x$39 = $m_Ltigerpython_parser_lexer_TokenType$().v9; + var x$39 = $m_Ltigerpython_parser_lexer_TokenType$().va; if ((x$39 === tokenType)) { return this.uW; } else { @@ -51717,7 +51723,7 @@ $p.eN = (function(tokenType) { } else { var x$43 = $m_Ltigerpython_parser_lexer_TokenType$().Bn; if ((x$43 === tokenType)) { - return this.y1; + return this.y2; } else { var x$45 = $m_Ltigerpython_parser_lexer_TokenType$().Gi; if ((x$45 === tokenType)) { @@ -51835,7 +51841,7 @@ function $c_Ltigerpython_parser_ast_ExtExprContext$() { this.FK = null; this.FJ = null; this.FI = null; - this.y2 = null; + this.y3 = null; this.AV = null; $ct_s_Enumeration__I__(this, 0); $n_Ltigerpython_parser_ast_ExtExprContext$ = this; @@ -51860,7 +51866,7 @@ function $c_Ltigerpython_parser_ast_ExtExprContext$() { var name$9 = (((this.F !== null) && this.F.c()) ? this.F.d() : "ASSIGN_TARGET"); this.FI = new $c_s_Enumeration$Val(this, this.f, name$9); var name$10 = (((this.F !== null) && this.F.c()) ? this.F.d() : "IMPORTED"); - this.y2 = new $c_s_Enumeration$Val(this, this.f, name$10); + this.y3 = new $c_s_Enumeration$Val(this, this.f, name$10); var name$11 = (((this.F !== null) && this.F.c()) ? this.F.d() : "HIDDEN"); this.AV = new $c_s_Enumeration$Val(this, this.f, name$11); } @@ -51932,7 +51938,7 @@ function $c_Ltigerpython_parser_ast_ValueType$() { this.F = null; this.gj = 0; this.eD = 0; - this.y3 = null; + this.y4 = null; this.mW = null; this.ij = null; this.k7 = null; @@ -51940,7 +51946,7 @@ function $c_Ltigerpython_parser_ast_ValueType$() { this.MI = null; $ct_s_Enumeration__I__(this, 0); $n_Ltigerpython_parser_ast_ValueType$ = this; - this.y3 = new $c_s_Enumeration$Val(this, this.f, "complex"); + this.y4 = new $c_s_Enumeration$Val(this, this.f, "complex"); this.mW = new $c_s_Enumeration$Val(this, this.f, "float"); this.ij = new $c_s_Enumeration$Val(this, this.f, "int"); this.k7 = new $c_s_Enumeration$Val(this, this.f, "none"); @@ -51968,7 +51974,7 @@ $p.eN = (function(tokenType) { } else { var x$7 = $m_Ltigerpython_parser_lexer_TokenType$().fy; if ((x$7 === tokenType)) { - return this.y3; + return this.y4; } else { return this.MI; } @@ -52038,7 +52044,7 @@ function $c_Ltigerpython_parser_errors_ErrorCode$() { this.n7 = null; this.n6 = null; this.FO = null; - this.il = null; + this.j5 = null; this.hv = null; this.p7 = null; this.bC = null; @@ -52059,7 +52065,7 @@ function $c_Ltigerpython_parser_errors_ErrorCode$() { this.n9 = null; this.rT = null; this.na = null; - this.y4 = null; + this.y5 = null; this.nb = null; this.nc = null; this.k8 = null; @@ -52082,7 +52088,7 @@ function $c_Ltigerpython_parser_errors_ErrorCode$() { this.et = null; this.ln = null; this.pl = null; - this.y5 = null; + this.uZ = null; this.pm = null; this.nj = null; this.AY = null; @@ -52110,7 +52116,7 @@ function $c_Ltigerpython_parser_errors_ErrorCode$() { this.ps = null; this.pt = null; this.pu = null; - this.im = null; + this.il = null; this.MK = null; this.pv = null; this.pw = null; @@ -52190,7 +52196,7 @@ function $c_Ltigerpython_parser_errors_ErrorCode$() { this.n7 = new $c_s_Enumeration$Val(this, this.f, "EXTRA_LINEBREAK"); this.n6 = new $c_s_Enumeration$Val(this, this.f, "EXTRA_LEFT_BRACKET"); this.FO = new $c_s_Enumeration$Val(this, this.f, "EXTRA_LINE_NUMBER"); - this.il = new $c_s_Enumeration$Val(this, this.f, "EXTRA_RIGHT_BRACKET"); + this.j5 = new $c_s_Enumeration$Val(this, this.f, "EXTRA_RIGHT_BRACKET"); this.hv = new $c_s_Enumeration$Val(this, this.f, "EXTRA_SPACE"); this.p7 = new $c_s_Enumeration$Val(this, this.f, "EXTRA_SPACE_OR_MISSING_COMMA"); this.bC = new $c_s_Enumeration$Val(this, this.f, "EXTRA_TOKEN"); @@ -52211,7 +52217,7 @@ function $c_Ltigerpython_parser_errors_ErrorCode$() { this.n9 = new $c_s_Enumeration$Val(this, this.f, "INCONSISTENT_INDENTATION"); this.rT = new $c_s_Enumeration$Val(this, this.f, "INCONSISTENT_RETURNS"); this.na = new $c_s_Enumeration$Val(this, this.f, "INDENTED_ELSE"); - this.y4 = new $c_s_Enumeration$Val(this, this.f, "INDENTED_HEADER"); + this.y5 = new $c_s_Enumeration$Val(this, this.f, "INDENTED_HEADER"); this.nb = new $c_s_Enumeration$Val(this, this.f, "INFINITE_LOOP"); this.nc = new $c_s_Enumeration$Val(this, this.f, "INITIALIZATION_INSIDE_LOOP"); this.k8 = new $c_s_Enumeration$Val(this, this.f, "INVALID_ASSIGNMENT"); @@ -52234,7 +52240,7 @@ function $c_Ltigerpython_parser_errors_ErrorCode$() { this.et = new $c_s_Enumeration$Val(this, this.f, "MISSING_COMMA"); this.ln = new $c_s_Enumeration$Val(this, this.f, "MISSING_COMPARISON"); this.pl = new $c_s_Enumeration$Val(this, this.f, "MISSING_DOT"); - this.y5 = new $c_s_Enumeration$Val(this, this.f, "MISSING_EXPRESSION"); + this.uZ = new $c_s_Enumeration$Val(this, this.f, "MISSING_EXPRESSION"); this.pm = new $c_s_Enumeration$Val(this, this.f, "MISSING_LEFT_BRACKET"); this.nj = new $c_s_Enumeration$Val(this, this.f, "MISSING_LEFT_PARENTHESIS"); this.AY = new $c_s_Enumeration$Val(this, this.f, "MISSING_LINE_BREAK"); @@ -52262,7 +52268,7 @@ function $c_Ltigerpython_parser_errors_ErrorCode$() { this.ps = new $c_s_Enumeration$Val(this, this.f, "PRINT_IS_STATEMENT"); this.pt = new $c_s_Enumeration$Val(this, this.f, "PRINT_NEEDS_PARENTHESES"); this.pu = new $c_s_Enumeration$Val(this, this.f, "PYTHON_2_FEATURE_NOT_AVAILABLE"); - this.im = new $c_s_Enumeration$Val(this, this.f, "PYTHON_3_FEATURE_NOT_AVAILABLE"); + this.il = new $c_s_Enumeration$Val(this, this.f, "PYTHON_3_FEATURE_NOT_AVAILABLE"); this.MK = new $c_s_Enumeration$Val(this, this.f, "REPEAT_NOT_ENABLED"); this.pv = new $c_s_Enumeration$Val(this, this.f, "RETURN_OUTSIDE_FUNCTION"); this.pw = new $c_s_Enumeration$Val(this, this.f, "SINGLE_EQUAL_SIGN_EXPECTED"); @@ -52680,12 +52686,12 @@ function $p_Ltigerpython_parser_types_FutureModule__loadFields__V($thiz) { var text = $thiz.BN.Wj($thiz.BM); if (((text !== null) && (text !== ""))) { var parser = $ct_Ltigerpython_parser_parsing_Parser__jl_CharSequence__I__I__Ltigerpython_parser_errors_ErrorHandler__(new $c_Ltigerpython_parser_parsing_Parser(), text, 2, (-1), $m_Ltigerpython_parser_errors_ErrorHandler$SilentErrorHandler$()); - var ast = parser.wO(); + var ast = parser.wP(); new $c_Ltigerpython_parser_scopes_AstWalker(new $c_Ltigerpython_parser_scopes_ModuleScope((-1), $thiz, $m_Ltigerpython_parser_scopes_ModuleLoader$().ym)).ag(ast); } } else if ($thiz.BN.VM($thiz.BM)) { $thiz.BL = false; - $thiz.yq.wq(); + $thiz.yq.wr(); continue; } return (void 0); @@ -52791,17 +52797,17 @@ var $d_Ltigerpython_parser_types_LambdaFunction = new $TypeData().i($c_Ltigerpyt N: 1 })); function $ct_Ltigerpython_parser_types_Module__T__($thiz, name) { - $thiz.vS = name; - $thiz.gX = new $c_Ltigerpython_parser_types_NameMap(); $thiz.vT = name; + $thiz.gX = new $c_Ltigerpython_parser_types_NameMap(); + $thiz.vU = name; return $thiz; } /** @constructor */ function $c_Ltigerpython_parser_types_Module() { this.bM = null; - this.vS = null; - this.gX = null; this.vT = null; + this.gX = null; + this.vU = null; } $p = $c_Ltigerpython_parser_types_Module.prototype = new $h_Ltigerpython_parser_types_Package(); $p.constructor = $c_Ltigerpython_parser_types_Module; @@ -52810,10 +52816,10 @@ function $h_Ltigerpython_parser_types_Module() { } $h_Ltigerpython_parser_types_Module.prototype = $p; $p.aR = (function() { - return this.vS; + return this.vT; }); $p.m0 = (function() { - return this.vT; + return this.vU; }); $p.c1 = (function() { return $m_sci_Map$().ad(this.gX.gY); @@ -53109,7 +53115,7 @@ function $c_Ltigerpython_utilities_completer_Completer$FilterType$(outer) { this.eD = 0; this.NP = null; this.sn = null; - this.vU = null; + this.vV = null; $ct_s_Enumeration__I__(this, 0); var name = (((this.F !== null) && this.F.c()) ? this.F.d() : "SCOPE"); this.NP = new $c_s_Enumeration$Val(this, this.f, name); @@ -53118,7 +53124,7 @@ function $c_Ltigerpython_utilities_completer_Completer$FilterType$(outer) { var name$2 = (((this.F !== null) && this.F.c()) ? this.F.d() : "IMPORT"); this.sn = new $c_s_Enumeration$Val(this, this.f, name$2); var name$3 = (((this.F !== null) && this.F.c()) ? this.F.d() : "IMPORT_FROM"); - this.vU = new $c_s_Enumeration$Val(this, this.f, name$3); + this.vV = new $c_s_Enumeration$Val(this, this.f, name$3); } $p = $c_Ltigerpython_utilities_completer_Completer$FilterType$.prototype = new $h_s_Enumeration(); $p.constructor = $c_Ltigerpython_utilities_completer_Completer$FilterType$; @@ -53136,7 +53142,7 @@ function $c_Ltigerpython_utilities_completer_DataTypeFilter(startPos, base) { this.lE = null; this.sp = null; this.so = false; - this.vW = false; + this.vX = false; $ct_Ltigerpython_utilities_completer_DefaultNameFilter__(this); this.so = (!(base instanceof $c_Ltigerpython_utilities_types_SelfInstance)); var this$3 = new $c_sc_MapOps$WithFilter(base.c1(), new $c_sjsr_AnonFunction1(((check$ifrefutable$1$2) => (check$ifrefutable$1$2 !== null)))); @@ -53168,7 +53174,7 @@ function $c_Ltigerpython_utilities_completer_ImportFilter(moduleLoader) { this.lE = null; this.sp = null; this.so = false; - this.vW = false; + this.vX = false; $ct_Ltigerpython_utilities_completer_DefaultNameFilter__(this); if ((moduleLoader !== null)) { var this$3 = new $c_sc_MapOps$WithFilter(moduleLoader.UZ(), new $c_sjsr_AnonFunction1(((check$ifrefutable$1$2) => (check$ifrefutable$1$2 !== null)))); @@ -53214,7 +53220,7 @@ function $c_Ltigerpython_utilities_completer_ImportFromFilter(startPos, base) { this.lE = null; this.sp = null; this.so = false; - this.vW = false; + this.vX = false; $ct_Ltigerpython_utilities_completer_DefaultNameFilter__(this); var this$3 = new $c_sc_MapOps$WithFilter(base.c1(), new $c_sjsr_AnonFunction1(((check$ifrefutable$1$2) => (check$ifrefutable$1$2 !== null)))); var f = new $c_sjsr_AnonFunction1(((x$1$2) => { @@ -53245,9 +53251,9 @@ function $c_Ltigerpython_utilities_completer_ScopeFilter(scope) { this.lE = null; this.sp = null; this.so = false; - this.vW = false; + this.vX = false; $ct_Ltigerpython_utilities_completer_DefaultNameFilter__(this); - var this$3 = new $c_sc_MapOps$WithFilter($m_Ltigerpython_utilities_scopes_BuiltinNames$().w8, new $c_sjsr_AnonFunction1(((check$ifrefutable$1$2) => (check$ifrefutable$1$2 !== null)))); + var this$3 = new $c_sc_MapOps$WithFilter($m_Ltigerpython_utilities_scopes_BuiltinNames$().w9, new $c_sjsr_AnonFunction1(((check$ifrefutable$1$2) => (check$ifrefutable$1$2 !== null)))); var f = new $c_sjsr_AnonFunction1(((x$1$2) => { var x$1 = x$1$2; if ((x$1 !== null)) { @@ -53302,11 +53308,11 @@ var $d_Ltigerpython_utilities_completer_ScopeFilter = new $TypeData().i($c_Ltige })); /** @constructor */ function $c_Ltigerpython_utilities_completer_StringArgumentFilter(sourceNameList) { - this.vX = null; + this.vY = null; $ct_Ltigerpython_utilities_completer_StringFilter__(this); var this$1 = $m_scm_ArrayBuffer$(); var elems = $m_sci_Nil$(); - this.vX = this$1.al(elems); + this.vY = this$1.al(elems); sourceNameList.az(new $c_sjsr_AnonFunction1(((n$2) => { var n = n$2; this.SP(n); @@ -53320,7 +53326,7 @@ function $h_Ltigerpython_utilities_completer_StringArgumentFilter() { $h_Ltigerpython_utilities_completer_StringArgumentFilter.prototype = $p; $p.sD = (function(name, target) { if ($m_sc_StringOps$().ez(name, 95)) { - var this$2 = this.vX; + var this$2 = this.vY; var elem = $ct_T2__O__O__(new $c_T2(), name, name); this$2.I(elem); var xs = $m_sc_StringOps$().kG(name, 95); @@ -53398,7 +53404,7 @@ $p.sD = (function(name, target) { throw new $c_s_MatchError(xs); } } else if ($m_sc_StringOps$().ez(name, 47)) { - var this$8 = this.vX; + var this$8 = this.vY; var elem$1 = $ct_T2__O__O__(new $c_T2(), name, name); this$8.I(elem$1); var xs$1 = $m_sc_StringOps$().kG(name, 47); @@ -53479,7 +53485,7 @@ $p.sD = (function(name, target) { var nameTarget = ((target !== null) ? target : name); var idx = 0; while ((idx >= 0)) { - var this$14 = this.vX; + var this$14 = this.vY; var this$13 = $m_sc_StringOps$().bp(name, idx); var elem$2 = $ct_T2__O__O__(new $c_T2(), this$13.toLowerCase(), nameTarget); this$14.I(elem$2); @@ -53508,7 +53514,7 @@ $p.zu = (function(prefix) { if ((prefix !== null)) { var $x_2 = $m_sc_ArrayOps$(); var $x_1 = $m_sc_ArrayOps$(); - var this$1 = this.vX; + var this$1 = this.vY; $m_scm_ArrayBuffer$(); var b = new $c_scm_ArrayBuffer$$anon$1(); var it = this$1.a1().k(); @@ -53540,7 +53546,7 @@ $p.zu = (function(prefix) { } }); $p.j = (function() { - var this$1 = this.vX; + var this$1 = this.vY; $m_scm_ArrayBuffer$(); var b = new $c_scm_ArrayBuffer$$anon$1(); var it = this$1.a1().k(); @@ -53590,7 +53596,7 @@ function $c_Ltigerpython_utilities_fastparse_TokenType$() { this.BU = null; this.H3 = null; this.hE = null; - this.w7 = null; + this.w8 = null; this.NW = null; this.H4 = null; this.NX = null; @@ -53637,7 +53643,7 @@ function $c_Ltigerpython_utilities_fastparse_TokenType$() { this.BU = new $c_s_Enumeration$Val(this, this.f, "|"); this.H3 = new $c_s_Enumeration$Val(this, this.f, "class"); this.hE = new $c_s_Enumeration$Val(this, this.f, ":"); - this.w7 = new $c_s_Enumeration$Val(this, this.f, ","); + this.w8 = new $c_s_Enumeration$Val(this, this.f, ","); this.NW = new $c_s_Enumeration$Val(this, this.f, ""); this.H4 = new $c_s_Enumeration$Val(this, this.f, "def"); this.NX = new $c_s_Enumeration$Val(this, this.f, "del"); @@ -53726,7 +53732,7 @@ $p.Qd = (function(ch) { break; } case 44: { - return this.w7; + return this.w8; break; } case 46: { @@ -53910,12 +53916,12 @@ function $p_Ltigerpython_utilities_types_FutureModule__loadFields__V($thiz) { var text = $thiz.Cc.Wj($thiz.Cb); if (((text !== null) && (text !== ""))) { var parser = $ct_Ltigerpython_parser_parsing_Parser__jl_CharSequence__I__I__Ltigerpython_parser_errors_ErrorHandler__(new $c_Ltigerpython_parser_parsing_Parser(), text, 2, (-1), $m_Ltigerpython_parser_errors_ErrorHandler$SilentErrorHandler$()); - var ast = parser.wO(); + var ast = parser.wP(); new $c_Ltigerpython_utilities_scopes_AstWalker(new $c_Ltigerpython_utilities_scopes_ModuleScope((-1), $thiz, $m_Ltigerpython_utilities_scopes_ModuleLoader$().yV)).ag(ast); } } else if ($thiz.Cc.VM($thiz.Cb)) { $thiz.Ca = false; - $thiz.yZ.wq(); + $thiz.yZ.wr(); continue; } return (void 0); @@ -54110,17 +54116,17 @@ var $d_Ltigerpython_utilities_types_LambdaFunction = new $TypeData().i($c_Ltiger H: 1 })); function $ct_Ltigerpython_utilities_types_Module__T__($thiz, name) { - $thiz.wd = name; - $thiz.dD = new $c_Ltigerpython_utilities_types_NameMap(); $thiz.we = name; + $thiz.dD = new $c_Ltigerpython_utilities_types_NameMap(); + $thiz.wf = name; return $thiz; } /** @constructor */ function $c_Ltigerpython_utilities_types_Module() { this.bo = null; - this.wd = null; - this.dD = null; this.we = null; + this.dD = null; + this.wf = null; } $p = $c_Ltigerpython_utilities_types_Module.prototype = new $h_Ltigerpython_utilities_types_Package(); $p.constructor = $c_Ltigerpython_utilities_types_Module; @@ -54129,10 +54135,10 @@ function $h_Ltigerpython_utilities_types_Module() { } $h_Ltigerpython_utilities_types_Module.prototype = $p; $p.aR = (function() { - return this.wd; + return this.we; }); $p.m0 = (function() { - return this.we; + return this.wf; }); $p.c1 = (function() { return $m_sci_Map$().ad(this.dD.e8); @@ -54954,8 +54960,8 @@ $p.A1 = (function(exp) { if ((exp < 0)) { throw new $c_jl_ArithmeticException("Negative exponent"); } else if ((exp === 0)) { - return $m_Ljava_math_BigInteger$().x3; - } else if ((((exp === 1) || this.b($m_Ljava_math_BigInteger$().x3)) || this.b($m_Ljava_math_BigInteger$().qO))) { + return $m_Ljava_math_BigInteger$().x4; + } else if ((((exp === 1) || this.b($m_Ljava_math_BigInteger$().x4)) || this.b($m_Ljava_math_BigInteger$().qO))) { return this; } else if ((!this.RZ(0))) { var x = 1; @@ -55821,7 +55827,7 @@ $p.bn = (function(o1, o2) { var lo = t.h; var hi = t.i; var t$1 = $uJ(o2); - return $m_RTLong$().wN(lo, hi, t$1.h, t$1.i); + return $m_RTLong$().wO(lo, hi, t$1.h, t$1.i); }); $p.kE = (function(a, i, v) { var a$1 = a; @@ -56024,9 +56030,9 @@ $p.hK = (function(xs) { return $f_sc_Iterator__concat__F0__sc_Iterator(this, xs); }); $p.dS = (function(n) { - return this.wT(n, (-1)); + return this.wU(n, (-1)); }); -$p.wT = (function(from, until) { +$p.wU = (function(from, until) { return $f_sc_Iterator__sliceIterator__I__I__sc_Iterator(this, from, until); }); $p.j = (function() { @@ -56135,14 +56141,14 @@ $h_sc_SeqFactory$Delegate.prototype = $p; $p.js = (function(elems) { return this.o5.as(elems); }); -$p.wB = (function(it) { +$p.wC = (function(it) { return this.o5.bO(it); }); $p.bv = (function() { return this.o5.bv(); }); $p.bO = (function(source) { - return this.wB(source); + return this.wC(source); }); $p.as = (function(elems) { return this.js(elems); @@ -56169,7 +56175,7 @@ function $f_sc_SeqOps__sorted__s_math_Ordering__O($thiz, ord) { b.cA(len); var arr = new $ac_O(len); $thiz.ac(arr, 0, 2147483647); - $m_ju_Arrays$().wU(arr, ord); + $m_ju_Arrays$().wV(arr, ord); var i = 0; while ((i < len)) { var elem$1 = arr.a[i]; @@ -56326,7 +56332,7 @@ $p.zd = (function(key, value) { var originalHash = $m_sr_Statics$().n(key); var improved = $m_sc_Hashing$().bA(originalHash); if ((!this.EM)) { - this.r1 = this.r1.wZ(key, value, originalHash, improved, 0, true); + this.r1 = this.r1.x0(key, value, originalHash, improved, 0, true); if ((this.r1 !== this.KL.bJ)) { this.EM = true; this.Au = $m_sci_Node$().cz($m_sci_Node$().fg(improved, 0)); @@ -56436,9 +56442,9 @@ function $m_sci_LazyList$() { } /** @constructor */ function $c_scm_Builder$$anon$1(outer, f$1) { - this.xx = null; + this.xy = null; this.L6 = null; - this.xx = outer; + this.xy = outer; this.L6 = f$1; } $p = $c_scm_Builder$$anon$1.prototype = new $h_O(); @@ -56448,18 +56454,18 @@ function $h_scm_Builder$$anon$1() { } $h_scm_Builder$$anon$1.prototype = $p; $p.SU = (function(x) { - this.xx.b6(x); + this.xy.b6(x); return this; }); $p.SJ = (function(xs) { - this.xx.cU(xs); + this.xy.cU(xs); return this; }); $p.cA = (function(size) { - this.xx.cA(size); + this.xy.cA(size); }); $p.c3 = (function() { - return this.L6.w(this.xx.c3()); + return this.L6.w(this.xy.c3()); }); $p.cU = (function(elems) { return this.SJ(elems); @@ -56625,14 +56631,14 @@ var $d_sr_NonLocalReturnControl = new $TypeData().i($c_sr_NonLocalReturnControl, a: 1 })); function $p_Ltigerpython_inputenc_StringTranslator__prev__C($thiz) { - return (($thiz.iV > 0) ? $thiz.os.charCodeAt((((-1) + $thiz.iV) | 0)) : 0); + return (($thiz.iU > 0) ? $thiz.os.charCodeAt((((-1) + $thiz.iU) | 0)) : 0); } function $p_Ltigerpython_inputenc_StringTranslator__isTriple__Z($thiz) { - if (($thiz.iV > 2)) { + if (($thiz.iU > 2)) { var x = $thiz.os; - var i = $thiz.iV; + var i = $thiz.iU; var ch = x.charCodeAt(i); - return (($thiz.os.charCodeAt((((-2) + $thiz.iV) | 0)) === ch) && ($thiz.os.charCodeAt((((-1) + $thiz.iV) | 0)) === ch)); + return (($thiz.os.charCodeAt((((-2) + $thiz.iU) | 0)) === ch) && ($thiz.os.charCodeAt((((-1) + $thiz.iU) | 0)) === ch)); } else { return false; } @@ -56641,58 +56647,58 @@ function $p_Ltigerpython_inputenc_StringTranslator__updateStringMode__C__V($thiz if ((ch === 39)) { var rc7 = false; var x2 = null; - var x1 = $thiz.iW; + var x1 = $thiz.iV; matchEnd8: { var x = $m_Ltigerpython_inputenc_StringTranslator$StringMode$().mz; if (((x === null) ? (x1 === null) : x.b(x1))) { rc7 = true; x2 = x1; if ($p_Ltigerpython_inputenc_StringTranslator__isTriple__Z($thiz)) { - $thiz.iW = $m_Ltigerpython_inputenc_StringTranslator$StringMode$().Fm; + $thiz.iV = $m_Ltigerpython_inputenc_StringTranslator$StringMode$().Fm; break matchEnd8; } } if (rc7) { - $thiz.iW = $m_Ltigerpython_inputenc_StringTranslator$StringMode$().Fl; + $thiz.iV = $m_Ltigerpython_inputenc_StringTranslator$StringMode$().Fl; break matchEnd8; } var x$3 = $m_Ltigerpython_inputenc_StringTranslator$StringMode$().Fl; if (((x$3 === null) ? (x1 === null) : x$3.b(x1))) { - $thiz.iW = $m_Ltigerpython_inputenc_StringTranslator$StringMode$().mz; + $thiz.iV = $m_Ltigerpython_inputenc_StringTranslator$StringMode$().mz; break matchEnd8; } var x$5 = $m_Ltigerpython_inputenc_StringTranslator$StringMode$().Fm; if ((((x$5 === null) ? (x1 === null) : x$5.b(x1)) && $p_Ltigerpython_inputenc_StringTranslator__isTriple__Z($thiz))) { - $thiz.iW = $m_Ltigerpython_inputenc_StringTranslator$StringMode$().mz; + $thiz.iV = $m_Ltigerpython_inputenc_StringTranslator$StringMode$().mz; break matchEnd8; } } } else { var rc7$2 = false; var x2$2 = null; - var x1$2 = $thiz.iW; + var x1$2 = $thiz.iV; matchEnd8$2: { var x$7 = $m_Ltigerpython_inputenc_StringTranslator$StringMode$().mz; if (((x$7 === null) ? (x1$2 === null) : x$7.b(x1$2))) { rc7$2 = true; x2$2 = x1$2; if ($p_Ltigerpython_inputenc_StringTranslator__isTriple__Z($thiz)) { - $thiz.iW = $m_Ltigerpython_inputenc_StringTranslator$StringMode$().Fk; + $thiz.iV = $m_Ltigerpython_inputenc_StringTranslator$StringMode$().Fk; break matchEnd8$2; } } if (rc7$2) { - $thiz.iW = $m_Ltigerpython_inputenc_StringTranslator$StringMode$().Fj; + $thiz.iV = $m_Ltigerpython_inputenc_StringTranslator$StringMode$().Fj; break matchEnd8$2; } var x$9 = $m_Ltigerpython_inputenc_StringTranslator$StringMode$().Fj; if (((x$9 === null) ? (x1$2 === null) : x$9.b(x1$2))) { - $thiz.iW = $m_Ltigerpython_inputenc_StringTranslator$StringMode$().mz; + $thiz.iV = $m_Ltigerpython_inputenc_StringTranslator$StringMode$().mz; break matchEnd8$2; } var x$11 = $m_Ltigerpython_inputenc_StringTranslator$StringMode$().Fk; if ((((x$11 === null) ? (x1$2 === null) : x$11.b(x1$2)) && $p_Ltigerpython_inputenc_StringTranslator__isTriple__Z($thiz))) { - $thiz.iW = $m_Ltigerpython_inputenc_StringTranslator$StringMode$().mz; + $thiz.iV = $m_Ltigerpython_inputenc_StringTranslator$StringMode$().mz; break matchEnd8$2; } } @@ -56701,11 +56707,11 @@ function $p_Ltigerpython_inputenc_StringTranslator__updateStringMode__C__V($thiz /** @constructor */ function $c_Ltigerpython_inputenc_StringTranslator(source) { this.os = null; - this.iV = 0; - this.iW = null; + this.iU = 0; + this.iV = null; this.os = source; - this.iV = 0; - this.iW = $m_Ltigerpython_inputenc_StringTranslator$StringMode$().mz; + this.iU = 0; + this.iV = $m_Ltigerpython_inputenc_StringTranslator$StringMode$().mz; } $p = $c_Ltigerpython_inputenc_StringTranslator.prototype = new $h_O(); $p.constructor = $c_Ltigerpython_inputenc_StringTranslator; @@ -56744,18 +56750,18 @@ $p.T = (function() { return (-1); }); $p.c = (function() { - return (this.iV < this.os.length); + return (this.iU < this.os.length); }); $p.QW = (function() { - if ((this.iV < this.os.length)) { + if ((this.iU < this.os.length)) { var x = this.os; - var i = this.iV; + var i = this.iU; var ch = x.charCodeAt(i); if ((((ch === 34) || (ch === 39)) && ($p_Ltigerpython_inputenc_StringTranslator__prev__C(this) !== 92))) { $p_Ltigerpython_inputenc_StringTranslator__updateStringMode__C__V(this, ch); } - this.iV = ((1 + this.iV) | 0); - var x$1 = this.iW; + this.iU = ((1 + this.iU) | 0); + var x$1 = this.iV; var x$2 = $m_Ltigerpython_inputenc_StringTranslator$StringMode$().mz; if (((x$1 === null) ? (x$2 === null) : x$1.b(x$2))) { return $uC($m_Ltigerpython_inputenc_StringTranslator$().Yf().qu($bC(ch), new $c_sjsr_AnonFunction0((() => $bC(ch))))); @@ -56881,9 +56887,9 @@ var $d_Ltigerpython_parser_ErrorInfo = new $TypeData().i($c_Ltigerpython_parser_ })); /** @constructor */ function $c_Ltigerpython_parser_ast_AstNode$Keyword(name, value) { - this.xF = null; + this.xG = null; this.uk = null; - this.xF = name; + this.xG = name; this.uk = value; } $p = $c_Ltigerpython_parser_ast_AstNode$Keyword.prototype = new $h_O(); @@ -56901,7 +56907,7 @@ $p.z = (function() { $p.A = (function(x$1) { switch (x$1) { case 0: { - return this.xF; + return this.xG; break; } case 1: { @@ -56927,7 +56933,7 @@ $p.b = (function(x$1) { return true; } else if ((x$1 instanceof $c_Ltigerpython_parser_ast_AstNode$Keyword)) { var Keyword$1 = x$1; - if ((this.xF === Keyword$1.xF)) { + if ((this.xG === Keyword$1.xG)) { var x = this.uk; var x$2 = Keyword$1.uk; return ((x === null) ? (x$2 === null) : x.b(x$2)); @@ -56953,12 +56959,12 @@ function $c_Ltigerpython_parser_errors_ExtErrorInfo(position, line, errorCode, e this.rZ = 0; this.jb = null; this.pN = null; - this.v0 = null; + this.v1 = null; this.gS = position; this.rZ = line; this.jb = errorCode; this.pN = errorMessage; - this.v0 = params; + this.v1 = params; } $p = $c_Ltigerpython_parser_errors_ExtErrorInfo.prototype = new $h_O(); $p.constructor = $c_Ltigerpython_parser_errors_ExtErrorInfo; @@ -56994,7 +57000,7 @@ $p.A = (function(x$1) { break; } case 4: { - return this.v0; + return this.v1; break; } default: { @@ -57012,7 +57018,7 @@ $p.q = (function() { acc = $m_sr_Statics$().e(acc, this.rZ); acc = $m_sr_Statics$().e(acc, $m_sr_Statics$().n(this.jb)); acc = $m_sr_Statics$().e(acc, $m_sr_Statics$().n(this.pN)); - acc = $m_sr_Statics$().e(acc, $m_sr_Statics$().n(this.v0)); + acc = $m_sr_Statics$().e(acc, $m_sr_Statics$().n(this.v1)); return $m_sr_Statics$().H(acc, 5); }); $p.b = (function(x$1) { @@ -57033,8 +57039,8 @@ $p.b = (function(x$1) { } if ($x_1) { if ((this.pN === ExtErrorInfo$1.pN)) { - var x$3 = this.v0; - var x$4 = ExtErrorInfo$1.v0; + var x$3 = this.v1; + var x$4 = ExtErrorInfo$1.v1; return ((x$3 === null) ? (x$4 === null) : x$3.b(x$4)); } else { return false; @@ -57074,7 +57080,7 @@ function $h_Ltigerpython_parser_lexer_Token() { } $h_Ltigerpython_parser_lexer_Token.prototype = $p; $p.eA = (function() { - return ((this.ah !== null) ? this.ah : this.o.io); + return ((this.ah !== null) ? this.ah : this.o.im); }); $p.VV = (function(name) { var x = this.o; @@ -57163,10 +57169,10 @@ var $d_Ltigerpython_parser_parsing_ExtParserUtils$NoValueException = new $TypeDa })); /** @constructor */ function $c_Ltigerpython_parser_parsing_LineParser$Line(indent, endPos, tokens) { - this.is = 0; + this.ir = 0; this.q1 = 0; this.bU = null; - this.is = indent; + this.ir = indent; this.q1 = endPos; this.bU = tokens; } @@ -57177,10 +57183,10 @@ function $h_Ltigerpython_parser_parsing_LineParser$Line() { } $h_Ltigerpython_parser_parsing_LineParser$Line.prototype = $p; $p.m = (function() { - return (($m_sc_ArrayOps$().aA(this.bU).x - this.is) | 0); + return (($m_sc_ArrayOps$().aA(this.bU).x - this.ir) | 0); }); $p.j = (function() { - return $m_sc_StringOps$().ap(">", new $c_sjsr_WrappedVarArgs([this.is, $f_sc_IterableOnceOps__mkString__T__T__T__T($m_s_Predef$().at(this.bU), "", "; ", "")])); + return $m_sc_StringOps$().ap(">", new $c_sjsr_WrappedVarArgs([this.ir, $f_sc_IterableOnceOps__mkString__T__T__T__T($m_s_Predef$().at(this.bU), "", "; ", "")])); }); $p.U8 = (function() { if ((this.bU.a.length > 2)) { @@ -57200,7 +57206,7 @@ $p.U8 = (function() { $p.U9 = (function() { if ((this.bU.a.length !== 0)) { var this$7 = $m_sc_ArrayOps$().cY(this.bU).o; - return $f_sc_SeqOps__contains__O__Z(new $c_sjsr_WrappedVarArgs([$m_Ltigerpython_parser_lexer_TokenType$().cj, $m_Ltigerpython_parser_lexer_TokenType$().pR, $m_Ltigerpython_parser_lexer_TokenType$().pW, $m_Ltigerpython_parser_lexer_TokenType$().v8, $m_Ltigerpython_parser_lexer_TokenType$().pT, $m_Ltigerpython_parser_lexer_TokenType$().cx]), this$7); + return $f_sc_SeqOps__contains__O__Z(new $c_sjsr_WrappedVarArgs([$m_Ltigerpython_parser_lexer_TokenType$().cj, $m_Ltigerpython_parser_lexer_TokenType$().pR, $m_Ltigerpython_parser_lexer_TokenType$().pW, $m_Ltigerpython_parser_lexer_TokenType$().v9, $m_Ltigerpython_parser_lexer_TokenType$().pT, $m_Ltigerpython_parser_lexer_TokenType$().cx]), this$7); } else { return false; } @@ -57344,7 +57350,7 @@ $p.Wu = (function(line) { var this$5 = $m_s_Array$(); var newLength = ((xs.a.length + xs$1.a.length) | 0); if ($d_Ltigerpython_parser_lexer_Token.l().hQ($objectGetClass(xs).dg())) { - var dest$1 = ($d_Ltigerpython_parser_lexer_Token.l().hS() ? this$5.hN(xs, newLength) : $m_ju_Arrays$().iC(xs, newLength, $d_Ltigerpython_parser_lexer_Token.r().l())); + var dest$1 = ($d_Ltigerpython_parser_lexer_Token.l().hS() ? this$5.hN(xs, newLength) : $m_ju_Arrays$().iB(xs, newLength, $d_Ltigerpython_parser_lexer_Token.r().l())); } else { var dest = new ($d_Ltigerpython_parser_lexer_Token.r().C)(newLength); $m_s_Array$().bz(xs, 0, dest, 0, xs.a.length); @@ -57381,7 +57387,7 @@ $p.VS = (function() { if ($x_1) { return true; } else { - var x$11 = $m_Ltigerpython_parser_lexer_TokenType$().ip; + var x$11 = $m_Ltigerpython_parser_lexer_TokenType$().io; if ((x$11 === x1)) { return true; } else { @@ -57402,7 +57408,7 @@ $p.z = (function() { $p.A = (function(x$1) { switch (x$1) { case 0: { - return this.is; + return this.ir; break; } case 1: { @@ -57424,7 +57430,7 @@ $p.B = (function() { $p.q = (function() { var acc = (-889275714); acc = $m_sr_Statics$().e(acc, $f_T__hashCode__I("Line")); - acc = $m_sr_Statics$().e(acc, this.is); + acc = $m_sr_Statics$().e(acc, this.ir); acc = $m_sr_Statics$().e(acc, this.q1); acc = $m_sr_Statics$().e(acc, $m_sr_Statics$().n(this.bU)); return $m_sr_Statics$().H(acc, 3); @@ -57434,7 +57440,7 @@ $p.b = (function(x$1) { return true; } else if ((x$1 instanceof $c_Ltigerpython_parser_parsing_LineParser$Line)) { var Line$1 = x$1; - return (((this.is === Line$1.is) && (this.q1 === Line$1.q1)) && (this.bU === Line$1.bU)); + return (((this.ir === Line$1.ir) && (this.q1 === Line$1.q1)) && (this.bU === Line$1.bU)); } else { return false; } @@ -57513,7 +57519,7 @@ $p.dU = (function() { $p.ky = (function() { if ((this.J.a.length !== 0)) { var x = $m_sc_ArrayOps$().cY(this.J).o; - var x$2 = $m_Ltigerpython_parser_lexer_TokenType$().a8; + var x$2 = $m_Ltigerpython_parser_lexer_TokenType$().a7; return (x === x$2); } else { return false; @@ -57522,7 +57528,7 @@ $p.ky = (function() { $p.VR = (function() { if ((this.se !== null)) { var x = this.se.c9(); - var x$2 = $m_Ltigerpython_parser_lexer_TokenType$().ip; + var x$2 = $m_Ltigerpython_parser_lexer_TokenType$().io; return (x === x$2); } else { return false; @@ -57756,14 +57762,14 @@ $p.Vs = (function() { $p.VK = (function() { if ((this.J.a.length > 2)) { var x = $m_sc_ArrayOps$().cY(this.J).o; - var x$2 = $m_Ltigerpython_parser_lexer_TokenType$().a8; + var x$2 = $m_Ltigerpython_parser_lexer_TokenType$().a7; var $x_1 = (x === x$2); } else { var $x_1 = false; } if ($x_1) { var this$5 = this.J.a[0].o; - return $f_sc_SeqOps__contains__O__Z(new $c_sjsr_WrappedVarArgs([$m_Ltigerpython_parser_lexer_TokenType$().cb, $m_Ltigerpython_parser_lexer_TokenType$().bZ, $m_Ltigerpython_parser_lexer_TokenType$().ex, $m_Ltigerpython_parser_lexer_TokenType$().e4, $m_Ltigerpython_parser_lexer_TokenType$().bd, $m_Ltigerpython_parser_lexer_TokenType$().iq, $m_Ltigerpython_parser_lexer_TokenType$().je, $m_Ltigerpython_parser_lexer_TokenType$().ip, $m_Ltigerpython_parser_lexer_TokenType$().jc]), this$5); + return $f_sc_SeqOps__contains__O__Z(new $c_sjsr_WrappedVarArgs([$m_Ltigerpython_parser_lexer_TokenType$().cb, $m_Ltigerpython_parser_lexer_TokenType$().bZ, $m_Ltigerpython_parser_lexer_TokenType$().ex, $m_Ltigerpython_parser_lexer_TokenType$().e4, $m_Ltigerpython_parser_lexer_TokenType$().bd, $m_Ltigerpython_parser_lexer_TokenType$().ip, $m_Ltigerpython_parser_lexer_TokenType$().je, $m_Ltigerpython_parser_lexer_TokenType$().io, $m_Ltigerpython_parser_lexer_TokenType$().jc]), this$5); } else { return false; } @@ -57866,9 +57872,9 @@ var $d_Ltigerpython_parser_parsing_PreParser$Line = new $TypeData().i($c_Ltigerp /** @constructor */ function $c_Ltigerpython_parser_scopes_ModuleLoader$$anon$1() { this.bM = null; - this.vS = null; - this.gX = null; this.vT = null; + this.gX = null; + this.vU = null; $ct_Ltigerpython_parser_types_Module__T__(this, "math"); var xs = $m_Ltigerpython_parser_scopes_BuiltinModules$().N7; var f = ((s$2) => { @@ -57966,9 +57972,9 @@ var $d_Ltigerpython_parser_scopes_ModuleLoader$$anon$1 = new $TypeData().i($c_Lt /** @constructor */ function $c_Ltigerpython_parser_scopes_ModuleLoader$$anon$2() { this.bM = null; - this.vS = null; - this.gX = null; this.vT = null; + this.gX = null; + this.vU = null; $ct_Ltigerpython_parser_types_Module__T__(this, "os"); var xs = $m_Ltigerpython_parser_scopes_BuiltinModules$().N8; var f = ((s$2) => { @@ -58062,9 +58068,9 @@ var $d_Ltigerpython_parser_scopes_ModuleLoader$$anon$2 = new $TypeData().i($c_Lt /** @constructor */ function $c_Ltigerpython_parser_scopes_ModuleLoader$$anon$3() { this.bM = null; - this.vS = null; - this.gX = null; this.vT = null; + this.gX = null; + this.vU = null; $ct_Ltigerpython_parser_types_Module__T__(this, "sys"); var xs = $m_Ltigerpython_parser_scopes_BuiltinModules$().N9; var f = ((s$2) => { @@ -58233,9 +58239,9 @@ var $d_Ltigerpython_parser_scopes_ModuleLoader$$anon$3 = new $TypeData().i($c_Lt /** @constructor */ function $c_Ltigerpython_parser_scopes_ModuleLoader$$anon$4() { this.bM = null; - this.vS = null; - this.gX = null; this.vT = null; + this.gX = null; + this.vU = null; $ct_Ltigerpython_parser_types_Module__T__(this, "time"); var xs = $m_Ltigerpython_parser_scopes_BuiltinModules$().Nb; var f = ((s$2) => { @@ -58753,7 +58759,7 @@ function $ct_Ltigerpython_utilities_completer_CompleterInfoItem__T__T__T__AT__Lt $thiz.yz = name; $thiz.yx = documentation; $thiz.yy = itemType; - $thiz.vV = parameters; + $thiz.vW = parameters; $thiz.kl = signature; return $thiz; } @@ -58761,8 +58767,8 @@ function $ct_Ltigerpython_utilities_completer_CompleterInfoItem__T__($thiz, name $ct_Ltigerpython_utilities_completer_CompleterInfoItem__T__T__T__AT__Ltigerpython_utilities_types_Signature__($thiz, name, null, "variable", null, null); return $thiz; } -function $ct_Ltigerpython_utilities_completer_CompleterInfoItem__Ltigerpython_utilities_types_DataType__($thiz, dataType) { - $ct_Ltigerpython_utilities_completer_CompleterInfoItem__T__T__T__AT__Ltigerpython_utilities_types_Signature__($thiz, dataType.aR(), dataType.ww(), dataType.zA(), dataType.Qq(), dataType.zx()); +function $ct_Ltigerpython_utilities_completer_CompleterInfoItem__Ltigerpython_utilities_types_DataType__T__($thiz, dataType, overrideName) { + $ct_Ltigerpython_utilities_completer_CompleterInfoItem__T__T__T__AT__Ltigerpython_utilities_types_Signature__($thiz, ((overrideName !== null) ? overrideName : dataType.aR()), dataType.wx(), dataType.zA(), dataType.Qq(), dataType.zx()); return $thiz; } /** @constructor */ @@ -58770,7 +58776,7 @@ function $c_Ltigerpython_utilities_completer_CompleterInfoItem() { this.yz = null; this.yx = null; this.yy = null; - this.vV = null; + this.vW = null; this.kl = null; } $p = $c_Ltigerpython_utilities_completer_CompleterInfoItem.prototype = new $h_O(); @@ -58800,7 +58806,7 @@ $p.A = (function(x$1) { break; } case 3: { - return this.vV; + return this.vW; break; } case 4: { @@ -58827,7 +58833,7 @@ $p.b = (function(x$1) { } else if ((x$1 instanceof $c_Ltigerpython_utilities_completer_CompleterInfoItem)) { var CompleterInfoItem$1 = x$1; if (((this.yz === CompleterInfoItem$1.yz) && ((this.yx === CompleterInfoItem$1.yx) && (this.yy === CompleterInfoItem$1.yy)))) { - if ((this.vV === CompleterInfoItem$1.vV)) { + if ((this.vW === CompleterInfoItem$1.vW)) { var x = this.kl; var x$2 = CompleterInfoItem$1.kl; return ((x === null) ? (x$2 === null) : x.b(x$2)); @@ -58913,14 +58919,14 @@ function $p_Ltigerpython_utilities_fastparse_Lexer__isFollowedByString__Z($thiz) /** @constructor */ function $c_Ltigerpython_utilities_fastparse_Lexer(source) { this.P = null; - this.w5 = false; + this.w6 = false; this.a2 = 0; this.eI = null; this.sq = null; this.yL = null; this.yM = false; this.P = source; - this.w5 = true; + this.w6 = true; this.a2 = 0; this.sq = new $c_Ltigerpython_utilities_fastparse_Lexer$IndentStack(this); this.yL = new $c_Ltigerpython_utilities_fastparse_Lexer$ParStack(this); @@ -58996,7 +59002,7 @@ $p.qE = (function() { throw new $c_Ltigerpython_utilities_fastparse_PyiSyntaxError($p_Ltigerpython_utilities_fastparse_Lexer___getCurrentLine__I__I(this, this.a2), "name expected"); } }); -$p.wL = (function(tokenType) { +$p.wM = (function(tokenType) { var h = this.cX(); if ((h !== null)) { var x = h.aZ; @@ -59077,7 +59083,7 @@ $p.dF = (function(tokenType) { } return result; }); -$p.wW = (function(token) { +$p.wX = (function(token) { var x1 = this.cX(); if ((x1 instanceof $c_Ltigerpython_utilities_fastparse_RightPar)) { var x2 = x1; @@ -59125,7 +59131,7 @@ $p.zC = (function() { } } else { var x = this.cX().aZ; - var x$2 = $m_Ltigerpython_utilities_fastparse_TokenType$().w7; + var x$2 = $m_Ltigerpython_utilities_fastparse_TokenType$().w8; if (((x === null) ? (x$2 === null) : x.b(x$2))) { this.eI = null; } else { @@ -59143,7 +59149,7 @@ $p.Xq = (function() { return ((((this.cX() !== null) && this.CF()) && (this.a2 < $dp_length__I(this.P))) ? $dp_charAt__I__C(this.P, this.a2) : 0); }); $p.CF = (function() { - if (((this.a2 < $dp_length__I(this.P)) && (!this.w5))) { + if (((this.a2 < $dp_length__I(this.P)) && (!this.w6))) { var i = this.a2; var len = $dp_length__I(this.P); while (((i < len) && ($dp_charAt__I__C(this.P, i) === 32))) { @@ -59159,7 +59165,7 @@ $p.t6 = (function() { if ((this.a2 < $dp_length__I(this.P))) { var i = this.a2; var len = $dp_length__I(this.P); - if (this.w5) { + if (this.w6) { var indent = 0; while (true) { if ((i < len)) { @@ -59194,11 +59200,11 @@ $p.t6 = (function() { if ((indent < this.sq.I4())) { var indentToken = this.sq.Jc(); if ((indent === this.sq.I4())) { - this.w5 = false; + this.w6 = false; } return new $c_Ltigerpython_utilities_fastparse_Dedent(indentToken); } - this.w5 = false; + this.w6 = false; this.a2 = i; } this.a2 = ((1 + this.a2) | 0); @@ -59314,7 +59320,7 @@ $p.t6 = (function() { this.a2 = ((1 + this.a2) | 0); } if (this.yL.t()) { - this.w5 = true; + this.w6 = true; this.yM = true; return new $c_Ltigerpython_utilities_fastparse_Newline(); } else { @@ -59640,7 +59646,7 @@ $p.PW = (function(prefix, rawString, delimiter_count) { } case 120: { if ((((3 + elem) | 0) < len)) { - var num = $m_jl_Integer$().jA($m_sc_StringOps$().iJ(rawString, ((2 + elem) | 0), ((4 + elem) | 0)), 16); + var num = $m_jl_Integer$().jA($m_sc_StringOps$().iI(rawString, ((2 + elem) | 0), ((4 + elem) | 0)), 16); var elem$1 = (65535 & num); result.dd(elem$1); elem = ((2 + elem) | 0); @@ -59652,7 +59658,7 @@ $p.PW = (function(prefix, rawString, delimiter_count) { } case 117: { if ((((5 + elem) | 0) < len)) { - var num$2 = $m_jl_Integer$().jA($m_sc_StringOps$().iJ(rawString, ((2 + elem) | 0), ((6 + elem) | 0)), 16); + var num$2 = $m_jl_Integer$().jA($m_sc_StringOps$().iI(rawString, ((2 + elem) | 0), ((6 + elem) | 0)), 16); var elem$2 = (65535 & num$2); result.dd(elem$2); elem = ((4 + elem) | 0); @@ -59664,7 +59670,7 @@ $p.PW = (function(prefix, rawString, delimiter_count) { } case 85: { if ((((9 + elem) | 0) < len)) { - var num$3 = $m_jl_Integer$().jA($m_sc_StringOps$().iJ(rawString, ((2 + elem) | 0), ((10 + elem) | 0)), 16); + var num$3 = $m_jl_Integer$().jA($m_sc_StringOps$().iI(rawString, ((2 + elem) | 0), ((10 + elem) | 0)), 16); var elem$3 = (65535 & num$3); result.dd(elem$3); elem = ((8 + elem) | 0); @@ -59750,9 +59756,9 @@ var $d_Ltigerpython_utilities_fastparse_PyiSyntaxError = new $TypeData().i($c_Lt /** @constructor */ function $c_Ltigerpython_utilities_scopes_ModuleLoader$$anon$1() { this.bo = null; - this.wd = null; - this.dD = null; this.we = null; + this.dD = null; + this.wf = null; $ct_Ltigerpython_utilities_types_Module__T__(this, "math"); var xs = $m_Ltigerpython_utilities_scopes_BuiltinModules$().On; var f = ((s$2) => { @@ -59850,9 +59856,9 @@ var $d_Ltigerpython_utilities_scopes_ModuleLoader$$anon$1 = new $TypeData().i($c /** @constructor */ function $c_Ltigerpython_utilities_scopes_ModuleLoader$$anon$2() { this.bo = null; - this.wd = null; - this.dD = null; this.we = null; + this.dD = null; + this.wf = null; $ct_Ltigerpython_utilities_types_Module__T__(this, "os"); var xs = $m_Ltigerpython_utilities_scopes_BuiltinModules$().Oo; var f = ((s$2) => { @@ -59946,9 +59952,9 @@ var $d_Ltigerpython_utilities_scopes_ModuleLoader$$anon$2 = new $TypeData().i($c /** @constructor */ function $c_Ltigerpython_utilities_scopes_ModuleLoader$$anon$3() { this.bo = null; - this.wd = null; - this.dD = null; this.we = null; + this.dD = null; + this.wf = null; $ct_Ltigerpython_utilities_types_Module__T__(this, "sys"); var xs = $m_Ltigerpython_utilities_scopes_BuiltinModules$().Op; var f = ((s$2) => { @@ -60117,9 +60123,9 @@ var $d_Ltigerpython_utilities_scopes_ModuleLoader$$anon$3 = new $TypeData().i($c /** @constructor */ function $c_Ltigerpython_utilities_scopes_ModuleLoader$$anon$4() { this.bo = null; - this.wd = null; - this.dD = null; this.we = null; + this.dD = null; + this.wf = null; $ct_Ltigerpython_utilities_types_Module__T__(this, "time"); var xs = $m_Ltigerpython_utilities_scopes_BuiltinModules$().Or; var f = ((s$2) => { @@ -60481,14 +60487,14 @@ function $c_Ltigerpython_utilities_types_Signature(positionalOnlyArgs, positiona this.qj = null; this.qm = null; this.z1 = null; - this.wf = false; + this.wg = false; this.qk = positionalOnlyArgs; this.sz = positionalOrKeywordArgs; this.ql = varArgs; this.qj = keywordOnlyArgs; this.qm = varKwargs; this.z1 = returnType; - this.wf = firstParamIsSelfOrCls; + this.wg = firstParamIsSelfOrCls; } $p = $c_Ltigerpython_utilities_types_Signature.prototype = new $h_O(); $p.constructor = $c_Ltigerpython_utilities_types_Signature; @@ -60603,7 +60609,7 @@ $p.A = (function(x$1) { break; } case 6: { - return this.wf; + return this.wg; break; } default: { @@ -60623,7 +60629,7 @@ $p.q = (function() { acc = $m_sr_Statics$().e(acc, $m_sr_Statics$().n(this.qj)); acc = $m_sr_Statics$().e(acc, $m_sr_Statics$().n(this.qm)); acc = $m_sr_Statics$().e(acc, $m_sr_Statics$().n(this.z1)); - acc = $m_sr_Statics$().e(acc, (this.wf ? 1231 : 1237)); + acc = $m_sr_Statics$().e(acc, (this.wg ? 1231 : 1237)); return $m_sr_Statics$().H(acc, 7); }); $p.b = (function(x$1) { @@ -60631,7 +60637,7 @@ $p.b = (function(x$1) { return true; } else if ((x$1 instanceof $c_Ltigerpython_utilities_types_Signature)) { var Signature$1 = x$1; - if ((this.wf === Signature$1.wf)) { + if ((this.wg === Signature$1.wg)) { var x = this.qk; var x$2 = Signature$1.qk; var $x_2 = ((x === null) ? (x$2 === null) : x.b(x$2)); @@ -60686,11 +60692,11 @@ var $d_Ltigerpython_utilities_types_Signature = new $TypeData().i($c_Ltigerpytho })); /** @constructor */ function $c_Ltigerpython_utilities_types_SignatureArg(name, defaultValue, argType) { + this.wi = null; this.wh = null; - this.wg = null; this.sA = null; - this.wh = name; - this.wg = defaultValue; + this.wi = name; + this.wh = defaultValue; this.sA = argType; } $p = $c_Ltigerpython_utilities_types_SignatureArg.prototype = new $h_O(); @@ -60700,7 +60706,7 @@ function $h_Ltigerpython_utilities_types_SignatureArg() { } $h_Ltigerpython_utilities_types_SignatureArg.prototype = $p; $p.j = (function() { - var $x_2 = this.wh; + var $x_2 = this.wi; var x = this.sA; var x$2 = $m_Ltigerpython_utilities_types_BuiltinTypes$().ae; if (((x === null) ? (x$2 === null) : x.b(x$2))) { @@ -60708,7 +60714,7 @@ $p.j = (function() { } else { var $x_1 = (" : " + $m_Ltigerpython_utilities_types_Utils$().Dz(this.sA)); } - var this$1 = this.wg; + var this$1 = this.wh; var this$2 = (this$1.t() ? $m_s_None$() : new $c_s_Some((" = " + this$1.b7()))); return (($x_2 + $x_1) + (this$2.t() ? "" : this$2.b7())); }); @@ -60721,11 +60727,11 @@ $p.z = (function() { $p.A = (function(x$1) { switch (x$1) { case 0: { - return this.wh; + return this.wi; break; } case 1: { - return this.wg; + return this.wh; break; } case 2: { @@ -60748,9 +60754,9 @@ $p.b = (function(x$1) { return true; } else if ((x$1 instanceof $c_Ltigerpython_utilities_types_SignatureArg)) { var SignatureArg$1 = x$1; - if ((this.wh === SignatureArg$1.wh)) { - var x = this.wg; - var x$2 = SignatureArg$1.wg; + if ((this.wi === SignatureArg$1.wi)) { + var x = this.wh; + var x$2 = SignatureArg$1.wh; var $x_1 = ((x === null) ? (x$2 === null) : x.b(x$2)); } else { var $x_1 = false; @@ -60777,9 +60783,9 @@ var $d_Ltigerpython_utilities_types_SignatureArg = new $TypeData().i($c_Ltigerpy })); /** @constructor */ function $c_Ltigerpython_utilities_types_SignatureVarArg(name, argType) { - this.wi = null; + this.wj = null; this.sB = null; - this.wi = name; + this.wj = name; this.sB = argType; } $p = $c_Ltigerpython_utilities_types_SignatureVarArg.prototype = new $h_O(); @@ -60789,7 +60795,7 @@ function $h_Ltigerpython_utilities_types_SignatureVarArg() { } $h_Ltigerpython_utilities_types_SignatureVarArg.prototype = $p; $p.j = (function() { - var $x_1 = this.wi; + var $x_1 = this.wj; var x = this.sB; var x$2 = $m_Ltigerpython_utilities_types_BuiltinTypes$().ae; return ($x_1 + (((x === null) ? (x$2 === null) : x.b(x$2)) ? "" : (" : " + $m_Ltigerpython_utilities_types_Utils$().Dz(this.sB)))); @@ -60803,7 +60809,7 @@ $p.z = (function() { $p.A = (function(x$1) { switch (x$1) { case 0: { - return this.wi; + return this.wj; break; } case 1: { @@ -60826,7 +60832,7 @@ $p.b = (function(x$1) { return true; } else if ((x$1 instanceof $c_Ltigerpython_utilities_types_SignatureVarArg)) { var SignatureVarArg$1 = x$1; - if ((this.wi === SignatureVarArg$1.wi)) { + if ((this.wj === SignatureVarArg$1.wj)) { var x = this.sB; var x$2 = SignatureVarArg$1.sB; return ((x === null) ? (x$2 === null) : x.b(x$2)); @@ -60851,8 +60857,8 @@ function $c_Ltigerpython_utilities_types_TupleType(itemTypes) { this.bo = null; this.km = null; this.c0 = null; - this.wj = null; - this.wj = itemTypes; + this.wk = null; + this.wk = itemTypes; var $x_11 = $m_sc_StringOps$(); var $x_10 = $m_s_Predef$(); var f = ((x$1$2) => x$1$2.aR()); @@ -60946,7 +60952,7 @@ function $h_Ltigerpython_utilities_types_TupleType() { } $h_Ltigerpython_utilities_types_TupleType.prototype = $p; $p.g = (function() { - return this.wj.a.length; + return this.wk.a.length; }); function $isArrayOf_Ltigerpython_utilities_types_TupleType(obj, depth) { return (!(!(((obj && obj.$classData) && (obj.$classData.D === depth)) && obj.$classData.B.n.h7))); @@ -61557,7 +61563,7 @@ var $d_sc_BitSetOps$$anon$1 = new $TypeData().i($c_sc_BitSetOps$$anon$1, "scala. })); /** @constructor */ function $c_sc_ClassTagSeqFactory$AnySeqDelegate(delegate) { - this.x8 = null; + this.x9 = null; $ct_sc_ClassTagIterableFactory$AnyIterableDelegate__sc_ClassTagIterableFactory__(this, delegate); } $p = $c_sc_ClassTagSeqFactory$AnySeqDelegate.prototype = new $h_sc_ClassTagIterableFactory$AnyIterableDelegate(); @@ -61605,11 +61611,11 @@ function $isArrayOf_sc_Iterable(obj, depth) { /** @constructor */ function $c_sc_Iterator$$anon$11(outer, p$2) { this.Ez = null; - this.x9 = false; + this.xa = false; this.Ah = null; this.Ks = null; this.Ks = p$2; - this.x9 = false; + this.xa = false; this.Ah = outer; } $p = $c_sc_Iterator$$anon$11.prototype = new $h_sc_AbstractIterator(); @@ -61619,23 +61625,23 @@ function $h_sc_Iterator$$anon$11() { } $h_sc_Iterator$$anon$11.prototype = $p; $p.c = (function() { - if (this.x9) { + if (this.xa) { return true; } else if (this.Ah.c()) { this.Ez = this.Ah.d(); if ((!(!this.Ks.w(this.Ez)))) { - this.x9 = true; + this.xa = true; } else { this.Ah = $m_sc_Iterator$().r; } - return this.x9; + return this.xa; } else { return false; } }); $p.d = (function() { if (this.c()) { - this.x9 = false; + this.xa = false; return this.Ez; } else { return $m_sc_Iterator$().r.d(); @@ -61666,7 +61672,7 @@ $p.zR = (function() { $p.T = (function() { return 0; }); -$p.wT = (function(from, until) { +$p.wU = (function(from, until) { return this; }); $p.d = (function() { @@ -61681,10 +61687,10 @@ var $d_sc_Iterator$$anon$19 = new $TypeData().i($c_sc_Iterator$$anon$19, "scala. })); /** @constructor */ function $c_sc_Iterator$$anon$20(a$1) { - this.xa = false; + this.xb = false; this.Kt = null; this.Kt = a$1; - this.xa = false; + this.xb = false; } $p = $c_sc_Iterator$$anon$20.prototype = new $h_sc_AbstractIterator(); $p.constructor = $c_sc_Iterator$$anon$20; @@ -61693,18 +61699,18 @@ function $h_sc_Iterator$$anon$20() { } $h_sc_Iterator$$anon$20.prototype = $p; $p.c = (function() { - return (!this.xa); + return (!this.xb); }); $p.d = (function() { - if (this.xa) { + if (this.xb) { return $m_sc_Iterator$().r.d(); } else { - this.xa = true; + this.xb = true; return this.Kt; } }); -$p.wT = (function(from, until) { - return (((this.xa || (from > 0)) || (until === 0)) ? $m_sc_Iterator$().r : this); +$p.wU = (function(from, until) { + return (((this.xb || (from > 0)) || (until === 0)) ? $m_sc_Iterator$().r : this); }); var $d_sc_Iterator$$anon$20 = new $TypeData().i($c_sc_Iterator$$anon$20, "scala.collection.Iterator$$anon$20", ({ j5: 1, @@ -61717,10 +61723,10 @@ var $d_sc_Iterator$$anon$20 = new $TypeData().i($c_sc_Iterator$$anon$20, "scala. function $c_sc_Iterator$$anon$6(outer, p$1, isFlipped$1) { this.Ai = null; this.Aj = false; - this.xb = null; + this.xc = null; this.Kv = null; this.Ku = false; - this.xb = outer; + this.xc = outer; this.Kv = p$1; this.Ku = isFlipped$1; this.Aj = false; @@ -61735,15 +61741,15 @@ $p.c = (function() { if (this.Aj) { return true; } else { - if ((!this.xb.c())) { + if ((!this.xc.c())) { return false; } - this.Ai = this.xb.d(); + this.Ai = this.xc.d(); while (((!(!this.Kv.w(this.Ai))) === this.Ku)) { - if ((!this.xb.c())) { + if ((!this.xc.c())) { return false; } - this.Ai = this.xb.d(); + this.Ai = this.xc.d(); } this.Aj = true; return true; @@ -61847,27 +61853,27 @@ function $p_sc_Iterator$ConcatIterator__merge$1__V($thiz) { var c = $thiz.hb; $thiz.hb = c.hb; $thiz.o3 = c.o3; - if ((c.iQ !== null)) { - if (($thiz.iP === null)) { - $thiz.iP = c.iP; + if ((c.iP !== null)) { + if (($thiz.iO === null)) { + $thiz.iO = c.iO; } - c.iP.xc = $thiz.iQ; - $thiz.iQ = c.iQ; + c.iO.xd = $thiz.iP; + $thiz.iP = c.iP; } } } function $p_sc_Iterator$ConcatIterator__advance$1__Z($thiz) { while (true) { - if (($thiz.iQ === null)) { + if (($thiz.iP === null)) { $thiz.hb = null; - $thiz.iP = null; + $thiz.iO = null; return false; } else { - $thiz.hb = $thiz.iQ.VA(); - if (($thiz.iP === $thiz.iQ)) { - $thiz.iP = $thiz.iP.xc; + $thiz.hb = $thiz.iP.VA(); + if (($thiz.iO === $thiz.iP)) { + $thiz.iO = $thiz.iO.xd; } - $thiz.iQ = $thiz.iQ.xc; + $thiz.iP = $thiz.iP.xd; $p_sc_Iterator$ConcatIterator__merge$1__V($thiz); if ($thiz.o3) { return true; @@ -61881,12 +61887,12 @@ function $p_sc_Iterator$ConcatIterator__advance$1__Z($thiz) { /** @constructor */ function $c_sc_Iterator$ConcatIterator(current) { this.hb = null; - this.iQ = null; this.iP = null; + this.iO = null; this.o3 = false; this.hb = current; - this.iQ = null; this.iP = null; + this.iO = null; this.o3 = false; } $p = $c_sc_Iterator$ConcatIterator.prototype = new $h_sc_AbstractIterator(); @@ -61919,12 +61925,12 @@ $p.d = (function() { }); $p.hK = (function(that) { var c = new $c_sc_Iterator$ConcatIteratorCell(that, null); - if ((this.iQ === null)) { - this.iQ = c; + if ((this.iP === null)) { this.iP = c; + this.iO = c; } else { - this.iP.xc = c; - this.iP = c; + this.iO.xd = c; + this.iO = c; } if ((this.hb === null)) { this.hb = $m_sc_Iterator$().r; @@ -61952,20 +61958,20 @@ function $p_sc_Iterator$SliceIterator__skip__V($thiz) { } } function $p_sc_Iterator$SliceIterator__adjustedBound$1__I__I($thiz, lo$1) { - if (($thiz.iR < 0)) { + if (($thiz.iQ < 0)) { return (-1); } else { - var that = (($thiz.iR - lo$1) | 0); + var that = (($thiz.iQ - lo$1) | 0); return ((that < 0) ? 0 : that); } } /** @constructor */ function $c_sc_Iterator$SliceIterator(underlying, start, limit) { this.qV = null; - this.iR = 0; + this.iQ = 0; this.o4 = 0; this.qV = underlying; - this.iR = limit; + this.iQ = limit; this.o4 = start; } $p = $c_sc_Iterator$SliceIterator.prototype = new $h_sc_AbstractIterator(); @@ -61981,34 +61987,34 @@ $p.T = (function() { } else { var that = ((size - this.o4) | 0); var dropSize = ((that < 0) ? 0 : that); - if ((this.iR < 0)) { + if ((this.iQ < 0)) { return dropSize; } else { - var x = this.iR; + var x = this.iQ; return ((x < dropSize) ? x : dropSize); } } }); $p.c = (function() { $p_sc_Iterator$SliceIterator__skip__V(this); - return ((this.iR !== 0) && this.qV.c()); + return ((this.iQ !== 0) && this.qV.c()); }); $p.d = (function() { $p_sc_Iterator$SliceIterator__skip__V(this); - if ((this.iR > 0)) { - this.iR = (((-1) + this.iR) | 0); + if ((this.iQ > 0)) { + this.iQ = (((-1) + this.iQ) | 0); return this.qV.d(); } else { - return ((this.iR < 0) ? this.qV.d() : $m_sc_Iterator$().r.d()); + return ((this.iQ < 0) ? this.qV.d() : $m_sc_Iterator$().r.d()); } }); -$p.wT = (function(from, until) { +$p.wU = (function(from, until) { var lo = ((from > 0) ? from : 0); if ((until < 0)) { var rest = $p_sc_Iterator$SliceIterator__adjustedBound$1__I__I(this, lo); } else if ((until <= lo)) { var rest = 0; - } else if ((this.iR < 0)) { + } else if ((this.iQ < 0)) { var rest = ((until - lo) | 0); } else { var x = $p_sc_Iterator$SliceIterator__adjustedBound$1__I__I(this, lo); @@ -62020,7 +62026,7 @@ $p.wT = (function(from, until) { } else { var sum = ((this.o4 + lo) | 0); this.o4 = ((sum < 0) ? 2147483647 : sum); - this.iR = rest; + this.iQ = rest; return this; } }); @@ -62136,8 +62142,8 @@ function $p_sc_LinearSeqOps__linearSeqEq$1__sc_LinearSeq__sc_LinearSeq__Z($thiz, } /** @constructor */ function $c_sc_StrictOptimizedLinearSeqOps$$anon$1(outer) { - this.xe = null; - this.xe = outer; + this.xf = null; + this.xf = outer; } $p = $c_sc_StrictOptimizedLinearSeqOps$$anon$1.prototype = new $h_sc_AbstractIterator(); $p.constructor = $c_sc_StrictOptimizedLinearSeqOps$$anon$1; @@ -62146,11 +62152,11 @@ function $h_sc_StrictOptimizedLinearSeqOps$$anon$1() { } $h_sc_StrictOptimizedLinearSeqOps$$anon$1.prototype = $p; $p.c = (function() { - return (!this.xe.t()); + return (!this.xf.t()); }); $p.d = (function() { - var r = this.xe.W(); - this.xe = this.xe.aE(); + var r = this.xf.W(); + this.xf = this.xf.aE(); return r; }); var $d_sc_StrictOptimizedLinearSeqOps$$anon$1 = new $TypeData().i($c_sc_StrictOptimizedLinearSeqOps$$anon$1, "scala.collection.StrictOptimizedLinearSeqOps$$anon$1", ({ @@ -62164,7 +62170,7 @@ function $p_sc_StringOps$$anon$1__advance__T($thiz) { var start = $thiz.eW; while (true) { if (($thiz.eW < $thiz.qY)) { - var this$ = $thiz.xf; + var this$ = $thiz.xg; var i = $thiz.eW; var c = this$.charCodeAt(i); var $x_1 = (!((c === 13) || (c === 10))); @@ -62179,12 +62185,12 @@ function $p_sc_StringOps$$anon$1__advance__T($thiz) { } var end = $thiz.eW; if (($thiz.eW < $thiz.qY)) { - var this$$2 = $thiz.xf; + var this$$2 = $thiz.xg; var i$1 = $thiz.eW; var c$1 = this$$2.charCodeAt(i$1); $thiz.eW = ((1 + $thiz.eW) | 0); if (($thiz.eW < $thiz.qY)) { - var this$$3 = $thiz.xf; + var this$$3 = $thiz.xg; var i$2 = $thiz.eW; var c$2 = this$$3.charCodeAt(i$2); var $x_2 = ((c$1 === 13) && (c$2 === 10)); @@ -62198,7 +62204,7 @@ function $p_sc_StringOps$$anon$1__advance__T($thiz) { end = $thiz.eW; } } - var this$6 = $thiz.xf; + var this$6 = $thiz.xg; var endIndex = end; return this$6.substring(start, endIndex); } @@ -62206,9 +62212,9 @@ function $p_sc_StringOps$$anon$1__advance__T($thiz) { function $c_sc_StringOps$$anon$1(\u03b4this$2, stripped$1) { this.qY = 0; this.eW = 0; - this.xf = null; + this.xg = null; this.KE = false; - this.xf = \u03b4this$2; + this.xg = \u03b4this$2; this.KE = stripped$1; this.qY = \u03b4this$2.length; this.eW = 0; @@ -62237,8 +62243,8 @@ var $d_sc_StringOps$$anon$1 = new $TypeData().i($c_sc_StringOps$$anon$1, "scala. })); function $p_sci_ChampBaseIterator__initNodes__V($thiz) { if (($thiz.he === null)) { - $thiz.he = new $ac_I(($m_sci_Node$().xr << 1)); - $thiz.kP = new ($d_sci_Node.r().C)($m_sci_Node$().xr); + $thiz.he = new $ac_I(($m_sci_Node$().xs << 1)); + $thiz.kP = new ($d_sci_Node.r().C)($m_sci_Node$().xs); } } function $p_sci_ChampBaseIterator__setupPayloadNode__sci_Node__V($thiz, node) { @@ -62270,7 +62276,7 @@ function $p_sci_ChampBaseIterator__searchNextValueNode__Z($thiz) { if (nextNode.zD()) { $p_sci_ChampBaseIterator__pushNode__sci_Node__V($thiz, nextNode); } - if (nextNode.wE()) { + if (nextNode.wF()) { $p_sci_ChampBaseIterator__setupPayloadNode__sci_Node__V($thiz, nextNode); return true; } @@ -62291,7 +62297,7 @@ function $ct_sci_ChampBaseIterator__sci_Node__($thiz, rootNode) { if (rootNode.zD()) { $p_sci_ChampBaseIterator__pushNode__sci_Node__V($thiz, rootNode); } - if (rootNode.wE()) { + if (rootNode.wF()) { $p_sci_ChampBaseIterator__setupPayloadNode__sci_Node__V($thiz, rootNode); } return $thiz; @@ -62320,22 +62326,22 @@ function $p_sci_ChampBaseReverseIterator__setupPayloadNode__sci_Node__V($thiz, n } function $p_sci_ChampBaseReverseIterator__pushNode__sci_Node__V($thiz, node) { $thiz.i5 = ((1 + $thiz.i5) | 0); - $thiz.xm.a[$thiz.i5] = node; - $thiz.xl.a[$thiz.i5] = (((-1) + node.zS()) | 0); + $thiz.xn.a[$thiz.i5] = node; + $thiz.xm.a[$thiz.i5] = (((-1) + node.zS()) | 0); } function $p_sci_ChampBaseReverseIterator__popNode__V($thiz) { $thiz.i5 = (((-1) + $thiz.i5) | 0); } function $p_sci_ChampBaseReverseIterator__searchNextValueNode__Z($thiz) { while (($thiz.i5 >= 0)) { - var nodeCursor = $thiz.xl.a[$thiz.i5]; - $thiz.xl.a[$thiz.i5] = (((-1) + nodeCursor) | 0); + var nodeCursor = $thiz.xm.a[$thiz.i5]; + $thiz.xm.a[$thiz.i5] = (((-1) + nodeCursor) | 0); if ((nodeCursor >= 0)) { - $p_sci_ChampBaseReverseIterator__pushNode__sci_Node__V($thiz, $thiz.xm.a[$thiz.i5].zv(nodeCursor)); + $p_sci_ChampBaseReverseIterator__pushNode__sci_Node__V($thiz, $thiz.xn.a[$thiz.i5].zv(nodeCursor)); } else { - var currNode = $thiz.xm.a[$thiz.i5]; + var currNode = $thiz.xn.a[$thiz.i5]; $p_sci_ChampBaseReverseIterator__popNode__V($thiz); - if (currNode.wE()) { + if (currNode.wF()) { $p_sci_ChampBaseReverseIterator__setupPayloadNode__sci_Node__V($thiz, currNode); return true; } @@ -62346,8 +62352,8 @@ function $p_sci_ChampBaseReverseIterator__searchNextValueNode__Z($thiz) { function $ct_sci_ChampBaseReverseIterator__($thiz) { $thiz.o8 = (-1); $thiz.i5 = (-1); - $thiz.xl = new $ac_I(((1 + $m_sci_Node$().xr) | 0)); - $thiz.xm = new ($d_sci_Node.r().C)(((1 + $m_sci_Node$().xr) | 0)); + $thiz.xm = new $ac_I(((1 + $m_sci_Node$().xs) | 0)); + $thiz.xn = new ($d_sci_Node.r().C)(((1 + $m_sci_Node$().xs) | 0)); return $thiz; } function $ct_sci_ChampBaseReverseIterator__sci_Node__($thiz, rootNode) { @@ -62361,8 +62367,8 @@ function $c_sci_ChampBaseReverseIterator() { this.o8 = 0; this.At = null; this.i5 = 0; - this.xl = null; this.xm = null; + this.xn = null; } $p = $c_sci_ChampBaseReverseIterator.prototype = new $h_sc_AbstractIterator(); $p.constructor = $c_sci_ChampBaseReverseIterator; @@ -62392,7 +62398,7 @@ function $p_sci_HashMapBuilder__insertElement__AI__I__I__AI($thiz, as, ix, elem) return result; } function $p_sci_HashMapBuilder__insertValue__sci_BitmapIndexedMapNode__I__O__I__I__O__V($thiz, bm, bitpos, key, originalHash, keyHash, value) { - var dataIx = bm.iD(bitpos); + var dataIx = bm.iC(bitpos); var idx = (dataIx << 1); var src = bm.cp; var dst = new $ac_O(((2 + src.a.length) | 0)); @@ -62422,7 +62428,7 @@ function $p_sci_HashMapBuilder__copyElems__V($thiz) { function $c_sci_HashMapBuilder() { this.tw = null; this.kQ = null; - this.kQ = new $c_sci_BitmapIndexedMapNode(0, 0, $m_s_Array$EmptyArrays$().E9, $m_s_Array$EmptyArrays$().x7, 0, 0); + this.kQ = new $c_sci_BitmapIndexedMapNode(0, 0, $m_s_Array$EmptyArrays$().E9, $m_s_Array$EmptyArrays$().x8, 0, 0); } $p = $c_sci_HashMapBuilder.prototype = new $h_O(); $p.constructor = $c_sci_HashMapBuilder; @@ -62432,7 +62438,7 @@ function $h_sci_HashMapBuilder() { $h_sci_HashMapBuilder.prototype = $p; $p.cA = (function(size) { }); -$p.wY = (function(mapNode, key, value, originalHash, keyHash, shift) { +$p.wZ = (function(mapNode, key, value, originalHash, keyHash, shift) { if ((mapNode instanceof $c_sci_BitmapIndexedMapNode)) { var x2 = mapNode; var mask = $m_sci_Node$().fg(keyHash, shift); @@ -62454,7 +62460,7 @@ $p.wY = (function(mapNode, key, value, originalHash, keyHash, shift) { var subNode = x2.ff(index$2); var beforeSize = subNode.aK(); var beforeHash = subNode.cV(); - this.wY(subNode, key, value, originalHash, keyHash, ((5 + shift) | 0)); + this.wZ(subNode, key, value, originalHash, keyHash, ((5 + shift) | 0)); x2.cL = ((x2.cL + ((subNode.aK() - beforeSize) | 0)) | 0); x2.eX = ((x2.eX + ((subNode.cV() - beforeHash) | 0)) | 0); } else { @@ -62486,13 +62492,13 @@ $p.P7 = (function(elem) { $p_sci_HashMapBuilder__ensureUnaliased__V(this); var h = $m_sr_Statics$().n(elem.aC()); var im = $m_sc_Hashing$().bA(h); - this.wY(this.kQ, elem.aC(), elem.ao(), h, im, 0); + this.wZ(this.kQ, elem.aC(), elem.ao(), h, im, 0); return this; }); $p.sG = (function(key, value) { $p_sci_HashMapBuilder__ensureUnaliased__V(this); var originalHash = $m_sr_Statics$().n(key); - this.wY(this.kQ, key, value, originalHash, $m_sc_Hashing$().bA(originalHash), 0); + this.wZ(this.kQ, key, value, originalHash, $m_sc_Hashing$().bA(originalHash), 0); return this; }); $p.HP = (function(xs) { @@ -62507,7 +62513,7 @@ $p.HP = (function(xs) { var improvedHash = next.gO; var originalHash = (improvedHash ^ ((improvedHash >>> 16) | 0)); var hash = $m_sc_Hashing$().bA(originalHash); - this.wY(this.kQ, next.hn, next.bW, originalHash, hash, 0); + this.wZ(this.kQ, next.hn, next.bW, originalHash, hash, 0); } } else if (false) { var x4 = xs; @@ -62516,7 +62522,7 @@ $p.HP = (function(xs) { var next$2 = iter$2.d(); var originalHash$2 = x4.S2(next$2.CV()); var hash$2 = $m_sc_Hashing$().bA(originalHash$2); - this.wY(this.kQ, next$2.D2(), next$2.dl(), originalHash$2, hash$2, 0); + this.wZ(this.kQ, next$2.D2(), next$2.dl(), originalHash$2, hash$2, 0); } } else if ($is_sci_Map(xs)) { xs.ju(new $c_sjsr_AnonFunction2(((key$2, value$2) => this.sG(key$2, value$2)))); @@ -62563,7 +62569,7 @@ function $p_sci_HashSetBuilder__insertElement__AI__I__I__AI($thiz, as, ix, elem) return result; } function $p_sci_HashSetBuilder__insertValue__sci_BitmapIndexedSetNode__I__O__I__I__V($thiz, bm, bitpos, key, originalHash, keyHash) { - var dataIx = bm.iD(bitpos); + var dataIx = bm.iC(bitpos); var src = bm.ee; var dst = new $ac_O(((1 + src.a.length) | 0)); src.a5(0, dst, 0, dataIx); @@ -62579,7 +62585,7 @@ function $p_sci_HashSetBuilder__insertValue__sci_BitmapIndexedSetNode__I__O__I__ bm.hc = ((bm.hc + keyHash) | 0); } function $p_sci_HashSetBuilder__setValue__sci_BitmapIndexedSetNode__I__O__V($thiz, bm, bitpos, elem) { - var dataIx = bm.iD(bitpos); + var dataIx = bm.iC(bitpos); bm.ee.a[dataIx] = elem; } function $p_sci_HashSetBuilder__ensureUnaliased__V($thiz) { @@ -62595,7 +62601,7 @@ function $p_sci_HashSetBuilder__copyElems__V($thiz) { function $c_sci_HashSetBuilder() { this.tx = null; this.r2 = null; - this.r2 = new $c_sci_BitmapIndexedSetNode(0, 0, $m_s_Array$EmptyArrays$().E9, $m_s_Array$EmptyArrays$().x7, 0, 0); + this.r2 = new $c_sci_BitmapIndexedSetNode(0, 0, $m_s_Array$EmptyArrays$().E9, $m_s_Array$EmptyArrays$().x8, 0, 0); } $p = $c_sci_HashSetBuilder.prototype = new $h_O(); $p.constructor = $c_sci_HashSetBuilder; @@ -62623,7 +62629,7 @@ $p.Jx = (function(setNode, element, originalHash, elementHash, shift) { } } else if (((x2.ca & bitpos) !== 0)) { var index$2 = $m_sci_Node$().eO(x2.ca, mask, bitpos); - var subNode = x2.iE(index$2); + var subNode = x2.iD(index$2); var beforeSize = subNode.aK(); var beforeHashCode = subNode.cV(); this.Jx(subNode, element, originalHash, elementHash, ((5 + shift) | 0)); @@ -62646,7 +62652,7 @@ $p.Jx = (function(setNode, element, originalHash, elementHash, shift) { }); $p.Ji = (function() { if ((this.r2.dG === 0)) { - return $m_sci_HashSet$().xo; + return $m_sci_HashSet$().xp; } else if ((this.tx !== null)) { return this.tx; } else { @@ -62701,12 +62707,12 @@ function $h_sci_IndexedSeq$() { } $h_sci_IndexedSeq$.prototype = $p; $p.Q8 = (function(it) { - return ($is_sci_IndexedSeq(it) ? it : $c_sc_SeqFactory$Delegate.prototype.wB.call(this, it)); + return ($is_sci_IndexedSeq(it) ? it : $c_sc_SeqFactory$Delegate.prototype.wC.call(this, it)); }); $p.bO = (function(source) { return this.Q8(source); }); -$p.wB = (function(it) { +$p.wC = (function(it) { return this.Q8(it); }); var $d_sci_IndexedSeq$ = new $TypeData().i($c_sci_IndexedSeq$, "scala.collection.immutable.IndexedSeq$", ({ @@ -62727,7 +62733,7 @@ function $m_sci_IndexedSeq$() { function $c_sci_LazyList$LazyBuilder() { this.ty = null; this.KN = null; - this.wq(); + this.wr(); } $p = $c_sci_LazyList$LazyBuilder.prototype = new $h_O(); $p.constructor = $c_sci_LazyList$LazyBuilder; @@ -62737,7 +62743,7 @@ function $h_sci_LazyList$LazyBuilder() { $h_sci_LazyList$LazyBuilder.prototype = $p; $p.cA = (function(size) { }); -$p.wq = (function() { +$p.wr = (function() { var deferred = new $c_sci_LazyList$LazyBuilder$DeferredState(); this.KN = ($m_sci_LazyList$(), new $c_sci_LazyList(new $c_sjsr_AnonFunction0((() => deferred.Id())))); this.ty = deferred; @@ -62926,14 +62932,14 @@ $p.dS = (function(n) { return this; }); function $ct_sci_Map$Map4$Map4Iterator__sci_Map$Map4__($thiz, outer) { - $thiz.iT = outer; + $thiz.iS = outer; $thiz.kX = 0; return $thiz; } /** @constructor */ function $c_sci_Map$Map4$Map4Iterator() { this.kX = 0; - this.iT = null; + this.iS = null; } $p = $c_sci_Map$Map4$Map4Iterator.prototype = new $h_sc_AbstractIterator(); $p.constructor = $c_sci_Map$Map4$Map4Iterator; @@ -62947,19 +62953,19 @@ $p.c = (function() { $p.d = (function() { switch (this.kX) { case 0: { - var result = this.gg(this.iT.gn, this.iT.ia); + var result = this.gg(this.iS.gn, this.iS.ia); break; } case 1: { - var result = this.gg(this.iT.go, this.iT.ib); + var result = this.gg(this.iS.go, this.iS.ib); break; } case 2: { - var result = this.gg(this.iT.gp, this.iT.ic); + var result = this.gg(this.iS.gp, this.iS.ic); break; } case 3: { - var result = this.gg(this.iT.gq, this.iT.id); + var result = this.gg(this.iS.gq, this.iS.id); break; } default: { @@ -62976,10 +62982,10 @@ $p.dS = (function(n) { /** @constructor */ function $c_sci_MapBuilderImpl() { this.ml = null; - this.xp = false; + this.xq = false; this.r3 = null; this.ml = $m_sci_Map$EmptyMap$(); - this.xp = false; + this.xq = false; } $p = $c_sci_MapBuilderImpl.prototype = new $h_O(); $p.constructor = $c_sci_MapBuilderImpl; @@ -62990,17 +62996,17 @@ $h_sci_MapBuilderImpl.prototype = $p; $p.cA = (function(size) { }); $p.Rz = (function() { - return (this.xp ? this.r3.Jh() : this.ml); + return (this.xq ? this.r3.Jh() : this.ml); }); $p.SQ = (function(key, value) { - if (this.xp) { + if (this.xq) { this.r3.sG(key, value); } else if ((this.ml.aK() < 4)) { this.ml = this.ml.tf(key, value); } else if (this.ml.an(key)) { this.ml = this.ml.tf(key, value); } else { - this.xp = true; + this.xq = true; if ((this.r3 === null)) { this.r3 = new $c_sci_HashMapBuilder(); } @@ -63010,7 +63016,7 @@ $p.SQ = (function(key, value) { return this; }); $p.P0 = (function(xs) { - return (this.xp ? (this.r3.HP(xs), this) : $f_scm_Growable__addAll__sc_IterableOnce__scm_Growable(this, xs)); + return (this.xq ? (this.r3.HP(xs), this) : $f_scm_Growable__addAll__sc_IterableOnce__scm_Growable(this, xs)); }); $p.cU = (function(elems) { return this.P0(elems); @@ -63044,12 +63050,12 @@ function $h_sci_Seq$() { } $h_sci_Seq$.prototype = $p; $p.lZ = (function(it) { - return ($is_sci_Seq(it) ? it : $c_sc_SeqFactory$Delegate.prototype.wB.call(this, it)); + return ($is_sci_Seq(it) ? it : $c_sc_SeqFactory$Delegate.prototype.wC.call(this, it)); }); $p.bO = (function(source) { return this.lZ(source); }); -$p.wB = (function(it) { +$p.wC = (function(it) { return this.lZ(it); }); var $d_sci_Seq$ = new $TypeData().i($c_sci_Seq$, "scala.collection.immutable.Seq$", ({ @@ -63069,10 +63075,10 @@ function $m_sci_Seq$() { /** @constructor */ function $c_sci_SetBuilderImpl() { this.r9 = null; - this.xw = false; + this.xx = false; this.ra = null; this.r9 = $m_sci_Set$EmptySet$(); - this.xw = false; + this.xx = false; } $p = $c_sci_SetBuilderImpl.prototype = new $h_O(); $p.constructor = $c_sci_SetBuilderImpl; @@ -63083,15 +63089,15 @@ $h_sci_SetBuilderImpl.prototype = $p; $p.cA = (function(size) { }); $p.RA = (function() { - return (this.xw ? this.ra.Ji() : this.r9); + return (this.xx ? this.ra.Ji() : this.r9); }); $p.ST = (function(elem) { - if (this.xw) { + if (this.xx) { this.ra.Cu(elem); } else if ((this.r9.aK() < 4)) { this.r9 = this.r9.qy(elem); } else if ((!this.r9.an(elem))) { - this.xw = true; + this.xx = true; if ((this.ra === null)) { this.ra = new $c_sci_HashSetBuilder(); } @@ -63101,7 +63107,7 @@ $p.ST = (function(elem) { return this; }); $p.P1 = (function(xs) { - return (this.xw ? (this.ra.HQ(xs), this) : $f_scm_Growable__addAll__sc_IterableOnce__scm_Growable(this, xs)); + return (this.xx ? (this.ra.HQ(xs), this) : $f_scm_Growable__addAll__sc_IterableOnce__scm_Growable(this, xs)); }); $p.cU = (function(elems) { return this.P1(elems); @@ -63164,7 +63170,7 @@ $p.CJ = (function(it) { var x2$2 = it; var x = x2$2.df().di(); if (((x !== null) && (x === $d_O.l()))) { - var $x_1 = x2$2.iS; + var $x_1 = x2$2.iR; break matchEnd5; } } @@ -64056,7 +64062,7 @@ $p.VE = (function(v) { } return this; }); -$p.wl = (function(elem) { +$p.wm = (function(elem) { if ((this.bh === 32)) { $p_sci_VectorBuilder__advance__V(this); } @@ -64193,7 +64199,7 @@ $p.cU = (function(elems) { return this.HR(elems); }); $p.b6 = (function(elem) { - return this.wl(elem); + return this.wm(elem); }); function $isArrayOf_sci_VectorBuilder(obj, depth) { return (!(!(((obj && obj.$classData) && (obj.$classData.D === depth)) && obj.$classData.B.n.dr))); @@ -64491,18 +64497,18 @@ var $d_scm_HashSet$$anon$4 = new $TypeData().i($c_scm_HashSet$$anon$4, "scala.co D: 1 })); function $ct_scm_HashSet$HashSetIterator__scm_HashSet__($thiz, outer) { - $thiz.xy = outer; + $thiz.xz = outer; $thiz.op = 0; $thiz.mt = null; - $thiz.xz = outer.el.a.length; + $thiz.xA = outer.el.a.length; return $thiz; } /** @constructor */ function $c_scm_HashSet$HashSetIterator() { this.op = 0; this.mt = null; - this.xz = 0; - this.xy = null; + this.xA = 0; + this.xz = null; } $p = $c_scm_HashSet$HashSetIterator.prototype = new $h_sc_AbstractIterator(); $p.constructor = $c_scm_HashSet$HashSetIterator; @@ -64514,8 +64520,8 @@ $p.c = (function() { if ((this.mt !== null)) { return true; } else { - while ((this.op < this.xz)) { - var n = this.xy.el.a[this.op]; + while ((this.op < this.xA)) { + var n = this.xz.el.a[this.op]; this.op = ((1 + this.op) | 0); if ((n !== null)) { this.mt = n; @@ -64535,12 +64541,12 @@ $p.d = (function() { } }); function $ct_scm_ImmutableBuilder__sc_IterableOnce__($thiz, empty) { - $thiz.xA = empty; + $thiz.xB = empty; return $thiz; } /** @constructor */ function $c_scm_ImmutableBuilder() { - this.xA = null; + this.xB = null; } $p = $c_scm_ImmutableBuilder.prototype = new $h_O(); $p.constructor = $c_scm_ImmutableBuilder; @@ -64554,7 +64560,7 @@ $p.cU = (function(elems) { return $f_scm_Growable__addAll__sc_IterableOnce__scm_Growable(this, elems); }); $p.c3 = (function() { - return this.xA; + return this.xB; }); /** @constructor */ function $c_scm_IndexedSeq$() { @@ -64846,11 +64852,11 @@ var $d_sr_NonLocalReturnControl$mcZ$sp = new $TypeData().i($c_sr_NonLocalReturnC })); /** @constructor */ function $c_sr_ScalaRunTime$$anon$1(x$2) { - this.xC = 0; + this.xD = 0; this.Lg = 0; this.Lh = null; this.Lh = x$2; - this.xC = 0; + this.xD = 0; this.Lg = x$2.z(); } $p = $c_sr_ScalaRunTime$$anon$1.prototype = new $h_sc_AbstractIterator(); @@ -64860,11 +64866,11 @@ function $h_sr_ScalaRunTime$$anon$1() { } $h_sr_ScalaRunTime$$anon$1.prototype = $p; $p.c = (function() { - return (this.xC < this.Lg); + return (this.xD < this.Lg); }); $p.d = (function() { - var result = this.Lh.A(this.xC); - this.xC = ((1 + this.xC) | 0); + var result = this.Lh.A(this.xD); + this.xD = ((1 + this.xD) | 0); return result; }); var $d_sr_ScalaRunTime$$anon$1 = new $TypeData().i($c_sr_ScalaRunTime$$anon$1, "scala.runtime.ScalaRunTime$$anon$1", ({ @@ -65054,11 +65060,11 @@ var $d_Ltigerpython_parser_ast_AstNode$Arguments = new $TypeData().i($c_Ltigerpy function $c_Ltigerpython_parser_ast_AstNode$Comprehension(pos, target, iter, ifs) { this.ro = 0; this.l6 = null; - this.iY = null; + this.iX = null; this.ox = null; this.ro = pos; this.l6 = target; - this.iY = iter; + this.iX = iter; this.ox = ifs; } $p = $c_Ltigerpython_parser_ast_AstNode$Comprehension.prototype = new $h_Ltigerpython_parser_ast_AstNode(); @@ -65075,7 +65081,7 @@ $p.m1 = (function() { }); $p.j = (function() { try { - return ((this.ox.a.length !== 0) ? $m_sc_StringOps$().ap("Comprehension(%s, %s; if %s)", new $c_sjsr_WrappedVarArgs([this.l6.j(), this.iY.j(), $f_sc_IterableOnceOps__mkString__T__T__T__T($m_s_Predef$().at(this.ox), "", ", ", "")])) : $m_sc_StringOps$().ap("Comprehension(%s, %s)", new $c_sjsr_WrappedVarArgs([this.l6.j(), this.iY.j()]))); + return ((this.ox.a.length !== 0) ? $m_sc_StringOps$().ap("Comprehension(%s, %s; if %s)", new $c_sjsr_WrappedVarArgs([this.l6.j(), this.iX.j(), $f_sc_IterableOnceOps__mkString__T__T__T__T($m_s_Predef$().at(this.ox), "", ", ", "")])) : $m_sc_StringOps$().ap("Comprehension(%s, %s)", new $c_sjsr_WrappedVarArgs([this.l6.j(), this.iX.j()]))); } catch (e) { if ((e instanceof $c_jl_NullPointerException)) { return $m_sc_StringOps$().ap("Comprehension(%d, ???)", new $c_sjsr_WrappedVarArgs([this.ro])); @@ -65101,7 +65107,7 @@ $p.A = (function(x$1) { break; } case 2: { - return this.iY; + return this.iX; break; } case 3: { @@ -65121,7 +65127,7 @@ $p.q = (function() { acc = $m_sr_Statics$().e(acc, $f_T__hashCode__I("Comprehension")); acc = $m_sr_Statics$().e(acc, this.ro); acc = $m_sr_Statics$().e(acc, $m_sr_Statics$().n(this.l6)); - acc = $m_sr_Statics$().e(acc, $m_sr_Statics$().n(this.iY)); + acc = $m_sr_Statics$().e(acc, $m_sr_Statics$().n(this.iX)); acc = $m_sr_Statics$().e(acc, $m_sr_Statics$().n(this.ox)); return $m_sr_Statics$().H(acc, 4); }); @@ -65138,8 +65144,8 @@ $p.b = (function(x$1) { var $x_1 = false; } if ($x_1) { - var x$3 = this.iY; - var x$4 = Comprehension$1.iY; + var x$3 = this.iX; + var x$4 = Comprehension$1.iX; if (((x$3 === null) ? (x$4 === null) : x$3.b(x$4))) { return (this.ox === Comprehension$1.ox); } else { @@ -65541,7 +65547,7 @@ function $p_Ltigerpython_parser_lexer_Lexer__findDoubleSingleQuote__I__s_Option( function $p_Ltigerpython_parser_lexer_Lexer__matchBracket$1__C__V($thiz, ch) { if ((!((!$thiz.ke.t()) && ($uC($thiz.ke.jD(false)) === ch)))) { $thiz.ya = true; - $thiz.ke.wq(); + $thiz.ke.wr(); } } /** @constructor */ @@ -65611,7 +65617,7 @@ $p.c = (function() { }); $p.a9 = (function() { if ((this.pQ === null)) { - this.pQ = this.wM(); + this.pQ = this.wN(); } return this.pQ; }); @@ -65635,7 +65641,7 @@ $p.M = (function() { if ($x_1) { this.pQ = this.IU(); } else { - this.pQ = this.wM(); + this.pQ = this.wN(); } return result; }); @@ -65714,7 +65720,7 @@ $p.Ts = (function(s1, s2) { if (((this.dT(s1) <= 1) || (this.dT(s2) <= 1))) { var c1 = this.dT((("" + s1) + s2)); var c2 = this.dT(((s1 + "_") + s2)); - return ((this.dT(((s1 + $cToS($m_jl_Character$().wV(s2.charCodeAt(0)))) + $m_sc_StringOps$().iJ(s2, 1, s2.length))) > c1) ? new $c_s_Some(((s1 + $cToS($m_jl_Character$().wV(s2.charCodeAt(0)))) + $m_sc_StringOps$().iJ(s2, 1, s2.length))) : ((c1 > c2) ? new $c_s_Some((("" + s1) + s2)) : ((c1 < c2) ? new $c_s_Some(((s1 + "_") + s2)) : $m_s_None$()))); + return ((this.dT(((s1 + $cToS($m_jl_Character$().wW(s2.charCodeAt(0)))) + $m_sc_StringOps$().iI(s2, 1, s2.length))) > c1) ? new $c_s_Some(((s1 + $cToS($m_jl_Character$().wW(s2.charCodeAt(0)))) + $m_sc_StringOps$().iI(s2, 1, s2.length))) : ((c1 > c2) ? new $c_s_Some((("" + s1) + s2)) : ((c1 < c2) ? new $c_s_Some(((s1 + "_") + s2)) : $m_s_None$()))); } else { return $m_s_None$(); } @@ -65743,8 +65749,8 @@ $p.Vq = (function(bracket) { } } }); -$p.wM = (function() { - if ((this.D.iH() > 0)) { +$p.wN = (function() { + if ((this.D.iG() > 0)) { var x1 = this.D.gT.hI(this.D.am(0)); var x = $m_Ltigerpython_parser_lexer_CatCodes$().nr; if (((x === null) ? (x1 === null) : x.b(x1))) { @@ -65769,7 +65775,7 @@ $p.wM = (function() { if (((x$7 === null) ? (x1 === null) : x$7.b(x1))) { var pos = this.D.aB; this.D.Jm(); - return ((pos === this.s1) ? new $c_Ltigerpython_parser_lexer_Token(pos, 0, $m_Ltigerpython_parser_lexer_TokenType$().ye) : this.wM()); + return ((pos === this.s1) ? new $c_Ltigerpython_parser_lexer_Token(pos, 0, $m_Ltigerpython_parser_lexer_TokenType$().ye) : this.wN()); } else { var x$9 = $m_Ltigerpython_parser_lexer_CatCodes$().y7; if (((x$9 === null) ? (x1 === null) : x$9.b(x1))) { @@ -65868,7 +65874,7 @@ $p.wM = (function() { if (((x$19 === null) ? (x1 === null) : x$19.b(x1))) { this.D.hL(1); this.D.I1(); - return this.wM(); + return this.wN(); } else { var x$21 = $m_Ltigerpython_parser_lexer_CatCodes$().s0; if (((x$21 === null) ? (x1 === null) : x$21.b(x1))) { @@ -65958,7 +65964,7 @@ $p.wM = (function() { } else { var x$25 = $m_Ltigerpython_parser_lexer_CatCodes$().B5; if (((x$25 === null) ? (x1 === null) : x$25.b(x1))) { - return ($m_jl_Character$().dV(this.D.am(1)) ? this.Jd() : (this.D.wH(0) ? $p_Ltigerpython_parser_lexer_Lexer__makeToken__I__Ltigerpython_parser_lexer_TokenType__Ltigerpython_parser_lexer_Token(this, 3, $m_Ltigerpython_parser_lexer_TokenType$().lq) : $p_Ltigerpython_parser_lexer_Lexer__makeToken__I__Ltigerpython_parser_lexer_TokenType__Ltigerpython_parser_lexer_Token(this, 1, $m_Ltigerpython_parser_lexer_TokenType$().dv))); + return ($m_jl_Character$().dV(this.D.am(1)) ? this.Jd() : (this.D.wI(0) ? $p_Ltigerpython_parser_lexer_Lexer__makeToken__I__Ltigerpython_parser_lexer_TokenType__Ltigerpython_parser_lexer_Token(this, 3, $m_Ltigerpython_parser_lexer_TokenType$().lq) : $p_Ltigerpython_parser_lexer_Lexer__makeToken__I__Ltigerpython_parser_lexer_TokenType__Ltigerpython_parser_lexer_Token(this, 1, $m_Ltigerpython_parser_lexer_TokenType$().dv))); } else { var x$27 = $m_Ltigerpython_parser_lexer_CatCodes$().y9; if (((x$27 === null) ? (x1 === null) : x$27.b(x1))) { @@ -65968,12 +65974,12 @@ $p.wM = (function() { if (((x$29 === null) ? (x1 === null) : x$29.b(x1))) { var pos$3$1 = this.D.aB; this.D.hL(1); - return ((pos$3$1 === this.s1) ? new $c_Ltigerpython_parser_lexer_Token(pos$3$1, 0, $m_Ltigerpython_parser_lexer_TokenType$().ye) : this.wM()); + return ((pos$3$1 === this.s1) ? new $c_Ltigerpython_parser_lexer_Token(pos$3$1, 0, $m_Ltigerpython_parser_lexer_TokenType$().ye) : this.wN()); } else { var x$31 = $m_Ltigerpython_parser_lexer_CatCodes$().B6; if (((x$31 === null) ? (x1 === null) : x$31.b(x1))) { this.D.hL(1); - return this.wM(); + return this.wN(); } else { if (((this.D.am(0) === 0) && (this.D.am(0) === 0))) { var this$53 = this.ev; @@ -66002,7 +66008,7 @@ $p.wM = (function() { } } } else { - return ((((this.D.iH() === 0) && (this.D.aB === this.s1)) && this.D.VO()) ? new $c_Ltigerpython_parser_lexer_Token(this.D.hL(1), 0, $m_Ltigerpython_parser_lexer_TokenType$().ye) : null); + return ((((this.D.iG() === 0) && (this.D.aB === this.s1)) && this.D.VO()) ? new $c_Ltigerpython_parser_lexer_Token(this.D.hL(1), 0, $m_Ltigerpython_parser_lexer_TokenType$().ye) : null); } }); $p.IU = (function() { @@ -66026,7 +66032,7 @@ $p.IU = (function() { } else { var x$5 = $m_Ltigerpython_parser_lexer_CatCodes$().G1; if (((x$5 === null) ? (x1 === null) : x$5.b(x1))) { - this.D.hL(this.D.iH()); + this.D.hL(this.D.iG()); var result = null; } else { var ch = this.D.UU(len); @@ -66349,12 +66355,12 @@ $p.Dh = (function(current) { } }); $p.Xx = (function(delimiter, current) { - if (this.D.wH(current)) { + if (this.D.wI(current)) { var isFStr = $p_Ltigerpython_parser_lexer_Lexer__isFString__I__Z(this, current); var i = ((3 + current) | 0); while (true) { var x1 = this.D.am(i); - if (((delimiter === x1) && this.D.wH(i))) { + if (((delimiter === x1) && this.D.wI(i))) { return ((3 + i) | 0); } else if ((x1 === 0)) { return i; @@ -66386,7 +66392,7 @@ $p.Xx = (function(delimiter, current) { } }); $p.Rv = (function(prefixLen) { - if (this.D.wH(prefixLen)) { + if (this.D.wI(prefixLen)) { var isFStr = $p_Ltigerpython_parser_lexer_Lexer__isFString__I__Z(this, prefixLen); var delimiter = this.D.am(prefixLen); var i = ((3 + prefixLen) | 0); @@ -66396,7 +66402,7 @@ $p.Rv = (function(prefixLen) { i = ((1 + i) | 0); var $x_1 = true; } else if ((x1 !== 0)) { - if (((delimiter === x1) && this.D.wH(i))) { + if (((delimiter === x1) && this.D.wI(i))) { i = ((3 + i) | 0); var $x_1 = false; } else if ((!((x1 === 123) && isFStr))) { @@ -66414,7 +66420,7 @@ $p.Rv = (function(prefixLen) { break; } } - if ((((i === ((3 + prefixLen) | 0)) || (this.D.am((((-1) + i) | 0)) !== delimiter)) || (!this.D.wH((((-3) + i) | 0))))) { + if ((((i === ((3 + prefixLen) | 0)) || (this.D.am((((-1) + i) | 0)) !== delimiter)) || (!this.D.wI((((-3) + i) | 0))))) { var this$2 = this.ev; var pos = this.D.aB; var code = $m_Ltigerpython_parser_errors_ErrorCode$().lp; @@ -66557,7 +66563,7 @@ var $d_Ltigerpython_parser_lexer_Lexer = new $TypeData().i($c_Ltigerpython_parse e: 1 })); function $p_Ltigerpython_parser_lexer_TokenBuffer__lineFromPos__I__I($thiz, pos) { - if (($thiz.v1 !== null)) { + if (($thiz.v2 !== null)) { var elem = 0; elem = 0; var isEmpty = (pos <= 0); @@ -66566,7 +66572,7 @@ function $p_Ltigerpython_parser_lexer_TokenBuffer__lineFromPos__I__I($thiz, pos) var i = 0; while (true) { var v1 = i; - if (($dp_charAt__I__C($thiz.v1, v1) === 10)) { + if (($dp_charAt__I__C($thiz.v2, v1) === 10)) { elem = ((1 + elem) | 0); } if ((i === scala$collection$immutable$Range$$lastElement)) { @@ -66582,11 +66588,11 @@ function $p_Ltigerpython_parser_lexer_TokenBuffer__lineFromPos__I__I($thiz, pos) } /** @constructor */ function $c_Ltigerpython_parser_lexer_TokenBuffer(tokenSource, textSource, errorHandler) { - this.v1 = null; + this.v2 = null; this.hy = null; this.aJ = null; this.aG = 0; - this.v1 = textSource; + this.v2 = textSource; this.hy = errorHandler; this.aJ = tokenSource; this.aG = 0; @@ -66630,7 +66636,7 @@ $p.T = (function() { $p.c = (function() { return (this.aG < this.aJ.g()); }); -$p.iH = (function() { +$p.iG = (function() { return ((this.aJ.g() - this.aG) | 0); }); $p.a9 = (function() { @@ -66718,7 +66724,7 @@ $p.bq = (function(tokenType) { this.aG = ((1 + this.aG) | 0); return true; } else { - var x$6 = $m_Ltigerpython_parser_lexer_TokenType$().a8; + var x$6 = $m_Ltigerpython_parser_lexer_TokenType$().a7; if ((tokenType === x$6)) { var this$7 = this.c2(); var $x_3 = $f_sc_SeqOps__contains__O__Z(new $c_sjsr_WrappedVarArgs([$m_Ltigerpython_parser_lexer_TokenType$().f6, $m_Ltigerpython_parser_lexer_TokenType$().dv]), this$7); @@ -66726,12 +66732,12 @@ $p.bq = (function(tokenType) { var $x_3 = false; } if ($x_3) { - this.hy.l(this.m(), $p_Ltigerpython_parser_lexer_TokenBuffer__lineFromPos__I__I(this, this.m()), $m_Ltigerpython_parser_errors_ErrorCode$().B1, new $c_sjsr_WrappedVarArgs([tokenType.io, this.c2().io])); + this.hy.l(this.m(), $p_Ltigerpython_parser_lexer_TokenBuffer__lineFromPos__I__I(this, this.m()), $m_Ltigerpython_parser_errors_ErrorCode$().B1, new $c_sjsr_WrappedVarArgs([tokenType.im, this.c2().im])); } else { - var x$8 = $m_Ltigerpython_parser_lexer_TokenType$().a8; + var x$8 = $m_Ltigerpython_parser_lexer_TokenType$().a7; if ((tokenType === x$8)) { var x$9 = this.aJ.ge().o; - var x$10 = $m_Ltigerpython_parser_lexer_TokenType$().a8; + var x$10 = $m_Ltigerpython_parser_lexer_TokenType$().a7; var $x_4 = (x$9 === x$10); } else { var $x_4 = false; @@ -66741,8 +66747,8 @@ $p.bq = (function(tokenType) { } else { this.hy.l(this.m(), $p_Ltigerpython_parser_lexer_TokenBuffer__lineFromPos__I__I(this, this.m()), $m_Ltigerpython_parser_errors_ErrorCode$().hx, new $c_sjsr_WrappedVarArgs([tokenType, this.a9()])); } - var x$12 = $m_Ltigerpython_parser_lexer_TokenType$().a8; - if (((tokenType === x$12) && (this.iH() === 1))) { + var x$12 = $m_Ltigerpython_parser_lexer_TokenType$().a7; + if (((tokenType === x$12) && (this.iG() === 1))) { var this$20 = this.a9().o; var $x_5 = $f_sc_SeqOps__contains__O__Z(new $c_sjsr_WrappedVarArgs([$m_Ltigerpython_parser_lexer_TokenType$().dv, $m_Ltigerpython_parser_lexer_TokenType$().aq, $m_Ltigerpython_parser_lexer_TokenType$().f6]), this$20); } else { @@ -66754,7 +66760,7 @@ $p.bq = (function(tokenType) { } } } else { - var x$14 = $m_Ltigerpython_parser_lexer_TokenType$().a8; + var x$14 = $m_Ltigerpython_parser_lexer_TokenType$().a7; if ((tokenType === x$14)) { this.hy.l(this.m(), $p_Ltigerpython_parser_lexer_TokenBuffer__lineFromPos__I__I(this, this.m()), $m_Ltigerpython_parser_errors_ErrorCode$().n0, $m_sci_Nil$()); } else { @@ -66802,7 +66808,7 @@ $p.QK = (function(tokenTypes) { $p.ky = (function() { if (this.c()) { var x = this.aJ.ge().o; - var x$2 = $m_Ltigerpython_parser_lexer_TokenType$().a8; + var x$2 = $m_Ltigerpython_parser_lexer_TokenType$().a7; return (x === x$2); } else { return false; @@ -66924,7 +66930,7 @@ $p.Vy = (function(startIndex, name) { return false; } } else { - var x$13 = $m_Ltigerpython_parser_lexer_TokenType$().a8; + var x$13 = $m_Ltigerpython_parser_lexer_TokenType$().a7; if (((x$13 === x1) && (depth === 0))) { return false; } else { @@ -66995,7 +67001,7 @@ $p.zE = (function(startIndex, tokenType) { return false; } } else { - var x$13 = $m_Ltigerpython_parser_lexer_TokenType$().a8; + var x$13 = $m_Ltigerpython_parser_lexer_TokenType$().a7; if (((x$13 === x1) && (depth === 0))) { return false; } else { @@ -67063,7 +67069,7 @@ $p.Q1 = (function(startIndex) { $p.Vt = (function() { return (this.c() && (this.a9().o.fx === $m_Ltigerpython_parser_lexer_TokenType$().aP)); }); -$p.wG = (function() { +$p.wH = (function() { return ((!this.c()) || $m_sci_Seq$().js(new $c_sjsr_WrappedVarArgs([$m_Ltigerpython_parser_lexer_TokenType$().ai, $m_Ltigerpython_parser_lexer_TokenType$().aW, $m_Ltigerpython_parser_lexer_TokenType$().b3])).an(this.a9().o)); }); $p.QJ = (function(names) { @@ -67104,7 +67110,7 @@ $p.I6 = (function() { } } if ($x_1) { - this.hy.l(this.aJ.s(this.aG).x, $p_Ltigerpython_parser_lexer_TokenBuffer__lineFromPos__I__I(this, this.aJ.s(this.aG).x), $m_Ltigerpython_parser_errors_ErrorCode$().il, new $c_sjsr_WrappedVarArgs([this.aJ.s(this.aG)])); + this.hy.l(this.aJ.s(this.aG).x, $p_Ltigerpython_parser_lexer_TokenBuffer__lineFromPos__I__I(this, this.aJ.s(this.aG).x), $m_Ltigerpython_parser_errors_ErrorCode$().j5, new $c_sjsr_WrappedVarArgs([this.aJ.s(this.aG)])); } else { this.hy.l(this.aJ.s(this.aG).x, $p_Ltigerpython_parser_lexer_TokenBuffer__lineFromPos__I__I(this, this.aJ.s(this.aG).x), $m_Ltigerpython_parser_errors_ErrorCode$().bC, new $c_sjsr_WrappedVarArgs([this.aJ.s(this.aG)])); } @@ -67172,7 +67178,7 @@ $p.d0 = (function(tokenType) { if ($x_1) { token.ah = this.a9().ah; } else { - token.ah = this.a9().o.io; + token.ah = this.a9().o.im; } } this.t9(token); @@ -67206,10 +67212,10 @@ var $d_Ltigerpython_parser_lexer_TokenBuffer = new $TypeData().i($c_Ltigerpython /** @constructor */ function $c_Ltigerpython_parser_parsing_ArgumentParser$CompArgument(outer, pos, value) { this.gC = null; - this.vd = 0; - this.ve = null; - this.vd = pos; - this.ve = value; + this.ve = 0; + this.vf = null; + this.ve = pos; + this.vf = value; $ct_Ltigerpython_parser_parsing_ArgumentParser$Argument__Ltigerpython_parser_parsing_ArgumentParser__(this, outer); } $p = $c_Ltigerpython_parser_parsing_ArgumentParser$CompArgument.prototype = new $h_Ltigerpython_parser_parsing_ArgumentParser$Argument(); @@ -67227,11 +67233,11 @@ $p.z = (function() { $p.A = (function(x$1) { switch (x$1) { case 0: { - return this.vd; + return this.ve; break; } case 1: { - return this.ve; + return this.vf; break; } default: { @@ -67245,8 +67251,8 @@ $p.B = (function() { $p.q = (function() { var acc = (-889275714); acc = $m_sr_Statics$().e(acc, $f_T__hashCode__I("CompArgument")); - acc = $m_sr_Statics$().e(acc, this.vd); - acc = $m_sr_Statics$().e(acc, $m_sr_Statics$().n(this.ve)); + acc = $m_sr_Statics$().e(acc, this.ve); + acc = $m_sr_Statics$().e(acc, $m_sr_Statics$().n(this.vf)); return $m_sr_Statics$().H(acc, 2); }); $p.j = (function() { @@ -67257,9 +67263,9 @@ $p.b = (function(x$1) { return true; } else if (((x$1 instanceof $c_Ltigerpython_parser_parsing_ArgumentParser$CompArgument) && (x$1.gC === this.gC))) { var CompArgument$1 = x$1; - if ((this.vd === CompArgument$1.vd)) { - var x = this.ve; - var x$2 = CompArgument$1.ve; + if ((this.ve === CompArgument$1.ve)) { + var x = this.vf; + var x$2 = CompArgument$1.vf; return ((x === null) ? (x$2 === null) : x.b(x$2)); } else { return false; @@ -67281,16 +67287,16 @@ var $d_Ltigerpython_parser_parsing_ArgumentParser$CompArgument = new $TypeData() /** @constructor */ function $c_Ltigerpython_parser_parsing_ArgumentParser$DefaultParameter(outer, pos, name, default$1, defaultAsString, annot) { this.db = null; - this.vj = 0; + this.vk = 0; + this.vj = null; + this.vh = null; this.vi = null; this.vg = null; - this.vh = null; - this.vf = null; - this.vj = pos; - this.vi = name; - this.vg = default$1; - this.vh = defaultAsString; - this.vf = annot; + this.vk = pos; + this.vj = name; + this.vh = default$1; + this.vi = defaultAsString; + this.vg = annot; $ct_Ltigerpython_parser_parsing_ArgumentParser$Parameter__Ltigerpython_parser_parsing_ArgumentParser__(this, outer); } $p = $c_Ltigerpython_parser_parsing_ArgumentParser$DefaultParameter.prototype = new $h_Ltigerpython_parser_parsing_ArgumentParser$Parameter(); @@ -67308,23 +67314,23 @@ $p.z = (function() { $p.A = (function(x$1) { switch (x$1) { case 0: { - return this.vj; + return this.vk; break; } case 1: { - return this.vi; + return this.vj; break; } case 2: { - return this.vg; + return this.vh; break; } case 3: { - return this.vh; + return this.vi; break; } case 4: { - return this.vf; + return this.vg; break; } default: { @@ -67338,11 +67344,11 @@ $p.B = (function() { $p.q = (function() { var acc = (-889275714); acc = $m_sr_Statics$().e(acc, $f_T__hashCode__I("DefaultParameter")); - acc = $m_sr_Statics$().e(acc, this.vj); + acc = $m_sr_Statics$().e(acc, this.vk); + acc = $m_sr_Statics$().e(acc, $m_sr_Statics$().n(this.vj)); + acc = $m_sr_Statics$().e(acc, $m_sr_Statics$().n(this.vh)); acc = $m_sr_Statics$().e(acc, $m_sr_Statics$().n(this.vi)); acc = $m_sr_Statics$().e(acc, $m_sr_Statics$().n(this.vg)); - acc = $m_sr_Statics$().e(acc, $m_sr_Statics$().n(this.vh)); - acc = $m_sr_Statics$().e(acc, $m_sr_Statics$().n(this.vf)); return $m_sr_Statics$().H(acc, 5); }); $p.j = (function() { @@ -67353,10 +67359,10 @@ $p.b = (function(x$1) { return true; } else if (((x$1 instanceof $c_Ltigerpython_parser_parsing_ArgumentParser$DefaultParameter) && (x$1.db === this.db))) { var DefaultParameter$1 = x$1; - if ((this.vj === DefaultParameter$1.vj)) { - if ((this.vi === DefaultParameter$1.vi)) { - var x = this.vg; - var x$2 = DefaultParameter$1.vg; + if ((this.vk === DefaultParameter$1.vk)) { + if ((this.vj === DefaultParameter$1.vj)) { + var x = this.vh; + var x$2 = DefaultParameter$1.vh; var $x_1 = ((x === null) ? (x$2 === null) : x.b(x$2)); } else { var $x_1 = false; @@ -67365,9 +67371,9 @@ $p.b = (function(x$1) { var $x_1 = false; } if ($x_1) { - if ((this.vh === DefaultParameter$1.vh)) { - var x$3 = this.vf; - var x$4 = DefaultParameter$1.vf; + if ((this.vi === DefaultParameter$1.vi)) { + var x$3 = this.vg; + var x$4 = DefaultParameter$1.vg; return ((x$3 === null) ? (x$4 === null) : x$3.b(x$4)); } else { return false; @@ -67392,14 +67398,14 @@ var $d_Ltigerpython_parser_parsing_ArgumentParser$DefaultParameter = new $TypeDa /** @constructor */ function $c_Ltigerpython_parser_parsing_ArgumentParser$DefaultTupleParameter(outer, pos, name, default$1, defaultAsString) { this.db = null; - this.vn = 0; - this.vm = null; - this.vk = null; + this.vo = 0; + this.vn = null; this.vl = null; - this.vn = pos; - this.vm = name; - this.vk = default$1; - this.vl = defaultAsString; + this.vm = null; + this.vo = pos; + this.vn = name; + this.vl = default$1; + this.vm = defaultAsString; $ct_Ltigerpython_parser_parsing_ArgumentParser$Parameter__Ltigerpython_parser_parsing_ArgumentParser__(this, outer); } $p = $c_Ltigerpython_parser_parsing_ArgumentParser$DefaultTupleParameter.prototype = new $h_Ltigerpython_parser_parsing_ArgumentParser$Parameter(); @@ -67417,19 +67423,19 @@ $p.z = (function() { $p.A = (function(x$1) { switch (x$1) { case 0: { - return this.vn; + return this.vo; break; } case 1: { - return this.vm; + return this.vn; break; } case 2: { - return this.vk; + return this.vl; break; } case 3: { - return this.vl; + return this.vm; break; } default: { @@ -67443,10 +67449,10 @@ $p.B = (function() { $p.q = (function() { var acc = (-889275714); acc = $m_sr_Statics$().e(acc, $f_T__hashCode__I("DefaultTupleParameter")); - acc = $m_sr_Statics$().e(acc, this.vn); - acc = $m_sr_Statics$().e(acc, $m_sr_Statics$().n(this.vm)); - acc = $m_sr_Statics$().e(acc, $m_sr_Statics$().n(this.vk)); + acc = $m_sr_Statics$().e(acc, this.vo); + acc = $m_sr_Statics$().e(acc, $m_sr_Statics$().n(this.vn)); acc = $m_sr_Statics$().e(acc, $m_sr_Statics$().n(this.vl)); + acc = $m_sr_Statics$().e(acc, $m_sr_Statics$().n(this.vm)); return $m_sr_Statics$().H(acc, 4); }); $p.j = (function() { @@ -67457,18 +67463,18 @@ $p.b = (function(x$1) { return true; } else if (((x$1 instanceof $c_Ltigerpython_parser_parsing_ArgumentParser$DefaultTupleParameter) && (x$1.db === this.db))) { var DefaultTupleParameter$1 = x$1; - if ((this.vn === DefaultTupleParameter$1.vn)) { - var x = this.vm; - var x$2 = DefaultTupleParameter$1.vm; + if ((this.vo === DefaultTupleParameter$1.vo)) { + var x = this.vn; + var x$2 = DefaultTupleParameter$1.vn; var $x_1 = ((x === null) ? (x$2 === null) : x.b(x$2)); } else { var $x_1 = false; } if ($x_1) { - var x$3 = this.vk; - var x$4 = DefaultTupleParameter$1.vk; + var x$3 = this.vl; + var x$4 = DefaultTupleParameter$1.vl; if (((x$3 === null) ? (x$4 === null) : x$3.b(x$4))) { - return (this.vl === DefaultTupleParameter$1.vl); + return (this.vm === DefaultTupleParameter$1.vm); } else { return false; } @@ -67492,10 +67498,10 @@ var $d_Ltigerpython_parser_parsing_ArgumentParser$DefaultTupleParameter = new $T /** @constructor */ function $c_Ltigerpython_parser_parsing_ArgumentParser$KeywordArgument(outer, pos, value) { this.gC = null; - this.vo = 0; - this.vp = null; - this.vo = pos; - this.vp = value; + this.vp = 0; + this.vq = null; + this.vp = pos; + this.vq = value; $ct_Ltigerpython_parser_parsing_ArgumentParser$Argument__Ltigerpython_parser_parsing_ArgumentParser__(this, outer); } $p = $c_Ltigerpython_parser_parsing_ArgumentParser$KeywordArgument.prototype = new $h_Ltigerpython_parser_parsing_ArgumentParser$Argument(); @@ -67513,11 +67519,11 @@ $p.z = (function() { $p.A = (function(x$1) { switch (x$1) { case 0: { - return this.vo; + return this.vp; break; } case 1: { - return this.vp; + return this.vq; break; } default: { @@ -67531,8 +67537,8 @@ $p.B = (function() { $p.q = (function() { var acc = (-889275714); acc = $m_sr_Statics$().e(acc, $f_T__hashCode__I("KeywordArgument")); - acc = $m_sr_Statics$().e(acc, this.vo); - acc = $m_sr_Statics$().e(acc, $m_sr_Statics$().n(this.vp)); + acc = $m_sr_Statics$().e(acc, this.vp); + acc = $m_sr_Statics$().e(acc, $m_sr_Statics$().n(this.vq)); return $m_sr_Statics$().H(acc, 2); }); $p.j = (function() { @@ -67543,9 +67549,9 @@ $p.b = (function(x$1) { return true; } else if (((x$1 instanceof $c_Ltigerpython_parser_parsing_ArgumentParser$KeywordArgument) && (x$1.gC === this.gC))) { var KeywordArgument$1 = x$1; - if ((this.vo === KeywordArgument$1.vo)) { - var x = this.vp; - var x$2 = KeywordArgument$1.vp; + if ((this.vp === KeywordArgument$1.vp)) { + var x = this.vq; + var x$2 = KeywordArgument$1.vq; return ((x === null) ? (x$2 === null) : x.b(x$2)); } else { return false; @@ -67567,12 +67573,12 @@ var $d_Ltigerpython_parser_parsing_ArgumentParser$KeywordArgument = new $TypeDat /** @constructor */ function $c_Ltigerpython_parser_parsing_ArgumentParser$KeywordParameter(outer, pos, name, annot) { this.db = null; - this.vs = 0; + this.vt = 0; + this.vs = null; this.vr = null; - this.vq = null; - this.vs = pos; - this.vr = name; - this.vq = annot; + this.vt = pos; + this.vs = name; + this.vr = annot; $ct_Ltigerpython_parser_parsing_ArgumentParser$Parameter__Ltigerpython_parser_parsing_ArgumentParser__(this, outer); } $p = $c_Ltigerpython_parser_parsing_ArgumentParser$KeywordParameter.prototype = new $h_Ltigerpython_parser_parsing_ArgumentParser$Parameter(); @@ -67590,15 +67596,15 @@ $p.z = (function() { $p.A = (function(x$1) { switch (x$1) { case 0: { - return this.vs; + return this.vt; break; } case 1: { - return this.vr; + return this.vs; break; } case 2: { - return this.vq; + return this.vr; break; } default: { @@ -67612,9 +67618,9 @@ $p.B = (function() { $p.q = (function() { var acc = (-889275714); acc = $m_sr_Statics$().e(acc, $f_T__hashCode__I("KeywordParameter")); - acc = $m_sr_Statics$().e(acc, this.vs); + acc = $m_sr_Statics$().e(acc, this.vt); + acc = $m_sr_Statics$().e(acc, $m_sr_Statics$().n(this.vs)); acc = $m_sr_Statics$().e(acc, $m_sr_Statics$().n(this.vr)); - acc = $m_sr_Statics$().e(acc, $m_sr_Statics$().n(this.vq)); return $m_sr_Statics$().H(acc, 3); }); $p.j = (function() { @@ -67625,9 +67631,9 @@ $p.b = (function(x$1) { return true; } else if (((x$1 instanceof $c_Ltigerpython_parser_parsing_ArgumentParser$KeywordParameter) && (x$1.db === this.db))) { var KeywordParameter$1 = x$1; - if (((this.vs === KeywordParameter$1.vs) && (this.vr === KeywordParameter$1.vr))) { - var x = this.vq; - var x$2 = KeywordParameter$1.vq; + if (((this.vt === KeywordParameter$1.vt) && (this.vs === KeywordParameter$1.vs))) { + var x = this.vr; + var x$2 = KeywordParameter$1.vr; return ((x === null) ? (x$2 === null) : x.b(x$2)); } else { return false; @@ -67649,12 +67655,12 @@ var $d_Ltigerpython_parser_parsing_ArgumentParser$KeywordParameter = new $TypeDa /** @constructor */ function $c_Ltigerpython_parser_parsing_ArgumentParser$NamedArgument(outer, pos, name, value) { this.gC = null; - this.vu = 0; - this.vt = null; - this.vv = null; - this.vu = pos; - this.vt = name; - this.vv = value; + this.vv = 0; + this.vu = null; + this.vw = null; + this.vv = pos; + this.vu = name; + this.vw = value; $ct_Ltigerpython_parser_parsing_ArgumentParser$Argument__Ltigerpython_parser_parsing_ArgumentParser__(this, outer); } $p = $c_Ltigerpython_parser_parsing_ArgumentParser$NamedArgument.prototype = new $h_Ltigerpython_parser_parsing_ArgumentParser$Argument(); @@ -67672,15 +67678,15 @@ $p.z = (function() { $p.A = (function(x$1) { switch (x$1) { case 0: { - return this.vu; + return this.vv; break; } case 1: { - return this.vt; + return this.vu; break; } case 2: { - return this.vv; + return this.vw; break; } default: { @@ -67694,9 +67700,9 @@ $p.B = (function() { $p.q = (function() { var acc = (-889275714); acc = $m_sr_Statics$().e(acc, $f_T__hashCode__I("NamedArgument")); - acc = $m_sr_Statics$().e(acc, this.vu); - acc = $m_sr_Statics$().e(acc, $m_sr_Statics$().n(this.vt)); - acc = $m_sr_Statics$().e(acc, $m_sr_Statics$().n(this.vv)); + acc = $m_sr_Statics$().e(acc, this.vv); + acc = $m_sr_Statics$().e(acc, $m_sr_Statics$().n(this.vu)); + acc = $m_sr_Statics$().e(acc, $m_sr_Statics$().n(this.vw)); return $m_sr_Statics$().H(acc, 3); }); $p.j = (function() { @@ -67707,16 +67713,16 @@ $p.b = (function(x$1) { return true; } else if (((x$1 instanceof $c_Ltigerpython_parser_parsing_ArgumentParser$NamedArgument) && (x$1.gC === this.gC))) { var NamedArgument$1 = x$1; - if ((this.vu === NamedArgument$1.vu)) { - var x = this.vt; - var x$2 = NamedArgument$1.vt; + if ((this.vv === NamedArgument$1.vv)) { + var x = this.vu; + var x$2 = NamedArgument$1.vu; var $x_1 = ((x === null) ? (x$2 === null) : x.b(x$2)); } else { var $x_1 = false; } if ($x_1) { - var x$3 = this.vv; - var x$4 = NamedArgument$1.vv; + var x$3 = this.vw; + var x$4 = NamedArgument$1.vw; return ((x$3 === null) ? (x$4 === null) : x$3.b(x$4)); } else { return false; @@ -67738,10 +67744,10 @@ var $d_Ltigerpython_parser_parsing_ArgumentParser$NamedArgument = new $TypeData( /** @constructor */ function $c_Ltigerpython_parser_parsing_ArgumentParser$SimpleArgument(outer, pos, value) { this.gC = null; - this.vw = 0; - this.vx = null; - this.vw = pos; - this.vx = value; + this.vx = 0; + this.vy = null; + this.vx = pos; + this.vy = value; $ct_Ltigerpython_parser_parsing_ArgumentParser$Argument__Ltigerpython_parser_parsing_ArgumentParser__(this, outer); } $p = $c_Ltigerpython_parser_parsing_ArgumentParser$SimpleArgument.prototype = new $h_Ltigerpython_parser_parsing_ArgumentParser$Argument(); @@ -67759,11 +67765,11 @@ $p.z = (function() { $p.A = (function(x$1) { switch (x$1) { case 0: { - return this.vw; + return this.vx; break; } case 1: { - return this.vx; + return this.vy; break; } default: { @@ -67777,8 +67783,8 @@ $p.B = (function() { $p.q = (function() { var acc = (-889275714); acc = $m_sr_Statics$().e(acc, $f_T__hashCode__I("SimpleArgument")); - acc = $m_sr_Statics$().e(acc, this.vw); - acc = $m_sr_Statics$().e(acc, $m_sr_Statics$().n(this.vx)); + acc = $m_sr_Statics$().e(acc, this.vx); + acc = $m_sr_Statics$().e(acc, $m_sr_Statics$().n(this.vy)); return $m_sr_Statics$().H(acc, 2); }); $p.j = (function() { @@ -67789,9 +67795,9 @@ $p.b = (function(x$1) { return true; } else if (((x$1 instanceof $c_Ltigerpython_parser_parsing_ArgumentParser$SimpleArgument) && (x$1.gC === this.gC))) { var SimpleArgument$1 = x$1; - if ((this.vw === SimpleArgument$1.vw)) { - var x = this.vx; - var x$2 = SimpleArgument$1.vx; + if ((this.vx === SimpleArgument$1.vx)) { + var x = this.vy; + var x$2 = SimpleArgument$1.vy; return ((x === null) ? (x$2 === null) : x.b(x$2)); } else { return false; @@ -67813,12 +67819,12 @@ var $d_Ltigerpython_parser_parsing_ArgumentParser$SimpleArgument = new $TypeData /** @constructor */ function $c_Ltigerpython_parser_parsing_ArgumentParser$SimpleParameter(outer, pos, name, annot) { this.db = null; - this.vA = 0; + this.vB = 0; + this.vA = null; this.vz = null; - this.vy = null; - this.vA = pos; - this.vz = name; - this.vy = annot; + this.vB = pos; + this.vA = name; + this.vz = annot; $ct_Ltigerpython_parser_parsing_ArgumentParser$Parameter__Ltigerpython_parser_parsing_ArgumentParser__(this, outer); } $p = $c_Ltigerpython_parser_parsing_ArgumentParser$SimpleParameter.prototype = new $h_Ltigerpython_parser_parsing_ArgumentParser$Parameter(); @@ -67836,15 +67842,15 @@ $p.z = (function() { $p.A = (function(x$1) { switch (x$1) { case 0: { - return this.vA; + return this.vB; break; } case 1: { - return this.vz; + return this.vA; break; } case 2: { - return this.vy; + return this.vz; break; } default: { @@ -67858,9 +67864,9 @@ $p.B = (function() { $p.q = (function() { var acc = (-889275714); acc = $m_sr_Statics$().e(acc, $f_T__hashCode__I("SimpleParameter")); - acc = $m_sr_Statics$().e(acc, this.vA); + acc = $m_sr_Statics$().e(acc, this.vB); + acc = $m_sr_Statics$().e(acc, $m_sr_Statics$().n(this.vA)); acc = $m_sr_Statics$().e(acc, $m_sr_Statics$().n(this.vz)); - acc = $m_sr_Statics$().e(acc, $m_sr_Statics$().n(this.vy)); return $m_sr_Statics$().H(acc, 3); }); $p.j = (function() { @@ -67871,9 +67877,9 @@ $p.b = (function(x$1) { return true; } else if (((x$1 instanceof $c_Ltigerpython_parser_parsing_ArgumentParser$SimpleParameter) && (x$1.db === this.db))) { var SimpleParameter$1 = x$1; - if (((this.vA === SimpleParameter$1.vA) && (this.vz === SimpleParameter$1.vz))) { - var x = this.vy; - var x$2 = SimpleParameter$1.vy; + if (((this.vB === SimpleParameter$1.vB) && (this.vA === SimpleParameter$1.vA))) { + var x = this.vz; + var x$2 = SimpleParameter$1.vz; return ((x === null) ? (x$2 === null) : x.b(x$2)); } else { return false; @@ -67895,8 +67901,8 @@ var $d_Ltigerpython_parser_parsing_ArgumentParser$SimpleParameter = new $TypeDat /** @constructor */ function $c_Ltigerpython_parser_parsing_ArgumentParser$SlashParameter(outer, pos) { this.db = null; - this.vB = 0; - this.vB = pos; + this.vC = 0; + this.vC = pos; $ct_Ltigerpython_parser_parsing_ArgumentParser$Parameter__Ltigerpython_parser_parsing_ArgumentParser__(this, outer); } $p = $c_Ltigerpython_parser_parsing_ArgumentParser$SlashParameter.prototype = new $h_Ltigerpython_parser_parsing_ArgumentParser$Parameter(); @@ -67912,7 +67918,7 @@ $p.z = (function() { return 1; }); $p.A = (function(x$1) { - return ((x$1 === 0) ? this.vB : $m_sr_Statics$().C(x$1)); + return ((x$1 === 0) ? this.vC : $m_sr_Statics$().C(x$1)); }); $p.B = (function() { return new $c_sr_ScalaRunTime$$anon$1(this); @@ -67920,7 +67926,7 @@ $p.B = (function() { $p.q = (function() { var acc = (-889275714); acc = $m_sr_Statics$().e(acc, $f_T__hashCode__I("SlashParameter")); - acc = $m_sr_Statics$().e(acc, this.vB); + acc = $m_sr_Statics$().e(acc, this.vC); return $m_sr_Statics$().H(acc, 1); }); $p.j = (function() { @@ -67931,7 +67937,7 @@ $p.b = (function(x$1) { return true; } else if (((x$1 instanceof $c_Ltigerpython_parser_parsing_ArgumentParser$SlashParameter) && (x$1.db === this.db))) { var SlashParameter$1 = x$1; - return (this.vB === SlashParameter$1.vB); + return (this.vC === SlashParameter$1.vC); } else { return false; } @@ -67949,8 +67955,8 @@ var $d_Ltigerpython_parser_parsing_ArgumentParser$SlashParameter = new $TypeData /** @constructor */ function $c_Ltigerpython_parser_parsing_ArgumentParser$StarParameter(outer, pos) { this.db = null; - this.vC = 0; - this.vC = pos; + this.vD = 0; + this.vD = pos; $ct_Ltigerpython_parser_parsing_ArgumentParser$Parameter__Ltigerpython_parser_parsing_ArgumentParser__(this, outer); } $p = $c_Ltigerpython_parser_parsing_ArgumentParser$StarParameter.prototype = new $h_Ltigerpython_parser_parsing_ArgumentParser$Parameter(); @@ -67966,7 +67972,7 @@ $p.z = (function() { return 1; }); $p.A = (function(x$1) { - return ((x$1 === 0) ? this.vC : $m_sr_Statics$().C(x$1)); + return ((x$1 === 0) ? this.vD : $m_sr_Statics$().C(x$1)); }); $p.B = (function() { return new $c_sr_ScalaRunTime$$anon$1(this); @@ -67974,7 +67980,7 @@ $p.B = (function() { $p.q = (function() { var acc = (-889275714); acc = $m_sr_Statics$().e(acc, $f_T__hashCode__I("StarParameter")); - acc = $m_sr_Statics$().e(acc, this.vC); + acc = $m_sr_Statics$().e(acc, this.vD); return $m_sr_Statics$().H(acc, 1); }); $p.j = (function() { @@ -67985,7 +67991,7 @@ $p.b = (function(x$1) { return true; } else if (((x$1 instanceof $c_Ltigerpython_parser_parsing_ArgumentParser$StarParameter) && (x$1.db === this.db))) { var StarParameter$1 = x$1; - return (this.vC === StarParameter$1.vC); + return (this.vD === StarParameter$1.vD); } else { return false; } @@ -68003,10 +68009,10 @@ var $d_Ltigerpython_parser_parsing_ArgumentParser$StarParameter = new $TypeData( /** @constructor */ function $c_Ltigerpython_parser_parsing_ArgumentParser$TupleParameter(outer, pos, dest) { this.db = null; - this.vE = 0; - this.vD = null; - this.vE = pos; - this.vD = dest; + this.vF = 0; + this.vE = null; + this.vF = pos; + this.vE = dest; $ct_Ltigerpython_parser_parsing_ArgumentParser$Parameter__Ltigerpython_parser_parsing_ArgumentParser__(this, outer); } $p = $c_Ltigerpython_parser_parsing_ArgumentParser$TupleParameter.prototype = new $h_Ltigerpython_parser_parsing_ArgumentParser$Parameter(); @@ -68024,11 +68030,11 @@ $p.z = (function() { $p.A = (function(x$1) { switch (x$1) { case 0: { - return this.vE; + return this.vF; break; } case 1: { - return this.vD; + return this.vE; break; } default: { @@ -68042,8 +68048,8 @@ $p.B = (function() { $p.q = (function() { var acc = (-889275714); acc = $m_sr_Statics$().e(acc, $f_T__hashCode__I("TupleParameter")); - acc = $m_sr_Statics$().e(acc, this.vE); - acc = $m_sr_Statics$().e(acc, $m_sr_Statics$().n(this.vD)); + acc = $m_sr_Statics$().e(acc, this.vF); + acc = $m_sr_Statics$().e(acc, $m_sr_Statics$().n(this.vE)); return $m_sr_Statics$().H(acc, 2); }); $p.j = (function() { @@ -68054,9 +68060,9 @@ $p.b = (function(x$1) { return true; } else if (((x$1 instanceof $c_Ltigerpython_parser_parsing_ArgumentParser$TupleParameter) && (x$1.db === this.db))) { var TupleParameter$1 = x$1; - if ((this.vE === TupleParameter$1.vE)) { - var x = this.vD; - var x$2 = TupleParameter$1.vD; + if ((this.vF === TupleParameter$1.vF)) { + var x = this.vE; + var x$2 = TupleParameter$1.vE; return ((x === null) ? (x$2 === null) : x.b(x$2)); } else { return false; @@ -68078,10 +68084,10 @@ var $d_Ltigerpython_parser_parsing_ArgumentParser$TupleParameter = new $TypeData /** @constructor */ function $c_Ltigerpython_parser_parsing_ArgumentParser$VarArgument(outer, pos, value) { this.gC = null; - this.vF = 0; - this.vG = null; - this.vF = pos; - this.vG = value; + this.vG = 0; + this.vH = null; + this.vG = pos; + this.vH = value; $ct_Ltigerpython_parser_parsing_ArgumentParser$Argument__Ltigerpython_parser_parsing_ArgumentParser__(this, outer); } $p = $c_Ltigerpython_parser_parsing_ArgumentParser$VarArgument.prototype = new $h_Ltigerpython_parser_parsing_ArgumentParser$Argument(); @@ -68099,11 +68105,11 @@ $p.z = (function() { $p.A = (function(x$1) { switch (x$1) { case 0: { - return this.vF; + return this.vG; break; } case 1: { - return this.vG; + return this.vH; break; } default: { @@ -68117,8 +68123,8 @@ $p.B = (function() { $p.q = (function() { var acc = (-889275714); acc = $m_sr_Statics$().e(acc, $f_T__hashCode__I("VarArgument")); - acc = $m_sr_Statics$().e(acc, this.vF); - acc = $m_sr_Statics$().e(acc, $m_sr_Statics$().n(this.vG)); + acc = $m_sr_Statics$().e(acc, this.vG); + acc = $m_sr_Statics$().e(acc, $m_sr_Statics$().n(this.vH)); return $m_sr_Statics$().H(acc, 2); }); $p.j = (function() { @@ -68129,9 +68135,9 @@ $p.b = (function(x$1) { return true; } else if (((x$1 instanceof $c_Ltigerpython_parser_parsing_ArgumentParser$VarArgument) && (x$1.gC === this.gC))) { var VarArgument$1 = x$1; - if ((this.vF === VarArgument$1.vF)) { - var x = this.vG; - var x$2 = VarArgument$1.vG; + if ((this.vG === VarArgument$1.vG)) { + var x = this.vH; + var x$2 = VarArgument$1.vH; return ((x === null) ? (x$2 === null) : x.b(x$2)); } else { return false; @@ -68153,12 +68159,12 @@ var $d_Ltigerpython_parser_parsing_ArgumentParser$VarArgument = new $TypeData(). /** @constructor */ function $c_Ltigerpython_parser_parsing_ArgumentParser$VarParameter(outer, pos, name, annot) { this.db = null; - this.vJ = 0; + this.vK = 0; + this.vJ = null; this.vI = null; - this.vH = null; - this.vJ = pos; - this.vI = name; - this.vH = annot; + this.vK = pos; + this.vJ = name; + this.vI = annot; $ct_Ltigerpython_parser_parsing_ArgumentParser$Parameter__Ltigerpython_parser_parsing_ArgumentParser__(this, outer); } $p = $c_Ltigerpython_parser_parsing_ArgumentParser$VarParameter.prototype = new $h_Ltigerpython_parser_parsing_ArgumentParser$Parameter(); @@ -68176,15 +68182,15 @@ $p.z = (function() { $p.A = (function(x$1) { switch (x$1) { case 0: { - return this.vJ; + return this.vK; break; } case 1: { - return this.vI; + return this.vJ; break; } case 2: { - return this.vH; + return this.vI; break; } default: { @@ -68198,9 +68204,9 @@ $p.B = (function() { $p.q = (function() { var acc = (-889275714); acc = $m_sr_Statics$().e(acc, $f_T__hashCode__I("VarParameter")); - acc = $m_sr_Statics$().e(acc, this.vJ); + acc = $m_sr_Statics$().e(acc, this.vK); + acc = $m_sr_Statics$().e(acc, $m_sr_Statics$().n(this.vJ)); acc = $m_sr_Statics$().e(acc, $m_sr_Statics$().n(this.vI)); - acc = $m_sr_Statics$().e(acc, $m_sr_Statics$().n(this.vH)); return $m_sr_Statics$().H(acc, 3); }); $p.j = (function() { @@ -68211,9 +68217,9 @@ $p.b = (function(x$1) { return true; } else if (((x$1 instanceof $c_Ltigerpython_parser_parsing_ArgumentParser$VarParameter) && (x$1.db === this.db))) { var VarParameter$1 = x$1; - if (((this.vJ === VarParameter$1.vJ) && (this.vI === VarParameter$1.vI))) { - var x = this.vH; - var x$2 = VarParameter$1.vH; + if (((this.vK === VarParameter$1.vK) && (this.vJ === VarParameter$1.vJ))) { + var x = this.vI; + var x$2 = VarParameter$1.vI; return ((x === null) ? (x$2 === null) : x.b(x$2)); } else { return false; @@ -68361,7 +68367,7 @@ $p.Xy = (function(indentLen) { var this$6 = $f_sc_IndexedSeqOps__head__O(result).o; if ($f_sc_SeqOps__contains__O__Z(new $c_sjsr_WrappedVarArgs([$m_Ltigerpython_parser_lexer_TokenType$().cb, $m_Ltigerpython_parser_lexer_TokenType$().ex]), this$6)) { var x$3 = $f_sc_IndexedSeqOps__last__O(result).o; - var x$4 = $m_Ltigerpython_parser_lexer_TokenType$().a8; + var x$4 = $m_Ltigerpython_parser_lexer_TokenType$().a7; var $x_1 = (x$3 === x$4); } else { var $x_1 = false; @@ -68396,7 +68402,7 @@ $p.Xy = (function(indentLen) { return new $c_Ltigerpython_parser_parsing_LineParser$Line(indentLen, $x_3, $x_2); } else { var this$17 = $f_sc_IndexedSeqOps__last__O(result).o; - if ((((!$f_sc_SeqOps__contains__O__Z(new $c_sjsr_WrappedVarArgs([$m_Ltigerpython_parser_lexer_TokenType$().aq, $m_Ltigerpython_parser_lexer_TokenType$().a8, $m_Ltigerpython_parser_lexer_TokenType$().cj, $m_Ltigerpython_parser_lexer_TokenType$().cx, $m_Ltigerpython_parser_lexer_TokenType$().bi, $m_Ltigerpython_parser_lexer_TokenType$().gU, $m_Ltigerpython_parser_lexer_TokenType$().pT, $m_Ltigerpython_parser_lexer_TokenType$().yg, $m_Ltigerpython_parser_lexer_TokenType$().v8]), this$17)) && (this.bj.Jb(1) !== null)) && (bracketStack.g() === 1))) { + if ((((!$f_sc_SeqOps__contains__O__Z(new $c_sjsr_WrappedVarArgs([$m_Ltigerpython_parser_lexer_TokenType$().aq, $m_Ltigerpython_parser_lexer_TokenType$().a7, $m_Ltigerpython_parser_lexer_TokenType$().cj, $m_Ltigerpython_parser_lexer_TokenType$().cx, $m_Ltigerpython_parser_lexer_TokenType$().bi, $m_Ltigerpython_parser_lexer_TokenType$().gU, $m_Ltigerpython_parser_lexer_TokenType$().pT, $m_Ltigerpython_parser_lexer_TokenType$().yg, $m_Ltigerpython_parser_lexer_TokenType$().v9]), this$17)) && (this.bj.Jb(1) !== null)) && (bracketStack.g() === 1))) { var x1$2 = this.bj.Jb(1).o; var x$5 = $m_Ltigerpython_parser_lexer_TokenType$().g0; if ((x$5 === x1$2)) { @@ -68505,7 +68511,7 @@ $p.Xy = (function(indentLen) { var $x_10 = false; } if ($x_10) { - var elem$5 = new $c_Ltigerpython_parser_lexer_Token(token$2.x, ((this.bj.d().cw - token$2.x) | 0), $m_Ltigerpython_parser_lexer_TokenType$().v9); + var elem$5 = new $c_Ltigerpython_parser_lexer_Token(token$2.x, ((this.bj.d().cw - token$2.x) | 0), $m_Ltigerpython_parser_lexer_TokenType$().va); result.I(elem$5); } else { result.I(token$2); @@ -68592,7 +68598,7 @@ $p.Xy = (function(indentLen) { } case "await": { if ($f_sc_SeqOps__contains__O__Z(new $c_sjsr_WrappedVarArgs([$m_Ltigerpython_parser_lexer_TokenType$().S, $m_Ltigerpython_parser_lexer_TokenType$().bt, $m_Ltigerpython_parser_lexer_TokenType$().aw, $m_Ltigerpython_parser_lexer_TokenType$().bL, $m_Ltigerpython_parser_lexer_TokenType$().bm]), followType)) { - var newType$1 = $m_Ltigerpython_parser_lexer_TokenType$().v2; + var newType$1 = $m_Ltigerpython_parser_lexer_TokenType$().v3; var elem$14 = new $c_Ltigerpython_parser_lexer_Token(nameToken.x, nameToken.ew, newType$1); result.I(elem$14); break matchResult; @@ -68618,7 +68624,7 @@ $p.Xy = (function(indentLen) { return this.IV(); } } else { - var x$45 = $m_Ltigerpython_parser_lexer_TokenType$().ip; + var x$45 = $m_Ltigerpython_parser_lexer_TokenType$().io; if ((x$45 === x1)) { var $x_14 = true; } else { @@ -68630,11 +68636,11 @@ $p.Xy = (function(indentLen) { result.I(elem$15); } else { var x$49 = $m_Ltigerpython_parser_lexer_TokenType$().je; - if (((x$49 === x1) && (!this.jf.vN))) { + if (((x$49 === x1) && (!this.jf.vO))) { var elem$16 = $m_Ltigerpython_parser_lexer_Token$().sJ(this.bj.d()); result.I(elem$16); } else { - var x$51 = $m_Ltigerpython_parser_lexer_TokenType$().ip; + var x$51 = $m_Ltigerpython_parser_lexer_TokenType$().io; if ((x$51 === x1)) { var token$4 = this.bj.d(); if (($f_sc_SeqOps__isEmpty__Z(result) && this.bj.c())) { @@ -68661,7 +68667,7 @@ $p.Xy = (function(indentLen) { } } else { var x$55 = $f_sc_IndexedSeqOps__last__O(result).o; - var x$56 = $m_Ltigerpython_parser_lexer_TokenType$().a8; + var x$56 = $m_Ltigerpython_parser_lexer_TokenType$().a7; if ((x$55 === x$56)) { this.jf.jE(this.Go, $m_Ltigerpython_parser_errors_ErrorCode$().AY, new $c_sjsr_WrappedVarArgs(["case"])); result.I(token$5); @@ -68776,36 +68782,36 @@ function $p_Ltigerpython_parser_parsing_ParserState___reportError__Ltigerpython_ function $c_Ltigerpython_parser_parsing_ParserState(source, pythonVersion, errorHandler) { this.sb = null; this.cy = 0; - this.it = null; + this.is = null; this.MV = false; this.Sx = false; this.Gs = false; this.MW = false; this.ly = false; this.MX = false; - this.vM = false; + this.vN = false; this.Bx = false; this.q2 = false; this.MY = false; - this.vN = false; + this.vO = false; this.q3 = false; this.ck = false; this.N0 = false; this.MZ = null; this.sb = source; this.cy = pythonVersion; - this.it = errorHandler; + this.is = errorHandler; this.MV = false; this.Sx = false; this.Gs = false; this.MW = false; this.ly = false; this.MX = (pythonVersion >= 3); - this.vM = (pythonVersion <= 2); + this.vN = (pythonVersion <= 2); this.Bx = false; this.q2 = false; this.MY = false; - this.vN = false; + this.vO = false; this.q3 = false; this.ck = false; this.N0 = true; @@ -68830,13 +68836,13 @@ $p.Ii = (function(pos, op) { switch (op) { case "->": { if ((this.cy < 3)) { - return $m_Ltigerpython_parser_lexer_TokenType$().wA("-"); + return $m_Ltigerpython_parser_lexer_TokenType$().wB("-"); } break; } case "@=": { if ((this.cy < 3)) { - return $m_Ltigerpython_parser_lexer_TokenType$().wA("@"); + return $m_Ltigerpython_parser_lexer_TokenType$().wB("@"); } break; } @@ -68874,7 +68880,7 @@ $p.Ii = (function(pos, op) { } case "=<": { this.l(pos, (-1), $m_Ltigerpython_parser_errors_ErrorCode$().j8, new $c_sjsr_WrappedVarArgs(["=<", "<="])); - return $ct_T2__O__O__(new $c_T2(), 2, $m_Ltigerpython_parser_lexer_TokenType$().v7); + return $ct_T2__O__O__(new $c_T2(), 2, $m_Ltigerpython_parser_lexer_TokenType$().v8); break; } case "=!": @@ -68889,22 +68895,22 @@ $p.Ii = (function(pos, op) { this.l(pos, (-1), $m_Ltigerpython_parser_errors_ErrorCode$().j9, new $c_sjsr_WrappedVarArgs([("" + $cToS(op.charCodeAt(0))), ("" + $cToS(op.charCodeAt(1)))])); var $x_1 = $m_Ltigerpython_parser_lexer_TokenType$(); var value = new $ac_C(new Uint16Array([op.charCodeAt(1), op.charCodeAt(0)])); - return $x_1.wA($m_jl_String$().D6(value, 0, value.a.length)); + return $x_1.wB($m_jl_String$().D6(value, 0, value.a.length)); break; } case "=**": { this.l(pos, (-1), $m_Ltigerpython_parser_errors_ErrorCode$().j9, new $c_sjsr_WrappedVarArgs([("" + $cToS(op.charCodeAt(0))), op.substring(1)])); - return $m_Ltigerpython_parser_lexer_TokenType$().wA((op.substring(1) + "=")); + return $m_Ltigerpython_parser_lexer_TokenType$().wB((op.substring(1) + "=")); break; } case "<>": { if ((this.cy < 3)) { - return $m_Ltigerpython_parser_lexer_TokenType$().wA("!="); + return $m_Ltigerpython_parser_lexer_TokenType$().wB("!="); } break; } } - return $m_Ltigerpython_parser_lexer_TokenType$().wA(op); + return $m_Ltigerpython_parser_lexer_TokenType$().wB(op); }); $p.qD = (function(position) { if (((position >= 0) && (position <= $dp_length__I(this.sb)))) { @@ -68943,13 +68949,13 @@ $p.Y6 = (function(s) { break; } case "print": { - if ((!this.vM)) { + if ((!this.vN)) { return $m_Ltigerpython_parser_lexer_TokenType$().S; } break; } case "repeat": { - if ((!this.vN)) { + if ((!this.vO)) { return $m_Ltigerpython_parser_lexer_TokenType$().S; } break; @@ -68957,14 +68963,14 @@ $p.Y6 = (function(s) { } return $m_Ltigerpython_parser_lexer_TokenType$().CM(s); }); -$p.iI = (function(tokenType) { +$p.iH = (function(tokenType) { if ((tokenType !== null)) { $m_Ltigerpython_parser_lexer_TokenType$(); } return tokenType; }); $p.l = (function(pos, line, code, params) { - return ((line === (-1)) ? this.it.l(pos, this.qD(pos), code, params) : this.it.l(pos, line, code, params)); + return ((line === (-1)) ? this.is.l(pos, this.qD(pos), code, params) : this.is.l(pos, line, code, params)); }); $p.a4 = (function(tokens, msg, params) { return (tokens.c() ? $p_Ltigerpython_parser_parsing_ParserState___reportError__Ltigerpython_parser_lexer_Token__s_Enumeration$Value__sci_Seq__N(this, tokens.a9(), msg, params) : this.l(tokens.aH(), (-1), msg, params)); @@ -68973,7 +68979,7 @@ $p.jE = (function(tokens, msg, params) { return ((tokens.a.length !== 0) ? $p_Ltigerpython_parser_parsing_ParserState___reportError__Ltigerpython_parser_lexer_Token__s_Enumeration$Value__sci_Seq__N(this, $m_sc_ArrayOps$().aA(tokens), msg, params) : this.l((-1), (-1), msg, params)); }); $p.m4 = (function(pos, line, code, params) { - return (this.N0 ? this.it.l(pos, line, code, params) : ((line === (-1)) ? this.it.m4(pos, this.qD(pos), code, params) : this.it.m4(pos, line, code, params))); + return (this.N0 ? this.is.l(pos, line, code, params) : ((line === (-1)) ? this.is.m4(pos, this.qD(pos), code, params) : this.is.m4(pos, line, code, params))); }); $p.y = (function() { return "ParserState"; @@ -68992,7 +68998,7 @@ $p.A = (function(x$1) { break; } case 2: { - return this.it; + return this.is; break; } default: { @@ -69008,7 +69014,7 @@ $p.q = (function() { acc = $m_sr_Statics$().e(acc, $f_T__hashCode__I("ParserState")); acc = $m_sr_Statics$().e(acc, $m_sr_Statics$().n(this.sb)); acc = $m_sr_Statics$().e(acc, this.cy); - acc = $m_sr_Statics$().e(acc, $m_sr_Statics$().n(this.it)); + acc = $m_sr_Statics$().e(acc, $m_sr_Statics$().n(this.is)); return $m_sr_Statics$().H(acc, 3); }); $p.j = (function() { @@ -69027,8 +69033,8 @@ $p.b = (function(x$1) { var $x_1 = false; } if ($x_1) { - var x$3 = this.it; - var x$4 = ParserState$1.it; + var x$3 = this.is; + var x$4 = ParserState$1.is; return ((x$3 === null) ? (x$4 === null) : x$3.b(x$4)); } else { return false; @@ -69069,7 +69075,7 @@ function $p_Ltigerpython_parser_parsing_PreParser__lines$lzycompute__ALtigerpyth function $p_Ltigerpython_parser_parsing_PreParser__isSemiEmptyLine__Ltigerpython_parser_parsing_LineParser$Line__Z($thiz, line) { if ((line.bU.a.length === 1)) { var x1 = $m_sc_ArrayOps$().aA(line.bU).o; - var x = $m_Ltigerpython_parser_lexer_TokenType$().a8; + var x = $m_Ltigerpython_parser_lexer_TokenType$().a7; if ((x === x1)) { return true; } else { @@ -69151,7 +69157,7 @@ $p.eU = (function(evidence$2) { $p.T = (function() { return (-1); }); -$p.iG = (function() { +$p.iF = (function() { return ((!this.Gt) ? $p_Ltigerpython_parser_parsing_PreParser__lines$lzycompute__ALtigerpython_parser_parsing_LineParser$Line(this) : this.Gu); }); $p.IE = (function() { @@ -69173,26 +69179,26 @@ $p.WE = (function() { return result; }); $p.QZ = (function() { - if ((this.fz < this.iG().a.length)) { - var srcLine = this.iG().a[this.fz]; + if ((this.fz < this.iF().a.length)) { + var srcLine = this.iF().a[this.fz]; this.fz = ((1 + this.fz) | 0); - while (((((this.fz < this.iG().a.length) && (srcLine.U9() || srcLine.U7())) && this.iG().a[this.fz].VL(this.sd)) && (!srcLine.U8()))) { + while (((((this.fz < this.iF().a.length) && (srcLine.U9() || srcLine.U7())) && this.iF().a[this.fz].VL(this.sd)) && (!srcLine.U8()))) { var this$1 = this.sd; var pos = srcLine.q1; var code = $m_Ltigerpython_parser_errors_ErrorCode$().n7; var params = $m_sci_Nil$(); this$1.l(pos, (-1), code, params); - srcLine.Wu(this.iG().a[this.fz]); + srcLine.Wu(this.iF().a[this.fz]); this.fz = ((1 + this.fz) | 0); } var this$2 = $m_scm_ArrayBuffer$(); var elems = $m_sci_Nil$(); var suite = this$2.al(elems); - if ((((((1 + this.fz) | 0) < this.iG().a.length) && $p_Ltigerpython_parser_parsing_PreParser__isSemiEmptyLine__Ltigerpython_parser_parsing_LineParser$Line__Z(this, this.iG().a[this.fz])) && (this.iG().a[((1 + this.fz) | 0)].is > srcLine.is))) { - this.sd.jE(this.iG().a[this.fz].bU, $m_Ltigerpython_parser_errors_ErrorCode$().bC, $m_sci_Nil$()); + if ((((((1 + this.fz) | 0) < this.iF().a.length) && $p_Ltigerpython_parser_parsing_PreParser__isSemiEmptyLine__Ltigerpython_parser_parsing_LineParser$Line__Z(this, this.iF().a[this.fz])) && (this.iF().a[((1 + this.fz) | 0)].ir > srcLine.ir))) { + this.sd.jE(this.iF().a[this.fz].bU, $m_Ltigerpython_parser_errors_ErrorCode$().bC, $m_sci_Nil$()); this.fz = ((1 + this.fz) | 0); } - while (((this.fz < this.iG().a.length) && (this.iG().a[this.fz].is > srcLine.is))) { + while (((this.fz < this.iF().a.length) && (this.iF().a[this.fz].ir > srcLine.ir))) { var elem = this.QZ(); suite.I(elem); } @@ -69212,7 +69218,7 @@ $p.QZ = (function() { } var $x_5 = srcLine.m(); var $x_4 = this.sP($f_sc_IndexedSeqOps__last__O(suite).bD); - var $x_3 = srcLine.is; + var $x_3 = srcLine.ir; var $x_2 = srcLine.bU; if ((suite.u >= 0)) { var destination = new ($d_Ltigerpython_parser_parsing_PreParser$Line.r().C)(suite.u); @@ -69235,7 +69241,7 @@ $p.QZ = (function() { } return new $c_Ltigerpython_parser_parsing_PreParser$Line($x_5, $x_4, $x_3, $x_2, $x_1, this.yl, this.sd); } else { - return new $c_Ltigerpython_parser_parsing_PreParser$Line(srcLine.m(), this.sP(srcLine.q1), srcLine.is, srcLine.bU, null, this.yl, this.sd); + return new $c_Ltigerpython_parser_parsing_PreParser$Line(srcLine.m(), this.sP(srcLine.q1), srcLine.ir, srcLine.bU, null, this.yl, this.sd); } } else { return null; @@ -69244,14 +69250,14 @@ $p.QZ = (function() { $p.Up = (function(caretPos) { var nonLocalReturnKey2 = $ct_O__(new $c_O()); try { - var this$2 = $m_sc_ArrayOps$().gd(this.iG()); + var this$2 = $m_sc_ArrayOps$().gd(this.iF()); this$2.Dp(); var b = $m_sci_IndexedSeq$().bv(); var it = this$2.k(); while (it.c()) { var arg1 = it.d(); var i = (arg1 | 0); - var elem = $ct_T2__O__O__(new $c_T2(), i, this.iG().a[i]); + var elem = $ct_T2__O__O__(new $c_T2(), i, this.iF().a[i]); b.b6(elem); } b.c3().az(new $c_sjsr_AnonFunction1(((x$6$2) => { @@ -69440,10 +69446,10 @@ var $d_Ltigerpython_utilities_fastparse_Arg = new $TypeData().i($c_Ltigerpython_ })); /** @constructor */ function $c_Ltigerpython_utilities_fastparse_Arguments(args, posOnlyArgs) { - this.vY = null; this.vZ = null; - this.vY = args; - this.vZ = posOnlyArgs; + this.w0 = null; + this.vZ = args; + this.w0 = posOnlyArgs; } $p = $c_Ltigerpython_utilities_fastparse_Arguments.prototype = new $h_Ltigerpython_utilities_fastparse_ExprAst(); $p.constructor = $c_Ltigerpython_utilities_fastparse_Arguments; @@ -69460,11 +69466,11 @@ $p.z = (function() { $p.A = (function(x$1) { switch (x$1) { case 0: { - return this.vY; + return this.vZ; break; } case 1: { - return this.vZ; + return this.w0; break; } default: { @@ -69486,7 +69492,7 @@ $p.b = (function(x$1) { return true; } else if ((x$1 instanceof $c_Ltigerpython_utilities_fastparse_Arguments)) { var Arguments$1 = x$1; - return ((this.vY === Arguments$1.vY) && (this.vZ === Arguments$1.vZ)); + return ((this.vZ === Arguments$1.vZ) && (this.w0 === Arguments$1.w0)); } else { return false; } @@ -69824,12 +69830,12 @@ var $d_Ltigerpython_utilities_fastparse_BarToken = new $TypeData().i($c_Ltigerpy })); /** @constructor */ function $c_Ltigerpython_utilities_fastparse_BinOpNode(left, op, right) { - this.w0 = null; - this.w1 = 0; - this.w2 = null; - this.w0 = left; - this.w1 = op; - this.w2 = right; + this.w1 = null; + this.w2 = 0; + this.w3 = null; + this.w1 = left; + this.w2 = op; + this.w3 = right; } $p = $c_Ltigerpython_utilities_fastparse_BinOpNode.prototype = new $h_Ltigerpython_utilities_fastparse_ExprAst(); $p.constructor = $c_Ltigerpython_utilities_fastparse_BinOpNode; @@ -69846,15 +69852,15 @@ $p.z = (function() { $p.A = (function(x$1) { switch (x$1) { case 0: { - return this.w0; + return this.w1; break; } case 1: { - return $bC(this.w1); + return $bC(this.w2); break; } case 2: { - return this.w2; + return this.w3; break; } default: { @@ -69868,9 +69874,9 @@ $p.B = (function() { $p.q = (function() { var acc = (-889275714); acc = $m_sr_Statics$().e(acc, $f_T__hashCode__I("BinOpNode")); - acc = $m_sr_Statics$().e(acc, $m_sr_Statics$().n(this.w0)); - acc = $m_sr_Statics$().e(acc, this.w1); - acc = $m_sr_Statics$().e(acc, $m_sr_Statics$().n(this.w2)); + acc = $m_sr_Statics$().e(acc, $m_sr_Statics$().n(this.w1)); + acc = $m_sr_Statics$().e(acc, this.w2); + acc = $m_sr_Statics$().e(acc, $m_sr_Statics$().n(this.w3)); return $m_sr_Statics$().H(acc, 3); }); $p.j = (function() { @@ -69881,16 +69887,16 @@ $p.b = (function(x$1) { return true; } else if ((x$1 instanceof $c_Ltigerpython_utilities_fastparse_BinOpNode)) { var BinOpNode$1 = x$1; - if ((this.w1 === BinOpNode$1.w1)) { - var x = this.w0; - var x$2 = BinOpNode$1.w0; + if ((this.w2 === BinOpNode$1.w2)) { + var x = this.w1; + var x$2 = BinOpNode$1.w1; var $x_1 = ((x === null) ? (x$2 === null) : x.b(x$2)); } else { var $x_1 = false; } if ($x_1) { - var x$3 = this.w2; - var x$4 = BinOpNode$1.w2; + var x$3 = this.w3; + var x$4 = BinOpNode$1.w3; return ((x$3 === null) ? (x$4 === null) : x$3.b(x$4)); } else { return false; @@ -70065,7 +70071,7 @@ var $d_Ltigerpython_utilities_fastparse_Colon = new $TypeData().i($c_Ltigerpytho /** @constructor */ function $c_Ltigerpython_utilities_fastparse_Comma() { this.aZ = null; - $ct_Ltigerpython_utilities_fastparse_Token__s_Enumeration$Value__(this, $m_Ltigerpython_utilities_fastparse_TokenType$().w7); + $ct_Ltigerpython_utilities_fastparse_Token__s_Enumeration$Value__(this, $m_Ltigerpython_utilities_fastparse_TokenType$().w8); } $p = $c_Ltigerpython_utilities_fastparse_Comma.prototype = new $h_Ltigerpython_utilities_fastparse_Token(); $p.constructor = $c_Ltigerpython_utilities_fastparse_Comma; @@ -70520,9 +70526,9 @@ var $d_Ltigerpython_utilities_fastparse_ElseToken = new $TypeData().i($c_Ltigerp /** @constructor */ function $c_Ltigerpython_utilities_fastparse_FStringToken(line, value) { this.aZ = null; - this.w3 = 0; + this.w4 = 0; this.yG = null; - this.w3 = line; + this.w4 = line; this.yG = value; $ct_Ltigerpython_utilities_fastparse_Token__s_Enumeration$Value__(this, $m_Ltigerpython_utilities_fastparse_TokenType$().O3); } @@ -70541,7 +70547,7 @@ $p.z = (function() { $p.A = (function(x$1) { switch (x$1) { case 0: { - return this.w3; + return this.w4; break; } case 1: { @@ -70559,7 +70565,7 @@ $p.B = (function() { $p.q = (function() { var acc = (-889275714); acc = $m_sr_Statics$().e(acc, $f_T__hashCode__I("FStringToken")); - acc = $m_sr_Statics$().e(acc, this.w3); + acc = $m_sr_Statics$().e(acc, this.w4); acc = $m_sr_Statics$().e(acc, $m_sr_Statics$().n(this.yG)); return $m_sr_Statics$().H(acc, 2); }); @@ -70571,7 +70577,7 @@ $p.b = (function(x$1) { return true; } else if ((x$1 instanceof $c_Ltigerpython_utilities_fastparse_FStringToken)) { var FStringToken$1 = x$1; - return ((this.w3 === FStringToken$1.w3) && (this.yG === FStringToken$1.yG)); + return ((this.w4 === FStringToken$1.w4) && (this.yG === FStringToken$1.yG)); } else { return false; } @@ -70757,8 +70763,8 @@ var $d_Ltigerpython_utilities_fastparse_ImportToken = new $TypeData().i($c_Ltige /** @constructor */ function $c_Ltigerpython_utilities_fastparse_Indent(indent) { this.aZ = null; - this.w4 = 0; - this.w4 = indent; + this.w5 = 0; + this.w5 = indent; $ct_Ltigerpython_utilities_fastparse_Token__s_Enumeration$Value__(this, $m_Ltigerpython_utilities_fastparse_TokenType$().O4); } $p = $c_Ltigerpython_utilities_fastparse_Indent.prototype = new $h_Ltigerpython_utilities_fastparse_Token(); @@ -70774,7 +70780,7 @@ $p.z = (function() { return 1; }); $p.A = (function(x$1) { - return ((x$1 === 0) ? this.w4 : $m_sr_Statics$().C(x$1)); + return ((x$1 === 0) ? this.w5 : $m_sr_Statics$().C(x$1)); }); $p.B = (function() { return new $c_sr_ScalaRunTime$$anon$1(this); @@ -70782,7 +70788,7 @@ $p.B = (function() { $p.q = (function() { var acc = (-889275714); acc = $m_sr_Statics$().e(acc, $f_T__hashCode__I("Indent")); - acc = $m_sr_Statics$().e(acc, this.w4); + acc = $m_sr_Statics$().e(acc, this.w5); return $m_sr_Statics$().H(acc, 1); }); $p.j = (function() { @@ -70793,7 +70799,7 @@ $p.b = (function(x$1) { return true; } else if ((x$1 instanceof $c_Ltigerpython_utilities_fastparse_Indent)) { var Indent$1 = x$1; - return (this.w4 === Indent$1.w4); + return (this.w5 === Indent$1.w5); } else { return false; } @@ -70904,8 +70910,8 @@ var $d_Ltigerpython_utilities_fastparse_LambdaToken = new $TypeData().i($c_Ltige /** @constructor */ function $c_Ltigerpython_utilities_fastparse_LeftPar(par) { this.aZ = null; - this.ix = 0; - this.ix = par; + this.iw = 0; + this.iw = par; $ct_Ltigerpython_utilities_fastparse_Token__s_Enumeration$Value__(this, $m_Ltigerpython_utilities_fastparse_TokenType$().Qd(par)); } $p = $c_Ltigerpython_utilities_fastparse_LeftPar.prototype = new $h_Ltigerpython_utilities_fastparse_Token(); @@ -70921,7 +70927,7 @@ $p.z = (function() { return 1; }); $p.A = (function(x$1) { - return ((x$1 === 0) ? $bC(this.ix) : $m_sr_Statics$().C(x$1)); + return ((x$1 === 0) ? $bC(this.iw) : $m_sr_Statics$().C(x$1)); }); $p.B = (function() { return new $c_sr_ScalaRunTime$$anon$1(this); @@ -70929,7 +70935,7 @@ $p.B = (function() { $p.q = (function() { var acc = (-889275714); acc = $m_sr_Statics$().e(acc, $f_T__hashCode__I("LeftPar")); - acc = $m_sr_Statics$().e(acc, this.ix); + acc = $m_sr_Statics$().e(acc, this.iw); return $m_sr_Statics$().H(acc, 1); }); $p.j = (function() { @@ -70940,7 +70946,7 @@ $p.b = (function(x$1) { return true; } else if ((x$1 instanceof $c_Ltigerpython_utilities_fastparse_LeftPar)) { var LeftPar$1 = x$1; - return (this.ix === LeftPar$1.ix); + return (this.iw === LeftPar$1.iw); } else { return false; } @@ -71006,8 +71012,8 @@ var $d_Ltigerpython_utilities_fastparse_ListNode = new $TypeData().i($c_Ltigerpy })); /** @constructor */ function $c_Ltigerpython_utilities_fastparse_NameNode(name) { - this.iy = null; - this.iy = name; + this.ix = null; + this.ix = name; } $p = $c_Ltigerpython_utilities_fastparse_NameNode.prototype = new $h_Ltigerpython_utilities_fastparse_ExprAst(); $p.constructor = $c_Ltigerpython_utilities_fastparse_NameNode; @@ -71022,7 +71028,7 @@ $p.z = (function() { return 1; }); $p.A = (function(x$1) { - return ((x$1 === 0) ? this.iy : $m_sr_Statics$().C(x$1)); + return ((x$1 === 0) ? this.ix : $m_sr_Statics$().C(x$1)); }); $p.B = (function() { return new $c_sr_ScalaRunTime$$anon$1(this); @@ -71038,7 +71044,7 @@ $p.b = (function(x$1) { return true; } else if ((x$1 instanceof $c_Ltigerpython_utilities_fastparse_NameNode)) { var NameNode$1 = x$1; - return (this.iy === NameNode$1.iy); + return (this.ix === NameNode$1.ix); } else { return false; } @@ -71299,8 +71305,8 @@ var $d_Ltigerpython_utilities_fastparse_Operator = new $TypeData().i($c_Ltigerpy })); /** @constructor */ function $c_Ltigerpython_utilities_fastparse_OrNode(items) { - this.w6 = null; - this.w6 = items; + this.w7 = null; + this.w7 = items; } $p = $c_Ltigerpython_utilities_fastparse_OrNode.prototype = new $h_Ltigerpython_utilities_fastparse_ExprAst(); $p.constructor = $c_Ltigerpython_utilities_fastparse_OrNode; @@ -71315,7 +71321,7 @@ $p.z = (function() { return 1; }); $p.A = (function(x$1) { - return ((x$1 === 0) ? this.w6 : $m_sr_Statics$().C(x$1)); + return ((x$1 === 0) ? this.w7 : $m_sr_Statics$().C(x$1)); }); $p.B = (function() { return new $c_sr_ScalaRunTime$$anon$1(this); @@ -71331,7 +71337,7 @@ $p.b = (function(x$1) { return true; } else if ((x$1 instanceof $c_Ltigerpython_utilities_fastparse_OrNode)) { var OrNode$1 = x$1; - return (this.w6 === OrNode$1.w6); + return (this.w7 === OrNode$1.w7); } else { return false; } @@ -72288,7 +72294,7 @@ function $f_jl_Long__toString__T($thiz) { } function $f_jl_Long__compareTo__O__I($thiz, o) { var that = o; - return $m_RTLong$().wN($thiz.h, $thiz.i, that.h, that.i); + return $m_RTLong$().wO($thiz.h, $thiz.i, that.h, that.i); } function $isArrayOf_jl_Long(obj, depth) { return (!(!(((obj && obj.$classData) && (obj.$classData.D === depth)) && obj.$classData.B.n.cm))); @@ -72852,7 +72858,7 @@ $p.dS = (function(n) { } return this; }); -$p.wT = (function(from, until) { +$p.wU = (function(from, until) { var formatFrom = $p_sc_IndexedSeqView$IndexedSeqViewIterator__formatRange$1__I__I(this, from); var formatUntil = $p_sc_IndexedSeqView$IndexedSeqViewIterator__formatRange$1__I__I(this, until); var b = ((formatUntil - formatFrom) | 0); @@ -72899,7 +72905,7 @@ $p.d = (function() { return $m_sc_Iterator$().r.d(); } }); -$p.wT = (function(from, until) { +$p.wU = (function(from, until) { if ((this.fl > 0)) { if ((this.fl <= from)) { this.fl = 0; @@ -72979,7 +72985,7 @@ var $d_sc_Iterator$$anon$1 = new $TypeData().i($c_sc_Iterator$$anon$1, "scala.co })); /** @constructor */ function $c_sc_Iterator$$anon$21() { - this.xA = null; + this.xB = null; $ct_scm_ImmutableBuilder__sc_IterableOnce__(this, $m_sc_Iterator$().r); } $p = $c_sc_Iterator$$anon$21.prototype = new $h_scm_ImmutableBuilder(); @@ -72989,9 +72995,9 @@ function $h_sc_Iterator$$anon$21() { } $h_sc_Iterator$$anon$21.prototype = $p; $p.SR = (function(elem) { - var this$3 = this.xA; + var this$3 = this.xB; var xs = new $c_sjsr_AnonFunction0((() => new $c_sc_Iterator$$anon$20(elem))); - this.xA = this$3.hK(xs); + this.xB = this$3.hK(xs); return this; }); $p.b6 = (function(elem) { @@ -73126,7 +73132,7 @@ function $c_sci_HashMapBuilder$$anon$1(outer, x2$1) { $ct_sci_ChampBaseIterator__sci_Node__(this, x2$1.bJ); while (this.c()) { var originalHash = this.fm.cJ(this.bI); - outer.wY(outer.kQ, this.fm.e9(this.bI), this.fm.ea(this.bI), originalHash, $m_sc_Hashing$().bA(originalHash), 0); + outer.wZ(outer.kQ, this.fm.e9(this.bI), this.fm.ea(this.bI), originalHash, $m_sc_Hashing$().bA(originalHash), 0); this.bI = ((1 + this.bI) | 0); } } @@ -73334,7 +73340,7 @@ var $d_sci_Map$Map3$$anon$6 = new $TypeData().i($c_sci_Map$Map3$$anon$6, "scala. /** @constructor */ function $c_sci_Map$Map4$$anon$7(outer) { this.kX = 0; - this.iT = null; + this.iS = null; $ct_sci_Map$Map4$Map4Iterator__sci_Map$Map4__(this, outer); } $p = $c_sci_Map$Map4$$anon$7.prototype = new $h_sci_Map$Map4$Map4Iterator(); @@ -73357,7 +73363,7 @@ var $d_sci_Map$Map4$$anon$7 = new $TypeData().i($c_sci_Map$Map4$$anon$7, "scala. /** @constructor */ function $c_sci_Map$Map4$$anon$8(outer) { this.kX = 0; - this.iT = null; + this.iS = null; $ct_sci_Map$Map4$Map4Iterator__sci_Map$Map4__(this, outer); } $p = $c_sci_Map$Map4$$anon$8.prototype = new $h_sci_Map$Map4$Map4Iterator(); @@ -73380,7 +73386,7 @@ var $d_sci_Map$Map4$$anon$8 = new $TypeData().i($c_sci_Map$Map4$$anon$8, "scala. /** @constructor */ function $c_sci_Map$Map4$$anon$9(outer) { this.kX = 0; - this.iT = null; + this.iS = null; $ct_sci_Map$Map4$Map4Iterator__sci_Map$Map4__(this, outer); } $p = $c_sci_Map$Map4$$anon$9.prototype = new $h_sci_Map$Map4$Map4Iterator(); @@ -73437,8 +73443,8 @@ function $c_sci_MapKeyValueTupleHashIterator(rootNode) { this.o8 = 0; this.At = null; this.i5 = 0; - this.xl = null; this.xm = null; + this.xn = null; this.ER = 0; this.KQ = null; $ct_sci_ChampBaseReverseIterator__sci_Node__(this, rootNode); @@ -73550,7 +73556,7 @@ function $p_sci_NewVectorIterator__advanceSlice__V($thiz) { $thiz.ob = ((1 + $thiz.ob) | 0); slice = $thiz.ET.kH($thiz.ob); } - $thiz.xq = $thiz.r5; + $thiz.xr = $thiz.r5; var count = $thiz.KS; var idx = $thiz.ob; var c = ((count / 2) | 0); @@ -73586,7 +73592,7 @@ function $p_sci_NewVectorIterator__advanceSlice__V($thiz) { throw new $c_s_MatchError(x1); } } - $thiz.r5 = (($thiz.xq + Math.imul(slice.a.length, (1 << Math.imul(5, (((-1) + $thiz.oa) | 0))))) | 0); + $thiz.r5 = (($thiz.xr + Math.imul(slice.a.length, (1 << Math.imul(5, (((-1) + $thiz.oa) | 0))))) | 0); if (($thiz.r5 > $thiz.mn)) { $thiz.r5 = $thiz.mn; } @@ -73600,7 +73606,7 @@ function $p_sci_NewVectorIterator__advance__V($thiz) { $p_sci_NewVectorIterator__advanceSlice__V($thiz); } if (($thiz.oa > 1)) { - var io = ((pos - $thiz.xq) | 0); + var io = ((pos - $thiz.xr) | 0); $p_sci_NewVectorIterator__advanceA__I__I__V($thiz, io, ($thiz.tA ^ io)); $thiz.tA = io; } @@ -73673,7 +73679,7 @@ function $c_sci_NewVectorIterator(v, totalLength, sliceCount) { this.hi = 0; this.ob = 0; this.oa = 0; - this.xq = 0; + this.xr = 0; this.r5 = 0; this.ET = v; this.mn = totalLength; @@ -73685,7 +73691,7 @@ function $c_sci_NewVectorIterator(v, totalLength, sliceCount) { this.hi = this.mn; this.ob = 0; this.oa = 1; - this.xq = 0; + this.xr = 0; this.r5 = this.mm; } $p = $c_sci_NewVectorIterator.prototype = new $h_sc_AbstractIterator(); @@ -73722,7 +73728,7 @@ $p.dS = (function(n) { while ((newpos >= this.r5)) { $p_sci_NewVectorIterator__advanceSlice__V(this); } - var io = ((newpos - this.xq) | 0); + var io = ((newpos - this.xr) | 0); if ((this.oa > 1)) { $p_sci_NewVectorIterator__setA__I__I__V(this, io, (this.tA ^ io)); this.tA = io; @@ -73777,12 +73783,12 @@ var $d_sci_NewVectorIterator = new $TypeData().i($c_sci_NewVectorIterator, "scal /** @constructor */ function $c_sci_NumericRange$NumericRangeIterator(self, num) { this.EV = null; - this.xv = null; + this.xw = null; this.tB = false; this.Ax = null; this.EU = null; this.EV = self; - this.xv = num; + this.xw = num; this.tB = (!self.t()); this.Ax = self.bK; this.EU = (this.tB ? self.ge() : self.bK); @@ -73794,7 +73800,7 @@ function $h_sci_NumericRange$NumericRangeIterator() { } $h_sci_NumericRange$NumericRangeIterator.prototype = $p; $p.T = (function() { - return (this.tB ? ((1 + this.xv.iL(new $c_s_math_Integral$IntegralOps(this.xv, new $c_s_math_Integral$IntegralOps(this.xv, this.EU).OU(this.Ax)).SA(this.EV.b5))) | 0) : 0); + return (this.tB ? ((1 + this.xw.iK(new $c_s_math_Integral$IntegralOps(this.xw, new $c_s_math_Integral$IntegralOps(this.xw, this.EU).OU(this.Ax)).SA(this.EV.b5))) | 0) : 0); }); $p.c = (function() { return this.tB; @@ -73805,7 +73811,7 @@ $p.d = (function() { } var value = this.Ax; this.tB = (!$m_sr_BoxesRunTime$().Q(value, this.EU)); - this.Ax = this.xv.fi(value, this.EV.b5); + this.Ax = this.xw.fi(value, this.EV.b5); return value; }); var $d_sci_NumericRange$NumericRangeIterator = new $TypeData().i($c_sci_NumericRange$NumericRangeIterator, "scala.collection.immutable.NumericRange$NumericRangeIterator", ({ @@ -74266,8 +74272,8 @@ var $d_scm_HashMap$$anon$5 = new $TypeData().i($c_scm_HashMap$$anon$5, "scala.co function $c_scm_HashSet$$anon$1(outer) { this.op = 0; this.mt = null; - this.xz = 0; - this.xy = null; + this.xA = 0; + this.xz = null; $ct_scm_HashSet$HashSetIterator__scm_HashSet__(this, outer); } $p = $c_scm_HashSet$$anon$1.prototype = new $h_scm_HashSet$HashSetIterator(); @@ -74291,8 +74297,8 @@ var $d_scm_HashSet$$anon$1 = new $TypeData().i($c_scm_HashSet$$anon$1, "scala.co function $c_scm_HashSet$$anon$2(outer) { this.op = 0; this.mt = null; - this.xz = 0; - this.xy = null; + this.xA = 0; + this.xz = null; $ct_scm_HashSet$HashSetIterator__scm_HashSet__(this, outer); } $p = $c_scm_HashSet$$anon$2.prototype = new $h_scm_HashSet$HashSetIterator(); @@ -74316,8 +74322,8 @@ var $d_scm_HashSet$$anon$2 = new $TypeData().i($c_scm_HashSet$$anon$2, "scala.co function $c_scm_HashSet$$anon$3(outer) { this.op = 0; this.mt = null; - this.xz = 0; - this.xy = null; + this.xA = 0; + this.xz = null; this.F7 = 0; this.Lb = null; this.Lb = outer; @@ -74519,8 +74525,8 @@ var $d_s_math_Ordering$Reverse = new $TypeData().i($c_s_math_Ordering$Reverse, " })); /** @constructor */ function $c_s_reflect_ClassTag$GenericClassTag(runtimeClass) { - this.xB = null; - this.xB = runtimeClass; + this.xC = null; + this.xC = runtimeClass; } $p = $c_s_reflect_ClassTag$GenericClassTag.prototype = new $h_O(); $p.constructor = $c_s_reflect_ClassTag$GenericClassTag; @@ -74532,16 +74538,16 @@ $p.b = (function(x) { return $f_s_reflect_ClassTag__equals__O__Z(this, x); }); $p.q = (function() { - return $m_sr_Statics$().n(this.xB); + return $m_sr_Statics$().n(this.xC); }); $p.j = (function() { - return $p_s_reflect_ClassTag__prettyprint$1__jl_Class__T(this, this.xB); + return $p_s_reflect_ClassTag__prettyprint$1__jl_Class__T(this, this.xC); }); $p.di = (function() { - return this.xB; + return this.xC; }); $p.eC = (function(len) { - return $m_jl_reflect_Array$().nS(this.xB, len); + return $m_jl_reflect_Array$().nS(this.xC, len); }); var $d_s_reflect_ClassTag$GenericClassTag = new $TypeData().i($c_s_reflect_ClassTag$GenericClassTag, "scala.reflect.ClassTag$GenericClassTag", ({ lU: 1, @@ -74933,10 +74939,10 @@ var $d_Ltigerpython_parser_ast_AstNode$AugAssign = new $TypeData().i($c_Ltigerpy function $c_Ltigerpython_parser_ast_AstNode$BooleanValue(pos, value) { this.bY = null; this.jY = 0; - this.iX = false; + this.iW = false; this.jY = pos; - this.iX = value; - $ct_Ltigerpython_parser_ast_AstNode$Expression__s_Enumeration$Value__(this, $m_Ltigerpython_parser_ast_AstNodeKind$().xY); + this.iW = value; + $ct_Ltigerpython_parser_ast_AstNode$Expression__s_Enumeration$Value__(this, $m_Ltigerpython_parser_ast_AstNodeKind$().xZ); } $p = $c_Ltigerpython_parser_ast_AstNode$BooleanValue.prototype = new $h_Ltigerpython_parser_ast_AstNode$Expression(); $p.constructor = $c_Ltigerpython_parser_ast_AstNode$BooleanValue; @@ -74948,10 +74954,10 @@ $p.m = (function() { return this.jY; }); $p.WQ = (function() { - return (this.iX ? "False" : "True"); + return (this.iW ? "False" : "True"); }); $p.j = (function() { - return (this.iX ? "True" : "False"); + return (this.iW ? "True" : "False"); }); $p.y = (function() { return "BooleanValue"; @@ -74966,7 +74972,7 @@ $p.A = (function(x$1) { break; } case 1: { - return this.iX; + return this.iW; break; } default: { @@ -74981,7 +74987,7 @@ $p.q = (function() { var acc = (-889275714); acc = $m_sr_Statics$().e(acc, $f_T__hashCode__I("BooleanValue")); acc = $m_sr_Statics$().e(acc, this.jY); - acc = $m_sr_Statics$().e(acc, (this.iX ? 1231 : 1237)); + acc = $m_sr_Statics$().e(acc, (this.iW ? 1231 : 1237)); return $m_sr_Statics$().H(acc, 2); }); $p.b = (function(x$1) { @@ -74989,7 +74995,7 @@ $p.b = (function(x$1) { return true; } else if ((x$1 instanceof $c_Ltigerpython_parser_ast_AstNode$BooleanValue)) { var BooleanValue$1 = x$1; - return ((this.jY === BooleanValue$1.jY) && (this.iX === BooleanValue$1.iX)); + return ((this.jY === BooleanValue$1.jY) && (this.iW === BooleanValue$1.iW)); } else { return false; } @@ -75349,7 +75355,7 @@ function $c_Ltigerpython_parser_ast_AstNode$Ellipsis(pos) { this.bY = null; this.u5 = 0; this.u5 = pos; - $ct_Ltigerpython_parser_ast_AstNode$Expression__s_Enumeration$Value__(this, $m_Ltigerpython_parser_ast_AstNodeKind$().xY); + $ct_Ltigerpython_parser_ast_AstNode$Expression__s_Enumeration$Value__(this, $m_Ltigerpython_parser_ast_AstNodeKind$().xZ); } $p = $c_Ltigerpython_parser_ast_AstNode$Ellipsis.prototype = new $h_Ltigerpython_parser_ast_AstNode$Expression(); $p.constructor = $c_Ltigerpython_parser_ast_AstNode$Ellipsis; @@ -75661,9 +75667,9 @@ var $d_Ltigerpython_parser_ast_AstNode$Generator = new $TypeData().i($c_Ltigerpy function $c_Ltigerpython_parser_ast_AstNode$Global(pos, names) { this.bT = null; this.ue = 0; - this.iZ = null; + this.iY = null; this.ue = pos; - this.iZ = names; + this.iY = names; $ct_Ltigerpython_parser_ast_AstNode$Statement__s_Enumeration$Value__(this, $m_Ltigerpython_parser_ast_AstNodeKind$().LK); } $p = $c_Ltigerpython_parser_ast_AstNode$Global.prototype = new $h_Ltigerpython_parser_ast_AstNode$Statement(); @@ -75676,7 +75682,7 @@ $p.m = (function() { return this.ue; }); $p.j = (function() { - return $m_sc_StringOps$().ap("Global(%s)", new $c_sjsr_WrappedVarArgs([$f_sc_IterableOnceOps__mkString__T__T__T__T($m_s_Predef$().at(this.iZ), "", ", ", "")])); + return $m_sc_StringOps$().ap("Global(%s)", new $c_sjsr_WrappedVarArgs([$f_sc_IterableOnceOps__mkString__T__T__T__T($m_s_Predef$().at(this.iY), "", ", ", "")])); }); $p.y = (function() { return "Global"; @@ -75691,7 +75697,7 @@ $p.A = (function(x$1) { break; } case 1: { - return this.iZ; + return this.iY; break; } default: { @@ -75706,7 +75712,7 @@ $p.q = (function() { var acc = (-889275714); acc = $m_sr_Statics$().e(acc, $f_T__hashCode__I("Global")); acc = $m_sr_Statics$().e(acc, this.ue); - acc = $m_sr_Statics$().e(acc, $m_sr_Statics$().n(this.iZ)); + acc = $m_sr_Statics$().e(acc, $m_sr_Statics$().n(this.iY)); return $m_sr_Statics$().H(acc, 2); }); $p.b = (function(x$1) { @@ -75714,7 +75720,7 @@ $p.b = (function(x$1) { return true; } else if ((x$1 instanceof $c_Ltigerpython_parser_ast_AstNode$Global)) { var Global$1 = x$1; - return ((this.ue === Global$1.ue) && (this.iZ === Global$1.iZ)); + return ((this.ue === Global$1.ue) && (this.iY === Global$1.iY)); } else { return false; } @@ -75913,10 +75919,10 @@ var $d_Ltigerpython_parser_ast_AstNode$Import = new $TypeData().i($c_Ltigerpytho function $c_Ltigerpython_parser_ast_AstNode$ImportFrom(pos, module, names) { this.bT = null; this.uh = 0; - this.j0 = null; + this.iZ = null; this.k1 = null; this.uh = pos; - this.j0 = module; + this.iZ = module; this.k1 = names; $ct_Ltigerpython_parser_ast_AstNode$Statement__s_Enumeration$Value__(this, $m_Ltigerpython_parser_ast_AstNodeKind$().LN); } @@ -75930,7 +75936,7 @@ $p.m = (function() { return this.uh; }); $p.j = (function() { - return $m_sc_StringOps$().ap("ImportFrom(%s, %s)", new $c_sjsr_WrappedVarArgs([this.j0.R, $f_sc_IterableOnceOps__mkString__T__T__T__T($m_s_Predef$().at(this.k1), "", ", ", "")])); + return $m_sc_StringOps$().ap("ImportFrom(%s, %s)", new $c_sjsr_WrappedVarArgs([this.iZ.R, $f_sc_IterableOnceOps__mkString__T__T__T__T($m_s_Predef$().at(this.k1), "", ", ", "")])); }); $p.y = (function() { return "ImportFrom"; @@ -75945,7 +75951,7 @@ $p.A = (function(x$1) { break; } case 1: { - return this.j0; + return this.iZ; break; } case 2: { @@ -75964,7 +75970,7 @@ $p.q = (function() { var acc = (-889275714); acc = $m_sr_Statics$().e(acc, $f_T__hashCode__I("ImportFrom")); acc = $m_sr_Statics$().e(acc, this.uh); - acc = $m_sr_Statics$().e(acc, $m_sr_Statics$().n(this.j0)); + acc = $m_sr_Statics$().e(acc, $m_sr_Statics$().n(this.iZ)); acc = $m_sr_Statics$().e(acc, $m_sr_Statics$().n(this.k1)); return $m_sr_Statics$().H(acc, 3); }); @@ -75974,8 +75980,8 @@ $p.b = (function(x$1) { } else if ((x$1 instanceof $c_Ltigerpython_parser_ast_AstNode$ImportFrom)) { var ImportFrom$1 = x$1; if ((this.uh === ImportFrom$1.uh)) { - var x = this.j0; - var x$2 = ImportFrom$1.j0; + var x = this.iZ; + var x$2 = ImportFrom$1.iZ; var $x_1 = ((x === null) ? (x$2 === null) : x.b(x$2)); } else { var $x_1 = false; @@ -76154,7 +76160,7 @@ var $d_Ltigerpython_parser_ast_AstNode$ImportStar = new $TypeData().i($c_Ltigerp })); /** @constructor */ function $c_Ltigerpython_parser_ast_AstNode$Index(pos, value) { - this.xV = null; + this.xW = null; this.uj = 0; this.k2 = null; this.uj = pos; @@ -76327,11 +76333,11 @@ var $d_Ltigerpython_parser_ast_AstNode$Lambda = new $TypeData().i($c_Ltigerpytho /** @constructor */ function $c_Ltigerpython_parser_ast_AstNode$MatchAs(pos, pattern, name) { this.uo = 0; + this.xK = null; this.xJ = null; - this.xI = null; this.uo = pos; - this.xJ = pattern; - this.xI = name; + this.xK = pattern; + this.xJ = name; } $p = $c_Ltigerpython_parser_ast_AstNode$MatchAs.prototype = new $h_Ltigerpython_parser_ast_AstNode$Pattern(); $p.constructor = $c_Ltigerpython_parser_ast_AstNode$MatchAs; @@ -76355,11 +76361,11 @@ $p.A = (function(x$1) { break; } case 1: { - return this.xJ; + return this.xK; break; } case 2: { - return this.xI; + return this.xJ; break; } default: { @@ -76374,8 +76380,8 @@ $p.q = (function() { var acc = (-889275714); acc = $m_sr_Statics$().e(acc, $f_T__hashCode__I("MatchAs")); acc = $m_sr_Statics$().e(acc, this.uo); + acc = $m_sr_Statics$().e(acc, $m_sr_Statics$().n(this.xK)); acc = $m_sr_Statics$().e(acc, $m_sr_Statics$().n(this.xJ)); - acc = $m_sr_Statics$().e(acc, $m_sr_Statics$().n(this.xI)); return $m_sr_Statics$().H(acc, 3); }); $p.j = (function() { @@ -76387,15 +76393,15 @@ $p.b = (function(x$1) { } else if ((x$1 instanceof $c_Ltigerpython_parser_ast_AstNode$MatchAs)) { var MatchAs$1 = x$1; if ((this.uo === MatchAs$1.uo)) { - var x = this.xJ; - var x$2 = MatchAs$1.xJ; + var x = this.xK; + var x$2 = MatchAs$1.xK; var $x_1 = ((x === null) ? (x$2 === null) : x.b(x$2)); } else { var $x_1 = false; } if ($x_1) { - var x$3 = this.xI; - var x$4 = MatchAs$1.xI; + var x$3 = this.xJ; + var x$4 = MatchAs$1.xJ; return ((x$3 === null) ? (x$4 === null) : x$3.b(x$4)); } else { return false; @@ -76417,10 +76423,10 @@ var $d_Ltigerpython_parser_ast_AstNode$MatchAs = new $TypeData().i($c_Ltigerpyth })); /** @constructor */ function $c_Ltigerpython_parser_ast_AstNode$MatchClass(cls, patterns, keywords) { - this.xM = null; + this.xN = null; this.AN = null; this.AM = null; - this.xM = cls; + this.xN = cls; this.AN = patterns; this.AM = keywords; } @@ -76431,7 +76437,7 @@ function $h_Ltigerpython_parser_ast_AstNode$MatchClass() { } $h_Ltigerpython_parser_ast_AstNode$MatchClass.prototype = $p; $p.m = (function() { - return this.xM.m(); + return this.xN.m(); }); $p.y = (function() { return "MatchClass"; @@ -76442,7 +76448,7 @@ $p.z = (function() { $p.A = (function(x$1) { switch (x$1) { case 0: { - return this.xM; + return this.xN; break; } case 1: { @@ -76472,8 +76478,8 @@ $p.b = (function(x$1) { return true; } else if ((x$1 instanceof $c_Ltigerpython_parser_ast_AstNode$MatchClass)) { var MatchClass$1 = x$1; - var x = this.xM; - var x$2 = MatchClass$1.xM; + var x = this.xN; + var x$2 = MatchClass$1.xN; if ((((x === null) ? (x$2 === null) : x.b(x$2)) && (this.AN === MatchClass$1.AN))) { return (this.AM === MatchClass$1.AM); } else { @@ -76497,13 +76503,13 @@ var $d_Ltigerpython_parser_ast_AstNode$MatchClass = new $TypeData().i($c_Ltigerp /** @constructor */ function $c_Ltigerpython_parser_ast_AstNode$MatchMapping(pos, keys, patterns, rest) { this.us = 0; - this.xN = null; this.xO = null; this.xP = null; + this.xQ = null; this.us = pos; - this.xN = keys; - this.xO = patterns; - this.xP = rest; + this.xO = keys; + this.xP = patterns; + this.xQ = rest; } $p = $c_Ltigerpython_parser_ast_AstNode$MatchMapping.prototype = new $h_Ltigerpython_parser_ast_AstNode$Pattern(); $p.constructor = $c_Ltigerpython_parser_ast_AstNode$MatchMapping; @@ -76527,15 +76533,15 @@ $p.A = (function(x$1) { break; } case 1: { - return this.xN; + return this.xO; break; } case 2: { - return this.xO; + return this.xP; break; } case 3: { - return this.xP; + return this.xQ; break; } default: { @@ -76550,9 +76556,9 @@ $p.q = (function() { var acc = (-889275714); acc = $m_sr_Statics$().e(acc, $f_T__hashCode__I("MatchMapping")); acc = $m_sr_Statics$().e(acc, this.us); - acc = $m_sr_Statics$().e(acc, $m_sr_Statics$().n(this.xN)); acc = $m_sr_Statics$().e(acc, $m_sr_Statics$().n(this.xO)); acc = $m_sr_Statics$().e(acc, $m_sr_Statics$().n(this.xP)); + acc = $m_sr_Statics$().e(acc, $m_sr_Statics$().n(this.xQ)); return $m_sr_Statics$().H(acc, 4); }); $p.j = (function() { @@ -76563,10 +76569,10 @@ $p.b = (function(x$1) { return true; } else if ((x$1 instanceof $c_Ltigerpython_parser_ast_AstNode$MatchMapping)) { var MatchMapping$1 = x$1; - if (((this.us === MatchMapping$1.us) && (this.xN === MatchMapping$1.xN))) { - if ((this.xO === MatchMapping$1.xO)) { - var x = this.xP; - var x$2 = MatchMapping$1.xP; + if (((this.us === MatchMapping$1.us) && (this.xO === MatchMapping$1.xO))) { + if ((this.xP === MatchMapping$1.xP)) { + var x = this.xQ; + var x$2 = MatchMapping$1.xQ; return ((x === null) ? (x$2 === null) : x.b(x$2)); } else { return false; @@ -76592,9 +76598,9 @@ var $d_Ltigerpython_parser_ast_AstNode$MatchMapping = new $TypeData().i($c_Ltige /** @constructor */ function $c_Ltigerpython_parser_ast_AstNode$MatchOr(pos, patterns) { this.ut = 0; - this.xQ = null; + this.xR = null; this.ut = pos; - this.xQ = patterns; + this.xR = patterns; } $p = $c_Ltigerpython_parser_ast_AstNode$MatchOr.prototype = new $h_Ltigerpython_parser_ast_AstNode$Pattern(); $p.constructor = $c_Ltigerpython_parser_ast_AstNode$MatchOr; @@ -76618,7 +76624,7 @@ $p.A = (function(x$1) { break; } case 1: { - return this.xQ; + return this.xR; break; } default: { @@ -76633,7 +76639,7 @@ $p.q = (function() { var acc = (-889275714); acc = $m_sr_Statics$().e(acc, $f_T__hashCode__I("MatchOr")); acc = $m_sr_Statics$().e(acc, this.ut); - acc = $m_sr_Statics$().e(acc, $m_sr_Statics$().n(this.xQ)); + acc = $m_sr_Statics$().e(acc, $m_sr_Statics$().n(this.xR)); return $m_sr_Statics$().H(acc, 2); }); $p.j = (function() { @@ -76644,7 +76650,7 @@ $p.b = (function(x$1) { return true; } else if ((x$1 instanceof $c_Ltigerpython_parser_ast_AstNode$MatchOr)) { var MatchOr$1 = x$1; - return ((this.ut === MatchOr$1.ut) && (this.xQ === MatchOr$1.xQ)); + return ((this.ut === MatchOr$1.ut) && (this.xR === MatchOr$1.xR)); } else { return false; } @@ -76663,9 +76669,9 @@ var $d_Ltigerpython_parser_ast_AstNode$MatchOr = new $TypeData().i($c_Ltigerpyth /** @constructor */ function $c_Ltigerpython_parser_ast_AstNode$MatchSequence(pos, patterns) { this.uu = 0; - this.xR = null; + this.xS = null; this.uu = pos; - this.xR = patterns; + this.xS = patterns; } $p = $c_Ltigerpython_parser_ast_AstNode$MatchSequence.prototype = new $h_Ltigerpython_parser_ast_AstNode$Pattern(); $p.constructor = $c_Ltigerpython_parser_ast_AstNode$MatchSequence; @@ -76689,7 +76695,7 @@ $p.A = (function(x$1) { break; } case 1: { - return this.xR; + return this.xS; break; } default: { @@ -76704,7 +76710,7 @@ $p.q = (function() { var acc = (-889275714); acc = $m_sr_Statics$().e(acc, $f_T__hashCode__I("MatchSequence")); acc = $m_sr_Statics$().e(acc, this.uu); - acc = $m_sr_Statics$().e(acc, $m_sr_Statics$().n(this.xR)); + acc = $m_sr_Statics$().e(acc, $m_sr_Statics$().n(this.xS)); return $m_sr_Statics$().H(acc, 2); }); $p.j = (function() { @@ -76715,7 +76721,7 @@ $p.b = (function(x$1) { return true; } else if ((x$1 instanceof $c_Ltigerpython_parser_ast_AstNode$MatchSequence)) { var MatchSequence$1 = x$1; - return ((this.uu === MatchSequence$1.uu) && (this.xR === MatchSequence$1.xR)); + return ((this.uu === MatchSequence$1.uu) && (this.xS === MatchSequence$1.xS)); } else { return false; } @@ -76733,8 +76739,8 @@ var $d_Ltigerpython_parser_ast_AstNode$MatchSequence = new $TypeData().i($c_Ltig })); /** @constructor */ function $c_Ltigerpython_parser_ast_AstNode$MatchSingleton(value) { - this.xS = null; - this.xS = value; + this.xT = null; + this.xT = value; } $p = $c_Ltigerpython_parser_ast_AstNode$MatchSingleton.prototype = new $h_Ltigerpython_parser_ast_AstNode$Pattern(); $p.constructor = $c_Ltigerpython_parser_ast_AstNode$MatchSingleton; @@ -76743,7 +76749,7 @@ function $h_Ltigerpython_parser_ast_AstNode$MatchSingleton() { } $h_Ltigerpython_parser_ast_AstNode$MatchSingleton.prototype = $p; $p.m = (function() { - return this.xS.m(); + return this.xT.m(); }); $p.y = (function() { return "MatchSingleton"; @@ -76752,7 +76758,7 @@ $p.z = (function() { return 1; }); $p.A = (function(x$1) { - return ((x$1 === 0) ? this.xS : $m_sr_Statics$().C(x$1)); + return ((x$1 === 0) ? this.xT : $m_sr_Statics$().C(x$1)); }); $p.B = (function() { return new $c_sr_ScalaRunTime$$anon$1(this); @@ -76768,8 +76774,8 @@ $p.b = (function(x$1) { return true; } else if ((x$1 instanceof $c_Ltigerpython_parser_ast_AstNode$MatchSingleton)) { var MatchSingleton$1 = x$1; - var x = this.xS; - var x$2 = MatchSingleton$1.xS; + var x = this.xT; + var x$2 = MatchSingleton$1.xT; return ((x === null) ? (x$2 === null) : x.b(x$2)); } else { return false; @@ -76789,9 +76795,9 @@ var $d_Ltigerpython_parser_ast_AstNode$MatchSingleton = new $TypeData().i($c_Lti /** @constructor */ function $c_Ltigerpython_parser_ast_AstNode$MatchStar(pos, name) { this.uv = 0; - this.xT = null; + this.xU = null; this.uv = pos; - this.xT = name; + this.xU = name; } $p = $c_Ltigerpython_parser_ast_AstNode$MatchStar.prototype = new $h_Ltigerpython_parser_ast_AstNode$Pattern(); $p.constructor = $c_Ltigerpython_parser_ast_AstNode$MatchStar; @@ -76815,7 +76821,7 @@ $p.A = (function(x$1) { break; } case 1: { - return this.xT; + return this.xU; break; } default: { @@ -76830,7 +76836,7 @@ $p.q = (function() { var acc = (-889275714); acc = $m_sr_Statics$().e(acc, $f_T__hashCode__I("MatchStar")); acc = $m_sr_Statics$().e(acc, this.uv); - acc = $m_sr_Statics$().e(acc, $m_sr_Statics$().n(this.xT)); + acc = $m_sr_Statics$().e(acc, $m_sr_Statics$().n(this.xU)); return $m_sr_Statics$().H(acc, 2); }); $p.j = (function() { @@ -76842,8 +76848,8 @@ $p.b = (function(x$1) { } else if ((x$1 instanceof $c_Ltigerpython_parser_ast_AstNode$MatchStar)) { var MatchStar$1 = x$1; if ((this.uv === MatchStar$1.uv)) { - var x = this.xT; - var x$2 = MatchStar$1.xT; + var x = this.xU; + var x$2 = MatchStar$1.xU; return ((x === null) ? (x$2 === null) : x.b(x$2)); } else { return false; @@ -76865,8 +76871,8 @@ var $d_Ltigerpython_parser_ast_AstNode$MatchStar = new $TypeData().i($c_Ltigerpy })); /** @constructor */ function $c_Ltigerpython_parser_ast_AstNode$MatchValue(value) { - this.xU = null; - this.xU = value; + this.xV = null; + this.xV = value; } $p = $c_Ltigerpython_parser_ast_AstNode$MatchValue.prototype = new $h_Ltigerpython_parser_ast_AstNode$Pattern(); $p.constructor = $c_Ltigerpython_parser_ast_AstNode$MatchValue; @@ -76875,7 +76881,7 @@ function $h_Ltigerpython_parser_ast_AstNode$MatchValue() { } $h_Ltigerpython_parser_ast_AstNode$MatchValue.prototype = $p; $p.m = (function() { - return this.xU.m(); + return this.xV.m(); }); $p.y = (function() { return "MatchValue"; @@ -76884,7 +76890,7 @@ $p.z = (function() { return 1; }); $p.A = (function(x$1) { - return ((x$1 === 0) ? this.xU : $m_sr_Statics$().C(x$1)); + return ((x$1 === 0) ? this.xV : $m_sr_Statics$().C(x$1)); }); $p.B = (function() { return new $c_sr_ScalaRunTime$$anon$1(this); @@ -76900,8 +76906,8 @@ $p.b = (function(x$1) { return true; } else if ((x$1 instanceof $c_Ltigerpython_parser_ast_AstNode$MatchValue)) { var MatchValue$1 = x$1; - var x = this.xU; - var x$2 = MatchValue$1.xU; + var x = this.xV; + var x$2 = MatchValue$1.xV; return ((x === null) ? (x$2 === null) : x.b(x$2)); } else { return false; @@ -76920,7 +76926,7 @@ var $d_Ltigerpython_parser_ast_AstNode$MatchValue = new $TypeData().i($c_Ltigerp })); /** @constructor */ function $c_Ltigerpython_parser_ast_AstNode$MultiSlice(pos, elements) { - this.xV = null; + this.xW = null; this.uw = 0; this.la = null; this.uw = pos; @@ -77733,9 +77739,9 @@ var $d_Ltigerpython_parser_ast_AstNode$Raise3 = new $TypeData().i($c_Ltigerpytho function $c_Ltigerpython_parser_ast_AstNode$Return(pos, value) { this.bT = null; this.uG = 0; - this.j2 = null; + this.j1 = null; this.uG = pos; - this.j2 = value; + this.j1 = value; $ct_Ltigerpython_parser_ast_AstNode$Statement__s_Enumeration$Value__(this, $m_Ltigerpython_parser_ast_AstNodeKind$().M5); } $p = $c_Ltigerpython_parser_ast_AstNode$Return.prototype = new $h_Ltigerpython_parser_ast_AstNode$Statement(); @@ -77760,7 +77766,7 @@ $p.A = (function(x$1) { break; } case 1: { - return this.j2; + return this.j1; break; } default: { @@ -77775,7 +77781,7 @@ $p.q = (function() { var acc = (-889275714); acc = $m_sr_Statics$().e(acc, $f_T__hashCode__I("Return")); acc = $m_sr_Statics$().e(acc, this.uG); - acc = $m_sr_Statics$().e(acc, $m_sr_Statics$().n(this.j2)); + acc = $m_sr_Statics$().e(acc, $m_sr_Statics$().n(this.j1)); return $m_sr_Statics$().H(acc, 2); }); $p.j = (function() { @@ -77787,8 +77793,8 @@ $p.b = (function(x$1) { } else if ((x$1 instanceof $c_Ltigerpython_parser_ast_AstNode$Return)) { var Return$1 = x$1; if ((this.uG === Return$1.uG)) { - var x = this.j2; - var x$2 = Return$1.j2; + var x = this.j1; + var x$2 = Return$1.j1; return ((x === null) ? (x$2 === null) : x.b(x$2)); } else { return false; @@ -77901,7 +77907,7 @@ var $d_Ltigerpython_parser_ast_AstNode$SetComp = new $TypeData().i($c_Ltigerpyth })); /** @constructor */ function $c_Ltigerpython_parser_ast_AstNode$SliceRange(pos, lower, upper, step) { - this.xV = null; + this.xW = null; this.uJ = 0; this.rI = null; this.rK = null; @@ -78163,7 +78169,7 @@ function $c_Ltigerpython_parser_ast_AstNode$Value(pos, valueType) { this.ii = null; this.oO = pos; this.fY = valueType; - $ct_Ltigerpython_parser_ast_AstNode$Expression__s_Enumeration$Value__(this, $m_Ltigerpython_parser_ast_AstNodeKind$().xY); + $ct_Ltigerpython_parser_ast_AstNode$Expression__s_Enumeration$Value__(this, $m_Ltigerpython_parser_ast_AstNodeKind$().xZ); } $p = $c_Ltigerpython_parser_ast_AstNode$Value.prototype = new $h_Ltigerpython_parser_ast_AstNode$Expression(); $p.constructor = $c_Ltigerpython_parser_ast_AstNode$Value; @@ -79528,7 +79534,7 @@ $p.bn = (function(x, y) { var lo = t.h; var hi = t.i; var t$1 = $uJ(y); - return $m_RTLong$().wN(lo, hi, t$1.h, t$1.i); + return $m_RTLong$().wO(lo, hi, t$1.h, t$1.i); }); var $d_s_math_Ordering$Long$ = new $TypeData().i($c_s_math_Ordering$Long$, "scala.math.Ordering$Long$", ({ lL: 1, @@ -79701,7 +79707,7 @@ $h_Ltigerpython_parser_ast_AstNode$Await.prototype = $p; $p.m = (function() { return this.tZ; }); -$p.wz = (function() { +$p.wA = (function() { return this.mA; }); $p.y = (function() { @@ -79918,7 +79924,7 @@ $p.Pi = (function() { var x1 = this.dN; return ($is_Ltigerpython_parser_ast_AstNode$Span(x1) ? x1.aH() : ((this.bR.a.length !== 0) ? $m_sc_ArrayOps$().aA(this.bR).m() : ((this.mD !== null) ? this.mD.m() : ((this.mB !== null) ? this.mB.m() : this.hq)))); }); -$p.wC = (function() { +$p.wD = (function() { if ((this.bR.a.length !== 0)) { var x1 = $m_sc_ArrayOps$().aA(this.bR); return ((x1 instanceof $c_Ltigerpython_parser_ast_AstNode$Name) ? x1.R : null); @@ -79926,7 +79932,7 @@ $p.wC = (function() { return null; } }); -$p.wD = (function() { +$p.wE = (function() { var x1 = this.dN; return ((x1 instanceof $c_Ltigerpython_parser_ast_AstNode$Name) ? x1.R : null); }); @@ -80455,11 +80461,11 @@ function $c_Ltigerpython_parser_ast_AstNode$ListComp(pos, endPos, elements, gene this.bY = null; this.rz = 0; this.oH = 0; - this.j1 = null; + this.j0 = null; this.gx = null; this.rz = pos; this.oH = endPos; - this.j1 = elements; + this.j0 = elements; this.gx = generators; $ct_Ltigerpython_parser_ast_AstNode$Expression__s_Enumeration$Value__(this, $m_Ltigerpython_parser_ast_AstNodeKind$().LR); } @@ -80476,7 +80482,7 @@ $p.aH = (function() { return this.oH; }); $p.j = (function() { - return $m_sc_StringOps$().ap("ListComp(%s, %s)", new $c_sjsr_WrappedVarArgs([this.j1.j(), $f_sc_IterableOnceOps__mkString__T__T__T__T($m_s_Predef$().at(this.gx), "", ", ", "")])); + return $m_sc_StringOps$().ap("ListComp(%s, %s)", new $c_sjsr_WrappedVarArgs([this.j0.j(), $f_sc_IterableOnceOps__mkString__T__T__T__T($m_s_Predef$().at(this.gx), "", ", ", "")])); }); $p.y = (function() { return "ListComp"; @@ -80495,7 +80501,7 @@ $p.A = (function(x$1) { break; } case 2: { - return this.j1; + return this.j0; break; } case 3: { @@ -80515,7 +80521,7 @@ $p.q = (function() { acc = $m_sr_Statics$().e(acc, $f_T__hashCode__I("ListComp")); acc = $m_sr_Statics$().e(acc, this.rz); acc = $m_sr_Statics$().e(acc, this.oH); - acc = $m_sr_Statics$().e(acc, $m_sr_Statics$().n(this.j1)); + acc = $m_sr_Statics$().e(acc, $m_sr_Statics$().n(this.j0)); acc = $m_sr_Statics$().e(acc, $m_sr_Statics$().n(this.gx)); return $m_sr_Statics$().H(acc, 4); }); @@ -80525,8 +80531,8 @@ $p.b = (function(x$1) { } else if ((x$1 instanceof $c_Ltigerpython_parser_ast_AstNode$ListComp)) { var ListComp$1 = x$1; if (((this.rz === ListComp$1.rz) && (this.oH === ListComp$1.oH))) { - var x = this.j1; - var x$2 = ListComp$1.j1; + var x = this.j0; + var x$2 = ListComp$1.j0; if (((x === null) ? (x$2 === null) : x.b(x$2))) { return (this.gx === ListComp$1.gx); } else { @@ -80556,12 +80562,12 @@ function $c_Ltigerpython_parser_ast_AstNode$Match(pos, endPos, subject, cases) { this.bT = null; this.un = 0; this.um = 0; + this.xI = null; this.xH = null; - this.xG = null; this.un = pos; this.um = endPos; - this.xH = subject; - this.xG = cases; + this.xI = subject; + this.xH = cases; $ct_Ltigerpython_parser_ast_AstNode$Statement__s_Enumeration$Value__(this, $m_Ltigerpython_parser_ast_AstNodeKind$().LS); } $p = $c_Ltigerpython_parser_ast_AstNode$Match.prototype = new $h_Ltigerpython_parser_ast_AstNode$Statement(); @@ -80593,11 +80599,11 @@ $p.A = (function(x$1) { break; } case 2: { - return this.xH; + return this.xI; break; } case 3: { - return this.xG; + return this.xH; break; } default: { @@ -80613,8 +80619,8 @@ $p.q = (function() { acc = $m_sr_Statics$().e(acc, $f_T__hashCode__I("Match")); acc = $m_sr_Statics$().e(acc, this.un); acc = $m_sr_Statics$().e(acc, this.um); + acc = $m_sr_Statics$().e(acc, $m_sr_Statics$().n(this.xI)); acc = $m_sr_Statics$().e(acc, $m_sr_Statics$().n(this.xH)); - acc = $m_sr_Statics$().e(acc, $m_sr_Statics$().n(this.xG)); return $m_sr_Statics$().H(acc, 4); }); $p.j = (function() { @@ -80626,10 +80632,10 @@ $p.b = (function(x$1) { } else if ((x$1 instanceof $c_Ltigerpython_parser_ast_AstNode$Match)) { var Match$1 = x$1; if (((this.un === Match$1.un) && (this.um === Match$1.um))) { - var x = this.xH; - var x$2 = Match$1.xH; + var x = this.xI; + var x$2 = Match$1.xI; if (((x === null) ? (x$2 === null) : x.b(x$2))) { - return (this.xG === Match$1.xG); + return (this.xH === Match$1.xH); } else { return false; } @@ -80735,12 +80741,12 @@ function $c_Ltigerpython_parser_ast_AstNode$StringValue(pos, endPos, value, isUn this.oM = 0; this.uL = 0; this.ld = null; - this.xW = false; + this.xX = false; this.oM = pos; this.uL = endPos; this.ld = value; - this.xW = isUnicode; - $ct_Ltigerpython_parser_ast_AstNode$Expression__s_Enumeration$Value__(this, $m_Ltigerpython_parser_ast_AstNodeKind$().xY); + this.xX = isUnicode; + $ct_Ltigerpython_parser_ast_AstNode$Expression__s_Enumeration$Value__(this, $m_Ltigerpython_parser_ast_AstNodeKind$().xZ); } $p = $c_Ltigerpython_parser_ast_AstNode$StringValue.prototype = new $h_Ltigerpython_parser_ast_AstNode$Expression(); $p.constructor = $c_Ltigerpython_parser_ast_AstNode$StringValue; @@ -80792,7 +80798,7 @@ $p.A = (function(x$1) { break; } case 3: { - return this.xW; + return this.xX; break; } default: { @@ -80809,7 +80815,7 @@ $p.q = (function() { acc = $m_sr_Statics$().e(acc, this.oM); acc = $m_sr_Statics$().e(acc, this.uL); acc = $m_sr_Statics$().e(acc, $m_sr_Statics$().n(this.ld)); - acc = $m_sr_Statics$().e(acc, (this.xW ? 1231 : 1237)); + acc = $m_sr_Statics$().e(acc, (this.xX ? 1231 : 1237)); return $m_sr_Statics$().H(acc, 4); }); $p.b = (function(x$1) { @@ -80817,7 +80823,7 @@ $p.b = (function(x$1) { return true; } else if ((x$1 instanceof $c_Ltigerpython_parser_ast_AstNode$StringValue)) { var StringValue$1 = x$1; - return (((this.oM === StringValue$1.oM) && (this.uL === StringValue$1.uL)) && ((this.xW === StringValue$1.xW) && (this.ld === StringValue$1.ld))); + return (((this.oM === StringValue$1.oM) && (this.uL === StringValue$1.uL)) && ((this.xX === StringValue$1.xX) && (this.ld === StringValue$1.ld))); } else { return false; } @@ -81101,7 +81107,7 @@ $h_Ltigerpython_parser_ast_AstNode$UnaryOp.prototype = $p; $p.m = (function() { return this.uQ; }); -$p.wz = (function() { +$p.wA = (function() { return this.ht; }); $p.y = (function() { @@ -81196,7 +81202,7 @@ $h_Ltigerpython_parser_ast_AstNode$Yield.prototype = $p; $p.m = (function() { return this.uT; }); -$p.wz = (function() { +$p.wA = (function() { return this.rN; }); $p.y = (function() { @@ -81910,10 +81916,10 @@ $p.nU = (function(key, value) { $p.m = (function() { return this.oF; }); -$p.wn = (function() { +$p.wo = (function() { return this.ep; }); -$p.wo = (function(x$1) { +$p.wp = (function(x$1) { this.ep = x$1; }); $p.zn = (function() { @@ -82022,13 +82028,13 @@ function $c_Ltigerpython_parser_ast_AstNode$MatchCase(pos, endPos, pattern, guar this.bT = null; this.ur = 0; this.uq = 0; + this.xM = null; this.xL = null; - this.xK = null; this.up = null; this.ur = pos; this.uq = endPos; - this.xL = pattern; - this.xK = guard; + this.xM = pattern; + this.xL = guard; this.up = body; $ct_Ltigerpython_parser_ast_AstNode$Statement__s_Enumeration$Value__(this, $m_Ltigerpython_parser_ast_AstNodeKind$().LT); } @@ -82068,11 +82074,11 @@ $p.A = (function(x$1) { break; } case 2: { - return this.xL; + return this.xM; break; } case 3: { - return this.xK; + return this.xL; break; } case 4: { @@ -82092,8 +82098,8 @@ $p.q = (function() { acc = $m_sr_Statics$().e(acc, $f_T__hashCode__I("MatchCase")); acc = $m_sr_Statics$().e(acc, this.ur); acc = $m_sr_Statics$().e(acc, this.uq); + acc = $m_sr_Statics$().e(acc, $m_sr_Statics$().n(this.xM)); acc = $m_sr_Statics$().e(acc, $m_sr_Statics$().n(this.xL)); - acc = $m_sr_Statics$().e(acc, $m_sr_Statics$().n(this.xK)); acc = $m_sr_Statics$().e(acc, $m_sr_Statics$().n(this.up)); return $m_sr_Statics$().H(acc, 5); }); @@ -82107,8 +82113,8 @@ $p.b = (function(x$1) { var MatchCase$1 = x$1; if ((this.ur === MatchCase$1.ur)) { if ((this.uq === MatchCase$1.uq)) { - var x = this.xL; - var x$2 = MatchCase$1.xL; + var x = this.xM; + var x$2 = MatchCase$1.xM; var $x_1 = ((x === null) ? (x$2 === null) : x.b(x$2)); } else { var $x_1 = false; @@ -82117,8 +82123,8 @@ $p.b = (function(x$1) { var $x_1 = false; } if ($x_1) { - var x$3 = this.xK; - var x$4 = MatchCase$1.xK; + var x$3 = this.xL; + var x$4 = MatchCase$1.xL; if (((x$3 === null) ? (x$4 === null) : x$3.b(x$4))) { var x$5 = this.up; var x$6 = MatchCase$1.up; @@ -82260,7 +82266,7 @@ $p.sN = (function(x$1) { $p.m = (function() { return this.uK; }); -$p.wz = (function() { +$p.wA = (function() { return this.rL; }); $p.qB = (function() { @@ -82337,13 +82343,13 @@ function $c_Ltigerpython_parser_ast_AstNode$With(pos, endPos, context, opt_vars, this.mU = null; this.k6 = null; this.gz = null; - this.xX = false; + this.xY = false; this.oQ = pos; this.oP = endPos; this.mU = context; this.k6 = opt_vars; this.gz = body; - this.xX = isAsync; + this.xY = isAsync; $ct_Ltigerpython_parser_ast_AstNode$Statement__s_Enumeration$Value__(this, $m_Ltigerpython_parser_ast_AstNodeKind$().Me); } $p = $c_Ltigerpython_parser_ast_AstNode$With.prototype = new $h_Ltigerpython_parser_ast_AstNode$Statement(); @@ -82394,7 +82400,7 @@ $p.A = (function(x$1) { break; } case 5: { - return this.xX; + return this.xY; break; } default: { @@ -82413,7 +82419,7 @@ $p.q = (function() { acc = $m_sr_Statics$().e(acc, $m_sr_Statics$().n(this.mU)); acc = $m_sr_Statics$().e(acc, $m_sr_Statics$().n(this.k6)); acc = $m_sr_Statics$().e(acc, $m_sr_Statics$().n(this.gz)); - acc = $m_sr_Statics$().e(acc, (this.xX ? 1231 : 1237)); + acc = $m_sr_Statics$().e(acc, (this.xY ? 1231 : 1237)); return $m_sr_Statics$().H(acc, 6); }); $p.j = (function() { @@ -82424,7 +82430,7 @@ $p.b = (function(x$1) { return true; } else if ((x$1 instanceof $c_Ltigerpython_parser_ast_AstNode$With)) { var With$1 = x$1; - if (((this.oQ === With$1.oQ) && ((this.oP === With$1.oP) && (this.xX === With$1.xX)))) { + if (((this.oQ === With$1.oQ) && ((this.oP === With$1.oP) && (this.xY === With$1.xY)))) { var x = this.mU; var x$2 = With$1.mU; if (((x === null) ? (x$2 === null) : x.b(x$2))) { @@ -82951,7 +82957,7 @@ function $c_Ltigerpython_parser_ast_AstNode$ClassDef(pos, endPos, name, bases, k this.l4 = null; this.rn = null; this.gP = null; - this.xD = null; + this.xE = null; this.Fs = null; this.mE = pos; this.ov = endPos; @@ -82961,7 +82967,7 @@ function $c_Ltigerpython_parser_ast_AstNode$ClassDef(pos, endPos, name, bases, k this.gP = body; $ct_Ltigerpython_parser_ast_AstNode$Statement__s_Enumeration$Value__(this, $m_Ltigerpython_parser_ast_AstNodeKind$().Ly); $f_Ltigerpython_parser_ast_AstNode$Decoratable__$init$__V(this); - this.xD = $m_Ltigerpython_parser_ast_AstNode$().Dv(this.gP); + this.xE = $m_Ltigerpython_parser_ast_AstNode$().Dv(this.gP); } $p = $c_Ltigerpython_parser_ast_AstNode$ClassDef.prototype = new $h_Ltigerpython_parser_ast_AstNode$Statement(); $p.constructor = $c_Ltigerpython_parser_ast_AstNode$ClassDef; @@ -82972,7 +82978,7 @@ $h_Ltigerpython_parser_ast_AstNode$ClassDef.prototype = $p; $p.nU = (function(key, value) { $f_Ltigerpython_parser_ast_AstNode$Decoratable__update__T__Ltigerpython_parser_ast_AstNode$Statement__V(this, key, value); }); -$p.wt = (function() { +$p.wu = (function() { return this.Fs; }); $p.I5 = (function(x$1) { @@ -82984,7 +82990,7 @@ $p.m = (function() { $p.aH = (function() { return this.ov; }); -$p.wo = (function(x$1) { +$p.wp = (function(x$1) { this.gP = x$1; }); $p.kx = (function() { @@ -82996,7 +83002,7 @@ $p.j = (function() { var $x_3 = this.l5.R; var $x_2 = $f_sc_IterableOnceOps__mkString__T__T__T__T($m_s_Predef$().at(this.l4), "", ", ", ""); var $x_1 = ((this.gP !== null) ? this.gP.j() : ""); - var x = this.xD; + var x = this.xE; var len = x.length; var sb = $ct_jl_StringBuilder__I__(new $c_jl_StringBuilder(), len); var i = 0; @@ -83012,7 +83018,7 @@ $p.j = (function() { return $x_5.ap("%sClassDef(%s, (%s), body: %s, doc: %s)", new $c_sjsr_WrappedVarArgs([$x_4, $x_3, $x_2, $x_1, ((len === sb.g()) ? x : sb.L)])); }); $p.Jz = (function() { - this.xD = $m_Ltigerpython_parser_ast_AstNode$().Dv(this.gP); + this.xE = $m_Ltigerpython_parser_ast_AstNode$().Dv(this.gP); }); $p.y = (function() { return "ClassDef"; @@ -83144,10 +83150,10 @@ $p.m = (function() { $p.aH = (function() { return this.oA; }); -$p.wn = (function() { +$p.wo = (function() { return this.gv; }); -$p.wo = (function(x$1) { +$p.wp = (function(x$1) { this.gv = x$1; }); $p.zn = (function() { @@ -83282,7 +83288,7 @@ function $c_Ltigerpython_parser_ast_AstNode$FunctionDef(pos, endPos, name, param this.fV = null; this.rt = null; this.uc = false; - this.xE = null; + this.xF = null; this.Ft = null; this.mK = pos; this.oC = endPos; @@ -83293,7 +83299,7 @@ function $c_Ltigerpython_parser_ast_AstNode$FunctionDef(pos, endPos, name, param this.uc = isAsync; $ct_Ltigerpython_parser_ast_AstNode$Statement__s_Enumeration$Value__(this, $m_Ltigerpython_parser_ast_AstNodeKind$().Fz); $f_Ltigerpython_parser_ast_AstNode$Decoratable__$init$__V(this); - this.xE = $m_Ltigerpython_parser_ast_AstNode$().Dv(this.fV); + this.xF = $m_Ltigerpython_parser_ast_AstNode$().Dv(this.fV); } $p = $c_Ltigerpython_parser_ast_AstNode$FunctionDef.prototype = new $h_Ltigerpython_parser_ast_AstNode$Statement(); $p.constructor = $c_Ltigerpython_parser_ast_AstNode$FunctionDef; @@ -83304,7 +83310,7 @@ $h_Ltigerpython_parser_ast_AstNode$FunctionDef.prototype = $p; $p.nU = (function(key, value) { $f_Ltigerpython_parser_ast_AstNode$Decoratable__update__T__Ltigerpython_parser_ast_AstNode$Statement__V(this, key, value); }); -$p.wt = (function() { +$p.wu = (function() { return this.Ft; }); $p.I5 = (function(x$1) { @@ -83316,7 +83322,7 @@ $p.m = (function() { $p.aH = (function() { return this.oC; }); -$p.wo = (function(x$1) { +$p.wp = (function(x$1) { this.fV = x$1; }); $p.kx = (function() { @@ -83332,7 +83338,7 @@ $p.j = (function() { var $x_3 = this.gR.R; var $x_2 = this.eo.j(); var $x_1 = $m_Ltigerpython_parser_ast_AstNode$().A5(this.fV); - var x = this.xE; + var x = this.xF; var len = x.length; var sb = $ct_jl_StringBuilder__I__(new $c_jl_StringBuilder(), len); var i = 0; @@ -83351,7 +83357,7 @@ $p.j = (function() { } }); $p.Jz = (function() { - this.xE = $m_Ltigerpython_parser_ast_AstNode$().Dv(this.fV); + this.xF = $m_Ltigerpython_parser_ast_AstNode$().Dv(this.fV); }); $p.y = (function() { return "FunctionDef"; @@ -83670,12 +83676,12 @@ function $c_Ltigerpython_parser_ast_AstNode$While(pos, endPos, test, body, elseB this.uR = 0; this.k5 = null; this.hu = null; - this.j3 = null; + this.j2 = null; this.uS = pos; this.uR = endPos; this.k5 = test; this.hu = body; - this.j3 = elseBody; + this.j2 = elseBody; $ct_Ltigerpython_parser_ast_AstNode$Statement__s_Enumeration$Value__(this, $m_Ltigerpython_parser_ast_AstNodeKind$().Md); } $p = $c_Ltigerpython_parser_ast_AstNode$While.prototype = new $h_Ltigerpython_parser_ast_AstNode$Statement(); @@ -83693,17 +83699,17 @@ $p.m = (function() { $p.aH = (function() { return this.uR; }); -$p.wn = (function() { +$p.wo = (function() { return this.hu; }); -$p.wo = (function(x$1) { +$p.wp = (function(x$1) { this.hu = x$1; }); $p.zn = (function() { - return this.j3; + return this.j2; }); $p.Ia = (function(x$1) { - this.j3 = x$1; + this.j2 = x$1; }); $p.y = (function() { return "While"; @@ -83730,7 +83736,7 @@ $p.A = (function(x$1) { break; } case 4: { - return this.j3; + return this.j2; break; } default: { @@ -83748,7 +83754,7 @@ $p.q = (function() { acc = $m_sr_Statics$().e(acc, this.uR); acc = $m_sr_Statics$().e(acc, $m_sr_Statics$().n(this.k5)); acc = $m_sr_Statics$().e(acc, $m_sr_Statics$().n(this.hu)); - acc = $m_sr_Statics$().e(acc, $m_sr_Statics$().n(this.j3)); + acc = $m_sr_Statics$().e(acc, $m_sr_Statics$().n(this.j2)); return $m_sr_Statics$().H(acc, 5); }); $p.j = (function() { @@ -83774,8 +83780,8 @@ $p.b = (function(x$1) { var x$3 = this.hu; var x$4 = While$1.hu; if (((x$3 === null) ? (x$4 === null) : x$3.b(x$4))) { - var x$5 = this.j3; - var x$6 = While$1.j3; + var x$5 = this.j2; + var x$6 = While$1.j2; return ((x$5 === null) ? (x$6 === null) : x$5.b(x$6)); } else { return false; @@ -83807,7 +83813,7 @@ function $f_sc_Seq__equals__O__Z($thiz, o) { } else { if ($is_sc_Seq(o)) { var x2 = o; - if (x2.wp($thiz)) { + if (x2.wq($thiz)) { return $thiz.qJ(x2); } } @@ -83826,22 +83832,22 @@ function $p_sc_SeqView$Sorted___sorted$lzycompute__sc_Seq($thiz) { if ((len === 0)) { var res = $m_sci_Nil$(); } else if ((len === 1)) { - var res = $m_sci_Nil$().A2(new $c_sjsr_WrappedVarArgs([$thiz.xd.W()])); + var res = $m_sci_Nil$().A2(new $c_sjsr_WrappedVarArgs([$thiz.xe.W()])); } else { var arr = new $ac_O(len); - $thiz.xd.ac(arr, 0, 2147483647); - $m_ju_Arrays$().wU(arr, $thiz.tr); + $thiz.xe.ac(arr, 0, 2147483647); + $m_ju_Arrays$().wV(arr, $thiz.tr); var res = $m_sci_ArraySeq$().tc(arr); } $thiz.EE = true; - $thiz.xd = null; + $thiz.xe = null; $thiz.EF = res; $thiz.ED = true; } return $thiz.EF; } function $ct_sc_SeqView$Sorted__sc_SeqOps__I__s_math_Ordering__($thiz, underlying, len, ord) { - $thiz.xd = underlying; + $thiz.xe = underlying; $thiz.kM = len; $thiz.tr = ord; $thiz.EE = false; @@ -83854,7 +83860,7 @@ function $ct_sc_SeqView$Sorted__sc_SeqOps__s_math_Ordering__($thiz, underlying, /** @constructor */ function $c_sc_SeqView$Sorted() { this.EF = null; - this.xd = null; + this.xe = null; this.kM = 0; this.tr = null; this.EE = false; @@ -83924,7 +83930,7 @@ $p.Dm = (function() { return ((!this.ED) ? $p_sc_SeqView$Sorted___sorted$lzycompute__sc_Seq(this) : this.EF); }); $p.RE = (function() { - var orig = this.xd; + var orig = this.xe; return (this.EE ? this.Dm() : orig); }); $p.s = (function(i) { @@ -84200,14 +84206,14 @@ var $d_sc_View$DistinctBy = new $TypeData().i($c_sc_View$DistinctBy, "scala.coll })); function $ct_sc_View$Drop__sc_IterableOps__I__($thiz, underlying, n) { $thiz.ts = underlying; - $thiz.xg = n; + $thiz.xh = n; $thiz.qZ = ((n > 0) ? n : 0); return $thiz; } /** @constructor */ function $c_sc_View$Drop() { this.ts = null; - this.xg = 0; + this.xh = 0; this.qZ = 0; } $p = $c_sc_View$Drop.prototype = new $h_sc_AbstractView(); @@ -84217,7 +84223,7 @@ function $h_sc_View$Drop() { } $h_sc_View$Drop.prototype = $p; $p.k = (function() { - return this.ts.k().dS(this.xg); + return this.ts.k().dS(this.xh); }); $p.T = (function() { var size = this.ts.T(); @@ -84418,7 +84424,7 @@ $p.fH = (function(other) { $p.m7 = (function(x) { return $f_s_math_Numeric$ByteIsIntegral__sign__B__B(this, (x | 0)); }); -$p.iL = (function(x) { +$p.iK = (function(x) { return (x | 0); }); $p.bH = (function(x) { @@ -84500,7 +84506,7 @@ $p.fH = (function(other) { $p.m7 = (function(x) { return $bC($f_s_math_Numeric$CharIsIntegral__sign__C__C(this, $uC(x))); }); -$p.iL = (function(x) { +$p.iK = (function(x) { return $uC(x); }); $p.bH = (function(x) { @@ -84583,7 +84589,7 @@ $p.m7 = (function(x) { var x$1 = (x | 0); return ((x$1 === 0) ? 0 : ((x$1 < 0) ? (-1) : 1)); }); -$p.iL = (function(x) { +$p.iK = (function(x) { return (x | 0); }); $p.bH = (function(x) { @@ -84668,7 +84674,7 @@ $p.m7 = (function(x) { var t = $uJ(x); return $m_s_math_package$().XU(new $c_RTLong(t.h, t.i)); }); -$p.iL = (function(x) { +$p.iK = (function(x) { var t = $uJ(x); return t.h; }); @@ -84719,7 +84725,7 @@ $p.bn = (function(x, y) { var lo = t.h; var hi = t.i; var t$1 = $uJ(y); - return $m_RTLong$().wN(lo, hi, t$1.h, t$1.i); + return $m_RTLong$().wO(lo, hi, t$1.h, t$1.i); }); var $d_s_math_Numeric$LongIsIntegral$ = new $TypeData().i($c_s_math_Numeric$LongIsIntegral$, "scala.math.Numeric$LongIsIntegral$", ({ lz: 1, @@ -84776,7 +84782,7 @@ $p.fH = (function(other) { $p.m7 = (function(x) { return $f_s_math_Numeric$ShortIsIntegral__sign__S__S(this, (x | 0)); }); -$p.iL = (function(x) { +$p.iK = (function(x) { return (x | 0); }); $p.bH = (function(x) { @@ -84840,7 +84846,7 @@ $p.b = (function(that) { }); $p.q = (function() { var this$1 = $m_s_util_hashing_MurmurHash3$(); - return this$1.wX(this, this$1.AF); + return this$1.wY(this, this$1.AF); }); $p.cc = (function() { return $m_sc_Set$(); @@ -84939,7 +84945,7 @@ $p.constructor = $c_sc_AbstractSeq; function $h_sc_AbstractSeq() { } $h_sc_AbstractSeq.prototype = $p; -$p.wp = (function(that) { +$p.wq = (function(that) { return true; }); $p.b = (function(o) { @@ -85095,7 +85101,7 @@ function $ct_sc_SeqView$Drop__sc_SeqOps__I__($thiz, underlying, n) { /** @constructor */ function $c_sc_SeqView$Drop() { this.ts = null; - this.xg = 0; + this.xh = 0; this.qZ = 0; this.tq = null; this.Am = 0; @@ -85427,7 +85433,7 @@ function $ct_sc_IndexedSeqView$Drop__sc_IndexedSeqOps__I__($thiz, underlying, n) /** @constructor */ function $c_sc_IndexedSeqView$Drop() { this.ts = null; - this.xg = 0; + this.xh = 0; this.qZ = 0; this.tq = null; this.Am = 0; @@ -85444,7 +85450,7 @@ $p.k = (function() { $p.eb = (function() { return $ct_sc_IndexedSeqView$IndexedSeqViewReverseIterator__sc_IndexedSeqView__(new $c_sc_IndexedSeqView$IndexedSeqViewReverseIterator(), this); }); -$p.wx = (function(n) { +$p.wy = (function(n) { return $ct_sc_IndexedSeqView$Drop__sc_IndexedSeqOps__I__(new $c_sc_IndexedSeqView$Drop(), this, n); }); $p.cn = (function() { @@ -85464,10 +85470,10 @@ $p.T = (function() { return this.g(); }); $p.qq = (function(n) { - return this.wx(n); + return this.wy(n); }); $p.cI = (function(n) { - return this.wx(n); + return this.wy(n); }); var $d_sc_IndexedSeqView$Drop = new $TypeData().i($c_sc_IndexedSeqView$Drop, "scala.collection.IndexedSeqView$Drop", ({ cH: 1, @@ -85692,14 +85698,14 @@ $p.k = (function() { $p.eb = (function() { return new $c_scm_CheckedIndexedSeqView$CheckedReverseIterator(this, this.Az); }); -$p.wx = (function(n) { +$p.wy = (function(n) { return new $c_scm_CheckedIndexedSeqView$Drop(this, n, this.Az); }); $p.qq = (function(n) { - return this.wx(n); + return this.wy(n); }); $p.cI = (function(n) { - return this.wx(n); + return this.wy(n); }); var $d_scm_ArrayBufferView = new $TypeData().i($c_scm_ArrayBufferView, "scala.collection.mutable.ArrayBufferView", ({ kM: 1, @@ -85752,8 +85758,8 @@ function $f_sci_IndexedSeq__sameElements__sc_IterableOnce__Z($thiz, o) { var equal = (length === x2.g()); if (equal) { var index = 0; - var a = $thiz.wm(); - var b = x2.wm(); + var a = $thiz.wn(); + var b = x2.wn(); var preferredLength = ((a < b) ? a : b); var hi = (length >> 31); var hi$1 = (preferredLength >> 31); @@ -86226,15 +86232,15 @@ $p.sT = (function(elem) { if (this.an(elem)) { return this; } else { - var this$2 = $m_sci_HashSet$().xo; + var this$2 = $m_sci_HashSet$().xp; var elem$1 = this.mq; - var this$3 = this$2.wF(elem$1); + var this$3 = this$2.wG(elem$1); var elem$2 = this.kY; - var this$4 = this$3.wF(elem$2); + var this$4 = this$3.wG(elem$2); var elem$3 = this.jP; - var this$5 = this$4.wF(elem$3); + var this$5 = this$4.wG(elem$3); var elem$4 = this.jQ; - return this$5.wF(elem$4).wF(elem); + return this$5.wG(elem$4).wG(elem); } }); $p.k = (function() { @@ -86377,7 +86383,7 @@ $h_scm_AbstractSeq.prototype = $p; /** @constructor */ function $c_scm_CheckedIndexedSeqView$Drop(underlying, n, mutationCount) { this.ts = null; - this.xg = 0; + this.xh = 0; this.qZ = 0; this.tq = null; this.Am = 0; @@ -86397,7 +86403,7 @@ $p.k = (function() { $p.eb = (function() { return new $c_scm_CheckedIndexedSeqView$CheckedReverseIterator(this, this.tH); }); -$p.wx = (function(n) { +$p.wy = (function(n) { return new $c_scm_CheckedIndexedSeqView$Drop(this, n, this.tH); }); $p.qq = (function(n) { @@ -86922,7 +86928,7 @@ $p.tg = (function() { return new $c_sci_Map$Map4$$anon$9(this); }); $p.te = (function(key, value) { - return ($m_sr_BoxesRunTime$().Q(key, this.gn) ? new $c_sci_Map$Map4(this.gn, value, this.go, this.ib, this.gp, this.ic, this.gq, this.id) : ($m_sr_BoxesRunTime$().Q(key, this.go) ? new $c_sci_Map$Map4(this.gn, this.ia, this.go, value, this.gp, this.ic, this.gq, this.id) : ($m_sr_BoxesRunTime$().Q(key, this.gp) ? new $c_sci_Map$Map4(this.gn, this.ia, this.go, this.ib, this.gp, value, this.gq, this.id) : ($m_sr_BoxesRunTime$().Q(key, this.gq) ? new $c_sci_Map$Map4(this.gn, this.ia, this.go, this.ib, this.gp, this.ic, this.gq, value) : $m_sci_HashMap$().EL.x0(this.gn, this.ia).x0(this.go, this.ib).x0(this.gp, this.ic).x0(this.gq, this.id).x0(key, value))))); + return ($m_sr_BoxesRunTime$().Q(key, this.gn) ? new $c_sci_Map$Map4(this.gn, value, this.go, this.ib, this.gp, this.ic, this.gq, this.id) : ($m_sr_BoxesRunTime$().Q(key, this.go) ? new $c_sci_Map$Map4(this.gn, this.ia, this.go, value, this.gp, this.ic, this.gq, this.id) : ($m_sr_BoxesRunTime$().Q(key, this.gp) ? new $c_sci_Map$Map4(this.gn, this.ia, this.go, this.ib, this.gp, value, this.gq, this.id) : ($m_sr_BoxesRunTime$().Q(key, this.gq) ? new $c_sci_Map$Map4(this.gn, this.ia, this.go, this.ib, this.gp, this.ic, this.gq, value) : $m_sci_HashMap$().EL.x1(this.gn, this.ia).x1(this.go, this.ib).x1(this.gp, this.ic).x1(this.gq, this.id).x1(key, value))))); }); $p.az = (function(f) { f.w($ct_T2__O__O__(new $c_T2(), this.gn, this.ia)); @@ -87036,7 +87042,7 @@ $p.an = (function(element) { var elementHash = $m_sc_Hashing$().bA(elementUnimprovedHash); return this.fn.zl(element, elementUnimprovedHash, elementHash, 0); }); -$p.wF = (function(element) { +$p.wG = (function(element) { var elementUnimprovedHash = $m_sr_Statics$().n(element); var elementHash = $m_sc_Hashing$().bA(elementUnimprovedHash); return $p_sci_HashSet__newHashSetOrThis__sci_BitmapIndexedSetNode__sci_HashSet(this, this.fn.S3(element, elementUnimprovedHash, elementHash, 0)); @@ -87077,17 +87083,17 @@ $p.eM = (function() { }); $p.q = (function() { var it = new $c_sci_SetHashIterator(this.fn); - return $m_s_util_hashing_MurmurHash3$().wX(it, $m_s_util_hashing_MurmurHash3$().AF); + return $m_s_util_hashing_MurmurHash3$().wY(it, $m_s_util_hashing_MurmurHash3$().AF); }); $p.Uk = (function(pred, isFlipped) { var newRootNode = this.fn.PZ(pred, isFlipped); - return ((newRootNode === this.fn) ? this : ((newRootNode.dG === 0) ? $m_sci_HashSet$().xo : new $c_sci_HashSet(newRootNode))); + return ((newRootNode === this.fn) ? this : ((newRootNode.dG === 0) ? $m_sci_HashSet$().xp : new $c_sci_HashSet(newRootNode))); }); $p.cI = (function(n) { return $f_sc_IterableOps__drop__I__O(this, n); }); $p.qy = (function(elem) { - return this.wF(elem); + return this.wG(elem); }); function $isArrayOf_sci_HashSet(obj, depth) { return (!(!(((obj && obj.$classData) && (obj.$classData.D === depth)) && obj.$classData.B.n.d8))); @@ -87423,13 +87429,13 @@ $p.eR = (function(ord) { $p.b1 = (function(f) { return $f_sc_StrictOptimizedIterableOps__map__F1__O(this, f); }); -$p.wp = (function(that) { +$p.wq = (function(that) { return $f_sci_IndexedSeq__canEqual__O__Z(this, that); }); $p.qJ = (function(o) { return $f_sci_IndexedSeq__sameElements__sc_IterableOnce__Z(this, o); }); -$p.wm = (function() { +$p.wn = (function() { return $m_sci_IndexedSeqDefaults$().KM; }); $p.k = (function() { @@ -87605,9 +87611,9 @@ $p.qu = (function(key, default$1) { var keyHash = $m_sc_Hashing$().bA(keyUnimprovedHash); return this.bJ.Iw(key, keyUnimprovedHash, keyHash, 0, default$1); }); -$p.x0 = (function(key, value) { +$p.x1 = (function(key, value) { var keyUnimprovedHash = $m_sr_Statics$().n(key); - var newRootNode = this.bJ.wZ(key, value, keyUnimprovedHash, $m_sc_Hashing$().bA(keyUnimprovedHash), 0, true); + var newRootNode = this.bJ.x0(key, value, keyUnimprovedHash, $m_sc_Hashing$().bA(keyUnimprovedHash), 0, true); return ((newRootNode === this.bJ) ? this : new $c_sci_HashMap(newRootNode)); }); $p.Tp = (function(that) { @@ -87630,7 +87636,7 @@ $p.Tp = (function(that) { var improvedHash = next.gO; var originalHash = (improvedHash ^ ((improvedHash >>> 16) | 0)); var improved = $m_sc_Hashing$().bA(originalHash); - current = current.wZ(next.hn, next.bW, originalHash, improved, 0, true); + current = current.x0(next.hn, next.bW, originalHash, improved, 0, true); if ((current !== this.bJ)) { var shallowlyMutableNodeMap = $m_sci_Node$().cz($m_sci_Node$().fg(improved, 0)); while (iter.c()) { @@ -87651,7 +87657,7 @@ $p.Tp = (function(that) { var next$3 = iter$2.d(); var originalHash$3 = x4.S2(next$3.CV()); var improved$2 = $m_sc_Hashing$().bA(originalHash$3); - current$2 = current$2.wZ(next$3.D2(), next$3.dl(), originalHash$3, improved$2, 0, true); + current$2 = current$2.x0(next$3.D2(), next$3.dl(), originalHash$3, improved$2, 0, true); if ((current$2 !== this.bJ)) { var shallowlyMutableNodeMap$2 = $m_sci_Node$().cz($m_sci_Node$().fg(improved$2, 0)); while (iter$2.c()) { @@ -87710,7 +87716,7 @@ $p.q = (function() { return $m_s_util_hashing_MurmurHash3$().AE; } else { var hashIterator = new $c_sci_MapKeyValueTupleHashIterator(this.bJ); - return $m_s_util_hashing_MurmurHash3$().wX(hashIterator, $m_s_util_hashing_MurmurHash3$().my); + return $m_s_util_hashing_MurmurHash3$().wY(hashIterator, $m_s_util_hashing_MurmurHash3$().my); } }); $p.eM = (function() { @@ -87723,7 +87729,7 @@ $p.fG = (function(suffix) { return this.Tp(suffix); }); $p.tf = (function(key, value) { - return this.x0(key, value); + return this.x1(key, value); }); function $isArrayOf_sci_HashMap(obj, depth) { return (!(!(((obj && obj.$classData) && (obj.$classData.D === depth)) && obj.$classData.B.n.d7))); @@ -88082,7 +88088,7 @@ $p.eM = (function() { $p.q = (function() { var setIterator = new $c_scm_HashSet$$anon$1(this); var hashIterator = ((!setIterator.c()) ? setIterator : new $c_scm_HashSet$$anon$3(this)); - return $m_s_util_hashing_MurmurHash3$().wX(hashIterator, $m_s_util_hashing_MurmurHash3$().AF); + return $m_s_util_hashing_MurmurHash3$().wY(hashIterator, $m_s_util_hashing_MurmurHash3$().AF); }); $p.b6 = (function(elem) { this.Cr(elem); @@ -88125,10 +88131,10 @@ function $isArrayOf_sci_ListMap(obj, depth) { } function $p_sci_NumericRange__length$lzycompute__I($thiz) { if (((((1 & $thiz.hj) << 24) >> 24) === 0)) { - $thiz.xu = $m_sci_NumericRange$().TS($thiz.bK, $thiz.ef, $thiz.b5, $thiz.oc, $thiz.a6); + $thiz.xv = $m_sci_NumericRange$().TS($thiz.bK, $thiz.ef, $thiz.b5, $thiz.oc, $thiz.a6); $thiz.hj = (((1 | $thiz.hj) << 24) >> 24); } - return $thiz.xu; + return $thiz.xv; } function $p_sci_NumericRange__isEmpty$lzycompute__Z($thiz) { if (((((2 & $thiz.hj) << 24) >> 24) === 0)) { @@ -88170,10 +88176,10 @@ function $p_sci_NumericRange__isEmpty$lzycompute__Z($thiz) { var $x_1 = false; } } - $thiz.xt = $x_1; + $thiz.xu = $x_1; $thiz.hj = (((2 | $thiz.hj) << 24) >> 24); } - return $thiz.xt; + return $thiz.xu; } function $p_sci_NumericRange__isWithinBoundaries__O__Z($thiz, elem) { return ((!$thiz.t()) && (((new $c_s_math_Ordering$OrderingOps($thiz.a6, $thiz.b5).OT($thiz.a6.bH(0)) && new $c_s_math_Ordering$OrderingOps($thiz.a6, $thiz.bK).Cf(elem)) && new $c_s_math_Ordering$OrderingOps($thiz.a6, elem).Cf($thiz.ge())) || ((new $c_s_math_Ordering$OrderingOps($thiz.a6, $thiz.b5).SB($thiz.a6.bH(0)) && new $c_s_math_Ordering$OrderingOps($thiz.a6, $thiz.ge()).Cf(elem)) && new $c_s_math_Ordering$OrderingOps($thiz.a6, elem).Cf($thiz.bK)))); @@ -88217,7 +88223,7 @@ function $p_sci_NumericRange__crossesTheEndAfterN__I__Z($thiz, n) { if ($f_s_math_Ordering__equiv__O__O__Z(this$8, x$4, y$4)) { var len = $p_sci_NumericRange__unsafeRangeLength$1__sci_NumericRange__O($thiz, $thiz); if ($p_sci_NumericRange__fitsInInteger$1__O__Z($thiz, len)) { - return (n >= $thiz.a6.iL(len)); + return (n >= $thiz.a6.iK(len)); } else { var this$9 = $thiz.a6; var x$5 = $thiz.a6.bH(n); @@ -88235,12 +88241,12 @@ function $p_sci_NumericRange__crossesTheEndAfterN__I__Z($thiz, n) { if ($f_s_math_Ordering__lt__O__O__Z(this$14, x$6, y$6)) { if (walksOnZero) { var twoStepsAfterLargestNegativeNumber = $thiz.a6.fi(closestToZero, $thiz.a6.jH($thiz.b5, $thiz.a6.bH(2))); - var x1 = new $c_T3(($m_sci_NumericRange$(), new $c_sci_NumericRange$Exclusive($thiz.bK, closestToZero, $thiz.b5, $thiz.a6)), $thiz.wr(twoStepsAfterLargestNegativeNumber, $thiz.ef, $thiz.b5), 2); + var x1 = new $c_T3(($m_sci_NumericRange$(), new $c_sci_NumericRange$Exclusive($thiz.bK, closestToZero, $thiz.b5, $thiz.a6)), $thiz.ws(twoStepsAfterLargestNegativeNumber, $thiz.ef, $thiz.b5), 2); } else { - var x1 = new $c_T3(($m_sci_NumericRange$(), new $c_sci_NumericRange$Exclusive($thiz.bK, closestToZero, $thiz.b5, $thiz.a6)), $thiz.wr($thiz.a6.fi(closestToZero, $thiz.b5), $thiz.ef, $thiz.b5), 1); + var x1 = new $c_T3(($m_sci_NumericRange$(), new $c_sci_NumericRange$Exclusive($thiz.bK, closestToZero, $thiz.b5, $thiz.a6)), $thiz.ws($thiz.a6.fi(closestToZero, $thiz.b5), $thiz.ef, $thiz.b5), 1); } } else { - var x1 = (walksOnZero ? new $c_T3($thiz.wr($thiz.a6.jH($thiz.b5, $thiz.a6.bH(2)), $thiz.ef, $thiz.b5), ($m_sci_NumericRange$(), new $c_sci_NumericRange$Inclusive($thiz.bK, new $c_s_math_Integral$IntegralOps($thiz.a6, $thiz.b5).Jw(), $thiz.b5, $thiz.a6)), 2) : new $c_T3($thiz.wr($thiz.a6.fi(closestToZero, $thiz.a6.jH($thiz.b5, $thiz.a6.bH(2))), $thiz.ef, $thiz.b5), ($m_sci_NumericRange$(), new $c_sci_NumericRange$Inclusive($thiz.bK, closestToZero, $thiz.b5, $thiz.a6)), 2)); + var x1 = (walksOnZero ? new $c_T3($thiz.ws($thiz.a6.jH($thiz.b5, $thiz.a6.bH(2)), $thiz.ef, $thiz.b5), ($m_sci_NumericRange$(), new $c_sci_NumericRange$Inclusive($thiz.bK, new $c_s_math_Integral$IntegralOps($thiz.a6, $thiz.b5).Jw(), $thiz.b5, $thiz.a6)), 2) : new $c_T3($thiz.ws($thiz.a6.fi(closestToZero, $thiz.a6.jH($thiz.b5, $thiz.a6.bH(2))), $thiz.ef, $thiz.b5), ($m_sci_NumericRange$(), new $c_sci_NumericRange$Inclusive($thiz.bK, closestToZero, $thiz.b5, $thiz.a6)), 2)); } matchEnd6: { var x$1$1___1; @@ -88267,7 +88273,7 @@ function $p_sci_NumericRange__crossesTheEndAfterN__I__Z($thiz, n) { var leftLength = $p_sci_NumericRange__unsafeRangeLength$1__sci_NumericRange__O($thiz, l$2); var rightLength = $p_sci_NumericRange__unsafeRangeLength$1__sci_NumericRange__O($thiz, r$2); if (($p_sci_NumericRange__fitsInInteger$1__O__Z($thiz, leftLength) && $p_sci_NumericRange__fitsInInteger$1__O__Z($thiz, rightLength))) { - return (((((n - $thiz.a6.iL(leftLength)) | 0) - carry$2) | 0) >= $thiz.a6.iL(rightLength)); + return (((((n - $thiz.a6.iK(leftLength)) | 0) - carry$2) | 0) >= $thiz.a6.iK(rightLength)); } else { var this$20 = $thiz.a6; var x$7 = $thiz.a6.h6($thiz.a6.h6($thiz.a6.bH(n), leftLength), $thiz.a6.bH(carry$2)); @@ -88281,10 +88287,10 @@ function $p_sci_NumericRange__newEmptyRange__O__sci_NumericRange$Exclusive($thiz } function $p_sci_NumericRange__hashCode$lzycompute__I($thiz) { if (((((4 & $thiz.hj) << 24) >> 24) === 0)) { - $thiz.xs = $m_s_util_hashing_MurmurHash3$().Dr($thiz); + $thiz.xt = $m_s_util_hashing_MurmurHash3$().Dr($thiz); $thiz.hj = (((4 | $thiz.hj) << 24) >> 24); } - return $thiz.xs; + return $thiz.xt; } function $p_sci_NumericRange__unsafeRangeLength$1__sci_NumericRange__O($thiz, r) { var diff = $thiz.a6.h6(r.ef, r.bK); @@ -88310,7 +88316,7 @@ function $p_sci_NumericRange__unsafeRangeLength$1__sci_NumericRange__O($thiz, r) } function $p_sci_NumericRange__fitsInInteger$1__O__Z($thiz, value) { var this$1 = $thiz.a6; - var x = $thiz.a6.bH($thiz.a6.iL(value)); + var x = $thiz.a6.bH($thiz.a6.iK(value)); return $f_s_math_Ordering__equiv__O__O__Z(this$1, x, value); } function $ct_sci_NumericRange__O__O__O__Z__s_math_Integral__($thiz, start, end, step, isInclusive, num) { @@ -88323,9 +88329,9 @@ function $ct_sci_NumericRange__O__O__O__Z__s_math_Integral__($thiz, start, end, } /** @constructor */ function $c_sci_NumericRange() { - this.xu = 0; - this.xt = false; - this.xs = 0; + this.xv = 0; + this.xu = false; + this.xt = 0; this.bK = null; this.ef = null; this.b5 = null; @@ -88348,7 +88354,7 @@ $p.eR = (function(ord) { $p.b1 = (function(f) { return $f_sc_StrictOptimizedIterableOps__map__F1__O(this, f); }); -$p.wp = (function(that) { +$p.wq = (function(that) { return $f_sci_IndexedSeq__canEqual__O__Z(this, that); }); $p.qJ = (function(o) { @@ -88374,10 +88380,10 @@ $p.k = (function() { return new $c_sci_NumericRange$NumericRangeIterator(this, this.a6); }); $p.g = (function() { - return (((((1 & this.hj) << 24) >> 24) === 0) ? $p_sci_NumericRange__length$lzycompute__I(this) : this.xu); + return (((((1 & this.hj) << 24) >> 24) === 0) ? $p_sci_NumericRange__length$lzycompute__I(this) : this.xv); }); $p.t = (function() { - return (((((2 & this.hj) << 24) >> 24) === 0) ? $p_sci_NumericRange__isEmpty$lzycompute__Z(this) : this.xt); + return (((((2 & this.hj) << 24) >> 24) === 0) ? $p_sci_NumericRange__isEmpty$lzycompute__Z(this) : this.xu); }); $p.ge = (function() { return (this.t() ? $m_sci_Nil$().zF() : $p_sci_NumericRange__locationAfterN__I__O(this, (((-1) + this.g()) | 0))); @@ -88405,7 +88411,7 @@ $p.az = (function(f) { } }); $p.U4 = (function(n) { - return (((n <= 0) || this.t()) ? this : ($p_sci_NumericRange__crossesTheEndAfterN__I__Z(this, n) ? $p_sci_NumericRange__newEmptyRange__O__sci_NumericRange$Exclusive(this, this.ef) : this.wr($p_sci_NumericRange__locationAfterN__I__O(this, n), this.ef, this.b5))); + return (((n <= 0) || this.t()) ? this : ($p_sci_NumericRange__crossesTheEndAfterN__I__Z(this, n) ? $p_sci_NumericRange__newEmptyRange__O__sci_NumericRange$Exclusive(this, this.ef) : this.ws($p_sci_NumericRange__locationAfterN__I__O(this, n), this.ef, this.b5))); }); $p.nQ = (function(ord) { if ((ord === this.a6)) { @@ -88435,9 +88441,9 @@ $p.an = (function(x) { } }); $p.q = (function() { - return (((((4 & this.hj) << 24) >> 24) === 0) ? $p_sci_NumericRange__hashCode$lzycompute__I(this) : this.xs); + return (((((4 & this.hj) << 24) >> 24) === 0) ? $p_sci_NumericRange__hashCode$lzycompute__I(this) : this.xt); }); -$p.wm = (function() { +$p.wn = (function() { return 2147483647; }); $p.b = (function(other) { @@ -88562,7 +88568,7 @@ $h_sci_Range.prototype = $p; $p.g8 = (function(f) { return $f_sci_StrictOptimizedSeqOps__distinctBy__F1__O(this, f); }); -$p.wp = (function(that) { +$p.wq = (function(that) { return $f_sci_IndexedSeq__canEqual__O__Z(this, that); }); $p.cn = (function() { @@ -88714,7 +88720,7 @@ $p.Ww = (function(ord) { $p.QT = (function(ord) { return ((ord === $m_s_math_Ordering$Int$()) ? ((this.aM > 0) ? this.qC() : this.zG()) : ($f_s_math_Ordering$CachedReverse__isReverseOf__s_math_Ordering__Z($m_s_math_Ordering$Int$(), ord) ? ((this.aM > 0) ? this.zG() : this.qC()) : ($f_sc_IterableOnceOps__max__s_math_Ordering__O(this, ord) | 0))); }); -$p.wm = (function() { +$p.wn = (function() { return 2147483647; }); $p.b = (function(other) { @@ -88823,7 +88829,7 @@ $p.gJ = (function() { $p.g8 = (function(f) { return $f_sci_StrictOptimizedSeqOps__distinctBy__F1__O(this, f); }); -$p.wp = (function(that) { +$p.wq = (function(that) { return $f_sci_IndexedSeq__canEqual__O__Z(this, that); }); $p.qJ = (function(o) { @@ -88881,7 +88887,7 @@ $p.ac = (function(xs, start, len) { } return copied; }); -$p.wm = (function() { +$p.wn = (function() { return 2147483647; }); $p.eS = (function(ord) { @@ -88892,14 +88898,14 @@ $p.eS = (function(ord) { var original = this.hZ(); var newLength = this.g(); if ($d_O.l().hQ($objectGetClass(original).dg())) { - var $x_1 = ($d_O.l().hS() ? this$2.hN(original, newLength) : $m_ju_Arrays$().iC(original, newLength, $d_O.r().l())); + var $x_1 = ($d_O.l().hS() ? this$2.hN(original, newLength) : $m_ju_Arrays$().iB(original, newLength, $d_O.r().l())); } else { var dest = new $ac_O(newLength); $m_s_Array$().bz(original, 0, dest, 0, $m_jl_reflect_Array$().b0(original)); var $x_1 = dest; } var a = $x_1; - $m_ju_Arrays$().wU(a, ord); + $m_ju_Arrays$().wV(a, ord); return new $c_sci_ArraySeq$ofRef(a); } }); @@ -88928,9 +88934,9 @@ function $isArrayOf_sci_ArraySeq(obj, depth) { } /** @constructor */ function $c_sci_NumericRange$Exclusive(start, end, step, num) { - this.xu = 0; - this.xt = false; - this.xs = 0; + this.xv = 0; + this.xu = false; + this.xt = 0; this.bK = null; this.ef = null; this.b5 = null; @@ -88951,7 +88957,7 @@ $p.Ty = (function(start, end, step) { $m_sci_NumericRange$(); return new $c_sci_NumericRange$Exclusive(start, end, step, this.KU); }); -$p.wr = (function(start, end, step) { +$p.ws = (function(start, end, step) { return this.Ty(start, end, step); }); var $d_sci_NumericRange$Exclusive = new $TypeData().i($c_sci_NumericRange$Exclusive, "scala.collection.immutable.NumericRange$Exclusive", ({ @@ -88984,9 +88990,9 @@ var $d_sci_NumericRange$Exclusive = new $TypeData().i($c_sci_NumericRange$Exclus })); /** @constructor */ function $c_sci_NumericRange$Inclusive(start, end, step, num) { - this.xu = 0; - this.xt = false; - this.xs = 0; + this.xv = 0; + this.xu = false; + this.xt = 0; this.bK = null; this.ef = null; this.b5 = null; @@ -89007,7 +89013,7 @@ $p.Tz = (function(start, end, step) { $m_sci_NumericRange$(); return new $c_sci_NumericRange$Inclusive(start, end, step, this.KV); }); -$p.wr = (function(start, end, step) { +$p.ws = (function(start, end, step) { return this.Tz(start, end, step); }); var $d_sci_NumericRange$Inclusive = new $TypeData().i($c_sci_NumericRange$Inclusive, "scala.collection.immutable.NumericRange$Inclusive", ({ @@ -89152,7 +89158,7 @@ $p.g8 = (function(f) { $p.eR = (function(ord) { return $f_sc_SeqOps__sorted__s_math_Ordering__O(this, ord); }); -$p.wp = (function(that) { +$p.wq = (function(that) { return $f_sci_IndexedSeq__canEqual__O__Z(this, that); }); $p.qJ = (function(o) { @@ -89198,18 +89204,18 @@ $p.Ul = (function(pred, isFlipped) { var b = new $c_sci_VectorBuilder(); var k = 0; while ((k < i)) { - b.wl(this.K.a[k]); + b.wm(this.K.a[k]); k = ((1 + k) | 0); } k = ((1 + i) | 0); while ((i !== newLen)) { if ((((1 << k) & bitmap) !== 0)) { - b.wl(this.K.a[k]); + b.wm(this.K.a[k]); i = ((1 + i) | 0); } k = ((1 + k) | 0); } - this.Q4(new $c_sjsr_AnonFunction1(((pred, isFlipped, b) => ((v$2) => (((!(!pred.w(v$2))) !== isFlipped) ? b.wl(v$2) : (void 0))))(pred, isFlipped, b))); + this.Q4(new $c_sjsr_AnonFunction1(((pred, isFlipped, b) => ((v$2) => (((!(!pred.w(v$2))) !== isFlipped) ? b.wm(v$2) : (void 0))))(pred, isFlipped, b))); return b.kD(); } else { if ((newLen === 0)) { @@ -89235,7 +89241,7 @@ $p.Ul = (function(pred, isFlipped) { if ((this instanceof $c_sci_BigVector)) { var b$2 = new $c_sci_VectorBuilder(); b$2.VF(this.K); - this.Q4(new $c_sjsr_AnonFunction1(((v$3$2) => (((!(!pred.w(v$3$2))) !== isFlipped) ? b$2.wl(v$3$2) : (void 0))))); + this.Q4(new $c_sjsr_AnonFunction1(((v$3$2) => (((!(!pred.w(v$3$2))) !== isFlipped) ? b$2.wm(v$3$2) : (void 0))))); return b$2.kD(); } else { return this; @@ -89247,7 +89253,7 @@ $p.eM = (function() { $p.ac = (function(xs, start, len) { return this.k().ac(xs, start, len); }); -$p.wm = (function() { +$p.wn = (function() { return $m_sci_Vector$().KZ; }); $p.eB = (function(index) { @@ -89365,21 +89371,21 @@ $p.ac = (function(xs, start, len) { var x$1 = ((x < y) ? x : y); var copied = ((x$1 > 0) ? x$1 : 0); if ((copied > 0)) { - $m_s_Array$().bz(this.iB(), 0, xs, start, copied); + $m_s_Array$().bz(this.iA(), 0, xs, start, copied); } return copied; }); $p.b = (function(other) { if ((other instanceof $c_scm_ArraySeq)) { var x2 = other; - if (($m_jl_reflect_Array$().b0(this.iB()) !== $m_jl_reflect_Array$().b0(x2.iB()))) { + if (($m_jl_reflect_Array$().b0(this.iA()) !== $m_jl_reflect_Array$().b0(x2.iA()))) { return false; } } return $f_sc_Seq__equals__O__Z(this, other); }); $p.Y3 = (function(ord) { - return $m_scm_ArraySeq$().zN($m_sc_ArrayOps$().Jp(this.iB(), ord)); + return $m_scm_ArraySeq$().zN($m_sc_ArrayOps$().Jp(this.iA(), ord)); }); $p.eR = (function(ord) { return this.Y3(ord); @@ -90012,8 +90018,8 @@ var $d_sci_ArraySeq$ofLong = new $TypeData().i($c_sci_ArraySeq$ofLong, "scala.co })); /** @constructor */ function $c_sci_ArraySeq$ofRef(unsafeArray) { - this.iS = null; - this.iS = unsafeArray; + this.iR = null; + this.iR = unsafeArray; } $p = $c_sci_ArraySeq$ofRef.prototype = new $h_sci_ArraySeq(); $p.constructor = $c_sci_ArraySeq$ofRef; @@ -90022,38 +90028,38 @@ function $h_sci_ArraySeq$ofRef() { } $h_sci_ArraySeq$ofRef.prototype = $p; $p.df = (function() { - return $m_s_reflect_ClassTag$().sH($objectGetClass(this.iS).dg()); + return $m_s_reflect_ClassTag$().sH($objectGetClass(this.iR).dg()); }); $p.g = (function() { - return this.iS.a.length; + return this.iR.a.length; }); $p.s = (function(i) { - return this.iS.a[i]; + return this.iR.a[i]; }); $p.q = (function() { var this$1 = $m_s_util_hashing_MurmurHash3$(); - var a = this.iS; + var a = this.iR; return this$1.Pj(a, this$1.d9); }); $p.b = (function(that) { if ((that instanceof $c_sci_ArraySeq$ofRef)) { var x2 = that; - return $m_s_Array$().PU(this.iS, x2.iS); + return $m_s_Array$().PU(this.iR, x2.iR); } else { return $f_sc_Seq__equals__O__Z(this, that); } }); $p.RT = (function(ord) { - if ((this.iS.a.length <= 1)) { + if ((this.iR.a.length <= 1)) { return this; } else { - var a = this.iS.O(); - $m_ju_Arrays$().wU(a, ord); + var a = this.iR.O(); + $m_ju_Arrays$().wV(a, ord); return new $c_sci_ArraySeq$ofRef(a); } }); $p.k = (function() { - return $ct_sc_ArrayOps$ArrayIterator__O__(new $c_sc_ArrayOps$ArrayIterator(), this.iS); + return $ct_sc_ArrayOps$ArrayIterator__O__(new $c_sc_ArrayOps$ArrayIterator(), this.iR); }); $p.eR = (function(ord) { return this.RT(ord); @@ -90065,7 +90071,7 @@ $p.w = (function(v1) { return this.s((v1 | 0)); }); $p.hZ = (function() { - return this.iS; + return this.iR; }); function $isArrayOf_sci_ArraySeq$ofRef(obj, depth) { return (!(!(((obj && obj.$classData) && (obj.$classData.D === depth)) && obj.$classData.B.n.d0))); @@ -90523,7 +90529,7 @@ $p.s = (function(i) { $p.df = (function() { return $m_s_reflect_ManifestFactory$BooleanManifest$(); }); -$p.iB = (function() { +$p.iA = (function() { return this.oh; }); function $isArrayOf_scm_ArraySeq$ofBoolean(obj, depth) { @@ -90600,7 +90606,7 @@ $p.s = (function(i) { $p.df = (function() { return $m_s_reflect_ManifestFactory$ByteManifest$(); }); -$p.iB = (function() { +$p.iA = (function() { return this.oi; }); function $isArrayOf_scm_ArraySeq$ofByte(obj, depth) { @@ -90706,7 +90712,7 @@ $p.s = (function(i) { $p.df = (function() { return $m_s_reflect_ManifestFactory$CharManifest$(); }); -$p.iB = (function() { +$p.iA = (function() { return this.ie; }); function $isArrayOf_scm_ArraySeq$ofChar(obj, depth) { @@ -90783,7 +90789,7 @@ $p.s = (function(i) { $p.df = (function() { return $m_s_reflect_ManifestFactory$DoubleManifest$(); }); -$p.iB = (function() { +$p.iA = (function() { return this.oj; }); function $isArrayOf_scm_ArraySeq$ofDouble(obj, depth) { @@ -90860,7 +90866,7 @@ $p.s = (function(i) { $p.df = (function() { return $m_s_reflect_ManifestFactory$FloatManifest$(); }); -$p.iB = (function() { +$p.iA = (function() { return this.ok; }); function $isArrayOf_scm_ArraySeq$ofFloat(obj, depth) { @@ -90937,7 +90943,7 @@ $p.s = (function(i) { $p.df = (function() { return $m_s_reflect_ManifestFactory$IntManifest$(); }); -$p.iB = (function() { +$p.iA = (function() { return this.ol; }); function $isArrayOf_scm_ArraySeq$ofInt(obj, depth) { @@ -91014,7 +91020,7 @@ $p.s = (function(i) { $p.df = (function() { return $m_s_reflect_ManifestFactory$LongManifest$(); }); -$p.iB = (function() { +$p.iA = (function() { return this.om; }); function $isArrayOf_scm_ArraySeq$ofLong(obj, depth) { @@ -91088,7 +91094,7 @@ $p.k = (function() { $p.w = (function(v1) { return this.s((v1 | 0)); }); -$p.iB = (function() { +$p.iA = (function() { return this.ms; }); function $isArrayOf_scm_ArraySeq$ofRef(obj, depth) { @@ -91165,7 +91171,7 @@ $p.s = (function(i) { $p.df = (function() { return $m_s_reflect_ManifestFactory$ShortManifest$(); }); -$p.iB = (function() { +$p.iA = (function() { return this.on; }); function $isArrayOf_scm_ArraySeq$ofShort(obj, depth) { @@ -91241,7 +91247,7 @@ $p.s = (function(i) { $p.df = (function() { return $m_s_reflect_ManifestFactory$UnitManifest$(); }); -$p.iB = (function() { +$p.iA = (function() { return this.rb; }); function $isArrayOf_scm_ArraySeq$ofUnit(obj, depth) { @@ -91490,7 +91496,7 @@ $p.tg = (function() { $p.IX = (function() { return ((this.cs === 0) ? $m_sc_Iterator$().r : new $c_scm_HashMap$$anon$4(this)); }); -$p.wq = (function() { +$p.wr = (function() { $m_ju_Arrays$().PX(this.Z, null); this.cs = 0; }); @@ -91566,7 +91572,7 @@ $p.q = (function() { return $m_s_util_hashing_MurmurHash3$().AE; } else { var tupleHashIterator = new $c_scm_HashMap$$anon$5(this); - return $m_s_util_hashing_MurmurHash3$().wX(tupleHashIterator, $m_s_util_hashing_MurmurHash3$().my); + return $m_s_util_hashing_MurmurHash3$().wY(tupleHashIterator, $m_s_util_hashing_MurmurHash3$().my); } }); $p.b6 = (function(elem) { @@ -91670,7 +91676,7 @@ $p.nV = (function(index, elem) { }); $p.lT = (function(elem) { if ((this.K.a.length < 32)) { - return new $c_sci_Vector1($m_sci_VectorStatics$().ws(this.K, elem)); + return new $c_sci_Vector1($m_sci_VectorStatics$().wt(this.K, elem)); } else { var $x_2 = this.K; var $x_1 = $m_sci_VectorStatics$().du; @@ -91685,7 +91691,7 @@ $p.kA = (function(f) { $p.jF = (function(lo, hi) { return new $c_sci_Vector1($m_ju_Arrays$().ba(this.K, lo, hi)); }); -$p.iK = (function() { +$p.iJ = (function() { if ((this.K.a.length === 1)) { return $m_sci_Vector0$(); } else { @@ -91700,7 +91706,7 @@ $p.kH = (function(idx) { return this.K; }); $p.aE = (function() { - return this.iK(); + return this.iJ(); }); $p.b1 = (function(f) { return this.kA(f); @@ -91930,7 +91936,7 @@ $p.lT = (function(elem) { a.a[0] = elem; return new $c_sci_Vector1(a); }); -$p.iK = (function() { +$p.iJ = (function() { throw $ct_jl_UnsupportedOperationException__T__(new $c_jl_UnsupportedOperationException(), "empty.tail"); }); $p.jF = (function(lo, hi) { @@ -91949,7 +91955,7 @@ $p.eB = (function(index) { return $ct_jl_IndexOutOfBoundsException__T__(new $c_jl_IndexOutOfBoundsException(), (index + " is out of bounds (empty vector)")); }); $p.aE = (function() { - return this.iK(); + return this.iJ(); }); $p.b1 = (function(f) { return this; @@ -92061,7 +92067,7 @@ $p.nV = (function(index, elem) { }); $p.lT = (function(elem) { if ((this.Y.a.length < 32)) { - var x$1 = $m_sci_VectorStatics$().ws(this.Y, elem); + var x$1 = $m_sci_VectorStatics$().wt(this.Y, elem); var x$2 = ((1 + this.a0) | 0); return new $c_sci_Vector2(this.K, this.gr, this.fo, x$1, x$2); } else if ((this.fo.a.length < 30)) { @@ -92097,7 +92103,7 @@ $p.jF = (function(lo, hi) { b.bG(1, this.Y); return b.kD(); }); -$p.iK = (function() { +$p.iJ = (function() { if ((this.gr > 1)) { var a = this.K; var x$1 = $m_ju_Arrays$().ba(a, 1, a.a.length); @@ -92131,7 +92137,7 @@ $p.kH = (function(idx) { } }); $p.aE = (function() { - return this.iK(); + return this.iJ(); }); $p.b1 = (function(f) { return this.kA(f); @@ -92281,7 +92287,7 @@ $p.nV = (function(index, elem) { }); $p.lT = (function(elem) { if ((this.Y.a.length < 32)) { - var x$1 = $m_sci_VectorStatics$().ws(this.Y, elem); + var x$1 = $m_sci_VectorStatics$().wt(this.Y, elem); var x$2 = ((1 + this.a0) | 0); return new $c_sci_Vector3(this.K, this.f2, this.fQ, this.fp, this.eg, this.eh, x$1, x$2); } else if ((this.eh.a.length < 31)) { @@ -92331,7 +92337,7 @@ $p.jF = (function(lo, hi) { b.bG(1, this.Y); return b.kD(); }); -$p.iK = (function() { +$p.iJ = (function() { if ((this.f2 > 1)) { var a = this.K; var x$1 = $m_ju_Arrays$().ba(a, 1, a.a.length); @@ -92374,7 +92380,7 @@ $p.kH = (function(idx) { } }); $p.aE = (function() { - return this.iK(); + return this.iJ(); }); $p.b1 = (function(f) { return this.kA(f); @@ -92568,7 +92574,7 @@ $p.nV = (function(index, elem) { }); $p.lT = (function(elem) { if ((this.Y.a.length < 32)) { - var x$1 = $m_sci_VectorStatics$().ws(this.Y, elem); + var x$1 = $m_sci_VectorStatics$().wt(this.Y, elem); var x$2 = ((1 + this.a0) | 0); return new $c_sci_Vector4(this.K, this.e2, this.eE, this.ei, this.eF, this.ej, this.dn, this.dq, this.dp, x$1, x$2); } else if ((this.dp.a.length < 31)) { @@ -92633,7 +92639,7 @@ $p.jF = (function(lo, hi) { b.bG(1, this.Y); return b.kD(); }); -$p.iK = (function() { +$p.iJ = (function() { if ((this.e2 > 1)) { var a = this.K; var x$1 = $m_ju_Arrays$().ba(a, 1, a.a.length); @@ -92685,7 +92691,7 @@ $p.kH = (function(idx) { } }); $p.aE = (function() { - return this.iK(); + return this.iJ(); }); $p.b1 = (function(f) { return this.kA(f); @@ -92930,7 +92936,7 @@ $p.nV = (function(index, elem) { }); $p.lT = (function(elem) { if ((this.Y.a.length < 32)) { - var x$1 = $m_sci_VectorStatics$().ws(this.Y, elem); + var x$1 = $m_sci_VectorStatics$().wt(this.Y, elem); var x$2 = ((1 + this.a0) | 0); return new $c_sci_Vector5(this.K, this.d2, this.dH, this.dr, this.dI, this.ds, this.dJ, this.dt, this.cB, this.cE, this.cD, this.cC, x$1, x$2); } else if ((this.cC.a.length < 31)) { @@ -93011,7 +93017,7 @@ $p.jF = (function(lo, hi) { b.bG(1, this.Y); return b.kD(); }); -$p.iK = (function() { +$p.iJ = (function() { if ((this.d2 > 1)) { var a = this.K; var x$1 = $m_ju_Arrays$().ba(a, 1, a.a.length); @@ -93072,7 +93078,7 @@ $p.kH = (function(idx) { } }); $p.aE = (function() { - return this.iK(); + return this.iJ(); }); $p.b1 = (function(f) { return this.kA(f); @@ -93375,7 +93381,7 @@ $p.nV = (function(index, elem) { }); $p.lT = (function(elem) { if ((this.Y.a.length < 32)) { - var x$1 = $m_sci_VectorStatics$().ws(this.Y, elem); + var x$1 = $m_sci_VectorStatics$().wt(this.Y, elem); var x$2 = ((1 + this.a0) | 0); return new $c_sci_Vector6(this.K, this.cF, this.d4, this.cN, this.d5, this.cO, this.d6, this.cP, this.d7, this.d3, this.cd, this.ch, this.cg, this.cf, this.ce, x$1, x$2); } else if ((this.ce.a.length < 31)) { @@ -93451,7 +93457,7 @@ $p.jF = (function(lo, hi) { b.bG(1, this.Y); return b.kD(); }); -$p.iK = (function() { +$p.iJ = (function() { if ((this.cF > 1)) { var a = this.K; var x$1 = $m_ju_Arrays$().ba(a, 1, a.a.length); @@ -93521,7 +93527,7 @@ $p.kH = (function(idx) { } }); $p.aE = (function() { - return this.iK(); + return this.iJ(); }); $p.b1 = (function(f) { return this.kA(f); @@ -94044,8 +94050,8 @@ var $d_scm_ListBuffer = new $TypeData().i($c_scm_ListBuffer, "scala.collection.m })); /** @constructor */ function $c_sci_BitSet$BitSet1(elems) { - this.xh = $L0; - this.xh = elems; + this.xi = $L0; + this.xi = elems; } $p = $c_sci_BitSet$BitSet1.prototype = new $h_sci_BitSet(); $p.constructor = $c_sci_BitSet$BitSet1; @@ -94057,13 +94063,13 @@ $p.eQ = (function() { return 1; }); $p.dZ = (function(idx) { - return ((idx === 0) ? this.xh : $L0); + return ((idx === 0) ? this.xi : $L0); }); $p.JA = (function(idx, w) { - return ((idx === 0) ? new $c_sci_BitSet$BitSet1(w) : ((idx === 1) ? $m_sci_BitSet$().Dn(this.xh, w) : $m_sci_BitSet$().CK($m_sc_BitSetOps$().Jy(new $ac_J([this.xh]), idx, w)))); + return ((idx === 0) ? new $c_sci_BitSet$BitSet1(w) : ((idx === 1) ? $m_sci_BitSet$().Dn(this.xi, w) : $m_sci_BitSet$().CK($m_sc_BitSetOps$().Jy(new $ac_J([this.xi]), idx, w)))); }); $p.If = (function(pred, isFlipped) { - var t = $m_sc_BitSetOps$().qp(pred, isFlipped, this.xh, 0); + var t = $m_sc_BitSetOps$().qp(pred, isFlipped, this.xi, 0); var lo = t.h; var hi = t.i; return (((lo === 0) && (hi === 0)) ? $m_sci_BitSet$().tu : new $c_sci_BitSet$BitSet1(new $c_RTLong(lo, hi))); @@ -94103,10 +94109,10 @@ var $d_sci_BitSet$BitSet1 = new $TypeData().i($c_sci_BitSet$BitSet1, "scala.coll })); /** @constructor */ function $c_sci_BitSet$BitSet2(elems0, elems1) { - this.xi = $L0; this.xj = $L0; - this.xi = elems0; - this.xj = elems1; + this.xk = $L0; + this.xj = elems0; + this.xk = elems1; } $p = $c_sci_BitSet$BitSet2.prototype = new $h_sci_BitSet(); $p.constructor = $c_sci_BitSet$BitSet2; @@ -94118,16 +94124,16 @@ $p.eQ = (function() { return 2; }); $p.dZ = (function(idx) { - return ((idx === 0) ? this.xi : ((idx === 1) ? this.xj : $L0)); + return ((idx === 0) ? this.xj : ((idx === 1) ? this.xk : $L0)); }); $p.JA = (function(idx, w) { - return ((idx === 0) ? new $c_sci_BitSet$BitSet2(w, this.xj) : ((idx === 1) ? $m_sci_BitSet$().Dn(this.xi, w) : $m_sci_BitSet$().CK($m_sc_BitSetOps$().Jy(new $ac_J([this.xi, this.xj]), idx, w)))); + return ((idx === 0) ? new $c_sci_BitSet$BitSet2(w, this.xk) : ((idx === 1) ? $m_sci_BitSet$().Dn(this.xj, w) : $m_sci_BitSet$().CK($m_sc_BitSetOps$().Jy(new $ac_J([this.xj, this.xk]), idx, w)))); }); $p.If = (function(pred, isFlipped) { - var t = $m_sc_BitSetOps$().qp(pred, isFlipped, this.xi, 0); + var t = $m_sc_BitSetOps$().qp(pred, isFlipped, this.xj, 0); var lo = t.h; var hi = t.i; - var t$1 = $m_sc_BitSetOps$().qp(pred, isFlipped, this.xj, 1); + var t$1 = $m_sc_BitSetOps$().qp(pred, isFlipped, this.xk, 1); var lo$1 = t$1.h; var hi$1 = t$1.i; return (((lo$1 === 0) && (hi$1 === 0)) ? (((lo === 0) && (hi === 0)) ? $m_sci_BitSet$().tu : new $c_sci_BitSet$BitSet1(new $c_RTLong(lo, hi))) : new $c_sci_BitSet$BitSet2(new $c_RTLong(lo, hi), new $c_RTLong(lo$1, hi$1))); @@ -94167,8 +94173,8 @@ var $d_sci_BitSet$BitSet2 = new $TypeData().i($c_sci_BitSet$BitSet2, "scala.coll })); /** @constructor */ function $c_sci_BitSet$BitSetN(elems) { - this.xk = null; - this.xk = elems; + this.xl = null; + this.xl = elems; } $p = $c_sci_BitSet$BitSetN.prototype = new $h_sci_BitSet(); $p.constructor = $c_sci_BitSet$BitSetN; @@ -94177,13 +94183,13 @@ function $h_sci_BitSet$BitSetN() { } $h_sci_BitSet$BitSetN.prototype = $p; $p.eQ = (function() { - return this.xk.a.length; + return this.xl.a.length; }); $p.dZ = (function(idx) { - return ((idx < this.eQ()) ? this.xk.a[idx] : $L0); + return ((idx < this.eQ()) ? this.xl.a[idx] : $L0); }); $p.JA = (function(idx, w) { - return $m_sci_BitSet$().CK($m_sc_BitSetOps$().Jy(this.xk, idx, w)); + return $m_sci_BitSet$().CK($m_sc_BitSetOps$().Jy(this.xl, idx, w)); }); $p.If = (function(pred, isFlipped) { var i = (((-1) + this.eQ()) | 0); @@ -94266,7 +94272,7 @@ $p.If = (function(pred, isFlipped) { i = (((-1) + i) | 0); } if (anyChanges) { - var newArray = $m_sc_ArrayOps$().tb(this.xk, 0, ((1 + minimumNonZeroIndex) | 0)); + var newArray = $m_sc_ArrayOps$().tb(this.xl, 0, ((1 + minimumNonZeroIndex) | 0)); newArray.a[((1 + i) | 0)] = new $c_RTLong(currentWord__lo, currentWord__hi); while ((i >= 0)) { newArray.a[i] = $m_sc_BitSetOps$().qp(pred, isFlipped, this.dZ(i), i); @@ -94313,7 +94319,7 @@ var $d_sci_BitSet$BitSetN = new $TypeData().i($c_sci_BitSet$BitSetN, "scala.coll a: 1 })); function $p_scm_ArrayBuffer__reduceToSize__I__V($thiz, n) { - $thiz.iU = ((1 + $thiz.iU) | 0); + $thiz.iT = ((1 + $thiz.iT) | 0); $m_ju_Arrays$().Uj($thiz.fS, n, $thiz.u, null); $thiz.u = n; } @@ -94330,7 +94336,7 @@ function $p_scm_ArrayBuffer__foldl__I__I__O__F2__O($thiz, start, end, z, op) { } } function $ct_scm_ArrayBuffer__AO__I__($thiz, initialElements, initialSize) { - $thiz.iU = 0; + $thiz.iT = 0; $thiz.fS = initialElements; $thiz.u = initialSize; return $thiz; @@ -94341,7 +94347,7 @@ function $ct_scm_ArrayBuffer__($thiz) { } /** @constructor */ function $c_scm_ArrayBuffer() { - this.iU = 0; + this.iT = 0; this.fS = null; this.u = 0; } @@ -94405,17 +94411,17 @@ $p.td = (function(index, elem) { if ((hi > this.u)) { throw $ct_jl_IndexOutOfBoundsException__T__(new $c_jl_IndexOutOfBoundsException(), ((((((-1) + hi) | 0) + " is out of bounds (min 0, max ") + (((-1) + this.u) | 0)) + ")")); } - this.iU = ((1 + this.iU) | 0); + this.iT = ((1 + this.iT) | 0); this.fS.a[index] = elem; }); $p.g = (function() { return this.u; }); $p.a1 = (function() { - return new $c_scm_ArrayBufferView(this, new $c_sjsr_AnonFunction0((() => this.iU))); + return new $c_scm_ArrayBufferView(this, new $c_sjsr_AnonFunction0((() => this.iT))); }); $p.I = (function(elem) { - this.iU = ((1 + this.iU) | 0); + this.iT = ((1 + this.iT) | 0); var newSize = ((1 + this.u) | 0); this.sL(newSize); this.u = newSize; @@ -94427,7 +94433,7 @@ $p.h0 = (function(elems) { var x2 = elems; var elemsLength = x2.u; if ((elemsLength > 0)) { - this.iU = ((1 + this.iU) | 0); + this.iT = ((1 + this.iT) | 0); this.sL(((this.u + elemsLength) | 0)); $m_s_Array$().bz(x2.fS, 0, this.fS, this.u, elemsLength); this.u = ((this.u + elemsLength) | 0); @@ -94444,7 +94450,7 @@ $p.IG = (function(index, elem) { if ((index > this.u)) { throw $ct_jl_IndexOutOfBoundsException__T__(new $c_jl_IndexOutOfBoundsException(), ((((((-1) + index) | 0) + " is out of bounds (min 0, max ") + (((-1) + this.u) | 0)) + ")")); } - this.iU = ((1 + this.iU) | 0); + this.iT = ((1 + this.iT) | 0); this.sL(((1 + this.u) | 0)); $m_s_Array$().bz(this.fS, index, this.fS, ((1 + index) | 0), ((this.u - index) | 0)); this.u = ((1 + this.u) | 0); @@ -94804,7 +94810,7 @@ $p.t = (function() { $p.IM = (function() { return $m_scm_ArrayDeque$(); }); -$p.wq = (function() { +$p.wr = (function() { while ((!this.t())) { this.aU.a[this.bs] = null; this.bs = (((1 + this.bs) | 0) & (((-1) + this.aU.a.length) | 0));